diff --git a/.copier-answers.yml b/.copier-answers.yml
new file mode 100644
index 000000000..7d155460d
--- /dev/null
+++ b/.copier-answers.yml
@@ -0,0 +1,9 @@
+# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
+_commit: 0.1.0
+_src_path: https://github.com/python-accelerator-middle-layer/pyaml-repository-template.git
+distribution_name: accelerator-middle-layer
+html_title: pyaml
+import_name: pyaml
+package_name: pyaml
+repository_url: https://github.com/python-accelerator-middle-layer/pyaml
+use_docs_extra: false
diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml
deleted file mode 100644
index 784e1894f..000000000
--- a/.github/workflows/documentation.yml
+++ /dev/null
@@ -1,82 +0,0 @@
-defaults:
- run:
- shell: bash
-
-on: # Runs on any push event in a PR or any push event to master
- pull_request:
- push:
- branches:
- - 'main'
-
-permissions: write-all
-
-jobs:
- documentation:
- name: ${{ matrix.os }} / ${{ matrix.python-version }}
-
- runs-on: ${{ matrix.os }}
-
- strategy:
- matrix: # only lowest supported Python on latest ubuntu
- os: [ubuntu-latest]
- python-version: [3.14]
-
- permissions:
- issues: write
- pull-requests: write
- contents: write
- pages: write
-
- steps:
- - uses: actions/checkout@v4
-
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v5
- with:
- python-version: ${{ matrix.python-version }}
- cache: 'pip'
- cache-dependency-path: '**/pyproject.toml'
-
- - name: Get full Python version
- id: full-python-version
- run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
-
- - name: Upgrade pip, setuptools and wheel
- run: python -m pip install --upgrade pip
-
- - name: Install package
- run: |
- python -m pip install '.[doc]'
-
- - name: Build documentation
- run: make html
- working-directory: docs
-
- - name: Upload build artifacts # upload artifacts so reviewers can have a quick look without building documentation from the branch locally
- uses: actions/upload-artifact@v4
- # if: success() && github.event_name == 'pull_request' # only for pushes in PR
- with:
- name: site-build
- path: ./docs/_build
- retention-days: 5
-
- - name: Trigger RTDs build
- uses: dfm/rtds-action@v1
- with:
- webhook_url: ${{ secrets.RTDS_WEBHOOK_URL }}
- webhook_token: ${{ secrets.RTDS_WEBHOOK_TOKEN }}
- commit_ref: ${{ github.ref }}
-
- - name: Upload documentation
- if: success() && github.ref == 'refs/heads/main' # only for pushes to master
- uses: JamesIves/github-pages-deploy-action@v4
- with:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- BRANCH: gh-pages
- folder: docs/_build # The folder the action should deploy.
-
- # - name: Publish Docs to gh-pages
- # uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847
- # with:
- # github_token: ${{ secrets.GITHUB_TOKEN }}
- # publish_dir: docs/_build/html
diff --git a/.github/workflows/dt4acc-integration.yml b/.github/workflows/dt4acc-integration.yml
new file mode 100644
index 000000000..e1c0585f3
--- /dev/null
+++ b/.github/workflows/dt4acc-integration.yml
@@ -0,0 +1,128 @@
+name: dt4acc integration
+
+on:
+ workflow_dispatch:
+ inputs:
+ dt4acc_image_uri:
+ description: "Apptainer ORAS image URI for the dt4acc twin"
+ required: false
+ default: "oras://registry.synchrotron-soleil.fr/software_control_system_public/dt4acc-soleil-twin:latest"
+ pull_request:
+ branches: ["main"]
+ paths:
+ - ".github/workflows/dt4acc-integration.yml"
+ - "pyaml/**"
+ - "tests/integration/**"
+ - "pyproject.toml"
+
+permissions:
+ contents: read
+
+jobs:
+ smoke:
+ runs-on: ubuntu-latest
+ timeout-minutes: 30
+
+ defaults:
+ run:
+ shell: bash -el {0}
+
+ env:
+ TANGO_HOST: 127.0.0.1:10000
+ DT4ACC_IMAGE_URI: ${{ inputs.dt4acc_image_uri || 'oras://registry.synchrotron-soleil.fr/software_control_system_public/dt4acc-soleil-twin:latest' }}
+ DT4ACC_REGISTRY_USER: ${{ secrets.DT4ACC_REGISTRY_USER }}
+ DT4ACC_REGISTRY_PASSWORD: ${{ secrets.DT4ACC_REGISTRY_PASSWORD }}
+
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
+ ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
+
+ - name: Set up Apptainer
+ uses: eWaterCycle/setup-apptainer@v2
+
+ - name: Set up Python environment
+ uses: mamba-org/setup-micromamba@v2
+ with:
+ environment-name: pyaml-dt4acc-integration
+ create-args: >-
+ -c conda-forge
+ python=3.12
+ pip
+ pytest
+ pytango
+ cache-environment: true
+
+ - name: Install pyAML and control-system backends
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install -e ".[test]"
+ python -m pip install "ophyd-async[tango, ca, pva]"
+ python -m pip install --no-deps \
+ "tango-pyaml @ git+https://github.com/python-accelerator-middle-layer/tango-pyaml.git@1f010735bd675ad2f918958abd0396cb6766f14e" \
+ "pyaml-cs-oa @ git+https://github.com/python-accelerator-middle-layer/pyaml-cs-oa.git@0.2.0"
+ python -c "import tango; import tango.pyaml; import pyaml_cs_oa"
+
+ - name: Log in to GitLab registry
+ if: ${{ env.DT4ACC_REGISTRY_USER != '' && env.DT4ACC_REGISTRY_PASSWORD != '' }}
+ run: |
+ printf '%s' "${DT4ACC_REGISTRY_PASSWORD}" |
+ apptainer registry login \
+ --username "${DT4ACC_REGISTRY_USER}" \
+ --password-stdin \
+ oras://gitlab-registry.synchrotron-soleil.fr
+
+ - name: Pull dt4acc twin image
+ run: |
+ mkdir -p "${RUNNER_TEMP}/apptainer"
+ apptainer pull --force --disable-cache \
+ "${RUNNER_TEMP}/apptainer/dt4acc-soleil-twin.sif" \
+ "${DT4ACC_IMAGE_URI}"
+
+ - name: Start dt4acc twin
+ run: |
+ LOG_FILE="${RUNNER_TEMP}/dt4acc-twin.log"
+ PID_FILE="${RUNNER_TEMP}/dt4acc-twin.pid"
+
+ ACCEL_SETUP_FILE=$(python -c "from pyaml_test_lattice import configurations; print(configurations['dt4acc/fodo_1gev_6d_dt4acc_tango.json'])")
+ LATTICE_FILE=$(python -c "from pyaml_test_lattice import lattices; print(lattices['fodo_1gev_6d.json'])")
+
+ bash tests/integration/start_dt4acc_twin.sh \
+ --accelerator-setup-file "${ACCEL_SETUP_FILE}" \
+ --lattice-file "${LATTICE_FILE}" \
+ --tango-host "${TANGO_HOST%:*}" \
+ --tango-port "${TANGO_HOST##*:}" \
+ --sif "${RUNNER_TEMP}/apptainer/dt4acc-soleil-twin.sif" \
+ --log-file "${LOG_FILE}" \
+ --pid-file "${PID_FILE}" \
+ --timeout 900 \
+ --detach
+
+ - name: Run pyAML dt4acc smoke test
+ env:
+ PYAML_DT4ACC_INTEGRATION: "1"
+ TANGO_HOST: "127.0.0.1:10000"
+ run: |
+ python -m pytest -v tests/integration/test_dt4acc_twin_smoke.py
+
+ - name: Stop dt4acc twin
+ if: always()
+ run: |
+ PID_FILE="${RUNNER_TEMP}/dt4acc-twin.pid"
+ if [ -f "${PID_FILE}" ]; then
+ TWIN_PID="$(cat "${PID_FILE}")"
+ kill -- "-${TWIN_PID}" 2>/dev/null || kill "${TWIN_PID}" 2>/dev/null || true
+ sleep 5
+ kill -KILL -- "-${TWIN_PID}" 2>/dev/null || kill -KILL "${TWIN_PID}" 2>/dev/null || true
+ fi
+ if [ -f "${RUNNER_TEMP}/dt4acc-twin.log" ]; then
+ tail -n 200 "${RUNNER_TEMP}/dt4acc-twin.log" || true
+ fi
+
+ - name: Upload dt4acc logs
+ if: always()
+ uses: actions/upload-artifact@v4
+ with:
+ name: dt4acc-twin-log
+ path: ${{ runner.temp }}/dt4acc-twin.log
diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml
new file mode 100644
index 000000000..d92832a9b
--- /dev/null
+++ b/.github/workflows/github-release.yml
@@ -0,0 +1,49 @@
+name: GitHub Release
+
+on:
+ push:
+ tags:
+ - '[0-9]+.[0-9]+.[0-9]+*'
+
+permissions:
+ contents: write
+
+jobs:
+ release:
+ name: Build and create release on GitHub
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Check out source
+ uses: actions/checkout@v5
+
+ - name: Set up Python
+ uses: actions/setup-python@v6
+ with:
+ python-version: "3.11"
+
+ - name: Install Hatch
+ run: python -m pip install --upgrade hatch
+
+ - name: Build distribution
+ run: hatch build
+
+ - name: Determine whether this is a pre-release
+ id: release_type
+ shell: bash
+ run: |
+ tag="${GITHUB_REF_NAME#v}"
+
+ if [[ "$tag" =~ (\.dev[0-9]+|a[0-9]+|b[0-9]+|rc[0-9]+)$ ]]; then
+ echo "prerelease=true" >> "$GITHUB_OUTPUT"
+ else
+ echo "prerelease=false" >> "$GITHUB_OUTPUT"
+ fi
+
+ - name: Create GitHub release
+ uses: softprops/action-gh-release@v3
+ with:
+ draft: false
+ prerelease: ${{ steps.release_type.outputs.prerelease }}
+ generate_release_notes: true
+ files: dist/*
diff --git a/.github/workflows/ruff_formatting.yml b/.github/workflows/ruff_formatting.yml
index bbce2ccbe..326184284 100644
--- a/.github/workflows/ruff_formatting.yml
+++ b/.github/workflows/ruff_formatting.yml
@@ -4,7 +4,6 @@ on:
push:
branches: [ main ]
pull_request:
- branches: [ main ]
jobs:
ruff-check:
diff --git a/.github/workflows/tests.yml b/.github/workflows/unit-tests.yml
similarity index 60%
rename from .github/workflows/tests.yml
rename to .github/workflows/unit-tests.yml
index 39f13effc..b0bad8d9e 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/unit-tests.yml
@@ -1,13 +1,13 @@
-# This workflow will install Python dependencies, run tests and lint with a single version of Python
+# This workflow will install Python dependencies, run tests and lint with a several version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
-name: run tests
+name: Run unit tests
on:
push:
branches: [ "main" ]
pull_request:
- branches: [ "main" ]
+ workflow_dispatch:
permissions:
contents: read
@@ -16,15 +16,22 @@ jobs:
build:
runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version: >-
+ ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
+ && fromJSON(vars.PYTHON_ALL_SUPPORTED_TEST_VERSIONS)
+ || fromJSON(vars.PYTHON_DEFAULT_TEST_VERSIONS) }}
steps:
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - name: Set up Python 3.12
- uses: actions/setup-python@v3
+ - uses: actions/checkout@v6
+
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v7
with:
- python-version: ">=3.12"
+ python-version: ${{ matrix.python-version }}
+
- name: Install dependencies
run: |
python -m pip install --upgrade pip
@@ -32,11 +39,16 @@ jobs:
pip install ./tests/dummy_cs/tango-pyaml
pip install ./tests/external
pip install flake8
+
+ - name: Display Python version
+ run: python -c "import sys; print(sys.version)"
+
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
+
- name: Test with pytest
run: python -m pytest tests
diff --git a/.readthedocs.yaml b/.readthedocs.yaml
index 053a457cd..4e993c186 100644
--- a/.readthedocs.yaml
+++ b/.readthedocs.yaml
@@ -1,39 +1,25 @@
-# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
-# Set the OS, Python version and other tools you might need
+# Set the OS, Python version, and other tools you might need
build:
os: ubuntu-24.04
tools:
python: "3.13"
- # You can also specify other tool versions:
- # nodejs: "23"
- # rust: "1.82"
- # golang: "1.23"
# Build documentation in the "docs/" directory with Sphinx
sphinx:
- configuration: docs/conf.py
+ configuration: docs/source/conf.py
-# Optionally build your docs in additional formats such as PDF and ePub
-# formats:
-# - pdf
-# - epub
-
-# Optional but recommended, declare the Python requirements required
-# to build your documentation
+# Optionally, but recommended,
+# declare the Python requirements required to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
+ - requirements: docs/requirements.txt
- method: pip
path: .
- extra_requirements:
- - doc
-
-submodules:
- include: all
- recursive: true
+ extra_requirements: []
diff --git a/README.md b/README.md
index 9e7cd237f..e9080dbb4 100644
--- a/README.md
+++ b/README.md
@@ -1,32 +1,50 @@
-[](https://pyaml.readthedocs.io/en/latest/?badge=latest)
-
+# pyaml
-# Python Accelerator Middle Layer
+**Package for the Python Accelerator Middle Layer core**
-Python Accelerator Middle Layer (pyAML) is a joint technology platform for design, commissioning and operation of particle accelerators.
+[](https://pyaml.readthedocs.io/en/stable/?badge=stable)
+[](https://pypi.org/project/accelerator-middle-layer/)
-The code is still under development. The features include among others:
+## Overview
-- A control system agnostic interface to interact with the accelerator.
-- Same interface to different backends: live accelerator, virtual accelerator and simulator.
-- Machine independence allowing configuration of different type of accelerators and facility specific naming conventions.
-- Unit conversions.
-- Automatic generation of metadata and standardized format for measurement data.
-- A set of standard applications and a framework for developing new applications.
+
-**This repository is for the core of pyAML.** It is control system independent and provides the core functionality of pyAML. It is intended to be used together with a package that implements the control system specific interface.
+Python Accelerator Middle Layer (pyAML) is a joint technology platform for design, commissioning and operation of particle accelerators. This repository is for the core of pyAML. It is control system independent and is intended to be used together with a package that implements the control system specific interface.
-Available packages for bindings:
+## Installation
-TANGO: [tango-pyaml](https://github.com/python-accelerator-middle-layer/tango-pyaml)
-TANGO or EPICS: [pyaml-cs-oa](https://github.com/python-accelerator-middle-layer/pyaml-cs-oa)
+Install the package from PyPI:
-#### Installation
+```bash
+pip install accelerator-middle-layer
+```
-Installation instructions for both user and development installation can be found in the [documentation](https://pyaml.readthedocs.io/en/latest/?badge=latest).
+## Development
-#### Documentation
+Install the development dependencies with:
-The documentation is available [here](https://pyaml.readthedocs.io/en/latest/?badge=latest).
+```bash
+pip install accelerator-middle-layer[dev]
+```
-In the documentation there are both examples and Jupyter notebooks available for how to use the package.
+Run the test suite with:
+
+```bash
+pytest
+```
+
+Install the pre-commit hooks with:
+
+```bash
+pre-commit install
+```
+
+## Documentation
+
+The documentation is available at:
+
+
+
+## Contributing
+
+Please use the issue tracker or submit a pull request.
diff --git a/docs/.gitignore b/docs/.gitignore
deleted file mode 100644
index 8edc9a634..000000000
--- a/docs/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-api.rst
diff --git a/docs/Makefile b/docs/Makefile
index 13262b8ca..d0c3cbf10 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -5,9 +5,8 @@
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
-SOURCEDIR = .
-BUILDDIR = _build
-HTMLDIR = ../docs
+SOURCEDIR = source
+BUILDDIR = build
# Put it first so that "make" without argument is like "make help".
help:
@@ -15,17 +14,6 @@ help:
.PHONY: help Makefile
-show:
- @python -m webbrowser -n "file://$$(pwd)/$(BUILDDIR)/html/index.html"
-
-test: Makefile
- @$(SPHINXBUILD) -M $@ -d "$(BUILDDIR)/doctrees" "$(SOURCEDIR)" "$(HTMLDIR)" $(SPHINXOPTS) $(O)
-
-clean: Makefile
- rm -f api.rst
- rm -rf api/*.rst
- @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
-
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
diff --git a/docs/README.rst b/docs/README.rst
deleted file mode 100644
index 482d41d55..000000000
--- a/docs/README.rst
+++ /dev/null
@@ -1,32 +0,0 @@
-##################
-pyAML Documentation
-##################
-
-This directory is the source of the pyAML documentation.
-
-**********************************
-Contributing to documentation
-**********************************
-
-Documentation tools
-===================
-
-The documentation is compiled with
-`Sphinx `_.
-
-For a local check when writing documentation, Sphinx and the
-necessary extensions are automatically installed if you install pyAML with
-the [doc] option::
-
- $ pip install -e ".[doc]"
-
-When committing the changes it's a good idea to also run the pre-commit.
-This can be installed by following the instructions for [developer installation](https://pyaml.readthedocs.io/en/latest/getting-started/installation.html#developer-installation).
-
-Then, the compilation may be triggered from the ``docs`` directory with::
-
- $ cd pyaml/docs
- $ make html
-
-Since the `.rse` files generated by autosummary are kept in version control they are not automatically regenerated from scratch.
-If you want to do that to make sure they are up-to-date you need to first delete the folder `api` before doing `make html`.
diff --git a/docs/api/.gitignore b/docs/api/.gitignore
deleted file mode 100644
index 30d85567b..000000000
--- a/docs/api/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.rst
diff --git a/docs/conf.py b/docs/conf.py
deleted file mode 100644
index 37114082b..000000000
--- a/docs/conf.py
+++ /dev/null
@@ -1,391 +0,0 @@
-# Configuration file for the Sphinx documentation builder.
-#
-# This file only contains a selection of the most common options. For a full
-# list see the documentation:
-# https://www.sphinx-doc.org/en/master/usage/configuration.html
-
-# -- Path setup --------------------------------------------------------------
-
-# If extensions (or modules to document with autodoc) are in another directory,
-# add these directories to sys.path here. If the directory is relative to the
-# documentation root, use os.path.abspath to make it absolute, like shown here.
-#
-# import sys
-# sys.path.insert(0, os.path.abspath('.'))
-# sys.path.insert(0, os.path.abspath('../pyat'))
-# print(sys.path)
-
-import pyaml
-
-# Generate reference API
-from pyaml.apidoc.gen_api import gen_doc
-
-gen_doc()
-
-# -- Project information -----------------------------------------------------
-
-project = "Python Accelerator Middle Layer"
-project_copyright = "2024, pyAML Collaboration"
-author = "pyAML Collaboration"
-
-# The full version, including alpha/beta/rc tags
-release = ".".join(pyaml.__version__.split(".")[:3])
-version = ".".join(pyaml.__version__.split(".")[:2])
-
-# -- General configuration ------------------------------------------------
-
-# If your documentation needs a minimal Sphinx version, state it here.
-#
-# needs_sphinx = '1.0'
-
-# Add any Sphinx extension module names here, as strings. They can be
-# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
-# ones.
-
-root_doc = "index"
-extensions = [
- "sphinx.ext.autosummary", # Automatically generates summary tables and stub pages
- # for documented functions, classes, and modules
- "sphinx.ext.napoleon", # Adds support for NumPy-style and Google-style docstrings,
- # so you don’t have to write reStructuredText by hand.
- "sphinx.ext.autodoc", # Adds support for NumPy-style and Google-style docstrings
- # code snippets.
- "sphinx.ext.intersphinx", # Allows you to link to documentation of other projects
- # (e.g. NumPy, Python, SciPy) as if they were local.
- "sphinx.ext.githubpages", # Adds support files (like .nojekyll) needed to publish
- # docs on GitHub Pages.
- "sphinx.ext.viewcode", # Adds links in the docs to view the source code of
- # documented Python objects.
- "myst_nb", # Enables MyST Markdown and Jupyter Notebook support.
- "sphinx_copybutton", # Adds a “copy to clipboard” button to code blocks.
- "sphinx_design", # Provides layout and design components
- # (cards, grids, tabs, buttons).
-]
-
-intersphinx_mapping = {
- "python": ("https://docs.python.org/3", None),
- "matplotlib": ("https://matplotlib.org/stable/", None),
- "numpy": ("https://numpy.org/doc/stable/", None),
- "scipy": ("https://docs.scipy.org/doc/scipy/", None),
-}
-
-# Add any paths that contain templates here, relative to this directory.
-templates_path = ["_templates"]
-
-# List of patterns, relative to source directory, that match files and
-# directories to ignore when looking for source files.
-# This pattern also affects html_static_path and html_extra_path.
-exclude_patterns = ["README.rst", "**/*.so", "_build/*"]
-
-# Injects content at the top of every reStructuredText file before it’s parsed.
-# Defines a custom inline role called :pycode: which renders inline code with Python
-# syntax highlighting
-rst_prolog = """
-.. role:: pycode(code)
- :language: python
-"""
-
-autodoc_default_options = {
- # Make sure that any autodoc declarations show the right members
- "members": True,
- "undoc-members": True,
- "show-inheritance": True,
- "member-order": "groupwise",
-}
-autodoc_typehints = "description"
-autodoc_typehints_description_target = "documented"
-autodoc_typehints_format = "short"
-autosummary_generate = True # Make _autosummary files and include them
-autosummary_generate_overwrite = False
-autosummary_ignore_module_all = False
-autoclass_content = "both" # include both class docstring and __init__
-
-napoleon_use_rtype = False # More legible
-# napoleon_numpy_docstring = False # Force consistency, leave only Google
-napoleon_custom_sections = [("Returns", "params_style")]
-
-add_module_names = False
-
-# -- Options for the myst markdown parser ------------------------------------
-
-myst_enable_extensions = [
- "attrs_inline",
- "colon_fence",
- "dollarmath",
- "replacements",
- "deflist",
-]
-myst_heading_anchors = 3
-nb_execution_mode = "auto"
-nb_execution_allow_errors = True
-
-# -- Options for HTML output -------------------------------------------------
-
-# The theme to use for HTML and HTML Help pages. See the documentation for
-# a list of builtin themes.
-#
-# html_theme = 'alabaster'
-# html_theme = 'sphinx_rtd_theme'
-# html_theme = 'sphinx_book_theme'
-html_theme = "pydata_sphinx_theme"
-html_logo = "_static/img/logo.png"
-html_copy_source = False
-html_theme_options = {
- "github_url": "https://github.com/python-accelerator-middle-layer/pyaml",
- "logo": {
- "image_light": "_static/img/logo.png",
- "image_dark": "_static/img/dark.png",
- },
-}
-html_sidebars = {
- "index": [],
- "common/about": [],
-}
-# creates an additional page, but impossible to link to it...
-# if os.environ.get('READTHEDOCS') == 'True':
-# html_additional_pages = {
-# "index": "plink.html"
-# }
-
-html_css_files = ["css/custom.css"]
-
-# Add any paths that contaAddedin custom static files (such as style sheets) here,
-# relative to this directory. They are copied after the builtin static files,
-# so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ["_static"]
-
-# -- Options for latex output -------------------------------------------------
-
-# latex_documents = [
-# (
-# "p/index",
-# "pyat.tex",
-# "PyAT User's Guide",
-# "The AT collaboration",
-# "manual",
-# True,
-# ),
-# (
-# "common/passmethods",
-# "at.tex",
-# "AT Integrators",
-# "The AT collaboration",
-# "manual",
-# False,
-# ),
-# ]
-# latex_logo = "images/ATlarge.png"
-
-latex_documents = [
- (root_doc, "pyaml.tex", "pyAML Documentation", "pyAML collaboration", "manual"),
-]
-
-# -- Options for copybutton -------------------------------------------------
-
-copybutton_prompt_text = r">>> |\.\.\. |\$ "
-copybutton_prompt_is_regexp = True
-copybutton_only_copy_prompt_lines = True
-
-# extensions = [
-# "sphinx.ext.autodoc",
-# "sphinx.ext.doctest",
-# "sphinx.ext.todo",
-# "sphinx.ext.coverage",
-# "sphinx.ext.mathjax",
-# "sphinx.ext.viewcode",
-# "sphinx.ext.githubpages",
-# "sphinx.ext.napoleon",
-# "sphinx.ext.autosectionlabel",
-# "sphinx.ext.autosummary",
-# "myst_nb",
-# ]
-# autosectionlabel_prefix_document = True
-# autosectionlabel_maxdepth = 2
-
-# # Add any paths that contain templates here, relative to this directory.
-# # templates_path = ['_templates']
-
-# # The suffix(es) of source filenames.
-# # You can specify multiple suffix as a list of string:
-# #
-# # source_suffix = ['.rst', '.md']
-# source_suffix = ".rst"
-
-# # The master toctree document.
-# master_doc = "index"
-
-
-# # The language for content autogenerated by Sphinx. Refer to documentation
-# # for a list of supported languages.
-# #
-# # This is also used if you do content translation via gettext catalogs.
-# # Usually you set "language" from the command line for these cases.
-# language = "en"
-
-# # List of patterns, relative to source directory, that match files and
-# # directories to ignore when looking for source files.
-# # This patterns also effect to html_static_path and html_extra_path
-# exclude_patterns = []
-
-# # The name of the Pygments (syntax highlighting) style to use.
-# pygments_style = "sphinx"
-
-# # If true, `todo` and `todoList` produce output, else they produce nothing.
-# todo_include_todos = True
-
-# # -- Options for HTML output ----------------------------------------------
-
-# # The theme to use for HTML and HTML Help pages. See the documentation for
-# # a list of builtin themes.
-# #
-
-# # html_theme = 'classic'
-# html_theme = "pydata_sphinx_theme"
-
-# # Theme options are theme-specific and customize the look and feel of a theme
-# # further. For a list of options available for each theme, see the
-# # documentation.
-
-
-# # Name of an image file (path relative to the configuration directory)
-# # that is the logo of the docs, or URL that points an image file for the logo.
-# # It is placed at the top of the sidebar;
-# # its width should therefore not exceed 200 pixels.
-# html_logo = "_static/img/logo.png"
-# html_copy_source = False
-
-# html_theme_options = {
-# "collapse_navigation": False,
-# "display_version": True,
-# "logo_only": True,
-# "navigation_depth": 6,
-# "rightsidebar": True,
-# "relbarbgcolor": "black",
-# "github_url": "https://github.com/python-accelerator-middle-layer/pyaml",
-# "logo": {
-# "image_light": "_static/img/logo.png",
-# "image_dark": "_static/img/dark.png",
-# },
-# }
-
-# # Add any paths that contain custom static files (such as style sheets) here,
-# # relative to this directory. They are copied after the builtin static files,
-# # so a file named "default.css" will overwrite the builtin "default.css".
-# #
-# html_static_path = ["_static"]
-
-# # A dictionary of values to pass into the template engine’s context for all
-# # pages. Single values can also be put in this dictionary using the
-# # -A command-line option of sphinx-build.
-# html_context = {
-# "display_github": True,
-# # the following are only needed if :github_url: is not set
-# "github_user": author,
-# "github_repo": project,
-# "github_version": "main/docs/",
-# }
-
-# # A list of CSS files. The entry must be a filename string or a tuple
-# # containing the filename string and the attributes dictionary.
-# # The filename must be relative to the html_static_path, or a full URI with
-# # scheme like https://example.org/style.css.
-# # The attributes is used for attributes of tag.
-# # It defaults to an empty list.
-# #
-# html_css_files = ["css/custom.css"]
-
-# smartquotes_action = (
-# "qe" # renders only quotes and ellipses (...) but not dashes (option: D)
-# )
-
-# # Custom sidebar templates, must be a dictionary that maps document names
-# # to template names.
-# #
-# # This is required for the alabaster theme
-# # refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
-# html_sidebars = {
-# "**": [
-# "relations.html", # needs 'show_related': True theme option to display
-# "searchbox.html",
-# ],
-# "index": [],
-# "common/about": [],
-# }
-
-
-# # -- Options for HTMLHelp output ------------------------------------------
-
-# # Output file base name for HTML help builder.
-# htmlhelp_basename = "pyamldoc"
-
-# # -- Options for LaTeX output ---------------------------------------------
-
-# latex_elements = {
-# # The paper size ('letterpaper' or 'a4paper').
-# #
-# # 'papersize': 'letterpaper',
-# # The font size ('10pt', '11pt' or '12pt').
-# #
-# # 'pointsize': '10pt',
-# # Additional stuff for the LaTeX preamble.
-# #
-# # 'preamble': '',
-# # Latex figure (float) alignment
-# #
-# # 'figure_align': 'htbp',
-# }
-
-# # Grouping the document tree into LaTeX files. List of tuples
-# # (source start file, target name, title,
-# # author, documentclass [howto, manual, or own class]).
-# latex_documents = [
-# (master_doc, "pyaml.tex", "pyAML Documentation", "pyAML collaboration", "manual"),
-# ]
-
-# # -- Options for manual page output ---------------------------------------
-
-# # One entry per manual page. List of tuples
-# # (source start file, name, description, authors, manual section).
-# man_pages = [(master_doc, "pyaml", "pyAML Documentation", [author], 1)]
-
-# # -- Options for Texinfo output -------------------------------------------
-
-# # Grouping the document tree into Texinfo files. List of tuples
-# # (source start file, target name, title, author,
-# # dir menu entry, description, category)
-# texinfo_documents = [
-# (
-# master_doc,
-# "pyaml",
-# "pyAML Documentation",
-# author,
-# "pyaml",
-# "One line description of project.",
-# "Miscellaneous",
-# ),
-# ]
-
-# # -- Autodoc Configuration ---------------------------------------------------
-
-# # Add here all modules to be mocked up. When the dependencies are not met
-# # at building time. Here used to have PyQT mocked.
-# autodoc_mock_imports = [
-# "PyQt5",
-# "PyQt5.QtGui",
-# "PyQt5.QtCore",
-# "PyQt5.QtWidgets",
-# "matplotlib.backends.backend_qt5agg",
-# ]
-
-# # -- Options for the myst markdown parser ------------------------------------
-
-# myst_enable_extensions = [
-# "attrs_inline",
-# "colon_fence",
-# "dollarmath",
-# "replacements",
-# "deflist",
-# ]
-# myst_heading_anchors = 3
-# nb_execution_mode = "off" # "auto"
-# nb_execution_allow_errors = True
diff --git a/docs/getting-started/configuration.md b/docs/getting-started/configuration.md
deleted file mode 100644
index 9df0aa9c6..000000000
--- a/docs/getting-started/configuration.md
+++ /dev/null
@@ -1,4 +0,0 @@
-Setting up the Configuration
-======
-
-To write...
diff --git a/docs/getting-started/contribute.md b/docs/getting-started/contribute.md
deleted file mode 100644
index 5e0621cda..000000000
--- a/docs/getting-started/contribute.md
+++ /dev/null
@@ -1,5 +0,0 @@
-How to Contribute
-=================
-
-```{include} ../../CONTRIBUTING.md
-:start-after: "# Contributing to [Python Accelerator Middle Layer (PyAML)]"
diff --git a/docs/getting-started/index.rst b/docs/getting-started/index.rst
deleted file mode 100644
index 4be6fe1d3..000000000
--- a/docs/getting-started/index.rst
+++ /dev/null
@@ -1,13 +0,0 @@
-Getting Started
-======
-
-If you are a new user or developer you find instructions here for how to get started.
-
-.. toctree::
- :maxdepth: 1
-
- python-basics
- installation
- test-examples
- configuration
- contribute
diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md
deleted file mode 100644
index caf720553..000000000
--- a/docs/getting-started/installation.md
+++ /dev/null
@@ -1,75 +0,0 @@
-Installation
-==================
-
-## User Installation
-
-The latest release can be installed from PyPI. If you want to communicate with a control system you in addition need to install the bindings you want by specifing extras.
-
-You need at least Python 3.11.
-
-**Remember to always install in a virtual environment to avoid breaking your Python environment.**
-
-### Installing without Control System Bindings
-
-
-For example if you just want to use the simulator.
-
-```
-pip install accelerator-middle-layer
-```
-
-
-### Installing with Control System Bindings
-
-Available options for installing with control system bindings are:
-
-- `tango-pyaml` for the tango-pyaml bindings.
-- `cs-oa-epics` for `ophyd-async` bindings with both EPICS channel and PV access.
-- `cs-oa-tango` for `ophyd-async` bindings for TANGO.
-
-Example usage:
-
-```
-pip install accelerator-middle-layer[cs-oa-epics]
-```
-
-## Developer Installation
-
-To do development work you need to clone the source code from GitHub and install in editable mode.
-
-**Note: if you are not a maintainer of the code and have write permissions to the repository you need to first fork the repository.**
-
-1. Clone the repository (or your fork)
-
- The repository uses submodules so they also need to be initialized. This can be done in the same step by including ``--recurse-submodules``.
-
- Example usage:
-
- ```
- git clone --recurse-submodules https://github.com/python-accelerator-middle-layer/pyaml.git
- ```
-
-2. Make a virtual environment and activate it. It needs to use >= Python 3.11.
-
-3. Install the code in editable mode including development dependencies.
-
- ```
- cd pyaml
- pip install -e .[dev]
- ```
-
-4. Install the pre-commit hooks.
-
- ```
- pre-commit install
- ```
-
-5. Install control system bindings *(optional)*
-
- If you want to use control system bindings you need to also install the package for the binding you want to use. Follow the installation instructions in the corresponding repository.
-
- If you want to do development work on the bindings they need to be installed in editable mode, but if not you can install the latest release from PyPI.
-
-6. Install dummy control system for TANGO *(optional)*
-
- If you want to test the TANGO bindings without requiring a live machine or virtual accelerator you can install the dummy TANGO control system available in `tests/dummy-cs/tango`. It is a simple emulation that allows to check the interface to the control system. The control system doesn't do anything but is only intended for tests during development.
diff --git a/docs/getting-started/python-basics.md b/docs/getting-started/python-basics.md
deleted file mode 100644
index 23dd71a0f..000000000
--- a/docs/getting-started/python-basics.md
+++ /dev/null
@@ -1,100 +0,0 @@
-For Users New to Python
-========================
-
-If you are a new Python user this page provides some help to get started. It also provides some advice for MATLAB users migrating to Python.
-
-Python is a large ecosystem with many tools to achieve similar things so this is not intended to be a complete list. Which tool to use is often based on personal preference and the intention of this guide is only to provide a starting point for you to find you preferred setup.
-
-Integrated Development Environments
------------------------------------------
-
-Python can be run directly in a terminal or an [IPython](https://ipython.org/) shell but if you want to do more complex things like debug or develop code it is easier to use an Integrated Development Environment (IDE). There are many IDEs with Python support with different features, user experience etc so the choice is highly personal. Three common ones are:
-
-- **Spyder**:
- [https://www.spyder-ide.org/](https://www.spyder-ide.org/)
-
- Spyder is designed for scientific computing and data analysis. It has the most MATLAB-like interface which often makes it a preferred choice among MATLAB users. It works well when using standard scientific Python packages but has currently less support for custom Python classes. It also only has basic Git integration and works best with conda environments. There is an plugin for Jupyter notebooks but it is not available for all the installation options yet.
-
-- **VS Code**:
- [https://code.visualstudio.com/](https://code.visualstudio.com/)
-
- VS Code supports Python through extensions. It also has extensions for other programming languages as well as for Jupyter notebooks. It has a very good Git integration making it a good choice if you are new to using version control and prefer to not use the terminal. It also has very good support for all type of virtual environments. In addition, it has extensions to connect to remote services (such as clusters) and JupyterHub. Many HPC centers therefore provide a web-based version for their users. It however makes heavy use of keyboard shortcuts which can be a bit of a learning curve for new users.
-
-- **PyCharm**:
- [https://www.jetbrains.com/pycharm/](https://www.jetbrains.com/pycharm/)
-
- PyCharm is a dedicated Python IDE. It has many features and customization possibilities and is often used by software professionals. There is both a community (free) and professional (paid) edition.
-
-If you are a new user getting started who doesn't know yet what you prefer, a good choice is likely to start with VS Code.
-
-Jupyter Notebooks
------------------
-
-A very common way to run Python in the scientific community is to use [Jupyter notebooks](https://jupyter.org/). Is a browser-based tool which is very useful for data visualisation and interactive work. It can be installed both in a basic version **Jupyter Notebook** or as **JupyterLab** which provides some useful IDE features. It is common that tutorials will be in the form of a notebook.
-
-Installing Python
------------------
-
-There are many different ways to get an installation of Python. An important aspect is that you at some point might need to be able to switch between different versions and have more than one version installed simultaneously. There are different options available for this. Here are some common ones:
-
-- **pyenv**:
- [https://github.com/pyenv/pyenv](https://github.com/pyenv/pyenv)
-
- This is the most basic choice but probably too basic for most users. There is a plugin [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv) if you also want the tool to manage virtual environments.
-
-- **conda**:
- [https://docs.conda.io/projects/conda/en/stable/](https://docs.conda.io/projects/conda/en/stable/)
-
- Conda is often used in the scientific community. There are several versions available and some might require a license. A good choice to avoid license issues is to choose [Miniforge](https://github.com/conda-forge/miniforge). This gives you a minimal installation of the free community edition. In addition to different Python versions, it also provides an easy way to manage and create virtual environments.
-
-- **uv**:
- [https://docs.astral.sh/uv/](https://docs.astral.sh/uv/)
-
- Uv is a new tool which is intended as a single tool to replace the functionality of many other tools. In addition to managing Python versions and virtual environments it can also help to build packages. It however has a bit of a learning curve so is likely mostly a good choice for the experienced user who also wants to do development work.
-
-Python Packages
------------------
-
-After you have installed Python you need to install packages for the code that you want to use. There are two common ways to do this:
-
-- **pip**:
- [https://pip.pypa.io/en/stable/](https://pip.pypa.io/en/stable/)
-
- Pip is the standard package installer for Python. It is often automatically installed when you install Python and is easy to use. You can install from different sources as explained in the documentation [https://pip.pypa.io/en/stable/getting-started/](https://pip.pypa.io/en/stable/getting-started/).
-
-- **conda**
-
- If you are using conda, it also provides its own way of installing packages. You can however still use pip in conda environments in case the package is not available as a conda package. The installation is similar to when using pip [https://www.anaconda.com/docs/getting-started/working-with-conda/packages/install-packages](https://www.anaconda.com/docs/getting-started/working-with-conda/packages/install-packages).
-
-
-Virtual Environments
---------------------
-
-A key aspect of a good Python setup is to use virtual environments. A virtual environment is a self-contained directory which contains a Python installation for a specific version plus additional packages. The purpose is to install packages without fear of compatibility issues that might cause your entire Python setup to break. If something goes wrong, you can just delete the virtual environment and start over.
-
-**You should never install Python packages in your default Python environment. It can cause big problems and especially if your computer is using an OS which relies on Python.**
-
-The recommended workflow is to always create a virtual environment, activate it and then install the Python packages you need into it. There are two different versions of virtual environments:
-
-- **venv**:
- [https://docs.python.org/3/library/venv.html](https://docs.python.org/3/library/venv.html)
-
- This is the standard way that comes with the Python installation. It is very lightweight but can sometimes be annoying to use because you need to remember the command to activate the environment after it was created. The virtual environment is created in the current working folder so there is also no global way to manage your environments if you want an easy way to switch between environments. However, tools exist to extend the functionality such as [virtualenv](https://virtualenv.pypa.io/en/latest/) and [virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/en/latest/).
-
-- **conda**
-
- Conda can also create virtual environments. It provides and easy way to activate and switch between environments so is a good choice for new users.
-
-Some IDEs has the functionality to help you create and switch between virtual environments. This works for both type of environments and can substantially simplify the workflow compared to using the terminal.
-
-Example Resources
-------------------
-
-There are many resources available for learning Python and also dedicated resources tailored for the scientific community. Several organisations provide free courses and material for scientists. Here are some recommendations:
-
-- **The Python documentation**: [https://www.python.org/](https://www.python.org/)
-- **Python Packaging User Guide**: [https://packaging.python.org/en/latest/](https://packaging.python.org/en/latest/)
-- **Scientific Python**: [https://scientific-python.org/](https://scientific-python.org/)
-- **Carpentries**: [https://carpentries.org/](https://carpentries.org/)
-- **CodeRefinery**: [https://coderefinery.org/](https://coderefinery.org/)
-- **Software Sustainability Institute.**: [https://www.software.ac.uk/](https://www.software.ac.uk/)
diff --git a/docs/getting-started/test-examples.md b/docs/getting-started/test-examples.md
deleted file mode 100644
index da8c46175..000000000
--- a/docs/getting-started/test-examples.md
+++ /dev/null
@@ -1,8 +0,0 @@
-Test Examples
-==============
-
-Test examples are available in the [examples folder](https://github.com/python-accelerator-middle-layer/pyaml/tree/main/examples).
-
-There you can also find instructions for how to run the examples.
-
-Some examples exist both as notebooks and scripts depending on how you prefer to run them.
diff --git a/docs/how-to/apptainer.md b/docs/how-to/apptainer.md
deleted file mode 100644
index 12ce814fc..000000000
--- a/docs/how-to/apptainer.md
+++ /dev/null
@@ -1,58 +0,0 @@
-Running Virtual Accelerator
-=============================
-
-Virtual accelerators are available as [Apptainer](https://apptainer.org/) containers.
-Instructions for how to install and run Apptainer on different OS are available here.
-The instructions for how to run a specific virtual accelerator are available in the [examples folder](https://github.com/python-accelerator-middle-layer/pyaml/tree/main/examples).
-
-## Linux
-
-Installation instructions are available at [https://apptainer.org/docs/admin/main/installation.html#installation-on-linux](https://apptainer.org/docs/admin/main/installation.html#installation-on-linux).
-
-Try to first install using the [pre-build packages](https://apptainer.org/docs/admin/main/installation.html#install-from-pre-built-packages) for your Linux distribution.
-
-If that doesn't work (for example if it requires root permissions which you don't have), do an [unprivileged installation](https://apptainer.org/docs/admin/main/installation.html#install-from-pre-built-packages) instead.
-
-You should then be able to run Apptainer in a terminal.
-
-## Windows
-
-For Windows you need to install and run in [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/). Follow the instructions at [https://apptainer.org/docs/admin/main/installation.html#windows](https://apptainer.org/docs/admin/main/installation.html#windows).
-
-You can then start the Ubuntu app which opens a Linux terminal where you can run Apptainer.
-
-## Mac
-
-For Mac you need to use Lima. Instructions are available at [https://apptainer.org/docs/admin/main/installation.html#mac](https://apptainer.org/docs/admin/main/installation.html#mac) but more detailed instructions are below since some additonal steps are required.
-
-For ARM-based MacOS server:
-
-```
-brew install qemu lima
-
-limactl start –rosetta –vm-type=vz –network=vzNAT template://apptainer
-```
-
-For Intel-based MacOS server:
-
-```
-brew install lima
-
-limactl start –vm-type=vz –network=vzNAT template://apptainer
-```
-
-To run the container you need to first do:
-
-```
-limactl shell apptainer
-```
-
-before you can run Apptainer.
-
-To stop the container you need to do:
-
-```
-limactl stop apptainer
-
-limactl delete apptainer
-```
diff --git a/docs/how-to/index.rst b/docs/how-to/index.rst
deleted file mode 100644
index a9252c9b0..000000000
--- a/docs/how-to/index.rst
+++ /dev/null
@@ -1,23 +0,0 @@
-How to Guides
-=============
-
-Here you can find step-by-step guides for both new and experienced users.
-
-Basics
--------
-
-.. toctree::
- :maxdepth: 1
-
- Load Configuration <../notebooks/load_configuration>
- Control Modes <../notebooks/live_design>
- Control System <../notebooks/control_system>
- Use Arrays <../notebooks/arrays>
-
-Advanced
--------
-
-.. toctree::
- :maxdepth: 1
-
- apptainer
diff --git a/docs/index.rst b/docs/index.rst
deleted file mode 100644
index 083423b55..000000000
--- a/docs/index.rst
+++ /dev/null
@@ -1,34 +0,0 @@
-Python Accelerator Middle Layer
-===================
-
-Python Accelerator Middle Layer (pyAML) is a joint technology platform for design, commissioning and operation of particle accelerators.
-
-The code is still under development. The features include among others:
-
-- A control system agnostic interface to interact with the accelerator.
-- Same interface to different backends: live accelerator, virtual accelerator and simulator.
-- Machine independence allowing configuration of different type of accelerators and facility specific naming conventions.
-- Unit conversions.
-- Automatic generation of metadata and standardized format for measurement data.
-- A set of standard applications and a framework for developing new applications.
-
-Installation
-------------
-
-For installation instructions see :doc:`getting-started/installation`.
-
-.. toctree::
- :maxdepth: 1
- :hidden:
-
- getting-started/index
- how-to/index
- tutorial/index
- api
-
-Indices
-------------
-
-* :ref:`genindex`
-* :ref:`modindex`
-* :ref:`search`
diff --git a/docs/make.bat b/docs/make.bat
index 32bb24529..747ffb7b3 100644
--- a/docs/make.bat
+++ b/docs/make.bat
@@ -7,8 +7,8 @@ REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
-set SOURCEDIR=.
-set BUILDDIR=_build
+set SOURCEDIR=source
+set BUILDDIR=build
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
diff --git a/docs/notebooks/arrays.ipynb b/docs/notebooks/arrays.ipynb
deleted file mode 100644
index 898cf955f..000000000
--- a/docs/notebooks/arrays.ipynb
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "40dec8f5",
- "metadata": {},
- "source": [
- "# use of magnet arrays\n",
- "\n",
- "In pyAML it is possible to configure magnet arrays (families of magnets)\n",
- "\n",
- "Some families are available by default:\n",
- "- dipoles\n",
- "- quadrupoles\n",
- "- skewquadrupoles\n",
- "- sextupoles\n",
- "- horcorrectors\n",
- "- vercorrectors\n",
- "- octupoles\n",
- "\n",
- "Any other family (in the example my-family-of-quads) may be defined when configuring pyAML, using defined devices.\n",
- "\n",
- "```\n",
- "type: pyaml.accelerator\n",
- "name: sr\n",
- "arrays:\n",
- " - type: pyaml.arrays.magnet\n",
- " name: my-family-of-quads\n",
- " elements:\n",
- " - QD2A-C03\n",
- " - QD2E-C04\n",
- " - QD2A-C05\n",
- "devices: \n",
- " - type: pyaml.magnet.quadrupole\n",
- " name: QD2A-C03\n",
- " - type: pyaml.magnet.quadrupole\n",
- " name: QD2E-C04\n",
- " - type: pyaml.magnet.quadrupole\n",
- " name: QD2A-C05\n",
- "```"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a78867b0",
- "metadata": {},
- "source": [
- "Below some feature of magnets arrays is presented"
- ]
- }
- ],
- "metadata": {
- "language_info": {
- "name": "python"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/docs/notebooks/control_system.ipynb b/docs/notebooks/control_system.ipynb
deleted file mode 100644
index 2639c6804..000000000
--- a/docs/notebooks/control_system.ipynb
+++ /dev/null
@@ -1,162 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "7a473047",
- "metadata": {},
- "source": [
- "# Control System set up"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "62672006",
- "metadata": {},
- "source": [
- "The control system interface is in a separated package from pyaml\n",
- "\n",
- "pyaml itself: \\\n",
- "pip install accelerator-middle-layer\n",
- "\n",
- "tango interface to pyaml: \\\n",
- "pip install tango-pyaml \n",
- "\n",
- "ophyd-asynch interface to pyaml: \\\n",
- "pip install pyaml-oa-cs \n",
- "\n",
- "If the above packages are installed the examples below will work \n",
- "\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ae7657cc",
- "metadata": {},
- "outputs": [],
- "source": [
- "from pyaml.accelerator import Accelerator"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ff7bfc05",
- "metadata": {},
- "source": [
- "Assuming these lines are present in ../../tests/config/EBSTune_TANGO.yaml\n",
- "```\n",
- "type: pyaml.accelerator\n",
- "name: sr\n",
- "energy: 6e9\n",
- "controls:\n",
- " - type: tango.pyaml.controlsystem\n",
- " tango_host: ebs-simu-3:10000\n",
- " name: live\n",
- "...\n",
- "powerconverter:\n",
- " type: tango.pyaml.attribute\n",
- "...\n",
- "tune_h:\n",
- " type: tango.pyaml.attribute_read_only\n",
- "...\n",
- "```"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "86dec08e",
- "metadata": {},
- "outputs": [],
- "source": [
- "# work with TANGO\n",
- "SR_Tango: Accelerator = Accelerator.load(\"../../tests/config/EBSTune.yaml\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a61409b3",
- "metadata": {},
- "source": [
- "Assuming these lines are present in ../../tests/config/EBSTuneOATango.yaml\n",
- "```\n",
- "type: pyaml.accelerator\n",
- "name: sr\n",
- "energy: 6e9\n",
- "controls:\n",
- " - type: pyaml-cs-oa.pyaml.controlsystem\n",
- " name: live\n",
- "...\n",
- " powerconverter:\n",
- " type: pyaml_cs_oa.tangoRW\n",
- "...\n",
- " tune_h:\n",
- " type: pyaml_cs_oa.tangoR\n",
- "```"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "588bafd1",
- "metadata": {},
- "source": [
- "this works with Ophyd-Asynch - tango:\n",
- "\n",
- "SR_OphydAsynch_Tango: Accelerator = Accelerator.load(\"../../tests/config/EBSTuneOATango.yaml\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "62dfee77",
- "metadata": {},
- "source": [
- "Assuming these lines are present in ../../tests/config/EBSTuneOAEpics.yaml\n",
- "```\n",
- "type: pyaml.accelerator\n",
- "name: sr\n",
- "energy: 6e9\n",
- "controls:\n",
- " - type: pyaml-cs-oa.pyaml.controlsystem\n",
- " name: live\n",
- "...\n",
- " powerconverter:\n",
- " type: pyaml_cs_oa.epicsRW\n",
- "...\n",
- " tune_h:\n",
- " type: pyaml_cs_oa.epicsR\n",
- "```"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b2da995b",
- "metadata": {},
- "source": [
- "This work with Ophyd-Asynch - epics :\n",
- "\n",
- "SR_OphydAsynch_Epics: Accelerator = Accelerator.load(\"../../examples/BESSY2_example/BESSY2Tune.yaml\")"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "pyaml_venv",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.14.0"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/docs/notebooks/developper_install_instructions.ipynb b/docs/notebooks/developper_install_instructions.ipynb
deleted file mode 100644
index 67cdf6993..000000000
--- a/docs/notebooks/developper_install_instructions.ipynb
+++ /dev/null
@@ -1,168 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "29636569",
- "metadata": {},
- "source": [
- "# developper installation instructions\n",
- "\n",
- "## prepare \n",
- "cd work_dir\n",
- "\n",
- "deactivate existing python venv\n",
- "\n",
- "preconditions: \n",
- "verify python version > 3.11 \n",
- "verify github keys, or follow link to set them up \n",
- "\n",
- "## clone repositories for local development\n",
- "```bash\n",
- "git clone https://github.com/python-accelerator-middle-layer/tango-pyaml.git \n",
- "git clone https://github.com/python-accelerator-middle-layer/pyaml.git \n",
- "git clone https://github.com/python-accelerator-middle-layer/pyaml-cs-oa.git # optional\n",
- "```\n",
- "\n",
- "## create virtual environment\n",
- "python -m venv pyaml_venv \n",
- "source ./pyaml_venv/bin/activate \n",
- "pip install --upgrade pip \n",
- "\n",
- "## use latest pyAML version rather than latest release\n",
- "```bash\n",
- "cd pyaml \n",
- "git submodule update --init --recursive \n",
- "pip install -e . \n",
- "cd .. \n",
- "```\n",
- "\n",
- "## install tango-pyaml \n",
- "\n",
- "notice: do not do \"pip install -e .\" it does not work\n",
- "\n",
- "```bash\n",
- "cd tango-pyaml \n",
- "pip install . \n",
- "cd .. \n",
- "```\n",
- "\n",
- "[//]: # (OR latest ophid asych) \n",
- "[//]: # (cd ../pyaml-cs-oa/ )\n",
- "[//]: # (pip install -e . )\n",
- "[//]: # (pip install -e .[dev] (very very long ~10 min on Simone's laptop) )\n",
- "[//]: # (pre-commit install )\n",
- "\n",
- "## install dummy tango control system\n",
- "\n",
- "this will emulate device as in tango, but will not modify any beam dynamics value. only read/write of device attribute will be updated. read-only values will all return zero.\n",
- "\n",
- "```bash\n",
- "cd pyaml\n",
- "pip install ./tests/dummy_cs/tango-pyaml\n",
- "cd ..\n",
- "```\n",
- "\n",
- "## install virtual accelerator \n",
- "SOLEIL will provide virtual accelerator installation scenario\n",
- "\n",
- "\n",
- "## expected output\n",
- "The output of pip list should be similar to: \n",
- "```bash\n",
- "accelerator-middle-layer 0.1.1 /Users/liuzzo/Desktop/test installation/pyaml \n",
- "accelerator-toolbox 0.7.1 \n",
- "annotated-types 0.7.0 \n",
- "contourpy 1.3.3 \n",
- "cycler 0.12.1 \n",
- "docstring_parser 0.17.0 \n",
- "fonttools 4.61.1 \n",
- "h5py 3.15.1 \n",
- "kiwisolver 1.4.9 \n",
- "matplotlib 3.10.8 \n",
- "numpy 2.3.5 \n",
- "packaging 25.0 \n",
- "pillow 12.0.0 \n",
- "pip 25.3 \n",
- "psutil 7.1.3 \n",
- "pydantic 2.12.5 \n",
- "pydantic_core 2.41.5 \n",
- "pyparsing 3.2.5 \n",
- "pytango 10.1.1 \n",
- "python-dateutil 2.9.0.post0 \n",
- "PyYAML 6.0.3 \n",
- "scipy 1.16.3 \n",
- "six 1.17.0 \n",
- "tango-pyaml 0.3.1 \n",
- "typing_extensions 4.15.0 \n",
- "typing-inspection 0.4.2 \n",
- "```\n",
- "\n",
- "## test that the installation is working correctly by running a pyAML example script\n",
- "```bash\n",
- "python ./pyaml/examples/ESRF_tune_example/esrf_tune_example.py \n",
- "```\n",
- "\n",
- "## look at documentation to further test existing features\n",
- "https://pyaml.readthedocs.io/en/latest/?badge=latest \n",
- "\n",
- "## example of development of pyaml documentation \n",
- "```bash\n",
- "cd pyaml\n",
- "```\n",
- "## create a new branch\n",
- "```bash\n",
- "git checkout -b doc-devnotebook\n",
- "```\n",
- "\n",
- "## push the branch to remote\n",
- "```bash\n",
- "git push -u origin doc-devnotebook\n",
- "```\n",
- "\n",
- "## modify something or add a file\n",
- "```bash\n",
- "edit ./pyaml/docs/notebooks/developper_install_instructions.ipynb \n",
- "save\n",
- "```\n",
- "\n",
- "## add file to git revision \n",
- "```bash\n",
- "git add docs/notebooks/developper_install_instructions.ipynb \n",
- "```\n",
- "\n",
- "## test your code developments locally (in this example, build teh documentation locally)\n",
- "```bash\n",
- "pip install sphinx \n",
- "pip install myst_nb \n",
- "pip install pydata_sphinx_theme \n",
- "python -m sphinx -b html docs ./docs/_build -d ./docs/_build \n",
- "```\n",
- "\n",
- "## commit change\n",
- "```bash\n",
- "git commit ./docs/notebooks/developper_install_instructions.ipynb -m'some draft notes'\n",
- "```\n",
- "## push to remote\n",
- "```bash\n",
- "git push\n",
- "```\n",
- "### open a pull request to accept your change:\n",
- "in a browser navigate to: https://github.com/python-accelerator-middle-layer/pyaml \n",
- "click on \"compare and pull request\" \n",
- "Add some description and click on Create pull request. \n",
- "\n",
- "The pull request page will open \n",
- "Add reviewers to your pull request: in order to be approved, 2 positive reviews are needed. \n",
- "\n",
- "\n"
- ]
- }
- ],
- "metadata": {
- "language_info": {
- "name": "python"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/docs/notebooks/live_design.ipynb b/docs/notebooks/live_design.ipynb
deleted file mode 100644
index 0afe46471..000000000
--- a/docs/notebooks/live_design.ipynb
+++ /dev/null
@@ -1,171 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "d3621c17",
- "metadata": {},
- "source": [
- "# Live/Design: control modes\n",
- "\n",
- "With *pyAML* it is possible to use the same commands either:\n",
- "1. live: on the real accelerator\n",
- "2. design: in simulations\n",
- "3. errors: in simulations with errors (and for several seeds)\n",
- "4. live (with a different prefix/host): in a virtual control system (same as in point 1. for those laboratories that have a simulated control system)\n",
- "\n",
- "Those are called \"control modes\" and may be used \n",
- "- at a global script level (for testing in simulations and then using in real accelerator measurements with a simple switch/comment) \n",
- "- anywhere in the script "
- ]
- },
- {
- "cell_type": "markdown",
- "id": "805b0f6c",
- "metadata": {},
- "source": [
- "Using pyAML on a real accelerator"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c4884e24",
- "metadata": {},
- "outputs": [],
- "source": [
- "import os\n",
- "\n",
- "import numpy as np\n",
- "\n",
- "from pyaml.accelerator import Accelerator"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b8ff1736",
- "metadata": {},
- "source": [
- "instantiate a pyAML accelerator"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "fc1881d9",
- "metadata": {},
- "outputs": [],
- "source": [
- "SR: Accelerator = Accelerator.load(\"../../tests/config/EBSTune.yaml\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9a3c6e0a",
- "metadata": {},
- "source": [
- "**Switch between live and design**"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4e55d6b6",
- "metadata": {},
- "source": [
- "Access some magnet families defined in the configuration is simple. One can use sr.live for live control system or sr.design for the simulator part. They provide identical interface."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "31882398",
- "metadata": {},
- "outputs": [],
- "source": [
- "sr = SR.design # simulations\n",
- "# sr = SR.live # act on real accelerator"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b1fb943f",
- "metadata": {},
- "outputs": [],
- "source": [
- "quadForTune = sr.get_magnets(\"QForTune\")\n",
- "\n",
- "tune_device = sr.get_betatron_tune_monitor(\"BETATRON_TUNE\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "fdc66eea",
- "metadata": {},
- "source": [
- "For example a tune response matrix is evaluated below. This script is used identically for computation of theoretical values or to measure the response directly on the accelerator."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d6dc44d3",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Build tune response matrix\n",
- "initial_tune = tune_device.tune.get()\n",
- "print(f\"Tune via pyAML interface for design mode {initial_tune}\")\n",
- "tunemat = np.zeros((len(quadForTune), 2))\n",
- "\n",
- "for idx, m in enumerate(quadForTune):\n",
- " str = m.strength.get()\n",
- " m.strength.set(str + 1e-4)\n",
- " dq = tune_device.tune.get() - initial_tune\n",
- " tunemat[idx] = dq * 1e4\n",
- " m.strength.set(str)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "bf75c939",
- "metadata": {},
- "source": [
- "At any point in the code it is always possible to still access any of the control modes"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b5cec1f2",
- "metadata": {},
- "outputs": [],
- "source": [
- "SR.design.get_lattice().disable_6d()\n",
- "tune_design = SR.design.get_lattice().get_tune()\n",
- "\n",
- "print(f\"Tune directly from the lattice {tune_design}\")"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.12.3"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/docs/notebooks/load_configuration.ipynb b/docs/notebooks/load_configuration.ipynb
deleted file mode 100644
index f1fe1a3fc..000000000
--- a/docs/notebooks/load_configuration.ipynb
+++ /dev/null
@@ -1,120 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "420c1a3c",
- "metadata": {},
- "source": [
- "# Configuration"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7204f09a",
- "metadata": {},
- "outputs": [],
- "source": [
- "from pyaml.accelerator import Accelerator\n",
- "\n",
- "SR: Accelerator = Accelerator.load(\"../../tests/config/EBSTune.yaml\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f6ccb72a",
- "metadata": {},
- "source": [
- "pyaml/tests/config/EBSTune.yaml is an example pyAML yaml configuration file that defines:\n",
- "- a 6GeV Storage ring with\n",
- " - 1 array (family) of quadrupoles used for tune correction\n",
- " - 1 tune device\n",
- " - controlled by Tango\n",
- " - simulated with AT\n",
- "\n",
- "It looks like this: \n",
- "\n",
- "```\n",
- "type: pyaml.accelerator\n",
- "name: sr\n",
- "energy: 6e9\n",
- "simulators:\n",
- " - type: pyaml.lattice.simulator\n",
- " lattice: sr/lattices/ebs.mat\n",
- " name: design\n",
- "controls:\n",
- " - type: tango.pyaml.controlsystem\n",
- " tango_host: ebs-simu-3:10000\n",
- " name: live\n",
- "\n",
- "data_folder: /data/store\n",
- " arrays:\n",
- " - type: pyaml.arrays.magnet\n",
- " name: QForTune\n",
- " elements:\n",
- " - QD2A-C03\n",
- " - QD2E-C04\n",
- " - QD2A-C05\n",
- " - ...\n",
- " devices: \n",
- " - type: pyaml.magnet.quadrupole\n",
- " name: QD2A-C03\n",
- " model:\n",
- " type: pyaml.magnet.linear_model\n",
- " calibration_factor: 1.002096389\n",
- " crosstalk: 0.99912\n",
- " curve:\n",
- " type: pyaml.configuration.csvcurve\n",
- " file: sr/magnet_models/QD2_strength.csv\n",
- " unit: 1/m\n",
- " powerconverter:\n",
- " type: tango.pyaml.attribute\n",
- " attribute: srmag/vps-qd2/c03-a/current\n",
- " unit: A\n",
- " - ... \n",
- " - ...\n",
- " - ...\n",
- " - type: pyaml.diagnostics.tune_monitor\n",
- " name: BETATRON_TUNE\n",
- " tune_h:\n",
- " type: tango.pyaml.attribute_read_only\n",
- " attribute: srdiag/tune/tune_h\n",
- " unit: mm\n",
- " tune_v:\n",
- " type: tango.pyaml.attribute_read_only\n",
- " attribute: srdiag/tune/tune_v\n",
- " unit: mm\n",
- "```\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0a3805fd-f96d-4ca0-9246-97b30baa1c32",
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.12.3"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/docs/requirements.txt b/docs/requirements.txt
new file mode 100644
index 000000000..0c8945196
--- /dev/null
+++ b/docs/requirements.txt
@@ -0,0 +1,4 @@
+sphinx~= 8.1
+pydata-sphinx-theme
+myst_parser
+sphinx-copybutton
diff --git a/docs/_static/img/dark.png b/docs/source/_static/_images/dark.png
similarity index 100%
rename from docs/_static/img/dark.png
rename to docs/source/_static/_images/dark.png
diff --git a/docs/_static/img/logo.png b/docs/source/_static/_images/logo.png
similarity index 100%
rename from docs/_static/img/logo.png
rename to docs/source/_static/_images/logo.png
diff --git a/docs/_static/img/logosmall.png b/docs/source/_static/_images/logosmall.png
similarity index 100%
rename from docs/_static/img/logosmall.png
rename to docs/source/_static/_images/logosmall.png
diff --git a/docs/source/_static/custom.css b/docs/source/_static/custom.css
new file mode 100644
index 000000000..299703078
--- /dev/null
+++ b/docs/source/_static/custom.css
@@ -0,0 +1,7 @@
+.api-root h1 {
+ display: none;
+}
+
+.api-generation {
+ display: none;
+}
diff --git a/pyaml/lattice/element.py b/docs/source/_templates/.gitkeep
similarity index 100%
rename from pyaml/lattice/element.py
rename to docs/source/_templates/.gitkeep
diff --git a/docs/source/api.rst b/docs/source/api.rst
new file mode 100644
index 000000000..7ab089cef
--- /dev/null
+++ b/docs/source/api.rst
@@ -0,0 +1,14 @@
+API Reference
+=============
+
+.. container:: api-generation
+
+ .. autosummary::
+ :toctree: api
+ :recursive:
+
+ pyaml
+
+.. container:: api-root
+
+ .. include:: api/pyaml.rst
diff --git a/docs/source/conf.py b/docs/source/conf.py
new file mode 100644
index 000000000..560eafeda
--- /dev/null
+++ b/docs/source/conf.py
@@ -0,0 +1,73 @@
+# Configuration file for the Sphinx documentation builder.
+#
+# For the full list of built-in configuration values, see the documentation:
+# https://www.sphinx-doc.org/en/master/usage/configuration.html
+
+
+# -- Project information -----------------------------------------------------
+# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
+
+project = "pyaml"
+copyright = "2026, pyAML Collaboration"
+author = "pyAML Collaboration"
+
+# -- General configuration ---------------------------------------------------
+# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
+
+extensions = [
+ "sphinx.ext.autodoc",
+ "sphinx.ext.autosummary",
+ "sphinx.ext.napoleon",
+ "myst_parser",
+ "sphinx_copybutton",
+]
+
+autosummary_generate = True
+
+# Maybe add "undoc-members": True here later
+autodoc_default_options = {"members": True, "show-inheritance": True, "member-order": "groupwise"}
+
+autodoc_typehints = "description"
+autodoc_typehints_description_target = "documented"
+autodoc_typehints_format = "short"
+# autosummary_generate_overwrite = False
+# autosummary_ignore_module_all = False
+autoclass_content = "both" # include both class docstring and __init__
+
+napoleon_use_rtype = False # More legible
+# napoleon_numpy_docstring = False # Force consistency, leave only Google
+# napoleon_custom_sections = [("Returns", "params_style")]
+
+templates_path = ["_templates"]
+exclude_patterns = []
+
+
+# -- Options for HTML output -------------------------------------------------
+# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
+
+html_theme = "pydata_sphinx_theme"
+html_static_path = ["_static"]
+html_title = "pyaml"
+html_show_sourcelink = False
+html_css_files = ["custom.css"]
+html_logo = "_static/_images/logo.png"
+
+html_theme_options = {
+ "navigation_depth": 4,
+ "show_nav_level": 2,
+ "icon_links": [
+ {
+ "name": "GitHub",
+ "url": "https://github.com/python-accelerator-middle-layer/pyaml",
+ "icon": "fa-brands fa-github",
+ "type": "fontawesome",
+ },
+ ],
+}
+
+html_sidebars = {
+ "**": [
+ "sidebar-collapse",
+ "sidebar-nav-bs",
+ ],
+}
diff --git a/docs/source/index.rst b/docs/source/index.rst
new file mode 100644
index 000000000..90a87b0f2
--- /dev/null
+++ b/docs/source/index.rst
@@ -0,0 +1,16 @@
+
+.. include:: ../../README.md
+ :parser: myst_parser.sphinx_
+
+.. seealso::
+
+ This package is part of the
+ `pyAML ecosystem `__.
+ See the `main pyAML documentation
+ `__
+ for tutorials, how-to guides, and an overview of the ecosystem.
+
+.. toctree::
+ :hidden:
+
+ api
diff --git a/docs/tutorial/index.rst b/docs/tutorial/index.rst
deleted file mode 100644
index a8ce84425..000000000
--- a/docs/tutorial/index.rst
+++ /dev/null
@@ -1,15 +0,0 @@
-Tutorials
-=============
-
-Here you can find tutorials to LEARN how to use the accelerator middle layer software.
-
-Basics
--------
-
-.. toctree::
- :maxdepth: 1
-
- How to correct tunes
-
-Advanced
----------
diff --git a/examples/BESSY2_example/BESSY2Chroma.yaml b/examples/BESSY2_example/BESSY2Chroma.yaml
deleted file mode 100644
index 3060ff55a..000000000
--- a/examples/BESSY2_example/BESSY2Chroma.yaml
+++ /dev/null
@@ -1,41 +0,0 @@
-type: pyaml.accelerator
-facility: BESSY2
-machine: sr
-energy: 1.7e9
-simulators:
-- type: pyaml.lattice.simulator
- lattice: bessy2_standard_user.mat
- name: design
-controls:
-- type: pyaml_cs_oa.controlsystem
- prefix: 'pons:'
- name: live
-data_folder: /data/store
-devices:
-- type: pyaml.diagnostics.tune_monitor
- name: BETATRON_TUNE
- tune_h:
- type: pyaml_cs_oa.epicsR
- read_pvname: beam:twiss:x:tune
- unit: ''
- tune_v:
- type: pyaml_cs_oa.epicsR
- read_pvname: beam:twiss:y:tune
- unit: ''
-- type: pyaml.diagnostics.chromaticity_monitor
- name: KSI
- betatron_tune_name: BETATRON_TUNE
- rf_plant_name: RF
- fit_order: 2
- n_avg_meas: 1
- n_step: 5
- sleep_between_meas: 2
- sleep_between_step: 2
- e_delta: 1e-3
- max_e_delta: 1e-3
-- type: pyaml.rf.rf_plant
- name: RF
- masterclock:
- type: pyaml_cs_oa.epicsW
- write_pvname: MCLKHX251C:freq
- unit: KHz
diff --git a/examples/BESSY2_example/BESSY2Orbit.yaml b/examples/BESSY2_example/BESSY2Orbit.yaml
deleted file mode 100644
index 2d1abe962..000000000
--- a/examples/BESSY2_example/BESSY2Orbit.yaml
+++ /dev/null
@@ -1,3349 +0,0 @@
-type: pyaml.accelerator
-machine: sr
-facility: BESSY2
-energy: 1.7185e9
-simulators:
- - type: pyaml.lattice.simulator
- lattice: bessy2_standard_user.mat
- name: design
-controls:
- - type: pyaml_cs_oa.controlsystem
- prefix: "pons:"
- name: live
-data_folder: /data/store
-arrays:
- - type: pyaml.arrays.magnet
- name: HCorr
- elements:
- - HS4M2D1R
- - HS1MT1R
- - HS4M1T1R
- - HS4M2T1R
- - HS1MD2R
- - HS4M1D2R
- - HS4M2D2R
- - HS1MT2R
- - HS4M1T2R
- - HS4M2T2R
- - HS1MD3R
- - HS4M1D3R
- - HS4M2D3R
- - HS1MT3R
- - HS4M1T3R
- - HS4M2T3R
- - HS1MD4R
- - HS4M1D4R
- - HS4M2D4R
- - HS1MT4R
- - HS4M1T4R
- - HS4M2T4R
- - HS1MD5R
- - HS4M1D5R
- - HS4M2D5R
- - HS1MT5R
- - HS4M1T5R
- - HS4M2T5R
- - HS1MD6R
- - HS4M1D6R
- - HS4M2D6R
- - HS1MT6R
- - HS4M1T6R
- - HS4M2T6R
- - HS1MD7R
- - HS4M1D7R
- - HS4M2D7R
- - HS1MT7R
- - HS4M1T7R
- - HS4M2T7R
- - HS1MD8R
- - HS4M1D8R
- - HS4M2D8R
- - HS1MT8R
- - HS4M1T8R
- - HS4M2T8R
- - HS1MD1R
- - HS4M1D1R
- - type: pyaml.arrays.magnet
- name: VCorr
- elements:
- - VS3M2D1R
- - VS2M2D1R
- - VS2M1T1R
- - VS3M1T1R
- - VS3M2T1R
- - VS2M2T1R
- - VS2M1D2R
- - VS3M1D2R
- - VS3M2D2R
- - VS2M2D2R
- - VS2M1T2R
- - VS3M1T2R
- - VS3M2T2R
- - VS2M2T2R
- - VS2M1D3R
- - VS3M1D3R
- - VS3M2D3R
- - VS2M2D3R
- - VS2M1T3R
- - VS3M1T3R
- - VS3M2T3R
- - VS2M2T3R
- - VS2M1D4R
- - VS3M1D4R
- - VS3M2D4R
- - VS2M2D4R
- - VS2M1T4R
- - VS3M1T4R
- - VS3M2T4R
- - VS2M2T4R
- - VS2M1D5R
- - VS3M1D5R
- - VS3M2D5R
- - VS2M2D5R
- - VS2M1T5R
- - VS3M1T5R
- - VS3M2T5R
- - VS2M2T5R
- - VS2M1D6R
- - VS3M1D6R
- - VS3M2D6R
- - VS2M2D6R
- - VS2M1T6R
- - VS3M1T6R
- - VS3M2T6R
- - VS2M2T6R
- - VS2M1D7R
- - VS3M1D7R
- - VS3M2D7R
- - VS2M2D7R
- - VS2M1T7R
- - VS3M1T7R
- - VS3M2T7R
- - VS2M2T7R
- - VS2M1D8R
- - VS3M1D8R
- - VS3M2D8R
- - VS2M2D8R
- - VS2M1T8R
- - VS3M1T8R
- - VS3M2T8R
- - VS2M2T8R
- - VS2M1D1R
- - VS3M1D1R
- - type: pyaml.arrays.bpm
- name: BPM
- elements:
- - BPMZ5D1R
- - BPMZ6D1R
- - BPMZ7D1R
- - BPMZ1T1R
- - BPMZ2T1R
- - BPMZ3T1R
- - BPMZ4T1R
- - BPMZ41T1R
- - BPMZ5T1R
- - BPMZ6T1R
- - BPMZ7T1R
- - BPMZ1D2R
- - BPMZ2D2R
- - BPMZ3D2R
- - BPMZ4D2R
- - BPMZ5D2R
- - BPMZ6D2R
- - BPMZ7D2R
- - BPMZ1T2R
- - BPMZ2T2R
- - BPMZ3T2R
- - BPMZ4T2R
- - BPMZ41T2R
- - BPMZ42T2R
- - BPMZ43T2R
- - BPMZ5T2R
- - BPMZ6T2R
- - BPMZ7T2R
- - BPMZ1D3R
- - BPMZ2D3R
- - BPMZ3D3R
- - BPMZ4D3R
- - BPMZ5D3R
- - BPMZ6D3R
- - BPMZ7D3R
- - BPMZ1T3R
- - BPMZ2T3R
- - BPMZ3T3R
- - BPMZ4T3R
- - BPMZ5T3R
- - BPMZ6T3R
- - BPMZ7T3R
- - BPMZ1D4R
- - BPMZ2D4R
- - BPMZ3D4R
- - BPMZ4D4R
- - BPMZ5D4R
- - BPMZ6D4R
- - BPMZ7D4R
- - BPMZ1T4R
- - BPMZ2T4R
- - BPMZ3T4R
- - BPMZ4T4R
- - BPMZ5T4R
- - BPMZ6T4R
- - BPMZ7T4R
- - BPMZ1D5R
- - BPMZ2D5R
- - BPMZ3D5R
- - BPMZ4D5R
- - BPMZ5D5R
- - BPMZ6D5R
- - BPMZ7D5R
- - BPMZ1T5R
- - BPMZ2T5R
- - BPMZ3T5R
- - BPMZ4T5R
- - BPMZ5T5R
- - BPMZ6T5R
- - BPMZ7T5R
- - BPMZ1D6R
- - BPMZ2D6R
- - BPMZ3D6R
- - BPMZ4D6R
- - BPMZ41D6R
- - BPMZ42D6R
- - BPMZ43D6R
- - BPMZ44D6R
- - BPMZ6D6R
- - BPMZ7D6R
- - BPMZ1T6R
- - BPMZ2T6R
- - BPMZ3T6R
- - BPMZ4T6R
- - BPMZ41T6R
- - BPMZ5T6R
- - BPMZ6T6R
- - BPMZ7T6R
- - BPMZ1D7R
- - BPMZ2D7R
- - BPMZ3D7R
- - BPMZ4D7R
- - BPMZ5D7R
- - BPMZ6D7R
- - BPMZ7D7R
- - BPMZ1T7R
- - BPMZ2T7R
- - BPMZ3T7R
- - BPMZ4T7R
- - BPMZ41T7R
- - BPMZ5T7R
- - BPMZ6T7R
- - BPMZ7T7R
- - BPMZ1D8R
- - BPMZ2D8R
- - BPMZ3D8R
- - BPMZ4D8R
- - BPMZ5D8R
- - BPMZ6D8R
- - BPMZ7D8R
- - BPMZ1T8R
- - BPMZ2T8R
- - BPMZ3T8R
- - BPMZ4T8R
- - BPMZ5T8R
- - BPMZ6T8R
- - BPMZ7T8R
- - BPMZ1D1R
- - BPMZ2D1R
- - BPMZ3D1R
- - BPMZ4D1R
- - BPMZ41D1R
- - BPMZ42D1R
-devices:
-- type: pyaml.tuning_tools.orbit_response_matrix
- bpm_array_name: BPM
- hcorr_array_name: HCorr
- vcorr_array_name: VCorr
- corrector_delta: 1e-6
- name: DEFAULT_ORBIT_RESPONSE_MATRIX
-- type: pyaml.tuning_tools.dispersion
- bpm_array_name: BPM
- rf_plant_name: RF
- frequency_delta: 10
- name: DEFAULT_DISPERSION
-- type: pyaml.tuning_tools.orbit
- bpm_array_name: BPM
- hcorr_array_name: HCorr
- vcorr_array_name: VCorr
- name: DEFAULT_ORBIT_CORRECTION
- singular_values: 16
- response_matrix: file:orm.json
-- type: pyaml.rf.rf_plant
- name: RF
- masterclock:
- type: pyaml_cs_oa.epicsW
- write_pvname: MCLKHX251C:freq
- unit: KHz
-- type: pyaml.magnet.hcorrector
- name: HS4M2D1R
- lattice_names: S4M2D1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2D1R:rdbk
- write_pvname: HS4P2D1R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MT1R
- lattice_names: S1MT1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PT1R:rdbk
- write_pvname: HS1PT1R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1T1R
- lattice_names: S4M1T1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1T1R:rdbk
- write_pvname: HS4P1T1R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2T1R
- lattice_names: S4M2T1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2T1R:rdbk
- write_pvname: HS4P2T1R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MD2R
- lattice_names: S1MD2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PD2R:rdbk
- write_pvname: HS1PD2R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1D2R
- lattice_names: S4M1D2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1D2R:rdbk
- write_pvname: HS4P1D2R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2D2R
- lattice_names: S4M2D2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2D2R:rdbk
- write_pvname: HS4P2D2R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MT2R
- lattice_names: S1MT2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PT2R:rdbk
- write_pvname: HS1PT2R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1T2R
- lattice_names: S4M1T2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1T2R:rdbk
- write_pvname: HS4P1T2R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2T2R
- lattice_names: S4M2T2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2T2R:rdbk
- write_pvname: HS4P2T2R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MD3R
- lattice_names: S1MD3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PD3R:rdbk
- write_pvname: HS1PD3R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1D3R
- lattice_names: S4M1D3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1D3R:rdbk
- write_pvname: HS4P1D3R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2D3R
- lattice_names: S4M2D3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2D3R:rdbk
- write_pvname: HS4P2D3R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MT3R
- lattice_names: S1MT3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PT3R:rdbk
- write_pvname: HS1PT3R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1T3R
- lattice_names: S4M1T3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1T3R:rdbk
- write_pvname: HS4P1T3R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2T3R
- lattice_names: S4M2T3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2T3R:rdbk
- write_pvname: HS4P2T3R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MD4R
- lattice_names: S1MD4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PD4R:rdbk
- write_pvname: HS1PD4R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1D4R
- lattice_names: S4M1D4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1D4R:rdbk
- write_pvname: HS4P1D4R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2D4R
- lattice_names: S4M2D4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2D4R:rdbk
- write_pvname: HS4P2D4R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MT4R
- lattice_names: S1MT4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PT4R:rdbk
- write_pvname: HS1PT4R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1T4R
- lattice_names: S4M1T4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1T4R:rdbk
- write_pvname: HS4P1T4R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2T4R
- lattice_names: S4M2T4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2T4R:rdbk
- write_pvname: HS4P2T4R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MD5R
- lattice_names: S1MD5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PD5R:rdbk
- write_pvname: HS1PD5R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1D5R
- lattice_names: S4M1D5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1D5R:rdbk
- write_pvname: HS4P1D5R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2D5R
- lattice_names: S4M2D5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2D5R:rdbk
- write_pvname: HS4P2D5R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MT5R
- lattice_names: S1MT5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PT5R:rdbk
- write_pvname: HS1PT5R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1T5R
- lattice_names: S4M1T5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1T5R:rdbk
- write_pvname: HS4P1T5R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2T5R
- lattice_names: S4M2T5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2T5R:rdbk
- write_pvname: HS4P2T5R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MD6R
- lattice_names: S1MD6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PD6R:rdbk
- write_pvname: HS1PD6R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1D6R
- lattice_names: S4M1D6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1D6R:rdbk
- write_pvname: HS4P1D6R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2D6R
- lattice_names: S4M2D6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2D6R:rdbk
- write_pvname: HS4P2D6R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MT6R
- lattice_names: S1MT6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PT6R:rdbk
- write_pvname: HS1PT6R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1T6R
- lattice_names: S4M1T6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1T6R:rdbk
- write_pvname: HS4P1T6R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2T6R
- lattice_names: S4M2T6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2T6R:rdbk
- write_pvname: HS4P2T6R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MD7R
- lattice_names: S1MD7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PD7R:rdbk
- write_pvname: HS1PD7R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1D7R
- lattice_names: S4M1D7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1D7R:rdbk
- write_pvname: HS4P1D7R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2D7R
- lattice_names: S4M2D7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2D7R:rdbk
- write_pvname: HS4P2D7R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MT7R
- lattice_names: S1MT7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PT7R:rdbk
- write_pvname: HS1PT7R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1T7R
- lattice_names: S4M1T7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1T7R:rdbk
- write_pvname: HS4P1T7R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2T7R
- lattice_names: S4M2T7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2T7R:rdbk
- write_pvname: HS4P2T7R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MD8R
- lattice_names: S1MD8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PD8R:rdbk
- write_pvname: HS1PD8R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1D8R
- lattice_names: S4M1D8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1D8R:rdbk
- write_pvname: HS4P1D8R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2D8R
- lattice_names: S4M2D8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2D8R:rdbk
- write_pvname: HS4P2D8R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MT8R
- lattice_names: S1MT8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PT8R:rdbk
- write_pvname: HS1PT8R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1T8R
- lattice_names: S4M1T8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1T8R:rdbk
- write_pvname: HS4P1T8R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M2T8R
- lattice_names: S4M2T8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P2T8R:rdbk
- write_pvname: HS4P2T8R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS1MD1R
- lattice_names: S1MD1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.00553438
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS1PD1R:rdbk
- write_pvname: HS1PD1R:set
- unit: A
-- type: pyaml.magnet.hcorrector
- name: HS4M1D1R
- lattice_names: S4M1D1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0044502
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: HS4P1D1R:rdbk
- write_pvname: HS4P1D1R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2D1R
- lattice_names: S3M2D1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2D1R:rdbk
- write_pvname: VS3P2D1R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2D1R
- lattice_names: S2M2D1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2D1R:rdbk
- write_pvname: VS2P2D1R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1T1R
- lattice_names: S2M1T1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1T1R:rdbk
- write_pvname: VS2P1T1R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1T1R
- lattice_names: S3M1T1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1T1R:rdbk
- write_pvname: VS3P1T1R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2T1R
- lattice_names: S3M2T1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2T1R:rdbk
- write_pvname: VS3P2T1R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2T1R
- lattice_names: S2M2T1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2T1R:rdbk
- write_pvname: VS2P2T1R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1D2R
- lattice_names: S2M1D2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1D2R:rdbk
- write_pvname: VS2P1D2R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1D2R
- lattice_names: S3M1D2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1D2R:rdbk
- write_pvname: VS3P1D2R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2D2R
- lattice_names: S3M2D2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2D2R:rdbk
- write_pvname: VS3P2D2R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2D2R
- lattice_names: S2M2D2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2D2R:rdbk
- write_pvname: VS2P2D2R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1T2R
- lattice_names: S2M1T2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1T2R:rdbk
- write_pvname: VS2P1T2R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1T2R
- lattice_names: S3M1T2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1T2R:rdbk
- write_pvname: VS3P1T2R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2T2R
- lattice_names: S3M2T2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2T2R:rdbk
- write_pvname: VS3P2T2R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2T2R
- lattice_names: S2M2T2R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2T2R:rdbk
- write_pvname: VS2P2T2R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1D3R
- lattice_names: S2M1D3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1D3R:rdbk
- write_pvname: VS2P1D3R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1D3R
- lattice_names: S3M1D3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1D3R:rdbk
- write_pvname: VS3P1D3R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2D3R
- lattice_names: S3M2D3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2D3R:rdbk
- write_pvname: VS3P2D3R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2D3R
- lattice_names: S2M2D3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2D3R:rdbk
- write_pvname: VS2P2D3R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1T3R
- lattice_names: S2M1T3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1T3R:rdbk
- write_pvname: VS2P1T3R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1T3R
- lattice_names: S3M1T3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1T3R:rdbk
- write_pvname: VS3P1T3R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2T3R
- lattice_names: S3M2T3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2T3R:rdbk
- write_pvname: VS3P2T3R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2T3R
- lattice_names: S2M2T3R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2T3R:rdbk
- write_pvname: VS2P2T3R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1D4R
- lattice_names: S2M1D4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1D4R:rdbk
- write_pvname: VS2P1D4R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1D4R
- lattice_names: S3M1D4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1D4R:rdbk
- write_pvname: VS3P1D4R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2D4R
- lattice_names: S3M2D4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2D4R:rdbk
- write_pvname: VS3P2D4R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2D4R
- lattice_names: S2M2D4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2D4R:rdbk
- write_pvname: VS2P2D4R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1T4R
- lattice_names: S2M1T4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1T4R:rdbk
- write_pvname: VS2P1T4R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1T4R
- lattice_names: S3M1T4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1T4R:rdbk
- write_pvname: VS3P1T4R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2T4R
- lattice_names: S3M2T4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2T4R:rdbk
- write_pvname: VS3P2T4R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2T4R
- lattice_names: S2M2T4R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2T4R:rdbk
- write_pvname: VS2P2T4R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1D5R
- lattice_names: S2M1D5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1D5R:rdbk
- write_pvname: VS2P1D5R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1D5R
- lattice_names: S3M1D5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1D5R:rdbk
- write_pvname: VS3P1D5R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2D5R
- lattice_names: S3M2D5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2D5R:rdbk
- write_pvname: VS3P2D5R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2D5R
- lattice_names: S2M2D5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2D5R:rdbk
- write_pvname: VS2P2D5R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1T5R
- lattice_names: S2M1T5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1T5R:rdbk
- write_pvname: VS2P1T5R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1T5R
- lattice_names: S3M1T5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1T5R:rdbk
- write_pvname: VS3P1T5R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2T5R
- lattice_names: S3M2T5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2T5R:rdbk
- write_pvname: VS3P2T5R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2T5R
- lattice_names: S2M2T5R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2T5R:rdbk
- write_pvname: VS2P2T5R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1D6R
- lattice_names: S2M1D6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1D6R:rdbk
- write_pvname: VS2P1D6R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1D6R
- lattice_names: S3M1D6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1D6R:rdbk
- write_pvname: VS3P1D6R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2D6R
- lattice_names: S3M2D6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2D6R:rdbk
- write_pvname: VS3P2D6R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2D6R
- lattice_names: S2M2D6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2D6R:rdbk
- write_pvname: VS2P2D6R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1T6R
- lattice_names: S2M1T6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1T6R:rdbk
- write_pvname: VS2P1T6R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1T6R
- lattice_names: S3M1T6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1T6R:rdbk
- write_pvname: VS3P1T6R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2T6R
- lattice_names: S3M2T6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2T6R:rdbk
- write_pvname: VS3P2T6R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2T6R
- lattice_names: S2M2T6R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2T6R:rdbk
- write_pvname: VS2P2T6R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1D7R
- lattice_names: S2M1D7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1D7R:rdbk
- write_pvname: VS2P1D7R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1D7R
- lattice_names: S3M1D7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1D7R:rdbk
- write_pvname: VS3P1D7R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2D7R
- lattice_names: S3M2D7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2D7R:rdbk
- write_pvname: VS3P2D7R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2D7R
- lattice_names: S2M2D7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2D7R:rdbk
- write_pvname: VS2P2D7R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1T7R
- lattice_names: S2M1T7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1T7R:rdbk
- write_pvname: VS2P1T7R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1T7R
- lattice_names: S3M1T7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1T7R:rdbk
- write_pvname: VS3P1T7R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2T7R
- lattice_names: S3M2T7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2T7R:rdbk
- write_pvname: VS3P2T7R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2T7R
- lattice_names: S2M2T7R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2T7R:rdbk
- write_pvname: VS2P2T7R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1D8R
- lattice_names: S2M1D8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1D8R:rdbk
- write_pvname: VS2P1D8R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1D8R
- lattice_names: S3M1D8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1D8R:rdbk
- write_pvname: VS3P1D8R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2D8R
- lattice_names: S3M2D8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2D8R:rdbk
- write_pvname: VS3P2D8R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2D8R
- lattice_names: S2M2D8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2D8R:rdbk
- write_pvname: VS2P2D8R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1T8R
- lattice_names: S2M1T8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1T8R:rdbk
- write_pvname: VS2P1T8R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1T8R
- lattice_names: S3M1T8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1T8R:rdbk
- write_pvname: VS3P1T8R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M2T8R
- lattice_names: S3M2T8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P2T8R:rdbk
- write_pvname: VS3P2T8R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M2T8R
- lattice_names: S2M2T8R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P2T8R:rdbk
- write_pvname: VS2P2T8R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS2M1D1R
- lattice_names: S2M1D1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS2P1D1R:rdbk
- write_pvname: VS2P1D1R:set
- unit: A
-- type: pyaml.magnet.vcorrector
- name: VS3M1D1R
- lattice_names: S3M1D1R@0
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.00297607
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- read_pvname: VS3P1D1R:rdbk
- write_pvname: VS3P1D1R:set
- unit: A
-- type: pyaml.bpm.bpm
- name: BPMZ5D1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 0
- y_pos_index: 1
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6D1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 2
- y_pos_index: 3
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7D1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 4
- y_pos_index: 5
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1T1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 6
- y_pos_index: 7
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2T1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 8
- y_pos_index: 9
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3T1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 10
- y_pos_index: 11
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4T1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 12
- y_pos_index: 13
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ41T1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 14
- y_pos_index: 15
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5T1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 16
- y_pos_index: 17
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6T1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 18
- y_pos_index: 19
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7T1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 20
- y_pos_index: 21
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1D2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 22
- y_pos_index: 23
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2D2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 24
- y_pos_index: 25
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3D2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 26
- y_pos_index: 27
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4D2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 28
- y_pos_index: 29
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5D2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 30
- y_pos_index: 31
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6D2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 32
- y_pos_index: 33
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7D2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 34
- y_pos_index: 35
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 36
- y_pos_index: 37
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 38
- y_pos_index: 39
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 40
- y_pos_index: 41
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 42
- y_pos_index: 43
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ41T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 44
- y_pos_index: 45
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ42T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 46
- y_pos_index: 47
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ43T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 48
- y_pos_index: 49
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 50
- y_pos_index: 51
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 52
- y_pos_index: 53
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7T2R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 54
- y_pos_index: 55
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1D3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 56
- y_pos_index: 57
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2D3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 58
- y_pos_index: 59
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3D3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 60
- y_pos_index: 61
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4D3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 62
- y_pos_index: 63
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5D3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 64
- y_pos_index: 65
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6D3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 66
- y_pos_index: 67
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7D3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 68
- y_pos_index: 69
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1T3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 70
- y_pos_index: 71
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2T3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 72
- y_pos_index: 73
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3T3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 74
- y_pos_index: 75
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4T3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 76
- y_pos_index: 77
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5T3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 78
- y_pos_index: 79
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6T3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 80
- y_pos_index: 81
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7T3R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 82
- y_pos_index: 83
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1D4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 84
- y_pos_index: 85
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2D4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 86
- y_pos_index: 87
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3D4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 88
- y_pos_index: 89
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4D4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 90
- y_pos_index: 91
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5D4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 92
- y_pos_index: 93
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6D4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 94
- y_pos_index: 95
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7D4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 96
- y_pos_index: 97
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1T4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 98
- y_pos_index: 99
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2T4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 100
- y_pos_index: 101
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3T4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 102
- y_pos_index: 103
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4T4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 104
- y_pos_index: 105
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5T4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 106
- y_pos_index: 107
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6T4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 108
- y_pos_index: 109
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7T4R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 110
- y_pos_index: 111
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1D5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 112
- y_pos_index: 113
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2D5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 114
- y_pos_index: 115
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3D5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 116
- y_pos_index: 117
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4D5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 118
- y_pos_index: 119
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5D5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 120
- y_pos_index: 121
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6D5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 122
- y_pos_index: 123
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7D5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 124
- y_pos_index: 125
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1T5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 126
- y_pos_index: 127
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2T5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 128
- y_pos_index: 129
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3T5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 130
- y_pos_index: 131
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4T5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 132
- y_pos_index: 133
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5T5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 134
- y_pos_index: 135
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6T5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 136
- y_pos_index: 137
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7T5R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 138
- y_pos_index: 139
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 140
- y_pos_index: 141
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 142
- y_pos_index: 143
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 144
- y_pos_index: 145
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 146
- y_pos_index: 147
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ41D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 148
- y_pos_index: 149
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ42D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 150
- y_pos_index: 151
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ43D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 152
- y_pos_index: 153
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ44D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 154
- y_pos_index: 155
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 156
- y_pos_index: 157
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7D6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 158
- y_pos_index: 159
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1T6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 160
- y_pos_index: 161
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2T6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 162
- y_pos_index: 163
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3T6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 164
- y_pos_index: 165
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4T6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 166
- y_pos_index: 167
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ41T6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 168
- y_pos_index: 169
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5T6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 170
- y_pos_index: 171
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6T6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 172
- y_pos_index: 173
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7T6R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 174
- y_pos_index: 175
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1D7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 176
- y_pos_index: 177
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2D7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 178
- y_pos_index: 179
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3D7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 180
- y_pos_index: 181
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4D7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 182
- y_pos_index: 183
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5D7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 184
- y_pos_index: 185
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6D7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 186
- y_pos_index: 187
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7D7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 188
- y_pos_index: 189
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1T7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 190
- y_pos_index: 191
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2T7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 192
- y_pos_index: 193
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3T7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 194
- y_pos_index: 195
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4T7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 196
- y_pos_index: 197
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ41T7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 198
- y_pos_index: 199
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5T7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 200
- y_pos_index: 201
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6T7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 202
- y_pos_index: 203
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7T7R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 204
- y_pos_index: 205
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1D8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 206
- y_pos_index: 207
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2D8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 208
- y_pos_index: 209
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3D8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 210
- y_pos_index: 211
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4D8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 212
- y_pos_index: 213
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5D8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 214
- y_pos_index: 215
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6D8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 216
- y_pos_index: 217
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7D8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 218
- y_pos_index: 219
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1T8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 220
- y_pos_index: 221
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2T8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 222
- y_pos_index: 223
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3T8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 224
- y_pos_index: 225
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4T8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 226
- y_pos_index: 227
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ5T8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 228
- y_pos_index: 229
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ6T8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 230
- y_pos_index: 231
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ7T8R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 232
- y_pos_index: 233
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ1D1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 234
- y_pos_index: 235
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ2D1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 236
- y_pos_index: 237
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ3D1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 238
- y_pos_index: 239
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ4D1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 240
- y_pos_index: 241
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ41D1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 242
- y_pos_index: 243
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
-- type: pyaml.bpm.bpm
- name: BPMZ42D1R
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 244
- y_pos_index: 245
- x_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
- y_pos:
- type: pyaml_cs_oa.epicsR
- read_pvname: ORBITCC:rdPos
- unit: nm
diff --git a/examples/BESSY2_example/BESSY2Tune.yaml b/examples/BESSY2_example/BESSY2Tune.yaml
deleted file mode 100644
index 3dc795d8c..000000000
--- a/examples/BESSY2_example/BESSY2Tune.yaml
+++ /dev/null
@@ -1,902 +0,0 @@
-type: pyaml.accelerator
-facility: BESSY2
-machine: sr
-energy: 1.7e9
-simulators:
-- type: pyaml.lattice.simulator
- lattice: bessy2_standard_user.mat
- name: design
-controls:
-- type: pyaml_cs_oa.controlsystem
- prefix: 'pons:'
- name: live
-data_folder: /data/store
-arrays:
-- type: pyaml.arrays.magnet
- name: QForTune
- elements:
- - Q3M2D1R
- - Q3M1T1R
- - Q3M2T1R
- - Q3M1D2R
- - Q3M2D2R
- - Q3M1T2R
- - Q3M2T2R
- - Q3M1D3R
- - Q3M2D3R
- - Q3M1T3R
- - Q3M2T3R
- - Q3M1D4R
- - Q3M2D4R
- - Q3M1T4R
- - Q3M2T4R
- - Q3M1D5R
- - Q3M2D5R
- - Q3M1T5R
- - Q3M2T5R
- - Q3M1D6R
- - Q3M2D6R
- - Q3M1T6R
- - Q3M2T6R
- - Q3M1D7R
- - Q3M2D7R
- - Q3M1T7R
- - Q3M2T7R
- - Q3M1D8R
- - Q3M2D8R
- - Q3M1T8R
- - Q3M2T8R
- - Q3M1D1R
- - Q4M2D1R
- - Q4M1T1R
- - Q4M2T1R
- - Q4M1D2R
- - Q4M2D2R
- - Q4M1T2R
- - Q4M2T2R
- - Q4M1D3R
- - Q4M2D3R
- - Q4M1T3R
- - Q4M2T3R
- - Q4M1D4R
- - Q4M2D4R
- - Q4M1T4R
- - Q4M2T4R
- - Q4M1D5R
- - Q4M2D5R
- - Q4M1T5R
- - Q4M2T5R
- - Q4M1D6R
- - Q4M2D6R
- - Q4M1T6R
- - Q4M2T6R
- - Q4M1D7R
- - Q4M2D7R
- - Q4M1T7R
- - Q4M2T7R
- - Q4M1D8R
- - Q4M2D8R
- - Q4M1T8R
- - Q4M2T8R
- - Q4M1D1R
-devices:
-# Q3 D1
-- type: pyaml.magnet.quadrupole
- name: Q3M1D1R
- lattice_names: Q3M1D1R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD1R:set
- read_pvname: Q3PD1R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2D1R
- lattice_names: Q3M2D1R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD1R:set
- read_pvname: Q3PD1R:rdbk
- unit: A
-# Q3 T1
-- type: pyaml.magnet.quadrupole
- name: Q3M1T1R
- lattice_names: Q3M1T1R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3P1T1R:set
- read_pvname: Q3P1T1R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2T1R
- lattice_names: Q3M2T1R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3P2T1R:set
- read_pvname: Q3P2T1R:rdbk
- unit: A
-# Q3 D2
-- type: pyaml.magnet.quadrupole
- name: Q3M1D2R
- lattice_names: Q3M1D2R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD2R:set
- read_pvname: Q3PD2R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2D2R
- lattice_names: Q3M2D2R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD2R:set
- read_pvname: Q3PD2R:rdbk
- unit: A
-# Q3 T2
-- type: pyaml.magnet.quadrupole
- name: Q3M1T2R
- lattice_names: Q3M1T2R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT2R:set
- read_pvname: Q3PT2R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2T2R
- lattice_names: Q3M2T2R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT2R:set
- read_pvname: Q3PT2R:rdbk
- unit: A
-# Q3 D3
-- type: pyaml.magnet.quadrupole
- name: Q3M1D3R
- lattice_names: Q3M1D3R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD3R:set
- read_pvname: Q3PD3R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2D3R
- lattice_names: Q3M2D3R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD3R:set
- read_pvname: Q3PD3R:rdbk
- unit: A
-# Q3 T3
-- type: pyaml.magnet.quadrupole
- name: Q3M1T3R
- lattice_names: Q3M1T3R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT3R:set
- read_pvname: Q3PT3R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2T3R
- lattice_names: Q3M2T3R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT3R:set
- read_pvname: Q3PT3R:rdbk
- unit: A
-# Q3 D4
-- type: pyaml.magnet.quadrupole
- name: Q3M1D4R
- lattice_names: Q3M1D4R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD4R:set
- read_pvname: Q3PD4R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2D4R
- lattice_names: Q3M2D4R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD4R:set
- read_pvname: Q3PD4R:rdbk
- unit: A
-# Q3 T4
-- type: pyaml.magnet.quadrupole
- name: Q3M1T4R
- lattice_names: Q3M1T4R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT4R:set
- read_pvname: Q3PT4R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2T4R
- lattice_names: Q3M2T4R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT4R:set
- read_pvname: Q3PT4R:rdbk
- unit: A
-# Q3 D5
-- type: pyaml.magnet.quadrupole
- name: Q3M1D5R
- lattice_names: Q3M1D5R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD5R:set
- read_pvname: Q3PD5R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2D5R
- lattice_names: Q3M2D5R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD5R:set
- read_pvname: Q3PD5R:rdbk
- unit: A
-# Q3 T5
-- type: pyaml.magnet.quadrupole
- name: Q3M1T5R
- lattice_names: Q3M1T5R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT5R:set
- read_pvname: Q3PT5R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2T5R
- lattice_names: Q3M2T5R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT5R:set
- read_pvname: Q3PT5R:rdbk
- unit: A
-# Q3 D6
-- type: pyaml.magnet.quadrupole
- name: Q3M1D6R
- lattice_names: Q3M1D6R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD6R:set
- read_pvname: Q3PD6R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2D6R
- lattice_names: Q3M2D6R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD6R:set
- read_pvname: Q3PD6R:rdbk
- unit: A
-# Q3 T6
-- type: pyaml.magnet.quadrupole
- name: Q3M1T6R
- lattice_names: Q3M1T6R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3P1T6R:set
- read_pvname: Q3P1T6R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2T6R
- lattice_names: Q3M2T6R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3P2T6R:set
- read_pvname: Q3P2T6R:rdbk
- unit: A
-# Q3 D7
-- type: pyaml.magnet.quadrupole
- name: Q3M1D7R
- lattice_names: Q3M1D7R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD7R:set
- read_pvname: Q3PD7R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2D7R
- lattice_names: Q3M2D7R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD7R:set
- read_pvname: Q3PD7R:rdbk
- unit: A
-# Q3 T7
-- type: pyaml.magnet.quadrupole
- name: Q3M1T7R
- lattice_names: Q3M1T7R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT7R:set
- read_pvname: Q3PT7R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2T7R
- lattice_names: Q3M2T7R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PT7R:set
- read_pvname: Q3PT7R:rdbk
- unit: A
-# Q3 D8
-- type: pyaml.magnet.quadrupole
- name: Q3M1D8R
- lattice_names: Q3M1D8R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD8R:set
- read_pvname: Q3PD8R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2D8R
- lattice_names: Q3M2D8R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.0158575
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3PD8R:set
- read_pvname: Q3PD8R:rdbk
- unit: A
-# Q3 T8
-- type: pyaml.magnet.quadrupole
- name: Q3M1T8R
- lattice_names: Q3M1T8R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3P1T8R:set
- read_pvname: Q3P1T8R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q3M2T8R
- lattice_names: Q3M2T8R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: -0.015735
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q3P2T8R:set
- read_pvname: Q3P2T8R:rdbk
- unit: A
-# Q4 D1
-- type: pyaml.magnet.quadrupole
- name: Q4M1D1R
- lattice_names: Q4M1D1R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD1R:set
- read_pvname: Q4PD1R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2D1R
- lattice_names: Q4M2D1R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD1R:set
- read_pvname: Q4PD1R:rdbk
- unit: A
-# Q34T1
-- type: pyaml.magnet.quadrupole
- name: Q4M1T1R
- lattice_names: Q4M1T1R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4P1T1R:set
- read_pvname: Q4P1T1R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2T1R
- lattice_names: Q4M2T1R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4P2T1R:set
- read_pvname: Q4P2T1R:rdbk
- unit: A
-# Q4 D2
-- type: pyaml.magnet.quadrupole
- name: Q4M1D2R
- lattice_names: Q4M1D2R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD2R:set
- read_pvname: Q4PD2R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2D2R
- lattice_names: Q4M2D2R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD2R:set
- read_pvname: Q4PD2R:rdbk
- unit: A
-# Q4 T2
-- type: pyaml.magnet.quadrupole
- name: Q4M1T2R
- lattice_names: Q4M1T2R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT2R:set
- read_pvname: Q4PT2R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2T2R
- lattice_names: Q4M2T2R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT2R:set
- read_pvname: Q4PT2R:rdbk
- unit: A
-# Q4 D3
-- type: pyaml.magnet.quadrupole
- name: Q4M1D3R
- lattice_names: Q4M1D3R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD3R:set
- read_pvname: Q4PD3R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2D3R
- lattice_names: Q4M2D3R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD3R:set
- read_pvname: Q4PD3R:rdbk
- unit: A
-# Q4 T3
-- type: pyaml.magnet.quadrupole
- name: Q4M1T3R
- lattice_names: Q4M1T3R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT3R:set
- read_pvname: Q4PT3R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2T3R
- lattice_names: Q4M2T3R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT3R:set
- read_pvname: Q4PT3R:rdbk
- unit: A
-# Q4 D4
-- type: pyaml.magnet.quadrupole
- name: Q4M1D4R
- lattice_names: Q4M1D4R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD4R:set
- read_pvname: Q4PD4R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2D4R
- lattice_names: Q4M2D4R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD4R:set
- read_pvname: Q4PD4R:rdbk
- unit: A
-# Q4 T4
-- type: pyaml.magnet.quadrupole
- name: Q4M1T4R
- lattice_names: Q4M1T4R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT4R:set
- read_pvname: Q4PT4R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2T4R
- lattice_names: Q4M2T4R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT4R:set
- read_pvname: Q4PT4R:rdbk
- unit: A
-# Q4 D5
-- type: pyaml.magnet.quadrupole
- name: Q4M1D5R
- lattice_names: Q4M1D5R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD5R:set
- read_pvname: Q4PD5R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2D5R
- lattice_names: Q4M2D5R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD5R:set
- read_pvname: Q4PD5R:rdbk
- unit: A
-# Q4 T5
-- type: pyaml.magnet.quadrupole
- name: Q4M1T5R
- lattice_names: Q4M1T5R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT5R:set
- read_pvname: Q4PT5R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2T5R
- lattice_names: Q4M2T5R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT5R:set
- read_pvname: Q4PT5R:rdbk
- unit: A
-# Q4 D6
-- type: pyaml.magnet.quadrupole
- name: Q4M1D6R
- lattice_names: Q4M1D6R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD6R:set
- read_pvname: Q4PD6R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2D6R
- lattice_names: Q4M2D6R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD6R:set
- read_pvname: Q4PD6R:rdbk
- unit: A
-# Q4 T6
-- type: pyaml.magnet.quadrupole
- name: Q4M1T6R
- lattice_names: Q4M1T6R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4P1T6R:set
- read_pvname: Q4P1T6R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2T6R
- lattice_names: Q4M2T6R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4P2T6R:set
- read_pvname: Q4P2T6R:rdbk
- unit: A
-# Q4 D7
-- type: pyaml.magnet.quadrupole
- name: Q4M1D7R
- lattice_names: Q4M1D7R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD7R:set
- read_pvname: Q4PD7R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2D7R
- lattice_names: Q4M2D7R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD7R:set
- read_pvname: Q4PD7R:rdbk
- unit: A
-# Q4 T7
-- type: pyaml.magnet.quadrupole
- name: Q4M1T7R
- lattice_names: Q4M1T7R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT7R:set
- read_pvname: Q4PT7R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2T7R
- lattice_names: Q4M2T7R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PT7R:set
- read_pvname: Q4PT7R:rdbk
- unit: A
-# Q4 D8
-- type: pyaml.magnet.quadrupole
- name: Q4M1D8R
- lattice_names: Q4M1D8R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD8R:set
- read_pvname: Q4PD8R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2D8R
- lattice_names: Q4M2D8R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0303165
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4PD8R:set
- read_pvname: Q4PD8R:rdbk
- unit: A
-# Q4 T8
-- type: pyaml.magnet.quadrupole
- name: Q4M1T8R
- lattice_names: Q4M1T8R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4P1T8R:set
- read_pvname: Q4P1T8R:rdbk
- unit: A
-- type: pyaml.magnet.quadrupole
- name: Q4M2T8R
- lattice_names: Q4M2T8R
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.0296695
- unit: 1/m
- powerconverter:
- type: pyaml_cs_oa.epicsRW
- write_pvname: Q4P2T8R:set
- read_pvname: Q4P2T8R:rdbk
- unit: A
-- type: pyaml.diagnostics.tune_monitor
- name: BETATRON_TUNE
- tune_h:
- type: pyaml_cs_oa.epicsR
- read_pvname: beam:twiss:x:tune
- unit: ''
- tune_v:
- type: pyaml_cs_oa.epicsR
- read_pvname: beam:twiss:y:tune
- unit: ''
-- type: pyaml.tuning_tools.tune
- name: DEFAULT_TUNE_CORRECTION
- quad_array_name: QForTune
- betatron_tune_name: BETATRON_TUNE
- response_matrix: file:trm.json
-- type: pyaml.tuning_tools.tune_response_matrix
- name: DEFAULT_TUNE_RESPONSE_MATRIX
- quad_array_name: QForTune
- betatron_tune_name: BETATRON_TUNE
- quad_delta: 1e-4
diff --git a/examples/BESSY2_example/README.md b/examples/BESSY2_example/README.md
deleted file mode 100644
index 6f42e2004..000000000
--- a/examples/BESSY2_example/README.md
+++ /dev/null
@@ -1,60 +0,0 @@
-# Instructions for how to run the BESSY II examples.
-
-## Install pyAML
-
-1. Create a virtual environment and activate it. It needs to have >= Python 3.11.
-
-2. Install pyAML including the ophyd-async EPICS bindings.
-
- ```bash
- pip install accelerator-middle-layer[cs-ao-epics]
- ```
-
-## Start the BESSY II virtual accelerator
-
-1. Install [Apptainer](https://apptainer.org/docs/admin/main/installation.html) by following the instructions in the [documentation](https://pyaml.readthedocs.io/en/latest/how-to/apptainer.html).
-
-
-2. Open a terminal and start the container.
-
- ```bash
- apptainer run oras://registry.hzdr.de/digital-twins-for-accelerators/containers/pyat-softioc-digital-twin:default-v0-5-1-bessy.2711893
- ```
-
- ***Keep this terminal running and don't do anything else in it.*** The virtual accelerator will run there and you will be able to interact with it from other terminals, jupyter notebooks, IDEs etc over the network.
-
-3. If you want to see which PVs are available in the twin you need EPICS tools. A separate container is available for this.
-
- Open a new terminal and start the container.
-
- ```bash
- apptainer run oras://registry.hzdr.de/digital-twins-for-accelerators/epics-tools:latest
- ```
-
- In the container run `pvlist`. It will output something like:
-
- ```
- GUID 0x15EB588C5158BCD5284BE8F0 version 2: tcp@[ 134.30.9.13:5075 134.30.190.240:5075 ]
- ```
-
- To see the list of available PVs do:
-
- ```
- pvlist 0x15EB588C5158BCD5284BE8F0
- ```
-
- You will see that all PVs start with a prefix corresponding to your username. This is to make the PVs for your virtual accelerator instance unique on the network.
-
-
- ## Run the examples
-
- 1. Download (or clone) the example files. They exist both as a notebook or scripts depending on what you prefer to use.
-
- 2. Edit the yaml config files so the control system prefix matches the prefix for your virtual accelerator or you won't be able to connect to it. This is the part to change:
-
- ```yaml
- controls:
- - type: pyaml_cs_oa.controlsystem
- prefix: "your_prefix:"
- name: live
- ```
diff --git a/examples/BESSY2_example/bessy2-chroma.ipynb b/examples/BESSY2_example/bessy2-chroma.ipynb
deleted file mode 100644
index 4a3e02c71..000000000
--- a/examples/BESSY2_example/bessy2-chroma.ipynb
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9be4d265",
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "jlp-py312",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "name": "python",
- "version": "3.12.2"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/examples/BESSY2_example/bessy2-chroma.py b/examples/BESSY2_example/bessy2-chroma.py
deleted file mode 100644
index 21872e4c0..000000000
--- a/examples/BESSY2_example/bessy2-chroma.py
+++ /dev/null
@@ -1,45 +0,0 @@
-"""Chromaticity measurement
-
-This example shows how to run chromaticity measurement using the simulator
-or the virtual accelerator.
-If you want to test the virtual accelerator you need to start the
-container before running the script.
-
-"""
-
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-from pyaml.common.constants import Action
-
-# ----- Load the configuration -----
-# Remember to change the prefix for the live mode to the one matching
-# your virtual accelerator before loading.
-
-sr = Accelerator.load("BESSY2Chroma.yaml")
-
-# ----- Define a callback -----
-# This callback is used to print output during the chromaticity measurement.
-
-
-def chroma_callback(action: int, cb_data: dict):
- if action == Action.MEASURE:
- print(f"Chromaticy measurement: #{cb_data['step']} RF={cb_data['rf']} Tune={cb_data['tune']}")
- return True
-
-
-# ----- Get the momentum compaction factor-----
-# To get the momentum compaction from the model you need to first turn 6D off.
-
-sr.design.get_lattice().disable_6d()
-alphac = sr.design.get_lattice().get_mcf()
-sr.design.get_lattice().enable_6d()
-print(f"Moment compaction factor: {alphac}")
-
-# ----- Measure the chromaticity-----
-# The measurement routing will also show a plot.
-
-chromaticity_monitor = sr.live.get_chromaticity_monitor("KSI")
-chromaticity_monitor.measure(do_plot=True, alphac=alphac, callback=chroma_callback)
-ksi = chromaticity_monitor.chromaticity.get()
-print(ksi)
diff --git a/examples/BESSY2_example/bessy2-orbit.ipynb b/examples/BESSY2_example/bessy2-orbit.ipynb
deleted file mode 100644
index 4356697d9..000000000
--- a/examples/BESSY2_example/bessy2-orbit.ipynb
+++ /dev/null
@@ -1,587 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "9df36778",
- "metadata": {},
- "source": [
- "### Orbit correction\n",
- "\n",
- "This example shows how to run orbit correction using the simulator or the virtual accelerator. \n",
- "If you want to test the virtual accelerator you need to start the container before running the notebook."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 40,
- "id": "747364f7",
- "metadata": {},
- "outputs": [],
- "source": [
- "import json\n",
- "import time\n",
- "\n",
- "import matplotlib.pyplot as plt\n",
- "import numpy as np\n",
- "\n",
- "from pyaml.accelerator import Accelerator"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 41,
- "id": "aff4d20f",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "23 Apr 2026, 08:36:50 | WARNING | PyAML OA control system binding (0.1.1) initialized with name 'live' and prefix='pons:'\n",
- "23 Apr 2026, 08:36:50 | INFO | Setting the rf_weight by default to inf.\n",
- "23 Apr 2026, 08:36:50 | INFO | Setting the rf_weight by default to inf.\n",
- "23 Apr 2026, 08:36:50 | INFO | Setting the rf_weight by default to inf.\n",
- "Controls:\n",
- " live\n",
- " .\n",
- "\n",
- "Simulators:\n",
- " design\n",
- " .\n",
- "\n",
- "Arrays:\n",
- " BPM (pyaml.arrays.bpm_array) size=123\n",
- " HCorr (pyaml.arrays.magnet_array) size=48\n",
- " VCorr (pyaml.arrays.magnet_array) size=64\n",
- " .\n",
- "\n",
- "Tools:\n",
- " DEFAULT_ORBIT_RESPONSE_MATRIX (pyaml.tuning_tools.orbit_response_matrix)\n",
- " DEFAULT_DISPERSION (pyaml.tuning_tools.dispersion)\n",
- " DEFAULT_ORBIT_CORRECTION (pyaml.tuning_tools.orbit)\n",
- " .\n"
- ]
- }
- ],
- "source": [
- "# Load the configuration\n",
- "# Remember to change the prefix for the live mode to the one matching your virtual\n",
- "# accelerator before loading.\n",
- "sr = Accelerator.load(\"BESSY2Orbit.yaml\")\n",
- "print(sr.yellow_pages)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "edf1d5f4",
- "metadata": {},
- "source": [
- "#### Measure the orbit response matrix\n",
- "\n",
- "If there is no existing orbit response matrix you need to measure it. This can be done on either the design or live mode. \n",
- "It is also possible to measure the ORM using the design mode and use it to correct the live mode."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 42,
- "id": "9caca764",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Choose which backend to use.\n",
- "SR = sr.design\n",
- "# SR = sr.live\n",
- "\n",
- "# if the ORM is not present measure it\n",
- "if sr.design.orbit.response_matrix is None:\n",
- " sr.design.orm.measure(set_wait_time=0.0 if SR == sr.design else 2.0)\n",
- " sr.design.orm.save(\"orm.json\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ddcf4f28",
- "metadata": {},
- "source": [
- "#### Load the response matrix\n",
- "\n",
- "The example does the correction for the live mode but it can also be done on the design mode."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 43,
- "id": "50c2e8a4",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "23 Apr 2026, 08:37:08 | INFO | Setting the rf_weight by default to inf.\n"
- ]
- }
- ],
- "source": [
- "# Load the ORM for the live mode\n",
- "sr.live.orbit.load(\"orm.json\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 44,
- "id": "38dc01be",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Reset corrector to 0 on the twin\n",
- "sr.live.get_magnets(\"HCorr\").strengths.set(np.zeros(48))\n",
- "sr.live.get_magnets(\"VCorr\").strengths.set(np.zeros(64))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d6e7ba16",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Set orbit for design\n",
- "\n",
- "std_kick = 100e-6\n",
- "corr_d = sr.design.get_magnet(\"VS3M2D1R\")\n",
- "corr_d.strength.set(std_kick)\n",
- "\n",
- "orbit_d = sr.design.get_bpms(\"BPM\").positions"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "47ec4270",
- "metadata": {},
- "source": [
- "#### Correct the orbit"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "419ccee1",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Set orbit for live\n",
- "\n",
- "std_kick = 100e-6\n",
- "corr_l = sr.live.get_magnet(\"VS3M2D1R\")\n",
- "corr_l.strength.set(std_kick)\n",
- "\n",
- "orbit_l = sr.live.get_bpms(\"BPM\").positions"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f7f03793",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Plot comparison\n",
- "plt.plot(orbit_d.get()[:, 1] * 1e3)\n",
- "plt.plot(orbit_l.get()[:, 1] * 1e-6)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c2bd7949",
- "metadata": {},
- "outputs": [],
- "source": [
- "# get the AT ring\n",
- "ring = sr.design.get_lattice()\n",
- "\n",
- "# Get AT element for a given BPM\n",
- "# bpm = sr.design.get_bpm(\"BPMZ4D1R\")\n",
- "# elt = bpm.positions._RBpmArray__element\n",
- "# print(elt)\n",
- "\n",
- "# Get AT element for a given steerer\n",
- "# steer = sr.design.get_magnet(\"VS3M2T6R\")\n",
- "# elt = steer.strength._RWStrengthScalar__elements[0]\n",
- "# print(elt)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "484fc6fc",
- "metadata": {},
- "outputs": [],
- "source": [
- "ring[\"S3M2D1R\"]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "74ff1047",
- "metadata": {},
- "outputs": [],
- "source": [
- "ring[\"S4M2D1R\"]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b3502dd4",
- "metadata": {},
- "outputs": [],
- "source": [
- "import at\n",
- "\n",
- "elements = ring[at.checkattr(\"Corrector\", attrvalue=\"H\")]\n",
- "\n",
- "for elem in elements:\n",
- " print(elem.PolynomA)\n",
- " # print(elem.KickAngle)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6b263174",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Get the devices\n",
- "hcorr = sr.live.get_magnets(\"HCorr\")\n",
- "vcorr = sr.live.get_magnets(\"VCorr\")\n",
- "orbit = sr.live.get_bpms(\"BPM\").positions\n",
- "\n",
- "# Create an initial orbit with errors\n",
- "std_kick = 100e-6\n",
- "corr = sr.live.get_magnet(\"VS3M2D1R\")\n",
- "corr.strength.set(std_kick)\n",
- "# hcorr.strengths.set(std_kick)\n",
- "# hcorr.strengths.set(std_kick * np.random.normal(size=len(hcorr)))\n",
- "# vcorr.strengths.set(std_kick * np.random.normal(size=len(vcorr)))\n",
- "time.sleep(3)\n",
- "\n",
- "print(vcorr.strengths.get())\n",
- "\n",
- "\n",
- "# orbit_initial = orbit.get()\n",
- "# print(orbit_initial)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0b5e533b",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Get the devices\n",
- "hcorr_d = sr.design.get_magnets(\"HCorr\")\n",
- "vcorr_d = sr.design.get_magnets(\"VCorr\")\n",
- "orbit_d = sr.design.get_bpms(\"BPM\").positions\n",
- "\n",
- "# Create an initial orbit with errors\n",
- "std_kick = 100e-6\n",
- "corr_d = sr.design.get_magnet(\"VS3M2D1R\")\n",
- "corr_d.strength.set(std_kick)\n",
- "# hcorr.strengths.set(std_kick)\n",
- "# hcorr.strengths.set(std_kick * np.random.normal(size=len(hcorr)))\n",
- "# vcorr.strengths.set(std_kick * np.random.normal(size=len(vcorr)))\n",
- "time.sleep(3)\n",
- "\n",
- "print(vcorr_d.strengths.get())\n",
- "\n",
- "\n",
- "# orbit_initial = orbit.get()\n",
- "# print(orbit_initial)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ba50460d",
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "fcef2603",
- "metadata": {},
- "outputs": [],
- "source": [
- "print(vcorr.strengths.get())"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9092481a",
- "metadata": {},
- "outputs": [],
- "source": [
- "orbit_initial = orbit.get()\n",
- "print(orbit_initial)\n",
- "\n",
- "plt.plot(orbit_initial * 1e-6)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1f51011c",
- "metadata": {},
- "outputs": [],
- "source": [
- "plt.plot(orbit.get()[:, 1])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "179fa459",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Compare to MML\n",
- "\n",
- "mml_values = np.array(\n",
- " [\n",
- " -0.548395086903857,\n",
- " -1.012630432646402,\n",
- " -0.862897505672887,\n",
- " -0.522995524471487,\n",
- " -0.658189856521371,\n",
- " -0.516173101625783,\n",
- " -0.133057027821788,\n",
- " 0.392126054914456,\n",
- " 0.563934272606167,\n",
- " 0.740274085202912,\n",
- " 0.620698379527692,\n",
- " 0.355609275038271,\n",
- " 0.423333396468476,\n",
- " 0.301220987985241,\n",
- " 0.066145853113093,\n",
- " -0.651251097949268,\n",
- " -1.170560020657783,\n",
- " -1.120870632419439,\n",
- " -0.779628042974558,\n",
- " -1.098108137417404,\n",
- " -1.039280007232975,\n",
- " -0.564055382358618,\n",
- " 0.538526284971412,\n",
- " 0.577087080051735,\n",
- " 0.615647875132058,\n",
- " 0.649838446769944,\n",
- " 1.107595363627166,\n",
- " 1.098222848289203,\n",
- " 0.780522962096338,\n",
- " 1.116307896849065,\n",
- " 1.095279850154315,\n",
- " 0.584401801876353,\n",
- " -0.212660175271086,\n",
- " -0.542094629513108,\n",
- " -0.632844890961403,\n",
- " -0.527361773381497,\n",
- " -0.831735165388016,\n",
- " -0.906921111725548,\n",
- " -0.656288869430261,\n",
- " 0.152637608565171,\n",
- " 0.510107802114268,\n",
- " 0.634095433537279,\n",
- " 0.547794913320217,\n",
- " 0.880254059263082,\n",
- " 0.992704581728260,\n",
- " 0.634065043149221,\n",
- " 0.466416157613840,\n",
- " 0.647773785871704,\n",
- " 0.489669647202759,\n",
- " 0.240171949704727,\n",
- " 0.236207591023490,\n",
- " 0.087170336604686,\n",
- " -0.125032463676224,\n",
- " -0.512234534072165,\n",
- " -0.595737451399580,\n",
- " -0.459325090830385,\n",
- " -0.227936257211556,\n",
- " -0.227839435382618,\n",
- " -0.092195396495755,\n",
- " 0.058374234146639,\n",
- " 0.690818147727373,\n",
- " 1.205830275263787,\n",
- " 1.134748178819593,\n",
- " 0.774249133536717,\n",
- " 1.075344527114256,\n",
- " 0.997510204603194,\n",
- " 0.517264575129486,\n",
- " -0.689094833374326,\n",
- " -1.135883617362593,\n",
- " -1.107761758717994,\n",
- " -0.773840868709177,\n",
- " -1.092921802241169,\n",
- " -1.055434449386964,\n",
- " -0.556094229916365,\n",
- " -0.488750222978695,\n",
- " -0.205031956664856,\n",
- " -0.094293028012348,\n",
- " 0.223157437268723,\n",
- " 0.670960218378011,\n",
- " 0.754507772466096,\n",
- " 0.611363709323305,\n",
- " 0.949153074191396,\n",
- " 1.002567634614958,\n",
- " 0.459717119030237,\n",
- " 0.093438467057282,\n",
- " -0.385082846682778,\n",
- " -0.756736774143839,\n",
- " -0.841579773055778,\n",
- " -0.670533979887471,\n",
- " -1.030994728204280,\n",
- " -1.108871586555440,\n",
- " -0.674176224876900,\n",
- " -0.292569481789967,\n",
- " -0.326424012263231,\n",
- " -0.176245513853861,\n",
- " -0.018289777369182,\n",
- " 0.080420482968790,\n",
- " 0.218206834561504,\n",
- " 0.302341005180173,\n",
- " 0.267295068412974,\n",
- " 0.177434401470334,\n",
- " -0.001920387408844,\n",
- " -0.151210006643998,\n",
- " -0.219977657081387,\n",
- " -0.426651371994250,\n",
- " -0.568250084439999,\n",
- " -0.424347192298211,\n",
- " -0.651182683604045,\n",
- " -1.035004865223722,\n",
- " -0.897905345744703,\n",
- " -0.552553098168575,\n",
- " -0.705228145938345,\n",
- " -0.569045105220304,\n",
- " -0.175959630086212,\n",
- " 0.699461083747587,\n",
- " 1.024675280579722,\n",
- " 0.918681075556277,\n",
- " 0.576846841787854,\n",
- " 0.749151978895954,\n",
- " 0.637694866837515,\n",
- " 0.278751432881705,\n",
- " 0.135521946298300,\n",
- " 0.104948249372505,\n",
- " ]\n",
- ")\n",
- "\n",
- "print(np.size(orbit_initial[:, 1]))\n",
- "\n",
- "plt.plot(orbit_initial[:, 1] * 1e-6, label=\"Twin\")\n",
- "plt.plot(mml_values, label=\"MML\")\n",
- "plt.legend()\n",
- "plt.xlabel(\"BPM number\")\n",
- "plt.ylabel(\"Vertical orbit\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "83b7e52c",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Correct the orbit\n",
- "# If you are using the ORM measured on design to correct on live you need to set the\n",
- "# gain since the unit for the BPMs are not the same for both modes yet.\n",
- "\n",
- "sr.live.orbit.correct(gain=1e-9, singular_values_H=48, singular_values_V=64)\n",
- "# sr.design.orbit.correct()\n",
- "# sr.live.orbit.correct()\n",
- "\n",
- "time.sleep(3)\n",
- "orbit_after = orbit.get()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "02d0b6b0",
- "metadata": {},
- "source": [
- "##### Plot the results"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7c862a7c",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Remember: if you change the example from live to design you need to change the unit\n",
- "# for the orbit when plotting since not the same yet.\n",
- "\n",
- "fig = plt.figure()\n",
- "ax1 = fig.add_subplot(311)\n",
- "ax2 = fig.add_subplot(312)\n",
- "ax3 = fig.add_subplot(313)\n",
- "ax1.plot(orbit_initial[:, 0] * 1e-6, label=\"Orbit before correction\")\n",
- "ax2.plot(orbit_initial[:, 1] * 1e-6, label=\"Orbit before correction\")\n",
- "ax1.plot(orbit_after[:, 0] * 1e-6, label=\"Orbit after correction\")\n",
- "ax2.plot(orbit_after[:, 1] * 1e-6, label=\"Orbit after correction\")\n",
- "\n",
- "ax3.plot(hcorr.strengths.get(), label=\"H Steerers\")\n",
- "ax3.plot(vcorr.strengths.get(), label=\"V Steerers\")\n",
- "\n",
- "ax1.set_ylabel(\"Horizontal pos. [mm]\")\n",
- "ax2.set_ylabel(\"Vertical pos. [mm]\")\n",
- "ax2.set_xlabel(\"BPM number\")\n",
- "ax3.set_ylabel(\"Strength (rad)\")\n",
- "ax3.set_xlabel(\"Steerer number\")\n",
- "ax1.legend()\n",
- "ax2.legend()\n",
- "ax3.legend()\n",
- "fig.tight_layout()\n",
- "\n",
- "plt.show()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7bae16d2",
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "jlp-py312",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.12.2"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/examples/BESSY2_example/bessy2-orbit.py b/examples/BESSY2_example/bessy2-orbit.py
deleted file mode 100644
index 3d755b545..000000000
--- a/examples/BESSY2_example/bessy2-orbit.py
+++ /dev/null
@@ -1,97 +0,0 @@
-"""Orbit correction
-
-This example shows how to run orbit correction using the simulator or the virtual
-accelerator. If you want to test the virtual accelerator you need to start the
-container before running the script.
-
-"""
-
-import json
-import time
-
-import matplotlib.pyplot as plt
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-from pyaml.tuning_tools.orbit_response_matrix_data import OrbitResponseMatrixData
-
-# ----- Load the configuration -----
-# Remember to change the prefix for the live mode to the one matching your virtual
-# accelerator before loading.
-
-sr = Accelerator.load("BESSY2Orbit.yaml")
-
-# ----- Measure the orbit response matrix -----
-# If there is no existing orbit response matrix you need to measure it.
-# This can be done on either the design or live mode.
-# It is also possible to measure the ORM using the design mode and use it to correct
-# the live mode.
-
-# Choose which backend to use.
-SR = sr.design
-# SR = sr.live
-
-# if the ORM is not present measure it
-if SR.orbit.response_matrix is None:
- SR.orm.measure(sleep_between_step=0.0 if SR == sr.design else 2.0)
- SR.orm.save("orm.json")
- # Load it on orbit correction tool
- SR.orbit.load("orm.json")
-
-# ----- Correct the orbit on live -----
-
-# Get the devices
-hcorr = SR.get_magnets("HCorr")
-vcorr = SR.get_magnets("VCorr")
-orbit = SR.get_bpms("BPM").positions
-
-# Create an initial orbit with errors
-std_kick = 10e-6
-hcorr.strengths.set(std_kick * np.random.normal(size=len(hcorr)))
-vcorr.strengths.set(std_kick * np.random.normal(size=len(vcorr)))
-time.sleep(3)
-
-orbit_initial = orbit.get()
-
-# Correct the orbit
-# If you are using the ORM measured on design to correct on live you need to set the
-# gain since the unit for the BPMs are not the same for both modes yet.
-
-if SR == sr.design:
- SR.orbit.correct()
-else:
- # BPM are in nm, work around with a 1e-9 weight
- SR.orbit.correct(gain=1e-9)
-
-time.sleep(3)
-orbit_after = orbit.get()
-
-# ----- Plot the results -----
-# Remember: if you change the example from live to design you need to change the unit
-# for the orbit when plotting since not the same yet.
-# If you are running in VS code you might need to switch the matplotlib backend for
-# the plot to show.
-
-fig = plt.figure()
-ax1 = fig.add_subplot(311)
-ax2 = fig.add_subplot(312)
-ax3 = fig.add_subplot(313)
-ax1.plot(orbit_initial[:, 0] * 1e-6, label="Orbit before correction")
-ax2.plot(orbit_initial[:, 1] * 1e-6, label="Orbit before correction")
-ax1.plot(orbit_after[:, 0] * 1e-6, label="Orbit after correction")
-ax2.plot(orbit_after[:, 1] * 1e-6, label="Orbit after correction")
-
-ax3.plot(hcorr.strengths.get() * 1e6, label="H Steerers")
-ax3.plot(vcorr.strengths.get() * 1e6, label="V Steerers")
-
-ax1.set_ylabel("Horizontal pos. [mm]")
-ax2.set_ylabel("Vertical pos. [mm]")
-ax2.set_xlabel("BPM number")
-ax3.set_ylabel("Strength (urad)")
-ax3.set_xlabel("Steerer number")
-ax1.legend()
-ax2.legend()
-ax3.legend()
-fig.tight_layout()
-
-plt.show()
diff --git a/examples/BESSY2_example/bessy2-tune.ipynb b/examples/BESSY2_example/bessy2-tune.ipynb
deleted file mode 100644
index 5ca7f42b8..000000000
--- a/examples/BESSY2_example/bessy2-tune.ipynb
+++ /dev/null
@@ -1,128 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "61e6520b",
- "metadata": {},
- "source": [
- "### Tune correction\n",
- "\n",
- "This example shows how to run tune correction using the simulator or the virtual accelerator.\n",
- "If you want to test the virtual accelerator you need to start the container before running the script."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1a092dbb",
- "metadata": {},
- "outputs": [],
- "source": [
- "import time\n",
- "\n",
- "import numpy as np\n",
- "\n",
- "from pyaml.accelerator import Accelerator\n",
- "from pyaml.common.constants import Action"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9b63d253",
- "metadata": {},
- "outputs": [],
- "source": [
- "# ----- Load the configuration -----\n",
- "# Remember to change the prefix for the live mode to the one matching\n",
- "# your virtual accelerator before loading.\n",
- "\n",
- "sr = Accelerator.load(\"BESSY2Tune.yaml\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bf603b5f",
- "metadata": {},
- "outputs": [],
- "source": [
- "# ----- Define a callback -----\n",
- "# This callback is used to print output during the tune response measurement.\n",
- "\n",
- "\n",
- "def tune_callback(action: int, cb_data: dict):\n",
- " if action == Action.MEASURE:\n",
- " # On action measure, the measured dq / dk is passed as argument\n",
- " print(f\"Tune response: #{cb_data['step']} {cb_data['magnet']} {cb_data['tune']}\")\n",
- " return True"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d1593276",
- "metadata": {},
- "outputs": [],
- "source": [
- "# ----- Measure the tune response matrix-----\n",
- "# You can measure the tune response matrix on either the design or live mode.\n",
- "# At the moment they don't give the same result. This will be fixed later by\n",
- "# switching to using SerializedMagnet.\n",
- "\n",
- "# Choose which backend to use.\n",
- "SR = sr.design\n",
- "# SR = sr.live\n",
- "\n",
- "# if the TRM is not present measure it\n",
- "if SR.tune.response_matrix is None:\n",
- " SR.trm.measure(sleep_between_step=0.0 if SR == sr.design else 2.0, callback=tune_callback)\n",
- " SR.trm.save(\"trm.json\")\n",
- " # Load it on tune tuning tool\n",
- " SR.tune.load(\"trm.json\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "153cefd1",
- "metadata": {},
- "outputs": [],
- "source": [
- "# ----- Correct the tune -----\n",
- "\n",
- "print(\"\\nRun tune correction:\")\n",
- "\n",
- "initial_tunes = np.array2string(SR.tune.readback(), precision=6, floatmode=\"fixed\")\n",
- "print(f\"Initial tunes: {initial_tunes}\")\n",
- "\n",
- "SR.tune.set([0.83, 0.84], iter=2, wait_time=3)\n",
- "time.sleep(3)\n",
- "\n",
- "final_tunes = np.array2string(SR.tune.readback(), precision=6, floatmode=\"fixed\")\n",
- "print(f\"Final tunes: {final_tunes}\")"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "bessy2-tune",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.14"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/examples/BESSY2_example/bessy2-tune.py b/examples/BESSY2_example/bessy2-tune.py
deleted file mode 100644
index 2a997cb83..000000000
--- a/examples/BESSY2_example/bessy2-tune.py
+++ /dev/null
@@ -1,62 +0,0 @@
-"""Tune correction
-
-This example shows how to run tune correction using the simulator
-or the virtual accelerator.
-If you want to test the virtual accelerator you need to start the
-container before running the script.
-
-"""
-
-import time
-
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-from pyaml.common.constants import Action
-from pyaml.magnet.magnet import Magnet
-
-# ----- Load the configuration -----
-# Remember to change the prefix for the live mode to the one matching
-# your virtual accelerator before loading.
-
-sr = Accelerator.load("BESSY2Tune.yaml")
-
-# ----- Define a callback -----
-# This callback is used to print output during the tune response measurement.
-
-
-def tune_callback(action: int, cb_data: dict):
- if action == Action.MEASURE:
- # On action measure, the measured dq / dk is passed as argument
- print(f"Tune response: #{cb_data['step']} {cb_data['magnet']} {cb_data['tune']}")
- return True
-
-
-# ----- Measure the tune response matrix-----
-# You can measure the tune response matrix on either the design or live mode.
-# At the moment they don't give the same result.
-# This will be fixed later by switching to using SerializedMagnet.
-
-# Choose which backend to use.
-SR = sr.design
-# SR = sr.live
-
-# if the TRM is not present measure it
-if sr.design.tune.response_matrix is None:
- SR.trm.measure(sleep_between_step=0.0 if SR == sr.design else 2.0, callback=tune_callback)
- SR.trm.save("trm.json")
- # Load it on tune tuning tool
- SR.tune.load("trm.json")
-
-# ----- Correct the tune -----
-
-print("\nRun tune correction:")
-
-initial_tunes = np.array2string(SR.tune.readback(), precision=6, floatmode="fixed")
-print(f"Initial tunes: {initial_tunes}")
-
-SR.tune.set([0.83, 0.84], iter=2, wait_time=3)
-time.sleep(3)
-
-final_tunes = np.array2string(SR.tune.readback(), precision=6, floatmode="fixed")
-print(f"Final tunes: {final_tunes}")
diff --git a/examples/ESRF_ORM_example/README.md b/examples/ESRF_ORM_example/README.md
deleted file mode 100644
index 0135d41b4..000000000
--- a/examples/ESRF_ORM_example/README.md
+++ /dev/null
@@ -1,68 +0,0 @@
-# Instructions for how to run the ESRF ORM example.
-
-## Install pyAML
-
-1. Create a virtual environment and activate it. It needs to have >= Python 3.11.
-
-2. Install pyAML including the tango bindings and SimulatedCommissioning (pySC).
-
- ```bash
- pip install accelerator-middle-layer[tango]
- pip install accelerator-commissioning
- ```
-
-3. install EBS dummy Control system. This is valid untill an ESRF virtual machine will be available as for BESSYII and SOLEIL
- ```bash
- pip install tests/dummy_cs/tango-pyaml
- ```
-
- ## Run the examples
- Several examples are available for ORM correction.
-
- To run the examples:
- 1. navigate to the pyaml root directory
- 2. Download (or clone) the example files.
- 3. run the files
-
- ### The correct_orbit.py shows the standard orbit correction
- Expected output is:
- Creating dummy TangoControlSystem: live
- R.m.s. orbit before correction H: 85.1 µm, V: 24.1 µm.
- 30 Jan 2026, 14:25:55 | INFO | (Re-)Building pseudoinverse RM with method='svd_values' and parameter=162 with zerosum=True.
- 30 Jan 2026, 14:25:55 | INFO | (Re-)Building pseudoinverse RM with method='svd_values' and parameter=162 with zerosum=False.
- R.m.s. orbit after correction H: 0.7 µm, V: 0.4 µm,
-
- ### The measure_dispersion.py shows the standard orbit correction
- Expected output is:
- 30 Jan 2026, 15:05:47 | WARNING | PyAML Tango control system binding (0.3.2) initialized with name 'live' and TANGO_HOST=ebs-simu-3:10000
- Reading orbit.
- Changing RF frequency.
- Reading orbit.
- Changing RF frequency.
- Reading orbit.
- Restoring RF frequency.
- Reading orbit.
-
-
- ### measure_ideal_ORM.py
- Expected output is:
-
- 30 Jan 2026, 15:02:25 | WARNING | PyAML Tango control system binding (0.3.2) initialized with name 'live' and TANGO_HOST=ebs-simu-3:10000
- 30 Jan 2026, 15:02:27 | INFO | Measuring correctors from the default arrays: HCorr and VCorr.
- 30 Jan 2026, 15:02:28 | INFO | Measured response of SH1A-C04-H.
- ...
-
- ### measure_ideal_ORM_and_disp.py
- Expected output is:
- as the two ouputs above
-
- ### measure_reduced_ORM.py
- Expected output is:
- 30 Jan 2026, 15:04:26 | WARNING | PyAML Tango control system binding (0.3.2) initialized with name 'live' and TANGO_HOST=ebs-simu-3:10000
- [0/64], Measured response of SJ2A-C04-H: r.m.s H.: 5.75 mm/mrad, r.m.s. V: 0.00 mm/mrad
- [1/64], Measured response of SF2A-C05-H: r.m.s H.: 5.75 mm/mrad, r.m.s. V: 0.00 mm/mrad
- [2/64], Measured response of SF2A-C06-H: r.m.s H.: 5.75 mm/mrad, r.m.s. V: 0.00 mm/mrad
- ...
- [61/64], Measured response of SF2A-C01-V: r.m.s H.: 0.00 mm/mrad, r.m.s. V: 2.08 mm/mrad
- [62/64], Measured response of SF2A-C02-V: r.m.s H.: 0.00 mm/mrad, r.m.s. V: 2.08 mm/mrad
- [63/64], Measured response of SI2A-C03-V: r.m.s H.: 0.00 mm/mrad, r.m.s. V: 2.08 mm/mrad
diff --git a/examples/ESRF_ORM_example/correct_orbit.py b/examples/ESRF_ORM_example/correct_orbit.py
deleted file mode 100644
index b3479d6c9..000000000
--- a/examples/ESRF_ORM_example/correct_orbit.py
+++ /dev/null
@@ -1,77 +0,0 @@
-import time
-from pathlib import Path
-
-import matplotlib.pyplot as plt
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-
-parent_folder = Path(__file__).parent
-pyaml_folder = parent_folder.parent.parent
-config_path = pyaml_folder.joinpath("tests/config/EBSOrbit.yaml").resolve()
-sr = Accelerator.load(config_path)
-# ebs = sr.live
-ebs = sr.design
-
-## get reference
-ref_h, ref_v = ebs.get_bpms("BPM").positions.get().T
-reference = np.concatenate((ref_h, ref_v))
-########################################################
-
-hcorr = ebs.get_magnets("HCorr")
-vcorr = ebs.get_magnets("VCorr")
-bpms = ebs.get_bpms("BPM")
-
-if ebs == sr.design:
- ## generate some orbit
- std_kick = 1e-6
-
- np.random.seed(1)
- # mangle orbit
- hcorr.strengths.set(hcorr.strengths.get() + std_kick * np.random.normal(size=len(hcorr)))
- vcorr.strengths.set(vcorr.strengths.get() + std_kick * np.random.normal(size=len(vcorr)))
-
-h0 = hcorr.strengths.get()
-v0 = vcorr.strengths.get()
-
-positions_bc = bpms.positions.get()
-std_bc = np.std(positions_bc, axis=0)
-print(f"R.m.s. orbit before correction H: {1e6 * std_bc[0]: .1f} µm, V: {1e6 * std_bc[1]: .1f} µm.")
-########################################################
-
-ebs.orbit.set_virtual_weight(1000)
-## Correct the orbit
-ebs.orbit.correct(reference=None, rf=True)
-# ebs.orbit.correct(plane="H")
-# ebs.orbit.correct(plane="V")
-########################################################
-
-time.sleep(5)
-
-## inspect orbit correction
-positions_ac = bpms.positions.get()
-std_ac = np.std(positions_ac, axis=0)
-print(f"R.m.s. orbit after correction H: {1e6 * std_ac[0]: .1f} µm, V: {1e6 * std_ac[1]: .1f} µm,")
-
-fig = plt.figure()
-ax1 = fig.add_subplot(311)
-ax2 = fig.add_subplot(312)
-ax3 = fig.add_subplot(313)
-ax1.plot(positions_bc[:, 0] * 1e6, label="Orbit before correction")
-ax2.plot(positions_bc[:, 1] * 1e6, label="Orbit before correction")
-ax1.plot(positions_ac[:, 0] * 1e6, label="Orbit after correction")
-ax2.plot(positions_ac[:, 1] * 1e6, label="Orbit after correction")
-
-ax3.plot(hcorr.strengths.get())
-ax3.plot(vcorr.strengths.get())
-
-ax1.set_ylabel("Horizontal pos. [μm]")
-ax2.set_ylabel("Vertical pos. [μm]")
-ax2.set_xlabel("BPM number")
-ax3.set_ylabel("Strength (rad)")
-ax3.set_xlabel("Steerer number")
-fig.tight_layout()
-
-print(f"Sum of h. corr. trims: {np.sum(hcorr.strengths.get() - h0)}")
-print(f"Sum of v. corr. trims: {np.sum(vcorr.strengths.get() - v0)}")
-plt.show()
diff --git a/examples/ESRF_ORM_example/correct_orbit_disp.py b/examples/ESRF_ORM_example/correct_orbit_disp.py
deleted file mode 100644
index ec366d38a..000000000
--- a/examples/ESRF_ORM_example/correct_orbit_disp.py
+++ /dev/null
@@ -1,75 +0,0 @@
-import json
-import logging
-from pathlib import Path
-
-import matplotlib.pyplot as plt
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-from pyaml.tuning_tools.orbit import ConfigModel as Orbit_ConfigModel
-from pyaml.tuning_tools.orbit import Orbit
-
-parent_folder = Path(__file__).parent
-pyaml_folder = parent_folder.parent.parent
-config_path = pyaml_folder.joinpath("tests/config/EBSOrbit.yaml").resolve()
-sr = Accelerator.load(config_path)
-ebs = sr.design
-
-## get reference
-ref_h, ref_v = ebs.get_bpms("BPM").positions.get().T
-reference = np.concatenate((ref_h, ref_v))
-########################################################
-
-plant = sr.design.get_rf_plant("RF")
-frf = plant.frequency.get()
-plant.frequency.set(frf + 100)
-
-
-## generate some orbit
-std_kick = 0e-6
-hcorr = ebs.get_magnets("HCorr")
-vcorr = ebs.get_magnets("VCorr")
-bpms = ebs.get_bpms("BPM")
-
-# mangle orbit
-hcorr.strengths.set(hcorr.strengths.get() + std_kick * np.random.normal(size=len(hcorr)))
-vcorr.strengths.set(vcorr.strengths.get() + std_kick * np.random.normal(size=len(vcorr)))
-
-positions_bc = bpms.positions.get()
-std_bc = np.std(positions_bc, axis=0)
-print(f"R.m.s. orbit before correction H: {1e6 * std_bc[0]: .1f} µm, V: {1e6 * std_bc[1]: .1f} µm.")
-########################################################
-
-## Correct the orbit
-# ebs.orbit.set_rf_weight(1e7)
-ebs.orbit.correct(reference=reference, rf=True, gain_H=1, gain_V=1, gain_RF=1)
-ebs.orbit.correct(reference=reference, rf=True, gain_H=1, gain_V=1, gain_RF=1)
-# ebs.orbit.correct(plane="H")
-# ebs.orbit.correct(plane="V")
-########################################################
-
-## inspect orbit correction
-positions_ac = bpms.positions.get()
-std_ac = np.std(positions_ac, axis=0)
-print(f"R.m.s. orbit after correction H: {1e6 * std_ac[0]: .1f} µm, V: {1e6 * std_ac[1]: .1f} µm,")
-
-fig = plt.figure()
-ax1 = fig.add_subplot(311)
-ax2 = fig.add_subplot(312)
-ax3 = fig.add_subplot(313)
-ax1.plot(positions_bc[:, 0] * 1e6, label="Orbit before correction")
-ax2.plot(positions_bc[:, 1] * 1e6, label="Orbit before correction")
-ax1.plot(positions_ac[:, 0] * 1e6, label="Orbit after correction")
-ax2.plot(positions_ac[:, 1] * 1e6, label="Orbit after correction")
-
-ax3.plot(hcorr.strengths.get())
-ax3.plot(vcorr.strengths.get())
-
-ax1.set_ylabel("Horizontal pos. [μm]")
-ax2.set_ylabel("Vertical pos. [μm]")
-ax2.set_xlabel("BPM number")
-ax3.set_ylabel("Strength (rad)")
-ax3.set_xlabel("Steerer number")
-fig.tight_layout()
-
-plt.show()
diff --git a/examples/ESRF_ORM_example/measure_dispersion.py b/examples/ESRF_ORM_example/measure_dispersion.py
deleted file mode 100644
index 249e16147..000000000
--- a/examples/ESRF_ORM_example/measure_dispersion.py
+++ /dev/null
@@ -1,30 +0,0 @@
-from pathlib import Path
-
-import matplotlib.pyplot as plt
-
-from pyaml.accelerator import Accelerator
-from pyaml.common.constants import Action
-
-parent_folder = Path(__file__).parent
-config_path = parent_folder.parent.parent.joinpath("tests", "config", "EBSOrbit.yaml").resolve()
-sr = Accelerator.load(config_path)
-ebs = sr.design
-
-
-def callback(action: int, callback_data) -> bool:
- if action == Action.APPLY:
- print("Changing RF frequency")
- elif action == Action.MEASURE:
- print("Reading orbit.")
- elif action == Action.RESTORE:
- print("Restoring RF frequency.")
- return True
-
-
-ebs.dispersion.measure(callback=callback)
-dispersion_data = ebs.dispersion.get()
-
-fig = plt.figure()
-ax = fig.add_subplot(111)
-ax.plot(dispersion_data["frequency_response_x"])
-plt.show()
diff --git a/examples/ESRF_ORM_example/measure_ideal_ORM.py b/examples/ESRF_ORM_example/measure_ideal_ORM.py
deleted file mode 100644
index 60efa03d3..000000000
--- a/examples/ESRF_ORM_example/measure_ideal_ORM.py
+++ /dev/null
@@ -1,17 +0,0 @@
-from pathlib import Path
-
-from pyaml.accelerator import Accelerator
-from pyaml.tuning_tools.orbit_response_matrix import ConfigModel as ORM_ConfigModel
-from pyaml.tuning_tools.orbit_response_matrix import OrbitResponseMatrix
-
-parent_folder = Path(__file__).parent
-config_path = parent_folder.parent.parent.joinpath("tests", "config", "EBSOrbit.yaml").resolve()
-sr = Accelerator.load(config_path)
-ebs = sr.design
-
-if ebs.orm.measure():
- ebs.orm.save(parent_folder / Path("ideal_orm.json"))
- ebs.orm.save(parent_folder / Path("ideal_orm.yaml"), with_type="yaml")
- ebs.orm.save(parent_folder / Path("ideal_orm.npz"), with_type="npz")
-
-ormdata = ebs.orm.get()
diff --git a/examples/ESRF_ORM_example/measure_ideal_ORM_and_disp.py b/examples/ESRF_ORM_example/measure_ideal_ORM_and_disp.py
deleted file mode 100644
index c356a3c49..000000000
--- a/examples/ESRF_ORM_example/measure_ideal_ORM_and_disp.py
+++ /dev/null
@@ -1,24 +0,0 @@
-import json
-from pathlib import Path
-
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-
-parent_folder = Path(__file__).parent
-config_path = parent_folder.parent.parent.joinpath("tests", "config", "EBSOrbit.yaml").resolve()
-sr = Accelerator.load(config_path)
-
-ebs = sr.design
-
-ebs.orm.measure()
-orm_data = ebs.orm.get()
-
-ebs.dispersion.measure()
-dispersion_data = ebs.dispersion.get()
-
-rf_response = dispersion_data["frequency_response_x"] + dispersion_data["frequency_response_y"]
-
-orm_data["rf_response"] = rf_response
-
-ebs.orm.save("ideal_orm_disp.json")
diff --git a/examples/ESRF_ORM_example/measure_reduced_ORM.py b/examples/ESRF_ORM_example/measure_reduced_ORM.py
deleted file mode 100644
index 6bed127c6..000000000
--- a/examples/ESRF_ORM_example/measure_reduced_ORM.py
+++ /dev/null
@@ -1,51 +0,0 @@
-import logging
-from pathlib import Path
-
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-from pyaml.common.constants import Action
-
-# disable printing during ORM measurement to illustrate callback.
-logger = logging.getLogger("pyaml.tuning_tools.orbit_response_matrix").setLevel(logging.WARNING)
-
-parent_folder = Path(__file__).parent
-config_path = parent_folder.parent.parent.joinpath("tests", "config", "EBSOrbit.yaml").resolve()
-sr = Accelerator.load(config_path)
-ebs = sr.design
-orm = ebs.orm
-
-hcorr = ebs.get_magnets("HCorr")
-vcorr = ebs.get_magnets("VCorr")
-corrector_names = (
- hcorr["SJ2A*"].names()
- + hcorr["SF2A*"].names()
- + hcorr["SI2A*"].names()
- + vcorr["SJ2A*"].names()
- + vcorr["SF2A*"].names()
- + vcorr["SI2A*"].names()
-)
-
-
-def callback(action: int, cdata):
- if action == Action.RESTORE:
- if "response_data" in cdata:
- rdata = cdata["response_data"]
- i = rdata.last_number
- n_bpms = rdata.raw_up.shape[0] // 2
- n_correctors = rdata.raw_up.shape[1]
- corrector = rdata.last_input
- response = (rdata.raw_up[:, i] - rdata.raw_down[:, i]) / rdata.inputs_delta[i]
- std_x_resp = np.std(response[:n_bpms])
- std_y_resp = np.std(response[n_bpms:])
- print(
- f"[{i}/{n_correctors}], Measured response of {corrector}: "
- f"r.m.s H.: {std_x_resp:.2f} mm/mrad, r.m.s. V: {std_y_resp:.2f} mm/mrad"
- )
- return True
-
-
-orm.measure(corrector_names=corrector_names, callback=callback)
-orm.save(parent_folder / Path("reduced_orm.json"))
-
-ormdata = orm.get()
diff --git a/examples/ESRF_ORM_example/scan_bpm_weight.py b/examples/ESRF_ORM_example/scan_bpm_weight.py
deleted file mode 100644
index b8af7b530..000000000
--- a/examples/ESRF_ORM_example/scan_bpm_weight.py
+++ /dev/null
@@ -1,61 +0,0 @@
-import json
-import logging
-from pathlib import Path
-
-import matplotlib.pyplot as plt
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-from pyaml.tuning_tools.orbit import ConfigModel as Orbit_ConfigModel
-from pyaml.tuning_tools.orbit import Orbit
-
-parent_folder = Path(__file__).parent
-pyaml_folder = parent_folder.parent.parent
-config_path = pyaml_folder.joinpath("tests/config/EBSOrbit.yaml").resolve()
-sr = Accelerator.load(config_path)
-ebs = sr.design
-
-## get reference
-ref_h, ref_v = ebs.get_bpms("BPM").positions.get().T
-reference = np.concatenate((ref_h, ref_v))
-########################################################
-
-
-## generate some orbit
-std_kick = 1e-6
-hcorr = ebs.get_magnets("HCorr")
-vcorr = ebs.get_magnets("VCorr")
-bpms = ebs.get_bpms("BPM")
-
-np.random.seed(1)
-# mangle orbit
-h0 = hcorr.strengths.get() + std_kick * np.random.normal(size=len(hcorr))
-v0 = vcorr.strengths.get() + std_kick * np.random.normal(size=len(vcorr))
-
-my_bpm_name = "BPM_C04-05"
-my_bpm = ebs.get_bpm(my_bpm_name)
-
-weights = np.linspace(0.01, 10, 40)
-bpm_reading = np.zeros_like(weights)
-ref_bpm_reading = my_bpm.positions.get()[0]
-########################################################
-for i, w in enumerate(weights):
- hcorr.strengths.set(h0)
- vcorr.strengths.set(v0)
- ebs.orbit.set_weight(my_bpm_name, w, plane="H")
-
- ebs.orbit.correct(singular_values_H=40, singular_values_V=40)
- ebs.orbit.correct(singular_values_H=40, singular_values_V=40)
- ebs.orbit.correct(singular_values_H=40, singular_values_V=40)
- bpm_reading[i] = my_bpm.positions.get()[0]
-
-fig = plt.figure()
-ax1 = fig.add_subplot(111)
-ax1.plot(weights, bpm_reading * 1e6, ".")
-
-
-ax1.set_ylabel("BPM reading [μm]")
-ax1.set_xlabel("BPM weight")
-fig.tight_layout()
-
-plt.show()
diff --git a/examples/ESRF_ORM_example/scan_corrector_weight.py b/examples/ESRF_ORM_example/scan_corrector_weight.py
deleted file mode 100644
index 5187e8d21..000000000
--- a/examples/ESRF_ORM_example/scan_corrector_weight.py
+++ /dev/null
@@ -1,60 +0,0 @@
-import json
-import logging
-from pathlib import Path
-
-import matplotlib.pyplot as plt
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-from pyaml.tuning_tools.orbit import ConfigModel as Orbit_ConfigModel
-from pyaml.tuning_tools.orbit import Orbit
-
-parent_folder = Path(__file__).parent
-pyaml_folder = parent_folder.parent.parent
-config_path = pyaml_folder.joinpath("tests/config/EBSOrbit.yaml").resolve()
-sr = Accelerator.load(config_path)
-ebs = sr.design
-
-## get reference
-ref_h, ref_v = ebs.get_bpms("BPM").positions.get().T
-reference = np.concatenate((ref_h, ref_v))
-########################################################
-
-
-## generate some orbit
-std_kick = 1e-6
-hcorr = ebs.get_magnets("HCorr")
-vcorr = ebs.get_magnets("VCorr")
-bpms = ebs.get_bpms("BPM")
-
-np.random.seed(1)
-# mangle orbit
-h0 = hcorr.strengths.get() + std_kick * np.random.normal(size=len(hcorr))
-v0 = vcorr.strengths.get() + std_kick * np.random.normal(size=len(vcorr))
-
-my_corr_name = "SJ2A-C04-H"
-my_corr = ebs.get_magnet(my_corr_name)
-
-
-weights = np.linspace(0.01, 2, 100)
-corr_settings = np.zeros_like(weights)
-########################################################
-for i, w in enumerate(weights):
- hcorr.strengths.set(h0)
- my_corr.strength.set(0)
- vcorr.strengths.set(v0)
- ebs.orbit.set_weight(my_corr_name, w)
-
- ebs.orbit.correct(reference=reference)
- corr_settings[i] = my_corr.strength.get()
-
-fig = plt.figure()
-ax1 = fig.add_subplot(111)
-ax1.plot(weights, corr_settings * 1e6, ".")
-
-
-ax1.set_ylabel("Corrector setting [μrad]")
-ax1.set_xlabel("Corrector weight")
-fig.tight_layout()
-
-plt.show()
diff --git a/examples/ESRF_tune_example/README.md b/examples/ESRF_tune_example/README.md
deleted file mode 100644
index f0bfdc2e5..000000000
--- a/examples/ESRF_tune_example/README.md
+++ /dev/null
@@ -1,61 +0,0 @@
-# Instructions for how to run the ESRF Tune example.
-
-## Install pyAML
-
-1. Create a virtual environment and activate it. It needs to have >= Python 3.11.
-
-2. Install pyAML including the tango bindings.
-
- ```bash
- pip install accelerator-middle-layer[tango]
- ```
-
-3. install EBS dummy Control system. This is valid untill an ESRF virtual machine will be available as for BESSYII and SOLEIL
- ```bash
- pip install tests/dummy_cs/tango-pyaml
- ```
-
- ## Run the examples
- Two examples are available for tune correction.
- The esrf_tune_example.py shows the standard usage
- The esrf_tune_example_no_yaml.py shows the same but without using configuration file.
-
- To run the examples:
- 1. navigate to the pyaml root directory
- 2. Download (or clone) the example files.
- 3. run the files
-
- ## expected output of esrf_tune_example.py for SR.design is
-
- 30 Jan 2026, 09:23:13 | WARNING | PyAML Tango control system binding (0.3.2) initialized with name 'live' and TANGO_HOST=ebs-simu-3:10000
- Tune response: #0 QD2E-C04 [ 0.17851726 -1.25993589]
- Tune response: #1 QD2A-C05 [ 0.17889514 -1.25969115]
- ...
- Tune response: #123 QF1A-C03 [ 0.59069308 -0.49430245]
- Initial tune: [0.16000001 0.33999986]
- Final tune: [0.17 0.32]
-
-
- ## expected output of esrf_tune_example.py for SR.live is
- Initial tune: [0. 0.]
- MultiAttribute.get(124 values)
- MultiAttribute.get(124 values)
- MultiAttribute.set(124 values)
- //ebs-simu-3:10000/srmag/vps-qd2/c04-e/current:0.8688600876142427
- ...
- //ebs-simu-3:10000/srmag/vps-qf1/c02-e/current:1.3024074153237937
- //ebs-simu-3:10000/srmag/vps-qf1/c03-a/current:1.2966875742108155
- Final tune: [0. 0.]
-
- ## expected output of: esrf_tune_example_no_yaml.py
-
- Creating dummy TangoControlSystem: live
- Tune=Value(0.0, quality='VALID',timestamp='2026-01-30 10:14:20.685681'), Value(0.0, quality='VALID',timestamp='2026-01-30 10:14:20.685764')
- MultiAttribute.get(4 values)
- MultiAttribute.get(4 values)
- MultiAttribute.set(4 values)
- //ebs-simu-3:10000/srmag/vps-qf1/c01-a/current:9.77449643229055
- //ebs-simu-3:10000/srmag/vps-qf1/c01-e/current:9.724114177375114
- //ebs-simu-3:10000/srmag/vps-qd2/c01-a/current:7.785894751522811
- //ebs-simu-3:10000/srmag/vps-qd2/c01-e/current:7.778613675036138
- Tune=Value(0.0, quality='VALID',timestamp='2026-01-30 10:14:23.686925'), Value(0.0, quality='VALID',timestamp='2026-01-30 10:14:23.686994')
diff --git a/examples/ESRF_tune_example/esrf_tune_example.py b/examples/ESRF_tune_example/esrf_tune_example.py
deleted file mode 100644
index 4b3bd5c9d..000000000
--- a/examples/ESRF_tune_example/esrf_tune_example.py
+++ /dev/null
@@ -1,36 +0,0 @@
-import os
-
-import numpy as np
-
-from pyaml.accelerator import Accelerator
-from pyaml.common.constants import ACTION_RESTORE
-from pyaml.magnet.magnet import Magnet
-
-sr: Accelerator = Accelerator.load("./tests/config/EBSTune.yaml")
-sr.design.get_lattice().disable_6d()
-
-# switch script from live to design
-# sr.design acts on simulations sr.live to act on real machine
-SR = sr.live
-
-
-# Callback exectued after each magnet strenght setting
-# during the tune response matrix measurement
-def tune_callback(step: int, action: int, m: Magnet, dtune: np.array):
- if action == ACTION_RESTORE:
- # On action restore, the delta tune is passed as argument
- print(f"Tune response: #{step} {m.get_name()} {dtune}")
- return True
-
-
-# Compute tune response matrix
-tune_adjust_design = sr.design.tune
-tune_adjust_design.response.measure(callback=tune_callback)
-tune_adjust_design.response.save_json("tunemat.json")
-
-# Correct tune on live or design
-tune_adjust = SR.tune
-tune_adjust.response.load_json("tunemat.json")
-print(f"Initial tune: {tune_adjust.readback()}")
-tune_adjust.set([0.17, 0.32], iter=2, wait_time=10)
-print(f"Final tune: {tune_adjust.readback()}")
diff --git a/examples/ESRF_tune_example/esrf_tune_example_no_yaml.py b/examples/ESRF_tune_example/esrf_tune_example_no_yaml.py
deleted file mode 100644
index 0296b04f1..000000000
--- a/examples/ESRF_tune_example/esrf_tune_example_no_yaml.py
+++ /dev/null
@@ -1,154 +0,0 @@
-import os
-import time
-
-import numpy as np
-from tango.pyaml.attribute import Attribute
-from tango.pyaml.attribute import ConfigModel as AttributeConfig
-from tango.pyaml.attribute_read_only import (
- AttributeReadOnly,
-)
-from tango.pyaml.attribute_read_only import (
- ConfigModel as AttributeReadOnlyConfig,
-)
-from tango.pyaml.controlsystem import (
- ConfigModel as ControlSystemConfig,
-)
-from tango.pyaml.controlsystem import (
- TangoControlSystem,
-)
-
-from pyaml.accelerator import Accelerator
-from pyaml.accelerator import ConfigModel as AcceleratorConfigModel
-from pyaml.arrays.magnet import ConfigModel as MagnetArrayConfigModel
-from pyaml.arrays.magnet import Magnet
-from pyaml.configuration import set_root_folder
-from pyaml.configuration.csvcurve import ConfigModel as CSVCureveConfig
-from pyaml.configuration.csvcurve import CSVCurve
-from pyaml.lattice.simulator import ConfigModel as SimulatorConfigModel
-from pyaml.lattice.simulator import Simulator
-from pyaml.magnet.linear_model import (
- ConfigModel as LinearMagnetModelConfig,
-)
-from pyaml.magnet.linear_model import (
- LinearMagnetModel,
-)
-from pyaml.magnet.quadrupole import ConfigModel as QuadrupoleConfig
-from pyaml.magnet.quadrupole import Quadrupole
-
-# Get the directory of the current script
-script_dir = os.path.dirname(__file__)
-
-# Go up one level and then into 'data'
-relative_path = os.path.join(script_dir, "..", "..", "tests")
-
-# Normalize the path (resolves '..')
-absolute_path = os.path.abspath(relative_path)
-
-set_root_folder(absolute_path)
-
-# Configuration
-
-tangocs = ControlSystemConfig(name="live", tango_host="ebs-simu-3:10000")
-control = TangoControlSystem(tangocs)
-
-qfCurve = CSVCurve(CSVCureveConfig(file="config/sr/magnet_models/QF1_strength.csv"))
-qdCurve = CSVCurve(CSVCureveConfig(file="config/sr/magnet_models/QD2_strength.csv"))
-
-elemConfig = [
- {
- "name": "QF1A-C01",
- "attname": "srmag/vps-qf1/c01-a/current",
- "calibration_factor": 1.00504,
- "curve": qfCurve,
- },
- {
- "name": "QF1E-C01",
- "attname": "srmag/vps-qf1/c01-e/current",
- "calibration_factor": 0.998212,
- "curve": qfCurve,
- },
- {
- "name": "QD2A-C01",
- "attname": "srmag/vps-qd2/c01-a/current",
- "calibration_factor": 1.00504,
- "curve": qdCurve,
- },
- {
- "name": "QD2E-C01",
- "attname": "srmag/vps-qd2/c01-e/current",
- "calibration_factor": 1.003485189,
- "curve": qdCurve,
- },
-]
-
-devices = []
-names = []
-for cfg in elemConfig:
- qAtt = Attribute(AttributeConfig(attribute=cfg["attname"], unit="A"))
- qModel = LinearMagnetModel(
- LinearMagnetModelConfig(
- curve=cfg["curve"],
- calibration_factor=cfg["calibration_factor"],
- powerconverter=qAtt,
- unit="1/m",
- )
- )
- devices.append(Quadrupole(QuadrupoleConfig(name=cfg["name"], model=qModel)))
- names.append(cfg["name"])
-
-
-simulator = Simulator(SimulatorConfigModel(name="design", lattice="config/sr/lattices/ebs.mat"))
-
-quads = Magnet(MagnetArrayConfigModel(name="quadsForTune", elements=names))
-
-sr = Accelerator(
- AcceleratorConfigModel(
- machine="sr",
- facility="ESRF",
- energy=6e9,
- controls=[control],
- simulators=[simulator],
- devices=devices,
- arrays=[quads],
- data_folder="/tmp",
- )
-)
-
-
-# Usage exmaple
-
-quadForTuneDesign = sr.design.get_magnets("quadsForTune")
-quadForTuneLive = sr.live.get_magnets("quadsForTune")
-
-# Compute tune response matrix for the 4 quads from simulator
-sr.design.get_lattice().disable_6d()
-tune = sr.design.get_lattice().get_tune()
-tunemat = np.zeros((len(quadForTuneDesign), 2))
-for idx, m in enumerate(quadForTuneDesign):
- str = m.strength.get()
- m.strength.set(str + 1e-4)
- dq = sr.design.get_lattice().get_tune() - tune
- tunemat[idx] = dq * 1e4
- m.strength.set(str)
-
-# Compute correction matrix
-correctionmat = np.linalg.pinv(tunemat.T)
-
-# Correct tune on live
-
-# Here ,as an example, instead of using the betatron tune monitor object,
-# we directly connect to th CS
-qxAtt, qyAtt = control.attach(
- [
- AttributeReadOnly(AttributeReadOnlyConfig(attribute="sys/ringsimulator/ebs/Tune_h", unit="")),
- AttributeReadOnly(AttributeReadOnlyConfig(attribute="sys/ringsimulator/ebs/Tune_v", unit="")),
- ]
-)
-
-print(f"Tune={qxAtt.readback()}, {qyAtt.readback()}")
-
-strs = quadForTuneLive.strengths.get()
-strs += np.matmul(correctionmat, [0.1, 0.05]) # Ask for correction [dqx,dqy]
-quadForTuneLive.strengths.set(strs)
-time.sleep(3)
-print(f"Tune={qxAtt.readback()}, {qyAtt.readback()}")
diff --git a/examples/SOLEIL_examples/01-SOLEIL_II_tune_example.ipynb b/examples/SOLEIL_examples/01-SOLEIL_II_tune_example.ipynb
deleted file mode 100644
index f49b94b2d..000000000
--- a/examples/SOLEIL_examples/01-SOLEIL_II_tune_example.ipynb
+++ /dev/null
@@ -1,671 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 1,
- "id": "11bf6fa5-1b3c-4283-a4bc-cb27bac2e988",
- "metadata": {},
- "outputs": [],
- "source": [
- "import os\n",
- "\n",
- "import matplotlib.pyplot as plt\n",
- "import numpy as np\n",
- "\n",
- "from pyaml.accelerator import Accelerator\n",
- "from pyaml.common.constants import Action\n",
- "from pyaml.magnet.magnet import Magnet"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "74299a03-49fe-4efe-a66b-3e21bc9feb05",
- "metadata": {},
- "source": [
- "### Virtual accelerator setup for emulation of a control system\n",
- "For the **live** control mode, you should have some control system emulation running. \n",
- "\n",
- "!!! *If you want to skip this, you can always run the notebook in **design** mode.* !!!\n",
- "\n",
- "For the installation you should be able to do \n",
- "```\n",
- "apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest\n",
- "apptainer run virtual-accelerator.sif\n",
- "```\n",
- "This will run SOLEIL II proof-of-concept digital twin on localhost:11000. You can play with the digital twin itself (without pyAML) via Jive to check that everything is working. You can run Jive in a different terminal with \n",
- "```\n",
- "apptainer pull jive.sif https://gitlab.synchrotron-soleil.fr/api/v4/projects/2739/packages/generic/jive/latest/jive.sif\n",
- "apptainer run jive.sif\n",
- "```\n",
- "On linux you may additionally configure X11\n",
- "```\n",
- "export DISPLAY=:0\n",
- "xhost +local:root\n",
- "```\n",
- "Jive is not necessary to run anything but some of you may find it useful to open its `simulator/ringsimulator/ringsimulator` device on the side and see how the global parameters (tune, orbit, chromaticity, etc.) change with your actions in pyAML.\n",
- "NOTE: This notebook is just a demonstration of pyAML functionality. Certain things may be done stupidly. The person who wrote this jupyter notebook only cared about showing that the code is working, not about intelligently controlling the accelerator."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "id": "5a5aa924-ffcd-4aba-a0c2-fb9e4955eb58",
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "PyAML Tango control system binding (0.3.3) initialized with name 'live' and TANGO_HOST=localhost:11000\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "Accelerator(facility='Synchrotron SOLEIL', machine='sr', energy=2750000000.0, alphac=None, harmonic_number=None, controls=[TangoControlSystem(name='live', tango_host='localhost:11000', debug_level=None, lazy_devices=True, scalar_aggregator='tango.pyaml.multi_attribute', vector_aggregator=None, timeout_ms=3000)], simulators=[Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m', mat_key=None, linker=, description=None)], data_folder='/data/store', description=None)"
- ]
- },
- "execution_count": 2,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "sr = Accelerator.load(\"p.yaml\")\n",
- "sr # string representation"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a55eb5f7-7c5f-4a37-96e8-f9b6be67ede6",
- "metadata": {},
- "source": [
- "### Control mode choice\n",
- "You can choose either sr.live control mode or sr.design control mode\n",
- "- **sr.live** is intended for use with control system either digital twin or a real accelerator\n",
- "- **sr.design** will just run pyAT without any control system \n",
- " \n",
- "In this notebook with **sr.design** you can put all wait times to zero or some negligible value. In **sr.live** mode, a wait time of 1.5 seconds is necessary becausethe digital twin is updating every 0.5-1 second."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "id": "4316ad34-f146-442f-9250-8a750cf6f562",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m', mat_key=None, linker=, description=None)"
- ]
- },
- "execution_count": 3,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "control_mode = sr.design\n",
- "wait_time = 0 if control_mode == sr.design else 2.0\n",
- "control_mode # string representation"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "be59ab58-7662-4e46-a22f-00b134d22d45",
- "metadata": {},
- "source": [
- "#### Accessing betatron tune monitor / diagnostics\n",
- "Betatron tune monitor object is already defined near the end of the configuration file with a name \"BETATRON_TUNE\"."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "id": "9881f93b-68c1-41c9-b67d-0db5f9f4571c",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "[0.20136665 0.30000589]\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "BetatronTuneMonitor(peer='Simulator:design', name='BETATRON_TUNE', description=None, lattice_names=None, tune_h=AttributeReadOnly(attribute='simulator/ringsimulator/ringsimulator/Tune_h', unit='', range=None), tune_v=AttributeReadOnly(attribute='simulator/ringsimulator/ringsimulator/Tune_v', unit='', range=None), rf_plant_name=None)"
- ]
- },
- "execution_count": 4,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tune_monitor = control_mode.get_betatron_tune_monitor(\"BETATRON_TUNE\")\n",
- "print(tune_monitor.tune.get())\n",
- "tune_monitor # string representation"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9ab82b92-d891-45e7-aaab-f6efc313bd1f",
- "metadata": {},
- "source": [
- "#### Accessing quadrupolar correctors available in the ring\n",
- "The configuration file already has a \"QCORR\" array of magnets defined. get_magnets() method will return a list of magnets. In this notebook we will control each of the correctors individually. "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "id": "49e98106-dcd3-41f3-861a-a5bdac997ec9",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "The ring has 208 quadrupolar correctors. The first one is named QCORR_001 (lattice name).\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "Quadrupole(peer='Simulator:design', name='QCORR_001', model_name='QCORR_001', magnet_model=IdentityMagnetModel(powerconverter=None, physics=Attribute(attribute='AN01-AR/EM-COR/CQLN.03/strength', unit='1/m', range=None), unit='1/m'))"
- ]
- },
- "execution_count": 5,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "qcorrectors = control_mode.get_magnets(\"QCORR\")\n",
- "first_qcorrector = qcorrectors[0]\n",
- "print(\n",
- " f\"The ring has {len(qcorrectors)} quadrupolar correctors. \"\n",
- " f\"The first one is named {first_qcorrector.get_name()} (lattice name).\"\n",
- ")\n",
- "qcorrectors[0] # String representation of the first corrector"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "id": "0b945d5d-09c9-48eb-a1e9-a8dbec2e76b8",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "We can access the strength of the corrector qcorrectors[0].strength.get()=0.00,we can set it to some value with qcorrectors[0].strength.set(0.2)\n",
- "Let's check that the readback is what we asked for qcorrectors[0].strength.get()=0.20, \n"
- ]
- }
- ],
- "source": [
- "print(\n",
- " f\"We can access the strength of the corrector {qcorrectors[0].strength.get()=:.2f},\"\n",
- " f\"we can set it to some value with qcorrectors[0].strength.set(0.2)\"\n",
- ")\n",
- "qcorrectors[0].strength.set(0.2)\n",
- "print(f\"Let's check that the readback is what we asked for {qcorrectors[0].strength.get()=:.2f}, \")\n",
- "qcorrectors[0].strength.set(0) # setting back to original value"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "fda45408-f7c2-4bc0-a985-55fab65b6307",
- "metadata": {},
- "source": [
- "### Standard tuning tool for tune correction\n",
- "The standard tuning tool for tune correction can be accessed by name \"DEFAULT_TUNE_CORRECTION\". At the same time, this default tune correction can be accessed as a property of a control mode."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "id": "78ea33ac-fc9d-4943-bdde-694e5f8ce3cf",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "(Tune(peer='Simulator:design', name='DEFAULT_TUNE_CORRECTION', description=None, lattice_names=None, quad_array_name='QCORR', betatron_tune_name='BETATRON_TUNE', response_matrix=ResponseMatrixData(matrix=[[0.1411063797665535, 0.12507210547463288, 0.1250701156868539, 0.12512631205885416, 0.12491874479825249, 0.12181775238373493, 0.1216597552561316, 0.1248778676887774, 0.12495669600987025, 0.12487669303812288, 0.12509619715300735, 0.2525199827177471, 0.2521390414436664, 0.1248823477056904, 0.12498317129350234, 0.12489821923894473, 0.1251142031252761, 0.23389597347489577, 0.5128470461415735, 0.511903112678791, 0.23349704327907395, 0.1248680305476757, 0.12499101129714862, 0.12490278089832829, 0.12510881390703776, 0.12183894919831628, 0.1218854100140665, 0.12512083453292133, 0.12495265783368792, 0.12504788875794537, 0.12486094618291421, 0.23342131651754583, 0.5117652399105888, 0.5128123399564255, 0.23386384770285318, 0.12513406826369922, 0.12494342843644146, 0.12504118694967037, 0.12486726021804229, 0.23408887976750226, 0.234507119532823, 0.12512350935939276, 0.12491633746891662, 0.12501470080000798, 0.12485507222659287, 0.12167920205002902, 0.1217610928924695, 0.12487625990320605, 0.12510261266029943, 0.12501658815194938, 0.1251110224814722, 0.08213933884976266, 0.08203932150424587, 0.12489100630314054, 0.12509872337113093, 0.12502346367598838, 0.12509639115615423, 0.12191233365155263, 0.12177001682767141, 0.12505957070363394, 0.12487068129701795, 0.12492449705331365, 0.12491270712483571, 0.23426044151647618, 0.23449907290973293, 0.1250583153286633, 0.1248752620217064, 0.1249207112252737, 0.12493427333698515, 0.2336710477435222, 0.5122722799744128, 0.5126555972850833, 0.233833047402765, 0.1250347756021064, 0.12486333681754891, 0.1248995259151009, 0.12493601500046525, 0.12167414847719105, 0.12187613648934059, 0.12498827321655304, 0.12511636867662546, 0.12511061499798082, 0.12500397593817603, 0.23350382304637707, 0.5120561909136012, 0.5121213940967317, 0.23353137955234304, 0.12502063526098617, 0.12511726110775445, 0.12512748876480906, 0.12499272198290834, 0.2521006633640632, 0.25216910396197445, 0.12503144502518104, 0.1250968515884021, 0.12512285968269143, 0.12496046938870187, 0.12185456314650622, 0.12166600242419223, 0.1249116843329845, 0.12492043319017876, 0.12486601336653136, 0.12506019725438966, 0.1412151860955002, 0.14097813871793985, 0.12493045084438492, 0.12509629717605275, 0.12504955709008447, 0.12505800613321627, 0.1218946380415753, 0.12174248233964846, 0.12501863995206808, 0.12488621282169543, 0.12491002639891668, 0.12495365179387985, 0.25230036451190374, 0.252416073985573, 0.12501811130327667, 0.12489594395981296, 0.1249117464269256, 0.12497498217883818, 0.2337265271709632, 0.5124102346373838, 0.51248960538125, 0.23376007120712305, 0.12499609483518359, 0.1248887612298466, 0.12489624194700344, 0.12497567976943458, 0.12170914928139043, 0.12188205295610155, 0.12502041421835752, 0.1250818594702996, 0.12510043142621718, 0.1249697302135866, 0.23347825388486676, 0.5119765111930019, 0.5122810755281426, 0.23360697045837764, 0.12504890942066638, 0.12507999326893948, 0.12511185020824822, 0.12496196305805674, 0.23411214133073344, 0.23426408647331254, 0.12505529326023446, 0.1250575621564165, 0.125102077674355, 0.12493380853295655, 0.12181485469942022, 0.12168377838794875, 0.12489989678260427, 0.12496136165301985, 0.12489709559942996, 0.1250748133338475, 0.08219211145910066, 0.08205615865009008, 0.12502051226437327, 0.12511679259502584, 0.12513347587644885, 0.12497391328886165, 0.12187468016761072, 0.1216569189096961, 0.12491757352295352, 0.12489970175860732, 0.12485020678881797, 0.12505264731205168, 0.23450530795887659, 0.23428117623874867, 0.12491514530532655, 0.1249236074907234, 0.12486426867047706, 0.12507709680170676, 0.23389569259596454, 0.5128079684196818, 0.5121027308643833, 0.23359764109276426, 0.12489327232995118, 0.12493005784153244, 0.12486204197137418, 0.12507889018353868, 0.12178208616625552, 0.12192193809740237, 0.12511507228751828, 0.12501217915128482, 0.12510126778331188, 0.12487194731014561, 0.2333696934589402, 0.5116877152394617, 0.5127034984311885, 0.23379898941355837, 0.12513689162968467, 0.1250003555450241, 0.1250982439429671, 0.12486973004405266, 0.25198228938733136, 0.25245474900625897, 0.12513485864174, 0.12496954157281692, 0.12507430472374903, 0.12484895789227624, 0.12171545678008044, 0.1217041255027751, 0.12484602633644482, 0.1250621400647467, 0.1249556695370746, 0.1251365864204934, 0.14122418700274197], [-1.1279536778346921, -0.33618462006335115, -0.3359756319742946, -0.33508589823816326, -0.3348002957842544, -0.33824673763172, -0.3383358029379613, -0.33526973703124074, -0.33559439825747717, -0.3362743868029483, -0.33632772147129675, -0.43304897380358476, -0.43375319330407613, -0.3363141046675011, -0.33614826879302395, -0.33543432591987, -0.33520309366819045, -0.39145487010061597, -0.19287077203167247, -0.19286654054317953, -0.3914480408112597, -0.3348562739624583, -0.334966161603667, -0.33548696782848, -0.33566658926620363, -0.33977278975527714, -0.3397501324786667, -0.3355471687233047, -0.335357611453424, -0.33489016178778197, -0.33481987054495566, -0.3915617333044574, -0.19293259492902948, -0.19281886295241524, -0.3913781740744193, -0.3352765896108556, -0.3355394077547702, -0.3362691950881125, -0.33641225716196654, -0.41961063361684037, -0.419122049767906, -0.3363239736270396, -0.3362274201623716, -0.3354674256922374, -0.3351415091928933, -0.3382812546981473, -0.3382360303327836, -0.3349031409621839, -0.33520922446406143, -0.3360757213882737, -0.33625131095726957, -0.6392297332707964, -0.6368404380835413, -0.3344738901844835, -0.33455697310058596, -0.3352586269511626, -0.3355655833475746, -0.34005561146854824, -0.3401196382585292, -0.33590305415387434, -0.3356241760910095, -0.33477174094853623, -0.33457676242298895, -0.41755771550466836, -0.4176682199374948, -0.3348673533770663, -0.3351473431389973, -0.33615753830540385, -0.33643938084582103, -0.39346278921659206, -0.19375565400492345, -0.1931413608907695, -0.39247134290765207, -0.3366587897951634, -0.33662281683832784, -0.3357761848593599, -0.33534152719283394, -0.33808637085630533, -0.3379283797566579, -0.3345087942502323, -0.3348741659570109, -0.3360928613571623, -0.33640494500608575, -0.3932641354442712, -0.19360196545747943, -0.19339368474091678, -0.3929279784908868, -0.33695187775684143, -0.33689028650862873, -0.3359905764077631, -0.33555178267141716, -0.43138392507136025, -0.43263501892709666, -0.33455062862508544, -0.3344442374947354, -0.33473878233492016, -0.3350089067982731, -0.33973926884478534, -0.3399809473070281, -0.3362827355851694, -0.3361185974048997, -0.3352549082585865, -0.3349389340573383, -1.1220558437913253, -1.1262732992617375, -0.33463831867919236, -0.33445470813853184, -0.33454926377907146, -0.334785436356122, -0.3395637568320842, -0.3398690405792548, -0.33639451270828236, -0.33629222002007353, -0.33547873212858015, -0.3351288186181911, -0.431236546413194, -0.43257454318434974, -0.33478394241837073, -0.33480717453626685, -0.33537824869367405, -0.33567262668898756, -0.39326224441027513, -0.19376381436508883, -0.19270607707566612, -0.3915550956418157, -0.33630581178889507, -0.33652516586601955, -0.33637815214315747, -0.33607707536020826, -0.33871961191478395, -0.33836120936492353, -0.3341880218743487, -0.3343319236387421, -0.3353229626629206, -0.3357299651718382, -0.39335354417746604, -0.19375095730633785, -0.19294268802427794, -0.3920490270520327, -0.3368352252752782, -0.33704048667648756, -0.3367200470549836, -0.33633656895737385, -0.4178117599917819, -0.4195043165505785, -0.3350695343240506, -0.3347357909017079, -0.33428370571464416, -0.3343661413085508, -0.33900617331106275, -0.33939438189745097, -0.33641229486014446, -0.3365001053751149, -0.33603797330972185, -0.3356901974810311, -0.6362937377207833, -0.6393055435849337, -0.3357905879786127, -0.3355075929262208, -0.33473297933406254, -0.3345783331376584, -0.33848968528482626, -0.3387083925610046, -0.33573108617346303, -0.335981645455119, -0.33624121110464866, -0.3361349406277858, -0.41837531153388063, -0.41955557030182167, -0.3358486495552704, -0.33566588816369425, -0.3352006986973022, -0.3351247394550727, -0.3919205090274769, -0.1931307258279391, -0.19269874673322196, -0.3912233112751684, -0.3351761780900908, -0.3353888002260996, -0.33591164626312064, -0.3359896665655615, -0.3396447013748194, -0.3394692640024122, -0.3350649786609816, -0.3349100218308365, -0.3348003244946218, -0.3348943024750195, -0.3921036476794981, -0.19321021355878099, -0.1927287862191207, -0.39132664212737645, -0.33569382855147545, -0.33601436059682577, -0.3366022352796483, -0.3366086571615634, -0.4332964585818111, -0.4335854439385667, -0.33610592116872784, -0.3358775428613514, -0.33499848196172355, -0.3347382030982615, -0.3382860208900329, -0.33840677659269236, -0.33537467671151955, -0.33568791232452266, -0.33628259798357263, -0.3362999395428723, -1.1263358131596846]], variable_names=['QCORR_001', 'QCORR_002', 'QCORR_003', 'QCORR_004', 'QCORR_005', 'QCORR_006', 'QCORR_007', 'QCORR_008', 'QCORR_009', 'QCORR_010', 'QCORR_011', 'QCORR_012', 'QCORR_013', 'QCORR_014', 'QCORR_015', 'QCORR_016', 'QCORR_017', 'QCORR_018', 'QCORR_019', 'QCORR_020', 'QCORR_021', 'QCORR_022', 'QCORR_023', 'QCORR_024', 'QCORR_025', 'QCORR_026', 'QCORR_027', 'QCORR_028', 'QCORR_029', 'QCORR_030', 'QCORR_031', 'QCORR_032', 'QCORR_033', 'QCORR_034', 'QCORR_035', 'QCORR_036', 'QCORR_037', 'QCORR_038', 'QCORR_039', 'QCORR_040', 'QCORR_041', 'QCORR_042', 'QCORR_043', 'QCORR_044', 'QCORR_045', 'QCORR_046', 'QCORR_047', 'QCORR_048', 'QCORR_049', 'QCORR_050', 'QCORR_051', 'QCORR_052', 'QCORR_053', 'QCORR_054', 'QCORR_055', 'QCORR_056', 'QCORR_057', 'QCORR_058', 'QCORR_059', 'QCORR_060', 'QCORR_061', 'QCORR_062', 'QCORR_063', 'QCORR_064', 'QCORR_065', 'QCORR_066', 'QCORR_067', 'QCORR_068', 'QCORR_069', 'QCORR_070', 'QCORR_071', 'QCORR_072', 'QCORR_073', 'QCORR_074', 'QCORR_075', 'QCORR_076', 'QCORR_077', 'QCORR_078', 'QCORR_079', 'QCORR_080', 'QCORR_081', 'QCORR_082', 'QCORR_083', 'QCORR_084', 'QCORR_085', 'QCORR_086', 'QCORR_087', 'QCORR_088', 'QCORR_089', 'QCORR_090', 'QCORR_091', 'QCORR_092', 'QCORR_093', 'QCORR_094', 'QCORR_095', 'QCORR_096', 'QCORR_097', 'QCORR_098', 'QCORR_099', 'QCORR_100', 'QCORR_101', 'QCORR_102', 'QCORR_103', 'QCORR_104', 'QCORR_105', 'QCORR_106', 'QCORR_107', 'QCORR_108', 'QCORR_109', 'QCORR_110', 'QCORR_111', 'QCORR_112', 'QCORR_113', 'QCORR_114', 'QCORR_115', 'QCORR_116', 'QCORR_117', 'QCORR_118', 'QCORR_119', 'QCORR_120', 'QCORR_121', 'QCORR_122', 'QCORR_123', 'QCORR_124', 'QCORR_125', 'QCORR_126', 'QCORR_127', 'QCORR_128', 'QCORR_129', 'QCORR_130', 'QCORR_131', 'QCORR_132', 'QCORR_133', 'QCORR_134', 'QCORR_135', 'QCORR_136', 'QCORR_137', 'QCORR_138', 'QCORR_139', 'QCORR_140', 'QCORR_141', 'QCORR_142', 'QCORR_143', 'QCORR_144', 'QCORR_145', 'QCORR_146', 'QCORR_147', 'QCORR_148', 'QCORR_149', 'QCORR_150', 'QCORR_151', 'QCORR_152', 'QCORR_153', 'QCORR_154', 'QCORR_155', 'QCORR_156', 'QCORR_157', 'QCORR_158', 'QCORR_159', 'QCORR_160', 'QCORR_161', 'QCORR_162', 'QCORR_163', 'QCORR_164', 'QCORR_165', 'QCORR_166', 'QCORR_167', 'QCORR_168', 'QCORR_169', 'QCORR_170', 'QCORR_171', 'QCORR_172', 'QCORR_173', 'QCORR_174', 'QCORR_175', 'QCORR_176', 'QCORR_177', 'QCORR_178', 'QCORR_179', 'QCORR_180', 'QCORR_181', 'QCORR_182', 'QCORR_183', 'QCORR_184', 'QCORR_185', 'QCORR_186', 'QCORR_187', 'QCORR_188', 'QCORR_189', 'QCORR_190', 'QCORR_191', 'QCORR_192', 'QCORR_193', 'QCORR_194', 'QCORR_195', 'QCORR_196', 'QCORR_197', 'QCORR_198', 'QCORR_199', 'QCORR_200', 'QCORR_201', 'QCORR_202', 'QCORR_203', 'QCORR_204', 'QCORR_205', 'QCORR_206', 'QCORR_207', 'QCORR_208'], observable_names=['BETATRON_TUNE.x', 'BETATRON_TUNE.y'])),\n",
- " Tune(peer='Simulator:design', name='DEFAULT_TUNE_CORRECTION', description=None, lattice_names=None, quad_array_name='QCORR', betatron_tune_name='BETATRON_TUNE', response_matrix=ResponseMatrixData(matrix=[[0.1411063797665535, 0.12507210547463288, 0.1250701156868539, 0.12512631205885416, 0.12491874479825249, 0.12181775238373493, 0.1216597552561316, 0.1248778676887774, 0.12495669600987025, 0.12487669303812288, 0.12509619715300735, 0.2525199827177471, 0.2521390414436664, 0.1248823477056904, 0.12498317129350234, 0.12489821923894473, 0.1251142031252761, 0.23389597347489577, 0.5128470461415735, 0.511903112678791, 0.23349704327907395, 0.1248680305476757, 0.12499101129714862, 0.12490278089832829, 0.12510881390703776, 0.12183894919831628, 0.1218854100140665, 0.12512083453292133, 0.12495265783368792, 0.12504788875794537, 0.12486094618291421, 0.23342131651754583, 0.5117652399105888, 0.5128123399564255, 0.23386384770285318, 0.12513406826369922, 0.12494342843644146, 0.12504118694967037, 0.12486726021804229, 0.23408887976750226, 0.234507119532823, 0.12512350935939276, 0.12491633746891662, 0.12501470080000798, 0.12485507222659287, 0.12167920205002902, 0.1217610928924695, 0.12487625990320605, 0.12510261266029943, 0.12501658815194938, 0.1251110224814722, 0.08213933884976266, 0.08203932150424587, 0.12489100630314054, 0.12509872337113093, 0.12502346367598838, 0.12509639115615423, 0.12191233365155263, 0.12177001682767141, 0.12505957070363394, 0.12487068129701795, 0.12492449705331365, 0.12491270712483571, 0.23426044151647618, 0.23449907290973293, 0.1250583153286633, 0.1248752620217064, 0.1249207112252737, 0.12493427333698515, 0.2336710477435222, 0.5122722799744128, 0.5126555972850833, 0.233833047402765, 0.1250347756021064, 0.12486333681754891, 0.1248995259151009, 0.12493601500046525, 0.12167414847719105, 0.12187613648934059, 0.12498827321655304, 0.12511636867662546, 0.12511061499798082, 0.12500397593817603, 0.23350382304637707, 0.5120561909136012, 0.5121213940967317, 0.23353137955234304, 0.12502063526098617, 0.12511726110775445, 0.12512748876480906, 0.12499272198290834, 0.2521006633640632, 0.25216910396197445, 0.12503144502518104, 0.1250968515884021, 0.12512285968269143, 0.12496046938870187, 0.12185456314650622, 0.12166600242419223, 0.1249116843329845, 0.12492043319017876, 0.12486601336653136, 0.12506019725438966, 0.1412151860955002, 0.14097813871793985, 0.12493045084438492, 0.12509629717605275, 0.12504955709008447, 0.12505800613321627, 0.1218946380415753, 0.12174248233964846, 0.12501863995206808, 0.12488621282169543, 0.12491002639891668, 0.12495365179387985, 0.25230036451190374, 0.252416073985573, 0.12501811130327667, 0.12489594395981296, 0.1249117464269256, 0.12497498217883818, 0.2337265271709632, 0.5124102346373838, 0.51248960538125, 0.23376007120712305, 0.12499609483518359, 0.1248887612298466, 0.12489624194700344, 0.12497567976943458, 0.12170914928139043, 0.12188205295610155, 0.12502041421835752, 0.1250818594702996, 0.12510043142621718, 0.1249697302135866, 0.23347825388486676, 0.5119765111930019, 0.5122810755281426, 0.23360697045837764, 0.12504890942066638, 0.12507999326893948, 0.12511185020824822, 0.12496196305805674, 0.23411214133073344, 0.23426408647331254, 0.12505529326023446, 0.1250575621564165, 0.125102077674355, 0.12493380853295655, 0.12181485469942022, 0.12168377838794875, 0.12489989678260427, 0.12496136165301985, 0.12489709559942996, 0.1250748133338475, 0.08219211145910066, 0.08205615865009008, 0.12502051226437327, 0.12511679259502584, 0.12513347587644885, 0.12497391328886165, 0.12187468016761072, 0.1216569189096961, 0.12491757352295352, 0.12489970175860732, 0.12485020678881797, 0.12505264731205168, 0.23450530795887659, 0.23428117623874867, 0.12491514530532655, 0.1249236074907234, 0.12486426867047706, 0.12507709680170676, 0.23389569259596454, 0.5128079684196818, 0.5121027308643833, 0.23359764109276426, 0.12489327232995118, 0.12493005784153244, 0.12486204197137418, 0.12507889018353868, 0.12178208616625552, 0.12192193809740237, 0.12511507228751828, 0.12501217915128482, 0.12510126778331188, 0.12487194731014561, 0.2333696934589402, 0.5116877152394617, 0.5127034984311885, 0.23379898941355837, 0.12513689162968467, 0.1250003555450241, 0.1250982439429671, 0.12486973004405266, 0.25198228938733136, 0.25245474900625897, 0.12513485864174, 0.12496954157281692, 0.12507430472374903, 0.12484895789227624, 0.12171545678008044, 0.1217041255027751, 0.12484602633644482, 0.1250621400647467, 0.1249556695370746, 0.1251365864204934, 0.14122418700274197], [-1.1279536778346921, -0.33618462006335115, -0.3359756319742946, -0.33508589823816326, -0.3348002957842544, -0.33824673763172, -0.3383358029379613, -0.33526973703124074, -0.33559439825747717, -0.3362743868029483, -0.33632772147129675, -0.43304897380358476, -0.43375319330407613, -0.3363141046675011, -0.33614826879302395, -0.33543432591987, -0.33520309366819045, -0.39145487010061597, -0.19287077203167247, -0.19286654054317953, -0.3914480408112597, -0.3348562739624583, -0.334966161603667, -0.33548696782848, -0.33566658926620363, -0.33977278975527714, -0.3397501324786667, -0.3355471687233047, -0.335357611453424, -0.33489016178778197, -0.33481987054495566, -0.3915617333044574, -0.19293259492902948, -0.19281886295241524, -0.3913781740744193, -0.3352765896108556, -0.3355394077547702, -0.3362691950881125, -0.33641225716196654, -0.41961063361684037, -0.419122049767906, -0.3363239736270396, -0.3362274201623716, -0.3354674256922374, -0.3351415091928933, -0.3382812546981473, -0.3382360303327836, -0.3349031409621839, -0.33520922446406143, -0.3360757213882737, -0.33625131095726957, -0.6392297332707964, -0.6368404380835413, -0.3344738901844835, -0.33455697310058596, -0.3352586269511626, -0.3355655833475746, -0.34005561146854824, -0.3401196382585292, -0.33590305415387434, -0.3356241760910095, -0.33477174094853623, -0.33457676242298895, -0.41755771550466836, -0.4176682199374948, -0.3348673533770663, -0.3351473431389973, -0.33615753830540385, -0.33643938084582103, -0.39346278921659206, -0.19375565400492345, -0.1931413608907695, -0.39247134290765207, -0.3366587897951634, -0.33662281683832784, -0.3357761848593599, -0.33534152719283394, -0.33808637085630533, -0.3379283797566579, -0.3345087942502323, -0.3348741659570109, -0.3360928613571623, -0.33640494500608575, -0.3932641354442712, -0.19360196545747943, -0.19339368474091678, -0.3929279784908868, -0.33695187775684143, -0.33689028650862873, -0.3359905764077631, -0.33555178267141716, -0.43138392507136025, -0.43263501892709666, -0.33455062862508544, -0.3344442374947354, -0.33473878233492016, -0.3350089067982731, -0.33973926884478534, -0.3399809473070281, -0.3362827355851694, -0.3361185974048997, -0.3352549082585865, -0.3349389340573383, -1.1220558437913253, -1.1262732992617375, -0.33463831867919236, -0.33445470813853184, -0.33454926377907146, -0.334785436356122, -0.3395637568320842, -0.3398690405792548, -0.33639451270828236, -0.33629222002007353, -0.33547873212858015, -0.3351288186181911, -0.431236546413194, -0.43257454318434974, -0.33478394241837073, -0.33480717453626685, -0.33537824869367405, -0.33567262668898756, -0.39326224441027513, -0.19376381436508883, -0.19270607707566612, -0.3915550956418157, -0.33630581178889507, -0.33652516586601955, -0.33637815214315747, -0.33607707536020826, -0.33871961191478395, -0.33836120936492353, -0.3341880218743487, -0.3343319236387421, -0.3353229626629206, -0.3357299651718382, -0.39335354417746604, -0.19375095730633785, -0.19294268802427794, -0.3920490270520327, -0.3368352252752782, -0.33704048667648756, -0.3367200470549836, -0.33633656895737385, -0.4178117599917819, -0.4195043165505785, -0.3350695343240506, -0.3347357909017079, -0.33428370571464416, -0.3343661413085508, -0.33900617331106275, -0.33939438189745097, -0.33641229486014446, -0.3365001053751149, -0.33603797330972185, -0.3356901974810311, -0.6362937377207833, -0.6393055435849337, -0.3357905879786127, -0.3355075929262208, -0.33473297933406254, -0.3345783331376584, -0.33848968528482626, -0.3387083925610046, -0.33573108617346303, -0.335981645455119, -0.33624121110464866, -0.3361349406277858, -0.41837531153388063, -0.41955557030182167, -0.3358486495552704, -0.33566588816369425, -0.3352006986973022, -0.3351247394550727, -0.3919205090274769, -0.1931307258279391, -0.19269874673322196, -0.3912233112751684, -0.3351761780900908, -0.3353888002260996, -0.33591164626312064, -0.3359896665655615, -0.3396447013748194, -0.3394692640024122, -0.3350649786609816, -0.3349100218308365, -0.3348003244946218, -0.3348943024750195, -0.3921036476794981, -0.19321021355878099, -0.1927287862191207, -0.39132664212737645, -0.33569382855147545, -0.33601436059682577, -0.3366022352796483, -0.3366086571615634, -0.4332964585818111, -0.4335854439385667, -0.33610592116872784, -0.3358775428613514, -0.33499848196172355, -0.3347382030982615, -0.3382860208900329, -0.33840677659269236, -0.33537467671151955, -0.33568791232452266, -0.33628259798357263, -0.3362999395428723, -1.1263358131596846]], variable_names=['QCORR_001', 'QCORR_002', 'QCORR_003', 'QCORR_004', 'QCORR_005', 'QCORR_006', 'QCORR_007', 'QCORR_008', 'QCORR_009', 'QCORR_010', 'QCORR_011', 'QCORR_012', 'QCORR_013', 'QCORR_014', 'QCORR_015', 'QCORR_016', 'QCORR_017', 'QCORR_018', 'QCORR_019', 'QCORR_020', 'QCORR_021', 'QCORR_022', 'QCORR_023', 'QCORR_024', 'QCORR_025', 'QCORR_026', 'QCORR_027', 'QCORR_028', 'QCORR_029', 'QCORR_030', 'QCORR_031', 'QCORR_032', 'QCORR_033', 'QCORR_034', 'QCORR_035', 'QCORR_036', 'QCORR_037', 'QCORR_038', 'QCORR_039', 'QCORR_040', 'QCORR_041', 'QCORR_042', 'QCORR_043', 'QCORR_044', 'QCORR_045', 'QCORR_046', 'QCORR_047', 'QCORR_048', 'QCORR_049', 'QCORR_050', 'QCORR_051', 'QCORR_052', 'QCORR_053', 'QCORR_054', 'QCORR_055', 'QCORR_056', 'QCORR_057', 'QCORR_058', 'QCORR_059', 'QCORR_060', 'QCORR_061', 'QCORR_062', 'QCORR_063', 'QCORR_064', 'QCORR_065', 'QCORR_066', 'QCORR_067', 'QCORR_068', 'QCORR_069', 'QCORR_070', 'QCORR_071', 'QCORR_072', 'QCORR_073', 'QCORR_074', 'QCORR_075', 'QCORR_076', 'QCORR_077', 'QCORR_078', 'QCORR_079', 'QCORR_080', 'QCORR_081', 'QCORR_082', 'QCORR_083', 'QCORR_084', 'QCORR_085', 'QCORR_086', 'QCORR_087', 'QCORR_088', 'QCORR_089', 'QCORR_090', 'QCORR_091', 'QCORR_092', 'QCORR_093', 'QCORR_094', 'QCORR_095', 'QCORR_096', 'QCORR_097', 'QCORR_098', 'QCORR_099', 'QCORR_100', 'QCORR_101', 'QCORR_102', 'QCORR_103', 'QCORR_104', 'QCORR_105', 'QCORR_106', 'QCORR_107', 'QCORR_108', 'QCORR_109', 'QCORR_110', 'QCORR_111', 'QCORR_112', 'QCORR_113', 'QCORR_114', 'QCORR_115', 'QCORR_116', 'QCORR_117', 'QCORR_118', 'QCORR_119', 'QCORR_120', 'QCORR_121', 'QCORR_122', 'QCORR_123', 'QCORR_124', 'QCORR_125', 'QCORR_126', 'QCORR_127', 'QCORR_128', 'QCORR_129', 'QCORR_130', 'QCORR_131', 'QCORR_132', 'QCORR_133', 'QCORR_134', 'QCORR_135', 'QCORR_136', 'QCORR_137', 'QCORR_138', 'QCORR_139', 'QCORR_140', 'QCORR_141', 'QCORR_142', 'QCORR_143', 'QCORR_144', 'QCORR_145', 'QCORR_146', 'QCORR_147', 'QCORR_148', 'QCORR_149', 'QCORR_150', 'QCORR_151', 'QCORR_152', 'QCORR_153', 'QCORR_154', 'QCORR_155', 'QCORR_156', 'QCORR_157', 'QCORR_158', 'QCORR_159', 'QCORR_160', 'QCORR_161', 'QCORR_162', 'QCORR_163', 'QCORR_164', 'QCORR_165', 'QCORR_166', 'QCORR_167', 'QCORR_168', 'QCORR_169', 'QCORR_170', 'QCORR_171', 'QCORR_172', 'QCORR_173', 'QCORR_174', 'QCORR_175', 'QCORR_176', 'QCORR_177', 'QCORR_178', 'QCORR_179', 'QCORR_180', 'QCORR_181', 'QCORR_182', 'QCORR_183', 'QCORR_184', 'QCORR_185', 'QCORR_186', 'QCORR_187', 'QCORR_188', 'QCORR_189', 'QCORR_190', 'QCORR_191', 'QCORR_192', 'QCORR_193', 'QCORR_194', 'QCORR_195', 'QCORR_196', 'QCORR_197', 'QCORR_198', 'QCORR_199', 'QCORR_200', 'QCORR_201', 'QCORR_202', 'QCORR_203', 'QCORR_204', 'QCORR_205', 'QCORR_206', 'QCORR_207', 'QCORR_208'], observable_names=['BETATRON_TUNE.x', 'BETATRON_TUNE.y'])))"
- ]
- },
- "execution_count": 7,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tune_correction = control_mode.get_tune_tuning(\"DEFAULT_TUNE_CORRECTION\")\n",
- "tune_response_matrix = control_mode.get_trm_tuning(\"DEFAULT_TUNE_RESPONSE_MATRIX\")\n",
- "control_mode.tune, tune_correction # string representation"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d5abc174-b21c-4407-89a5-a2ef3f3f5121",
- "metadata": {},
- "source": [
- "Let's try to set the tune using the tune correction tool. This will not be possible because no response matrix is defined at the moment. The response matrix can either be loaded from a file or measured. You can also measure the response matrix in **design** mode and try to use in in **live** mode."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "id": "e848371d-90d5-4bbe-a034-66eb21d39d0c",
- "metadata": {},
- "outputs": [],
- "source": [
- "from pyaml import PyAMLException\n",
- "\n",
- "try:\n",
- " tune_correction.set([0.21, 0.31])\n",
- "except PyAMLException as e:\n",
- " print(f\"We've got an exception (this is intended) throwing the following error: {e}\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8c2eef19-8fdb-4297-99aa-3be44f78085b",
- "metadata": {},
- "source": [
- "It is not possible to do so without measuring the response matrix (or loading it from a file). In the properties of the tune_correction, we can find a TuneResponse object with a measure() method. However, before doing that, we can define a callback that will print progress during the measurement. The measurement will take a while because of the 1.5-second wait time necessary to get a response from the virtual accelerator. You can try to change this and see what the minimal response time is for your hardware."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 9,
- "id": "72bcf013-c4a6-4695-9029-b899a53753bd",
- "metadata": {},
- "outputs": [],
- "source": [
- "def tune_callback(action: int, cb_data: dict):\n",
- " if action == Action.MEASURE:\n",
- " # On action measure, the measured dq / dk is passed as argument\n",
- " print(f\"Tune response: #{cb_data['step']} {cb_data['magnet']} {cb_data['tune']}\")\n",
- " return True"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "id": "d4712e98-a75a-41ae-8d11-18c3bee23a2a",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Tune response: #0 QCORR_001 [0.20999869 0.31007803]\n",
- "Tune response: #0 QCORR_002 [0.21000032 0.3099983 ]\n",
- "Tune response: #0 QCORR_003 [0.21000032 0.30999821]\n",
- "Tune response: #0 QCORR_004 [0.21000033 0.30999836]\n",
- "Tune response: #0 QCORR_005 [0.21000028 0.30999852]\n",
- "Tune response: #0 QCORR_006 [0.21000063 0.30999949]\n",
- "Tune response: #0 QCORR_007 [0.21000059 0.30999965]\n",
- "Tune response: #0 QCORR_008 [0.21000027 0.30999937]\n",
- "Tune response: #0 QCORR_009 [0.21000029 0.30999928]\n",
- "Tune response: #0 QCORR_010 [0.21000027 0.30999875]\n",
- "Tune response: #0 QCORR_011 [0.21000032 0.30999855]\n",
- "Tune response: #0 QCORR_012 [0.20998764 0.31000773]\n",
- "Tune response: #0 QCORR_013 [0.20998752 0.31000836]\n",
- "Tune response: #0 QCORR_014 [0.21000026 0.30999826]\n",
- "Tune response: #0 QCORR_015 [0.2100003 0.30999826]\n",
- "Tune response: #0 QCORR_016 [0.21000027 0.30999861]\n",
- "Tune response: #0 QCORR_017 [0.21000034 0.30999879]\n",
- "Tune response: #0 QCORR_018 [0.20998951 0.31000508]\n",
- "Tune response: #0 QCORR_019 [0.20996175 0.30998492]\n",
- "Tune response: #0 QCORR_020 [0.20996109 0.30998432]\n",
- "Tune response: #0 QCORR_021 [0.20998923 0.31000411]\n",
- "Tune response: #0 QCORR_022 [0.21000016 0.30999932]\n",
- "Tune response: #0 QCORR_023 [0.21000034 0.30999948]\n",
- "Tune response: #0 QCORR_024 [0.21000025 0.30999947]\n",
- "Tune response: #0 QCORR_025 [0.21000043 0.30999931]\n",
- "Tune response: #0 QCORR_026 [0.21000071 0.30999897]\n",
- "Tune response: #0 QCORR_027 [0.21000068 0.30999873]\n",
- "Tune response: #0 QCORR_028 [0.21000043 0.30999804]\n",
- "Tune response: #0 QCORR_029 [0.21000021 0.3099981 ]\n",
- "Tune response: #0 QCORR_030 [0.21000031 0.30999867]\n",
- "Tune response: #0 QCORR_031 [0.21000017 0.30999893]\n",
- "Tune response: #0 QCORR_032 [0.20998928 0.31000532]\n",
- "Tune response: #0 QCORR_033 [0.20996117 0.30998503]\n",
- "Tune response: #0 QCORR_034 [0.20996177 0.30998437]\n",
- "Tune response: #0 QCORR_035 [0.20998953 0.31000427]\n",
- "Tune response: #0 QCORR_036 [0.21000032 0.30999958]\n",
- "Tune response: #0 QCORR_037 [0.21000024 0.30999972]\n",
- "Tune response: #0 QCORR_038 [0.21000026 0.30999956]\n",
- "Tune response: #0 QCORR_039 [0.21000027 0.30999931]\n",
- "Tune response: #0 QCORR_040 [0.20998938 0.3100065 ]\n",
- "Tune response: #0 QCORR_041 [0.20998945 0.31000791]\n",
- "Tune response: #0 QCORR_042 [0.21000031 0.30999852]\n",
- "Tune response: #0 QCORR_043 [0.21000025 0.30999826]\n",
- "Tune response: #0 QCORR_044 [0.21000025 0.30999793]\n",
- "Tune response: #0 QCORR_045 [0.21000029 0.30999801]\n",
- "Tune response: #0 QCORR_046 [0.21000057 0.30999907]\n",
- "Tune response: #0 QCORR_047 [0.21000066 0.30999938]\n",
- "Tune response: #0 QCORR_048 [0.21000031 0.30999963]\n",
- "Tune response: #0 QCORR_049 [0.21000035 0.30999969]\n",
- "Tune response: #0 QCORR_050 [0.21000035 0.30999929]\n",
- "Tune response: #0 QCORR_051 [0.2100003 0.30999901]\n",
- "Tune response: #0 QCORR_052 [0.21000456 0.31002779]\n",
- "Tune response: #0 QCORR_053 [0.21000457 0.31002753]\n",
- "Tune response: #0 QCORR_054 [0.21000032 0.30999882]\n",
- "Tune response: #0 QCORR_055 [0.21000034 0.30999912]\n",
- "Tune response: #0 QCORR_056 [0.21000036 0.30999969]\n",
- "Tune response: #0 QCORR_057 [0.21000029 0.30999971]\n",
- "Tune response: #0 QCORR_058 [0.21000065 0.30999958]\n",
- "Tune response: #0 QCORR_059 [0.21000057 0.30999927]\n",
- "Tune response: #0 QCORR_060 [0.21000027 0.30999809]\n",
- "Tune response: #0 QCORR_061 [0.21000027 0.30999794]\n",
- "Tune response: #0 QCORR_062 [0.21000024 0.3099981 ]\n",
- "Tune response: #0 QCORR_063 [0.21000033 0.30999833]\n",
- "Tune response: #0 QCORR_064 [0.20998947 0.31000775]\n",
- "Tune response: #0 QCORR_065 [0.20998934 0.31000629]\n",
- "Tune response: #0 QCORR_066 [0.21000025 0.30999915]\n",
- "Tune response: #0 QCORR_067 [0.21000028 0.30999944]\n",
- "Tune response: #0 QCORR_068 [0.21000024 0.3099998 ]\n",
- "Tune response: #0 QCORR_069 [0.21000034 0.30999971]\n",
- "Tune response: #0 QCORR_070 [0.20998955 0.31000449]\n",
- "Tune response: #0 QCORR_071 [0.20996182 0.30998447]\n",
- "Tune response: #0 QCORR_072 [0.20996109 0.30998505]\n",
- "Tune response: #0 QCORR_073 [0.20998924 0.31000543]\n",
- "Tune response: #0 QCORR_074 [0.21000015 0.30999913]\n",
- "Tune response: #0 QCORR_075 [0.21000033 0.30999886]\n",
- "Tune response: #0 QCORR_076 [0.21000022 0.30999813]\n",
- "Tune response: #0 QCORR_077 [0.21000044 0.30999801]\n",
- "Tune response: #0 QCORR_078 [0.2100007 0.30999855]\n",
- "Tune response: #0 QCORR_079 [0.21000071 0.30999877]\n",
- "Tune response: #0 QCORR_080 [0.21000045 0.30999919]\n",
- "Tune response: #0 QCORR_081 [0.21000022 0.30999941]\n",
- "Tune response: #0 QCORR_082 [0.21000033 0.30999961]\n",
- "Tune response: #0 QCORR_083 [0.21000015 0.30999949]\n",
- "Tune response: #0 QCORR_084 [0.20998923 0.3100043 ]\n",
- "Tune response: #0 QCORR_085 [0.20996107 0.3099844 ]\n",
- "Tune response: #0 QCORR_086 [0.20996182 0.30998499]\n",
- "Tune response: #0 QCORR_087 [0.20998955 0.31000525]\n",
- "Tune response: #0 QCORR_088 [0.21000035 0.30999898]\n",
- "Tune response: #0 QCORR_089 [0.21000025 0.30999876]\n",
- "Tune response: #0 QCORR_090 [0.21000029 0.30999824]\n",
- "Tune response: #0 QCORR_091 [0.21000025 0.30999817]\n",
- "Tune response: #0 QCORR_092 [0.20998752 0.31000811]\n",
- "Tune response: #0 QCORR_093 [0.20998767 0.31000768]\n",
- "Tune response: #0 QCORR_094 [0.21000033 0.30999836]\n",
- "Tune response: #0 QCORR_095 [0.21000025 0.30999856]\n",
- "Tune response: #0 QCORR_096 [0.21000028 0.3099992 ]\n",
- "Tune response: #0 QCORR_097 [0.21000026 0.30999936]\n",
- "Tune response: #0 QCORR_098 [0.21000057 0.30999981]\n",
- "Tune response: #0 QCORR_099 [0.21000064 0.30999968]\n",
- "Tune response: #0 QCORR_100 [0.21000028 0.30999867]\n",
- "Tune response: #0 QCORR_101 [0.21000035 0.30999846]\n",
- "Tune response: #0 QCORR_102 [0.21000034 0.30999812]\n",
- "Tune response: #0 QCORR_103 [0.21000032 0.30999815]\n",
- "Tune response: #0 QCORR_104 [0.20999868 0.31007742]\n",
- "Tune response: #0 QCORR_105 [0.20999871 0.31007788]\n",
- "Tune response: #0 QCORR_106 [0.21000033 0.30999812]\n",
- "Tune response: #0 QCORR_107 [0.21000032 0.30999803]\n",
- "Tune response: #0 QCORR_108 [0.21000034 0.30999829]\n",
- "Tune response: #0 QCORR_109 [0.21000027 0.30999851]\n",
- "Tune response: #0 QCORR_110 [0.21000062 0.30999964]\n",
- "Tune response: #0 QCORR_111 [0.21000058 0.30999983]\n",
- "Tune response: #0 QCORR_112 [0.21000026 0.30999952]\n",
- "Tune response: #0 QCORR_113 [0.2100003 0.30999938]\n",
- "Tune response: #0 QCORR_114 [0.21000027 0.30999867]\n",
- "Tune response: #0 QCORR_115 [0.21000034 0.30999842]\n",
- "Tune response: #0 QCORR_116 [0.20998766 0.31000752]\n",
- "Tune response: #0 QCORR_117 [0.20998749 0.31000823]\n",
- "Tune response: #0 QCORR_118 [0.21000025 0.30999808]\n",
- "Tune response: #0 QCORR_119 [0.21000031 0.3099981 ]\n",
- "Tune response: #0 QCORR_120 [0.21000027 0.3099986 ]\n",
- "Tune response: #0 QCORR_121 [0.21000035 0.30999885]\n",
- "Tune response: #0 QCORR_122 [0.20998953 0.3100053 ]\n",
- "Tune response: #0 QCORR_123 [0.20996179 0.30998503]\n",
- "Tune response: #0 QCORR_124 [0.20996102 0.3099843 ]\n",
- "Tune response: #0 QCORR_125 [0.2099892 0.31000412]\n",
- "Tune response: #0 QCORR_126 [0.21000015 0.30999949]\n",
- "Tune response: #0 QCORR_127 [0.21000036 0.30999967]\n",
- "Tune response: #0 QCORR_128 [0.21000025 0.30999959]\n",
- "Tune response: #0 QCORR_129 [0.21000045 0.30999937]\n",
- "Tune response: #0 QCORR_130 [0.21000072 0.30999885]\n",
- "Tune response: #0 QCORR_131 [0.21000068 0.30999857]\n",
- "Tune response: #0 QCORR_132 [0.21000044 0.30999788]\n",
- "Tune response: #0 QCORR_133 [0.2100002 0.30999797]\n",
- "Tune response: #0 QCORR_134 [0.2100003 0.30999872]\n",
- "Tune response: #0 QCORR_135 [0.21000016 0.30999904]\n",
- "Tune response: #0 QCORR_136 [0.20998927 0.31000555]\n",
- "Tune response: #0 QCORR_137 [0.20996115 0.30998513]\n",
- "Tune response: #0 QCORR_138 [0.20996183 0.30998439]\n",
- "Tune response: #0 QCORR_139 [0.20998956 0.31000435]\n",
- "Tune response: #0 QCORR_140 [0.21000033 0.30999977]\n",
- "Tune response: #0 QCORR_141 [0.21000023 0.30999991]\n",
- "Tune response: #0 QCORR_142 [0.21000026 0.30999962]\n",
- "Tune response: #0 QCORR_143 [0.21000026 0.30999931]\n",
- "Tune response: #0 QCORR_144 [0.20998938 0.31000629]\n",
- "Tune response: #0 QCORR_145 [0.20998947 0.31000796]\n",
- "Tune response: #0 QCORR_146 [0.21000032 0.30999838]\n",
- "Tune response: #0 QCORR_147 [0.21000023 0.30999808]\n",
- "Tune response: #0 QCORR_148 [0.21000025 0.30999779]\n",
- "Tune response: #0 QCORR_149 [0.21000028 0.30999792]\n",
- "Tune response: #0 QCORR_150 [0.21000056 0.30999916]\n",
- "Tune response: #0 QCORR_151 [0.21000067 0.30999952]\n",
- "Tune response: #0 QCORR_152 [0.2100003 0.30999982]\n",
- "Tune response: #0 QCORR_153 [0.21000036 0.30999985]\n",
- "Tune response: #0 QCORR_154 [0.21000036 0.30999929]\n",
- "Tune response: #0 QCORR_155 [0.2100003 0.30999895]\n",
- "Tune response: #0 QCORR_156 [0.21000455 0.31002745]\n",
- "Tune response: #0 QCORR_157 [0.21000456 0.3100278 ]\n",
- "Tune response: #0 QCORR_158 [0.2100003 0.30999899]\n",
- "Tune response: #0 QCORR_159 [0.21000034 0.30999926]\n",
- "Tune response: #0 QCORR_160 [0.21000034 0.30999966]\n",
- "Tune response: #0 QCORR_161 [0.2100003 0.30999961]\n",
- "Tune response: #0 QCORR_162 [0.21000065 0.30999939]\n",
- "Tune response: #0 QCORR_163 [0.21000058 0.30999909]\n",
- "Tune response: #0 QCORR_164 [0.21000028 0.30999804]\n",
- "Tune response: #0 QCORR_165 [0.21000026 0.30999795]\n",
- "Tune response: #0 QCORR_166 [0.21000025 0.30999826]\n",
- "Tune response: #0 QCORR_167 [0.21000031 0.30999852]\n",
- "Tune response: #0 QCORR_168 [0.20998945 0.31000787]\n",
- "Tune response: #0 QCORR_169 [0.20998936 0.3100065 ]\n",
- "Tune response: #0 QCORR_170 [0.21000027 0.30999929]\n",
- "Tune response: #0 QCORR_171 [0.21000027 0.30999953]\n",
- "Tune response: #0 QCORR_172 [0.21000025 0.30999971]\n",
- "Tune response: #0 QCORR_173 [0.21000033 0.30999957]\n",
- "Tune response: #0 QCORR_174 [0.20998953 0.31000429]\n",
- "Tune response: #0 QCORR_175 [0.20996177 0.30998439]\n",
- "Tune response: #0 QCORR_176 [0.20996115 0.30998502]\n",
- "Tune response: #0 QCORR_177 [0.20998926 0.3100053 ]\n",
- "Tune response: #0 QCORR_178 [0.21000017 0.30999894]\n",
- "Tune response: #0 QCORR_179 [0.21000032 0.30999869]\n",
- "Tune response: #0 QCORR_180 [0.21000022 0.30999812]\n",
- "Tune response: #0 QCORR_181 [0.21000043 0.30999806]\n",
- "Tune response: #0 QCORR_182 [0.21000069 0.30999873]\n",
- "Tune response: #0 QCORR_183 [0.2100007 0.30999896]\n",
- "Tune response: #0 QCORR_184 [0.21000043 0.30999928]\n",
- "Tune response: #0 QCORR_185 [0.21000024 0.30999944]\n",
- "Tune response: #0 QCORR_186 [0.21000034 0.30999947]\n",
- "Tune response: #0 QCORR_187 [0.21000016 0.30999931]\n",
- "Tune response: #0 QCORR_188 [0.20998924 0.31000414]\n",
- "Tune response: #0 QCORR_189 [0.2099611 0.30998434]\n",
- "Tune response: #0 QCORR_190 [0.20996176 0.30998492]\n",
- "Tune response: #0 QCORR_191 [0.20998952 0.31000507]\n",
- "Tune response: #0 QCORR_192 [0.21000033 0.30999881]\n",
- "Tune response: #0 QCORR_193 [0.21000026 0.30999863]\n",
- "Tune response: #0 QCORR_194 [0.21000029 0.30999828]\n",
- "Tune response: #0 QCORR_195 [0.21000026 0.30999828]\n",
- "Tune response: #0 QCORR_196 [0.20998754 0.31000834]\n",
- "Tune response: #0 QCORR_197 [0.20998765 0.31000776]\n",
- "Tune response: #0 QCORR_198 [0.21000032 0.30999855]\n",
- "Tune response: #0 QCORR_199 [0.21000026 0.30999874]\n",
- "Tune response: #0 QCORR_200 [0.21000028 0.30999925]\n",
- "Tune response: #0 QCORR_201 [0.21000028 0.30999935]\n",
- "Tune response: #0 QCORR_202 [0.21000058 0.30999964]\n",
- "Tune response: #0 QCORR_203 [0.21000064 0.30999949]\n",
- "Tune response: #0 QCORR_204 [0.21000029 0.30999855]\n",
- "Tune response: #0 QCORR_205 [0.21000034 0.30999838]\n",
- "Tune response: #0 QCORR_206 [0.21000033 0.30999823]\n",
- "Tune response: #0 QCORR_207 [0.21000031 0.3099983 ]\n",
- "Tune response: #0 QCORR_208 [0.20999868 0.31007796]\n",
- "CPU times: user 41.9 s, sys: 179 ms, total: 42.1 s\n",
- "Wall time: 42.2 s\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 10,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "%%time\n",
- "tune_response_matrix.measure(callback=tune_callback)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2c746dcf-c05f-4e5b-88cb-f4680e9dde18",
- "metadata": {},
- "source": [
- "The correction matrix can be saved to a file (and added to the configuration file).\n",
- "```\n",
- "tune_response_matrix.save(\"tune_response_matrix_live.json\")\n",
- "tune_correction.load('tune_response_matrix_design.json')\n",
- "```"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "id": "09642999-b579-4abb-a27f-14915f66fff6",
- "metadata": {},
- "outputs": [],
- "source": [
- "tune_response_matrix.save(\"trm.json\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "id": "e08e4a85-c21b-464b-9715-24404be15e42",
- "metadata": {},
- "outputs": [],
- "source": [
- "tune_correction.load(\"trm.json\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 14,
- "id": "40357e20-93d4-40b8-899c-b93a70378af6",
- "metadata": {},
- "outputs": [],
- "source": [
- "tune_correction.set([0.21, 0.31], iter=10, wait_time=1.2)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 15,
- "id": "bdac5596-9b18-42a7-9670-1a2c825a25b0",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Readback after changing tune is [0.21 0.31]. We can also check the setpoint [0.21 0.31]\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "Tune(peer='Simulator:design', name='DEFAULT_TUNE_CORRECTION', description=None, lattice_names=None, quad_array_name='QCORR', betatron_tune_name='BETATRON_TUNE', response_matrix=ResponseMatrixData(matrix=[[0.14102360783224688, 0.1247736956877521, 0.1247784063651558, 0.1246481795635912, 0.12512932427849455, 0.12169720499499714, 0.12207610030512406, 0.1252274901519801, 0.12505436176257767, 0.1252421814237903, 0.12471476857733865, 0.251560657692218, 0.2527213486122615, 0.12536440930077664, 0.12497398019867267, 0.1252557490932782, 0.12459571048201168, 0.23286692596019565, 0.5104957165136259, 0.5171068874740281, 0.23565770243150208, 0.1263295019007793, 0.12451253126988249, 0.1255077164324936, 0.12361394153115324, 0.12087299659901962, 0.12116595465655466, 0.12368974746601591, 0.12582207524092226, 0.12487114328635363, 0.12628455338115074, 0.23517978625403613, 0.5162366992164658, 0.5102502635032091, 0.23265253336929304, 0.12471504086619678, 0.12554607569603693, 0.1253403255804808, 0.12527630881192797, 0.23416583890961684, 0.23349518695620075, 0.12486679719148075, 0.1255045960821266, 0.12541718350328468, 0.1251055958101377, 0.12221672232526348, 0.12134574074312843, 0.12488010040279107, 0.12448295295813816, 0.12443844762982659, 0.125001214336673, 0.08240245927881862, 0.08230628509270366, 0.12479015265187687, 0.12451834125098982, 0.12440763405036082, 0.12509195488286107, 0.12149195638078147, 0.12230273740365671, 0.12530190101472938, 0.12527719351368427, 0.12551079243389163, 0.12466482765954856, 0.23326155501962598, 0.23456220615170054, 0.1254604516029434, 0.12518043253667566, 0.12552387555347932, 0.12452301555526679, 0.23246769544515988, 0.5097329566933206, 0.5170899356052305, 0.23557194520351654, 0.12645541945854877, 0.12470238975631487, 0.1257814208566188, 0.12351159209306184, 0.12096861465638042, 0.12090236079814742, 0.1234943177497172, 0.12571080106799082, 0.12462133836821376, 0.1264665217359795, 0.23568109849853025, 0.5172901484729042, 0.5097746044246954, 0.23250925446166582, 0.12449427454236384, 0.1254623256805032, 0.12510035427820698, 0.12548227087794128, 0.2527159882823038, 0.25121412324524695, 0.1246403913826577, 0.12545046982948005, 0.12520121863479616, 0.12532039721985244, 0.1222665406666601, 0.12156538541585604, 0.12513904419753086, 0.12444842249825783, 0.12459210472215432, 0.12474723833061363, 0.1411113582130974, 0.14088676396628586, 0.1246236630969566, 0.12480899001798829, 0.1245689916090642, 0.1252784389241257, 0.121781352120931, 0.12216217733951318, 0.1253771520604019, 0.12497682736117843, 0.1252750333938235, 0.1245637676022815, 0.25133227086970855, 0.2530207588158362, 0.12550938422173363, 0.12487925238252595, 0.12526805307860878, 0.12444829471630614, 0.23269077969012564, 0.5100396134047336, 0.5177278527315754, 0.23593488909762206, 0.12646771351515484, 0.12440998762047739, 0.12550749553225105, 0.12347324067185639, 0.1207395378380327, 0.12115924488131924, 0.1235817231984293, 0.1259585712587441, 0.12492387910761904, 0.12640457334817112, 0.23525165476739884, 0.5164857624639918, 0.5096724380443396, 0.23237574140744233, 0.12461775387800911, 0.12568892043457458, 0.12540807437982915, 0.1253842165843677, 0.23420888366765258, 0.23323367505240222, 0.12478733938503517, 0.1256523120182762, 0.12550186830828647, 0.12519799020838107, 0.12236268945448048, 0.12127331573852373, 0.12491615738990935, 0.12433235356684724, 0.12431866357048849, 0.12495314213628594, 0.08245313402266419, 0.08233248120964598, 0.12493264275437177, 0.12452379538785419, 0.1245152982734532, 0.12495500111064928, 0.12143908897727096, 0.12219093526694147, 0.1251497595478046, 0.12532128244868712, 0.1254440468756446, 0.124814689386743, 0.23350744680239455, 0.23431630043924123, 0.12530864770460282, 0.1252432479839638, 0.12547559203324177, 0.1246747551097993, 0.2326919803108396, 0.5102765663722586, 0.5164942432073216, 0.2353163398349789, 0.1263061971878976, 0.12477669802890556, 0.12574650430807743, 0.12365989828705404, 0.12108468936539163, 0.12094245953581106, 0.12362298082241319, 0.12559436602221918, 0.12460265808339477, 0.12632893292618963, 0.2355494114197887, 0.5169200440544031, 0.5103829543742777, 0.232789650053411, 0.12461531944674142, 0.1253385067451207, 0.125068160180819, 0.1253528964240136, 0.25259159158519395, 0.25151017162799993, 0.12474737087181387, 0.12531700464724072, 0.12515001029445028, 0.12520334841670255, 0.12212064639333109, 0.12160513948450413, 0.1250699447036263, 0.12459673801618054, 0.1246859263098754, 0.1248263476102962, 0.14111934949490035], [-1.1274714053882695, -0.3301352191115159, -0.32929846929097284, -0.33074407069400014, -0.3323848155983855, -0.3420279889221334, -0.3436448260402125, -0.34090221128380005, -0.33996602945340904, -0.33469554155174386, -0.33270267379814644, -0.42450173099173316, -0.4307634687561457, -0.32978990960441656, -0.3297951882963446, -0.3332139738015938, -0.33510961597815747, -0.3979746389731753, -0.19639655919334587, -0.19040383293755792, -0.3882929344861674, -0.3403183486083705, -0.341921361826647, -0.3418565476820401, -0.340216957537276, -0.33686230403173756, -0.33445432643830486, -0.3275309455252895, -0.3281205534855225, -0.3338791896595472, -0.33648972076971706, -0.4004078524355581, -0.19743563664298414, -0.1908902364045062, -0.38983488409416456, -0.34293234977555986, -0.34440744045849403, -0.34272059241613473, -0.34030735197254636, -0.4121788322641873, -0.42623285269050015, -0.3323588281750611, -0.3297254824613516, -0.3264416433135242, -0.32725117192211606, -0.3379060801933509, -0.3409859067765586, -0.3434775031052606, -0.3440114462577304, -0.34001496405089426, -0.33725965583486506, -0.6250603173757474, -0.6224859439107888, -0.3353656050636422, -0.33840609212854034, -0.34410126227180093, -0.3442244441553832, -0.34295424891250814, -0.33988215149327594, -0.32803867291542055, -0.32657532121838084, -0.32814185853546896, -0.3304763610351147, -0.42461265229776224, -0.4100683435120933, -0.3386922503101353, -0.34157612647356395, -0.3451438288964992, -0.3442424658717247, -0.3920586964145656, -0.1918790681387783, -0.19770316514289288, -0.4014678056390997, -0.33847880416937315, -0.33573067263426015, -0.3285094437754932, -0.3272460639475172, -0.33264159447710107, -0.3348826665011684, -0.3390541849085382, -0.3412958984222447, -0.3432225203275907, -0.3420502738377129, -0.3901995968419447, -0.1911606611582073, -0.1970115615873569, -0.3996515928639255, -0.3369724834212384, -0.33473228525093823, -0.3295378120421466, -0.32889116076906255, -0.4282380787773432, -0.4239371223024868, -0.33077963268957067, -0.3327542813325035, -0.339168688741065, -0.3407578393327393, -0.3452515199869888, -0.34395207286153084, -0.3339105555627553, -0.3317534247160303, -0.3284061135727656, -0.3287040117100348, -1.1213228307555, -1.1259400919128026, -0.32832857220554956, -0.3274849268647406, -0.33003765484984626, -0.33229951117486056, -0.34359102412895304, -0.34549958328800034, -0.34235334140264584, -0.3409222527167577, -0.3338508105327209, -0.3313535719645655, -0.42232464970592964, -0.42948082001503796, -0.32797489145308667, -0.32818321019756347, -0.33311084852050143, -0.3356413646932177, -0.4001736974679204, -0.19749189778317522, -0.1901919104291272, -0.3883813539651282, -0.3420738133247392, -0.3438322568749541, -0.3430221144901102, -0.34081367551286323, -0.33568458101151943, -0.3328563257104511, -0.3259145576595124, -0.32689132610841387, -0.33439569607385256, -0.3375877737576971, -0.4026202271056878, -0.19845362394410593, -0.19103354047533827, -0.39063395715577265, -0.3448451713494727, -0.3462677705778905, -0.34335053233913726, -0.34030657836192635, -0.41009821718729356, -0.4267971013294236, -0.33092146812796486, -0.327992715282166, -0.325049666651811, -0.32634361148975444, -0.33880127474572586, -0.34240657188711054, -0.3453365339151082, -0.3456129769807692, -0.34002422014789424, -0.33663975397835166, -0.6216227630562177, -0.6251192693995655, -0.33709257255876146, -0.33977973272480977, -0.3437634298825154, -0.3432832555594345, -0.34104181098837394, -0.3380489024762401, -0.32751396751462547, -0.3266876549101738, -0.3297750212838402, -0.3323164499691167, -0.42590348661386557, -0.4122059978223236, -0.34007117028833633, -0.34245180028813493, -0.34421636924797383, -0.3428169401692438, -0.3900324687633461, -0.19101206929494907, -0.19731190465277493, -0.40020921279693145, -0.336607126306121, -0.33406950732561835, -0.32837404889574096, -0.32774664304791035, -0.33444078184730053, -0.3367569485812627, -0.33995010862541974, -0.3415885576557587, -0.3418117767756135, -0.3402975843169731, -0.3885628097688443, -0.1905499594034854, -0.19631558785093706, -0.3978778851093656, -0.33530292646133386, -0.3334557716982989, -0.3300096686176257, -0.32994083980497635, -0.4305885535088594, -0.4247589827105491, -0.3326267234288194, -0.3345378698577095, -0.3396979534758815, -0.3406547247303271, -0.3435969315895848, -0.34207315443512964, -0.332626497961952, -0.3310046193927274, -0.32944483748520437, -0.3301994378679396, -1.126783453100355]], variable_names=['QCORR_001', 'QCORR_002', 'QCORR_003', 'QCORR_004', 'QCORR_005', 'QCORR_006', 'QCORR_007', 'QCORR_008', 'QCORR_009', 'QCORR_010', 'QCORR_011', 'QCORR_012', 'QCORR_013', 'QCORR_014', 'QCORR_015', 'QCORR_016', 'QCORR_017', 'QCORR_018', 'QCORR_019', 'QCORR_020', 'QCORR_021', 'QCORR_022', 'QCORR_023', 'QCORR_024', 'QCORR_025', 'QCORR_026', 'QCORR_027', 'QCORR_028', 'QCORR_029', 'QCORR_030', 'QCORR_031', 'QCORR_032', 'QCORR_033', 'QCORR_034', 'QCORR_035', 'QCORR_036', 'QCORR_037', 'QCORR_038', 'QCORR_039', 'QCORR_040', 'QCORR_041', 'QCORR_042', 'QCORR_043', 'QCORR_044', 'QCORR_045', 'QCORR_046', 'QCORR_047', 'QCORR_048', 'QCORR_049', 'QCORR_050', 'QCORR_051', 'QCORR_052', 'QCORR_053', 'QCORR_054', 'QCORR_055', 'QCORR_056', 'QCORR_057', 'QCORR_058', 'QCORR_059', 'QCORR_060', 'QCORR_061', 'QCORR_062', 'QCORR_063', 'QCORR_064', 'QCORR_065', 'QCORR_066', 'QCORR_067', 'QCORR_068', 'QCORR_069', 'QCORR_070', 'QCORR_071', 'QCORR_072', 'QCORR_073', 'QCORR_074', 'QCORR_075', 'QCORR_076', 'QCORR_077', 'QCORR_078', 'QCORR_079', 'QCORR_080', 'QCORR_081', 'QCORR_082', 'QCORR_083', 'QCORR_084', 'QCORR_085', 'QCORR_086', 'QCORR_087', 'QCORR_088', 'QCORR_089', 'QCORR_090', 'QCORR_091', 'QCORR_092', 'QCORR_093', 'QCORR_094', 'QCORR_095', 'QCORR_096', 'QCORR_097', 'QCORR_098', 'QCORR_099', 'QCORR_100', 'QCORR_101', 'QCORR_102', 'QCORR_103', 'QCORR_104', 'QCORR_105', 'QCORR_106', 'QCORR_107', 'QCORR_108', 'QCORR_109', 'QCORR_110', 'QCORR_111', 'QCORR_112', 'QCORR_113', 'QCORR_114', 'QCORR_115', 'QCORR_116', 'QCORR_117', 'QCORR_118', 'QCORR_119', 'QCORR_120', 'QCORR_121', 'QCORR_122', 'QCORR_123', 'QCORR_124', 'QCORR_125', 'QCORR_126', 'QCORR_127', 'QCORR_128', 'QCORR_129', 'QCORR_130', 'QCORR_131', 'QCORR_132', 'QCORR_133', 'QCORR_134', 'QCORR_135', 'QCORR_136', 'QCORR_137', 'QCORR_138', 'QCORR_139', 'QCORR_140', 'QCORR_141', 'QCORR_142', 'QCORR_143', 'QCORR_144', 'QCORR_145', 'QCORR_146', 'QCORR_147', 'QCORR_148', 'QCORR_149', 'QCORR_150', 'QCORR_151', 'QCORR_152', 'QCORR_153', 'QCORR_154', 'QCORR_155', 'QCORR_156', 'QCORR_157', 'QCORR_158', 'QCORR_159', 'QCORR_160', 'QCORR_161', 'QCORR_162', 'QCORR_163', 'QCORR_164', 'QCORR_165', 'QCORR_166', 'QCORR_167', 'QCORR_168', 'QCORR_169', 'QCORR_170', 'QCORR_171', 'QCORR_172', 'QCORR_173', 'QCORR_174', 'QCORR_175', 'QCORR_176', 'QCORR_177', 'QCORR_178', 'QCORR_179', 'QCORR_180', 'QCORR_181', 'QCORR_182', 'QCORR_183', 'QCORR_184', 'QCORR_185', 'QCORR_186', 'QCORR_187', 'QCORR_188', 'QCORR_189', 'QCORR_190', 'QCORR_191', 'QCORR_192', 'QCORR_193', 'QCORR_194', 'QCORR_195', 'QCORR_196', 'QCORR_197', 'QCORR_198', 'QCORR_199', 'QCORR_200', 'QCORR_201', 'QCORR_202', 'QCORR_203', 'QCORR_204', 'QCORR_205', 'QCORR_206', 'QCORR_207', 'QCORR_208'], observable_names=['BETATRON_TUNE.x', 'BETATRON_TUNE.y']))"
- ]
- },
- "execution_count": 15,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "print(\n",
- " f\"Readback after changing tune is {tune_correction.readback()}. We can also check the setpoint {tune_monitor.tune.get()}\"\n",
- ")\n",
- "tune_correction # string representation"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 16,
- "id": "50be3687-e087-4e3a-80ec-c71915642bde",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Tune readback is [0.21 0.31]\n",
- "0\n",
- "Let's change the tune to qx=0.19, qy=0.28\n",
- "Tune readback is [0.19 0.28]\n",
- "Let's change the tune to qx=0.21, qy=0.3\n",
- "Tune readback is [0.21 0.3 ]\n"
- ]
- }
- ],
- "source": [
- "print(f\"Tune readback is {tune_correction.readback()}\")\n",
- "print(wait_time)\n",
- "qx, qy = 0.19, 0.28\n",
- "print(f\"Let's change the tune to {qx=:}, {qy=:}\")\n",
- "tune_correction.set([qx, qy], iter=10, wait_time=wait_time)\n",
- "print(f\"Tune readback is {tune_correction.readback()}\")\n",
- "\n",
- "qx, qy = 0.21, 0.3\n",
- "print(f\"Let's change the tune to {qx=:}, {qy=:}\")\n",
- "\n",
- "tune_correction.set([qx, qy], iter=10, wait_time=wait_time)\n",
- "print(f\"Tune readback is {tune_correction.readback()}\")\n",
- "\n",
- "# You can try to do something stupid too!\n",
- "# qx, qy = 0.5, 0.0\n",
- "# print(f\"Let's do something stupid and change the tune to {qx=:}, {qy=:}\")\n",
- "# tune_correction.set([qx, qy])"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.12.3"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/examples/SOLEIL_examples/02-chromaticity_measurement.ipynb b/examples/SOLEIL_examples/02-chromaticity_measurement.ipynb
deleted file mode 100644
index caedbede3..000000000
--- a/examples/SOLEIL_examples/02-chromaticity_measurement.ipynb
+++ /dev/null
@@ -1,245 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 1,
- "id": "9fccf447-e065-46ab-88c3-a9763d9ed06b",
- "metadata": {},
- "outputs": [],
- "source": [
- "import os\n",
- "\n",
- "import numpy as np\n",
- "\n",
- "from pyaml.accelerator import Accelerator\n",
- "from pyaml.common.constants import Action\n",
- "from pyaml.magnet.magnet import Magnet"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "id": "6c657c45-2d0e-404a-8304-b250becea262",
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "PyAML Tango control system binding (0.3.3) initialized with name 'live' and TANGO_HOST=localhost:11000\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "Accelerator(facility='Synchrotron SOLEIL', machine='sr', energy=2750000000.0, alphac=None, harmonic_number=None, controls=[TangoControlSystem(name='live', tango_host='localhost:11000', debug_level=None, lazy_devices=True, scalar_aggregator='tango.pyaml.multi_attribute', vector_aggregator=None, timeout_ms=3000)], simulators=[Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m', mat_key=None, linker=, description=None)], data_folder='/data/store', description=None)"
- ]
- },
- "execution_count": 2,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "sr = Accelerator.load(\"p.yaml\")\n",
- "sr # string representation"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e300a41c-ee12-47db-80c3-090468b2c293",
- "metadata": {},
- "source": [
- "### Virtual accelerator setup for emulation of a control system\n",
- "For the **live** control mode, you should have some control system emulation running. \n",
- "\n",
- "!!! *If you want to skip this, you can always run the notebook in **design** mode.* !!!\n",
- "\n",
- "For the installation you should be able to do \n",
- "```\n",
- "apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest\n",
- "apptainer run virtual-accelerator.sif\n",
- "```\n",
- "This will run SOLEIL II proof-of-concept digital twin on localhost:11000. You can play with the digital twin itself (without pyAML) via Jive to check that everything is working. You can run Jive in a different terminal with \n",
- "```\n",
- "apptainer pull jive.sif https://gitlab.synchrotron-soleil.fr/api/v4/projects/2739/packages/generic/jive/latest/jive.sif\n",
- "apptainer run jive.sif\n",
- "```\n",
- "On linux you may additionally configure X11\n",
- "```\n",
- "export DISPLAY=:0\n",
- "xhost +local:root\n",
- "```\n",
- "Jive is not necessary to run anything but some of you may find it useful to open its `simulator/ringsimulator/ringsimulator` device on the side and see how the global parameters (tune, orbit, chromaticity, etc.) change with your actions in pyAML.\n",
- "NOTE: This notebook is just a demonstration of pyAML functionality. Certain things may be done stupidly. The person who wrote this jupyter notebook only cared about showing that the code is working, not about intelligently controlling the accelerator."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "id": "a5bde3a2-b1aa-4c64-afaf-068ad61f0f1b",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m', mat_key=None, linker=, description=None)"
- ]
- },
- "execution_count": 3,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "control_mode = sr.design\n",
- "wait_time = 2.0 if control_mode == sr.live else 0.1\n",
- "control_mode"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "id": "1da59cb7-ba59-479f-97d2-4fa550574737",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "ChomaticityMonitor(peer='Simulator:design', name='DEFAULT_CHROMATICITY_MEASUREMENT', description=None, lattice_names=None, n_step=15, sleep_between_step=2.0, n_avg_meas=3, sleep_between_meas=2.0, betatron_tune_name='BETATRON_TUNE', rf_plant_name='RF', bpm_array_name=None, e_delta=0.01, max_e_delta=0.05, fit_order=2, fit_disp_order=1, fit_dispersion=False)"
- ]
- },
- "execution_count": 4,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "chromaticity_measurement = control_mode.get_chromaticity_monitor(\"DEFAULT_CHROMATICITY_MEASUREMENT\")\n",
- "chromaticity_measurement"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "id": "cbd5672c-79e6-457f-b388-b2fdcac77d11",
- "metadata": {},
- "outputs": [],
- "source": [
- "def chroma_callback(action: int, cb_data: dict):\n",
- " if action == Action.MEASURE:\n",
- " print(f\"Chromaticy measurement: #{cb_data['step']} RF={cb_data['rf']} Tune={cb_data['tune']}\")\n",
- " return True"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "id": "bd984afc-d011-40a6-8a26-983fdc923a5b",
- "metadata": {},
- "outputs": [],
- "source": [
- "sr.design.get_lattice().disable_6d()\n",
- "alphac = sr.design.get_lattice().get_mcf()\n",
- "sr.design.get_lattice().enable_6d()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "id": "a0e66f14-cf54-4811-b728-652dd9f7025b",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Chromaticy measurement: #0 RF=352314629.3149023 Tune=[0.19179162 0.2886065 ]\n",
- "Chromaticy measurement: #0 RF=352314629.3149023 Tune=[0.19179162 0.2886065 ]\n",
- "Chromaticy measurement: #0 RF=352314629.3149023 Tune=[0.19179162 0.2886065 ]\n",
- "Chromaticy measurement: #1 RF=352314440.70959616 Tune=[0.194552 0.29325077]\n",
- "Chromaticy measurement: #1 RF=352314440.70959616 Tune=[0.194552 0.29325077]\n",
- "Chromaticy measurement: #1 RF=352314440.70959616 Tune=[0.194552 0.29325077]\n",
- "Chromaticy measurement: #2 RF=352314252.10429 Tune=[0.20121916 0.30015277]\n",
- "Chromaticy measurement: #2 RF=352314252.10429 Tune=[0.20121916 0.30015277]\n",
- "Chromaticy measurement: #2 RF=352314252.10429 Tune=[0.20121916 0.30015277]\n",
- "Chromaticy measurement: #3 RF=352314063.49898386 Tune=[0.20984821 0.30918899]\n",
- "Chromaticy measurement: #3 RF=352314063.49898386 Tune=[0.20984821 0.30918899]\n",
- "Chromaticy measurement: #3 RF=352314063.49898386 Tune=[0.20984821 0.30918899]\n",
- "Chromaticy measurement: #4 RF=352313874.8936777 Tune=[0.21855404 0.32022564]\n",
- "Chromaticy measurement: #4 RF=352313874.8936777 Tune=[0.21855404 0.32022564]\n",
- "Chromaticy measurement: #4 RF=352313874.8936777 Tune=[0.21855404 0.32022564]\n"
- ]
- },
- {
- "data": {
- "image/png": "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7uPjo737cqvatNvzN1ZHU5Tbzc0NKpUKJSUljdbPWPqCrj/++APFxcV1xksZun+t69evw87OrklffLcaOHAgfv31V52fAQMGYOzYsXXSDRm43tx2acj+xrYjoPG22ZD77rsPR48e1bv2nSmZs73cypTXvCnXwpT76/PBBx9g0KBB6Ny5s0761KlTUV5ejuPHjwMw3ecetV4cY0dtjouLC0aOHKl9vWfPHnTu3Bm9e/c26jjp6enQaDRYuHAhFi5cWGd7165d8cwzzzQ4Y6yyshJTpkzBhQsXsGfPHvTt27dOnpCQEPz2228oLi7WGSxdO4YqJCSkzj4N1fH3339vdrlr36vU1FSdcUkeHh6wtbXFxYsX6+xT39McLl68qDNWLyUlBRqNBl26dNGm7dy5E3379tVJM2b/WqmpqejTp0+99TKUi4tLnRnBLi4u8PHxqXemsCHHbE67bGx/Y9uRIW2zIbXdgUVFRfXmae3t5VamvOZN+Zs25f76ZGdnw8XFpU56dXU1gJrH7wGm+dyj1o137KhN27RpE44ePYpFixYZ/fSEfv36YcuWLXV+goODERAQgC1btmD+/PkAgPLyciQnJyMvL0+7v1qtxsyZM5GQkIDvvvsOw4cP13ue++67D2q1Gh9//LE2TalUYt26dQgPD4e/v79RdTSm3PWpLeuff/6pky6TyTBu3Dhs3bpVpzvq3Llz+Pnnn/Uea82aNTqv33//fQDAhAkTtGm7du3S261m6P61EhMTMWLECL3HaU3qa5f62pGh+xvTjgxtmwCQk5NTJ626uhpffvklbG1tGwwIW3t7MRdjroW+a97czwR9evbsiePHj9e5w/rNN99AKpVq/wNnis8PauUsuIYekVH27dsn7rnnHvHGG2+ITz/9VPzjH/8QMplMjB8/XlRXV+vkff/998Urr7winnzySQFAREZGildeeUW88sororCwsMHz6Fuo87fffhMARExMjDbtmWeeEQDElClTxP/+9786P7e6//77hZWVlXj++efFRx99JEaMGCGsrKzEvn37mlxHQ8rdkH79+omHHnqoTvrJkyeFQqEQAQEBYsWKFeLVV18VXl5eYsCAAToLztYuQNu/f38xZcoUsWbNGjFr1iwBQDz88MPafH/99ZcAIPbu3atzHkP3r1W7QPGePXsMrqMxmrpYrTHXTF87MmZ/Q9uR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",
- "text/plain": [
- ""
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 7,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "chromaticity_measurement.measure(\n",
- " callback=chroma_callback,\n",
- " do_plot=True,\n",
- " alphac=alphac,\n",
- " fit_order=2,\n",
- " n_step=5,\n",
- " sleep_between_meas=wait_time,\n",
- " sleep_between_step=wait_time,\n",
- ")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5ac230e9-d96d-460a-a425-ae6892465371",
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b5114363-ac95-41f9-b1b1-e433d4e7184b",
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.12.3"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/examples/SOLEIL_examples/03-Orbit_correction.ipynb b/examples/SOLEIL_examples/03-Orbit_correction.ipynb
deleted file mode 100644
index 7b5c607b1..000000000
--- a/examples/SOLEIL_examples/03-Orbit_correction.ipynb
+++ /dev/null
@@ -1,809 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 1,
- "id": "68b780c8-534e-46af-b336-6860edeefef4",
- "metadata": {},
- "outputs": [],
- "source": [
- "import os\n",
- "from time import sleep\n",
- "\n",
- "import matplotlib.pyplot as plt\n",
- "import numpy as np\n",
- "\n",
- "from pyaml.accelerator import Accelerator\n",
- "from pyaml.common.constants import Action\n",
- "from pyaml.magnet.magnet import Magnet"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "id": "62dc34e1-bb65-4b56-b596-e05d60a0e0a5",
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "PyAML Tango control system binding (0.3.3) initialized with name 'live' and TANGO_HOST=localhost:11000\n",
- "/home/gubaidulin/codes/operation/pyAML/pyaml/examples/SOLEIL_examples/trm.json: file not found\n"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "27 Apr 2026, 15:50:05 | WARNING | Loading /home/gubaidulin/codes/operation/pyAML/pyaml/examples/SOLEIL_examples/orm.json failed /home/gubaidulin/codes/operation/pyAML/pyaml/examples/SOLEIL_examples/orm.json: file not found\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "Accelerator(facility='Synchrotron SOLEIL', machine='sr', energy=2750000000.0, alphac=None, harmonic_number=None, controls=[TangoControlSystem(name='live', tango_host='localhost:11000', debug_level=None, lazy_devices=True, scalar_aggregator='tango.pyaml.multi_attribute', vector_aggregator=None, timeout_ms=3000)], simulators=[Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m', mat_key=None, linker=, description=None)], data_folder='/data/store', description=None)"
- ]
- },
- "execution_count": 2,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "sr = Accelerator.load(\"p.yaml\")\n",
- "sr # string representation"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "71e973b4-e9d8-48d7-98dc-8f43fcbacb21",
- "metadata": {},
- "source": [
- "### Virtual accelerator setup for emulation of a control system\n",
- "For the **live** control mode, you should have some control system emulation running. \n",
- "\n",
- "!!! *If you want to skip this, you can always run the notebook in **design** mode.* !!!\n",
- "\n",
- "For the installation you should be able to do \n",
- "```\n",
- "apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest\n",
- "apptainer run virtual-accelerator.sif\n",
- "```\n",
- "This will run SOLEIL II proof-of-concept digital twin on localhost:11000. You can play with the digital twin itself (without pyAML) via Jive to check that everything is working. You can run Jive in a different terminal with \n",
- "```\n",
- "apptainer pull jive.sif https://gitlab.synchrotron-soleil.fr/api/v4/projects/2739/packages/generic/jive/latest/jive.sif\n",
- "apptainer run jive.sif\n",
- "```\n",
- "On linux you may additionally configure X11\n",
- "```\n",
- "export DISPLAY=:0\n",
- "xhost +local:root\n",
- "```\n",
- "Jive is not necessary to run anything but some of you may find it useful to open its `simulator/ringsimulator/ringsimulator` device on the side and see how the global parameters (tune, orbit, chromaticity, etc.) change with your actions in pyAML.\n",
- "NOTE: This notebook is just a demonstration of pyAML functionality. Certain things may be done stupidly. The person who wrote this jupyter notebook only cared about showing that the code is working, not about intelligently controlling the accelerator."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "id": "6727e66d-a4f8-4a88-86b9-a58022d5ea55",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m', mat_key=None, linker=, description=None)"
- ]
- },
- "execution_count": 3,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "control_mode = sr.design\n",
- "wait_time = 2.0 if control_mode == sr.live else 0.1\n",
- "control_mode"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "id": "f4918a42-a21b-4815-a747-a96c292405fe",
- "metadata": {},
- "outputs": [],
- "source": [
- "bpms = control_mode.get_bpms(\"BPM\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "id": "ec4de2fa-b538-4d7c-8ca7-c7c4d6f637cb",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "OrbitResponseMatrix(peer='Simulator:design', name='DEFAULT_ORBIT_RESPONSE_MATRIX', description=None, lattice_names=None, n_step=1, sleep_between_step=0, n_avg_meas=1, sleep_between_meas=0, bpm_array_name='BPM', hcorr_array_name='HCORR', vcorr_array_name='VCORR', corrector_delta=1e-05)"
- ]
- },
- "execution_count": 5,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "orbit_response_matrix = control_mode.get_orm_tuning(\"DEFAULT_ORBIT_RESPONSE_MATRIX\")\n",
- "orbit_response_matrix"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "id": "bbdf07f3-593b-45c3-8ba0-01bb36cef7ae",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "Orbit(peer='Simulator:design', name='DEFAULT_ORBIT_CORRECTION', description=None, lattice_names=None, bpm_array_name='BPM', hcorr_array_name='HCORR', vcorr_array_name='VCORR', rf_plant_name=None, singular_values=16, singular_values_H=None, singular_values_V=None, virtual_target=0, response_matrix=None)"
- ]
- },
- "execution_count": 6,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "orbit_correction = control_mode.get_orbit_tuning(\"DEFAULT_ORBIT_CORRECTION\")\n",
- "orbit_correction"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "id": "19b62db1-e93f-48cc-8351-f09c518379de",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "27 Apr 2026, 15:50:08 | INFO | Measuring correctors from the default arrays: HCORR and VCORR.\n",
- "27 Apr 2026, 15:50:09 | INFO | Measured response of SH1_COR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:10 | INFO | Measured response of SH2_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:10 | INFO | Measured response of SXF11_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:11 | INFO | Measured response of SXF1_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:12 | INFO | Measured response of SXF13_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:12 | INFO | Measured response of SXF13_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:13 | INFO | Measured response of SXF1_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:13 | INFO | Measured response of SXF12_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:14 | INFO | Measured response of SH6_COR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:14 | INFO | Measured response of SH4_COR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:15 | INFO | Measured response of SH4_COR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:15 | INFO | Measured response of SH6_COR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:15 | INFO | Measured response of SXF21_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:16 | INFO | Measured response of SXF2_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:16 | INFO | Measured response of SXF22_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:16 | INFO | Measured response of SH9_COR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:17 | INFO | Measured response of SH7_COR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:17 | INFO | Measured response of SH7_COR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:18 | INFO | Measured response of SH9_COR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:18 | INFO | Measured response of SXF31_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:18 | INFO | Measured response of SXF3_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:19 | INFO | Measured response of SXF33_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:19 | INFO | Measured response of SXF33_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:19 | INFO | Measured response of SXF3_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:20 | INFO | Measured response of SXF32_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:20 | INFO | Measured response of SH9_COR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:20 | INFO | Measured response of SH7_COR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:21 | INFO | Measured response of SH7_COR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:21 | INFO | Measured response of SH9_COR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:21 | INFO | Measured response of SXF41_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:22 | INFO | Measured response of SXF4_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:22 | INFO | Measured response of SXF42_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:22 | INFO | Measured response of SH12_COR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:23 | INFO | Measured response of SH10_COR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:23 | INFO | Measured response of SH10_COR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:23 | INFO | Measured response of SH12_COR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:24 | INFO | Measured response of SXF51_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:24 | INFO | Measured response of SXF5_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:24 | INFO | Measured response of SXF53_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:25 | INFO | Measured response of SXF53_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:25 | INFO | Measured response of SXF5_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:25 | INFO | Measured response of SXF52_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:26 | INFO | Measured response of SH14_HCOR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:26 | INFO | Measured response of SH13_COR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:27 | INFO | Measured response of SH16_COR_001.hcorrector.\n",
- "27 Apr 2026, 15:50:27 | INFO | Measured response of SH16_COR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:27 | INFO | Measured response of SH13_COR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:28 | INFO | Measured response of SH14_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:28 | INFO | Measured response of SXF52_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:29 | INFO | Measured response of SXF5_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:29 | INFO | Measured response of SXF53_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:30 | INFO | Measured response of SXF53_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:30 | INFO | Measured response of SXF5_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:30 | INFO | Measured response of SXF51_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:31 | INFO | Measured response of SH12_COR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:31 | INFO | Measured response of SH10_COR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:32 | INFO | Measured response of SH10_COR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:32 | INFO | Measured response of SH12_COR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:33 | INFO | Measured response of SXF42_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:33 | INFO | Measured response of SXF4_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:34 | INFO | Measured response of SXF41_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:34 | INFO | Measured response of SH9_COR_005.hcorrector.\n",
- "27 Apr 2026, 15:50:35 | INFO | Measured response of SH7_COR_005.hcorrector.\n",
- "27 Apr 2026, 15:50:35 | INFO | Measured response of SH7_COR_006.hcorrector.\n",
- "27 Apr 2026, 15:50:36 | INFO | Measured response of SH9_COR_006.hcorrector.\n",
- "27 Apr 2026, 15:50:36 | INFO | Measured response of SXF32_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:36 | INFO | Measured response of SXF3_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:37 | INFO | Measured response of SXF33_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:37 | INFO | Measured response of SXF33_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:38 | INFO | Measured response of SXF3_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:38 | INFO | Measured response of SXF31_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:39 | INFO | Measured response of SH9_COR_007.hcorrector.\n",
- "27 Apr 2026, 15:50:39 | INFO | Measured response of SH7_COR_007.hcorrector.\n",
- "27 Apr 2026, 15:50:40 | INFO | Measured response of SH7_COR_008.hcorrector.\n",
- "27 Apr 2026, 15:50:40 | INFO | Measured response of SH9_COR_008.hcorrector.\n",
- "27 Apr 2026, 15:50:40 | INFO | Measured response of SXF22_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:41 | INFO | Measured response of SXF2_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:41 | INFO | Measured response of SXF21_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:42 | INFO | Measured response of SH6_COR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:42 | INFO | Measured response of SH4_COR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:43 | INFO | Measured response of SH4_COR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:43 | INFO | Measured response of SH6_COR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:44 | INFO | Measured response of SXF12_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:44 | INFO | Measured response of SXF1_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:44 | INFO | Measured response of SXF13_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:45 | INFO | Measured response of SXF13_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:45 | INFO | Measured response of SXF1_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:50:46 | INFO | Measured response of SXF11_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:46 | INFO | Measured response of SH2_HCOR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:47 | INFO | Measured response of SH1_COR_002.hcorrector.\n",
- "27 Apr 2026, 15:50:47 | INFO | Measured response of SH1_COR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:48 | INFO | Measured response of SH2_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:48 | INFO | Measured response of SXF11_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:49 | INFO | Measured response of SXF1_HCOR_005.hcorrector.\n",
- "27 Apr 2026, 15:50:49 | INFO | Measured response of SXF13_HCOR_005.hcorrector.\n",
- "27 Apr 2026, 15:50:49 | INFO | Measured response of SXF13_HCOR_006.hcorrector.\n",
- "27 Apr 2026, 15:50:50 | INFO | Measured response of SXF1_HCOR_006.hcorrector.\n",
- "27 Apr 2026, 15:50:50 | INFO | Measured response of SXF12_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:51 | INFO | Measured response of SH6_COR_005.hcorrector.\n",
- "27 Apr 2026, 15:50:51 | INFO | Measured response of SH4_COR_005.hcorrector.\n",
- "27 Apr 2026, 15:50:52 | INFO | Measured response of SH4_COR_006.hcorrector.\n",
- "27 Apr 2026, 15:50:52 | INFO | Measured response of SH6_COR_006.hcorrector.\n",
- "27 Apr 2026, 15:50:53 | INFO | Measured response of SXF21_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:53 | INFO | Measured response of SXF2_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:53 | INFO | Measured response of SXF22_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:54 | INFO | Measured response of SH9_COR_009.hcorrector.\n",
- "27 Apr 2026, 15:50:54 | INFO | Measured response of SH7_COR_009.hcorrector.\n",
- "27 Apr 2026, 15:50:55 | INFO | Measured response of SH7_COR_010.hcorrector.\n",
- "27 Apr 2026, 15:50:55 | INFO | Measured response of SH9_COR_010.hcorrector.\n",
- "27 Apr 2026, 15:50:56 | INFO | Measured response of SXF31_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:56 | INFO | Measured response of SXF3_HCOR_005.hcorrector.\n",
- "27 Apr 2026, 15:50:57 | INFO | Measured response of SXF33_HCOR_005.hcorrector.\n",
- "27 Apr 2026, 15:50:57 | INFO | Measured response of SXF33_HCOR_006.hcorrector.\n",
- "27 Apr 2026, 15:50:58 | INFO | Measured response of SXF3_HCOR_006.hcorrector.\n",
- "27 Apr 2026, 15:50:58 | INFO | Measured response of SXF32_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:50:58 | INFO | Measured response of SH9_COR_011.hcorrector.\n",
- "27 Apr 2026, 15:50:59 | INFO | Measured response of SH7_COR_011.hcorrector.\n",
- "27 Apr 2026, 15:50:59 | INFO | Measured response of SH7_COR_012.hcorrector.\n",
- "27 Apr 2026, 15:51:00 | INFO | Measured response of SH9_COR_012.hcorrector.\n",
- "27 Apr 2026, 15:51:00 | INFO | Measured response of SXF41_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:51:01 | INFO | Measured response of SXF4_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:51:01 | INFO | Measured response of SXF42_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:51:01 | INFO | Measured response of SH12_COR_005.hcorrector.\n",
- "27 Apr 2026, 15:51:02 | INFO | Measured response of SH10_COR_005.hcorrector.\n",
- "27 Apr 2026, 15:51:02 | INFO | Measured response of SH10_COR_006.hcorrector.\n",
- "27 Apr 2026, 15:51:03 | INFO | Measured response of SH12_COR_006.hcorrector.\n",
- "27 Apr 2026, 15:51:03 | INFO | Measured response of SXF51_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:51:04 | INFO | Measured response of SXF5_HCOR_005.hcorrector.\n",
- "27 Apr 2026, 15:51:04 | INFO | Measured response of SXF53_HCOR_005.hcorrector.\n",
- "27 Apr 2026, 15:51:05 | INFO | Measured response of SXF53_HCOR_006.hcorrector.\n",
- "27 Apr 2026, 15:51:05 | INFO | Measured response of SXF5_HCOR_006.hcorrector.\n",
- "27 Apr 2026, 15:51:05 | INFO | Measured response of SXF52_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:51:06 | INFO | Measured response of SH14_HCOR_003.hcorrector.\n",
- "27 Apr 2026, 15:51:06 | INFO | Measured response of SH13_COR_003.hcorrector.\n",
- "27 Apr 2026, 15:51:07 | INFO | Measured response of SH16_COR_003.hcorrector.\n",
- "27 Apr 2026, 15:51:07 | INFO | Measured response of SH16_COR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:08 | INFO | Measured response of SH13_COR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:08 | INFO | Measured response of SH14_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:08 | INFO | Measured response of SXF52_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:09 | INFO | Measured response of SXF5_HCOR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:09 | INFO | Measured response of SXF53_HCOR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:10 | INFO | Measured response of SXF53_HCOR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:10 | INFO | Measured response of SXF5_HCOR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:11 | INFO | Measured response of SXF51_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:11 | INFO | Measured response of SH12_COR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:12 | INFO | Measured response of SH10_COR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:12 | INFO | Measured response of SH10_COR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:13 | INFO | Measured response of SH12_COR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:13 | INFO | Measured response of SXF42_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:13 | INFO | Measured response of SXF4_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:14 | INFO | Measured response of SXF41_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:14 | INFO | Measured response of SH9_COR_013.hcorrector.\n",
- "27 Apr 2026, 15:51:15 | INFO | Measured response of SH7_COR_013.hcorrector.\n",
- "27 Apr 2026, 15:51:15 | INFO | Measured response of SH7_COR_014.hcorrector.\n",
- "27 Apr 2026, 15:51:16 | INFO | Measured response of SH9_COR_014.hcorrector.\n",
- "27 Apr 2026, 15:51:16 | INFO | Measured response of SXF32_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:16 | INFO | Measured response of SXF3_HCOR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:17 | INFO | Measured response of SXF33_HCOR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:17 | INFO | Measured response of SXF33_HCOR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:18 | INFO | Measured response of SXF3_HCOR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:18 | INFO | Measured response of SXF31_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:19 | INFO | Measured response of SH9_COR_015.hcorrector.\n",
- "27 Apr 2026, 15:51:19 | INFO | Measured response of SH7_COR_015.hcorrector.\n",
- "27 Apr 2026, 15:51:19 | INFO | Measured response of SH7_COR_016.hcorrector.\n",
- "27 Apr 2026, 15:51:20 | INFO | Measured response of SH9_COR_016.hcorrector.\n",
- "27 Apr 2026, 15:51:20 | INFO | Measured response of SXF22_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:21 | INFO | Measured response of SXF2_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:21 | INFO | Measured response of SXF21_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:22 | INFO | Measured response of SH6_COR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:22 | INFO | Measured response of SH4_COR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:22 | INFO | Measured response of SH4_COR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:23 | INFO | Measured response of SH6_COR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:23 | INFO | Measured response of SXF12_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:24 | INFO | Measured response of SXF1_HCOR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:24 | INFO | Measured response of SXF13_HCOR_007.hcorrector.\n",
- "27 Apr 2026, 15:51:24 | INFO | Measured response of SXF13_HCOR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:25 | INFO | Measured response of SXF1_HCOR_008.hcorrector.\n",
- "27 Apr 2026, 15:51:25 | INFO | Measured response of SXF11_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:26 | INFO | Measured response of SH2_HCOR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:26 | INFO | Measured response of SH1_COR_004.hcorrector.\n",
- "27 Apr 2026, 15:51:27 | INFO | Measured response of SH1_COR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:27 | INFO | Measured response of SH3_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:28 | INFO | Measured response of SXD11_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:28 | INFO | Measured response of SXD1_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:28 | INFO | Measured response of SXD13_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:29 | INFO | Measured response of SXD1_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:29 | INFO | Measured response of SXD1_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:51:30 | INFO | Measured response of SXD12_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:30 | INFO | Measured response of SH6_COR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:30 | INFO | Measured response of SH4_COR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:31 | INFO | Measured response of SH4_COR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:31 | INFO | Measured response of SH6_COR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:32 | INFO | Measured response of SXD21_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:32 | INFO | Measured response of SXD2_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:33 | INFO | Measured response of SXD22_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:33 | INFO | Measured response of SH9_COR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:33 | INFO | Measured response of SH7_COR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:34 | INFO | Measured response of SH7_COR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:34 | INFO | Measured response of SH9_COR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:35 | INFO | Measured response of SXD31_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:35 | INFO | Measured response of SXD3_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:36 | INFO | Measured response of SXD33_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:36 | INFO | Measured response of SXD3_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:37 | INFO | Measured response of SXD3_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:51:37 | INFO | Measured response of SXD32_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:37 | INFO | Measured response of SH9_COR_003.vcorrector.\n",
- "27 Apr 2026, 15:51:38 | INFO | Measured response of SH7_COR_003.vcorrector.\n",
- "27 Apr 2026, 15:51:38 | INFO | Measured response of SH7_COR_004.vcorrector.\n",
- "27 Apr 2026, 15:51:39 | INFO | Measured response of SH9_COR_004.vcorrector.\n",
- "27 Apr 2026, 15:51:39 | INFO | Measured response of SXD41_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:40 | INFO | Measured response of SXD4_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:40 | INFO | Measured response of SXD42_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:40 | INFO | Measured response of SH12_COR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:41 | INFO | Measured response of SH10_COR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:41 | INFO | Measured response of SH10_COR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:42 | INFO | Measured response of SH12_COR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:42 | INFO | Measured response of SXD51_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:42 | INFO | Measured response of SXD5_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:43 | INFO | Measured response of SXD53_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:43 | INFO | Measured response of SXD5_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:44 | INFO | Measured response of SXD5_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:51:44 | INFO | Measured response of SXD52_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:45 | INFO | Measured response of SH15_VCOR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:45 | INFO | Measured response of SH13_COR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:46 | INFO | Measured response of SH16_COR_001.vcorrector.\n",
- "27 Apr 2026, 15:51:46 | INFO | Measured response of SH16_COR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:46 | INFO | Measured response of SH13_COR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:47 | INFO | Measured response of SH15_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:47 | INFO | Measured response of SXD52_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:48 | INFO | Measured response of SXD5_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:51:48 | INFO | Measured response of SXD53_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:49 | INFO | Measured response of SXD5_VCOR_005.vcorrector.\n",
- "27 Apr 2026, 15:51:49 | INFO | Measured response of SXD5_VCOR_006.vcorrector.\n",
- "27 Apr 2026, 15:51:50 | INFO | Measured response of SXD51_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:50 | INFO | Measured response of SH12_COR_003.vcorrector.\n",
- "27 Apr 2026, 15:51:51 | INFO | Measured response of SH10_COR_003.vcorrector.\n",
- "27 Apr 2026, 15:51:51 | INFO | Measured response of SH10_COR_004.vcorrector.\n",
- "27 Apr 2026, 15:51:51 | INFO | Measured response of SH12_COR_004.vcorrector.\n",
- "27 Apr 2026, 15:51:52 | INFO | Measured response of SXD42_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:52 | INFO | Measured response of SXD4_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:53 | INFO | Measured response of SXD41_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:53 | INFO | Measured response of SH9_COR_005.vcorrector.\n",
- "27 Apr 2026, 15:51:54 | INFO | Measured response of SH7_COR_005.vcorrector.\n",
- "27 Apr 2026, 15:51:54 | INFO | Measured response of SH7_COR_006.vcorrector.\n",
- "27 Apr 2026, 15:51:54 | INFO | Measured response of SH9_COR_006.vcorrector.\n",
- "27 Apr 2026, 15:51:55 | INFO | Measured response of SXD32_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:55 | INFO | Measured response of SXD3_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:51:56 | INFO | Measured response of SXD33_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:56 | INFO | Measured response of SXD3_VCOR_005.vcorrector.\n",
- "27 Apr 2026, 15:51:57 | INFO | Measured response of SXD3_VCOR_006.vcorrector.\n",
- "27 Apr 2026, 15:51:57 | INFO | Measured response of SXD31_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:51:57 | INFO | Measured response of SH9_COR_007.vcorrector.\n",
- "27 Apr 2026, 15:51:58 | INFO | Measured response of SH7_COR_007.vcorrector.\n",
- "27 Apr 2026, 15:51:58 | INFO | Measured response of SH7_COR_008.vcorrector.\n",
- "27 Apr 2026, 15:51:59 | INFO | Measured response of SH9_COR_008.vcorrector.\n",
- "27 Apr 2026, 15:51:59 | INFO | Measured response of SXD22_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:52:00 | INFO | Measured response of SXD2_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:52:00 | INFO | Measured response of SXD21_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:52:00 | INFO | Measured response of SH6_COR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:01 | INFO | Measured response of SH4_COR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:01 | INFO | Measured response of SH4_COR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:02 | INFO | Measured response of SH6_COR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:02 | INFO | Measured response of SXD12_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:52:03 | INFO | Measured response of SXD1_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:03 | INFO | Measured response of SXD13_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:52:04 | INFO | Measured response of SXD1_VCOR_005.vcorrector.\n",
- "27 Apr 2026, 15:52:04 | INFO | Measured response of SXD1_VCOR_006.vcorrector.\n",
- "27 Apr 2026, 15:52:04 | INFO | Measured response of SXD11_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:52:05 | INFO | Measured response of SH3_VCOR_002.vcorrector.\n",
- "27 Apr 2026, 15:52:05 | INFO | Measured response of SH1_COR_002.vcorrector.\n",
- "27 Apr 2026, 15:52:06 | INFO | Measured response of SH1_COR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:06 | INFO | Measured response of SH3_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:07 | INFO | Measured response of SXD11_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:07 | INFO | Measured response of SXD1_VCOR_007.vcorrector.\n",
- "27 Apr 2026, 15:52:08 | INFO | Measured response of SXD13_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:08 | INFO | Measured response of SXD1_VCOR_008.vcorrector.\n",
- "27 Apr 2026, 15:52:08 | INFO | Measured response of SXD1_VCOR_009.vcorrector.\n",
- "27 Apr 2026, 15:52:09 | INFO | Measured response of SXD12_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:09 | INFO | Measured response of SH6_COR_005.vcorrector.\n",
- "27 Apr 2026, 15:52:10 | INFO | Measured response of SH4_COR_005.vcorrector.\n",
- "27 Apr 2026, 15:52:10 | INFO | Measured response of SH4_COR_006.vcorrector.\n",
- "27 Apr 2026, 15:52:11 | INFO | Measured response of SH6_COR_006.vcorrector.\n",
- "27 Apr 2026, 15:52:11 | INFO | Measured response of SXD21_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:12 | INFO | Measured response of SXD2_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:12 | INFO | Measured response of SXD22_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:12 | INFO | Measured response of SH9_COR_009.vcorrector.\n",
- "27 Apr 2026, 15:52:13 | INFO | Measured response of SH7_COR_009.vcorrector.\n",
- "27 Apr 2026, 15:52:13 | INFO | Measured response of SH7_COR_010.vcorrector.\n",
- "27 Apr 2026, 15:52:14 | INFO | Measured response of SH9_COR_010.vcorrector.\n",
- "27 Apr 2026, 15:52:14 | INFO | Measured response of SXD31_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:15 | INFO | Measured response of SXD3_VCOR_007.vcorrector.\n",
- "27 Apr 2026, 15:52:15 | INFO | Measured response of SXD33_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:15 | INFO | Measured response of SXD3_VCOR_008.vcorrector.\n",
- "27 Apr 2026, 15:52:16 | INFO | Measured response of SXD3_VCOR_009.vcorrector.\n",
- "27 Apr 2026, 15:52:16 | INFO | Measured response of SXD32_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:17 | INFO | Measured response of SH9_COR_011.vcorrector.\n",
- "27 Apr 2026, 15:52:17 | INFO | Measured response of SH7_COR_011.vcorrector.\n",
- "27 Apr 2026, 15:52:18 | INFO | Measured response of SH7_COR_012.vcorrector.\n",
- "27 Apr 2026, 15:52:18 | INFO | Measured response of SH9_COR_012.vcorrector.\n",
- "27 Apr 2026, 15:52:18 | INFO | Measured response of SXD41_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:19 | INFO | Measured response of SXD4_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:19 | INFO | Measured response of SXD42_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:20 | INFO | Measured response of SH12_COR_005.vcorrector.\n",
- "27 Apr 2026, 15:52:20 | INFO | Measured response of SH10_COR_005.vcorrector.\n",
- "27 Apr 2026, 15:52:21 | INFO | Measured response of SH10_COR_006.vcorrector.\n",
- "27 Apr 2026, 15:52:21 | INFO | Measured response of SH12_COR_006.vcorrector.\n",
- "27 Apr 2026, 15:52:21 | INFO | Measured response of SXD51_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:22 | INFO | Measured response of SXD5_VCOR_007.vcorrector.\n",
- "27 Apr 2026, 15:52:22 | INFO | Measured response of SXD53_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:23 | INFO | Measured response of SXD5_VCOR_008.vcorrector.\n",
- "27 Apr 2026, 15:52:23 | INFO | Measured response of SXD5_VCOR_009.vcorrector.\n",
- "27 Apr 2026, 15:52:24 | INFO | Measured response of SXD52_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:24 | INFO | Measured response of SH15_VCOR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:24 | INFO | Measured response of SH13_COR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:25 | INFO | Measured response of SH16_COR_003.vcorrector.\n",
- "27 Apr 2026, 15:52:25 | INFO | Measured response of SH16_COR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:26 | INFO | Measured response of SH13_COR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:26 | INFO | Measured response of SH15_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:27 | INFO | Measured response of SXD52_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:27 | INFO | Measured response of SXD5_VCOR_010.vcorrector.\n",
- "27 Apr 2026, 15:52:27 | INFO | Measured response of SXD53_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:28 | INFO | Measured response of SXD5_VCOR_011.vcorrector.\n",
- "27 Apr 2026, 15:52:28 | INFO | Measured response of SXD5_VCOR_012.vcorrector.\n",
- "27 Apr 2026, 15:52:29 | INFO | Measured response of SXD51_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:29 | INFO | Measured response of SH12_COR_007.vcorrector.\n",
- "27 Apr 2026, 15:52:30 | INFO | Measured response of SH10_COR_007.vcorrector.\n",
- "27 Apr 2026, 15:52:30 | INFO | Measured response of SH10_COR_008.vcorrector.\n",
- "27 Apr 2026, 15:52:31 | INFO | Measured response of SH12_COR_008.vcorrector.\n",
- "27 Apr 2026, 15:52:31 | INFO | Measured response of SXD42_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:31 | INFO | Measured response of SXD4_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:32 | INFO | Measured response of SXD41_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:32 | INFO | Measured response of SH9_COR_013.vcorrector.\n",
- "27 Apr 2026, 15:52:33 | INFO | Measured response of SH7_COR_013.vcorrector.\n",
- "27 Apr 2026, 15:52:33 | INFO | Measured response of SH7_COR_014.vcorrector.\n",
- "27 Apr 2026, 15:52:34 | INFO | Measured response of SH9_COR_014.vcorrector.\n",
- "27 Apr 2026, 15:52:34 | INFO | Measured response of SXD32_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:34 | INFO | Measured response of SXD3_VCOR_010.vcorrector.\n",
- "27 Apr 2026, 15:52:35 | INFO | Measured response of SXD33_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:35 | INFO | Measured response of SXD3_VCOR_011.vcorrector.\n",
- "27 Apr 2026, 15:52:36 | INFO | Measured response of SXD3_VCOR_012.vcorrector.\n",
- "27 Apr 2026, 15:52:36 | INFO | Measured response of SXD31_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:37 | INFO | Measured response of SH9_COR_015.vcorrector.\n",
- "27 Apr 2026, 15:52:37 | INFO | Measured response of SH7_COR_015.vcorrector.\n",
- "27 Apr 2026, 15:52:38 | INFO | Measured response of SH7_COR_016.vcorrector.\n",
- "27 Apr 2026, 15:52:38 | INFO | Measured response of SH9_COR_016.vcorrector.\n",
- "27 Apr 2026, 15:52:38 | INFO | Measured response of SXD22_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:39 | INFO | Measured response of SXD2_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:39 | INFO | Measured response of SXD21_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:40 | INFO | Measured response of SH6_COR_007.vcorrector.\n",
- "27 Apr 2026, 15:52:40 | INFO | Measured response of SH4_COR_007.vcorrector.\n",
- "27 Apr 2026, 15:52:41 | INFO | Measured response of SH4_COR_008.vcorrector.\n",
- "27 Apr 2026, 15:52:41 | INFO | Measured response of SH6_COR_008.vcorrector.\n",
- "27 Apr 2026, 15:52:41 | INFO | Measured response of SXD12_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:42 | INFO | Measured response of SXD1_VCOR_010.vcorrector.\n",
- "27 Apr 2026, 15:52:42 | INFO | Measured response of SXD13_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:43 | INFO | Measured response of SXD1_VCOR_011.vcorrector.\n",
- "27 Apr 2026, 15:52:43 | INFO | Measured response of SXD1_VCOR_012.vcorrector.\n",
- "27 Apr 2026, 15:52:44 | INFO | Measured response of SXD11_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:44 | INFO | Measured response of SH3_VCOR_004.vcorrector.\n",
- "27 Apr 2026, 15:52:44 | INFO | Measured response of SH1_COR_004.vcorrector.\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 7,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "orbit_response_matrix.measure()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "id": "2fd3fe46-6156-4b1d-a269-7c8c7b22ee92",
- "metadata": {},
- "outputs": [],
- "source": [
- "ormdata = orbit_response_matrix.get()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d00f9cd7-739e-4a85-a5c6-a1229d8b3155",
- "metadata": {},
- "source": [
- "Let's visualise the orbit response matrix"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 9,
- "id": "7e0ddfe2-241b-4ee1-9eb2-bee4fe06ce03",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- ""
- ]
- },
- "execution_count": 9,
- "metadata": {},
- "output_type": "execute_result"
- },
- {
- "data": {
- "image/png": "iVBORw0KGgoAAAANSUhEUgAAAa0AAAGiCAYAAABUAJniAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjgsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvwVt1zgAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzs/XmsbWl63of9vmlNezrjPXceap66uquL3UVKIikzbQsKECexEiCBEghBDASCKCCiEVuEE4htSeEfQhBZomDoD0FEEMgmIwQIHCJxwkSSbaqbzR5ZPVR1jXc+8zl7XGt9Y/74TleLZjugJHYXL3s/wAXu2evss7619l7rXe/7Pu/ziJRSYo011lhjjTWeAMiPewFrrLHGGmus8QfFOmitscYaa6zxxGAdtNZYY4011nhisA5aa6yxxhprPDFYB6011lhjjTWeGKyD1hprrLHGGk8M1kFrjTXWWGONJwbroLXGGmusscYTg3XQWmONNdZY44nBOmitscYaa6zxxOBjC1p/7+/9PW7fvk1VVbzxxht86Utf+riWssYaa6yxxhOCjyVo/dqv/Rq/8Au/wF/7a3+Nr371q3zyk5/kz/yZP8Ph4eHHsZw11lhjjTWeEIiPQzD3jTfe4DOf+Qy/8iu/AkCMkRs3bvCX//Jf5q/+1b/6o17OGmusscYaTwj0j3qH1lq+8pWv8Iu/+IsfvSal5HOf+xxf+MIXfuB7+r6n7/uPfo4xcnp6yvb2NkKIH/qa11hjjTXW+MNFSon5fM7Vq1eR8g9e9PuRB63j42NCCOzt7f2e1/f29njrrbd+4Ht++Zd/mc9//vM/iuWtscYaa6zxI8T9+/e5fv36H/j3f+RB618Fv/iLv8gv/MIvfPTzdDrl5s2bvPC/+N/R/glQ9ysI4G/2DN4saV/pkI9LzLkEAa5OhKuW8qHGbwdSkKhTjXQQCwjbDhkScilxOxF5ZIhNJDWB8l6BjJHliw5ahTlRIMFf7aneqShmienrltQpilMFHvztnsHXS1af6tAfVLhJIsmEmDiETFzanGF0YPGlbRbbQKuhl/iNgJkKkgRudKhOEA5qAGIVwUSKfUX3nKXQnnB/AAkE4Pcsg28VtK+16Hca/Cjh6wAKNr6l6McC+8IK/V5NqMGPAhSRyZsaX0n6ZzvkcUFKgrDpKfcVccthziXlfY3ucxV59ZTH7iQ4LrA7EdULzDIRbljM2zV6lVjcTiQJSSWahxL3ySXq20OKWWJ5HaJOxDIy/FBjX1tgvj5gdTOAF5ipRDlBem6BjZry/QI7SUQDZi5RS4G43uJGEfG4gl7gNhJ6KdAxEjc95lCTXl6SksA5BUCKArygfLvCvbyi+NqAxbMOuVKUJ5L2jqUc9hRfGuEa6K56ZC8pjyXdTYseOszbNTFK7E4gCShOJelyjz7VeCPwJaiVRC9AOoHfc1AGxFFBfymilgq1hOoM+u1EvN1ivtmwfNpfrEPgX1wx+ScNuo0cvbYm967xxxex67j/N/46o9HoX+p9P/KgtbOzg1KKg4OD3/P6wcEBly9f/oHvKcuSsix/3+vLVwz1wwHuuQ51r6I8rGh/omfwrQ2WzzjUJ1v6hwPoFMW0wj/lKB9X2EEifdISWkWcGlRfQh2giVTniv5WQB9WRJ/oXgooL9n4To2dQP+MRT8sKE4quhc8tgxs/vYYOxG0z3eYhyXlQUX3Ux2jr22w/FTH5Ks1wkPSAkh0YoMOaJ+zlPsavxtIVlK0FX4voDpB9VZD3PC4ZwJiqjHnilBF3DOBwQcNMkUWLzloJcWRRk4r2p+wDH93k9VnWsq3GkQdiSrR/5st/axk/K1NVq93FO9WyAgxJNLn5vTLkuatMf0dhzrXqFWFu+2pDkvqWytGf/qMmGDW1vCgxswV8Vag2W/oLkV8JSj3a/rXe7RxNF8fE6pEvxPpnoHBWxXLlyxyaKm+MSYGsE1k9VJk+J1t7E8uGX19wPJmIJYSvKD5TokpBf6FluZ+SV8I4g6kDagPSswDcLccJFAzg92JxJXALCPiimPyGzsEI1hdlkSd6HcSSUB3JzF4t8L+yRWTL4+YP+9wlaI+KZH7Y+TnznHTmvG3BiyfCrhaUp2XyCMBry7wQdK8W9NvJvw1KE8quGwpZhIZFO6Ww0lIrUKfFxgbibc9gwc17S1PbDyLXiFmiuZuhXujZfL1IfNnAq6SVO9XdP+DOVXhkN/d+sO/ANdY448Y/mVbPB8bEeOzn/0sf/fv/l0g96hu3rzJz//8z/+BiBiz2YzJZML1//jzlO0Q1YN7qkM9qBAe/PWe4sOS6gTmLzm8EehzlTOXXYeaKspDSb8T6bcjspXohYQ6IExEnyi6qwF1aIgFUEb05RX2rGLwnmb5cg5cSQESqmemLM4bRm8a5p+ymIdFXsftnsE3SrZ+bh9hIg+PN/BeIc4MwglkL4g7jmJfETYCKUpYKfwwkupIeSIoDxXdXiRs5vWEKuHHARVg+F2dA+mdHnO/JGnwV3qGv1uyfL1Fv9dglhCLhK/BX7vY9skOfb/CTAXIhBuAv2qpPzDY6w7mGpzEb3jqQ0m9L/A19GOBH0UAij7hdzzyUUl3KSJdzjwUkfTqkva8on6vYHUtgIDqQKFswn16iV0UNO8WtHuRZCLDDxX9J1cU32xYXYmkYQCZoFPUDxThVoc6KHCFwG8GRBHAScyBRpWeWCY4K+i3IqoTjL1l89PHdJ3h0f0dpIXBXQUiMX86r3/wUGJfXVF+ZcD8OYeaK6QVDB9BtyEILy4pvtGwvBUQViKdoNmHUIJ7psM8KOiHEAooTyVs2bymhxrf5EwqiYTuBMZHwiWPeadC9YnFzZS/OyLR7EvsyyuKbzQsng7IlaScCkhg/+UeQNdY44lC7Dru/m//Q6bTKePx+A/8vo8laP3ar/0af+Ev/AX+/t//+3z2s5/lb//tv82v//qv89Zbb/2+XtcPwveC1sv/q7/J4rMKfWxQHfinOuTDHLjsjkfWgcG3CoIUdLc8opWopcRPAmkUKPcV6lzT7wZCndDnClEFqAL6UNPdCKh9g24FIiXcKJGu9FTfrFi+YlGPCsxKoPqEHUN4qqX5Ss38VYt+XCA9+Bs9u/+lRnjB+W1JLCDe6KCMiEcVYiUJO47iSBGHgShy4ApVQo0covHE/ZJiLuivBuShIZZAGdCXOux5eRFILwKXyqXL4e+WzF521KMed3eICCAChGs9g2+WLJ5zDLZbuvtDkpUoC2HPUt7XuL0ArQIr8aNAqiJ6plBzRSgTYRhRFoo24S955IMcuIQXqB6G9wX9NvhnW8y3GlZXAyIBUTB+X2DH4F9eod8c0F0OJJ0Y3FW4T6yQ7zeYM+h2IVSJWEXqfUm8amGuMQeKUOcbeqwjeglaRuIgwkkOXHoFw0eCUML8RkKbwLVbxyQvOP6tK6yuB0SE5nuB66sDFk95xMiBk6SVZvBA4j6xwrzZsLoaSSOfv3yton6kiLc65IHBVnk/xVQS60C65DBnEnFY4oYRP0qolcB04G711MITvz3C1wm7FfM69iXu5RXmInCVBxrpwY5/5JfmGmv8yPBEBS2AX/mVX+Fv/a2/xf7+Pp/61Kf4O3/n7/DGG2/8gd77vaD12n/672G/cpXFi+77getOh3xUkhAgob4xZ2UN5bsldjf3s0SXe11qqyfUEfmoQHiB3UjoqUKYCAOPfmRo73h06fFHFdIJdJ8IN3uqNysWz3nKcY89rBFOUMwE/pmW+us185ct+qBABjBPz0GCvTcEJxjdS6gepp/0xKAQnSRu5v5RKhOhAHVsUDYRC/AbAWki+kjR3fDoxwWqEwiRcMNE2uupvl2xfLlHPyhzz+1KT/VeiVnC7BOO5CTFsUKknHGVH5SU54nZy56AwEw10kK4ZCkfadx2AKuICHwTqUY9pvb4w5J4XOImEeWhWCT8FY+8V9JdjtB4tAqEWcHggaR/pUN/u6G9fBH8Kk9YGEbvK7rXVuhvN3SXEslEBvcVqzuOctzDewOil/hhJNaR+lDiNgN6t0ccFcTzglAlQhPRLegYCZOIOMyBS3qBcFCeS6RPjA4CySROftZhvt18P3A9kthXVqi3BpTTxPzWRT+uiAweKNxLK+QHDeYc2kv584hlXk+8apGnGqclvrroq7UCsWVz7/SoQM1VXo8VFFOB0oH4XEt3XlLdN7SXf3/g8q8vaUrL9N3NH+5FuMYaHyOeuKD1r4PvBa2X/srfYPWyorpb0F4JqJVC2ZxlqZlCdgJjE74Q+C2POVP4JpEQyE6gLCDAj3MmIDqJHybUSoKMxCZijjQyJtpLCRFzSU/ZhNv1FPsG3cLyWkREgbCgO4Hbc1T3DO21gJopVMz9FDeKIGEwblEq4D8Y0FUSokBaQWwCqhWAwG96RBSwVMggQEZSkdDnkn43IkxEzDQiCJRLuG1P9cDQXvfoU50D1yCCjjT3Nb4EeynkbDKRy3wmUD0wRAV2JyI7gXSCMAromcwB3UrMuUBbECnRbyfsKKEW+VzKlNArgdvO2amy4EeJoCCVkepI0d106H2D6iEMElFDaCL1Y0V3y2EeG/wgkUxCzyTaQX/ZEZPEnCmiyYFCtQKzyufGNaDmCuEEocoBVHoIw4icK+xOAECKBCKhdUAEUPcquuue4oHBbuZt5amk2wuo2qHuVTlbHSSQeVu/GxB1Ls8SBKHKazVzQRgHZCuJCGKRs1ndgrICN4mkIiJnGj9MiAjSQnkObgRux2P2DW6SgER5LumvWYZvG7SF6Y31OMcaf3zxrxq0nmh6kvzUjPE3DZfe2Gf3awK51xJMovlAo3Y7bv3EQ9KzK9xGpLqv2Lp+zu5JT2EDg2enmOfn2EsePZNsxY5LkynjRxF2e4SVVCcS+fyCjefP2P66YPAIuNwRChi8Z+CZJdd++gG7XxYM7grY6/FNYvi2YfezB+x+WVDeWFAdCpoHgp2vSHZ/W7L965qt/3PB7vY5l/YtQ9OhBg5zqhhMOkZFx/ZvKyYfBLjUE0Ye2UoGbWRye8rGNyU7XxSkbUvY8EQlGNzVbH76iN3fltTPTVFdZuLpc82zf/oD5HNLdr8kKG7PERHMucQcGT79028z+MQZW99N1OMWUQWKA8XoyoLtU8dr2/f4n/wP/yn/y//p/4P/3v/4t3hp5xG7p5bNy1OqQwE6ITYsG2/D6JVTPv2nvoueSsxCIq0kPrNi+4sK/eyCF3/2/dw/XEr0TMFLC7a/oLj8qQOGj4CQg197xbP9JcnGtyQ7t08ZdQ61zP207oZjeDex89uSTbNiY7KgPJPQREzp2N13XN884qn/rOfW/9Wx/UXN5pcMxdsV+m5FuNOx/TuKq595zPg9kUka1x2DDxWTL5Y8/1Mfop5eMPpQkATYm5bmgWLyZcPVp48onp3TnCVUm9mBg0eCvcmUnbSimCfYcpjnFsgXF2gb2T2x7F07pXkEaRAo7izY+qkj4qZj5xuCy68eMHpfkDT01yybX9H8qX/7G/z5P////rgvrzXW+COJJ4Ly/t+GXkmqJJnGAmFkJjloIAlCkkxDiZOSpBIIySpppM4lr9YZIpAUJAF90jggSEmICSUhOYFDsRIaUQqihOAVUgMRXFKcU+IrQdSC4BTCJFKUzJJBGknvNNQgtEB4kAG8MkigxRG1oo8JryQasEkihaDQkoAmughJkBSEKGiFRihBUIpogZBvvCkKFsmgjaR1BmESRBAejmONjZKgJb3XCA2yF4gI+2FIGzWFFvRBE4VAIuiSwijJcRrwTthlLDtmVJyLml4oXDKZDRkEQQuClNho2E8DYglJJIQXeCmISmKD4iA0xCJlmn4AJyRRSc59STAC4RNRAAqCkUQlWISCqCQi5awjyrwNLXFJE1POYlMUBCHo0ThRUY0qkoYo8+eGy8zNIARRSs58RTAC6QWxAhAk4MANsEGhCvI2kb8fCcG5r+hRGC0gChKCKAXLVBClzj+7fKwC4GI9bSpISpC8wFrNosrnOUjJNJbEQiC8INUQpeRRGoGMP+rLaY01ngg80eXBF//Tfx/xjcvYq55oIs17mvj6AvGNIatrEbHhGIw6VssS/W5FHCRCE1BTRTETpGs9/VZCPC5QK4nfDKgWii4RrzjiBw3tDY9qPEWM9POSwQNBeG2F+MqI1W2PHHqGumc2axh9V+H/xALxpTH9LUeSieZDzSv/xrtIE/nqBzfprWHwfmYytrcDvkkURxK918NM0yeFHybkSlKcg16Bvx6QY0e8V9FdC7BS6A7qfbDbIJ9fIr46ZPWMR/SC5qGE1+f4r08ozxLtCx4ncsmzua8Qry0I3xxRHUL/tKevJElHqscS+VQLDyq6C2ZcPUs0XSRsBLoJ+NYgpgpdeUTtSY9Kujse9aiAMlJWjtHNGYfHY5pvlcxf7zAfVLmcJiPNs1NOz4cMv1Yw/4kefb/EhAh3WvRXG+YveKrtDveoJvWKokvIqx3ybkm7AfpaS1po/LRAtwI9tMgIYa7p9yL6UFMPezauTbGd4fjuFqqHje9GYpE4+jMO/UGFMhGut5jfGdD+ySXyrSHFOcja0w4l6sYK89WG1ac75P0KM5VIGXCNQF5r0e+VdNc9rDSyy+xBsVDofY3f8XRXL0YVphI58FAH1HsVOgXmrznCUlMcapQOiCs9+usNqzdyj48bPcoE2pPmY77S1ljjh4cfy/LgsOwgQloq1JalOobN0QrtEzhJCJLtZkldWySJ1ElEEzAxUh4Jmj5Q1RapI1iJEKCNZ7AMjJsu97xCfn2yt0DUnuY4sTFaIj3gJd5LLl89Q4w99SFsjFfIAKnViE1HeQw/c+U7/Oy1b1NvrxCbjlhCVIJoFQwCxSoxUR2NtLlHo8iBK0Tqg0TjPeO6RVhBjJIwyOSE5iBRLhObo2UelLaStOEpj2Bna47qoDpLpJnOmcampzqCrckC7RLleSSdaWglYuwo54mNsqVMHqwkVglWEu4V2P2Kdl5hkyQBdR+Y1C3FMiFNIGqQC4WeSe5cOqIYWoppQqmIr0EtJJxpru2cYUaWYgZCJUKT0KeKze0F9TQidWQyaGHDE+qEmkkmTcvAOlSIDOqeYrMnjgLCwiA6RrrDdAlRRJIQjLzj5afuc/vGIaHKQ871gaU5tCgTCSWoM8nGzpL6JFFXjpQTMcwjhZ5LNncW1GeJsnCgIEF+uJhKxuOWpvMUKUCRoJNUxlFJR3WScplQQtKQkqBwieGwozxL1PuBCCDzYLueSSbbC6rTRFU5khL0y4LlvPoYr6w11vijiyc60/rUv//XmN2uEVODMgGKwGAKiy2IC4PuoTGWVqvc6F+pPFRrEkJEyg5wkr6BqED2EmkCmoC2gtVAwNygQ8QUnlZplHHUM8F8W8DUoFxiZHqmukBVjuZMMNvJ20QRETrwyuEpIsFbG1tYpZAjh1SRcFaSEggTqbpIKBMuamKQhBKMcugUib2mDJFVLUhLQ6wSQkUqabHOMFxGFlvAeUGqIkIGJvPI2aai0T3t2SA/nuiI1IHRPDIdK4Zlx+q8ISaJ0BFhAs0yYgfgrCEiEDIhYkI4CS6X0mIZKVykTAFXQlwa+mEuORqf2LUtx1UFQwenBe0Gme0YYbfvODcFTBycFLQTUBZGzmPHgTArGVjPbKQJUiBjYtAH4iDgek21SrhK0JUSIlQ+olXAS0HoNbaGpg/shpZeKh43NUYGblSnpCjY39/JGVsnGASHHUXMsWa+KdGlg6UiRsXI5W3yTLMaS0QR8lxdlAxsIDQ54+0LSURSukgyiWTycHjsDb6EUCSKHowIuCpRRYc9b/BFfjBRHQyCxw4j+lSz2BKYM5XLp8OP9TJbY40fKn4s2YOf+k/+A/rHu7TXAvpEg44wCJhjRbeVqAY97qwieYkQiTjyiKXK/Qid0JUnyQQzDQlCDXKpsvSOiMilwm5HjAqEs6zIIeUFrftQ0+4lqtrijipSEigijD36saa7HlBHJjPoqh4E2FlFCoLBNKB8pldHe9FWrAJ6JUhFIkiBmiokiVhlCrxMmd3nNxLiVKN8fo/XAll59LGmvxiIDk1mF6qpovCRxbVIchJzqkhVhCqgppqqDyyuJkKUmeqvE6kKmJkgjCKpVwQNYRCpCkehAu68ICwMvklom6nmcRBJZ0WeOyoCpk8EqymXF3Ncj0q67QhFwvhAcJpqBv6qQz7M25TNZVk7SRSFJx7msQU3TIiUKNrMONSNR0w1vtWE5oJx2CeUTESTSAuNGyb0QiISSAcyJja7jqTg5I5EXAxEq5WgsIm440iHJWUbWVwBksjD0l0ibjvSSYHuoN9MRCUQIVF0wNjDXOEKQZICaUGSkLUnVok414j+gpHa5QBsdCBtOfpVgT7R9NuZFVnYSNzxyIcF6emWWnumj//gF/Iaazxp+LEMWi//0l+j22iQK4kbgVpKMBFkQlhJEQPtQFxQ3CVSRkKVt4leoEQk6USUIGIu5USdbz6YCCk34yWJbpCb5aoTiCJrzwkrKUJgOZF5WysQJpBkziy+Rw0Xjc/U+gu5kiEWRaRfldgiZzBCADIifSYPpDIhPNArUAlUvnkLn9UpBBGx0iQJQkcgoXqBHSb0XBHrCDEPRas+lyP9MKLmF4ErgUyZBReUIDQp92Z0Pn/S5vKVsHk8oCAgRaKvBF5nqaVYJJTLN+pgQLQSGRN+mMko0id0TLgmIZYa6RNxmIhJIENC+4QbpI8o4dKCEAlNwpeJmCRyJYnFxbFH0KSs8CFFnrcDks7rEDIRFVnNYxwRJKQDkcC4TGxIQeGrhJhr3Ciiu/w9cEZgpCfNCqIG32R1DU3EFwIpAqwy2SLUCekvAra5KEUrASJrDqoYETLhtcg7dzlzllagQsIQsFqSiohYatzw++sIRaKaQxEi54Pi47i81ljjR4Ify55WP0roqWR0dcHwPoidTFWXrSSNPOVey/hhot4XyGHuW+ipRJhAeXWJ3LQEKRC9pJKeoempFgEx9ohOIYKAiacYWUYfCsopsGNJvUK1gjRx1JdXjN8VlMeCuGtJTqGWkubykuE9gb7UUj7QVB9qhh9KhncF1fuS8n1FM+gYTANlaZEyIjqJqgOFCDQPBdUqkC5ZYhmzmgeJctRTHQiaxxB2HXEY8vt6QbXbMrwnMNdWmVIOBAM7t85h0zG8KzCX2xzcgyBIwdU7xxSXWprDhB73yJDn1fTIUS8jN0ZnvPHqd/nJT3yXZ597yE61ZGAdg2GHmUn8Rc+oPIdyr+XGzWOKI41eZKWIMIjUjyRyp2fvqVPUmUIvLtiW40DzSDC+MaM+vFDA0JlV2NwXVIeC4faSps0MylCA04LiUDC4L2gKS1NY1CoHEkFi0AY2qwWXvujY/kqgfiQpDyUBhRcKXyeqA8Hk5pTmscSNIk4LzFygTxR7zxwjd3qafUkYJFwJaiEwp4rJlTn6Ukc1hSQTrgY9FwybjpG3eRh8y8ElSxoFpIOB9YxHK8oziGOPuNKhd3qSSdTHMLk6o9mX+FHEa0F5LLnx1BGvvHj347y01ljjjyye6KDlNwN6pvAbAb2QBJP7VWqVSQR+K6CsQLWSJCCa3HcBiE0kjGK+2fms9ZZMQvaCYHLyKfs8GxRGAbUUH21LGtRCEQYJvxNQK4GygqgglnlA1m8E9FwSCnIXP4qsmDCTyP0C+bAgmPxkHiETGZwk6ZxV6alELiVRXejUJRBeEAYRtczlvCRywIgqZ5nuYp++yrp3sheoTuK3A34Q87rKrPggrUCtJGEz4Ee5RJXkxTo6SbzI9JJJhD1PuuZI1xyijAgrCEVCuPw5xCJleaxhxG8FEvl4hcvZnZ5KfJ1wmyF/41I+l34c0ecKN7xQsLjI3nwTUTOJWkhClT469qTzwLSw+TzmzzQhvfhIVV50+W8Up5riVKPPJfpcIs80cqYIg4ieKtwoK9SLeHFOVxJ9qnGTiK9jzvpCHoZWnUCf5QzN1xHiBR2+TIj+4jMTF2uUEJqEH0cSOVMNdUK6PPcVioTfDoQiZ8RuFPN3Moj8GZ1LwmVHumF/1JfTGms8EXii57SUjkQD/dEAcStiHhjinkWclaRWsVqWmDseb0GdKeSmRxTZBqRblEgTkVUglQJnDaGUiIHIliZjhzgyxJWmMwL/jCcESfHQEPd6OK1IK8VCVhQvWqzXVPcM/oYlHVS0Jw3yZkTeL9h6+QQh4PBgQvCS+FgiraBdlcRNgVwa5Dggi4BvNU5D2APlFeVdSRgl5NiRzjW2L1A7Cd9DdTf3dcRWD+cl3azCX0+IDyvSlR75oEK3ifNHI5IzLG9G5N2StNsjH5boOZzc28SjWF0GeWqQGx65ELilIYwEx7Mxq2+U0AS6UuJ8SVSatBKIDU8xk7gdsAOBP6w4riXFnSXLZUl5qGh3BP0WiBPDdDFBXV/RtQXVQ8XqiqDbgXh/ANcd1aGmvZYwA8/qekGKCXFUwUbAnAqiS4iRx15V2LmAzmSR4zpgFhCGgs4opC3hZyzRS/qFQnhojiJRg70N/QbEB0PSLUu9b+ifdYTSIHtYvDVBCI296aiONP1TgVhqQgX+3gCMIOx4zKkmjRJhmOgWVbaOSYnikSaOwU8SFNA5TVoK0nagPFDI44LujiAJQTcWxMcD0g1Ldajpnw64oeHh4y2Oi3U/a401fhCe6ExrWOen0Xhe4K446oeSweYK5VN+yneK4uaKtOcozgSDoseogLCC1CuM9hRDCyaSekkQElEFmlmiGnXInsyYk6BvrwjjSPNI0Gy1uVfSK1yvqZ+Z47cDzQPBYHuV+1Jzg73iqR8qPvncB7z2yruI6x32SsAPIJSC0GrcOKIXMFCWUjlEm/sjdjNBgMF9SeUC9ahDtoLgFXYj4kYwvCcop4Jmu83MtlZj9wL1fcXw8gLdQn0E4bhCthJ7OVA/UAx3l2ibqI8S7nEFc4PfDhSngkHTUeChk5lFODd03x4x/WDC9GTIKhoCkqKFatxRzkCUMZNFzjTxpGD31glyw1KdgtR5repMEx+XbF6fwpalPM39KzsG9biguLqiPgGhIoNxi9sLuHFCnmjKSU/VB3RI1IMesWfpdyJ0kjIEqqqnWAJlJAhB6RI7nz5i9PI5bgSxhOHDwPCRR5qAa0AeGMz1luYxFI3NvcEE6r0SfaYprq+oj8CUPrMCJegHGnOkKbc6qjZQpECsE2mpkVVE60D9SFCe5V5WLBIRiWwFZrOnOszKKTFIULm8KI8M5mpLcyAoGkcoYXnacHK8lnhfY40fhCc70/rA4Lc9wiv0UuIuear9ArvlkU6jThS6N6jwvXKdyooMIaHnEu0NSSeChNRkdh4y91bUTGU7kJVE9QrVaaQVuN1A8cjQ72STQG0VKphMgrjiKR8U9Lse2SvEKhsGrr41RsmIsAqZBGnXkiLIqFGtJAzzPFRUQIrIPntAxc2IKxJRiLz2SV5PLBKpiLgbAV8pyseGbtejVpKEwO4EBg8L3GbADBwilB9ZodjdwOBRgZtEytKBKhFBIFuBn0TMuSbWKd/Ae5Fp+JOsCqHnuUQXy0SMoFtJnAT0ucRVuYyGF/B+jbIKf8VhjhS2TIhALqt9WGG8wl93mGONKxJ+kCiODP6KQy8kqi8Q4qKc1iTKc00cRURU6EcXChkxry35HABSHZGLXBaOUcK9CoIhlAmpA/qT83wMR8NsChoExZHG3cjah6sm4qsAC0ksJerQ4K969JGmMwm2PanOpJXiXBMmWXMQBaGMmFWeX3OXPeiEOc3KK6FKyCQQS4m/5FHeY440QVysNUBxovFXHWZf045yqVtckFvWWGON34snOmiFlYZRIjUBcZJv3GFaZXYciYLA8nBAlFkENnYliETSCUnCzQ0xSFIdSU2EXhKdph0E1LLMDL6UUAG6/QZRQLft8dMqD96KhEmB6aMxwkB3yRHOL7apgDzTdLueL9+/k2WfSoOSoHSfg1ghkSuFqxPRFUgSokgon3LgKiPdHsROEVaSVEZkArFSCJFoLwe8EzCt8k0b4FzRXgqE4wFhmFXgI4HkBepM0+0G4llDaDKrL8hA9BI109hxILYlQieEjKhOEZqE3Q5UIVK7hHMKlxStUfilQgw8opdIMmswAo/3N7PU0sQhe4mKeSYJFTk+HBG1xE1c7rkFclZ5XCMmeai57wpUUggpcKPIclEhK5+diJeaFBRK5pv+Kmq0U4g6K6lHmZgrg313j6RANQkpwV/JUkyyFciU8j6PGsS2RS10vhJUpL0qwEbaowaxmZ2NhcxZYbcLKUCaVsgmIHxC9Pkhx1mdLaR3ckaobO6TRpmwUhIWJWkrM0uLNtIHSUrQTxLpJK9DLjVSgh5YSgIzW3+cl9caa/yRxBNdHmTToy/mX+IwD4K6jYRoc61HlgG/FfDDiFgoQgkkkb2ldCSOQm6YB5HfU8WsU9hlBXPRClB5rsltZhkgOdX4jTzjg0jIwtPvhEwZPzW4zbxNphxM1blmeSuyeCoSxoHUBAZ9YLiI6BChzBleMCIP83pA51KT7gScGIgCXydEJ/Owr45oAhwXyFbiJgm5lAgZoc5K7nY7IleScFKiXELAxXoUdjOzEf1xiW4TMlxkKkuFr7PmoowJUQR0D+VpZjIWwqFlQMeECAJXQVppqCI6JpQFFSLd5ZiHuaeG1AQMEdmTZ50uXdipnBtSHdEioJfZFiZNTSZibEZk5RE6E0T8IBE7TUwi24+McplPOkhC4JUg9RJR5oAhU8Jd9YRdjyH/3vzhkPnjAamJmJjQLdjNCKcFYRyRPmGWAnMm87jCZiSdGeIwIlJeuzmXqFbiRonYqkzIUQltcykwCRBnuWdKFTOhxufhbF+DONfE0wJRBVIR0TGiO7CTvI44ihgXMQSq77Fc1lhjjd+DJzpotfeHuJ2AWQgkechVnmrcZp45igclcpW1R2MdEauLwCUE8kwh5xJ5wZBLSSBW2b046YRoFX6cUHMFJ1n5Qojs3yRPs727Wko4yIOnIib8KCKPDG4nomcCIbMDsXxUoh6WyJSVLLhh4ekeFfL7fl/gspLUBOKGx48iKQF9VvWQy5xxMQq4jYtAeq6x23mYWJgcCPWpxo0T3eVIMSfPkKm8HnWu8aPE6lqkaMkeUCKSqpAD1wCSk4gIJZ4Na2nOQD42iE58FBxEFLga0lyThgFloZqBOjLITtJvRTguiGOPDFC2CXWkUasLe5VjQxoFTIroVQ4UcqFgv0SYSCojSkT0ReAiCNJBCVZAFXLwdikHLi1IK4WoA4WPlL2nCJ44DoTtwPL5wPKpSDoxxInHuKxG0W9FOCoIoxzoCumR5Pk1u5WNJUOV8JcCqghIvr+euNJEnZAyB66kEmEUc8/qxCAiiCpgXH4w8KMczON+iVyqfOw+z9H1mxfr2AqoQw0P1jNaa6zxg/BEB63VjYDYL3B7ATOVCJU9sORpHhxtbwbKPlEs8wBsrCNiqYgK+ssBUSSKFSifTf9SEoiFgiaQVELONXYrYi8Fqn/hxh+aiDrKWVV7K9As0kc3fj+KyEODvRyyHI8JDE3PSPUU5wJzopi/PeHsW1u0VWYRypSg+hcCl0nIQ4M41UgRQWcKvugUbiOizhQcGFTMnk+xiqgTg90L6BMFlUcUEb2Q6HOFv+5xGxFzqrJVfXlBmz/RxCsue2EtJFJkRQw5z4ELJ1BVwNxqkS+0uBctYQC0EmqPdjmQuCFwZgibgXTNoXXIN/6lpNuNiP0il2cvO2QZ8gDxVNHtRcRBQdzwGP/9YGC3I+LE5ONsAkrmrDMU0O9EYi9zYCRn09omkhT4UsBCoSrP5kFkuA9iv0Q8LuFehXhc0m+nvM8dT9ldBIztiDpXxPs1YtMRBpHCxo+CmlooeFRCHYiD72dIfpgDV9JZkUPbrBUfxpHuUiQkmR2gBwHT54cnYfL30g0S4tgQNz1Fl7PUfjsiHpfYZy3u1f7jvLTWWOOPLJ7onpZaSfw4YR4X2Gs9xd2C/nIgRpFvNHNFurrChYTe1zBMxCbmHkwrSWNHmDg40xdlqIhsFWIOcRJIsyynJLTE3+zwK0N5oOj3AiFebIuKeGeJW5XUDxXd5YAfCPR+QX/dUt41VM+dIVVi3g0ISRJslpIyM40fe/RUIC6s5UWriGWivRooFlAcqVyOGgRYaMRC0+8GVEqUjxS+grCV1yOPDf21vE9708FZgbYJ7lboio/WY695mAl0D+HDBlWC282kiTSOpCpnPH4Y6KYF8YMqq0RU8sI8MqGXijj26HODb0SWXzo0hKgRt1pCV2BOFElKur1IcaxJVpNudwSrKU4VaZHPV/2wJNzs0ftFthEpEt21SHSS8siQth1yJVBWEgW43Ugiok4VSsUc2JYaXwtsBWUr0a/PCF7TnRlEENRnQATfCbrdRH2/xN/uKO6X9DqTQRiAea/GDAThWod5WJLk97fVjwuMFsQ9i5wqVC/xo4Sea2gCqJiPSwJNfvhwUmDmmrjpMQcG5RT9SBJNNtSsHheEG33el0p025Hq/SGrAGw8cWI1a6zxQ8cTLeP0+l//DzmvNohVVroIG556Ab0WRCWohCfONV5K4jBQ2kQg90CUTMhOEL0k1hGlQmYAmgvZJysIw4D0AhMTcaHzoPDQU8+hNVnVoRKBeK4JhSCOHc0cWiVJFcipImx6Lh9aRISToiYIgZQBRCRUEtErYhUofCIlCBceVVgJRSDVOcgal7BGZFZdl9llaexJXlKvEl0hQIOYK8KWpz4TdLVAqYBTMjsczyVh09NMoa0kWjms0eAFenFxjroLzykNWPmRpX0RI8ZD6BU+StAJ3SVSFdFOYOOFk7FIjM8iK6NJtafwgt7q7KKsYHwW6JQm1oEigOvzQG95JogjD07RBE/nTJaXGkbMMmfCIKh9IDiFFSoP7aZMXKGISCex5GHf6jh7kLk6l2mrYokQguArepdLv+WZIEw8dQsroZEp4seJZCXlTBDGnspCFzWQCMNIipJiLrJGY0p5LWV2Kkbk3qBJEWElPsgsyaVzJh6GAaMCuhf0UZN8zizL87yvuoM2atTIY4is2vLjvdDWWOOHiB9LGaenf+ouk+9K0sThB4n6A0P54ozJewKGnsnzZ/g7PW4jUu4rqr0Vo5lHu4i+tiLdbrG7HrUUNCEwGLc0R8CGhyAoTxTiSkf9zIzuiicWieaeonr5nMnbirjpGT57Tnfb4YaRwdsF1avnTN5SsGWJZaK6Z7jxc/e5/mfvITY80cD2VxNX/mmiwBKbgDnRFFs9g9bTeIcaOvRS0NxVDN4ylCJQb68YPQK50yM9FKeS0ZuG8kxSvTBj8pZEXs6isOVDg3plTnNPsfnbGiaOMAokA9V9g35pzuChYPu/MijpiYNAqBLFvqa4umJ4EiiNRVZZIkquFMNxx+Yzp9TjLN8kVEIMPOP9RH1tQXlyob03cTSfOcVfsky+pWmeO6c6FoggSCZSffoce82y8Q1N9dyU8ixnzPZ2z+g7Gi71bHz6GKOyWrpaZoWIZl+gtWfy6gmD3VXW+FuKTDwRgdEsUO+sKM6z6PDqOUd/JVAfCQYfCi7/Z7D7f0s0z02pjyQiQH/DMX7TMHj1jOpQsvV1iTnSSCewNy2jbxsGz02p5jB5S1I90ln544qluZgJbLxDtwK3EZAeBu8ahs5TPjNHVp7iLCt0hFGgec8wfl+y8dIp7PRUx3kd9qpj8m3N4JUzhvcFg1szLr9w+HFfXmus8UcST3R58N39PbqdhJhqKCLRSObzCrMhSK3i9HBEJM/xRAOrrkDWiojEn5Ukk32PooEu6Kz+XglSK6GMRC/wrWGeskVHUomgJLN5g94CsVBM0/D720qYzRr0DqRzg6giSUkezDeJOuENUAe62+C77MWVTBZ87TqDLCUxCrwDNQ54kUVhXVD4UCIagVtoZJOIMuK9IkqYLSrMlsCfFcg6wkKxWhWYYaILAnFmkEKQ6ghTxXJZogeC1V62XpEFecBaC1ZdiR4ovJVELVAxoaeCNlW0K0NsNaKM4AS+kLSlwq8qxOhiTitqzuuG6BX9WNCfDpAbEWUFMiimi5rkJP0GdKcNaiML/YYgsSNBWGmOT0f4BqKKCHfhBlwLvNecnI4AnculVoKVOJVIUhF6CfVFb8l4KCVuUxEbmD3TkAqYnuu8nlbgR+CGguXpAEaJ9gpZqV0LfMy9utXZAGpgLwEC6cF7iasFtq1IpULYCzkuDaGElS1wZ5KUFFT5+FKZvx8divnhiNAa/DiL8voh9EPB8myA3E64xwN6vfbTWmONH4QnOtNafWmb1Us9o7cV5aUVyIQ/rFk+HSiPFOXvNAx1jxpZkkn404rVTlZ0b75TUp+DGjhSFQmdpk+aMI4MjsBsd0grsktuq6kmHQw9UQrcQc3yOUd9X1P/Tk017GEQiAX4BwOWL1pGb2nKK0tUSDw+GXNwOkbtdhTXl1SfO6H4t48YLiJ12aMLT5ga2nEuC+oW9NMLittLQgGxV3TeYLcS9X0NVzqK5+a4IcQE7qRm+Yxj+JahuLFAteDOS7pLidnTiY03FfUDRXltgfQJd1rRXoqcvxCZfFcwvKsoNzqUioSzgtVulr2qjGW4smx/I7DzTxQb/6+S5iRhNnqK83yD7iuJPCzgZkvzUDL+lmJ5XpOCYHk5ob9bw4s5E5u8JehOarCSxa2E+XaDeH5BfZAJDN0uqGODe2dEdW1JvNZRzhKyh34LaBXhnRFF4SluL1AioBcC14ATCjmTqN2OzZnj6auH3Lh5THpxifvEioOfTRx+FtQ7NTy/ZHBfIItIt5XgnSHddUf7mZZmH8qzTLjpdoD3G/pLnu7VFtMmivM8MtFvJeJRlU03XaCyAVFng0lxYjBv1aiUUFt9VvqoAn6QCFFhvjygOFbw1IrBI4EsI/0WpHcH2BdbNv/Lko3/fB201ljjB+GJzrR0m6gLh7EFhXSsRBa/VSYgg8J0UCaHVZIk82yRlhGVBMrmOakoAl5cKECkhJGB0gPCsyKLpqoIQ21xskCIbEuhSo/0BtNGjHD0FNkSxYEpPNoaSuloRUIGgRCJQeVQMnG7PKdSjvfCCE3ACoULCiETKkVkDIx0T6ElnRxmX6iYUDKiPQjl2VIdj2UWapUBhAloqxionuXFeUg6i80aG7FeMVCWFVlgNl7MpBmb8F4zkA4rSkRQeT4qwgBHEQWmC6je471Gu4iTkVU0CACZMH2k0BYXaorOf1+AWINyMNI9y5gwLmTlfC7sRGxiaDpsGKBizlZVyKXELdXitbw4H4mo8mckLWzQ06nIQlSZXp7/ImUMFNLSBMlVFvRCMzc1XknOG5XZkFbSmJ7gGzRZj1C2oHRgXHWoWGKTQqe8HukESkWGpUWlghSzb1pUEuETtfQo8oNQFPl8yAAE0ARK5XBBoclSUIKEaRMhJIamx/s6r0OBXEJTWMqlpphZYO0CucYa/0080USM63/7P6I5G+KfaWl+t2L5gkUdmUzD3gqIJjD6tiZISXfDITqFXGUGXBwFqkOZh213stq7mioo8zCxOVT01zzqMM9hpSTww0S42qMel+DBXvKoKjD6WoEdCLo7FnVcZAXz2y3NmxXtSz3DtwzCQ/heYhsABO1zluJI4TcDKWR6dBgHpIXyQBFHgf5qZg2quSSViTj0VPcMIiZWz3iSlZjz7Afvr1qG3ypYvdqhP6jwA4g6YfZW2EXJ6G3N6pUO/aDCFzlw1FcXtKuS6j2Dve4QC539qDY95bGk2WkZ3pyTEMz6EveoJs01cRIQR4ZuKwfx8lzQP2UZGEv4zghfgBtnN9/BPcXyWUc97EnfGRIVOesYRIbvK9wnVpjv1Kz2Uh7+jtA8vLA2udOj9g22zKrqJEF9mMtx7loewE1zjZ1k+nrRJ+TEMf6yIRjBYluRVMJOAJkIdaJ5IPGvrDBvNixvBoSTmKlAOoF+dcpiVjF4t2B1LZCSoDjPowk8s8RGRXmvwA6zOWd5KmHHIheSEBVux2dZKavQU4lJkbjhkY8KuqtZ3DcGgZhp6iOBf77DfKdmeSOvozoUiE/NqQvH2TtbH9cltsYaP3T8WJpA3vg//kcYP0AvBP6ZlvobFasXLeqoIAFJQn1zTmsN5TsldjcHh++ZB6qdnlBH5MMC6fNwqzrL/TEGHvPQ0D7tMKXHHdX5ptaBv90hHlyUbwRUz05ZnDeMvmWYf8KiDwpUL3B3cjDd/tl9hIk8Ot3ABQnTApxArwRxx1Ec5GAVkYhlts8Iw0h5IjLF/lIkbATUcVaMcBsBFRKD7xrcGPpbFv04D6P66z3Db5SsPt2hPqjQS0g6K2r4GxfbXu2QDyvMnKxsMUiEG5bqA0N/xSFWOjMHNzzloaR+nH2z7CjrEyJSdife8RezTzEPIh8rFJH06oL2vKL60NBdyjqJ1WON6sF+aolbGer3Dd1OHkEYvqdwn1yhv93Q7kbSMIBJ0Crq+4pwq0cdaZyR+HG+8RMk5rFGFSFnjWdF/vwsjJ1j69PHdL3hwYNtpBUM70mShOWNSFJZiNh+ckXxtYblUwG5ygzL4T3oJ4Lw0pLizYbVtQg+lwSbRyILHT/Toh4W2CaXSItTidiy4CTmUVaE77YuMsc+uxKHSx79XonuYXEtPzCgE80jiXv5IoDeCggrKU8kRLBryvsaf4zxYxm0Xvz3/garp4osXLuQ2KuW5q6hveKRK4XuyAO7BbhLnuJE4ptsb6V6iery//1GzBqDrcxuw6ssAxWGgfJAIwOsLucbs7TZvdhecahTg7ZZpSI0CXvVMnivYHk9oJYyqypcdmx9U0EQLHdys95v+qx/uFJZMHccMPPsUZVUNqVMAhj4PCx9prPU0cWgawLQibhtYamp9xWrax491QgPbs/TvK/z8HXtEWcFhOym7C47mg8N7ZWAGDrSrEC47Lrstz3lkcKNIwSB7CV+kAe2dZt9ySIXjsYx5QC+GdAnBjvIpBYRYLAv6EfgrjjKRwY7zOaOiMTwgcQ1eWaselRgm0SsE/VjSXfLYg4NZiWwdd5PaCLlicRveUQnKaYyn8Myb1M9yAShjqi5xjU586v38yxUt5tlr4pLq1zCe2eEHSeiSdT7kvYpS/NhQbudSOWFGkqnqA4k/W1L9cDQjyCWkVRk1+vyKIvf6llW5A9lyiMDRX640K1ATTXBpOyUHQR6BXbPo2VEPywIJovpRpOoDiX9LUt1t6DbieheIEM2vFxjjT+u+LGkvP/sf/+rXPqSRF5tCU1k+J2C0WePuPQVgdzquf0n7hOfX+E2I/WHmsmtGbtHltIGBi+eoV+e0V/OKuUbqWd7Y8bGg4C8nK0+qmNJfHlJ8/IZu18SDO8J5PWWYGDwtkHcXHHjpx6wetZix4nJ10o2fnafvd+S6JtLooHmvYKX/kdv8dL/7DvoiQMBN/5zz7O/ahmJFQwCxb6mubJka27Z9B3VZkt1Ihi/qRl/taCRjo0rM3bei1Q35+iVYHBPsvnPS5ojwcZnDrn0BUn13DQP0n5oKP/EKZNvaa783w3q2op4yYKA5t2C+o0TJu9Irv1jTTHoiNvuI3r+4OkZ2w88k2pFUdtsUOgEl6+f8txPfsDuzpTyWGTpqaFj94PIzrPHDO8LUplHCTY+9xh/tWf3nyt2P7vP6AMJJBh5xj93QP9Uz6V/Ytj+7D7D+1l9vnu+Y+u3Der2kpufu8sgeIpzgVpI/K2e0QeCquy58afvsnv5HLPIRpCMAyZ5dk8t21fPaR5nU8f5i5buSmD0vmTj64Kbf9Nx4z+2XPrsPqP3BEkl2mcs279VcOlnHjL8QHLtv5CYI4Nwgu7Znq0vFux9Zp/hUWLvC5L6Xpagcrd7Ru9ILl09Y6vrMCvy6IQVjN8suBRXbL1+SFHbj9YTJiFv+w48/TN30TeWDO9mV4H+lmX7i4a9P/WIrTclV197zKd/9q2P+/JaY40/kniiiRjfPr9MPxH4pUGqTF2ftTXFSOJ7zcPpBBcuHH41LGyBLjVeCNyiIqXvkQLyAGmfBKFQuF6gNUQncL1mmaDYEPgK3MogdSIpie8VB/NRTtfIPY7zZY3eEPTLAmWyvNCj1YSk85NzLKC9UuImiTYFghRInWitwRuFT+A8qDo/oZPAR8UiFIhSsWpLVJFwAwEIghSctzVmLFkuSlSZiRbLtsDU0G9I7LyAIIgGkoLFqkRXgm5b4zpIKg/iJp1Y2oKi0vReEIRCxJxhnc6GTCnwtiIZwAu8kKwKie9qUp1det3SMK1qUpTYgWQ+HyCGF06/K8V0VZGcxI4Fs/kA2ZBp7V7iGkHfGR7PRnSlIJLJF8FJXCVwUXMwHxMps6OxJA/oKsFSGrwTpDI7CFMCOmWGpZG0N8ekMnGy6BAD8ZGKvm/gaD4kNtDu5LkpEbLnlWvgaDEglgKxIUAIREx5WyU4szXJmCz/5fM5DAXMQ4mdS2JSqDI7OCdxQYdXmuV0g743iEZkbzcjcI3gaDFEjmD/bMysXbMH11jjB+GJLg8+/7/+39N9GjZ+u8T93Ax+Z8zqciI2gea+zk/qf/KMOQXq7Rpfgd8IFCeK8liSbrX0exEelci5wu5kVfN6lgi3etI7A1bXAwwCuvSE05LxdyX+T80RX5ywuBlIw8B4e8l8WtN8u8qac5ueja8a/J+eIb44xr62QhQx25HIxKC0SJHov7CJu2HhoKRTCjeJVEdZIVw9vaQ6lXTvjvCjlEuDHVQngv6VlqF22K9uEMpEvx2hiIzf0sSfmSL/2QbTFz2ylQgv2HgLum2B+Mlz5H89Yf50yH2aKNh6E+xEEl+fI75b046zSkPzUKKudZT3JfW3NCJmdYnuRY/fDaSDkvZmQB0YlIxwtcN8bUCxihz/lAOr0FNFMYP0qTnqt8dUZ4njNzzEnEFVx5L4+ozqn4yY/2SLfFBDzN5doxfOmXcl9dcrutuOaHVWso8wuD3HNQn/3QYRBP1OQh9rZOWRQ8fGAVz+7zyg84b3jneIQWBPK4QX1EeS+MqC+p8OWfzMCvn2AGSiv+pQjWfzN2u6LUH32gr1QQ1eYK9a5MAz+lJFUJLuhR7mGjVXpGsdxQNF3Ah4I1GPClSXS5v+ikMrj3ps6J52yA9rijm5X7UbEbdXVF8csPipFvletiGJz67Y+o0as0o8/qknuhCyxhr/f/GvWh58ojOtYpYQA0cxKxg2K2ZulPtOdUD1mvIsMjErnIIYK4KXqCKgo8DMBSY6ZBXopUF4hRQJIwKDPiHLjqkdgACtA5vjJacLTbWAYrBi6iZA9lnaG81p2wLp81O+aRzlVLMxXDLrRwQVkCoyaTqUjDw9PqaQgXdsgzc9XVLYoBA6oXxERc/GYEm1UDz2o2ygKBNKRYpWopuey2bB/bCBCOLimD3lTDEcLjjvJllS6MJxtzpL+EaxOVgy6yd5iNokEonqLPfR6rKljSVd0BeWJIKJ6jC9RD+WyD7ghwXVHY9XgUVv6E0ATJ5TqjrcsqE69QgJ6WLg2rSC8XDJvBtTncb8wYk87K2XMB4tsYshxgSCzD5iIsKVwYwgR+iuwBOxKhtJql6wq5f0w8h5LIleYnWCCE0IlKZjo4eXx4+Zu4rzvsZ6xXGfySWmFQyHS8JsgCsdTuRen6oDm+MV1bTEN4qi8ASRLUlCGRiPWkxnsEqgdSAohbTQFD3aG3yKdEqRAuguER0YPLXu8Z0kFp6QQPaJYplIG4nxYIVf1pSlw1GjO6iHLc2+pjjr4Kf+4BfyGmv8uOCJzrRu/B/+OvV8gHu2ZfDliuVrHfpeRZLgNgPUgfHvmvx0/IxFzBWik/hxJA4D9WOFPlX0V32mvJ9qUhMRRaA4VHS3Hfp+hVrlEqIfJcKVnsE3ShavdZi7FWaeS3hulPBPZ8aeiOBu9wy/WrJ6vWP4OxXCQjQii6kCCDLl/bHCX/Ikq6BV+I0sX1Q9zjJR7U2PONfoM5W175pA9WGBTJHFyxZaRXFgiCYRrliGXy9YvdFivtVgNyOxTJhLLXZaMv6WYfWZFfqdOtPhiyzB1C4Lmu+U9E9Z5JkmhUx8KA8lzeUVozszQpKcryrCgxoWObMQj0u6S1mdvpgJ+md6BoUlfXWMrxP9boREpry/1FONesRXxkQD/U4gmcToPU3/+oLyqwMWt0MWM/aC5hGESuCfX6HvlfQDCCaXGeuDXI6zt222nZlp7FZCLwXGRcTEMfmvymxdf1lmxZPdCCIH08FDSf+pFdWXBsxfdKi5yir3DvTr5yzOa4bfLFk84xC9+ogOL15c0AVN9d0iDxdrKE8kac+izyU+KewVlzvFq0x510TSpkfeK2nvOGTjiZ1GzBT1kcS9tKL82oD5cw61vKgAfHpGVThmb68p72v88cWPJXvw+t/9POVymFlxz7QMvlqx/GSPflASdZ5Rqm8uaDtD9VaJveqhV9DL7Gq70xGrhLxXIj3Zk+okmxqmJlA80LTPW4rS4x42SC+QDvzNjsHXKmafcAw2Wtp7o0yHXwjccy3qwypTyW93DL9esvNvPUKayL3DLZxXyBODcBJpIew6ykeKsHUxq7VS+GFm7JXHgmpf018J+C2P2i8ITcKPA8rD6DsGu5nonu4xdyuSSbirlvHXSpZvrFDfbTCL3Evxg4S/1jP6Wg6k6sOK4lx8NDPlb1jqdw32hoP592e1qgNJ/SizLvuJwI8y07JwibDjEA+qbDHiBOWJRIkIr81YnjY07xSsbgQAqgOF6sH9xJx+UTJ4u6C9GokmMnxfYz+9oPz6gOW1SBr77AJ8QXmPd7o8q1VI/FaAMks4FY81qgrEMpso9jtZnmkcLJs/cUTbFjy+u4O0MHpfkWRi9nyECIP7iv615fcD11QjHQweQr8hCJ9YUH5lwOLOhf6iEzT74CtBeG6FvlvSj3IPqzzJs1o4iblvCE2i20kkkYVyTYiEPZdVMvrE/E4CBZAZjO6VFeVXc+CSS0UxzdmmHT9xl+Yaa/yB8WMZtF75d/8m8z8pvz8X9VTL4OsVy1d61EGBnkmUBTfIgaa8Z3DbgRgV+jzfRJMCv+eQISHmCrt7EbiKSJx4yvdKZEzMX3AIKzFnCunB3emovl1TTBNnr7t8wzpXOYA+26LuVpl+frvn0m8ahBecP50HZtPNDlEFeFAjVhK/6ygPFXEYiELC8kLBfOwQA096XOZM5rpHPS4IFVAG1OUOd1oyfFezeLXHfFiRdMJd6xl/rWL6qqUed7j3c9lUePA3e4ZfL5m/6BjurOjujUh9Pk/+sqX60OCuOriY1fKjSKxjzhpm2TbFjfI8VLlK+Ms5i+gu58Clehh9KOh2wb+wwvxu7guKmDPS8TsCOxG4V5cUXxvQXonEIjL8QGM/uUS921CcCtpLmS4em0j9SBFv9DDVFI81vsnDwqGOmAVoEYmjCIcF/W5ELwWD+4JQw+JmRJeBa7ePwAuO/tnVHEgjDB4o+k8vqX57wPxZjxw5kpew0AzuKeynlhTfyLNaafQvBNIHinCnQz8u6GsIFRRnktgE0mWbfcsel7hxVo1XS4Fpwd7paaQn/u6I0ORepEjQPJLYV1eUX8mBq3psEG49p7XGH2/8WAat1/4vfwX3hevfH+jtwD3V0bxZsXzaU+202KOatFLopSBezuU4O4B02UEviXODXok8z6TyTFR3OaCPTQ4A2x4dE813yuwEfCvvSzror3p07Rh+scaOBatnbPZM6siB616N8KCfnxMFhA+HYAXjD/KM09lPeGJQiFYStx3mVJKqLKyqDwzKQigSfisiTFbp6G559MMC3WZVdTeKxCs9zZsVi091OXApcNcs9dslZpGYfdqSrKQ41AjA3eip3ikpT2H2miUgMacaacFfdlQPVCZbWElAEgYxq7vXDv+4JhyVuM2IdFDOwV+3qPcr2muZtKJ0IJwXDO8q+k9dBK6r2WZF1Z6wMIy/q2k/u6T4xoD2ciQVkcGHitUzjmLSI747IHmZj6+JVI8lfjugL3fIg4JwmhmE/sK6RMdI3AiwX9LvRMRFVlyeSJRPDB5HUgGn/2aHeXPA6mb4PRmXeXNAeZa1GpPKViiDuwr36gr5TkNxBqvLEKtELCP1viJe75DHBmcEviabbq4E7PT4XQ/7JWqq6HcjshcUZxJlPOnlJe1JTf2BYXU9Xgwu52Hn8ssD/E/NaCrL+VvbH/eltsYaPzT8WAatT/y7f5PVz0XqrzTMX3booxww/K2e4oOS8hhmL3iCyRYXeiWIlyxqqij2Ff12pN9OyF6glxJRBkQZkEea7tpF4JJk5t/1Ff1ZyeAdw+Ilhz4wiIszV75woYjxzYLZK3lAVnXgnulQ9zN1OUnwOw5M5ObOGVXhOPnCJaYbiuQkapW9rsxMEBGkm30uRR7nwCd0hOZCpeOZrNLhD2qEy2aO/mZH87sVi0/2mLslSYHd9ggTGX+9wI0E3XMd+mGZS0+7HlFnCSpfSLqnLXKm8zD2JUf5+KK/tpCUDxWmTYgI7Z1AfykijrIChQyJcipwtyz6nRqzTPnmXiTiMDB8T9O/tkK+NaCYQbeTg3LYcIy/Y+h+IqtBtHuJZCLlkUK34F5scUlR3DX4muyrdS4ppoJ4o8dOsgOx6CR+kpmVhU34HZ+do5/uESITZSSJosiSV+JrI/pPXgTSGyH33O5Lli9YmlEHX5lkIeCtABfKGaunHcX4IpAGiRtHYhWpDiTpikWeK5xQhCYhrKCY5mFid8VDExD7ZXZwdgLdwuCRoN9N+Kc6zLebzFCNMHiYA9f4/1NTLBMHr6/Zg2v88cWPZdC68bc/Tz0d0l931B8Y2qsBtVKoDuxmlvsp7+U5GrsdsxFiKwhNJA7yTTA79GbCgmolyOzcq89zUNMzhXTk8tkA/LajumtYXQ8fbSuWYBtwVy31+1mzTi2zIoe97CgfGogC6fOpNjbPHy1vBdQsmycmRDalHASEFxSnklhdlJBsVtdAJcIgq3SIAO2V3J9RrUQ5sJcc9YeG1W2POdYkBchE3LWkVtPcU6xuefS5zqNlAsReh+811SNNv51lhFQvCOOAngnE2CMv9UiZCF6SjkrSUuGHCXWuCIOUZZ1mkv6KRxuPeJCzvVgkYp3Le6vrAdU45MOLIK4hDAP1Q0V7J58jN8xZDiTqw6x80V/x6HNFlNmXCpUozrJJp93OklJypbLrdLhg+w0jzfs6Pyg0+YEhVpBELm3WB4r2jqW8W2K34kfrVxa6p3tiq6n2FXYjMyCLae4/9tcdKQnMsc7HVibMLJ8r2ctMYBlGMFk9V88lMib8KKJPNXYjjyYIlWCpKM8k/XVHcT8/AKBSVtt4fkWhA9390cd0ha2xxg8fP5aKGKJX2I3I8NuGwU+csPVNidjtsqHhiaK8W3D79YdUr54zfpDQKpshqoWkuq/Z3F4wfO2EMnrq00TY9AgrGSwSw6tzxu8KuNbRvHJOe90TTGL4nmb46VO2vy4Ju5bJqyesnrW4SWT0zYLhZ0/Y/rpC7HWEEpr3DZ/92e/wJ/6tN5n85BHVZ85Yvdoxe9lhjhXNtQUbZ55KWMTQ556ZTKSXlwzqlq2vK6pFhN0+s/ROFf7ZluK5OVvfkAweSdKVjqihuWuoXj9j50sK/cwc1UN1KJn8Tkn1UFF99pTtryrUjSUyQnkqGP/zksH7mvqFKVv3EuWghyZgjhTFpY7Jg8Cl/1PBxq/VNP9sgJmDKR2bR57h9Xk2f5QQ9iyj72g2v6LZ+tQxXO2ojiSyldjnOkbvKTb+65LmhXPi9Y7yVKDmCvdCy9bvaEafOGVwkGWgYhMpXj/HP90xflsy3psz8A7VXoj8vjhDvzqjnEcmnaXZWmUWX5Fg4HnqfM6/8z//Z/zsv/MV+uc63A1LcZKJItJK+qd6tn7HMPmJI0bvC6JO2I1IuxvZ+y8Mo3cUo9dOGD3I4wR2K9BdDmx9WTH+tmZ8e8qgDahW4PY81ZFkY7BkOGiZvCUZva1z/++Cibp5EBndnjJ6X7L9OwrzyCC9wF/v2fyGYvLaMcO7mVnaXfcMv9BQ/3/XCu9rrPGD8EQHLWkFsY4UM9gbzykXEanihe1FZvPdGpwyGa4obESRoMjWEXol2FQtm8MlpfAol0BnZlzjPFvlimKVUEVg0HTIQVbvLpeJS6N5FpvViVHTUVz4dRVT2JvMKOZZ7y6ZhF7AJyb3eWnjIZcnU3Ync0YbLfVGR+EiG2XLwDpMjAid+0Q6BUajlg3VYRYJ7RPS5Bkn0yfqYc/2cIlZZnsPZSJRJcwisTteUJ4nysqTRA4C5Vlmse2OF5TziCl8tlGJUB9H9AJ2miVN59EE0CkLz5qe0aql+mBOdXdJfRBpnGcoe5rO0xQ2W8GkRFE5zBya08C4aVFFyHNVTlCPevQS6pNEU1tUGRARVA+DUUd1lthoViiX1wSwO55TDizFMjLWHQUBGQREwXa9ZHO0pPCBgffUxiG9QBMpleNSt+SnN9/i9c33qUc9pslq8CSQHqqBpTxPbA2XqB5EEqQikupIfeAwS9garFA2q5KkIpHqSHkeMPPEqOwoUs6IdRkobGAiegbSYlYJs8weYEpFSukZdI5J3aJbKKcRvRLImKibnmoa2RysUD0QQQ481XGieRw/notqjTX+iOOJHi5uHkD3tCOUmveOdhC3FelhTbrk4FiiV/CFe3dYKYO8pGEOovJZN+9M8eBwk15EKAyyVKhFgJFneVIwtRPSJYV/XHN0bii2LX2tcErz3sk24o5AHhY8nO5R35zTlQWhUrx7sIt4WiDu1qQrFkTJl89vI8vIe8c7uKC4vDHHqMB5UXI4H5E2Db5T+CYgq0jqFcu2xI4F3bOCpDXhXCAmHh4r2lXJiRG0z+csh/tVplzfL7l/voF8StK/P8ZvRvxWopgrooJ7J5uI2wp3d4QbxWw/MtXEQvDgfAOxV+DPBWHLY0xkuqxZbQiqVzSqT0QlcFFhDaSypJ8XiK1IMROkLYEbCRaiYP7tKzgE9nqgeSTxQRJHAukl87e3CVKwvOkzY9Br0mXJ4f1LxBug5wIz0xxujOmcgR3F9HQLPxKoGdSPJSfVGDtOhIGmdwZrI3IUMQuB35K8VezyN9/57+KiwkcJRcJ+agleUn63ItyB1Y7k6O4e6aks1rt62lOPe86eG2EngvfvXSLdzNloN0mYgWV+pyYimR1uETYlxQnQZ/fjh6sJvhSI2wKzIAsgj8GXgtOipjsziJvQbymK80RqsgzWYltz+PAS6U6iPpCEvZCJIE/04+Qaa/zw8ERfGroFpSNJQt8b3ABkK5EmIMjmiMtlhes0oQS8QIospUQE3+u8TWbdOOUTUkdiEtiosgttJ0krhVIha90h6K3BNSB7QZprpEwXKhCCrsvrUKusvgEw8xVTV+FCNnsslacxFikT1imskXltKSFkHsgNUWZW2iDLGkkrkCaQEgQvsSn3lULxvWPO77NW4xuBWKqcPQwCUeXz1VuNb4BWkkxCXLgtJ5nfZ6ssjitkQohECBJnFG6kCJUCATEJgpT5n8v7kC7LL0YDQQniXGel+jpvA0gGQiHgYsD7e9tiFIQKwkpnmn8gq+NbTQxZoT9YRTTZQFF1At9prM+BOCRJiBJ0VndPElZS82C2yeFynP25ZKLe6KnGPdICCEIhcK0hDDIRR6hEYTxumDUafWsITWb9QcoqGE2eywq9Jphs/CguzC59UDgkfpDVPqTLGoZJQhAS7zS+Tvk76nMGnIBgBK7VhCb7gUkZs8L/WuB9jTV+IJ7ooDV5d8XlyQwUyKMCfWPJ+F7g9sYZRQyUZ5HmA01xpCl2WkZTx1W5YGh6dJeo9iXVY01VOIamZWeWy244SXISsdXTPIKtDyPbgyVF40iAPDWomyvqA9h+M7DdLDG1I2pQhwXm9oLxh5FbW2fokNifjTiYj7i8Mef2zimf2rjPGxsfMFYtzA1p4qlXnmvM2S7azOCzinLcM7lzhlKe3bOeq5NZni3rFRG49MwJYmLZuBe4vXOKcBCmBe5Gz/i9xGCr5fU7d4mFQADpvCDe6Jh8mBhPVvwbd97GjHwmP0wN7FgGJ4Gb5Tlj2ZOWim4omd/Mg67SAw5ckV2Rd2aW65tn1GcRqSO+yTfsnTcDg5PE09cPqI+zEoUbJNwItt6KVIeC527uU5/kQNvtJAb3JLeuHVMvIpP3PX6qiT6TIapjwbXhORN6RvccYl/iW4OrQYTEXt9yZTClnGX7kIDCfGOAeqdCysh2teA/eOb/yV+5/Zs0xxEpI3YjMbyruHb7iNH9gCk9L2wf0t70uFFez42bx4wOPVoFroxnhGsWu5nXf33jnM22o3aeNIiohaRIgcHNOePBkuosYvqIqLIrcXWeGFyfc+PmIdVJwCxBqIQbZ7uW6zePGD6MDOs+y3L1Txw/ao01fiT4Qw9av/RLv4QQ4vf8e+GFFz7a3nUdf+kv/SW2t7cZDof8uT/35zg4OPhX2leoDUtX4KusMB4VJCFYeYM3ImccF/M6UWY18y5onJA58xLZATclQZTgkqJLmqi4sKvP/Y4YBYu+wgdJqASiz837rAskmHZZ1zBUOfuKOmdHK2/wJcwXNdN5w8IWLF3BiRtyYMd0RkMQF/JC0EdNrxRJCEKvsF4T1MXTepK0SROMgF7iO41XF8clBEtvLtYmSSYCAh8Fq3hBGS9y1hh1yh5iQTKPFa7O2YxwIusFSuiCwWpFjJKosmOznQj6scBrRQhZUSQFgRUSrwTW6ZyF1OSDSSKfSyOwnSYZ8PWFM3HKqvqhzCr6scy9I4skyix3FS+0AqMmy2QlRZCCaCQxKOgkiAsSSBQ4KfEyZ7JRglzmIW3bGdq+5CiNOWGENzmLCxdq8E5IohEErzjrmzzQXCSEu1iPyQr0C1viTdZsFAFckngt6IPGSZm/C1HgJfgiZ3IeiY2KqC+U4yU5e24kQYHtTc6UvcCiCEaw6gvcUNBvqH/ta3GNNf444g+d8v5Lv/RL/ON//I/5zd/8zY9e01qzs7MDwF/8i3+R3/iN3+BXf/VXmUwm/PzP/zxSSn7rt37rD7yP71HeX/+7/xvs6Q6LXZAzjZKR1HiqM8FyIqhrSz8riSE76orKY5YCWwgYRLCC0GtkAqV9Ls85SdcI5EqRTCZ16BgpzyV9KXAbMc8zqUgoE0Zk48SuVLitgJzmdTBwVMeS5S4U+xpiFt4VwFBmlfeTTY3tTFaLKANFm0hFwkmFWEh0ygOxzoAhi9i2IxAzg/IJXQQ6JVHVxTHvJsRZQSoza03NFEPvON3LmaOe53KeKAJ6IZn0jpNLCp8kaqkQIkHpqZY5Mwo2B81YR2pjKWTAzotcOqsSxiWKGHANpKnGTkCYQOEizhuGy0C/HeCopJ8AJlJEj/OG8TzQ7V5sG4MMiaaNtGMotcOflcSUzTUhUXcRX4GuHWmhcb0hlomkE4WNaBHxBuJFBqa6XL5THkwM3GznRAkf3KwRRwXtJigraPqA2/Skk5JR7zjZyU8cMiSaLuK3PPG8oOoiy3E2fRQxUfe59JpWCmckUYoLEk1EVQFfJuJSZ7uWJu9Lh0ihAmnDsWpLzFTRTTLppekjbsujDg3pWk+tHWfHkz/MS3ONNf5I4Y+UyrvWmsuXL/++16fTKf/gH/wD/tE/+kf83M/9HAD/8B/+Q1588UW++MUv8pM/+ZP/UvtxDxq6O4HyUUF31cOZRq407VZATxXyqCDsJaIMsFCo1mAHHnqB3te5JzRIpE6A1cQiIC5caN04ZOsJEsFkhQnfFZSHku6KR5xoEAmvDOZWi+tKyseK7lreJpaGdtdTHGgmz54jVOR0PiAEyWpR5QxrmUjjAEuF6BS2DqhOIiRwyRKdwM8KcAlvIFzMj9ltj1SB7qzMVh6dZrXtKfY13TWHOjRZgWMI5yjqBxJfStyeQx0ZEtAPEicjRfFYoYzA7nrkXCF6TTcKqLlENBHTCsy+pAgGKTRhC8IgoJYaO4hEq9GLSNzyFEcF2kG/rYhCsBhIymOJv2wxByWql7gtA0IwH0vKA4m/aikelvTbiRUSuRSkIGDHEaJCnyh8I2jrPD+WloI08aSxRUw1ohPYShKtRNmIGHjMUuGvOETK0lU2JR6EghQF8tjg9xzVoyz2u0qK4lRiNwNd4SnvF8QiSyitUBSnAj+J2G2POiyRCNwQ2kpSLCSMPHolcOqiZ9crmAlUgjSM+RwuNG6USF1eZ3VPohtJ3LWUFwoeKxTFicBf9tTvFGir4NofwsW4xhp/zPBD6Wm98847XL16laeeeoo//+f/PPfu3QPgK1/5Cs45Pve5z330uy+88AI3b97kC1/4wr/0fhZjiZhq4mVHtS8JG/77orODSH8pUh3nG2eqA0FC6nK5xm0FpIfySCJSItQpK60nAXX4F4ZGBepcIU5MLv1te8r9LCYrnEDOJDwuUEtFvGypHiv8ls8adiuN3wnwnQrebODc5Nc2An7PkZRAzhU02eadXhHKlO1QDnTWJdzMZAl6RUoyK0OcSPShwk8CoYkkJ6HN+yofK8KuQ65kNn4UknS9x09CFubdzhqKwktiVKgbHWHbU5xIUhPy0HGbh4ZlJ6gGltFL5wxemiGfbZF1QFoQA49eSnwBXkvkVBF3Hepah5yprD6iBLYBfajxWx5xo0MuJbLNqh92nI8zXe4pT3MpMBiwWqL3NeZUwqZH90DMZcy+lIhzTbGvkSYii6wy70sIIg9oq8oz+pZm+LZGH2jksaF3BX0o8nqONelKT3kkCXXCFgK1UKSTAnmrzazKE0koErYUyKWCUwO7NjMrlwACWwELBVVEh5wx+VHAbUXsKJG8RFqR5+/mIosd73j63YgvQJ1q2LN5X1XClRJ5ouFOh35x9a9/Ia6xxh9D/KFnWm+88Qa/+qu/yvPPP8/jx4/5/Oc/z0//9E/zzW9+k/39fYqiYGNj4/e8Z29vj/39/f/Wv9n3PX3ff/TzbDYDsimhsAq1JAeTI02/49FTDTIRNBR7PT5ozPRC+cJlY8SUBAw9jAJypaGHUCdoFaIIiCpgpgo3CSADYWYgkoPH1sW+tiKycLRnJitaLDVxx1EeaPpLAX2mQKRsNAnEi0Ay+DCXw1aXIynKzPQbBFKrEFYRTCINM5usOpCZ4DCIyKUilYEwTBDIgboEP8mZZRKJuBkoDxV21yHPDGouoDYIKQhbgfJI0e/4XMacC1JpEFoRJwEzk7hRgE4hrCRUkbRSpLMKaxJ9qXBC5mO1iTjw6KXGDyOJPCycREJc7fCdxpxnY0ubQC0EImriniVYhTm72FYnihNN2LUUJwV2lPB1RNaRGCR6JklDj14qvLm48dcRvIBeIHWEAmglvgIsNCGy+fwM6zUHyzEEMIdF/k7sRmwEc6aJlyzlUVaHZymwQVM/TOhCwq6lPC7oN2OmtXtJeahB50zPzFV2Uy5BtxJRZUWO8iQzM30NGBAuZ4Bx6CnPNDIq3GbK6vqFQJ9L4s7FsW9FSBK1LGif7GmUNdb4oeEP/cr4s3/2z370/1dffZU33niDW7du8eu//uvUdf2v9Dd/+Zd/mc9//vO/7/XyQOFuBZgqlE2kSb4x2I2AXCjkMqu1Cy1hGDAriasjKWSlBtEpMHkQWAagz0+8qlNQBkQVs1I8knaStePEKptFMgnouabwivlOQriIWCpUn2DDU55o+q2APld0hQGZ8JNAQrC7uaAQHs5HLOu8X7FUpCaSeolwWQ1eDgNqEBC9Rra5LCeXilhHQpEodizeZYdmuxEu5I6AUcCcSPpxRGmHOytAiizpNAq5HDaK6A1HPzXEIJE2kQYRs5S4JuY1OUlvwEtIThEXilAlUhnR7r8RuAYROkHvNeV+IBWCtOkwZyb3ATuBTYryIGKNJG07zInBTSIuJfRMEjctem6QM0kcQRQCXyT0UkIdUFZhTgRUklAA5oJooxIUEbocuJxVuJMSJ1Umx8hEvTODKIiPh7iNiGizzFLcvggYG5FQRNQSQoJiJolbluLc4EaQmojqYy5ZLiRpENArhS8E3oDuJZgEE5/LmPNMMPFFgl4ibXYNMCkQzisowDcRokQvyPs6y3JO9qzABWAtirHGGr8PP3TK+8bGBs899xzvvvsuly9fxlrL+fn57/mdg4ODH9gD+x5+8Rd/kel0+tG/+/fvX/xxh55nFfLYaxKSWGQriFgkwsTTJ5U186IkFnneCZH16dwFayyFzFpDJITPTLtkL/TudL556lku9fgm7yuITPv2BopzmeeHhnlbRBLLhF4I/CDizwr8SYWaS/RS4K3GWpNNDa0gmkRMArr8lJ40uby3ygy+JPOahROEKiE6iVgoks9ZTyoSepX3T3vBstNZcUKuJG6UbT5Sl3tN8f/H3p/G2pqld53gb03vtMcznzvHjTEjI2PIjHSmMzF2Q2dhbBUNNCpky2q6KQskJKRGNGq1VIgW1QZUNC0QtBGqTw39oU0P4HZT1QiXobCxc7AzM4aMeb7DuWce9vBOa+oPa2eYLFyIpJ1EBnn+0pUi7nvuftfe9679vM96/oMB2SeGnR2ko9HgFCHKD69FE4lR4KSkG0m69Ui/6ZNeyibmXIgCfHJEV03q+uwoMeSCEOk4dZhss0IGdpi6iyhBNgI/DKilTEy7KBNbMIvEgYdGIdvEXvRKJBmCgjgIxCCgUUQEXkuCT1oqdDKsbbXiuB1w0ZaohUTNJfJUIc4VYUVPdwW4oNLrDtIs0ZwLXL7SaUUFvSRWAdmBmUu8Wh1hiqRni9m3tWECpyTBS+LqGDMMUnctrMBlSXdHEHgh8ZMUgKnq1Tqi/HAdeiGx655+239vNuQlLvExx/e8aC0WC9555x2uXLnC888/jzGGX/mVX/nw+htvvMGdO3f4whe+8D/6GnmeMx6Pv+MXwOCBZ21jQXkgcOsO3ymEhfG4IV9EBveTdsiNIj5IRCcYVC2ld5SH6YjOjtIxIr2kkI6J7sjqmFKCW5Wsf7LA1vYFurQUx6SZVaMS60/A9asn6LGl2hfYdU/oUhT7ZLqkOoKbDx9y+/E91jYWjCc1LYqZywm9ZFi1DGuPMkm8LJcSoTzFdkM+7nG9AiswMjAyHfkswtRSbDc4n0TJykXG45ryCMKmRSw0IBCFp6h6BnvJedxvWmKtIQhU4ZkMG0Z7kJ9CGDmCl2AFVdkzqD06c5g2UrynGb8emb7uGC57ssIiG0nMwRAoGk81acjOBdUDQZSCqBK7sTiFwfYSMxNUexJiYsRnpaU4iVTbS8yZxJfJyV63YGaQbTSwZlOkjBCQBXQfyS4iWdkjNztkiIhOQB4xPlBax6DqkJ2gue6x1yyD7SXTrTmPrB1xe3JMcR4Ybi0TQWSQKP7ZDPS45+bOKepYo+fpSBYVMTPQA8vW1gXZQqDmMskOTMTUkWHZUvUuCcKzJPyWF4LiNFJIx6Do0uyvTIXL1Yrh/UDWBgbrNdlpCthEpvc23ZozeTuw/nL3P7ofLnGJH2T8rhetv/AX/gL/8l/+S95//31+4zd+gz/6R/8oSil++qd/mslkws/+7M/y5//8n+df/It/wde//nX+5J/8k3zhC1/4rpmDANUbGnm1JT9LXY8fRrIjhdjpMDUMPlDJHT2CK0PqdCqHJlAcSsy5TPqZLDlkGBtRQ4tZQCwS3d1cKMxCoK81xLEnP03GrK6M6AuJOdDkN5f4NUd+uuq+BpHsQCOvdhTHgmpnyeDaAnmtRVxr8Tc77M0eVQvUyJL1ARlSTpNsBdKDWOsR2x1ukvKWdAtq3JOdC2LlYb1PBdJEsmOF3O0ojhKZwmdgThR+zcONjvxYYGaCWAR8GdO1qUM9VJPPwMwkqEgo0jGdGluyNiBjQMaIWUB5XzB6W5AvI5SJoCIiUHnyc4GcpveTHwvMgUZ1KQameCARmz3SilSMDjRqKQlXesr7CrHRJxf9WuK2HGYmKe9qROmJQ4+I6VpcpTXn9zTaRuIwkVdkJxEqIkwgq0GMbPITDMnlgq0eeaVl/ZkT1j5xRvFAIbY6VCuQncRtOor7Cr/mKG7PETHpplSb1lPsS8LQY67XCBMQYZUUMPaYuUDlDiVDOhLU4MbJ6aPYU2gfkEOHakkaroknVJ7qfYWZC8RGn9bRC9yGo9hTiN2OwfuS8euXlhiXuMTvhN/1mda9e/f46Z/+aU5OTtja2uJHfuRH+MpXvsLW1hYAf/Nv/k2klPyxP/bH6LqOH//xH+fv/t2/++91r9lDCv9gBDc82YHCX7GEPGdxWhEm4B8BMxPJKWLHEwvJclHgjUReD0gryM4Efh0oAm1jiFYQRxFzLokDB+cZoVWc3Z3ge0N7Ld0rbFuiSmzDg3c2iDajvZm+5Nw1iy8Us6Mh4nrg4KVNpIzMJgYvBcWkJc97bF6ynJXEkSR2Ap0HZO7xVtIscmTmUbkn5hK7VLRdgdiIyCODvRDIaXKAcEbSng4Q1wP6voGNDg4LQq1ZyILsEUuPxuxp4lYPMscvNSdmiLlt6a1AnyWCScwN9byAsSS2gmJgGTxVw03BcpnRlZLQgBxZQi3pSkUcSMJxSdhx+KlHHORJnNsZxLYg3B3g1h164uF+jvTQLnPi1Ui4O0Ds9uj9jK5X2AHgwD8oEJlIM6ITjW0VfS5gE1hkiL2IMBFZOEIj6UoImSLOQVaO0ZuSmCu6KxXOBL7lrxG8oN6CcG+AuNqTHRvaXUG7AfEkY6/bJLvWUDcZ5kjROkm7LogXGSd+ChNHLEAda2wn6UaCfl5AHpF9SG4lVcBvCOooiUEjlsA40fDtJCJHntkjyWpL7pew22NODd22pN0QhHtD8mc81v0ubchLXOI/Mvyud1q/8Au/wN7eHl3Xce/ePX7hF36BRx555MPrRVHw8z//85yenrJcLvlH/+gf/VvnWf82zG+Dv1cSHm0YfiCoJm162j0u6NcC9Scsg8NAtS8osx5R+GRzZATdLYcUnmofCudRQ4e3GmcVYmIZHgXKSYNwoC4E/t1Boqffahl9IKg2GgBUG7GvjVDHmvhYw/A9SbXWpI7rsKC/3WN+LUf/Som/W+AOC7aKJdcn52S5w11k2GnqEoakozfRSVxtUCIymDSIwhOsxPYmPf3f05TvGsphhygdQQrccY59qGf4jmK4s0jed42ibwz6yQV2xzJ8VzHYqJN+qdbUs4LyE3P8jY5qXzAo2pQ6fJHRTSN6CTujC5787Lvc/JF7ZF88R08c5SJSThrMLM1yuoFA7RvE9YbRJ87RTUxhnFbR7ATMOxlxp6d68gJp08zMNZr6WiR7J6e6Oac8S92uHUa6NSje1RT3NNVmTWEdok3pwN0G6FNF9a6m1D1l2SEXApsJrBaYC8FwsGTrqx3rv+kwbxfE90ruHGxw72SNZhvMeznF7TnlIQgV6NZBHRnqd8bsPHIMOx3FMYgY6TYi6kzj3hsw2ZmjdluyOj3w9BOIZwZTWspoMU0kG/TI3Y7masB7hVkKivWG4iyic8dgo2H5mMcOQN/NKG8u0jpkpF0D8X6J/Oyc4sfOflf24yUu8R8bPta82qgj9JFsKQhTT3YmWa4YWcILlAXWLUGlKJJepRmGdCAsiDIQpi45J/TgspCOhjRJe7OQSUCrAlEpRATTikQPP5W0ZSBueELQREFax7ojO5UshgHhE0EjbnWJoi1SeKN+oNGZIcqkyVK9IOYBZSGQEnxVIzBSYgpJG/nQYFYq8FVARU92qug7QRisAi47CBNHcapoJz4l5c4leSZQvcBPPPmZpB95hJfopaQ4E5gWwtCTLWViu/mYPrs8ohpBfk/hEZRO0PtIFBHdQ1d6ZJOORKOBbCHINSw2HaFQ6FriJYQyYpaCPAjqdYfXKak5mIgvA8NzST1xiZQhVpH2k0DIJWYhsGVAeoUQq2DJ0SoWxApUTMGKsk/WWsJGcucxt+ZEY/BlTtSgZxJEJKhIKCC7kHTr6TjSZjEZ+0bIDyVmKQhrDr2QOAVRrY6PTyUmChgkrZrXJBJMJxCrWBt9LlPa9bf/fUYwPbhBChQ1vUxMVZncT7KZoF1zaY5m0udYLARl+1HurEtc4vsXH+vk4tt/+eeIaznZmSTs9phvp80GiegkwkGxVdNGjTpVhDy5kIteIiyooSUUEeYK6UgGrL1EBqByyIukJdLa03mDtCmjK273mAeadi1S5JZlNMhOkp0LwrWO7L6mW49EL1FLib5RJyf1sxy8YPO0R7vA2Yam0zqRGgY+zT5ExJtUZGQHISR2JIOVc4aVuIlHikB5KOlNmrlElwqB3+7J9zR2yxNrjfGB0ChCRnJg2NPYDU/oNbnzxEXyDAwbdkWIiAQhEK0iDDxmTnpfQuAziRsFognoDuLQw1LjTJoLmjOJ8hF5paW1GXop8ELgxoHsJJFT4m6H9RpTC3xM76XYl8TdHnmu6bUEHWAQCE6SnUiYJEG0D4qgIqLyBAnqXKFEIOaR2CT6OSIy6hxr1y/ogubBcowMMF4kW/W5NPhhoDiQxGsd8sjQF4KgkyRgsA99IRFbHfJUY82KXi8j5Ql4KWDdImqJJ7H/9FIgC5e0aot0eGFNYpCKGDFtJE58EkXbQGNWycdlJD8WxCs98ljT50lyURwqhIdu7WO3NS9xiX9n/EAmF+fLFKHRTyJyP6O/5slOFJgUwIiK+DsV8iDDryXqsgyRkKXr8dwg9zKiTsQLvRSEIuAFxFrjNjzmRKPuZ0gPUSaShTjM6K9bzIVCvZehVvEV/TQi93L6G47sSEGeiA/uToV/v0pP13lAf3KJ+fQCY0HGSCgCYpE0RcSVIe/U4ncs/WRVhOeKOPQEHVEXCrnQuJs9buIxxyqRLPKIOsjorjvMnk5uGds9/UZax4fXDjUxC7Dd0+567DAiTw12PSBriRCrNS0V/RjmTzrqhzz9WkiGtkJiCxAzTRwlooGwgn4t0K1H5Ht5Es1uWJQFtZT0k0C7EzB3MsypIqxbpI+ouaLdDci9HL/pkkD3TKIODHKukuD23BDzACqQzQX6wKBOTIo0ERLRSvh20UewMJqTb2wye3WKWkqUheLakuLqEr2SAbQ7AXm3wO/aRIoIIGSgftjRrwXk/Ry/5dBtsoISRNprPgmRT0yiwsdVVMogElpN8BJ3xRLWHDLEVKSlSJEvZwa37Qg3eoRIBsGiFbSbAXk/w+8kpw1pSdq19UvK+yUu8TvhY91pPf7X/yJZHNJIRShAXyQrp3IBrZZI6bGFJHqBWSQrp8xFfBB4Reo+RGKDyRgT8aET9FqmDKtO4oYeJQODZaRBEwSEPB032YlHmsB05pmLjBDBV6SOZd1RzaHVgknWIWOkbZP/XWgkBOg3AsaBjyun9T65sAsRyVYuPr1Zuc2TnOz90COdwIRIWHVJcego59AaQTQg5wq/7tAzRWYDbZ5o6GQBOUtMOb2QlL2n0QqvBTGPidVXefI+4klu63QS0YNUHrQnKglB4UivZxoIRUA5gfXJdDeMPaFXFHNwQ49xgt7pZJc1cUSnKC8i/TCSBbCtxk4C+bnAVRFpHDKI5ObeSVy1uo8CkXskkeAVsU/aLSEiysbVEaukX2mhpIdiCSpE1uY9QQoO1gyZEylbbBzITwV+6pCtYux7Zq5IOq1hID8ThJEDq6i8o7UGr5K+zCyTPk0TCVZhMyAIdCNAB0IRkEGgHPRipdubS1SIhKEloMh8pHfJUSQ/F/iJo2ihB1T0dLL46DbZJS7xPcYPZKe1/s8Ng2fOGL8tiSOLHUXK9wz5EzMGx7D5ZYWqk1DWjgLZgaLcqClxTF5VlA9WQuNBiqIYdJ7Bek11GIlrjighP9KU54Lpp49ht2P0riBOLa6K5Iea4j3Dlc8/IN5sVutw2HGkettQfOqcyZuSJ575gE98/j0Gz56SPXOB/VRD88kOcyYpdmpGc0cWXRKXziSCSHyipqxaxm9JsjoSpxacID9RiCst5aMz2iuOkEUGdxTFJy+YvC4R2x1RQ3HXYG90yGfnTF+TSSO12RPySHHH4K92FJ89Z/pBZHBPIkuHHwSyQ0W+UzO68ORYcusYvS/Y/Epk95dheujI1lrMXCIEiIllfB+qmwuKI8nkdUnxXpa8Bx9umLysKZ+4wMwEw/cE5XsZ+kISnqyZvqgpHrsgm6VuzN7qKPYl4xcyys2auNui+oi5kIRtS9ZExi8ahs6irjUIkxxLRB7QxjE+CRTbS7JVQrWa9BRPXDB6+pRH/9N3uP373mfyiqZ6/JzySCB6QXerZ/ySId5s2P3CA/RyddzXCvpbPaPXNGx3TD9zjFEe1Yo0e9uxlPuC4aihwqb3W0S6DY+ZweRlTeUd5VadZAoC+i2Hqzwbv6EZHAjKh2cUx8nVw97smbxsGD51xs6vCq7+Uviot9clLvF9iY81EaPZ1jRnA/RGTEdVWSBkkvmiRJYCdkkGqiIRGUIOyzYHpdDrEJRA1WnwH02kDZrgBJQSVk/SsU75UccnI1yr6daACw15IMqUG3XvcB23NHSbEXme4j+CkcxmJXod3rx/BakDFyEnkGYnWgXQULcZslRYl7qkaNIsrG8NZAK5GfFKEptkzBqWAtcY5qtE3qgiTku6RYneEITzDFEG4kwRO0WtMsJOxOWJ6SaKQFQS32lmywKzBVZE4lKBTm4cdZujSo1zEZmDvu5oRwJaTVtFuj4ii5BiN7SiKRR2XiAmAaFJpsNeYK2mmwjakwoGkV5GYp+O4vrVZ9meVMhJQPWSfpVJ1g8F3XmJ1wJRRkQrCFamLKwRuC6nP4spTisLxF7QK0k0EteCyCLqwBBNZG4FjQ68IwOhT5lg3ekAOQ3oVmCDwI4EbmG4d7JGWPP4kAg01gv6kcDXmuPTEa6CoJKdV3ASWwr6tgAtwadjRMqIGwq6DlzUxC79nuqSNRdFpN6R9HmkuVi99xZcEPRDWJwOqW5Jsu38I91bl7jE9ys+1p3WxaPgPxjQfLJj9JYiX29ARdxBQbsVOH/aM9iD4V1BUa4o72c5bS6ZP+4QRIZ3BIXzyJHFdzoFL647hgeQbbQoS4rHeH2MmGnax3rGb6duRATQy0j34hR1kNE81TJ+Q5Fv1UQN9kHF8nGH+Gdj4i+t4d+vcA9KtgcLbm6dkhUWd1pQb4BeCEosprQpubjW9NNA/3RL1JHBEZiNFtkL4kLjGk0xaWHoiEJgD0uWj1tGr2vyGwtUB9QKWxu6T9c01126dmWJ8hGx1NQXBf7TS9rbPeU9RTHokMbjzzLqDVBzxXRtyZXfd4/BTx6y/E9q3FogW4BZb5PtkRF0Q4m8l2Nvd4jn5ph5RNfgrWR5NWJer7DXOuKn50kk3Qp8bVjcimSvVcjHlpRHKbr+Q8r761nqynYbit4nJ/cK2s3kGj943ZAbhxn06LnAFoLeKNSZJh83XPnvI9u/JjCvVsQ3Bry/t8Hd43WWuxH9ZglPLhncSy4c7UZE72csX5sy+tQp7lpPtZ+OHdstUMcG+9aI4tqScK0ln6V5Vb+W9F1x5MmCI6sjZtQTb3Qsb0a8U8i5Qm21FMegSkd5pebiKU83Bv1ujnhsyWBPIFSg2QLeGrD80YbFf7r4qLfXJS7xfYmPddEKeUT2gsI4dB8YSIsQEekEqIjMPZl1SBcpSM4FwqcvI2kCSniUj5gYyGQ6jtExkklP5jyVSjxoGULy6vOkL8rVvSCiiKg2edBVmUXb1TUZE9swcxTznnLep0gPJ9igZZclmfCJAq8COgSq4MiFT6QAD4XwVKZHikDufXp/pGsqwFD3SJlmYMKBNg7dBUayR5CG/TLAJG8RKqD6yEh9mwgA0gs2sprMOLQLDESPFok+L1VAhcAWS540hzyaH7NVLqmkpfCegexRPtG8o4goFym0ZdPUSGJylgipc1R9xGjPumkQpD8jVtdkH5noDu3T/aJKVHHdR6SLjFVPFj0yRBArX0afXrPEUQmLChEBICK594xoKRcL8mWNsqnASCtSOrNO8oaJaVE+YAirZOHkA3lFL9IxoA8phFNF5OraumootEPFgAqpyxUeKmEpSOSLQngy5VJ6dIzkwTOUPdoHjEj/TRZS/IyNjHWHcmk2FhWoPrJWNOyWl0XrEpf4nfCxJmLc+D/+lxhRJY3LIw3lt3Lqxy3qxCRTVQHlzTm1NeTv5PSbPjHxmuSBpzY6fBWQD7IkFp0mZp7QgTh0mD1Dc9ticoc9KZG9QDfgbrWU3ypYPOYoRm064uoF2bnEPl5TvVCyeLJHHWfIHtTjC6IAd7dC9JLJXY9u4ezpgI8KUUvCusOcJ72WzwT6RKM68Ebg1jzCeMyRorvmUIcZuiUZ2g4j/mqH2stTDPz1juG3cupnWuTdAlNDJBEc/PWO6ls5zZMd8iAnWwAudTDuekf+gcbuOGKrEV0iteRHgvKBxOUCOxTYSUg+eV3KhhL7Of1aKvj5kULFQPjUknaWU9w1tBvJnqp8kN6PfWZJ3xjKDwzdNOIHgeG7iv7pBvNGQbsZCWVA5J7Yacq7inBjRT9XEjcMyMolcs2BQRlPKAOcmcQitTC2lvXnjmk7w70HG8heMLqf/j3Mr6TCN7grsU/XZC9VLG55RJf0U8M7gm4iCJ9YYl4pqXdjYnQGqPYSYcbf7lD7hr4AX0B2JhGrmaPZ1/gsdYtRJSF11gf8tkO/l6O7yHI3acowkXJP4p6sMa9WLK978ILiaEV5X//Ybc1LXOLfGf++RIyPddF66s/8HIvPaNSFTiLRxxrKl1PhkqcGvRToJbhK4G62ZPdTFEYQyflbNQACt2NRMcJM0W0G1LlGykBYc2TvZUgXWTzi4du6qwbcwy3Z6wX5BZx/Kn3ZyHZVuD5RU32jZPFUjzrKEEkihN+yYALXt87IjOP8a1tcjNVva6zWUlhgiIJ4vUvasdMiBQnqpNUy9zXNI6tCelSmbq4B+1CLulekwnWzY/hizvyTlmLU0d8fIJxI9OyHGqqXC5aPOqr1muZgAF1yn/dXe/I7K42XVYgmsfDCMKU4q3mKPvFlQPlItgB3xSHv53TrgbgSSo/eFXQb4B5v0K+XtJsxCW2ByZuSfiSwn6wxr5d0a6vC9U4qXPL9guxc0E1TQfBDT7knCdd6WGjMocJnYAfJqV/XoAmEUYDjFDGiehi+l+ZjixsRlXl2b50gPBx/bYd2O6TC9b6k/3RN/s2Kxc2AGFqiAJaGwfsS+2yNebWk3lo5z2cpb628p/A3O9RR0nG5KpKdJd/HsNNjzhUcZrgS3CjZO5mFwN7uqKTDvTFMjvjDJCQf3FPYT9WYlyuWNzxmppAB7OVY6xL/EeMHsmg99w//N7jfvMr8CYe6UKlwPZo6ruVDnnyjpbsooFZkF4JwZSVALkXyDvSCuNSYuUTmLlHCTzXtdipcArDb6fipej3DDqG9blFnBl1De8NiKkv1tYp+KGhv9cgL/W8Uruodg3AiDeojSdcUYflMhz4w2LVAiBK5kISpQ/YipQyPAs01j2gUep5Et2HqyN/NkT6weMyDE+i5Sl3M7VXhciQm3hsFZh6ZPWOJTmLOFaoT2Nst+Vs5+QnMPpVsoNRComqBv9KT39fYdU/0MsW2ZJFs3KEGDn+cE48z7DiZ/OYzgbveIz8o6LYCsfTogcWd5QzfV7TPNphXS9qtFSV90uPmGeM3FM1nU4fRrSVX/eE7ivoxSz7piO9UxBUxw49S4bLrHr3bIo4z/HmWYkIGyRleu4Bf86nzW09FSfYpmVpZGN5PPo2nX+owr1Q0O0mvN3xX039miXp1QHEeWVwnOXV8u5A+06DeLTHn0K2DK5J7SHk/FVJ5prEyOcbrpcDMJWz02G0HRxnqQqWwUA/5sUIqj3+qpjtfdaKbkagDgw8U/XM12YsV/XM1Zd6zeHf60W60S1zie4gfyKL1zJ/8K9Q/Hih+s2L+pEWuOi73aEP2dk5+JJg/5vEFiE6mwrXbI2eK7EFyz+g20lxCLWWKByk98tDQXvWos2S7JLKAfKimO8sZvGVYPJEKl+xS8cmfPmd+VjF6OWP2SYs6N2QX4sPCNfyxI4QJHF8McUESloboBfmRIuz2ZA8UdhQJUiDnKfPJTx35qUzuGlsBux7QxxrkqpDGQPVqjh2l4qlPDKoF+2iD+qBMx0u7DpF7xt/IsQNB82iHPsxQraC7alEDy+DrBc5ImlsW2SjUIhX37IHCjSOyFuQHimyR5mbNQ552NyCOMuwkIIkUJ4L+4R79VolZRtqNVZc0tYxeN7SfrZFvDMhmkW6SMsH8ds/o5SwVrteqDzuu4oFCLwX9Jxsskvy+wevkkG7OJPmpxN3o6NeScbBoJG4SUF0ka8FtO+RBRnezTxZZxiNlZFB1hF7ivzKl+3SNeXlAsxs+LFzLT3YMpw3+65PUyY0iofrXCum0g7cqgksxKn7oKR5I4pUeMdO4mDouEQT5mUAvwF7xxGE6Qu3WV3OsRjB8X9BtRdyjbepEd5LYffiuont+yfi/q8iWkYPnP9Yj50tc4t+KH8iidfO//ksM3p3SP7ek+M2KxSdcKkgXkva6xUw6ihdKfFS01x0xiCT8nXrihiXf14hjQ78ePvSGU8oTRw69l1Hf9Gm21AjMghST/lA6Tpp/clUoOiiOBP0U3FNLyq8OmH2yR/1rHdfmP80RFmYPSYIRdNcsMQ/ImcacryyojhSuTBZOYqHSF+56D9Mev1diziTtdYc6MSkSJAuoW6tC+qZh8aRFHxlUA/aJBvV+mY66BJjH5tSzgvFLhvnTPXp1ZEmE4okLlnVB+VpGc90jOoWaiw/XVGy2DG7PybWjsYb6vRH9aY7d9Mj9DDuJoALFvqT9RMeo7GhenRJVJGTg1yyjVzNmT/dU4xb3+gggGRvv9IxezGl+aPlh4QpZJMrI+C2FzwT94y3q0OCFxA3Sl/vgXjpO7W7aJC4+T+Jk5SP5DMKWZfi1nKAF/TiFTroqETy6K47hG5r2szXZCwOaq4Fg0sxNL8F9YUY7zynfyum2Ar4KFHvJ+LZ7usZGRX7H4HOBG68sqLZXtk5WYdcDFOk8WB9qMhtTIb2f024FGDh04fCnOYMPFN2zNeaVAc1OIOSB0dsa82MnTMuGD1649hHusktc4nuLH8ii9dD/4a8QJznFsaR9uKN8O6PZTeapqk2izXCzwXlFvmewg0DUKweMHvxaEtTqE43oJXYUVu4Y6UgqO9C0O56YB0SnkG3Kpepu9ZRv5zRXfcq26iWyleRHkvaxjvKNnOa6Q3YyZVV9YpEsoB5U4ATlgUD1sLweCCr5GfqpTzZSEnyeOj/dCgjgpmkN+kTTbXnUQqF6UHUiYrjdnuLdjPp6uqZr6G6siti3f66K2Gs91Vs59U2HWqhVIq9I2qhrPfkDTT+ORESacU082ZkgP5BEJVKU/VogZBHdCPp1jz7V+DISs0B+qJE+Uj/aQ6swJ8nz0E0dxV7qBJePWrCC7FQRFdgNx+BdQ/1oT7ZncGUyjY0jS7SKck/RbzvkMsXAhCwSh0n4bQ41yIivkh2ULxPDsGwD8skF3iqWpyXCC8xpMjz2ObiRZ3BHUz/WkX+Q008SaxERGX6Q4lG6hzryuxm2SoUUCdVeSlLurln0RUpOdoOQOvhhIEYwpxpETKGPRUSGlCrdb3qy/fSQYwcpu8wPAuV9RfOwJb9rUndXBKq7qcNvtj92W/MSl/h3xg+kI8boPYiVp7nqmPxWxtoXDtn8Foi1LhnhAuu/kjP5pmHt8VM2TyyZc/ihJ2QwfFOz/pWMSdGwMZ0x2Ae/4YgRJkeB8ZNnTL+l2P41BSQCQr8emL5oWPuRfcZvKq7/kkT0yem8ueGYfiVj7cf22fiGhI0OOw7kvz6g+LURVI640/GH//iv8Z//qf+WT1ycYYTFr3nyB4rR+pJ111KdBQZPnFM9d0p73SI6wfgiMLl1zvR1gbjWMHjmlObRHl9Gxq8YJp8/YutrEnm9xucwfC0j3mjY+OwB9cMWN4qMXswZ/8gBW78liesdOz+0T/9MTbftGLxhGD9+xuZ9R656wiTlhg2vLdj8o/fIf+SU+ronSEGmPcWkYfP9wPDWjPw4GRS3tzvsrZbr/2/F5C3J8Okz8lOBOdG0tzraZ2qu/rJi8pqmevoMMxdkh5rw/JytX9esPXNMOYfpq4Lht3KKfYV4fMnaO7C2MaMwPaN3BZMXDNXbGXq9Yyg61s8sg50F2YlMEgDTs/U3S9b/rwXmRFNZz+d+/6v80I++TnEsMDNF//SSrX9pWP/hA8bvJgd4xo7pH3hA/0jL1q8a1j5zxPAg0eVjFhh88Rj/ySXTVyTT3QsG3pKdS9yOpTiOlJ1n8vlD1m+fr+ZbAvKAnPRM3xYMPnPMYz/2HqpPrhp6IfGfqNn6DcXaDx0yuCPBSeprnuWNS+/BS1zid8LH2hGjmwhEK1NqcS44XVaYocS3GiGBPCZHg0Jw3hSoXOODIIY0bLcDQVAC5w1CaHwmkp+dht4qmi5HDQRRS0QXEUqkjikTnC4GyAqardSxRJ0Ycr4UnM4rzFjgG41QkahXMfOdIkTJ189uMWh6jooKHzQhQjCwtBlKSZyStMsiJe+S4uk7r2hdjqwkrtFciJIYVya+RnJel5iJwC4NykSCFvhOcboYpNcQkWDgfFmRjQSh0xycj3AuPbeEDOZdgSoV1ie3kKihcQbflHQ+OUzQR5yXBKHxmabtcmRB0l0FQUDSbCpsAe28RJfpGi75KrZrK5HwvEQXSa/Vd4p+KKgXVQp+XB3pRQG91ahCYvuCIBRmKJA2+RB6r2glCCXonUTmMTlxSE2zlYIWRQDXa751fAXhwZVAAG8V/UhwMa9Qo1SYfK04W5YElwIe23mFXL2GaCWzusD1ClsK6q4ArYgWopf4TOKFwC4qpE9u7Yj0vp2M9JmkX5bcdRJXJh2b8AJnFd1Q0swG6EEij/jB6s92H8WuusQlvr/xse60Jr/3gMnrEjPt0jHZu0PmT/WM3tKIoWXy1AntI55uLR3N1VcC2QyMDWQ3loTbHe1WxC0zOq+JY8/oENS0wzlFf1qyeMQxf9QzfVNQHgnMRps0S+8PWT7kOPm8Ze11qB5IzLTFDsG9M2L+bMfkVU2+U1NcBMrjwPhVxeRlw71/dovX/5vHOF7X5CeCUvfIgcOf5yyHEp9D8VJJcVeRTTviwOOtoq1z6hue6q2MwUsF2ahP14ygvzdg/inL5GVDdnMVAjkztOcFxbSFsSMY6O8MuHjKUt5TVL86YKAtYujwBdj9isX1SH4sKU2PKhy21SybnOlkySOPPWBttEBdSDqtaIeCbF+jrteURwIpInq95/gLlmYnUr5SIJ+cUx6KxJrUgdPPWeprnuqbJfLJOcUJhEYzvx3Rrw7odyz2hxZIGdCNICw0iysg9nOCjoTPzBHbHaqHuNQ0lcSKxBxVmy3ZqcAWkrMnFMurkvJAUL4vKX5hivmlCXxiTvUgFdjFTZAvjXDPLSgPJJtfVyyOB9BLFrci6pUh4ckl+QzWXpPYvYpQa5bXQNwrYKNP2V01KRLHKcLbgySNeGwBuSM/BZcn+yjxdkXzzojxp07w2z3FEYQoWV4F/coA98yC0QeCq7ePefqTdz7q7XWJS3xf4mNdtJ5c2yefRQZlhwjJtaAYduSLQJY5bozPMSbllsteUGSWoveY6JlUDVXRp0G+g1x4KtVT9I4ys0i/esIuPCp3ZBcR3Uaqol/dK13LRx35WUA1UBYWIshOUI068ovIuGzJ5578IpBfRPLzSH4WyU8jpbYUbXJJyIRHOJAmoAlk88igd1Rlh9KrcEoiJreYOlLMA2XeI01y1ZBOkFU9+UVkMmhRfTrxAlgb1sg8uZ5LKzBDi26hPImM8haTO0RMwlyTO/I2MFQduXDpntpzdXDBE5NDNnWNtKtgRJGOxKZ5g26Sy8ig6MiGPehAPo9sjJboOs2E8sKSDftV+GFkc7TE1MAq3FEvI6ZwbE4W5C65kAhSWKJqIZOezdGCsUxFS/jU4YoYGXrLNGvRXYqkiYoUwLhM9xrdaRnfbz+8p9CBYCJmDuujZfr7O14dyYnUieslrA9qTBfIzxPLFNI9VQvTrKFyFhUCrIIiVSsYi4610ZJMelQXQa80bK1g0HtuTs7IMps+FxWIOmKWsDFaks8jN8bnPDO5/x98P13iEh8HfKyJGM/+5z/H4kuR8rcq5p9KDhS6Xgl/38kpjgSzTzhclmYIZikIOz3yQpHtp6ymdiNZQemlRGYeCo860jRXA+o0nZ6KLKBuJG3N4K0VU+/QJDo8UDx1zuysYvRSxuxpiz42mCXYxxqqb5ZMft8B0gT2z8Y4pwhzA06QXUjCdk+2r7DjSEAglwo/CISRJz8VZHuabifg1jzq2BB1xG04lI8MXsvox9A+1KP3U+aXe6hl+I2CxfMt6v0CsxQIInaQrqm7SYDcbztk6Rh9M8dmkvZ2j5gnpqTfSaQMN/WohSTfU2R1RPhI/bCn245wnGGnSatVnAn62z36zZJsGam3EwkhDD2jtzTt8zXq9QFmFuk2EhnCr1tGrxjaH6rR36o+1HHlByp1Lk812KjI7hhcAX4UEuX9XOBvdHTTiDzIEG2ivOsWTLdi6h0YutvJrkqpZHNVZJZoJfG3xnTP1WQvDtLcSMDwA8niyZ7BpCH+1hSfQbfuQScH/foRSzbpEG8OiC4RdkIZKA9WlPdzhRUqxapYQXYuMEvorzqoPOIgp90MKW25geE9kTr8R1rMayX11USHH9yR2E8vmfxyhakD+8+rj3ajXeIS30P8QLIHb/zd/z2D+2PsUw3l10vmT66Ev0vorjj00FK+nONRtDcs2MTmcxNPXHNkDxTy1NBvelwVkxOB9jBwqAcZzU2XGHitQLcpbDLeaMlfKll80qKODLoR5OeRbgrhiTppxj5lUd8uXI+2bP13BmEFFw+lFNz+25T3U4Oep8JljhS+iilZuU7MOj3tYOzwDwrMuaC7tipcclVIr/9r2rGnevSDDOWSyHjwjYLZU5ZinBwxpBPoGuwjqXBFAAnlwzOWdU75ekZ7w0GjUXUSX5sjSbHZMnxojpaexhqaD4bYsxy74ZEHyYFCECmOJO3jHcOip3t1QtCJ1RcGnuFbmsVTPeWow782Iq4yyfyaZfSaoflMg3lt5ZyxmuON3pP4TGAfa1EHBqtFYgdKqB4kBmh304GMcG6w0+StmNUQ1y3D38wJGrqpICpwwzQHsxuO4Tua7rka89KA+noqXPmhRLcQfmhOMyuo3s5odj1RR/IjlVxHnlwV0g8MrkrC5uJQwlaPqBXOKuyGhzwk0feJJnMBt7mivO96qDxKe8JZxuC+pPtUi3mlor7qQabCZb54xijvuP+t3Y9ym13iEt9T/EAWrVt/9ecQZUE2E/TXe4r3M5orHlVLhBWICPFKh3OSfN9gh4EoVnR4D2Hi8GVEnymEFdhhRNcSIQKhWlHMtz2YgKjTz5ha0F/59r0ClB4aiegl+YWgvdlTvpvRXPXIOn3Z8VBNlBAOC3CS4igl1NbXA1GmL2A/WlHeNXgDeiFRPSDAjgJkAX2u6DaSnkzaZPzqBuA2LMUHhvq6//Ca3bHk9w26geXNZDOlWonqoN/9bXG0aZLLg912ZAcq6a58+oz8yJNdCIrjtC5XCOw40cNlB24SUeep2EYdE3svRppbFlpFdpK6j1CF5EvYwfJhi+jlh3R4P/aU9xTNQ5bsgUk/n0VYSQnyQ4XdTJT3iCDkEUpHZEUvlxFfRNQirUOESNEH5GNLvJXUZxXCr34WcINVl/RA0dzuE+V97bezqwZ7IlHer6fPzw5XR41EykOZCuEVhz5XBJWSrs1sRXlf6QCjSrqwYCLSR3SXpALmQCNtKqA+S51lcahob/Vkd3P6aTLoLQ8lMkCz9hFsrktc4j8QfiAp79PXUiBjtxEYv5hx5Qt7bL8AersBk6LQN/65ZvKSYfuxY3aOeopoiSMHAkavK9a/ptkol1wZnzPaj/jNHrxgcubZfPyEtZcU27+Wkmf9IGCHgckrmp0vPmDyhuT6LyV2XygC7bZn+o2MK7/3Plu/KVFXanwVyV+oKL5RIaY98kbNn/jP/hn/25/9v/PM2TG57ohjR36gmG4s2OoaBuee6VMnrD13TLudYjkmc8/W9TPWXwN1a8nmpw9pblq8iUzeVGx/fp/trwr0QwsQUL1t8I/VDH7PMdtflozfkeibS3weGbxpUFdrHvnhO7hP1Ni1wOBtzdbjJ2zftVR5ijzJDhWj3QVbP3Gf4tMXtOuRGCQmcwxGDdt3LRsPnVEcCoQXdDcsfrfjxi8Kpm8JNp47otyXqLmiu27pPtFy7Z9KJq8q1j99RHEq0GcK+eycrd9Q7D67T3UR2XhRMnzdkB0r1CNL1t+O7GyeMdId09cFkxcN5R1Dtt4xji075y1ruzPyY5E6UN2x/X9WrP9Dg1ooBsLxB378t/jx3/91qgcS2SSq+favaq5+8T6TN5NkQWx1bP3+PfqHOrb+lebK8w8Y30uzrDj0TH74iPhEzdorgt2rp0y7Dj1L3pXlcWRgLVuf32f3xinZ2YryXgbUwDJ9J7L2mSM+/SNvoufJ7kn2kvBozdaXFVc+t8f4HQES2vVIc2mWe4lL/I74WFPe7UAQewUqEpTgtC+hkNheg0pPsy5XBA0zlyOMSjZKUYBOrC4lwAZDJxVOCYKXRAkWhfMZ5AIRJMKu6OcagpSc9UVybBhqZJ8o5TFLVkxnfUmsBLbTCEXibsdEs45S8kp3jftyjbOsxHmN1wItoQkmUd6DZN7lSJGOw5Bgo2IeM0KW3t9ZVxJX17wQnNsCWaTwSGkABN4rlt6QDURaa6sRGqIQOKc46Sq8kEQZCQrmLkdmis4n+raU0EXNLOS0ShGyZOUUvKRTiqg0vcsIRiB8JJI+m36kcZngoi2I+YowESEgsIPkdHHRFJAnOnznFVkuOetLnBbIKiX9EiM2SKyRdC7HoVBlilshgg0SIQVOCmyQBC2IK8p7P1S4Ivk9Wqt4fbmNcGmeJrxItku55KQrCWUqur5RnLs8uefngpO2IhQyLb6XLFyGDRJnJBc2xysFQRCDwCtBRHLRFyg0IUsPM/jV+rSiszn3GacwSJk+SxclNpOcdiW+SIL4aCJxRei5xCUu8Z34WB8P/t7/x5/l4ldv0//oHPGNEXYr4EeOweuG5pM929sz5i+v0XeGMAyEsaW4r7Frnvx6A0cZ/VFBzCJxlJhepgZ/xRE/KOm2PZFkcDt6V9FtRnhqCS+M6K54gk5D/vWvK+otSXh+jvz6iH7HE8eOwcuG8MU5w//PANEJmm1B0AI1caAjy42I2dPIGy3xzNCjsOOAnifCgd7q6G9a+r0Sc6zpdj3CQn6g0Mpjn6tpz1eWQ9dShtPwTU344hzx6xPmjznEyJELRzvPGb+pCV+cwdfGLG8GxMQyntQsFgXmjQI3Tsa15T2JvNHCqcGPPeZGw+5gTiEdx2+tc/pgTLsbMCcKIz1ysye+UVI/3TMYNiwfDBGtojxPn5f69RHnzzrKaUN/XECjqQ5APD9H/tqY2fMdaj8jq5MhcTHoMd+scELRPJzcNfJzgdt0ZBst5t0cd5Les6si5lRhCossPGE/p7vqKN/MVlqolOtV1ZaYRWb/kw715RHzz7eo9wp0iMRHa+SLQ8qTwNmP9vhOYY41pouIx5bw2oD8RDB72uKMQF8osiXI6w3qbka3FghIWGiECeQbLXHksHcq9FzQXveogwx0JK96hrdnHO2PqV7LWDzXo+/kiYH4aE3+G0PW/2f3uVLN+PJXnvyot9olLvE9ww/k8eAntx9QngRGVYuMQCvJJj3FeSTLLbc3jjC5AwmiFZjSUbSePHrWxwsGg5agACvRIlAqy6DxDIsuObJ7SRgEROUpjwNZHRkN2g/FpnHgkdOe6sBjFjAeNimDpJFk05byBNaHNeWppTxKrgnFcYRDTTjM0LmjaAIT1VJIB70EE5EiYE4Fo9YyHdRonYoVEWTpMDMoziLjqkWvqOz0EjW2FCewMVkkqnVIT+prmwsYeIrjyPpoibYRPIQo2BouyEubPr9eIsuUwDvRLaVwGAJlZnl4eMRz63fYzWaoLs2wooSy9UyrmmwZ0cazNmyQ65ZgItm5YHNtTjaPCB2oyh4xtfgykJ3+a9e+PZe6EJjKsbE5J+9TDL0gWR7JRmCUZ3NjzlglarvwEDQQYOAc07whawLSBIJOxovZRSQ/DZRv9pTvWTanc/KLmHK4clAXkvWNBWYJgweeACAjIY/omWRtuiRrI+VRIlfAKnx0KRgXLYPekgWPMEkoLWrFWPZsThdk0pG1SQoQJcilpGgitzeOyEtLNo9IHfAGzEyytrakOA88sX7AD6+/8x98P13iEh8HfKw7rR/+C/8FZ49VFPc0s2sReW5QIhBGDn2mmC4tJ1cUVkpkLdE+wsAhWkm5iHQDqAdptqA7kJlHioCsJc0ExFwTTUxPz4OWrskZHKcgQXlmwCSt0mBtwbypGO3D/Fq6pkUgTCyDfcnk0TOQkYPFGBckcWlS/hYRKkc+T96AzmuwK7KBDhR1xCwEzTgx58RcE7OV958PVMeCtpSJyXdqECYQB47hvmBxI8BRCh3UmacxCjHqGT5QLK55OM3RbaRQjiZXuKmDmUnuFZWjmJOIDY2gOBOMbIchcL6pmQ01camxg4ixkcL6xCI8zCl7x2xdEYRAyMD4ItBcdcSDkqLx1GsCLwVCe8Ynkea6Q+wVtGupCJkWChew25YuavSJxhVJF6Y7KPtAmDjaQsAsSQd8Ecn6SBY9fRURC43btQhSorQAspCiaORxQbvrkPcL6q2I7ATD2rPYiAyzDnt3kMTak4C0MFwG6rX0EBQOC0KU2EHqsKtlII4dsVZYpfBaIHpB2Xm0D3QjwATC3NCPklbQ9JG1Zc/5wBDXLWI/p9mIqB4GdaDfsey8FRl2Pa/dnH60G+0Sl/ge4geSPfjQf/WXyV2VKOPv59Q3PepUI0XEDQPKOLK7Bi8l/bZHtClbyZcBUXj0uUIsVQqGzEAt0yBf6ICYKfrNgDrTqB6kCNhSICY9+m6iw6sTg+oEWXC0pURsdej3cppb6ZokEtYtW6+lp/DTbYM3Ar9hU0d1nKjwDB16JvFl0mrRqfSkX1hk5vHnWYodWYvIc52Kmglko45ukVEcKpobiZ6PicRxMmCtb3jyssftVxBBiEicWvK7mvpqoBp1dIdlCqGMEb/mkDMNHuLAo+eCYtIx3KxRMVL3hvaswLUaX0W4MMlk2CUWot12VNrSfTAkZOnvQIhIeSKoryYxtPtgkOyuBklYWx4J7K0eeaeg2wgIn5id5Vmyywo7FnGqcbkgqDQDK2YR4UWil0eIjU4u/X3K1aLyVG/pxPSbJHKDG0WiAC+hOBO4mz3q3YLmSkC2At2RHmpuNTRNRn7P0O6kwqUagfaRcKXHBoU50NgBKcF5CYwd1BKHwk0CUoTU+TYiBVRWgXia0W96RObRFkKryWfgrlrknZx2NyA7QTGPZA8tqVTP/v7GR73VLnGJ7xl+IIvWjf/Tf4lxA4wPhA2LvpfRXPOoc01U6dipnDa0zqAOdKJzO5mO/iTogSXoSDxPHYatQNerlGATkBeKbjugtSecZxBIM5Bpuld9NZBVPf40By8wNhI2LfpORnNjVUBloFqriQKa0wHRC8rTgHKRxa1I9CqtZ+BQyxS4GJRAXihUiJBFbBlRIiAWSRCtzjTKgtQem0vEsEfvZb9duLJAHHrUsSbrAvObMUXBnyuECoSxQx0biiYwvxEJMQVJyhjxU4dYKIQXxNJTziPVLBX1rpR0mSBGgfIRP1xppEYp5NDUAiM8/TWLrQ3mUNOvJR2XnksyH2hvOHynyA40dhpBBspTgb1mkXs53SQ5nWd4fJ9mWWHDwUzjtMAPIlq51KnOFFIHgoZY/3bhGsaetesXdM7w4GyCcILsRCVm3rZP4ZUXAnctFct2JxUuaQWDmaetJHG3Q94raDcC0q4K6SzijCBsWcSZxuYCVJqDioEneIE6T1R+OwSIKAs6BPwwIA8zlI+0G8lJXxBSl33FIu/mtDsB1QqKzqOJzDPz0W60S1zie4gfyKL1+J//K3SPmZSDFQJxalEHhm47IOca2QpyHH0miCOHvEixEwSJbATah8QyHCRnh9Ar3GDVcZmkjZJnGhUDi+1kgaRqiRLpWEgcG/I2cHGd5HZQS1RcrWMv+zBI0hRJV9SVgIBr5YxMOE7uTVlUCqxEOqD0qDaxAZl6pAW/MCBA6oCQATFPHaBWqQMTCBQ+FakDTXvVo48N5AGfpWJnDlKnYrcd+kSDDvgiYpRHP9A4I1M+1lImbdvEwVIhnIDMI1WAViXD3ywS84hy6deHhWscEFagXKScRbpKErZ65IOkPxJeIGKkPANbJNcNtZeuSSL5BbgdBycZqhG4cUhCaxnIFhCmnthq5ExCHn77yLBPHWTIkhehGwTyLjBdOKwRnE4MUgXW1xbgBbN3J/RrqyThecTtOuS9VdZVHsj6gLOaYk46YnyQJ1F5ETDeE5wimwvC2qqQZoKoIqZJVlRi4JC1JCxMcgXJ0xqVj/ipp8TR7Q8+7ESlg3y5cvLYy2m3k/OHCEnrdYlL/MeKH0giRvHonOJA4sYeLyRipglbjvxYEkoP11raMTglYKmJo4BpgBjxGw67FuhzQezSxyAzn4IAq5gsf3qJnXrcJFDuK/QiBf/5KBHzdBTkrlqqvRQ86cYej0RcaMKupdiX+Kkjnms4MeT7iuKBwr5b0b47TMy3JbDqFmgVIQchwexrxFLixoFgSO7zQRLGHnOi0AcaPwr4IuB9OuYMW47igcJvOOgkwkqCV3CjxU9T0q5bc6nbtCm0UN1sCZuW7DQJZaMAOVNQJjeIECVWK/y6J17voEzHrF4LvBaohYCpxcxSl+gmAXfFpvd2oAk7PeYiCW59Ce6KxQ4j2Z5OQZMXkoigG4E+0viRh+ttKoCNIEZJP0xriioirrVQBEQrwUpcBjGmfDQxcOilpM8kJwPDTBvMuSQ7UugXC9SrGXGnJztbiYQHAn2oiVc7zExS3VEEp4hC0I0i+kjDdoduoNiT0Oi0nkFEXKh0rGtXR5UFaWZ2ntKlw06PUClLy2XgtECdaeJMw/UGP/KYi7SOvhLoY0240pEfScKVHnGr+Si31iUu8X2Lj7VOKxxl+KnHnCvsMMBSIVtww4hsJapWdFWKuaATqF4RiuQBp84lIUtPx9EKcAqhw8oMVeILkF0aogQZYd0R/MoGqgpQK3ABFzVsWZxXmHP5neuYhJRMvNODhNhKCIKz3iRmn43EAlQn8CbNs4SVoKAfRKRLDgshS/oi2afiGstICCT3BZ06RZYKYSGMI/pcYscBtZSIVhC9ASFw4/jhGmUjEa3CWwNS4Ycp2NHlkdgLZLPSZbUSdSzRpK7H5gKfBUQv8CZJmGQrcEOPXipkSNEjkdRRqZnCTj2qVoiFIAw0REE/SG4ayd8w+S32OYhOQJcKcgwC2UhCLrA54ICZxmfgxulIDytxJqIcYJPIW1hBP05Gusp5ApGFBaJIDxtTj54r3CDQZwI916nbHnrEwqAU+FLQZ6DnOmWzVQFqjXQQconNIrpJs0dhRXLr0OBschNRXcRrUlfaJnG6CxC8Rh+nLtKPPGqp8FWgNwI11/g1R7av0EFgy49sa13iEt+3+FgXrSZP7gZx7MhONf00oJpkJRTzQNQBc56YbG4QiV6grAQDsfCoRiIahc/T0F/1CqkCwnhEk77UZCPBgyIQDTB0mPPVvWpJ6GQ6NjICxo7sxNCvrdZBhJGneJAspdqhJEhSQq2M6ajRprWqTv524XKAAkqP1J7YaGSXGIaqSWLqqCNqaHF9iuXopwG9VAiZ5lnZmU4MuMzTzzUgIK6uXWj6cUBknq5WqTjYdD+9VLgyEpxANAJVWbI1R44negF1RrSakAdEowh5IIbkPuKHDiU97jxHKggrqreeJ/snrR3hIkMKiFriC4+ep+5PnacEZCL0UaLPU6ZXGHlknTq1qGO6tgQT0nyLCMKmAip9OrKMWaC6r5Jbex5BClymQAi8IiVFr1n0qUkEDZ8eHGSQ+A2LtxI9U/hBxAYQvUjFeOwIUaAWimjAGVAdyWTZSgIiJS+LZCdFnxiioUiWXr6KeB2RIRCtRNcCP3Hoc40bBqJPidHZRkspLcvZ5CPcXZe4xPcnPtbHg88/8zbT1+HRx/YY3Qd0JKw7hh8IhltLPvf0G2wuWoqTNE+JE0d5HBnKltuPPeBqdUF+JlAdiMqTRcf2vOHm+gnlcSRWnlAkd/O1b3pGx5FHbj9gcA9iEfBVwJeRjS/3VPcFjz1xn+F9kjPGhmX8tuDRR/dY+//eZ/KP7jN6xTN6W6AvJLKVxKGnPIKbk1N2uiV5n2ZT0grKfclNccEnHrvLMGspjwMMk4C4OBSsnXiefOIOg82a4T2g8viRZ/Su4NHH95i8mZJ4t26ckd9Y4ofp3o89vsf0vYAo07W1h89g3TK4Cw/tHLF53mGiJww92Tk8MTzkDzz9Av+rz36VP/m5r/K54XtMz3sGkxbVCAbWsb1+weR9z/TaBc9/4u0Pi09xKti9fczaKxGz1fDJJ+7gB6mQFfuC648dsfZKYP3qBboHcyFQ6x2jWzPW33UM78BkuiBTHjOT6NIxfeiczdmS8duRYewphh1qKRnJju1yxsZhz/ZwxtprnrVXPWuvRNZeiky/BpMXAzsPnbD2WmD31ilmIdALwfihGdU9wdrXPNs3TtGbHboGPROs3bpgeBhZeyEyHi0xGx0qJA3XZHPB+knHrpkx0W0i8UTBxtYF1x45ogo9GycdG+szzDJF4AyLlueffotyrWbtbc/WtTPMQmAWkumtC9ZeCfyR57/C//oLX/uId9clLvH9iY910fpPdl9lcOgYFV0Ss54JtrcuGB5Zqqzn6fX7mLU+kQ7mgs3hgknTUnjH7njGaFqn7qUXTEPHVjZnOLcpn8sLTCMway3DtSXloSNfREZVR1QiectNO7avnVLtW7I5VEWPzyA/FVzZPWOw79ioluRNIFtEBvuewZ5n+oZn/VXPTjFjsuxYFzW5cchGUmY9leqo9gKT845B2SEzj/CC3EbGkyXFcWS4Zykzi8o8UUJ2IVjfmjHcS+9NBBBdSjl+8uoe+VrL4IFnezhP+qVW4peGz+zcYW19zuDMsa5rjEqdzWDQMWo6npH3+WPbr/OT62/z6ekdrpgZsoUgQRnH+qzn5ugMs4wIAYOyZ/PaGQwco33PIxvHmEXi+kgd2bx6ThxbhvcDD28ckS0jwUrc1FEdRIbDlk9e2aPApdyuXqWYlplnKDue2N5np5on4ooVxCxicGw1DVfLGapO86N2IzH4zDySn1gGX7nL+Bv3eHjjmGwe8VHgJp5qHx7dPsQsYHinxddJQ+emgeoAbq8fkTeBat8iZok040ee4iJwszhn6ttEmFmlMOcngit+yc31Eyrdo+uI14KQRfITwcaJ5dmNe4wGLWYR8QjcyDPcDzyydUh5GnhicsgXp299tJvrEpf4PsXH+njwzYstmnXF24dbLHclep46KjsSLJYFLxzf4GTD0KpIfiaQDlwlWLqMD043qFVBt5GcG2Qr8EZwpgpsq+gmEjmHuNkTR4H6SkFbSt492aTeAX2hcNcjqvQsbo2wQ3j7YJt6F8yFQgD9WPDuySb++Sm0ApRM7uTLCEvAJZr9/XpCXZbYVqNtD1kkGNhvxrSHFYuQI0cKuQiIrcSUa3rDa/tXWS5z5LZAXWjkQ4F+mO65uCoRM8lJP+Xa+hkA/UjwzskW8ysKloLj+1MWmzkhCPqh4M58nfkkJ9QaEyKhgPv9lK+fP0Qg8n5X8Va8yrzMaWpPVgX6heLEVdRrmvnpiG9wE1U5Qh4JSA4XQ5ZXFN1ZwevxCqNRQ8gjUcPexYTFVc3Z0Zg4DogItlPUbcb8qqa1gmZWESeOTEd8r1g0OYtpzvKKpHcZrveURaC1hhMqLgY5i87Ak8lhf/Q+yCZS7SlEBcfLIYsdzdnBGmE9MvgAFk1OP4L6iuHw/ii5fUwDQy+Y1SXdUCB2NIuzAushDhxRRhZNTjPKOOszmlKgM8jPBBfnA+oLaJShLjPmywwxjFQXEnue89LJNeo+Q24azo8mxGlE3JXMmoLltua/2Xua18rDj25jXeIS38f4WFPen/mv/gt6McbKxGZTbUoT1j1YJcmEo1U66Yo6ECagQnq6FTKZ23oS3VwSkTJ1NE6m+YT06ahPioDpIxaVsqCUQHaCWASU8mRtpEMn8apOg3hZOlSbnvqN9IgIwck0g3FATJRm6RMnw0sJPq0LEdE2WRhZJYlSJMJDIOnHeoEKAaslUSSiiewFonDoFpyGICSs7pcVPX3Qic6tBUGIxCAMkBcdPRrVrz4PKcAlyr/ykVx4St0jZKQVms5rrEufKTKiXRI6Ry/xUSJFROQe5xRZt5oteomPCkFE5A7v/7VrQeK9IuYBvaKNG+VxQRFC+kyiCShLup/2BJKpMD4JhwVxlR6czHy9SK4iIoKxERUia11HFHA6yIhO4kMiR5gm/ZvxTlEGRxMy4moeZ1oQucd7RR48fdQE8dvrkSpFmoQgEz0/grCgVEiM0CiTEa9ImV6yBxUDKvf0USEDaR1ZTPcqfIrUEZEMz5zio9xml7jE9xQ/kJR3f2oIVcD4gOoSa1DMNaFKOhy9FJjFKhuqjNDJD0XHqktDb9WkL5QgACtTbpWLCCI+j8ilRM4VlCEdRfmwykQKSdd0YqD0SY/jY1rHKCTa+zCgbcREjxGOOPCEUaDbCbRX0zA+moiCRCAwKcsKL9NrVJ7MB+RqPUGDqCW+CoRxwMSA9BHpIq4KyAtNGAVMByKkXCpReOKZSdqhYUD3K8++PDlHhAuDWEhikb7cEzvu258VBCtwRxntg5L+QUlodKKci5TS64uIaGQqpjKSB484Mcgu0fXlUoIOIANGeOSZQTUpbVguJayIL2qRfl70kniuET4Vb0xI7LsiCXKZaUSTOmp0ei9ECCYRJoQJqJi6Z7Mg3bv0xGuWsOuQi9VadUAvJXaS3E+iSaQZKg8qXXPjJOhGReLAE6uQClaT1oNNXoRSpyIWSc4bQSWfQeEB45ExpWO7YcSNInohkL347XXUie0p5gqKQNV5RrX7yPbVJS7x/YyPddFqb3rEsSGMPCYEdC3o15Jlji+TcFQXDimT04AbREKrCVHi1zyMHFKnIhSFwGkBTdIomT59gbthSMzDI4NcSuLIpyLZpC+hfjPAQYaaKeLYpXUsBd1GgOOMMA4MTiODI5BHBo4y1IMMvZfhCgi1JuiIkhHdp0ITBcgTkwS9YwcmYvpE4XYVSQt0amDoUgihTcWyWwtwlOHWPVmbCpcUgXY3YMfpWph6Mpvem4qBdtfTTyNxpgllQMeA7kiWUp3CVYLuUUf9mGd5y2PzVDgpU2ChaBRuFFNhzzxibOk3QjKVPTXJCmumUoGpHN1GSLH0Rwa7mQIthQzEMjl9uEGk20mFVzcgCcTSI5eKoKDdDggTyJrEFiQLK/lAssGSjcAYx0S3jOhR5wqODRdvTZm9N6HfCKgLlcTjeUCfabrtgFpI/F6Bih5UhCKtp99MDNJ4mCP75DkYi4BcqiT+tQIRIiLzKJ+YiaiI3fQESZIWZB4hk3u/qiV21+EGETWTH4rY9bmm2wyIE43Y7dE32496e13iEt+X+FgXLe6WtDsBsZ8R1hzGBXQj6NcDcq4Id8vUaQw9KoZ0dLaivov9DHpJHDiETh1IFAKbCVjoVJy6dHyHSp2RHUQ4TPfK+uRmoFyguZUMY+WDjLDuMDagakG3GeAwQz7eIp5q6HYC3WagzHrGoiVrI24YPyxcUiZT2KgibhRwTsKDPDlTDD2mTVRqN4q4KiL2ctRcpfV0yXS12wjIBzlu26EbQX4s0RcS1a3Wc5DjNhy6h+JEYI41qhapcF0YQhXRJDskX0bc0uDeHcJejpkJREhiXrGQMPCpcC0Vdi19yYf7OcoHEBFfBdSxod/xqLlE7GUom7pGNwrIQ0O36zBnCmF8Om5dStSZxm863Hr6fxkisfDIXqBPNRTJQUJE0B2Qh3Rc2Uv8IGKaSLlbk+029Fc83RVPe93R73rUSVqPPlZQODABfarppzF5NZ5I9FxC7iFP78mOIs1Vj6nBLCRChbSeZXJQiXbVVWWpy9MziTzKEsW+iqm7KzxSBkwXCfdK5FImZ5NTBeVqHWeadjfQvDXi9FvrH/HmusQlvj/x8S5aQ4eeKdorAXk/J2w4TP/bXVW3FWA/Qx1oGHgUqaiFDLrNQOwlet8gY0SUHtOlwtWXIC40cc2ha0F5ItAnGmkF7VZA7mX4rTSzqk5A7meoWtJcDch7OX7bpiLSCLqtwNmr65y9uIGYKVQrKLdqBjcWFHI1g1oVrqgiUnt0B0IG/JqnueqTrdNcwcSR1aSjsdxT3/DYYUTuZ4QtS75Mc5N2K63Drnv6hyyZT8dXqoNuKyD3cuwk4B7uMDp1CKoRya7o/Ds7LpF7mFgG0bJ27ih6n2ZRJO8/hsk5Q8403banu+4ZnIBZCsiSJEAdGvqNQHPbUZ6DWSR/Rz+MqP2M/prDHCtE7okmokWAvQJ1rHEbHtUkvVPMIkIFODaIvZxoIJqArpPuLkYBraItBc0LY9pXRqgDgz7RZNGRYQlFRB0Z2mses69h6BAqdVr6TOMe7uk3POZQQeVSIarTNb/r6LeSubEUgZh75HzVcXmB6CFObSq4wwgrVxU/SkLqOHKI3S51ogbUqaHb9ZgDTRy4dCx5qlk87Ll40n/Uu+sSl/i+xMe6aMn1DtVH1ELRXPXIuzl+xyUDU5+++Nvblu6KhxNDrJIDt+rTdbuRnsCDU8k5YujTF6AQ9BVwZHA7FnerR8Q0w5GtpNkNqDs5dtMRHm8RMiI9qLlKhr3vF/irPWaZ0meX1wPLm+m+Zg7dCyOWX1mjz0CthLluFAmNJkoBRSA7UmQPNGqe3Mr7QsC5IWxZzIUk39OoM41wgmY7IO8WuOs9+UUyd223AuZYI94vCFc77LrHzNMspd1KX47h7QFs9vhV56W6Vcd1nhGqkIq88pjNluKROdkzc8zYopeCUKbgQ3mhUzyHjqgzjbzQ+Cda7Lon31fEyuPLiD5XqIMM/0hHv7W6VvjUiTzI6G669OWdBcJ2T7flk7PJicGup85VeIjrlv6Ko1+PxEYRkcQiHb2FatVxOcXi8z3N0xZfRBAwfFNTvasJQ5c8GQ8N7UMOc9cQ1lPXZppIeLtKR4a3HGbPEIcOZETZCHcL9JHBbnvUXCFUJJYBuUiFKyqBupcjzjTkPs0NvSR2Crse0HsZ8b0iOa+YiF85/Xc3HNl9k/wMRUQtFWquPurtdYlLfF/iuy5av/qrv8of+kN/iKtXryKE4Bd/8Re/43qMkb/0l/4SV65coSxLvvSlL/HWW9+pOTk9PeVnfuZnGI/HTKdTfvZnf5bFYvFdL356F/zYUQiHOVcpZmI/w0/TbGlj5jD3szSbWIvExcr9XQeGrac8kehjk2yBjEDWEjFwlDZZPfXTiDzMiPcL4sARCk8ZPHqW7qVPDO6dAVQp2LCQDnO6Klz3M9y6Y+Ad+cKTLR1+4nCbjsUzjosfssRO4/NIphx5nTwPvVMEK+l3HWz1lNIm8kQQ9APgJMOuO9xVS2FsOo5apEIq7+fYLceo9ehaYCeBfttj7uSYE4XbcAysQy+TQ0V3xaP3DOZIEYaegtTJ2XEgLA1eC4o2sPFuRL1SUr80pZtnUHnKOhKNJ5g0uwqVR5SeXDnc2wPUuaa74hieRYQIqbBUjvheiT7RdNccw4uIIOCnHvkgo91N6y7ua8wyOYO4UUCcG/phMsYtDxT5iUS1ybIpBIl3CgaechEh8wQE4Y1BOh6WgVg6/KdqwidqhqcrF/+RRz3IaK57ygNJyANhvae/4vFVOuptr3iK00TeCWNLt+2xo4A4MfTjiOnS8TClT+4oUdBc8cjKM7xIRrlkHiESQajd9fRXPRvnjqwhdY0DjzzMaK95qkNJLD3btuF2M/uu98MlLvGDgO+6aC2XS5599ll+/ud//ne8/tf/+l/nb//tv83f+3t/j69+9asMBgN+/Md/nLb97cHyz/zMz/DKK6/wy7/8y/yTf/JP+NVf/VX+9J/+09/14j/1B95i82uayVMnFMeglhL3cMvkJYXebXj8x95lYDp0LVALSbzSMziAQlg2Pn3IZHee5iQLgSwCxljWjx2TKxcUx4IooN92uJFn69cVo/uC6ZOnFIeJ8t7vWLrbPbu/LBm9rZh86oT8RKCWCvdEw/pvaTY+dcT1X+m5+UuWjS8r1r6mKb5VkL1aEjYsw3uCjemccWwxC4GdemSA0auGrbpj/VNHmGFPcSQIRcSvO4ZvGaZvSdY/dYzcbSn30xd8f6tj7euajc8cMn4nCVrlZod5/pz+qmXttzQbzx4xukdyjl/vmXz+GP9wy+h1yfq1c8bLNAuzm478SPDI7iE/9j//Ok/9odfJf+SUbNgz6SxrGzPG9yNs9BCSg0d2c8nucwe0ty2uDIze1kw/fcz6C8keafKJU7qHe+w4MPqWYe2zR6y/JJGbHaGMVO8Z4rWO8rNnTO8Ehh8kGyk/Tp2ZqhzD50/YCDWjdwTGBfwkibJH1jHdmDO+HzDTluJUMNiD9W9KNr6iWPu/5Ux/KWPyXFqPvl6n5OUPDMVnzhm9o9j5Zwq53hGmjmjStcHT54zuw9a/0ijpCePUHeYPFMOrC9ZOHQPZoQYWVUvMmWK6vmT6mSNy1TM+CKitJEDOjjXjzvPYj72Hulqz9ppAXW1AQHVHU376jM3flHzuf/oK/9kf+e+/6/1wiUv8IOC7Fhf/xE/8BD/xEz/xO16LMfK3/tbf4i/+xb/IH/7DfxiAf/AP/gE7Ozv84i/+Ij/1Uz/Fa6+9xj/9p/+U3/zN3+Szn/0sAH/n7/wdfvInf5K/8Tf+BlevXv13Xsvb51u0a4LudAjTgOolzkn6saRrDO8eb9FVgkBAeoG3kr4UuKA5Phshgk5U5l6CFfRSstQS30KoEi3eFUAWabYkfRHpzwfESUgmt0EgBCyvKuwQzk4GMElhft4quomgPh8xfsQgOkFXSaJMMynpSB1VKTjvSoJR4EG6FREjF8xcgT2R2KDQVTpGjAX4ArooWRyPsI1GTVbef1HQjwTHZyPiRkzU7GiotSc6ST8WNGcjmCYKdjg1nOUl3ir6oaBfDohl0m8JJ/AFPOjH2NObNF7T9AaLIkRJ48BXklBrVBYIncA2hkM1RIpIVKl7PV0MkJsglorzo0H6i5MRnwtOLobITfAXBpEFgpa4TjGrC8y6SAaztU5ekRqcU5wvK7LS4NaTA72wiX3XBk3nc0Kp8H2k2OmITtLmyeRWBEPMI4tFhdyA/ixHlgFmivmyQA5huaMIpynuhcITlWZeF1AJxKaAWn1IzIlGsWhzVKmwTiWd1kpDt1jmxJmkF4qQS1yrEXlELAV9q3nvZJO+M6ipoL/IUEUgzCXzZUm2IfjWg+scl//uupVLXOIHCb+rM6333nuP/f19vvSlL334e5PJhM9//vN8+ctfBuDLX/4y0+n0w4IF8KUvfQkpJV/96ld/x9ftuo7ZbPYdvwDef3uXi8ci8oUh5ukZw73ETKt3I3I/5+Sb22zcPsM8OqeYBVQD7SaERmNfm2CUp3h0htYOcy7oK0ljNBwbzLWawR7o0lHt1pw97WnXQLxaYT41Y/hBEitP1xccf97RXAmor48wz50zugtEWFwH/60xwz92QPW/2Kd5zLG8CtWBZ/qWw7SBdgv6g4o48ZTBMlh6xMDjSwiHOeLrI7QFvdswfBBRVSJfOBT6KyOyfYN+asbofYHKPfUO2FcmuOcXVPckG181dE0GIrK8mtYTnl1SHgi2fl1RH5d4K2l2wN0ZEK91VAtPaR1+Etg/n/DiKw+xfzylMA6defrGsLQ5btMzuQfV7hLRCdxFxmJesrExR0x6ghTU90bMn+up3jOUvz6gGrWIkcPn0Lw3Zv7pnslLhuH1WRIIzw31eYF9rqZ5vKO6IxmVDbpwsFDUxxX9DYt7tka3kfHckU873NKwcDn9RuDqScuP/MSLPP2lN5h9uufiacfimmK5pVnujZg9bRl9M2P46Dm6huakpL7mOX0GNr+sGLynGTw0Q/eR5rCi3o2cPRUYvyUZvqMZrddo7ehPC+a7KY5kIDvyQUdxBPHtkua9MTZT9BMYPhBUVxZkF5HsXc3xS1uEecbyCcvkW4bhwxeoVlCflJw/FTj+5au8+v964ndza17iEv/R4He1aO3v7wOws7PzHb+/s7Pz4bX9/X22t7e/47rWmvX19Q9/5n+Iv/bX/hqTyeTDXzdu3ABSNxBVRHeRddOgbUATiCoRLVQHV/WMkekw3qNiBJmcEmQPE3qmpsXgUT6JjiFSeJ8MUF1AC89Q90kPJMB0kfWsRtsUXjhRHapI1G/dRjayBt0HtEg6JtlHniiOeLI6QGtP1JD1PXnTYoJfkTgiQ9lTRUsePEYmyrh06TXz6JmoFuOSQPfbLhCmSULoNdNibCATfuWOEZnkLcpGTONJiVV86MowzdJ7y2ub3jepk5E2MlY9hU+u7koGREjkjdJ7xqIjF8ndQ8VIJh25dYxUjwwggkDHwIap0TIgYkQ4yDKH7COmDoxUj1ZJESwc5JlFd4Gp6lAx+feJAOtZQ2YSG3QkOszqvgSYmo5R3qJDoPSOUiYihSJipGPN1XzOvMenzH1M5lDGw8ppRHowmce0gXXdIEO6Z9SRYAL5Mq11TbfIGBL5QyXht+k8qg+MZEdGuiZVQHnPmJ5KOJSLKWPLgRTp309pHWPVIUNE9x7VC2QAkzlMF9K9QsrlEsZj6kA2/9gZ1VziEv9B8P+XjZMQgn/8j/8xf+SP/BEAfuM3foPf83t+D3t7e1y5cuXDn/vjf/yPI4TgH/7Df8hf/at/lb//9/8+b7zxxne81vb2Nn/5L/9l/syf+TP/xn26rqPrug//fzabcePGDR793/0V/E6OrwLDdxT22Rrzakm9E1N2kofhXYHLwT3aoQ41VsvEKAuC4lSgGrDXEt2Yc0O3loS6WQP+ao96p0B3UO9A0Cn2YnBXYZ+pka9X5OewvArBRPwwMHxb039mSfZSRX01hSoO35WIKFje8gQD166fkOeWsxc2mWmNLyA7lYj1HtlIfK+wO0m7EzuFPlcYGwibDnk3p7nmEYUnBIFcKKoDif1kjXm5YnnLI6ykOJA0j/SYgSV7scJnKWqeICgfKNqHe8pJi3x5gEPSr6cgyuJIEq526GNNnwuIYJaSbBbRDTS7gXYros51KuSVwzxIbDv1IMPUScflRhF3o0XdKxAeuh2HzD2jF3NsBe3DPeowS04RDzUMXi6on+yQhxl6KRAuxXz4qz35HY3d8kSnVg75EIzA7dhkz9UK+rW0ppgHpPSsfVPhCsH8RjLVlTdrRAT//iBZaF3rGL6cUz/Xot8tsINUuIprC+rzkvHrmvrpFnW/SLlYOqJ3G2ynKd8x2GsWag2dTBlYZ5JgIvFqj2gk4TSHAOQBjCc71HSP9hRZT3tviAjp36ff7ahey2mebtHvFbgC3DQVWXXxsbYGvcQl/q3497Vx+l3dFbu7uwAcHBx8R9E6ODjgueee+/BnDg+/0wzUOcfp6emHf/5/iDzPyfP83/h9+ck5+o2CdlOyeNgzfLHCPltTvlrSbEXC1LHYDoRaU76fE250mFMNtcRNA83DHrzAHGi0grBhyY8yuvVAJyD7IKd9vCNXHvPGgJCBHUuWNz2DFyqWT/boSYP+5pRgAClZPOoYfWNA9+kl1UsVy2uB5Y3kZpEfSqQX9L+5ibOR9os92Vmkj0kQnZ1lhIlFZI7B6yYZ425FXBGJUpIdGdzDLdXbJapTLK8k49nlNc/gWxX9s3Va121PuwP5vQxhM/xn5rSLjMFrGctbgeaKJ79v4J0Mnp3R9xn5OxndJNJuBYq9HHelw5xpxNhiHmsZFy2CSHx/TDgq6TZdEvoGTX/NUbxjqJ/oMVVHszdEWoF5v8DebpH3CsyJBqGxX5xTzwrGL2fMn+nRBxnmvZLl0w3VywXLRxzioQ53XEAn0XsZ/c2e7J6mH0X84zWu0fiZQV9owsAhq0B2oui3HOpEQxk5/0M1sZPEOxWyEUz/25Jg4PhHe/T9DH0/Z/Fsx/AbBfVnG/S7JWYuiAdjsmFM114sqJ9ukfsF+lQijgdQRrqHe/IPNHbHEwUrdqpHLQX5ixVuzdHvWuRCoWaSWEJ31VG8UiBjRnjKEhuFOVWo/Zz6qY7BiwX1p1v02wV+RAouvcQlLvFv4He1aN2+fZvd3V1+5Vd+5cMiNZvN+OpXv/phB/WFL3yB8/Nzvv71r/P8888D8M//+T8nhMDnP//57+p+5isjFp/tye9l2CBZPhQoX6toblvMoSHbz+gHKfW32Q1khzn91CFspNxTBKnwBbhBEhrLmcRvOrIzjR1GuvWIeb8gikh3u4NWkR8r7DDdK7uT47uc7vGW0GqKAwVBMr/tqF4ZsHy8o7iT0V5xRBVp1pJmqHk6gIxk7+XJSWIhELWgnwTM0hB1oPtkj64F2anB58njr5MCfb+gvm2Tu8JeRlDgSsnyenrvyyd7ynczmu2Qgh4DlL81JK8Eyyc7yvcz2rVIP4mIcaT85ogsF7TXe7JjjQvQbgay45x+4sjODPL1nEWY4g102wE/jqlITFPyLheG+qYnfycDmxFv+mS8KwT6/YL+mkUdm2R6+40xWRWZP9NTvZVR3/DEpUR/ULB43JLtG8x7Gnc1ELKIE6AOMppth14ozMsVdhyJw4gbgGo13gQYRcy317RQiLeGBB1xGw6pI8tnanCC8qUx9Q2HPtPouzmzpyyDb5Usb3ncQxaOc4QX6Ds58yct1dsFzW7A7jjEXCOsQO1nNFdc+rxGKwuqC4UvIvNHHNlMUL2baPFuLWm6mAsWjziUjwxey+iH0G8m+YTaW93r1YL6YcvwXYPqI/Pf+RnuEpf4gcZ3/Ty3WCx44YUXeOGFF4BEvnjhhRe4c+cOQgj+3J/7c/zcz/0cv/RLv8TLL7/Mn/gTf4KrV69+eIT45JNP8gf/4B/kT/2pP8XXvvY1fv3Xf50/+2f/LD/1Uz/1XTEHAR77o2+x9S8Naz90yPB+ihdpHuuYfl0jbyx59CffZiQ6sguRPN+u9QzuCTJhWfvCAdOrM/RSoOeSOAwo49g4cKzdPKd6IIgaum2HqwK7v2yYfCBY+/QRg7sSHHS7jvohy7Vf1Exe1Uw/d8jgrkT2kvbJho0vZ2x87oBH/p89j/5fHFv/wrDxaxnFKyXmjYp+2zN4X7KxNWPqW7IF9BsO4QXjl3J2+patz+1jhh3VA/CDgFvzDF8zrL0h2fjcAdxoGL0vUjF8yKZ7/sg+6y8nsa2+uST+8Iz2mmX9NzLWf/iAtbdXThLXavIfPaF/tGHysmbj9inTC4tu0/vOHyhuXTvih/+X3+ThP/4m/scukAPHqLdMtuZMP4iI3QZpBfmhInxqyeizx+z8K8nojkRcawgGBm9kxBsN688fUj9scaPI+IWc0e89YuurEnW9JmT8/9j701jb0vO+E/u90xr33mef+dyx7q15YrGKLFKkLDmm5NiSE8eyhSAGjLRkGPCXKB8iJOp2gG60B9kxArgBIYFtBIHdNuwgHxp2twFb3WnLkhxJpjgVWRNrunXne889457W9E758B4WJUtwm44pqsTzAAdV56599nrX2nutZz3P8x8oP8xwVzvUD56w+U5k7V2JXusTh+yegbEl+/wxG7Zl/U1J5jxhwyJXkto7JlsL1m8Fis2G0S1Ye0+w82ua7X+lWf/7I6b/TUX92UO2/40ie3qO8ILyVob63Clrb2n2/mmGvrTCbw8g0nrMp08Z3xLs/n8MurCEzaSqUdwzFNeWrD/yjE2HGQ3ohUDPFOMLS0afPyCTlvW7gexCg2ol2aFi5D2P/4kbyKsNW18T6OtLhBOUtw3msyfs/GvN5//0a/wnf/6//04vzfM4j++L+I4rrS9/+ct84Qtf+Oj3n/3ZnwXgp37qp/j7f//v83M/93OsViv+4l/8i5yenvJDP/RD/OIv/iJF8W2bhX/0j/4RP/MzP8OP/uiPIqXkJ3/yJ/mFX/iF73jxd+drDBNBM6/RVQJmECSuEgy94fZ8nTbX+LMBP07icoGNiuNljYjmI8WE6AReSBolsUOBKM6AHllqwfXTpEvYLitUTVI4zyJIaLcUvoTjRY0enW3zElvBclGzdqlAWMEwEUnxAs7WI3C54HQoQOmkieiS1YjPYO5zhrnABYXOBcIKIpGQQy8Ui9kI12vsKIElQg62htWiRk8EYhD0ixxfOgjJS+xoWaNGaT/9IkPKQHAKVwqO2wqZawgC4ZPc1aGrGWY7Ce7uNAhBHzV9BAqF7UGbBMKwvWahC/RGogrYxqBMJChB6BUnywqAKCI+h9mqIJsKhlWG1JGoBMEqmi4njpPFiO3TPoOOBCdp2hyXG+JY4KMkuPT5DEExhAyRK3oLYSPNjFSXQDkIScxg3hTkE0GzKNB5RDpB22bkJfTrkn6Rg5WEDGIHTZdhCsGwBr7TxJBad0FF2t7gM8XgBF5KpEqfa9PlsJJ4ISGTtAOoLH0HrVXpe2s1/VjSNRk6SwCRVZfDWPDm8QX223PI+3mcx+8WH2s/rct/669gQkV+InEvLSl/vWb5So96mIbgUcDkmRMWXU72RslwwRG8QjbJZ8rstbhRQNws0g1+OySNQZP09syNnNXzA1lp6R9WqF5ilhCebSh+o2L2smW03rB8OEK1kvxQ4l9ZUP7qiPlne9S9HNUJqpePCQrad9aIvWT6bkQ3keM/5PBBI1eSsDOQHUhiGXEF6AcZqkvJy+04ZOYw9wztkxZ1p0A36QZp1wLxsZbqSxWLz6bZDIB7vKN4vSQ/jZz8YE/sFdmjJPvknmwo3igpD+D0BwacSEK0qpOEyx3FDYPdcwSbPK1cHainLXk90N+v8A+LJErsIuUp+Os9vFvRXvYwcpjcYY8LJu8phs8vUb85ZnUlWXsU045umVG9m9NvJXLw5A2D/fwS9dURzYVAGHlU6QiNpn7fEJ5qEA9zBiVx6x49tkQn0LcydO7xo0A8yOk3k1TWVtdz6Q/fY9XlfPPDC8heMPpAg4DFtSSEO34nzdf0r09YPJMIysIJpu9CtykIn1qgvzRieTUhKPEwuSFwhcB/YoW6mdNV6dwU+xK1PRCdRN/M8EWk244EE9Ed5F3EXx7Qb1boJrJ4LNm/xNwzvqGxn1mivzhm8aRDOEF1TyE8tLsfu0vzPM7j3zu+L/20vlUN6BVsjlfkq4g2CX4urUC3giv1KeNRR9YHlAgfeTCpTjDVHdNRg4kebQNCp6fhwnkmWYduIzrzTKqOWASijGRtZGO0IltEpA6s1y2iSnJG2SKtI1ukdSCTvcbzmw95cesBOvNEBfmppTywmOhAJ6LvyAxU3pEHh9YJTq3bSLaIFNEzyXryLpBlDhGTons2ixgLG+MGs4xkWYK8q04wmTToBoqTtE50JJ6tZ23UYrpIeeiRBISKoFJVMs57ysGRC4eWIQnBWkGtLBtVQ6XtGZw7kmlH1XnGeZ/mVYDWnt3pApk78nlgWjdICyKmCnNjtELlPhF+rcDUlnwWmVZtgoqfEban4wZdugSTNwNZ9Kk6BSZVSz3q0D5QB0utLdKmNWnl2B5W/OGNd/nU9Baycslc0YNwEemTQWc+j2yMGnSbEkM0kZAHyoOkP7kxWqH7RI8IJhDzSLYImFVkkndkIX1GIkvWMBPZU8kBs4pJc9ImQ08lPXXvmBYtqotk80RalwF04cgXgY26QfVnFX8ZyE8jxdF5wjqP8/jd4mNdaT31f/zrDI8ZooqMPtQMn1qSv1azvOoRg0Q6wegOuEJgn23R9wx9IfA5SCeS5FIvsFdssgU+zui3kldW1kbcpQHzbonqI6srSeUBGanuSYaXV+jXR+QnkcX1BIcPRWD8gab/zJL8yyOW1x04wei2hChYXUvJ7cpjBxS55fjf7DArDN5Afixha0CuJN4q7CWLUEkDUM8kxgfClkXdLGiuOUTpCb1KkPdHguHFhvyrNYunLXKlKA4lzRMDph4ovjTCFdBeccju23D4ctqhvjzCS0m354mcQd6v9OiHmqEC4SXm5NuQ9+aKp9uLqCNNLJPuXn5f0T1h0beKVIlqsJOIv9RRv1aw/HSHvlkk5feY7GHc4x3qZpGqxcd6Rq8l+Lm8W2DmaUbnqvQZlDc0wwVHHDTmSCGHBK5xuza1/waB3QjIw2QKqoRn/csaV8L8uki+WY8vkQHsW2sEE3EXBiavZax+oMW8WTGshzSr2l3RnhZM3jQ0n+7QHxS4Kjkq650W22nqdzOGxwbEXBOdxK078qPkQBwu96iVIhwktGuoAkIGskeK/tmeMhvobkySg7UAtzMweiOjebXFfDOBTFydFN7V6lw09zz+4MZ/aKX1sU5az/7j/xTxjV2aix50pL6psS+vMGccKaY2Pb02ivKOJlztkIcGe9ZmIg9gBeaRRitPGCWjxH47JS6zhP7xgUx45Ns1Po8Mm+lxv74jWT03UE9awpenhIx048sC4xua/tUl2VdqVtfOEHYB8hOBdFAeJuPJxR/qUqIsUyLNTiRiaiGAuZURikizl/anOkE2RNzFbyfS5dU0U0NGqvuS4aWG/Ms1i2dS4jJzmUi/L81pFzmjN3KWTzjEIDGzlLD1J2es+oz8nZx+K7nuFodnXK0jjZxasisN46IjRljemNAcVAzbAXWok5fV2JHfMrTPDVRVT3NrjPAiuTg/1lF/rWD+oqWY9Az36lQFrwT2qTYlLg/2Ws/o6znLZyzZeo97UEEnUT34CwP5Hc2wFpEXO+LS4GcG1QkYOWSIyKWi3/aoQwO1h4sddApxp0D2MP0gtesOftQmRKiJ2Is9k68VrH6gQb1bkc3AV99Klmk9zcuJa6ZnyeHal+kzKD402ItnXK1B4qYevUqAFLfh6C545FyjZzK1L/NAedMgY2D5yZ64NGQHKslT7Q2MXv924movWzARdWS+h1fZeZzHdze+L5PWy//bn2f5vwiYr9e0eyERf28qhhdb1I2C/EDQ7oErI6EMFA+TaC6NxjzUuCJiJ0ktXLegfSBMPTzM6XeSjlx2IpEq4J5tsLOM8sMsJUkJxb5CdxH32QXtvKB+L/toHaMbiv6VhuzrFfblFahEuo0RlAxEQH+zwu1Z1IHGZgJXQnaarDbihZ7sVMLdAjuJ2Emy5zAr6K8PZPIskRaRYSNAhPpbiesrqeJSC4W0guoBDBOBe35F/rXE45KdRFjB6C7YWmCfaTE3M7q1ZF2fH0nYGcgeSsobCiHAloL+isNNAvIkqZbrQwMmEtYtxfs5ug/MXrbQKfRx0upz1zryt0uyReT0k6n6NKcK1YF9skPdKRAO7JWe/EZONoPlsw6vQM8UqhX4PYs+VuQPU1XYb0RkI9FnZpRCBtSpor/gUQcmzYyySJxajPFc2T4mDIrDf3mB5Sf7lLh0xF4amHwtY/aSZbze0L63llQ5/BkB+Y2c5VOObL1LibSXqdLbtRR3FW77TLuyVbhRSN+zw4QU7PeSFJY6SIAfN/FoGxm/Zei2oL/eY+7kKXFdOEuSr7aMf71EdXDy3Pf6SjuP8/juxfdl0nrmH/5nmNe26V5NahDtbiSaQHVH0T5uqTZa4tuj1G4bB0IVKB5J3FpA7PapxXWU44uIrwOqI1UzWw55P6fbThYlqofqflJd8E92mDerlLhiQs1N3xV0GwL74ors6zXthWRmWH+osC83rP2PBdIKmh1BUDBMzxQ0ykhxIIgXBuSpwgqFqyN6JdGrpMLu9yx+v0CfKLqdJMabnQqECvhn2m8n0stp5lPdkwyfPKu4nnCIkQObbqr1bcnwSkP2WsXqSkBMLEJEwspQ3VH4xzvUvYy+TgCQ/ERidlqyCy19Z1gtCtRcJbml3CMPNN0ljz4wZxbzDk2g/npOvw7d9SEBShx0FxyqcNRfLXEVqXX5yKB6sE+cJS4Pw5ZDFIH6bUOQku6xAdFo1Ergpp44cZR3NGKm6fc8Po/omYLSI4xHH2mGHU/5XgaRJNsVkgN1NIk0XH2jYPlyd5a4wF4YKN/LyeeR2as9oVdkBwlY6y6dJdI5LJ9JidSc6pS4ti3ZQ4WfemJI59jnEblmofCIhxm6Ecm5+cDgcxClI99raA5L6huG1fNniUuBu9gz+kZO8SOHrBct77925Xt6nZ3HeXw34/syaT31n/48w5Oa0bua/uUG/VZFt50SV36oMA2EF1Z0UWNuZ7g8cZ3MXGLmgrBnGdYD8sAgW5mqmQGyLtm5y7s53W5IVukqEBeG+p6gf7FDv1XR7iVEnCktbpExfk+lBPqNs8rPBOpbigt/+B7oyM07O7hBUd1VyF7Q7gZ8nZ7M2R4QS4ULClsncEY2Ty3K4YKHsUP81kTaQfXwLJE+3mHeqmguewhQ30sVl3q7JpunNmJUpEr0tsJ+okG+W5EfQ3MRfJ7mceUDSbjaIx8ZhvysZTlPgBY7DgyTM4DLSiK0h8qj9w3tZYc+NEnBPgsUjy1YHlfU7xiWLwzohxkAAtBPpqp0/JZh8YJFHxhUl9CO8l5BPHuhvrKiHzTle1ky8RwUohfpPXZaXA7ibo6IMEySyaTIPZSe0QmMXj3COsWj0wnRC+LMILzALAXuapcS1yd7zK2UMOymQ2SByVczhomge6pH38sQwLDpEZmnfufbiVQuNbIT+C1LdiAJo4BXEn2okS4SDLh1j5QBfaxScr9vMI0AEZPZ5m5P8VbB6oUefTcHmRLX+m9m6D5y+NzHGid1Hufx74zvy6R1/b/8ecQoaQ+WDxTdVYt5aHB1QsohoNoHrwXDnkMtFEEknylExCzOgBjrZ+K2K4WrYhI27Uhus4800oIbnWkP5oHikaI925duzrZl4GtPeU/RXrdk9wxuFAlZZHI3VWTLnQRS0Jsd0gS4XeKEIOQRsxSEOs3YcBI3DqADBFBLhXYRu5Yg+XaSNBBREdFK8mNJf8WS3TUM6+nY8iOZ5iqFQ98+e5KvI1FFikNJt+tRI4u6mxNjUtyIWSQ7FbgNj1xKgkycMWmTRqMaUvJyo2R7ImRqh+ljRb8V0PMEktBD4ou5LUtx29BcSsoP0oFpwJZpjlPczGgvppmf6mHYtcn9eBDoPlV7dsuRHSrsKOlJyk6gu/TZ2vUzVOAgcXVENRJkQOjA+IYkGEGzmUSVh41UGeuZRlmwO5bipqF5zGGONFEDIsJ2j28M5X1Fe8kl/b8EfCRuDgQnyfc1durByWRRM0rzrCAFbt0jHIhGIZ2AM5difSrpdz3SBOLMIJ1A2YjddBR3zxL/cdqXmzqEjIj5+UzrPP7gxvcl5H3j+SPyQ4laKuzTLetf1ay/cMRoP0GV49gy+dwhPLNi/IFkfWvOOAzoJrWKsieXqBcXmCawvrSMtlbkR4JoIowc4xsC8+ycC59+iF4KzDKpXbjHWza+ohFPrHjqRz5EdQK1Eui5wj3XsPlFzfrLh9T3E0l38aRn/pSjOBSMbkku/kPPlf+7Y3N0wrh3qEZgtzzZMWxkDZPxiumbgrU3FXqeUHqx8GzcD0yfPKG+Ldh4TWIONCII3GM9668p1l85ZPyhIJhId8lR3VSMv5qz/el9uN4wuiUQEborluqOYu03ci49t495ckF5ArJLyb26I9nYXDC1PdOi4eInH/DD//Nv8Mf/1Bd5Zuch9UEkbFgYJPUsMrk6Z/quQF1t2P30Q5qrFp9HRu9rxp86YvOrEr89MHnhmOaaxY0iozczJp85ZPNrErHXEkyk/NDA9sDaJ44YHhuw40B5WzN5bM7GgUN7T/30KfLZJf2uR88kEzkwrVaMHgXi5oDoJRu+57mffJerP3obb0C18Nh/G7j6iz6pdJyZP1avHrP9m4r86Tmqg/KBZPLFnOK+ov7UMVtfk2SXV8gYyU8Ek69lVDc1oydnbNwLlEWHqBzmSJFv9FRqYOMritGDSNwa8COPbCRlF6iuLJl+XbH16xI2B/zEEaSguqupPnnC5lcU5okFqheIXhHtOXLwPM7jd4uPtYz0SVOg8zQ09wi8EbRDjshEUtjuFUuXJRNFLVi6jChlUnywksFqoo5IKeiiwkYBCggCr5LKQWcNx7LE56kgFQ48Eq8F1mke9OOkqhHTNhcl3ghWfYHMQdizCo0E046AnZSELLKIPU4nOHyMJP+pqPEIdCE+2h8hPcX3UuJcOj5XJLdi4WM6diWZ2RyZC+QgCZUnyuS+fNKXWKsxReJcBXmm6iAER31F5wzZmapFJB37ymdEpXBB0q5GCBmpsoHjWOGUJHiQOuKcxAWDNJKh1xx1VWpFSogIlj7D5ILoJPMuTxWwikQhWbgMXQhcr5EaQBC8YDlkeEkCrwhYeYPSkhAlTZ8TIkQZiQL6qBAiHb/3IDQMUbMfatqYE3VS3+jWEzXC9R6ZRVhIVt5Q5IK2M0gNvgTVpee4lTdkhaQfNEKmzy406Xw23mCMZPAaLyRGwBAkUkiEEXgUoReIeKZuEiQuakwmkolmd8Yx1JEYBStvyHNBPxhkFpG9ACv42LVAzuM8fg/iY90e/MRf/Kv0/zPIvlIlxfCHBu0gXO5QHxbkR4Ll8xanBWqu0C2wMyBmGrOvGDYD/WZAdBKzEsjCI0yAQ01/KQ3PMRGZe/ReS3tSUH2Q5jTmXpbsI2SkeGrO7LRi9EbO4qUe/SBDu0h4rCP/Rsn6Fx4iTODR4RrOSeKJASeSE/G2xTzQDNNADBLVJJWFWHvyI4ne1/S7SXNQPzLEIuDWPMZF8ndz7Fqkuz6Q3c0Sr+tiT/FayerVFv1BiVkKyAJDJeByS/H1ktUnE/AhmwukSNvipQ7zYUZ/ySFWqUUX1h35vqB4IKBMSMt+AgGBHiJ+yyPu5QzbqSWWHSk0HvfJhu60oLiRJRUSFckfanQf6T/VYFcZ5fsZw64n5IH6RqIq6Ndrmr1AHHlMbXGdJr+V4euALwN6pjALCJd7hjUQDzNkL3BryeDT2EjYdMhHGe6pZGNPJPmeyYFgJe3ra9iXGvRro8R3c1A+UDRPDaxNGuxvruNKsDuOGKG6L2mvO8pJR/zmKCWgqU+t1AMJez3yRCcaRZmq1WyeKApuz0HlYT+n3/GITqIbKPcFw1aaReq3KtorZ+t4KHGfaBj9ywqzijz69Me6EXIe5/HvjO/L9mB9O7C+sSRbgpARX4A+lYzXWrIuUu0H6MRZlRORraDOewoc2SmoFcSQhHEJUDrHKO8wXUSYZCYpVxLTwNbGIik0LCJCRXyRZijqVHJ58wRdW8w8mUz6ImJOJGsbK/JZ5Nr4mCenh6xvLJlsNIidAb/jUL1gVPSU1iWFBRNhkMgYyaY9VdaTLUC7mGZggGoFamKp1lqyZfL+kjrgM9AzyXi9IT+N5IVLVU2E7CDxoiYbDfksYjIHKj2r5PsCMxeMJy1l6zEizWBEJykyS91YRh84ihsRfS8lnkxZqtZTFcNHlaCoPWYG1WFkrW6RuUsKFp1ETS1mKSgeCcpyQOTJ0FG0EjUdyI8j47pDuWSEGINgXHXowiKI0EtE5dE+UBwIauvJCotUAWEFUkSM9FRdWhMWXJAgYDzu2JiuePbqfZ6+9IDiGCaTFjkAThLWPPkR6NpyefsEONOp7CVMHNkxqNyxvbFA6TMjykFC5ciawET3FMIlXUgFvkrmnfkxFMFT5z1ySN8zXyW+Vv0wkLWR8ahFWsAJ4sSRHwnW11ZU+57R7e73/Ho6j/P4OMTHutJ6/r/6S5jFGt2uRzzM6daTY2zdBNq1SF30DI9KfExQcoiUbcCVCXosVgrfmoSeM5HMRrLocUUkLAzDGOQgUA7GrWVVapgOsJ/TbaQ2jvSwteg5LTPYHuB+TrcZkRZGTcBuW/beC8gQOVrL8UrQ1oKgkp5d2UbiyEGrsEriddqnjhFTWHwVsIsszZtGIHuB9hGtPHHq6HtDdqRoN2PSOew9dtOh7xtW2wKZO2gl0Snq1uO2LfJBRrMhkIVDDhCspmwCYepgpunL5HWc9RFT9uRFz2ANzVAgvECqgBQB1UraCciFJmYJLalDoD4QNJXCbnrksUGYgMuTpFH1UNHnkmHbIU8MUgUYWcpHKlVZZ6Rhox3WSPzEw1IjAoQsIFUgXwCDop9EgkzgDJF5FAHVC4YKsoeJWyZNcpiulCVIOJpqqkPJ8kJAHGaEMiIyh54p1oaBo8vJhFOfKmIeIXfohaIeHPNtgSPNUIWIUHiKZcRVEe8UwSd7Eq0dUgRYKYyP9DWwMPgyIo2nyjqatqCewWonII4yYhEg84yPIH9syUS2vH/wnbkenMd5fJzi+7LSGhYl86lEPsjwl/okpWNgVUnkUuP2S+Ruj99J4AuioK0kYVCIw4xoIn53QIiIbgVDJuiEhlbB1JGdJpdju+GZbQtsBvJRRrg4JLmjPPklHV9KCUXdywhX+rTNwLKS8CgnfrLBf7qhWResKok5VJT3JCII2krgl2fyQyEpZfg84pC4WYa8myEjMHaYuUiKDCrN4+TtDLWQhAtpn76MNHk6tuGKJTuRlB9qgpTJLLKSiP0cd8meeT5pwqDTLK2ShJOMMPWYFoiRIRf0fU4zG9HGHDuKuBzCoPBRYauIOZX4NYfoU2L0SuGe7LFrgfy+xm9b4iARgyQMGvt4z7DpKe5q/KYlOgkLQ7MbMA90QlBe6egKiYsSMdMwdkQZEYMiWIXf9NiLFjEI1BAJVSD2GodiKNODwPTlY+oXT2kuBBY7sG9KDlVJbDWrnUB+VxN2B9RKEAfNMIbDLU35gSY7UoSdAdkJ6DTDCE43JeahIj9QxLFL86ZW0Y4FsVEIlZJOdipQh5o4Nwm1mgnUQhKnLoF59jXuoAQraTYD2QNN2E6O1XHQzLdg+GDE4u2N7+m1dR7n8fs1PtaV1uP/+c8TN3NEiJge7Dgg5zrB1l0CaOQu4KTA1QkeHjQg0jbtEoDCf8s1xUlCFlA2zUFcBnKlEDHiq0hEIHzEuIgdReRCI23EjyMBkdYxgD1TjHDjVHGtuQFB5LTICFKQFz1SRvxxjtUJcKHtGYzdSQKCUEQEEWHPLDZExGsQbYLlo1KCw0uMC9g62bMPk1Rt6BCxBSjpYWaS6kIVUINA+4AtBFo5mGUEcdbWOjsnoQjQJbCJCKm6ky4hwl0VCRnIAYQORJEqQ1uBaiTSgTaOQUkwAbVUDGsBtVIIlwR1rZKQedRcMUwjaikRJhBURPYS7QLdOJ0X2UmkCPgqInqJ7ARKpNatN0n8OEZB0CK1/ExEB89k6XFKsqg0UaZ1E0GfKjCJ4mBWgn4aUTNFKFNrVyuHcxqzgmEtJppEnrZJ5c/mjgJXJc1DAUQdUGcAl1Ck7x69AhkTLSGmz9GNYqrAloYoSIlORdRKMKxF9FwRioAIEQF4zhGE5/EHN74vK62Np47JDwRRCPyGo74l2Lh6miDZJuK3LfXVBWLTUu7DdG3JaEgtMT8OmAstZrdDd4HJMDCuG8xM4srEZyqPI/mlFXtXjzHHCr0UBANh4qlvC9ReyxPP30efKPQieWWFDUv9oWT98ZNk3JhHZoXmNMvIH0mqu4KNXx3Y+h86NsoZ49YhfMSNInopWMtaJlnH6Kagup+OLeQQiYwWnununPKhYHwjeYdFnY5ldE+w8fgJ9d3E8bIFmFNBtq/YfeYQtdtR303VmK0hOxUUdxWXHn9EfnlFeRyJMmJHAXMsmE5WrPUDa2XDpRf2+dyrb/OFz36DJ8cHFAsPay45ObvAeNowuh/Rey27Tx3S55IYBWYmmVyZM/kgnZe1J07pSwgCskPF2rUZkw9A7nYwnEkyrVnySy2Tu0lPUU4GogJzIpG5Y3xthtnpUtXbSGo9MNUd5cIj1hyilVTScem5R2w9dgK9RJ8K9n7FsvvrA3KvS4CIlaS6smTynqB8bIleCsp7kvyeQq8E9ZUlkxtQXFihe8gPJMU9hZ5JRjsNa4eeouxRMqAahRkNFDhGNwX5yhO3B2IekI3EECjXOupbgsmNRCoO41Sd6pWgvrhickOQX10m2kSdEuZ5nMd5/M74WCetIU8wbTEI/CigFqllJZz4CL7t1pLqhOzSvCiKBDcmkPTgRgGCIHqBz84g5jFxtWQrcVXEjkOqzoJAOoGrA2qucGVMxGSR/kYOAjcO6JlkqJPBoPDp39wkEYWlE+jDDP0wzbdiPIM/m7TuIBIBWbUCtZLIIcGmowbRC1yZ1DJUI5Ht2XFUAbmQ2FHSSxRnQ3/VylTN1BGXp6pPOPBlQLYCdaIS0Tc/swRxKUHKXuINIMALQV8k6alhK8HHhRV4lbYLm4jJskt/M4xiQj8qUKszlZGVJOjIUMYkHmtALSR2LaCa9LkEnbQEfR6xax5pBbJPEPNg0rFHUsVk66TILlz6jINOlUzQ6UYvA/gLFr/lCDrB781cYRYqfQc0iRs3CeiFxH6LzuAF6lQhO4mbBHQjsYYzQEtq86lG4qqAGM4+K8PZvtN3Sy0lopd4CUGROA4+nSO1ksi5IogzSoBKlaQdB9QytZ+jANGn9ziP8ziP3xkfa55W+OqI+ERL8UFBc0HQ7oC4NSJetZgjg9lXrESJQ9FtgDouYexRC4++JwlDnpTDKwGtQbQCMbXkc4XdigyVxD8smBcafW1Ft8zIH2rabUG3Bezn7M+2qJ6cM1+WFB9qmouSdhf4cEx8vKe8m7Fx7QShA8dhDeskR5VON72lIU4j2XFEDBFfR9qmwFcRnnCYhSA/UgwS4ijSGU04rPCXHd4G8n2DDQK7Cd26gFtj4hM91V1D/7wj5IYwQPPWGkIp7JM95d2c/rkBXxpcJ1i8PSVmCn/Bkj9K7UU7kfjTkjgK6JnB/tqU23UF48jCZbgK8lMBawP+wNB1BXI3Iu/ktA8l9eWOLuREYVgd1ojHPeahwT8ckV23WA/BZCz3R4gnPNmHGfFKhzxKM6dW5/gnLL6P6Ecadi3SGOgUq1mJyh2qssRc0LeGMFaICsypRKwN9DPD3dk63gn0bovyETd1BC/IblbESy3iqKI5KemvB9R7FW7LUV/scG+MAWiOS+RjEXWzwK171FaL/6AkSkF7WiJ2BPLUoDccwoBbaawWuD1QTlHclIRpQE0G4szQDhnqQkS3kuodg52A3O4QJwXNvEQ9FlEflHC5oXytQA2R06e+p5fXeZzH78v4WD/OVW8qxpcWFMcRqQJ2EhH7GcVeQ76KjG9AWChCENgamGvyeiAXjuqhQB1LgpWJOBokWR+pRh35PCLzgDcgTgycajYvnyLWbNqXDtgxqBPNcL/k4pVD5MZAcZyg98MayPsZ5aUV1QE8v/WAF/fuM768oLjc0D3pWT6VhGrzyZnpovdQBkKnCVEQL515YR0lEV9ZeDwS5pq4M6D2eooTkuGg8WnGsp+RX1lRPYSi7gkyzaHUhxn6RFNcbqgeRfLCEs8qEHUjQx9oiq2WchnIhSOWCT0pK08581RfFoSvlKzemuBajcodo4WnGnWpynUKt+7JHirym4qN6RJZO/ACtzTYi478UJLfMAnmXTkA/GmGu2gp70ommyu0jTAIgpOYSy1h25IfCcZ5SyZ92levKDNLNeoTLaFXOCkQJjBaeupxS+wFzWBwSMZbK9YuLrjwqX12P3FIdU8y2V6huohvDP1eoLitUBs9O48fgUhzMrcyDLvJK0yNLRtXZsg8qemHlcZOQ6IKZB2lsNBKnIFhPSJsEi6unKMed4hW4LxkWI/YcWTyARQzGG00yB58pxl2PcUdxeTCkrUbnvXXzyHv53Eev1t8rCut/pmB7HbBcM1i9jW9Se2+7GGGXQ/Y3KJag7ESryKuhuw0obrCtQGUxMwl4cwnyQeJapNqtzxR2DKiOghO4D+oUFZhr1j0vmbIY2r3eRjeHqO8Zrg2YPY1Q5ZuTvm9nOGqZfbVjWRHogoEGmR6VvBlJJ6YpDM4CKIWhDJxj9SxBu1x13u8UUkFvg5Il5KlEGCf6LFKYx4Z+jLxi7IHOcM1i76d040CtvLQSLyRiPsZwzWLum/oy4C7GAhLgTOS7CDDbnnEQhEVSVNwoXBrnuGTPYPQ9EYSpUAgsGVEnhrc1KNaScxlEpb1EfNuhQ4at+NQvYKlYtjwxHGkvFFgosbuOKRTiLmiv+TQtwvsrkNajTxSyC5DeoXd9uiTDFdG8BE9k4ghT2oZGuJZ6zdKn4Anp4YwCpgPM6SMiEwRZaDLIy5I+guO6laBvejQK4VH0O151CODPRlhL1pcVOhGEETSC1QnCr+ssOOA9T7B/lcSOw1kc4PLgJBapFFH3GZA1BGiRC40YerRTTKJjGVgeMZiS0N2N8fuOdRSEStJv+fJbhaETzXooQHq7+n1dR7n8fsxPtZJa3lZIY9HyDoZJ+pGJPXsWUksA81Yor3He4Hu0nxq1eUJsbXmEQSkB6wiSmi0wnYKUfpEWg3gRgEPHBxPCFpAbRPycABXB7yO3D2a4rSCkUvbmvTEvTypEBPHvdUUIsxiTUCiHegIdhpYdXkirYo0l4lZJASRzCG1R4w8PiSumCDiStBzwxA1qrb4s5mYsjBMIxxViKlF9upbOq90OxFsZHVUIyYWOahE7o2Rdgeij8RFkRRBQkT0aQbTDwZXSfotgRWCIaYZlBoMrvSoTqUDkQGxUgzTgFMCljkehZSBWPqkGDEOWA1iZQhRIUUkVh5xbOg2HW5ZInRC2ykRaI9LEIJh5PFDUluPJm3rlhneq8RtKgP0kuA1TZHWpI1npAZ8kMyXJTHAaTsBCXbb4RZlIlBrjz7VdFsevTDct+tJKV4ChUfNNP2GRzaGw4VOhGwF5AG5UtgysLA5kogwEeUjrCQxi3QbwKBwnUrzUQJyqZACml3J4ARxlcwopQowU3SbHn9aM9ppkaKA82LrPM7jd8THuj3Ifs4wDYSlAR1R2mOWAjuO0Cv8YZ70+UQideougS8igjg30MmULHTiSIkgsDnETkEW0CLBx5WFYSPiikhcJmknpX0iwS6h34pJQX2hE8z7bB3DWvo3vxlw2wG7HhimgXrSMp2syIeQvLycIsbkkaVtgrr7ScBp8ItkqUEW0TGihpRI3SgQFjoN7LOAkj4ly2ki6IYyQa2VjZiTZLg4TJO9SoLTg/GR7EShVxI7ioROEZVAKo8ekkK97zT+Xom6n1EcCqSFIIFB4YukAC+JUATUUib4+Dgm6LcVKBcJI49aSfSJItTpmKWLiWM19sjTRA9gEIiYYOFuLeDqlAx9JtL5cYmK4EcJ2BK9QHQyuSer+NvWZKRDGZ/s66cRe8nidh1yprHjiOgEMsRkr3KaaATddkS7BFZRPkKdYPm+iPQbKWFKD9LFlIy7pHcZSGtDRmTmE+DlNCEzXB4TNF5EROEx2hMO80RdGKUHBBkDVB51migAzWHF0YN/fwjweZzH91N8rJOWWB/Qc8WwEYinSZcv3bxTpTBsevxKI5bqLKkFdJdQW8M0pJvNUiUuUhbQIX47cTVJXV2GSNbF5MI7SPppJM4MsQwIIoVNFu+6kfSbgXiStimR7CqGaeT09hqzm2vIWYLNZ8aSlQNGfTuReqcSD0wHlANlk1VIvxnwUhBbBYVHh5S4ZIgpWZYxHXsVMCGkanM9wHGWiMibAWMcUsSzSjQQTzNCkbQDdZnkkHSTeEShSRbwUkb0EJG5Q2321HXHlJ4yuqRxKIFOJX5XJxAiQB4SD+thkWxe1pLbsgzJ0kWWDv+oQC0VbhrQvUD6SBglXpudRsQgibNk+SIdhOosceWAEDDXqLlE9anyikEgWgnFWeLqFH0mWN6vaR5UyGONOlEUy0DeeEJ1tq+NiFwqhAxQelQjMccKt+nxo4RkFJxtayXmRBFGKWFKK1JSy8PvTFxZSN5a40AMpGqrTEkSHaByDJuekEXETGPXInIlP1qHPlE0lzzL6+F7e3Gdx3n8Po2PddIy0qFl8mrqtwLi2BDrgImJIKx7GHZ8SmpLTVQpcSmb/LJ8FRk2AyGKpG+Xe7Q7S1wlxLkmjDxh0yNzjyCiV4J+IyCOkopF2HGo0iVi6lzRbwfEoSGOPSamZNBfcvSXHUqlxDLcK2g/rHEClArJO+q3VFxkAdNCNkt2J1GQEulKE2uPspAtz+DZg6Bfj3BsCGse45IDc7+RYPk8yGHkCGXA+G8nNblQ+HslMvPE0qMJ6JazxJXU75WMmBDIpaWYdOjdHpV7dH9GLFZAoxLdYJVuymJk6XdSNSWODXbLYxYCVBIe7rcDroqIsxmaWQkkgVAH5LHG1ZFuN2B8RPcpOX8rcQVF8qTKA6aPKJeMLWMUiEZC6Yk6Ep2iedbTPu4JdUAUgenMszZPpoyhCsgjzbCdqhthAuhIphzhfnJnHrbS+RMyJPKw9sTDDDnTuEmqnmT8txKXFohjjZjLVMXpmGgB/VlVdaqJB1mqpkUklAF5qhk2A2p2to48kJ1IssOP9aV5HufxXYuP9ZUh72b4dYf0EbVUydX3UYafOqRPBFr5KEv8rbWYbvo63Ux0I1L1dKqTy6wSSaOv8qgeiCKpXhwZ4qOMOEk3fulAtZJuK6BONP5WBROXboTfWsdOQDzM8RsOPUS0D+iYtP38lqN9zrH6hCN2mphHpIjJTLCIeKuITmJ3HXHdI0PiV4HAFhBPDW7d43dtmqX4pCzeb8S0z22XEoFNpo/DNMLdPK11y6VEMCSFkH4jEh7kyEOT2nQhrcONImGl8SZCLxAf5jRvj1m8vUa/yghlqqBCFhIXaaVx68kMkrs50icjSldF5EHGcCG12eS9LLXOSEAVsZ8x7KXqAhMIZeIyqeO0VrfhUavUMgxlQAwSdWSIRcTvOIhJbzHkkRgkYqWIlScg8HdK4kEGWYDaoZ5vUE+3aY15IOQReWjoL3jUI00oA2wPDBtJ8FgeJvSgOtapolu32A2flDlOzxJXJyFGYp7+PyDodgMhS/B7aSHmIXHxGsWwHeh3AvlRUtUgD4QsIo8Nw55HHWjiyJE3kXrpv7cX13mcx+/T+FjLOD3xX/0XmHaEKyMmRmxnsJNAPk8kXG0cOoD1itgnpQvdnxE484AUkeAlcZAf+TzpIUIWkF5gQ2rtSCL1ItIpBZnHRLC9xtbpCX391LOUBnKPIWJbk7T3TiHUgavdEknkvp/gkMmdOArs1KPO5JCUiAQrsVnaplqBlD6BDaJE+ciAImQx2d3HCKUjCEkWAsOQUIj5TBBGjsJCEzQyRtwkghVki7Qtd9B5jQhpdha9xCzTDdbEVPENeXIqVlmqJJ2UDFEhG5nWnKUKcdDp3MlO4kYerQKTlWeBIURBKEDNE1lX6MCk8TTRECKEEtRMEqaOchXppSRogZGeuNTJZbr2afYXJU4LtAqIVhC8JJQRLRIU3hpJJBF9dW2ZhgTEaLsswdSbBLYZtjxlE+mUhAzEXOHXHXqpyK2n04Kg0pxMLhR+4lGtILMBKyVBifSg0UpC4clcTMeiBXgJg4DMp9dYgbaRwYjU2mwlUkTE2OKcouwjnRJgQCwVfs1RLoDKkkvLaX8+1zqPP7jxfSnjVH89Rz67Yv01xfiZU4pZ0r9zV3vKB4K1f2PY3DtFX11h+ohZSOK2JRsi49c1o8FirqyQucfMZZprFZbpo8D4woL8SKT2zsRSvXxC2BxYf1MyfvqE/OBMdcNEtj63j7/Ss/5VxejZU/LjpFjhH+9Ye0PxJ/7YF/mT/6tfJ3tuhrveoV1MnkuNJOxYykeCad0wlj1mKfBlwG54zBzWv6wYDY7x7pLiMNlfDJueUAY2flNRPxBMnj6lfJR0Au3VnrVvGKYvHVI+kmx8Q2AOdHJcvt6x9nXN2rPHlCew+RqUtzRqKQmXBka3BNOdBaPeottkHa8PFfVvFGTvZshluvELKxg3jrWdBaP7ETYGooD8kaY+gsc/fwt1uWXtXQGbPb6M5I8UxW3DhVcfwLWGtW9K4nTAjSLV+4bxiyesvyOII8foyRnuahLdLe4qJpcXTE9csiZ5bIF6aoXdceiZYMzAWt1QHQWYJouQnbbjcz/0Fp/8/HuMXj6meOmU/vmO4fGe+pZK+3pDoi4kz63irsFd6Sg+dcLm1wX1XYnc6YgairuasDeQf3LG2r1IfUcg64FQebIDRbXdsLZwVGFA1RbdCKpbivpdTaks4+mK8YOI2uxQFop9weRLhupEMH76hOk30zqihPKepvjEjK1/rtj8h+J/8vt/Hufx/Rgf66RlVpEqH1BDxMQ0iJcDZLlFeTDNmfhtPJNBcpAphyag+jOgQSC9gLP5jXIol5CD3xKD1Q5Gef/RPMwQkuOxTUaO63mT0IRDRMe0TXWQ5Q41RLbEnB05o8wHssISqpCklzwJjBECJnikTNwvEYE8IKRH2ogKASPTYF6eDftF7lE2idwa8a1jF5jcofpIId3ZWUrzO2FJ24azbQIQyYpeDZBlDu0jBo9Qqe2oVMA4TzYLZPM0z5MehAxkLlCo5JklokjHPIDpIhPVoWVIu/CpMlEWdBuppMWocCYGLIl5QPeRWg/IGBMZOkR07hIS00IpLIpE7FUeMu1QhUfESB48uTzz7gJQkdI5LmSnbGZLajMwygYm45bxqEP3UOlEWxAeQp4+K60Da8UZxjxGpBeEPKB60MozznukPJPz8ul4pYNSOAw+fY9ETJJSEVQPWUznSIaIiEm3MqqIbiLKRSpjE8XAJ6qD6qA2A7qxiPnq9+5COo/z+BjFx5qnFQWsugx9QbK4t4m4EKnuSrxPquPdhmL/7ha+hLgGxT7QS2wuYCqwTUV3D6KOmDKiGkE3VXRFQbMwqK2ImUlUk7G/OcJ5xWJLsby/ibgUyI4V6kjx/vUtbK9ZXlQs7qRt1W2F95J2U/K37/wRZBY47UtCkITrPQSBeT8nWkE/FsybNXyeuGa6A6aOuCtYrnJ6JHZlUOuQzQX9ZkBNHPOrObaKnDzYRF6KFAcC/1iSdHp0fwe1HbEjSXFE8u+K0G5KHj3YRq5DX0iqh0nnMDhJN5WcnK4TJhJzJDA2gk6k52wuqO9CfzWh4xYnOUeDQkwV8VjAxCIe5rjW8K9vP8mwyBiuCMT9AnGpI94pkRZeu3MZ12nsNYG6n8H1jqAVt4/XUZcVzCWPuk3yCw0i94RM8WC+Rlw3eK84vT2l2GlQJrXgTmyJrSKUGuYeRo75rODLs2u01nDneIpRnkvrM4KRHMgpd0+nyKsSe7fGb1nE7Zyh05y0JcvnJFGAv1sRdgeEkAyd4XhVMVyRhAHicQ7bFkzgaFXBWOOsxtlA3PUIIcgPJa3NmEcJY4M91oRNR6wgm2kGGbkzmyIvKey9irBpEbcyHi1GjJ6oyXbL7/XldR7n8fsyPtaVlgC8VwwTMEcavd5jmogEQgauhOJQYk4lWTVgQrKFDxp8IVCtJD8SZMKT5QOyF3iVfnQrUOMBswJzAl2XEaLA1SRV940+WacfRpZNQXSSYS1iDjV6s8OsUvXmanh0f8rDe+s4l3hhT+484vlL95iEPkG+C6BTCB3QJI5UkQ9kE5vI0jGJx6o6+YIp7amqgX492YToU4Va71PLUQZcKeDE4Mcev+vSk32f+GquTtJUYRSIFwb0kNCGIkZcAawUonQY/63qL5UwZuGoHjnKzmEyj/cS6xWhDJSLSFkNCRTSgD0soEvSTsURVHWfqo8BwkGOaBRuy1EcQ111IMCuMob1gF4JikeSUjhU5kGRZoRVUh8pDgRFF9DGg444q7BCgomUXaAoBqxTHLQ1s6HAaE+mPBfKOXvFggj0jWHYCOSHgnrSIm1M4Bev8XsDbhzS2uoOESLY5F/mNx1+zZMtoNIDWgZ8rxmKBHzRLpKt9ZixJaj0IDDEZG2SrSLZeGBta4nPICIYOoObBopjQTXuEB6GztBtCprdj/WleR7n8V2Lj/eVEcBZRb8ZqO/C43sHVDOHjAlybWvB5KanfgBX1k6ZDsn6POTJDyubB0b3ItuiYS9foJuYrEc0rM8dFzdm5CeB+q7HtoYYE2F4fB+uXzgkW0QmNwf6eQ5O0G8HRnfgiQsHlMepPTZMItV7GdVbOdIJlAz8b/a+xP/+6i/xeH+MsgllZ5aCbdOwGRuK1rNRN0y3FglCH2B9Zbm4NqM88eSZY2Oyor/g8GVk/DDy2N4h5aFPPKlxpLqv0FsdW9ePKU4DZpkg7HYC5UNJtt5x7YmH1I3FrJIElBtHshPJXr1g2ndU1qU2n49kj1aM3jtlumgYlR3CCbSFYtyyfjSwN54jbSQ/DVS3NGYlKC+smNzzXJrOECG1B+s7CjOTjK8sGN0NXJgsQCYyrtxLuo+TDyPrqqUobFLImCv02kDuHOObkelqoMwHRJY8tgyBMuvYmPds1Sus1TxajFn2OZemMx5bP+aF8T1eGN2HCHJmEBdaJrcD1zaPUQMwSPpBc+WJA+KmZXQ3cm39BONjqs57ze6lE8x2R3XkuZgtKJWFlUpgkd5R24GrO0dcWJ8RdXpPEQW6GhgfeS5snvLpC7fTQ0UUyIVC7rZM7nmubRwny5yVod2LLK98j6+t8ziP36fxsW4P9ptJvBSRjBxPFjVuTdKtcqIUuCoyTAWuhNO2hFIzeIH3EpmDHZ/Bv31GLxRDJnE9KBPpB4nvCtxYgFaINoEso464THC8qLEj6PY0oj0bmqu0juNFjdsQ9MssnWERAYFdGQan+MrxdW7mOxyUNb0zOCmRJtI6gzWCQShOZzUyaS0RdUIOzm2OG0n6VcYho7QeBc4IZqsKvy5pFgUxT7Mq3yuaJsNspQqxXeQJvq2S8Ox8VRG2FNZA3xqiEGgTWfU5qtD0QUKmyPYkQlf4NtBWkZVNFiU4gZOKplSsVjVuBP3WGRIzgBsU/ZqgOx3jqki/kWaLAENr0FPBwekIO0qWLWGQ+DxRDY4WIzqhUUWyJImDxBmBncCpK2nmEY9EGohO4mRkZSShLxmMoDspsMaDE+TK8ba4hLMKN0pAkugkw0Tw6HTCME3fg2GescgKohXYMTyajelHiTQcVppVVeB7ha0FR12FzXTi1TmJywSgOFnUqJD4ZkEDNhGPh1xiFxW3zWaiFCiSFYyT9GPBo9kYu5boCyFLhpXCnYMxzuM8/u34WEPen/r7/xnqg2369YivA6MPFMMnWsw7Bd1WJI58UkdvNeVtTbjUJ44NZxDs0kMU6H2Nlp4wDnCYMUwDwkE+E3TXB3Ll4f2KoMGOk7pDfVOxemZgNOlwr08S16uM+LFn/J6mf7nBvFnR7iUAgYiC/DABGar95Do8/4EBZgabJTh+diIREwuAuWsIJtJtnfkuWcjaiL80oD4o0D00u8mHKmaB+q7CvthgXq9YXT27WZ8o5ADxpQXdKqN+L6O5mAAm+ZFEdQL5iTnNkJF/mDFMkmllcSCJewPyVCLGHn2hZVL0SBFZ3h7THJT0mwF9qhEqENcc5rahe8pSlAPtfp3aZSuBu95Rfb1g8YwjGw8MhwXSCrITiX22ofpqyfKFAXWQIQcYtj0UntE3DUEKuivJ2FE1ErfmiRNHeU8hZpp+xxNyEom68Ajj0Ucau+0pP9QQUxsu+ZhBNLB8uUPdKxAe7JWe0ddzmlc65K2CbAlRpKTpr/RUr+e0z/XIRxl6lfzGXBnxFwfy2xq744mDQrQSP3UJGv8oCS53O0mfUC0lsQjEylPcNMgQWT5niZ3CzJIai7vYU7+Zs3qpw9ws6DdCcqZefayfKc/jPP6d8R8Kef9YJ62X/5O/xuLHIuatin7jtySuF1vUzYL8SNBtgKvAjzzFQ0ncHaDV6EeKYMDW4EdJ3km7gF/3iIc5/WZARMgPFFIE7HMtbmEobhu6rWRJX97T6CZiP7ukX+aUH5qUQMee8bua/pWUuIZnujNh2aT5l2UJvSfeqJPa+YnGSomrI9lpQtvFiz3ZXBDvFbiaZBTYg5kL+sfPEum7VTqGSSSaQH1LMbzckH2tYnXNJzNBD6PbgmEi8C+syL5e0VxKxpcEmNwQ2Fpgn2nRdzKGOpGc8wMJ2wPZgaD6UKXKKZd0jzncNKlXdLuJYC1FxG9ZivcydBeZvejBCtRSoRtwT3Zkb5dk88jsBQ9BIFtBdvo7ExcBEKCvrugHTfleRn/Bg5WITiIi6N0WV0TEnQIRksuvPlWIPMkkjY5h/OoRg1Psz8bgJWFmkgr+TGKvd6g7Z4nrsZ7R13IWL1rqaUt7a4xwCRXqrnVUr+esnnCYaY87LJIT8krgLwzk9zR2wxPdWeIahfQ9O5SYg0QmdmsBdZQIym7ToV2kfiOj34D+6oDez1LiutJTfz1n9UrH+CsFuoucPHleaZ3HH9z4vkxaL/y//k+IL+3RvtqkxLWetOFGNxTNk5Z6s8G/O8KfCan6cUpcbhoQez3yRBOPswTMqANqiGQtuB2HvJfTb0aiiKhBUN8SDBvgnmwx3yxTJWfSqVt/Q9KtC+wnVpg3a/qNkBLXOylxTX+5QA6CZj0h8ewoVUhu3ZPvS+KFATHXuChxo6TWYWYSsTFgL1rCoxx9ciZV5c8SqQrY5xrcIqO4aeh2UuIafajoP9WQf7Vm+ZiHOklMxUYzvqHpX1mRvV7R7AXi2KMKh18aqpsa93iHepAxFAJfRfJDSbbXUF5e0fWG+bJEHWm0AyqPfGToLviUuAIMFyxGOqqvlvRr0D1mUccGvRJ0VwdU4ai/UuIqQXNtQM30b09czw+oI4NqREoMJbhrHfktQ78ZCEGiFxKzTG7O9tKAGiA2imHjLHHpgMwt039j8IVgfjWprtvLPQKQD3NUB/aJDnW7QDiBvd5RvF2QzyKnnx6IVmFOFLJPiSv7ICc7heXTDq8FepkULfzeQP5A49bOdCwbRdAgpwNx5BH3U4XW7/mk5CFBFp7s6pLVQUX9vmH1/IB+kCUPr2sdo68WZD96yLTouPHa5e/lZXYe5/Fdje/LpPX0/+Gv078kGL+e0766wrxd0U9T4iruK7K5wH5yRS8U5m5GUAK35jEzSXYscRcGhs2APDTJGn4toFwkX4C95JC3c/qtkIRzS0ecGeqbiu7lFvNWRbcdCEUg32zpTwrW3jI0n1thXj9LXJNUce390btIE7hxexdrFeVdjeoF/TTi1jzFfiI9i0bincKOEncnPxFkM+gveuI0JdJuK6H5VC8Y3RIMm+CeatBv1XS7SYh1/L6m/8wS9caIbBZpLpIU20ee8buG/lMr1DsVxRE0O+DLlNDLOwp/rUM9yrAmST1lJxIzE9hJxK6lWYtqBEp54tih72e0V5LckfAgTSB7es7yqKJ+K2P5gkUdGWQPIoB6YUG7yBl/I2f+/IA6NWQzkRLX10oWTzj0dMDNM0SryE4E4WpPdsfQjyDuDUQrCSuNmUlk5RAywkzR76TKz2SO7KkFvlO0NyeoHtbej0QNhz/o0AcmJa6nW9TNEuEE/QWLLB2TLxYMY0H7VI/ez9LntGcRlad+MyMISXfVIlqFWgrC7oA5SMLB3gj0kUL1Kam6bZfsTw403aib3nIAAQAASURBVGWP3k8JXA4wbATC5Z7y9YLFiylxSQv2esf6rxboNnL48nmldR5/cOP7Mmld+ys/j8oK3O7A+PWM9tMt5p2Sfi0mPToVmX4zWVv0z3TIQ5PkgEaBaCLlA4lZSPrLNunHHSf5JRkixYlguDagPyhRbfKq8mXErznG3zS0rzaob9ZkMxjWkviu2xuYfDWn+fwK80ZNv54S1+aXNXiYP5kADBvXTzCFY/WNddpocGNPcSBhw8IgCZ1m2PRQuQQVf2TI2oi7aJG3C7rtpAguS088MYxuKbpXGvQbddK+ywPj9zSLT/RUk4742hpBgZ0EQp0S1+q5ntFmg3tjDe9luumOPeVdRbjSI49TyzJkCbiQn4JeCvqtQL8V0HOFIhDXLfp2RnPNoQ8NuhFkc+g3I+HJhuLLFfMXLfrQIAcoDhOYwr2wovxinRLXtyquZxqyd0uyY1g8mTT8xCBS4rrco4412T1Fv510E4UX6KVA5i5Jbx0Z2gsefaw/0iQc9ixZ5rh+6QCs4P5/f4XFCxbzyKBbwfBMg7pZEs/I1sWzM5YnJeNvZCw+MaAPUhUEoB4/a1l+M7Uso0uVX9ixmGOJlwJ/eUjgi1mWpLiMh9qj7xrapyxZaekPS1QrMEuBe6Kl/FrJ4qXfkrie6FAqEO5W38vL7DzO47sa35dJ6/L/7b+kmI2JCuymo75haJ4YyB6a1A7MAmLNEntFcV8zbDlkqyAkhFaofdIbPDzT6BtF1Ezhy2RGaE4k3SWH1AG1nwHJot6vOcpbhuaaRdUOca9IAMF4to4PDKunB/K7Js3Txg6EIDtQCCcoD5II7uJ5B71Kvkt1sm+PZSBKMIdpCO/qJOAqYoLFDzse89AkX636zPNqFCjvKNonB/JbOXYS8GWgeKSRPTRP99AriocaW0d87ckPkjtv+1RP8JLsUCcH51ESdHUbLunrGXBrnqy0SB2I+znxNGk8qjZpIrp1R3Y/tQopPbFTyFaSnwq6awPlezntJU8sPDiJ7CT5gaR7qqd8J6e97JC9RM8lw46D0pPfyiAKhnUPCMxC4MaBsObSeVzqZNCZR3SbrD1CmSotOw2YU4kI4qMKz6xSS3bx0kD5fk5zxZ3N3AT9lSFVX30id7sqMlweKN/PaC8nLzAxCMxKEDIYLgxk+8mXKyKSFc7YJx+vQ4WvAsM0JVXVJS8tP/bkdw3CR5rLIYFDbPrb4ZKlfD+juWbRp98GX8SPNyHlPM7j3xnfl9qDj/03kcknj8gWkO9rxKszdn5NsfXiAeUysP1VweQ3c4q7BvXUko0PI1trM+qiY/ShYPp1TfVeRr7WM85ath8NTC7PE7KOiLjasv41zfZvSsYvHBMvdqlld6ThlTnT1w17/yRj+sIR4UqHWQjyBwbxA6fs/ZJm69V9RvsgdEQUjrWXD9n63EN+5M9/kf/l/+5XefLBku2tUyaxJzs+0yE8DdQrx+4P3ePq8w8wC4GZC4SJyI2e9bcE5cvHXP/hW6guzVfMXBI/sWTnVzTbn3vA6KZEWEl3wdJct1z+7zTTN862PUiah/0FR/Ncz6V/Ltj8kmbjyWNGncPMJP6xjvFt2J3MuPJgyZP/T8vj/5eBq/9XuHSrYXf7hPFd8FuWoGD9Hmy+dMjG1xSX/plMArVFoNsOrH/FsPNH7jF5R3HpnytEnyzp26uW9d/I2PvCXba/LBGbPXYaKO5p6rdyHv/sHYpXjlm/GdEieVCZU8no9Zxru4fsfP4+tbNURxG34RC9YGNm2blyxPUHK/7Ij73G5/7462x94T7TLzzE/cgp7nNL1l8z7PzwfXZ/XSKvNPgiMn4zQ1xtuPqH7tA83TOsBSZfy9n6oYfsflkQp5aNlw+wzzf02476HcPWU0fsPhwoGQhTR/ZIoZTH/MAJ69WKja9LykUg7vRgBeW+wHzmhEuvPmDni4LRXUncGXB1ZO1NzeYPP2T3XyuyJxZMbsDm6x+7Z8nzOI/fk/hYY2rbHcNsqZEFEKHvNWYkmTcV0QjEVIJMck+D1chCsrIFHo2u02whKnBeEYVAKsVgk/p39ALnFa4UxKBYLEpCr5JqRPzW+0G/JjmZV/g2OdyKIOh7g5kI2mWNLIFGEbVklpdIFXkn36XQllmeM7MQlCbKM76REUQhOFrWGCuT07IkcaKMxOaSdlVw34uEoIuAF1irGUaS+bJG1gki73MBItKtS1wBh4saUSbtPIIgBmg3NLYWrNoSYdIzTLAKm0tOfYEpFPkljWlzooQ2c/Qh4HNxpo4f6ZWk6wvkSCCCQvYQZapWXS45XNbEErp1mc65hqgFPhccLEfIicC3OgFGNEQPD5ZjVi4jLyXBC1Dps4oaDvuabhnwSoGSRBeIGtqgaV2JyQzfOLpIiIJVnxFC4ubhk4r+4apGTwS2MSgdCVrgBsX+Ypy8uUiKKsdNhR4L4qA4ntc4p9L5yeC0K1G5ZogQgiTq9N+2NQSpEWOBkxI/KISOeC8ZuoyjCH4qcXkktAopE8/upCnRE0G7zJBrAleI9EU7j/M4j98WH+v24BP/9V+i/Po24Ydm6F+ZMPuERSw15b6ke7JnvLVC/PoEGzTtY45AkghyWw6115HdMYSHBcNWwE5SSykTDrFpiR+WNE+45Eq8EhRHkX47Ip9foH5twuyTCRmnOhjfgnZbID9ziv6lKaevDMi5pnogia/O2fzHBWIQnDyt8bmgvWqJRUSsFPmBRFxt0fc1Qw2uEMiZRgQodlrETkd7c4Q5UDTXk0uyHEDlnvy5GfPDmtE3cuYvD6hHWbJD+dSC4pfGnLxqGa03rB6MkJ1M/KtPz8l/ZczpS5bJzorFUQVLTbEvEc+sMO8UNHuBEBT6VCL2evRuh59l9EeJY0XhUcKTH0qG6xY+LBnWI75KQJaNL2naPXCvrJDfGDGsRdzUgYps/YZJSMvPLpCvj1P782LH5DcL7A8vCN8ckR1K7OisNXqxp37HEB7v8UuDvmcAEpdq12KWoC3YbU+8X2A3AsZ6Nr6osCPByXMCVTguPb+PcPDgVy4zbAb8hmXtqxnuR2aI/++U5WOeOPJMNlcsZiXV2wXdViCsO8obJs0uP7uiQ5N9mOGNwG9ZqlsKebFPCMYuY9jyqJFFiIi4m1H2EXdpIH6YOHtybKnGHav9msm7iuFzK8TXxmkWOXGsfd2w9afuslsu+De//tz39kI7j/P4LsbvWXvwV3/1V/mTf/JPcvHiRYQQ/NN/+k9/2/af/umfRgjx235+7Md+7Le95vj4mD/35/4ck8mE6XTKX/gLf4HlcvmdLoXd6YJsHtkeLzFNRMhkUa+bSF5YLq+dUjmXdPdIEHU1RDLh2BivGKsEmRYhKV0IIrVzrGctpouJOCuBGMlmkWyIbNertC+dlNWjgvIwoBvYGS/RZ+sIeZJO2hotqe7NqW7NyGYBs0xKBzGmfaoe1k3HKFi0jwiVlN5VJ5jSsTdekEmH6WOaKYmEHMyHwIXxgjy3aT0qgUvMCjbHK7J5RJjAWtVB5Qk6YpawNVqRLQNSBaZlixkN6Zy1sFG0lENSwUcnxfz1rOX6xhHrkyW+DEQRyfHUaqDoPHU2IJxIqumFIysHymOH6WKSe/Kp6hOFJxsP5KfJIbkuB0QA2QvqUU8+D0yLFhVAd+k45CCoy7SfkeoxwqP6iFlFdCsotKPGUjpHaWySloqBQvSMbrdUD5Jsl/GRS/UpF6t5UqW3grweKE4j07pNMk4kG5rd8QKde4SPCCcwlUV3kM0itRkwuUPGRFY2mSMbPBPZUwr3EWCjzAdGow4dA1XvGGVJl1FEyFSStdKZo1gEJlWbzo8HU1nyWeQT6/f54Y13v+Pr4TzO4/shvuNK61/8i3/Br/3ar/HpT3+aP/Nn/gz/5J/8E37iJ37io+0//dM/zf7+Pn/v7/29j/4tz3PW19c/+v3Hf/zHefDgAX/37/5drLX8+T//5/nMZz7DP/7H//jfaw0fQd5/7ufpn1ZM3ja0n2rQb1d0m0mxIj9QZEvwL6anY3M7w2fgxgEzl2Qzgd+1yXr+yCAbmcAFNpI3YPcc8k5Ot3OG1NOeuDCM7kq6FxPkvd2NhNKTjQbsPGfynqL5dIN5o0q8qSLxpi784btgIh/e2cENmvJegkV3WyGJsx5I2BqSkKxX2DrZnuQzyBbQXQgwcYj7eXJndgLVQ/0AhnVwj3eYt0uai8k6Y3RHMnxyhXxrRD6PLK8k2aBvrWf4ZIN8L0HeVxeSCkaoAtV9ib/aox4Z+kziy0g2SwAEO44Mk3Qj141A6oSKUw91AiscGRAJ8l5cW7A4rhi9a1g8Z9GPzEfWIfqpBe28YPymYXEGhzerhJirXs9ZPu7RawPuJE+6ggtBuNiT3dP0Y2B3IPaKsDSYpUDUDkFALDTdVkCfaHThMI8tcZ1muDNCDbB+IxB05NEPevR+hnTgHusYvVawfKVD3SowS4EkMozSNnW3QDgYth2i8NTfzJJKx1WLWOmkjr9lyQ4lvg54JVFHCmVTG9NuJMFhfazoLnr0Q4NpkhNOP42EvZ7yrZzlCxZ9LwOR1DE2v2gwXWT/BfWdXJrncR4fq/ieoAeFEL9r0jo9Pf0dFdi34u233+b555/nS1/6Eq+++ioAv/iLv8if+BN/grt373Lx4sX/yf1+K2k9/l/8PIwL/NQyesfQfbLFvFvSbSS4OyIpPvhMMDzZow6Tzp8/Q+gVB4nEOlxyRBMRJ2eQdx/J52CvWNSHJbqL9Ouk+VLlqT/U9C81yHdrsnnS1PM5+E3L+C1D+6kW83ZFtxWIeWDjrWQYeXotzUO2rp6Q5ZbF6xushMbXCbEn1hPk3XcKu+WTwoMHdaTJhphIz3d/SyJVgbgw1PcE/Ysd5s2K5qIHCfUdyerpgWI0wDfGRAPDNHyknNE8lVqH7s0JIUrsKBCqQPkgGULKI43VkqBS1ZfNQTfQbccEeZ8plPTENYe+m9E+lvhPuhHoNjKsQ3isJf96yfJ5izowqE6QLyLDGMJTDcVXKhbPp8SlG3DXO8yNgvwUFk96vAbVJjJx2BuQJ4r8oaLbCvTrEWmTOoUsHOiAONH0uylxiUAiFW9ZjPZc3z0kWMXDf3WR5QsJXq4c2Gsd9WsF8+cd9bSluzM6S8yJM6XuF2myJEBf+bdUOgaJWknCpkWfJNdlf3FADIJwmiEHgcySLJV6aOifGMgLS/ewTsjBLslFFW8UrF4cvp24Lgzps31U/IdemudxHr/v4z80aX1XgBi//Mu/zM7ODuvr6/zIj/wIf+2v/TU2NzcB+I3f+A2m0+lHCQvgj/7RP4qUki9+8Yv86T/9p3/H+/V9T9/3H/0+n88BsDuWfFbAqWH5hKd8t6S7ajH7CWoessjyRUuwkvxBht3wiFYkKHce6S94OpGsPeQQcVOPXiTIezeJmHs53eUE9ZaP0k0oRMXqqqf4ZkV7yeGesAnyHkAdGRZPesq3S9rrA9k9g6slJ88k/UE9S0oK9uY63kH7pEd2QKMYpgGzMIQyEOuEoovybK6TQa9BHxqGi47skUZaiTtT1lhdDhTvlrRP9uR3coZpoLkYyO5nCJvRPt7DoMj3FXYsWV0JZPsGf2uN/rGB4CXmUCOCpNuOZAcZw5pHtqldaS96xHWHl4F4mGNONXYcoFWImaS74MnuGfpdj9vzsNIIKzA3S1bPWMobhnYv4Dc9Q6dSe+7diuXzA+XNjPaCBylRdwq6HU9/OZDdN2gBdhoYxqAPM2wdGF6wmGNFsa9w44gbBVSrEEESphFzqLCTQHaS9lPOMkSE/W9cIirO1pPRXPLEuULdKVg8ZynuGeR7Y/w1fyZUK9F3CoZdmxQ/BoH4Zo3JoL3iyA4TCdzVETUzDGOf9CHfLfBlxK2l1jG9gkbgdj3ZjRwRMuKFSJDgEKj7BaunLcUHGc1lhznRiBOTeGPncR7n8TviPzrk/cd+7Mf4B//gH/Av/+W/5G/+zb/Jr/zKr/DjP/7jeJ8a/g8fPmRnZ+e3/Y3Wmo2NDR4+fPi7vuff+Bt/g7W1tY9+rlxJvg0X/wXUz5+Qn4CeK/yzDetfU6w/e0Q5j2y+Jqi+mZEdauKVnvFdWJ8sqPKe0U3B6F1NcV+jxpZCDWwcW0Z7S7JjgdCRsDMwfkez/qakfvaUuNtTHEpkK3FPt4zeV2z+q4zJ88eESx3ZqUDPFP75hs0vatZeOqLeF4ixQ2wMjF88Zu2VA178U9/klf/1G1w86FjfmjN2A3ohsJuebA5l51n/9AF7146SIsUyOdvG2jO+ITDPzrnw6YfopcAsJXKQ2Mc7Nr6sWf/UI8Y3BVHBsB5otwO7/0ozek8xfeWQ+r5AeMGw4WkuOXZ+RbL2hmbt+il141NS3XOUDwUba0v2HrU89v8OXP5/BPb+a8X2g56N9QWjhxG/YYkRRkcwfuqUtTcVO/9KEorEE7OjyOhdzeQzh4xvSHZ/RSU0Zx7pNgOjNzPWPnPAxjckYqfHF5HsSJHfMVx8+SHm2QWT26CNxY89eiEpbhou7B2z/qkDSusoTiN+6hGdYNw6prtzrh40/OCPvs6nvvA2488eUbx6zOqlnuZpy+h9zeRTh2x9VaKuNkQB5S2Dvd5Rfv6InS/KRBm42BI0lB8a2B5Y+8QRw2MDdhwob2tGV+dsPHIUeoCRwxwnCSleWFKbjumbkqINsDkgekk2k4jnl6w/e8zWVwTVQ4i7PV5DdUtTv3LM1pcV5vEFk/cFm6/9x74yz+M8/mDEf/RK68/+2T/70f9/4hOf4KWXXuKJJ57gl3/5l/nRH/3R/6D3/Et/6S/xsz/7sx/9Pp/PuXLlCnakWXYKladBtosSbyTNUIAW2Fqm1k6I+ChwWjL4DI9CFQk8QCS1xyQEIbEB0AKcIGSSoAQ2KpouS8oRWQJSeESyPzGSeVvgrSLkIFxah8sE/ZAjcgiNBhVZ6hyhIg/cmEw7Wq1ZOkVUMgnYxuQwHM5sSAySkCfIPl4QJHgp6azhWJb4PHV2hQNPOr7VUCBzgbDJLh7A5oqoBLMhR+YgbGpTomEoFUELli5D6MQPiBGCFCy9wRhFsabRnSEYQacsA2l+E12CoXskq2DQmcCWCtGl1mzQkSgkC5eBEdhCIoYIEoIJRARzm6MLgesVQoOK6TwcDyW905AJgktrjAIIgvlQ0NuIlxKEJIaQCOYoLAanNe+ttvBRsLBZOh4FhKT6vvAZJhcMnUZlwEoQomQZDHktCCatR5oIMUHul0OGlyTovYA2GJSRWA9eC4Qk+a0FhVAKlafviPMSrSE6gfWKJRlUgqAg9Aqpk8nnyhuyQtD1GbIWRHUOeT+P8/jd4rtOLn788cfZ2tri/fffB2Bvb49Hjx79ttc45zg+PmZvb+93fY88z5lMJr/tB+D0h3qyt0rEU6tkKT9IVhcjfFAxbHnsZ5Yo6dErQewU7Sb4oxwvBfbZlrhpUT3ERtLlikGrZEa4nUjEQSX5JlsIitdK8kcaHl9RHELwkn490uxB9aWS4o5BPLWkOE6+UKsrEb5Z459q2fki7P2KwLxeId6quXN7i/fv7XC8ZvCPCsLEY4LHtMmI0QfFcHPEYDXqqUVSiDiGkEM/Fsh7Bd29OunrbVmKA0FE0OwC74ywzzeMbgnIAsVmy+zZSLcZ4e0R7pmW+qFAqEi93jB/0SfV91slYXcgbwJqgGEK9qSg2Rac/vGOwy94Dl+SLMqMzmX4qac6ADUd8E7SnxYsr3nmTwemb0vKRxKz0RG0oL87or3sOX3JM3lfUOxLzLTHl9DfGbF8zjJ6z2C2WqRIKMfhnTHcL2ivOvJjSWEGZO5RA9gPa9wHI1wdIQuU84hcs7hB0/Y5q0oy/Hdb9P/jFsO9Gn9YsLcx58LmDK8E/YOaxbOO0dsZ+vIKOQArTbfMaT7b0l5xjL6ZYfYaBBGWmm5WYEqHGDliBsNhwWon2aLkyqGLZKHiV4ZuPdI83xMlVMeg1zvEIPCLjGUw9J9t6Lc9oxsKvdNCFPSPKhZPe6o3M0Y/eMjuj939Ll6V53EeH9/4rietu3fvcnR0xIULFwD4/Oc/z+npKV/5ylc+es0v/dIvEULgB37gB76j9x7tNmTHgul0RbZMth++iGl2VFm2tucUzqN6ICaUnGoFSnjq9YbKDEnmx0MwkQiUg2dcdOg2wdrDWS2aHwhMG1mfNgm2LpOEUjBQPki6fNONFWaZKglfJhmotfUVk5sN4/cbzBGYU4nrNdZpfAayFdR5TxUsxgfIziR+looxA5sbC7RKEHKRpYpCriSmga2NBbp0mOXZWnPQM8F4oyE/JUHexy1ukoR09alkbWNFPotI7VmvW+K6wxcRtRCM646y9+gYiFlE9oKq6Nm8NKfY7bBrkSgFKgZyY6kaT1UkyDtOJlmskaN6FDCrSF33EEB0aVucWorjiF5BVQ0AyEai1wfyk8hk1CJDRLcROVPIVmBqS74K1HrAyAR5V3OBmkuM8RTCUg2OIrcIm+gLWlqq9wPFrQitRFu4Mjnh8vgkoRg7iZha8kNYmzTp++FTXTPdXhJH6SFhMmrRNskxxSAYVx26sAiSY7IoPVkbGMmBXDqEAwJklSWf9sgYqNp0jqQFvEDKyOb2AlF4illkMurStkHCmqM4gqcvPORzl9///+eyO4/z+AMb3zF6cLlcflQ1vfLKK/ytv/W3+MIXvsDGxgYbGxv85b/8l/nJn/xJ9vb2+OCDD/i5n/s5FosFr7/+OnmeAwnyvr+/z9/5O3/nI8j7q6+++h1D3p/5K38Zu1YyPg10ex72c/q1mDgvA5TO47ctbdTIY43LRdIa7CGzyZpjKARxoVPLr4gYG8mCx1YQZ4ZhLYIOaB8IVjNaefqts32tJwPGIjiGIWMy87QXPOJB2iY8jJaB7UsHCAG351s4r8hmAumgX09crbINUHliL7FC4YxA9oJy8GQ+0IwFwnjCwjCcuS0rB+PWsio1TAfYz+k2ImqAqg3YbUc8yKk6x+lWyrwyROomYLct4TBn1HhmmwovBSJGqiZp+7HQ9LkkCkFmA1kM9LmgywWyl5gOpPEIGVCNpJ2CmOuU6HSgrhuWbUl1BMu9iDwxCZ0pIsWkpelzRgcibTvVKBmII0t5oFhugiktbp4nQdqYPLKyhaAvRKp0eoXvNCpEZOaRIYKV9JVANgqVWfKyxztFtyzRPrJ70hIl3H3coE4MmPS+9SPJ6pKHwxzdR0zuaYxCVJb6QLLaDcSZQfUCox3WSPzEw0InNZLCka/Sw5JDIZYKTUr6NgMTfaI3jAXiVGNcwGRpH7J0FEdpH+IoIxYBkXt29y21s7y3ufadXJrncR4fq/g9g7z/8i//Ml/4whd+x7//1E/9FH/7b/9tfuInfoKvfe1rnJ6ecvHiRf7YH/tj/NW/+lfZ3d396LXHx8f8zM/8DP/sn/0zpJT85E/+JL/wC7/AaDT691rDR5D3//NfJ+xkCBkojwX2kkXez+nXw0eE1/o0pBvNrkXMNE6L5HnkIVulxOKmid8UG42rA3o4M4RcC4iDDOkiw3okCoEQgWKW9sX9HNNGhq2IFwJ0oDwS2KtDUmPfCkgHG6cWEeF4w+A1bK0vyLRjcXPCSqd5l2lA1A4GmeSjph4pImJIaEcdA6EOcJzRbwRElvy/4qDIl+Au2I/g8KoTZE2CpufGEu+UBJ2AGXKAfAXDZqAqetydKrVLx4lcna2AqYO5wmZJ7kk3EtVFpEuweTcBtRIIE9LPTDFsBdSxTkaVytMVErGWYNztFZd8sgaBwdHnyStM3/62rYmUgThxyKPEUVrtpfOtVkmUl7GDRpHNU8t2qEB2MpHDc4+IETqFnUTUUiKKkASAi4CRgUvljOAEB+9t0V1xqEcG8pCqqvuK5mKgqnr6B3W6MGQkji3ZA023EzGVxZ9kRCeRRMKaQyyTAHKsUgva63TuxCAJCwMiEbyFSC7GdseTK8dwWAACKQJx5DAPNd0Vj9o3xDKC9ggi3prv5NI8j/P4WMX3pcr743/7P0c/mjJMAzImbpXbdYj9ZB0fi0AeHX7Q6KUgThysNE4lk0MlPMILZCORMllhxNW3E5eyEbceyPC4g5KoI65O1iX5ArqtSJ339PdGRJ1kjISI5KfgLjrEveSArBsgClSfQAZrzYAOgdkVcE2GywRRRUwLovSEIFAzRTSJ00QEZUGHgB+lp3LpI8M0EoRAhkC+OjOvvH+WuNpUzekYiLsDQ2cw+5p+K82spBXk3hN2Lb3TqEONqwGSESajlCRCGZDrlrFKa25OStomx1W/S+LaDmSZwx7nCeIfY/LcemhodgOmcIQTA1GifSBOLep+RnfxzEhSBVwRUTKgD3QCwWx4RCtRAXweUManc9Mr7Fpql6pWIDKPEBFahRtFsoc6SVCoiBSRkRiIAk63JXpfp30eniWuMu2/6D2zK4AVmJk6q8Y84lST9YFmNxkr66VCEAkTh1ippOVYeIQ9M6+sAv1IpKTaCcjP3ARm6eFjsQdiSLYmwgRi5TCPNN0lj3pksBseFMjFObn4PP7gxvdl0nrhZ/8y/TMZYj/7yAcrX4Hf9MRTg2ogTAJOJySWaSGOPHHQiJUEE/BFQoNpm9pXvzVxKQvKgRKBYT0QeoU+STdL5SOyl+TB0e0GXK8xR2fbQiRbnpkA7uf0lyxIMC5ZjNTeImOkXxTYOqZEagRRRkxPaqVVDt0J7CLDF8kfTA8kK5BxICPgjnKCOXNdtpB1ydJdPMzptwOqEckKpXf0mYKNIa1nI6B6gXBQtZ7BSMKGS+TqiiRb1UeoPGp1pswhPNFAOxLp9YPC1aCWApEFMAE50xjvme+Jsxu4TATk2sOJIbOB5a4AT9omPIzPHJB3PfpUE0zihplywDqNOpHYtbMZUuSjbV6Is2oGvEkEaJklrSQzQHlxhfeS5apI4sCrlACkiomYfajp9wLqSBPPqjItPPpQ4XKB3Uq+XGRJSUPKgDpRBClw6wHZyCQNNvbQpMQVTEwt01YguuRCHbKIWiliFs7azBF5orFlqvD1qYLMIwqPOtL0e578jkFaaLe/p5fZeZzHdzW+L61J1KUOc6CI20Oy55CCoQR5ogi1x1xqETZVUhGJK0E0KimQbw+IPCBamRTUswSHlkNq0+kmwdudEtgoyR8m76W4ZTFzidcCn0FnFPldhZlLwvbZNiUYKtBHGrYHxjck43cl5pFCH2mGPqPzOUMm0pN66dEuDfxtDsELxCKRi9kZEDomn6ez9cilgkYSd4d0nDP5/2Pvz2Juy7K7XvA3ZrPW2s3Xnjb6iOxbOxNj5MRXXIRc9i35PlD4tWgkrurKSlsCqygKhFR0xhIvPBlUUiEjleRSXQSIkkGIRgVcG/uam2WyC2c605mR0Z0Tp/2a3a215pyjHsbc+zuRNlVkIGdGpveQQhEnvnX2mmut/c2xxhj/hhxhaAX/OMDNgfaBI7dKOsnm5tyqbcI3Btqz6pN1XBivZdLUfMQ4HIkbBYSxFXTtCdNM++KK/HTi4tjR+7r5N5mwNPKzDg5GRzrM5KPM9E2TX0qHmZI9rD35oJCuZbp7ZqWSDjNZPSw95dpo6z1KVvkuHO5xwK0cHGWaBVBBKKwd8jjiLoK1SMUqxzxRyuBRFfCF8KWG8LUG1h4dnYkiXyuU5NGNp5wm2nuOfGqoP4qQxeGf3pAPiv3s2Nq1ZEdRh9wYKMeZeC5oa5B9ufTmIeYVGQVVh84LXB8RNY3EPCswOLTYffdPb9BpoXloTtoMHnpPOcm09zzdiwtOP/ToO/ibtY99vHvju9qaZEyRsbFNPB1m3MpTpoUxA4NQUjDjwGLzj9I4UlDIwNqRq+mhDGKbblD8CCTQ1kwOc6cUAfHWGvIrRzrI+GW1WG/BWfFAWNhm7BeeMi+MydBx/uZg1iljY9YXCzM4zHN7i/eDs7f0ZLYkJUAaxFp8Q6E4kyTyvZAbhV5IKeDPM+qEPK/rmRXb9NcGFghrj6yUPIWCMHpbT55nfO/sv6fe2nAefO8pnZryRyOkIAzZ48aG0QtDcNA7E3iNpQr+CrkD13vUF5JX5CRRiideOqtYlx68cbs4TpRiiWucFlh6XFLKVAmXjtSoqYKsPargkkM7q2pzgHxY6Afj0UlSiiugljByC370pKAsD5WijjJ6RKFbFnAwHBTC0puVyFQJF1VzcuWQtadMgz2bup5xXnBrh+s9tAoido96IUc7r1t7SqMwCrJ2iAeNZce1coNQJorbOGRtfx/Ezr80A1C/Mp5a6RQ9CyQ7ZB/72Mc3xXd1pdUvzePJz0Ym92Fyc0Vz5ihR0ACDc0zfgO4BtIcbmr5U12IoAeIFdPeh8YmmNadebSGQ6daZyfGa5swM/CimMuG7xOShnSteCLPXnUG+BcJ8ZHIPJrdXZr/eCLRK90ahe8P0DlMHN97ziOc/eJd5GlE1W/i4VqZtz1RH3ADpsOBOB5r5iCvKpE9M5xurUqbmFjw56iEok8cwvbk0x+GJXVv7GORo4ObtM8Ijm+mlztQo2sfgD0aeeeYh4bJaxgerHuKlMpsb9B1gILBYduS7Hd0rAb8S0gR0cLRq9ID2ogIT1g73KNI9gDDA4emSyVtCvpZgdHAR6O7bDOrw5oLpW0I6TeTk8RthdrKmWSizNw1AkWZKVoesHbPZhknKTO8oLpnLdPZA7+hc4sAPxJWSZ4UyBDLe7EOuJeLNNT/8/t/ih178qq3ndETX3lTkT1dM70A5Shw9d0FfvEHTe1vP9B7oLNM+tSIF0OKMCjDfMFtkfJNRAbdwSMjEm2v8wUDKJiPVuMy86WkuFHc6MH1qyYBHsxAGmB/Vc1wfYemRIsT5SHM4fGd/ufaxj3dpfFcnrXFe8AtPvmEW7OUgmd3Fxobh47VM80iIjx3aFsSZFYYGZTzJhiB8ZLMSbYt5RWEAjrgQdJ5xvdjG/tjjByGfJpoHDj1OJqy6gHg/4FeOfGOkuecpRwmXjYOVThPhqw3xSy3+0uPXDnc44m/0iLM39jItuF5wriDB3szB5m/l5ghi7UHmxjmTLBAg3x4p00Lz0NbjeoOkp9NMc88bNPspI6lJEfym/uyBJ88y7ukNRDWgx0bIB4WwcIbGk1pNNMp4aALEfmOWHCWqWaRsbE1hKzMVQBWa14Ldv+uDtdK82t+J0L4ZiOfOWrrnYpy2qRIeevT6SFgL7VseN9hXM08MDcgsG9jmgSdcOJshNUARXDHrk7A2vUlV8G80uAcRDTabO3jfBQcvXhLPxfh1nRIfe8rNkfahswrndGQ8Mb5bfOQpN0aaM/u+lINEOs4G4Llwdt0DoDa3cr2YSO9hppxk8ryKHY8C02yiv5NCORkZTzMajDen10fimaO0hRIhPPaU53rkvZvvzC/VPvbxLo/v6vbg9HSFezxjvYrILUXfnMKNKph7DM4Xli8qJSv6uEWmBkDIg5BV6K8pY1A0eejBzRJuJQzHHp14ysOWciMhx4o8iDAKYx9Z3YDyxoR8msgnCV7tkAz9soHbUF6fILdH4p3IZvQsng64JLgeYoLFF45YhcLQgl8pZRCGmZDWLTopSFdo7zu0b1hfy2gQ1q1Dz1u4logXAbfwrJqOUoT1NShvTuHpgeZeZH0L+lPgUcOj9RHu6Z5hE2juedbJsTkFPWu4N57ir/cMm4ZwL5B7R38InHcwUfxFIfqR5tqG7kDR2x5dtuSlh64wbDx50yKnhfDAU45H4kFmvewYGxgezJBnM82dYOaIh4n1jY40gfHuHHk+m4jv0yOldaweTtAjSI0SL7CW4M2R0gnri47SOMbnLcE3j4R0rUCn9EOkZIfMIF6Y6rvvo/lX3fFo7PhPw3tRFTZ1PeXWSHmrZfNoin+uEB561mcHxJuJNJqEV/9ognvaklRZTnHXEzlmSutYX3TIkcDG4ZuMNAKDY1g0SCy4NqONMG48eWjgWJG7keGxEK5lcuPJwbF5PME9XYhvRvT6AA9bluuWXL6r3yf3sY/fs/iu/s14+tZj4kIpvTcuzWuR7qkl3YWpY3TdwPjiSH/DUGHdrKctCdeD94VyIzE8lZBBmPSFbrbBL4XshdSaJQi3e5rnlvgN+B6TLLquNK/aJnPwwXNDGQ6mJbe5XWhfaZg8u6A9A9RcjVc3hLiA9hFM/tfA5H9umLQ9XUomTTRXdOWJPhPbkekdobnjSZtgWnjBES+E5saG9pEweV0YlxGKoz+B+Hqke9bkrMQpwxGER4Hy+pTj587RayPtQzPD7E+U8Dgwfn3G9dvnhBsb46wlGA4xEuxsoMuJa2HF+555i4998BXe/32vcv3gksmi4GcjJXvKJsBJYnoP4knPtecf059Yi1Lvt5TnemavCW6eOH76gv4alFbhTou+sGH2mtAdbsBDftQyHmc2L4zW0n0gtK0BZspFJDXQPz8ScmZ6D9qScdOEDp5SBDdNzB4XJtOe7qzQPVRmrzq6rwce/afrPPrNU8qzA7PXHJPTFVKgnDX0zyUDQHypYX6wRqYJgPKoZXhmpDlzTL4a6HzCTa1K0ovIeFKsnekGYjMivaNsPN4V2nlvcPrBkVKgHGe6NwLTVzzTWY9Mss0vzxrSMyOzVx2T6yvcCGMyX7V97GMfvzO+qyut8HokX0uEpaHn8rQweewYThJ+44j3AjkIJQulK8ahaQvilHhmkPdRK1S5cqGYZNxadu2seOmIIqyvj+Rg/k3FW0srLhxNdixujCTvbR2NQdAnDx2b02TzosOMKOSguAzqBzQXQg95UnDJI85aW26owrnXkqEGFx51BoPXEeJS6I8TfiyElSEM1Vm7a/LY0V9PJhXVWBIiQ/OWJ/ZCuZ4I544UTMzWFQhveWJy6GHC9zYLLK0S1g5pC24tuN9u8CERJJjsVVT82jFMjDztE5R5IT52xGUgT+3cfhBrm16z+9AMgdwaSdlnoVnYzKl56FnPC1IcMgqCoTSzC4RLx1BbmC4J0gtykMne5LcMgFHwySSSaCH2EF5ckXFkb+CXog71EFZCPknEB4HlcUYGZ23fWSFJoX0rEEcDskh2hI219ZJaOy86h3YFkidsBJ1Y5VecgS/8Sog4XAMJrPU7gnOQDzOlFOK92mqeZyQ5XE9dk2d1Yq3u6L/rmCj72Me3Jb6reVrf/3/6v7B+oYOlJxdDELYPHJyO6MrIooMaByrPC/ES3CRT1JlQbhZyNYV0RQkj6KTAxpO8zT7iucOpwunAmANhAxlPOsg0jzx+UORmT1+i/Sx70pFBu/XmgFwECAVE0c50CX2XEa+UOx2lNfWOnB2pszmRiCKHiZCVsgwkzIwRb2izcpKILlMWkawOCqR5oXtg53RngSE4m/k4ZXIfUuuQkx53ERidI7f2edMHSvIOjkdk4+w+TnRnrtj2hcmlUpKjF894pJSJImvHOAGyqVKUw4R/HIhDYXNoKvE4CJc2v5KHkTgY6VadvRTEM1tvvG/eVEUcsnFIgnDaM+DrDAqyF2Swf+LBQG4VXQRTNGlBRmdyTpPMZKUcnCwZcTxkgmKK61KE+NBTrg809+xaNBvQIx0VaDMHd2ATAjrLlOJwy/qzpjB9iD2LTinOUJo6y/hN1Zv0Ym3gwQSVy8zMOll7qIkwSGbyQNhET+kKqtVI8rrNQ9NJZnqpdCVxr5t+Z3/R9rGP38P4fcnTGt834O5G9CjhiuIXnv56QR5E8rRQnh3QWQGn+JVjPICyDhSFfD1RjqzV4wZnpNFGkFXdiAZ7ix+OCsOh4u42+IWjHGdcVvzSMRwV1rcV90aDP/OUIwML+IVnc6vg7jaUk8T0IczeEvzdBrnTkl+dMr4yp58IugxoVJxXA0PUDVHeatClR48T2lhVhgrjXA1gcK9FD5MpViRz+N1cL/b510dT1yjgKKyfywxHBbnbkk8TYTD5KleU/tnEcK3Ao2hVAyYDlWZKWQfyHNJHejYfG7h8f2aYCDp6yswqV42FHEDOI8P1TP9sor0Qwtp0HtNMkXsN40mhfy4Rl+A31qYcDxX3VsN4OxHOHPiCRoWo6N0W/zCQj4tVd6WCOVqlnEW42xrIItp9K20hi3HL+g7WLx/Q/9Yc91aDfxAJg+JTIU0Vd79heCob+KPLlQDs8A8j+fmB8cR+RiyUSf3Zo0C+kUinRrgWVUpXkIUnd0A2QrUeJPJpNvBKdsjSo7Wl6M89sgjkZ0fSvOyq/dzZM+2fSvj7AffMhval1Xf612sf+3hXxnd1pfXe//PPkp+NTC9NnLQJhWEZGQ4NbRcGICSyd8RQyL1n7KytFHoBMRV35w1dN6rJ6sRe0ah4oB+C6cAdFEiObq2kqLS+sN6YLmE5SeTsmS0LQ4QmFvqFqXR0FzCbLUxCyE8pOG7IiobM2eWMdWsq5CKF4Atl9AzO3ubbZHYlG+/xIRMUNmMwt1xR5peZtQsQM60om3XDeFjoziFPM644DnXgfD0xMvGB/ax0GUE4LRvO1jOSF1PZWAG+EH0hDZ6hEdwghlxUa0PmqYn8uhF8m2lGZY2nNOCWHlcUdzAwlsA8JZYlkmeKu/S4BDIfSOI5TIlFiuS5beZ6kJj1hRUB0cI4FVAhLBzaZSYlMxZPUSV35ivm14JDCSHhR2HjHHgxHtnxgKqQxkCjmQ9sHlNU+LJep0xNRb4cJearwko8pREO3cDqvCUHQeeJ+bqwVk9uhc4l8iKQxaGTzCRlxuzIrQEw1JuiShwUCozOoQ0gIINQpvb8upLZXDbmyzbJTDeFlXp0CnLuyUeJ47NCkzP35pPv7C/aPvbxexi/PyutI6V5EJAPLzn+rOfgPWe0F+CXzpQgXuw5+Rwcfskxu7GkIxEuHGWqDM8NdBeFoy86pox0x8aBcl4J84HjO4WD5y7oHjgOv+roXo2EjSAvrjj5guPgA2c058LhV4XJVxrimcd9ZMHJb3gOPnBGe27ryO/ZcPhLkeN/1BDve/zK8b4Pv8H3/6GvcsLGqrfrI91DOIprDuKGuABtM/G5Fc1HL3CSOb6fOXjqkvahccLkcGTyiTPytZGTLzoOP/CY7p7gRmF4ceDosxFeWHP7D92xBL60dlZ6acPhFwL+6TXv+cOv0krCb8TW8XTP7HXh6GTBPI+mwjGpwI2NcvCK0F4q+dD4bgcXmaPbF8xfBzkZDQa/EI5/JTJ9y3H0sUccfVngZDTyLXDyv0QmrwaOP/GAo98yPcjxsDD97cDBRx4zuwfX/leb85SoloTf9BzcWjBLI6e/4Zi8afcgzW3mdphHjo8WzO4rejwah+zzE+I3GjgdmD1zyY//97/K//Z/879w9FuCXB8oLUy/Hph9/2NOP2ctzJsfv8fm6USeKtOvRWYfe8zJl4H5yMH7zxifM+fi7g3P/JkFx48SjYwwzYQzj/MF98Els6bn8KuOZl3geIRRaB85mmeXnHzkIf1zIyXC7DXHwYcfc/wlh7u5QT1MXot0f+gxp3/0re/sL9c+9vEuje9qIEYzG3DLKZt1xJ0K6eEcPS6E3pMLOFHWTzmSE/Kig0aQUZERtMB4IJRRGHOEoUBXYBD6iUfaQLqcUo4KEhUpHjL0Y8AfC+ODOfmgMLoCK7OpWG8auC6M92dwkgm9Z0yO1a2IG23e4TfwjVdvcKc75rIJuEFJo2OcCJdjV9UvzFxwcC3j3JO9YxkdZTWhHNqwnxI4n0woxbE+cqSHczjNptiRheEIxsuGO+4YTkdy8YS1MGbHcCQMi4av3btJPiyUTcZtHHlw9HNhWE7R1iMbaFwmzBLtbZCJg9bjNmYwuUmB9TBFD6q9yzTjnNKfBFKEh2dzuAE8CtAoEjKb00Du4MGjA7gJ7iygbaE0nscXM8pM0FuVA4YRe0srXKwmlBgYbwvFGz+uzBQaZZUbtDjyxMHKJKZc9mgP8iiybqb8u9c/Qhkdm+ugjyIySaiPnF1OCTdBLwJ39ZgQCiUUSnCcXczwNwRdB87fmtsrXiiU6LhYdbh5YBxAJ1grMTk26wZtBbmhJOfQteK6QlkKw6rhoRhyVUMhBcfjyxnuOuRHDW6W4TxwuWn3nsX72Md/Jr6rK633v/9N2kdKWgcuX1LcF2Y0H7hkdr/gUA4P1iw+ObB4KSPf6GhOe6ZpJKwhtonxpYHLDyTKxtOulMnpivhIGBvHaubRVzvS+9a4jy+Il2qqEsmzeA7cF6akFze0P/yIsFbCCoZl5PK9Bf/ZOe1HL5jdsbnS5fOei+c97UOYvwb8v45I/4/rhNnAdJMIa6U/heG8RRslTgeOfsvR/lZkvWxJHWxaD/cj4cUVs9eFw5c9q/OJ2cQ/DfKbM+LHLzh4FXyTWd80gu35b55y8n0PKM9tmL8GDnNbdm92PPrsDW594AH+pSWTM0O5ba5DujuBk5HJOPJse84f/Ohv86k/8kU+9N99lVvXzzh8mGmOe8Yhsl50DE8n5l9zxGdW3Pq+t1g+JaQobF49YP3xDcefD8i1nhsffsDyaUhTZfPVQ9afWHP0Bc/85gL1yvrNGavbhbPvy8xfhdmrwmy+RqaF/sGE1VS4+HgijIWDrwnTnPCHA8M6ss4Nepw4vKvMj5bM38gcvFI4+lyg/Y0Jn/1XH+Rzv/I+1h/t7ZzPX0CG1Z0Z5x9LTF6JuF8+5NqNC+TYjB7X1eG4u+Npf33KPA6EoxFtlP7+lMVTSvPYceB72smArBxpGRmuF4bvW4Moh/fVoOy9kC4b1uuG09MFcpgo6li/NWPx4ZHDz0fmL57jN0rKbs/T2sc+/jPxXf2b8VS5xFNwpc5ZsnIsPUENDTgviSYkxCtSlAMGWkk4VZqiNJJxoSCqTEpixohX+zNO8UXpXObYb0ytAt2dy4/QSuaWW+HE0IEugwZwSTmRDV4zoRhYgKbYWrUQNxua9ZpD3dCSCMUsTURhSqKThM8Zn7KpPQA4JZbCXAab4+RskO9i5/RJOZIeXzKxVIfjbBYkN2VF4zKeQiimbiFqc6nbumQqIwFTrsfZvZox0pE40Q0vpDM+kO/zfn3AdVY0JdNhiuq+qNnN58JUE7dZGkDC2f3ofMaXQpTCNV2jAXAGcpn6EV8Kcx1NHSSJ/TsWQjFwzaRkvCsVVKL4kIkkfMk0mmmkAGbB0kimzYkDBhrpaRjwueBTMcfj3tbqc+FQR8QXq35DRY8OhRPtiZTd+oMvSFF8UqYlETUjzoAsQQpeCzMdaSUj2Ly0IzPxI45CmzNTTNVEshBT4YieUM8h2fzHQs4cMZi1TVJmY/4O/mbtYx/v3viuBmJ8/5/9Gyz/WyF8dWJK5tPC7Bue9ME17vWO9jFsjkxzL88rDP3GiPae+MBTAoxT43f53qxDylGGB5Hh2LhB7UOPuEJ+75px2dC9GehPDDnW3fX4NeTvX7JZNUxei/RHpn83/7pn+Oia+Fsd6T29IeNc1SiM2TasL0/J1xPuzDM6g5rHS7Ekd6s3KaS7HWliWntuEOIlDC+MNC7B16d2DQcmXjt93ZM+uiJ+ccryWeMguQLTN4RxDuUDK+KXJqxuKqjJDs1fhTQR0ns3+DcbhgnkDtpHDk4HmofC9DWHqjA2Qv9MJh8W3Fmgv2F2JIJSTkfaVxpCr1x+IKHJ4ZeesIb00ob4lY5mARfvN197vzbNw/TeNZMvtKzeP+IfRbTUe/TMimEMdF+PDDeyIfF6hxQINzbkVuFOgxQYD6ydSjSI+cF54fDjj+mz563LQ8hi8PgC4cKRn+uZvNyy+nBPuGOtuOE0I23m+HORfi70Lw74+xGyeXrRFuZf9WTnGJ4ZkZVH1o5yLREfCTotZC+ExwE3Yi4AxwlxhfjY09/K+PtmcKnFRHrz7QH/VgsZ8tMD05cbNh/dMP9CQ+yVhy/sCcb7+N6N35d+Wh/+v/9F3Gdvsvn+NfErk13CmH3Ds3lxZHq6Jv/2jDx6cmuJq73vyIcFudHjzwLlrKGEmrgGaHolXTdPquHYRG79IMxeF4ZjJb+0IXxlwubUEIYIHH9J6I+E8UNr4pdrAp0X5r/tGT6+5vRXIjIKyxNP8ZYo1UM6Nl6Z3hxwl56kxlfyKyFeOtzxQL49kh80hDPP5lSR8kQiff+acdHQvR7YXFO0Kcxe9YwfXxE/N2X5XLHZjQNWgdmrzn72mzVxzZKpTawCk1cD+cUN/q2GsTUARvPY0d5Y0z61oh8il8sO/9gTEjtPqs2tgj+3hDDeGomSmX6+pT8U+mdG3FkkrOy//SQx/WzH2MHm+RF3EUwA+H1rJp9vWX1gxD2KBgxZQe6E/NyG9rVIf1I5TQtHWGLiw7cTfjTjx+FY8Rfeqqc2cfwZ88W6fMbMNPPTG6tY73W4HtKLG2af61h+rCe80ZrrsIPuxQuW5xPmX46sPtTj7zcoggrEZ5f0fWTytchwK8HoTSn/NBHPjHRenhqRQcjnDW6oXmNdJrwVGF4aaNuR9b0ZbrT5Znq+x7/ZIgnG53rmX2jp/puHHHdrfvsLz35Hf8/2sY/fy/h9mbQ+8DN/i/5jjvnLkc0n1sTfukpc3V1PXAj5o0t68cQ3GpNnOszEC0c8c+SbA+NpwT2OuKVjPLAWWbO0DdG9YYaJ2hXcJKHnkdlrns3HLDltrqmJ6570DOcNh78VWP+BNfFLb09ct//bN5FQeOWNG4xjYHrHCLmbI4Oht/cdXBuRtSNnzzg1CH57Zlp6w+1sXLQ7th6q75clUsjvXRO+PGFzQ9FYmL3iGT6xwn9pSnMJq9umgLFLpN+3xn91QvsY1tetssoHmckbnvxcj38QGIOpyTdnjnAppLkh+VCxpOIyOs/4u9Ecdx9b4pJQaN97yeLRlNlXIosPjPjH0XzKCvgPXrK+7Jj/ZmTxgYS79DTnjvH9lriWLxbCUU+6bGHjaM6E/ExP82ZkmAE3B0pylKUlPJkmU8K48PTXDD4fYyK+d0HuA5tX5/gBjl+xlun9H8yEhxG/gfE9G2a/0bH8xAb/ekdcGTx9PFDyixumn+tYfmjAPYiEtZgQcwf5+Q3tNyL9tYJmIyCXk4TbCO1dTzoqbG4WZOMIC+Ni6UGm/XrEJ+XiQxkGISw8vofxxQ3+jc4S1/M9x7/WEtbKw4/tvUn28b0bvy+T1kt/7WeRriPdGDn4YmTzyavEVVpFnXL0FUeOwvD+HvfQFCTyrFCiMnnLERbC8HRCW0UeRcbDYmri58L43ID/ekfYQH9kXkf5MDP/SmDziTX+KxPaC+gPjRScbg0cfL5h/QdXxN+c0p9YAj35rEcyXL5HyQ1ce+ExTZu4/OIJazXPr/aBQ45HGE2/brhWkK620h4EcyW+nXCvmSuxdhnpCpwHZq95+u+ztuD6llKawvxrgeVHerr5AJ+f1zaiUqaWuFYfGJifrkkvH1CKI00sqU3e9JRnenPXdWZa6EahvYCwgP56YXNNCRceT0FPRsJrDevnE/5hNJDLpTCcKPk9a7r/NGHx4RH/MOJ7aB8LwwHkDy2ZfGbK5YdG3HmguXCM71vTfLWjeQyX782UYAoYzYVQnhpwjz3tHSOQ98eWBMPC4doETcE9qpXf44AfhNIUxluJGBMvPfWAMjju/r+fYfGhkXDfKrrxfWtmn+m4+OjI9GjD5s4MGWVXAU4/17F4TyIcDaSzFulNAzI/09O8bvqDRS1x5VmhHGbah0K8F8x48rAQHgdwapVoUqZfaOmPYfPsSHhk9yW9Z4N7rSauF3tcKOgbe57WPr534/dl0nrx//ZXaF4/IU24SlyfWBO/OqE/tA06HvekdWDy25H07IBcBnKuhokHI3gIb0Q8hXRckPsN6dCAEe19x/oDA21IlK/NUDFdvnycrFL42MD8eE3/8hFIbVndGjj4XMv6B5dXiWueAaF70+NG4eC1gh+Us/9mQC8bkph5ZPvQIQeJ4iG+Zlby/UnVJ9wm0ucHwm9P8BVxmDulzDPzrwb6T66In5+xfqpQYmFyJ+A3MPzAgnHZMPlqQ3+9mDbiG1aJjn9gQZ8izauNzf4OMt0dhz5lElRlUuDWwPFsTRMSy28csHprSn+9EC49oRTK9ZHwtZbV+0aa2UB/1uFXjvaxtUwnn5lw8cGMnw/kZcStPZM7juETS7r/OGXxoYQ79zQXjs2zI242MvliR8GxeSZBFprHjvE0I9cG2tciPDYFjjSxOZWP2VqW9yL9rUz7RrTKrgfJSlyafuPFD2+Y/MaEy48NhHsNfi2M71/TfnFCe6Y8/mSCZFVQWAjpfWuar9RE+v5sSXxTE9fTA80dby8DTpBVdXU+HdDDBG+2hEthc9sSqSi4NhNfWrC8P2X225HFB7cJFMb3r/HfmNi8zgF5X2nt43s3fl8mrQ9/+m+x/KSjuRdRB+NpYvqNwOYl2wjCwlyAc6ekI5sfpeNim9KFgyqWmw9MCsnMFxV/5skTRRulue8N/vy8afPFM2/qEkeJ7o5VFosPDtA7mkce9TBeS8y+Flm9b7C21rG55mpnyLNmWtFyX5kyHBaze8/2ph4WZjaZb46mQ/gwor4qo4vp9fXPJFzIuLstYOjBPM9MXg+s39fTfqNlOKr29KLMXvWkKfQv9rSvNYxT84DCw+xVM6vsnx3Ny0lMp7F5LOTDTLx0tG+ZHqA66G9b9eAvAsNxwa8FP9o1t683+EFZPV2/UgWacwM1tK+0hBWsniq7BN89cGze0zP5SsP6aROe9RsxPcFnBnJxdG8GA5q46uQ8Qrk2mj7ig2iVyawK/EqhzEweKb13AwqpD6gCyTy42rue/vmB6Vdbls8na9GthP5mMoWKL7XkFvqbZgoalo7heoJJoXs1oioMpxmKEBYmvhsuTCi5BHO29htBFMbjDLEQzjz9qXm/+d5Ee8dDJd0c6V6JrJ7JO9BK/8zI5JXG6AfXvut+Nfexj//i+H2ZtD7+//w/or/2NItPboivthQH6fbA7EsNq/cmumtr0utTtLf2XLqWaO860lzR2wOyDOh5NLLxNBuU/NIx3Mr4tyJpau09n2D+1cBwpPQv9cTXWkqE8SQjTeboMy3DEaw/aOtQD+npgfnnGlaf2HDwHztkNGABgonfCmxeGmjuBtLNEdl4ymDGjX4ttPc95TixeTYhZ4Hw2JMOFG0z3esRR2H5oQHWnuatSO6UfG1k/nJk/QNr4stTm7m0ij/pSZeRgy9HVp+0ymE4tBZqc2PNsGyYfiUyvDTgHkUKYkn+vqO7tWbywoKUHZfrDu60yNKZzuLdhs1NS1xxIfQvDbRhxH92Tpoq/c2CJJjc8SzfP9DMBuJ/mltSuJ5BYFpbm91nJyxfzLi1Kb1P7gu5hfF9G+JrkeHA7psMzuxXsrVvJYMuAsOJifyGrDAfOfq1htzC8pZDg7K5aS8OkoTunjB8dM3k/2PtyfDY1OtdFtzHz1mdT5i/3LB834hbWlJzSdD3LxlToPvtxmadDhP9vTHgzz0ZR7o1AqArU6j3kimHmfBmw/qFETdJ5GXELz3tI2H84Jr2c1MW7x/x54HmQnCfPGPeDTz44o3v7C/aPvbxexi/L2Wcfu7D/5gbX9zw/O2HuAyTB8L3v/g6t7+85sbRBX/qA7/G8ckl6pXmMXzk+l1efHjOSVrxB5//Bi/dukdpC3EFL8gFH4t3efregmdOzggrodsoh09d8sL1+1z73JrDe5kXn3qIG4XuERzcWvAH3vsqNz+zYPaG8uztx7gsTO4JP/Ceb3Dziz0ff/pNrn91zbWXN1z/fM/1z/Xc/rUVT/2HFR+d3eG5ty74ULzP9bAiXgrX5ktuuiUnLw+8eP8RL9x+QDcZCCvhUAdeuvaQo69nbr285KmbZ3RHG/wGJhfKR154k5uf7/nBF75Be8bOiflPfOg/cfzUJTc+t+H7n32ddqn4XpAk/A8f+BXe+9xdbnx9zQcP7nGkPfFCePrkjGceX/In21/nf/roP+Iffd//xN/8/n/Kj3S/xQcvH/IDh68zeWgQ89AMXLsz8JHn3+D/8N5fZnq30JyD+oI/7Tn9cuKZZx7xv//wr9M+Uppze37trRXXfjPxY+/9TU5fS7jGBIBLq1z73IrDVzJ/+OYrPHuxwI+F0hXyLHPwypLTL675cLjPR9t7tBeGhGwZeM/jc/5w+ByHv/hrHP3jz3H65czR1wqhVkDuuOf6VxL/3fte5vi3E/GgJ80z3QPh4BXlJz/0P/PM0w85fiXhJyP5MNuzflX575/5Iu979i7HDweCZspBYvYg8wPTN/nQ5gGT5ciN6+c8/+wDpjeXxD7xvsUZnzr+Bgd3RubHaz723B1eeukerhu5/cqGH3nhyxx/LRHmI2WWOXol8z9+8Jf5uQ/+Y9jrYnwHQtnf93d3fFdXWi/8zZ/Fdd13ejn72MfvQSjdey95+uicN86OAFhfdPh7Dd19oblU4lIZDoSLj490t9aIKCl7hlWkDB63dlYtP4QSYX0L0vWReDTgfaFfR/KlSYyFS0f3QHCjsr4N/a1Ed7LmcLrhfDmhfHVOcy6ENSY9NhU215Xx5sj0ZM3TRxfcOT+kf3UOvWP6FnQPlc2psL4F+cZIPOwRp4yrSB480jva+57JPWsXr2/BeCMRTze0TWJ12cKbE+KlEJYQNmqt7Gtq6zvdcDRb8+hiCl+f0Zxdra801mYejkE/uuD0dMGjixn9w454L9A+FvwAOULoFRU4/uQjPvKJr3O5bvmVV94HDxva+57mEihKidYpGa4XwkcuOJpuuHv/CH3Q0t1zhLXd5/FAyS2kayOT4w3OKavLFne/obvniEsoDWxOjX+phyPt4UDwmTYmVusWfmvC9BWPqAG9hlNlvJEIxz2xyTgpBFEu3jhg/uWICoyH5sk33MjEkw1NTKxXra3vLUdY2ShhOLpaX3e0oYmZWTvw4NEBzcsTJnfqdcyE/tTa2PFoIMREEzLDJjJ+Y8rsa9buHg4MeDUcK6UtEAsSC2QhvNXQPRDCyu5ffwL9zUy8vma8GPnG//A3vuVK67tae3Af+/jeDeH5k8e8Z/6QTQpEX3gjO7Iz0Eb3uNA9TLgxsJTC6XRFjJlUHI/clE3foDniB0f3qNhmfyKEUDicr5k1A+dhwuPRoc4hF47mQokrpT8xZZKT+ZoXDh/xilzjIUYdiIuaLEcYDgUXCzcOlnzs5E1yEV4PU3R0xIUye3NAXaQ/cUjInMxXtCFz5icsNw1KwCVH9whUlOHYUXzhcLrheLLmXhIWvjMlkZXSniuphTQzr7bj+YoXDh+Ti+NcZrgB4tLWlxvwg1Ki43C25GOnb/Iyt3lzGRENTxwntGcJRHgvD/jfnb7MG4sTPjt/lsVFxI1KcwFutM9EgKPCjcNL3n94n2XfcH7emD3QxlRdShTUKRKU49maaRy4q4dsHhtSNC6VPIKfC7mYAszJbMVht+GkXXHn8ojz0tA9ApcAPHkGxRXm057T2YrOj0zdyOcfdMSlbeMahJwBpxzO1pxM1jwIMx6fR1xyhLVSguC6uj5v67s+XXJ7cslvjJ40tEweKjkKLjnS3DomR7M1x5M1h82GR6sp96SlPROay4IU0xPlyO6Pi4Vu3iNZGO41hLXSPVZyVFLnAKVpEiWmd/absa+09rGPd2fEFxcczdbce/UEuoIWYOMJF4b89L2R1PsTrW3VYmRmAKcweMIDb+omCmkKaabkg2zi0KKoGmhELoJVCxsYZ5DmSpqb+aWqzRIlGfgkrKyKKW2tKg4ydBnNAqMzjuE949iVZnveQp4b0dqGEmoGog8D3X1nM+eZ6VKmWYFQtyUVyGYmGleCJKsC0kxJB7/L+pbV0SBXYNUE1s+PuIORkh06OtzSEy4dYW2f11wYaX/zvhH3nhUUYXnZQe9xS0dcOPOAS1QFFqV/frT28RDQ3j5TsgGFtmCi8ejq3gDoxuMXzuTKss1lpdRnMjf0q28zJTnc/Uh87HEjNgcPT1zzNOPaRPCF4awl3jdkqrX8YTjeHpcMAFbX55L9PKzF7HMO6/qmGd8k8iYS7tssVkyl7Yl7vT2uPudHDfGRVVqIfQ9zBPVKninlZERCQc8bu9dLuzcaIE3sfqe84et/9Vufae0rrX3s410aIkpwBdqCbjzSZbQrJAAx80kptkn6jSdNhTIX6ExTUwFtzaXajbaJBwTwZDWXbhczIlA6oURHGe3YsBAoVoWVRikHhoRMzqgYYWWbULw0ZJEuHRpB58nyzERIg+xoBybLImSw9bUF9Wrr68yKxo3Uzc3ZJjhR8lFCfCFJBLna/MKyQlCdIzdG++CgkJxJm4SlIM42XrfyZMTaVl4ps1zvYT1OTTOyLAOrBzNLmAK0mSIwAoq116RYsmHpSUXAF1OVcYAoZeWJC5N3w9m9Too5WHeZ7JSsgts42kem/CLFdv0M9lxUzIvtUHG9JSOX6jXjSEARZQyGNB4PTUMzrKS2KLfHBXSad+srokhdX1hdrS8DKQkUU8IpwcBVoaJ1w+rqOlKxOblEZTwolMYQv26EOGJGtQLDifkUpukT93px9ezax0of3hmlY5+09rGPd2lsLlvuJW+wgDajvUNaU2hJDijg+rr5bUCybWjZfoSqQJ2x+I3JkbkBol5tkioK3nhhaabgbGNxI8RFpR/MoT9WfJtIM2HEA+4qcS0EyeZ2Pc5A6tu2unrejc2PWFydt4C9oQdMuiyCq5uzG6WqREM5At+Uq82Pq8QVF5YUxxkMh0+szxSmKY19iF8JrvfkqaPMMhKKJa56XJ9kJy7dvekorTIeZXRS0CZT5tixUlGkzio/XTvyvKCThLQZHwqpCCV6/Ka+JCzqhg8wMX1LCUpxgXIuBBVcD0Hs3pSNg6BoUNJRwg0Ovaz3Ol0l65xDFZ9Ws+8Z60uH521JPUFNXHV9Kqj3lu+H7T30aPCUaJqqeZrR6EGc3bsBQv3OlMFRvEIwqlCZiK1vuf0O2ueyseeMKPrks6sdgmah5O6dNfn2SWsf+3iXhr/foC7C1FCaNLXiau2tXXyhxICeGRLUWjWVf9g78ErxSjnMlK5uLvXtOS4FwaqF4m3zyLNCmdiGHOpm5UYowdyZS3RIsE3SgP1Xx4UNIMK4cWhU80ibZMrCo1LPu6306uan3twA0qFtuqYraQlOsp2b3pG9R/w3bX71uN36RkdJdX3TzChWEZnItJ07ZRjxlJnJjZV6XO4s6cYL6B5AbqG4mtQ7S1xZFA0eSVW4elFbbMUqGqYJ9WLXMzFBapdqlck3JS5X7Nl0SqotOz/UikuE3CrpxNqFxEKu1ghPJi43ehADcpSJ0UfGuaLePm+XuKQmrplakvNKmioqsuOmhiqenaYwThTXWYWZ1O41q6sKSdfGbU2HxbRLURJWBSN2bkXwl57Sm8s3TUGnye4TVnGPUyG7faW1j318T0V33zbd1dOy2/BoMzpYxeV8QWMxebHRNp7tJqROKI3Jjuk8Q4ttGvXtWeomJLUVVyZKPkhIKIwSAVffruuWu3SUEtGm7BJXUtt0wtKqDxT8wqNBKUcJPx0pQKIq9z+RMMtG0O3b+lGCDpJcbWouA0VwS4cmoXQ2r3sycUldH2qk7qIRjYrEgs4SOCWvA/HC4wdBV4ICSS1xEe3z5DhbNTtEfO9NHmxVk3pto0pj0m+ioAtPc27VlPraitNAHkybM88Kpbua/z2ZuDKQ8xOtOF9bcbXF5pJxCctMKGprLNOtTc1V4vJLuz/qIB9YHzQfZPJUrl46xidbioE8GMMpzQt5Ute3ri8JI6gI4yg2Ow2FMmNXjVKfnWRrP5ZOyIq1Uif2TIqX3bwuLOyZj9mT59TEZccpDnVCHt7Z78U+ae1jH+/SaM+U5rwwzj3gSV5xE3sDL4OjOJONSlOliNoGtMFmLxlKK/QTgZARryQV24TUEReCW185RA8K5aQQpyODCmN9K3aNJYZwaW/c46FQDhKuzSZbJh4p9patztpNiNDPDKmYJoksV8eFlZ03ZEO79S0QCj5Y9ZYIqHO2eWdzO2CpDEdCcVrPq5bg1OG361sIrHxVgrFWYdMkegcaPCq1mqnAk1EcemCfd+P4AnGweHBICXZPw7rOrvDWip0lYpPwvjCUFnXekuXGKiQpDvWO3CrlMCGxMLpo17yU+kysFVeiEd7LpFDmil56RB0hWWJAQXpBew9txjV2TVkCog6pLTaXlNyBW9nnMU/EJjNKh6jbOaX/jvUd1ZcTF+27MAquWMJ0G0eJwbQ8m2L3GrvXLlnCFLVWbu4dKpglUCjkzlGK4C48zZlYm7e+2ORDcF1C54UUAuVmJj9+Z+jBfdLaxz7epZGjkFvbZN0IsrF5gtR2XkkCyYGvYs5qG5QbbGOxD8E4UUGtmghKaawF5rHkBtVMNDnS6HfH5VZtRpJtk6IIMjjoPTaPt9lLbjEIdanHKTA6xk2gqDzxeYbAq+piVnxksVZhBSAQqth1qFVjEhjtmrR3WH40I9PS6pXZ6WAoQ9c7clSK84wCmg3BmCfUQdpV2zD3juKUzRjBK2NwlENr+5Vgy5MRpHeU4MlSQRLY/ZPMbvYmSZCsVuGqXaB6vQLBjPW40ZRXSgt02EwqXt0bUcOXSBHY1PuyBYYEJTeKa4WS2fnzyWDPRovYLDMYPN/VZ4w+sT4RSqkPoH4XSssOoShZ7HumAk1Gqc+kUXJbn+32mntntzRam5cKRtFgz08Ltfq3dnVxHnE2Q5Uuo215R78X+6S1j328S8OPSui1bno2d1EVxBsKzvlCLtZmU6+40Vpru3mQ1LdsMNPRWKCABquMqG/XlKsN0znbdEoslFgReMNV6yp3hnATqXOh7CjR/sf2GNQ+UzG+F6FAlN3mu4WGa3kiaTo1xKOCFkEz9mY/2tryCLkIiBqUuhHKUNfXP3Fch23Kzu5P8TY7U2ctx22ikYqWE4EujjivjKHYxp2okHRw3jZ70bpGXyjeQCbq6r3emUwLJdhLRWwTfRNsvicVRVkAZ95seChODWqe5OqZUO9frmsMAo09by2gUQw8s6UqVACJYq3GtkmkGNFoLbhqkA21Rbnlj8U20/ceDW6X/MCen46CREtC4go02OfV80K9P0mQ7fpCse8ESlm53Vxt+49k+6sSbEFHB2vOVu9sprXnae1jH+/SkOmIl0I5b234npQSIU+Nh6ONmhiwgO+SvW2PzgSYxy04wwSNNSrj3LQ0iQVXOV+ycjvOkEvgUIYD40q5Llu7aRUJd2KFPmPQ7k6NozUtuDYz6UY2qwZ3L+5AIWEwNOHWEsdUEkA2HgZLwq4XwgA4ZTi09UmXcV4py0B4GPBr2/RFq5JD5ZC5LhNiYlxF4luxzm9sfdooIpBayNdGYmvHySLgF4IfBFC0VaJ9ONwYObi5IPee+w+OcAuHXzt7AfD2mTgldVBOR6IvDJcRvwg7OHdpDIJOV0iN4ppiG/bKm3PA0qrG3MB4XChTm5W5UOylgUIZPf5hoDm3ZJJmalyuqVrbDt3dD72MNA8qKONIoS0MHUiTcQq69vjtefuqdHH89vU5VbwrjKtIcy8QL7n6ns3qM2m261P7jp0FmseWONMU8sy+CxoULduXCMEvKx9OrarbPrt4sqE/S7z2P/71PU9rH/v4Xok8L9ai2SjaC9TKowyCbLCSx1s7qGQbsmtQaBXClptlnmTk+vYc6/F1ExZVSx4bLDnU46QxSaBUCkVsM84ZfN2MZBDcxjYibQoDzlqGLYivBNtecB5cY8lWK5Sb1tYtFd4ug83B3MaOK0HRigDJjdrsqK/nHMD1II1QGiGrzVVsfYofLFnT10pEMQHoYNdDp8hYE3QSGKw9iUA5yWyio2AgFlpTwti+ALDlKHmzokmNWmttVIN517meG4RSvLkORKtstFXyqHatilUxoyBrh1BQL1YRBqMheI+VJsUqXQlWKdv9AYJaVbyhkrUF6UGTuZprNFSotnq1Pv1d1rd9JhHKaK3JbWW4PS/N1bNTr7a+oCBXFVXpQZyzjOKrnFNjz7iM2+cHsgEJjvGiRTd7yPs+9vE9Fe1k5HC64f55y5gx4EFfYdRS4dEN5JNk7aPB2WbYVPuXwaErG4ZvlRrUOYNvT6ylg7dqrahHLkyBIWwEvCMJlDpMz1MjkupSrhBs6+3neeP/ZEP5USAsvW1+eXuckMVBVyuuBkhC6QWosO+6PrZzHKBMC9oKujA045PnTa6urwi5q+tbGEpRalvKOwwOn+3eaFvIGQOPrCuEfFUVMdae9abZnb9MCqm4Crio1UOxBKlJ0Git2jKBUT2SFTdWZ+81gCM7NUuiWChTIanNIrctXD8IqTjjNE0KhpNRs0zqrlprYW3wdQTKxMjZzhdSU0hTV/lRte1a741OKietrs9ltepnXden9l1gatURzuaYbiq7FqnfCDhHEoVJsZcNZ8k1t/WLWq5UQNRBmRp9wnklJ4FiSM/tdxABuQyk9M7Szz5p7WMf79JQwLliygyKQb3V4YcKyS4gnRFwxdvbOsnIqbKdDzWO0nyzIoYzUEFXcLEgTg2NWMEPWzg8xRQnSlPlfnxVnFC3g0pTodysbLalc+MM5c5ZlVe+6bwAVYlDnaBNoTTOzpvqdVVwSe6UfJiQoDs4vLVJq0rDNytihHJ1XDFgBloRcS5YIqxJZgubZ3sfM7Dy9I8644+JVZAG2XdWtZV6bDKVjVJBEzTmXacouvSElSlO2Kxoy/fKVWFDKQrSe5pHUiWVKsJOsM+kthkPqsdclWey9mytqJ1S32NI84KMQrtDj25h7pa4qIoYKoqsPfGywvWdgDOASamVZJkogy818VY040rQ7XXUdrQGa/OVaOvbzl3BYPIZbIg3yWQwdGSF4ctSaM+UzV4RYx/7+N6KcR25cJ1N0qeJLN4G8Je2ORn/B4ZB0OQMVSjFZlvV9bi0RkD1G6rJplUZora5aCgIVeFgWgEVg0G53WjtqXRgcPhmNjCoccZEK5R7U+dhWRjnSjpIhl6bKSp186v/yBb+7KD4WlVUbTsXrIXk+4pABDiCcqyEbmQsBoffQb6361MY56a3F2cjY10f6tC6Kfql4PpgM5dZ5bo53cH/07ay2EC8E8mtokeV0D3JFKdVBUTQERDjQpWNGaYyybhJwofMQAsPfa2OqNdslY90GZlmfMikRQNnwRLw2u6nKJTejGs1KPmooL2Di7rh9xCLJeusBvIQqS8Ko6BnltDMrbueV9S0CieJ0GQGaVD39vVJ8ZRQSeFdgVkhLa9eEnxfj1NPGd2uTZgrKVwvPDFfKWKUBugdugXhzJQkRtuI9dl1j5Uy2bcH97GP76nQRWAzOkMZ+4rqawu5isNu2zEyOsra76DHW6dmirVicqsoQtBaSeU6T+mdyfcEI5TmxmDxAZsHoYaMk1Rbf8k2oi1Ee4cOy+zetHV0oHVTm8KTaMZtC6v0gjpv8HWsolJXZ1Dbqqci48imdIFQz2stuN36kkHISVJbgAbPLh2orzD8JJAwntL2Hjmgft54QOVQmQWKZNNO1OCMgOwr5LtTQxcWu38+QwnO5kLO1CiQ2tprxVq127bdxlFCgWjPAmeflZura93SCghKmdl9LlqQVigJXCVTuxF07dCxOpC3aedunscrorfbwvWjra8UQy7+jvX1dj2ltlltxlXvY6Ub7OSZtCbVibVake156z2sDo2y5XAFfQLWb2oikqrqyDvMPvuktY99vEvDbUyVnLagzpyXNVawQrTNU91VAiqoET1FbfOomxRNQaliuGkLda8otuhsnlHqHEewDTLZXOgqeQg5O6uOKm+nxLpR5SuIOKnyshzgi81+Bvv7lmQqR8o5rHC0NReEMrpdMtgmMJKd17heFWAQa+L6pvWVWl3ildIU8EZwdUNNbiM7jT58BRU0RrqWrISlVXtgiSY3UqWZsATXKOItOYc1O2CMjmZHIrXNV6Jxn7bJd7fWseoKVuS4hvoct0k6GckXNToArkC0pFPi1ZzJJUEHRZPYtYIlj3jFH9u+bLjRWn+/Y31Nvb/1mZi6llU+sqM9WIKTtG2LCq4+F20rN0sUjc5UMiI4qUCOQVBxKAUa42bZd1fNQqURin9n7cFvybn4537u5/jBH/xBDg4OuHnzJn/8j/9xvvzlL7/tmM1mw6c//WmuXbvGfD7nJ37iJ3jrrbfedsyrr77Kj//4jzOdTrl58yZ/4S/8BVJ6Z+zofezjezW6+8L8G9A8doRzM01Ub4oL6TQx3EqMxxk/QPPQ0TxyhAuP23iorTMEaBSdJ/JxZjzO1gZUU85oHplRZFg621wORvJxZjjJpAODtZeoxDNPvBdxC1OC0GkmnWTG42JCuXMbzsczR/PI2k/SFMoskY4z41ExgdRSVb4fOpqH5iZNVJhn8lFmPMkMR4Xh0IjN4dwR3wr4S2/yRl0hHz2xvsO6vgtH2K6vYECTo5FykNBom7HfCPHCER87/NLZ5tsV2psr2qeXyGGyt381sEms991taqtrnuB4pMxNDUSy3cN45oiPAv5+xC89+SCTbg2MJ5k8sXsdl/Yc/WOPexhxK0eeZtKNcXecqKl2hLVVZrKp11KveTzOpJlViX5j+od+6XAL+27kg4ze7hlPMuPMrjnU837z+vKT68PmmH4Q3Mohy1DvYd6dN0/rPezZzbtk4yCLgVuOMuP1xHAzkWeFuBDaB4742OMvPDLaceUoMVxLDB/s6Z/+Nihi/Lt/9+/49Kc/zQ/+4A+SUuIv/+W/zI/+6I/y8ssvM5vNAPjzf/7P88/+2T/jH/7Df8jR0RE/9VM/xZ/4E3+CX/mVXwEg58yP//iPc/v2bf7Df/gP3Llzhz/1p/4UMUb+1t/6W+/oIvaxj+/FCEuhuYTUmU6blkKeFbTLpNaQa7rxdCtnen6DkEbQiri7kp6ob84zM4N0vjoBr01SycorJR8AjZJdhsbenqmKBvHSIdlRDpUyNx25HIspNARfKwCIC0Pb5U4pnbW6cijkCN47q2Y2Vv3gQINQ5rV6m9p5pXOQFb9xxEuHSw4OFJ2bGG6eZmgdJdraTcDWIcmkmcp8O7sqlCpAS+WhmWq5J2VFZ3Ydbj4iXhmXkXLAjrDrBqGMypgVmZu6PqGgiFVdKrvKUTeAenRqbs4yyWak6IV4We1F+ipkLECrpJNkiuprds/E16rXbQTFo63NmXJToBFcgLBwhNHI0n5jIAmNSr6WKJNECg4XhLDYWsj8zvXlLpOXdX2L2nos4Na1HdvZ9yw3Co1Q6udtPcBkEGRZ19cWdJLRGYAil4F4FkzQOAtpFPTAnl2ZFrQT8nFPevBtmGn9i3/xL97253/wD/4BN2/e5DOf+Qx/5I/8Ec7Pz/n7f//v84u/+Iv8sT/2xwD4hV/4BT784Q/za7/2a/zQD/0Q//Jf/ktefvll/vW//tfcunWLT3ziE/yNv/E3+It/8S/yV//qX6Vpmnd0IfvYx/dapAk7OaYd1Nub9JBEgxSXYLOREutxFVZsDrpGAsax4/zgbRMs2ZnLrZpihqhtROq8tX28QbUBirgdHN731jLL3tlMo34eopSNR5cVMdg7dIkRcoNt9qXDWoyFXauKKhtkIq12XlqTT9BS4fB13uO9zaW0q3OS7UxFPFxuVdVtFpW9mjJGEUprPS3tZQfNNgNNa1P266YmV4GTbDOolew4X34DeEcRg4ZrRdmNgQqIqcrquT6HLDZX9LbGnEyEd6cOUaqwxPYehGoJUky8mNq225Kqs8iuHaetkrO+ra3ne5NmSsnmUlfndfVar9anXhjLlbSWdoWc3a7dvG2jZrV7s3vGrR23nYMJVzD3TJ1f+VwVUPRt7Uc/CLquz05AQmHSjAzxnf1e/FfNtM7PzwE4PT0F4DOf+QzjOPIjP/Iju2M+9KEP8fzzz/Orv/qr/NAP/RC/+qu/ysc//nFu3bq1O+bHfuzH+Mmf/Em++MUv8slPfvK/Zkn72Mf3TIxHBmYw4IRtYggkqYCIAFt1ilQroh2nhwqbjoJ603jTbFBybYtBktVmVIY0E1NKH6S+DRdoCy4UMsEQZ8WG9mFL6HWgjSHsJGb787l9luvBDc7EfGfYXK6r562bnFRtunBp3ld5WowL1BZEDASw5W1dQa+veGZ0dX1q3KQtWGALr9dtO7UtBhxYOkSdQbl72anYZ22q4kXBX++t1UZjldRQeWtglYo3YnSe5iqP5ZEiO2djI0s7NBooZHfNasi5rd2L95WwnGWX+LOYGaeMpsDu13Ue+ARFYQvDV29EcL+xY6XqLqo3wV9t7bis7mp9I7iA6UcGU4bX1s67pQbEc2eowgJIPW9b7PMEtLX1+ZW1UNWJ2ZOIQp1RqTMDT3W1Yt0aSUpFM3pwot/icOoq3nHSKqXw5/7cn+OHf/iH+djHPgbA3bt3aZqG4+Pjtx1769Yt7t69uzvmyYS1/fn2Z79b9H1P3/e7P19cXLzTZe9jH981ka4nnC/Ig6baiNTEteXgjPZbnyfVQXZltiNbnylRa82U7KzacRiB5onEpcGZtt5QNyIVxlJ5NtOKiAjVsE+fcCIWxyhQ5uyckksspKnuLN23EOhRrEqRplxtzk3ddNd189tQya7AxDa2Kxj+FXBk57wsGCT9ifVteVRbp2SpbcpxmnGTTJFgNinYfTQbF4PQqwO9NdBd79HGcbkJNvdTk3EKa6mVjflRpZlx3HKps0N19hnObFI0RUo1kXxb4qrnV2orjmBJOlo7DoeRwjfezpcrGrBy3LSzBEJjn5LPA2HpETU/Mu2jmVdOytXLCVTETl3f0lHGgEzUXjq6XFU+PHppCEZfSd/UrwxtQdsMnX3v3OivNCSdgPqdDiZAOsjIpMo4vc0mxXzFLh7PSMvxHf1evOOk9elPf5ovfOEL/PIv//I7/Yj/4vi5n/s5/tpf+2u/5+fZxz7eTeGPemaTgfPeOC5bx17WstskS6OUg2zAiGBus0JVlaBCzJfeZlxB3564OpMZooBbeGLl5KiryXBLOq2uxKVVS4rr6rZLVc3AbDO0mJcUWfC926lDqIOEN5RbU9uJHWgSXPLIpeDKE5uzViSbCmm2Tcj2tr4jNEslxWZbX56ZiO52fWbdAagwbkuJWAyGr1aN+EqQDkvLfcNhba/Vqma74YelEbq3Nh8q1j6TJyspYUdDCGsxG5eMWY9sq0y1amPbIvQ9+MGRJjbXk7aSrlFKJYVLsmdoG3VN6m0xbUGv5MGRO3flAVaEIctVZdZaJQqQt+tbCaw8Yy720tFuDUXdler7lhS+qN8FKs+solO369tWjlJJ4eqgTAr50FqF+UlS+M5R2VMW3U75/luNd5S0fuqnfopf+qVf4t//+3/Ps88+u/v/t2/fZhgGzs7O3lZtvfXWW9y+fXt3zK//+q+/7fO26MLtMd8cf+kv/SV+5md+Zvfni4sLnnvuuXey9H3s47smvFcmzcjZpFQX2avEJVXJIXcwHGAyQZjbrAI+SIVR1/bbYO03bbcVlwE5aI1cXJLNy2DbYnM2V/Jb76dclc2tAvGbrbmhs3NuKoR9UudgC7NVgSsYecJTtFhlFk3Bo7QODbV1NYhxxJLseEdllilTrf5VTyhx1M3van0FnSrqbUszxYw6o1mbIgYeS1wzu5dQK64KJdeVZ3U2qVDuJxNXbZ9u7eQTsHFkgrXYukJ2FYW39rQPpDo5O0bqiKqCFbKzWZv01oozInB1VKYWbVpbu3PTDPSDvD1xgbUexWSV0tyq2+axQfGLr0kd0K5Weg5AkY2nu1/ndLv1mUoHRciTgrpKCO9rNVqNJLPUWZwCUXek8C2tQLaKGAjlWJHGTCkBRN3OATkuDJzS+3fWH/yWkpaq8tM//dP8k3/yT/i3//bf8tJLL73t5z/wAz9AjJF/82/+DT/xEz8BwJe//GVeffVVPvWpTwHwqU99ip/92Z/l3r173Lx5E4B/9a/+FYeHh3zkIx/5Xc/bti1t2/6uP9vHPr5XY9wEFq614fY0VwWHK6VwX8meDIJ2RlhlUttvkzobWdrMQzdAcbuNTLwaEECNe6Sh2sRvdQCrqoKokKbKcJjwXSKrkJ7Y8MOTChtTJU0zeGvrKWoVz2CbIApJK6ChbvIalXFWjxtldzwC46GiB4qfjORyJb0UVtsEYusbZybj5KcjGSFpNWj0VhX5lfG/8kSRaYbG5jNJrJ+XJhXUsHH4Ow2lVWSe0abKENnwCnBoMh6Sv/Tm7zWxJMykztcEcFb5+NryHLGqVZoC01rVLIOBR8arNlxSb+K9lSeVjrIRjheuVo81ayjkgtmFAGWeDVJ+UXUSn3RKFur6Ej4U0ySUCtCo60tqJGmC8a/ypKBLbyCPteA2RkxHXZ0z2rwqHRpoxS8csnVoLtb6ZbB54s7luj47qd/d7pFSJu/s9+JbSlqf/vSn+cVf/EX+6T/9pxwcHOxmUEdHR0wmE46Ojvizf/bP8jM/8zOcnp5yeHjIT//0T/OpT32KH/qhHwLgR3/0R/nIRz7Cn/yTf5K//bf/Nnfv3uWv/JW/wqc//el9YtrHPp6IchFZ9Oa666rtesqCZHORhQpm6B1lbW6z+GICqIoBETYGPWYQSkXflVARes7mE0XVWl5TM1XcyjOFtVVqKrZZ+lDIbTY/rRyq060d52rbLiVLnrlTSszo0hFLbSdWsdTk62ZqeQCtGnZxYUKufrQtt7QmMCtirbOCkLPNlsL6ifU5YcQq09xmcgGKN4JvuuIVUZTs7QWAeh2WuKvq+yjE+2YYufGe4oE687EW21VVFpeCru28ORZ8LISYyTEYajPILnGps2qyeMV3mdAkhmT/b8v3slmlUPpqP3OYYJrRxtkzT2+vbqWYd5dOCnqYIAil9ZSqIm+VlFXKOSi+yjjl0V+RlbeJqwJj8kTJp2Od/0EqfoeeNIdroQyVdDzP6CyjLeQSd6TnLQJR1lY5SixVLJh6HXKljjJ+GyDvf+/v/T0A/ugf/aNv+/+/8Au/wJ/5M38GgL/zd/4Ozjl+4id+gr7v+bEf+zH+7t/9u7tjvff80i/9Ej/5kz/Jpz71KWazGX/6T/9p/vpf/+vv6AL2sY/v1fAre5vPXdma7la1B1M+UOuQ2Sxl4wzi3WDzleokq942KNSAGTJiunDCVRssiSlZeLPaMBX0KoKKfR6DY9hEQyCK2Yfklt2Gv5UOYnDmQIxVUbbWKxCHFLOocFKReI6K3LPjtlD4rUwTg2P0YQcPL1UOaAsC2DWYBsewCVfra6qrsXtCESOZrUsJpoixE36dWvKPiwozzwb/Z6jGhzXBlmbrqHy18cogyGbraozN1xqQKTtjza17r/aObCpXJosVLUFujTC3SiWIUqrhp9nZm+zSVuJKqHOkLOTgdnPHHIEpu8SKslNLyc7beZM5Oad63p0cVjElFHKlGohda2mNj/Y21Q7RncCusoW4CzmBBCih8vDEm3O1VvTqEw7I/bEwbk0vv8X4ltuD//+i6zp+/ud/np//+Z//zx7zwgsv8M//+T//Vk69j338vouwtE1+OHYUb5uDRoNwl2Q6b7p9+19bq0ydoFW53fTwLMHYRlYNISvXSqu8jkj1UooGVtDkKck2W61cLjcI4s3uXp3Bw0tyxv3J2E5aj9Oq4kCsDsOtHccTqu+idW7VGcADb7JEZbvh1o1cekHEVddjk13SVt++PqzNJv0T64tqbUDnkEuHy1tJJ4HwBO+pUaQtNnjqvc2rxNaoPRQnphcYKqACAAeLygsb6v0MgmDXp1EpKG5jckYGpsBchwM4sXtUoonGyi4J2rHUJCFqbThtFE1K2eoEZgOuQP3Z9r9bU5svG7drn/6O9WXzChNR3NajrN5LF+znTtUsVeozllzfb7IRmovWf1Pv4fY7WaoeJlu9QqvO1GHAn2jPuqRaXZfdq9i39nvxzn6d9rGPffxeR/dAaC6V5eDIrWOcF/KBtYPGI0i+UDaB7o1AfCSU4MkTb4i7FnAGzU7zCnK4NCBDWJr+XpopqTrnbkOmmdwVUhJkZVBq10N7z+OSZzxUxoOqiDHLpNHhln4nits+tLlKf6OaEE4yaZJJg8OtPGFhdhz+zNqOw2lhbDEn3baQjqzCkWIQ/u6+x42e4VBJBzYfyddG0tE3ra8et1vfLOPaTGkd4xApK2v/tY8cem78sVSVPeanSyQoG5mxLi2uKqCHlac03tx759nU0kOx/9fHnXp9WFr1JhoZZ8p4e0QmiWERcUtPvLRj4sJTorV7pVPS9US6mShrjyyCVXqbmgwvPHkwIrV2hXw6kg6l3sMrNB4XDhmjVYw3R8J0pL9skJU3aavV29eXpsrw1IhMR4ZFg1vYM/Fbjt9jT1l4mNRnPMmkI4dbOcKl2wFX/MJBbowD1xXKaWZwatO5i8Dk9YDvIXWePHEm8zXPlJOR4QTakxX9/W9De3Af+9jHty9Sx5UobrFNtwwV5RfM2gOpihjmXbg7DqgIPNCmoLHC45NQgWQ7OLVm49doVMp4hegyzT6lFAdbN9ut4G10hl4T3f1dcEY2rWRoNt4EfGsbUGsbaVdNCdb2691OQQIwaL6asKrWFpLLUquVqgMoT6wv2/p27au6vu3MqgSgs3u1UwBJ1trT4Mz40SvZCTIvlArV31Ug1S26eEeuEPvS1LZhRdjt2oBVNLhkuapCmlptJawFqLVC3LXi7N7kxtptUiqMYqgtUbe9D3LVYktYtezsmgE0OVKqz6+2kUvian25Vj+lcvdkWyVVEM+ulWmfXYIzMMr2u1RdpOttNMQnRgBXpxi63e5Lbuxat1QAN2L8s6q24sQq/HcS+6S1j328S2M8MvdasI0kFhuuJAGmijhDZ5XWNjEZr9pMWwv6FNVIoS0G0ca4N1uVAjcIOKwim2ZckymrYEi3mHBByS7AQ1elpGBLVM3OCMPMkv29y4heSFVgcLhRyVOhzAyxp1M1FJ064GpGExamiFGmhsSTJ2D4uCeQbsV4Tskp0mWYmmNzkQiPHX4E1tvPBw1VEWNSDDa/9KYU9YS/VwJGaXcSUu5WD70jP2gM6TZai9ZQdlIVMZQ8L2bYWL2kXG8AkuIFGR2azd9MJ3nn7yXLK+I3UhUxqnyVTg0On2sbMyyqQ3S0NWYH2mZ0IuZHFhwuWYsvLiwxS+8owWS49Am06W59Q52BDlvXZd3B8PMTihhxY5JQI1Bqm1AnSnaO0lZpq5WdV72AFrJzEHJNhFUcWbbSWux8xXJFwk6akVXzbZhp7WMf+/j2xXDTJvnhUSQsKselcmYSRhYFQ32VRvGrqj4wgE9GvM0ze+uXrc5c/eywMI5QqPYe6itSz9ksSAdnZFJXDAjQaYWYYxykCoHIc5AuE2JmaD1pqjudRL8QUjKr9zLHFDEmmSRqhNh6XFzYLG4s1cHEJfv4J2H4uUL8Lw3KnQRkknBOKaGQtuvbQs1LXV9nbTM3SZRKcoatgC2EYm0vnMLtge7GGu09F71HpUovbRN8hXvnqZKvj6aIUflzEauYqBD7kgOlK0hrbbYd5LtC1sH4Y5mIVkUMUyCB0ldFjFHqjO2K4GuqFJnS2HxNzwJxUb3ALh1liOQKw5dtwuRKiQMBv/RmV9IVe+mYVEUMbzD8nd7ilsc1r9X6JMPEEKcueaTKUqkYpy9n07tEIR0WcqrivlV9JC4qDB94cDZnWH2bFTH2sY99/N7G5Pqao+mau+M1JJusz7bikOLMgLBR9DChTSGHYG/WVflABFwv5I2ndBkJBWbFVArUhu5hZS2t3INsPKUK8TLJlMHtNF3TzKDOYWl/Jy5BKlS6BN21m/K8kLMQVs6OqeKsSTzFK64paCiGjBsFlwL+cQUwSIVei6/AC7OSL61tyHFlViCiguLI3u/UKPLM0G679VVx2nEm5BsQm8yo7OSUpFRpphGayyo9dFSYNgPFOS5mnalAFJtJbd2cpQiDQrmlNN3IJotVNPhdlRsWAgvPcGywdNdkdK4kDOPuK5rTlEUcaS7oXHGTTGySKZtcuNpas/na26rbaSLEQvCZfpyQz6sixkKQC6E/hewVmSSY69X6Glv/dn3jkZCPDA4fm0xfoDTeqrFsQCBKlevy9pIQYjYz0KVVvdv5n6FNnbWqJwU9HkGUJA1SHCHZc7H75ymryY6M/K3GPmntYx/v0kjJMSRvAqTVsVfr27xkwau1YHI1WNw57LbYQU+4yEKdAe2M+yq8vQgl17bRKJRVQLdzqGrMSLVY3xpE5mr8SJ2f6cYzgpVJ1XkjN2apUgJXUPtNlXJy1aRStrOSK/j19vO0QtLxUKS2QHfoOoOGl40zuD7s4Pol2TW5WkEiVhn0q7iDzWuoEPKqbmFrhGEMPLqc2b2sLrwlXt3PrVI6QOk9vTxBAYgVYl+rx928cHvNQp0zVSHZrUnj1oxzeBIOb8LGabJtJdaZ1Gjzv+ICaLaZH1uqQFVzr/ew9I7i/I4LZ+7Fdl6/qi81SZDe23mLoMk4fGli6MBtRSijwMY+L9X1OSfmOC21wuSJ72QQ42R50FCNKSstQqmQ/N5Rs+m3HPuktY99vEuja0dOpyseNodGFHbGmSFXQW21wX1xim+MeKzB2Q8FdjbuY3WJbcwiBHGUsdrDU7taRZBkLrUawHlFfcb5Qk4RjRWy3HsCdfOu1Uyu4APAYO5qMHXJmJPtWJPDdjAfFBdMLgh3hTxUX0EPY722oDsgQKnkVpdAt4r223NWwIMGW5/fXbdtmhSQKqyLgDZVIURqRfGEPFPZkplDseQVbW6zs+1I7BKnOLuOImpglkL12DJoep5UzpvU2WOxz8NBGYW4qdcbqoaiKN5XFfcK3UdqgilX3CxEcb4QQyb7YDJY1VLEb8BNqhSWYOujXnMB6WVnkZKHq/U5V52cvb0AUF8QnNY1VnS6c4pSdqoY22pQhAoaMpCKC2ok6t6jQa6uIwPOOgb6DpEYov8l5Kt3WVxcXHB0dMQLf/NncV33nV7OPvbxexIuG0orHWRklmzD3Xj8uSdeOsLGNrfhsCpQTIrNobyaQWTv8fci7QNLIHlienbpwMATEtSKEQXOI5M3PWEF49T07MbDYtXZdlYzH8xLKjmDaJ+Z+aSpoCvDobB6tjoFe7V1LALhrM7aMuRon50ndZMMVv3JKIQLmyFZG85knDa3szkGg1VyK084t5adH2zIPxzA6vmEP3xifUvTSHQbR/vYqpnxQBmPzMWZpliiXXlktPZa+0iY3LMKZ/W03XemRlLS0RnEvtqBNOcGohiOlXRY4GC0F4d1JNyPNmeqSS43du50lHGzRGgT4yoS7kXCZRXQVUteiFVO6VpCjkcjIV80hAu71zJeVaeISSmVG4OZXN5rdzPNbTK08xaYj4Q2kTaRcLe6BtT1Vf1gg8PfHgkHI6kPcBkMNl+PVZN/pDRKOi7oyWAcv8tIuPC7uWuJ9j0rrRl7yiQbEXltz665EKZ3lT70fPH/+pc5Pz/n8PDwv/j3Yl9p7WMf79JwVVuwdI4yeKuSYAdf39ps7GDu3mDZSsFhyhTqbROps/IKR7e2n1IqQbkSjGOFKm8h9oNBstVbJZM3YVfBmUIE5NqGy02FX4/W49K2GCpuC72uba5tdeOGujZh51GlT8gLbY0SZRRK73dQamt1GZR/q+awVQV5cn1a4fMaa0Up27mLteJ0+5LvQaUgKpQou8Rh98lRBoUKLtgqeGiVjnLVD2y7xqyyUxbJnc0Td8+yQuxLcIwaLBlVUWBDEvJEdSwGq0/1odVKMkfZsQJ2lIEklNHvUIiGNr0CXWxVO0rvDf04GlH9m9dn91IgO3Jy9nmuSjY1V8ojBu23hK3Z7Z5LCdae1ar3uCWTa3RXyidizyO3wnBo6MR3EvuktY99vEujfSSElbLwwigOnRnEfCv2KtkUDYxACmlmqMLi1BKcN8WHPKnqBxV8IGooui3yT5x5YeXG2ZyjbOWMbFaWq0W77xL5okG6jE4TSXwFNVSUGwYGUC+kthC6RMZmTFIh31uFetYm9zMeZ/QgI6JkqpWtGLIQzI9JxmoQWRFxNlayjLdNPn5pckbbapNpMusOH+ChXIFYauYzc8OMdJl2OliCXHS4VH20lnbtCUdxFd3XJESMOiAP3U4BXYqptGvvEAd5ZhYo4bKCOLbXXFGfpXKpSqcMFfUZl9U4s3LY0vCEC3H1IAPMxLKvMPICJQppMBBMmWcKUC6sEvd9tSvRur7B2frnhnoMlxUdWeH69tIhNRmBTrbn9QS1++dGawfm6ZMuyZksSon2nfS9EC/t/o3FKBo6SUhnx6lA7gRd78nF+9jH91T4XolLJSwdiGNU0Ll5GpV5bautPXHld7wjqlVISXUjC9YScxuu4PBbJ168QbaDgQnS3KqirYr6VpAWzJPKiQnS6sZb4nrCIypXIvT2s/PcUSam3beFuauYQv3W68o5yBMb2tPY5pekAiNqNRbWgizNIypB9eKqiUssybrqYSVLe4PPCjLJiM9IU3b6fjuDyOo3lhWYZKbtCE7ZzBr6Y9mRbM3exJnVxgxca4oYuS2kqlAuFQVIJQnniZJOR1z3BNy8QsO3n4eD3Kh5TrWFHDyIwdJlW0kNDhbBZnpRr0w7xdZ/NecyxXmCUo5HQpcYy1Z4vCa4J9fXKen6iGt/dzi8WzmKRkr17HrSbfoKSWHJTRae0gkEk8LSxhafLzzNmTdeWLDvR9KATu16iwM3HxgfbgkY31rsk9Y+9vEujTS5apXZm7/xZnRmics3tnmX6G0YX7ZGgI6yqdp2XaHMk5lAOpMA2iUuBUmhiupW76oZ1bLd4dfgtqrdG8foorWD2oz2HmmzJaTas3JrR7epqLyVI7umbrrliWrB7zT6oLY1l4GSSt38MiVWEMRlsNnVBmJ1x00AXbGKa3veladbmUK8DfdNwDbVNlaaKjlaEt4aRG77VVlgtW4gFMYO9Kli5N5KBA5rU9AYtfpdVSHbLRR/+3lhbfdpUCGdiPHHJnkHN98lrlqZyUwoBxkfswE2FBBvYrvFKsN4ZmTePC/V0NEqqRFQZ7MwFYiXgkYzsRSxe3iVDtzb1jdmIV0D58sV8Vk8UhO7721ml6eQD7Bn/YTRZYnGCZMshAtH2TjyPKMTM7B0TimdUGIF2AwQdJv8QacJ12ZuHC94MHwb/LT2sY99fPtic83ADa4i4cKTLaaZWV2Avd1Toc5urBvz2nyNxmAKBUQlq0Gk49JZS2hzZZeeZoU8U1yX6gbKzlJDfVWt6GubbpKhuaq4mCQDIbiGcl59vNaC7z1pJpS5mO381v5dnFl3VEmheOEosboPT0yVQwTK4AwN6aoiSMXAbysu6Sq6UaF4h9crArIUb4oYAcokw1zRaDOvXeKqMvl9mhjEvy3422tk40nSQq0K/bq2CrNHg1U1eV5fGJ5I8JKrrcrGkbz5UdHlnYHn21pxPaa+3tpxOjGjxjy1+xcvhbgUSvXQymrHXLXijEwd1nasZoGlZ6ABMcWQJxNXWF8hJGXjyd5AOEwyqSr0u42jfWTfHZdrUle719qZF5c86dO2tDbvqBUKP7XKXp0BQEq8QiqGHSk+oLNE2Q0Vv/XYJ6197ONdGuPNEQmKv9e8vcWESQqZYSCkaSG3JjC7a79VRFoaKtcq1Dd1gVHMmdhvartMrY2TahUhTSHPK3JxZskwrCzJbNt0TMyTapu4nFMkFtLMXHRNIBYkP6mqUBOXQG7rnKkK+G49u3YtsCqXlGZqoIf0OxMXU7UdzFfFjnKlnGEWJ8YlGmdqihiKgSBg54AsKsSLymd6akN3Y0NpPBcbs4l/ssW2hdjnWSHdssoib9nXuB26LiwdZYyW4NtsRpLA72jFrR2FYPYfjR2HqGn0rYMpU2R7qdgqSejEVDaoivNZAmFhppdh4dC+Jv8u/47E5WuHz9f1bVutUonnxQf03Cop10OQJ87bFaTN0IGOgg5hd79DdZFOpdIUKuI1T8QUMapj8bZbkDRw3x+Ql8M7+r3YJ6197ONdGvPrK67PlnyjvwXqaepmEqtckTozOsynI65NlBhJBFwWqANz1wt55dGOKtmTjCSKvU3L9rjBKoTiPRIKbprQWEzxYhFoHnvi6qr9lrwpODBNlMGRR6sY0kGpG5mvOoWWZEeFcqi2ScYCM9AkaDK1dEPDXbX2SqgqFQeF3GGKGNUk0hKSJzlz8OWJdp0poJtyhhsgzU0eyodia3WmziGlOiCvoT03cu5wBMFVmP8skZ1hwSXXBL+F4ouQUGKT0flo2oxihGepm7NcCP2JkJ3iuozO0pUyRcuuSmLtGeeFcmQKFrFN5ODR1lq+Rie4uubsgGkidonoM+thQm5N4SNe2otAf00YBdOEnNX1YfNDGe04UWE4EpI3hY2mTQxZyJ3fPY+r87qqxFEIbaJEh64c6qse5YYqVGyJO88K5XTE+0JyLaJuB4QxKTAHFx1PZNRvKfZJax/7eJfGyXTFCweP+EZ7HY0Gf3YJ2Cp8CxUJkGknI5vk0JVH5WpmJMk2FFRwXnfttK1a+tYjySWrpLQI4pTQZJNd8oVhcLjRE9YGV84dJiXli1m4izcSaxbTLSwg2CAesTZR7oSiljxcKDb7GB3qPW50+MGOK23VVBQM6t0Us4FfVQv7+nLuO1Pm2BkWNmpeWiuruPwAfqMmDAsEXxBRRjUzRvX11g3QXBRD4iWlDaZ7GBqrojRaMnbZgDGGnANxSoyJkoWxMwUK9eDLFU/KD1WdI5i/2ZgNAl4wzyrfW3LIrVAKeF9om8QoSvaNPb+8BcMYzL9kO3cTE11M9E1rtvZaW5m9Mh5UkIZXfMiMxaxo1Nn6tkCYcQrU88aQSNEqzi1kfWtOmUex6/CFJiayOEYfryD1W9V+jMagHfg20cTMYh3NdFNr67QiHv0A5dthArmPfezj2xfn6wlvhiPQysua6VXiUttYSuXpDGNAETQqaWotNamzKb8RSgUSlKYylqOae22xTUfDlrfjKRnGmrxMwBByZ0P84i3B+ZUj+0hpbWdTBYYrPlXuDBiw5WaZUaUj+0BpCi4Wk0rykKYGf9/yrfzK7Sw4dJohUNt8snNIliS4lbWptsoZ2qqhEUepM7nq5rvxrC9bW1tVas8TJSWrHMe5ofE2Y+TywRE4JQ3WctveTymya1OqU3QVWQKKvRBoNC6VFGe8sNEQdm7tSCFYdUnlZQV7Pn64anvK2pNCZFlclZASmKu5AFdCk1RATImBtcAYAzk7dKJospanjpU0vHHkZTB0n5rhp6KI2vq0KqW4VT1vcujokQjUeZQBVrj6vBBZF6nO1LL7nrkRUx1RoPIA01BTS5XgSjOgAnBctko4+3f2e7FPWvvYx7s0lq8e8EozQ73gjkZrdS29KUdcbucEkB8H0mjeR+5gJB8YN1R7R3gQaB86Q8DNAunA7wwNyzTR1ypMLgLdfZvfjPPAeOhJB3kno7S5nRmGOjdbQVg70oUwHnryQTYLC1920OrhemK8Bm7pCdUEMaw8+dwxHih5alJA0sHq2YQb3M6Ow9pXMBwJm67gZiMaCsOhY7wMxAupZpZmfzIeCuvnCnE+kBtPf+gZF75KGwntfYe81exUPmSS0euZ/sDhFp7xoLa5Vp7Zf+zIHaxuQplnmI/kmZDXHresPLYE3RsewTMcKekw42Yjsc0MbSStmp0YcVg78kW0az7IuMOBEDPjOpKHxqxFlkLYCPksoiGa3uFhpjw3WDV6EXYGnn4jlAtr46kHN1G4OVBGYUgNwdeK6y1HPhdSfY5ulmjakb5rSKuGoFfrK2cRJJImkK6NyI3EsA7IhaE3w9r+KWdCicHWNy/kp3uzZzk3ZY+wrM7YSyE/bBjbAG2Bk4HxQBgXVWFjIXSPryDy32rsk9Y+9vEuDXfpwXk4ymgDEgramrJ7iVXU1NnGrGtTZNdQkFBlnKhqEYVK+tyqSThTrIj21i8KurEpvVnS25wiN6aqgViFUGLVJtzUY3oxaH1rszCKsDUT1GgE55KFsvFGhq0isq7H7Cy25pGdUnyhDB7dXK13p4VYqvJCUwzCv7HjfK0WJGGGimpkV5pC7gxQoJsrG5YSBGnZqXXQKKWryTYL3QMhXNjcxx1hVUpjPCRtTb1+S7x2i1oldcap0taQmUhVCmnZeWfpRnBNJdRWw0V9wiDSDXZvPIIOQAvl0GaQ6k1PsfSGOHRjrYjVqs4S7YVBgrUPc/Ue8wMw2PORzqFdpiBvV7kYqKRwu67iLIlIzJAdpS3k3u9Iz26weyMNlCkQi5GVOyUP9nkWgtsA6gylGEFiFT1uwHvIQSrA5FuPfdLaxz7epTG7C3GhXD7nyXNHmhtqrJyMDHPHoAqDp3noaM6EPPGkmbO34LZYy26mrJ8quN6UCsJK8IMjL6LZzU9sYyQq/fXCOLe2lV8Jk7XNkdIU+qdHwiSRYiDP/M56PSwEv3a45EgzGG4l0xNMgmtN529sCnnu8QuH31gl1ZwZYnE4KeTrGdcWUizkmcOtq9pHhva+hwfO9ApnhmBL1wt57vCXfqfE0T7wyKOOcaaUaUGm5vGVNp68bmzO1UP7UCirSJoVtKpsHN1cIU7pmTEsWxCICwgbT5q6HU/KHY42E1xE8iru7ED8xplSiGssOZ0kuJEZLqMlzJUQLwS/9uSZQ33EBUPYleMEq3pvnkA0lgtPlqYm9UJq7N74pd+Rv23W5RhdY1JbJyPuVmJz1uAXvlajgu/fvr50mtCbZtoZLl3l9plTsj8PjKOz80635/X4ZQWuDCC9UBaO5BtSW8wW51qhHNcXjmWgqaahaR5IM0+eF3uZuF7YHAj5pcRwnt7R78U+ae1jH+/SiBcwfZDpjyIpC8VBbgt+ks1TKWT6ZYO71xIv7U2YYm/gWa1CKE2htODXDkmOuBZkbVwbFWEMYNP4ivpqBDm343wvBj4oQu+g6RKjU3JTSBpxgwnsumRyU30Whht18RV8II1tViUoWYO1AVdCWFsVmKdCEVOpl6CUxpGaKkx76WkeCH4UVI0gzCQTJonceFJVDndrE8X1g1BUyY3ipoVmMlYH56sZTeyFMoLiKFFxk8L1gwUhZu4eNPSz1kAUPbCpauneqrPQJmLM9NnaZDrUTbzeKxT0SNHrmenBmksRUjF0pF9veXF13jY3H7T2oKdvGrJG3OCqS7JVU2XlDeI+S7hYKNGRMZReKNaKKxtLINooXOs5OlzxsKp4+Pp8ZC07GS8OzRRzNu+5dFKfY61WC7i1QLEWsrQJ1xVrBxLwg7N7Umx9sjYNRzdN+NZoD06UQSG80ez8syhW5dIpoU3oRHjuxkNev9P+Z775/79jn7T2sY93afSnpixQGsyOZG1otgxIkxGnaOUipZmhwyRfcYpKtKqDSaagpNFmRSb5RLWHMBJuaUzjjqaQ0hMQdLEk6JaentbaWmK8nTQ39Y3tW7+KHadDBVAAZROsHSagnZLmtR25bQ0V4DKSBnfl99WaIkYZBA0era2psHQkH8gTcxDWrp4DQavquu8N9l4ksBkcRQWp7UeDuMvOe6osHcUH7j4+RIKylkC5ma0qXbqdvp9f2zoSDTkWSnKUmbW9/Ep2x21naDo4+sHQdaUrjAcGXNgdV5Un8uAYk3/bvdFY7wkGnc/JuFx5kg3U0tp9B3YJ0PeGPhzXgUXorC3cWtVMMTcAqcAd89oKbGI2ia2ukA6sdSkZXBbcEsDuYZkY7WF73lLbzWCcwZIcWYMR15tsz8UbMlFFqt2MzUJTMBKyi4X8hN/btxr7pLWPfbxLY31T6U9k55UUNgJSFTGmmGp3MQj2gO7emLdv9qWBMQo6U2iVMiuMVOjzxt6+YwIcjHOTO3JtpiQxgVVX1ds9+EuHbiJlai1FYiHXzVOdMx+l6hysThibgmBJqIz+atY0xxQxIruqIpw7SrMlxRqyUNzVDGQLqTZVhUpinRjfywWbNZXGoXWGFBZGvlZffay6gkyVMXjUGaDBCNCOrMJ6mJnvVlsINzbQO1PEkCckr3AGsfdGaC6zjM6gBA+LqoghtWW39gyuQcUkr3JVxFCpiasqnNA70to4XtoU8kGF04/OABArwQ2mhr5VppBYKDMYg7VQ3UZoLqzCZhnYaKVCxEKZVyV1Z+uDCk1feQZp7Lgmkw9sDikbT/PYUIhb2aWsspt/5nkmd25378JiW2EaJD5PhRzMNG08NNV3VxGSRoo3pfkyS1z0HemddQf3SWsf+3i3Rr4+GkjgQWsbxFAlhcREcXWsqt2dtfXcymzurxQx5EoRIxa0NUPAVF9x/eZKzqgETBED20CLwOg8kvVKEWMpDMX0+rZaeFsFi1x1Ev3KeFFp4wzhVof/ZMwGpCpilFYqvN0+W7eDewxSbgs0uPlWoHWrqqA4sqgpYtTjfocihtbNtFPGWTZFDDBJJXU7CStZClxWftJTmfZ6j0bP5cYU5wNXiUuSccLyVElzS66lCGP9TDNQNMUJHU1xXrsnRWc9sE301rLNGtDOEjptrZ7HqoiRt4oY9ryulCnKlTnmeUAX3nRCFg7dXCV/bUxLcqwnVFfXt3LoGG19bTYtR1/s5xemcu97MHvpet6qwkFXqiKGEZTlCZWWXDDZLYE8z5Sp4BeGKtwlLnEkCVw8nJEWe0WMfezjeyri4cB8suHRxgQARSsnZmVtH6ohXz7K0CSKD6a6UNW4VexNtyy9odaqWvgucalt7ltHWbd2KKFampSrtt7KEy9N4SJ4AbmS9tHWnHuLA1k5wsrXFqWjSLRZS2MzM+wl3OSfWlPEcCkglzbr2ToplyoHhNY5W2dv9rKqig6rqzWUJOYBNbXEvW0Bbgm+qDCmShaLik5rawqrXN1ooAsqxD5nq4h2Ook8mbhqdeiMs2bK9HY/R+FtivOsIOWahHeK+AAmgkup6L3ekUe1CrTN1Ziz2HNtKmpvtOuHq8Tlmoz3SuodaeKubGeSMGzlsCZvF9mV/ETyUEjJ1kdnydI8sZQ8ypXY7dbKRYFJQYIZeW3Xt0WFhpXgkiXGPFEDmLhCIgJPJK7lVhGjxY97yPs+9vE9Faa6kK+sOLaiq9WfSYqRePMB1jaabFtRmK17nZ+ES0cZTOx2l2ioiUtsM1OxOc6Vdp3Nt1wopgxRBWD9ACzqRoZtoLQF32YykdxsJXsMtZam2w25zkYK4A3OjZcKkqgb+ABBHSXZXCS35hElvpAkgNbWXt1MRT3qrdVYJubYPLpaKawtMUkxYmxxRkImFoNrY8zWsL5K2rrybB53u0rvmxOXX9tsSEZrpRWwCq0tO7h4WXnaymuiKj7k2v7bKt1ntWQVz69mbCrOyN+2akoD6UANbj7I70xcTikVQJPmajyzRwZwKdFacVcVsb1YIFDWnm5Z23piM7GMvSiQxRylXanPz9qTliSqB1l9G9JQdSHD1frcuIWwK+XEtCh1+53UqkGYQBZCcwEbv1d538c+vqdi3AQWrrV5UBVdFfV1lrD1hqpIwOTsuGkmO6VMzDwxLIS4ML4OahsPExNnLU6vZiMVDi9FGEsVxZ3bbIlQSBPbrCRTB/t1A3WYynvI5MaTZ0pJEC6FuNo68tp5pcs2fFfbIG2WY5uf97b5mYiv/Ww8gvGo4KeJpHVN9a09bAy1aLqDynCohMlIwgwPjcBm8x2/dObeO60AkW2SEY/gSPWzZOPwdxrjpB0YHJ6JqaqD3T8dARF7EehlB3SRaTatPRp4ZHMf0140hF0+MM8pmSWDzS8jXAR7AamVX1J7udg6RafjhNs4/JZY3Nt9F7XEV0J1YD5IlFHQM7fzDNtpFQpWSU0zIRZGF1Fp3rY+E0w2FRJti92npYeLCsOvyEjU2XmqE3E+zOgo+Esz+NxqM5ZGGIfqWBwLOleyhCsj0AG6R0qZ7CutfezjeyrKIrIajeArofJhOhO5dekJSaPBmSV9KPbm3ygaM+Iduq7tumKJS6MzMdrqc1VUkGLyQ5JtbpZ7wTWO3NRqogilU5JUZGIFEvhNBUAER4kme5RbI7qGZW1HjUY0LVHMEDAqqqDZVDq2xoTqhKDgCzvulYx2bhTw29ZVBZxsfb6SbZK71mMwwnBOGBCjGiW6UUiukIOzZBSuPm+cV6J2EeJFrV6bq/XS1JlZ3qL7ahUywugcJRbEW2WsobbZ4hbhd3WfCMaHE1+lnILJZ21tZbbCszvUZ2ezRRmEkgS/RSj2gjpv53pC8b00pg0JVCFbO28JioTa7vWglVz85PrUmQbitjLTVI0905YkLbtkWKLWeViheIFh2469QoRKXxNqddAurRG+t/Y5/xXOJPuktY99vFtD1g5NUmdCNkvRWNDozd3XxgUGEOgdirUJper/UbS2umqrMAkyGvFXgxkGsjVc3Lj6d2oyGG0zKvjKszH/pS2sW+rnudFmI2nw5ukU7C1ca5UjagnWjQbf1ipci2AqFgBRrTVWNz6VCg0vNvfK1Z4eX9Bom+ZWCUO0QrCTM8FesE0ymq+TG4UwWPtPBrFrr7qKW/PLPBVKVsLqqsrbVq8acr1PVQvRC25U3FoQ7PrLWLUSvc3htooTNjOsSXMQSyjWvQSgeDt2a/Qpo+CKPS9VDMASiiWeXnf33SUxWkG2OaApcVibNbdX9062EPckaHZoqeCNbVLVq+djhZRSFBMzDsYL02DPYJv87UB2yh4iai9CjfHf/r/s/WvMLlt234X+xpyzqp7L+75r7fve7W43iYkSOjjHIYpwCylCXGwFKwLhD+hwFJsjBKJPGx1ihCxHDkocnI6sIwEfgnU+RAEJrEhBREgmIo65OAq2jzkWVhL7yGBHwbfee3fvy3t5blVzjnE+jFH1vGu7c9krilnePENa2nutVeupWVXPO0eNMf6XJIBE9Z88cUnSUOKIX8XvxTzD/LhxSVqXuMQLGqv3fAZweiVha98Itficp2XBmmGaXMngJOgqYSvxt+/OQRQ6GNO1u/EK8wzF21yzeKtLDyltPXNnfDaSWlo2w7p1KxLNidoJ6RiV2Q6kJVKCVvw4y0bbuoUH6i3HHI7KtorzdqHYIXhS7g1NiVqSE1ebd666+4QcC60HLTE/ujE/7hgCtjmUKaZCLULLOCRezI0kjzkqBUHunVtkg/nnrZTh6uT5+t0eeyhhyyEOCJmyz92yYVcNwdBDJh+zVyn7aJVORsqgltDNWW7KSb0BX1eH5efOP1vXSusMxoScJIASXvnaIFgfiL9BnWf3+L4H104QWu9JXa8bbJV6yOfjDo/WVwrZxDUQN3ZeXyj9WwrScMyabNVo4sr083F5jBloJw4oybbMzGoPSUGrw+HZgW4Suvbk/Pg6dDUxjRdFjEtc4hMVwwfQ34KRaevMdK1w1dCril65NYgeCutfLXT3Dkioa9yfaeUcqbbyX+mU6B68vVf2Tqydrlz41LJBhvElRapQHhzlVQL0Ua+g3kzIptL6RN0m0oO30mYofD4mpmtoQ8U6Y3qqTC/hckL3cd6Db7D1ymgrbxu5z2JwuHqjbhQZvbrL+0T/QSbVzHhj2LV6wl436jYhu+yGhaPQfZhJU0ZvDL1RuKpuOz9m6j5sXSbItwnbOUDErhXbNvqXD6Ri7KaEzlDzAy7wu8flrq4VNhWK0jKknX9mPoWYbPF2p26N6Y0J2UzU+570kBfOFbvsTsVAXhv1lUrdVPRQSPdxn0I1I+1TcKTMgThrJ32nHZS7RLeb22zePrZitNcnbDsy3g6knVDi+ZT9eX22Mca3RtKmMt33pPtMdw/ZhBQqJHrKsPZZXVur8/d2cdxBSDPhWoprN678mbgfpsFtx/pXC/kk1AO0dWK6cUmv9qTRroX60oHTV57v5+KStC5xiRc06sbbMZYezTK65PDyot7GytEWmluFoSEnARvXwasYUNqUAsp8hlzbIVpMMfynKDplWnU4vHnHy63hUwkPryDDDjEvO3m1A46K0+Zv36lv2CBx3kA9KqQTwWvy+RMd3uoKOPnSsgypKea51CnAAisCOh/wcLK3pBrkyS3qtWRHPWog8UxDliraYiE820pif3CwS80Jnqgj4Y7J19tCUqnzOVIrbm3fBq9kHWH3qB0X4r3aXOTX+pidxfX77CxmWe3cBtTeaKvop0YLLodkUksJw5+3dX7PqkLqQq1kBDOhVaFOKY5TFzKuz65PgiKgTZb1tVVQDGa1jgOYCJrTmfoQ89S5dQt+7WLQJEWbV53alQ3t47iZCnDE1U3EZ38lN9JFMPcSl/hkxfjEPa8guDpB4jQBNuZvzmkGCbDYZpS9z4W0c0UM+go9NHML+WK+kZWDBKDDaBuo24b0zXULSZ60/H+DkCoLIXXhHZlXO7NRYd4LKQl1UHJ8VovZCbu0KHvY0TfuKRt65Zud1YRkByAI5hys5Gi5hTMkiZYIUqzD4TW4RHNCLLiag50Esksp2SoQccY5efmdZWLwTTtBev2EnRLtvX65rlkRo5pAdpSmbh06b/eZLhyl0+QvBDIm6P04WzdHPZrfz5k/ZinIyi1abCtHKerK/7zshPzgCdckFPx7XWD4lpMTv09+rDVjOrosFSHP1ABMKBaozAns5LM965LP9daBNg3wRHd7lq+aSA6VfwTXf0wKz3tvU2J+GWRzvleGuo6ZYo2W4vLsHAnbJSWVS9K6xCU+UTG9VslJ4b3eyZnTLGUUUk4xQG9rJ9bmfZA4R8iBqmtbUBNHca194wHnQ+XRzfichezW9SkbbXVWukiRDMvOq7fxSaDVhxkODkheAADlEGu6jmojG6yVZXoRmn55AstCW/t8h+yqDL47G5JxLtDaB19SA+IfUPsqwLq6Y3Knnrirv/mXI4gGJH/lArFpVdFk1Njy8tE9rMTEeWcCvHli/doeHTP3Ywbyct8lOEYmQtsY7dUpNPQAMl1YuIAneG3Fybi9txX9vIlOXXpLDNJBaFKwIdB9m+YzxDEvc7gULs7VEu0qkvW6oYMiZthtR/fgAJPykNExIetHcP1Yn6gsaE1fX4cN8/oi+e8KBNF7vpiJjF6BDN4utDUwuWFkuj9zzDD//rhLsVBvFK2u0lH2ntQ7Cxg+8OHdhnq4zLQucYlPVOSnJ7brkdtjQWpa3lqdFJq8ZRXEWisNpDgoos7ovnirPp3Rd6yNNiP/5tZRqB8wJbQmJCqEJk48TfvE+t7f1p3PA1qU1M+EZq+mUlhhpCD0tn3xVl+ct6pAM1/fCAS6jZO3jeYZl00JNW+/tY3DtGduVj6CpeTIu5IWUm9b+fFulAjlENevQsOco7RSmiqicY9O3gorB2+F6kvGqqsoyt1KqSpIO7c2F/Rccu+p0lfGdaLFcbN0Vj7EjM8EzUbqG7ppVAWpiRzISgc3ZFpzLpP0bqfSkiPyZjt7nx95daXFkKGR+kbKSh2TJwpC4mofWoVFSUOQe2N9Wjxx5X0iHY167evLq+bXUgMtOAsvBxR+yg6vl17JXYu2YQp5rZkv6JWkZnOQy5WLNJt2/r09zALN3mYd6xo9Hp/r5+KStC5xiRc0zALOnF18tIU1O3DmXinYgM8xii0GhDAXJYKcXO2cbp6DzZweFsKwpeB7HfKzAIn43FlXz2dhgp1yDN6dD4UYVvMZwl0FOWSfnfSP5m+PzgvneZkazonKcc4a8PT52huLtuAMv7ZTXpQcrBgq/rY/Hzdjy23KTCeHiCOOGmzDmSztfVYYp8L4sPF5mj1ab/CP5nOjoGNmShZzuIDDF6cUpCkQeSPoKc2i7ctznPljDnMHG4V28hZgJThsmYUnhcQ1hciut+zi2sTnawu0PugKMj+fZcbkz9B5V7IkYh2j3Wo+V9QO2tqvFfy8aWJZH/hxKfn3bJ5xQiSw5ujNOblbZ76+dqYopAnymKjtoohxiUt8oqITZSWN2y58saa0uPqm0VthmIWcUDjhDopWh7cbscHHQN8QrHNIug2uXJFcz2kZ6AspwBuKFVxINeZe3i70zdhO4sTSzha3ZAv+F8TmePD2myVPKlZ88G8TaPCrhHl94lYZ82xEcN+rkF6ymr3ddGJxYbYcSiDJqQDSmVcUDdLRP1ss3HZHb7NZ6CpqTd76nNeh5sccfCMV/FjtjVTVuV2xa3vShJQFIwjFgyEYKQly8opYxwDPZFlcmnVQUucgk7wPzcUEVsLGI8WLSMaPTV7uzknQjxMkOyfK52AW7dOoCOM4zRLPcV6fkk4JCc1FPeFzpQxJHBSiQc6eBYqlfuS8keAt+bUI5/XlmIFaMRRz5Y9wLNYa70AaJqMH/z4+T1yS1iUu8YLG6de3vFs2rnjwpDLeePWS7xNdSDnJ5IaEbUyuxH1TGW+8g8iYKO9lhvcczFA3mbq1UOBu6JUxhUlfeiis3vV5U93mMxy+80ri+FrA4ffehup2Z/h6vW6QGzYoxzd8Axu+mujfE7TP1HWmXqmL3141xmtPSlQhv18YvppILS/rqxs3jQS8BbVptNUM+c6UO5c16u797b1eweHrKul6pG0ydUqkXV6UO/qvFlIt1K1z1mzTaJvmx+0T07WjKvOu0P9McYrAaw4Q0evKeA1yyqT9uVU4/HoHdG6qeN3guiJ9ox4KMnZI81Zp95Bpq8x0pX4/n05u63IoSOvII3QPQtlltMteDXUugjx+ZoKakPviNISD33ftEm0oXh1vlPbaFEiIztuoh5Du6hPT9Xl9aajUQ0c6dYj6Md1DnFdA1kZ9uVLfqOghIw/FHZz3vj4rGS2dE7KvlOmticmI9cU8tYFY8uMGB3HoSxOnJ4LsMt29H7f+iiunPE9cktYlLvGCRjl472UiWn2h4mCdtwGRUI9ouKU60a4pAdeTaOsV/G04KgSddeEKIA56ID9qAQZaT08Ojyb5Z1o2tGZXPpjOrZ40CjZj3nOQmouToS3NbTDx+VoW6IjFxPElhGLNK7Q0Sqg9BGR8OreRvGoArX58jt6bVDc3dMKyuXJIkQAeRFsxPlu7hMkZQt6S+nLCOfhs5ihYoAUtWoCi3vfK+0cV1+jwcIVoVbrS+ewltShTjIKVeE5BSWiDI+wWVYyAibcmDkqRqOR68Wol7pMbQBrWC7V51a29zytdgWM+7ry+Jtnh+B3UlS3tRBzVjlXc+VplaQu3Pu5H3O9ZYksbCznc12fewq0zDN/nf0pyVZb4XrbezzteyyLu/LF/Lp7vn13iEpf4hx3De15N7b4uUQVs05BVDOolL9p7+SjIHmTjx5Gbo+oQ3/R7W5S458FElYRuGmkVhotjQjsHKKQAMEhsmm0F9ZWJ1AcazZww6/wfWWxS2mDoy5O361aJGhqJaYJibklRBSw30tym7H3mkYnzhvEhCepWqVsHHei+IL1XSVUAzXTNfcAwBxe0hsPlF0Sc0Q6Z/gNvSc2q61V8LmS9YmvoVtVbqfuBfPIKbaYXIKCb5p/Zu1K93mfS+4V8xHt0YZho1T+/bZS2djNKeQh6QXAHavKZ0Oz1pSXAIPto7VVHhbareFTZHOwiBpYpGhDyaJNahnoTiM2tG0TmW783y/MhMUVli3xkfTsJbUFAAoav+EvKxsE4j4VuUwUtgq7F5R6LomuhJdCcSM3CZTpeuG7Mv6+rtoB7ID7j9HxZ65K0LnGJFzTK0ejvjfFpws3zcHmiXtFrUDHkmCmHsOyYN0aLN3UB7YzpxkjH4GUFfHveaJUQ4xW3uNDOk+AMh5fmVUB9BVJR6vpR4grFjNlyYtoK481caSjaBQw/NmQOsT6gBYBBMu5ye2Kxri8TPjfJ4oi7FHOtU0Yec8QkL7Yi+SDkfaZe+4Yvq0buWhCBY1Nm5lxBJcSAB2WzPiHJOG0L43UJPb7wfprpBZtGGppTAgY5a/zVs9PvLP7bnjjfbfGSmu/TzqWsHH1ntG3DtoZ1GcSPmwEkckrYLju5t9hvMJIsh6j0RlcdsWzYTXVuXOtZbGzGoEnoo/U9rUiv1Fm80mQBraRDokmH9bpYiyzq+shCLJZRYF98/pnD7DIEmPN9orvLCx8Nsn/GOmx2gh9W338+yPvHgm986Utf4vf//t/P9fU1r7/+Ov/Sv/Qv8Qu/8AvPHPNP/9P/NCLyzK9/69/6t5455pd/+Zf5tm/7NjabDa+//jr/3r/371Gf13v5Epf4hEbrhRrtmfLgdhhycGFa6RtlU2HTsM73HYkE0t0nym0hPXjLrl036tNG3dqC7isH/7x8l5G7gkyJtlXqS81llnqWzTtNIMdEOxYnAa+Vdt2YIsm5oniAJPYZ2WcHXDydqE8adfPouL2ft3xYSHfFFeSvGvVp9fMGEvKxb1U7uiU9Q8PGmRSr1CeN6aVG2xpphP7evcPyQ8ZO2UV8VWhbY3xiC6oyH0OiapdhTExTYWqZaQ2HN43jK7HeBnnn6037jI6ZFooTU9ihaOeJq9u57b278xq5b14VXqnf98KSuIYP/fxikPvqPK4r9fngFUuSLbeZfFeQU6hrxH2vV046d+K50N0lykMCFVKJmd38fHp/3t1O6G/FPbkET+ibRr32807XYep4FLoP4h6O83kb9co/b9oGqlFdTirfZuTkzslpaOTN5ErxUQ7lU3x3HzIc/Psoq8Zrr97RPzk918/Fx6q0fvzHf5wvfvGL/P7f//uptfJH/+gf5Vu+5Vv4+Z//ebbb7XLcv/Fv/Bt8//d///L7zWaz/H9rjW/7tm/jzTff5Cd+4if48pe/zHd8x3fQdR1/6k/9qee6iEtc4pMYp5eNaesVU5r8h3+upGwLFnYTde2SBHN7SfaC7X2mNL0kSChiVAOTM2G2PEKvtY1SX54rBIAcyD8vIvJDRqeErhRZNd9AmTHV5zfw8uC287VXSihiVBWvJHayJFY7OCJtetqwaxe3ba7x4yoYFUhCeXDfqha+VfSKHbN7c62rtwClgw/S4vWFzB5RDt9va6VtDH3IlHtXw3AlB6Ea7G3ts7xspDddEcPe654hFkOiBrTestGu3cpe77yiyWFimU7iibZT57tt2jM+YDlabJZDCb09Us5IRqv+52XnQBM9CpN5RbwokeB8OalB2t35i810TEy5A3hUIeUFtDO7L3NKtJIXRYyazBPeSehuE93R52QYbuDZqz9vAR3SggztHnxGOWkYU64dYGPFmLaGZq/Az8ahOUjhjZKU/JsBxPhv/9v/9pnf/6f/6X/K66+/zs/8zM/wB/7AH1j+fLPZ8Oabb37Nz/jRH/1Rfv7nf54f+7Ef44033uCbvumb+JN/8k/yPd/zPfzxP/7H6fv+OS7jEpf45MXpdcdkd++Xc6J5eNRiC/5QWxva6SKGuyhiNFfEaCpBGNZFwaI8yCNFDCD5Bi7ZYPANzySRoj1YdoI8ePuvQSSuSiODZH/7brI4BrdtQtc+hLd1o4otCTOffH1uzR4bZG/Y4K1HLSx8IreGF6Ym5xbT0Dxxretio+FSVhKqHDyriPHaRFrX4EGFA/PxbKrIvaupyxsnVq/u0VPm/uRGko+VSDzBG219VsSYE4Nvyh55n2gaihODnhOXJOQ+WnH2qBU3qLdoN94AtClhp3wGSqQUicsVMWzdaL2LV9lt8aSlIXY7JmytEMoZy/pmAyuBvMuupjKvL1yfdVfgLmSaDmDRiNMt7rG1bl7ZT472nOd1lrzF2JrQimsn1mulbbyiLNH29XLZW4XvfnjNuJ+e6+fiH2imdXt7C8DLL7/8zJ//F//Ff8F//p//57z55pv8oT/0h/hjf+yPLdXWT/7kT/KN3/iNvPHGG8vx3/qt38oXvvAFfu7nfo7f+3t/7284z+l04nQ6l5J3d3f/IMu+xCV+S8TmtR1PNwe+XF9FNJOqhETReTaivc8yrFfafUEsO7E3TILTKdEOGV01lwraRuKy7LDsk7fB2snnKNolUudzlFYyTYy0K2xuHe4OwiiJlo20qi61NIvl7hObt73imfaJ1vmGnDrFisZQPy9qFK4VKHDIy2xNSsVWgWC7LXS3sihWQKZmI22qmzgew5lXWFpw3YNvuF2AC6Yrob0KXd9cKUJgljUqewJy7httu1G2/YimxP3VQJXyDOgkx70fn4K+YfSriWMTrx4IkeEmSztsfCpoMdLQsBIzJHMrGRTyIZFPbkJp165M0Q2VOma49TZeqvFioQ6m0GTIulLW7pR8qmvarfP3+jtP8KeX8eezrli28/oCmNHdC9xnpqdCy0ZeV7q+cjLQIWN7P2+38+Q/ESOxdaXrm/ui7bwqTu08+0w1lEo2ij1xeGmVHlGf13U75/mJZnS3ds+254jnTlqqyr/z7/w7/FP/1D/FP/6P/+PLn/+r/+q/ymc/+1k+9alP8df/+l/ne77ne/iFX/gF/qv/6r8C4O23334mYQHL799+++2vea4vfelL/Ik/8Seed6mXuMRvyZjGwr704SrrhM8cc3NpQQwWWeDRlqD1hqxY4PDgyQgTrNNF5UI7RwWKicOXSyQtKa72nmMyL04kbR1IzIRSFfSYUPGqxYdfLBDuRbXikNw3qpffcF5mYml6tL4+rNzjryzUwpvGNVefrakUh/WDz12mFGRXqM0/29FwXs3ZmDjtOkxTKKzbooiRQmVETDjVwuH2yluLLSHp0XpDRV6ar0WPmRO9k5uFUMSIud3s7jwKdsyEr+NZOSNHG7eJt3VHaMd8hsLXQE9uWK7DW8SCxfVP6gnHLL4bs7p/jedzSCjlmftuSUjNlvXJFK1M8eu1MaPFqJv4+/krMEkocRRG9e9aEqGG4/S8PqluYmmje5YRljfzd8Km83Mso7BACT9mPHfS+uIXv8jf/Jt/k7/21/7aM3/+b/6b/+by/9/4jd/IW2+9xT/7z/6z/NIv/RLf8A3f8Fzn+t7v/V6++7u/e/n93d0dn/nMZ55v4Ze4xG+R6IfK9erEh50j8SzHRttw+LYBGC0G/63N3CKZdWWXzVOTW8VLNkzUE8RJFh4VGq2oyasDSRbovlDiCA6VzJv8IJgJ0jXfDItitcN3/Pis45lrJSm4U52gRUh5Pm9wmBLL+iR762vW1HO33rAdqdGenNdXfH3WGSZGGkPHcLYKaYQIb7gVd+H4W2xJROUENH8pmDlKkmO9cZ8grn22H4lEJNntUWxwIVxMKDHHaUOIGg9xXG9otZBI8io3j6F+sYqHLr7RWwn1jhaJdVbJqP7cU3LFCc1+32gge68G20qQlSxSVOf1GRwTXTzDNrhq+8xtcx6gq2Lkma8WXC8Nl2kJrUebeX3pfJ9dPDdoFlnJvVL75Py05NVlUrDRq2eT38Sk9V3f9V38yI/8CH/1r/5VPv3pT/9dj/0n/8l/EoBf/MVf5Bu+4Rt48803+emf/ulnjnnnnXcA/o5zsGEYGIbheZZ6iUv8lo3TL97w6+katoqF0sV4zJT7mEmdQA6Cvd/R9sXnDteV6QnUZNiYKF8trN5LoG4kWTdGvQ4o87YyEUi9+8LqnUw+PFKmuFK099bZ4esaNAdauIKDk3Snq0K7VnTVoBiHT1dQYfVOZv2uoJ0rQtStKzPotmE31Yf/syLGu94yrOtE25i3+kL/8PB11edUcc2rdxP2vps4Ttexvoh0NdHWlfqyoyylOahh9U4m/aqrfNRrQ7eV9lqjvuwKI8fXXYuvu8ts/9qGtoLDG7hyyFVjuq6MYyId8vISsPnfO7CO6caoNw021Xlsx0JtHTyjTNH7uW8a3MzHZYTOW2d7odtltGQsqrv6UmP6R05ejdyXRS199a6g7yW07yAZ6Uppb/hxlnqnNYywfttbvXVr1BvFNgGHPxWm2rnKxby+0iO4ncj0eoU3J6ZjQR6yK13sQ4mjJCy5IkZ9okxff3Jwz0PniNCdJ9jykDAZ/NmsG/byxOkpyCFT7vw5Dh94cn6e+FiQdzPju77ru/iLf/Ev8t//9/89v+23/ba/57/52Z/9WQDeeustAD7/+c/zN/7G3+Ddd99djvkrf+WvcHNzw+c+97mPs5xLXOITHfkIZZdI0QJz10FvMblpIAuEPZ2ClFuTt5hmsdgcNvWhdDGrQjD5cQAzCHBRxCAqijHs3QOAYJ1DvLV/pJwRSvJyyO4jNRNiO2j9s+eVMbkIrp55QRYVlsbr85wU/Fp8bVYMjXPP65OPrA+8ZWc1xXW7XuPsk+XXFGjAKTnBdz5u5QhDK36+GeovU4JH1ZcrkVhUaZHsW3zelGhjhuqVal3HetPj65flOGs+/2nDR44LHb9ZmcLw67dH1y/M63PQhFW/HuvcW215PpzPy/js+trq0ecZXpkq/nxaWs47G4wuz7GxgHNo4vqBKZ7P4O3hGd6fTu4tZvHdteRtVB2M8UYWr7iPGx+r0vriF7/ID//wD/Nf/9f/NdfX18sM6smTJ6zXa37pl36JH/7hH+Zf+Bf+BV555RX++l//6/yRP/JH+AN/4A/we37P7wHgW77lW/jc5z7HH/7Df5gf/MEf5O233+b7vu/7+OIXv3ippi5xiUcxvC+Ug/FQhEkStg1isbiqg8zw6L1QHqBugwi7bUh3FqhtKwsbDOdn+XadaFdG6hRJ6np2fcCoG8g+1BFwdOL0+kQeKo0eeazMsJ/h7kJbQ3u5+hwjRFwX5fG9J6oqGRVfn8sQxfoCNp8PMyJNqFulXTXSqgax1tF++TjPjXx9dWPUzUReNdquuPdTV50IvC/wfihiAJhvyCqOxJN1Y9i4dL48rMhj8cpuXi8J3YbKRt+QBE0K8l5arDbEYLKMlVAGCcUJuw9lism9pGQmdPeRZFeeBMs+FCdOsyIGtBEnUOfHxGIHRuQTfmxz2oC7FTtZuV25IsZ8nITE00T25CGunNE2UB6CgBz+ZrMihn0UbYojBXMYXerkqE818e/OTBjushtTHr2CA5g0VEDWfq9nNZc2gO1/ExQxfuiHfghwAvHj+HN/7s/xr/1r/xp93/NjP/Zj/Ef/0X/EbrfjM5/5DN/+7d/O933f9y3H5pz5kR/5Eb7whS/w+c9/nu12y3d+53c+w+u6xCUuAflkdDtzQiiO4rJtQzpFr3zTl2Om2+dQejjD4TU2dC2hiHHiDIc/zJVO9o2x+GZWg4w6Q5TLgVBocMi5JINVewbm7bB5/9ypQrtJGEbbKDoIeXfmJ5WAw1cLS5FkSILp2kiDb97pOJs9xoYc1yG9OmcIgDlxxXwJob7k65NHPC7JnuRnq41ZQaJ7CMoAwKqx7ickG8dtz+mpLNb05bFyyNbJs6kobVCvEkLiMe9l0Qmsa2gvTaThbMC4KIeEIgjiFVa79vXVnDHJdMgZ/DAmePCW76KIsRSoiRJZLE0OdacY+nSirCrTzKImDDcPEgiIj0hyRULqFm8RR4CqFVeF79ujhOnfwdlyRCYXwNVBoDNkULTX4PZl+tsc87rzd9LW1Y9LkLYj03tzKv548bGSltnfPTN+5jOf4cd//Mf/np/z2c9+lr/0l/7Sxzn1JS7xf7rQ4i2V+Y0ZCw25q0peOfx4zB2Ws2+eJ0fBiSbawaWCdO3wYx0TVTKd+obvLSigZVfUKG7cZxiWSsxa/DM1+ybaxkwqBtuYSVkhNTdd7PaGZWHcJxfEXTfyuqJdR6U4j+gEXXCp9ORItWV9TZhSoW/JlTBmwMcx0XJBipI2lRZtNDTR7RzIoKdY35SQYkiurqWYsldLG0VzijkOpD1nHlcyVBOSXLmivamLhX0eY71x3zXPWcrnfVZmw0dfhzRBnkB7Bfr1xEmFmkBm2PwJ+tGvf7oS9KbSbyambAsdwLIsnmXdhwldCe3aOVdsFE0hiRTO0yj0t4L2ML4EfV9pV4mWin8X4vmk0IGcrqG9ZgzriZOd4fpp8PWXg8DRVen1xkirhm2VljxVWEoBjBHKbUIHoV0rsq2UvpGSUuuApRyw/viukZhShm2lbCa+4c2v8qv2fJ21i/bgJS7xgsZ05W2yWVJp9tFqozv2VgEz8cH42t/SHQ0opMncP6sPLusyZ7JIgPNxYM3RazbgyLWexbgPAg4/CrovWCg9zDDvNgAabaUMaUqYuiq5GedZ2ODnW847ugqDzceJOTdsNgwsfu1pEvSQsV7CxDLmJ72rR8CcVD+yPgJpNyXI+Lxl9qUK9J+bJSYeHlaQFTUn5lp2zpGEJt983/WYvIJVr2BZEbOgM9IOAyZhOnZefaXZ+HK+9jjGgJqok0tNzfMeI5B44SzNbCSZgaIBXw+n5sKC+hQFTolT3509xrqgIMT65rmZTYnxVHyuNxtEJiFVc/HlWQ3/FM7QyZO19oA5+jFVn20xgo6ClhzPwudcTqc4f5elOmdQS6b18DAOjPViAnmJS3yiwgIcsUC+c6hgqJvxldLCORdma/bFcVYEDYPI1DU3BTwmLPvmcoZtByy9A+ncTr3Nx8XmOrfLpIkfF5unjQlL8ujvY+ZhgmRlGCqnJugpY9GSnK0tvKIw1LylJxjtlBcwBESirm54aD0Bh3erkhloMK8vtbAzifVJdhh+beJq7ioOaAmY+wzlbvHvkATFkK4iOWE7b4XNPCkJN+KZSuCw7lDYD4uSGeY+w+uluLaV9s4jm18S0uSJByAlhbBx0UlI+H/LONvYRwXHzJ0LGP7kgr9pjGpzThAS502G9f585uvIo58HWNZngHWxPgtfsdMZ4AO4wae4GahqIonA5HM1NJ4RTlXIRanZXy5MYj7aIBVBajQ3i/J0deD+OTEMYn+vnt8LGHd3dzx58oTP/gc/QFqt/t7/4BKX+C0Y17/tQ97YPPC//cobyH2hu0+xkXnlQvI36fZKgBD2JQz5XFvPBNpsqrgyGNyGhJhHlHtvmUmFtjHGl6Jd1ykph8dUMupDx/rXCmXvgq5163MyNi6jZFMi50bbdazedkWO6cbnMHVlbheSFMZ0Pm8kMYfgm8P1Qz1DzD1t223H6p047wbaBqYbRbdtWZ+I0XYd6y8XysN5ffU6rEciAeZNdbTbJLB32kAO9fnVrX/W4XdU+IYDorB/GHy9D4VyL5SjVyLSYLqBw2cmysbbkIwJdjkMIl1pIzVXr59uXDMxiSt4pIeAzYdlS1IW+L5sGqWvTsx9r6f7IC/q9FbsfK82jW5VKblxuh3IX+082RwhV+P01OeEtm3kpC4yvMuhTxlKINU4PXG5JTaNMlTasZC+2lEe0uIDZp3F/XSZqTK4cj4fdJT3y5JYLXiA5KAsvDJRcmO6G0j3mS6sTSwbuoZVbez1xC9+/x/j9vaWm5ubv++fi0uldYlLvKAxSmKXi2vx9d4WS1P4XFUQ/I1ezaut83HewlqgzGNCxBb7eDJI52/T2uE8ZQlbegm482w4ORNdE0uV4oaOivbJYeXZoAcdn4W4c3RFdi0GvYQrr7/tt0eKC2kUNwvMPjeSjL+pB1R/qeamgG9H5WIpqoB5fenR+k7q2kM55nUBx7fka3AzQs6wbQOdEuO+9zUjfp/6MGCcWNqlqEH1GRr4ddHbuR1mMZcb/d47XP+R7X3YxjgkHKT4cdabgzJMSKFuAv5SQZPlM2fjR5OEikD/SIlj8uPSqLTB1UieWZ+A3Dv1II3m6+uVlrNXyMVbqSBusKnzecNOJZuTyqOdiQWNIL6TVsXdihFa9tY1vaFjVGTq19z25Vx2f8y4JK1LXOIFjXEs7E6+idpKXS3dwhcrLENAnE+kAkXRVQjf9uK8pED32RSwZ/DZ0Ko5MTSlR55U3u6qmmhiyMoH69ppzIR8086ngKSn7KC5vlG6xtRl6jqTpnDFPQA6my4CRRcvLO1CmDXEaPUI1cKccdVIyd/K28pnXzPyr4Tm3Xl9TkRuvZGG8/oIbaG2gvby5N5Qx+IQ8t7NEquF0GsfyhmnDF+NjXYwt0VeKU3x1hkSPpKOitR6Frtl7T1HlQ4+jCRy9HZilYRuLWDkflzbF+fgTfLMcdYEi7mdXSt6SmfU58lfTqp4a7B23t7TbcMmobvPThs44W3f5MdJ5+uTbGgqIMnbhct53YZEBHQ4+6ARclg5lFNsXl9y7lu9UlIv5J0r57vppCfVqQpWXE9SN44YRQMUMsLwgS2tyo8bl6R1iUu8oNE+HLg7FOfNdPNG695FeR9Q8OYIOy3FSa9F0Y0ha7d3724z5QEYw92WTNvggIV1c1VudWXy/sO0tKPANema+Qxt9uLKh0fwbQkeE0YraXHPbU0YPuAMw5eAPG/A5vWtBKogt2GSaI82ZHOggzGf18j7gG+HieOyviBIt61XXI/XNyfj9lRIyWhFHZhRvB25AK5NFsLs6u1MWxnjy77ZWlbYOM/ZwjJFzNX2bS/Ua0G3nrhzp9QpKtBxVpyP6xfcAblTd5VurihieX5hcISdHR1AoWvFrhs6KFUyhfQMXaG1jOXs1c6mYiXRhuDu6fk+TWT0yteX+katyZP0xMJHE0uLvqVeu4p+yxl4ZGNz8OP0xEIktk2jDYKJfycXoE3F/cfU56XSx702gOQIzgrpORUxLknrEpd4QaP/qktU2FP1Da8oenWumKxEZXEQpGZ07dbs0hmSG1YSdkhL26w83vA3QO8kXAFUCybhlTQf95gwu1V0a1jxmdSZdxU8pine1NcBPthFW1OfPY4N0CkyNG/NHTsssbz5Y9CqAzKs+PXYJtp//MbEZdlbgG3tydCKSw/lI2cDy1OidSElUcylkbIu3CfdAgrDVxOr94R2dPCEOxbPicuoxdth+SD076elu7Uk7lhV3VhQFc6+Zct92rK0NtvKmALevhCw8Zbt1IFdqV9bJOYlcR19NgXGdAN16yCVmWc3267ko79YTFGZqf8T6sYRkvP6chDEZQPjFaTS0HWQmx8lrnxwBX3tYHpqvr7BgTcTKYScBSR80I5C2/p9lt6/uy5ykjg9DauZ54hL0rrEJV7Q6D9wRYxdPlu+S4mKSxKteYtt1pGr1bwioEGob2vnA/w0/sbEpQIM0TbqAm4eb8szKg6EusI9qQY3dcSAh3PiklllYmWuiLEYUzr5dVbiWEimGxwJF+trG8NCsSMfHept4qAK3bq1h+p5w0snTwg+Q3I5oPpydeWMGXkRJF6SV5HaygJGISu05ND4VWNYTb7h7gbnnk3nymdOXBSF4maVSgE8aS3XZU6yRQzdKLoGfTgTi/OjxGVj+FStjKkz8uHs25VidlZDHHhRxIjLKpG4U9iMaAf1lDEx10oE7M69wGZisRHtuZO3N3XrVaQ+BEAieFy5OAVABy+BHhOLy86ft4Q6fRuF2pzfZr2iwFQcYTnz3ArCpJ6cbKU+67oSpuTux3r4TVDEuMQlLvGbF/nknkbzm/oEbhTYKXblnB5OiW6XFydeJJyNm6MHtTiSbN7A0viRxPWRVpx15+Nmzg7mrsekMGqMZDGbAM4ovNqgXTvsXFfK1Il7Rj16U182bmURWZgVMfJ+dhX2z7cOBxyAb4xXMAHdnLjm9RHrCwPLueJpq3MizAcXj20GrNSrneZyRf3gihinTcd4c4bwfzRxSR8vDb0uCX6uJMUczNJWRnvaFkUMsXOlQihsWA6O29YJw49bcaJ4R/WUkF3Bev2N7UwS5ZFCfn5ILtl1Uymrtsw+58R1Xl9GV0Z9qZLmlh2ZLhK9CaSwPrFBoXtWQgqSo+5nCsAuY4PE+hp0/qy4z6S7TBqdt0UYP9pKsb6hySibken93wRFjEtc4hK/eaHFibNphKKRuARsW5HBwQ+1dG4rb3Hcg4B6a2ZOHnbTaJMP5jtNCzhDDGrLMQsDu/KEZHmGpYd1RgE5uoKFZJ+hzEaSXQzXy8G5V+mQ0AqsGmmotK7Dtev8vLILxY6TYCXWd13RBkhZuEwuiOubqKXs5103VGAy6DTWNzlqUU4J7bMnrnX1RGAgh8Tq3ewbtwIkWjJkpX6sCq05urJujOkNjUSclqpnlnKyZA6hTy55NSf4PEJ68AQ5XUN7yShDXaoMLCzvJ8IEEaYt6BWUdaWls1GjZpAZkXcbihhXzSvEdaMtEEW/nxh0d47sG28gd406O0ojixKJPHgLcroW6ivQDZVJWZ5jCgJ7PkI+JupWlvkWG1vMNi0HArBBuQtFjK3D5tPgFIhWWXh+s3EmZL/GdSOtK2+99iFvz2S1jxmXpHWJS7yg0R2M1QcVKwUMTpPQ1kIeKq88eeCNzT1f3t2w++WX6R4yqXmSm65AB7fvkJuJm1cfaFPmtl7DndDfezto2oJUdz9uTxrrl/ZsupGv6Et0d4n+zujvldOTxP4tkKSsNyNXw8j9fuBQt/QfZoZbY/2VyuHVwvg0YWZcvXbgs698lV/94GXup2vkVujvgr+0gbZKLqq7rVy/eo8ofLU+hXt3uM0n7+6NTwRbw7AZuVkfOY4d97aF+/P6pCaOrwskY70+cbUaOU2FLjc++OCK4ZeE9dvK8eUMIugVrDcn1sPIOBVe3T5QivJOg8OgyH1G7nv6W+dRjQEzbzdG11c0J2oVrCTKLtPfGuVolL3y8HWZ9jsqv/2V93h/v+FuWDNOa/oPMsOHRpqMfDT2byTksxOfefk9dtPA+/2W2lao5UUnMo+eBNnCsPX1Ho89B1tjAXLJJyh7Q9eG/PaJ3/bSe7w3bNkdB/a6of+w0N+a61g+KPu3Mva7Rn77K1/l/cOW22HN2NbYyWd1w62Qj8bxNWG8NrZXJ4ZuYn8YGHWNtrxUuXmEtobTGlabE69d37PtRn7dXmaaevoHT7CW4KhC3Qqr7chrVw/8Pz79U/xo/hT/63P8XFyS1iUu8YKGK2LII9WHIHyaz6sku+Ds7Bz7jDpE6PcJkIorT1j6yHE1qDIpFBWykcK1eFZ+wLwik3Csna0opLjsErOlxvwrhGkRKMXh4JYfnTcMA7U6bwdzrlXSUHyY18i8zsfnDV7W11gfGi3ReX3ZicpeTbEgCaVKIBJYPi/lUPhIBr0inc/DhPnfzPfdQQdG8NFmfhg8qxpCdGqz3yPzEdOyjuU5gj+/x8dlfP0hvSTV/92y3vyIP5eBeIbW8GuX+PePTBqJ61gIw9FJnk00bQanhCFoiu/OwsyONVo4EZPNdQ1jfaJ+b7zda95GlvN9mc8vOnctjU13osvP1x68KGJc4hIvaHz9k/f5ej7k/3v7GXRXnOAp3iYrm8qqm9inDkXY6sTp0FH3HTKGZl+B9lIlPZ3QAlUT3eSzI90Vn5vUaBNeKe31Sl5XTjWzmoxygEEbD9OA7DO5NfTakKvGaSWowGo08h7WtXLfVsje20L26sT6+sSDdDQT+tGQfcL2GTk6P8kStKcNeWWCTjlppp+MYVRKM3anAdllUnMx37RtjBuhZmE1KWXv67ufBuSQyVWxK0WuGtMapFfGqdB/NdHtDW0ZNGHF1SfYKNPaWD89Yck41cKqq6QJTu+tfL278AkDyEpCmbbC+KoydBXZJdIuoTtXr2g5YevGVRk5rBPHwRPJ6mTw4J+XJnGNvm1j2584DYnD4OjLITV0Euy9nvxh6PkNsd6tMq2gJVjTWFHZ3a9IX+k8Sa4bV/nEwzYzroWW/Lxp5887jb4+No3rcmK/zhxXnqz63Kj7TH7XFTF87uYixbY1xsET4JAaVKF90JE/KEjzFq+sGv26krOyT4UkxkYru92A7UtoUxqyrpRt5ZtWv87fOqz5if/n/+uiiHGJS3wywvi//BO/yLc++UV+9m++zN1Xrhh+NbF+F8opU4dM0wFeEtb/xIe8+fr7vH13w/6dG7pf71yqZwSxwnTKtCeN8uqR7fURbYn79zekLw+s34F8NNKUOJSO8SqTXzlx9caOLjdu+iN3777K9q9u2X4Zji8Xji936Ncp5a09V2/uMRNe2ey4ffs1Vj+9Jh+Ecew5DD31tcbwxp7t9sRUM7v3N+Qv95T34i3dMtOUqNdKfu3E1es7roeRXiq7X32N4WfWbN41xqvCeNNhnzLSp45cvf5Al5Sb4cCHb7/O9qc2XP+acXxaOL3c0d5UdG1Y32ifHrFk6DsrVr9uDF8RsML4RBjfVG8JDsq6n3jz+g4R+OqmMk2Zh/c2lC/3rN+B1QdOBN5/KtG+buTpy/e0lxNTy9x9uHF9w/c7bn4p03244viZhH26sXpzz9XmwOHU8/D+BquJcpfZ/FpG7jbY62Bf58e9+uSeU+24bTfoLtPfQXlfgMLpKdibSvfmkVdf+ZCX13t+6Z3X2dVCPgo3v5Tp3+/J39BhX6eUtw5cvb6ntsTth1tXsvig4+kvZPLtGj6T0E83Vm/teOlqz91hxfHkck/9rbskkzqOL4F9Shne3PPy0wdaS3wosb4PheFDIdWCleI+pZ9uXP0T7/Hm9p7/9d3XOb6zZfNrmfVXQFqhbgq/9OXP8vBk+nv9EHzNuCStS1ziBY2H/cDb+Ym3vnI4w658zrI45ypuOzK6WjjZoet1E22jFBDyU0JOGevz0rrS3v2fLDmCMFWwozhZeZVDFDa5DuCAHxvcqzTKM+AHdwIOTcRoCc3utRyzi7JG667FeVONwX51mLQcE7bKtJRoKaxDHp0XHJyhx+QivL2hzdenvVFXcVysz9WZErKBlJVWQqsxZI9cSFaQh4KcGunGoYg6CTq6nNKsgt4Gh/5DSEEdM23XhXCvoxAJ6oBmCbX9+fpd3Zx4Poj6/ciPWnKj36fadTTNmIgj/WZQyuwHNgmcEvXYcbR+cSxWdZURLXFdY9zPIZ9bhuLGoL4+O5/3kGmpgzFj2U0/WwjxSqjYL+vbF1fDN/F7uTH/Pvpt8P8o6JiZumAPh1NyG/wzzw7Nz/dzcWkPXuISL2q8fmK9ObF7WLkqxjFR7gNCPXpSaAMc36pwU92KpMm57ReuxvkgWDGmK1vInoBrEh7TYl0/i9hO1875Ye0qCu1U6N7tHAofM4zWR0vx2iWhynqi7jvy+51zx3ZORJ1FXttWYXDZIRnTYhWfD36sBfTdYeDOHbNDJt+W8IPyc2s3C+L6calT2rHQfaU8sz7tcKLyypjemEjrhh6yC/Y+JCdk65yEfQZjb40MX7fDJq+c3GvEkYn5IbhUVdDsm/WiXLFyIeJUlPbQsfr1Qvfgz0YH3JvqyuHeEi8MtisM77jPlnZQV0bbhk1IaC/O+oR5d16v9uEPtjGs0/MMbxJWb/t56xDHbd1o8pn17QrrX+0ou/P66kbdUy3bghBN++zCy/Gd0MHRlTo8Wh8Bud8lpytEkpuujNNbFVk118VsQtpnv4dx3Pod4zic+Ln/9x+9tAcvcYlPTLzXcbgrTlodfHOsgbkuj1xu0yG55l2vrrG3aszWITpmSp0JuwDJHXBDVd069c95KIuluiWHKDdwxXENRYxByHtZNh524cKL/7KWaBsNjbnkBpEnWdQsGvh1DA1WYFWQWsKvys8rZJr5/APivCsWB+QUWoUz90c7111c1rfz5Dsndcx18DCgc+Kv11NpkXzqHnyzPT0Ras1BWLKlMpo5UpYTUs0NEHeOfplawMbXoQBc1FGRAW1PJycEV3C36ZUieeZ65UWvz8nScvY9u2nYprng7eP1jlAsoZNhObkSyBMnk9dNJNkWz8fROn7fN/P6vOqZSeTpBEXjOa4Me6kiQS2o4f+SD0EYVsGO5rPSK8WuKraajSRDm3GuYHcZm5JD9TtXdAFcw1Gd7rDwwD9mXJLWJS7xgsbwXkYqHF9XVJxga+u2bLqtP294aRTaJnTwwuJDAesT2gVScJT4gY8EEioFIq6CriUt/kzugJyXTVS3Tqy11DGL9rowrftO2SE5SnHrm1MbxI0PiQ05ekezxb10Ctm9rrRLi7+V7FwA2LJvonrVPBFIQSzB/lHiso+sLxsmfoVl1mZUSIeMhgCvb6As91BCozBVsEPm9ME6fKs4Iw8T2Mp1GsXAduFEPIGlc+LW6lVF27jxZd7LIqkEoT8ogbRTJyIjkI6Qx+BTqQv46gZPnL1hm3NiKMELy6Nf34QwXvv/1ytFh0jwh/nFwl9ymuAGlu2RnuPhvD5pgAn1RryN2CttCw4XPPPROHkL0oYAYXYNXcvX0GZ0Jf56HcTsSFw1SM+H12BqF0WMS1ziExXdHXQ7o679Tb1dOSLO1o06w6JHof/A34RTg8lCZw7AovV05YoYaZJIXI8SyDqg5tlo69hEw+upPPjbf90YY1ivt5rOor2HeaNNzN5Ytmn+WRtjFFskl9LJKwTwysRmmH6sL508qaYRZIqEE63K1DfaRs6JZv+R9W3NNfNWlaZClZAhKl5dumVH8VbeumEfSVzpinAJTuS3nbcm167wTmJRzmBWlVevuhhnQrerxVtKPl9aN2xrWPbtdUlcItTQc5Ts1W5dQeoSPMwSVrgC1ymhx+SqFJ2bMDpROZ0ryQbtJI7YDAV5uzJqctLuMy8WCJbTWc9xa87/i+MWCsQpoYfidIbuaySu2ZhylEWOilByt84rzHSI72TzhDlrLroEWfPk/cRoD/Mw7OPFJWld4hIvaIhCHo1yFNzT9py43GpC0WPBbgt5Ag7xxm3Z3X2TD97rTUNHl/tZNrI5gZhvwGbib+prnpk9pMnliZg5VWGsOEkoHhxmcVYAoZ5847aVwlrRXYL75BvyrNhhyWHd2WdJ9ab5bOQ+ElK0zLQHpoT1yflZ23OVWXaxvgBzzJlQOsW2RpXs2oyT0D0I3YSjFAELtXXbxmX1gjSjPAibd1z+6SBejdrKKzjaDKIwCD1HC38xr1T8/HXr1WbeTNHKnZUhJJTnZWnF1Vcqsq5oLlRmyXP/+zQKdl/Qlc8CpVPsUaLt1NuGUoVy7/e8rRvdZmKsEp8Xz/H4aH0bV3LPodM4nzcFKCQfBGmZtjZk3VwvUFx9n5DvgngBus/oKrl+ZadI75WTUpD3Q3nlsRTW1pDOsOvK5smeh68838/FJWld4hIvaLQe6qyft8f9jLIj/fJQ6YbGiGAlB0qQSFyCjjEbuWpwVbEp0dSrseWNWXweZNnQlb+pazLMOq+2xkek1FOilYJkRVbV/ZyauxS70Kt5RXVIaDW4quRtpaWOGsK+LhHkm+e8Pt027KphClXdgTfNlVaASjRlJOZ1unU9QpnO65PJK4TW5VifogkQQ/aF/kPfvE2iGsrmM57QwbMbn1+VY6a/E9oJpq1XJlq8wiIbVtPC860bn+2UnVAOUGZCbhImIBelrVwWS1qJKgbK/ozIqy+bS3ERiuqWF6uSVIV0L7QpKsyNSyqZuOq72Pk+dTuvqNsrjpKUwU0Yq/oss+xDnin81yaDXBq6Sn5ezaTB159CGQN1w0fWFQYX4q2aHRXZ8Pv1IOhkVAxKIw9eidZTQgukUO8voYk5FaCrpL7xqad3/MpxeK6fi0vSusQlXtCoWyD5DGGGt8vkbSzNmZoMC6XvtjpDiKXh/lQY2ma1goA7d+FEq2f1A68iXJJHsh+3mCr66MgJsYeM9eKWJjN8ejC0Cq36OlONpKTiPUrx9pb20Tp6DN02w1ayqCRYcZfgFhuopRm6HsliCOWK8HNqU6yveOKSQwi4hm2zzO7LoeEoFtDxcBOWzj8vdw0zwbpE61NYqnhS1NGTnCRvndIEq962U3FlD61n1KI/uMR0Kj70SaFkP3BWuXh0XJuCqhDX1YiEdQojzQlkcuAFnV+Xf16Qdau3X1GwMXM6dk4/WO6noYG8XIAPU2Ia3aeNcCC2BElmF2L/XugoaMk+y4zn2Myruzz6+rxFmmiduftx9lmqDuaWKjZ/J72VraN3AB6mnqnOsiYfLy5J6xKXeEFD1o2claYFxlBKH8EmQXp32DBsUQFnnKV1ZthDbNQhrdN638TyCHICqpAJNfjON+ZclKlXrBdsxBNLDp6OgSZInVcZ2se8peAzEInqJwMKXVK0hAtvby7RHlJHLusjaIMsDsmuXZx3CnmqJAsCkCJIB5bcWdd6gQ7M4rxRddgi9QSpU2pVSBkRW/hGaTTogQKSlNXg1iTWZSQ5aERaVJAjWAcymHObstGqC9RSPFFYwa/NzokpV1AMLXFNXcKinemST35ccr+V5ThyJJnTbMgppOG8XnJA3Vcu3cQhIXufg83fjwaetOJ524lwsWQRu81TrC/HeYu5n9ouZoslnnnPIt1kfaBSouqUClm9arbBX0gWda3OMDVklKUazyeBQUi9sW2VwZ4vaV14Wpe4xAsaN7/zfT51c8fP/61PIfcd3YcON5fGYlVe10b91Ei5cp4Ud4XuLoWthrvRtnWoqW+az6SawK7Qza7B1Tk7043RAqyQhnBSKkq979n+Ukf34CK7dQvTE0VvJlKnmAm5a7TbnvUvF1IVpk3Yb1wpto0ZUhVkVyh3abHhaEO02gbFtt56lGQkMeoHA+tfDc7TyknG0xOlPanPru92YPO/F/q7WNsWphvFegtreAPz2U935waRluLe3Rj2ZHL9PRMkGXJM5K90y72ZuWHTtWJdfF4yyraic+W1LzHjS/Tve/t1fMkYnyhcVwchjM4Tc4i/z9rS6Lym+sTV7suqoi3Bex3lg+wt16g668bXq9eVsp3ousbxdiB9tSdV6D/0FuzpFRifKHrjrThrCXbFSddHN7pMI4xPjfGpry+vKu1USO91Pi88zTSEuPYbd1LO6+q2Mh/2lPezw+GjwrcUxz9R2tedKH3ldDeQb+O7diC+k+4KcEpHfvEHLzytS1ziExP7U8/7h40TSLO3zjTceBGWasVqok3J24DZZ2GoBd8owBTJVclnrVhJofQQfKlllnISNCU0+THRZUR7TxyW5zYlcHKk4mxZYeLHzS/QqXqLybrzLIgU7a1VrD1ZVBtC68TnV9EGc5PIR+c1b4/KKS/rU8FbZvP6FtFXwdQRhBozqWeMLjVg/RPYrjjIolfSpkHxylN7b9sRHcc0OnnborKtp3zuuQURWYv5vU44qXYU2imzlAYh9ms68+HmuZyrllQKZkISQQcQzMsom9drMCZqLmhLWAvEokR7NrMofeg4P+9ItBmseuXs9+m8vmZgNagGA95Tnq9NfYZoY6JJWJ4QL05mWBiMzqLIKOiUFvDG3EZuTZbWaKo+83qeuCStS1ziBY16LNznwZPH+msg50Y/bhoFW6UF9tzE0NVZEaPsHBJfAwRnQ3PekeAyTc2cJxTqFJMGL2jTfJbTGXXlYAXnhfk6wD9PVo0c5oh163OWshfKvbeGJkCD+7NY3A8fVcTw7NCE2Nhtgc4jAQUfocNnXDWEg1MyNKSr5rbjzHcCoQ3GtDXSuqIUR/Q94pmJCdy71JF96sj6+oD2mbtjARxsMDs0p5ih1a0rgaSu0e57ZNVgU10aSzpIidSgHOM+CTQxR30GJUB3Be79M0sgBmfUpyRXprCbhp4SZYbDH2fagNAMWudUg7ZtnlRuo9o74RB8ycvzYVNdEUM6DF9fPoLFc7Ti3x8dnMxtnf/5wuMKBGCrPi/TBHatyMoh/+Ux6vMo2BSzwODuLXD9QKUOH4Tk13PEJWld4hIvaNh7A7vb3lUrhmeJxV7W+HHpkHwzmhUx1o8UMaaz5bsPikK9Ymiwaminy8ZdPqKIUYEajNh6pehqlmea3YXPnzeJ6w+27VkRQ6r4xp3cdVmvBOubr2/tFV5qhXTnycaSoz6aiqP2ZvX5lSePmZ/UPTxa30KYdUWMspdwQA5wRgtFDHD49rYtPK5ycP5Yf+/nOj1J1BYJbLG4T/CQInEFiELEEYyDOaLvmJG1GyDqRxQxyuP7dBUJvmu0wXUbvVoJF2YVbP9IEWNb3RdNPsL3MkGmHOAZxZ5UKA63J5RS8gjc+31qgKzr8gLS1sHxM1+faKxv467GsnkWhr/w7DSRDzMqVbFtKGLEd7LYDEgR8kN2WkNvgfp89qVrsat5jrgkrUtc4gWN1TuJVGH/lm/iqW9YNt/ENGElqoZ9Ih+NeiXotZHXjdJXWlfcDkN88F72uKoEuHvvppJXShJjqgOIn6/sAyigGc05rO4bmo0pdUhzGHXZsfQC7dg7GOPKtya77bASDrc7QCNxXft5u76hKtg+YZJIOicFIU0JK74h641XMFPqEE2UgHC7DFHGco55WEPLeX3pwa/ZMi4A3BUo6hVXNioZ0US3E8reW5SnXWZ3t3KfsqKQ1dth5gmlnPwzWw+MiVYyqRjkip7y4u5btw5U6R5cf7Hb+X03ifZh8fZnWxtGVH1HFqfktgLbQhoaNvhmP+FVVNnFvY+Z5fiyML3kYriuiCGUh0S3m5+3MEpyZF8kCVfEOH9WN3m7bmxCfQpd7+T1BmDZk+9hRhYK2sNpAPpGKsYEi2JHqv4y1d0mtAjTE8WykganF0xSEE2cnjj0/nnikrQucYkXNGZjwTQJdshu1DjPcEK4NIWxoTRZ5kxNcMh5FVJyKPv8ZjsTUjklNBVXhwigQlvFHMP5oI4Oa9C8v+Utu0fadTPEPk2CBThEJ5+jtT6ckdv5hTpVQeO8ozo0PiGu4j6/eQtBhDWkCNSEiStTtME/z6YY11WfDSGyQMAp51ah5RkOL9g+Y717aTk3LcRiG4w3AW4xwe46r/JCJQQJQMlw3rC1E9IxoVYcmBGyTzYmJ0MnWz4b+8h9OjrpGRW/70NwtEK3LyW/91aF6Vj8mamEKr/QZt6cEvMj/0zDUZsqod7fgrc33/djcpkpcF5e73D9ZiFHFc+cKTEeOr+vMY9qqzACDcX5eV7XjoXWabgLhOxWI3h7roiRTkIr2YVz55nrAKeXoJ0uMk6XuMQnKsrBrdRPL4EGn0mKuoNuFYeWT0IXb+laQANMKxLuvgk0GxLk46TBuxp8LiLh8ru4AccwfVbCEPNNqhUj943WZa8WREjB57EcRpJCuNs6R8iKLWCHZGAjyBCggki+NjvxJnnGgsNEwholZkd9clBHgBJSxQEABvXx+vrkkPgk52upzifS7O0ximEdaBHyI6dkqY7+097QeZ5XAr5dZCHWLjyzlNASx8V91Mnh8IaRRm81ugUIpOJJ3SROWECT+WxP5heUeLGIpCGhl2hNXC/wJGd34Qat4nwwmSHphp4k2o1x/SdB+hkwwrI+nTIpdAdTBZ3v/ay3OMP1x0fPu8b6Zk6gAEUxBdV0tjIJEnXrnbPn313DVF0EOJ/djT9uXCDvl7jECxr9rbeNtGORNZqu3ZZD1o08OEy5vNNR7tPyZq1hA6+9UZ80uKn+Rv5QKPcxNK9OuNXeE01bG+2pD+vtoXNYeoAQtIfT07Dh6HWBzcsu092npc1UVzA98QqwPZ0oNxNtXyDOm/cOj9awirfOqDeKPp08vzyUxXpFprO9hg6ulyeDJ2z2me4uL+trvcO3n1mfQcqGHjLrXyl0D952qxu3aNGtSxRh0A3NReD/ds/2b2W0g8OrPiOqV0EVyIYFv1geCutfy+SjV5NtE3D4kDHCIF1PjjSckt+nu3RusVWH5h/frKQnk2/qU0L27mq8qIeMQuuN6cbXK1HVyCGT92lJcrP1zPFTDbmaHFGo/nzKfVpmmmn08+6/vpK2Ezaf93CG4c/31CH+dhZKbn7eFLyrHFqRVmyxsknr5r5lu0L3TufgkUhubQXTtS7Hfd0bH/CVr2T+1//bn75A3i9xiU9K1E0oWMzKFVEBpVHQ7PBja3Ory6uV1Py42WRPNNQpYIGbu9fUI7i1CaoWChZ4e6sPdJfI0obkKKh4+8uVKMwNFSdoGiTcin9OE7QmF0QII0WpwHg+LyLhaxKtx1k9ogfJjlKbYfiWU1SOtqg4zJD0r7m+RNwIX5d20fnUaIdN58+T2SCxM+o61oJfS5rE6QSon1sc2ajZ4eUS15JG8SSQQgHkmM990cLSjpvR534PhDY+Ps4h/EmAU1SkQXK2MYXIsJ3vp/pzzPO/nwQ9zvIpnBXwA+zhFay3h3WctQ5Zql1njoO3Kh1eL48rw/g8SVG9xvqk4ioj2WLO6iotYgZTtEdDzWU+7v44MF3ag5e4xCcrplcrZKN8tVuIqA7lDgHSEF+ta6X1Qj4EHP4U7cLqdiU+7Tds7Zp8VRKdhZBqwJQtCfWphHZfoyXDJC9v82Xnc7PxiVGTuR7fugXCLnuiaVCOfr52lRYnZVsHEi+8lGbQgWVve6r5eTXOqyW5J9RJ4rwwqVt72MarzBYcsnlTz3uhNGFqRhUXe01dw8LqQ2IetojHkmhisFa2qxOSjcOmY7rCof0t1M8NP/bKSJ06bHxSr/5miP0shEsQgDcTed1o9x2yaliuwVnKdM3nf2JO9DUcqTiLIJPMXZOjqkmzLxZCS4INfu91UOdw3Ra490qpPCT0FAjOlSIbfz5imaJn/7W8c8FiXfuzpnNkoeYCd8XPGdddzVGPLoDs67MpYaOTyL1NKIj5sVb8JPW60Zoslf1MQxASNcHd/Zp6Gp/r5+KStC5xiRc0hqdHrjYn3j89BfKSuMpOlrfi1pubAF5VWilA9jlSgDbSKLSH4jJPnWEhfjoBWCIf/DipkPaJRgez6GqIzuo+091nysHnV4jDzVk5bL4lownudnuYBX79s2ww6N09N/Y3CA8uId6+HzK6EijOZbLOS4J2723AfIzz8kil/dH6bFfodkLeE2XKIzi8BRy+D07YYvwoiPlxu9XgCMWVYJ9qpJPQPYS32DGqDHMCrnZON5iuLZQdPAmXQ1SZCPUl96Ra4PCruP4Qjk1RjeajkI+ZuhH0Spx31rm7sw7JycVBJp/tT5qBrZXceyuunhJt7cLHrpYijgIEbO0Jfva6qtUr8bIT5EEYb8Th8Cv/LC1O+p7nZY9tTdzGpnn7WLyy1x63lAmbmDQGOXlttJcml+YSL80WA8+H+O7ermbJ+o8dl6R1iUu8oJGzsukm3l/4WY8SV8g5pbUw3oTt/KZFYshLC1CaOPx4EOfWrNw5WCXk8pIrgZPcuiSdEm2r2Loig5OGq81K8kHwDf5PNdwiZdUofaNK76ThSc4b8tZo1wSh2Ssuw0EQs11GuXPvqLZt2MaBFykZbRS0y4FGm40fHyeuWJ96uzQLC49LNGMlezt002hbw7rsG+hHjCTrtHYi7LrRvX6AU2ZioNsl9wM7zK2wEpB1n/XoFditW4DkfVRPFeToihWkSFyndObZJeeEpWOi/9AV4qUFHUBCyMQEBhiv3QctR8XlPmjhKB2tSmKmJNVYfdWlkqycE/ecuFq0dNMhs9o5FN/bfv55VR3R2NaKpbQo8s+8sOW889iu89lg7oLHFYjB+Fv0Zch9Y9qkZ/hZ8wtDfwunpa/58eKStC5xiRc0Dg8DX5nnUetISHPiOgWBVIBTog1hfBiJoW1cVbvb+S89yTNv6tY32pVhJSPN3E59L8guWnEU2FSHouezf1Sq5zfreWNclDOKMoUiRvfwiE9FyASt1K3rBXTtc5Oy8+E/BzewrIgbChaHudcrF+RNIRhc9l6tVAijRSBZWM2flTOKhbbhCsYrI6+rb87R9sqPEld/6xJU9unK+vUT2iVuDx2TQEckruNM0PbKrd4EqjEI3iZemVmGsnOkY9tES61Xr7iGButQzsgF7iTaoPg1maB9KFNkr6D1JNiDa0mmETqLClEdSo6AXbkiht4l7PRIOWROXCt14E7RpeqCMwFZLLsNS6jx67qi++w6xbNj8YMn+Fn13lL4tE2CzeCeGYk4CnZ0GSfJbgz6jJrLBP2d0p4TQ3dJWpe4xAsa6Ss9U+mwVbyxr1twenJsSo4STAfnDGm04lg9UsQ4ZZ8jPVK6cHPDaAF2YSF/n+keHrXiLFGt0MKdtl4pbR3KFPvZwfa8MU4K1rxKcyWIvMyvljd6m8/bYIXDuKeyWJbYXEkpUHze07a+uS1SQXOFRKyvj7bZrIixOytnzP5RTOLzvxJ+XH53IT6vv/N7cHhZOI4FzJU79Mqr0SLP2tJbCpWNDqRXryTTDFmPNuSDMEWbjnV4YZ28VShZg+/m3KfUzomW5ND2+rTBtmK9hCKGow9lni9O0R7eKvq0QXK0o31U8mp5sYgSqRh1HcoZzROX3EcbdePGlGldUTF/cYGzEokJdoj1XSu2qbDC9RIlUXikiHEfCS7mdY8TlzyIw94v2oOXuMQnK9bv+Nv77tNKS66f53bqAJncO6ig7AT22RPLjStOlL6hJWMPCc2cZYhavKkLsK10q7ooYlhy9YM8H6cJS8lJo08mpChT6l2ZImDui3LGPmzqb9zmQ++To/seKV1gyZU4tkoZqqPtdsl172aQRH00G9ka+tSV5GvqEXPFhXyMob4mLCfaYK6c0TWm7Iq9XaDW0uiztpZBOiX16lWCOC8g3Qvl6NWhPGQOH659tpbNXYVTdvWMdnZKTiPIMXT9ipI21e1CAH0o9HeZ7gGWpJ6NtHb9Px0TmkKPcK2+2e9DOSNMLdsg6BVI16CHiizafd1OSIeoOA1OCPoErzavG23t7eASLUDRmEGmIDEr1Os5wSfKzhVL5mRTX4JUFNYWoJ2MWLT2DoTDgIv5UrzanAyqFCz5vE6a0N95RTY+ETQ/q+Yilji8Ik6+fo64JK1LXOJFjYApL4oGKftcPCDpPo8KwmkoYxBOv9XEtf3ElQosncEZZ4iyHyfZ7UVmJQnkDI0WcVVwVfFZSygazACBBcQR6DmtDiXXAtPmkXoDkeBGT6KT4TM3Hq1vhmSHeaBUC0i/k1FbD2nlSWNZX/N/+3h9s+K7E6sjER6S24gEN4t8VoYfbxy2rQhyf1Zxt1npIlTKaxMnCHeu9KDmppMWOokOnw9l+hCDnWdcmnADNJwbRUDu3SzR7wWjswAsAVWox+KYlcfrrY41mUnOooKdZodLJw7PyiFpjGVVSKfkXCvM79Fg6OTK65z8OVoCmRL1UBw8uJhE4koco597VoivJ9eJXBQ7ZpWWyb+zEu7XdnxW5b8Nhj0FPV4g75e4xCcq8gm6nTmhc5g3B8VKqBpkl5aYFbZTgTTMGzgLh2kmJ88yPGnm4Kw80fhGaWfZoxq8JwGxkEdKPlivXXbFiexIjlRxU0p1ZQoVFpVy6UMRo82tM1eEkIGAVMcGWs6bcGqENFMowYu/+WunbnGSIUUbal6fZic/pU5pfSguHEGzJ+BUgVPCkmI9Pmfpwpyy+HHJCHX62KSL+Fwt+73W0XlZsxTDrPjeikCnSDaHw48Jv6i4lsmBLk1BCo7MzObKGaEcIjW5QSIs0l2E1BOhdk8XhpsZIByg519hLUNxzUQ9JixQj6nhyiEjEGooFg7QOsqz51WgsVAVKBocN59XzS3FJH4cIcVF3E83DGXhwhH8wjZzusrZxVo7V+V4nvhYihg/9EM/xA/90A/xt//23wbgd//u382//+//+/zBP/gHATgej/y7/+6/y5//83+e0+nEt37rt/Kf/Cf/CW+88cbyGb/8y7/MF77wBf6H/+F/4Orqiu/8zu/kS1/6EqX8/efPiyLGJf7PEN3DRxUx3Kqjbh0FmPuGjony1Y68S4vOnxWXZJpnD2ybVzG7Qt6nxbhvJp+SjboCvWrk0tBdIe+yq6WPfv7pSXCTekWKE5Fln8m7aG8dXctvulJv7d00uu1EO2ZsX8i7tCgkOJnV/1uvDLupJAx9KOS9GwtKjetdW1QPDocXBU6J/HBeX+txZY1H6xMzV10/Zfq3C2Un8XmhsrFWt683WPWT3/BfG1j9SkYLnF4O6PbG0JUnGufsGrbPrN4ppJPRNn5c3YZ0lUEKv668SwsFQENdvW5Dbim0+NK6eTKZEhLK+IviRI1neGXo2pMICnJKpENaiL355C8bp9d9Dua9QG9hzs9HKuTJqGs4fKohm0fHHXK81ISC/xSmm1dKW/u10wQ5JXcijtldmoAM09bQjcLgyiEcMuWrxROi+j1rg7d761aRvvH6a3d88BX4xf/7l/7hKmJ8+tOf5k//6T/N7/gdvwMz4z/7z/4z/sV/8V/kf/lf/hd+9+/+3fyRP/JH+G/+m/+Gv/AX/gJPnjzhu77ru/iX/+V/mf/pf/qfAGit8W3f9m28+eab/MRP/ARf/vKX+Y7v+A66ruNP/ak/9XGWcolLfOKjbrwllid/U3YDRJAuecsqC0aoDwxRkU1xHDhJduMqC3N1JtWc2NuifROCsymbE3tnxYzej2vh9SQnIYWGnOW2tKKkGhrq5JZ8M7MQYtVoE1rnVVeq5/PK5NBsWTv8XkPlguYqGOEeshgvalLX/8vON2MwFwgWR/7J+JH1Zd/wtTFTjcL00CtSLeLQ8Gywcu4RnQUPzUhVsJOvn+4sxksyLNqTzCK3JyEVw6ao3HqF7JqCOgl5Fj3OkDow9dagZXMR24STv3tDSoAzRqcOJBVS55YnlqOqCe3Ahdi8j2opWr4kluNk8ueTa1RFkZxsSvPIzbl0QBKh7PxeSvLkKCXuZzHMDMlRiVdZnnXqwDpBSzhwSqhwYOfrGKOijvt+bIVqS9PwY8XHSlp/6A/9oWd+/wM/8AP80A/9ED/1Uz/Fpz/9af7sn/2z/PAP/zD/zD/zzwDw5/7cn+Mf+8f+MX7qp36Kb/7mb+ZHf/RH+fmf/3l+7Md+jDfeeINv+qZv4k/+yT/J93zP9/DH//gfp+/757qIS1zikxjt5YmUDftqT4mWSzl6EqniMwpvoynazYaKyVFuMUuqk3irqZj7SQHVEsUe8XDwamr2rpC+oRiTBBw+zCTZA+pgCls7CnD+vJkImw+eMOspJIoABj9vsxBUDV4PDdootFnGqTdMGjV5nzEfQxFDAWZFjPBn2hAACVsQe95iTNTkMOsk3i57bBA5r9Ek0ZLzmPriiL7jume8Oc/U8snvLxLqGTnEhbv4zEgC6RTIP1xRXzcBsZ9nc/qIqGxAEq88nlS/lkACyqr5DHFKcCg+J2xg83rFsJVfP51v+GqhiGGuCpLGTNu4Gag/R38+86yS5KLAVp2TxeCqGJIUk4LdFQfjjHjfWISWEjYE6lO85aknt2tJsb6ZMG7FXyLaVUOreAdAJSxvgq6Q4OF2TTv8JititNb4C3/hL7Db7fj85z/Pz/zMzzBNE//cP/fPLcf8rt/1u/j6r/96fvInf5Jv/uZv5id/8if5xm/8xmfahd/6rd/KF77wBX7u536O3/t7f+/XPNfpdOJ0Oi2/v7u7e95lX+ISv2Wivxm5Wp94//gELC+OxeUQ0/BHihjSh3Gf+Rt1nmcvo6C7fFbEmBMXydtd4UYszaHzRnGibQARTMBCESM/UsRoArZygq+KV3NySJT9jEBMNCn+Ft8FP8tXRCESAwGm2Dmggc4Tq89HoBHnfayIIUGYDRSgCdgu4PqxvtmxV6uDM9rG0E699XV4lu/VMA5DhxSjDoK96YoYeefznkURQzKKS2eZirfsBvN26+mxPJTD/0nm98acG1Ye/Li5XShBupZsiBpWk8+kuqhUOqN1Z7RiiYzj9/1rKWJwVsQwr5odbt7QrUP3pT1KHjFrnJUuJPscUvsA2uh83rPRJysX7YVQ4O985JYmny1Kje/k2lGfzIoYM/qwngnict9j9Teh0gL4G3/jb/D5z3+e4/HI1dUVf/Ev/kU+97nP8bM/+7P0fc/Tp0+fOf6NN97g7bffBuDtt99+JmHNfz//3d8pvvSlL/En/sSf+LhLvcQlfktH31de2u75YLsN7b7gPo04pFuhboTxSaWsKvFiDpLcLkS9fVXuQhHjWhfNQBVjwk2sZvmhRbvuSmHjatyla4z0rkP4GL4eMGrWFdlW+r5yygP6QVoqn3xI1Cuj3XgLjk0oM5CD1+RVYHfndiLz/C31lZyMOgmWZ/fcOSkkqpgft3YX4NF6h+u38/oWwmzvVRfXRr0PvtPuEWzeMq2tvIraVNZvHrBj5vTOZuG3uWwWtJYD2GLYdUUBS25qWA4s8z85uSsxYbS5GEm2Wb3dk6uMXvGQDZEGmlyh3cTRileuiJFOM3w9EojgUlfR0pyuvPXafUUou2hxErSGzexE7AhD3WfWX/YE/9gQVMFfFNaKpbPkVX7sbJwsxITlrIjxSDljTvATxvSK0a0qowoVh7nLwzyrE4YP4NA/H1HrYyet3/k7fyc/+7M/y+3tLf/lf/lf8p3f+Z38+I//+HOd/O83vvd7v5fv/u7vXn5/d3fHZz7zmX+o57zEJf6PjtOpcH8cYk4TFh0j51ZX+Bs9VlS34ugsT0YWChbRRjz53EGKLse1lS2tRIn5i3aujmDJ3BgxZhRtgGf8oeLz6GMmFOaHlmyZeegJ9OQzOAKAoYPFJm6Laj0KMiRHyCVDzT+z9T4bEsOBC6MDAub1mca19UYb5Ly+U5BXTWjbmMnMyLVpFnANzlXzGZP0UUmohMq9keJep+qIRIuOZ9sCWbHB7+Gsej7P9fTgjs/Msk/DDEUPaH/yKlOP2SvMsD6x6lUTyakASIA6jEVtQk8J61wVwzRg/CJu+TL7ko2QxuRaieGWvKAW5xlfKOjrKcSN8dlnEzf51KA1+H1y2oURa5d4jkSlPrekLdCMNdGqz82scyBNGqPVG6jCJM/3c/Gxk1bf9/yj/+g/CsDv+32/j//5f/6f+Y//4/+Yf+Vf+VcYx5EPP/zwmWrrnXfe4c033wTgzTff5Kd/+qef+bx33nln+bu/UwzDwDAMH3epl7jEb+loLXOs8SM6b7phXCiVJXHRXCndB+txHLZYSKQAx80OxxTCXDAsLlIopYdvepqiDRYtRpHZ1PFRK3HyATvNZ1gSYw0thjBr0Z2PsybnmVDxSkJqrKlCMiEFb8gMLAAgVrx6SXG9KUAAuhyHJ62MW6O083Fub+y28Sk3WuebuLc9zyg4Zjmsl4yhNFRhF4AUzZDr+Zqp/mIgyVwWKWDzFh5hzlvzxDqDNxxir1iXA4Bxfh7O19Iw4wyLlABq0CtqIQ8VlbU/T6NNgkXrjs6W+wAsJpUyGgwJSkNKrLfM4oEsyVjGmLUFopPsiV1zfM6j520lORglzquGA1PGoA0EdN40vpNphs4LWow0f9dGI88eLR8z/oF5WqrK6XTi9/2+30fXdfx3/91/x7d/+7cD8Au/8Av88i//Mp///OcB+PznP88P/MAP8O677/L6668D8Ff+yl/h5uaGz33uc/+gS7nEJT5RsfpbHUWFclOoK+fX6EvKuHa7dwmZonKXSA8dbQAbgN5g5SaEzcqSrLr7IHquxQm9ncPNBaPtMjJltwN5gDwmbCiknNGU3CDyJaXuC/mQSKPQ3QnllLG1IDmRUsKu3VCxhZKCqAvs2imja1evsM5gmEBBpaDVlS7Kg5BPCXofltROaE/8vOM+kw7ZNRIfIJ8StupIObtqx00jPW20eX2n4HIdBb3Prt2UBNs2ag96cIh5PgndDm//rQunvPFWbHGVjboS2iGRjkIOuDci2H3M4ZKhTyp1DQmjjW68mG6Ftsnoxs0ntRj6tDJt3HtMayLvE92Dt251nbw111uQ3XBU49CovQsKyzHu+4MDboQwa3zqlfP4aqU9BTu5mWR3L5RTijU4z40mjC836jXI5K3c/lYQc3DI+FKDTaiG9F5d+XdN6O8Fgnw9XRl63WAwX98mUY/n+zO8m5Es1DX+zNdK6xTdOFyfHLO/54iPlbS+93u/lz/4B/8gX//1X8/9/T0//MM/zP/4P/6P/OW//Jd58uQJ//q//q/z3d/93bz88svc3Nzwb//b/zaf//zn+eZv/mYAvuVbvoXPfe5z/OE//If5wR/8Qd5++22+7/u+jy9+8YuXSuoSl/hIlHcLssukzwpiil21cOcVpAcCwt1/6OrsbAy9MTQ3R+LNiguThRK3QMDiTdVV34fm7biW3Gpifvs+iW/sBnlrjG81ZF2pJaFJ6NRnHoxCOzlyLG2M+vrob+xjwjDnZo3n8+qVOoR68Ld1i7YZxNv83NYD9MZFWduqUouQslAseEcnQY8glklXxvT6RNs0apfQLHShuIFB2id0TLDxudoCcsj+90W8StBdZrK1t1evFFs1Wg8UyDHTSxaAhl1ePtNWjboKcvF9olvU291AUlXhuqErhRVoVnTXUR58Xqaj0CpOCq+2QNaBIBTrst5OIR2EEgnUMOqWELBVWjbkw0R3H0jOk9AmsObmi1KCuyeQ7z2x5VkUV0GuEqYOhrEw5MxZKPF5aXSEYOsUvfLWpGV1z7KVtzbzXhg+SIgm/z6iroq/CRh+B9MN2MNvQqX17rvv8h3f8R18+ctf5smTJ/ye3/N7+Mt/+S/zz//z/zwA/+F/+B+SUuLbv/3bnyEXz5Fz5kd+5Ef4whe+wOc//3m22y3f+Z3fyfd///c/1+IvcYlPesyuxeUg1JwclZ4dZYfgTr0S8OMpLCdyOrfOAs1FNjhI2KVDOnqrR1N2x1kTdGVM2bUH8+msupBGgSpnU8eV0qrPgpY2YPVWGlPCzFuP7UpjcJEWm/l8FMjp3DoC2sZbhvkgZ0kqPattaJcWXlhbBT/p+JH1tXBoTi7B1GpaSNmz1fwC3175kMgGpbXEqHOrVehunSStRVwjsDOkc4JxtbTIUqVjnFdCT3HQczuyf6Q2EtdsxZ+d9Oqt1Meuwo+OS9UrmbYxHxC1WZ7KkZ9tnRb5ptmcOR0kpJkgd402ZNrkMPcUeon5AFmENgh141Y2Ogm1ylLZWX6MNvWWJsXQQf3z5rmXxGzukDBlmVcyNJ/rVTDJIQTsElqWHW1KAlZKv544Paeh1sdKWn/2z/7Zv+vfr1Yr/syf+TP8mT/zZ/6Ox3z2s5/lL/2lv/RxTnuJS/yfMrRztYdUgeDqkEDXDTojdQ2VEj5RLBwkcBSgFedw2ZUuM5Bi4c00Q7k1xxzDkWOyMUhuJOkw7hjGjwkrjkCzQV181WTx90oj5C40/oq3MmVTaalgyOKlNK9PphmUodhW0RUgwTea/atmzbzQXLThzDMTC0RdzK9kTN7+mtc3z3dOwvDVvPDRnHPln2WDouIkblTov5IY7tzpuA0BrxfFimLrAFSoUwP695NzlMQ3aC/q5iTs1VI6PXvNVbwisiQgnoBR98uSOlMZPJHZEMlAPXGTOBtpRimqk+CozyD3Xjt0fTkOWZ73rIJCg/oyzg9b+XMUy2jvOTKfvPVaN4ZeBQVhft4SqMeYW5WHsGCZnZJ7n81ZoD5NeJZeIL42hsb1Szva4r/18eKiPXiJS7ygMb5k1I3//8KvwRFcbBrueniuPiSG5mUfShmDMRXBugqdhK2Jc29S8L1SdWJv2xp105CuOSkWwEK5IbkkkU0FWdnZ0BHf8ArzLMOPSxlqr6S+oTafN1F2aaka7RizkSTolbcz/bzJN7sqIE5OtZN7U81+XM4z+xrrqwWN9bFqjpLMBcsp4OsxKyK5PcvgG2i3nvzPHwaw8kzyd1uPgJiX5rBxCkg6JxqgWca65Ki6tWIrSA+ZbudqJvngG3fFW6eCt26tM2yfFkmqmfNUR3G1jNB9dFIyZyPNks4+aDvBmjEdEy37ln5+sfDnk8NhOE8OyV8AFWulSqD+TonuNi3Iyim4afQxk0qhB1mjKp4taizu59ohnlZ81mb5DARyOxm3xWFjZLFF9eTjxiVpXeISL2hMr7ptiHzQncmZkbgaTp4Fb/9ZMdLx7DmVJ2gqro33uK0Xn10skccgxc7q7eqoQn103AyvL3uBXWa68erEek9cDtLLCyF15uq0rWDr5JXF4/Pu0mLxYVloK3Gppc4WArJl35BnLTyZXXXBDSyHr7G+g8A+M137+mYdPOsUHVwdnYDCL+oVAKvGMDgRdtx0jE9w+Sv9SOLaAr0nQp21EENjsBwCyi0OuqgvuevznNQz52pnTrTaG+2qwaC0nPEd3D8PvHKUXVlg857liPZac41FA7tzXUVpQn7IjjL8yIsFeOUM0cHcJ6x1MKi3mdfN25W5wH04WR+d6lDJKM0BIivFVq7YkWomPTjy0OYXAfVkign1yqvnWX/xGedlgbu7DfXwm9AevMQlLvGbF/npyHo1cj/dMJNin6m4svOafMjtkGrIsYnF2/OYkH32Tac8m0DA36pdjw44ZrfQkHijDzCAzBbtJyCFNfxV2HfEm78CckwM78mirqGpcyRj0d9w3qJ4C3AS5FCwpkti1VDESA/u0vyMgWWszVuAvpnLPjPshXIEJDEJYVvv0Ou6UTSfFS7S6MkTnKg7njokK9MKpjd0mcM809rj/HkQorthNf9Y6QIz6lNIRanrSOpkOvOXCdkHKXwNusVnS2viuOR6iBYtz9sghW91UWZnpg4MzQWBx0QbHP3nztOZ8car0Y8mrhSJ2yW5hHotniMH9WTcKdpnB1XMMlZE4jI9K2IkQ3tvA6fgcBVkUZvXQdFrJ7DbbGAZleQ8PJv2axiPz/VzcUlal7jECxpdX3m6PXC/3biL7CyHM7kC/Lz5TVdGWlVUWDYoy4AF7PsuoytDN/5mz7r5zCfekNNjRYxRXLF71ZC1ulSQgKUUAAjAPHG1ABawaeS+Uu979FZIOLLQTtk39yv8jX5znjWR5FzR3LlhpG7jvCvXDdQqWHZkYj5FRSh5kR5irc49MiA5QMFnV4lqDu+X4q0t3Ri2y4Cr3M/XgcGoK5eu6pTy5hGOifrVYakKZe8VUmvBUyoO9zYDu8v+XA4z4MOVLtopI8n8XgNCdkh/zP8sCTKdFTHmZ6Ib50OVe58XalxPi+qRbGdLEFGsV+p1IlWj/yA5ECfNzycAIuvmrT0MOWSGr8bLikVCEv87gLp2aax89Ko0H53YPVlCkwVHS6Az6sbIweXyWVhUZzfC9NTIfaW1s4Hl7HgtTegfEqf8fP3BS9K6xCVe0EjJWJVKHnxDa1pIY/a23gjp5C2qSaEUpUml4u1ALZ6w8lHoDqAjjClh/dm9t1lx2Hy4zZa926mP4m/Luaushol9S1juQu3BARImCevAench3m5P3LeEDgUkNryYjYwlYV3MuJITUqcclcwpeFzF16e9J6JclLFvaJed1NwcAWfiiaMNSllVhqHSJrcTmQf/UgnZBt+E9WqibCqT9LTqCMp09BEVllyQNkP31oGXX7mjHgvvHDpXzhjPG620MKPcGPb6iVKUqQ2udh6bewpkZsvZk+/Q0GxUFdKUFnSkg1vEk9sQzySIv3rM8JD9eWQJQnJCOxe3RR3CbskJzO2quWfWVxLlYO4YHc9HeyUPDXp/AZlST3o7udxTcoDHWEIRQ7w1bD0geXk+qXkymkqYWaYgVF856rO7P8/MRB0UUsUonWKh4t9a3Mu9f3e3v66w/T+IXHyJS1ziH1KoKz9I8irAOp9dMas5VM7SOeDHFQ2/prRY7LmM02xG6JuThGWI9gZJyEdbrErcQgSSuCeVJAsPrDivPkpeBiJGSS4TNCPsHL7uKu4ymwCKhaFjwtQXnUavHE1ddorogiUcgKAlVCkC3p7HUK5XV+LIol9zfTkExLUA2ehKo3beerT8SKE9kocl6FW56k+c2nyvPRES9yRHhWSDf0bXV8a+D0+yBdQXjr2C9UJK3pZtvaLFQSaLckV4Z9H5vZFQ2miKIylbtEmn+d4Igj87TYpIPOHOFtPPmSqQxvm7EWsQo+saUyTG5bgp5LYErOAtZEJfMap1mY+r4sjAgqM0O1AlHJ6jJR3WMszfyazQidvEzMdVKAcld8/3Y3FJWpe4xAsah3c2/MqHPVXzomHXrtRbNUXQXmgdsC+cBLyD6Bsqa/VjxowdY5M6CJYy2sSV11Mcp4Ccq4B8FOy+UFXY7Qtavc1nnZGCLDxbYVgq1CbcTYk2OrpQeiOP3mokIOwtFdeim5PGKqR9poSFH1Q+rGY5AABMEklEQVQ+CnZXqFWoxbDqrcqpE9o+FNejdWV3mao9u0PGqttxjMVIwUWD86ZcD5lT6pzvNBj1+gxJn1uPGIwPHe/c3riOY3L+mJj7P82J1xOCMB4zo+HVyVoZVUhb3FJlhDQlquI8qE6dL7dVJk2uW7jMrbLDxjeu4ShFXQJpwG1S2nzNrsKhjZhBOXmcUIcnwXRtC5oSfHY15UxtAn3zasq8nTwnT1FH9tlBaIPRblxBX9dCDU3GNMV92gsyZU9AMVe0FFwvAe28GtVscNtxOjk/a+bO1Ws/rhyEw6uZqb8AMS5xiU9UbH6xIx8L+hl35pVNRZ8qp3Ui77K/0U/Q3Sbkg566dbUD2VTSUF20dBTSyVuK3YNQjpm6T66KcNWQK/fsarmj7f2tu+wctdfuBaQ4Iu6VyQf7tx3lPvvM5V4oh0zdJSx1pMHQlydvJU0d4CoYrrqQqdvkhONtI20nMEFrRwtS8XxeJxO7y297ZYKhUe968r0DM0oksPbg66traC9N2Kphdx3lzudHTNFGvS200e1ZZNWoQ6Nt8nId+ejCwtMHHR/mJy4z1Sl2U5k2Qn1waaayj5brQZAPO+oqO4/pZqJeOf2Ah471r2XKDmpc83Tjcz97MjFuHRbPPrN6N1EehDZkpmu/NxaGlHWrtC7sTPbna657V8O3q4aVkOhQf1k5vd4YDcqtX395EHI87+kmUTuvssZXlPGp86y6B3+OaXLHgONKYW3YtjINibqJa9/556XqxOvxVWjboEh0StvkxU05jTC864jIKVRNZNXQQTltMu0+UzdCO/3dvv1/57gkrUtc4gWNfIL+AU57cX09yW4t0iltGyjoU2I4poCaOwFZya5UMA/MrxU7CelEWLk7wKGFpIJl7+W0jZOM08nfrsshYIHmorM5K9NKqSpuVxGbeDl4y6dewXTjcx9dG1NupEMKEnB83kwyteJ9zQT12n2c8jGG+kcAQYvPQoTgHSluA2Kh/rFo3RnNICdlGpS6deDEQpg9CukktK2gWyfWWq+0jQMaxrBwkSYM7ybntz11eD3ZsI3SQpBYozgoO8GOmXYl2MY/M3XqLcjeq8ylak1hp7L2dlkqRqsS4r1R7cyI0JMs5Gznr/mfFxygkU8CKdH07KZsK3UeV+f+WdWRMxTO5OaFmN5FNVWUFpYh7nHl15WOyaHvXVRzq+b3Pco3ifsgk1MMbGAhfrdiDsMP1GeavOVoKTnQY1CH+AO8UmkfnvGkHycuSesSl3hBY7p2LlMaYfWeUHeF6SbRrsPraqjUU6Htep85jDC8L+hDwXJBe6M+begbo7eV7jvKnW9S/QeCPmTaKiR21kZ7pbqt+21Hd5f8DTySUv2wMI3ewuLJxLhJpIdMuUtR/eCVU9ct4rD5tZFp31Fvy1Kp9B/G+sp5A9XXR8yg3nXke/+8VB2Nph92tGN2P66rSt34fSi3j447CPm2MNVYX1Q+khXbd6x/JdPdC/VBmK5kqTKXCukzFRC6v9Vz9YuuDrEfi1euN+E/9nJDn3rbUe4Lm191c8rpOjNdJepNo/Y+gzq9qoxPAwG4E4YPhLIrXnVcN9rgFdL4VKnrqKIOflyqLlx7ekOx64psjLoqtH32e7Pze8gHjrwcXzZOb2m0+sT1D28m6laoD4Xu1v/N6j1PItOVsL9p5FVFszFuEnWXHWgyurdZei8xXRnTjSJbrxCnTaLus4vnhvXJ8HZBi1dTdl3Jm+rnTx31oXd37Li2uhM/7qqRrid+21tf4dffeT6n+kvSusQlXtCom7OFxiypZEXQtZCy0ncVzA35tJsrlZB9Atpa0CdGt3JvkmNN6NE5OjmOc0UM/I19qKzWI7uaaNGuAxZSLiRaMUrXsK5R1VXAAUTdeyofBCkgLys3myP3GKfJZaV4pPoAOMrtCvJqImdlV71CsYNgIRWUD4AmWueIQsnKZLJ83jyXWSqQYpS+IckY+soOQTSTjw4CsCRon2ib+fOMN27uIMH+V57SHQSdoOzdRkRXXknloZGSkpNxnHy2Uw6GZv/MNiTQsHBZNfcgGzvYERVuPLtBUJFzddIJqaVFjLYczN2HG6Tk1RsCDUPHDpvJ4ydvabYNZ9Jx3xBx/UHpYYrnY3tfQzm6tQ3qIBvpmvPJwOkRD5n0odA9OEpTByen586lrBS8mjqlUOLwlyodwDb+nexKwzqfe1nx6j6Hyof2oBuv2N9c33M/bJ/r5+KStC5xiRc0xtecIVw+KGhUFWkUyl2m2sDDzuFXsoKW3U5+VsSY/ac4Jk673gm+AQYYzSHxefQN3zX+hNO+cAAMo22UkzncWaLqKQdhNJi0d/5PdqX4E4l6BZgb/eXm1dD73daVy7PLRI0WG1koYqBgp8TxofeWnRi6UU7C4uGUj0I34rMrFednSaxPz+tLk7cAaTC1wWcozUV+p2tCVNjbhWXvgJTWBFaN3TAg2ThuEuPXu/6haz4K+SFRpTBNQhqUVpzRND2JpBtr7e5d99Dnaw7vb9vESTNdOfuLlTsnhevgUHUZ3CYEc3i79vESMWam91eOBO28fasbZVKHv5dDtN+AfOuVqz3xP6h3AzK0AH80Rs2uPjKKv9zcZaZxjfWhF5gNsmLVFUpms8YZaNNqGE0G74xs6Cmj+7NyiKVCnRJTUUCQa6WtfQ42K4Y4hL8wqvD/kc8y3l6AGJe4xCcqyksnNusTd/XJM8TisvOZkubkyudXDduGIoacFTEIRQzbFVdUKOoaco5FhgdXkZBQxJBj9jnXTIrNRhNI+8zqXZ81WQolCUAGxdaVGoTfdEwMXwmzwr1/ls2KGOtGw0DyQox2xQ6BfUEjCbJqaBeK6fd54QDNihgVfONcNdps8LjPrL7qArrIeX3NwJq4+Gs5q9cvBOQ47njqkGKMa7C3XBFjtuuYZ02Oxg+nYBGma6UNj48LpJ9BeyqhiNEWsvc84ymzIsbGFTFy78dUczks7VlI4d2tq13o9qy72PyvseQ8N0ueMLUzpiunRzA07OQ8sVlbEMmhzA/dLmE7qNdCuwJZtVCHT66I8RFJLpdyAgav/CwZOriKfh5n9KUg1bljunJFDMSo0jliMF6munsBzbSHDUwXRYxLXOITFV3XuF6duF03V33gnLgk4MttEOyq+pu9QbUY6D+SAyp3YTS4ld8g7YN4pYKcFTHarIix8vaRc3CfVZyAc+JyRYxGve9cEaP623U+5VAL91bYkjDJ6KIW7iaW2gl65ZVPGrzNpWFLsmyMPJu4ZOUWG41HyhlHX5+YoLN6xbqhG9Auw71vxst1mHDUtQMiOiW9ecROifqVAXiUuGwGP7iBYbtqNHM18zn5z1wuOSVaV5DkYI4WzLNZkmrWXZQx0aawpA9B2lYdcNGFIkY+CZP5vbYwhWw4wGEGenShFzgdMtNMfhoadkr+YrFSaojupkPyBP/4OQp+LfpYESP0Eo8OVgkKHSpBCOuMemXYcXYiDmg8/h2cniplaEwtUSUxSznNiat/EE7xAvRx45K0LnGJFzROh47btHbS7qb5Zi3pLAc0ebUynRK6SoF0a9RktOrOxmUfckBHV844a9K1R2rhZyXyshemWXpn7cmDYrT1mZD7tRJXyt5qqltz8uhe6A7O25mYz3vWKmwr32jzwddnSZhsFsXFq67s50XmOQ4siUtiffixdRXk2xaSTyF11NbGtGmkdUXFmHDFjpn8LCp0d8Vbcm8d2bx2QIfM7bF4NRqaiyXoACSoG6W9rqTSqNYDLnabPQeSHxI6dehao9qJKjOOIzhS6ZBodA7F7/xFgWTYmLGDUxpyqI+ALInL4eNx7beFcp9dU/A+oafOXzrWroJhR6+4WJ9BEva+gylKJHgMt50JsWRdg+7iexYJXkhMhvPqks9a7Vppq3MLcNax1F6wMbshZecSWj7GPGsQDu+b29E8R1yS1iUu8YKGvTdwf9tBcQ25JXGRkIdHMOVD8s2ojxbgxo2TbEzomOmCzzVbYzTDDflWjdb5K3R+LE4r54pmNgmcrlzZfEa6fTRxTVIwFedhNSGfUlhY+KbrIyxxdfh1Q9ZuOZ9qdqfkFi1A81mTFkfi1atHs5FZu84+sr4m1K2ivTyzPomKdAo1fHp30J3IGCzq492DIQqnm+SEWuFRNepVgoviEvdcqE2QwWDVFqX7GioT5SDIThhvPNHMbboG3qabzu03r0Ydji9rrxwN0FVCB5835hF4iHsD2LqRQ5apnhJt49YrZS/IvTA+eulgaJ641pWUjNaFQn0LgvjxDGdvK6O+XJ0PmAo1vEOcMgCdJuzgoJ92pdhV9eosRHHntqaogzpskkjIhm0bNaRAugeXzXreuCStS1ziBY3V24lUE/u3FC1G6huWjZpcPDeXecCdyEejXgl6bQ6H7yuty/Dgm3CeYu4yb1DJkHUjr0aSGFMbQFw8t9v5fEY0ozmhvWFXDpGePuhCpxDKznlTo4Ed/U2dK/emsrveQRctPk9DHf7GkHWlG6pbwO8HTNxQsRxiw5scht82TvAlG1PqnKMV8HrReX3Z17etaIn1qZAe/JotgxyjXVeUtK5+DyUj6nDwbudIvNND5uHOK1spClulpezzmiaUQMJZFy3AkknFNfRacamk9FBY3zuyDhNGSbTsgsZWlFrMN/d9YnjfryVNiRFcSaI4WlAHY7oyT2xHlmuGmDt2SkrOe5pujDQaq3cT3awpSKZmI20qFEWPhRZO0fXKeXFl5+efkaTjlVBfgq6Paj1auaKeiPPo16Q9nAYg0IcT4pVvSot6Rn/rqi31RtCbumgwTlIQTZyeSrS8P35cktYlLvGCxtkqXrBDDMMF3BrCJXvSYv7oLT5OAYAwsJpICdoqpH0EZjsQTi5+aoard5ssA/hF4qdCDhmhxZOrzKaTAfbAZxnW3HFXq5NYWw/T1te3VISToKeEpszkVr+IQFs/Wh+RMM18ptVCaSLj66tggZrz9XFeH7G+wXUULcXsZxLkkLHO6QFzp2722Zqu/FoUwe6dZ+bmi4Ha683P3cT19oogp+Su0WVONH6sZQd9aPeRaxZ3X/bWoH/+rJc46wvqKdFiSxbEdSHBk1zQBFIFPQktF5ebqt4W1s6TSQtJpVQ9WWsqvj5AxwxTcn3IIEo3PX82CZgS49GFlMGvpw1yRpm2eFZNaKdCU3Xdwwxt8Gufv7Mp5nMcMzpEZyD5czy9BO30fFnrkrQucYkXNLodlL1xfNVbeiQjFVdJ10kcKDe6ivusPqChEJGyuQdScomfGXAhCqk4VLzFcSkrdd54zUVzreEZBa9WtFPKamI65qW1k0IwN5XzhkTxWRQ5u2LDDJnXM3gA8ArFfFNc1tdY1mhJXBaqmA/0T672jpxt40m+Pg2h1zxU6ik5AEP8clzsVjzRFUFSrK8512uBwofyejoK1ju8XIqCCNal5VzYTBMI/6huhoz7fWxjOr9sxC8JlfRUNJTVXVdRzEm6JpB64vN84Za9GkIhz2uc72HoIBLfCet9naLuSJ1GosqN9mQ2yAGqqb2LAXcOW8+znuK81jmPRMVnvWAnB1/MxxH3S8SQrGiH6yW2hCRfn1dlPrvUWCfJ/LjQhrTnrLTE7Hn/6f9xcXd3x5MnT/jsf/ADpNVzTvMucYkXPPo7bw1p8Y2l9S55ND1ppG1dFDHyl3vKvUOgfajO4o47vdSQp5Mrxt/70L7MEjvZqyNLjgTTlyeHPt/1lLtMd+czH+1ceaEFAlCG5m/iu0L3oStnlH14e90YmqG9OrG6OTEeOvSuo4Sag8R5LYF1vj5enhAx2l1PvnOL+jT5eevWKyfdNGTt57VDptxm+nl9A4xPH62vj2lUUdq+Y/2/F/o7ryTr1piu3Q+LwY9brSbf/39xxfZ/K2iBw+vix94otvUNf1a0565j88uFfIDpivNxwadiRkXep0XXTzsXqq1PZhV+pyNIddv67iH4a5M/k+NbDXt19CpqzHDIfm8eZqsU/3V6xTi9FVL/YVZWPixnqkCGaWtMT9TpBwBi5KvJ4fs1wa54tXcU+rvkSh9XFgoW1VVGmsAhO7G4+vcyHwUrxnjj9zNtqyfuh47ydrcYY4p5dTXeKO1JI28qvz0UMf5//9cf5Pb2lpubm7/vn4tLpXWJS7ygUdeuYDBXJxAtmlHQ4kAErYmUPUHN1Qr4W/m8eWoLaHHCJZZ6Wd6oRYmZjWHNSccWx7XBKwTLUYmcxLlh0TbzNqVvSFi0xLy4o1VhqhnVqCw6b2Gl877pdiRNaC25vYgQdileaVmK845e7Vi2pcVmXawvxfoqpFDssJQccTm3uIon/MdWG4xxHdmtOEz8uLqO4x4RnNskKF7ZBg4DLSDdo+PG4HBFC/WZNuF8zQ3kJKDpfB0lLD56r6bM4vzqCv0Uvw55dG9EhQUsPnPx0rmlacVCcT3Wp/Ls+jpox7K0iwmHaiuyIAOlebJtU1pU40lA563FGd5O6DYyufGlK25Eq9IsbFXin1dxp+WSeX+/4XQRzL3EJT5ZMb1WIRnlK91CTpVH9u8a84u2Nlpv5H2i20sI3vpm1UaHqc/Cqipu7S6WFtknr86EauHdFVwgUsyXJldH6JowmlGTo+ZYzfyxIKQ2KDMh9Tqhk6u1L/wsgzKfN1pNuhZXpghSbBPDSkaquVTQXigKkyZ3UA5+VhNPcvPmmg9xnJ15XCkb1iltFW3HdibCggv3sm6s+wnJxmHbMz6RJeHP5FrICwk3FaX1SltZZDo/TiJB1o1RX5nIq3Astkyx4HsdJDqwgq6gPal+zblEuy8tCS6dBN05yIResZXb11eyJ6rqQsKzaocVr5TLujJFxTU/4wUhaP5dmV6fyEOl3fdeNa8rks3nX7fF1UpOeHtY3DV5VshHcFTgWBZFd0SQ2S06B9DnSmlrJz6XfUhU2fm7++HtlnoYn+vn4pK0LnGJFzSGmxNXmyPvn57yjKpCJK65Bag3zZFuxRUxOjtXUmkU2kMoYnTua6TgvBkLBXaLTT14Q2RvAbbsiDjZZ7qHTDmA5kcE35WLydaEz9H2eWkJ5V1wkHpzL6cFQg6QkIP/n0yC7GJQH9B+7UMt/M7P6xby5w3P1tWPC5V63We63ePjAg7fghi7cW+xfJAFBRcWkjRwGadiTCuBt5pLZe2S6+Y9TlyG26aYMP3/23vzYMuusoz7t9bae5/xDt256SkkTQYMX8igRgmtJVKVCAkUovIHAiVxqFDEUOWAFARRBgtDaZUlZVkpq1TwDzCfUgT8MMicKNoEkkqbAW1JDCaB7nR6uNO5Z9hrrff74117n3tDYpK27L437qeqq4ez7jlr7X16vft91/M+z4ySM9xQG4vdMJFOjFEVfDulw4M2IFeNyiaADxD64LJI6GhjuJiUcaXSX75kCYWOk44qYuhDh0tEmSmFPOYwmUvBqoiE/vRauxG4tYoUo314xoBZp5xhXNR+vDaYUsfaidqXIOlMtROweVAngZZS363o+GxgMGUi4XSFMFdirVCanPWNxaoob2GljTtJ+mATtBo02KTodCbsmlnhRK+PN/rUnq9oJlWUmkGFjmE8V5J3J3iXfb/iRGnIlyyxbQgzGmToRmXwAaBnYQajckBjo8rnPY8rSvIiMDItwKVmZc1uwOGt0uvpl7RaJaOsjZzIQap+KYefiYTZlJlVFHKDlvBCOvtZsmpoOROh58kLrzT8soVYN+0nihq4Sut0ft2SLA+MaSHGfT9dP7NaUusF4owgy1MrDjdESSLi8LGNOMF2PK09Ixg5Joc75MEmoeKUrQan54WFEGe8JkeLGTZYpY6PtRxoxpZQOKwT6HnNTCXTtQ5JslRgSkv0VtXoe0LMtEfNji3FoipdhAJKnD4YpHO96IRJoc3H2Zoq9tsSJkOluWOV6h6SCgbRkg/S/JyWE0OhJVTT9cSJJVqbsvaImNQEPKyo9tM2icrGRpIiRkXJt0MN4AAlAguRvO0Zi9GGbtHzPc2yDa0TwihvFDEaNHheYTBo8T1m9Uyqol63AabafQCUjnKUIVVjbK6afNUTu4la4jOJ5s66jSe09eylZtpNdNOMmSPmqmZBTHT43pSabvz0/UwWKZ1D0oG7cdQUaTMx08+tKOQ50FZbduuVyUip3mDROS1TuoiIqRthSQ/oJpA8nxyx0JKm9g4Jvms20PVtSMy1zjq6fmvKFKzHDTRDEBeJou8Rc6VwI9W1TuSVUKl7pOpgTt0CoCxLfVCIQ6d0eBen966l96I6PzOlIQyzmqmnyV86k8rUV4vqPk4sMb2GmORWLMRSJbDE6rlVHGRIEXUcav8SW0II6ayy0HsS1xJd3+n7SWmVDm+1Ryyks87KMcD4iuafrpsYwnpKvknno+nvceIoTTq3TEzI0F5Xjq4S2JNAE7QaNNikiNEQYiIp5FE3J5fo04lWrYf2AOlcKFNlCGP0ibbWw4sQW3r2IlkElzIGLxhr6t4aAFMIeAOFaJkrPWFLon3rexpiqcEMKzgXCdWmCtikSiGZ0vNpoaaCGboWsbXxoku08NiakieMUVajZBXNO1HsJwZboP1bJs3PKWNRKn29NI50WaLVxuxYaualxAJTEy2smihjZoVOqyQayyRvETOHS5uxBjmDGO0ZEyeqe5gCvLjUJiB63ZlYog2YvCJbqMJ9FVQhZYReA47JYx3UqwugGWN6kChE6ed5CoTpXsi4MmdM5AgDwZmpiWOhpUOx665PacCm+WWiZVmnAVAyvYfGW7V7SaVjW6Y2iyzJOFmBPLmiTKbXs3pYkWiUbekqEo7od3WSxICH4Fsn9/+iCVoNGmxSdB5oY8sW7kyVR5JuoOwGyrHFrSld2gTIjznMMUfoCL6XxG5nom7sixkmOGxp1CBy2RA6ltBTnTlZmGCM4Fdz8qMZ2RDsCYusGEJbMxCXKykk7A7Iak62qk7JrWM2vZ9DbI7NDX6716zouEr7WJ8+d8Wk+Wmp0PS9npUsZVifYUsoFvVzY+7ACr4NfqHUDGiQ4QYOl4wk8xVH6GgG6grwC564S+fnBtPDfxsMspgRx4msMOuZ9MGMHG5gk/miZn1jm7MSZzRAF0JYKIlzBrOmyvluZOprHouM2BLI07htiYw3dLSOOtwT4LsZoatrlnbAtwN+Xh8oGFmKRavXsGXVcLIXkZYGfT+rFH43VsuV6tqEjo6NHZXsCt3AaJfOvzim546+r9fG95V8E86Y6DqsIMOM1hE1sPS9rL4nsYj19852AtIKjGcsZmjJBul+HzeYqJl5OS+EeY/MRCZ9q1T4oa2bztvfywBH2Z8qm5R9KEcWN3Bq4TJpzrQaNHhewQwtZiTYWYiFranUVPpxOYk0kHqBLJjc1uUlMMSKDk9qLvbT3iuTGTUmTA3IsaJKp+ZZm560pSOaRRWSylyqOOFSpqKagWDaAv30Xrky1ewksR5Lg3Fgk6KEEjq0lBiePL8IGKO29CaVuHKgEH2qTxlKPT+ktkGJhWC8EEs0fbLps7GYtiA2aKaUC6aQ1Belny0eWMkgF0xH+5ok08wzpGCV8hotoUZJyuspO8kE8VqiNUlpQsakbMsieYRCs5SKbWgSZdyOwWaWKCmztWgAS5mehKnqic3QjDtqrTa2VKQYS03pt+OUvWUGaamSh85P6vJelanbHCTa1D4gykpNxqAUQvBSq6OYoHR740V75kTLopILIqrhaEemZlTaQr9TFZ2eQsCntobByf2/aIJWgwabFJVeYDbSTcRbq0/YydMIA2FkyVadlnKSgrg3Nvk+AU6bX20uZGuJETeejqsP1zGErm7S1eF65ZaMUQX2ig4fUTaZiSok60Zagiwl0dcNxJaWM91aYuJVNhe6Mj07stp3FfoRmejYqW1I1fdVlSwDEcGLagG6UVJz99X82DA/LxbTUhacGyXL9yBKlW9HFc9N4yCdG3lD+wk9e5mcodeGXGnxlXiuCfqe2ZpeXx91nGklRYxcA2ecTOnwGCitJVrBFBGbq0FlzLWsWDsvAzIyxFwIvQi9QCwsXpwKjYxNPc4EVRyJbdVdxJn6YQJJzL9BoqxbZWW6LOILZWfG0kw9swSwWuoNc14NOSf6/hXbNESb9B5TKdUbzFC/Z2Sq8E8u2meGwy46VeZwifVpQdpB37sHWW/C+Pi6BsTngCZoNWiwSRFalQzQOjNCIHZV0NUVkWAcUm1+oWJwWWScGonbqugQW6r8nUkKIMOUHSVGXHTqOyVdkBWnPT7DKWmh0rGTqo+r7shNHlGlbpR2LVmttyO2SGrhYsjSk302UrJ5nLg0P1UAj22DGGUKVpujCWCHFiFDnG74GmgAsUlgNxE+RpbopvOLSQswjiytJ1zy2drYd6QUcqHsAxFajzuKJwxxrD5l4AjdoFJNnaCiuIKK3R5TbT0lUDjNCFO1K3Q0U6oMJ90wBThjiUabnwVSrxd1NqrZCYTCaAaXCbhAjAafcjyXspjqHMnPRcqeNj77np4duWH1MFEdnun8Apod+a6eAbrRuv6xAKYnhJl0DpVFKC0mm5pPalP1VFJKrVCE0CPd74AxgpQakE2gtsfBWHx6YDCtwPZtA45OGvZggwbPK4y36YZaEQHc+sDVgxhTttURZf6VZhrgDIQcfJ6s0nM1+gPImGY+Rrn0+F7KyArdJKs+LnFaQnIDi0wMsRuntiZA5RFlInr+NTBYZ/BFVEmortEAh56NVI3AlTxV6YTYj5iC9LlapjJedQHdwCJjQ0juvRSR2NcAbJjOL1uzRG+IHTVKNO2IzaIGWqemkG4M652NpaUq6e3uRJkMKx0wGaxrktbAhUoZZV5VMSQDY2sTxmpcbRDZjcQuyMo6W5N1DsgysWpy2VbSjBtqNurGidQg4CdGm7NT0IiwMXCNE7mmMJhRKu31AvQFWcowbMyqEYdkT55f6h9LslB2osaUcaxnijhBQvJpa2mDeGyZWnoqWzPISL8nahSafqYKoC59J6v+rKq/rytTPcKTQBO0GjTYpCgXVMvNHivqcyvWTDIFTMoEQGhXpbhpE6fxKFV9YlR5ff0TMylwjZMRoBiVMKro2FUDspmWzbI1gxFDGSoX3bDBcyq2zAYVidC3hLb6Vq1vLM7WbF3WM6UhdFRmSqxq8kWgzCwmJEWMoZ6NlFEDlbQjUgRiL80vnYPpxm8ovc6vMlQkS4oYodqYde1QjYvkuSpCjLuR8byp6f/rA1c0QEubcGMRazp8XQIUAENog9/usW1PkKTzlBQx3NBgRM+8QivpH/YCwVXmUsmQ0YKdWOIqSMtsaAr3aUyVjU4VMSDOl7i2xyfjzZx1DdKi51i+o+SWyuma5BdWtRS4odVG55YqcWBFdQeTYom0QUqLLV1SIzGpBKgPHbLOB810tDnZrU0Dlxht6F5c7OEHlbz8c0MTtBo02KTI5yZ0O2OWxg5wdeDSAGIRZ7XENhOQXqgVMbJBIjOA9kmtOaTQ3p4nBy4zmpbYtBTnlKjQiurvBJg1q8oUI20KxkwzldqJeL0iRgS3Zgkm04P3VC6sTzDEqtxdol+vnx8tLceJAKsOs+pSU+z0SV1SNjWdn35ulgwnQc/cYlS9vdCNSGY2lNYyFUEiAKNhgckivgWySxUx3JpmoxsCF0q1FzEqMNyiNkisSmxIKl/a9WvWjKbKlqvS56SPZoPtpDgB64gwkC3rw0CVZW4IXLYiwUA2UPLNZEazKknZaCmQp3JwNkwagAI+ov1ZVbZsIKQzLjsGO7aqatFL2ajVsiKVz5gRYmGJBbWqfCaW6DXLiu2oKi1W8CiLtApc+ao2fsugU7dYPFc0QatBg02Kol2yvb/Gcq+nJnvipmrgXjcZ34HJrJC1Pd5IvUlaN2WImWrz6wdoRSUW1J3JavyImLoEGHo6xnYCLouUJtfzptqoUQODN4JpR0xXTR0nriAu5fr0PzTYsdMyUT9AO0I3qGKH0QP6SmkiW9YG2dDXMbZILrveIM6lbIbaBNEboBMwHa/zo6jLddk6nT0ZJsZlJxJ7gqxqM5eWJ5NeoIAPLd2QW5HWrjVVxHiirTqJ4+ohAXxMJcAMfVBAiEsZedTzNTvR9gAztsTCqSVIteakZuLGlSKGyh6JT8G6q7JZMXlQZcuWYtUQRzARPYejo4om0QplrvRyNzTkS5opm5HDZ6KU+rYnGg3y2YrOz01Sz9vEprYC6s81AgwdreOq7uE9WvYzTLNWMamPzkChVHnnlKmoxBgNQuWcQbZHspbXDNnoe2WDVIr0hmIZRllzptWgwfMKfuIYTnJt5kw0dzsBF6feUzbZzceYWHu5QFsbgY1XSndFDY+VUnqm2U9sCyEIMTWF2okBj7oVZ5IUv7VsFPNkY5JKcnZssIWOM4XUZyCq0J6ULiYVHdrW6guSFBpAleWr+ZmQ5peLlgqrz63o5pLKe+MUFFJDLKDKEElFvpqfGxtkQspUgp6FtWxtJOkmibgyNsSQNvDtE1w7qPJRS4gTwYZpE3KlbRjbQuhqk6+0dVzFxsPouuPQKYEjS43hLUtIDxsx03GmNMSRU4aiqxqQBWOTCnyS4XIT6j4zciVoSFtpfCZYtBPbYMYGMVmyuI+1Iaat5hdSF0BStpCimp9QWZtI9V5Va8RY6epkygxUGqDOP7RUET6rHiqSDYn1BgkpwNlpm4QtjWb26eHHFSf3/6IJWg0abFJMxjlLWbsuzag1hSoK1JI5EfCG4G3akdImiRry2UqJOylehFzPjzBAlgJIpZQ+0qfgSv0gZgaTNqk6eERq1QdTGvCpL6zqGSpkgxpH1aMlpUWS9pTkQiSmRl3t9xKprDAMklmiNmCpxFRLWWhaVtP1qNKDwVTnKRm183Klgm5TmS4kOrxkFR2d5I6czuuSIobMon5ZLqaxEEtVH6kCV2UnAqLZYCZ1QK+lpnwiR4Bea4vek8IRE9GiGsfYIrWzpGAcECuNP2VaVvckVOdHRiADgzofV1YqlV1INNU4nWsowKYAIU7vhzFJ8svGZOaYVEWSskgVfNSaZfqdMUbA61kquWjJtJxm/qTzQCktPkl7kexQYi7pe0PNQDwZNEGrQYNNivxwhjNg24lGXkTCjEBmsCNl4olVZp8pM0LaGCQTKDx4zSLspGJ8gQmW2EmNuE7p5kYgDi1u4jATEtXdIhOwziIYYj9oH9fI6cF+TE3N3iJdsGtalovdqA/t4uqglK1BDJbY1uCnDdJqLBjFIePqHAxssMpIc0IwVkuaPYGhw45SkEslSinBOoNgif2oZ1cjHWeTY7KdGOwwlaFECSTBGqSwOs7r/BAIq5a4WBBRQkHsBXxmsEPV9atklZwzxJHVBwan5U+fa3CTJH+Ural6Rexo1iZZGpdphinRavY2ssS2ENtKfpBcs8fQVmNJVXI303tSpvdL2VlspXER3MiSDcCX03HVPfbZuvmNNs5P2kpYMULKIFO/V1SWoAkWaVefS0q3UaJGIQRrkdzWGbNYVahnoL5aVQuENoBb7NAw3i74k/QfboJWgwabFK3vZuRrjsnZUM4I0g2qWN42mKpHaaLq7G7RYrrqyktXy2GS6VNy5U1VNaeGsbryml5EOkEzC5MRkgyPG+uZj6yls6GuUO4soe0JqxBX1f24IjbEoQXJcF3Bn1kq9dkry7F6LzcyhFEiMPSCkjNyPcPxY4ObGFxpYGzAahZAXyjPLLUvbA3swJGtKqkgGxniWmJRJo8oOjo/l8bZimG36pCxg7auN7TUD6saR9LNk5WMccg0W+xFYkdJEqZlcauObECtnG9XMi3FdqL2wnWF6CJxNad9KCNfTZnt2OL7kdAPxE4gdjXrYy2jOKLnXHGoLErfE2Xt2cQubGk51A2UEOJGGix9T5uPKw3JclvQxuhDyR06pHF9DZSxrf130UXiWkbn0ZxsLc1vpPOTLEln9SJ+Rok02WpFr9dx9BJr0qGpmEHvYRYIHVEn5iRoXCw6TEzf234kdiNhRq+7bTnKOZBBE7QaNHheoT7HKfWgW1xykbVKR1ZPPQurkspmOi64VJoC3QA7Sax0mIRxfWXFrioNOD1/iC3BGz3nsZNEJ6/EYhNrrnq6D15qA0brtXwnGVAqKSDmgvSizo9UKlz3uQK1eGzsaLlLhirEW52NGI8Gv9zUvULRW0JInljJ2NHm6+aXCbEVCd5qabGafwlg9NoUMa0jEoKlTOU/xJAvQ2zBxKXznfr8LxKi1fM/ITVUG20YtipxZQzT87VCS3XVmZ1kU0V8Y1MGlMSASeXUyrYjZqLXpEjeVd4SArh0LmWTQaO4lIF3tM5WlXBr9foRKg1lNUvX+SUPtuTFZb0GpvrcMtfPjQGCT0HIG2wAGWv2JU4DKkXU0nXFRiyU9SnJx6zq/bLpPE7M9D7m7ZKJNIoYDRo8r1Apc9fmeVi8FaQj0KqaZxOjTajp8IglViSIIhJ7USnluFrrrlLECJIsNCyaWXS06TSLpnY2di6dX5Wp0bRTufJaTGVMOQLJ9CynyqJMN/UgicOspc9N8wspuEkuhH5AvJb5TFzX7Fpqv5I4nV9NIRdl/lXzsxNl4lE5JbenTsl2bCmO27oZV1KQUTdgHScdIEJx1NI6aogtJYV4A7EbkCwiHVSVQ7RcWCza2kbe22qORh8S2ppBuMm0RQFS9thL2YXT8zXfobakz5LjcChUAV2NOyNBlDZuBqam4cdSF+hntJEXo79Llth8Y9Tl2iQlDqcPJ1jRZvREGLElem8qJmpfsKlfrrrHVK0WwdR2LGWmWpXGCBIcxkZlkhpRRqS1idyzrr3AgrS0MX3mjAGL4eQo78+Jc3jzzTdz6aWXMjs7y+zsLPv27eNzn/tc/forXvEKjDEbfr3tbW/b8B6PPPIIr3nNa+h2u+zYsYN3vvOdeO9PavINGjyfMZkXRgsbA1e24jQwJHIBWSS2Bd/VbMqmXphiUU33TATTCdD3hH6YbmxeN9N8yZCf0HMOWhE7UxJmdJxu3poRuYGF5QwmtqZy+3XvFzNAtJk0W3EYhKxT6ufOBJ1f9bkDQ7FkKZZSBtYKmH5JmIlaSmsnYgPaOGuXMszYKgmgE3QdqU8qJoKBW7OwlOZnBXoeO1cq3d6IZhRDoy0Dq246rhNoLQwpdgwxnaDjEs09W7XYNQfRYIqImfGY2VLP7WIaNzBkKxaz6pCVTBmBvYjfnq5hlu7JQN/PDBwyyKC0hI5Qzsf6GhqvZJhsaDATzWqwQCcS+hHfi+qHFVSTslhRyjulRYKeO/ozPL4XCdW4ND9bzW9sCb1IuX5+6XPdeB0N3+m18f2YSpHrWH9rSaw4AFbU9ThZkSjRJuK7gu+mezNOTcYrFjN2YIROUZIVpyDTesELXsCHP/xhXvSiFyEi/NVf/RWve93ruOeee3jJS14CwHXXXccHP/jB+me63W795xACr3nNa9i1axf/8i//wqFDh3jLW95Cnuf8/u///kktoEGD5ysm23QzyJd1E3VVWSjTfpyYemdCWxAMbihkw1TaCxC9IcwktlkhhE4kRGUEVoy0inEmmTrTZkVg0rE6Llhspiw7N7S4kVCKlq9srlJAPuj7CbrBVgKxYU6NAW0e8Z2YlNmnn2uCZmahp35XLovEdthgPlhpKbqRoTQQ8ogt0rlUWofNUImmocGNLSU6P5dH8pZnHAySZ8qIi9NSWJlpycq0AjO9IcbCoJ0TC90Sq0ZgsYlqngVsHnEuUk6saveZafDHaOk2tNX+hDzqtSnVnsVOIDM6Lo4NUqBaj5mkcp4SM1TlIjEux1b76lyEthozmsToc3UmCrYynOx7XOHxvp3aHVKGNEznhNVZ2ZzHFGHD/CCd140NcZQl2arU0xe1fcKk1gMbdH5MnJarq0zY22TtlvQNsxQ0k/iyWC3ZxtwymuSEqqP6OeI5Ba3Xvva1G/7+oQ99iJtvvpmvf/3rddDqdrvs2rXrKX/+C1/4At/61rf40pe+xM6dO/nBH/xBfu/3fo93vetdvP/976coTpK436DB8xCxrecQcZQprbiiCpdog2g1MLnNmmCIXo+8ajpxQMkYIjUFulIhr87MSL+LN4SQyA2pfCUu9VyNk9XEBGJVsiOd9xQoXbtSKxegtEzGTs+Z6s9VenRNdxaUQVjaSgWppuGL0/JVlgKcbpJa5jJM1yHOYL3UDMlqftEJ3mkbgLoQT6+JjjOEtI4yaGYYMoP09YxmSvtO1zpPDwlKUFcn3ipRkEQjRynjUZjS4QuIk+k90XYFo+K1bdShObP1uFpFPVR0eNQqBSVAxGT1EWsFpGQxEpNgr0H9xwqjuoTypPkl0qOpWg/S5yIQXWoFGOl3KxHb9Vqnc7oQ0n0SJQFF49Rw0mqpkKg9WuSix12lPjxV6vi2NMSJZXG1Qzk6ORmnk2tJRrOmW265hcFgwL59++p///jHP87CwgIXX3wxN954I2tra/Vr+/fv55JLLmHnzp31v73qVa9ieXmZBx544GSn0qDB8xK2E8hnx7WEjzhRYdxJYuQNlGYsTmotwFjE5DKsu5Xxpj5bMSnISEsPw/UpXzdEkwR3XdKOJU8Ctd2gbLqk22cnU6KGRc+kpKM2GtISkGqO+oTvPNj6c2P9uWqtInWDr0tBtJKakk5UWncK0pVquZuk/qvsSfOLG+fnSsgmulFKoQaaMXlZ2ZogoMGrmAitieDygJ0tcX1fa+iZMqlYTNJ7+rTuao6Zqkm4NEebrp8zsZavitW1lnTvhtN1OKv0f2kpCzG21cfLxJRlDpOzM2nNLZmOa2lvl02fayPkJqZrKLVSvEnnndX8rEBmVMldqvdK11vLqEmeypv0ueu+M23ViDSC+mZV5B4B49SepeoVlE7Q5uvKQyxQq9674w63cooUMe677z727dvHaDSi3+9z6623ctFFFwHwpje9ib1797Jnzx7uvfde3vWud3Hw4EE+9alPAXD48OENAQuo/3748OGn/czxeMx4PK7/vry8/Fyn3aDBloPNA/3emMUFx3ibRdYc+aJKORXLFjfRw/O1vR47UyI9w2SbhZFTW/PSkK0asv8skBwmc5EwG4jzJZN5YOQwa64OHK3v5piYE+aEOBdgrsQVgckwx04KzMCQrxiKRUdoOyZzAnMetk/IuxOGqwXRtjAlFMcd2aOOcgYm8xGZCcRt6XPH6UypNOQDQ+s7hZaZ5gQ/FzA9j80CoZVjQl4riufLjlg4yhkhzKf5tTyTQYEpC/IwnV8sHEhLafhnTTAvKCkHOWYlI1+yeg2XHDF3rDy8oP1u56wx+yNHKUcZy4fnccuOfEXdheW4JeYZWLD9iD9rDHlgstzCLTmKZVuTLuRojm9l6oeV1izDjGzJUSyvYwm6TLO9diRuKym3g3eROHbkh3K6h1XMtuyB7wt+NiAzHj8nlKRAdjync8iBMZShYJIX0A/IbEk5L4yHGW7ZUSzaupQpR3PKIs1vvqQ8Q+n6fjWn9VhO8YQK8Pquo5xJ35m5knIblFZgYnFHczqPK7vQ9xxlT/D9qOxDoyxJ1/GETsCfYaC67gO9PzOPwVrnFFHeL7zwQg4cOMDS0hKf/OQnufbaa7njjju46KKLeOtb31qPu+SSS9i9ezdXXnklDz30EOeff/5JTRDgpptu4gMf+MBJ/3yDBlsRYbVg2VvixKValZYBQ0ntfCsOKA1hlKXsSs+wTK5Jj7h0mC9aFjPpPAanm4tKCKkQbNV+U0kwxbFjElXNIubgO1JnbaBP73FsCc4xNjnRO8hT6alSapBpSahiAeqmlspsSbmhoribsSE6p0633iRZKgCdHyRm4Vj188po1C34KeanZUh9n+D1g8Wl0l5S68BQK8D70rE6ahGT+3DMk6tyJZslaOYX9JqEZK0heZI0sklGKpVJJUtrdlJT4UOLepwNwCj5exlRen2SUZJMWYR1STOkclxyQDbJBJS0nqrEa0UZlzFTGSktzepZW6XGbjw4WTc/UWULYVpK3fCdGStdn3wqYSFW52f9+nuS5JsyvRZh4lTKKd3v2IJQ6vuWHZs8y547nnPQKoqCCy64AIDLL7+cb37zm3zkIx/hz/7sz75v7BVXXAHAgw8+yPnnn8+uXbv4xje+sWHM448/DvC052AAN954I7/5m79Z/315eZmzzz77uU69QYMthexohtgM0w9agmslVW5RfyhJfTduZIliiG31h6Klm5rkFhnpJmgnU+o1KJXb5EqpFiBKhllyqlheuc0CkifV9J56Y8mK3aA2j9FxIfXrxI4K3MWBfq6bAIN179cJysSzohvcOANxmgUkA0sfdUM1Nnk/JRq+2bAO8GRaqkLHhTbIahJmTaVCDExKq75QVun6us9OKeTFipYhhwPLaJzrWVsRiQY8akzpRusIJA4m3kKhGn+xp7RyopYb89VKUV1p89LVNcc+lMYpScKnEu9QSRjqM6UmimTqLhw66awuTFsFVKhCsG11Ii5bDt+1tY+amkNS94895fxWTBJJ1vejGzQSWNWj9FX51E8dBXR4UnlPZ2uhLZBUMLKhqWWufF8biW0WCYMMU7UXgLY/RLVIiSd5OPU/7tOKMW4o3a3HgQMHANi9ezcA+/bt40Mf+hBHjhxhx44dAHzxi19kdna2LjE+FVqtFq1W63861QYNthRax3TzHexRDyLphGngMmDapraTz9YMvmfwM0AnYjLdiHRzSWcZ/vsDl20FbXYtLKFQdp+pAogkG5K2EOY9toh4csCSVf1ZA6OSSqtWSQLbSvWL6lp8eq+K5l4FLrqhtriQls5PJkw33lLP6XxPy4Cm9n6aqtxrPxpgHKE1HeeNzk9TpUTXX7MEyTXApbOWKnBlGKLGM2ToGB/ppoZiDeixByUO7VtO52nRYAeOEIySEPJInFEiQljNKJYd2RDt20pBvQ5cBjBCXHO4oVV6uzwp+AMmh3JWz6uqc6NsOB0XSQLDgJ+Jes8GTp2IN5iF6sNJ7AvGCmGQUSypzUy+7uEklAZQJmrMVFIrS5/LcN37Bc3cTSaUs0Ica0BVB2RUQcUZQjAqpJxHNb1Mgcuj9yzmEManoDx44403cs0113DOOeewsrLCJz7xCW6//XY+//nP89BDD/GJT3yCV7/61Zxxxhnce++9/MZv/AYvf/nLufTSSwF45StfyUUXXcQv/MIv8Ad/8AccPnyY9773vdxwww1NUGrQ4EnI1qBYFSZzRjdn1gWuVJoyI0v7CTV/pLLuEAhR/2ubHMqZWMsp1YGm2oSMHqCL1XMTyaZEC5UEAu8NYZuesfmOuu+uD1wm6lN52UM9nTLRDMklMsbQTANXcrkNVSXT6fzsRKWZbL35KTU9zKFBtRM0K1gXuKr5lTOGsM3jioDvpsBorKo2SPLGGgmha4h9dANNgatqaK4U8zuHtNRXbjN1NqqZiirB22S8ma+qkrvvG9VvzNWp2XtLKDRjNR6y1bThmyrLDJqBiNFM2DB19hWLDJPCfjudJU0sYl2dPWYDA9GqbUumJUXpBhVNbrk6G6wCVwlIf938giHmTtVCfLqGMXmztUQV8XsRnydvtuSD5dJDTEwK+9KKxH5A2gax6heWDacMSYb6PayVMtYHLgthIRCXTkGf1pEjR3jLW97CoUOHmJub49JLL+Xzn/88P/VTP8Wjjz7Kl770Jf74j/+YwWDA2Wefzetf/3re+9731j/vnOOzn/0s119/Pfv27aPX63Httddu6Otq0KCBIuZKQ7YT3SRhGrhMK21+LkNOaObkSrQUJ662spBcCLNRFTKsq52NSZukT2cQxkLoaSkurjjyVNqreoEYW0KmHlHSTZmKTEtxbqTnU2bolFGYC3RLfOGQtPmtLzeF2rYkEmaCmitWn5vsK+wEzMgRLHqgVGdIGrhUSgkNECNHyDSbkE7AJ+NCOzYUqXm6cvSNfXQj7WjwH/Y0+LWOWdpPUCtiABsClzoqk7T1DFkEE1Ng6GnZDqON3usVJ+rABUiX+owrtDdKYeUDzbJCAb5I6hFZrLNMMHUmVZfiZqIGGkfSEFStwPVKHBq4qvkl5Qy3bn6DpIjRg9gFV2g271MGWJWDzZpBhvq99PMG6XloJQdoY8FalfMy2tAcR4bYTfqWRUTGDtMO0PGcccYqJ07y/8VzClp/8Rd/8bSvnX322dxxxx3P+B579+7ltttuey4f26DB/0lM5iG09VC+DlyigYtuSJmKnn1UZb16k7SGUAh+PmB6AQrwPGkTGqRSnF1XisvDBrfdqn/KDRyxNEg7YlpxGrjQ8zWTHprdwGIdhG2erOO/f/Pzuvm5oZIs/Jwh9r2eS6XNWYyWPTHJSn6i7sO01ASxnl/dSZRKgCGr50c3YFwkDDNYVNV3l5yNvWjgUtp6oGgnRsZaC+udtotVZzkyLbHp+Z8QXIY5kSUdxRSQErEBA7EbmbSTOsjgSYFLUilODKEjxDzihqYeZ0slP4R+6ndyT3JArgNX6ulyBj9OZdy+npvFpXVl1Losa+pAHHqR0JnOrwr+kilRJ5TapKbZqEDlmj0B57XvKnYNPliMC0gqWcesetgwKXM0agIJamDZCsjIYTqedl6S5RW15rmh0R5s0GCTYrRTN/P8mG5C2Zoy1yY4vIOqP9cnhfFsoJtFNtQn99DSzQWnh+KqP5tBdOQh9R+NQKMfyBmRVqdkLAZvAVxSptDDe3BM5pPiRCsoTTqdIcWknKEZIYxmwNkILV9/romqVaiUb83MpA1Y0dIeqD6dSyoSlT27GMZBFTtsx0NfpvNr6fyyVUO2um5+bU+rXTIGYp7VTdL5asqODEQn2E5g19wKxkWWnthGaHWonJJVKcJSOqDvyVqeLAtMgiFmGQ6STqIqq4vVQBS2l2TtgLctTNS1ZMl52USrJpstQfoeZiIhzzDR1cK0oEy8MMygrUocZGrtYcTVAdiWkvr1kiLG/IRWp2RIF8RRBDOdXwSMw3eEuKCtDN4WSoIpTepJ096rkGnwt4XqLnoLiH5nzDgxFMcGRlZJIZlAXiIdi0RgKSM75nDjxIbE4Z1gu15JJmPH6rhF8CdnqNUErQYNNilaC0PyPOCfmKN9TChWhbKn5oxxR6AzO0KAkW0RXEa+4midEFpLQrESGM9Z2Fmy88xjzHZGPD6Y4cSxGfxyh9YitE4I2VggCis/YOhvX+WyHd/lP5cXOHR8Dr/WhaQy0ToB1gu+b8hnxpy1fYkyOL73xBxmqaNP4SW0FjX3ieeVXLLre6yFguOjLsePzsBSm9YitE8I+UogtAyDbYG5M4+zs7/KocEsxxb7DEMXRpANLJ0j2vDquwbTK9m9sERmA987MYcf9KbzW9JN3PcNeX/C3oXjXDD7BAeXdvDEt/fQOmqxpTbajrYZQgeK3oRdC4tcf9adzBcD/t/vvIx/P3QethTKWUfIDWsCsi3S37bK3m0n2Nle5oFDZ7F83056h1VpP2Yw2m4RaxjthG07Vjh/21Hu4hxY7NT3xLcNwx2GkMMkE2a2r7FjfpnHDm8nLnZpLULniUjIVd7K7wh0ZkbM94dYEzl+os940CNfsfS/GyiWA8svLJjMGVwROGv3MS6Z/x5fkP+HcqVHsWzoHI3EDIYLKQs8E87cscQL545xtzkHs9SltSi0T0QmfYufMYRZodMfcebcKkEMx47PEFc6tJYsnSMRcYblAsodkfbMmG39Ndq5ZxL0SeqJ0Tb6j0H7uGd5b8Egh7gzsOvMJTpZyYlhl5ft+g7ftn3+8yT+X2zJoCXJPCyORqd5Jg0a/O9hsuQJWUDCiGHLUIoQM0OYQDjuWR2jZZxyAqWnjI5Rob5MY6eNx6Nh4LFDLYp2xnhsKQclxhuGhSX0BJtrmWkchdXHLfdNtrE8zBmveZiMVIhVwFiDsRDXhMnRyHfHKrnmV0odY1FDxrSjjBcDBx+bxWOYlBa/UuI8jNLnZlY3+7VxYO1QwWJ3htHYMRl64nCEeC0t2UxVGeJImBwNHPYZzjnGg6Dz8zo/rMGm+ZVHA4+UbZYXz2BxrUWIY0LHYgswUSitIY6E4bHI98qC/4+zaWeBg8M+K9tKzVKLgBgog+CXI0uZ4aFhj0N5zokTDpONkBmorOc9SQxkKJw4Ag8Ne/glvTbDdE+iM5RBf0TWhJWjkTAuGC97jB/pPZlVB+GyhHAiMCiF8arDWku5pmseZw5mhSyHYT4iDpXFfehwQRxsZ3TCYyYjRpkl9PV+lOhc40g4esRQDvpMFj3Oj3R+M0IoDGEsxKXIWhQODXOMEcqBx5Tjen4YKCPExchaEMrVjCy3iB7pMVmbMOgJJcIoH+PHgj/hORIz8sJQToR/k1keO9wGpvv5s4WR5/oTmwCPPfZY06fVoEGDBs8DPProo7zgBS941uO3ZNCKMXLw4EEuuugiHn30UWZnZ0/3lP5HqJqlm7VsPjyf1tOsZfPi+bSeZ7sWEWFlZYU9e/Zg7bPvNN6S5UFrLWeddRZA7e31fECzls2L59N6mrVsXjyf1vNs1jI3N/ec3/ekVd4bNGjQoEGDU40maDVo0KBBgy2DLRu0Wq0W73vf+54X8k/NWjYvnk/radayefF8Ws//9lq2JBGjQYMGDRr838SWzbQaNGjQoMH/PTRBq0GDBg0abBk0QatBgwYNGmwZNEGrQYMGDRpsGWzJoPWnf/qnvPCFL6TdbnPFFVfwjW9843RP6Rnx/ve/H2PMhl8vfvGL69dHoxE33HADZ5xxBv1+n9e//vU8/vjjp3HGG/GP//iPvPa1r2XPnj0YY/j0pz+94XUR4Xd/93fZvXs3nU6Hq666im9/+9sbxhw/fpw3v/nNzM7OMj8/z6/8yq+wurp6CleheKa1/OIv/uL33aurr756w5jNspabbrqJH/3RH2VmZoYdO3bwMz/zMxw8eHDDmGfz3XrkkUd4zWteQ7fbZceOHbzzne/Ee38ql/Ks1vKKV7zi++7N2972tg1jNsNaAG6++WYuvfTSusl23759fO5zn6tf3yr3BZ55Laf0vsgWwy233CJFUchf/uVfygMPPCDXXXedzM/Py+OPP366p/bf4n3ve5+85CUvkUOHDtW/nnjiifr1t73tbXL22WfLl7/8ZbnrrrvkZS97mfzYj/3YaZzxRtx2223y27/92/KpT31KALn11ls3vP7hD39Y5ubm5NOf/rT867/+q/z0T/+0nHvuuTIcDusxV199tVx22WXy9a9/Xf7pn/5JLrjgAnnjG994ilfyzGu59tpr5eqrr95wr44fP75hzGZZy6te9Sr56Ec/Kvfff78cOHBAXv3qV8s555wjq6ur9Zhn+m557+Xiiy+Wq666Su655x657bbbZGFhQW688cZNt5af/MmflOuuu27DvVlaWtp0axER+bu/+zv5+7//e/mP//gPOXjwoLznPe+RPM/l/vvvF5Gtc1+ezVpO5X3ZckHrpS99qdxwww3130MIsmfPHrnppptO46yeGe973/vksssue8rXFhcXJc9z+du//dv63/7t3/5NANm/f/8pmuGzx5M3+hij7Nq1S/7wD/+w/rfFxUVptVry13/91yIi8q1vfUsA+eY3v1mP+dznPifGGPnud797yub+ZDxd0Hrd6173tD+zWdciInLkyBEB5I477hCRZ/fduu2228RaK4cPH67H3HzzzTI7Oyvj8fjULmAdnrwWEd0cf+3Xfu1pf2azrqXCtm3b5M///M+39H2pUK1F5NTely1VHpxMJtx9991cddVV9b9Za7nqqqvYv3//aZzZs8O3v/1t9uzZw3nnnceb3/xmHnnkEQDuvvtuyrLcsK4Xv/jFnHPOOVtiXQ8//DCHDx/eMP+5uTmuuOKKev779+9nfn6eH/mRH6nHXHXVVVhrufPOO0/5nJ8Jt99+Ozt27ODCCy/k+uuv59ixY/Vrm3ktS0tLAGzfvh14dt+t/fv3c8kll7Bz5856zKte9SqWl5d54IEHTuHsN+LJa6nw8Y9/nIWFBS6++GJuvPFG1tbW6tc261pCCNxyyy0MBgP27du3pe/Lk9dS4VTdly0lmHv06FFCCBsWDrBz507+/d///TTN6tnhiiuu4GMf+xgXXnghhw4d4gMf+AA/8RM/wf3338/hw4cpioL5+fkNP7Nz504OHz58eib8HFDN8anuS/Xa4cOH2bFjx4bXsyxj+/btm26NV199NT/3cz/Hueeey0MPPcR73vMerrnmGvbv349zbtOuJcbIr//6r/PjP/7jXHzxxQDP6rt1+PDhp7x31WunA0+1FoA3velN7N27lz179nDvvffyrne9i4MHD/KpT32qnu9mWst9993Hvn37GI1G9Pt9br31Vi666CIOHDiw5e7L060FTu192VJBayvjmmuuqf986aWXcsUVV7B3717+5m/+hk6ncxpn1uDJ+Pmf//n6z5dccgmXXnop559/PrfffjtXXnnlaZzZf48bbriB+++/n6997Wuneyr/YzzdWt761rfWf77kkkvYvXs3V155JQ899BDnn3/+qZ7mM+LCCy/kwIEDLC0t8clPfpJrr72WO+6443RP66TwdGu56KKLTul92VLlwYWFBZxz38ewefzxx9m1a9dpmtXJYX5+nh/4gR/gwQcfZNeuXUwmExYXFzeM2Srrqub4392XXbt2ceTIkQ2ve+85fvz4pl/jeeedx8LCAg8++CCwOdfy9re/nc9+9rN89atf3WCo92y+W7t27XrKe1e9dqrxdGt5KlxxxRUAG+7NZlpLURRccMEFXH755dx0001cdtllfOQjH9mS9+Xp1vJU+N+8L1sqaBVFweWXX86Xv/zl+t9ijHz5y1/eUFvdClhdXeWhhx5i9+7dXH755eR5vmFdBw8e5JFHHtkS6zr33HPZtWvXhvkvLy9z55131vPft28fi4uL3H333fWYr3zlK8QY6y/4ZsVjjz3GsWPH2L17N7C51iIivP3tb+fWW2/lK1/5Cueee+6G15/Nd2vfvn3cd999GwLxF7/4RWZnZ+vyz6nAM63lqXDgwAGADfdmM6zl6RBjZDweb6n78nSo1vJU+F+9LydBGjmtuOWWW6TVasnHPvYx+da3viVvfetbZX5+fgMrZTPiHe94h9x+++3y8MMPyz//8z/LVVddJQsLC3LkyBERUfrrOeecI1/5ylfkrrvukn379sm+fftO86ynWFlZkXvuuUfuueceAeSP/uiP5J577pH/+q//EhGlvM/Pz8tnPvMZuffee+V1r3vdU1Lef+iHfkjuvPNO+drXviYvetGLTgtN/L9by8rKivzWb/2W7N+/Xx5++GH50pe+JD/8wz8sL3rRi2Q0Gm26tVx//fUyNzcnt99++wa68draWj3mmb5bFR35la98pRw4cED+4R/+Qc4888xTTq1+prU8+OCD8sEPflDuuusuefjhh+Uzn/mMnHfeefLyl798061FROTd73633HHHHfLwww/LvffeK+9+97vFGCNf+MIXRGTr3JdnWsupvi9bLmiJiPzJn/yJnHPOOVIUhbz0pS+Vr3/966d7Ss+IN7zhDbJ7924pikLOOussecMb3iAPPvhg/fpwOJRf/dVflW3btkm325Wf/dmflUOHDp3GGW/EV7/6VQG+79e1114rIkp7/53f+R3ZuXOntFotufLKK+XgwYMb3uPYsWPyxje+Ufr9vszOzsov/dIvycrKyqZay9ramrzyla+UM888U/I8l71798p11133fQ9Fm2UtT7UOQD760Y/WY57Nd+s73/mOXHPNNdLpdGRhYUHe8Y53SFmWm2otjzzyiLz85S+X7du3S6vVkgsuuEDe+c53bugH2ixrERH55V/+Zdm7d68URSFnnnmmXHnllXXAEtk690Xkv1/Lqb4vjTVJgwYNGjTYMthSZ1oNGjRo0OD/Npqg1aBBgwYNtgyaoNWgQYMGDbYMmqDVoEGDBg22DJqg1aBBgwYNtgyaoNWgQYMGDbYMmqDVoEGDBg22DJqg1aBBgwYNtgyaoNWgQYMGDbYMmqDVoEGDBg22DJqg1aBBgwYNtgyaoNWgQYMGDbYM/n9LqunIXf0aIgAAAABJRU5ErkJggg==",
- "text/plain": [
- ""
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "plt.imshow(np.array(ormdata[\"matrix\"]))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1839afbf-10fe-4b8d-9ed2-38b6e77de57a",
- "metadata": {},
- "source": [
- "The response matrix can be save to a file."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "id": "79628252-7eea-44f1-83f9-5c032dbd75d6",
- "metadata": {},
- "outputs": [],
- "source": [
- "orbit_response_matrix.save(\"orm.json\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ddb679e6-0be7-476f-a857-6d3dd746bfb2",
- "metadata": {},
- "source": [
- "To do orbit correction we will need to load the file to the orbit correction object."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "id": "6c306621-7cc2-45ce-bd5c-e714efe928ab",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "27 Apr 2026, 15:52:46 | INFO | Setting the rf_weight by default to inf.\n"
- ]
- }
- ],
- "source": [
- "orbit_correction.load(\"orm.json\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9cdc7159-bbad-465b-aed9-039e3d4ef073",
- "metadata": {},
- "source": [
- "### Mangle orbit for design mode\n",
- "To have some orbit in the design mode we have to mangle it by introducing some noise on the H and V correctors. "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "id": "7c0c30e7-a6f8-458e-a4d5-02f0ca63ad19",
- "metadata": {},
- "outputs": [],
- "source": [
- "std_kick = 1e-6\n",
- "hcorr = control_mode.get_magnets(\"HCORR\")\n",
- "vcorr = control_mode.get_magnets(\"VCORR\")\n",
- "bpms = control_mode.get_bpms(\"BPM\")\n",
- "ref_h, ref_v = control_mode.get_bpms(\"BPM\").positions.get().T\n",
- "reference = np.concat((ref_h, ref_v))\n",
- "# mangle orbit\n",
- "hcorr.strengths.set(hcorr.strengths.get() + std_kick * np.random.normal(size=len(hcorr)))\n",
- "vcorr.strengths.set(vcorr.strengths.get() + std_kick * np.random.normal(size=len(vcorr)))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "id": "a771c0f2-d09a-4ae6-ae95-f0416f6c570b",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "R.m.s. orbit before correction H: 53.6 µm, V: 23.5 µm.\n"
- ]
- }
- ],
- "source": [
- "positions_bc = bpms.positions.get()\n",
- "std_bc = np.std(positions_bc, axis=0)\n",
- "sleep(2)\n",
- "print(f\"R.m.s. orbit before correction H: {1e6 * std_bc[0]: .1f} µm, V: {1e6 * std_bc[1]: .1f} µm.\")"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "6a6a21e4-3885-4f8c-8e30-36fa74563064",
- "metadata": {},
- "source": [
- "Let's visualise the mangled orbit before the correction is applied"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 14,
- "id": "5785e582-a8ff-4464-a759-fe731f197420",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "Text(0, 0.5, 'Orbit')"
- ]
- },
- "execution_count": 14,
- "metadata": {},
- "output_type": "execute_result"
- },
- {
- "data": {
- "image/png": "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",
- "text/plain": [
- ""
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "import matplotlib.pyplot as plt\n",
- "\n",
- "plt.plot(positions_bc[:, 0], label=\"H\")\n",
- "plt.plot(positions_bc[:, 1], label=\"V\")\n",
- "plt.xlabel(\"BPM number\")\n",
- "plt.ylabel(\"Orbit\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "id": "55a46fa6-14fe-497a-891e-a0dcdc1fec88",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "27 Apr 2026, 15:52:51 | INFO | (Re-)Building pseudoinverse RM with method='svd_values', parameter=16, plane='H', virtual=True, rf=False.\n",
- "27 Apr 2026, 15:52:52 | INFO | (Re-)Building pseudoinverse RM with method='svd_values', parameter=16, plane='V', virtual=False, rf=False.\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- ""
- ]
- },
- "execution_count": 20,
- "metadata": {},
- "output_type": "execute_result"
- },
- {
- "data": {
- "image/png": "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",
- "text/plain": [
- ""
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "plt.plot(positions_bc[:, 0], label=\"H (before corr)\", color=\"b\", ls=\"--\")\n",
- "plt.plot(positions_bc[:, 1], label=\"V (before corr)\", color=\"r\", ls=\"--\")\n",
- "\n",
- "orbit_correction.correct(reference=reference)\n",
- "\n",
- "positions_after = bpms.positions.get()\n",
- "plt.plot(positions_after[:, 0], label=\"H (after corr)\", color=\"b\", ls=\"-\")\n",
- "plt.plot(positions_after[:, 1], label=\"V (after corr)\", color=\"r\", ls=\"-\")\n",
- "\n",
- "plt.xlabel(\"BPM number\")\n",
- "plt.ylabel(\"Orbit\")\n",
- "plt.legend()"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.12.3"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/examples/SOLEIL_examples/README.md b/examples/SOLEIL_examples/README.md
deleted file mode 100644
index 1e05b7023..000000000
--- a/examples/SOLEIL_examples/README.md
+++ /dev/null
@@ -1,79 +0,0 @@
-# Instructions for how to run SOLEIL examples.
-
-## Install pyAML
-
-1. Create a virtual environment and activate it. You need to have Python 3.11+.
-
-2. Install pyAML, including the tango-pyaml TANGO bindings.
-
- ```bash
- pip install accelerator-middle-layer[tango-pyaml]
- ```
-3. Alternatively, you can install ophyd-async Tango bindings
- ```bash
- pip install accelerator-middle-layer[pyaml-cs-oa]
- ```
-
-If this does not work, you can proceed to do a developer installation directly from git repository.
-```bash
-# pyAML core
-git clone git@github.com:python-accelerator-middle-layer/pyaml.git
-cd pyaml
-pip install -e .[dev]
-# pyAML TANGO bindings
-git clone git@github.com:python-accelerator-middle-layer/tango-pyaml.git
-cd tango-pyaml
-pip install -e .
-#pyAML ophyd-async bindings (supports both TANGO and EPICS)
-git clone git@github.com:python-accelerator-middle-layer/pyaml-cs-oa.git
-cd pyaml-cs-oa
-pip install -e .
-```
-
-You can verify that everything is installed correctly by running in Python or IPython terminal the start of the examples.
-
-```python
-from pyaml.accelerator import Accelerator
-
-sr = Accelerator.load("p.yaml")
-sr # string representation
-```
-
-The following or a similar message will be printed
-```
-Accelerator(facility='Synchrotron SOLEIL', machine='sr', energy=2750000000.0, controls=[TangoControlSystem(name='live', tango_host='localhost:11000', debug_level=None, lazy_devices=True, scalar_aggregator='tango.pyaml.multi_attribute', vector_aggregator=None, timeout_ms=3000)], simulators=[Simulator(name='design', lattice='SOLEIL_II_V3631_sym1_V001_database_rf.m', mat_key=None, linker=, description=None)], data_folder='/data/store', description=None)
-```
-
-pyAML has two control modes: "live" and "design" (named in the config file). "live" connects to a control system (or a control system emulator), "design" only requires pyAT lattice file and will run pyAT. If you want to avoid having any control system connection, you can delete "controls: " section from the configuration file.
-
-### Start the SOLEIL II virtual accelerator
-
-SOLEIL II virtual accelerator is an emulation of TANGO control system that runs pyAT under the hood.
-
-1. Install [Apptainer](https://apptainer.org/docs/admin/main/installation.html) in case you don't already have it.
-
-For the live control mode, you should have some control system emulation running. It is possible to do
-```
-apptainer pull -F virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest
-apptainer run virtual-accelerator.sif
-```
-
-***Keep this terminal running and don't do anything else in it.*** The virtual accelerator will run there, and you will be able to interact with it from other terminals, jupyter notebooks, IDEs, etc., over the network. If you want to put it in the background, using something like tmux would be a good option.
-
-This will run SOLEIL II proof-of-concept digital twin on localhost:11000. You can play with the digital twin itself (without pyAML) via jive to check that everything is working. You can run Jive in a different terminal with
-```
-apptainer pull -F jive.sif https://gitlab.synchrotron-soleil.fr/api/v4/projects/2739/packages/generic/jive/latest/jive.sif
-apptainer run jive.sif
-```
-On Linux you may need to configure X11 to display Jive
-```
-export DISPLAY=:0
-xhost +local:root
-```
-
-NOTE: This is just a demonstration of pyAML functionality. Certain things may be done stupidly. The person who wrote this jupyter notebook only cared about showing that the code is working, not about intelligently controlling the accelerator.
-
-
- ## Run the examples
-
- There are three jupyter notebook available with some basic examples. Feel free to play around and modify them. The main configuration entry point is `p.yaml`; it now loads `arrays.yaml`, `devices.yaml`, and `tuning_tools.yaml`, all generated procedurally from the .m lattice file and nomenclature description file.
diff --git a/examples/SOLEIL_examples/devices.yaml b/examples/SOLEIL_examples/devices.yaml
deleted file mode 100644
index 5bb1e0700..000000000
--- a/examples/SOLEIL_examples/devices.yaml
+++ /dev/null
@@ -1,13208 +0,0 @@
-- type: pyaml.bpm.bpm
- name: BPM_001
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH1_COR_001
- mapping:
- - [B2, SH1_COR_001.sextupole]
- - [B0, SH1_COR_001.hcorrector]
- - [A0, SH1_COR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH1_QCORROCT_1_QT_001
- mapping:
- - [B3, OH1_QCORROCT_1_QT_001.octupole]
- - [B1, OH1_QCORROCT_1_QT_001.quadrupole]
- - [A1, OH1_QCORROCT_1_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH2_HCOR_001
- mapping:
- - [B2, SH2_HCOR_001.sextupole]
- - [B0, SH2_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SHD.02-CDLH.02/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH2_QCORROCT_2_001
- mapping:
- - [B3, OH2_QCORROCT_2_001.octupole]
- - [B1, OH2_QCORROCT_2_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_002
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH3_VCOR_001
- mapping:
- - [B2, SH3_VCOR_001.sextupole]
- - [A0, SH3_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD11_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_3_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_3_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_3_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_3_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF11_HCOR_001
- mapping:
- - [B2, SXF11_HCOR_001.sextupole]
- - [B0, SXF11_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_003
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD11_VCOR_001
- mapping:
- - [B2, SXD11_VCOR_001.sextupole]
- - [A0, SXD11_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_4_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_4_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_4_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_4_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF1_HCOR_001
- mapping:
- - [B2, SXF1_HCOR_001.sextupole]
- - [B0, SXF1_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_004
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_001
- mapping:
- - [B2, SXD1_VCOR_001.sextupole]
- - [A0, SXD1_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_005
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_5_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_5_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_5_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_5_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF13_HCOR_001
- mapping:
- - [B2, SXF13_HCOR_001.sextupole]
- - [B0, SXF13_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_005
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD13_VCOR_001
- mapping:
- - [B2, SXD13_VCOR_001.sextupole]
- - [A0, SXD13_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_006
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_007
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD13_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF13_HCOR_002
- mapping:
- - [B2, SXF13_HCOR_002.sextupole]
- - [B0, SXF13_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_6_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_6_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_6_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_6_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_006
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_002
- mapping:
- - [B2, SXD1_VCOR_002.sextupole]
- - [A0, SXD1_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_008
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_009
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF1_HCOR_002
- mapping:
- - [B2, SXF1_HCOR_002.sextupole]
- - [B0, SXF1_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_7_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_7_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_7_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_7_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_007
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_003
- mapping:
- - [B2, SXD1_VCOR_003.sextupole]
- - [A0, SXD1_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_010
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_011
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD12_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF12_HCOR_001
- mapping:
- - [B2, SXF12_HCOR_001.sextupole]
- - [B0, SXF12_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_8_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_8_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_8_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_8_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD12_VCOR_001
- mapping:
- - [B2, SXD12_VCOR_001.sextupole]
- - [A0, SXD12_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_008
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH6_COR_001
- mapping:
- - [B2, SH6_COR_001.sextupole]
- - [B0, SH6_COR_001.hcorrector]
- - [A0, SH6_COR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SHD.04-CDLH.09/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_012
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH5_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OH5_QCORROCT_9_001
- mapping:
- - [B3, OH5_QCORROCT_9_001.octupole]
- - [B1, OH5_QCORROCT_9_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OH.03-CQLN.21/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_009
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH4_COR_001
- mapping:
- - [B2, SH4_COR_001.sextupole]
- - [B0, SH4_COR_001.hcorrector]
- - [A0, SH4_COR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH4_QCORROCT_10_QT_001
- mapping:
- - [B3, OH4_QCORROCT_10_QT_001.octupole]
- - [B1, OH4_QCORROCT_10_QT_001.quadrupole]
- - [A1, OH4_QCORROCT_10_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-OCT/OH.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OH.04-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN01-AR/EM-COR/OH.04-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_010
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_011
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH4_QCORROCT_11_QT_001
- mapping:
- - [B3, OH4_QCORROCT_11_QT_001.octupole]
- - [B1, OH4_QCORROCT_11_QT_001.quadrupole]
- - [A1, OH4_QCORROCT_11_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH4_COR_002
- mapping:
- - [B2, SH4_COR_002.sextupole]
- - [B0, SH4_COR_002.hcorrector]
- - [A0, SH4_COR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_012
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH5_QCORROCT_12_001
- mapping:
- - [B3, OH5_QCORROCT_12_001.octupole]
- - [B1, OH5_QCORROCT_12_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.sextupole
- name: SH5_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_013
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH6_COR_002
- mapping:
- - [B2, SH6_COR_002.sextupole]
- - [B0, SH6_COR_002.hcorrector]
- - [A0, SH6_COR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD21_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_13_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_13_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_13_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_13_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF21_HCOR_001
- mapping:
- - [B2, SXF21_HCOR_001.sextupole]
- - [B0, SXF21_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_013
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD21_VCOR_001
- mapping:
- - [B2, SXD21_VCOR_001.sextupole]
- - [A0, SXD21_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_014
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_015
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD2_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_14_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_14_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_14_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_14_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF2_HCOR_001
- mapping:
- - [B2, SXF2_HCOR_001.sextupole]
- - [B0, SXF2_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_014
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD2_VCOR_001
- mapping:
- - [B2, SXD2_VCOR_001.sextupole]
- - [A0, SXD2_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_016
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_017
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD22_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF22_HCOR_001
- mapping:
- - [B2, SXF22_HCOR_001.sextupole]
- - [B0, SXF22_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_15_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_15_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_15_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_15_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD22_VCOR_001
- mapping:
- - [B2, SXD22_VCOR_001.sextupole]
- - [A0, SXD22_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_015
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_001
- mapping:
- - [B2, SH9_COR_001.sextupole]
- - [B0, SH9_COR_001.hcorrector]
- - [A0, SH9_COR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SHD.04-CDLH.06/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SHD.04-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_018
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_019
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.bpm.bpm
- name: BPM_016
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN02-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_001
- mapping:
- - [B2, SH7_COR_001.sextupole]
- - [B0, SH7_COR_001.hcorrector]
- - [A0, SH7_COR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SHF.06-CDLH.07/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/SHF.06-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_16_QT_001
- mapping:
- - [B3, OH7_QCORROCT_16_QT_001.octupole]
- - [B1, OH7_QCORROCT_16_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_16_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OH.03-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN02-AR/EM-COR/OH.03-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_017
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_018
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_17_QT_001
- mapping:
- - [B3, OH7_QCORROCT_17_QT_001.octupole]
- - [B1, OH7_QCORROCT_17_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_17_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_002
- mapping:
- - [B2, SH7_COR_002.sextupole]
- - [B0, SH7_COR_002.hcorrector]
- - [A0, SH7_COR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_019
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_020
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.02/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_021
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_002
- mapping:
- - [B2, SH9_COR_002.sextupole]
- - [B0, SH9_COR_002.hcorrector]
- - [A0, SH9_COR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD31_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_18_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_18_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_18_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_18_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF31_HCOR_001
- mapping:
- - [B2, SXF31_HCOR_001.sextupole]
- - [B0, SXF31_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_020
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD31_VCOR_001
- mapping:
- - [B2, SXD31_VCOR_001.sextupole]
- - [A0, SXD31_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_022
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_023
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_19_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_19_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_19_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_19_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF3_HCOR_001
- mapping:
- - [B2, SXF3_HCOR_001.sextupole]
- - [B0, SXF3_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_021
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_001
- mapping:
- - [B2, SXD3_VCOR_001.sextupole]
- - [A0, SXD3_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_024
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_025
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_20_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_20_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_20_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_20_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF33_HCOR_001
- mapping:
- - [B2, SXF33_HCOR_001.sextupole]
- - [B0, SXF33_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_022
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD33_VCOR_001
- mapping:
- - [B2, SXD33_VCOR_001.sextupole]
- - [A0, SXD33_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_026
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_027
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD33_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF33_HCOR_002
- mapping:
- - [B2, SXF33_HCOR_002.sextupole]
- - [B0, SXF33_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_21_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_21_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_21_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_21_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_023
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_002
- mapping:
- - [B2, SXD3_VCOR_002.sextupole]
- - [A0, SXD3_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_028
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_029
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF3_HCOR_002
- mapping:
- - [B2, SXF3_HCOR_002.sextupole]
- - [B0, SXF3_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_22_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_22_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_22_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_22_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_024
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_003
- mapping:
- - [B2, SXD3_VCOR_003.sextupole]
- - [A0, SXD3_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_030
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_031
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD32_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF32_HCOR_001
- mapping:
- - [B2, SXF32_HCOR_001.sextupole]
- - [B0, SXF32_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_23_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_23_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_23_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_23_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD32_VCOR_001
- mapping:
- - [B2, SXD32_VCOR_001.sextupole]
- - [A0, SXD32_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_025
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_003
- mapping:
- - [B2, SH9_COR_003.sextupole]
- - [B0, SH9_COR_003.hcorrector]
- - [A0, SH9_COR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SHD.04-CDLH.09/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_032
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_033
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/CQLN.21/strength
- unit: 1/m
-- type: pyaml.bpm.bpm
- name: BPM_026
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN03-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_003
- mapping:
- - [B2, SH7_COR_003.sextupole]
- - [B0, SH7_COR_003.hcorrector]
- - [A0, SH7_COR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_24_QT_001
- mapping:
- - [B3, OH7_QCORROCT_24_QT_001.octupole]
- - [B1, OH7_QCORROCT_24_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_24_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OH.02-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN03-AR/EM-COR/OH.02-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_027
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_028
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_25_QT_001
- mapping:
- - [B3, OH7_QCORROCT_25_QT_001.octupole]
- - [B1, OH7_QCORROCT_25_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_25_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_004
- mapping:
- - [B2, SH7_COR_004.sextupole]
- - [B0, SH7_COR_004.hcorrector]
- - [A0, SH7_COR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_029
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_034
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/CQLN.02/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_035
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_004
- mapping:
- - [B2, SH9_COR_004.sextupole]
- - [B0, SH9_COR_004.hcorrector]
- - [A0, SH9_COR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD41_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_26_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_26_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_26_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_26_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF41_HCOR_001
- mapping:
- - [B2, SXF41_HCOR_001.sextupole]
- - [B0, SXF41_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_030
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD41_VCOR_001
- mapping:
- - [B2, SXD41_VCOR_001.sextupole]
- - [A0, SXD41_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_036
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_037
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD4_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF4_HCOR_001
- mapping:
- - [B2, SXF4_HCOR_001.sextupole]
- - [B0, SXF4_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_27_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_27_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_27_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_27_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_031
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD4_VCOR_001
- mapping:
- - [B2, SXD4_VCOR_001.sextupole]
- - [A0, SXD4_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_038
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_039
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD42_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF42_HCOR_001
- mapping:
- - [B2, SXF42_HCOR_001.sextupole]
- - [B0, SXF42_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_28_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_28_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_28_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_28_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD42_VCOR_001
- mapping:
- - [B2, SXD42_VCOR_001.sextupole]
- - [A0, SXD42_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_032
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH12_COR_001
- mapping:
- - [B2, SH12_COR_001.sextupole]
- - [B0, SH12_COR_001.hcorrector]
- - [A0, SH12_COR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SHD.04-CDLH.06/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SHD.04-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_040
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH11_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OH11_QCORROCT_29_001
- mapping:
- - [B3, OH11_QCORROCT_29_001.octupole]
- - [B1, OH11_QCORROCT_29_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OH.02-CQLN.12/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_033
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN04-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH10_COR_001
- mapping:
- - [B2, SH10_COR_001.sextupole]
- - [B0, SH10_COR_001.hcorrector]
- - [A0, SH10_COR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SHF.06-CDLH.07/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/SHF.06-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH10_QCORROCT_30_QT_001
- mapping:
- - [B3, OH10_QCORROCT_30_QT_001.octupole]
- - [B1, OH10_QCORROCT_30_QT_001.quadrupole]
- - [A1, OH10_QCORROCT_30_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OH.03-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN04-AR/EM-COR/OH.03-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_034
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_035
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH10_QCORROCT_31_QT_001
- mapping:
- - [B3, OH10_QCORROCT_31_QT_001.octupole]
- - [B1, OH10_QCORROCT_31_QT_001.quadrupole]
- - [A1, OH10_QCORROCT_31_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH10_COR_002
- mapping:
- - [B2, SH10_COR_002.sextupole]
- - [B0, SH10_COR_002.hcorrector]
- - [A0, SH10_COR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_036
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH11_QCORROCT_32_001
- mapping:
- - [B3, OH11_QCORROCT_32_001.octupole]
- - [B1, OH11_QCORROCT_32_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.sextupole
- name: SH11_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_041
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH12_COR_002
- mapping:
- - [B2, SH12_COR_002.sextupole]
- - [B0, SH12_COR_002.hcorrector]
- - [A0, SH12_COR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD51_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_33_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_33_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_33_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_33_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF51_HCOR_001
- mapping:
- - [B2, SXF51_HCOR_001.sextupole]
- - [B0, SXF51_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_037
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD51_VCOR_001
- mapping:
- - [B2, SXD51_VCOR_001.sextupole]
- - [A0, SXD51_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_042
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_043
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_34_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_34_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_34_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_34_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF5_HCOR_001
- mapping:
- - [B2, SXF5_HCOR_001.sextupole]
- - [B0, SXF5_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_038
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_001
- mapping:
- - [B2, SXD5_VCOR_001.sextupole]
- - [A0, SXD5_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_044
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_045
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_35_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_35_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_35_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_35_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF53_HCOR_001
- mapping:
- - [B2, SXF53_HCOR_001.sextupole]
- - [B0, SXF53_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_039
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD53_VCOR_001
- mapping:
- - [B2, SXD53_VCOR_001.sextupole]
- - [A0, SXD53_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_046
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_047
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD53_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF53_HCOR_002
- mapping:
- - [B2, SXF53_HCOR_002.sextupole]
- - [B0, SXF53_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_36_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_36_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_36_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_36_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_040
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_002
- mapping:
- - [B2, SXD5_VCOR_002.sextupole]
- - [A0, SXD5_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_048
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_049
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF5_HCOR_002
- mapping:
- - [B2, SXF5_HCOR_002.sextupole]
- - [B0, SXF5_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_37_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_37_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_37_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_37_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_041
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_003
- mapping:
- - [B2, SXD5_VCOR_003.sextupole]
- - [A0, SXD5_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_050
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_051
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD52_001
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF52_HCOR_001
- mapping:
- - [B2, SXF52_HCOR_001.sextupole]
- - [B0, SXF52_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_38_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_38_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_38_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_38_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD52_VCOR_001
- mapping:
- - [B2, SXD52_VCOR_001.sextupole]
- - [A0, SXD52_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_042
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_052
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH15_VCOR_001
- mapping:
- - [B2, SH15_VCOR_001.sextupole]
- - [A0, SH15_VCOR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_043
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN05-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH14_HCOR_001
- mapping:
- - [B2, SH14_HCOR_001.sextupole]
- - [B0, SH14_HCOR_001.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SHD.05-CDLH.09/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH14_QCORROCT_39_001
- mapping:
- - [B3, OH14_QCORROCT_39_001.octupole]
- - [B1, OH14_QCORROCT_39_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OH.03-CQLN.21/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH13_COR_001
- mapping:
- - [B2, SH13_COR_001.sextupole]
- - [B0, SH13_COR_001.hcorrector]
- - [A0, SH13_COR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH13_QCORROCT_40_QT_001
- mapping:
- - [B3, OH13_QCORROCT_40_QT_001.octupole]
- - [B1, OH13_QCORROCT_40_QT_001.quadrupole]
- - [A1, OH13_QCORROCT_40_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-OCT/OH.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OH.04-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN05-AR/EM-COR/OH.04-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_044
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_045
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH16_QCORROCT_41_001
- mapping:
- - [B3, OH16_QCORROCT_41_001.octupole]
- - [B1, OH16_QCORROCT_41_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH16_COR_001
- mapping:
- - [B2, SH16_COR_001.sextupole]
- - [B0, SH16_COR_001.hcorrector]
- - [A0, SH16_COR_001.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-SX/SHD.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-COR/SHD.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-COR/SHD.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: SH16_COR_002
- mapping:
- - [B2, SH16_COR_002.sextupole]
- - [B0, SH16_COR_002.hcorrector]
- - [A0, SH16_COR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-SX/SHD.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-COR/SHD.02-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-COR/SHD.02-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH16_QCORROCT_42_001
- mapping:
- - [B3, OH16_QCORROCT_42_001.octupole]
- - [B1, OH16_QCORROCT_42_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-SD/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_046
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-SD/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-SD/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_047
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-SD/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-SD/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH13_QCORROCT_43_QT_001
- mapping:
- - [B3, OH13_QCORROCT_43_QT_001.octupole]
- - [B1, OH13_QCORROCT_43_QT_001.quadrupole]
- - [A1, OH13_QCORROCT_43_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH13_COR_002
- mapping:
- - [B2, SH13_COR_002.sextupole]
- - [B0, SH13_COR_002.hcorrector]
- - [A0, SH13_COR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SHF.01-CDLH.03/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SHF.01-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH14_QCORROCT_44_001
- mapping:
- - [B3, OH14_QCORROCT_44_001.octupole]
- - [B1, OH14_QCORROCT_44_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH14_HCOR_002
- mapping:
- - [B2, SH14_HCOR_002.sextupole]
- - [B0, SH14_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SHD.02-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_048
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH15_VCOR_002
- mapping:
- - [B2, SH15_VCOR_002.sextupole]
- - [A0, SH15_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SHD.03-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_053
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD52_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_45_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_45_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_45_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_45_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF52_HCOR_002
- mapping:
- - [B2, SXF52_HCOR_002.sextupole]
- - [B0, SXF52_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCF.02-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_049
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD52_VCOR_002
- mapping:
- - [B2, SXD52_VCOR_002.sextupole]
- - [A0, SXD52_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCD.03-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_054
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_055
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_46_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_46_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_46_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_46_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF5_HCOR_003
- mapping:
- - [B2, SXF5_HCOR_003.sextupole]
- - [B0, SXF5_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCF.05-CDLH.06/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_050
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_004
- mapping:
- - [B2, SXD5_VCOR_004.sextupole]
- - [A0, SXD5_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCD.06-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_056
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_057
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_005
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_47_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_47_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_47_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_47_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF53_HCOR_003
- mapping:
- - [B2, SXF53_HCOR_003.sextupole]
- - [B0, SXF53_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCF.08-CDLH.07/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_051
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD53_VCOR_002
- mapping:
- - [B2, SXD53_VCOR_002.sextupole]
- - [A0, SXD53_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCD.09-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_058
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_059
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD53_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF53_HCOR_004
- mapping:
- - [B2, SXF53_HCOR_004.sextupole]
- - [B0, SXF53_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCF.11-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_48_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_48_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_48_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_48_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_052
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_005
- mapping:
- - [B2, SXD5_VCOR_005.sextupole]
- - [A0, SXD5_VCOR_005.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCD.12-CDLV.08/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_060
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_061
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_006
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF5_HCOR_004
- mapping:
- - [B2, SXF5_HCOR_004.sextupole]
- - [B0, SXF5_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCF.14-CDLH.09/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_49_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_49_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_49_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_49_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_053
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_006
- mapping:
- - [B2, SXD5_VCOR_006.sextupole]
- - [A0, SXD5_VCOR_006.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCD.15-CDLV.09/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_062
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_063
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD51_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF51_HCOR_002
- mapping:
- - [B2, SXF51_HCOR_002.sextupole]
- - [B0, SXF51_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCF.17-CDLH.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_50_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_50_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_50_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_50_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD51_VCOR_002
- mapping:
- - [B2, SXD51_VCOR_002.sextupole]
- - [A0, SXD51_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SCD.18-CDLV.10/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_054
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.11/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.11/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH12_COR_003
- mapping:
- - [B2, SH12_COR_003.sextupole]
- - [B0, SH12_COR_003.hcorrector]
- - [A0, SH12_COR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SHD.04-CDLH.11/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SHD.04-CDLV.11/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_064
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH11_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OH11_QCORROCT_51_001
- mapping:
- - [B3, OH11_QCORROCT_51_001.octupole]
- - [B1, OH11_QCORROCT_51_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OH.03-CQLN.21/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_055
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.12/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN06-AR/DG-EPOS/BPM.12/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH10_COR_003
- mapping:
- - [B2, SH10_COR_003.sextupole]
- - [B0, SH10_COR_003.hcorrector]
- - [A0, SH10_COR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SHF.06-CDLH.12/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/SHF.06-CDLV.12/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH10_QCORROCT_52_QT_001
- mapping:
- - [B3, OH10_QCORROCT_52_QT_001.octupole]
- - [B1, OH10_QCORROCT_52_QT_001.quadrupole]
- - [A1, OH10_QCORROCT_52_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-OCT/OH.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OH.04-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN06-AR/EM-COR/OH.04-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_056
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_057
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH10_QCORROCT_53_QT_001
- mapping:
- - [B3, OH10_QCORROCT_53_QT_001.octupole]
- - [B1, OH10_QCORROCT_53_QT_001.quadrupole]
- - [A1, OH10_QCORROCT_53_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH10_COR_004
- mapping:
- - [B2, SH10_COR_004.sextupole]
- - [B0, SH10_COR_004.hcorrector]
- - [A0, SH10_COR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_058
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH11_QCORROCT_54_001
- mapping:
- - [B3, OH11_QCORROCT_54_001.octupole]
- - [B1, OH11_QCORROCT_54_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.sextupole
- name: SH11_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_065
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH12_COR_004
- mapping:
- - [B2, SH12_COR_004.sextupole]
- - [B0, SH12_COR_004.hcorrector]
- - [A0, SH12_COR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD42_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_55_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_55_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_55_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_55_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF42_HCOR_002
- mapping:
- - [B2, SXF42_HCOR_002.sextupole]
- - [B0, SXF42_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_059
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD42_VCOR_002
- mapping:
- - [B2, SXD42_VCOR_002.sextupole]
- - [A0, SXD42_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_066
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_067
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD4_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_56_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_56_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_56_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_56_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF4_HCOR_002
- mapping:
- - [B2, SXF4_HCOR_002.sextupole]
- - [B0, SXF4_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_060
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD4_VCOR_002
- mapping:
- - [B2, SXD4_VCOR_002.sextupole]
- - [A0, SXD4_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_068
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_069
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD41_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF41_HCOR_002
- mapping:
- - [B2, SXF41_HCOR_002.sextupole]
- - [B0, SXF41_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_57_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_57_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_57_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_57_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD41_VCOR_002
- mapping:
- - [B2, SXD41_VCOR_002.sextupole]
- - [A0, SXD41_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_061
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_005
- mapping:
- - [B2, SH9_COR_005.sextupole]
- - [B0, SH9_COR_005.hcorrector]
- - [A0, SH9_COR_005.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SHD.04-CDLH.06/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SHD.04-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_070
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_005
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_071
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.bpm.bpm
- name: BPM_062
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN07-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_005
- mapping:
- - [B2, SH7_COR_005.sextupole]
- - [B0, SH7_COR_005.hcorrector]
- - [A0, SH7_COR_005.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SHF.06-CDLH.07/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/SHF.06-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_58_QT_001
- mapping:
- - [B3, OH7_QCORROCT_58_QT_001.octupole]
- - [B1, OH7_QCORROCT_58_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_58_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OH.03-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN07-AR/EM-COR/OH.03-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_063
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_064
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_59_QT_001
- mapping:
- - [B3, OH7_QCORROCT_59_QT_001.octupole]
- - [B1, OH7_QCORROCT_59_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_59_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_006
- mapping:
- - [B2, SH7_COR_006.sextupole]
- - [B0, SH7_COR_006.hcorrector]
- - [A0, SH7_COR_006.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_065
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_072
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.02/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_006
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_073
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_006
- mapping:
- - [B2, SH9_COR_006.sextupole]
- - [B0, SH9_COR_006.hcorrector]
- - [A0, SH9_COR_006.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD32_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_60_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_60_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_60_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_60_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF32_HCOR_002
- mapping:
- - [B2, SXF32_HCOR_002.sextupole]
- - [B0, SXF32_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_066
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD32_VCOR_002
- mapping:
- - [B2, SXD32_VCOR_002.sextupole]
- - [A0, SXD32_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_074
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_075
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_61_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_61_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_61_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_61_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF3_HCOR_003
- mapping:
- - [B2, SXF3_HCOR_003.sextupole]
- - [B0, SXF3_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_067
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_004
- mapping:
- - [B2, SXD3_VCOR_004.sextupole]
- - [A0, SXD3_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_076
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_077
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_005
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_62_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_62_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_62_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_62_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF33_HCOR_003
- mapping:
- - [B2, SXF33_HCOR_003.sextupole]
- - [B0, SXF33_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_068
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD33_VCOR_002
- mapping:
- - [B2, SXD33_VCOR_002.sextupole]
- - [A0, SXD33_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_078
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_079
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD33_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF33_HCOR_004
- mapping:
- - [B2, SXF33_HCOR_004.sextupole]
- - [B0, SXF33_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_63_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_63_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_63_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_63_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_069
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_005
- mapping:
- - [B2, SXD3_VCOR_005.sextupole]
- - [A0, SXD3_VCOR_005.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_080
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_081
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_006
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF3_HCOR_004
- mapping:
- - [B2, SXF3_HCOR_004.sextupole]
- - [B0, SXF3_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_64_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_64_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_64_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_64_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_070
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_006
- mapping:
- - [B2, SXD3_VCOR_006.sextupole]
- - [A0, SXD3_VCOR_006.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_082
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_083
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD31_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF31_HCOR_002
- mapping:
- - [B2, SXF31_HCOR_002.sextupole]
- - [B0, SXF31_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_65_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_65_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_65_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_65_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD31_VCOR_002
- mapping:
- - [B2, SXD31_VCOR_002.sextupole]
- - [A0, SXD31_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_071
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_007
- mapping:
- - [B2, SH9_COR_007.sextupole]
- - [B0, SH9_COR_007.hcorrector]
- - [A0, SH9_COR_007.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SHD.04-CDLH.09/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_084
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_007
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_085
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/CQLN.21/strength
- unit: 1/m
-- type: pyaml.bpm.bpm
- name: BPM_072
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN08-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_007
- mapping:
- - [B2, SH7_COR_007.sextupole]
- - [B0, SH7_COR_007.hcorrector]
- - [A0, SH7_COR_007.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_66_QT_001
- mapping:
- - [B3, OH7_QCORROCT_66_QT_001.octupole]
- - [B1, OH7_QCORROCT_66_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_66_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OH.02-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN08-AR/EM-COR/OH.02-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_073
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_074
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_67_QT_001
- mapping:
- - [B3, OH7_QCORROCT_67_QT_001.octupole]
- - [B1, OH7_QCORROCT_67_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_67_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_008
- mapping:
- - [B2, SH7_COR_008.sextupole]
- - [B0, SH7_COR_008.hcorrector]
- - [A0, SH7_COR_008.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_075
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_086
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/CQLN.02/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_008
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_087
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_008
- mapping:
- - [B2, SH9_COR_008.sextupole]
- - [B0, SH9_COR_008.hcorrector]
- - [A0, SH9_COR_008.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD22_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_68_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_68_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_68_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_68_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF22_HCOR_002
- mapping:
- - [B2, SXF22_HCOR_002.sextupole]
- - [B0, SXF22_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_076
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD22_VCOR_002
- mapping:
- - [B2, SXD22_VCOR_002.sextupole]
- - [A0, SXD22_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_088
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_089
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD2_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF2_HCOR_002
- mapping:
- - [B2, SXF2_HCOR_002.sextupole]
- - [B0, SXF2_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_69_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_69_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_69_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_69_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_077
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD2_VCOR_002
- mapping:
- - [B2, SXD2_VCOR_002.sextupole]
- - [A0, SXD2_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_090
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_091
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD21_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF21_HCOR_002
- mapping:
- - [B2, SXF21_HCOR_002.sextupole]
- - [B0, SXF21_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_70_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_70_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_70_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_70_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD21_VCOR_002
- mapping:
- - [B2, SXD21_VCOR_002.sextupole]
- - [A0, SXD21_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_078
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH6_COR_003
- mapping:
- - [B2, SH6_COR_003.sextupole]
- - [B0, SH6_COR_003.hcorrector]
- - [A0, SH6_COR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SHD.04-CDLH.06/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SHD.04-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_092
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH5_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OH5_QCORROCT_71_001
- mapping:
- - [B3, OH5_QCORROCT_71_001.octupole]
- - [B1, OH5_QCORROCT_71_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OH.02-CQLN.12/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_079
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN09-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH4_COR_003
- mapping:
- - [B2, SH4_COR_003.sextupole]
- - [B0, SH4_COR_003.hcorrector]
- - [A0, SH4_COR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SHF.06-CDLH.07/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/SHF.06-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH4_QCORROCT_72_QT_001
- mapping:
- - [B3, OH4_QCORROCT_72_QT_001.octupole]
- - [B1, OH4_QCORROCT_72_QT_001.quadrupole]
- - [A1, OH4_QCORROCT_72_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OH.03-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN09-AR/EM-COR/OH.03-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_080
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_081
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH4_QCORROCT_73_QT_001
- mapping:
- - [B3, OH4_QCORROCT_73_QT_001.octupole]
- - [B1, OH4_QCORROCT_73_QT_001.quadrupole]
- - [A1, OH4_QCORROCT_73_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH4_COR_004
- mapping:
- - [B2, SH4_COR_004.sextupole]
- - [B0, SH4_COR_004.hcorrector]
- - [A0, SH4_COR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_082
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH5_QCORROCT_74_001
- mapping:
- - [B3, OH5_QCORROCT_74_001.octupole]
- - [B1, OH5_QCORROCT_74_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.sextupole
- name: SH5_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_093
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH6_COR_004
- mapping:
- - [B2, SH6_COR_004.sextupole]
- - [B0, SH6_COR_004.hcorrector]
- - [A0, SH6_COR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD12_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_75_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_75_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_75_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_75_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF12_HCOR_002
- mapping:
- - [B2, SXF12_HCOR_002.sextupole]
- - [B0, SXF12_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_083
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD12_VCOR_002
- mapping:
- - [B2, SXD12_VCOR_002.sextupole]
- - [A0, SXD12_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_094
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_095
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_76_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_76_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_76_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_76_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF1_HCOR_003
- mapping:
- - [B2, SXF1_HCOR_003.sextupole]
- - [B0, SXF1_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_084
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_004
- mapping:
- - [B2, SXD1_VCOR_004.sextupole]
- - [A0, SXD1_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_096
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_097
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_005
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_77_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_77_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_77_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_77_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF13_HCOR_003
- mapping:
- - [B2, SXF13_HCOR_003.sextupole]
- - [B0, SXF13_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_085
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD13_VCOR_002
- mapping:
- - [B2, SXD13_VCOR_002.sextupole]
- - [A0, SXD13_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_098
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_099
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD13_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF13_HCOR_004
- mapping:
- - [B2, SXF13_HCOR_004.sextupole]
- - [B0, SXF13_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_78_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_78_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_78_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_78_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_086
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_005
- mapping:
- - [B2, SXD1_VCOR_005.sextupole]
- - [A0, SXD1_VCOR_005.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_100
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_101
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_006
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF1_HCOR_004
- mapping:
- - [B2, SXF1_HCOR_004.sextupole]
- - [B0, SXF1_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_79_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_79_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_79_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_79_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_087
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_006
- mapping:
- - [B2, SXD1_VCOR_006.sextupole]
- - [A0, SXD1_VCOR_006.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_102
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_103
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD11_002
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF11_HCOR_002
- mapping:
- - [B2, SXF11_HCOR_002.sextupole]
- - [B0, SXF11_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_80_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_80_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_80_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_80_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD11_VCOR_002
- mapping:
- - [B2, SXD11_VCOR_002.sextupole]
- - [A0, SXD11_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_088
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_104
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH3_VCOR_002
- mapping:
- - [B2, SH3_VCOR_002.sextupole]
- - [A0, SH3_VCOR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_089
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN10-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH2_QCORROCT_81_001
- mapping:
- - [B3, OH2_QCORROCT_81_001.octupole]
- - [B1, OH2_QCORROCT_81_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OH.03-CQLN.21/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH2_HCOR_002
- mapping:
- - [B2, SH2_HCOR_002.sextupole]
- - [B0, SH2_HCOR_002.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SHD.05-CDLH.09/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH1_QCORROCT_82_QT_001
- mapping:
- - [B3, OH1_QCORROCT_82_QT_001.octupole]
- - [B1, OH1_QCORROCT_82_QT_001.quadrupole]
- - [A1, OH1_QCORROCT_82_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-OCT/OH.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OH.04-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/OH.04-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH1_COR_002
- mapping:
- - [B2, SH1_COR_002.sextupole]
- - [B0, SH1_COR_002.hcorrector]
- - [A0, SH1_COR_002.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN10-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_090
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_091
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH1_COR_003
- mapping:
- - [B2, SH1_COR_003.sextupole]
- - [B0, SH1_COR_003.hcorrector]
- - [A0, SH1_COR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH1_QCORROCT_83_QT_001
- mapping:
- - [B3, OH1_QCORROCT_83_QT_001.octupole]
- - [B1, OH1_QCORROCT_83_QT_001.quadrupole]
- - [A1, OH1_QCORROCT_83_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH2_HCOR_003
- mapping:
- - [B2, SH2_HCOR_003.sextupole]
- - [B0, SH2_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SHD.02-CDLH.02/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH2_QCORROCT_84_001
- mapping:
- - [B3, OH2_QCORROCT_84_001.octupole]
- - [B1, OH2_QCORROCT_84_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_092
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH3_VCOR_003
- mapping:
- - [B2, SH3_VCOR_003.sextupole]
- - [A0, SH3_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_105
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD11_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_85_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_85_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_85_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_85_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF11_HCOR_003
- mapping:
- - [B2, SXF11_HCOR_003.sextupole]
- - [B0, SXF11_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_093
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD11_VCOR_003
- mapping:
- - [B2, SXD11_VCOR_003.sextupole]
- - [A0, SXD11_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_106
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_107
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_007
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_86_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_86_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_86_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_86_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF1_HCOR_005
- mapping:
- - [B2, SXF1_HCOR_005.sextupole]
- - [B0, SXF1_HCOR_005.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_094
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_007
- mapping:
- - [B2, SXD1_VCOR_007.sextupole]
- - [A0, SXD1_VCOR_007.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_108
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_109
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_008
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_87_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_87_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_87_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_87_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF13_HCOR_005
- mapping:
- - [B2, SXF13_HCOR_005.sextupole]
- - [B0, SXF13_HCOR_005.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_095
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD13_VCOR_003
- mapping:
- - [B2, SXD13_VCOR_003.sextupole]
- - [A0, SXD13_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_110
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_111
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD13_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF13_HCOR_006
- mapping:
- - [B2, SXF13_HCOR_006.sextupole]
- - [B0, SXF13_HCOR_006.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_88_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_88_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_88_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_88_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_096
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_008
- mapping:
- - [B2, SXD1_VCOR_008.sextupole]
- - [A0, SXD1_VCOR_008.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_112
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_113
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_009
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF1_HCOR_006
- mapping:
- - [B2, SXF1_HCOR_006.sextupole]
- - [B0, SXF1_HCOR_006.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_89_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_89_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_89_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_89_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_097
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_009
- mapping:
- - [B2, SXD1_VCOR_009.sextupole]
- - [A0, SXD1_VCOR_009.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_114
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_115
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD12_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF12_HCOR_003
- mapping:
- - [B2, SXF12_HCOR_003.sextupole]
- - [B0, SXF12_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_90_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_90_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_90_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_90_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD12_VCOR_003
- mapping:
- - [B2, SXD12_VCOR_003.sextupole]
- - [A0, SXD12_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_098
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH6_COR_005
- mapping:
- - [B2, SH6_COR_005.sextupole]
- - [B0, SH6_COR_005.hcorrector]
- - [A0, SH6_COR_005.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SHD.04-CDLH.09/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_116
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH5_005
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OH5_QCORROCT_91_001
- mapping:
- - [B3, OH5_QCORROCT_91_001.octupole]
- - [B1, OH5_QCORROCT_91_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OH.03-CQLN.21/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_099
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN11-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH4_COR_005
- mapping:
- - [B2, SH4_COR_005.sextupole]
- - [B0, SH4_COR_005.hcorrector]
- - [A0, SH4_COR_005.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH4_QCORROCT_92_QT_001
- mapping:
- - [B3, OH4_QCORROCT_92_QT_001.octupole]
- - [B1, OH4_QCORROCT_92_QT_001.quadrupole]
- - [A1, OH4_QCORROCT_92_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-OCT/OH.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OH.04-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN11-AR/EM-COR/OH.04-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_100
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_101
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH4_QCORROCT_93_QT_001
- mapping:
- - [B3, OH4_QCORROCT_93_QT_001.octupole]
- - [B1, OH4_QCORROCT_93_QT_001.quadrupole]
- - [A1, OH4_QCORROCT_93_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH4_COR_006
- mapping:
- - [B2, SH4_COR_006.sextupole]
- - [B0, SH4_COR_006.hcorrector]
- - [A0, SH4_COR_006.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_102
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH5_QCORROCT_94_001
- mapping:
- - [B3, OH5_QCORROCT_94_001.octupole]
- - [B1, OH5_QCORROCT_94_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.sextupole
- name: SH5_006
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_117
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH6_COR_006
- mapping:
- - [B2, SH6_COR_006.sextupole]
- - [B0, SH6_COR_006.hcorrector]
- - [A0, SH6_COR_006.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD21_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_95_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_95_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_95_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_95_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF21_HCOR_003
- mapping:
- - [B2, SXF21_HCOR_003.sextupole]
- - [B0, SXF21_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_103
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD21_VCOR_003
- mapping:
- - [B2, SXD21_VCOR_003.sextupole]
- - [A0, SXD21_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_118
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_119
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD2_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_96_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_96_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_96_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_96_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF2_HCOR_003
- mapping:
- - [B2, SXF2_HCOR_003.sextupole]
- - [B0, SXF2_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_104
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD2_VCOR_003
- mapping:
- - [B2, SXD2_VCOR_003.sextupole]
- - [A0, SXD2_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_120
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_121
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD22_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF22_HCOR_003
- mapping:
- - [B2, SXF22_HCOR_003.sextupole]
- - [B0, SXF22_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_97_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_97_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_97_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_97_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD22_VCOR_003
- mapping:
- - [B2, SXD22_VCOR_003.sextupole]
- - [A0, SXD22_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_105
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_009
- mapping:
- - [B2, SH9_COR_009.sextupole]
- - [B0, SH9_COR_009.hcorrector]
- - [A0, SH9_COR_009.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SHD.04-CDLH.06/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SHD.04-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_122
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_009
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_123
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.bpm.bpm
- name: BPM_106
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN12-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_009
- mapping:
- - [B2, SH7_COR_009.sextupole]
- - [B0, SH7_COR_009.hcorrector]
- - [A0, SH7_COR_009.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SHF.06-CDLH.07/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/SHF.06-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_98_QT_001
- mapping:
- - [B3, OH7_QCORROCT_98_QT_001.octupole]
- - [B1, OH7_QCORROCT_98_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_98_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OH.03-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN12-AR/EM-COR/OH.03-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_107
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_108
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_99_QT_001
- mapping:
- - [B3, OH7_QCORROCT_99_QT_001.octupole]
- - [B1, OH7_QCORROCT_99_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_99_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_010
- mapping:
- - [B2, SH7_COR_010.sextupole]
- - [B0, SH7_COR_010.hcorrector]
- - [A0, SH7_COR_010.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_109
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_124
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.02/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_010
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_125
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_010
- mapping:
- - [B2, SH9_COR_010.sextupole]
- - [B0, SH9_COR_010.hcorrector]
- - [A0, SH9_COR_010.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD31_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_100_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_100_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_100_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_100_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF31_HCOR_003
- mapping:
- - [B2, SXF31_HCOR_003.sextupole]
- - [B0, SXF31_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_110
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD31_VCOR_003
- mapping:
- - [B2, SXD31_VCOR_003.sextupole]
- - [A0, SXD31_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_126
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_127
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_007
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_101_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_101_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_101_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_101_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF3_HCOR_005
- mapping:
- - [B2, SXF3_HCOR_005.sextupole]
- - [B0, SXF3_HCOR_005.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_111
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_007
- mapping:
- - [B2, SXD3_VCOR_007.sextupole]
- - [A0, SXD3_VCOR_007.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_128
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_129
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_008
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_102_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_102_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_102_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_102_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF33_HCOR_005
- mapping:
- - [B2, SXF33_HCOR_005.sextupole]
- - [B0, SXF33_HCOR_005.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_112
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD33_VCOR_003
- mapping:
- - [B2, SXD33_VCOR_003.sextupole]
- - [A0, SXD33_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_130
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_131
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD33_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF33_HCOR_006
- mapping:
- - [B2, SXF33_HCOR_006.sextupole]
- - [B0, SXF33_HCOR_006.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_103_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_103_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_103_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_103_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_113
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_008
- mapping:
- - [B2, SXD3_VCOR_008.sextupole]
- - [A0, SXD3_VCOR_008.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_132
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_133
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_009
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF3_HCOR_006
- mapping:
- - [B2, SXF3_HCOR_006.sextupole]
- - [B0, SXF3_HCOR_006.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_104_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_104_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_104_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_104_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_114
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_009
- mapping:
- - [B2, SXD3_VCOR_009.sextupole]
- - [A0, SXD3_VCOR_009.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_134
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_135
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD32_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF32_HCOR_003
- mapping:
- - [B2, SXF32_HCOR_003.sextupole]
- - [B0, SXF32_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_105_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_105_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_105_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_105_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD32_VCOR_003
- mapping:
- - [B2, SXD32_VCOR_003.sextupole]
- - [A0, SXD32_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_115
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_011
- mapping:
- - [B2, SH9_COR_011.sextupole]
- - [B0, SH9_COR_011.hcorrector]
- - [A0, SH9_COR_011.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SHD.04-CDLH.09/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_136
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_011
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_137
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/CQLN.21/strength
- unit: 1/m
-- type: pyaml.bpm.bpm
- name: BPM_116
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN13-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_011
- mapping:
- - [B2, SH7_COR_011.sextupole]
- - [B0, SH7_COR_011.hcorrector]
- - [A0, SH7_COR_011.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_106_QT_001
- mapping:
- - [B3, OH7_QCORROCT_106_QT_001.octupole]
- - [B1, OH7_QCORROCT_106_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_106_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OH.02-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN13-AR/EM-COR/OH.02-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_117
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_118
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_107_QT_001
- mapping:
- - [B3, OH7_QCORROCT_107_QT_001.octupole]
- - [B1, OH7_QCORROCT_107_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_107_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_012
- mapping:
- - [B2, SH7_COR_012.sextupole]
- - [B0, SH7_COR_012.hcorrector]
- - [A0, SH7_COR_012.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_119
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_138
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/CQLN.02/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_012
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_139
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_012
- mapping:
- - [B2, SH9_COR_012.sextupole]
- - [B0, SH9_COR_012.hcorrector]
- - [A0, SH9_COR_012.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD41_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_108_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_108_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_108_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_108_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF41_HCOR_003
- mapping:
- - [B2, SXF41_HCOR_003.sextupole]
- - [B0, SXF41_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_120
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD41_VCOR_003
- mapping:
- - [B2, SXD41_VCOR_003.sextupole]
- - [A0, SXD41_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_140
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_141
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD4_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF4_HCOR_003
- mapping:
- - [B2, SXF4_HCOR_003.sextupole]
- - [B0, SXF4_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_109_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_109_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_109_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_109_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_121
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD4_VCOR_003
- mapping:
- - [B2, SXD4_VCOR_003.sextupole]
- - [A0, SXD4_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_142
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_143
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD42_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF42_HCOR_003
- mapping:
- - [B2, SXF42_HCOR_003.sextupole]
- - [B0, SXF42_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_110_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_110_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_110_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_110_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD42_VCOR_003
- mapping:
- - [B2, SXD42_VCOR_003.sextupole]
- - [A0, SXD42_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_122
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH12_COR_005
- mapping:
- - [B2, SH12_COR_005.sextupole]
- - [B0, SH12_COR_005.hcorrector]
- - [A0, SH12_COR_005.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SHD.04-CDLH.06/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SHD.04-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_144
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH11_005
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OH11_QCORROCT_111_001
- mapping:
- - [B3, OH11_QCORROCT_111_001.octupole]
- - [B1, OH11_QCORROCT_111_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OH.02-CQLN.12/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_123
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN14-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH10_COR_005
- mapping:
- - [B2, SH10_COR_005.sextupole]
- - [B0, SH10_COR_005.hcorrector]
- - [A0, SH10_COR_005.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SHF.06-CDLH.07/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/SHF.06-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH10_QCORROCT_112_QT_001
- mapping:
- - [B3, OH10_QCORROCT_112_QT_001.octupole]
- - [B1, OH10_QCORROCT_112_QT_001.quadrupole]
- - [A1, OH10_QCORROCT_112_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OH.03-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN14-AR/EM-COR/OH.03-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_124
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_125
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH10_QCORROCT_113_QT_001
- mapping:
- - [B3, OH10_QCORROCT_113_QT_001.octupole]
- - [B1, OH10_QCORROCT_113_QT_001.quadrupole]
- - [A1, OH10_QCORROCT_113_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH10_COR_006
- mapping:
- - [B2, SH10_COR_006.sextupole]
- - [B0, SH10_COR_006.hcorrector]
- - [A0, SH10_COR_006.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_126
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH11_QCORROCT_114_001
- mapping:
- - [B3, OH11_QCORROCT_114_001.octupole]
- - [B1, OH11_QCORROCT_114_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.sextupole
- name: SH11_006
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_145
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH12_COR_006
- mapping:
- - [B2, SH12_COR_006.sextupole]
- - [B0, SH12_COR_006.hcorrector]
- - [A0, SH12_COR_006.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD51_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_115_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_115_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_115_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_115_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF51_HCOR_003
- mapping:
- - [B2, SXF51_HCOR_003.sextupole]
- - [B0, SXF51_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_127
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD51_VCOR_003
- mapping:
- - [B2, SXD51_VCOR_003.sextupole]
- - [A0, SXD51_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_146
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_147
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_007
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_116_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_116_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_116_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_116_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF5_HCOR_005
- mapping:
- - [B2, SXF5_HCOR_005.sextupole]
- - [B0, SXF5_HCOR_005.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_128
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_007
- mapping:
- - [B2, SXD5_VCOR_007.sextupole]
- - [A0, SXD5_VCOR_007.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_148
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_149
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_008
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_117_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_117_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_117_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_117_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF53_HCOR_005
- mapping:
- - [B2, SXF53_HCOR_005.sextupole]
- - [B0, SXF53_HCOR_005.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_129
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD53_VCOR_003
- mapping:
- - [B2, SXD53_VCOR_003.sextupole]
- - [A0, SXD53_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_150
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_151
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD53_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF53_HCOR_006
- mapping:
- - [B2, SXF53_HCOR_006.sextupole]
- - [B0, SXF53_HCOR_006.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_118_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_118_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_118_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_118_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_130
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_008
- mapping:
- - [B2, SXD5_VCOR_008.sextupole]
- - [A0, SXD5_VCOR_008.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_152
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_153
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_009
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF5_HCOR_006
- mapping:
- - [B2, SXF5_HCOR_006.sextupole]
- - [B0, SXF5_HCOR_006.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_119_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_119_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_119_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_119_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_131
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_009
- mapping:
- - [B2, SXD5_VCOR_009.sextupole]
- - [A0, SXD5_VCOR_009.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_154
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_155
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD52_003
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF52_HCOR_003
- mapping:
- - [B2, SXF52_HCOR_003.sextupole]
- - [B0, SXF52_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_120_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_120_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_120_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_120_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD52_VCOR_003
- mapping:
- - [B2, SXD52_VCOR_003.sextupole]
- - [A0, SXD52_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_132
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_156
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH15_VCOR_003
- mapping:
- - [B2, SH15_VCOR_003.sextupole]
- - [A0, SH15_VCOR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_133
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN15-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH14_HCOR_003
- mapping:
- - [B2, SH14_HCOR_003.sextupole]
- - [B0, SH14_HCOR_003.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SHD.05-CDLH.09/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH141_QCORROCT_121_001
- mapping:
- - [B3, OH141_QCORROCT_121_001.octupole]
- - [B1, OH141_QCORROCT_121_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OH.03-CQLN.21/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH13_COR_003
- mapping:
- - [B2, SH13_COR_003.sextupole]
- - [B0, SH13_COR_003.hcorrector]
- - [A0, SH13_COR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH131_QCORROCT_122_001
- mapping:
- - [B3, OH131_QCORROCT_122_001.octupole]
- - [B1, OH131_QCORROCT_122_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-OCT/OH.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN15-AR/EM-COR/OH.04-CQLN.22/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_134
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_135
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH16_QCORROCT_123_001
- mapping:
- - [B3, OH16_QCORROCT_123_001.octupole]
- - [B1, OH16_QCORROCT_123_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH16_COR_003
- mapping:
- - [B2, SH16_COR_003.sextupole]
- - [B0, SH16_COR_003.hcorrector]
- - [A0, SH16_COR_003.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-SX/SHD.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-COR/SHD.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-COR/SHD.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: SH16_COR_004
- mapping:
- - [B2, SH16_COR_004.sextupole]
- - [B0, SH16_COR_004.hcorrector]
- - [A0, SH16_COR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-SX/SHD.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-COR/SHD.02-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-COR/SHD.02-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH16_QCORROCT_124_001
- mapping:
- - [B3, OH16_QCORROCT_124_001.octupole]
- - [B1, OH16_QCORROCT_124_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-SD/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_136
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-SD/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-SD/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_137
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-SD/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-SD/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH132_QCORROCT_125_001
- mapping:
- - [B3, OH132_QCORROCT_125_001.octupole]
- - [B1, OH132_QCORROCT_125_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH13_COR_004
- mapping:
- - [B2, SH13_COR_004.sextupole]
- - [B0, SH13_COR_004.hcorrector]
- - [A0, SH13_COR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SHF.01-CDLH.03/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SHF.01-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH142_QCORROCT_126_001
- mapping:
- - [B3, OH142_QCORROCT_126_001.octupole]
- - [B1, OH142_QCORROCT_126_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH14_HCOR_004
- mapping:
- - [B2, SH14_HCOR_004.sextupole]
- - [B0, SH14_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SHD.02-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_138
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH15_VCOR_004
- mapping:
- - [B2, SH15_VCOR_004.sextupole]
- - [A0, SH15_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SHD.03-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_157
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD52_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_127_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_127_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_127_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_127_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF52_HCOR_004
- mapping:
- - [B2, SXF52_HCOR_004.sextupole]
- - [B0, SXF52_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCF.02-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_139
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD52_VCOR_004
- mapping:
- - [B2, SXD52_VCOR_004.sextupole]
- - [A0, SXD52_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCD.03-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_158
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_159
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_010
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_128_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_128_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_128_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_128_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.02-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF5_HCOR_007
- mapping:
- - [B2, SXF5_HCOR_007.sextupole]
- - [B0, SXF5_HCOR_007.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCF.05-CDLH.06/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_140
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_010
- mapping:
- - [B2, SXD5_VCOR_010.sextupole]
- - [A0, SXD5_VCOR_010.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCD.06-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_160
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_161
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_011
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_129_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_129_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_129_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_129_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.03-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF53_HCOR_007
- mapping:
- - [B2, SXF53_HCOR_007.sextupole]
- - [B0, SXF53_HCOR_007.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCF.08-CDLH.07/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_141
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD53_VCOR_004
- mapping:
- - [B2, SXD53_VCOR_004.sextupole]
- - [A0, SXD53_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCD.09-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_162
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_163
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD53_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF53_HCOR_008
- mapping:
- - [B2, SXF53_HCOR_008.sextupole]
- - [B0, SXF53_HCOR_008.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCF.11-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_130_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_130_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_130_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_130_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.04-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_142
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_011
- mapping:
- - [B2, SXD5_VCOR_011.sextupole]
- - [A0, SXD5_VCOR_011.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCD.12-CDLV.08/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_164
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_165
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD5_012
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF5_HCOR_008
- mapping:
- - [B2, SXF5_HCOR_008.sextupole]
- - [B0, SXF5_HCOR_008.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCF.14-CDLH.09/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_131_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_131_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_131_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_131_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.05-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_143
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD5_VCOR_012
- mapping:
- - [B2, SXD5_VCOR_012.sextupole]
- - [A0, SXD5_VCOR_012.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCD.15-CDLV.09/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_166
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_167
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD51_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF51_HCOR_004
- mapping:
- - [B2, SXF51_HCOR_004.sextupole]
- - [B0, SXF51_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCF.17-CDLH.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF5_QCORROCT_132_QT_001
- mapping:
- - [B3, OCTF5_QCORROCT_132_QT_001.octupole]
- - [B1, OCTF5_QCORROCT_132_QT_001.quadrupole]
- - [A1, OCTF5_QCORROCT_132_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OC.06-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD51_VCOR_004
- mapping:
- - [B2, SXD51_VCOR_004.sextupole]
- - [A0, SXD51_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SCD.18-CDLV.10/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_144
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.11/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.11/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH12_COR_007
- mapping:
- - [B2, SH12_COR_007.sextupole]
- - [B0, SH12_COR_007.hcorrector]
- - [A0, SH12_COR_007.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SHD.04-CDLH.11/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SHD.04-CDLV.11/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_168
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH11_007
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OH11_QCORROCT_133_001
- mapping:
- - [B3, OH11_QCORROCT_133_001.octupole]
- - [B1, OH11_QCORROCT_133_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OH.03-CQLN.21/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_145
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.12/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN16-AR/DG-EPOS/BPM.12/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH10_COR_007
- mapping:
- - [B2, SH10_COR_007.sextupole]
- - [B0, SH10_COR_007.hcorrector]
- - [A0, SH10_COR_007.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SHF.06-CDLH.12/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/SHF.06-CDLV.12/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH10_QCORROCT_134_QT_001
- mapping:
- - [B3, OH10_QCORROCT_134_QT_001.octupole]
- - [B1, OH10_QCORROCT_134_QT_001.quadrupole]
- - [A1, OH10_QCORROCT_134_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-OCT/OH.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OH.04-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN16-AR/EM-COR/OH.04-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_146
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_147
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH10_QCORROCT_135_QT_001
- mapping:
- - [B3, OH10_QCORROCT_135_QT_001.octupole]
- - [B1, OH10_QCORROCT_135_QT_001.quadrupole]
- - [A1, OH10_QCORROCT_135_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH10_COR_008
- mapping:
- - [B2, SH10_COR_008.sextupole]
- - [B0, SH10_COR_008.hcorrector]
- - [A0, SH10_COR_008.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_148
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH11_QCORROCT_136_001
- mapping:
- - [B3, OH11_QCORROCT_136_001.octupole]
- - [B1, OH11_QCORROCT_136_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.sextupole
- name: SH11_008
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_169
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH12_COR_008
- mapping:
- - [B2, SH12_COR_008.sextupole]
- - [B0, SH12_COR_008.hcorrector]
- - [A0, SH12_COR_008.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD42_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_137_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_137_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_137_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_137_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF42_HCOR_004
- mapping:
- - [B2, SXF42_HCOR_004.sextupole]
- - [B0, SXF42_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_149
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD42_VCOR_004
- mapping:
- - [B2, SXD42_VCOR_004.sextupole]
- - [A0, SXD42_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_170
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_171
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD4_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_138_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_138_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_138_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_138_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF4_HCOR_004
- mapping:
- - [B2, SXF4_HCOR_004.sextupole]
- - [B0, SXF4_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_150
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD4_VCOR_004
- mapping:
- - [B2, SXD4_VCOR_004.sextupole]
- - [A0, SXD4_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_172
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_173
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD41_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF41_HCOR_004
- mapping:
- - [B2, SXF41_HCOR_004.sextupole]
- - [B0, SXF41_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF4_QCORROCT_139_QT_001
- mapping:
- - [B3, OCTF4_QCORROCT_139_QT_001.octupole]
- - [B1, OCTF4_QCORROCT_139_QT_001.quadrupole]
- - [A1, OCTF4_QCORROCT_139_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD41_VCOR_004
- mapping:
- - [B2, SXD41_VCOR_004.sextupole]
- - [A0, SXD41_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_151
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_013
- mapping:
- - [B2, SH9_COR_013.sextupole]
- - [B0, SH9_COR_013.hcorrector]
- - [A0, SH9_COR_013.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SHD.04-CDLH.06/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SHD.04-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_174
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_013
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_175
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.bpm.bpm
- name: BPM_152
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN17-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_013
- mapping:
- - [B2, SH7_COR_013.sextupole]
- - [B0, SH7_COR_013.hcorrector]
- - [A0, SH7_COR_013.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SHF.06-CDLH.07/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/SHF.06-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_140_QT_001
- mapping:
- - [B3, OH7_QCORROCT_140_QT_001.octupole]
- - [B1, OH7_QCORROCT_140_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_140_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OH.03-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN17-AR/EM-COR/OH.03-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_153
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_154
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_141_QT_001
- mapping:
- - [B3, OH7_QCORROCT_141_QT_001.octupole]
- - [B1, OH7_QCORROCT_141_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_141_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_014
- mapping:
- - [B2, SH7_COR_014.sextupole]
- - [B0, SH7_COR_014.hcorrector]
- - [A0, SH7_COR_014.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_155
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_176
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.02/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_014
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_177
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_014
- mapping:
- - [B2, SH9_COR_014.sextupole]
- - [B0, SH9_COR_014.hcorrector]
- - [A0, SH9_COR_014.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD32_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_142_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_142_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_142_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_142_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF32_HCOR_004
- mapping:
- - [B2, SXF32_HCOR_004.sextupole]
- - [B0, SXF32_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_156
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD32_VCOR_004
- mapping:
- - [B2, SXD32_VCOR_004.sextupole]
- - [A0, SXD32_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_178
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_179
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_010
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_143_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_143_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_143_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_143_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF3_HCOR_007
- mapping:
- - [B2, SXF3_HCOR_007.sextupole]
- - [B0, SXF3_HCOR_007.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_157
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_010
- mapping:
- - [B2, SXD3_VCOR_010.sextupole]
- - [A0, SXD3_VCOR_010.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_180
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_181
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_011
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_144_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_144_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_144_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_144_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF33_HCOR_007
- mapping:
- - [B2, SXF33_HCOR_007.sextupole]
- - [B0, SXF33_HCOR_007.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_158
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD33_VCOR_004
- mapping:
- - [B2, SXD33_VCOR_004.sextupole]
- - [A0, SXD33_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_182
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_183
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD33_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF33_HCOR_008
- mapping:
- - [B2, SXF33_HCOR_008.sextupole]
- - [B0, SXF33_HCOR_008.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_145_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_145_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_145_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_145_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_159
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_011
- mapping:
- - [B2, SXD3_VCOR_011.sextupole]
- - [A0, SXD3_VCOR_011.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_184
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_185
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD3_012
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF3_HCOR_008
- mapping:
- - [B2, SXF3_HCOR_008.sextupole]
- - [B0, SXF3_HCOR_008.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_146_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_146_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_146_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_146_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_160
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD3_VCOR_012
- mapping:
- - [B2, SXD3_VCOR_012.sextupole]
- - [A0, SXD3_VCOR_012.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_186
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_187
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD31_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF31_HCOR_004
- mapping:
- - [B2, SXF31_HCOR_004.sextupole]
- - [B0, SXF31_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF3_QCORROCT_147_QT_001
- mapping:
- - [B3, OCTF3_QCORROCT_147_QT_001.octupole]
- - [B1, OCTF3_QCORROCT_147_QT_001.quadrupole]
- - [A1, OCTF3_QCORROCT_147_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD31_VCOR_004
- mapping:
- - [B2, SXD31_VCOR_004.sextupole]
- - [A0, SXD31_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_161
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_015
- mapping:
- - [B2, SH9_COR_015.sextupole]
- - [B0, SH9_COR_015.hcorrector]
- - [A0, SH9_COR_015.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SHD.04-CDLH.09/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_188
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_015
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_189
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/CQLN.21/strength
- unit: 1/m
-- type: pyaml.bpm.bpm
- name: BPM_162
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN18-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_015
- mapping:
- - [B2, SH7_COR_015.sextupole]
- - [B0, SH7_COR_015.hcorrector]
- - [A0, SH7_COR_015.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_148_QT_001
- mapping:
- - [B3, OH7_QCORROCT_148_QT_001.octupole]
- - [B1, OH7_QCORROCT_148_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_148_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OH.02-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN18-AR/EM-COR/OH.02-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_163
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_164
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH7_QCORROCT_149_QT_001
- mapping:
- - [B3, OH7_QCORROCT_149_QT_001.octupole]
- - [B1, OH7_QCORROCT_149_QT_001.quadrupole]
- - [A1, OH7_QCORROCT_149_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH7_COR_016
- mapping:
- - [B2, SH7_COR_016.sextupole]
- - [B0, SH7_COR_016.hcorrector]
- - [A0, SH7_COR_016.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_165
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_190
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/CQLN.02/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH8_016
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_191
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH9_COR_016
- mapping:
- - [B2, SH9_COR_016.sextupole]
- - [B0, SH9_COR_016.hcorrector]
- - [A0, SH9_COR_016.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD22_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_150_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_150_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_150_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_150_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF22_HCOR_004
- mapping:
- - [B2, SXF22_HCOR_004.sextupole]
- - [B0, SXF22_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_166
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD22_VCOR_004
- mapping:
- - [B2, SXD22_VCOR_004.sextupole]
- - [A0, SXD22_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_192
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_193
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD2_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF2_HCOR_004
- mapping:
- - [B2, SXF2_HCOR_004.sextupole]
- - [B0, SXF2_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_151_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_151_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_151_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_151_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_167
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD2_VCOR_004
- mapping:
- - [B2, SXD2_VCOR_004.sextupole]
- - [A0, SXD2_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_194
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_195
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD21_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF21_HCOR_004
- mapping:
- - [B2, SXF21_HCOR_004.sextupole]
- - [B0, SXF21_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF2_QCORROCT_152_QT_001
- mapping:
- - [B3, OCTF2_QCORROCT_152_QT_001.octupole]
- - [B1, OCTF2_QCORROCT_152_QT_001.quadrupole]
- - [A1, OCTF2_QCORROCT_152_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD21_VCOR_004
- mapping:
- - [B2, SXD21_VCOR_004.sextupole]
- - [A0, SXD21_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_168
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH6_COR_007
- mapping:
- - [B2, SH6_COR_007.sextupole]
- - [B0, SH6_COR_007.hcorrector]
- - [A0, SH6_COR_007.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SHD.04-CDLH.06/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SHD.04-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_196
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SH5_007
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OH5_QCORROCT_153_001
- mapping:
- - [B3, OH5_QCORROCT_153_001.octupole]
- - [B1, OH5_QCORROCT_153_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OH.02-CQLN.12/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_169
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN19-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SH4_COR_007
- mapping:
- - [B2, SH4_COR_007.sextupole]
- - [B0, SH4_COR_007.hcorrector]
- - [A0, SH4_COR_007.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SHF.06-CDLH.07/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/SHF.06-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH4_QCORROCT_154_QT_001
- mapping:
- - [B3, OH4_QCORROCT_154_QT_001.octupole]
- - [B1, OH4_QCORROCT_154_QT_001.quadrupole]
- - [A1, OH4_QCORROCT_154_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OH.03-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN19-AR/EM-COR/OH.03-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_170
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.bpm.bpm
- name: BPM_171
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-SD/DG-EPOS/BPM.02/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-SD/DG-EPOS/BPM.02/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH4_QCORROCT_155_QT_001
- mapping:
- - [B3, OH4_QCORROCT_155_QT_001.octupole]
- - [B1, OH4_QCORROCT_155_QT_001.quadrupole]
- - [A1, OH4_QCORROCT_155_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OH.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OH.01-CQLN.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OH.01-CQLT.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH4_COR_008
- mapping:
- - [B2, SH4_COR_008.sextupole]
- - [B0, SH4_COR_008.hcorrector]
- - [A0, SH4_COR_008.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SHF.01/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SHF.01-CDLH.01/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SHF.01-CDLV.01/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_172
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.03/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.03/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH5_QCORROCT_156_001
- mapping:
- - [B3, OH5_QCORROCT_156_001.octupole]
- - [B1, OH5_QCORROCT_156_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OH.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OH.02-CQLN.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.sextupole
- name: SH5_008
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SHD.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.quadrupole
- name: QCORR_197
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.03/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH6_COR_008
- mapping:
- - [B2, SH6_COR_008.sextupole]
- - [B0, SH6_COR_008.hcorrector]
- - [A0, SH6_COR_008.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SHD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SHD.03-CDLH.02/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SHD.03-CDLV.02/strength
- unit: '1'
-- type: pyaml.magnet.sextupole
- name: SXD12_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.01/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_157_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_157_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_157_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_157_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OC.01/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.01-CQLN.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.01-CQLT.02/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF12_HCOR_004
- mapping:
- - [B2, SXF12_HCOR_004.sextupole]
- - [B0, SXF12_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCF.02/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCF.02-CDLH.03/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_173
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.04/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.04/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD12_VCOR_004
- mapping:
- - [B2, SXD12_VCOR_004.sextupole]
- - [A0, SXD12_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.03/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCD.03-CDLV.03/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_198
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.05/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_199
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.06/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_010
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_158_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_158_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_158_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_158_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OC.02/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.02-CQLN.07/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.02-CQLT.03/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF1_HCOR_007
- mapping:
- - [B2, SXF1_HCOR_007.sextupole]
- - [B0, SXF1_HCOR_007.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCF.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCF.05-CDLH.04/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_174
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.05/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.05/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_010
- mapping:
- - [B2, SXD1_VCOR_010.sextupole]
- - [A0, SXD1_VCOR_010.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCD.06-CDLV.04/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_200
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.08/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_201
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.09/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_011
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_159_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_159_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_159_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_159_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OC.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.03-CQLN.10/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.03-CQLT.04/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF13_HCOR_007
- mapping:
- - [B2, SXF13_HCOR_007.sextupole]
- - [B0, SXF13_HCOR_007.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCF.08/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCF.08-CDLH.05/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_175
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.06/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.06/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD13_VCOR_004
- mapping:
- - [B2, SXD13_VCOR_004.sextupole]
- - [A0, SXD13_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.09/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCD.09-CDLV.05/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_202
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.11/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_203
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.12/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD13_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.10/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF13_HCOR_008
- mapping:
- - [B2, SXF13_HCOR_008.sextupole]
- - [B0, SXF13_HCOR_008.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCF.11/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCF.11-CDLH.06/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_160_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_160_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_160_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_160_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OC.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.04-CQLN.13/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.04-CQLT.05/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_176
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.07/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.07/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_011
- mapping:
- - [B2, SXD1_VCOR_011.sextupole]
- - [A0, SXD1_VCOR_011.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.12/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCD.12-CDLV.06/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_204
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.14/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_205
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.15/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD1_012
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.13/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF1_HCOR_008
- mapping:
- - [B2, SXF1_HCOR_008.sextupole]
- - [B0, SXF1_HCOR_008.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCF.14/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCF.14-CDLH.07/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_161_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_161_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_161_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_161_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OC.05/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.05-CQLN.16/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.05-CQLT.06/strength
- unit: 1/m**2
-- type: pyaml.bpm.bpm
- name: BPM_177
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.08/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.08/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: SXD1_VCOR_012
- mapping:
- - [B2, SXD1_VCOR_012.sextupole]
- - [A0, SXD1_VCOR_012.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.15/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCD.15-CDLV.07/strength
- unit: '1'
-- type: pyaml.magnet.quadrupole
- name: QCORR_206
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.17/strength
- unit: 1/m
-- type: pyaml.magnet.quadrupole
- name: QCORR_207
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.18/strength
- unit: 1/m
-- type: pyaml.magnet.sextupole
- name: SXD11_004
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m**2
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.16/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXF11_HCOR_004
- mapping:
- - [B2, SXF11_HCOR_004.sextupole]
- - [B0, SXF11_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCF.17/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCF.17-CDLH.08/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OCTF1_QCORROCT_162_QT_001
- mapping:
- - [B3, OCTF1_QCORROCT_162_QT_001.octupole]
- - [B1, OCTF1_QCORROCT_162_QT_001.quadrupole]
- - [A1, OCTF1_QCORROCT_162_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OC.06/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.06-CQLN.19/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OC.06-CQLT.07/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SXD11_VCOR_004
- mapping:
- - [B2, SXD11_VCOR_004.sextupole]
- - [A0, SXD11_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SCD.18/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SCD.18-CDLV.08/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_178
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.09/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.09/y_pos
- unit: mm
-- type: pyaml.magnet.quadrupole
- name: QCORR_208
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/CQLN.20/strength
- unit: 1/m
-- type: pyaml.magnet.cfm_magnet
- name: SH3_VCOR_004
- mapping:
- - [B2, SH3_VCOR_004.sextupole]
- - [A0, SH3_VCOR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, A0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SHD.04/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SHD.04-CDLV.09/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_179
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.10/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN20-AR/DG-EPOS/BPM.10/y_pos
- unit: mm
-- type: pyaml.magnet.cfm_magnet
- name: OH2_QCORROCT_163_001
- mapping:
- - [B3, OH2_QCORROCT_163_001.octupole]
- - [B1, OH2_QCORROCT_163_001.quadrupole]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1]
- units: [1/m**3, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OH.03/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OH.03-CQLN.21/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH2_HCOR_004
- mapping:
- - [B2, SH2_HCOR_004.sextupole]
- - [B0, SH2_HCOR_004.hcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0]
- units: [1/m**2, '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SHD.05/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SHD.05-CDLH.09/strength
- unit: '1'
-- type: pyaml.magnet.cfm_magnet
- name: OH1_QCORROCT_164_QT_001
- mapping:
- - [B3, OH1_QCORROCT_164_QT_001.octupole]
- - [B1, OH1_QCORROCT_164_QT_001.quadrupole]
- - [A1, OH1_QCORROCT_164_QT_001.skewquad]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B3, B1, A1]
- units: [1/m**3, 1/m**2, 1/m**2]
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-OCT/OH.04/strength
- unit: 1/m**3
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OH.04-CQLN.22/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/OH.04-CQLT.08/strength
- unit: 1/m**2
-- type: pyaml.magnet.cfm_magnet
- name: SH1_COR_004
- mapping:
- - [B2, SH1_COR_004.sextupole]
- - [B0, SH1_COR_004.hcorrector]
- - [A0, SH1_COR_004.vcorrector]
- model:
- type: pyaml.magnet.identity_cfm_model
- multipoles: [B2, B0, A0]
- units: [1/m**2, '1', '1']
- physics:
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-SX/SHF.06/strength
- unit: 1/m**2
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SHF.06-CDLH.10/strength
- unit: '1'
- - type: tango.pyaml.attribute
- attribute: AN20-AR/EM-COR/SHF.06-CDLV.10/strength
- unit: '1'
-- type: pyaml.bpm.bpm
- name: BPM_180
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-SD/DG-EPOS/BPM.01/x_pos
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: AN01-SD/DG-EPOS/BPM.01/y_pos
- unit: mm
-- type: pyaml.rf.rf_plant
- name: RF
- masterclock:
- type: tango.pyaml.attribute
- attribute: simulator/ringsimulator/ringsimulator/RfFrequency
- unit: Hz
- transmitters:
- - type: pyaml.rf.rf_transmitter
- name: RFTRA
- cavities: [RF_002, RFHARMON_002]
- harmonic: 1
- distribution: 1
- voltage:
- type: tango.pyaml.attribute
- attribute: simulator/ringsimulator/ringsimulator/RfVoltage
- unit: V
diff --git a/examples/other_examples/ControlSystem/README.md b/examples/other_examples/ControlSystem/README.md
new file mode 100644
index 000000000..e5e59de1a
--- /dev/null
+++ b/examples/other_examples/ControlSystem/README.md
@@ -0,0 +1,3 @@
+# Example of simple ControlSystem interface implementations
+
+This folder provides examples of ControlSystem implementation and configuration.
diff --git a/examples/other_examples/ControlSystem/tango/config.yaml b/examples/other_examples/ControlSystem/tango/config.yaml
new file mode 100644
index 000000000..22881f758
--- /dev/null
+++ b/examples/other_examples/ControlSystem/tango/config.yaml
@@ -0,0 +1,14 @@
+type: pyaml.accelerator
+facility: ESRF
+machine: sr
+energy: 6e9
+controls:
+ - type: tango_controlsystem
+ prefix: //ebs-simu-3:10000/
+ name: live
+data_folder: /data/store
+devices:
+- type: pyaml.bpm.bpm
+ name: BPM_C01-01
+ x_pos: srdiag/bpm/c01-01/SA_HPosition
+ y_pos: srdiag/bpm/c01-01/SA_VPosition
diff --git a/examples/other_examples/ControlSystem/tango/main.py b/examples/other_examples/ControlSystem/tango/main.py
new file mode 100644
index 000000000..8fe0782be
--- /dev/null
+++ b/examples/other_examples/ControlSystem/tango/main.py
@@ -0,0 +1,11 @@
+from pyaml.accelerator import Accelerator
+
+sr = Accelerator.load("config.yaml")
+
+# print the BPM position
+bpm = sr.live.bpm.get("BPM_C01-01") # bpm is a BPM
+print(bpm.positions.get())
+
+# Direct access to control system
+da = sr.live.get_device_access("srdiag/bpm/c01-01/SA_HPosition") # da is a DeviceAccess
+print(f"h={da.get()} {da.unit()}")
diff --git a/examples/other_examples/ControlSystem/tango/tango_controlsystem.py b/examples/other_examples/ControlSystem/tango/tango_controlsystem.py
new file mode 100644
index 000000000..0f4a2e975
--- /dev/null
+++ b/examples/other_examples/ControlSystem/tango/tango_controlsystem.py
@@ -0,0 +1,124 @@
+# This example show a minimal Tango control system implementation
+
+import logging
+
+import tango
+from pydantic import BaseModel
+
+from pyaml.control.controlsystem import ControlSystemAdapter
+from pyaml.control.deviceaccess import DeviceAccess
+
+PYAMLCLASS: str = "MyControlSystem"
+
+# ---------------------- ControlSystem configuration model -----------------------
+
+
+class ConfigModel(BaseModel):
+ """
+ Configuration model for an OA Control System.
+
+ Attributes
+ ----------
+ name : str
+ Name of the control system.
+ prefix : str
+ Prefix added to the to name passed to get_device()
+ """
+
+ name: str
+ prefix: str = ""
+
+
+# ---------------------- Hardware access interface -------------------------------
+
+
+class MyDevice(DeviceAccess):
+ def __init__(self, name: str):
+ self._name = self.name
+ self._proxy = tango.AttributeProxy(name)
+ att_config = self._proxy.get_config()
+ self._iswrittable = att_config.writable in [
+ tango.AttrWriteType.READ_WRITE,
+ tango.AttrWriteType.WRITE,
+ tango.AttrWriteType.READ_WITH_WRITE,
+ ]
+ self._unit = att_config.unit
+ try:
+ min = float(att_config.min_value)
+ max = float(att_config.max_value)
+ self._range = [min, max]
+ except Exception:
+ self._range = [None, None]
+
+ def name(self) -> str:
+ """Return the name of the variable"""
+ return self._name
+
+ def measure_name(self) -> str:
+ """Return the name of the measure"""
+ return self._name
+
+ def set(self, value):
+ """Write a control system device variable (i.e. a power supply current)"""
+ self._proxy.write(value)
+
+ def set_and_wait(self, value):
+ """Write a control system device variable (i.e. a power supply current)"""
+ pass
+
+ def get(self):
+ """Return the setpoint(s) of a control system device variable"""
+ if self._iswrittable:
+ return self._proxy.read().w_value
+ else:
+ return self._proxy.read().value
+
+ def readback(self):
+ """Return the measured variable"""
+ return self._proxy.read().value
+
+ def unit(self) -> str:
+ """Return the variable unit"""
+ return self._unit
+
+ def get_range(self) -> list[float]:
+ """
+ Get the valid range for the device variable.
+
+ Returns
+ -------
+ list[float]
+ List containing [min, max] values
+ """
+ return self._range
+
+ def check_device_availability(self) -> bool:
+ """
+ Check if the device is available and accessible.
+
+ Returns
+ -------
+ bool
+ True if device is available, False otherwise
+ """
+ return self._proxy.ping()
+
+
+# ---------------------- The control system class -------------------------------
+
+
+class MyControlSystem(ControlSystemAdapter):
+ def __init__(self, cfg: ConfigModel):
+ super().__init__()
+ self._cfg = cfg
+
+ def get_device_access(self, ref: str | BaseModel | None) -> DeviceAccess | None:
+ if ref is None:
+ return None
+ return MyDevice(self._cfg.prefix + ref)
+
+ def name(self) -> str:
+ return self._cfg.name
+
+ def __repr__(self):
+ return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
diff --git a/examples/ORM_Tango_server/ORM.py b/examples/other_examples/ORM_Tango_server/ORM.py
similarity index 100%
rename from examples/ORM_Tango_server/ORM.py
rename to examples/other_examples/ORM_Tango_server/ORM.py
diff --git a/examples/ORM_Tango_server/README.md b/examples/other_examples/ORM_Tango_server/README.md
similarity index 100%
rename from examples/ORM_Tango_server/README.md
rename to examples/other_examples/ORM_Tango_server/README.md
diff --git a/examples/ORM_Tango_server/orm_scan_1.png b/examples/other_examples/ORM_Tango_server/orm_scan_1.png
similarity index 100%
rename from examples/ORM_Tango_server/orm_scan_1.png
rename to examples/other_examples/ORM_Tango_server/orm_scan_1.png
diff --git a/examples/ORM_Tango_server/orm_scan_2.png b/examples/other_examples/ORM_Tango_server/orm_scan_2.png
similarity index 100%
rename from examples/ORM_Tango_server/orm_scan_2.png
rename to examples/other_examples/ORM_Tango_server/orm_scan_2.png
diff --git a/examples/ORM_Tango_server/orm_scan_3.png b/examples/other_examples/ORM_Tango_server/orm_scan_3.png
similarity index 100%
rename from examples/ORM_Tango_server/orm_scan_3.png
rename to examples/other_examples/ORM_Tango_server/orm_scan_3.png
diff --git a/examples/OphydDevice_examples/README.md b/examples/other_examples/OphydDevice_examples/README.md
similarity index 100%
rename from examples/OphydDevice_examples/README.md
rename to examples/other_examples/OphydDevice_examples/README.md
diff --git a/examples/OphydDevice_examples/tune_ophyd_device.py b/examples/other_examples/OphydDevice_examples/tune_ophyd_device.py
similarity index 100%
rename from examples/OphydDevice_examples/tune_ophyd_device.py
rename to examples/other_examples/OphydDevice_examples/tune_ophyd_device.py
diff --git a/examples/use_cases/01-tune_correction.ipynb b/examples/use_cases/01-tune_correction.ipynb
new file mode 100644
index 000000000..de520fbad
--- /dev/null
+++ b/examples/use_cases/01-tune_correction.ipynb
@@ -0,0 +1,588 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "id": "a6f35de9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from pathlib import Path\n",
+ "\n",
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "from pyaml.accelerator import Accelerator\n",
+ "from pyaml.common.constants import Action"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "fec1651c",
+ "metadata": {},
+ "source": [
+ "## Facility configuration\n",
+ "\n",
+ "Edit the `CONFIG_FILE` variable below to select the facility. The rest of the notebook runs unchanged.\n",
+ "\n",
+ "| Facility | Config file | Control system | Virtual twin |\n",
+ "|----------|-------------|----------------|--------------|\n",
+ "| SOLEIL II | `config/soleil_ii/p.yaml` | TANGO (`tango-pyaml`) | Apptainer container |\n",
+ "| BESSY2 | `config/bessy2/bessy2.yaml` | EPICS (`pyaml-cs-oa`) | Apptainer container |\n",
+ "| ESRF EBS | `config/esrf/esrf.yaml` | TANGO (`tango-pyaml`) | Apptainer container |\n",
+ "\n",
+ "See `README.md` for installation and virtual accelerator startup instructions."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "id": "244e23c0",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "PyAML Tango control system binding (0.4.0) initialized with name 'live' and TANGO_HOST=ebs-simu-3:10000\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "14 Aug 2026, 13:40:30 | WARNING | /home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/trm.json: file not found\n",
+ "14 Aug 2026, 13:40:30 | WARNING | /home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/chroma_resp.json: file not found\n",
+ "14 Aug 2026, 13:40:30 | WARNING | Loading /home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/orm.json failed /home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/orm.json: file not found\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "Accelerator(facility='ESRF', machine='sr', description=None, live=TangoControlSystem(name='live', tango_host='ebs-simu-3:10000', catalog=, debug_level=None, lazy_devices=True, timeout_ms=3000), design=Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/sr/lattices/ebs.mat', mat_key=None, linker=None, description=None), yellow_pages=Controls:\n",
+ " live\n",
+ " .\n",
+ "\n",
+ "Simulators:\n",
+ " design\n",
+ " .\n",
+ "\n",
+ "Arrays:\n",
+ " BPM (pyaml.arrays.bpm_array) size=320\n",
+ " HCorr (pyaml.arrays.magnet_array) size=288\n",
+ " VCorr (pyaml.arrays.magnet_array) size=288\n",
+ " Skews (pyaml.arrays.magnet_array) size=288\n",
+ " Sext (pyaml.arrays.magnet_array) size=180\n",
+ " QForTune (pyaml.arrays.magnet_array) size=124\n",
+ " .\n",
+ "\n",
+ "Tools:\n",
+ " BBA-BPM_C04-04 (pyaml.tuning_tools.bba)\n",
+ " BBA2-BPM_C04-04 (pyaml.tuning_tools.bba2)\n",
+ " CHROMATICITY_MONITOR (pyaml.tuning_tools.chromaticity_monitor)\n",
+ " DEFAULT_TUNE_CORRECTION (pyaml.tuning_tools.tune)\n",
+ " DEFAULT_TUNE_RESPONSE_MATRIX (pyaml.tuning_tools.tune_response_matrix)\n",
+ " DEFAULT_CHROMATICITY_RESPONSE_MATRIX (pyaml.tuning_tools.chromaticity_response_matrix)\n",
+ " DEFAULT_CHROMATICITY_CORRECTION (pyaml.tuning_tools.chromaticity)\n",
+ " DEFAULT_ORBIT_CORRECTION (pyaml.tuning_tools.orbit)\n",
+ " DEFAULT_ORBIT_RESPONSE_MATRIX (pyaml.tuning_tools.orbit_response_matrix)\n",
+ " DEFAULT_DISPERSION (pyaml.tuning_tools.dispersion)\n",
+ " .\n",
+ "\n",
+ "Diagnostics:\n",
+ " BETATRON_TUNE (pyaml.diagnostics.tune_monitor)\n",
+ " .)"
+ ]
+ },
+ "execution_count": 2,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# ── Facility configuration ──────────────────────────────────────────────────\n",
+ "# Uncomment the facility you want to use:\n",
+ "\n",
+ "# CONFIG_FILE = \"config/soleil_ii/p.yaml\"\n",
+ "# CONFIG_FILE = \"config/bessy2/bessy2.yaml\"\n",
+ "CONFIG_FILE = \"config/esrf/esrf.yaml\"\n",
+ "# ────────────────────────────────────────────────────────────────────────────\n",
+ "\n",
+ "CONFIG_DIR = Path(CONFIG_FILE).parent\n",
+ "\n",
+ "sr = Accelerator.load(CONFIG_FILE)\n",
+ "sr # string representation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "ff257f23",
+ "metadata": {},
+ "source": [
+ "### Virtual accelerator setup\n",
+ "\n",
+ "For **live** control mode you need a running control system or emulator. If you want to skip this, run the notebook in **design** mode only.\n",
+ "\n",
+ "**SOLEIL II / ESRF (TANGO)**\n",
+ "```\n",
+ "apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest\n",
+ "apptainer run virtual-accelerator.sif\n",
+ "```\n",
+ "\n",
+ "**BESSY2 (EPICS)**\n",
+ "```\n",
+ "apptainer run oras://registry.hzdr.de/digital-twins-for-accelerators/containers/pyat-softioc-digital-twin:default-v0-5-1-bessy.2711893\n",
+ "```\n",
+ "\n",
+ "> **Note for BESSY2 live mode:** the PV prefix in `config/bessy2/bessy2.yaml` must match your virtual accelerator instance. Edit the `prefix:` field under `controls:`."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "eb26cc8a",
+ "metadata": {},
+ "source": [
+ "### Control mode choice\n",
+ "\n",
+ "- **`sr.design`** — runs pyAT locally, no control system needed. Set `wait_time = 0.0`.\n",
+ "- **`sr.live`** — connects to the real machine or virtual twin. Set `wait_time` to allow readback settling (typically 1.5–2 s)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "id": "134855a2",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/sr/lattices/ebs.mat', mat_key=None, linker=None, description=None)"
+ ]
+ },
+ "execution_count": 3,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "SR = sr.design\n",
+ "# SR = sr.live\n",
+ "\n",
+ "wait_time = 0.0 if SR == sr.design else 2.0\n",
+ "SR # string representation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "ebba627e",
+ "metadata": {},
+ "source": [
+ "#### Betatron tune monitor\n",
+ "\n",
+ "The tune monitor is defined in the configuration file under the name `BETATRON_TUNE`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "id": "e028b13f",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Current tune: [0.15999673 0.33999769]\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "BetatronTuneMonitor(tune_h='srdiag/beam-tune/main/Qh', tune_v='srdiag/beam-tune/main/Qv', name='BETATRON_TUNE')"
+ ]
+ },
+ "execution_count": 4,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "tune_monitor = SR.get_betatron_tune_monitor(\"BETATRON_TUNE\")\n",
+ "print(f\"Current tune: {tune_monitor.tune.get()}\")\n",
+ "tune_monitor # string representation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7f60ac56",
+ "metadata": {},
+ "source": [
+ "#### Quadrupolar correctors\n",
+ "\n",
+ "The `QForTune` array contains the quadrupoles used for tune correction. You can access and set individual corrector strengths."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "id": "33d2cb2c",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "The ring has 124 quadrupolar correctors. First: QD2E-C04\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "Quadrupole(peer='Simulator:design', name='QD2E-C04', model_name='QD2E-C04', magnet_model=LinearMagnetModel(curve=CSVCurve(file='sr/magnet_models/QD2_strength.csv'), powerconverter='srmag/vps-qd2/c04-e/current', calibration_factor=0.999305341, calibration_offset=0.0, crosstalk=0.99912, unit='1/m', hardware_unit='A'))"
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "qcorrectors = SR.get_magnets(\"QForTune\")\n",
+ "first_q = qcorrectors[0]\n",
+ "print(f\"The ring has {len(qcorrectors)} quadrupolar correctors. First: {first_q.get_name()}\")\n",
+ "qcorrectors[0] # string representation"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "704ecb05",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Current strength: qcorrectors[0].strength.get()=-0.6176\n",
+ "After stepping by 0.002: qcorrectors[0].strength.get()=-0.6156\n",
+ "Reset to -0.6176\n"
+ ]
+ }
+ ],
+ "source": [
+ "str_before = qcorrectors[0].strength.get()\n",
+ "print(f\"Current strength: {qcorrectors[0].strength.get()=:.4f}\")\n",
+ "qcorrectors[0].strength.set(str_before + 0.002)\n",
+ "print(f\"After stepping by 0.002: {qcorrectors[0].strength.get()=:.4f}\")\n",
+ "qcorrectors[0].strength.set(str_before)\n",
+ "print(f\"Reset to {str_before:.4f}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "04431246",
+ "metadata": {},
+ "source": [
+ "### Standard tune correction tool\n",
+ "\n",
+ "`SR.tune` is the `DEFAULT_TUNE_CORRECTION` tool. `SR.trm` is the `DEFAULT_TUNE_RESPONSE_MATRIX` tool.\n",
+ "\n",
+ "Before correcting the tune you need a response matrix. It can be measured (below) or loaded from a previously saved file."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "id": "5c57ef30",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Tune(peer='Simulator:design', name='DEFAULT_TUNE_CORRECTION', description=None, lattice_names=None, quad_array_name='QForTune', betatron_tune_name='BETATRON_TUNE', response_matrix=None)"
+ ]
+ },
+ "execution_count": 7,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "SR.tune # string representation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5a699129",
+ "metadata": {},
+ "source": [
+ "#### Measuring the tune response matrix\n",
+ "\n",
+ "The callback below prints progress during the measurement. The `sleep_between_step` parameter controls the wait time between corrector steps — set it to 0 for design mode.\n",
+ "\n",
+ "> **Note:** on some lattices `disable_6d()` is required before measuring in design mode."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "id": "a1e6ab4c",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Required on some lattices before measuring the TRM in design mode\n",
+ "sr.design.get_lattice().disable_6d()\n",
+ "\n",
+ "\n",
+ "def tune_callback(action: int, cb_data: dict):\n",
+ " if action == Action.MEASURE:\n",
+ " print(f\"Tune response: #{cb_data['step']} {cb_data['magnet']} {cb_data['tune']}\")\n",
+ " return True"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "id": "c81cdb05",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Tune response: #0 QD2E-C04 [0.15998216 0.34012592]\n",
+ "Tune response: #0 QD2A-C05 [0.15998212 0.34012589]\n",
+ "Tune response: #0 QD2E-C05 [0.1599821 0.34012584]\n",
+ "Tune response: #0 QD2A-C06 [0.15998217 0.34012594]\n",
+ "Tune response: #0 QD2E-C06 [0.15998208 0.34012584]\n",
+ "Tune response: #0 QD2A-C07 [0.15998213 0.34012602]\n",
+ "Tune response: #0 QD2E-C07 [0.15998215 0.340126 ]\n",
+ "Tune response: #0 QD2A-C08 [0.15998206 0.34012578]\n",
+ "Tune response: #0 QD2E-C08 [0.15998218 0.34012586]\n",
+ "Tune response: #0 QD2A-C09 [0.15998211 0.34012597]\n",
+ "Tune response: #0 QD2E-C09 [0.15998211 0.34012589]\n",
+ "Tune response: #0 QD2A-C10 [0.15998217 0.34012598]\n",
+ "Tune response: #0 QD2E-C10 [0.15998208 0.34012601]\n",
+ "Tune response: #0 QD2A-C11 [0.15998214 0.34012583]\n",
+ "Tune response: #0 QD2E-C11 [0.15998213 0.3401259 ]\n",
+ "Tune response: #0 QD2A-C12 [0.15998208 0.3401259 ]\n",
+ "Tune response: #0 QD2E-C12 [0.15998217 0.34012583]\n",
+ "Tune response: #0 QD2A-C13 [0.1599821 0.34012601]\n",
+ "Tune response: #0 QD2E-C13 [0.15998212 0.34012598]\n",
+ "Tune response: #0 QD2A-C14 [0.15998216 0.34012589]\n",
+ "Tune response: #0 QD2E-C14 [0.15998417 0.34012858]\n",
+ "Tune response: #0 QD2A-C15 [0.15998426 0.34012844]\n",
+ "Tune response: #0 QD2E-C15 [0.15998478 0.34012941]\n",
+ "Tune response: #0 QD2A-C16 [0.15998476 0.34012945]\n",
+ "Tune response: #0 QD2E-C16 [0.15998218 0.34012588]\n",
+ "Tune response: #0 QD2A-C17 [0.15998206 0.34012598]\n",
+ "Tune response: #0 QD2E-C17 [0.15998217 0.34012597]\n",
+ "Tune response: #0 QD2A-C18 [0.15998213 0.34012588]\n",
+ "Tune response: #0 QD2E-C18 [0.15998208 0.34012594]\n",
+ "Tune response: #0 QD2A-C19 [0.15998219 0.34012587]\n",
+ "Tune response: #0 QD2E-C19 [0.15998207 0.34012585]\n",
+ "Tune response: #0 QD2A-C20 [0.15998211 0.34012595]\n",
+ "Tune response: #0 QD2E-C20 [0.15998217 0.34012596]\n",
+ "Tune response: #0 QD2A-C21 [0.15998206 0.34012594]\n",
+ "Tune response: #0 QD2E-C21 [0.15998218 0.340126 ]\n",
+ "Tune response: #0 QD2A-C22 [0.15998212 0.34012583]\n",
+ "Tune response: #0 QD2E-C22 [0.15998209 0.34012586]\n",
+ "Tune response: #0 QD2A-C23 [0.15998219 0.34012593]\n",
+ "Tune response: #0 QD2E-C23 [0.15998206 0.34012584]\n",
+ "Tune response: #0 QD2A-C24 [0.15998214 0.34012597]\n",
+ "Tune response: #0 QD2E-C24 [0.15998215 0.3401259 ]\n",
+ "Tune response: #0 QD2A-C25 [0.15998206 0.34012597]\n",
+ "Tune response: #0 QD2E-C25 [0.15998219 0.34012598]\n",
+ "Tune response: #0 QD2A-C26 [0.15998209 0.34012578]\n",
+ "Tune response: #0 QD2E-C26 [0.15998212 0.34012582]\n",
+ "Tune response: #0 QD2A-C27 [0.15998218 0.34012602]\n",
+ "Tune response: #0 QD2E-C27 [0.15998206 0.34012593]\n",
+ "Tune response: #0 QD2A-C28 [0.15998214 0.34012592]\n",
+ "Tune response: #0 QD2E-C28 [0.15998214 0.34012605]\n",
+ "Tune response: #0 QD2A-C29 [0.15998207 0.3401258 ]\n",
+ "Tune response: #0 QD2E-C29 [0.15998444 0.34012874]\n",
+ "Tune response: #0 QD2A-C30 [0.15998435 0.34012877]\n",
+ "Tune response: #0 QD2E-C30 [0.15998212 0.34012589]\n",
+ "Tune response: #0 QD2A-C31 [0.15998217 0.34012598]\n",
+ "Tune response: #0 QD2E-C31 [0.15998208 0.34012595]\n",
+ "Tune response: #0 QD2A-C32 [0.15998213 0.34012582]\n",
+ "Tune response: #0 QD2E-C32 [0.15998214 0.34012586]\n",
+ "Tune response: #0 QD2A-C01 [0.15998208 0.34012599]\n",
+ "Tune response: #0 QD2E-C01 [0.15998217 0.34012592]\n",
+ "Tune response: #0 QD2A-C02 [0.15998208 0.34012587]\n",
+ "Tune response: #0 QD2E-C02 [0.15998213 0.34012591]\n",
+ "Tune response: #0 QD2A-C03 [0.15998216 0.34012595]\n",
+ "Tune response: #0 QF1E-C04 [0.15994093 0.34004929]\n",
+ "Tune response: #0 QF1A-C05 [0.15994083 0.34004928]\n",
+ "Tune response: #0 QF1E-C05 [0.15994074 0.34004926]\n",
+ "Tune response: #0 QF1A-C06 [0.15994093 0.34004931]\n",
+ "Tune response: #0 QF1E-C06 [0.15994063 0.34004925]\n",
+ "Tune response: #0 QF1A-C07 [0.15994075 0.34004933]\n",
+ "Tune response: #0 QF1E-C07 [0.1599408 0.34004933]\n",
+ "Tune response: #0 QF1A-C08 [0.15994062 0.34004925]\n",
+ "Tune response: #0 QF1E-C08 [0.15994094 0.34004926]\n",
+ "Tune response: #0 QF1A-C09 [0.15994079 0.34004931]\n",
+ "Tune response: #0 QF1E-C09 [0.15994078 0.34004927]\n",
+ "Tune response: #0 QF1A-C10 [0.15994094 0.34004931]\n",
+ "Tune response: #0 QF1E-C10 [0.15994062 0.34004932]\n",
+ "Tune response: #0 QF1A-C11 [0.15994079 0.34004925]\n",
+ "Tune response: #0 QF1E-C11 [0.15994076 0.34004929]\n",
+ "Tune response: #0 QF1A-C12 [0.15994062 0.34004929]\n",
+ "Tune response: #0 QF1E-C12 [0.15994094 0.34004925]\n",
+ "Tune response: #0 QF1A-C13 [0.15994075 0.34004932]\n",
+ "Tune response: #0 QF1E-C13 [0.15994082 0.34004931]\n",
+ "Tune response: #0 QF1A-C14 [0.15994094 0.34004927]\n",
+ "Tune response: #0 QF1E-C14 [0.1599476 0.34004944]\n",
+ "Tune response: #0 QF1A-C15 [0.15994785 0.34004939]\n",
+ "Tune response: #0 QF1E-C15 [0.15994977 0.34004945]\n",
+ "Tune response: #0 QF1A-C16 [0.15994975 0.34004947]\n",
+ "Tune response: #0 QF1E-C16 [0.1599409 0.34004927]\n",
+ "Tune response: #0 QF1A-C17 [0.15994059 0.34004931]\n",
+ "Tune response: #0 QF1E-C17 [0.15994098 0.34004931]\n",
+ "Tune response: #0 QF1A-C18 [0.15994089 0.34004927]\n",
+ "Tune response: #0 QF1E-C18 [0.15994069 0.3400493 ]\n",
+ "Tune response: #0 QF1A-C19 [0.15994098 0.34004927]\n",
+ "Tune response: #0 QF1E-C19 [0.15994058 0.34004926]\n",
+ "Tune response: #0 QF1A-C20 [0.1599407 0.34004931]\n",
+ "Tune response: #0 QF1E-C20 [0.15994085 0.34004929]\n",
+ "Tune response: #0 QF1A-C21 [0.15994057 0.34004929]\n",
+ "Tune response: #0 QF1E-C21 [0.159941 0.34004932]\n",
+ "Tune response: #0 QF1A-C22 [0.15994083 0.34004925]\n",
+ "Tune response: #0 QF1E-C22 [0.15994074 0.34004927]\n",
+ "Tune response: #0 QF1A-C23 [0.159941 0.3400493]\n",
+ "Tune response: #0 QF1E-C23 [0.15994056 0.34004926]\n",
+ "Tune response: #0 QF1A-C24 [0.15994076 0.34004931]\n",
+ "Tune response: #0 QF1E-C24 [0.15994079 0.34004928]\n",
+ "Tune response: #0 QF1A-C25 [0.15994056 0.3400493 ]\n",
+ "Tune response: #0 QF1E-C25 [0.159941 0.34004932]\n",
+ "Tune response: #0 QF1A-C26 [0.15994078 0.34004925]\n",
+ "Tune response: #0 QF1E-C26 [0.1599408 0.34004924]\n",
+ "Tune response: #0 QF1A-C27 [0.159941 0.34004933]\n",
+ "Tune response: #0 QF1E-C27 [0.15994056 0.34004929]\n",
+ "Tune response: #0 QF1A-C28 [0.15994081 0.34004929]\n",
+ "Tune response: #0 QF1E-C28 [0.15994074 0.34004933]\n",
+ "Tune response: #0 QF1A-C29 [0.15994057 0.34004924]\n",
+ "Tune response: #0 QF1E-C29 [0.15994855 0.34004941]\n",
+ "Tune response: #0 QF1A-C30 [0.15994833 0.34004944]\n",
+ "Tune response: #0 QF1E-C30 [0.1599408 0.34004927]\n",
+ "Tune response: #0 QF1A-C31 [0.15994094 0.34004931]\n",
+ "Tune response: #0 QF1E-C31 [0.15994063 0.34004931]\n",
+ "Tune response: #0 QF1A-C32 [0.1599408 0.34004926]\n",
+ "Tune response: #0 QF1E-C32 [0.15994075 0.34004926]\n",
+ "Tune response: #0 QF1A-C01 [0.15994063 0.34004932]\n",
+ "Tune response: #0 QF1E-C01 [0.15994093 0.34004929]\n",
+ "Tune response: #0 QF1A-C02 [0.15994074 0.34004928]\n",
+ "Tune response: #0 QF1E-C02 [0.15994083 0.34004928]\n",
+ "Tune response: #0 QF1A-C03 [0.15994093 0.3400493 ]\n",
+ "Response matrix loaded.\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "TuneResponseMatrix(peer='Simulator:design', name='DEFAULT_TUNE_RESPONSE_MATRIX', description=None, lattice_names=None, n_step=1, sleep_between_step=0, n_avg_meas=1, sleep_between_meas=0, quad_array_name='QForTune', betatron_tune_name='BETATRON_TUNE', quad_delta=0.0001)"
+ ]
+ },
+ "execution_count": 9,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "if SR.tune.response_matrix is None:\n",
+ " SR.trm.measure(sleep_between_step=wait_time, callback=tune_callback)\n",
+ " SR.trm.save(CONFIG_DIR / \"trm.json\")\n",
+ "\n",
+ "SR.tune.load(CONFIG_DIR / \"trm.json\")\n",
+ "print(\"Response matrix loaded.\")\n",
+ "SR.trm # string representation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "ef7d7ce4",
+ "metadata": {},
+ "source": [
+ "#### Correcting the tune\n",
+ "\n",
+ "`SR.tune.set([qx, qy])` runs the correction iteratively. The `iter` parameter controls the number of iterations and `wait_time` the settling time between each iteration."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "id": "6b8bcf91",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Tune before correction: [0.16000001 0.33999986]\n",
+ "\n",
+ "Setting tune to [0.19, 0.28]\n",
+ "Tune after correction: [0.19 0.28]\n",
+ "\n",
+ "Setting tune to [0.21, 0.3]\n",
+ "Tune after correction: [0.21 0.3 ]\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "Tune(peer='Simulator:design', name='DEFAULT_TUNE_CORRECTION', description=None, lattice_names=None, quad_array_name='QForTune', betatron_tune_name='BETATRON_TUNE', response_matrix=ResponseMatrixData(matrix=[[0.1785312775665071, 0.17890918518254084, 0.17917983711424057, 0.1784306145899417, 0.17932054383273943, 0.17884878472013144, 0.17868979674900975, 0.17950221390589105, 0.17836418103545082, 0.17902879800274496, 0.17907228791497198, 0.1784534376253477, 0.17936885137875835, 0.1787317009097067, 0.17880339380355048, 0.17934220350290797, 0.17843576159082275, 0.17914061857193797, 0.1789550646144611, 0.17850485174275565, 0.15843662941744663, 0.15753129847057012, 0.15237976934923125, 0.15250702233238211, 0.17830407720298425, 0.17955648207695907, 0.17845839986763146, 0.1788046875300653, 0.17936621410946652, 0.17824945151401206, 0.17941811039923206, 0.179053720016642, 0.17841113460537183, 0.17957284018182973, 0.17835112510161677, 0.17897117554260822, 0.1792322649588063, 0.1782539868933064, 0.17950825398710402, 0.1787657276039467, 0.17866201317662256, 0.1795468408175016, 0.1782791132018402, 0.17925585255346155, 0.17897151251833332, 0.1783004122266063, 0.17956082326409106, 0.17873060988743417, 0.1787168867781186, 0.1794815161113017, 0.1557743895247432, 0.15662709150848775, 0.17893299550625352, 0.17847487988637, 0.1793719829240592, 0.17881762675503454, 0.1787402055494769, 0.1793163846461332, 0.17843723260024813, 0.17929549094519714, 0.17880609438747364, 0.1785348380697882, 0.5908202260337947, 0.591804326284251, 0.5927433850580477, 0.5907924113074392, 0.5938799794077965, 0.592651350724005, 0.5920998835132196, 0.5939144437447363, 0.5907241307892552, 0.5921955880411334, 0.5923465450205501, 0.5907349727388156, 0.5939110630959199, 0.5922519087026012, 0.5925005553769624, 0.5939036158975064, 0.5907588135342645, 0.5925942683560059, 0.5919503994561426, 0.5907780348426983, 0.5241148481271996, 0.5216304415095463, 0.5024833537822793, 0.5026608620767314, 0.5911591919940951, 0.5941944394646792, 0.5903846474147878, 0.5912864766008386, 0.5932346430970181, 0.5903265313270123, 0.5943811615927164, 0.5931317421159488, 0.5916598821478769, 0.5944256953097082, 0.5901869888025324, 0.5918016339520604, 0.5927074763678597, 0.5901599862537243, 0.594511785559082, 0.5925782043750272, 0.5922183702236627, 0.5945225115591701, 0.5901240610672875, 0.5923671162255673, 0.5921394538524472, 0.5901314847933659, 0.5945044466607041, 0.5920424841798777, 0.5927530522539803, 0.5944839213026243, 0.5146725638374705, 0.5168174053726826, 0.5921905507622061, 0.5907611382385825, 0.5938737229152502, 0.5921302946054752, 0.5926197804212441, 0.5938597887819586, 0.5908095538947888, 0.5927439945174751, 0.5918047599753895, 0.5908381917668626], [-1.2605596746839698, -1.260314688052433, -1.2598022979387613, -1.2608315803008807, -1.2598121601015144, -1.2616063388576348, -1.2614323082810186, -1.2592055195276286, -1.260011434582875, -1.2610524334594198, -1.260264548021417, -1.261156005468167, -1.2614583695325088, -1.2597294629118627, -1.260355682249359, -1.2603501653951632, -1.2597269089392737, -1.2614586427656116, -1.261151797385951, -1.2602699245495286, -1.2871885888787737, -1.2858022703771121, -1.295512068086313, -1.2959131489942433, -1.2602345472412235, -1.2611911834869982, -1.2611013020891182, -1.26019174095382, -1.2607701410655148, -1.2600777222959714, -1.259871215381625, -1.2608570002270447, -1.2609502039789833, -1.260754558720656, -1.2613492090024492, -1.2596539671116957, -1.2599698189208475, -1.2607145508591877, -1.2597697772198657, -1.2610818268854462, -1.260342724002106, -1.2610777481203428, -1.2611896741604456, -1.2592259524440985, -1.2595995109043745, -1.2615755059258715, -1.2607211342624547, -1.260588792161843, -1.2619319687812158, -1.2593928849735647, -1.2887869934308238, -1.289137222220127, -1.2603040800013288, -1.2611660756733922, -1.2609224119697338, -1.2596076084958607, -1.2599947981356552, -1.2612842195808271, -1.260556223423026, -1.2601243935955742, -1.2605216638339467, -1.2609008985969838, -0.49429912401421916, -0.4942011848785288, -0.49402884426397176, -0.4944403242668205, -0.49392715312179813, -0.4946444167769348, -0.494642475784568, -0.49384803328222926, -0.4940031027717007, -0.49450349263457927, -0.49410766421620345, -0.49446404467967664, -0.4946162529839704, -0.4939250829982811, -0.49424031875411334, -0.49423811306070764, -0.4939243690971207, -0.49461666915995295, -0.49446220468818414, -0.4941096561139613, -0.49580432387785756, -0.49525990132137654, -0.495847581273301, -0.4960629050582144, -0.49405329285656663, -0.4945045490734046, -0.4944593030919986, -0.49409568533387294, -0.4943868486234626, -0.4941100382965802, -0.49400608370830934, -0.4944961134639714, -0.49429209945439645, -0.4942981255562362, -0.4945974694420263, -0.4939197575981602, -0.4940787556634296, -0.49437648356964736, -0.4939864595138177, -0.4945109812737325, -0.4941389209023317, -0.49443276362082234, -0.4945754345897502, -0.4938861760950264, -0.4938234754592319, -0.49469773213683954, -0.4942676459879225, -0.4943106724386581, -0.4947356646151091, -0.49380505579399436, -0.49553591837780964, -0.495742188148518, -0.4940722391477692, -0.4944901952558256, -0.4944531012929243, -0.4940232475564299, -0.4939673852005777, -0.4945672189560213, -0.49428634374737435, -0.4942095438964511, -0.4941586272116938, -0.49439460739097996]], variable_names=['QD2E-C04', 'QD2A-C05', 'QD2E-C05', 'QD2A-C06', 'QD2E-C06', 'QD2A-C07', 'QD2E-C07', 'QD2A-C08', 'QD2E-C08', 'QD2A-C09', 'QD2E-C09', 'QD2A-C10', 'QD2E-C10', 'QD2A-C11', 'QD2E-C11', 'QD2A-C12', 'QD2E-C12', 'QD2A-C13', 'QD2E-C13', 'QD2A-C14', 'QD2E-C14', 'QD2A-C15', 'QD2E-C15', 'QD2A-C16', 'QD2E-C16', 'QD2A-C17', 'QD2E-C17', 'QD2A-C18', 'QD2E-C18', 'QD2A-C19', 'QD2E-C19', 'QD2A-C20', 'QD2E-C20', 'QD2A-C21', 'QD2E-C21', 'QD2A-C22', 'QD2E-C22', 'QD2A-C23', 'QD2E-C23', 'QD2A-C24', 'QD2E-C24', 'QD2A-C25', 'QD2E-C25', 'QD2A-C26', 'QD2E-C26', 'QD2A-C27', 'QD2E-C27', 'QD2A-C28', 'QD2E-C28', 'QD2A-C29', 'QD2E-C29', 'QD2A-C30', 'QD2E-C30', 'QD2A-C31', 'QD2E-C31', 'QD2A-C32', 'QD2E-C32', 'QD2A-C01', 'QD2E-C01', 'QD2A-C02', 'QD2E-C02', 'QD2A-C03', 'QF1E-C04', 'QF1A-C05', 'QF1E-C05', 'QF1A-C06', 'QF1E-C06', 'QF1A-C07', 'QF1E-C07', 'QF1A-C08', 'QF1E-C08', 'QF1A-C09', 'QF1E-C09', 'QF1A-C10', 'QF1E-C10', 'QF1A-C11', 'QF1E-C11', 'QF1A-C12', 'QF1E-C12', 'QF1A-C13', 'QF1E-C13', 'QF1A-C14', 'QF1E-C14', 'QF1A-C15', 'QF1E-C15', 'QF1A-C16', 'QF1E-C16', 'QF1A-C17', 'QF1E-C17', 'QF1A-C18', 'QF1E-C18', 'QF1A-C19', 'QF1E-C19', 'QF1A-C20', 'QF1E-C20', 'QF1A-C21', 'QF1E-C21', 'QF1A-C22', 'QF1E-C22', 'QF1A-C23', 'QF1E-C23', 'QF1A-C24', 'QF1E-C24', 'QF1A-C25', 'QF1E-C25', 'QF1A-C26', 'QF1E-C26', 'QF1A-C27', 'QF1E-C27', 'QF1A-C28', 'QF1E-C28', 'QF1A-C29', 'QF1E-C29', 'QF1A-C30', 'QF1E-C30', 'QF1A-C31', 'QF1E-C31', 'QF1A-C32', 'QF1E-C32', 'QF1A-C01', 'QF1E-C01', 'QF1A-C02', 'QF1E-C02', 'QF1A-C03'], observable_names=['BETATRON_TUNE.x', 'BETATRON_TUNE.y']))"
+ ]
+ },
+ "execution_count": 10,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "print(f\"Tune before correction: {SR.tune.readback()}\")\n",
+ "\n",
+ "qx, qy = 0.19, 0.28\n",
+ "print(f\"\\nSetting tune to [{qx}, {qy}]\")\n",
+ "SR.tune.set([qx, qy], iter=10, wait_time=wait_time)\n",
+ "print(f\"Tune after correction: {SR.tune.readback()}\")\n",
+ "\n",
+ "qx, qy = 0.21, 0.30\n",
+ "print(f\"\\nSetting tune to [{qx}, {qy}]\")\n",
+ "SR.tune.set([qx, qy], iter=10, wait_time=wait_time)\n",
+ "print(f\"Tune after correction: {SR.tune.readback()}\")\n",
+ "\n",
+ "SR.tune # string representation"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "29bfad11-3da0-4890-b069-f31cfeaa41bb",
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.3"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/use_cases/01-tune_correction.py b/examples/use_cases/01-tune_correction.py
new file mode 100644
index 000000000..959affb65
--- /dev/null
+++ b/examples/use_cases/01-tune_correction.py
@@ -0,0 +1,180 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+# In[1]:
+
+
+# ## Facility configuration
+#
+# Edit the `CONFIG_FILE` variable below to select the facility. The rest of the notebook runs unchanged.
+#
+# | Facility | Config file | Control system | Virtual twin |
+# |----------|-------------|----------------|--------------|
+# | SOLEIL II | `config/soleil_ii/p.yaml` | TANGO (`tango-pyaml`) | Apptainer container |
+# | BESSY2 | `config/bessy2/bessy2.yaml` | EPICS (`pyaml-cs-oa`) | Apptainer container |
+# | ESRF EBS | `config/esrf/esrf.yaml` | TANGO (`tango-pyaml`) | Apptainer container |
+#
+# See `README.md` for installation and virtual accelerator startup instructions.
+# In[2]:
+from pathlib import Path
+
+import matplotlib.pyplot as plt
+import numpy as np
+
+from pyaml.accelerator import Accelerator
+from pyaml.common.constants import Action
+
+# ── Facility configuration ──────────────────────────────────────────────────
+# Uncomment the facility you want to use:
+
+# CONFIG_FILE = "config/soleil_ii/p.yaml"
+# CONFIG_FILE = "config/bessy2/bessy2.yaml"
+CONFIG_FILE = "config/esrf/esrf.yaml"
+# ────────────────────────────────────────────────────────────────────────────
+
+CONFIG_DIR = Path(CONFIG_FILE).parent
+
+sr = Accelerator.load(CONFIG_FILE)
+print(sr) # string representation
+
+
+# ### Virtual accelerator setup
+#
+# For **live** control mode you need a running control system or emulator.
+# If you want to skip this, run the notebook in **design** mode only.
+#
+# **SOLEIL II / ESRF (TANGO)**
+# ```
+# apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest
+# apptainer run virtual-accelerator.sif
+# ```
+#
+# **BESSY2 (EPICS)**
+# ```
+# apptainer run oras://registry.hzdr.de/digital-twins-for-accelerators/containers/pyat-softioc-digital-twin:default-v0-5-1-bessy.2711893
+# ```
+#
+# > **Note for BESSY2 live mode:** the PV prefix in `config/bessy2/bessy2.yaml` must match
+# > your virtual accelerator instance. Edit the `prefix:` field under `controls:`.
+
+# ### Control mode choice
+#
+# - **`sr.design`** — runs pyAT locally, no control system needed. Set `wait_time = 0.0`.
+# - **`sr.live`** — connects to the real machine or virtual twin. Set `wait_time` to allow
+# readback settling (typically 1.5–2 s).
+
+# In[3]:
+
+
+SR = sr.design
+# SR = sr.live
+
+wait_time = 0.0 if SR == sr.design else 2.0
+print(SR) # string representation
+
+
+# #### Betatron tune monitor
+#
+# The tune monitor is defined in the configuration file under the name `BETATRON_TUNE`.
+
+# In[4]:
+
+
+tune_monitor = SR.get_betatron_tune_monitor("BETATRON_TUNE")
+print(f"Current tune: {tune_monitor.tune.get()}")
+print(tune_monitor) # string representation
+
+
+# #### Quadrupolar correctors
+#
+# The `QForTune` array contains the quadrupoles used for tune correction.
+# You can access and set individual corrector strengths.
+
+# In[5]:
+
+
+qcorrectors = SR.get_magnets("QForTune")
+first_q = qcorrectors[0]
+print(f"The ring has {len(qcorrectors)} quadrupolar correctors. First: {first_q.get_name()}")
+print(qcorrectors[0]) # string representation
+
+
+# In[6]:
+
+
+str_before = qcorrectors[0].strength.get()
+print(f"Current strength: {qcorrectors[0].strength.get()=:.4f}")
+qcorrectors[0].strength.set(str_before + 0.002)
+print(f"After stepping by 0.002: {qcorrectors[0].strength.get()=:.4f}")
+qcorrectors[0].strength.set(str_before)
+print(f"Reset to {str_before:.4f}")
+
+
+# ### Standard tune correction tool
+#
+# `SR.tune` is the `DEFAULT_TUNE_CORRECTION` tool. `SR.trm` is the `DEFAULT_TUNE_RESPONSE_MATRIX` tool.
+#
+# Before correcting the tune you need a response matrix. It can be measured (below) or loaded from a previously saved file.
+
+# In[7]:
+
+
+print(SR.tune) # string representation
+
+
+# #### Measuring the tune response matrix
+#
+# The callback below prints progress during the measurement. The `sleep_between_step`
+# parameter controls the wait time between corrector steps — set it to 0 for design mode.
+#
+# > **Note:** on some lattices `disable_6d()` is required before measuring in design mode.
+
+# In[8]:
+
+
+# Required on some lattices before measuring the TRM in design mode
+sr.design.get_lattice().disable_6d()
+
+
+def tune_callback(action: int, cb_data: dict):
+ if action == Action.MEASURE:
+ print(f"Tune response: #{cb_data['step']} {cb_data['magnet']} {cb_data['tune']}")
+ return True
+
+
+# In[9]:
+
+
+if SR.tune.response_matrix is None:
+ SR.trm.measure(sleep_between_step=wait_time, callback=tune_callback)
+ SR.trm.save(CONFIG_DIR / "trm.json")
+
+SR.tune.load(CONFIG_DIR / "trm.json")
+print("Response matrix loaded.")
+print(SR.trm) # string representation
+
+
+# #### Correcting the tune
+#
+# `SR.tune.set([qx, qy])` runs the correction iteratively. The `iter` parameter controls
+# the number of iterations and `wait_time` the settling time between each iteration.
+
+# In[10]:
+
+
+print(f"Tune before correction: {SR.tune.readback()}")
+
+qx, qy = 0.19, 0.28
+print(f"\nSetting tune to [{qx}, {qy}]")
+SR.tune.set([qx, qy], iter=10, wait_time=wait_time)
+print(f"Tune after correction: {SR.tune.readback()}")
+
+qx, qy = 0.21, 0.30
+print(f"\nSetting tune to [{qx}, {qy}]")
+SR.tune.set([qx, qy], iter=10, wait_time=wait_time)
+print(f"Tune after correction: {SR.tune.readback()}")
+
+print(SR.tune) # string representation
+
+
+# In[ ]:
diff --git a/examples/use_cases/02-chromaticity_measurement.ipynb b/examples/use_cases/02-chromaticity_measurement.ipynb
new file mode 100644
index 000000000..0b794824c
--- /dev/null
+++ b/examples/use_cases/02-chromaticity_measurement.ipynb
@@ -0,0 +1,326 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "id": "45d2462a",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "\n",
+ "from pyaml.accelerator import Accelerator\n",
+ "from pyaml.common.constants import Action"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "9ba6385a",
+ "metadata": {},
+ "source": [
+ "## Facility configuration\n",
+ "\n",
+ "Edit the `CONFIG_FILE` variable below to select the facility. The rest of the notebook runs unchanged.\n",
+ "\n",
+ "| Facility | Config file | Control system | Virtual twin |\n",
+ "|----------|-------------|----------------|--------------|\n",
+ "| SOLEIL II | `config/soleil_ii/p.yaml` | TANGO (`tango-pyaml`) | Apptainer container |\n",
+ "| BESSY2 | `config/bessy2/bessy2.yaml` | EPICS (`pyaml-cs-oa`) | Apptainer container |\n",
+ "| ESRF EBS | `config/esrf/esrf.yaml` | TANGO (`tango-pyaml`) | Apptainer container |\n",
+ "\n",
+ "See `README.md` for installation and virtual accelerator startup instructions."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "id": "bca6435a",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "14 Aug 2026, 13:41:08 | WARNING | PyAML Tango control system binding (0.4.0) initialized with name 'live' and TANGO_HOST=ebs-simu-3:10000\n",
+ "14 Aug 2026, 13:41:10 | WARNING | /home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/chroma_resp.json: file not found\n",
+ "14 Aug 2026, 13:41:10 | WARNING | Loading /home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/orm.json failed /home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/orm.json: file not found\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "Accelerator(facility='ESRF', machine='sr', description=None, live=TangoControlSystem(name='live', tango_host='ebs-simu-3:10000', catalog=, debug_level=None, lazy_devices=True, timeout_ms=3000), design=Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/sr/lattices/ebs.mat', mat_key=None, linker=None, description=None), yellow_pages=Controls:\n",
+ " live\n",
+ " .\n",
+ "\n",
+ "Simulators:\n",
+ " design\n",
+ " .\n",
+ "\n",
+ "Arrays:\n",
+ " BPM (pyaml.arrays.bpm_array) size=320\n",
+ " HCorr (pyaml.arrays.magnet_array) size=288\n",
+ " VCorr (pyaml.arrays.magnet_array) size=288\n",
+ " Skews (pyaml.arrays.magnet_array) size=288\n",
+ " Sext (pyaml.arrays.magnet_array) size=180\n",
+ " QForTune (pyaml.arrays.magnet_array) size=124\n",
+ " .\n",
+ "\n",
+ "Tools:\n",
+ " BBA-BPM_C04-04 (pyaml.tuning_tools.bba)\n",
+ " BBA2-BPM_C04-04 (pyaml.tuning_tools.bba2)\n",
+ " CHROMATICITY_MONITOR (pyaml.tuning_tools.chromaticity_monitor)\n",
+ " DEFAULT_TUNE_CORRECTION (pyaml.tuning_tools.tune)\n",
+ " DEFAULT_TUNE_RESPONSE_MATRIX (pyaml.tuning_tools.tune_response_matrix)\n",
+ " DEFAULT_CHROMATICITY_RESPONSE_MATRIX (pyaml.tuning_tools.chromaticity_response_matrix)\n",
+ " DEFAULT_CHROMATICITY_CORRECTION (pyaml.tuning_tools.chromaticity)\n",
+ " DEFAULT_ORBIT_CORRECTION (pyaml.tuning_tools.orbit)\n",
+ " DEFAULT_ORBIT_RESPONSE_MATRIX (pyaml.tuning_tools.orbit_response_matrix)\n",
+ " DEFAULT_DISPERSION (pyaml.tuning_tools.dispersion)\n",
+ " .\n",
+ "\n",
+ "Diagnostics:\n",
+ " BETATRON_TUNE (pyaml.diagnostics.tune_monitor)\n",
+ " .)"
+ ]
+ },
+ "execution_count": 13,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# ── Facility configuration ──────────────────────────────────────────────────\n",
+ "# Uncomment the facility you want to use:\n",
+ "\n",
+ "# CONFIG_FILE = \"config/soleil_ii/p.yaml\"\n",
+ "# CONFIG_FILE = \"config/bessy2/bessy2.yaml\"\n",
+ "CONFIG_FILE = \"config/esrf/esrf.yaml\"\n",
+ "# ────────────────────────────────────────────────────────────────────────────\n",
+ "\n",
+ "sr = Accelerator.load(CONFIG_FILE)\n",
+ "sr # string representation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "1e562c84",
+ "metadata": {},
+ "source": [
+ "### Virtual accelerator setup\n",
+ "\n",
+ "For **live** control mode you need a running control system or emulator. If you want to skip this, run the notebook in **design** mode only.\n",
+ "\n",
+ "**SOLEIL II / ESRF (TANGO)**\n",
+ "```\n",
+ "apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest\n",
+ "apptainer run virtual-accelerator.sif\n",
+ "```\n",
+ "\n",
+ "**BESSY2 (EPICS)**\n",
+ "```\n",
+ "apptainer run oras://registry.hzdr.de/digital-twins-for-accelerators/containers/pyat-softioc-digital-twin:default-v0-5-1-bessy.2711893\n",
+ "```\n",
+ "\n",
+ "> **Note for BESSY2 live mode:** the PV prefix in `config/bessy2/bessy2.yaml` must match your virtual accelerator instance. Edit the `prefix:` field under `controls:`."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b112b495",
+ "metadata": {},
+ "source": [
+ "### Control mode choice\n",
+ "\n",
+ "- **`sr.design`** — runs pyAT locally, no control system needed. Set `wait_time = 0.0`.\n",
+ "- **`sr.live`** — connects to the real machine or virtual twin. Set `wait_time` to allow readback settling (typically 1.5–2 s)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "id": "f23b58c7",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/esrf/sr/lattices/ebs.mat', mat_key=None, linker=None, description=None)"
+ ]
+ },
+ "execution_count": 14,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "SR = sr.design\n",
+ "# SR = sr.live\n",
+ "\n",
+ "wait_time = 0.0 if SR == sr.design else 2.0\n",
+ "SR # string representation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8af61b38",
+ "metadata": {},
+ "source": [
+ "### Momentum compaction factor\n",
+ "\n",
+ "The momentum compaction factor α_c is needed to convert RF frequency deviation to momentum deviation. It is computed from the lattice model (design mode)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "id": "2154aab9",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Momentum compaction factor: αc = 8.623615e-05\n"
+ ]
+ }
+ ],
+ "source": [
+ "sr.design.get_lattice().disable_6d()\n",
+ "alphac = sr.design.get_lattice().get_mcf()\n",
+ "sr.design.get_lattice().enable_6d()\n",
+ "print(f\"Momentum compaction factor: αc = {alphac:.6e}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5d3fc38e",
+ "metadata": {},
+ "source": [
+ "### Chromaticity measurement\n",
+ "\n",
+ "The chromaticity monitor is named `CHROMATICITY_MONITOR` in the configuration. The measurement sweeps the RF frequency and fits the resulting tune shift.\n",
+ "\n",
+ "Parameters:\n",
+ "- `alphac` — momentum compaction factor (from lattice above)\n",
+ "- `fit_order` — polynomial fit order (2 = quadratic)\n",
+ "- `n_step` — number of RF frequency steps\n",
+ "- `sleep_between_meas` / `sleep_between_step` — settling times (set to `wait_time` for live mode)\n",
+ "- `do_plot=True` — show the tune vs. δp fit"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "id": "d80fd338",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def chroma_callback(action: int, cb_data: dict):\n",
+ " if action == Action.MEASURE:\n",
+ " print(f\"Chromaticity: #{cb_data['step']} RF={cb_data['rf']:.2f} Hz, Tune={cb_data['tune']}\")\n",
+ " return True"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "id": "160e4cf7",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Chromaticity: #0 RF=352372199.79 Hz, Tune=[0.15148296 0.33444759]\n",
+ "Chromaticity: #1 RF=352372184.59 Hz, Tune=[0.15569448 0.33720674]\n",
+ "Chromaticity: #2 RF=352372169.40 Hz, Tune=[0.15996911 0.34002636]\n",
+ "Chromaticity: #3 RF=352372154.21 Hz, Tune=[0.16430419 0.3429056 ]\n",
+ "Chromaticity: #4 RF=352372139.01 Hz, Tune=[0.16869704 0.34584364]\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "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ACByc3OlMl3PYX219vmiC0OP+aFDhwQA8c4770hlpaWlwt/fXwwePNigWKqqqkSfPn1EUFBQvW0mTZokRo4cKUaMGCF69OhhcEzNET+1DN4epXbFzMwMbm5uTdYOAPbu3Yvo6Gg4OTlJZe7u7hgxYgT+97//NfhQ+5AhQ2BqaqpVFhgYiB49eiApKanObQoLC1FVVdWoWL766itkZWXhjTfegFwuR3FxsU7PpVVLT0/H6dOnER0dXWf9vn37MHDgQJibm8Pf37/O25LVzywlJydj4sSJsLW1hZOTE/7xj3+grKyszv1u375d66qJPvvo378/HB0dta4SAZpbaI8//jhkMhk+//zzVn2OqqFjWx99jqWu50dBQQEAwNXVVWt7d3d3yOVyrXPWkHP4Ti1xvhiyfXP5/vvvYWRkpHVFzNzcHE899RQSEhJw5coVvfdpZGQET09P5OXl1Vm/Z88efP/991i9enWjY2qO+KllMGmjTq+8vBwWFha1yi0tLVFRUYEzZ87otT8hBLKysuDs7FyrbubMmbC1tYW5uTkiIyNx9OhRg2LZuXMnbG1tce3aNQQFBcHa2hq2traYM2eOTl9gBw4cAAD069evVt1ff/2F++67D0qlEsuWLcPMmTOxdOlS/Pjjj3Xua+LEiSgrK0NMTAzGjh2L999/v87bO5mZmThx4gTGjh1r8D769euH/fv3a5U988wzyMjIwHfffQdj49Z74uNux7Y++hxLXc+PiIgIAMBTTz2FkydP4sqVK9i6dSvWrl2L+fPn13t7rVpD5/CdWvp80XX75nTixAl069YNtra2WuVhYWEAoNPzsABQXFyMnJwcpKWlYdWqVfjtt98QFRVVq51KpcK8efPw97//Hb169Wp0TE0VP7WC1r7UR2Sou9321LVdr169RLdu3URVVZVUVl5eLry8vAQA8f333+sV1+bNmwUAsWHDBqls//794uGHHxYbNmwQP/30k4iJiRFOTk7C3NxcHD9+XO9YevfuLSwtLYWlpaWYN2+e+OGHH8S8efMEADF58uS7xvjqq68KAKKwsLBW3YQJE4S5ubm4dOmSVJaYmCiMjIy0bndV3/4aP3681vbPPvusACBOnTqlVb5hwwZhYWEhSkpKDN7H008/LSwsLKTXFy9eFACEubm5sLKykn727Nlz19/BnQy9Vabrsa2PPsdSn3P1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",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/plain": [
+ "True"
+ ]
+ },
+ "execution_count": 17,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "chroma_monitor = SR.get_chromaticity_monitor(\"CHROMATICITY_MONITOR\")\n",
+ "\n",
+ "chroma_monitor.measure(\n",
+ " callback=chroma_callback,\n",
+ " do_plot=True,\n",
+ " alphac=alphac,\n",
+ " fit_order=2,\n",
+ " n_step=5,\n",
+ " sleep_between_meas=wait_time,\n",
+ " sleep_between_step=wait_time,\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "id": "cecc48f1",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Measured chromaticity: ξx = 8.608, ξy = 5.698\n"
+ ]
+ }
+ ],
+ "source": [
+ "ksi = chroma_monitor.chromaticity.get()\n",
+ "print(f\"Measured chromaticity: ξx = {ksi[0]:.3f}, ξy = {ksi[1]:.3f}\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "015cb06e-7c70-4300-a043-c7c182bd2411",
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.3"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/use_cases/02-chromaticity_measurement.py b/examples/use_cases/02-chromaticity_measurement.py
new file mode 100644
index 000000000..966b23ef3
--- /dev/null
+++ b/examples/use_cases/02-chromaticity_measurement.py
@@ -0,0 +1,132 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+# In[12]:
+
+
+import numpy as np
+
+from pyaml.accelerator import Accelerator
+from pyaml.common.constants import Action
+
+# ## Facility configuration
+#
+# Edit the `CONFIG_FILE` variable below to select the facility. The rest of the notebook runs unchanged.
+#
+# | Facility | Config file | Control system | Virtual twin |
+# |----------|-------------|----------------|--------------|
+# | SOLEIL II | `config/soleil_ii/p.yaml` | TANGO (`tango-pyaml`) | Apptainer container |
+# | BESSY2 | `config/bessy2/bessy2.yaml` | EPICS (`pyaml-cs-oa`) | Apptainer container |
+# | ESRF EBS | `config/esrf/esrf.yaml` | TANGO (`tango-pyaml`) | Apptainer container |
+#
+# See `README.md` for installation and virtual accelerator startup instructions.
+
+# In[13]:
+
+
+# ── Facility configuration ──────────────────────────────────────────────────
+# Uncomment the facility you want to use:
+
+# CONFIG_FILE = "config/soleil_ii/p.yaml"
+# CONFIG_FILE = "config/bessy2/bessy2.yaml"
+CONFIG_FILE = "config/esrf/esrf.yaml"
+# ────────────────────────────────────────────────────────────────────────────
+
+sr = Accelerator.load(CONFIG_FILE)
+print(sr) # string representation
+
+
+# ### Virtual accelerator setup
+#
+# For **live** control mode you need a running control system or emulator.
+# If you want to skip this, run the notebook in **design** mode only.
+#
+# **SOLEIL II / ESRF (TANGO)**
+# ```
+# apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest
+# apptainer run virtual-accelerator.sif
+# ```
+#
+# **BESSY2 (EPICS)**
+# ```
+# apptainer run oras://registry.hzdr.de/digital-twins-for-accelerators/containers/pyat-softioc-digital-twin:default-v0-5-1-bessy.2711893
+# ```
+#
+# > **Note for BESSY2 live mode:** the PV prefix in `config/bessy2/bessy2.yaml` must match
+# > your virtual accelerator instance. Edit the `prefix:` field under `controls:`.
+
+# ### Control mode choice
+#
+# - **`sr.design`** — runs pyAT locally, no control system needed. Set `wait_time = 0.0`.
+# - **`sr.live`** — connects to the real machine or virtual twin. Set `wait_time` to allow
+# readback settling (typically 1.5–2 s).
+
+# In[14]:
+
+
+SR = sr.design
+# SR = sr.live
+
+wait_time = 0.0 if SR == sr.design else 2.0
+print(SR) # string representation
+
+
+# ### Momentum compaction factor
+#
+# The momentum compaction factor α_c is needed to convert RF frequency deviation to
+# momentum deviation. It is computed from the lattice model (design mode).
+
+# In[15]:
+
+
+sr.design.get_lattice().disable_6d()
+alphac = sr.design.get_lattice().get_mcf()
+sr.design.get_lattice().enable_6d()
+print(f"Momentum compaction factor: αc = {alphac:.6e}")
+
+
+# ### Chromaticity measurement
+#
+# The chromaticity monitor is named `CHROMATICITY_MONITOR` in the configuration.
+# The measurement sweeps the RF frequency and fits the resulting tune shift.
+#
+# Parameters:
+# - `alphac` — momentum compaction factor (from lattice above)
+# - `fit_order` — polynomial fit order (2 = quadratic)
+# - `n_step` — number of RF frequency steps
+# - `sleep_between_meas` / `sleep_between_step` — settling times (set to `wait_time` for live mode)
+# - `do_plot=True` — show the tune vs. δp fit
+
+# In[16]:
+
+
+def chroma_callback(action: int, cb_data: dict):
+ if action == Action.MEASURE:
+ print(f"Chromaticity: #{cb_data['step']} RF={cb_data['rf']:.2f} Hz, Tune={cb_data['tune']}")
+ return True
+
+
+# In[17]:
+
+
+chroma_monitor = SR.get_chromaticity_monitor("CHROMATICITY_MONITOR")
+
+chroma_monitor.measure(
+ callback=chroma_callback,
+ do_plot=True,
+ alphac=alphac,
+ fit_order=2,
+ n_step=5,
+ sleep_between_meas=wait_time,
+ sleep_between_step=wait_time,
+)
+
+
+# In[18]:
+
+
+ksi = chroma_monitor.chromaticity.get()
+print(f"Measured chromaticity: ξx = {ksi[0]:.3f}, ξy = {ksi[1]:.3f}")
+
+
+# In[ ]:
diff --git a/examples/use_cases/03-orbit_correction.ipynb b/examples/use_cases/03-orbit_correction.ipynb
new file mode 100644
index 000000000..301ecbad0
--- /dev/null
+++ b/examples/use_cases/03-orbit_correction.ipynb
@@ -0,0 +1,659 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "id": "beeea64e",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from pathlib import Path\n",
+ "from time import sleep\n",
+ "\n",
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "from pyaml.accelerator import Accelerator\n",
+ "from pyaml.common.constants import Action"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "72c306ec",
+ "metadata": {},
+ "source": [
+ "## Facility configuration\n",
+ "\n",
+ "Edit the `CONFIG_FILE` variable below to select the facility. The rest of the notebook runs unchanged.\n",
+ "\n",
+ "| Facility | Config file | Control system | Virtual twin |\n",
+ "|----------|-------------|----------------|--------------|\n",
+ "| SOLEIL II | `config/soleil_ii/p.yaml` | TANGO (`tango-pyaml`) | Apptainer container |\n",
+ "| BESSY2 | `config/bessy2/bessy2.yaml` | EPICS (`pyaml-cs-oa`) | Apptainer container |\n",
+ "| ESRF EBS | `config/esrf/esrf.yaml` | TANGO (`tango-pyaml`) | Apptainer container |\n",
+ "\n",
+ "See `README.md` for installation and virtual accelerator startup instructions."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "id": "e86031ad",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "PyAML OA control system binding (0.1.2) initialized with name 'live' and prefix='pons:'\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "14 Aug 2026, 14:23:11 | WARNING | Loading /home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/bessy2/orm.json failed /home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/bessy2/orm.json: file not found\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "Accelerator(facility='BESSY2', machine='sr', description=None, live=OphydAsyncControlSystem(name='live', prefix='pons:', catalog=, debug_level=None), design=Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/bessy2/bessy2_standard_user.mat', mat_key=None, linker=None, description=None), yellow_pages=Controls:\n",
+ " live\n",
+ " .\n",
+ "\n",
+ "Simulators:\n",
+ " design\n",
+ " .\n",
+ "\n",
+ "Arrays:\n",
+ " BPM (pyaml.arrays.bpm_array) size=123\n",
+ " HCorr (pyaml.arrays.magnet_array) size=48\n",
+ " VCorr (pyaml.arrays.magnet_array) size=64\n",
+ " QForTune (pyaml.arrays.magnet_array) size=64\n",
+ " .\n",
+ "\n",
+ "Tools:\n",
+ " DEFAULT_ORBIT_RESPONSE_MATRIX (pyaml.tuning_tools.orbit_response_matrix)\n",
+ " DEFAULT_DISPERSION (pyaml.tuning_tools.dispersion)\n",
+ " DEFAULT_ORBIT_CORRECTION (pyaml.tuning_tools.orbit)\n",
+ " DEFAULT_TUNE_CORRECTION (pyaml.tuning_tools.tune)\n",
+ " DEFAULT_TUNE_RESPONSE_MATRIX (pyaml.tuning_tools.tune_response_matrix)\n",
+ " KSI (pyaml.tuning_tools.chromaticity_monitor)\n",
+ " CHROMATICITY_MONITOR (pyaml.tuning_tools.chromaticity_monitor)\n",
+ " .\n",
+ "\n",
+ "Diagnostics:\n",
+ " BETATRON_TUNE (pyaml.diagnostics.tune_monitor)\n",
+ " .)"
+ ]
+ },
+ "execution_count": 2,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# ── Facility configuration ──────────────────────────────────────────────────\n",
+ "# Uncomment the facility you want to use:\n",
+ "\n",
+ "# CONFIG_FILE = \"config/soleil_ii/p.yaml\"\n",
+ "CONFIG_FILE = \"config/bessy2/bessy2.yaml\"\n",
+ "# CONFIG_FILE = \"config/esrf/esrf.yaml\"\n",
+ "# ────────────────────────────────────────────────────────────────────────────\n",
+ "\n",
+ "CONFIG_DIR = Path(CONFIG_FILE).parent\n",
+ "\n",
+ "sr = Accelerator.load(CONFIG_FILE)\n",
+ "sr # string representation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "fc060e0d",
+ "metadata": {},
+ "source": [
+ "### Virtual accelerator setup\n",
+ "\n",
+ "For **live** control mode you need a running control system or emulator. If you want to skip this, run the notebook in **design** mode only.\n",
+ "\n",
+ "**SOLEIL II / ESRF (TANGO)**\n",
+ "```\n",
+ "apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest\n",
+ "apptainer run virtual-accelerator.sif\n",
+ "```\n",
+ "\n",
+ "**BESSY2 (EPICS)**\n",
+ "```\n",
+ "apptainer run oras://registry.hzdr.de/digital-twins-for-accelerators/containers/pyat-softioc-digital-twin:default-v0-5-1-bessy.2711893\n",
+ "```\n",
+ "\n",
+ "> **Note for BESSY2 live mode:** the PV prefix in `config/bessy2/bessy2.yaml` must match your virtual accelerator instance. Edit the `prefix:` field under `controls:`."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "c8e07cd2",
+ "metadata": {},
+ "source": [
+ "### Control mode choice\n",
+ "\n",
+ "- **`sr.design`** runs in simulation, no control system needed. ORM measurement is fast (set `wait_time = 0.0`).\n",
+ "- **`sr.live`** connects to the real machine or twin. Use `wait_time ≥ 1.5 s` for settling.\n",
+ "\n",
+ "> **BESSY2 live note:** BPM readbacks may be in nm. `orbit_correction.correct(gain=1e-9)` compensates for the unit mismatch when using a design-mode ORM to correct on live."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "id": "0d946122",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Simulator(name='design', lattice='/home/gubaidulin/codes/operation/pyAML/pyaml/examples/unified_examples/config/bessy2/bessy2_standard_user.mat', mat_key=None, linker=None, description=None)"
+ ]
+ },
+ "execution_count": 3,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "SR = sr.design\n",
+ "# SR = sr.live\n",
+ "\n",
+ "wait_time = 0.0 if SR == sr.design else 2.0\n",
+ "SR # string representation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "85d74eec",
+ "metadata": {},
+ "source": [
+ "#### Orbit diagnostics and correctors"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "id": "6adb7436",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "BPMs: 123, H correctors: 48, V correctors: 64\n"
+ ]
+ }
+ ],
+ "source": [
+ "bpms = SR.get_bpms(\"BPM\")\n",
+ "hcorr = SR.get_magnets(\"HCorr\")\n",
+ "vcorr = SR.get_magnets(\"VCorr\")\n",
+ "print(f\"BPMs: {len(bpms)}, H correctors: {len(hcorr)}, V correctors: {len(vcorr)}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "808334df",
+ "metadata": {},
+ "source": [
+ "### Orbit response matrix\n",
+ "\n",
+ "The ORM can be saved in multiple formats. Load it into `SR.orbit` before correcting."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "id": "33636af2",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "OrbitResponseMatrix(peer='Simulator:design', name='DEFAULT_ORBIT_RESPONSE_MATRIX', description=None, lattice_names=None, n_step=1, sleep_between_step=0, n_avg_meas=1, sleep_between_meas=0, bpm_array_name='BPM', hcorr_array_name='HCorr', vcorr_array_name='VCorr', corrector_delta=1e-06)"
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "SR.orm # string representation"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "3f9dcb18",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "14 Aug 2026, 14:23:14 | INFO | Measuring correctors from the default arrays: HCorr and VCorr.\n",
+ "14 Aug 2026, 14:23:14 | INFO | Measured response of HS4M2D1R.\n",
+ "14 Aug 2026, 14:23:14 | INFO | Measured response of HS1MT1R.\n",
+ "14 Aug 2026, 14:23:14 | INFO | Measured response of HS4M1T1R.\n",
+ "14 Aug 2026, 14:23:14 | INFO | Measured response of HS4M2T1R.\n",
+ "14 Aug 2026, 14:23:15 | INFO | Measured response of HS1MD2R.\n",
+ "14 Aug 2026, 14:23:15 | INFO | Measured response of HS4M1D2R.\n",
+ "14 Aug 2026, 14:23:15 | INFO | Measured response of HS4M2D2R.\n",
+ "14 Aug 2026, 14:23:15 | INFO | Measured response of HS1MT2R.\n",
+ "14 Aug 2026, 14:23:15 | INFO | Measured response of HS4M1T2R.\n",
+ "14 Aug 2026, 14:23:15 | INFO | Measured response of HS4M2T2R.\n",
+ "14 Aug 2026, 14:23:15 | INFO | Measured response of HS1MD3R.\n",
+ "14 Aug 2026, 14:23:16 | INFO | Measured response of HS4M1D3R.\n",
+ "14 Aug 2026, 14:23:16 | INFO | Measured response of HS4M2D3R.\n",
+ "14 Aug 2026, 14:23:16 | INFO | Measured response of HS1MT3R.\n",
+ "14 Aug 2026, 14:23:16 | INFO | Measured response of HS4M1T3R.\n",
+ "14 Aug 2026, 14:23:16 | INFO | Measured response of HS4M2T3R.\n",
+ "14 Aug 2026, 14:23:16 | INFO | Measured response of HS1MD4R.\n",
+ "14 Aug 2026, 14:23:16 | INFO | Measured response of HS4M1D4R.\n",
+ "14 Aug 2026, 14:23:17 | INFO | Measured response of HS4M2D4R.\n",
+ "14 Aug 2026, 14:23:17 | INFO | Measured response of HS1MT4R.\n",
+ "14 Aug 2026, 14:23:17 | INFO | Measured response of HS4M1T4R.\n",
+ "14 Aug 2026, 14:23:17 | INFO | Measured response of HS4M2T4R.\n",
+ "14 Aug 2026, 14:23:17 | INFO | Measured response of HS1MD5R.\n",
+ "14 Aug 2026, 14:23:17 | INFO | Measured response of HS4M1D5R.\n",
+ "14 Aug 2026, 14:23:17 | INFO | Measured response of HS4M2D5R.\n",
+ "14 Aug 2026, 14:23:18 | INFO | Measured response of HS1MT5R.\n",
+ "14 Aug 2026, 14:23:18 | INFO | Measured response of HS4M1T5R.\n",
+ "14 Aug 2026, 14:23:18 | INFO | Measured response of HS4M2T5R.\n",
+ "14 Aug 2026, 14:23:18 | INFO | Measured response of HS1MD6R.\n",
+ "14 Aug 2026, 14:23:18 | INFO | Measured response of HS4M1D6R.\n",
+ "14 Aug 2026, 14:23:18 | INFO | Measured response of HS4M2D6R.\n",
+ "14 Aug 2026, 14:23:18 | INFO | Measured response of HS1MT6R.\n",
+ "14 Aug 2026, 14:23:19 | INFO | Measured response of HS4M1T6R.\n",
+ "14 Aug 2026, 14:23:19 | INFO | Measured response of HS4M2T6R.\n",
+ "14 Aug 2026, 14:23:19 | INFO | Measured response of HS1MD7R.\n",
+ "14 Aug 2026, 14:23:19 | INFO | Measured response of HS4M1D7R.\n",
+ "14 Aug 2026, 14:23:19 | INFO | Measured response of HS4M2D7R.\n",
+ "14 Aug 2026, 14:23:19 | INFO | Measured response of HS1MT7R.\n",
+ "14 Aug 2026, 14:23:19 | INFO | Measured response of HS4M1T7R.\n",
+ "14 Aug 2026, 14:23:20 | INFO | Measured response of HS4M2T7R.\n",
+ "14 Aug 2026, 14:23:20 | INFO | Measured response of HS1MD8R.\n",
+ "14 Aug 2026, 14:23:20 | INFO | Measured response of HS4M1D8R.\n",
+ "14 Aug 2026, 14:23:20 | INFO | Measured response of HS4M2D8R.\n",
+ "14 Aug 2026, 14:23:20 | INFO | Measured response of HS1MT8R.\n",
+ "14 Aug 2026, 14:23:20 | INFO | Measured response of HS4M1T8R.\n",
+ "14 Aug 2026, 14:23:20 | INFO | Measured response of HS4M2T8R.\n",
+ "14 Aug 2026, 14:23:21 | INFO | Measured response of HS1MD1R.\n",
+ "14 Aug 2026, 14:23:21 | INFO | Measured response of HS4M1D1R.\n",
+ "14 Aug 2026, 14:23:21 | INFO | Measured response of VS3M2D1R.\n",
+ "14 Aug 2026, 14:23:21 | INFO | Measured response of VS2M2D1R.\n",
+ "14 Aug 2026, 14:23:21 | INFO | Measured response of VS2M1T1R.\n",
+ "14 Aug 2026, 14:23:21 | INFO | Measured response of VS3M1T1R.\n",
+ "14 Aug 2026, 14:23:21 | INFO | Measured response of VS3M2T1R.\n",
+ "14 Aug 2026, 14:23:22 | INFO | Measured response of VS2M2T1R.\n",
+ "14 Aug 2026, 14:23:22 | INFO | Measured response of VS2M1D2R.\n",
+ "14 Aug 2026, 14:23:22 | INFO | Measured response of VS3M1D2R.\n",
+ "14 Aug 2026, 14:23:22 | INFO | Measured response of VS3M2D2R.\n",
+ "14 Aug 2026, 14:23:22 | INFO | Measured response of VS2M2D2R.\n",
+ "14 Aug 2026, 14:23:22 | INFO | Measured response of VS2M1T2R.\n",
+ "14 Aug 2026, 14:23:22 | INFO | Measured response of VS3M1T2R.\n",
+ "14 Aug 2026, 14:23:23 | INFO | Measured response of VS3M2T2R.\n",
+ "14 Aug 2026, 14:23:23 | INFO | Measured response of VS2M2T2R.\n",
+ "14 Aug 2026, 14:23:23 | INFO | Measured response of VS2M1D3R.\n",
+ "14 Aug 2026, 14:23:23 | INFO | Measured response of VS3M1D3R.\n",
+ "14 Aug 2026, 14:23:23 | INFO | Measured response of VS3M2D3R.\n",
+ "14 Aug 2026, 14:23:23 | INFO | Measured response of VS2M2D3R.\n",
+ "14 Aug 2026, 14:23:23 | INFO | Measured response of VS2M1T3R.\n",
+ "14 Aug 2026, 14:23:24 | INFO | Measured response of VS3M1T3R.\n",
+ "14 Aug 2026, 14:23:24 | INFO | Measured response of VS3M2T3R.\n",
+ "14 Aug 2026, 14:23:24 | INFO | Measured response of VS2M2T3R.\n",
+ "14 Aug 2026, 14:23:24 | INFO | Measured response of VS2M1D4R.\n",
+ "14 Aug 2026, 14:23:24 | INFO | Measured response of VS3M1D4R.\n",
+ "14 Aug 2026, 14:23:24 | INFO | Measured response of VS3M2D4R.\n",
+ "14 Aug 2026, 14:23:24 | INFO | Measured response of VS2M2D4R.\n",
+ "14 Aug 2026, 14:23:25 | INFO | Measured response of VS2M1T4R.\n",
+ "14 Aug 2026, 14:23:25 | INFO | Measured response of VS3M1T4R.\n",
+ "14 Aug 2026, 14:23:25 | INFO | Measured response of VS3M2T4R.\n",
+ "14 Aug 2026, 14:23:25 | INFO | Measured response of VS2M2T4R.\n",
+ "14 Aug 2026, 14:23:25 | INFO | Measured response of VS2M1D5R.\n",
+ "14 Aug 2026, 14:23:25 | INFO | Measured response of VS3M1D5R.\n",
+ "14 Aug 2026, 14:23:25 | INFO | Measured response of VS3M2D5R.\n",
+ "14 Aug 2026, 14:23:26 | INFO | Measured response of VS2M2D5R.\n",
+ "14 Aug 2026, 14:23:26 | INFO | Measured response of VS2M1T5R.\n",
+ "14 Aug 2026, 14:23:26 | INFO | Measured response of VS3M1T5R.\n",
+ "14 Aug 2026, 14:23:26 | INFO | Measured response of VS3M2T5R.\n",
+ "14 Aug 2026, 14:23:26 | INFO | Measured response of VS2M2T5R.\n",
+ "14 Aug 2026, 14:23:26 | INFO | Measured response of VS2M1D6R.\n",
+ "14 Aug 2026, 14:23:26 | INFO | Measured response of VS3M1D6R.\n",
+ "14 Aug 2026, 14:23:27 | INFO | Measured response of VS3M2D6R.\n",
+ "14 Aug 2026, 14:23:27 | INFO | Measured response of VS2M2D6R.\n",
+ "14 Aug 2026, 14:23:27 | INFO | Measured response of VS2M1T6R.\n",
+ "14 Aug 2026, 14:23:27 | INFO | Measured response of VS3M1T6R.\n",
+ "14 Aug 2026, 14:23:27 | INFO | Measured response of VS3M2T6R.\n",
+ "14 Aug 2026, 14:23:27 | INFO | Measured response of VS2M2T6R.\n",
+ "14 Aug 2026, 14:23:27 | INFO | Measured response of VS2M1D7R.\n",
+ "14 Aug 2026, 14:23:28 | INFO | Measured response of VS3M1D7R.\n",
+ "14 Aug 2026, 14:23:28 | INFO | Measured response of VS3M2D7R.\n",
+ "14 Aug 2026, 14:23:28 | INFO | Measured response of VS2M2D7R.\n",
+ "14 Aug 2026, 14:23:28 | INFO | Measured response of VS2M1T7R.\n",
+ "14 Aug 2026, 14:23:28 | INFO | Measured response of VS3M1T7R.\n",
+ "14 Aug 2026, 14:23:28 | INFO | Measured response of VS3M2T7R.\n",
+ "14 Aug 2026, 14:23:28 | INFO | Measured response of VS2M2T7R.\n",
+ "14 Aug 2026, 14:23:29 | INFO | Measured response of VS2M1D8R.\n",
+ "14 Aug 2026, 14:23:29 | INFO | Measured response of VS3M1D8R.\n",
+ "14 Aug 2026, 14:23:29 | INFO | Measured response of VS3M2D8R.\n",
+ "14 Aug 2026, 14:23:29 | INFO | Measured response of VS2M2D8R.\n",
+ "14 Aug 2026, 14:23:29 | INFO | Measured response of VS2M1T8R.\n",
+ "14 Aug 2026, 14:23:29 | INFO | Measured response of VS3M1T8R.\n",
+ "14 Aug 2026, 14:23:29 | INFO | Measured response of VS3M2T8R.\n",
+ "14 Aug 2026, 14:23:30 | INFO | Measured response of VS2M2T8R.\n",
+ "14 Aug 2026, 14:23:30 | INFO | Measured response of VS2M1D1R.\n",
+ "14 Aug 2026, 14:23:30 | INFO | Measured response of VS3M1D1R.\n",
+ "ORM measured, saved and loaded.\n"
+ ]
+ }
+ ],
+ "source": [
+ "SR.orm.measure(sleep_between_step=wait_time)\n",
+ "SR.orm.save(CONFIG_DIR / \"orm.json\")\n",
+ "SR.orm.save(CONFIG_DIR / \"orm.yaml\", with_type=\"yaml\")\n",
+ "SR.orm.save(CONFIG_DIR / \"orm.npz\", with_type=\"npz\")\n",
+ "\n",
+ "SR.orbit.load(CONFIG_DIR / \"orm.json\")\n",
+ "print(\"ORM measured, saved and loaded.\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "ff9a6ca2",
+ "metadata": {},
+ "source": [
+ "#### Visualise the orbit response matrix"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "id": "942f8f3b",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "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F/RHf/RHJpvNml27dh23/3d/93eNZVlP6dUey6pVqwxgvve97x3dd/vttxvABEFgDh48eHT/3/zN3xjgqDdpjDnOczvCpz/96Sf1Qp6ubQEjpTTbt29/ymPHviPGGHPzzTcbKaW56667zOc//3kDPMmL7vLc8pKala7X6wDk8/mnPe/I8Vqtdtz+3/iN3/ix1/zWb/3W0f8LIfit3/ot4jjm61//+rOt7lPieR433njjcfs+//nPs2XLFjZv3szCwsLR7fLLLwfgzjvvBDjqwX3pS19Ca/209/nlX/7l476nX/iFX2B4eJivfvWrANx3333Mzc3xzne+87hxsWuuuYbNmzc/pcf9xO/v0ksvZd++fUc/l0olms0m//qv//pj6/X5z3+eSy+9lHK5fNyzXnnllSiluOuuu572uQBOO+00Lr744qOfL7zwQgAuv/xyxsbGnrT/2Doe8ZYBwjBkYWGBiy66CIAHHnjgJ977CJdddhmnnXbaT3XuBz7wAU4//XRuuOEG3vnOd3LZZZfx7//9v/+p79XlmfOSMoxH/tCPGMgfx48zoGvWrHnK86WUT5qo2bhxIwAHDhx4NlX9sYyOjuK67nH7du/ezfbt2+nv7z9uO1KHubk5AH7xF3+Rl7/85fzar/0ag4ODXHfddXzuc597SiO5YcOG4z4LIVi/fv3R5zl48CAAmzZtetK1mzdvPnr8CL7vP2mYoFwus7y8fPTzO9/5TjZu3MjVV1/NihUr+JVf+RVuu+22Jz3rbbfd9qRnvfLKK4971qfjWOMHUCwWAVi5cuVT7j+2jktLS7zrXe9icHCQIAjo7+8/+l5Uq9WfeO8j/Lh36alwXZf//b//N/v376der/OJT3wCIcRPfX2XZ85LaoyxWCwyPDzMww8//LTnPfzww4yOjlIoFI7bf6y3cLJ4qjporTnzzDOPjkE9kSN/8EEQcNddd3HnnXfyla98hdtuu43PfvazXH755Xzta197XserfpqyBwYGePDBB7n99tu59dZbufXWW/nEJz7BL//yL/OpT30K6Dzrz/3cz/He9773Kcs48mPwbOry4/abY8aT3/rWt/K9732P97znPZx99tnkcjm01rzmNa/5iV74sTzTd+n2228HOl7q7t27n5Fh7fLMeUkZRoDXve51/O3f/i3f+c53uOSSS550/Nvf/jYHDhzgpptu+qnL1Fqzb9++4/4od+3aBfCUg+pHeK5+9detW8dDDz3EFVdc8RPLlFJyxRVXcMUVV/Dnf/7n/PEf/zG///u/z5133nnU64KOZ3Ysxhj27NnD1q1bAVi1ahUAjz/++NEu+xEef/zxo8efKa7rcu2113Lttdeitead73wnf/M3f8Mf/uEfsn79etatW0ej0Tiuri8Uy8vL3HHHHdxyyy28733vO7r/id8VPHdtC50f6g9+8IPceOONPPjgg/zar/0ajzzyyFGPtstzz0uqKw3wnve8hyAIuOmmm1hcXDzu2NLSEr/xG79BJpPhPe95zzMq9y//8i+P/t8Yw1/+5V/iOA5XXHHFj73mSBzkia6OeOtb38rk5CR/+7d/+6Rj7XabZrMJdJ7viZx99tkARFF03P6///u/P27I4Qtf+ALT09NcffXVAJx33nkMDAzw8Y9//Lhrb731Vnbs2ME111zzjJ/jie0hpTxqiI/c461vfSt33333UQ/qWCqVCmmaPuP7/rQc8SjNE/LHPdVM+HPVtkmS8I53vIORkRH+4i/+gk9+8pPMzs7yO7/zOydUbpen5yXnMW7YsIFPfepTvO1tb+PMM8980sqXhYUFPv3pT7Nu3bqfukzf97ntttu44YYbuPDCC7n11lv5yle+wu/93u89bfjNtm3bAPj93/99rrvuOhzH4dprr33GgeNvf/vb+dznPsdv/MZvcOedd/Lyl78cpRQ7d+7kc5/7HLfffjvnnXceH/zgB7nrrru45pprWLVqFXNzc/z1X/81K1aseJL33NPTwyWXXMKNN97I7OwsH/vYx1i/fj3/9t/+WwAcx+EjH/kIN954I5dddhnXX3/90XCd1atXP6s/3F/7tV9jaWmJyy+/nBUrVnDw4EH+x//4H5x99tls2bIF6Pyw/fM//zOve93reMc73sG2bdtoNps88sgjfOELX+DAgQNHw2OeawqFAq94xSv4kz/5E5IkYXR0lK997Wvs37//Sec+V237oQ99iAcffJA77riDfD7P1q1bed/73scf/MEf8Au/8Au89rWvfU6ercsTOLmT4iePhx9+2Fx//fVmeHjYOI5jhoaGzPXXX28eeeSRJ517JFznqcJcnirAe3Bw0Lz//e9/UsAxTxGK8Ud/9EdmdHTUSCl/6gDvpyKOY/ORj3zEnH766cbzPFMul822bdvMLbfc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",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "orm_data = SR.orm.get()\n",
+ "plt.imshow(np.array(orm_data[\"matrix\"]))\n",
+ "plt.colorbar()\n",
+ "plt.title(\"Orbit response matrix\")\n",
+ "plt.xlabel(\"Corrector index\")\n",
+ "plt.ylabel(\"BPM index\")\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8239ebda",
+ "metadata": {},
+ "source": [
+ "### Dispersion measurement (optional)\n",
+ "\n",
+ "The dispersion can be measured and incorporated into the ORM to enable RF-based orbit correction. This is particularly useful for correcting closed-orbit distortions caused by energy errors."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "id": "693fc409",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Uncomment to measure and visualise dispersion\n",
+ "\n",
+ "# def disp_callback(action: int, cb_data) -> bool:\n",
+ "# from pyaml.common.constants import Action\n",
+ "# if action == Action.APPLY:\n",
+ "# print(\"Changing RF frequency\")\n",
+ "# elif action == Action.MEASURE:\n",
+ "# print(\"Reading orbit\")\n",
+ "# elif action == Action.RESTORE:\n",
+ "# print(\"Restoring RF frequency\")\n",
+ "# return True\n",
+ "\n",
+ "# SR.dispersion.measure(callback=disp_callback)\n",
+ "# disp_data = SR.dispersion.get()\n",
+ "# plt.plot(disp_data[\"frequency_response_x\"], label=\"H dispersion\")\n",
+ "# plt.plot(disp_data[\"frequency_response_y\"], label=\"V dispersion\")\n",
+ "# plt.xlabel(\"BPM index\")\n",
+ "# plt.ylabel(\"Orbit / Δf [m/Hz]\")\n",
+ "# plt.legend()\n",
+ "# plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "874b9cf0",
+ "metadata": {},
+ "source": [
+ "### Introduce orbit distortion\n",
+ "\n",
+ "Reset correctors to zero, then add small random kicks to simulate a disturbed orbit."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "id": "1fc925a6",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Reset correctors to zero\n",
+ "hcorr.strengths.set(np.zeros(len(hcorr)))\n",
+ "vcorr.strengths.set(np.zeros(len(vcorr)))\n",
+ "ref_h, ref_v = SR.get_bpms(\"BPM\").positions.get().T\n",
+ "reference = np.concatenate((ref_h, ref_v))\n",
+ "\n",
+ "# Add random kicks to simulate a distorted orbit\n",
+ "np.random.seed(1)\n",
+ "std_kick = 1e-6 # rad\n",
+ "hcorr.strengths.set(hcorr.strengths.get() + std_kick * np.random.normal(size=len(hcorr)))\n",
+ "vcorr.strengths.set(vcorr.strengths.get() + std_kick * np.random.normal(size=len(vcorr)))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "id": "ca562309",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "R.m.s. orbit before correction — H: 81.0 µm, V: 32.8 µm\n"
+ ]
+ }
+ ],
+ "source": [
+ "positions_bc = bpms.positions.get()\n",
+ "std_bc = np.std(positions_bc, axis=0)\n",
+ "print(f\"R.m.s. orbit before correction — H: {1e6 * std_bc[0]:.1f} µm, V: {1e6 * std_bc[1]:.1f} µm\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5fe60131",
+ "metadata": {},
+ "source": [
+ "#### Orbit before correction"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "id": "b4e335c9",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "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f1Adp25t/xZh5bvvviOVSiX5+eefk0ePHiXvuOMOUq1Wk7W1tT29az3GXXfdRUZFRZGbNm0ia2pqmH9arZbZZuHChWRGRga5YcMGcs+ePeS4cePIcePG9eBeBweO02okKR4nkqSmYmQyGfnCCy+QJSUl5IoVK8jQ0FDy66+/ZrZ56aWXSLVaTf7+++/kwYMHyYsvvpjMzMwkdTpdD+5593LTTTeRqamp5KpVq8jS0lLyl19+IePi4shHHnmE2eZcPE7t7e3k/v37yf3795MAyNdff53cv38/M2XF5ZjMmTOHHDZsGLlz505y27ZtZL9+/chrrrmmp/6kgODpOBmNRvKiiy4i09LSyKKiIqfzusFgYJ4jWI6TGBwFCe+88w6ZkZFBKhQKcvTo0eSOHTt6epd6FACs/z777DNmG51OR959991kdHQ0GRoaSl566aVkTU1Nz+10kNA1OBKPE8XKlSvJQYMGkUqlkszLyyM/+ugjp/utViv55JNPkomJiaRSqSSnT59OFhcX99De9gwajYa87777yIyMDFKlUpFZWVnkE0884XTxOheP08aNG1nPR//fzv2ERNXvcRx/j5OVOONI/mGmGhMaLKhE2xi0yKhoQltGimY6RQS5CFQqKmhhUYS08c+idJQshEAUJpLC0oVYQS1sUSgWGmEoIeGUaejchfcezjxdvT2mOA/384JZnPP7ztfvOQv5+PPMHD9+PBQK/d49+fLlSyg/Pz9ks9lCcXFxoZKSktDExMQKXM3yWeg+ffjwYd7f68+ePTN6RMp9soRCpq8+FREREfk/p2eOREREREwUjkRERERMFI5ERERETBSOREREREwUjkRERERMFI5ERERETBSOREREREwUjkRE/q2xsZH4+Pg/7pOdnc3Zs2f/uI+IrAyFIxFZccXFxVgsFuOVkJCA1+ulr68vrM5c43A42L17N0+fPv2lz+nTp3/5GWfOnMFisVBcXDzvHEePHqW/v3/JrktE/pkUjkQkIni9XkZGRhgZGaGzs5NVq1aRm5v7S53f72dkZISenh4SExPJzc3l/fv3xrrb7aalpYXJyUnj3I8fP7h//z4pKSkLzhATE0NycvLSXZSI/CMpHIlIRFizZg1OpxOn00lGRgbnz5/n48ePjI2NhdXFx8fjdDrZvn07dXV1TE5O8uTJE2N9586duN1uWltbjXOtra2kpKSQmZm54Ax//bfalStXyMjI4O7du6SmpuJwOMjLy2NiYsKo+fbtG0VFRdhsNlwuF1VVVb/0nZqaory8nA0bNhAbG0tWVhZdXV3AXHDbtm0bp06dMuoHBwex2+00NDT81r0TkaWlcCQiEScYDNLc3IzH4yEhIWHeupiYGACmp6fDzvt8Pvx+v3Hc0NBASUnJomYZHBykra2NQCBAIBCgu7ub69evG+sVFRV0d3fT3t7O48eP6erq4vXr12E9SktL6e3tpaWlhb6+Po4cOYLX62VgYIC1a9dy7949mpqaaG9vZ2ZmhsLCQg4cOIDP51vUzCLyZ1at9AAiIgCBQACbzQbM7ca4XC4CgQBRUf/9b7jv379z6dIlrFYre/bsCVsrLCzkwoULDA0NAdDT00NLS4uxW/N3zM7O0tjYiN1uB+DYsWN0dnZy9epVgsEg9fX1NDc3s2/fPgCamprYuHGj8f7h4WH8fj/Dw8OsX78egPLycjo6OvD7/Vy7do2MjAwqKys5efIkeXl5DA0NEQgE/vasIrI0FI5EJCLs3buXuro6AMbHx6mtreXQoUO8fPmSTZs2GXX5+flYrVYmJydJSkqivr6e9PT0sF5JSUnk5OTQ2NhIKBQiJyeHxMTERc2VmppqBCMAl8vF6OgoMLerND09TVZWlrG+bt06tmzZYhy/efOGmZkZ0tLSwvpOTU2F7YqVlZXR1tZGdXU1jx49WnDHTESWl8KRiESE2NhYPB6PcXznzh0cDge3b9+msrLSOH/r1i3279+Pw+EgKSlp3n4+n4/S0lIAampqFj1XdHR02LHFYmF2dva33x8MBrFarbx69Qqr1Rq29p+dMoDR0VH6+/uxWq0MDAzg9XoXPbOI/Bk9cyQiEclisRAVFRX2qTMAp9OJx+NZMBjB3Kffpqen+fnzJwcPHlyWGTdv3kx0dDQvXrwwzo2Pj4d9HUBmZiYzMzOMjo7i8XjCXk6n06jz+Xzs2LGDpqYmzp07x9u3b5dlZhH537RzJCIRYWpqis+fPwNzAaO6uppgMMjhw4cX1c9qtRoB4687NkvFZrNx4sQJKioqSEhIIDk5mYsXL4Y9J5WWlkZBQQFFRUVUVVWRmZnJ2NgYnZ2dpKenk5OTQ01NDb29vfT19eF2u3n48CEFBQU8f/6c1atXL8vsIjI/hSMRiQgdHR24XC4A7HY7W7du5cGDB2RnZy+6Z1xc3BJNN7+bN28aIc5ut1NWVsbXr1/Davx+P5WVlZSVlfHp0ycSExPZtWsXubm5vHv3joqKCurr63G73QDU1taSnp7O5cuXuXHjxrJfg4iEs4RCodBKDyEiIiISKfTMkYiIiIiJwpGIiIiIicKRiIiIiInCkYiIiIiJwpGIiIiIicKRiIiIiInCkYiIiIiJwpGIiIiIicKRiIiIiInCkYiIiIiJwpGIiIiIicKRiIiIiMm/APjSTN8IgrGJAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure()\n",
+ "plt.plot(positions_bc[:, 0] * 1e6, label=\"H (before)\", color=\"C0\", ls=\"--\")\n",
+ "plt.plot(positions_bc[:, 1] * 1e6, label=\"V (before)\", color=\"C1\", ls=\"--\")\n",
+ "plt.xlabel(\"BPM index\")\n",
+ "plt.ylabel(\"Position [µm]\")\n",
+ "plt.legend()\n",
+ "plt.title(\"Orbit before correction\")\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "cf49c543",
+ "metadata": {},
+ "source": [
+ "### Correct the orbit\n",
+ "\n",
+ "Standard correction: `SR.orbit.correct(reference=reference)`.\n",
+ "\n",
+ "Optional variants (uncomment to use):\n",
+ "- **Virtual corrector weight**: down-weights correctors that are already at large strengths.\n",
+ "- **RF correction**: also adjusts the RF frequency to minimise dispersion-driven orbit.\n",
+ "- **Live unit mismatch**: if BESSY2 BPMs read in nm, pass `gain=1e-9`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "id": "93135a4c",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "14 Aug 2026, 14:23:32 | INFO | (Re-)Building pseudoinverse RM with method='svd_values', parameter=16, plane='H', virtual=True, rf=False.\n",
+ "14 Aug 2026, 14:23:32 | INFO | (Re-)Building pseudoinverse RM with method='svd_values', parameter=16, plane='V', virtual=False, rf=False.\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Standard correction\n",
+ "SR.orbit.correct(reference=reference)\n",
+ "\n",
+ "# With virtual corrector weight (ESRF style):\n",
+ "# SR.orbit.set_virtual_weight(1000)\n",
+ "# SR.orbit.correct(reference=reference)\n",
+ "\n",
+ "# With RF orbit correction (ESRF style, requires dispersion in ORM):\n",
+ "# SR.orbit.correct(reference=reference, rf=True)\n",
+ "\n",
+ "# BESSY2 live mode — BPMs in nm, use gain to compensate unit mismatch:\n",
+ "# SR.orbit.correct(reference=reference, gain=1e-9)\n",
+ "\n",
+ "sleep(wait_time)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "id": "2d0253b7",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "R.m.s. orbit after correction — H: 7.3 µm, V: 2.2 µm\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAMVCAYAAABqdZdfAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjksIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvJkbTWQAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzsnXd4W/Xdt28NS7a87XiP2JnOdnZCNoQkEAhhhx3KKqulobTQ8rSlT5+XDmhpoWWVFWhYZW+SECBk7+3EThzvPSRbw1rn/UM5wk48tGWH331dvmxLR0dfSUfn/D7fqZAkSUIgEAgEAoFAIBAIBAJBwFGG2wCBQCAQCAQCgUAgEAjOVoToFggEAoFAIBAIBAKBIEgI0S0QCAQCgUAgEAgEAkGQEKJbIBAIBAKBQCAQCASCICFEt0AgEAgEAoFAIBAIBEFCiG6BQCAQCAQCgUAgEAiChBDdAoFAIBAIBAKBQCAQBAkhugUCgUAgEAgEAoFAIAgSQnQLBAKBQCAQCAQCgUAQJIToFggEAoFAIBAIBAKBIEgMGNH96KOPMnXqVGJjY0lNTWX58uUcPXq0yzYWi4W7776b5ORkYmJiuPzyy6mrq+uyTXl5OUuXLkWn05GamsoDDzyA3W4P5UsRCAQCgUAgEAgEAsEPhAEjur/55hvuvvtutm7dytq1a7HZbCxatAij0eje5mc/+xkfffQRb7/9Nt988w3V1dVcdtll7vsdDgdLly7FarWyefNmXnnlFV5++WV+85vfhOMlCQQCgUAgEAgEAoHgLEchSZIUbiN8oaGhgdTUVL755hvmzp2LXq8nJSWFNWvWcMUVVwBQVFTEqFGj2LJlCzNmzOCzzz7joosuorq6mrS0NACeeeYZfvnLX9LQ0IBGo+nzeZ1OJ9XV1cTGxqJQKIL6GgUCgUAgEAgEAoFA0D+RJIm2tjYyMzNRKnuOZ6tDaFNA0ev1ACQlJQGwa9cubDYbCxcudG9TUFBAbm6uW3Rv2bKFcePGuQU3wOLFi7nzzjs5dOgQEydOPON5Ojo66OjocP9fVVXF6NGjg/WyBAKBQCAQCAQCgUAwgKioqCA7O7vH+wek6HY6ndx3333MmjWLsWPHAlBbW4tGoyEhIaHLtmlpadTW1rq36Sy45fvl+7rj0Ucf5ZFHHjnj9oqKCuLi4vx9KQKBQCAQCAQCgUAgGIAYDAZycnKIjY3tdbsBKbrvvvtuDh48yHfffRf053rooYdYtWqV+3/5jY2LixOiWyAQCAQCgUAgEAh+4PRVdjzgRPc999zDxx9/zLffftslhJ+eno7VaqW1tbVLtLuuro709HT3Ntu3b++yP7m7ubzN6Wi1WrRabYBfhUAgEAgEAoFAIBAIfggMmO7lkiRxzz338N577/HVV1+Rn5/f5f7JkycTERHB+vXr3bcdPXqU8vJyZs6cCcDMmTM5cOAA9fX17m3Wrl1LXFycqNMWCAQCgUAgEAgEAkHAGTCR7rvvvps1a9bwwQcfEBsb667Bjo+PJyoqivj4eG655RZWrVpFUlIScXFx3HvvvcycOZMZM2YAsGjRIkaPHs0NN9zAn//8Z2pra3n44Ye5++67Ax7Ndjgc2Gy2gO5T0DMRERGoVKpwmyEQCAQCgUAgEAgEXRgwI8N6ypN/6aWXWLlyJQAWi4X777+f119/nY6ODhYvXsy//vWvLqnjZWVl3HnnnXz99ddER0dz00038cc//hG12jP/g8FgID4+Hr1e321NtyRJ1NbW0tra6vVrFPhHQkIC6enpYpSbQCAQCAQCgUAgCDp9aUOZASO6+wt9vbE1NTW0traSmpqKTqcTAjAESJKEyWSivr6ehIQEMjIywm2SQCAQCAQCgUAgOMvxVHQPmPTygYDD4XAL7uTk5HCb84MiKioKgPr6elJTU0WquUAgEAgEAoFA4AMnTpxgz549XHDBBeh0unCbc1YgRHcAkWu4xcEZHuT33WazCdEtEAgEAoFAIBD4wJtvvonVakWj0XDxxReH25yzggHTvXwgIVLKw4N43wUCgUAgEAgEAv+YOnVquE046xCiWyAQCAQCgUAgEAgEAKSkpADQ1NQUZkvOHoToFggEAoFAIBAIBAIB8L3obmhoCLMlZw9CdAs8QpIkbr/9dpKSklAoFOzduzfcJgkEAoFAIBAIBIIAsnfvXt58800ATCYTRqMxzBadHQjRLejCli1bUKlULF26tMvtn3/+OS+//DIff/wxNTU1jB07FoVCwfvvvx8eQwUCgUAgEAgEAkFAqa+vx2AwuP9vbGwMozVnD0J0C7rwwgsvcO+99/Ltt99SXV3tvv348eNkZGRwzjnnkJ6ejloduMb3ctd3gUAgEAgEAoFAED5Or+MWKeaBQYjuICNJEiarPSw/kiR5ZWt7eztvvvkmd955J0uXLuXll18GYOXKldx7772Ul5ejUCjIy8sjLy8PgEsvvdR9m8wHH3zApEmTiIyMZMiQITzyyCPY7Xb3/QqFgqeffpply5YRHR3N//3f//n7NgsEAoFAIBAIBAI/kUX2vHnzuPbaaxk1alSYLTo7EHO6g4zZ5mD0b74Iy3Mf/v1idBrPP+K33nqLgoICRo4cyfXXX899993HQw89xN///neGDh3Kc889x44dO9wzsFNTU3nppZdYsmSJ+7aNGzdy44038o9//IM5c+Zw/Phxbr/9dgB++9vfup/rd7/7HX/84x954oknAho1FwgEAoFAIBAIBN5jt9tpbW0FYPLkycTGxobXoLMIoXYEbl544QWuv/56AJYsWYJer+ebb75h/vz5xMbGolKpSE9P7/KYhISELrc98sgjPPjgg9x0000ADBkyhP/93//lF7/4RRfRfe2113LzzTeH4FUJBAKBQCAQCASCvmhubkaSJLRaLTExMeE256xCiO4gExWh4vDvF4ftuT3l6NGjbN++nffeew8AtVrN1VdfzQsvvMD8+fM93s++ffvYtGlTl5Rxh8OBxWLBZDKh0+kAmDJlisf7FAgEAoFAIBAIBMFFTi0fNGgQAAcPHqShoYGZM2cSGRkZTtMGPEJ0BxmFQuFVine4eOGFF7Db7WRmZrpvkz1dTz31lMf7aW9v55FHHuGyyy47477OX9bo6Gj/DBYIBAKBQCAQCAQBQ6lUkpGRQUZGBgqFgrVr12IwGBg2bBg5OTnhNm9A0//VoCDo2O12Vq9ezeOPP86iRYu63Ld8+XJef/31bh8XERGBw+HoctukSZM4evQow4YNC5q9AoFAIBAIBAKBILCMGjWqS+O0lJQUDAYDDQ0NQnT7iRDdAj7++GNaWlq45ZZbiI+P73Lf5ZdfzgsvvMB11113xuPy8vJYv349s2bNQqvVkpiYyG9+8xsuuugicnNzueKKK1Aqlezbt4+DBw/yhz/8IVQvSSAQCAQCgUAgEPjBoEGDOH78uBgbFgDEyDABL7zwAgsXLjxDcINLdO/cuRODwXDGfY8//jhr164lJyeHiRMnArB48WI+/vhjvvzyS6ZOncqMGTP429/+xuDBg4P+OgQCgUAgEAgEAoH3SJKE0+nscltKSgoAjY2N4TDprEIheTvM+QeOwWAgPj4evV5PXFxcl/ssFgulpaXk5+eLZgNhQLz/AoFAIBAIBAKB9+j1ep588klSUlK4/fbbUSgUlJeX89JLLxEfH899990XbhP7Jb1pw86ISLdAIBAIBAOI+vp66urqwm2GQCAQCM4iGhsbcTgc2O12FAoF8H2kW6/X09HREU7zBjxCdAv6xOl0YjabEUkRAoFAEF6sVitPP/00zzzzjFgACQQCgSBgyCnk8rgwgKioKPe8bpFi7h+ikZqgTwwGg3vGdkJCQrjNEQgEgh8s9fX17r+VSuE3FwgEAkFg6E50A1x55ZVER0eTmJgYDrPOGoToFvSJyWRy/xaiWyAQCMKHnFY+ZMgQIiIiwmyNQCAQCM4WehLdubm54TDnrEO4yQV9Ehsb6/5bpJgLBAJB+JBFd1paWpgtEQgEAsHZRE+iWxAYhOgW9IlcywHgcDjCaIlAIBD8sJFFd1tbG1u3bg2zNQKBQCA4G7BYLLS3twNnim6TycS3337LZ599Fg7TzhqE6Bb0iUKhcKcx2my2MFsjEAgEP0wkSXKL7oMHD/LFF19gNpvDbJVAIBAIBjpWq5XRo0eTl5eHVqvtcp8kSWzYsIHt27cLHeAHoqZb0CsdHR1IkoRKpcJms2Gz2YiKigq3WQKBQPCDQx7ZolQqiYmJwWAwUFNTw5AhQ8JtmkAgEAgGMHFxcVx55ZXd3qfT6YiKisJsNtPY2EhGRkaIrTs7EJFuQa8YjUaam5sBSExMRKfThdkigUAg+GGi0WhYsmQJs2fPJicnB4CqqqowWyUQCASCsxmFQuGe1y3GhvmOEN2CXpHTSKKjo4mKikKt7j054ne/+x1paWkoFAref//9EFgoEAgEPwx0Oh3Tp09nwYIFZGZmAlBTUxNmqwQCgUAw0DGZTL02S5ZFd0NDQ6hMOusQolsAwMqVK1EoFO6f5ORkFi9ezIEDBwA8Gk1z5MgRHnnkEZ599llqamq44IILgm22QCAQ/CCRRXd1dXWYLREIBALBQOfFF1/k0UcfpbKystv7hej2HyG6BW6WLFlCTU0NNTU1rF+/HpVKxU033YRKpUKpVGK1Wmlvb8dqtXb7+OPHjwNwySWXkJ6efkYjBk8RTRoEAoHgTA4fPkxNTQ1Op9NdU6fX6zEajWG2TCAQCAQDFYfDQUtLCzabjbi4uG63EaLbf4ToDhFWq7XHH7vd7vG2pwvSnrbzBa1WS3p6Ounp6RQWFnLfffdRXV2NXq8H4NixY1xzzTWkpqaSlJTEJZdcwsmTJwFXWvnFF18MgFKpRKFQAOB0Ovn9739PdnY2Wq2WwsJCPv/8c/dznjx5EoVCwZtvvsm8efOIjIzkP//5DwD//ve/GTVqFJGRkRQUFPCvf/3Lp9clEAgEAx2r1crbb7/Nc889h9lsRqvVuse6iLpugUAgEPhKc3MzTqcTjUZDbGxst9vIoru1tVWMD/YR0b08RDz66KM93jd8+HCuvfZa9/+PPfZYj9HewYMHs3LlSvf/f//73zGZTGds99vf/tZ3Y4H29nZef/118vLySEtLw2azccUVVzBx4kQ++ugjBg0axB/+8AeWLFnC/v37+fnPf05eXh4333xzlxrDv//97zz++OM8++yzTJw4kRdffJFly5Zx6NAhhg8f7t7uwQcf5PHHH2fixIlu4f2b3/yGp556iokTJ7Jnzx5uu+02oqOjuemmm/x6bQKBQDDQqK+vByAmJobo6GgALrroIqKios6YqSoQCAQCgafIzdEGDRrkDpqdTkxMDHfeeSdJSUmoVKpQmnfWIES3wM3HH39MTEwM4OpanpaWxiuvvIJWq+XNN99EkiQee+wxVCoVaWlpvPTSSyQkJPD111+zaNEiEhISAEhPT3fv87HHHuOXv/wlK1asAOBPf/oTGzZs4IknnuCf//yne7v77ruPyy67zP3/b3/7Wx5//HH3bfn5+Rw+fJhnn31WiG6BQPCDQ57PnZaW5r5t8ODB4TLHZ9auXYter+fSSy8VCzeBQCDoB3QW3T2hUChITU0NlUlnJUJ0h4iHHnqox/uUyq5Z/j//+c973PZ0D9RPf/pT/wzrxIIFC3j66acBaGlp4amnnuKGG25g69at7Nu3j+PHjzNixIgudlgsFnct9+kYDAaqq6uZNWtWl9tnzZrFvn37utw2ZcoU999Go5Hjx49zyy23cNttt7lvt9vtxMfH+/9CBQKBYIBRW1sLdBXdAw2z2czmzZsBmDRpkpgvLhAIBP0AT0S3wH+E6A4RGo0m7Nv2RXR0NMOGDXP//+KLLxIfH8+LL75Ie3s7kydP5h//+Idb/EZGRgLf13n4+9wy7e3tADz//PNMnz69y3YiMiIQCH6IyOnlp4vuHTt2UFVVxXnnnddjLV5/oampyf13TU2NEN0CgUDQD/BUdFdXV7Njxw5iY2M599xzQ2HaWYVopCboEYVCgVKpxGw2M2nSJIqLi8nIyCA/P5/c3FyGDRvGsGHDeow+x8XFkZmZyaZNm7rcvmnTJkaPHt3j86alpZGZmcmJEyfczyH/5OfnB/Q1CgQCQX9HkqRu08sBdu3axb59+wZEM7Xs7Gz3Qq2nsTQCgUAgCC0jR45k5MiRfaaPm0wm9u7dS1FRUYgsO7sQkW6Bm46ODncKY3V1Nc888wzt7e1cfPHFTJs2jb/85S9cf/31/OxnP2Pw4MEYDAbeffddfvGLX5Cdnd3tPh944AF++9vfMnToUAoLC3nppZfYu3evu0N5TzzyyCP85Cc/IT4+niVLltDR0cHOnTtpaWlh1apVAX/tAoFA0F9pbW2lo6MDpVJ5RiQiMzOTuro6qqurKSgoCJOFnpObmwu4RLckST027REIBAJBaJg7d65H28nXn6amJhwOh8g+9RIhugVuPv/8c/fs15iYGIYNG8Zrr73G/PnzAfj222/5xS9+we23305bWxtZWVmcd955Pc70A/jJT36CXq/n/vvvp76+ntGjR/Phhx926VzeHbfeeis6nY6//OUvPPDAA0RHRzNu3Djuu+++QL1cgUAgGBBER0dz3XXXYTAYzljkZGZmsmfPHqqrq8NknXdkZmaiVCppb29Hr9e7G3AKBAKBoH8THx9PREQENpuNlpYWUQPuJQpJkqRwGzGQMBgMxMfHo9frzxCbFouF0tJS8vPz3fXOAxFJkqitrUWSJFJSUoiIiAi3SR5xtrz/AoFA4CnV1dU8//zzREVF8cADD/TbyHFFRQXvv/8+I0eOpLKyEofDwUUXXeR29AoEAoEg9LS1tQGuYJsn14/nn3+e6upqrrrqKkaNGhVs8wYEvWnDzohIt+AMHA4Hsi9GrRaHiEAgEPRXUlNTUalUmM1mWltbSUxMDLdJ3VJeXk5zczMtLS3cfPPN/dY5IBAIBD8kNm7cyI4dO5gzZ45HzdFSUlKorq6moaFBiG4vEY3UBGdgs9kAiIiI6HZh1NHRQWtrK0ajMdSmCQQCwQ+OzZs3c+jQIaxW6xn3qdVqd3O1/pxiXlFRAUBOTo4Q3AKBQNADVqsVi8WCJEmcOHGCjo6OoD6fPFUiKSnJo+3llPKGhoag2XS2IsKYgjPoLLp7ut9kMqHVaruM+hIIBAJBYLFaraxduxaAn//8592OiczIyKCmpobW1tYQW+cZkiRRXl4OfN9IDVzXEpVKhVIp/P8CgUAArjGQ69atA1xThPLz87n22muD1rTM2xnd8pjgYDsDzkaE6BacQV+iW75d3k4gEAgEwUEeFRYTE9Ojk3PBggUsWrSoW0HeH2hqasJsNqNWq9013GvWrKGkpISVK1d2EeICgUDwQ8ZisQCurKDa2lpOnDjBhx9+yPLlywOeJdTR0YHBYAAgOTnZo8cMHTqUX/3qVwOm31N/QriXg8BA701nt9uBnuu55S+a0+nE4XCEzK6+GOjvu0AgEJxOT/O5OxMdHd1vBTfgjnJnZWW5ozUqlQpJksS8boFAEFLKysr44IMP3OK2vyHblZ+fz1VXXYVCoWD//v2sX78+4M8lp5ZHR0cTFRXl0WPUarUQ3D4iRHcAkQ9Ck8kUZkv8IyUlhUGDBvX4pVIqlW5B3p+i3fL7Lk4GAoHgbMET0d3fkeu5O0e0s7KyAIToFggEIeXll19m7969HDlyJNymdIucth0ZGcmwYcNYtmwZAJs2bWLHjh0BfS5vU8sF/iHSywOISqUiISGB+vp6AHQ63YBuGNNd0x4ZSZKw2+39opmaJEmYTCbq6+tJSEgIWt2LQCAQhBpZdKenp/e63bZt2zh06BDTp09nzJgxoTDNY+Lj40lJSekiunNycgCX6JYkaUBfKwUCwcCgvb3d/ffw4cPDaEnPyJFurVYLQGFhIXq9nq+//ppPP/2U2NhYCgoKAvJc8riwhIQErx73+eefU19fz8KFC8nMzAyILT8EhOgOMPLCSBbeZysdHR2YzWYiIiL6TTO1hISEPhemAoFAMFCQJMnjSHdzczMVFRVkZmb2O9E9f/585s+f3+W2zMxMFAoFbW1t7hmnAoFAEEyOHz8OuJpPxsTEhNma7pFFd2RkpPu2uXPnYjAY2L17NydPngyY6M7MzGTmzJleC+fKykqqqqowGAxCdHvBgBLd3377LX/5y1/YtWsXNTU1vPfeeyxfvtx9vyRJ/Pa3v+X555+ntbWVWbNm8fTTT3fxZjU3N3Pvvffy0UcfoVQqufzyy/n73/8esC+fQqEgIyOD1NTUfpV67Snbt2/HbDYzevRod4fC7qiqqmLdunVkZGRw+eWXh9DC7omIiBARboFAcFbR2tqK1WpFpVL12eRGXvj057FhnYmIiCA9PZ2amhoqKyuF6BYIBEGnpKQEcDUDs9ls2O12j2uZQ0V3oluhULB06VKGDBnC6NGjA/Zc+fn55Ofne/04+T3rr3Xx/RWPRPf+/fu93vHo0aN7bMTlK0ajkQkTJvCjH/2Iyy677Iz7//znP/OPf/yDV155hfz8fP7nf/6HxYsXc/jwYffBe91111FTU8PatWux2WzcfPPN3H777axZsyagtqpUqgEpAg8cOEBjYyNDhgzp8oU/nby8PO6+++5+d7ISCASCs4WEhATuvfdeWlpa+ryeyDXStbW1OJ3OfjOGS6/XExMT06392dnZ1NTUUFFR0e+i8wJBsLHb7QFfJwt6xul0uiPdDQ0N/OlPf2LatGksWrQozJZ1ZcSIEaSkpBAXF9fldqVS2W/Ok7I+MJvNYbZkYOHRt72wsBCFQuFxd2ilUsmxY8cYMmSIX8adzgUXXMAFF1zQ7X2SJPHEE0/w8MMPc8kllwCwevVq0tLSeP/991mxYgVHjhzh888/Z8eOHUyZMgWAJ598kgsvvJDHHnus2xSJjo6OLrPo5Nb6ZyM2m83dyVAe69ITKpVKCO4wYTabee211xg3bhzTpk3rN4vrQKDX62lpaSEvLy/cpggEYUehUJCUlERSUlKf2yYnJ6PRaLBarTQ0NPSbxmtvvfUW9fX1rFixgqFDh3a5b+jQoZhMJnd9t0DwQ8FqtfLYY4+RlZXFNddc06+nD5wtVFdXYzab0Wq1jBo1iqNHj1JaWhpus85g4cKFIXsuvV6PJElER0d71YRYFt0i0u0dHrvYtm3b1mu6sYwkSYwdO9Yvo3yhtLSU2traLgdrfHw806dPZ8uWLaxYsYItW7aQkJDgFtzgOriVSiXbtm3j0ksvPWO/jz76KI888khIXkO4qaurc3/5+muti8CVjVBdXY3D4WD69OnhNidgHD58mLfffhuAO++8k9TU1DBbJBAMHBQKBZmZmZw8eZLq6up+IbqtVqs78t5devzIkSMZOXJkGCwTCMLLyZMnsdls6PV6IbhDhBzlHjJkCMOGDQNcmUFGo7Hf9Cbqi3379rFhwwaGDBni7mruDx999BHHjx9n+fLlTJgwwePHCdHtGx6J7nnz5jFs2DCPu9vNnTs35FHQ2tpa4MxmM2lpae77amtrz1jIq9VqkpKS3NuczkMPPcSqVavc/xsMhrPWKy+/B542IysrK+Obb74hPj7enV0gCC6SJLF7927A5SR56qmnuPHGGwd0PaTT6WTDhg1899137tuam5uF6Bb0O1pbWzl27BiFhYUhWSh/9tlnxMTEMHnyZHQ6XZ/bZ2RkuEX3xIkTg25fX1RVVeF0OomLixvQ5yjBwEOSJI4dO0ZKSopHmSKh5sSJE4CrptbpdAKcVVlr/ZHZs2eTl5eHWq0mOjqatLQ06urqOHHiBOPGjQu3eYBrPWS1WtFqtd1OdHA6nej1+i5d2P1BzuSVO6V7ihDdvuHRN3zDhg1etZP/9NNP+0xPHihotVri4uK6/JyteCu6JUmitLS0X6bnnK3U1NRQV1fnHk8ndyweqJjNZtasWeMW3PHx8Vx00UWiC72gX7JhwwY+++wzXn75ZY/LrXzFarWyfft2vvrqK48fk5OTQ2JionsRH27kc1NOTk6PI8EkSaKxsfGsn/ghCC0ff/wxb7zxBu+++264TekWWXRXVlby17/+laKiojBbdPajUqkYPHiwu/+FXAIrfxb9Ab1ez5/+9Cf++Mc/dnu/LI47l736g6+iOyoqCoVCgcPhCIgdPxTOmg4O8iK9rq6ui+Cvq6ujsLDQvc3pF3a73U5zc7NY5OP5PFgZ+X3W6/WYTCaPIjEC/5Cj3KNHjyYqKort27dTXl4elpIOf3E6nbz44os0NjaiVqtZtmxZv/E2CwTdkZWVxf79+6mpqWHXrl1dSpUCjXw+jo2N9fjcOmrUKEaNGhU0m7ylvLwcoMt87tPZsmULa9euZfTo0Vx55ZWhMk1wlpObm8vu3bupqqoKtyln0NbWRkNDA+CaOrB3716KiooC2pVa0DdDhgxhy5YtnDhxAkmSenQMhhI5ctxTJlWgRbfVau31+XqisLCQiRMn9ov3bCDhteiWJIn//ve/bNiwgfr6+jM86uHyKubn55Oens769evdIttgMLBt2zbuvPNOAGbOnElrayu7du1i8uTJAHz11Vc4nc6zqjbWFyRJwmQyAZ6Lbq1WS1JSEs3NzdTV1fk0dkDgOVarlQMHDgAwceJETCaTW3QPRJRKJbNmzeKbb77h6quvHlCOL+Fk+mEybdo07HY7a9eu5fPPPyc7Oztox62n87n7K06nk8rKSqB30S03MJW3FQh8pbNwktcjSqWy3wgqGTmympmZycSJE9m7dy/Hjh3D4XAMyKk3A4F169bR0dHB1KlT3aVrgwcPRqVSYTAYaG5u7nMsYyjoblxYZ/pLpFuUQviG16L7vvvu49lnn2XBggWkpaWF9ETW3t7unrEHruZpe/fuJSkpidzcXO677z7+8Ic/MHz4cPfIsMzMTPcs71GjRrFkyRJuu+02nnnmGWw2G/fccw8rVqz4wQ93VygU3HvvvRiNRq/ERGxsLM3NzRiNxiBaJwBXozGr1UpiYiJ5eXnump66ujosFkuvI976Aw6Hg6NHj2K32xk/fjzg8paOGTPG3TWzra2Nuro6IiMjyc7ODqe53dLS0sKaNWswm82sWrVKXHh+gMycOZOysjKOHTvG22+/ze233+71gsUTeupTMlCor6+no6MDjUbTa3+GzMxMFAoFBoMBg8FwVpdwCYKH0WjkrbfeYuHCheTk5Lj7CnWuke0vyCV5+fn5ZGdnEx0djdFo5OTJk2d0+Bf4jyRJ7N27F6PR2CWbICIighkzZhAdHd1v1k+eiu5A1FJLkuSz6Bb4htei+9VXX+Xdd9/lwgsvDIY9vbJz504WLFjg/l9ucHbTTTfx8ssv84tf/AKj0cjtt99Oa2srs2fP5vPPP+9y8P7nP//hnnvu4bzzzkOpVHL55Zfzj3/8I+Svpb/ibQdHWaDLUXJB8Bg0aBCjR48mKysLhUJBbGwsiYmJtLS0UFlZ6e7G2d/Q6/Xs2rWLPXv20N7eTmxsLGPHjnUL1s5jKo4ePconn3xCQUEBV199dbhMPgOTyURtbS2DBw+mra2Njo4OqqqqztqmioIzcTgcFBUVER0dzbJly3juuedobm7mk08+4dJLLw24A7qxsRHAq4aCkiTx73//G6PRyG233RbWjrw6nY7zzjsPm83Wq3NKo9G4G56Ked0CX2htbeXVV1+lubmZDz74gLvuuouIiAjUajV2u909Jqq/kJeXh9lsZvjw4SiVSkaOHMnu3bspKioSojsI1NTUYDQa0Wg0Z2TdhHI8lyfIIrgn0S3f3tHR4XcGh91ud/cm8Ta93GQy8fHHH2Oz2bjuuut8tuGHhteiOz4+PuDztz1l/vz5vTavUSgU/P73v+f3v/99j9skJSWxZs2aYJj3g0SI7tCRnZ19Rs1jbm4uLS0tlJeX9yvRLUkSxcXF7Nq1i+LiYvf3Njo6mgkTJmC327s9ycvRif50PEmSxCeffMLhw4dZuHAhI0aM4MCBAxQVFQnRHWCsVisKhcKreaGhwmg08t///helUsnDDz/M5Zdfzssvv0x5eTkmkyngAtdsNgPeOUIVCgXNzc1YLJag2OQNcXFxzJ4926Nts7Ozqa2tpbKyUohugVfU19fz2muv0dbWRnx8PNdcc43byRMVFUVbWxsmk8mrZsDBprCw0F0GCVBQUMDu3bs5evQoF154Yb9KhT8bkDNk8/Pz+336vieR7uTkZLRaLQ6HA7Xa99ZckiQxY8YMrFar16JbqVRy5MgRwCXe/bHjh4TX79Lvfvc7HnnkEV588cWQjwUTBI/Dhw+zZ88ehg0b5lV9e2xsLHFxceILFyZyc3Oprq7ud9/FtWvXsmXLFvf/+fn5TJ48mYKCgl4vev3RiXPgwAEOHz6MUqlkyJAhJCYmukX3woULxQIpQNhsNp555hkkSeLuu+/ud+cUuYQmOjoahUJBbm4uV155JXl5eUH5/vUV8egJnU7nFt0DhezsbHbu3CnqugVe89Zbb9HW1kZKSgrXX399l/KEqKgojEZjwOpfg0V+fj4ajYa2tjaqq6vd3bUFgUEW3T0FJgwGAydOnCA7O5tBgwaF0rQzkEV3T5kZGo2Ge+65JyDPpdFoWLx4sU+P7WyfxWIhJiYmIDad7Xi9qrnqqqt4/fXXSU1NJS8v74yIhNxdWTCwaGhooKSkxOt6unnz5jFv3rwgWSUAV1rrt99+y/jx489o9DFx4kQmTZoUJsu+x2w243A43Cfe8ePHs3v3biZOnMjkyZM9vpDJ4kWO8oUbvV7Pp59+CriO9YyMDJKSklCpVDQ3N9PY2EhKSkqYrTw72L9/Py0tLYCrT0F/W3jKPRQ6R4+D2Sn8xz/+MR0dHT6V/DQ3N4dVdBuNRkpLS8nNzfXomiJnjNTU1IioicBjLBYLTU1NANx4441nLPxvvfVW1Gp1v3KMlpSUkJKS0mVuvVqtZvLkySgUCtGgM8CYzWa3M68n0f3FF19w+PBh5s+fH/b1bOcywv6MQqEgMjISi8WC2WwWottDvL6y3XTTTezatYvrr78+5I3UBMGjr5QWQfg4evQo3377LXv27OG+++7rUh8Z7u9fa2srW7duZffu3YwZM4ZLLrkEcHXAv//++71OE5YXHGazOewdZyVJ4oMPPqCjo4Ps7Gx3qqxWq2XIkCEUFxdz5MgRIboDgCRJ7Nixw/1/f4z2dI50n44kSezZs4eamhqWLl0akOeLjIz06Xzc+TsULk6cOMG7775LZmYmt912W5/bJyYmup1a4T6nCQYOer0ecDlru1v097cyFYfDwVtvvYXNZuPOO+/s0q9h0aJFYbTs7EUeBzZo0KAeSwzy8/M5fPgwJ06cCLvoHjt2bMhGwFqtVsxmM5GRkT71PJBFdyCauv1Q8Fp0f/LJJ3zxxRce12oJBgZCdPdf9uzZA8CECRN6bEjkcDhC6m2sqalh8+bNHDp0yF2vLY8Q7K5BmqfIgsHpdNLR0RHW43Hbtm2UlpYSERHB8uXLu7z3BQUFFBcXc/ToUebOnRs2G88WKioq3COyrrjiin7ZTKg30d3Y2MhHH30EwJw5c8Lagbs/lGjIYww97XmgUCiYP39+EC0SnI3IDdI6R437M5WVldhsNnQ6nXDWhgiHw0FCQkKvPW/k601lZSUdHR39quled7z11lvU1NSwfPlyBg8e7PN+SktLeeONNzx2jp5OVFQUra2tQnR7gdeiOycnR4z0OAuRvzTe1iY2Nzfz/vvvo1QqWblyZRAs+2Gj1+vd9UgTJ07sdpsDBw7w4YcfMnToUFasWBFUe06ePMnGjRvdc0bB5SU+55xzGDp0qN9RKrVaTUREBDabze2BDQcGg4F169YBrgjE6Wn9I0aMoLCwkIKCgnCYd9YhR7knTpzYbxtp9Sa6U1JSiIuLw2Aw0N7e7vc10mQysX79eqKiorzurtsfmhG2trYCA3fcmWBgkJeXx4MPPojNZuv2/sOHD3Pw4EHy8/OZOnVqiK07E/m6OWTIkG6vlXa7ndLSUhQKRb9qjDqQGT9+POPGjcPhcPS4TWJionsSTFlZGSNGjAihhV2x2Wx9lkS0t7fT2trq9znearUCvo8Lk9dn/aUccCDgteh+/PHH+cUvfsEzzzxDXl5eEEwShANfI91KpZKKigrUanXY04HPRuQod35+PklJSd1uk5CQgN1up7y8POifwcmTJzlx4gQKhYIxY8ZwzjnnkJGREdDnWLRoESqVKqzN4eLi4li+fDnHjh1j8uTJZ9wfExPjTqUX+E9ycjI6na5fLIx7ojfRDa5zp8FgCIjX32g0snv3bp9Ed3x8PElJSWGN1siLQW/qUy0WC8ePH8dutzNhwoRgmSY4C+kpq6q5uZkjR46g0Wj6xblFFt35+fnd3r93714++eQTsrOzhegOIAqFos8+Efn5+bS0tHDixImwiu4XX3yR2tparr/++h4zvuRzu78NAv2d0R0VFYVCoejR6SU4E69F9/XXX4/JZGLo0KHodLozTnbNzc0BM04QOnwV3fKiym63Y7PZvB47IOgZp9PJ3r17gZ6j3AAZGRmo1WrMZjNNTU1B7b45bdo0Ojo6mD59etBGsEyZMiUo+/WWUNZW/dCZP38+c+bMQaVSUVJSQmlpKePGjSM9PT3cprmZMmUKOTk5ZGdnd3u/fO4MhOj2p9xn+vTpXk2gCAZy5MMbx1l7ezv//e9/0Wq1QnQLAkJ/6G8gY7FYqKqqAuhRTI0cOZJPPvmEyspK2traiI2NDaWJZx1tbW3odDqPxoQNHTqU3bt3d8niCweyEO5tLd1fRPell17KFVdcIYJtXuC16H7iiSeCYIYg3MipN94u8iIiIlCpVDgcDkwmkxDdAeTkyZPo9XoiIyN77ZKsVqvJysqirKyM8vLygIvugwcPIkkSQ4YMITo62ucRE2cjVVVVFBUVMWvWLNEPwU/khdGuXbsoKioiOjq6X4nunJycXmuUAym6/V0MhRtZ5HgT6Za37ejowOFw9Pt5uoLw895772E2mzn33HO7PVf0p2kYJ0+eRJIkkpKSeqxBj42NJSsri6qqKo4ePdpvHNADlXfffZeamhouv/xyhg8f3uu2cvZBQ0MDRqPR66kRgcITh6u8zg6U6PZ13S6mTHiPT93Lu8Nms/X7WYiCnrnrrrtwOBxee6zkERdtbW2YTKagRT9/iOj1erRaLcOGDevz5JaTk0NZWRkVFRUBHyG2fv16WltbueWWW0JyIWpubqa5uZmEhISQz8x0Op2sXr2anJwcj4T0Bx98QENDA6mpqYwbNy5EVp49nDx5EqvVyvDhw93nnszMTIqKiqiurg6zdd4hC+RARroHouh2Op0+9QiJjIxEoVAgSZIYQSPwiNLSUtra2npswtefRHfneu7eKCgocDtzhej2nY6ODsrLy3E6nWf0ZOmOqKgorrvuOjIyMsImuCVJ8kh0ByrSLdd0i2BZ6PBadMtdSU9n586d/PSnP6WiosJvowThwdfIQmfRLQgcEydOZOLEib02AJEZPHgw3333XY/fT3+QP9dQ1Vhv2bKFnTt3MnfuXBYsWBCS55SpqqqirKyM2tpaj7opjxw5koaGBoqKioTo9oENGzZQXl7O+eefzznnnAPgHhUmp2L2ByRJ4tChQ0RHR5Obm9vtuTIYkW5fsicMBgNvvPEGDoeDO++8029bvEWSJC677DLMZrNX5wylUklUVBQmkwmTySREt6BXHA4HbW1tAD1GjvuT6F6wYAF5eXkkJib2ul1BQQHr16+ntLQUi8UiMqh8pLS0FKfTSVJSUo/9cE4n3HX0NpvNPQ2mt89dvi/c6eUnT55k+/btpKSkhHytNlDxWnTn5eX1GA3tre5UcPbSH0bUnM144gyR60ybm5tpb28P2ILVbre7vaHepIr6QziPp6KiIsDVndyT972goIDvvvuOkpIS7Ha7SLfygtraWsrLy1EqlV0cFpmZmQDu7qyhOu56w2Kx8M477wDw61//uttt5syZw8yZMwNirz+LIbVaTU1NDUCXEX6hQqVS+eyA0ul0mEwmd9M6gaAn5BndarW6x+9cZ9Ed7kavUVFRjB49us/tBg0axKBBg2hsbKS4uFg4c32koaEB8HxsYX9Adtgqlcpe1xKxsbEkJyf7HQgZPHgwCoXC52a47e3tHDlypF84tQYKXq8Q5W7KMg6Hg+PHj/P73/+en/zkJwEzTBA62tra+PDDD33uyBwXFyfGyIWZyMhIpk6dSlxcXEAX2fLJVKFQhMzjHs7oxNGjRwFXBNsTMjMziY2Npa2tjdLS0j7rxgTfs337dgBGjRrVpWFQZGQkSUlJNDc3U11dHfboA3zfuVyr1fa4GApk0yN/0ss7f0/NZnPYUiV9QThwBZ4ii+74+PgexXRnUWK1WgdMuYbszK2oqBCi20fa29sBvA5AbN26laNHj7J48eKQ9xTpnFrem4No0qRJASkjLCwspLCw0OfHi5Fh3uO16O6uq+ikSZPIzs7msssu48YbbwyIYYLQ0d7eTklJic/R0eXLlwfWIAFOp5Nnn32W+Ph4LrvsMo8E74UXXhhwOzqnlocqShCuhXdjYyNNTU2oVCqPhZ5CoaCgoIAdO3ZQVFQkRLeHmM1mDhw4ALg64p9OVlYWzc3NVFVV9SvRHSoBO3v2bCZNmuRT5oScpm02mzGZTCEX3Xq9npqaGhISErxetArRLfAUWXT31kcmIiKCBx98EI1GE9Yo97fffoskSUyYMMGjvjdTpkxh3LhxpKSkBN+4sxT5nO3turasrIyTJ09SVFQUctGtVqsZPXp0jyPw+huBLKn6oRCwkFhSUpJopDZA8Wc8jSA4GAwG6uvrOXHiRFibXPgyb9dfwhXpllPL8/PzvYqIFBQUAK4oudPpDIptZxt79uzBbreTlpbWbfqfnGLe2NgYatO6xRPR3djYyLp169i8ebPfz6fRaEhISPDZERpO8VpaWsqbb77JunXrvH7sjBkzuOqqq4Tzqp9z4sQJ1q9f764/DQetra1Az/XcMlqtNqyCW5Iktm3bxtdff+12FPRFfHw8qampYhSTH/jqKJWz3OSst1CSlJTElVdeGbJAVnt7OxaLxefvsbxWE6Lbc7x2oxsMhjNuq6ur41e/+hU//elPu9wvUo4HBkJ09z9aWloAlxffm3Rxg8FAeXk5I0aMCIhYD4foDpdgkEW3p6nlMoMHD0ar1eJ0OmltbfW4acsPFafTyc6dOwFXlLu7heW4ceMYOXJkv5mG4MkCzmAwsGnTJlJTU91N4cKFTqejqakpLKLblxndMoMHDw60OYIAU15ezhtvvIHNZiMxMTHg0zI8xel0otVq+xTd4aa+vh6TyURERIS794og+AwfPpy4uDivswVGjBiBQqGgtraW1tbWfnMN6kxDQwPvvPMOWq2Wm2++2ef9/Pvf/0av13Prrbe6G5h6Q+eGbuHoHzIQ8Vp0JyQkdLtIkiSJ9957j9///vfuhhWedF0WhB9fxrt0pqysjHXr1pGUlMSll14aSNN+sMiiu69Op6fz4osvotfrueGGG/ocTeIJubm5rFixIqTpTrLoDmWk2+l0kpKSQktLi9eiW6VSceutt5KUlCQuOh7Q3t6ORqMhMjKyx3rF6OjoflWLLNcH9mZTIFPttmzZQltbG4WFhaSmpnr9+HBGukM97UAQOqqrq1mzZg02m42hQ4eSl5fH1q1byc7ODrmgPPfcczn33HP7zC7atGkTlZWVTJs2zT2LOZQcP34ccDUh9mZCzHfffUddXR2zZ88mLS0tWOadtfjq+NTpdOTm5lJWVkZRUREzZswIsGU943A4UCqVHmU41NXV+X2O9XdOd+dAncVi6RdNT/s7XovuDRs2BMMOQRjxN9LtcDiorKwU5QUBpHOk2xtyc3M5cOAA5eXlARHdsbGxXotQf4mJieH8888nKioqZB1nlUoll1xyic/PF+p54gOZuLg47rjjDgwGw4CpXfMk0h1I0X3gwAFqamrIz8/3SXTHx8eTlJTk8xhIf5CdZb4swNra2igrKyMiIiLk5x1B79TX1/Paa6/R0dHB4MGDufrqq/nyyy/ZuXMnEydODFsUty9HZ2VlJUVFRQwdOjQsolvOoPL2elxcXEx5eTkFBQVCdIeYgoICysrKOHr0aEhF9+bNm/nqq6+YOnVqrz16Os/p9nXNIkmSezKNrw0GVSoVERER2O12Ojo6hOj2AK9F97x584JhhyCM+NMpF0Tzm2Ag16t5G+nOyclxi+6BSkRERNjSc/0V+JIk4XA4xOiwPlAoFH2mhRYXF7Nnzx6ys7PDnq5dWFhIRkZGr411ZNFttVr9TrXzd37qBRdc4PNz+4s/6eW1tbW88847ZGRkCNHdj2hqamL16tWYzWaysrK45ppriIiIYPTo0ezcuZOioiIuuuiifpnpIx+H4ViftLS0UFFRAcCYMWO8eqzcz0GeRS7wHIfDgdFoJDo62ifH48iRI/niiy8oKysL6dhKeS3el83ydcHpdGK3231yXtvtdneWiD9d/e+///6wNyocSHh0hvzwww+x2Wwe7/TTTz8VLeQHELK3y9dUlc6iO5yNVXylPza/8jW9PDc3F3B59wNR3lFSUsL+/fvd9pyNWK1Wqqur/T52t27dyhNPPOHuyi04E0mSPH6f9Xo9R44coaSkJMhW9U12djaTJ0/ute6t88LF36wffx2h4cQf0S0cuP0Pm83Gq6++itFoJC0tjeuuu859XA4ePBidTofZbObkyZMhs6m9vZ2nn36a119/vc/zSThHUMrXgvz8fK9HCsrbC9HtPXV1dfztb3/j73//u0+PT0xMJDs7mxEjRoS0SZh83egr67RzOriv1xp53X/6/rwl3I0KBxoeie5LL73UHXnzhBUrVlBTU+OrTYIQs3jxYh5++GHmzp3r0+PlhZIkSQMixbyhoQGj0Uh7ezsffPABzz77bL9zFmg0GjQajdeiOzU1FY1Gg81mo7m52W87tm3bxnvvvRfSBRW4LpolJSXuWtpgUlxczPPPP8/q1av92k9dXR0Gg6HbZpOhwOl09vsuonV1dTz66KMevdeywA2EQyQUyKl24H+KuaeLr/6IP+nlQnT3PyIiIjj33HNJSUnhhhtu6OJMUSqV7ukNhw8fDplNra2t1NfXU1tb2+eCP5wdluVmb77M2pYj3aG4Bp5t+DqjuzM/+tGPWLFiRUgbo3pa6qlQKLqkmPtC53puIZpDh0c5kJIksXLlSo+97v194Sc4E39q/9RqNRqNBqvVislk6tcLxebmZl555RWioqJYsWIFR44coaOjg5KSkn41pubGG2/0SWgoFApiY2NpamrCaDT6PeczHN3LwZUtU15ezhVXXOF1Wp63yKNB5DFVviJPawi16DYajezZs4edO3eSn5/PJZdcEtLn94bGxkZsNht2u73PbVNTU1GpVHR0dNDc3ExycnIILOyew4cPExUVRU5OTq+lA5GRkdhsNr+ugXa73Z2l4muku6Kigk8//ZT4+HhWrFjhsy2+MH/+fPR6vV8N4Gw2GzabbcDU/J/tjB8/njFjxnS7Thg9ejS7d++mqKiICy+8MCQp5vLoLU86l4czvXz+/PnMmjXLJ1EjR7qF6PYeX8eFdSYcQtSbDCetVktHR0dARLc/7Nixg9LSUgoLCxkxYoRf+/oh4JHovummm7za6XXXXSfGhf3A0Ol0btHdX0cm6fV6Vq9ejdFoJCYmhujoaAoLC9m2bRs7duzoV6IbfD/pR0dHu0W3v4RLdIeqg7nD4eDYsWPA9/O2fUVeAIZCdEuSREVFBTt37uTQoUPuEonjx4/jcDhQqVT9coRHU1MTgEcCWqVSkZGRQWVlJVVVVWET3Q6Hg7fffhuAX/ziF72K7htuuAG1Wu3X9a/zIsqfBVFtbW1YMo/8qcXWaDQolUqcTicmk6nfj4P6IdGTYz4vL4/IyEiMRiPl5eXk5eUF3RY589KTRqPhTC8HfHYcifRy3wlEpFtGzhgMxbrWmwynxMRE1Gq1z1lgWq2WiRMn+i26q6qqOHLkCJmZmUJ0e4BHovull14Kth2CMPLxxx/T0dHBvHnzfO7CHBcX524i1R8xGo28+uqr6PV6kpOTuf7664mMjGTq1Kls27aN4uJiWlpavE7n7o/MmTMHq9UakG6y4RLdoYpOlJWV0dHRQXR0tE9zKjsTykj3Rx99xJ49e9z/Z2VlMWXKFMaMGUNZWRlr165l0KBBXH755UG3xRu8Ed3gyj6orKykurqa8ePHB9O0HpGdV0qlss/FkL+ZJdA1AuGr02SgpmkrFAp0Oh3t7e1CdIcZSZJYvXo1ycnJnHvuuT1eA1QqFQUFBRw4cIDGxsaQiG5fIt2hdEBJkkRNTQ0ZGRk+O89FernveDLi0RO+/fZbNmzYQGFhYUgyyLyZJLRy5Uq/nispKYlly5b5tQ8I7NSOHwKixa6AY8eO0dbWxsyZM33ex8033xxAiwKLxWLhtddeo6mpibi4OG644Qb3BS05OZmhQ4dy/PhxduzYwaJFi8JsrStdZ8eOHUyYMIFZs2Z5/fhhw4YFxA6Hw+FuthEu0R3s6IQ8zmXEiBF+R4VDGemWU+LHjRvHjBkzuqTGR0REUFtbS2tra7+Ldjc2NgKej1iTX1d1dXXQbOoLWXTrdLqQpBwmJCTw05/+1KvmpafTWWjImQ+hwGq1cuLECfesW1/oLLoF4aO5uZmTJ09SUVHBkiVLet323HPPZcmSJSFr/OeN6M7NzeXBBx/0O6LnDSdPnmT16tVkZWVxyy23+HTeSE5OZtWqVX4Lx1AiSRJNTU2Ul5cTGxsbtuxB+Zztb6Q7JycHcK2RQ3Etzc3NJS4uLiAR+lAR7kySgYYQ3QK3h8rX7uX9GZvNxpo1a6itrSU6Opobb7zxjAv11KlTOX78OHv27GHBggVhryNsaGigoaEh7J5DedGrUChCXqcfivRySZLc4tXf1HL4PtJtsViwWq1BW+Q5nU4GDx5Ma2srF1xwwRnf26ysLKKiojCbzVRWVvosfgKNJElei+6srCxUKhUqlSpkM9tPx5sF3LFjxygvL2fIkCFez+WVUSqVHqXN9kZkZCQKhQJJkjCbzSFbxLW0tPDmm2+i0+l44IEHfNrHeeedh8Ph6HU8myD4yM0z++pjAHjdmdtfvBHd8vkjlMhdy9PS0nw+Z6lUqpC/r94iSRINDQ2UlZW5fzpH5q+//nqGDh0acrsCUdMNLhEcGRmJyWQKybX04osvDur+O2Oz2XA6nX43UhORbu8QovsHjsPhcEdU+nMDNF+prKykpaWFyMhIbrjhhm7TWocPH05CQgKtra0cPHiQiRMnhsHS7/F1XJiMwWCgsrISrVbr1wWv8+ifUIudUKTH1tTUYDAYiIiI8FkgdUar1ZKYmEhkZCQWiyVoolupVHLVVVf1ev+wYcM4cOAAxcXF/UZ0t7W1YbPZUCgUHh/bycnJPPTQQyFfNHfGmwVcSUkJO3bsQKVSBeSY8hWlUklUVBQmkwmTyRQy0e3PuDAZURfYPygrKwNcY8G8wWKxBH0todVq0Wq1fjungoHdbnd3cvela/lAYt26dWzevLnLbSqVCp1OR3Z2dtjOgcOHDycuLs7vch+VSsWIESPYv38/RUVF/eZaCrBp0yYOHDjApEmTmDZtmteP37FjB2vXrmX8+PFceumlPtshRLd3CNH9A6fzF8Wf1LBDhw6xdetW8vLyOO+88wJhWkDIz8/nZz/7Ge3t7T02N1IqlcyZM4f29vZ+0UzNX9FdVlbGu+++S35+vl+iOy4ujhUrVoSlTj8UNd3p6encdNNNtLS09BnJ8ZSf/OQnAdmPv3QW3f3l+2i32xk5cqRX6c4KhSKsghu8qw8MxAKkoqKCoqIi0tPT/Vq063Q6t+gOFYEQ3YLwI0mSO9LtaY12c3Mz//3vfzEajdx3331BddTK5WyeNpH69NNPaWtr48ILLwx69Li4uJiOjg7i4uK8dliczvbt26moqGDy5MkhqZXvC4fDgcPhcDuUs7OzUavV5OTkMHjwYPLy8sjKynI3+JKPAZvNhtFoDJmT5JxzzgnYvkaOHOkW3eeff37Qjmv5WPZ0/+3t7dTV1bmzPrwlUN3LwzmSbyAiRPcPnM4jCvypV5FTWftj/ZFSqeyzm/CkSZNCZE3vSJLk7szqq+iWo8T+di+PjIz0qxOxP6Snp3P++ecHtbGdUqkkLy+vXyxmvMFut6NSqXq9OMt1/fLs8P4wTSIpKcmv8VXhqk/3JtIdCNFdXV3N5s2bGTNmjF+iOzExEafTGdIZ54FovNjc3Ex1dTUxMTED7rt5ttDc3ExbWxsqlcrjhpxxcXE0NTVhtVqpqqoKSCPPvvBUoBw5coT29nbmzp0bdNEtp5aPHTvWb4F28uRJjhw5QnZ2dli/C5IkcezYMdauXcvw4cNZvHgx4MpKefDBB7t1jMqvXZIkPvjgA0pLS7n66qv7VbTYE4YNG4ZKpaKlpYWGhgafRiF6QnNzM//85z+Ji4vjvvvu63P7QM3p9rcPg4h0e4dPonv9+vWsX7+e+vp696gamRdffDEghglCgzfdEnujP3bLra+vZ9CgQf2qkVRftLW14XA4PHIU9IQsDvrTZ+EtCQkJAfVWn018/fXXbNu2jdmzZzNv3rxut5HT+yorKykpKek3TiVfqK6u5sMPP0SlUnHbbbeF/PnHjRtHcnKyR4utQCxAvJnV2hvXXnutX4/3hUBEuouLi/n8888ZM2aMEN1hQk4tlyOZnqBWqxkxYgQHDx7k8OHDIRHdnhIVFUV7e3vQmz1ZLBb3CMpApJb3h1nddXV1fPHFF5SWlgKuZonnnnsuERERHmUhdXR00NzcjMlk4pVXXuGiiy4Kagmf3W7HaDQSHR0dkAw2jUbDkCFDKC4upqioKGii22KxIEmSx05Sf0W33CTX3+tMVlZWyBsVDmS8PiIfeeQRfv/73zNlyhS/xiEI+gfezAXsjf4m9KxWKy+88AIajYZbbrnFo7QmSZI4cuQIu3bt4rLLLgtL1F5OLY+Pjw/IuCB/mk9VVVXR1NREWloaaWlpPu2jv2Iymdi6dSsJCQkBFaR79+5l48aNDBs2jAsuuCBg++2MXq/Hbrf32fBv7NixJCYmhm2+9elYLBa0Wq3Xx6NOp6Ourg6FQoHNZgt5o8OMjAwyMjI82jYQojtQEYhwEAjR3R8duD9EEhMTvU6PHj16tFt0BysVd8+ePWzdupUxY8Ywd+5cjx4TymkYDoeDlJSUgFwz5V4M4ZjVLUkSmzZt4quvvkKSJFQqFTNmzGD27NlenYMjIyNZuXIlH3zwAYcPH+bDDz/EbrczderUoNhdX1/P888/T2xsLKtWrQrIPs855xwmTpwY1KZw3q7F5e38Fd3+iuVwNCocyHgtup955hlefvllbrjhhmDYIwgxQ4YM4eGHH8Zut/u1n/62UCoqKsJqtRIdHe3xrFeFQsHmzZupqqpi9+7dzJkzJ8hWnonT6SQtLc2vtGr5s3A6nVgsFp8XwAcPHmTr1q2cc845nH/++T7b4ytVVVWYTCby8vICLrSam5vZuHEjcXFxARXdTqeT5uZmmpubA7bP05HLD/pyJE2fPj1oNvjCM888g8ViYeXKlV51po6Pjyc6Ohqj0Uhtba17jEt/RIhuIbrPBiZNmsSkSZPOyGTsi2HDhhEREYFer6empqbLKMNA0djYSH19vVdZEKGYhgEwfvx4YmNjcTgcAXE4hCvS7XQ6+fTTT9m1axfgcqYsXLjQ53WJRqPhiiuu4Msvv2Tr1q3s3bs3aKJbfq8C2TwyFBk33mad9pf0coF3eB1Ks1qtIu3zLEOlUvn9xet8UfP2Qh0M9u3bB8CECRO8uvjJF4KdO3eG5XXk5+fz4x//mKuvvtrnfajVavfn6c/CNRD1mf7w6quvsmbNGp8bhfSGNyNnvCEUs7o9Fd39CZvNhl6vdzcY8gaFQhHWed1HjhzhxIkTHs3NDqTo9jf76NChQzz77LN8/vnnfu3HGwoLC7ngggvcPQV8QYju/oO32VYRERHu7vOHDh0Khknuc7c35z/5uxRs0a1UKhk6dGjAOvDLojvUkW55kgvAkiVLuPLKK/3ur6JQKBg/fjwQ3OtjoMaFhZqBLLo//fRT3nrrrbCWQQwUvBbdt956K2vWrAmGLYIBTOfIRrgbKuj1ek6cOAG4RLc3jBkzBp1Oh8FgcM9wHogEopmavEAJl+gO5uJbvugHusGYvL9gOArAVa8mX9g8cRhIkkRdXZ27Hi9cNDU1Aa7zhC/HU7hEtyRJ/Pe//+XVV1/16DhMSUnh9ttvZ+XKlT4/Z6Bqum02G7W1te73PhTk5uYybdo0vyKcp5fHCEKLv47zUaNGAS5nVTA+P18cpqFKLw804UovT0pK4qqrruLqq68OaMaUfH1sb28P2lSUYES6wfUZbNiwgU8//TSg+5XxVnRHRkYSHR3tc1bRkCFDGD16dECc94cPH3Y3KxT0jtfp5RaLheeee45169Yxfvz4M9I+//rXvwbMOEHw2bt3L8ePH2fUqFGMHj3a5/3Ijb8UCgUdHR1hE2oA+/fvB1wpQd6eUNRqNRMnTmTTpk3s2LHDvYAYaJx//vlIksSgQYN83ocsMsI1/ken09HS0hKUhZK8cAuW6O7o6KCjoyPgqVuy3RERER59x4qKinjrrbcYNGgQd999d0Bt8YbGxkYAn49HueNtUVERJpMpZOeXjo4OtwDxJHISERHhcf13b88J/ovuUIzdCwbyZ+twOLBarSL9McR8/vnnFBUVceGFF3rttAbXjORx48ZRUFDgV0+RnpAzffqb6F6zZg3JycnMmjUrYIJPjnRbLBavRi36QkNDA2az2X2uDcaMbZ1OR2FhoTsFPxivx5sRj96g1+v59ttviYuL48ILLwzovsF7Z2tWVhY///nPfX6++fPn+/zY04mKisJoNIY94DYQ8Fp079+/n8LCQgB3+omMaKo28KisrOTgwYMkJyf7JboBfvaznwXIKt+RJIm9e/cC3ke5ZaZMmcKmTZsoLS11d8EMFU8++SRqtZqrr76apKQkn/cTCGdBuNPLgyka5Eh3oNPLtVotWq2Wjo4ODAYDKSkpAd1/5wWnJ+fbvLw8FAoFjY2NtLS0BHUEW2/I0VZfm7rl5+eTnp5ObW0t3333HYsWLQqkeT0iL+C0Wm3AZrn3xZVXXonJZPI7AhGONO3i4mI0Gg2ZmZk+92GIiIggIiICm82GyWQSojuEyPO5rVarz6O1NBoNl112WYAtc9E508eb78f06dOZNm1a0DosNzQ0UFxczPHjxwPaCyYqKopVq1YRHR0d1CksZWVlvPHGGwDccsstfjnre0OhUHDJJZcEZd8ycnZfoCPdnevrg+FMSkhIYMiQIQFfM4SCUJVvnA14vYrYsGFDMOwQhIlAjQzrL9TU1NDc3ExERITPToSEhATi4+PR6/U0NTWFTHTbbDZ3A65wRZc7E27RHczmN8FKL5f32dDQEBTRrdVqKSgo8NjuqKgocnJyKC8vp6SkJGjNa/pCjnT7KroVCgXnnnsue/bsCeq4mdPxpT5w69attLe3M3PmTJ/OHXFxcQE5LkMtuiVJ4o033sDpdHLffff55dC6+OKLPc7m8Ae73Y5er6e9vb3Lj8ViIS4ujry8vH7duC/QtLa2YjAYUCqV/fJ1y+dttVrt1bER7HFGVVVVgCsjJ5DHrEKhCPpccYPBwGuvvYbdbic7OzusWYqBIFg13fL+/G1Q2xNy88JQ0dHRgUajCYjzQMzq9hy/XPeVlZUA/Woeo8A75C9JfxB5gSAjI4PbbruNxsZGvy60gwcPDmqzj+6Qx4VFRkb6/Xk0NzdTU1NDbGysO13MGxwOhzvN9WyMdAerkRpAeno6arU6KJk/2dnZXjfZGz58OOXl5RQXF4dNdMuRbn8iKMOHD2f48OGBMskjfFnAbd68mba2NsaMGRPWZj7y99ZqtWK324MeqbfZbO5UfH/PX4GYcewJ1dXVvPTSSz3eP3fuXLf4bG1t5Y033mDw4MEsXLgw5KPrQsHJkycBV+qqP6+vvb2d5uZmoqKiAup4tNlspKamBu386ivy9SRcmUT+UFFRgd1uJyUlhRtvvDHox7XdbsdgMKBWq4Pi9B4xYgTx8fEBd3ir1WoiIyOxWCy0t7eHfc0sSRKrV6/GYrFw/fXXe3Wtsdvt/PGPfwTgl7/8ZbdBN4dTYvWWk2wqaeTO+cOYPLjnY1t+L4To7huvr8JOp5M//OEPPP744+40n9jYWO6//35+/etfBzUFRhB4+op0S5LEV0X1rDtSzzXTchifndDjvrZu3cqhQ4eYMGECU6ZMCYa5fSJ3OvZ3VMmll14aIIs8RxbdgbhwFxUVsXbtWsaNG+eT6Aa45pprMJlMYcuCCGak7kc/+lFQItFA0FIrfWX48OGsX7+e0tLSkIiv7hg2bBgxMTGkpqYGbJ/BSPE7HV9Ed2RkJG1tbT4tQJxOJ+vXr0er1XLOOef49VlFRkaiUCiQJAmz2Rz0iJn8PVWpVANGkMbExKDRaIiJienyo9VqMRgMXaK9zc3N1NXVUVdXh9PpZOnSpWG0PDiUlZUBeD2f+3S2b9/Oxo0bmTJlSkDfp7S0NO68806vHyc3wZIkKSjpzcHMnNq7dy8lJSWMHTuWgoKCgO9fdoj6UxLiDRs2bGDz5s1Mnz6dJUuWBHz/M2fODPg+ZaKjo92iO9BrB2+vZwqFgpqaGjo6OrBYLF5dozp3PO8uOFXaaOSBt/exs8y1Jv2qqJ7b5g7hZwtHEBlxZh2+SC/3HK+v6L/+9a954YUX+OMf/8isWbMA+O677/jd736HxWLh//7v/wJupCB49CS6ZbH9xLpiDlS5vLhv76zg54tHcvucISiVZ54cDAYDlZWVIvPBRwIpuv0VrCqVKmBjT3xlyJAhREREeDXT2VMSExMHZFTCYrGg1Wq9ujinpqYSGxtLW1sbJ0+e9Guck6+ce+65AduXwWBgw4YNOJ3OoDvHfBXd4JvX32q1snnzZgC/R3MqFAqSkpKQJMmjcWf+0nlGt7/OkLq6OhoaGkhOTva7MV1nJEnim2++obCwkISEBBITE3nooYc8emxGRgYXXXQRH3/8MTt37mTYsGGMHDkyYLb1B+RIt79zieV62v7SzdjpdLJnzx6USiXLli0LuLMumKK7urqaQ4cOkZSUFBTRLa87/Okh4w3yexTqTMJAEBMTQ1NTk19TYXriueeeo7W1lRUrVnjs9JL7x3g7NsxqtQKu/hmdA6UOp8RLm0r5yxdH6bA7idaomD4kma+K6nn2mxOsP1LP41dOYEJOQpf9ifRyz/FadL/yyiv8+9//ZtmyZe7bxo8fT1ZWFnfddZcQ3QOM00V3d2I7KkLFmMw4dpa18MfPithY3MBfryokLa6rUA9mDa4nvP3222g0GubMmROwC4jNZgtZ1Ea++HnaIKY3z6gsEoJxcQgV2dnZwoFzGk8//TRms5kf/ehHHjsjFAoFw4cPZ/fu3ZSUlIRFdAcSo9HobpY4c+bMoDhlZOT6eW9q0f1ZgMiPUalUAclIuOeee/zeh6cEsgfE7t272b59O7Nnzw6o6N6xYwfffPMNO3fu5Cc/+YlXJUhRUVFMnjyZxsZGtm7dyocffsiPf/zjoGcQhIrW1lb0en1A6rk7N53qD8jpr06nE5vNFvAa72A15oTgjw2T+8icDaLbbre7m98GI6MrmM4ks9mMxWLxym5fZ3V3NyHj9Oj2rGHJ/PGy8eQk6Vh7uI6H3j1ASX07lz29mTvnDeXe84ahVbui3rNmzeKcc84RTS89wOujsrm5uVtvW0FBgfvLKxgYSJLUZUzBV0V1/G1tV7F94zmDuW3OEJKjNby5o4JHPjrMppImljzxLX++YgLnj05z7y8c3XJl2tra3HNBA9E91Gg08uyzz2IymfjVr34VkrIJuTN1XxHY0kYjf/miiG+PNbKsMJM75g5hcHLXSJy/n0VzczOVlZUkJSWddcK3srKSY8eOkZWVFZRIVXV1Ne+++y5arZbbbrstYPt1OBy0tbUhSZLXnVmnTZvG6NGj/U4b9YX29naUSmXAegNkZGQwZswYDh06xIYNG7jmmmsCst/uSE9P91rU+yO6AzUuLBx0jnT7SzCuJdXV1Xz55ZeAa5Hoq/A677zzOHnyJLW1tbz//vtcf/31/aq+2FdUKhXz58/HZDL5LUqDJU7efPNNmpubWbJkCfn5+R4/LiIiApVKhcPhwGw2B1x0y/PIgxHpDrYDQ6FQoFKpzgrRXV9fz/PPP09sbCyrVq0K+P4XLVrEokWLgtKrw5emxoEQ3U6nxIunRbd/tXQU107LdZ/Xzh+dxpTBifzmw0N8tK+apzaUsO5IHY9dOYGxWfED8noVLrwW3RMmTOCpp57iH//4R5fbn3rqKZ9HNAnCg0Kh4Fe/+hWVjXp++WExXxyuB0CnUXHDzMHcPmcIyTHff5lWTMtlSl4SP31jD4eqDdy2eic3zBjMr5eOIjJCFVbRvX//fiRJIjc3NyAXD51Oh9lsxuFw0NLS0muky+5wsru8lfVFdRytbeOBxSMZk+m9xzshIYHU1NQen6uxvYMn1xfzn23l2J2ui/yabeW8sb2ci8Zncuf8oYzKiHPbDy7ngS+1r6WlpXz88ceMGDEiqKKmN+x2O7W1tVit1j5nhja2d5AQFYFa1bdzpKysjI0bNzJu3LigiG6NRkNTU1OfFyJJkthwtJ53dlWRGqfl0olZjMvqeRSYwWBAkiTUarXXF/20tDTS0tL63jAIbNy4ke3btzNnzpyApZkvWLCAw4cPc+zYMcrLy33uWxAM5M/dH9E9EKdJ9GfRbbFYePvtt3E4HBQUFDBjxgyf96VWq7nssst47rnnOHHiBNu3b2f69OkBsTOcxMbGMm/evIDsq3N0NpC9F+rr62lubvZ6fwqFgqioKNrb2zGbzQGPSN911104HI6gOOdl0R2sSPfKlStxOp0hcxzJ731bW1vAZ3XLjolAjwuTCYZTBVxrAV/O/b6Kbjm9XKPR8Kv3DvDGjgqga3T7dBKjNTx5zUQuGJvOw+8fpKi2jcv+tZnfXzKGFdP6z/W3v+O16P7zn//M0qVLWbdunbthwZYtW6ioqODTTz8NuIGC4CFJEu/vreaRjw6jN9tQKxXcMjuf2+d2FdudGZYaw7t3ncNjXxzl+Y2lvLq1jO2lzbx667SwiW5fZ3NXt5o52WhkdGYcCbqunm+FQkFycjJ1dXU0NTWdIYRbTVa+OdbA+iP1fHOsAb3Z1mW/n/xkDhEeCMDOXHDBBd3ebrY6eOG7EzzzzQnaO+wAzB+ZwhWTs3l7ZyXfHGvgw33VfLivmnMLUrlr/lDGZ7ouOg6HA6vV6rUnMtzjwsDlMHjhhRdQKpU8/PDDXRYFkiRxoErPF4dq+fxgLccbjCRHa7hwXAbLCjOZnJvYbd8B+L7TbLAuoPJ+5Vqr0997h1Pi84O1/HNDCYdrvvf2v7TpJMNSY7h0YhbLJ2aRldBVvHg7o7snQtGArDNyox5/5053Jjk5mcLCQvbs2cNXX33FTTfdFJTXdPToUSIiIsjOzvY4OhaI9PJARQ62bNnC/v37KSwsDLowHDx4MBdeeGFABE0gryWSJPHBBx/Q2tpKQkICl1xyid/HSkpKCkuWLOHYsWOMHTvWbxvPNmTRI0/BCIQTSZIk97nbl3NJZ9EdDAIpHjsT7PRyIKQNkOWZ406nk/b29oA6QII1LizYdBbN3pz75e+Vr5HuKoOdN05UoFTA75aN4YYZg/s8N144LoNp+Uk8+M4B1h2p48F3D3CotJrJkfVoNRE9rmMFLrwW3fPmzePYsWP885//pKioCHB1673rrrv87hgtCB21egu/eu8AXxW5ottjs+L4yxUT3JHS3tCqVfx66WjmDE/h/rf3cbSujTtf282Tl7lqRUMtunft2kVjYyNqtbrP2dxVrWY+O1DDJwdq2FPe6r59ZFosU/MTmZqXxLT8JDLioxg0aBB1dXWUlNdQJSVwvL6dkvp2jta1sa+ilVPBZgASdBHMG5HCd8WNHKtr54XvSvnxvKF+vS5Jknh7ZyWPrz1KncF1khybFcdDF4xi1jDX6KWLxmdysErP098c59MDNXxVVM9XRfXMzE9ijEqNw2HHZDL5LLrDORZDXng7nU6sVivqCA07Tzbz+aFavjxUR1Vr18VTk9HKq1vLeHVrGRnxkVw0PoNlE7IYmxXX5UISzPo7cHmP5dEier3e3bHb5nDywd5q/vV1CScaXIsDnUbFVVNyaGzvYO3hOkrq2/nLF0f5yxdHmZ6fxOWTsrlkYiZatcqvBSe4nA1bt26lvLyc5cuXB6Vze3fIM7r9GRfWHfPnz2f//v2UlZVx/Phxj2rV7Q4npY1GjtS2cay2jaRoDUvGppOZ0P1x/v7772OxWLj77rs9tn/y5MmMGjXKJ6dOoNPLTSYTtbW1ISn9Sk1NDVh3+kCK7m3btlFUVIRKpeLKK68MWBaBPFf3bEgtb29vp7y8nMGDBwdEsERERLibPLW1tQXkPTcajTgcDp9nVwdzBGUwkV+ryWQKeGQ4HMifn16vx2AwBPQ6HOxId0tLCzt27EClUnHeeecFbL+ys1WtVntV0x0VFUV0dLTX56Do6Gik+Cz2NTpRKODxqyZw6UTPywgHxWh57obJ/HNDCX9dd4xP9lagjjxMlC5aiO4+8KnTQGZmpmiY1o95+P0D7K/Uk5ukIy85msHJOvIGRTM4ScegGC1v76rgDx8fQWltY4GmhlH5Way6cZZHqbmdmTsihTdvn8El/9zErrIW/vF1OXEREURFReF0OkPiPS0pKXFnWMydO7fbi3tli4nPDtTyyYEa9la0um9XKCAzPoqqVjNH69o4WtfGa1vLAchOjGKUZCQbeO2bg2y2nVlPNTItlnNHpXJuQSoTcxJQq5T8d1clP397H39fV8xF4zPITvQsUiynd3U+ef7xsyKe/fYEAFkJUfxiyUguHp95RgR3bFY8/7x2EqWNRp795jjv7K5kS2kzeu1grpo22KdotRwNCGekOyIiArVajd1uZ/XGo7y4o4Ea/ffRQ51GxfyRKSwek87c4Snsq2zlo301fHmolhq9hec3lvL8xlKGDIrm5tn5XDUlG61aFdROszJxcXFYLBYMBgOpqam8v6eKx748SmWL632Ni1Sz8pw8bp6VT2K0K4JqsNj4/EAt7+6pZOuJZraVun6e33iCP10xHkOnSLcvREZGUlZWRk1NDatXr2blypVeNQjzBZvN5nYWBPq54uLimDp1Klu3bmXz5s3diu6S+na+PlrPkZo2imoNFNe3Y7U7u2zz+48PMyk3gQvHZXDhuAy3AHc4HO7FkDdCJCEhoVvHiNMp0dDeQWWLmepWM1Wtrt8Gs43LJmUzd0SKT3V9vSELjYE2yiVQotvpdHLw4EHAVY8ZyMDA6QvdqqoqsrKyArb/QCFJEvsr9Xywt5qShnbyknUMT4tleGoMw1NjSI7RUlJSwgcffEBWVha33nprQJ53/vz5qFSqgF1D5Eyf2NhYn4RnsL4Lhw4dYseOHYwYMcLviQPdodPpUCqVSJKE0WgM6HVr27Zt7Nu3j4kTJzJ16tSA7bcvJk+ejN1uD3hEWhbdwYp0m81mtmzZQmxsbFBEt7fn/aVLl3o9kk+SJF47ZObl2gwUCvjz5eO9EtwySqWCe88bzqiMOH795jYA2k0m9le29jpa+IeOR6J7//79jB07FqVSyf79+3vddvz48QExLNj885//5C9/+Qu1tbVMmDCBJ598kmnTpoXbrIBwsMrA/ko9+yv1Z9ynUSvdi865aRHkGZpJtEd6LbhlhqTE8OQ1E/nRyzt4Y08d/3vJtdwwM88f871i586dSJLEhAkTmD17NpIkcaLRyM6TzWwvbWFnWTNlTd8v3BQKmJqXxNJxGSwZm05aXCSN7R3u7XecbOZQtZ7KFjMalYJsDSQoOxiRFsOw1BiGpcQwNDWGSbmJ3da9XD4pi7d2VrC9tJlHPjrM8zd6Nq/84MGDfPLJJ4wZM4Zly5bx0qZSt+B+YPFIbp2T7+4U2RP5g6L54+XjuXvBMFa9tZcdJ+F3Gw3sbTvM75ePJS7S8y7s/SG9vL3DjlOlAbudZ9YX0SRFEx8VwcJRaSwZm86c4YO6zIycPzKV+SNTsdjG8vXRBj7aV826I3WcaDTyP+8f5Kmvirlj7lD0+uBGuuV919fXYzAYeH9PFfe9uReA5GgNt8zJ54YZg4k97fOIi4zgqqk5XDU1h6pWM+/vqeKlTaUU17dz+dObWZnlihj7GunWarVcf/31rF69mrq6Ol555RVuvvnmoI5Ok1PLo6KignIszZkzB41Gc8Zs1mN1bfxjfTGfHKhBkro+JlqjYmR6LCPTYzneYGTHyWZ2l7eyu7yVP3xyhEm5CSwdn8mSEa7FrVKp9EsEVzSbuO/NveyvbMXmkLrd5v291ayYmsP9543kjjtyAtZ51xPx6nRKtJisWB1OBsVovS6LkamoqMDhcJCWluZ3hkznSRj+lEMolUpWrlzJ/v37mThxol829YScvr5v3z6uuuoqRo0aFZTn8ZaTjUbe31vFB3urKW38forFt6dtlxytYY72JIn4P5+7M/7UzXeH7Lzz9bx9ySWXBGWGfH19PWVlZUFzYCoUClatWkVUVFTAAxm1tbXU1NRwsD2a32y2EKNVodOoiZZ/a1TERKrJSdSRPyiaISkxDIrR+J3dEYhmt90hp5cHK9LduUFgIMu0VCoVQ4YMCXovD0mS+OPnRbzwXSkAj146jiun+DepYOHoNDJvncXbL+5BhcTVz2ziD5dO4PLJ2TicEs1GK43tHe6fpnYrFpsDi83p+m13YLY6sdgd2OxOnJLLTqck4ZTAKUlIp37/59bpAz6zyKMre2FhIbW1taSmplJYWIhCoXB3a+yMQqHA4XAE3MhA8+abb7Jq1SqeeeYZpk+fzhNPPMHixYs5evRowNLjwsljV07gREM7ZU0mTjYZKW92/a5qMWO1O9Gqlfx80UimxrXxwQd7/f6izx+Zyi+XFPDoZ0U88tFhhqXGMnNoYC5ArSYrJafSukvq22k2WYlQKlGrFESolKijx6LOiaRYO4Ifv7aLnSdbaDJau+xDoYBpeUksHZ/BkjHppJ426mxQjJYlYzNYMtY1mqa9w87e8lbq62o4sL6UIXES//qZZw1mFAoFf1g+lgv/vpG1h+tYd7iOhaP7bmDV0tLibm7x6YEafv/xYcAluO9e4N2Ip5wkHa/fNoN/fX2cv68v5v291ewsa+HvKyYyebBnAiuckW69ycZLm0t5adNJ5jklkpWQHavi/vPGcfnkrD6dD5ERKpaMTWfJ2HTaO+z8d2cFz3xzglqDhT98fJCbolwXZlVk8F6bnBJYVF7H73bUAXDjzME8dMEoojR9R2myEqK4e8Ewrp2Wy/9+cph3d1expcbJ0MhkWpy+263T6bjhhht45ZVXaGho4JVXXmHlypW9CnmHU6KxvYOGtg7q2yw0tMl/uy6iMVo1eYOiGTIomrxB0eQlR7udIbLoTk5ODsrFUqfTsWDBAvf/RbUG/rG+mE8P1Lpvmzsihcm5iRRkxDIqPY7sxKgu2SJ1BgufH6zlk/017Cj7XoB/PEiiELxO3zMYDOzfvx+1Wk32yPFc8/xWd4aDUgEZ8VFkJkSSlRBFVmIUzUYrr2+v4I0dFXx7rIE/Xj6euSMCk4rfWXTvLm9hQ1E9tXqL6/M89Zk2tltxdKqVSY7WkBoXSWqslrQ4LWlxkSRHa0jQaYjXRZAQFUGCTkNCVARxURGoTr2XX375JZWVlVx99dV+zxPW6XRcfPHF6HQ6nxe3DqfE9tJmag1m1Kp06g/VESFfN1QKIiNUjM2MR6P2T8goFAr3Yvyzzz6joKCgR3sdTon6NgvVrWaqW12/G9s7cDhBwrW4lDotNjVqJYk6DYnRGhJ1ESTpXJ9DYrRLOBo7HJitDoxWO2arA5PVQY3ezEf7a9jXKasrMkLJ+aPTmZ6fREWLiZK6do7Vt1HRbKbJaEVtbwQlnLCEz8naF/6W1wSrVCrY5UoQvMht06mykwNNDkodnnUTj41UM+SUAM9J0pEQFUG8/KNz/Y6LjCAqQoVCCQpAqVCgVChQKFx/+/ud64lg13TL+5UkCbPZHLD1UUpKCjfccENA9tUTkiTx+JfHePabEyhw8sgl4wLWAG1UdtL3utBu5f639/H/Pj1Ci8napQzTXyTJtZ4fyHgkuktLS931f6WlpUE1KBT89a9/5bbbbuPmm28G4JlnnuGTTz7hxRdf5MEHHwyzdf4zLNUVlT0dq91JZYuJpFMLqO3btwOBSWW8fe4QDtcY+GBvNXev2c0Hd8/qNhLcG3aHk43FjXxVVE9xfRsl9UYa289sEKHAiUTnk3YEHPv+uNSolRTmJDAtL4kpeYlMGpzoVZQ3Rqtm9vBBdOTGoi/OJTk52at0+RFpsdw6ZwjPfHOc3354iHOGJaPT9P5Vk2d0G9Hy2zf3Iklw/Yxc7prvW124WqXkmvEJ5KuSeXprHYdbzFz17BZ+et5w7l4wzL1QPh1JkjCY7ejbXGlau6qMfNdwglaTzeVxdG/nWiS6/gHp1GMl99/f3y/752RHnYRrQWl3SFjtTqwOJ1a7E5vD9fe+Cr27YZwyRgsOM48sHUbhBO8vEDFaNStn5XPN9Fze2VXFS18dACvYJQUL/76FSwqzSIiKIFKjQhehIkqjcnXi16iZlpdEvM63qEhqairJKWm8s78BqyOZJWPS+d3FY3ps7tYTidEa/npVIRdPyOTX7x7gE72FTz6rZXPjfn61dJTHx3WH3UGd3iWaHU6J8fMvZusX76LXt/L8iy8z76IrUGmjqWo1U9FsorLFRHmziYpmVwq03csrZ2Z8JENSYpgQUQ0Evp77dA5Xu8T254e+F9sXjkvn3nOH99mnIi0ukpvOyeOmc/KoM1j47EAN//r6OPXN9aAFbaR3i/W2tjbWr19PTGwc739rorLFTF6yjudvnEL+oOhus4qWF2bxwH/3U95s4sYXt3PNtBx+deGoM7IhvMWK6/Gltc38v39t7nVblVKBwynRZLTSZLRypKbv/SsVcM7QQVwzLRdjAPtAqFQqJk2a5PXjnE6JXeUtfLyvmk/319Bg7MC17O+eYakxvHjTVHKT/Vs8z58/ny1bttDW1nZGneqe8hb+uvYYJxqM1BosXRwcwUSpgNnDU1hemMmiMenEaM+8BpmsdrYfOMY3H+/EISn425ZmCsc0MX2I/05zo9FIY2MjWq22y9g9SZLosDsxWR2YrPZTv11/d9icRGvVJEVrSIrWEN/JqaPRaEhNTQ36ucRbQlGuFCwqaxoAsCp1PHnVRNRKBcZTn4Wxw/W71WSjrNnEiYZ2qlrNtFns7KvUs6+bTEpPUCrg+mk5/HRuFg6HI6CBrhEjRhAfHx+0fiVKpZKoqCjMZjPt7e1hzQQEOH78OBs3biQtLY0LLrgAvcnGsfo2OmxOOuwOOuyuaHKH3cmhar27fPKeoQZOrl3NJud5zJo1y287FAoFkZGRmM1mfjQji39ubXAHvxQKSNRpGBSjYVCMluQYLboIFZERSiIjVGjlv9UqNGolKqUCpcK1T5ezBrfD5mzAI9HdOeWorKyMc84554z0N7vdzubNm8MyB9YbrFYru3bt4qGHHnLfplQqWbhwIVu2bDlje7kDsUwwZguGCo1ayZCU78V4IDvlKhQK/nT5eDrK9qIyNfGLF4288JOL+hSbAEdqDLyzq5L391Z3K7Iz4yMZesqRkBqrofXAN6CNRp1biN0JNoeE3ekkIz6KafmJrrmBfURDPUGr1bodM97yk/OG8dG+aqpazTz5VQm/XNJ75EcW3a/ubsRqT2DR6DQeWTbWr+jg7t272b11K3dPm8E6Qxrv7anir2uP8bd1x1ArFag7ZQzIJ7oWow2rw0mmMgWdIoE1ayvooLbvJwswBemx3HPuMExFJo4caaXDh07QndGqVVw7PZfLJ2XyzpZ83txSgr7FzuotZT0+ZlCMljW3TWdEmvdNewrGTeKh78ycMBkZnx3P364u9Fpwd2bByFS++Nlc/vz5UV7dWsYbOyr4YG81g2I1xEV+H12Ii1ITHxWB2eagVm+hRm+hVm85I/sDQEcuF2jN0KbnV6+sp8TR82JWpVScioBqSYnRkhKrJTU2kuQYDXqzjZONRkpP/Rgsdqr1Fqr1Fk4ozeSoUik6aqXky6MsHpPOmMw4r49ru8NJebOJsmYTlc0mKlpk54CZmmYDObZKYhUdKBT5LB2Xyb3nDmdkuvefW1pcJCtn5TNvZCr3P/MBOKC42UZDWwcpsZ6dJ2UnZmubkQqzmcHJOl6/fQYZ8T2L0elDkvn8vjn8+fV17C6u5IsdJr452sD/XTqOOcMHeVX+Y3M4+fpoA2/trGBHUTmXakHltBEZoWTxmHSGp8aQEuv6DFNiIhkUqyE5WotaqaDFZKXO4HLO1J/6XWfooNlkRW+y0Wq20mqyoTfZaOuw45Tgu5JGvitp5NooA1qg2QKhWgXIAu5obRsf7avmkwM17r4PI1X1LImqpD06m5q4Atd1wuHEeup3rcFCSX07l/zzO569YQrT8n0fNalWq0lJSaGuro6amhri4+NxOiWe23iCx7442sVppVYqSI+PJPNUxkNKrBa1SumOCCpOLTgVQIfdSavJSovJSovR5vptstJisqFUgE6jRqdxOQujNWqiNCpiTzmNLxqf2ecxq9OoqTi8CwBbQi6WWiV3r9nNh/fM7rG5oKfs27ePtWvXMm7cOC677DLA5Ry7Z81uTnRKd+8NpQJXZF8XQXKMlpzkc7BadTTtqSQ3SUdOko6UGK1H55PKykp2795NUlISs2fP9uu1dUZeE9qUkZQ3mUiO0aDTqPq0SZIkTFYHZlvP2aHJ0a5U7sOHD3P48GGGDh0asDKJDYerkWyuDJz7LprIxRP67ndgsTkoa3IJ8BONRqpazejNNgynfvSnfgwWe4/OJacE3+zYj2r/e2RnZ3PLLbcE5PUAZ5QZ+UqH3UFpo5Fjde2U1LVxzJ0ZYuJKnRItrhTzcGfGWiwWysrKMFntPPTuAd7bU4nF5uz1MQ8vHUVC3W4OVUsBK2MC3KL76knprJg7FoPFRkqMlqRojc/lq2cjXr/jCxYsoKam5oyDTa/Xs2DBgn6fXt7Y2OiuO+tMWlqauxt7Zx599FEeeeSRUJkXUgI5VxVcab0zs7ScPG6kpKWFB97ez1PXTjzj4iNJroZCH+2r4Z1dlV3GJiVFa7hofAYTshMYluqqn+7sof/888/Z1lyFWq3mpuXnhf2k1xM6jZrfLRvDbat38vy3J7hsYhbDexFvcppXfYeaSbkJ/OOaiT1Goz224ZQX1m618LerC5k3IoXffHAQg8WOzSFhczjA1v1jjdpB6GK1TDolsBJ0Ed8vCJF/f5/qIy8S6en+TrfJ22vUSiJUCjQqJRFqJREqJVq1ktTYSKbnJ6FUKjiqHU9OTnbAnHnaCDXXzh3N1bNH8cWhWvZWtGKxOdyLH8up3ycbjVTrLax4biuv3jLNq7nrVruTH7+2ixMNRjLiI/n3jVM8SinvDbvdjtJh5feXjOGi8Rk8+O4BShuNVDSbAc8aA2nVStLiIolQKU6lr+rY7xhPvEOPUZNKlkJBVkIU2UlR5CS6FrQ5iVHkJOlIi4v06HiUJFcN18kmI4erDXx5uI4tx5uwN0ts+aqEJ78qISshivkjU0iLiyRRF0H8qUV1os4V2TJa7RTXfV9SUlzfRmmjscd6aCVOlkbWoFTA/SsvZ8JQ/5tl5Q+K5uZpGezeUkxTh5Jrnt/Kmtumkxrbd1ZQm831PqlxkJMYyeu39S64ZXQaNSM1LSgiqtDpdGzVW7j55R3oNCrGZsUzMSeBwpwECnMTSI+LRKFQYOywc6yujaO1bRTVtnGsro3DNQZaTa4vtgYVdkUEuugott65gITo3u1PPhWJGE3fUTubw0lli5l3dlXy5o5yIux2UMC1L+1h0rAarpqSw/T8ZNLiPBNF4IpUNxmt1BksFJeWUdfQRLsqjnqrmvq2Dtosdowddtdvq512i/2MLIxYrZpFY9IZLdmoLCpn8dgMliw5czFeZ7Bw2+qd7K/Uc92/t/L//KxvTE9Pd4vu5Kx8Vr21l43Frj4MS8dl8KPZ+WQlRJESq/X73B6oetKKigpOnDiBUqnkp9dezN7XD3OkxsCPX9vFW3fM7NIzw1s6178CfHOsgbv/s9udxQSuc1K0Vk1UhAqdRoU2Qkm7xU6z0YrB4nLqNButNButHG8wsr30zC78UREq0uK0RGnUREUo0Z1yPug0roylmUOTuWhcBnq9nj179pCbmxsw0S1JEq2trojvLa8fwiAdd7+uQacER3KMyzHa3mGn1WR1C1O92dbjOU1mbFYcL940lcbGRg4dOoRGowmI6K7Rm3nkv9tZAEgqDVdO9yyjLjLi+34YvSFJEnbn97W4gLtG98O91fz1fVeAq7axxa/XEWh2nmzmr2uPsa20uUenQXOHkgwVfLmvjDvy8wPyPdy4cSObN29mypQpHjdoczolihpc1/6iqmY+POGKYmfGRxIXFYE2QoVWrTz14/puLRqdxiWFWfznP67339MxmJ7QeVTmiNz+W6YSbrwW3T2d7JuamgbcbDxPeOihh1i1apX7f4PBQE6Of40H+guB7pQLkBQfy0kgWungkwM1WF5xoI1Q0mx0RUjk31bH9964CJWC8wrSuHxyNvNHpvTYyGf79u1s2+bqkrh8+fKQCW6bzYbVavX6+D5/dBoLR6Wx7kgdD79/kDdun9Htd6e53Yzx1MIkOTmRF26a6tdiR0a2V65zWj4xiwvHZaA327A7ndgdrguj3eHE5nA1rkiM1pAcrQnI8weCkSNHBmW/KqXC3a26O1pNVm58cTv7K/Vc89xWXr1lOhNyEvrcryRJ/M/7B9lyoolojYoXbpricYS0N6qqqnj55ZdJSUnhrrvuYu3P5nKyyYjebMdgORVpsNjdEQeNWklGfBQZ8ZGkx0eSHhdJgi4i6E1IFAqFW7hNHpzEDTPz0JttbCiq5/ODtXxzrIGqVjP/2Vbu9b6jIlQMTtaRnagjp7NjICmKtf8tp7mpkWgpcOOApheOITIyiu0bqyipb+ea57by+u0zehXe9QYLt7y6l7mn/n/5xoleRQzlrKpfLB3LR+Uq3t5ZSXuHne2lzV0ER2qsFm2E8pTT5UwGxWi4bFI2V07OZnjaJR4/vzdEqJTkD4rm54tHcvusbP72uCt93apQsamkiU0lTads0TI+O56xWfGMy4pnfHY8MVo1pY1Gjje0c7y+neMNrr9LG410nGr0uVBTTI5Kz3fWwRQ7ek8X1WlUnDcqjYvHZzB3RAqRESrefNPlRE9K6j6CnRYXyZu3z+T+t/fy6YFaHvjvfkoa2vnl4gKfslIyMjLYt28fh4+X88AmB43tHWjVSn63bAwrpuYE9LsXqH3V1NSgVCqZMGEC6anJPHfDZJY99R37K/X8+r2DPHbleJ+fq/N86Td3lPOr9w7icErMHJLMP66ZSFK0plfng83hdEf4m4yu/gOVLWbKm1ylL+XNJqr1ZpeTtKnn7/3r28v514YSbp/osidQ3cvr2yz8/YtDaOwuB5eZCCIjlFhsTjrsTqpOTSjwh4NVBq56dgu/mekSMbIDwx9sDif3rtmDZGkHLWSmBT4VW6FQEKHq/rO9dnouVQ3NmHYVYTUb+aaojnkFffe96Qu73U57ezsxMTFeR3APVet57IujbDja4L4tVqtmeFoMI9JiGZbq+p0UreHF1yrB0sZHu06wtTWaP18+/ow+Qd5iMpmwWCw4nU4cTomtJ5pYf6Qeh9OJTutqaNe5wV19WwevbS2jvamOiyJBg4MlY9L50ex8puYl9vmdlfsHBWo0JcC1116LWq0O6D7PRjw+MuX0IIVCwcqVK7u8sQ6Hg/379wdlXEKgGTRoECqVirq6ui6319XVdak7ktFqtWftQSQv8AIpuuXo6ryhcewugvWn5oB3x4TseC6fnM3F4zPdY5N6orGxkS+++AKAhQsXMmbMmIDZ3Bs7d+7kk08+YfTo0Vx55ZVeP/53y0azqaSRbaXNvLu7imWFmVS1mDnZZKSsyURpo5G9xeVMBOwoef7mWX2+F57SXedijVrZpwg0mUzsO1xMbGwsQ4YMCYgt/YV9+/bR1NTEyJEjex3vk6DT8Nqt07n5pR3sKmvhun9v4+WbpzIlr/cU1Ge+OcGbOytQK5zcFF/Mey/tYsj99/v9HZObCMkLWbVKybBU79One0KSJMrKyiguLmbhwoUBWdRbrVYaGhpITk5m+cQslk/Mwmx18G1xA3srWl1ps6dSZltN3//WRigZdmqc0fDUWIaluaYGZCVE9SiGDqSl0tzUSH19vUfzuj0hNTWV81NTGTHGyIrntnK8wegS3rfNOGORJUkS1XoLN76wjeNNZmZFKVHhJCnSu/dRPifHRev47cXDeHjpaI43tLO3otX1U97K0bo26tu+L8NJjdW6ok9psYxIj6UgPZZRGXE+dyH3BbvVZY9Go+Hre8/jrZ0VfHGolpL6dhrbO/iqqJ6verkWdEahcAn1KGUUWPXMyI1h2bARpMVFEhelJkYbQbRWRWykmmitmhitmmiN+oxjQ55N3pPoBojSqHjqmkn8LeUYT35VwrPfnOBEg5Enri4kupsa6N4YlOoSDmUVVTR2DGJEWgxPXTvJp/KUUDFt2jRGjBjh7leSk6TjqWsnccML23hndyVjs+K4eVa+T/uWm0k2tuj5yzsHALhsYhZ/vHy8R420IlSurKfU2Eg6OjT87W//Jj4+nv+77Ta3qLKeErdN7R3u2nCzzVUnbrY6qG/r4PXt5RTVtvGHz+u4JBIM7Z6ltveEscPO8xtP8Ny3J1DZjFygjSBSpeDT+xYwPC0Wk9VOU7urL0JTewdNRisGs43YSPWphmMaEk41HEvQnWo41s35trzJxLX/3srJJhN//6aJSbgcGP7yly+OsrOshQKtkriERNJSg1P/3BurLhjH/+76EKVC4v7Xt7P6jnmMzvSvJr6+vp7nn3+e2NhYVq1axcEqPW/trCAhKoLRmfGMyXQ10ez8Xpc2Gvnr2mN8tM/Ve0SlVHDVlBzumDuEwcm6bj+X39yxgjd3VlDydRmHjjaw6Ilv+cPysVw03vcMKzkA9l2pnof+3/puyyy7IzPStVYcpFPy2A2TPX4++ToTSG0TrI7xZxseX1XkxiCSJBEbG9slJVmj0TBjxgxuu+22wFsYYDQaDZMnT2b9+vUsX74ccM3yXL9+Pffcc094jQsxV1xxBRaLJaB1HbLQy45V8derJlDWJDduiyApWtOlE6sn9d7gOuY+/vhjnE4nw4cPD6lzR26OIndh9pbsRB0/OW84f/q8iAff3c8v3tl/RtpSvMJMqjaBqfmDyE0OXLbI6ZFuT2loaOD9998nKSmJe++9N2D2+EJHRwcNDQ0oFIqAzMA9dOgQxcXFxMfH97m/uMgIVv9oGre8soOtJ5q58cXtvHDT1DM68zudEodrDHx5qJZ/fFUCwP9cPI66745gt9sxGAx+i+5WP2d094Xdbuf111/HarVSUFAQkGyeqqoqVq9e3eU4itKoWDwmncVjznRwgu9ps6mpqRw+fJj6es+EnTcMTo7mjdtncM0p4X3Z05sZmhJD62l1jPL3OjM+khh1FGaT0b2Y8pTT+2yolApGpMUyIi2Wq06lPputDg5V67E7JXf0JdyYOjVRy0nScf+ikdy/aCQmq50jNQYOVOrZX6XnYJWekvp2nJKrlGhoSjRDU2JcP6nRDBkUQ1ZiFBEqJV9+6WTLllrm5Mex6LzhXtkjSZK7T0ZfI/GUSgX3LxrJ0JQYfvHOftYeruPKZ7bwm4tHMz0/qc/j0eZw8sWhWp77uhSlLYNmp47rpuXwPxeP6TcZQ71xejfwWcMG8asLR/GHT47wh0+OUJAe59M0Eo08HcJhQ4WTu88dwc/OH+HT97u1tZWOjg7a2tq6rFc0ale2Rf6gnq+bd80fytNfH+etzUcBMJnM3PryDh5YUuBV3weLzcHbOyv4+/oStyiakJPO5RfMZ2peottxodOo0SWpvW4kezq5yTreumMm1/97GxVNJiZFQqvev55CXx6q5blTo0jvu3KBe2JLqFGpVMTHxbrq4a0mfvTyDt67+xyPynB6Qs4C0Ebp+Pnb+3hnd+UZ4yLjItWMzoxjTGY8xg47b++qdJ+3L56QyarzR/R6LAEkJMRzx8J4zh03mJ+9tZeDVQbuWbOHtYfr+O3FY7w6Hx+pMfDu7koq91WQDmwra6PREUWCLsI1aSdWS/uphnZGqwNTh6usRpLgovEZnD8sjmf/tR+b1erVtTMYolvgGR6rrZdeegmAvLw8fv7znw/oVPJVq1Zx0003MWXKFKZNm8YTTzyB0Wj0uWnWQEWpVAa8+2Ln6OoNk7IDss99+/ZRVlaGWq3mwgsvDOmcPnn2ZlNTk8+C4JbZ+Xywt4qiWpeXOjJCSV5yNIOTdad+RzNn+CC/L9Kn48mM3u4I57iw0ykvL2fNmjVkZGRw++23+70/bzvNRmvVvLRyGre/upONxY2sfGk7z984hTGZcXxX0sg3Rxv4trixi2d65alO2M/sj8NsNqPX6/0uhZBFt6/jcvoiIiKCUaNGsW/fPvbv3x8Q0d3Y6Kpn9abbsK/fbfn9DaToLi4uRqlUkp2dfUp4z2TFc1uobDG7R4CdzvDUGP590xQ+fqPIJ9HtSfZRlEbVZ8ZFZ7744gtKS0tZsGBB0Mo14uPjufDCC8+Y8KDTqJk8OInJg7+312S1Y7U7SdD1vjjtPKvbW9rb27HZbCgUCo+/M8snZpGTpOOOV3dyuMbAiue2MjhZx1VTcrh8Ujbp8V0/k4ZTUdT/bCujzuD63GIjB/Ony8f3WLbSX+ipt43MLbPzOVil5/1T00g+vGcW2YmeXw/0Zhs/XrOfYZICtULikQuGcv083489f2Z0J+g0PHThKK6bmslL/9qHSiHxdVEN64/Wc+7IVK6dnsv8kak9probO+z8Z1sZz28speFUhsngZB2/WFzAhePSg7oeyUyI4s07ZnLzcxuhHcxmE/srWhif49noz86UN5m4/+19gOvzDZfglomPj8dgMDA0QcW2Fgs3v7SDt3880+eJDS2nHBL7ay18UVYJwNLxGURrVByqNnCsrg2Dxc7WE81sPfF9qc6CkSn8fPFIr/q2AAxPi+W9u2bx5Ppi/vn1cT7YW81XRfXce+4wbjonr9dmvuVNJv7y5VF3hH2xxgoqmJCXwi/nTmX2sEEeZSrJ1wun04ndbvd4Br2cXh7Imu7i4mKOHDlCbm4uhYWFAdvv2YbXIc7f/va3wbAjpFx99dU0NDTwm9/8htraWgoLC/n88897vAAJPMdXodcbKpWKqKgoZs2aFTTR0ROJiS4Ptt1uR6/X+/T8GrWSN2+fSUlDG9mJOlJjPW8s5A/yZ2G1WrHb7R5nNJgCOPrHX2QbAnU8+TJTNUqj4vkbp3DXf3bzVVE9N7+8wzU+rZMXXadRcc7QZM4fncYVk12CNS4ujrq6uoBMPPBn0ekp48aNY9++fRw6dIglS5agUvkXpZNFt+y4Ciay6G5oaPBqvF9vfPTRR7S1tXHbbbeRmZlJbrKOD+6ZzdrDrnnPCacav8k/CboId2Rz+fLlKBQKrxwOkiQFdKKEjF6vp66uzn0MBYPY2FimTp3q0baujtsebOfHtUROLY+Pj/fqOJ48OJEP7pnNk+uL+WhfNWVNJv7yxVEe//Io80akcPXUHFLjInl1Sxmf7K9x9yYZFKPl2um5XD8j16Nme+Fm3bp1HD16lCVLljB9+vQz7lcoFDx62XiK69s5VG1g2VOb+PmikVw9NafXOmynU+Kj/dX86bMiqvUWciIjUGNl3hD/UuwDcf7LGRSHUqnE6XSypCCJj4v0rC+qZ31RPRnxkVw9NYerpuS4ezC0mqy8vPkkL206id7sqtvOjI/kx/OHsmJqbtBmTZ9OSqyW1XfM4R+Pb0aBxK0vfMczP5rNpFzPhXd5k4lbV++gzWJnUm4CD17Q+zSVUCA7vm+emsbxzR0U1bZx13928+LKqV6VxjidEu/uqeLdzw8yEjA61UwenMjDS0cxsdN7ZLU7Ka5v41C1gcPVBgwWG9dMy2WqFw5McE2a2b59OyqVioULF7Jq0UgWFKTyq/cOcqTGwP/7tIjVW8p48IIClo7L6LLWa2rv4MmvSvjPtjJsDgmFApaMSWdocxnGljZumTeCESM8d9BrNBpUKhVarRabzeax6B4yZAgmkymggZW6ujr27NmD0+kUorsXPFqFT5o0ifXr15OYmMjEiWd2o+7M7t27A2ZcMLnnnnt+cOnkp/Phhx+iUqlYsGBBwL58Op0OjUbj8ZffE8aNG8eQIUMCWnvuKUqlkqSkJBobG2lqavJZ9MfrIrpEezpjtVqJiAh8k6vIyEiWLl1KdHS0V/uWF7n9IdIdSCeOzWZzR828nakaGaHimesnc+/ru/nikKsfxKiMOOaOGMS8ESlMHpx4hmdbfo5AiO5gR7oB8vPziYmJob29nZKSEr+jonJJRijm6iYmJrqdSm1tbX47JyRJcpdldM7qSol1iau+8KUUwm63u2fZB/JcF2jHVajw57uvVqsZOXKkTxl5WQlR/PHy8fzm4tF8sr+Gt3dWsv1kMxuONnRptAQwMTeBm2bmccG4dLRqFRaLhWPHjuFwOBg1apTXzx0KamtrOXrUlWo9dGjPXaujNCqeu3EKK1/cTnF9O7967wD/2VbG75aN6Vao7DzZzP9+coR9Fa2A632cM3UO6XFav89bgSivUSgU6HQ62tvbeXjJMH62NIbXt5Xzzu5KavQWnlhXzD/WF7NgZKortXtHBUaraxrPkEHR/Hj+UJYXZnUR22vXrqWyspKZM2dSUBA8IZsUoyU2Joa29nbsHRZu+Pc2HrtyAkvG9h1pX3e4jlVv7cVgsTMoRstT104Cp4M/P/4YiYmJrFy5MqDrNU8pKCggOTmZ4cPzeXFEDFc/u5WNxY1c+cwW/nrVhC7jbXtiX0UrD79/kANVeqZFmEENc0Zlc/s1M894XzRqJWMy472OaJ+OxWJh69atxMTEsHDhQgAm5iby8b2zeWd3JY99cZTKFjP3rNnDi7ml/HrpaEZnxPHCdyd45psT7u79c0ek8OCSAkZnxvHkk5sx4v15X6FQ8PDDD3v9Gi6//HKvH9MXnbuXC3rGI9F9ySWXuD3vch20YGAjSRJ79uwBYN68eQHbb2ZmZpcZ6IEinOUMycnJNDY20tjY2OsixVdefPFFWlpauPbaawM6516hUDBlyhSvH9efRLcsGGw2m1fR+u6QoyUajcYnUaNRK/nXdZPZXtrM0JToPjuWBkp0S5Lktj2YolupVDJ27Fi2bt3K/v37/RbdvqSX+4pSqeSee+4hNjY2IFFuuZMshO7co1KpuOOOO+jo6AjoItifNG1PaWhowGg0kpSU5LVDqyf8Ed1ZWVmsWLHCv+fXqLlySg5XTsnhREM7b++q5J1dlbSabFw0IYOV5+QxPjuhy2MqKyt5/fXXSU5O7rei+9tvvwVg7NixfX43sxKi+PSnc1i9pYwn1h3jULWBK5/ZwsUTMnnoggIyE6IobzLxp8+L+ORADQDRGhV3LRjGLbPzA1bTHqjz3+23345Wq3U7uR++aDQ/XzySLw7V8vr2craeaO7S/HV0Rhx3LxjGkrHp3Ub4a2pqKC8vZ9KkSX7Z5Ql33XUnDoWKktf28F1JI3f+ZzczhyTzPxeN7rYJmd3h5PG1x3j6a9cYs0m5CfzzuklkxEdRV1eH2WxGkqSwCG5wHX8y2cAzN0zmnjW72VvRyoX/2MivLhzF9dMHd9s8s81i47EvjrJ6axmS5Oo0PjktCksDjM9PC2omodwwzGg0dsmqkpuwXTQ+g+e/LeWZb46zu7yVy5/eTHxUhDtbYmxWHA9dMIpZw77/7qWnpxMZGTmgy3bltZoQ3b3j0Qq2c0r52ZBeLvi+FgQCG1UJ1MnO4XDwxhtvMHny5KB6kD2hc113oJEb/vgykixYBHp+uz9ERrrmEUuShNlsdnfE9QVv67m7Q6VUeNxUSI7K+Cu67XY7kydPRq/X+/X6PWH8+PFs3bqVo0ePYrFYfD432Gw290I5FOnlENjUeznKrdVqfXL0lJeXU1FRQUZGhscTAJRKZbcTNPwlGCU/p7Njxw527NjBnDlzOPfccwOyz0GDBnHxxRcH/Zj3hCEpMfxySQEPLBqJU5JQ95D+Kn9+TU1NWK3WgNZMBoK6ujqOHDkCwNy5c/vY2kWESskts/NZXpjJY18e5Y0dFXy0r5p1h+s4d1Qqaw/VYXU4USrg6qk5/Oz8EQFPsZeb4vkrurs7liIjVFxSmMUlhVkcb2jnje3l1OgtXD7JNcK0tzWNL+VKviJfj/990xSe/KqY5zeWsuVEE0uf3MjVU3JYtej7972+zcJPXt/jrl2+eVYeD10wyh2l96Szf6iZNyKFL+6byy/+u5/vShr5zQeHWHu4jj9fMd7dYE2SJD47WMsjHx1y91FYXpjJr5eO5tN33+BkQ/C7aMvrNHlNcvq6TadR89OFw7lmWg6Pf3mMt3ZVoDfbyE6M4oHFI7l4fOYZjgRfJuP4ipxNFYzMSgiuc/dswOvVREVFBQqFguxsV5Os7du3s2bNGkaPHh2QRkeC0CB7o9RqdUC7lweKzZs3U1JSQnV1Nfn5+WHtsjh48GBMJhO5uX2nlXqLwWBwN7UIRhSzpqaGpqYm0tPTPY449qdIt0KhICoqCpPJhMlk8msBHoq66M4kJSWRmZnpd6Q3IiKCCy64IEBW9U56ejopKSnYbDZaWlrIyPCt2Y7soIqKiuoXx5G3dJda7g3FxcV89913TJs2Lexj90IhuoPhqNPpdD5HEC0WC1pt4HtnKJUKlPS8z5iYGHeJRl1dXUAaEgaSjRs3AjBmzBhSUrwbFZUco+XRy8Zz3fTBPPLRIXacbOGT/a7o9uxhg/j10lGMyujq0DSZTDQ0NKBWq/2aPjFo0CBsNlvQHXhDU2L49dLRHm3bOQMpUNkdnhAZoeKBxQVcMy2XP35WxMf7a9yOkLsWDGNCdgKr3tpLfVsH0RoVf75iAkvHdz2P9wfR7XQ6aW1txWg0ur8nmQlRrP7RNF7dWsajnx1hY3Eji/72Lf97yVgmD07ktx8eco8ezEvW8Yfl45g93HV9HTlyJAkJCV4f194iNyA2mUy0t7f3eI1IjYvkT1eM50ez8zla18biMWm9NlfzlbVr11JdXc28efPIy8vrc/u6ujqee+45kpKSAlpiK9LLPcNrtXXttddy++23c8MNN1BbW8vChQsZO3Ys//nPf6itreU3v/lNMOwUBBj5ixGMOun333+fxsZGli1b5lPX5paWFncK3KJFi8I+1mDEiBGMGDEiKPvetWsX4BL2wXB+bNq0iUOHDrFo0SKPxd/s2bMZPXq027EWbuQLnL8e1PHjx5OXl+dOGw42OTk5A2KMYmcUCgU33HADMTExfgmW6OhoFi9ejMPhCNm0gZaWFr766ivsdjtXX321X/vyV3TL59XOGUV90dTUxOHDh0lMTOySeukvoRDd/clRJ0kSTzzxBJIkcccdd4RcWGRkZFBcXExNTU2/Et0NDQ0cOnQIgDlz5vi8n7FZ8bx1x0w+2l/DFwdruWJyzxHhoqIiPvroI4YPH861117r83NeeumlPj+2M4cOHaKkpIThw4czerRn4ronzGYzdrurPjcUorukpIS9e/eSkZHBrFmubvJPXTuJlec0878fH2ZfpZ6/fHHUvf2ItBievn4yQ7upje4PorutrY0nn3wSpVLJww8/7D5+lEoFN52Tx+zhg1j11j72VbRy35t7USsV2J0SESoFd84byl0LhnUpX5gxY0bIbI+JiXGL7r4aMI9Mj/VqNJ231NXVcfLkSY+bl1lPjReTTp+n5icivdwzvF7lHzx4kGnTpgHw1ltvMW7cODZt2sSXX37Jj3/8YyG6BwjBFN21tbXU1dXR1tbmteiWJIlPP/0Uu91OXl4e48ePD7h9/QW73e4W3fJ3KtD4suDOycnpV4vFGTNmYLVa/c4EUKlUfc7s7Y+0t7ejVCqJiooKiYANRDpvbGxsSBdB4IpAHDx40D1twB8nVqBEtzcLkLq6Or766itycnICLrp1Ol1QG1EGqyTl5MmTtLW1MXToUI8Fvdlsdjs7wpGanp6eTnFxMbW1tSF/7t5obW0lOjqa3Nxcvye1KBQKlk3IZNmEzF63k1N95RnK4aaqqoq9e/cSFRXlt+iWU8t1Ol1IsgX1ej2HDh3CarUya9Ys9+1T8pJ4765ZfLCvij99dpRag4VLJ2bxf5eORafp3q7+ILpjY2NRKBQ4nU6MRuMZaeFDU2J458czefrr4/x9fTF2p8S0/CT+36VjGZYa3pIT+boQiOO6sbGRF154gYSEBO644w6vHy8HpTx18AZrRrd8fbFarTgcDr+nn5yteH2msNls7g9r3bp1LFu2DHB1IqypqQmsdYKgEUzR7U9k5ciRI5SUlKBSqVi6dGlIZ3L3hsPhoLm5mdjY2IC9ZwcPHsRkMhEXFxe0unX54jDQOhd3ZvLkyeE2wS/8raH6+uuv2bVrF/PmzWP+/PkBtKx37HY7BoOhX9X99UZcXBxarZaOjg6ampr8Ehb5+fksW7bMZ9Hmi+j2ZEa3L2RlZfHAAw8EdJ+nI4vuQEe6P/74Y5qamrjppps8Sp2E7+t/Y2Njw9IkSq7r7m/roeHDh/PTn/40pJEoWUi1tbX5vA+Hw4FSqQzIWkB2CgWi7jTU5Uryuag7oadUKrh0YjYXjM2gvNnE8NTeM5X6g+hWKpXExMTQ1taGwWDothZbrVJy73nDWTI2ncpWM/NHdJ9RYbfb3aneofjOB9KZZDabsVgsPn8vfRXdge43ERUVxU9/+lOioqIC0sz0bMVr0T1mzBieeeYZli5dytq1a/nf//1fAKqrq0PWMEfgP/1VdO/cuROAmTNnhqTrsae88sorVFRUcMUVVzBmzJiA7HPHjh0ATJ06NWgnKW8/C6fTyYEDB9DpdAwdOvSsOnmuW7cOhULB1KlTQ1aD9//Zu++4qM7sf+CfO4WBofdeBcWCig1L7F1jSUwvmh4TY3rZ8t3NZve3m+xms7upmk2Mxl3TE5OI0cTYuygiKoiANOmdKcC0+/tj9t6AUqbfKef9evFSmPYAlzv3PM95zvnss89QWlqK2267DWlpaRY9h6Mv7gBjIbBPP/0U/v7+eOyxx8y64D127Bj0ej0mTpzo0DZ/DMMgIiICVVVVaGhosCroDgsLs+r8Y0nQbY8e3Y7CnV9svdItl8vR3Nxs1nsJF1AIldXC1UFoaGhwuhUfqVTq0IkILlC8ttKzOY4dO4YjR44gKyvL6iJ9tkyB1ev18Pf3t2tHiZ64n+VAExjeUjGGRg48UciyLCIiIiAWiwWfUA0ICOCD7piY/rMm0iL9kTbA99XQ0IAPPvgA/v7+ePbZZ+0x1F7mz5+P+fPn26T4rbWTreYG3VwNIVu/zzAM47C/BVdmdtD917/+FTfddBNef/11rFmzBmPGjAFg7PlsrxRZYnujR4/G0KFD7bK/1dK+sFqtFpWVlQDAH1fOIjQ0FFVVVTatYH7rrbciJyfHru1GuDcFLl12MF1dXfj2228BwKL+j/agUqnQ2toKmUxmVZGUnJwcaDQahx5bLMtCp9PxgbMlbNGj1lwRERHQarVobGxEfX29yVW1u7q6cOjQIXR3dyMsLMzhbZPCw8P5oFtI1qx0u1rQrdfr+Qs5ewTdgHnvJUKv4gUFBeGmm25CVFSUU0xa6nQ6XLlyBampqQ4fT89Kz2q12qLK0i0tLdBoNDaZvLBlz/oRI0ZgxIgRNt8b25/+WlWZi2EY3H333bYcmsUCAgJQXV1t1fsj8MuKs70rl3NsuW3F2gUwZ0kvJ6YxO+ieNWsWmpqa0NHR0Wsm+ZFHHnGKIirENFwFRnuwdKVbJBLh9ttvR1VVldNlTXAXcLYMuoOCgjB//nybPV9fzP1dcPeTyWROs0Jz9uxZ7N27F2PGjMHKlSsteo7u7m4+MHBkpVlre3WzLMsH3Y6cRfb29sbQoUNRWFiI/Px8k4Pu06dP8wG3EK3+uBoSjY2NVj1Paamxt21MTIxFgaQzpZcDwFdffYWmpibcfPPNFhW3HAjLsliyZAnUarXNx27JewmXXi5U0M0wjFPVIikoKMD27duRkJCA+++/36GvLRKJ4OvrC5VKBaVSaVFQxP0+bZG5YMv0co6jtsD5+vry7TNVKpVTtNKzlrXvjxxra3AISaig2x7tDE+cOIGGhgZMmjTJLu0v3YFF1R/EYjF0Oh2OHDkCwFiq39T9VsT9WRp0i8VipKWlWZyGa09cqmlTU5PVz8WyrEPfqAHTV7qdqQoxhxuLNRdK3Ey6t7e3Q3vnWntRoVar+Qq5jlzpBozZMIWFhbhw4QLmzZs36MqKVqvFiRMnABgr4AtRj4FLKbd2pXvXrl1m7yXuKSAgAPfee69ZF1L2TC9vbGxEQ0ODRcUtByORSDBx4kSbPifHmpVuVyyaaA+nTp0CAAwZMkSQ1/fz84NKpYJCobDoQtyWmQv2CLodhZvAUCqVUCgUFgfd1qyS2xr3/mjNnn/A8SvdbW1tOHnyJEQikdULJ7YIukUikckZF0FBQUhOTrb5+wBg7FZQUVGBlJQUCrr7YXbQrVKpsH79emzdupVPTRaLxVi9ejXefvttp7pYJ/3LyclBQ0MDRo0ahcTERJs+t1wuh5eXl9Oc2G2BW3lvbm62Omjet28fGhoaMGPGDKt6l5oiMDAQN954o8kzwM4YdNsiJZALeh25yt3z9SwNurlVbn9/f4dnHqSlpcHHxwcKhQLl5eWD9pvOy8uDSqVCYGCgTatvmyM8PBwikQhSqdSq/bTWrpxIpVKz+3PbM+3PFhNXQrBk3CkpKfDx8bHLRaWplEolLly4AI1GgxkzZgg2jurqalRXV0MsFgtWkHLKlCnQarUWbQ3SarV8QGbroNva9/GPP/4YBoMBy5Ytc1j9GX9/f6hUKqv+jn/44QcUFhZi9uzZmDBhgg1HZ77ExESbXAc5eqW7q6sLJ06cgFwut1nQbel5PzMzE5mZmSYfy2PHjjW5vZi5qG3Y4MwOup999lkcPHgQO3bs4NsWHDlyBE8++SSee+45bNiwweaDJLZXUlKCy5cvIyoqyuZB96hRo5CRkWHWY1QqFY4fP44hQ4YgOTnZpuOxhZCQEDAMg+7u7j7bW5hKq9XizJkz6OzsRGZmpo1HeT0vLy+zLrbsVYXYGrZc6Xb0ajH3etYG3UIUKBGLxRgxYgTOnDmD/Pz8AYNIvV6PY8eOAQCmTp0q2NYEX19f/OY3v7Hq9XU6HX/R4Mh0xXnz5mHSpEl2SYu2Z69uhUKB5uZmBAQE2HzslozbkRX++6NWq/Hjjz/Cy8sL06dPF6wLB7fKPXLkSMFSb62pocGllstkMpvUCwgICMDTTz9t9XOxLIuqqiro9XqHtAvjrF69GjKZzKrjqaWlBWq12qHj7k9sbKxNFh64lW5HHePc9Z9arbY6c8Df3x8xMTEWZ+Y4S4cf4JfVeleb3HUks//qvv76a3z11Ve93tiWLFkCHx8f3HbbbRR0uwh7Vi+35CRQWlqKo0ePorS01KJehfYmkUgQFBSE1tZWNDU1WRx0nz9/Hp2dnQgMDMTQoUNtPErr2asKsTXcYaW7vb3dopWV4OBgTJo0SbCqoKNHj8aZM2fQ1NQ04PgvXLjA9wF2xGTSQKwN+LnjjOuNbqn8/HwoFAqMHj3apFTQkJAQu+1DtmUBqWuVlJTg+++/R2pqqs0LNCUkJGD58uWCV1k2V1hYGCQSCTQaDVpaWgSpUcKttgNw2SK3Pfdz2yK4EIlENpl4VavV0Ov1ABzbC94W12tCFxq0B26l21Hp5XK53Gb767OyspCVlWXD0QnHklomnsbsoFutVvfZiiUiIsKlewF7Gu6PwlmCqytXrgCA2SmZjjR+/HjodDqLAzeWZfmVh0mTJjks/f7q1atoa2tDfHz8oBcczphe3nOl29JZZSGD7piYGAQEBECn05ndricmJmbAVir2Fh8fjyFDhmD58uUDXvTGxMRg9OjRiIiIEKQ3si1xF3DchZWlDh8+jKamJsTGxgpe9MieK932zI4xdyKCSxv28fERdAVIJBIhMjIS1dXVqK2tFSToPnPmDAwGg81WEy3V2dmJ+vp6iEQiJCQkmPVYmUyGoUOHOl2AyGVO+fn5OU3BUVP07KThLD/TlpYWdHR0IDY21uL3jmHDhiEoKMiq7ibm4AoRcwUChTy/KxQK7Ny5EwBwxx13DHr/jz/+GHV1dbjppptsvvBDQffgzA66p0yZgpdffhlbt27tlUrwyiuvYMqUKTYfILEPe650GwwGfPrpp1Cr1Xw61EBYluWDbqGKvZiC205hqYqKCtTX10MqlTp0NXDPnj2orKzEqlWrBg26ucDJmarH95wY6urqsuji/sYbb8SMGTMcWkQNMGZIPPzwww59TVvi2sv0DGDq6uquK5ISHh6Om266ydHD61NFRQV++uknBAQE4Pbbbzf78bbaH2juBcjJkyfBMAwyMjLs1nrLHml/zpQdk5ubi59//hljx47FihUrBB1LVFQUqqurUVdXJ0iNg+rqagDCr3JfuXIFX331FeLj4/HAAw+Y9dikpCSbF+k9duwYGhsbMXny5D4XkEwh1CRuVVUVTpw4geDgYMybN8/sx3OZA15eXk5T6Xvz5s1QKpV4+OGHLZ5gnjx5so1HNTiuQKCpRWrthWVZFBUV8cXUBpts7OzsRFdXl10WfWhP9+DMDrrffPNNLFy4EHFxcfxenXPnzsHb2xs//vijzQdI7MOeQbdIJEJFRQW0Wi3UavWgQXdTUxMUCgUkEonZM+Gu5OTJkwCMga0jL1C5N1dTVrkiIyMtvhCxF7FYjFmzZsHLy8viVQWxWOyS1YwbGhrg5+cn6Mpdz9ctKCjAl19+icmTJ2P+/PlOWSxRLBajpqbG4n30ttofaG7QvXfvXmi1Wr6AnS35+vpCLpfbZR8nF8jb45zGTciq1WqMGDFi0L9/LnXW0cFQX7iJqbq6OkFe/84770RVVZWgq9zAL+nX3N+V0C5duoSqqiqkpaVZHXQ7ukaIWq1GQUGBxcFpz9RyZ9kLHBAQAKVSiY6ODkGzuszl5+eH+vp6q4/rjz76CAqFArfccotFf6vc9bXBYDApm45rnWqPgp20p3twZr8Djxo1CsXFxdi2bRsuXboEwHhyv/vuu51ippsMTq/X83949gi6AePKSnt7O9Rq9aDBDtcTNyEhwSmKe/THYDCgtbUV7e3tZqfBt7W1oaioCAAcvn+HW+USekbWGjNnzhR6CFZhWRYGg8GsSQOWZbFp0yZoNBqsW7fOYRVyB8JdtJ04cQLNzc0YP348CgsLMW3aNIel9g2GG4dSqYRarTY7MyItLQ0rV660+qLUnKBbr9dDq9X2epwtZWRkmF3c0lT2DLoBYNu2bWBZFomJiYMG00L36O4pOjoaAFBbW+vQNpEchmGcYhKb22erUCjM/jl0dXVZXTjsWrZoG8alaDs6rZh7PUtbbDnjfu6AgACrJkl1Oh0UCgX8/PwcurWJO66tDbrb2tqgUCgsnsDumb3X3d096M/Anl0yhg0bhqeeeopiwQFYFOHI5XKXTpn0dNwfHeCYoHswrrCfGzCeXN955x0wDIPf/va3ZgVQvr6+WLJkCerq6hwenJizn/PSpUsQiURITEy0y0lZCF1dXdi1axcCAwMxe/Zsh1/8HjhwAEePHsXkyZMxd+5ckx/X1dXFT445ekWlPzfccAOCg4Px7bffori4GMXFxQCMb/xLliwReHRGMpkMgYGBaG9vR2Njo9ndGXx9fa2quNxzHIBpQXfPc7Kjt0BYy55BN8Mw/N5JtVo9aNDtTEFFREQEGIaBWq22quOFuZRKJaRSqdOcv7nvW6fTQaPRmDwug8GA119/HVKpFE888YTNfn622GohkUjg7+/v8AKXPQM9S+qb+Pv7IyUlBXFxcfYYnkWsbavZ0NCADz74AH5+fnjuuedsObQBzZ07F3PnzrU6I8ralmEMw0Amk6G7uxvd3d2D/p1w7zX2eJ+RyWROc95xVhYF3UVFRXj77bdRWFgIABg+fDieeOIJpKen23RwxD58fHzwwgsv2G1fB2B6oMeyLJqamgA4935uwPiG5eXlBY1Gg9bWVrNWHqVSqWA9Mc1JL9+xYwfUajUee+wxQfvcXqujowPt7e0IDAw0O3W0vb0d+fn5kMvlmDNnjp1G2D+JRMLPxpuDaxfm6+vrVMXJRo4ciaCgIHz22WdQKpVgGAZTp04Veli9REZGor29HQ0NDTZviWgqc1a6uQshqVTqUoWZAPu3GewZdA+kZ5EoZ9hKIpVK8fDDDyM0NNShEyl79+5FQUEBFi9ebLd+vObw8vLi3zcVCoXJF+Xt7e18yqwt9x/bIgV29uzZmD17tq2GZDIuoGJZFmq12uyJiFGjRglSX2Ag3Pu5pav33Eqzoya1OLbIcrBVhlPPoHuw1+Oq7lNwLAyzI66vv/4ao0aNwpkzZzBmzBiMGTMGubm5yMjIwNdff22PMRIb41YP7LkaYGrQzTAM1q9fj0cffdTp9hJfi2EYvsAYN1HgCkxNL2dZ1u6popb6+eef8dFHH/EtcMzBXYgLtc+zZ9swcwjZo3swsbGxePjhhzF69GgsWbLE6cbIZZM0NDSY9bjS0lIcO3bMJn/f3EXUYBdCPe9jrwshnU6Hjz/+GBs3buSzJ2xl6tSpmD17tt22P5j6XsL9vThTkajo6GiHBtxqtRoXLlyARqNxqmKYluzrtnW7MI4t0suFIhKJ+GPb0iDV2Vj6/shxdLswW7JV1in3vjHYe03P2+3xXqPRaLBnzx7s2LEDLMva/Pndgdkr3S+++CJ+/etf449//GOvr7/88st48cUXsWrVKpsNjrguc/rCMgxzXTVkZxUaGora2lo0Nzeb/JijR4/Cy8sLo0aNEiSYNXWlu6uriz9ROlPLMMC6CyWhKs1yuNRwc9PnnDnoBow/T2epWH4tLkvD3KD73LlzOH/+PLq6uqzOihg5ciRiYmJM+v1Zm2I4GLFYjKqqKuj1enR2dto0EBw9erTNnqsvpgbdXGq5rYM0V6FUKrF9+3bodDpER0c7VQqxn58fmpubzQoU7bVVwJ6V/B3B39+fb1VlDoPBAK1W63QrnNamlwu10t3W1oYTJ05AJBJhwYIFFj0Hd96XSqVWZZ3KZDKIRCJ+1bw/LMsiOTkZer3eLlmuIpEIx44dAwDMnz/fbttXXZnZQXdtbS1Wr1593dfvuecevP766zYZFLGvq1ev4ty5c4iOjsa4cePs8hpyuRwymWzQ2S4hCsxYw9yVbp1Oh8OHD6O7uxsRERGCpLpGRETgxhtvNLlHt0wmc7oUV2v6DDvLSndHR4dZxzt3jDnLfm5XEhkZieDgYLMmLHq2LrRFfYng4GCT05y5FQh7XaRw2U0KhQJqtdqljilT//YDAgIwadIkp1rxUiqVOHToEJRKJW677Ta7vU5JSQm+/fZbqFQqSCQSzJs3z6neVydNmoRRo0aZVZ255ySKLVm70q1UKrFp0yYEBQVh9erVDv85+/v7o6Ghwezxt7a24p133kFwcDDWr1/vNMdHWFgYZsyYYfHv2VbdJsyl0Whw8uRJ+Pj4WB10W3vev++++yASiQb9nfr6+vYZv9mKRCLht9N1dXVR0N0Hs4PuWbNm4fDhw0hNTe319SNHjmD69Ok2Gxixn/r6epw+fRrDhg2zW9A9Y8aMQStOd3Z2YuPGjUhKSsLy5cudLtDrCxd019fXm3T/kpISdHd3w9/fX7BKsn5+fhg/fvyg93OmfrvXssVKt1CBhr+/P0QiEXQ6HZqamkwqpGcwGPjuEMnJyfYeotuJjIzEk08+adZjGhsb+aDF0auE8fHxWLNmjV3PgT2DblvRarWorq6GXC63Ww0IU4PuqKgoLF682C5jsJREIkFOTg4A47nLHufW/fv349ChQwCME6y33HKL03QS4IwYMcLsx/RML7el1NRUPP300xb/Ltrb29HW1ga9Xi9I4HrLLbdAKpWa/dpcdp6Xl5fTBNyAMRC0Zn88l17u6KCbm9zr7OyEXq+36NzNMAyio6OtHrszXTt7e3tDqVSis7PTabP0hGR20L18+XK89NJLOHPmDN+Q/sSJE/jyyy/xyiuv4Pvvv+91X+J87Nmjm2PKSb28vBwdHR2oqalxqpPGQJKSkiASiVBbW4va2lq+LUx/uD3II0eOdKo3ur5wF7XOlloOWJcSKHR6uUQiQWpqKi5fvozz58+bnLa8dOlSXL58mYJuB+FWuW3VurCzsxMFBQVgWXbQIopyuRxJSUlWv+ZgrwFYli3Sn+bmZnz88cfw9fXF888/b7Pn7Sk9PR3BwcFOX/OjL97e3ggKCkJbWxvq6urs8rfMBaUTJ07EggULnLrtpjns1f7N2grLQr+fWLo1xJkq+9uSUHu6fXx8wDAMWJaFSqWy6HiIjo7GI488YofRCYcLuk0pIOqJzD47P/744wCA9957D++9916ftwHGoIurkkeci733D5qK68/t7K3CevL398e8efMQEREx6D50jUbD9+a2V49cU1VUVKCjowNDhgzpN6h25qDbnBoB1xJ6pRsAxo4dC4ZhEB8fb9L9RSIRRowYYdEKEfkFy7LQ6/UmBSJlZWUAbHc+UqlUyM7Ohre3t2CdC3qyR9DtiMKLMTExiImJGfR+9fX1CAgIcLpMnejoaLS1taG2ttZmQXfP/vNjxoxBeHi4WanbjtbV1YW6ujp+T6kpUlNT4e/vb7cCfZbitisJvUXD3K15zhx0t7e3o6WlBaGhoWYHr8OGDUNQUJDDszsYhoGfnx8UCgWUSqVgkzAAcP78eRQUFCA1NXXArMbCwkLs2LEDycnJuPXWW+0yFu78S0F338wOug0Ggz3GQRyI+2Ow58VJR0cHduzYAZVKhYceeqjPog2u0p/7WlOmTDHpfkVFRdDpdAgJCRl0Rdzevv/+e7S0tOC+++7rd195UlISVq5c6TSVf3uyJmB4/PHH0dHRIehez+HDh2P48OGCvb4nOnv2LPbs2YNhw4ZhxYoVA97XYDCgoqICgO3S+Xu2DBvsArm8vByNjY2IjY01KcC0BPc3ZGnBor7Yu12YqQwGA/7973/DYDDg6aefFjwg6ikqKgqFhYWoqqqyyfMVFxcjOzsbjz76KORyORiGceqAGwBqamrwn//8B+Hh4b0WZwYyb948u4xFr9dj79696OzsxJIlS8xuxyj0Srder8fOnTtx5coVrF271uSMRWcOunft2oWioiIsXbrU7AlKLuNWCL6+vlAoFIN2hrG35uZmXLp0adBrnM7OTnR2dg5acM0atmjJ587s06SZODVHpJd7eXmhrKwMtbW12Lp163XtIFpbW9Ha2gqRSGT3tEp7GmgSyplSy00JWoODgzFmzJjr6jU4g8DAQEyfPt2iuhFisRjBwcFO1et6IOXl5Thw4IBZFfLJ9WQyGTo7O02qYN7c3AydTgdvb2+bdVLoeX4drJXLhQsX8MMPP+Dy5cs2ee2+REVF2fyc74iVbq1Wi5KSEhQUFPR7n46ODhgMBojFYpv0z7WlYcOGATBOwlr7N63T6bBr1y50dHQgLy/PBqNzDC4YMLfitj2IRCKcPHkSeXl5LrldietE0N7ezi9cmMKZg25r24YJxdrj+ujRo3jzzTdx+PBhq8Zhbsswe2a59pxsJtejoNsDOSLo9vb2xsqVK+Hl5YWKigps3LgRhYWF/O3cm0VcXJzgae6W0Gq1+Pnnn/H222/3eaLjVrYYhhE8tRz4pciI0DOylpLL5ZgzZw4mTZok9FCs0traiiNHjgy49SY3NxcHDx7kCzARy3B7gBsaGgbtohAeHo6XXnqJrwJrC1wlV2DwCxBHXAyNGTMGL774IubPn2+z53RE8UWVSoVt27bhm2++6ff32LPStT1a4VgjMjISQ4cOBcuyOHr0qFXPdezYMbS2tppcHNNZ9Cw6pdPpBr0/tyJnDwzDuHRhTgD8xHhJSYlJ91epVHwLSmdL1wd+CbrN7T2u0+nQ2toKjUZjj2ENytqgu6OjA21tbVaP39Sgm3sdW7aMvNa8efPw1FNPYeLEiXZ7DVfmHhU3iFm4Nxp7l/MfNWoUYmJi8PXXX6OmpgZffPEFxo0bh0WLFrnkfu6eJBIJioqK0NbWhtzc3OtSzhmGwR133GG3irXmMmWlu6ysDFqtFjExMU7VdscalZWVOHPmDOLj4wXfV8uyLDZv3gyFQoHw8HB+BawnrVbLVy0fNWqUo4foVoKDgyEWi6HT6fj9ggORSqU2L9Ylk8n49ikDsXfLMMA+FW4dsdLNnbv0ej20Wm2fF4z2ai9lKzfccANqamqsqvDe1tbGr4gtWLDApSarfXx8IBKJYDAYoFKpBg1YT5w4gUOHDmHSpEl2qUjv4+MDlUplUdDt6+sLf39/wYPuEydOoKSkxKS93SzLYvLkyWhra3PK93ZLe3WXl5dj27ZtCA4ONrtbhS3MnTsXc+fOtXh7ja0mW51ppVvIve2uwLmmhIlD3H333Vi/fr1DqiKHhITggQcewLRp0wAYV/F27NiByMhIREZGYsiQIXYfgz0wDMPvJTp58mS/aebOEHADv1y4DrTSfeDAAXz66af83lZno9frUVlZifPnz5v8mLq6OuTn55uVhmcvDMNg5MiRANDv93D58mVotVoEBQU5/T5NZycSifjWXydPnhRkDKam2jm6uKWtarM4Yk+3VCrlMwb6mzR05tRZwNgS7umnn7Zq/+nu3buh0+mQlJTkchNyXNEpwLTVTK5yub0u4K1Z6b799tvx7LPPCnp+TkxMhEQigUKhMGn7jJ+fHxYsWGDXXvHWsDTorqysBABB27H6+flZnF1jq6xT7n3DGTKqyMAo6PZAPj4+CAkJcdgfnlgsxrx583DvvfciLCwMs2bNwsyZM7F27VqH98O1pdGjR0Mul6O9vb1X6nxXV5fT7U3i0ssHWul25urlANDU1ITNmzdjx44dJndG4H4PzjL7Onr0aADG/Z19zUpfvHgRgHPUAXAHM2fOBACcOXOGD8yudeXKFWzYsMHqfXV9MTXodtTF0Pnz5/Hmm28iOzvbJs83cuRIzJ49u9/ijLbAMMygmTr26ulsS9ZkGhQXF6OoqAgikQiLFy92yXMDt9felFRce2cuWNMNwxlIJBJ+0cTUFHNn1jPoHmwrUE9CB93WsnXQ7Qzp5fX19fjpp59w4sQJu72GKzM56O7o6DDpg5D+pKSk4PHHH3fa1QhzSaVSft/K8ePH+TeLc+fO4V//+pfNLmxtwZT0cmcPuiMiIuDj4wOtVova2lqTHmPvFRNzRUVFISwsDDqdrtdEDWB8w+QKabnaSpazSk5ORmpqKgwGQ79BdWlpKRoaGvoNyq2xYMEC3HvvvYNeFDoivRwwnrPa2tpQU1Njk+dLTU3FjBkzTG6FZ6nBzl/OvtLNMRgMuHjxInJzc816HHf/rKwsq1LUhWTO/ld7/z6tWel2FlyW4GBBd1VVFUpKSpy6hS/3/qzVak0uwKXX61FdXQ1AuKC7vb0du3fvxo8//mjR42113ueC7sGqkgcFBSEmJsauWyNaW1tx/PhxvpAw6c3kPd1BQUEDzq5y+0qc+Q+bGAtP/Pjjj/D29sasWbPsss9vIK44Qz+QiRMn4siRI6iurkZVVRUSEhL41UpnKlgSHx+PZcuW9XsRw7Ks07T/6Q/DMEhISEBRUREqKioGzZLQ6/V8Wrm9gwJTcYX19u/fj/z8fIwdO5a/7dKlS9Dr9QgLC7P53mJPNm/ePMTExGDq1Kl93s7157bHdhtTLwYdlV7OpcQ2NDRAo9HYdcXDlgYLuidMmIDGxkanD0hLSkrw1VdfwdvbGyNHjjT5933rrbfizJkzfKaMKxo3bhxSU1MH7VbS1dXFvxfZe6Xb3AJWhYWF+Omnn5CamoqlS5faY2gmS0tLw+nTpwdNcz9y5AguX76M2bNnY8aMGQ4anXkkEgm/N9rUa9La2lrodDr4+PgMWq/DXjQaDU6ePAlvb28sXLjQ7Mfb6rwfFhaG3/zmN/w2nP5we9DticuqpEXYvpkcdO/fv5//P8uyWLJkCT788EPad+hiOjs7cfr0aTAMgzlz5gg9HJfn6+uL0aNH4+zZszhx4gQCAgL4fqzc/l1nEBISMuCqAddLGHCefeh9SUxM5INurk5AfyorK9Hd3Q25XO5U5yku6C4rK4NCoeDTLjs7OyGTySi13Ma4+hF96ezs5LMmHFHjoj933HEHurq67J6R4e/vj4CAAHR0dKCmpsbqdo2VlZWQyWQICwuz6wTuYEG3q1TKTUtLQ2hoKJqbm3H69OlBz2EckUjkMt9jf4YOHWrS/bjsJF9fX7tNQk2cOBGTJ082+++tra0NbW1tTrFCHhISgnXr1g14n+7ubr5obXp6uiOGZbEbbrjBrPv3TC0X6v2Sy97o6uqCTqcbNOi9FtdtwdqFDpFI5DRdG7iJT65/OReEEyOTjxBubxxHLBZj8uTJLlt92lP13ENCF/a2MWXKFEgkEkyePJlf5U5KSnK6frED4S5mvby8zH7jcCRu72hlZSUMBsOAbzRcqnZaWprTvCEBxjfa+Ph41NfXo66ujj9OJk+ejAkTJlC2kB2xLAuVSsVfLHGr3OHh4Xb5e62vr8fVq1cREhIyYFBvbfBrjtjYWHR0dKC6utqq12VZFlu2bAHLsnjmmWfsOmGQmZmJlJQUl64BAhgzXW644QZ89913OHHiBLKysgY83164cAHp6elOfU62NUdsFbD0uYXu0W2u4uJi6PV6hIaGIjw8XOjh2BS3uCFkFpu3t7dZVfmvtXr1ajuNTDgymQwhISFoaWlBXV2dyxZLthfnuRIlDuGIHt2eJjw8HEuWLEFISAi/j8WZVrkB4wXylStXcP78+T73/Th7ajknKioKXl5e6O7uHrRqq1arhVgsNnmFxZFWrlyJ5557Dmlpab2+LpFIqLKonTQ3N2PTpk3YunUrX73bnqnlgPGiNzs7G/n5+XZ5fktwWR/cfkhLdXd3Oyw7JiUlBZmZmQgPD0d3dzfOnDnDn8fa2tpQW1s7aBEhZ5GRkYHAwEAolUrk5eX1e7/Lly/j66+/xvvvv+8WE3Hd3d0oKysbdA9yUFAQJkyY4JQrs87Qo/taOp0O5eXlfRYg4+qGDB8+3OkXWQwGA8rLy03eCzxlyhTMmjXruvdQR+pZld/SXt22snPnTnz++ecDpnW/++67ePPNN9Hc3GzXsURHRwMwdo8hvXnO9CkBQEG3PTU1NaGurg4ikQgjRowQeji9MAyDzz77DFqtFuvXr79upj84OBgrV650qhXhvohEIiQkJKCkpAQVFRWIiorq97433ngjFixY4JTf07U//+bmZoSEhDj9hZEr8/X1RUtLCzo7O3Hu3DlkZmbye/7tFXSbUr1cpVKhoKAAvr6+DjlvcKvFV69etep5uIk6iUQCqVRq9bhMdfbsWfz444/Yt28fJkyYAKVSidzcXIwfPx433nijw8ZhKbFYjClTpmD37t04evQoxo0b1+sc1dHRgVOnTuH06dMAjJk6jq69Yg9NTU3YunUr/P398eyzz/Z7v9jYWIdsBzp79iyKioowYcIEpKammvQYZ+uGodfr8cYbb6Crqwvr1q3rVUdGq9WiuLgYgDHodnbl5eX4z3/+A7lcjhEjRgz6vp2QkOAUVcv9/PzQ0dFhdtBtSn91cxQVFUGhUGD69On9Hp9tbW3Q6XR2P59ERUXh4sWLFHT3waqrUbpAdD0UdNsP1986ODjYKVeMB+rV7evrizFjxiAjI8PRwzLbzJkz8eCDD2LChAmD3tfZ0+VZlkV9fT3effddvPvuu2YX9iGm8/b2xvTp0wEYa5R0dXUhPj4egYGBdkvvNiXobmlpwQ8//IA9e/bYZQzXio6ORnR0NIYOHWrVCioXdDu6BoSPjw8CAwOhVqtx6NAhvrK3s1cu72ncuHGQy+Voa2vjV/bq6uqwfft2vPnmmzh69Ci6u7sRHR193dY+V8Vt31CpVGa1hbKXq1evoqioCOXl5SY/xtlWusViMWJiYgBcX8W8pKQEWq0WQUFB/MqjM0tMTIRMJoNarbZ6QtCRuJXuvq6rBpKfn4833ngDP/30k03GMVjbML1eD51OB8C+LcMA8Ish9ugI4upMvhq9+eabe33e1dWFtWvXXrdJ/ptvvrHNyIhdcBdKFHTbXmhoKKKiorBkyRKhh9InX19ftLe3X1eMiGVZdHV1OXUBtZ5M2depVqudcuKjp6amJnzxxRdobGwEYAwmXKWatKuaOHEiTp48ifb2duTk5GDlypV2fT1Tgm5HtQvjeHl54ZFHHrH6eYRqMchNDhYWFuL48eN8mvxAWS/ORiqVYvLkySgqKoK/vz9aW1vx/vvv87cnJCRgypQpGDZsmNssbnDXigaDAWq1ut8CS/X19QgMDLT730NsbCxyc3NN3mah1+v51UxnWekGjG37rly5gpKSEkyePJn/OrcIkJ6e7hLHELcV7Pz587h06dKAq9gXLlyAWCxGUlKS4Nct3HGsUCjMelxjYyOUSuWgbb5Mxf299Bd095zQt/cWtsTERDz11FNOMznlTEwOuq/94d1zzz02HwyxP1rptp+kpCQ8+uijQg+jX32tdLMsi3379uH8+fNYs2aN3Vq0OFJnZyfeeOMNRERE4P7773faQDYwMJBPVwScrw6AO5JIJJgzZw62b9+Oo0ePYvz48XYNGk0Juh3VLszWhFrpBozbTEaOHImRI0fi6tWrUCgUglaft8S0adNwww038AFRamoqZDIZpkyZ4lTdFmxFLBZDLpdDrVZDqVT2GXTrdDps3LgRAPD888/btfIx9zOuqakZtCgnYDzek5OT0djY6FQVmVNTU/HTTz+hoqICWq2W3+qxcOFCZGZmOu37X1+GDRuG8+fPo6ioCPPnz+93smD//v1oaWnBXXfdJeiebgCYM2cO5syZY/b7CDfZbqs2h4OtdHNfF4vFdk8vl0qlCAoKsutruCqTg+7NmzfbcxzEQbKysjBq1CinTrkl9sFdKPRc6T5w4ACOHDkCwLinylWC7rKyMly4cAEpKSnXBaslJSUwGAzQ6/VOfcEhlUoxYsQIvpgSBd2OkZGRgePHj6Ourg4HDx7E4sWL7fZa5qx0Ozro1ul0aGlpsfiij5sw4tIrheKqFc2vDfLuvPNOp6w/YUt+fn5Qq9VQKBR9tvHj2oV5eXnZPYMiPDwcUqkUGo0Gzc3Ng1b39vPzw7333guDweBUK8dhYWF8G8Dy8nI+CGUYpt9Wic4qNTUVYrEYLS0taGpq6vN3olQq+bRlZ/jbt/T8xxWCtVVVeVODbleb3HU37n2GJ9fhyvk7U3oUcYxre90eOHAAhw4dAvDLrLirqKysRG5uLi5dunTdbVyrMGesWn6tcePGgWEYDB061KVazLkyhmEwd+5cAMY0Ra6SuT30TPnrbx+ro9PLAWNw8+qrr+LDDz+0+PsfMmQIZs+e7XRFI12VuwfcwC/7uvsrOsUF3Y4oKikSifj90OZU8ne23xPDMHwhOG5ftzPsmbeETCbjM1b6em8HfmkVFhERIXhquaU0Gg3a2toAOC7o5tLLHRV0l5eX44svvsC+ffsc8nqugpY7CfEQPYPuQ4cO4eDBgwCABQsW9NoL5gq4ft0VFRW9qoDq9Xr+wsMVgu74+HisX7/eqdIVPUFqaipuueUW+Pr62vUi2sfHB7feeuuAAbUQ6eWBgYGQSCTQaDRobGy0aEWMK8hGiKkGa6/ErWA6KuMqJiYGFRUVqK6uxtixY/u9n16vh1qtdtqJ0dTUVOTm5qKkpAR6vR7vvPMO4uPjsWjRIqevbXKt9PR0lJSU9FtMrbKyEgCconI5YMz4OXbsGACYnDXV1NQEwHhNZqv3/sGCbpFIhOjoaIctuKnVahQWFiI6Ohpz5sxxyGu6Agq6PczJkyehVCoxevRom82wEdeQlpYGuVyOy5cvY//+/QCAefPmYcqUKQKPzHyxsbEQi8VQKBRobW3lKxdXVVWhq6sLcrncKVLPTOEqKf3uxhHp/GKxeNCVYCHS/kQiEWJjY1FWVoarV6+6XBoqcU2jR49GfHw84uPj+7zd0UF3bGwsJBLJoFX8KysrsXXrViQnJ2P16tUOGZs5UlJSMHfuXKSlpaG8vBxtbW3QaDQuWbtnxIgRA07ocSvdzhJ063Q6nDp1Cl5eXiYH3Vxqua32cwPA7NmzMWfOnH63jsbGxtqkgKapuMKWDQ0N0Ov1btH20BYo6PYw586dQ21tLRISEijo9jCRkZEICQnBqVOnABgLgEybNk3gUVlGKpUiNjYWlZWVqKio4INuLrU8LS3N6dIACenLhAkTkJyc7PCWVzExMSgrK0N1dTXGjx9v1mObmprQ0NCAuLg42qpETJaSkjLg7T3Tyx0hPT0dv/rVrwYNCMrKygAIX7+gPzKZDDfccAMAICcnB4Dxe3PF90AfH59+08Y1Gg1qa2sBoN+JG0fjVqo1Gk2vQnYD8fb2RmJiok2/B2erXxMcHAyZTIbu7m40NTXRxO7/UNDtYah6uWeTSqVYvXo1CgsLzb7QdjYJCQl80M3tR+8ZdBPiDEpKStDe3o7U1NQ+W6iEh4cLMgHKZYKYs5+Vc/HiRRw4cAAZGRnXtRMlxFKODrpNXX3jgm5nr5BvMBj4vdDDhw8XeDTW67l1DABqa2thMBgQEBDgNO2oZDIZxGIx31LOlCyN9PR0pKenO2B0wuEK+VVWVqKuro6C7v9xmWmwP//5z5g6dSrkcnm/pegrKyuxdOlSyOVyRERE4IUXXuCbwXMOHDiAcePGQSaTITU1FVu2bLH/4J0I9ekmcrnc5QNuoPe+bsD4Bj1r1ixkZGTwhWUIEdqBAweQnZ2Nuro6oYfSC9cyqaGhod99gP2pqakBAL4QFSGm0Gq1KCsrw759+/hCUj1NnDgR48ePR1hYmMPHNlChQ25iypmDboPBgJ07d0KlUkEikTj1WAej0+nw3Xff4Z///Gevzg8JCQl48skncfPNNztNBXmGYfgMiJ7tWB2trq4O3333Xb+Fy44fP44333yTr+XjCFyKOZedQFxopVuj0eDWW2/FlClTsGnTputu1+v1WLp0KaKionDs2DHU1tZi9erVkEql+Mtf/gLAOFu5dOlSrF27Ftu2bcPevXvx0EMPITo6GgsXLnT0t+RwBoNBkEq5hNhDfHw8GIaBSCRCd3c3ZDIZRo0ahVGjRgk9NEJ4g7UNKygogF6vR0pKikML6vn7+/Othmpra5GUlGTyYynoJpZQq9XYunUrAODw4cOIjY3FyJEjMWLECAQGBiIrK8vhYyoqKsK+ffsQHR2NlStXXnd7ZWUlWJZFcHCwU/ceZhgGubm5AIDQ0FCX3kMrkUhQVVUFhUKBkpIS/j2dYRgEBwc7XR0UPz8/tLe391sgsCeDwQCdTmfzdHClUom8vDxERUX1WbhMoVCgra3N7AlWa3D78p1twllILhN0v/LKKwDQ78r0Tz/9hIKCAvz888+IjIzE2LFj8ac//QkvvfQS/vCHP8DLywsbN25EcnIy3njjDQDG9JsjR47gn//8p0cE3c3NzWBZFlKplKolE5cnk8nw/PPPu1x1VuJZBgu69+7di5aWFtx///0OPy9PnjyZDyhMpVAooFQqwTAMv5JBiCkCAwNx8803Izc3F+Xl5aiurkZ1dTV++uknxMfHY9y4cQNWEbcHsViMhoaG67IiOVeuXAEAsyalhMAwDGbMmIEjR45g6dKlQg/HasOGDcOxY8dQVFTk9BPpg1Xl76m2thYffvghYmNj8dBDD9lsDKa2DHPk3u+oqCiIxWKXrC1gLy4TdA/m+PHjyMjI6LVvYOHChXjsscdw8eJFZGZm4vjx45g3b16vxy1cuBBPP/10v8/b3d3d6yDu6Oiw+dgdpb6+HoCxoBb9ERB3wAXcnZ2dyMnJwdChQykQIE6FuxjqL+gWomUYx5LOBVyqbXh4uNMV7yHOLyMjAxkZGVAqlSgoKMDFixdRWVmJqqoqREdHOzzo5rZZtLS0oLOz87oiXuXl5QCcO7WcM2vWLMyYMcOlV7k56enpOHbsGIqLi6HX69HU1IQDBw5gyJAhmDBhgtDD64WbLDUlvbyxsREATCq4Zg5n69MNGGONX//6125xPNqK2wTdfW3U5z7nUhv6u09HR0efJ1sAePXVV/lVdlfHtSmgoIS4m+LiYuzfvx8XLlzA448/LvRwCOENttItRMswa1BqObEFPz8/TJo0CZMmTUJHRwcKCwv5Oh2O5OPjg5CQELS0tKCmpgZDhgzpdfvUqVNx5coVlwi6GYZxmwAnLi4Ovr6+UKlUKC8vR1NTEy5dugStVut0QfecOXMwZ84ck7LuuOtwWxfP7Dm5e20BOkCY9xl3Oh5tRdDlzl/96ldgGGbAD64So1B+/etfo729nf/gegS6otmzZ+PJJ5902TZRhFzLYDBg27Zt2L59OwCqWk6cz0BBt06n43sEC1Vno6WlBfn5+SYXAaKgm9haQEAAsrKyBFsQ4Fa7+6rkn5GRgRUrVjhtuzB3xTAMhg0bBgC4dOmS0/Xn7snX1xe+vr4mFXdramoCYNse3cAvwbTBYOiz7zwXdAuVndRfoUJPI+hK93PPPYf77rtvwPsM1teRExUVxfcf5nDp1NyJPCoqiv9az/sEBAT02xdQJpO5zArEYLgiFIS4C5FIhPb2dv5z7k2aEGcxUNDdMxVQqIuhL774AvX19bj11lsxYsSIQe+/dOlSVFdX8y3HCHF1MTExOH/+vEXt84j9pKenIzc3F0VFRXzQ5oxBtznstdLd8/2ju7sbEknv8E6ojKorV67gp59+QnBwMG6//XaHvrYzEjTotmV/0ilTpuDPf/4zGhoa+BmkPXv2ICAggL+QmDJlCn744Ydej9uzZ49F+9oIIc6hZ0oXBQLE2QwZMgS33nprn5WPuUDcy8tLsDobsbGxqK+vR3V1tUlBtzNWDybEGj1Xunum5p4+fRoxMTGIioqiOjgCSE5ORkxMDEJCQnDhwgWIRCL+d+VsLl68iDNnzmDEiBH9pr9rNBp+kcDWQbdIJIKXlxc0Gg26u7uvK8oZGBgIjUbj8MKzEokE9fX1UKvVDn1dZ+Uye7orKyvR0tKCyspK6PV65OXlAQBSU1Ph5+eHBQsWYMSIEbj33nvxt7/9DXV1dfi///s/rFu3jp/ZWbt2Ld555x28+OKLeOCBB7Bv3z588cUX2Llzp4DfmWNUVFTg1KlTSElJcYsezYRw5syZgy1btmDy5Ml0YUScTkhICEJCQvq8zRn2c8fFxSE3N5dW+YjHioqKQnh4OKKjo6HT6SCVStHR0YGdO3eCYRi8+OKL1GZVABKJBA8//DDy8/Nx4cIFREdH27wAma20tbWhrKwMUqm036CbK6Lm6+trl+B3/fr18PLy6vNndMcdd9j89UzBZRorFAqoVCqP75zkMkH373//e3z88cf855mZmQCA/fv3Y9asWRCLxcjOzsZjjz2GKVOmwNfXF2vWrMEf//hH/jHJycnYuXMnnnnmGbz55puIi4vDhx9+6BHtwqqqqlBQUACRSERBN3ErCQkJeOGFF9xmGwhxT3q9ns+sCgwMBACnSLnjVo5qampgMBgGnLjKz8+HQqHA0KFDbb5SQ4hQpFLpdQU4y8rKABh7DVPALazKykoAQHx8vMAj6R+3Fba8vLzf86hUKkVmZqbdJg561h3gCtCNHDnSLq9lKi8vL4SGhqK5uRm1tbVITU0VdDxCc5mge8uWLf326OYkJiZelz5+rVmzZuHs2bM2HJlr4Cq4U+Vy4o76q8lAiLM4ceIETp48idzcXMycOROTJ0+Gj48P0tPTBR1XWFgYn5ZYW1s7YPrm2bNnUV5eDh8fHwq6iVvjgm5XqFru7uRyOQIDA5066I6MjIS3tze6urpQXV3d51gjIiKwfPlyu4+FZVl8++23KCkpQUlJCRYvXixoe8eoqCg0Nzejrq7O44NuysX0EBR0E0KIcFJTU5GQkACtVouff/4Z77//Pt8DWEgikYiv+j/QhDTLsqitrQUAp91XSYg1DAYDWltbwbIsBd1ORCqVIiwszKkDNpFIxB8r3LEjFJZl+e4SeXl5eP/99/HWW2/h/fffh8FgcPh4uLiDi0M8GQXdHkCj0aC5uRkArutTTgghxP4iIyNx3333YcWKFZDL5WhsbMTHH3+M1157jW/DJRRuy9Hly5f7vShrbm7mq+LSKjdxN21tbXjttdewYcMGNDc3o6OjA2Kx2OWrZbuD6dOn45577hF0tdYUgwXdjY2N0Ol0dh+HSCTC7NmzsXr1avj5+aGlpQWtra1obGwUpO5NdHQ0APCTtp6Mgm4PwLUo8PPzo16ThBAiEIZhMHbsWDzxxBN8sZ3u7m7BtzwlJSXhpptuwhNPPNHvRRk3MRAdHU0FC4nbCQgIAMMw0Gq1fPvZuLg4py3cRZwPF3RXVVVBq9X2uq27uxvvvfce/vKXv/TZPtJe41m7di2fIeDv7++Q171WVFQUQkNDERMT4/H9ul1mTzexHKWWE0KI8/Dx8cHSpUsxduxYnDt3DpMmTRJ0PAzDYPTo0QPep2fQTYi7EYlEiImJQXl5OXJycgBQajkxT2hoKEJDQxEcHAy1Ws0XzAR6Vy53ZGE+X19f3HXXXSgsLOyzbaWjxvDEE08I8trOhoJuD6BWqyEWiynoJoQQJxIbG+t0+6NZloVWq70ulZMLup1tvITYChd0jx07FmPHjkVAQIDQQyIuhGEYrFu3ju/z3hMXdAuxNYdhGIwYMcLhr0uuR0G3B5gxYwamTZvmkL0khBBCXFN5eTl27dqFiIgIrFq1iv86y7L8RSNXoIcQd8NNKNXV1SExMVHg0RBX1FfADfyyzdOT62GwLAu1Wu3Rvbop6PYQYrEYYrFY6GEQQghxUjKZDA0NDWhqasLChQv5GiAMw+C5555DfX09QkNDBR4lIfbBBd0NDQ3QarW0n5tYrKOjAz4+Pvwx1NTUBMDYNswTlZeX49NPP0VISAgeffRRoYcjGKqGQgghhBBER0cjNjYWBoPhuuJuEokEsbGx/a7kEOLquHRyg8EgeNsn4ro++eQT/POf/0RpaSn/NU9f6Q4MDIRGo0FDQwP0er3QwxEMBd1urqCgAO+//z4OHz4s9FAIIYQ4Oa6q+pkzZwTp6UqIUBiGwezZsxEaGko1cIjFuAJq3MRNd3c3Ojo6AHjuSndQUBC8vb1hMBj4rUqeiIJuN1dTU4O6ujr+D54QQgjpz8iRI+Hj44P29naUlJQAALZv344dO3agtbVV4NERYl8zZszAE088QUXUiMWu7dfNsizmzJmDCRMmOLRyuTNhGIafyKqoqBB4NMKhoNvNUbswQgghppJKpRg7diwAICcnBzqdDhcuXEBubq6wAyOEEBfABd2NjY1QKBTw9vbG9OnTsXTpUoFHJiyu3eTu3bvx0UcfoaioSOAROR4F3W6Ogm5CCCHm4FLMS0pKUFRUBIPBAB8fH8H6vBJCiKvw8fHhA0yqDfCLKVOmYOTIkRCJRKiqquL3uXsSql7uxpRKJVQqFRiG8dh9JIQQQswTEhKCmTNnIi4ujk8pj4mJoSJqhBBigqSkJNTW1qKsrAxBQUGQy+UICQmBSOS5a53+/v645ZZboFAokJubi8zMTP62wsJC5OTkICgoCL6+vvDz8+v1b1hYmFu8/1DQ7ca4Ve7Q0FBqfUEIIcRks2bNAgB89913AH5JDSSEEDKwlJQUHD9+HGVlZbhy5Qo6Ojpw//33IyEhQeihCc7f3x8zZ87s9bVTp06hvLy838f87ne/o6CbODdKLSeEEGKN2tpaAL/0MCaEEDKwhIQEjBs3DjExMcjOzgbguZXLTbF06VKUl5dDpVL1+lAqlWBZ1m0yBCjodmMSiQShoaG0QkEIIcRsHR0dqK+vB2BMLyeEEDI4Ly8vLFu2DFevXgVgXN311MrlpggLC0NYWJjQw7A7Crrd2OTJkzF58mSwLCv0UAghhLgYkUgEuVyOwMBA+Pv7Cz0cQghxKVyxsPDwcIFHQpwBBd0ewB32QRBCCHEsPz8/rF+/HmKxmN5HCCHEDCzLIi8vDwAF3cSIgm43pdfrIRKJ6EKJEEKIxSglkhBCzGcwGFBVVQXAmG5OiHvsTCfXOXv2LF577TX89NNPQg+FEEIIIYQQjyEWi5GVlQUfHx+MHz9e6OEQJ0Ar3W6qrq4OGo0GYrFY6KEQQgghhBDiURYtWoRFixYJPQziJGil201RuzBCCCGEEEIIER4F3W7IYDDwbV4iIyMFHg0hhBBCCCGEeC4Kut1QS0sLdDodpFIpQkJChB4OIYQQQgghhHgsCrrdEJdaHhkZCZGIfsWEEEIIIYQQIhSKyNxQz6CbEEIIIYQQQohwKOh2Q2FhYUhLS0NiYqLQQyGEEEIIIYQQj0Ytw9zQ2LFjMXbsWKGHQQghhBBCCCEej1a6CSGEEEIIIYQQO6GgmxBCCCGEEEIIsRMKugkhhBBCCCGEEDuhoJsQQgghhBBCCLETCroJIYQQQgghhBA7oaCbEEIIIYQQQgixEwq6CSGEEEIIIYQQO6E+3WZiWRYA0NHRIfBICCGEEEIIIYQIhYsJuRixPxR0m0mhUAAA4uPjBR4JIYQQQgghhBChKRQKBAYG9ns7ww4WlpNeDAYDampq4O/vD4ZhhB5Onzo6OhAfH4+qqioEBAQIPRziROjYIH2h44L0h44N0hc6Lkh/6Ngg/XHXY4NlWSgUCsTExEAk6n/nNq10m0kkEiEuLk7oYZgkICDArQ5qYjt0bJC+0HFB+kPHBukLHRekP3RskP6447Ex0Ao3hwqpEUIIIYQQQgghdkJBNyGEEEIIIYQQYicUdLshmUyGl19+GTKZTOihECdDxwbpCx0XpD90bJC+0HFB+kPHBumPpx8bVEiNEEIIIYQQQgixE1rpJoQQQgghhBBC7ISCbkIIIYQQQgghxE4o6CaEEEIIIYQQQuyEgm5CCCGEEEIIIcROKOgmhBBCCCGEEELshIJuN/Tuu+8iKSkJ3t7eyMrKwqlTp4QeEnGgV199FRMnToS/vz8iIiKwcuVKFBUV9bpPV1cX1q1bh9DQUPj5+WHVqlWor68XaMRECK+99hoYhsHTTz/Nf42OC89VXV2Ne+65B6GhofDx8UFGRgZOnz7N386yLH7/+98jOjoaPj4+mDdvHoqLiwUcMXEEvV6P3/3ud0hOToaPjw+GDBmCP/3pT+jZ+IaODfd36NAhLFu2DDExMWAYBt9++22v2005BlpaWnD33XcjICAAQUFBePDBB6FUKh34XRB7GOjY0Gq1eOmll5CRkQFfX1/ExMRg9erVqKmp6fUcnnJsUNDtZj7//HM8++yzePnll5Gbm4sxY8Zg4cKFaGhoEHpoxEEOHjyIdevW4cSJE9izZw+0Wi0WLFgAlUrF3+eZZ57Bjh078OWXX+LgwYOoqanBzTffLOCoiSPl5OTg/fffx+jRo3t9nY4Lz9Ta2opp06ZBKpVi165dKCgowBtvvIHg4GD+Pn/729/w1ltvYePGjTh58iR8fX2xcOFCdHV1CThyYm9//etfsWHDBrzzzjsoLCzEX//6V/ztb3/D22+/zd+Hjg33p1KpMGbMGLz77rt93m7KMXD33Xfj4sWL2LNnD7Kzs3Ho0CE88sgjjvoWiJ0MdGyo1Wrk5ubid7/7HXJzc/HNN9+gqKgIy5cv73U/jzk2WOJWJk2axK5bt47/XK/XszExMeyrr74q4KiIkBoaGlgA7MGDB1mWZdm2tjZWKpWyX375JX+fwsJCFgB7/PhxoYZJHEShULBpaWnsnj172JkzZ7JPPfUUy7J0XHiyl156ib3hhhv6vd1gMLBRUVHs66+/zn+tra2Nlclk7KeffuqIIRKBLF26lH3ggQd6fe3mm29m7777bpZl6djwRADY7du385+bcgwUFBSwANicnBz+Prt27WIZhmGrq6sdNnZiX9ceG305deoUC4CtqKhgWdazjg1a6XYjGo0GZ86cwbx58/iviUQizJs3D8ePHxdwZERI7e3tAICQkBAAwJkzZ6DVansdJ+np6UhISKDjxAOsW7cOS5cu7fX7B+i48GTff/89JkyYgFtvvRURERHIzMzEBx98wN9eVlaGurq6XsdGYGAgsrKy6Nhwc1OnTsXevXtx+fJlAMC5c+dw5MgRLF68GAAdG8S0Y+D48eMICgrChAkT+PvMmzcPIpEIJ0+edPiYiXDa29vBMAyCgoIAeNaxIRF6AMR2mpqaoNfrERkZ2evrkZGRuHTpkkCjIkIyGAx4+umnMW3aNIwaNQoAUFdXBy8vL/6Ex4mMjERdXZ0AoySO8tlnnyE3Nxc5OTnX3UbHhee6cuUKNmzYgGeffRa/+c1vkJOTgyeffBJeXl5Ys2YN//vv672Fjg339qtf/QodHR1IT0+HWCyGXq/Hn//8Z9x9990AQMcGMekYqKurQ0RERK/bJRIJQkJC6DjxIF1dXXjppZdw5513IiAgAIBnHRsUdBPixtatW4cLFy7gyJEjQg+FCKyqqgpPPfUU9uzZA29vb6GHQ5yIwWDAhAkT8Je//AUAkJmZiQsXLmDjxo1Ys2aNwKMjQvriiy+wbds2fPLJJxg5ciTy8vLw9NNPIyYmho4NQojJtFotbrvtNrAsiw0bNgg9HEFQerkbCQsLg1gsvq7acH19PaKiogQaFRHKE088gezsbOzfvx9xcXH816OioqDRaNDW1tbr/nScuLczZ86goaEB48aNg0QigUQiwcGDB/HWW29BIpEgMjKSjgsPFR0djREjRvT62vDhw1FZWQkA/O+f3ls8zwsvvIBf/epXuOOOO5CRkYF7770XzzzzDF599VUAdGwQ046BqKio6wr66nQ6tLS00HHiAbiAu6KiAnv27OFXuQHPOjYo6HYjXl5eGD9+PPbu3ct/zWAwYO/evZgyZYqAIyOOxLIsnnjiCWzfvh379u1DcnJyr9vHjx8PqVTa6zgpKipCZWUlHSdubO7cuTh//jzy8vL4jwkTJuDuu+/m/0/HhWeaNm3adW0FL1++jMTERABAcnIyoqKieh0bHR0dOHnyJB0bbk6tVkMk6n2pKBaLYTAYANCxQUw7BqZMmYK2tjacOXOGv8++fftgMBiQlZXl8DETx+EC7uLiYvz8888IDQ3tdbtHHRtCV3IjtvXZZ5+xMpmM3bJlC1tQUMA+8sgjbFBQEFtXVyf00IiDPPbYY2xgYCB74MABtra2lv9Qq9X8fdauXcsmJCSw+/btY0+fPs1OmTKFnTJlioCjJkLoWb2cZem48FSnTp1iJRIJ++c//5ktLi5mt23bxsrlcva///0vf5/XXnuNDQoKYr/77js2Pz+fXbFiBZucnMx2dnYKOHJib2vWrGFjY2PZ7OxstqysjP3mm2/YsLAw9sUXX+TvQ8eG+1MoFOzZs2fZs2fPsgDYf/zjH+zZs2f5CtSmHAOLFi1iMzMz2ZMnT7JHjhxh09LS2DvvvFOob4nYyEDHhkajYZcvX87GxcWxeXl5va5Ju7u7+efwlGODgm439Pbbb7MJCQmsl5cXO2nSJPbEiRNCD4k4EIA+PzZv3szfp7Ozk3388cfZ4OBgVi6XszfddBNbW1sr3KCJIK4Nuum48Fw7duxgR40axcpkMjY9PZ3997//3et2g8HA/u53v2MjIyNZmUzGzp07ly0qKhJotMRROjo62KeeeopNSEhgvb292ZSUFPa3v/1trwtmOjbc3/79+/u8rlizZg3LsqYdA83Nzeydd97J+vn5sQEBAez999/PKhQKAb4bYksDHRtlZWX9XpPu37+ffw5POTYYlmVZx62rE0IIIYQQQgghnoP2dBNCCCGEEEIIIXZCQTchhBBCCCGEEGInFHQTQgghhBBCCCF2QkE3IYQQQgghhBBiJxR0E0IIIYQQQgghdkJBNyGEEEIIIYQQYicUdBNCCCGEEEIIIXZCQTchhBBCCCGEEGInFHQTQgghhBBCCCF2QkE3IYQQQgghhBBiJxR0E0IIIYQQQgghdkJBNyGEEEIIIYQQYicUdBNCCCGEEEIIIXZCQTchhBBCCCGEEGInFHQTQgghhBBCCCF2IhF6AK7GYDCgpqYG/v7+YBhG6OEQQgghhBBCCBEAy7JQKBSIiYmBSNT/ejYF3WaqqalBfHy80MMghBBCCCGEEOIEqqqqEBcX1+/tFHSbyd/fH4DxBxsQECDwaAghhBBCCCGECKGjowPx8fF8jNgfCrrNxKWUBwQEUNBNCCGEEEIIIR5usG3HVEiNEEIIIYQQQgixEwq6CSGEEEIIIYQQO6GgmxBCCCGEEEIIsRPa000IIYQQQgghLkCv10Or1Qo9DI8hlUohFoutfh4KugkhhBBCCCHEibEsi7q6OrS1tQk9FI8TFBSEqKioQYulDYSCbkIIIYQQD6XX6wHAJis5hBD74QLuiIgIyOVyqwJAYhqWZaFWq9HQ0AAAiI6Otvi5KOgmhBBCCPFABoMBGzZsgFarxR133GHVBSUhxH70ej0fcIeGhgo9HI/i4+MDAGhoaEBERITFE5RUSI0QQgghxAO1traiubkZHR0dOHXqlNDDIYT0g9vDLZfLBR6JZ+J+7tbspaegmxBCCCHEAzU1NfH/X7p0qYAjIYSYglLKhWGLnzsF3YQQQgghHqi5uRkAMHLkSEgkxh2HLMvi7NmzMBgMQg6NEELcCgXdhBBCCCEeiAu6Q0JC+K/t3bsX33//PT7//HNoNBqhhkYI8RAsy+KRRx5BSEgIGIZBXl6e0EOyCwq6CSGEEEI8UEtLCwAgLCyM/1pMTAwkEgkuX76MzZs3Q6FQmPWcO3bswGuvvYZPPvmEf35CCDl+/DjEYvF1W1l2796NLVu2IDs7G7W1tRg1ahQYhsG3334rzEDthIJuQgghhBAPZDAYwDBMr2rII0aMwJo1ayCXy1FXV4fs7GyTn0+j0SAvLw/d3d0oKSnhq/4CQHFxMQoKCmj1nBAPtWnTJqxfvx6HDh1CTU0N//XS0lJER0dj6tSpiIqK4re62II1hc9sjYJuQgghhBAPdP/99+O3v/3tda3C4uLicPfddwMArly5wvfyHkx1dTUMBgP8/PywfPnyXkH3kSNH8OWXX+Ljjz+23TdACHEJSqUSn3/+OR577DEsXboUW7ZsAQDcd999WL9+PSorK8EwDJKSkpCUlAQAuOmmm/ivcb777juMGzcO3t7eSElJwSuvvAKdTsffzjAMNmzYgOXLl8PX1xd//vOfHfhdDoz6dBNCCCGEeKj+es5GR0dDLpdDrVajuroaCQkJgz5XRUUFACA5ORljx47lv86yLKKjo1FZWYmamhrodDqbrmYR4pFYFtCqhXltqRwwo6L3F198gfT0dAwbNgz33HMPnn76afz617/Gm2++iSFDhuDf//43cnJy+PNRREQENm/ejEWLFvFfO3z4MFavXo233noL06dPR2lpKR555BEAwMsvv8y/1h/+8Ae89tpr+Ne//uVU5xnnGQkhhBBCCHEKDMMgMTERhYWFqKioMCnorqysBIDr7sswDBYuXIgzZ85Ap9Oho6OjV/E2QogFtGrgLzHCvPZvagAvX5PvvmnTJtxzzz0AgEWLFqG9vR0HDx7ErFmz4O/vD7FYjKioqF6PCQoK6vW1V155Bb/61a+wZs0aAEBKSgr+9Kc/4cUXX+wVdN911124//77rfnu7IKCbkIIIYQQD3Ps2DEUFhYiMzMT48aN6/M+mZmZSEhIQFpa2qDPp9frUVVVBeD6oBswBt6BgYFobm5Ge3s7Bd2EeIiioiKcOnUK27dvBwBIJBLcfvvt2LRpE2bNmmXy85w7dw5Hjx7tlTKu1+vR1dUFtVoNuVwOAJgwYYJNx28rFHQTQgghhHiY2tpaXL16Fenp6f3eJy0tzaSAGzAWLMrKykJdXR3Cw8P7vE/PoJsQYiWp3LjiLNRrm2jTpk3Q6XSIifllVZ5lWchkMrzzzjsmP49SqcQrr7yCm2+++brbvL29+f/7+pq+Au9IFHQTQgghhHgYrkd3z8rl1vD29sa8efMGvE9gYCAAUNBNiC0wjFkp3kLQ6XTYunUr3njjDSxYsKDXbStXrsSnn37a5+OkUul1BRzHjRuHoqIipKam2m289kRBNyGEEEKIB2FZ1uSgu6OjA6WlpfDz8zN51bs/ISEhCAkJgVQqtep5CCGuITs7G62trXjwwQf5STfOqlWrsGnTJr5TQk9JSUnYu3cvpk2bBplMhuDgYPz+97/HjTfeiISEBNxyyy0QiUQ4d+4cLly4gP/3//6fo74li1HLMEIIIYQQD6JUKqHRaMAwDIKDgwe878WLF/H9998jJyen3/uwLIuSkhJ0dXUN+Fw33HAD1q9fj6lTp1o0bkKIa9m0aRPmzZt3XcANGIPu06dPo6Oj47rb3njjDezZswfx8fHIzMwEACxcuBDZ2dn46aefMHHiREyePBn//Oc/kZiYaPfvwxZopZsQQghxUzqdDjk5ORgzZgxKSkqgUCgwbdo0oYdFBMatcgcFBQ3aUoe7oK2srITBYIBIdP16TWNjI7Zt2waZTIYXX3yxz/sQQjzPjh07+r1t0qRJYFkWAPD73/++123Lli3DsmXLrnvMwoULsXDhwn6fk3s+Z0RBNyGEEOKGWJZFdnY2n35XU1MDkUiErKwsp+pdShzPnP3cUVFRkMlk6O7uRn19PaKjo6+7D9efOzY2lgJuQgjpA50ZCSGEEDd04sQJnDt3DgzDYO7cuZDL5TAYDKitrRV6aMQJBAUFISwsbND7iUQivgVYeXl5n/fprz/3tQwGAz744AP8/e9/h0qlMm/AhBDiwijoJoQQQtxMaWkp9uzZAwBYsGABUlJSEB8fDwB8L2XiucaPH4+nnnrqumrC/eFSzLkV7Z5YluW/PtjeSpFIhI6ODqhUKqpgTgjxKBR0E0IIIW6kubkZX331FViWxdixY5GVlQUAiIuLAwBcvXpVyOERJ8IwjEn367mv+9o9k21tbVAoFBCJRIiNjR30uahtGCHEE1HQTQghhLiJ7u5ufPbZZ+jq6kJcXByWLl3KB1bcSvfVq1edutgMcT7R0dGQSqXo7Ozk94NzuFXumJgYk1qBUdBNCPFEVEmFEEIIcRP19fVob2+Hv78/brvttl4F02JiYiASiaBQKNDR0dFnCxfi/pqbm/HRRx8hOjoa99xzj0mPEYvFuOeeexAWFga5XN7rNi7oHmw/N4eCbkKIJ6KgmxBCCHETCQkJePDBB6HX6+Hv79/rNqlUisjISNTW1qK2tpaCbg/V3NwMtVoNpVJp1uP6C6pvuOEGxMbGmpRaDlDQTQjxTG6VXv6HP/wBDMP0+khPT+dv7+rqwrp16xAaGgo/Pz+sWrUK9fX1Ao6YEEIIsa3IyEjExMT0edvy5cvx7LPP9npvJJ7FnHZhpggNDcWECRP6bCXWFwq6CSGeyK2CbgAYOXIkP4tfW1uLI0eO8Lc988wz2LFjB7788kscPHgQNTU1uPnmmwUcLSGEEGIb7e3tg+7VjoqKum4FnHgWa4LuI0eO4OOPP0ZjY6PFrx8UFISQkBAEBwdb/ByEEOJq3C7olkgkiIqK4j+4HpTt7e3YtGkT/vGPf2DOnDkYP348Nm/ejGPHjuHEiRMCj5oQQgixXHd3N95880384x//QFdXl9DDIU7MmqD7ypUrKC8v5/t1nzt3Djk5OWatWkdFRWH9+vW45ZZbzH59Qojn+sMf/oDIyEgwDINvv/1W6OGYze2C7uLiYsTExCAlJQV33303KisrAQBnzpyBVqvFvHnz+Pump6cjISEBx48f7/f5uru70dHR0euDEEIIcSZcRXKJRAJvb+8B73vy5Els27YN1dXVDhodcSbWBN3X9us+fvw4fvjhB2pDRwjp13333ddr629oaCgWLVqE/Px8k5+jsLAQr7zyCt5//33U1tZi8eLFdhyxfbhV0J2VlYUtW7Zg9+7d2LBhA8rKyjB9+nQoFArU1dXBy8sLQUFBvR4TGRmJurq6fp/z1VdfRWBgIP/BtVwhhBBCnAUXBHFB0UDKy8tRUlLCP4Z4Do1GA4VCAcD6oLurq4uvi2Nq5fJrUes6QjzDokWL+K2/e/fuhUQiwY033mjy40tLSwEAK1asQFRUFGQymUXj0Gq1Fj3OFtwq6F68eDFuvfVWjB49GgsXLsQPP/yAtrY2fPHFFxY/569//Wu0t7fzH1VVVTYcMSGEEGI9c9o2xcXFAQCtTnqgrq4uJCcnIyoqCj4+PmY/Pi4uDmKxGEqlEnl5eQCAkJAQs+sE/PDDD/j73/+Oc+fOmT0GQojrkclk/NbfsWPH4le/+hWqqqr4+hBVVVW47bbb+JoPK1as4Lex/OEPf8CyZcsAACKRCAzDAAAMBgP++Mc/Ii4uDjKZDGPHjsXu3bv51ywvLwfDMPj8888xc+ZMeHt7Y9u2bQCADz/8EMOHD4e3tzfS09Px3nvv2f1n4NYtw4KCgjB06FCUlJRg/vz50Gg0aGtr67XaXV9fj6ioqH6fQyaTWTybQgghhNibTqfjU8VNWenmgu6qqiqwLMtfwBD3FxAQgNWrV1v8eIlEgtjYWFRWVuLw4cMALFvl1ul0UKlUaGtrs3gshBAjjUbT720ikQgSicSk+zIMA6lUOuh9vby8LBjlL5RKJf773/8iNTUVoaGh0Gq1WLhwIaZMmYLDhw9DIpHg//2//8enoD///PNISkrC/fffj9raWv553nzzTbzxxht4//33kZmZiY8++gjLly/HxYsXkZaWxt/vV7/6Fd544w1kZmbygffvf/97vPPOO8jMzMTZs2fx8MMPw9fXF2vWrLHqexuIWwfdSqUSpaWluPfeezF+/HhIpVLs3bsXq1atAgAUFRWhsrISU6ZMEXikhBBCiGWqq6uh1+vh6+uLkJCQQe8fExMDkUgEpVKJ9vb267ZdETKQxMREVFZWQq1W85+bizvmqG0YIdZ79dVX+70tLS0Nd911F//53//+935TrBMTE3Hffffxn7/55pv833lPL7/8stljzM7Ohp+fHwBApVIhOjoa2dnZEIlE+OSTT2AwGPDhhx/yk8CbN29GUFAQDhw4gAULFvDnjJ4LpX//+9/x0ksv4Y477gAA/PWvf8X+/fvxr3/9C++++y5/v6effrpXt6qXX34Zb7zxBv+15ORkFBQU4P3336eg21TPP/88li1bhsTERNTU1ODll1+GWCzGnXfeicDAQDz44IN49tlnERISgoCAAKxfvx5TpkzB5MmThR46IYS4DZZlUVdXh7CwsF6z5sQ+eu7nNmXVWiqVIioqCjU1Nbh69SoF3R5Er9dDLBZb9RxJSUk4evQoDAYDAMtWurle3VSclhDPMHv2bGzYsAEA0Nraivfeew+LFy/GqVOncO7cOZSUlFy3TaWrq4vfy32tjo4O1NTUYNq0ab2+Pm3atOu2rUyYMIH/v0qlQmlpKR588EE8/PDD/Nd1Oh1/XrIXtwq6r169ijvvvBPNzc0IDw/HDTfcgBMnTiA8PBwA8M9//hMikQirVq1Cd3c3Fi5c6JAcfkII8SQ5OTnYtWsXvy/L0iJLxDTJycno6uri08ZNERcXh5qaGlRVVWHUqFF2HB1xJh999BEUCgVWrVpl0Qo1AD7N86OPPoKvr69F/ba5i1ta6SbEer/+9a/7vU0k6l2+6/nnn+/3vtdO2j711FPWDawHX19fpKam8p9/+OGHCAwMxAcffAClUonx48fz+6174mI4a1+bo1QqAQAffPABsrKyet3P2gnJwbhV0P3ZZ58NeLu3tzfefffdXikHhBDnkZ+fjytXrmD+/Pm9TpJEGFqtFmfPngUATJw40eS9v1z6V0tLCzZv3owpU6Zgzpw5vfaVEduJj483u7NGfHw8zp49y69WEvfHsiyam5vR3d0NuVxu8fOIRCLExcXhpZdeQmtrq0U1AXoG3VRXgBDrmLPH2l73NRfDMBCJROjs7MS4cePw+eefIyIiAgEBASY9PiAgADExMTh69ChmzpzJf/3o0aOYNGlSv4+LjIxETEwMrly5grvvvtvq78McdAVECHEKer0e2dnZ0Gq1uHLlCp544gm7nvBJ/7RaLU6fPo2jR49CpVIBACIiIpCUlGTS4xMSEvDSSy/hxx9/RF5eHo4fP47i4mKsXLkSsbGxdhw5MdXw4cMxYsSI61ZBiPtSqVTo7u4GAItWp6/FVSO2BHdhrdPpoFaraZKVEDfX3d3Nt2hubW3FO++8A6VSiWXLlmHSpEl4/fXXsWLFCr4aeUVFBb755hu8+OKL/WZxvfDCC3j55ZcxZMgQjB07Fps3b0ZeXl6fK+Y9vfLKK3jyyScRGBiIRYsWobu7G6dPn0ZrayueffZZm3/vHAq6CSFOobKyki/ukZmZSQG3QOrq6rBt2zY+BUskEsFgMODcuXMmB92AMbNoxYoVSE9PR3Z2NpqamrBp0ybMnz+filfaUFVVFbRaLeLi4sz6m7F3Gh1xPs3NzQCMRcyEzjoRi8WIj4+HRCIRtG8uIcQxdu/ejejoaACAv78/0tPT8eWXX2LWrFkAgEOHDuGll17CzTffDIVCgdjYWMydO3fAle8nn3wS7e3teO6559DQ0IARI0bg+++/71W5vC8PPfQQ5HI5Xn/9dbzwwgvw9fVFRkYGnn76aVt9u31iWJZl7foKbqajowOBgYFob283OQWC2J9Op4NYLKYUNRe2e/dunDx5EsOGDcPtt99Ov0uB6HQ6vPXWWxCJRJgxYwaCg4OxdetWeHl54fnnnx+0MNqxY8eQlJSE6Oho/neoVquxa9cuXLhwAffccw+GDBniiG/FI3z22WcoKirCvHnzrisoYyqDwUAr3h7gzJkzyM7ORmpqqsPTKgkh1unq6kJZWRmSk5Ph7e0t9HA8zkA/f1NjQ1rpJi5PqVRi48aNEIvFWLJkCYYNGyb0kIiZWJZFUVERAGDMmDF8sKbRaPDtt99i5syZiIyMFHKIbq27uxsymQyAsQ/vPffcg9DQUIjFYrAsi4kTJ2Lo0KGDro42NTVhz549EIlEeP755+Hj4wMAkMvlWLVqFaZOncrPdBPrsSyLyspKAJa1bSopKcHu3bsRHh6O22+/3dbDI06GW+k2pa0cIYQQ26KpbeLyioqKoFKp0NHRgc8++wyff/45tSFxMY2NjWhra4NYLO61Crp3714UFhZiy5YtqK6uFnCE7otlWbzzzjvYuHEjWltbARj3b3MBNsMwWLJkCVJTUwddDb148SIAYMiQIXzA3RMF3LbV2NiIzs5OSKVSi362Xl5eaG5uRlVVFcxNelOpVNi+fTvfrow4v5aWFgBAaGiowCPpjRIuCSGegIJu4vKuXLkCwFgxWSQS4fLly3yxGOIampub4eXlhZSUlF77UmfPno24uDh0dXVh69atdIFvB7W1tVAqlWhtbbV6ywwXdI8YMaLf+zQ3N+OLL77Ap59+atVruTOWZbFv3z5s2rSJD5T6wv09xMXFWbRHOyYmBiKRCCqVCm1tbWY99ueff0Z+fj4+//xzs1+XCCMqKgpJSUkWFz+ztQsXLuDvf/87vvrqK6GHQgghdkfp5cSlGQwGPuhesmQJvLy8UF1d3auvn0KhgL+/v1BDJCYYPnw40tLSoFare33d29sb99xzDz777DOUl5fj888/x7PPPit4ESB3cvnyZQBASkrKgIFbc3MzcnNzERoainHjxl13e0NDAxobGyEWi5Gent7v80gkEhQWFkIkEkGn09Hv8hosyyI7Oxu5ubkAgO+//x5r1qzps8YBl1puaR90iUSC6OhoVFdX4+rVqyZXtNbpdLhw4QIAYPny5Ra9NnE8rmCRs5BIJBZN+BBCiCuilW7i0tRqNaKiouDr64vY2FhERkb2Cghqa2vx5ptv8heIxHlJJJI+V1plMhnuuusu+Pv7o7OzE8XFxQKMzn1xP8/Bqn2Wl5fj2LFjOHHiRJ/poD1Tywcq8hIQEAC5XA6DwcC3DyG/YBgGERERYBgGEokEFRUVOHPmzHX3Y1mWX+m2ZD83h2vFUlVVZfJjioqKoNPp4O/vj6FDh1r82sSz9ezVTQgxDW3HEIYtfu4UdBOX5ufnhzVr1uCZZ57pc79pXl4e9Ho9jhw5IsDoiCk0Gs2gJzOpVIpRo0YBAE2g2JBSqURNTQ2AwYPukSNHQiwWo7Gx8bpgmWVZFBQU8PcbCMMwfK9u7rVJb1lZWXj88ccxb948AMCePXuuq1PR1tYGhUIBkUjUbw9TU3CPvXr1qsmPOXv2LABg7NixfEs5rsUccU4ajcbpWnNxQbdKpYJOpxN4NIQ4N65zyLUZgcQxuJ/7YB1cBkJ5fcQt9JcWO3PmTJw+fRr19fVoampCWFiYg0dGBvPNN9+gsbERS5YsGbCVVEZGBo4fP476+npqcWQjJSUlAIx7PQfbguHt7Y309HRcvHgR586d61W4S6VSQa1WQywWm9Q9IDo6GsXFxRR0/49Op8O+ffswffp0vgBdWFgYQkJCcOHCBVy9ehU7d+7EHXfcwaeZBwUFYe3atWhqarLqIiA+Ph6AsT+7RqMZtNd3W1sbSktLAQCZmZmorKzEt99+i6CgIKxevdricRD7OnPmDH766SeMGzcOy5YtE3o4AAAfHx9IpVJotVq0t7c7XYE3QpyJWCxGUFAQGhoaABi7glBrVftjWRZqtRoNDQ0ICgqyqH4Kh4Ju4rJ0Oh26u7vh6+vb733kcjlSUlJQUlKCgoICzJgxw4EjJIPRarUoLS2FTqcb8PcIGAPDBx98ELGxsSa/0eTl5SElJYVPW+/o6IBUKu2zsrYnMjW1nDNmzBhcvHgR58+fx/z58/k3Hz8/Pzz33HNoaGjgW48NhFa6f6HVavH555+jtLQUNTU1vfZvi0QiLF++HO+//z7kcjn0ej2/B55hGERGRlrdSi8gIAAhISEYMWKESX9X3Cp3cnIygoODwTAM2tra0NraipqaGsTExFg1HmIfXLuwwc6zjsQwDAIDA9HU1ERBNyEm4IogcoE3cZygoCCri1BS0E1c1pUrV/Dpp58iPT19wB6zI0aMQElJCS5evEhBt5MpKyuDTqdDQEDAoMEDwzBmpdE2Nzfju+++g1gsxtNPPw0/Pz8cOHAA586dQ2pqKkaNGoVhw4YNurLnzjIyMiCRSAYsfNbTkCFD4OvrC5VKhdLS0l77eUUikclvSFxg1tjYaNLqqrvSaDT45JNPUFFRAalUipkzZ14X+IaHh+OJJ55AUFCQXcbAMAzWrl1r8mp5VFQU4uPj+doZQUFByMjIQH5+Po4ePYpbb73VLuMk1mlsbATgfD26ewbdhJCBMQyD6OhoREREON12EXcmlUqtWuHmUNBNXBaX4jjYzH16ejqys7P56so9K5sTYRUVFQEAhg0bZlaalF6vh8FgGDBQOHHiBABjoOjn5weWZdHS0gKDwYDLly/j8uXL8PPzw7p16wYs/OXO0tPTTQ64AWNgnZGRgRMnTuDcuXMYOnQoNBoNpFKpWb8/Pz8/BAcHQy6XQ6lUOl0g4CinTp1CRUUFZDIZ7r77bj7V+1rXBtxKpRJ79uxBUlISMjMzrR6HOenpw4cPx/Dhw3vVYZg2bRry8/NRUFCA5uZmWrF0Mh0dHXyhPEsr3dtLbGwsDAYDZR8RYgaxWGyTIJA4FgXdxGVxrcIG2gcMGPeNDRkyBMXFxSgoKMDMmTMdMTwyCJZl+XZVpuwD5hw/fhxHjhzBjBkzkJWV1ed9Ojs7kZeXBwCYPHkyAOMM8X333YeGhgZcuHABOTk5UCqVuHLlyoB9pUlvY8aMwblz5/giSIcOHUJ+fj7mzJmDsWPHmvw869ev9/j9aFz18dmzZ/cbcPfU3t6OH374AXK5HPn5+WhoaLBJ0M2pqqrCgQMHcNNNN8HPz2/A+/b83UVERCAtLQ3FxcU4duyY0+wZJkbnz58Hy7KIj493ugmu2bNnCz0EQghxCJsF3d9//73Zj5k/fz7NbhKLtLe3o6mpCQzDIDk5edD7Z2ZmIigoyOS9q7W1tdBqtU63KuBOampqoFQq4eXlZVbLI5FIBLVajfPnz/cbdJ8+fRo6nQ5RUVFISkrqdVtERATmzJmD7u5unDp1CmVlZR4ZdJ8+fRpxcXGIjIw0K/iNiorCc889B7FYzFctVygUZhfz8vSAm2VZvmK4KQE3YFwZ5yaqANuuWrIsi927d6OmpgYHDhzAjTfe2Ot2lUqF8+fPY/To0ZDL5dc9ftq0aSguLsa5c+cwe/bsQYN24hgsyyI/Px+AccKMEEKIMGwWdK9cudKs+zMMg+LiYqSkpNhqCMSDcKvcsbGxJqUGcymRpmhtbcWmTZug1+sxe/ZsTJ8+3eMDBHvgUstTU1P54lCmGDlyJH788UdUV1ejpaXlupUbvV6PnJwcAMZV7v5+d8nJyTh16hTKy8st+wZcWHt7O3bu3AmGYfDCCy+YPfnJpbXV1taitbUVEonE5Amta+l0OrN+/+6iubkZXV1dkEgkJhdDmzlzJgoKCtDW1gbAuv7c12IYBgsWLMCWLVuQm5uLrKysXltxzp07hz179qCgoAAPPPDAdY9PSEhAXFwcrl69ioKCAkyaNMlmYyOWq6+vR0NDA8RisVNPLur1ekqXJYS4NZv23Kmrq4PBYDDpo6+ZckJMxQXd9pi02b9/P/R6Pf//Xbt2DdpHmphvyJAhGDduHDIyMsx6nJ+fH5/d0FfP7osXL0KhUMDPz4/v7d2XxMREpKWlYdy4cR73++VWS+Pj4y3ONmJZFj/88AMAYOjQoWYXQ9PpdNi4cSNeffVVdHZ2WjQGV+bn54ebb74Zc+fONTnY8PLy4lO3GYaxeSZOYmIi0tPTwbIs9uzZw3+dZVm+avno0aP7fCwXtN9///0UcDuR0NBQrFq1CrNmzXLKzMKOjg78/e9/x2uvveZx52Fnkpubi/379ws9DELcms2WF9asWWPWCf2ee+7h2/gQYg6WZU3ez92TwWBAZWUlysrKMGvWrD5XQBsbG3H+/HkAQFZWFk6ePImcnByo1WrcfPPN1BvahhITEy1eqcvIyMCVK1dw/vz56zIRVCoVpFIpJk6cOGAw4+Pjg7vuusui13d1XH/u1NRUi5/ju+++Q3V1NQBj9oG5JBIJNBoNDAYDamtrPS7rydvb2+wJJ8A40bhq1SqIRCK7pHDPmzcPly9fRnFxMa5cuYKUlBRcvXqV7wc+0JhNTZMnjiOVSgecfBQa1w0BANRqtVO1NHNndXV1fP2G5uZm7NixAwAQFhZm0XmJEDI4m0UQmzdvhr+/v8n337BhA8LCwmz18sSDGAwGLFiwAGPHjuX7/ZpCq9Xiv//9Lw4dOtRvj8OwsDDcfvvtmD59OhYtWsRf3Pr4+FCKuRMZPnw4xGIxmpqaUF9f3+u2KVOm4Jlnnul3v7en02q1/KRVz5Zf5uq5V97S1HKudRgXvBPTjBo1ym6pwqGhoZgwYQIA4KeffoLBYEBubi4A4+SKKX3YAWMApdPp7DJG4j7EYjF/7UhtwxyjoaEB//nPf1BUVISff/4ZMTExmDZtGgBjfSY6HxNiH7RsR1yOWCzGmDFjsGLFCrP2gMlkMj44uHjxYp/3YRgG6enpmDNnDgDjxe1DDz2ExYsXU9BtQ7m5uaiqqoLBYLDo8TKZjK94zmUm9OTj42NycNDe3t5nmrq7Ki8v53ujR0REWPw8o0ePxrRp03DLLbeYXUSNwwXdtbW1Fo/DFXV3d+Po0aOoqKhwypTamTNnQiaTob6+HufOnePPl6ZWSj98+DD+9a9/oaCgwJ7DJIP4+eefcfjwYSiVSqGHMiCuEwIF3fbX2NiIrVu3Qq1WIzo6GnPnzgUAzJkzB0OHDoVOp8Pnn38OhUIh8EgJcT92Cbq7urrw+uuvY8mSJZgwYQLGjRvX64MQoXCrQwUFBb0udlmWRVdXV5+PiY6O5tPK9Xo9du7cyRcyIubr6urCzp078dFHH6G1tdXi5xk3bhymTZvGV+Rtb29HVVWVWUGMVqvFW2+9ha+//tqqsbiS4uJiAMbUcmsmkkQiEebNm2dRajnHU1e6q6ur8fPPP+Pbb791ysk8uVyOBQsWYMWKFdDr9dBqtQgNDTU5fVyr1UKr1faqtE4cq7u7GydPnsS+ffvQ0dEh9HAGxAXd9L5qX01NTdi6dStUKhWioqJw77338oVoRSIRbr75ZoSFhUGhUODzzz+nTBVCbMwuQfeDDz6Iv/3tb0hMTMSNN96IFStW9PogxFIajQbHjh1DfX29RStEQ4cOhUQiQXNzc6+05IKCArz11lt81ev+7N27F6dPn8a3335r9mt7OpZl0dzcjEOHDsFgMCAsLAyhoaEWP9+QIUMwb948frX26NGj+Oijj/DTTz+Z/BxSqZTfouApVcwrKysBWJ4SbkvR0dEAjMWUnH01zpaqqqoAAHFxcQKPpH/jxo3D2LFj0dHRAZFIhHHjxpk8QcAdW6WlpRZnsxDrFBQUQKfTISwsjP87c1ZcfR9a6baflpYWbN26FUqlEpGRkbj33nuvq8Mkk8lw5513wtvbG9XV1dixY4dTZuIQ4qrs0qclOzsbP/zwA79HhBBbqaiowJ49e3Dq1Ck89dRTZj+eSzEvLCzExYsXERUVBb1ej71796Kzs5Mv6NKfCRMm4Pjx46ioqIBaraYq/CaoqalBTk4OysrKel1UcenhttDZ2Ym8vDwA5geTycnJqKqqQllZmcnps67soYceQmVlpVMEfDKZDOHh4WhsbERNTY1Ve8xdCbey7wy/g8HMmTMHWVlZZm3liY2NhY+PDzo7O3H16lWbV1kng+N6c48ePdopsyl64la6nX1F3lUZDAZs27YNCoUC4eHhuPfee/u9dgkJCcGtt96Kbdu2XdeOkxBiHbusdMfGxppVVI0QU/WsWm7phcS1Kea5ublobW2Fr68vpkyZMuBjQ0JC+JXV0tJSi17fnbEsi6tXr/ZKE1QqlcjLy0N7eztEIhGSkpIwZ84cTJ8+3erXMxgMKC4uxt/+9jdotVpERkby7cRMxd2/rKzMI2b1JRIJUlJSzG7xZS/Dhg3DqFGjnLKdkT1wfyOAawTdgLHCNJeGagqRSMR3luC2M/vlW04AAQAASURBVBDHaWtr4zN3+mvx5kwiIiKQnJxscr96Yh6GYbBs2TJkZmZi9erVg1aIT0lJwfr16zFz5kynn7AhxJXYZaX7jTfewEsvvYSNGzda3BKIkL5wga417YW4FHO9Xo/W1lYcPHgQADBjxgyTim+lpqaioaEBJSUl1FoDxpT/0tJSvs2QSqXCDTfcwBdoSUxMxJQpU5CSkoKEhASbB3s9U/0nT55s9kVCXFwcxGIxlEolmpubqauCg3HHiadobm5GZ2cnJBIJoqKihB6O3aSlpeHChQsoKSnxuN+x0LjikklJSfwqsjNLTk42e7KUmI5hGCQlJfXqODGYoKAgu42HEE9ll5XuCRMmoKurCykpKfD390dISEivD3t59dVXMXHiRPj7+yMiIgIrV65EUVFRr/tw/Zl7fqxdu9ZuYyK209HRgcbGRgDWBd1eXl5Yu3YtnnrqKZw/fx4qlQrBwcEYP368SY/n0pdLSko8YmW0LzqdDqdOncJ///tf/O1vf8MXX3yBvLw8qFQqyGSyXj8XmUyGBQsWIDU11eYBd88VNQAW9aOVSCR8+mtZWZnNxuZsuru78d5772H37t3Q6/VCD8djcavc0dHRZqVsuxru77Kuro7Shh2IZVmcO3cOAPgik4RYQq/XIy8vD9u3b6f3DEJswC4r3XfeeSeqq6vxl7/8BZGRkQ5LTzl48CDWrVuHiRMnQqfT4Te/+Q0WLFiAgoKCXuk0Dz/8MP74xz/yn9O+XNfApZbHxMRYnYoaGhoKlUqFY8eOATDuWzT1Ajg+Ph5eXl5Qq9Woqakxq1e4q2JZFu3t7fzst0gkwoEDB9DZ2QkACA4OxtChQzFs2DAkJCQ4NJiYO3culEolJkyYAInEslNaUlISysrKUFZWhokTJ9p4hM6hrKwMjY2NMBgMWLRokdDD6YUrsufv729yqzdX5Wqp5Zby9fXFuHHjEBAQ4NaTC85Gq9UiNjYWnZ2dGD58uNDDMYtOpwPDMHS82FB+fj6qq6sxfvx4s1tEikQi/Pzzz1CpVMjMzDRrpZwQcj27BN3Hjh3D8ePHHT7Lunv37l6fb9myBREREThz5gxmzJjBf10ul7t1Wp+76rmf21bPp9VqER0dbVbbI7FYjJSUFBQXF6Opqcntg+4LFy5g9+7dEIlEeOaZZ8AwDEQiEaZOnQqGYTB06FCEhYUJtvcrMDAQq1evtuo5Ro4cidDQULe+qGhqagIApzxeN2/ejKqqKtx2220uFyiYa9GiRRg7dqxH7GFftmyZ0EPwOF5eXrjpppug1+tdKnjdvHkzKisrce+991qVyUZ6O3nyJGpqahAUFGR20M0wDIYMGYL8/HwUFxe79fsjIY5gl6A7PT2dXwETElcp+dqU9m3btuG///0voqKisGzZMvzud7/rd7W7u7sb3d3d/OeUJicMlmX5ir+2ekPOyMhAZGQkP7tujsWLF+Pmm2+GVCq1yVic2YkTJ/i08Z6r3TfccIOwA7Oh0NBQq9qXuQKFQgEATlnkMiwsDFVVVaiurnb7oFsikbj9KjcRnisF3AD4rUfUNsx2GhoaUFNTA5FIZHFBvdTUVOTn56O0tBTz58+38QgJ8Sx2Cbpfe+01PPfcc/jzn/+MjIyM6wITriejPRkMBjz99NOYNm1ar32ed911FxITExETE4P8/Hy89NJLKCoqwjfffNPn87z66qt45ZVX7D5eMjCGYfDYY4+htLQU8fHxNntec2d+OY44hp0FdxG0evVqKq7iwpw56I6NjcXZs2dRW1sr9FCIjXV2duLKlSuIiIhAeHi40MNxa1VVVZBKpS6ZyUe9um2Pa6M5dOjQQSuW94fLLKyvr0dHR4dHXfsQYmt2Cbq5/YLXVixlWRYMwzikIMO6detw4cIFHDlypNfXH3nkEf7/GRkZiI6Oxty5c1FaWtpn2vKvf/1rPPvss/znHR0dNg36iOkkEolNezvbisFggEhkl5qEgtPpdFAqlQDgElVwrdHR0YG8vDxotVq3rLbMZek440VTTEwMAGNPd+59wh2dPXsW1dXVGDVqlMekau7evRv5+fmYOnUqrZTZUXl5OT755BNotVosWLBg0PaXzoZ7f6Gg2zb0ej3fq92arZ5yuRyxsbGorq5GSUkJxo0bZ6shEuJx7BJ079+/3x5Pa7InnngC2dnZOHTo0KBpfFlZWQCMlaj7CrplMpnbF/ZxdlwlbGe7EC8uLsbevXsRFRWFlStXCj0cu+ACNYlE4vYFB1UqFfbv3w8vLy/MmjXL5dIzB+PMK90REREQi8Xo6upCa2urXbtcCOnSpUu4fPkywsLCPCboTktLQ35+PkpKSijotpOeAfeQIUNcshhkcHAwAKClpUXgkbiH0tJSqFQqyOVyvuOKpVJTU1FdXY3S0lIKugmxgl2C7pkzZ/b5dZVKZdf0QZZlsX79emzfvh0HDhwwqe8jl34THR1tt3ER6xQXF2P37t2YOHGiU83eSyQS1NfXQ6FQuO3qHLfqEBgY6JbfX09RUVHw9vZGV1cXamtr3WrfLcuyEIlEYBjGKVe6xWIxoqKiUF1djZqaGrcMulmW9ZjK5T0NGTIEDMOgoaEB7e3tbp8x42jXBtx33HGHxV0chBQWFgbgl4KPxDrcte3o0aOtnkBOTU3FwYMH0dXVZYOREUdjWRaXLl2CXC5HYmKi0MPxaHY5Mx86dKjPr1+4cAEvv/wy32vZ1tatW4dPPvkE3333Hfz9/VFXVwfAGDD4+PigtLQUn3zyCZYsWYLQ0FDk5+fjmWeewYwZMywuMkHs7+LFi2htbUVbW5vQQ+klISGBbx1WW1vLp8i6E26l2xMulBmGQXJyMgoLC1FWVuZWgRHDMHjqqadgMBicdvIkJiYG1dXVfPq1u2lpaYFarYZYLPaoSV4fHx/ExcWhqqoKJSUlGD9+vNBDchsVFRVuEXAD4AtZqtVqqNVqt8+ssrfQ0FD4+vpi7NixVj9XTEwMnn/+eYv3hRNh5ebmIjs7GwAwceJEzJ8/3yOKADsju5ydZ82a1efXGYaxawuRDRs29Pn6mzdvxn333QcvLy/8/PPP+Ne//gWVSoX4+HisWrUK//d//2e3MRHraLVaXLp0CQCc7kKcax126dIlFBcXu2XQPXLkSMTFxcFgMAg9FIdISkrig+7p06cLPRybc+baA+np6fDx8bFZS0Bnw61yR0dHu93WhcGkpqaiqqoKxcXFFHTbSHNzM7Zt2+YWATdgrF4+fPhweHt7O6Tuj7ubO3cuZs+ebZNzvkgkooDbRdXV1WHXrl385zk5OSgvL8dtt93GZ5cQx7HLGbq1tbXX53q9HqWlpXj++eft2maI2/vbn/j4eBw8eNBur09sr6SkBBqNBoGBgU658piamopLly6hpKSk320Vrkwikbh9K62euC0pVVVV0Ol0Ln0R62pSUlLcuj+vJ6aWc9LS0rB//36UlZXR35WNhISEIDMzE83Nzbj99tvd4md62223CT0Et2KPSVaNRsO3dyPOrbu7G19++SX0ej3S0tIwadIkfPvtt1AqlVSrSiB2OUv3lYoaEhKCN998E3PmzMHzzz9vj5clbujixYsAgBEjRjhlWmxqaioAoLq6Gp2dnfDx8RF4RMQaYWFh8PPzg1KpxNWrV92m2NX58+eRk5OD9PR0TJ06VejheCQu6PbE7hdRUVH831VNTQ0SEhKEHpLLYxgGixYtgsFg8LjMCdK/lpYWtLS0ICUlxaZBt16vx3//+19UVlbimWeegZ+fn82em9iHVquFn58fdDodVq5cCblcjsceewwtLS29CqrSRIrjODTXUCQS0S+WmEyj0aCoqAiA86WWcwIDAxEeHg6WZVFaWir0cGxu3759OHjwIF/52t1x+7q9vLzcqnVNQ0MDqqqqnK4uwrWampr4qrvuxGAwQKvVAvDMlW6GYbBq1So8/fTTFHBbqaWlhd/uwzCM2wXcWq3W6c9TzuzUqVPYtm0bdu7cadPnFYvF6O7uhsFgQElJiU2fm9iHn58fVq9ejTVr1vA1Enx9fXtN/BYWFuLtt9/mJ4WJfdllpZvrDdhTfX09/vjHP+KBBx7odTsVMCP9KSoqgk6nQ3BwsFMXHsrIyEBTU5PbFRtjWRYnT56ERqNx2kkPe1i0aBFWrFjhVhezztwurKdvv/0W1dXVuP3225Geni70cGxGJBLhiSee8OgCUe6SNSIklmXxn//8B1qtFnfffbdTvy9aoqqqCh999BGCg4Px5JNPCj0cl6PX63H+/HkAsMv5MzU1FbW1tSgpKbFJgTZiHz1XrsVicb/dQLhrPKVSiW+++QaPP/64W2xTcWZ2+emOHTsWDMP0ucf66NGj+Otf/8q3WKKCGaQ/YWFhyMzMRGhoqFOmlnPcseAWAHR1dUGj0QCAU7aZshd3DIpcJejmxueumRXueGwRx6msrERbWxu8vLzcsggS16u7ra2N9v6bSKPRoLW1FV1dXaisrIRarYafn59dClKmpqbi8OHDKC0thcFgcOrCnJ6qq6sLH3zwAYYOHYp58+YNuHjAMAzuvPNOvPvuu2htbcXRo0fdsjaRM7HLGa2srMweT0s8THR0NJYvXy70MDwWl14tl8upvYSL41q/OfvkCRd0c+N1F9wks6e7dOkScnNzMXz4cGRmZgo9HJfD9V4eMWKEW56TfX19IZPJ0N3djZaWFkRERAg9JKfT1taGwMBA/nxy9epV/Oc//+l1nzFjxtglII6Li4O3tze6urpQXV3tkfUpnBnLstixYwdaWlpQWFiIGTNmDFpnSCaTYcGCBfj6669x5MgRjBkzBkFBQY4ZsAeyS9BNzdeJp2FZFnV1ddBqtW6zZ5ELut0tbd4UO3fuREVFBZYtW+YWFxauttKtVCoFHontsCyLd955B0FBQVixYoXTT3zYU2NjI4qLi8EwDAXdZtJqtSgoKAAAt03tZRgGYWFhqK6uRlNTEwXd1+jq6sKWLVsQHByMVatWwc/PDz4+PpDL5fD29oa3tzcCAwMxefJku7y+SCRCSkoKCgoKUFJS4hbvje7k9OnTKCgogEgkwi233GJyYd+RI0fizJkzKC8vx48//ojbb7/dziP1XDabCnvrrbfQ1dVl8v03btzotimExHqnT5/G1atXB20D5yzy8vLw73//Gz///LPQQ7EZbrXRE4PulpYWNDY2oqmpSeihWE2j0aC7uxuA66x0u9N7Q1tbG1paWlBRUeHx6eVpaWkAjK0gP/zwQ3z66af47rvvcODAAWEH5gIKCwuh0WgQFBTkNhO7feHS5t3h3GtLLMsiOzsb7e3taG9v5zMdoqOj8cILL2D9+vV4+OGHcdttt9m1sjjXsYWKqTkXlmX58+i8efPMKtjJMAwWL14MhmH4FrjEPmwWdD/zzDNmXSi9+OKLaGxstNXLEzeiVquxa9cubNq0CS0tLUIPxyRcf+GrV6+is7NT4NHYBrfS7eyBmj1whUdc5fgbSGdnJwICAuDt7e30vTndMb2cO4ZCQ0M9fo9qZGQkwsPDYTAYUF1djcuXLyMvL49Pmyb9O3fuHABj6rA7b1WgoLtv586dw8WLF/lOAEKdy1NTUzF06FBkZma6zKKIJ6irq4NarYaXlxcmTZpk9uMjIiKQlZUFhmFQX19vhxESwIbp5SzLYu7cuSZfVLhLYEJsr7CwEAaDAVFRUQgNDRV6OCbhWoc1NjaitLTULap9e3J6OXfcuUPQHRgYiGeeecYlLpC4CR53WunmUuWpr61xReWhhx7iLxBVKhVUKlWv64b29nYoFAqPbK3WH6VSiStXrgAwBt3ujILu67W0tGDXrl0AgFmzZiE2Nlawsfj7++POO+8U7PVJ37jzQ1JSksWdV2bNmoWxY8ciMjLSlkMjPdgs6H755ZfNuv+KFSv6LWNPPNuFCxcAGPeZuJKUlBQ0Njbi6tWrbhF0L1++HDNnzoS3t7fQQ3E47tzU3Nws8EhsxxVWxwIDAzFnzhz4+/u7TfExruc4Bd1GXl5e/aZHl5SU4NNPP0VQUBDWrVtH1ZH/x8/PD48++ijKy8v5Ct/uKioqCmPGjEFUVJTQQ3EKer0e33zzDTQaDRITE3HDDTcIPSTihLigm8u6tIRMJqOA284EC7oJ6YtCoUB5eTkAuFzgys3Qu8PqKABIpVK3bEtjip7p5e4S/LkCLy8vt2vBx610+/r6CjwS55eQkACZTIaWlhZcvHgRGRkZQg/JaURFRXlEIBoUFISVK1cKPQyncejQIVRXV8Pb2xs33XST00xEtbW1obS0FJmZmU4zJk926623ory8HNHR0TZ5voaGBly6dAkzZszgv3bttVBjYyO0Wi1iYmJs8pqegP5SiFPhqrPGxsa6XNsCLlBrbW0VeCTEWsHBwWAYBlqt1uUraR88eBAfffQRzp8/L/RQPBKll5vOy8sLU6ZMAWAMNgwGg8AjIkRYw4cPR1hYGG688Uan2eplMBiwceNGZGdno6KiQujhEADe3t5IT0+3yTGiVCrx73//G/v378eVK1eg0WiQk5ODDRs28Ns+qqqq8OGHH+Kzzz5z+WskR6KgmzgVbpV7+PDhwg7EAlzaX2trq8tfLCqVSnz33Xc4fPiw0EMRhFgsRnh4OCIjI83qyuCM6uvrUVVV5TJ1NFpbW1FSUuI2k1c+Pj4ICgryyIKElpg0aRK8vb3R1NTET8J6sj179mD79u0eVdxIr9ejsbHRbbLGrBEVFYW1a9c61XY7kUjEj+eHH36ATqcTeETElvz8/DBu3DgAwPbt2/GPf/wDP/zwAxobG5GTkwPAWHgtICAACoUCX375JfR6vZBDdhkUdBOnwr3JumIaXWBgIBYtWoQ77rhD6KFYraWlBXl5ecjNzRV6KIJZu3Yt1q5di/DwcKGHYhWuEriz9+jm7Nu3D9u2bcOlS5eEHopNLF68GE899ZTLbZcRikwm4/sMHzp0yCUKANqLTqdDbm4u8vPzPWo16cCBA3jvvfdw/PhxoYcimJ4TDpYWxrKnefPmwdfXF01NTTh06JDQw/Fo33//Pfbv32/Tc8ScOXMgl8uhVCrR3d2NkJAQLFq0CHPmzAFgPE/ffvvt8PLyQmVlJX788UebvbY7o6CbOJVHHnkETzzxBOLj44UeitlEIhGysrKQmprq8nucPLlyOcdd9nFzlcBdZaXVHduGEfNkZWVBJpOhsbERhYWFQg9HMJcvX0ZXVxf8/f2RnJws9HAcxtMrmFdWVuLdd9/FsWPHhB5Kv3x8fLBkyRIAwNGjR1FXVyfwiDxTZ2cnzp49a/PtON7e3rj11lsxduxY3HXXXXjiiSf48zInLCwMN998MwAgJyeHWj+awLUjA+J2xGIxQkND4eXlJfRQPBoF3e7BYDDwQberrHRz4/SklT3Sm7e3N7KysiCVSj36OOB6c48ePdrlJ3LN4elB9/Hjx2EwGJy+e8aIESMwfPhwGAwGfPfdd5RiLABuS2ZYWJjNJ9aTkpKwYsUKpKWl9bsIMWzYMMycORMAkJ2djerqapuOwd3YrHp5T3q9Hlu2bMHevXvR0NBw3ezLvn377PGyhAiutbUVV69eha+vr1WtG4RGQTdQU1OD77//Hl5eXnjggQeEHo5FVCoVX3HU4YW8FPWAVgUwIuMHmF/+7x0AePVdzZsLut2hV7dCocCmTZsQEBCA+++/322yJxxh6tSpyMrKglwuF3ooglCpVCgpKQHg/r25rxUaGgrAOPHW1dXlUW0rW1pa+K013DYLZ7ZkyRKUlZWhrq4Op0+fRlZWltBD8ii2aBVmrZkzZ6K2thaXL1/GyZMn+dVvcj27BN1PPfUUtmzZgqVLl2LUqFF0oUFMUlBQgKKiIgwbNgwjRowQejgWKSoqwo8//ojhw4e7dNDNpfZ6ctDt5eWF+vp6SKXSwduGtV8Fdj4PVBwFYjKB1LnAkLlA5EhAwPMfF7j6+vo6bqWsWwH88CJw7pP+7yPxBha9Cky4fjLDndLLlUol2tvbYTAY6H3QTD3TGD3R+fPnYTAYEBMT4/J1Jczl7e0Nf39/KBQKNDc3IzY2VughOczJkycBAKmpqS7xe/fz88OiRYtQW1uLzMxMoYfjccrKygAIG3QzDIObbroJp06dwrRp0wQbhyuwS9D92Wef4YsvvuD3exBiivLycuTn58Pf399lg253aRtGK93Xtw3rMz2bZYHcrcCPvwU0/1uZLTto/Njze8AvChgyxxiEp84FfIId+j1otVoEBAQ4bj/31TPA1w8CrWUAGONqNmsw/pxYw/8+9ICuC8h+BqgvMAbfYin/FNxYFQqFy/dIpx7dtlFRUQGRSOSStT4sxaWWe9oqNycsLAwKhQJNTU0eE3R3dXXx+2JdYZWbM2bMGI89ToXU3t6O5uZmMAyDxMREQcfi7e3dq6c36Ztdgm4vLy+kpqba46mJG+P2L3GpZa6IaxvW0tLi0gEDBd3G+gKBgYFoa2tDS0vL9UF3WxXw/Xrgyn7j53ETgTm/AxoKgdK9QPkRQFlnXPE99wngHQis2gSkzXfY95CYmIhnnnnG/hWgDXrg6L+A/X8BDDogMB64+d9A4tTr78uywJF/AHv/BOR8ADReAm7bCsiNE1ZcGrxOp0N3d7dLp5ZSj27rnT59Gjt37kRMTAweeughlz2nmmv69OnYuXMnMjIyhB6KIEJDQ1FWVuZR+7pzc3Oh0WgQERHhsplyLMuioaEBkZGRQg/F7XGp5bGxsU71PqnT6XDo0CEMGTJE8MkAZ2OXfMPnnnsOb775pke3+iDmc6egW6PRQK1WCzwayz377LNYt24dv3LvqbhjsVe/WJYFTn8EvDfZGHBLvIEF/w944EcgZSYweS1w95fAS+XA6u+AqU8CoalAVzuw7Vbg0OuAg/u42zVQab8KfLwc2PtHY8A98iZg7ZG+A27jYIDpzwF3fAJ4+QHlh4EPZhsnKwBIpVLMnz8fK1ascPniURR0W2/48OGQSqWoqanh9zi7o+bmZv4iGjAWqXr88cfh4+Mj4KiEk56ejlmzZiEtLU3ooTgEy7I4ffo0AGP1flecXOrs7MSWLVuwadMml8/2cwXcpLSzdTY4dOgQDh8+jO+//x5arVbo4TgVu6x0HzlyBPv378euXbswcuRISKXSXrd/88039nhZ4sK0Wi2/uurKQbdEIkFAQAA6OjrQ0tLismmlUqmUryDryUJCQlBaWvpLFdmWK8COp43p4wAQnwWseBcI6+PCUCIDUmYZP+b8H7DrJeDMZmDf/wNq8oCbNgIy16gofh2NyrjSX33amFrf1QZIfYElrwNj7zJtH3v6EuDBPcCndwCt5cCH84BVHwLDFmPq1H4CdhdD6eXW8/X1xfjx43HixAnk5OS4XRDGsixOnjyJvXv3wsvLC48//jh/vHjycTNkyBAMGTJE6GE4DMMwuP/++3HmzBmMHj1a6OFYxNvbm9+SlZ2djXvvvVfoIbm1yZMnY9KkSdDpdEIPpZepU6ciLy8PLS0tOHjwIObNmyf0kJyGXYLuoKAg3HTTTfZ4auKmuFlRmUzm8tVqQ0JC+KDbk/YguiN+j35zE3Dwb8DhN4z7kSU+wNzfA1mPAiLx4E8kkQHL/mUssvbD88ClbOCDucAd2/oO2G1k+/btaGlpwdy5c5GUlGTZk5QfAS79ALRXAm2VxmC7s6X3fWLGGQPmUDMvkiNHAI8cAL5YbVzx/vROYP4rwLSnLBurvalbgOKfAI0S0GkAfY8PXTfgFwmMvh3wMxZAUqlUANx4pVvXDYi97F4scMKECThx4gRKSkqgVCrd5ufZ1taG7du3o7KyEgAQHx9PbZc8mL+/P2bNmiX0MCzGMAyWLVuGDRs24MqVK6irq0NUVJTQw3JrIpHI6Vrsent7Y+nSpfjss89w7NgxjBw5EtHR0UIPyynYJejevHmzPZ6WuLGeqeWumFbVU3BwMMrLy102vaq4uBiFhYVISUnBqFGjhB6OoMLDwxEeKEdA2U6g8HvjF5NnAjf+0/wAEwDGrzFWNP/8XqCpCPhgDnDT+8ZVXzuoqalBU1PTdW0bTXbyfeMKPfrYKiQLBILigeHLjOniYun19zGFPAS4dzuw+1dAzofAnt+j3ScBjQEZ8PPzc56LtvoC4JPbjZMPA/n5D8DIlcDEh+Dj44OgoCD3qo1g0AMlPwOnNwPFPwIiKRAYZzwWghKAwATj/0OGALHjTJuUGkRoaChiY2NRXV2N8+fPY8qUKTb4RoTFsiy++uorVFdXw8vLC/Pnz8f48eNd/v3PllpbW9HY2IjY2Fi3XvXX6/UQi63/O3EGoaGhGDZsGAoKCpCXl4dFixYJPSS3pNFoIJVKnfZ8MWzYMIwcORIXL17Ed999h4cffthtjnFr2CXo5jQ2NqKoqAiA8RfgCu0PiDCUSiUYhnHp1HLOhAkTMHz4cJctJFJVVYWzZ89CLBZ7dtCtqMOQs3/G421fGz/3iwQW/gUYtcq6lb24CcCjB4Ev1gCVx4DP7gSSpgPBicYCZIFx//uIBwJiAanlBVK4lmFmVy83GIC9rxiLowHAiBVA4jTjmIL+F1R52zCQFEuBpW8Y98cffwdndv0Xh3WjMWHCBCxdutR2r2Opkp+BL+8HujuMQWXMGEAsM67ySrz+938pUHnCmHJ//kvg/JdYGjkKmPYgkOIGGS/t1cDZ/wC5/wE6rv7ydX030FJq/LiWfzSQcQsw+g4gyrpzyZgxY1BdXY38/Hy3CLoLCwtRXV0NqVSKRx991OPrZ/Tlyy+/RG1tLW6//Xakp6cLPRy7+eabb9DV1YX58+c7zySjFcaMGYOCggKcP38e8+fPp2DLDr766is0NDTgxhtvdNrC1YsXL8aVK1dQX1+PY8eOYfr06UIPSXB2CbpVKhXWr1+PrVu38issYrEYq1evxttvv+3y6cPE9iZOnIjMzExoNBqhh2K1mJgYYV5Y120sRlV7DlA2GFeYxFLjShT/fwkgCwB8wwB5mPFf7yCgR8Eqj6hcrtMYU7wbLwGM6H8fDMCIjf/vVgCn/m0MshgRMPFhYM5vbRdo+kUAa74Hfvo/4ORGY2p1+eHr78eIjXvCR98GpC81aw+4RqNBd3c3APTd7qw/Og3w/RNA/ufGz+f8HzD9ecf0G5/7e6DsIPzrGgEGUP5v0kBQOZuAH14wtjpLvAG4/T98pfU+1Zw1Pub8V0D9BWNrtJ9+D4xcAQxbYvx9ernQql3pfmPGQ/GPxpZvgLH13di7gcx7AKnPL9sO2quM/7ZVAHX5gKIWOPa28SNiJDDmdiDjViDA/HPkyJEjsXv3bnR2dkKtVjvHdYReB9SfByqOA5XHjecNqdz4M5H6/PJ/L1/jZFVYGhCaBr3UF3v37gUATJkyhQLufoSFhaG2thZNV68A4quAVm3c3qPt7P0vYPwZe/kaizP2/L9/tPF4c9IVwba2NhQWFoJlWZcvHMlJTU2Fr68vVCoViouLXXfCRNsFNBYCdeeNH42XgJAUIHO1MYtHoGNKr9ejvLwcWq3W8VttDHqgqdh4fmdZIGGyccGgD76+vli0aBG2b9+O48ePY9KkSZDJZI4dr5OxS9D97LPP4uDBg9ixYwffKP3IkSN48skn8dxzz2HDhg32eFmzvPvuu3j99ddRV1eHMWPG4O2338akSZOEHpZHk0gkkEgkxov+zhZA1QSomwB1M6BqNv7b2WK8sOnqMAZEXe3Gf7sVQHCycUVuxHIgOEnob8d+NGrjz6Gjxhhgcx8NhYDBgkqRjBiQhxoDwdhxaK9JAOCmQXdrhbGY2dn/AqrGwe8fMw648R9go8caL4psORaxFFj8V2PhsfoCYxXw9qr//fu//2vVxvZjpXuN+8jTlwAZtxl7fg+Szt3R0QHA2MLR5De6boUx9f3KfuNxsfxtIPNua79T00lkwKpN8N+4GjAAHbV9rJ46ikEP/PQ74MS7xs/H3AUse9O4sj2QmExgxTvAgj8BeZ8aU+ZbSo3H3Nn/GlfzU2YBwxYDQxcB/k66sqXTAHt+Z5wU4iTeAIy/z7iloGcGRl/nW103ULwHyP8MuPwj0HDR2Lt+z8tAxAhjUCSRGX8e/L/eQGAsEDnKuA0jOJmfEJTL5Xj00UcRHh4uXEqlRm0811YcNQbZlScBjfkTQzq/eKSIZkIrDcNU8XngZPH/Jv2YHpOAIuOEqURmDNwl3r3/5SZRuQ9G/MvkqsSn10SqS2FZoLkEqDiGsIbzAPzRdGQLcORHy59T6guEpQKhaf+b+EgFwocB4cMBsV0TPgd18uRJsCyLlJQURISHG6912sqNE1mMyJhhxX14OcFEkwlEIhFGjx6N48eP9w66dd1AZyvgG26TbSc211ZpPFddzflfkF1knGztqewQcGaLcRJx3L3GGh4DTcLaQXV1NbRaLeRyuX0zKjUq499ibf4v15n1F4zXJT0Fxhu7lSROM36EDuEnJDIyMtDS0oKxY8d6fMANAAxrh75eYWFh+Oqrr64rCLF//37cdtttaGw04WLXjj7//HOsXr0aGzduRFZWFv71r3/hyy+/RFFRESIiIgZ8bEdHx/9n777jm6rXP4B/TpIm3XsPaAtlU/YoIENQUFFxD5AhblBx6/Ve9ee9ynWh14VXr4ILURRFRVSGICCblhZKaUtbunfTpCvz/P749py2dCVt0pOkz/v1yqtpkiZfymlynu/zfJ8v/Pz8UFtba33JJmmL51lwUXYaKD3NZs7KTrMO0b0VMbY5AL+2Z2tve4HneZw5cwbV1dWYOnWqZU0ujHq2p7OmmF20JS1f6ytZkN3QfDE2dv487v5AxBiWVeHNbAsnk4F9Fa431bLJjPoqQFfb7inexp2o4fyxwu8wBgwZDcTNZHtQu7m3OiGUtzoxlDtsFgEAC56ydgLHP2ZfhfXJPhFAwuXshJU3sd8Xb2al1byZfYiMW4LtO35FamoqFixYgHHjxvXduHme/S2kfcuyzq3Ldz0C2dh9wth1z0A2cSJc9w5DbmkNPvvsMwQHB2PVqlXdv562DPjyRvZ36OYF3Pxpn+4p3lrRzvfxv78q4IM6PHrvsl6XJltNVwdsvRs49wv7vgfZfrVajY0bN8Lfzw/LZw8CMraz51NftCY8cjzLGI+51XEy4JpiYMtyoOAI+37incCU+4GQIT17vsYa4MwPQOo3bEmFpdy8gNDhLAAPG8lO1t39AA9/9l7n7g+4+/a8n0BndFqgIpNltioy2Ml3RUbz/91Fp0wqP2DAFPZ+4RPBsq+GRnZiKlzXaViH/spMoK5M/FEDFHCDnToPu3kBqtZZX5+2EyUXn/r5RgGDLwXi5/RtEKGrA0pSgKITQOFxNpnRPCGajgRs4a5GFEpwV3AK+793c2eTCq0nI8CzCRFDA2tyqK9nF52WHcsXB04ClR8QdwkwaA77dwfG991nWV05dBk7sW5HFvRmDov9TmBwwwk2/s4ofdh7vncY+1vwCmGT5V7BgFco+94ziAXnCndWaaFQ2e/fZDI0J0Uqmi8t12uqq1CrrcNAcz44IXmiYxPB8AwCEuazicdBl7LjVAomI1B4lAXaWb8D5entH+MRCISPZpfgIWzCLX1bS4WFXAkMW8gC8IHT2e/bzvbu3Yt9+/Zh1KhRuOGGG3r2JPr6Vv9n5excXH2huWqp+dJQ1fHPunmx3wdvYpVd5ovew7zD2We2/0A2IRsQy7LhAbG2XZbmQCyNDe0SdHt6euLEiRMYPnx4m9vPnDmDyZMnix1dpTJlyhRMmjQJ7777LgDAbDYjJiYGDz74IJ5++uk2j9XpdGKJJsB+sTExMRR0W8PQCFTnNq/7ywGqzrNL2WmgSY0mqLAJixCEGlyNnZCBZ8GcR2BzGXQQu3gFs7JGlS870VL5sj9glS/7kMk/zN4MLxxsKYMEgLDR7GRi4AxWCuNu//+3119/HfX19bjnnntY18b6SqDgKAuitaUswNaWtnxvSda1NZmCfciGj2JBdsQYIDyRBdvWfMAadc0fmpVAbSH4vIP41xEFzJBhDf8R/GBFFqfDYFzWPnvDydgHVUAs+xALGdry1SeidycIjTVAVQ471qqaj7f8QyxrLIifA0xaybKMFpys//LLLzh27BimT58u3dYXPA8UnwRStwCnv2Mfkt04pRiPH0yzEedRh6Wj0LxePIr9/o16thbX2Hwx6djsvTqfLTtY/A0QNcHu/6zOaDUarHvzTXC8GX8P+R2ye/7o1dp2i+kb2PrtP19lmQ65CrhuPVvHb6XCwkJ8/PHH8PPzw5o1a9iNPM8qUs79AmT+yoIMIYhz92dZ5Ml3szX9UsnZB3x7J5uYU/mxre1s2ehPnc+CWKOOnbi2/mpoYJ8VZafZ78mk6/ApTJChCSp4oXkCUuXbtheCf0zz8R7DPjsUqpaLXNVyYqwtZYFwZSYrmaw8x75qijofv1coMDCJnWAPSGKTAdZk7RrVLHtUcY69bm1h20k/nm/5atJ3UE6tYxOvJmPLZGpPKpw6w8mAqIlswm3wPDaBbausucnA/l+LTjRfTrLy3daf1wD7P4qeiPKgqVifzEOlUuGpp57qWYWDUc8mPKqymv+fs9n18rMtQaDAbwAwaDZrlhk9yfrP066YjCyDmr2LXUpScAjj8Ts3G8F8FR7ApxBfySeCvTbAJmm0ZV1PtneJa5mc8I1ik+jxs9kkkTXBbkM1mxwpOcW2vCw5BdTk9nBMrciVbExDrwAGzWUTBWYj+5swG9mkubl50kShbKmIkTdf765SwdDIltvVVzR/LQfqKtgkWvYutt2lgJOzbUAHzWk+pxrd8TlJo5r17Tj5GZukFsjc2DlZ5HhWfh45np3X2Dir/8knn6CgoABXX3Ulxg+JajmHa6hi50D6OjaZJX7Vsq+N1S0TI5YeT+7+7PcQMYa9F0SMYYks4d+kr2fnthcOAhf+Yp9pnbxvA0CuchgCPBTw93JrnjT1a5lIVfqw9xqxckfBXkcmZ9+Pu8NhK3gkDbrnzp2LoKAgfPbZZ3B3ZydKjY2NWLZsGaqrq7Fr1y5bv6TF9Ho9PD098e2332LRokXi7cuWLYNarca2bdvaPP6FF17A//3f/7V7Hgq6O9FYwz5MC46xD5iKc22b7lxMpkCR32T8Tz0VPioOj950CSs99Aru+RtVXQVbr5u+jZUCtZ7l5mTsTWPgdCB2Bjtp8vDv2et04eOPP0ZhYSFuvGIWRlb8xMpKhZnRzsiVLevPfCNbrnuFNGcwA1qymSofu8xea7VarFu3DhzH4e/XJ0J2YT/7HVZm2vy1OqTyZZmt+NnsAzhqQucfqiYDO8bO7wFy97MxXryVlcAjgGUTJ6ywuvLh8OHD+O233zB8+HDcfPPN1v177MFkZPuEF58EGmpall00VDd/rQKaanEKw/EHpiMeF3ANdlr23AFxwB1bWcZHQmazGf/617/A8zwe5f8LnylLgSv+bZ8X09ezLEf6NiDzd8DQPCnsGQzc9hUQ07NlRxkZGfj6668RFRWFu+66q+MHacuAM9+zEm7hBJaTswqdpFWs6V5fMZtZ47w9/2RBUNho4JbPpDsWTEY2eVZ2Gig7wz5LGmtwRq3Cdu1wDEY+rjf/1PPnlynaZ2ha8w5vLkEWLsPYxSu4xy9ZX1+P7du3Y+bMmbZvmGUWKpv07TO+wsm3sQlAR58bPPs9Z+1iQXBrnsEsAGxX4u7OMl7eoeyzyie85atHABtL+VkWqBWnsIxY2ZmOT8h9o9h7fdR49pkcOQ5QqGA0GvHyyy+z94FHH7WuN0W3vy8TG1fOHuD8XlbVcfHkhWdQSwAVNYFd97agIbChiU34VmayAL8klU1mXVRZ9r7bPagwemPhKH9MSBzZ0kzz4glGnmdZ+7pyNmFfV8aCLCGYbH1pqGaBZncTMTIFED2ZfdbGz2LnFMKSvvqqlqV9mhI2AdnZrg2crDkx0twjRsjAe7V8b3IPhNwnjH2v9GK/63M7WPVPbwN3rjlIY980nxc1f+X57oNLjwBg8GXAkPks625tlUdxCmsweeYH9ju7mJtXc8CayBIjEYnsfeTiCX+eZ5OAFWdbJuR02lYTbk2AsRE6nQGvVF0KHjI8zH8Ef2sSIxeTq1r+r/yim5uktrr4xVh/fmxoYucmVdlssqvmQvPXPBxuiMFv3BwE8jVYim+tS+oAwHPVjrksARIH3adPn8b8+fOh0+kwZswYAMCpU6fg7u6O3377DSNHjrT1S1qsuLgYUVFR+Ouvv9p0QH3yySexb98+HDlypM3jnTLTfeYH9scbN5MFML0Jzow6NotVdII9j1zZclE0d+xtrGGzW4XHOg/OVH5AUDzbRiZoEPsayk5iTp3JwA8//IDY2FgsW7as52PtSEM1Kx26cIDtN1yT1/Z+Ts5mNUfdyBpV2SgL/v2mDUjNysdcHMQMvvmYCh7K1pL5hLe6tDpZ8QySvEy7qKgI//vf/+Dr64tHHnmk5Q6TsTn70jojc1E5dpsSbVPz93yrzE2rxxgaWSa68hwr46w8xzJcF5cBuvuxrMPguSwIN+pYkH1+D2s81lEpnnd48zEWz74GD2Ufpj3MlGZmZuKrr75CWFgY7rvvvh49R5/T1zeXizU3tRIaXGmK2f1CxkD4O1aoWAZv6gOWnVT2gXXr1kGr1eJu/gtEohxY/B2QYKNKA55nmeaUTWzJQesTM78BrC/ElPtYxrSHjh8/ju3bt2Po0KG49dZbu36w2cTepw6/37ahXuhINvHm3qqqR6jyCYwDBkyzzTrPxhrghwdayunHLmbd5N08ev/cNia8RykUCjz+yBqooGPBhtAHQV3Q9npTbXNVRweTnpyMTTQFD2FrfYWqm+AEdjJuYzt27MDRo0cRGRmJu+66yzG3+1EXtGRjc/b1aM065M2VBB0F2Co/1v0/amJzoD0B8O18D9933nkH1dXVWLp0KeLi4qwfi6V0dawq6vwfLGtXdqbjwFXl1/I3qPJpvu7DgklNMauU6GgZAsCOqUFzgcHzwA+6FP9660OYzWasWbPG9j1UTIZWAVsDq+KpyABy9rKeHRcvc7FEYHxLZV3EGPb+1E2CZOfOnUhOTsbSpUvbTzTxPDtnPPcLC8ILj7HbxF4FzVlOmaJt5UdXk2UdkSvZ55t3SPPXUDbRM2gOOw5tsa6f59lnbdFJFnQWJbOJJmES9+LxhA5nQTjHtSxfaWq/3O9imYjDV9x1CORr8CA2tPTkEatB/ZurP5sbCaq8WQZZ5c2OP3FyJJjd34fvQeryYnz6xSaotfXw81Ri6fRoBMob2L+7qZZNMvCmluoGseKh+XLbV5KfI3fG0qDbLh0kRo0ahaysLHz55ZfIyMgAANx2221YvHgxPDwc70O8KyqVyvkW/x//mGUnAfYHFncJC8BjZ7ZpcNAh4U1QDGwOtG+a0J3AeDaDGj2RvakEDWazh528rrBHt106uHoGAmNvYxeAbXtz4SD7d104yGbjhBMMhTtbJzv6RvbV2hNOnmfPeeAtBGRrAW4aqnlfFvDNeIRtC+WgbxiCqKgo/O1vf0NDw0X/5/ZoNnNxBtGoZ9mBwqNA9m52ctCkZvtjC3tkX8wziJWLD5rDjrXAeJuvDxO2sauurgbP8455onwxpVdLhs5JzZkzBxzHwe9CPZD8X+CH+4EHDvUq0wiAfbj//Chw+tuW2wJigRGLWIY5cpxN/k7r6tiEkEX7C8vkrIR72JUsK3bkA1a+WH6GXTojV7LM4KBL2SVslOXldzzPJkuTPwNOb2UTWHIVcOVrwPilDvteFRkZiaCgIFRVVeFsZhbGjh3L3ue7O9Z5ngUiQim7SceyPH2wBhNge04fP34cAKsGdNj3Ef8YYOIKdjHqWaZa6CXSnG0Tv+rqWLZVW9JcBl3CsqNCsC0E2BFjgcix7Gur5niWmDVrFjiO67bfTq+pvFlJvdDHwtDEAu/iky2l8JWZLFvdQS+U9s/n19K8LWQImzyOHCcGqCajEZdddhnUarVtM/gCuVtzNrVVABA2Ahh1PbtendscgO9tWZInBGRCAOfZnLkOHc5KjHtQFahWq9HY2IhTp061D7o5ruVzasYj7G/Ukr8Ls6ntshQxCG+e5Be/ggWa7n72fz/juJb1y8Lv2Gxix0xxCitDL0llVQO62pbGZG2eQ8bOYUKGsd+JZ1C7Bop+WiMm51TCyzcRmPlcu91nHJl/aCSWr7wbn3/+OaqqqrDhUDmWLl3ar7aTtkum25FZW15+MadopHbofSB7J9vG5OLSGp9I9gYqzCK2Xn/Lm9lJ2MXr2bxCWCm2wr15plHHTl5MzV8VKlZ2FT2JXbyCrBrut99+izNnzuCyyy7DtGnTevmPt1JlNlsje/rbtll6pU/zSfBVbGa6q0Cutog1ujq1mWVsAaRyw/E9rkBsRDCW3WNBEyvSnrm5SUd2c/fuwmPsuB2QxILsQZeyElg7f+CYTCa89NJL9ilxJN0zNAIfzmFld+GJwKL1PW+sVnAM+G4ly0hwcpbNHnNLS8bBhrZv347jx49j5syZmDNnjvVPUFfOyjCFLIC4Y4OGTUYVp7RfuuMVwspFI8exk7fAeHYS2DqwrKtgHcWTv2DZFUHwEOD6D9nPOrj9+/djz5499qmOspPvvvsOp0+fxqBBg7BkyRKph2M/Rh0LwHkza6TkqJMLPdGkYVWEOm1z8C3spKJlk1beoS0d0r1CXOvf3kNCpZinpyceffRR2rOb51nFZWlzAA60LF0JTuizSUAp1dXV4fPPP0d5eTk8PT1xxx13OP3+9H2e6f7xxx9xxRVXwM3NDT/+2ElWqtk111xjq5e1mlKpxIQJE7B7924x6Dabzdi9ezdWr14t2bhsKukBdjHq2AxtbvO63MKjgLaYXboiV7FGMUL2JHSkXQMbIdMtZBT7VPBgYPZTwKwn2Rvg6W+BtO/YyWzq1+wiV7E1T0OvZM0+fMLZDH/Gz8Cpr1gJnlBKpnAHxt6OwPhbgS2/orre+fcdl4xMzqoloiey/yNdHbutj0te5XI5/P39UVNTg6qqKqcJuj/++GMAwHXXXefc+wC7eQA3fgxsuIKdqHw4i2VFLnnc8iUDZhNwYB3wx1pWruY/ALjh4x6v17aEkOnu8T6q3qFsa67OCFsrCVVJuftZmXXaFnYRcWxtXmAcy4zn/NGSGVJ4ACMXsX4HA6c7TZCQmJiIPXv2IC8vD2q1Gv7+/lIPqUslJSU4ffo0AEjXjLGvKFQtTcBcjbtvnzRidSWt9+zOzs7G0KHOW31lExzH3osD41hllRWcptKuG97e3li2bBm++OILlJSU4NNPP8UDDzzgNOdWvWGzoHvRokUoLS1FaGhomwzyxTiOg8nUyfYNfeTRRx/FsmXLMHHiREyePBlvvfUW6uvrsWLFCknHZXMKVfPeedNY0KJvYIG3prhlza35ojW6QQns8X20HyTP89IG3QKOYw0uIhKBuS+wDFPGzy2NPrJ+Z5ef17CsWNX5tmt1Bk5nW/6MuBZw90NgQwOAX6HRaGAwGODmZuMtbexk79690Gg0mDBhAqKioqQeTltSbSsCIC4uDiEhIWwfeSdgNptRVFQEnuedZswXq6urQ2lpKdzc3DBw4EjggSPAL4+zv8s/X2ONz65+m00QdqW2CPj+3pa10qNuBBaus/vWJV5eXggICLBfRRTHscxIcAIw5V5WClx4lE2wVpxjSzWqc9ma3Nr8to2QoiayQHvU9U65hYufnx9iY2ORl5eHtLQ0XHLJJVIPqUtC89jRo0c7fUanrxmNRuTl5aG2thYTJki3o4KtVVZWQq/XIzAwUGw47Ipa79mdkpJCQXcP5ebm4s8//8Tll1/OdsRxcp6enli6dCk2bdqE2NjYfhFwAzYMus1mc4fXHdEtt9yCiooKPPfccygtLcXYsWPx66+/2neTeUeg9GSlhw6ksbERnp6e0Gq1CAiwfeOaHpHJmreESQIu/xcrwRT22C060bJFRGA8MOY2IPFmVsLZioeHB2677TYEBAQ4VTlVZmYmSkpK6IPxIldf3UXG0QHV19eLs+I9zrRKLCsrCz/++CMGDx6MgQMHsmZLt37Jgu1fnmDLQTYsACbdBcx9nmWgjHq2PEZoolWTBxz7iDUKU3oDV77OJsf6IFuwcOFCu79GGwolWwYUO6PlNp5nHYmrc9iloZItlwkb0bdjs4MxY8YgLy8Pp06dwowZMxw2A5SXl4ecnBzIZLKeLTPo5/R6Pb788ksAbNJCqVRKPCLbOHToEE6ePIlZs2Zh9uzZUg/HrsaMGYNDhw4hMzMT9fX1lvW5ICKz2Yzff/8dpaWlSE5OdomgGwDc3d2xdOnSNufIBw4cQHV1NSIjIxEZGYmwsDCnOofujl1SIJ999hluueWWdg3I9Ho9Nm/ejKVLl9rjZa2yevVq1yknd2Kenp5Ys2YNjEajY/5hcRxbAx86HJj5ONs+I+8A29ojelKnJ+8cx2HIkCF9PNjeq61lDWJs3kmV9CmtlnUc9vb2hsxJmqxcTJj51mgu2kt3xLWsMeTvf2frko/9j227JVey9ZYddQ2OHMfKya3cLs7pcRzr2OsdAgyYIvVobGr48OGoqKhAYmKiwwbcADBgwADMnz8fjY2NjjOx7EQ8PT3h6emJhoYGVFVVuUzAIXzWOvrSCFsICwtDRESEuMxiyhTXei+yt9TUVJSWlkKlUrncBM3FlXhnz55FcXExkpOTAbDlfWFhYVi8eDE8PfumAtee7BJ0r1ixAgsWLGjXbVKr1WLFihUOEXQTx+I0JbC+EUDiTVKPwi4MBoPYtZyC7vZ4nodOp3OKUkAhUHXmki1h7MIEQhseAcC17wGjbwJ+erjtVoAKd7bnqF8M+xqeCExYzjLBxGWoVCpcdtllUg+jWzKZDFOnTpV6GE4tODgY+fn5qKysdJmgW61WA+g/n7VTpkxBeXk5Bg3qZxOfvaTX67Fnzx4AwCWXXOISgWdXZs2ahcLCQhQXF6O4uBiNjY2oqqpyup2vOmOXSKezxf6FhYX95g2GkLKyMmRmZsLPzw+JiYlSD6dbQqCmVCqdIrDsS7W1tVi/fj3MZjOeeeYZh86sAS2BqsPusGABYeyNjY0wGo0dT8zFzwbuP8R6MLj7sj22vYIlbwhWXV2NTz/9FIGBgU7TXZvYVl1dHdzd3Z1nQtmBBQUFiUG3K+B5vl9lugFWYk6sd+jQIWi1Wvj7+/eLCoEhQ4aIVaI8z0OtVqO2ttbhz7ksZdNPg3HjxoHjOHAch7lz57b5sDGZTMjNzcWCBQts+ZLEyW3btg01NTWYPXs2YmNjpR6OTRUVFWHPnj0YPHiwUwTdwkmAr6+vy7zB2Yq3tzf0ej14nkddXZ3DZ5BdIdPt7u4OuVwOk8nUdc8HpSfbQs6BaLVaaDQaCrj6QF5eHk6ePImxY8ciPj5e6uEAYCeLW7duRW1tLa6//nrHa0rpZIKDgwG07HTi7Orr62E0GsFxnFNPjBL70mq1OHjwIAC0i6n6A47jEBAQ4FLLcmz6Pyh0LU9JScH8+fPbNPBRKpWIjY3FDTfcYMuXJE6uoKAAVVVVcMXt4oVtmqqrqyUeiWVoPXfnnG3bMDc3N/j5+Tl1FkU4Ia2pqXGsRosWqK9nOxs4axM7Z5KcnIy0tDQEBgY6TNCdlpaG3NxcKBQKly8H7QtC0O0qmW6htNzHx8cxe9nYUWFhIfbu3Ytrr73W4T9HpXb06FEYDAZER0dj5MiRUg+H2IBNg+7nn38eABAbG4tbbrmFSlRJl8xmM2pqagBIvF2YnQhBglqthtlsdviGVkKgQEF3xwIDA1FTU4Pq6mqHr8qYOXMmZs6cKfUwes3Hx0cMup2JsEc3dem1v8jISKSmpqKkpETqoQBgyyF+//13AOzv0JkmixyVcH4gTNA7eyWWEHQ786RoT/A8j99//x0FBQXYu3ev0+0K0tdmz54NX19fREREOP0xTxi71CrQGjZiiZqaGpjNZri5ubnkjKevr69YHltbW+vwJ18zZszAlClTYDQapR6KQwoMDMT58+edpnLBFSQlJWH8+PGIjo6WeihWEYJuynTbn9BYq7i4WOKRMLt370Z9fT2Cg4Mxbdo0qYfjEgICAnDttdeKGW9nFxERgfnz5/e7KgiO4zBv3jxs2LABycnJSEpKcpn/U3uQy+WYNGmS1MMgNmSzoDswMBCZmZkIDg5GQEBAl7MydNJKgJb1WYGBgS45iyesR6msrER1dbXDB90AK0t2c3OTehgOydmWC7iCYcOGST2EHqGgu++Eh4eD4zjU1dVBq9VKOoFbWFiIEydOAACuuuqqflc6bC8ymQxjx46Vehg2ExQU5JLVfZYYMGAAhg4dinPnzmH37t245ZZbpB6Sw8nMzERMTIzLdOwmLWwWdL/55pvih92bb77pkkEUsS0h6HblD5/AwEBUVlaKZfTEeQnHqaMH3Xq9Hu+99x58fX2xbNmyftd8xREISzWovNz+lEolgoODUVFRgZKSEsmCbrPZjJ9//hkA69Ts6EtQCJHK3LlzkZmZiYyMDOTn52PAgAFSD8lhZGZmYvPmzQgODsaKFSso8HYxNjsba11Svnz5cls9LXFh/SHoFrLbjh6o8TyPTZs2wdvbG/Pnz6d+DB0IDg7G4MGDERYWJvVQuqTRaKDRaNDU1OT0AXdjYyMKCwvB87y4jYgz8PLyQkBAAPVH6CORkZGoqKhAcXGxZMeJTqeDj48PamtrnWL/cGdTVVWFnJwceHl5YcSIEVIPp1eys7Ph6emJ0NBQp3+P7omQkBCMGzcOJ0+exM6dO3HnnXdSog5Afn4+tmzZAp7nERkZSedhLsguf+0nT56Em5sbRo8eDYBtC7VhwwaMGDECL7zwApRKpT1eljgZYS23KwfdU6ZMwfjx4x2+tLyhoQHZ2dkAWFkkaS8gIACLFy+WehjdcoU9ugVlZWXYtGkTAgMDnSrovuaaa6QeQr8SERGBU6dOiTsw2IvZbEZZWRmqqqpQVVWF6upqmM1m3HDDDfDw8MDtt9+O2tpaqnCwg/z8fPzyyy+Ij4936qCb53l88803MBgMePDBB8VlS/3N7NmzkZaWhsLCQmRnZyMhIUHqIdlFdnY2srKyMHny5C7PdcvKyvDVV1/BaDRiyJAhuPrqq2kiwgXZJei+99578fTTT2P06NHIycnBLbfcguuvvx5btmxBQ0MD3nrrLXu8LHEy8+fPx/z5811yuzCBowfbAuFk1dvbu1/OvLsSV9ijWyD8G7RarUt0LSb2MWbMGCQmJtq9FHPTpk04f/58m9vkcrm4OwXHcf2uI3VfcZVtwxoaGmAwGAC4xsRoT/n4+ODSSy+FUqnEoEGDpB6OXTQ0NODbb7+FTqfD0aNHkZSUhJkzZ7bLYKvVanzxxRdoampCTEwMbrzxRuoH4aLscnadmZkpNr3YsmULZs2ahU2bNuHgwYO49dZbKegmbdCJtPRoj27LNTY2gud5h+0860qZbiHoNhgM0Ol0VG5HOtQXx4VarRYD7piYGLEZVmBgoEtPHDsKIUuo0Wig1+udtmJS+Kz18fHp9xPcU6dOlXoIdqVUKjFjxgzs3r0bAHDo0CGkpqbi0ksvxdixYyGTyVBfX4/PP/8cdXV1CA0NxW233UbNbF2YXf7ieZ6H2WwGAOzatQsLFy4EwD6onH2WkhBr/fXXX6iqqsKll17qsGWHFHRb5vfff8ehQ4cwbdo0h1236UqZbqVSCZVKBZ1OB61W6xRBd2VlJT7//HMEBQVh6dKlUg+H2MjZs2cBAAMHDqS+NRLw9PSEp6cnGhoaUFVVJW4V52yEPbrps7Yto9EInuddKuBUKBSYMWMGZsyYgaysLPz222+oqqrCTz/9hOPHj+O2226DXq+HyWSCn58fFi9eTI3TXJxdgu6JEyfiX//6F+bNm4d9+/Zh/fr1AIDc3FyHb0JE+kZ6ejp+++03DBs2DFdccYXUw7GrY8eOQa1WIzEx0WGD7sLCQgCswQnpnJBtKSgokHgknRMy3a4QdAMsY19RUQGtVusUx6dWq4VGo3HaTJyzOnPmDE6cOIHBgwfbZX/swMBAxMfHO+02dq4gKCjIZYJuWobQ4ty5c9ixYwfGjh2L2bNnSz0cm7h4OVRCQgLi4+Nx9OhR7Nu3D2azGV5eXvDx8cGdd94Jg8HgEtVppGt2CbrfeustLF68GD/88AOeffZZDB48GADw7bff2uXDkDifyspKaDQa6HQ6qYdid4GBgVCr1aipqcHAgQOlHk47PM8jLy8PAGibm24I72WFhYVobGx0yFlpT09P+Pv7u8xJnY+Pjxh0OwPao1sadXV1yM3NhUKhsMt5xtChQzF06FCbPy+xXFBQEAoKCpy6YpIy3e0ZjUbU1tbir7/+gre3Nzw9PeHh4QFPT0/4+Pg47FKuzpSUlGDr1q2YO3dum0k6uVyOpKQkJCYmor6+HjKZDIBrLAUjlrFL0J2YmIi0tLR2t7/22mvUHIAAaNlCy5U7lwscfduwhoYGuLu7Q6fTITo6WurhODQ/Pz+EhISgoqIC58+fx6hRo6QeUjtXX3211EOwKSFjL5TNOzoKuqURGRkJgJ3wEtckNFMTtht1RsJSLleZFLWFESNGIDIyEsXFxdi+fXub+5KSknD55ZdLNLKe2bVrFyorK5Gent5hZYyXl5fDVj0S+7JrF4cTJ06I66BGjBiB8ePH2/PliBMRZqr7Q9AtbAlSU1Mj8Ug65uXlhdWrV6OxsbHfN3axREJCAioqKpCVleWQQberGTt2LOLi4hAVFSX1UCwiBN10UtW3wsPDwXEc6urqoNVqbbq8Ij09HTExMS6zZMNZjRw5EjExMWLw7YymTp2K2NhYh6x6kwrHcbjuuutw6NAh1NfXo7GxEQ0NDWhsbHS699Hz588jJycHMpkMc+bMkXo4xMHY5Qy7vLwct9xyC/bt2yfO5qnVasyZMwebN292inV5xH54nhdnqvtT0O2omW6BI5ZKO6KEhAT89ddfyM7OdrhtrEwmEziOE8vWXIGzLXmor68HQJnuvubm5oaQkBCUl5ejuLjYZqXgdXV12LJlCziOw2OPPeZ0QYArcYVlM3FxcYiLi5N6GA4nODi40yotnueRm5uLc+fOYcGCBXb/zG1sbERpaanV/088z2PXrl0AgEmTJjnNlrGk79jlzOzBBx9EXV0dzpw5g+rqalRXV+P06dPQaDR46KGH7PGSxIk0NjaiqakJQEtA6socOejmeR4mk0nqYTiVmJgYKJVKNDQ0oLi4WOrhtHHmzBm89tpr4gc/6XtUXi4dobmWLf8uhWq9yMhICrgJkYBer8fmzZtx9OhR5Ofn2/z5DQYD9uzZA4PBgOrqarz33nvYvHmz1Uua0tLSUFpaCpVKhZkzZ9p8nMT52SXo/vXXX/H+++9j+PDh4m0jRozAe++9hx07dtjjJYkTEbLcfn5+LrU9RGeE2c6mpiY0NjZKPJq2ysrK8Morr2DLli1SD8VpyOVyzJkzB9dff73DVWrk5OSgqanJpfYNNhgMyMrKQmpqqtRDsYiPjw8CAwOpOY4E7LGuu/USOSI9YecTZ1y7X1dXh/T0dJSVlUk9FKeiUqnEpVwnT5606XPrdDp8+eWX2L9/P77//nsEBAQgICAAer3eqnjFaDTijz/+AABMnz7d6Zq/kb5hl/Jys9ncYTDl5uYm7t9N+i+5XI7Y2Nh+s6WOm5sb7r//fvj7+zvcvzkvLw8GgwF6vV7qoTiVqVOnSj2EdnieR05ODgBg0KBBEo/GdhobG7Fp0ybIZDKMHj3aocr5O3LttddKPYR+KyIiAh4eHjbbz72+vl7c2aF1EoFIJzU1FefOnUNAQIDTbRtWWFiILVu2IDIyEnfffbfUw3Eq48ePR3JyMtLT07FgwQKbLIdraGjAl19+ieLiYiiVSkyePBkcx2HhwoX48MMPkZGRgYyMDIu2CczIyIBarYa3t7dDnh8Qx2CXoPvSSy/Fww8/jK+++kqceS4qKsIjjzyCuXPn2uMliROJjIzEsmXLXCob153Q0FCph9Ch3NxcAM63bpa0V1lZCa1WC4VCgQEDBkg9HJsRyrTNZjPq6+upbJt0Kjo6Gk888YTNJmYyMjLA8zwiIiJofaaDEKqLnHHbMNqju+eioqIQGhqK8vJypKWlYfLkyb16Pq1Wi88//xwVFRXw8PDAkiVLxHglLCwMSUlJOHjwIHbs2IG4uDioVKoun2/kyJFQqVQwGo39ooKT9IxdysvfffddaDQaxMbGYtCgQRg0aBDi4uKg0Wjwzjvv2OMliRNy9IyVqzObzbhw4QIAUGOXHqisrMSBAwdw/vx5qYcCAGKWe8CAAS7VhV4mk4mBtrPs1U2kwXGcTT9XqLTc8TjztmG0R3fPcRwn7oB08uTJXiVt1Go1NmzYgIqKCnh7e2P58uViwC2YNWsWAgICoNFosGfPnk6fS6je5TgOCQkJVBFDumSXoDsmJgYnT57E9u3bsWbNGqxZswa//PILTp48SfsA93N6vR4NDQ1SD6PPNTY24pdffsGGDRscJsNfWloKnU4HlUqF8PBwqYfjdE6dOoXdu3cjJSVF6qEAaAm64+PjJR6J7QlbNTl60F1WVoZ169bhiy++kHoo/V5vG0Tq9XqxaRMF3Y5DyHQ7Y9BNe3T3TmJiIuRyOcrKynrVLPHnn39GTU0N/P39ceedd3ZYiejm5oarrroKAHD06FEUFRW1e0xBQQHef/99VFRU9HgspH+xWzqE4zhcdtlluOyyy+z1EsQJpaenY9u2bUhMTMR1110n9XD6jFKpREpKCgwGAyoqKhyi3FwoLR84cKBLbTHVVxISEsRMt9lslvR3aDKZxLWnrhp0l5SUOHzQrdVqodVqqYmOhLKysrB9+3aEhobi9ttv7/HzKJVKPPLII8jLy+sXu2w4CyHTXVtbC4PB4FSlvFRe3jseHh4YMWIESkpKxB1wemLChAkAgAULFnS5bGTQoEEYPXo05HJ5m8fxPI+jR4/i999/h9lsxp49e3DLLbf0eDyk/7DbWeLu3buxcOFCsbx84cKFdt3GJi8vDytXrkRcXBw8PDwwaNAgPP/8820aROXl5YnlZ60vhw8fttu4SFtCObOQueov5HI5YmJiALT8DqQmBGlUWt4z0dHRcHd3R2NjY4ez4H3JaDRi6tSpGDRokEtWLQjvF9Zu4dLXaLsw6Xl4eKC2thbFxcW9riry8PCgclEH4+npKTbRcrZsNwXdvXfVVVfhgQce6FWz0OHDh2PJkiXiBE5XFi1ahGuvvVacSNXr9di6dSt+/fVXmM1mjBw5sl8lkEjv2CXofv/997FgwQL4+Pjg4YcfxsMPPwxfX19ceeWVeO+99+zxksjIyIDZbMZ///tfnDlzBm+++SY++OAD/O1vf2v32F27dqGkpES8CLNexP6EgHPgwIESj6TvCc2tHCXoHjRoEOLj4yno7iGZTCZ+8GdlZfXoOZqamvDjjz8iIyOjV2NRqVSYM2cOlixZ4pK9EpylvLy+vh4ABd1SCgsLA8dxqK+v7/Hx4ihLgEjHnHFdt06nE7OztKa751QqVZ9+xrWuYKusrMT69etx+vRpyGQyzJ8/HzfccIPD7UpDHJddystffvllvPnmm1i9erV420MPPYTp06fj5ZdfxqpVq2z+mgsWLMCCBQvE7+Pj43Hu3DmsX78er7/+epvHBgUFuWQ2yNFpNBrU1NSA4ziX6q5sKaFDeF5eHnielzw4mjp1Km1t0UsJCQk4c+YMsrOzcemll1r983/88QeSk5ORnJyMZ5991qUaoNnSsGHDEBAQ4BDLMroiZLq9vLwkHkn/5ebmhpCQEJSXl6OkpKRH+6WnpaXh6NGjmDRpEsaMGWOHUZLeuOaaa6BSqZxqcksmk+Hmm2+GVqvtthM26Z7BYEBOTg6GDh1q8c/k5OSgoKAA48aNs/p9oba2Fp999hm0Wi28vb1x00039cvzWNI7dsl0q9XqNgGw4PLLLxcbSfSF2traDtdiXXPNNQgNDcWMGTPw448/dvkcOp0OGo2mzYX0jFDOHBER0S8/dKKioiCXy1FfX9/rGXqDwYD8/HzKyEhs8ODBAICSkhIx4LJG6y0Ue5rt1ul0yMjI6NUaN0cXFhaGxMREh58spfJyxyB0Iu5ps6X09HQUFRWhpqbGlsMiNhIcHAwfHx/JJ66t4ebmhuHDh/d6qyvCllO99dZb2Lx5M8rKyiz+ucOHD2Pv3r04cuSI1a9pMBjAcRwGDRqEe+65hwJu0iN2CbqvueYafP/99+1u37ZtGxYuXGiPl2wnOzsb77zzDu69917xNm9vb7zxxhvYsmULtm/fjhkzZmDRokVdBt5r166Fn5+feBHW5ToynU6HrKwslJeXSz2UNvpzaTkAKBQKsXt/b0vMhU7oJ0+e7NHP5+bm9ihIJG15eXkhMjISbm5uPfp7UyqVuOSSSwCgV/+XX3/9NT7++OMe/TyxHQq6HUNERAQANhlmLZ1Oh+zsbADUtZwQR6RQKMTKwRMnTlj0MxqNRvy7FrYes0ZwcDDWrFmDJUuW9LueRMR27FLLOGLECLz00kvYu3cvkpKSALAZpoMHD+Kxxx7D22+/LT72oYce6vK5nn76abzyyitdPubs2bMYNmyY+H1RUREWLFiAm266CXfffbd4e3BwMB599FHx+0mTJqG4uBivvfYarrnmmg6f+5lnnmnzMxqNxuED7127duH48eOYMmVKhxUHUunvQTfA/u1qtbpXGerGxkZxm6qoqCirf95oNGLTpk0wGo1YvXq1uAUL6Zkbb7wRPj4+VpWGl5SUICwsDDKZDOPHj8f+/fuRm5uL6upqqzslC1uFCSchrqqwsBBFRUVISEhw2G7Sfn5+CAwM7FFJM7Gd1plua5fyZGZmwmQyITg4GCEhIfYaIukFnU6HP//8E7W1tbjhhhucIuOdl5eHhoYGREVF0ZpuGxg/fjzS09ORlpaGyy67rNsu9snJyeB5HgMHDuzxOY8zHGfEsdkl6P74448REBCA9PR0pKeni7f7+/u3ycZwHNdt0P3YY49h+fLlXT6m9RY5xcXFmDNnDqZNm4YPP/yw27FOmTIFO3fu7PR+lUrldKXQsbGxOH78uMM07AJYY5oZM2YgLy+vX5flzJw5E3PmzOnVc6SlpQFgJbdhYWFW/3xRURGMRiO8vLwcNnhxJl1tOdIRjUaDjRs3IiAgAEuWLIG/vz8GDRqE8+fPIzk5uU3JuSVceX/u1vbt24fs7GzI5XKHPW4XLVok9RAI2HtjdHQ0wsPDYTKZLJ4Q43le3M1k+PDhdJLtoBQKBQ4dOgSe53H55Zc7xSTX0aNHcfbsWcyfP596qdhAfHw8/P39oVarkZ6e3mXvBbPZjOTkZAA9y3ITYit2CbqF/X9tISQkxOLZ5qKiIsyZMwcTJkzAhg0bLNo3NyUlRSxFcxVCJrm0tBSNjY3i9hpS4jgOY8eOxdixY6UeiqTkcnmvn0P48Bg3bhw4joPJZALHcRbvEy38fcbGxtJJpY1Zsl/3b7/9Br1eDzc3N7Hh1vjx43H+/HmkpKRg9uzZFh8ntbW1qKqqAsdxLt+FPiwsDNnZ2SgtLZV6KMTBubm5YeXKlVb/XHp6OoqLi6FUKmntrQMT9k2urq5GVVWVUwTdQj8j2i7MNjiOw7hx4/DHH3/g6NGjGD16dKefvTk5OaitrYW7uzstGSGSsts+3X2tqKgIs2fPxoABA/D666+joqICpaWlbU7QPv30U3z11VfIyMhARkYGXn75ZXzyySd48MEHJRy57Xl7e4vlM/n5+RKPhnTEbDb3qPFVSUkJSktLIZfLMXr0aKSkpOCdd96xqgmX0NDO1cuR+1JaWhreffdd7Nmzp8vHZWdnIz09HRzH4aqrrhInPYYOHYqxY8fi2muvtXjyBGjJckdGRsLd3b3n/wAnIDRRs6ZxDiGWMpvN4t9vUlISrct3cMK2YZWVlRKPxDK0R7ftjRs3DgqFAsXFxfj55587XbYn9EtJTEykHUKIpFwm6N65cyeys7Oxe/duREdHIyIiQry09s9//hMTJkzAlClTsG3bNnz99ddYsWKFRKO2HyHbbYsSc51OhxMnTkCv1/f4OVJSUlBSUgKz2dzr8Ti7lJQUvPrqq/jtt9+s/lkhyz1s2DB4enqipqYGtbW1OHDggEXrxA0GAwoLCwHA5TOjfa2qqkps1NIRo9GIHTt2AAAmT57cphO3XC7Htddei8GDB1tVfdBfSsuBtkG3I76PlJSUYN26dfjyyy+lHgppZjAYLA7KZDIZFi1ahGHDhmHatGl2HhnpLSGx4AxBt16vR0NDAwAKum3Jx8dHXNPf2Tp5nufh4eEBNzc3Ki0nknOZoHv58uXgeb7Di2DZsmVIT09HfX09amtrceTIEdx4440Sjtp+bBl0Hz58GD///DN++eWXHv18fX09tm3bhg8//NCltzWylLe3N3Q6nZhxtpTJZBLXcwtl+pMnT4ZCoUBJSYlFyzoKCgpgMpng4+PjsOtindGgQYMAsIDw9OnTHR7nBw4cQHV1NXx8fHq9rh9gJxPC/7nw+q4sMDAQCoUCBoPBIbdy0mq10Gq1qK+vl3ooBGx51dq1a7FhwwaYTCaLfiYmJga33HILlEqlnUdHekvIdPd2+82+IJSWq1Qql69I6mvDhg3DqlWrMGvWrA4nrDmOw9VXX43HH3+8Rz1wCLEllwm6SVtC6XBJSQl0Ol2vnkvo1n7q1CkYDAarf14ocQ8JCYGnp2evxuIKYmJiwHEc1Gq1VfvWy+VyrFixAjNnzhQzm15eXuLs7YEDB7p9DiFIi4uLo/XcNuTp6Sn+nXz33Xd49dVX8cknn4hd5quqqsT/n/nz53fanLGmpgY7d+4Umzl1heM4rFy5EldddZW4FZ0rk8lk4kmTI67rpu3CHEtQUBCUSiUaGhq6LD0F0KPPNSItIdPtDEE3lZbbV+tu5Hq9HgUFBe0eQxNpxBHYNOg+ffq0LZ+O9IKvry+uvfZa3H///b1+s4mLixM7NJ85c8bqnxcyuv15q7DWVCqVuOzB2kqE0NBQzJkzp82636SkJMhkMuTm5qKoqKjLn588eTIWLVpEZVZ2cO2112LSpEkICgoCz/MoKCgQT7YAtr3boEGDumzkUlRUhL/++guHDh2yqIQ6ICAAEydOtEmDPmdAQTexlJubG6677jpwHIeUlJRO+y1otVq8+eab2LVrl8UZcSI9IdPd0NDg8P9vFHT3jcbGRnz66af4/PPPUVRUhIqKCpSUlEg9LEJENu0okJiYiEmTJuGuu+7CrbfeShvIS8wWncKNRiMUCgXGjRuHPXv2IDk52ernFQJLatzVYuDAgSguLsaFCxeQmJjYq+fy9/fH6NGjcerUKRw8eBA333xzp4/18fHpcmsN0nNBQUG48sorAbCMdU5Ojrg9XlBQEJYvXw6dTtdlhcGwYcPg4eEBjUaD7OxsDBkypE/G7iymTJmCsWPHIjQ0VOqhtCME3UJHeiK9oUOHYuHChfjpp59w4MAB+Pr6YtKkSW0es3fvXjQ2NiI/P9+qJoZEWp6enlizZg18fX0dvmpryJAh8Pb2ptJyO1MqlfDw8IDBYMCmTZsQGhqKvLw8zJ49G7NmzZJ6eITYNtO9b98+jBw5Eo899hgiIiKwbNky7N+/35YvQfqQwWDAunXrsHnzZgwdOhQcxyE/P9+qxiWNjY1it2HKdLewds39/v378d1336G4uLjD+6dPnw4AOHv2bJvsqiA9PV0sdSb2FxAQgAkTJrTZ7pDjuG5PuhQKhTgpInRc7YjRaMSWLVtw9OhRh8/y2FJoaChiYmI6Lc+XkrCWmzLdjmX8+PGYPXs2AOCXX37B2bNnxfsqKirE5pTz5s1z+OCNtBCaZznD/5mfnx+GDx9OzUvtTC6X4+abb0ZERAQaGhrEKsuEhARpB0ZIM5sG3Zdccgk++eQTlJSU4J133kFeXh5mzZqFIUOG4JVXXnHIkkBXZjabcfz4cXz33Xc96jyelZWFxsZGlJaWIiQkRMy6dRUMXExYzx0UFEQno60IQXdVVRW0Wm2XjxX+H0+fPt3p+rWQkBDMnTsXK1eubFPC1tTUhB9++AFbtmzB9u3bUV1dbbN/A7EPofQ/MzOz02OjoKAA6enp2L9/P2XnHASVlzuumTNnin9XJ0+eFNd37969GzzPY9iwYWJVCiHEeSmVStx+++3ieVB4eHi7XYwIkYpdzta8vLywYsUK7Nu3D5mZmbjpppvw3nvvYcCAAbjmmmvs8ZKkAzKZDAcOHMDp06c7bCzRHWGN/qhRo8BxHMaNGweA7Uls6ZY9QiaXstxtubu7Y9y4cZg5c2a3M/W5ubnQaDRwd3fHsGHDOn3cjBkz2jTUunDhAj744AOcOnUKHMchKSmp0201iOMICQnBgAEDwPO8mIW72Pnz5wGwrcKcIdNjS2fPnsWOHTs6rfqQip+fH4KCguDr6yv1UMhFOI7DVVddhcsvvxy33HKLWLV17tw5cByHuXPnSj1E0gMXLlzAN998g927d0s9lC4dO3YMZ8+epYZ9fcTb2xt33HEHEhMTccUVV/S7z0jiuOy+S/zgwYPxt7/9DQMHDsQzzzyD7du32/slSSsDBw5Eamoq8vLyrNpWSKfTITMzEwALugFWonP55Zdj9OjRFmfX5syZg4SEBOpa3gFLJ6CEwGv06NFwc3Pr9vFGoxG7du3CkSNHALA139dddx1lcpzI+PHjkZ+fj+TkZFxyySUwGo1ITk5GUVERCgsLxYqF/rA/98VOnz6N9PR0+Pn5ITIyUurhiK6//nqph0C6IJPJkJSUBIBtt7dz504AwLhx48SmXMS5NDQ04OzZs4iMjHTYiRODwSBut/rEE09Y9BlOei8wMBDXXXed1MMgpA27Bt1//vknPvnkE3z33XeQyWS4+eabsXLlSnu+JLmIEHRb2yU7IyMDJpMJwcHBYsfg1ictlnJzc6N1TL3Q0NCAjIwMABArDbpiMBiwbds2scv82LFjsWDBAodcA0s6N2LECOzduxdDhgyBwWCAXC7Hzp07YTQaxcdERkZi6NChEo5SGmFhYUhPT6flSqTHjEajuKuHsN6bOB9hsqSyshI8zztkRlPYFtTNzQ0eHh4Sj4YQIiWbB93FxcXYuHEjNm7ciOzsbEybNg1vv/02br75ZurqKgGhY3hRUREMBoPFs6wXl5Z3xFE/5JxJY2MjLly4gNjY2A6bbKWlpcFkMlm8LkmhUMBgMMDX1xcLFizA8OHD7TFsYmdubm546KGH2vx9TZo0CUqlEtHR0YiKiuq3J3Dh4eEAHGvbsPr6enh6etL7oZPQ6XRwc3PDokWLaJcVJxYQEACO46DX66HVah1yaYcQdPv7+9P7AyH9nE2D7iuuuAK7du1CcHAwli5dijvvvLNfZmIcSUBAAHx8fKDValFYWGhR1rm+vl5cMyqUlreWm5uL/fv3Y8CAAV1mCY4dO4aqqiqMGTOGGll0YuPGjSgvL8fNN9/cLkBuvabXkiw3wNYu3nrrrfTh7gIu/j+8/PLLJRqJYxGC7srKSnFLQ2vpdDp89NFH8PPzw5IlS3r99/L111+jqqoKN9xwQ78s+Xc23t7euPXWW6UeBuklhUKBkJAQlJeXo6ioyCGDbtqjmxAisGkjNTc3N3z77bcoLCzEK6+8QgG3A+A4Tsx2C9sndEehUGD+/PkYO3YsgoKC2t1fX1+P3NxcJCcnd9lQLTU1FUeOHBG3DCPtCeus8/LyYDQaUVpaiqysLAAs6E5MTER4eDhGjx5t8XNSwE1cmY+PDzw9PcHzPMrLy3v0HGfPnkVVVRUUCkWv/150Oh0KCwvR0NCAwMDAXj0XIcQ6QvPQoqIiiUfSMSHopiamhBCbZrp//PFHWz4dsZGBAwfi9OnT4pY23VGpVJgyZUqn9w8bNgweHh7QaDQ4f/58h3sgnj17VvwQFIJ+0t7AgQNx/PhxnDhxAseOHQPP81AqlXj66achk8kwbdo0TJs2TephEuIwOI5DWFgYcnNzUVpa2qNmakKfBCFr3hsXLlwAz/MICAigbBYhfSwqKgonT55EYWGh1EPpUE1NDQBWdUgI6d/s3r2cSG/UqFEYOXJkh2uGe0KhUCAxMRFHjhzByZMn2wTder0ev/32m7iXd3x8PM3wdiEuLg4KhUJskOXu7o7Q0FDodDqb/X8R4mrCw8ORm5vbo33ndTodsrOzAbCGdb2Vk5MDoH92kidEatHR0ZDJZJDJZA7ZZ6ayshIAqEM+IYSC7v7Ams7VZ8+eRWNjI4YPH95lo6bx48fjyJEjyMzMRF1dHby9vVFcXIytW7eiqqoKADBt2jRceumlDvch6Ei8vLxw9913Q6vVIjQ0FN7e3vT7IqQbSUlJmDZtGry9va3+2XPnzsFkMiEgIAD5+fnYt28frr/++h6tDQco6CZESiEhIXjmmWd6/Pdrb9dffz3Ky8vFMnhCSP/lmO9SxG66mwk+cOAAiouLYTKZMGnSpE4fFxoaiujoaBQWFuLUqVOYPn060tLSUFVVBR8fH1x33XW0VZiFQkNDERoaKvUwCHEavek4nZ6eDoBVAO3fvx9arRYXLlzAoEGDrH4urVaLiooKALSMhhApcBznsAE3QJ/vhJAWNm2kRhxXYWEhPv74Y2zatKnTx1RXV6O4uBgcx1lUdjl+/HgAwMmTJ8HzPObOnYukpCTcf//9FHATQhxO69LykSNHioG2cJu1cnNzAQARERHw9PS0zSAJIT3SVWNXQgiRmuNODxKbUiqVKCwshEKhgMlkglwub/cYYW/u+Ph4i/ZUHzlyJM6cOYPRo0eD53koFAra1ogQ0ieOHTuGzMxMTJkyBYMHD7boZ8rLy6FQKODv74/Q0FAMHjwYKSkp4haJ1goPD8eMGTMccqsiQvqLsrIy/PDDD+B5Hvfdd5/UwxFlZ2ejvLwccXFxtG0qIYSC7v4iJCQEnp6eaGhoQHFxMWJiYto9Rgi6R44cadFzKpVKLFmyxKbjJIQQSxQXFyM7OxuRkZEWB90xMTF4/PHHUVtbC47jEB8fD47jUFFRgdraWqubPoaGhmLu3Lk9GT4hxEa8vb1RWloKAGhqanKYJqRnzpxBSkoKZs2aRUE3IYTKy/sLjuMwcOBAAO336y4oKMAXX3yBiooKyOVyDB8+XIIREkKI5YTtvsrKyqz6OYVCgaCgIACAh4eH2OCopyXmhBBpeXl5idv1FRcXSzuYVoTO5SEhIRKPhBDiCCjo7keEoDszM1PcOxJg66CE8sqpU6c6zCwxIYR0Rgi6hQxXd3Q6HXieb3e7sK7b2hLzCxcuIDMzEzqdzqqfI4TYnjB55ij7dfM8LzZZpO3CCCEABd39ihB0FxYW4tChQ+LtMTExuOyyy7Bq1SrMmzdPquERQojFwsLCAAC1tbVobGzs9vE//PAD3nnnnXYZ7cGDB4PjOBiNRqte//Dhw/jqq69w9OhRq36OEGJ7UVFRAICioiKJR8LU1dVBp9OB4zixsoYQ0r/Rmu5+JCwsDGFhYaioqIDBYBBvl8lkmDZtmoQjI4QQ67i7u8Pf3x9qtRplZWVdbtml0+mQlZUFk8nUbm/vyMhIPPnkk1ZV+JjNZrFzOe3PTYj0Wme6u9satTNVVVUoKCjAkCFDer0bgVBaHhAQ4NBbmhFC+g69E/QjHMfhnnvugclkgpubm9TDIYSQXgkPD4darUZpaWmXQbcQcAcGBooZcgHHcVYvqSkuLoZOp4O7uzs1SCLEAYSHh0Mul6OhoQFqtRoBAQFWP0dqair+/PNPAEBCQgJuv/32Ho+HSssJIRejoLufkclkkMloVQEhxPmFhYUhJycHer2+y8elp6cDAEaMGNFlBkyn00GlUnX7ujk5OQCAuLg4ej8lxAEoFAoMHToUMpkMJpOpR8+RkZEhXs/JyYHRaOxxllrIdFPQTQgRUNBNCCHEKc2YMQOzZs3qMpDW6/XIysoCwILujphMJmzcuBFFRUV49NFH25WgX0woLY+Li+vhyAkhtnbTTTf1+GerqqpQXl4uTqKZTCaUlpaKZevWmjdvHsaOHUuNaQkhIpeaoo+NjQXHcW0u//73v9s8JjU1FZdccgnc3d0RExODV199VaLREkII6Q2FQtHt2s3MzEwYjUYEBASIHc8vJpfLYTKZwPN8t13MDQYDCgoKANB6bkJchZDljo2NxeDBgwH0rhO6UqlEZGQkAgMDbTI+Qojzc6mgGwBefPFFlJSUiJcHH3xQvE+j0eDyyy/HwIEDceLECbz22mt44YUX8OGHH0o4YkIIIfZiaWm5pVuHFRQUwGQywc/Pj06oCXEwwlZd1paYC0H38OHDHa4TOiHENbhcebmPj0+n2Ywvv/wSer0en3zyCZRKJUaOHImUlBSsW7cO99xzTx+PlBBCSG/t3bsXKSkp8Pf3x4IFCxAWFtYmuJ48eTI8PT0xevToLp9n8ODBOHDgALKzs2E2mztdqx0XF4dVq1ZBo9H0qEMyIcR+3nvvPVRVVWHlypUWl4ZrNBoxqz106FCxCVpPM90VFRU4evQooqKiMHbs2B49ByHE9bhcpvvf//43goKCMG7cOLz22mtt9l49dOgQZs6cCaVSKd42f/58nDt3DjU1NR0+n06ng0ajaXMhhBDiGIxGI2pra3HhwgX897//xbp167Bt2zacPn0ajY2NiI2NxcKFC9t1Lb9YdHQ0lEolGhsbUVJS0unjOI5DcHAwlZYT4oCEPbGtCZiFx0ZHR8PHx0fMdKvVatTV1Vk9hsLCQhw/fhypqalW/ywhxHW5VKb7oYcewvjx4xEYGIi//voLzzzzDEpKSrBu3ToAQGlpabvGN8KJWGlpaYdbTKxduxb/93//Z//BE0IIsdqsWbPg5+eH7Oxs5Obmoq6uDikpKUhJSYGHhweeeOIJizLScrkc8fHxyMjIQHZ2tnjiTQhxHlFRUcjMzLSqNHzEiBF47LHHUF9fDwBQqVSIjIyEQqFAY2Njt40VL0adywkhHXH4oPvpp5/GK6+80uVjzp49i2HDhuHRRx8Vb0tMTIRSqcS9996LtWvXWrQNTEeeeeaZNs+r0WgQExPTo+cihBBiW25ubpg0aRImTZoEo9GI/Px8ZGdnIzs7GyEhIVaVgA8ePBgZGRk4f/48Zs2a1e7+zMxMnDp1CiNHjuy0EzohRDpCSbm1peHe3t5tguu77rqrx8tHKOgmhHTE4YPuxx57DMuXL+/yMZ2V+U2ZMgVGoxF5eXkYOnQowsPDUVZW1uYxwvedrQNXqVQ9DtgJIYT0HYVCgfj4eMTHx+Pyyy+3upnS4MGDMWLECCQkJIi36XQ6ZGdnIysrC5mZmWhsbISvry8F3YQ4oItLw7vLUvM832Fw3Zt+DULQHRIS0uPnIIS4HocPukNCQnr8xpWSkgKZTIbQ0FAAQFJSEp599lkYDAa4ubkBAHbu3ImhQ4d2WFpOCCHEecnlcqse7+fnJ+71e+rUKZw6dQoXLlyA2WwWH+Ph4YExY8bYdJyEENtQqVQICQlBRUUFioqKMHTo0C4f/+2336KhoQFz587tsPFaU1MTVCqVxUG40WgUewRRppsQ0prDB92WOnToEI4cOYI5c+bAx8cHhw4dwiOPPIIlS5aIAfXtt9+O//u//8PKlSvx1FNP4fTp0/jPf/6DN998U+LRE0IIcSSFhYXIzc0FwJozJSQkYOjQoYiJibE6mCeE9J3o6GhUVFSgsLCwy6Bbr9cjMzMTRqMRCkXb02Ge5/Hxxx+jqKgI999/v5i86U5VVRV4nodKpbJ6LTghxLW5TNCtUqmwefNmvPDCC9DpdIiLi8MjjzzSZj22n58ffv/9d6xatQoTJkxAcHAwnnvuOdoujBBCSBtjxoxBYGAghgwZInZEJoQ4vuHDh8Pb2xtDhgzp8nHnz5+H0WiEv79/u90NOI4TKyILCwstDrqFLLe1/SQIIa6P43mel3oQzkSj0cDPzw+1tbXw9fWVejiEEEIIIcRK33//PVJTUzF16lTMnz+/3f27d+/GgQMHMG7cOFxzzTUWP29TUxMaGxtp2SIh/YSlsaHLZLoJIYQQQgjpjslkwrlz5wCwzHhHhKZs1nZCd3d3h7u7e+8GSAhxOTKpB0AIIYQQQoitNDQ0IDMzE8XFxR3en5eXB51OBy8vr063gRUaq1VUVECn09ltrISQ/oGCbkIIIYQQ4jIOHTqEr776CkeOHEFHqyjPnj0LABg2bFina6+9vb3h7+8PACgqKur2Nc1mMzZt2oQdO3ZAr9f3fPCEEJdE5eWEEEIIIcRlCKXhqampyMnJwaBBgxAfH4/4+Hh4e3sjNjYWtbW1GDFiRLfPo1arUVhYiPj4+C4fq1arkZWVBblc3uEacUJI/0ZBNyGEEEIIcRmDBw/GiBEjkJmZibq6Opw6dQqnTp0CAFx11VWYOHEiRo0a1e3zDBkyBAqFAhEREd0+trKyEgDbYlAmo0JSQkhbFHQTQgghhBCXoVAocNNNN8FoNKKgoADnz5/H+fPnUVpaisjISIufJzExEYmJiRY9tqKiAgDbLowQQi5GQTchhBBCCHE5CoUCcXFxiIuLw7x581BfXw8PDw+7vJaQ6Q4ODrbL8xNCnBvVvxBCCCGEEJfn5eVldem32WxGaWkpqquru3wcBd2EkK5Q0E0IIYQQQkgHdu7cif/+9784cuRIp4/heZ7KywkhXaKgmxBCCCGEkA4Ia8C72jasqakJMpkMHMchKCior4ZGCHEitKabEEIIIYSQDkRHRwMASktLYTQaoVC0P3X28PDAE088gcbGxg7vJ4QQynQTQgghhBDSAX9/f3h6esJkMqG0tLTTx3EcB09Pzz4cGSHEmVDQTQghhBBCSAc4jhOz3YWFhRKPhhDirCjoJoQQQgghpBPdBd0//PADNm3ahOLi4r4cFiHEiVDQTQghhBBCSCeioqIAAHK5vMP7z58/j6ysLJjN5r4cFiHEiVC3B0IIIYQQQjoRFRUFDw8PLFy4EDzPg+M4JCcnQ6fTYeDAgairqwNAe3QTQjpHQTchhBBCCCGdUKlUuOeee+Dm5ibedvjwYZSXl4vfe3t7w93dXYrhEUKcAJWXE0IIIYQQ0gV/f3/xOs/zGDNmDGJjYyGTsVPpmJgYiUZGCHEGlOkmhBBCCCHEQhzHYdq0aZg2bRqamppQXFyMiIgIqYdFCHFgFHQTQgghhBDSA+7u7oiPj5d6GIQQB0fl5YQQQgghhBBCiJ1Q0E0IIYQQQgghhNgJBd2EEEIIIYQQQoidUNBNCCGEEEIIIYTYCQXdhBBCCCGEEEKInVDQTQghhBBCCCGE2AltGWYlnucBABqNRuKREEIIIYQQQgiRihATCjFiZyjotpJWqwUAxMTESDwSQgghhBBCCCFS02q18PPz6/R+ju8uLCdtmM1mFBcXw8fHBxzHST2cDmk0GsTExKCgoAC+vr5SD4c4EDo2SEfouCCdoWODdISOC9IZOjZIZ1z12OB5HlqtFpGRkZDJOl+5TZluK8lkMkRHR0s9DIv4+vq61EFNbIeODdIROi5IZ+jYIB2h44J0ho4N0hlXPDa6ynALqJEaIYQQQgghhBBiJxR0E0IIIYQQQgghdkJBtwtSqVR4/vnnoVKppB4KcTB0bJCO0HFBOkPHBukIHRekM3RskM7092ODGqkRQgghhBBCCCF2QpluQgghhBBCCCHETijoJoQQQgghhBBC7ISCbkIIIYQQQgghxE4o6CaEEEIIIYQQQuyEgm5CCCGEEEIIIcROKOh2Qe+99x5iY2Ph7u6OKVOm4OjRo1IPifShtWvXYtKkSfDx8UFoaCgWLVqEc+fOtXlMU1MTVq1ahaCgIHh7e+OGG25AWVmZRCMmUvj3v/8NjuOwZs0a8TY6LvqvoqIiLFmyBEFBQfDw8MDo0aNx/Phx8X6e5/Hcc88hIiICHh4emDdvHrKysiQcMekLJpMJ//jHPxAXFwcPDw8MGjQI//znP9F64xs6Nlzfn3/+iauvvhqRkZHgOA4//PBDm/stOQaqq6uxePFi+Pr6wt/fHytXrkRdXV0f/iuIPXR1bBgMBjz11FMYPXo0vLy8EBkZiaVLl6K4uLjNc/SXY4OCbhfz9ddf49FHH8Xzzz+PkydPYsyYMZg/fz7Ky8ulHhrpI/v27cOqVatw+PBh7Ny5EwaDAZdffjnq6+vFxzzyyCP46aefsGXLFuzbtw/FxcW4/vrrJRw16UvHjh3Df//7XyQmJra5nY6L/qmmpgbTp0+Hm5sbduzYgfT0dLzxxhsICAgQH/Pqq6/i7bffxgcffIAjR47Ay8sL8+fPR1NTk4QjJ/b2yiuvYP369Xj33Xdx9uxZvPLKK3j11VfxzjvviI+hY8P11dfXY8yYMXjvvfc6vN+SY2Dx4sU4c+YMdu7ciZ9//hl//vkn7rnnnr76JxA76erYaGhowMmTJ/GPf/wDJ0+exNatW3Hu3Dlcc801bR7Xb44NnriUyZMn86tWrRK/N5lMfGRkJL927VoJR0WkVF5ezgPg9+3bx/M8z6vVat7NzY3fsmWL+JizZ8/yAPhDhw5JNUzSR7RaLZ+QkMDv3LmTnzVrFv/www/zPE/HRX/21FNP8TNmzOj0frPZzIeHh/OvvfaaeJtareZVKhX/1Vdf9cUQiUSuuuoq/s4772xz2/XXX88vXryY53k6NvojAPz3338vfm/JMZCens4D4I8dOyY+ZseOHTzHcXxRUVGfjZ3Y18XHRkeOHj3KA+AvXLjA83z/OjYo0+1C9Ho9Tpw4gXnz5om3yWQyzJs3D4cOHZJwZERKtbW1AIDAwEAAwIkTJ2AwGNocJ8OGDcOAAQPoOOkHVq1ahauuuqrN/z9Ax0V/9uOPP2LixIm46aabEBoainHjxuGjjz4S78/NzUVpaWmbY8PPzw9TpkyhY8PFTZs2Dbt370ZmZiYA4NSpUzhw4ACuuOIKAHRsEMuOgUOHDsHf3x8TJ04UHzNv3jzIZDIcOXKkz8dMpFNbWwuO4+Dv7w+gfx0bCqkHQGynsrISJpMJYWFhbW4PCwtDRkaGRKMiUjKbzVizZg2mT5+OUaNGAQBKS0uhVCrFNzxBWFgYSktLJRgl6SubN2/GyZMncezYsXb30XHRf+Xk5GD9+vV49NFH8be//Q3Hjh3DQw89BKVSiWXLlon//x19ttCx4dqefvppaDQaDBs2DHK5HCaTCS+99BIWL14MAHRsEIuOgdLSUoSGhra5X6FQIDAwkI6TfqSpqQlPPfUUbrvtNvj6+gLoX8cGBd2EuLBVq1bh9OnTOHDggNRDIRIrKCjAww8/jJ07d8Ld3V3q4RAHYjabMXHiRLz88ssAgHHjxuH06dP44IMPsGzZMolHR6T0zTff4Msvv8SmTZswcuRIpKSkYM2aNYiMjKRjgxBiMYPBgJtvvhk8z2P9+vVSD0cSVF7uQoKDgyGXy9t1Gy4rK0N4eLhEoyJSWb16NX7++Wf88ccfiI6OFm8PDw+HXq+HWq1u83g6TlzbiRMnUF5ejvHjx0OhUEChUGDfvn14++23oVAoEBYWRsdFPxUREYERI0a0uW348OHIz88HAPH/nz5b+p8nnngCTz/9NG699VaMHj0ad9xxBx555BGsXbsWAB0bxLJjIDw8vF1DX6PRiOrqajpO+gEh4L5w4QJ27twpZrmB/nVsUNDtQpRKJSZMmIDdu3eLt5nNZuzevRtJSUkSjoz0JZ7nsXr1anz//ffYs2cP4uLi2tw/YcIEuLm5tTlOzp07h/z8fDpOXNjcuXORlpaGlJQU8TJx4kQsXrxYvE7HRf80ffr0dtsKZmZmYuDAgQCAuLg4hIeHtzk2NBoNjhw5QseGi2toaIBM1vZUUS6Xw2w2A6Bjg1h2DCQlJUGtVuPEiRPiY/bs2QOz2YwpU6b0+ZhJ3xEC7qysLOzatQtBQUFt7u9Xx4bUndyIbW3evJlXqVT8xo0b+fT0dP6ee+7h/f39+dLSUqmHRvrI/fffz/v5+fF79+7lS0pKxEtDQ4P4mPvuu48fMGAAv2fPHv748eN8UlISn5SUJOGoiRRady/neTou+qujR4/yCoWCf+mll/isrCz+yy+/5D09PfkvvvhCfMy///1v3t/fn9+2bRufmprKX3vttXxcXBzf2Ngo4ciJvS1btoyPiorif/75Zz43N5ffunUrHxwczD/55JPiY+jYcH1arZZPTk7mk5OTeQD8unXr+OTkZLEDtSXHwIIFC/hx48bxR44c4Q8cOMAnJCTwt912m1T/JGIjXR0ber2ev+aaa/jo6Gg+JSWlzTmpTqcTn6O/HBsUdLugd955hx8wYACvVCr5yZMn84cPH5Z6SKQPAejwsmHDBvExjY2N/AMPPMAHBATwnp6e/HXXXceXlJRIN2giiYuDbjou+q+ffvqJHzVqFK9Sqfhhw4bxH374YZv7zWYz/49//IMPCwvjVSoVP3fuXP7cuXMSjZb0FY1Gwz/88MP8gAEDeHd3dz4+Pp5/9tln25ww07Hh+v74448OzyuWLVvG87xlx0BVVRV/22238d7e3ryvry+/YsUKXqvVSvCvIbbU1bGRm5vb6TnpH3/8IT5Hfzk2OJ7n+b7LqxNCCCGEEEIIIf0HrekmhBBCCCGEEELshIJuQgghhBBCCCHETijoJoQQQgghhBBC7ISCbkIIIYQQQgghxE4o6CaEEEIIIYQQQuyEgm5CCCGEEEIIIcROKOgmhBBCCCGEEELshIJuQgghhBBCCCHETijoJoQQQgghhBBC7ISCbkIIIYQQQgghxE4o6CaEEEIIIYQQQuyEgm5CCCGEEEIIIcROKOgmhBBCCCGEEELshIJuQgghhBBCCCHETijoJoQQQgghhBBC7EQh9QCcjdlsRnFxMXx8fMBxnNTDIYQQQgghhBAiAZ7nodVqERkZCZms83w2Bd1WKi4uRkxMjNTDIIQQQgghhBDiAAoKChAdHd3p/RR0W8nHxwcA+8X6+vpKPBpCCCGEEEIIIVLQaDSIiYkRY8TOUNBtJaGk3NfXl4JuQgghhBBCCOnnult2TI3UCCGEEEIIIYQQO6GgmxBCCCGEEEIIsRMKugkhhBBCCCGEEDuhNd2EEEIIIYQQ0sxkMsFgMEg9DOIA3NzcIJfLe/08FHQTQgghhBBC+j2e51FaWgq1Wi31UIgD8ff3R3h4eLfN0rpCQTchhLi69B+BoEFA2EipR0IIIYQ4LCHgDg0NhaenZ6+CLOL8eJ5HQ0MDysvLAQARERE9fi4KugkhxJWVpALf3AGEDANWHZF6NIQQQohDMplMYsAdFBQk9XCIg/Dw8AAAlJeXIzQ0tMel5tRIjRBCXFlBc6Bdc0HacRBCCCEOTFjD7enpKfFIiKMRjonerPOnoJsQQlxZcTL7amwE9PXSjoUQQghxcFRSTi5mi2OCgm5CCHFlQtANAPWV0o2DEEIIIaSfoqCbEEJclb4eqMho+Z6CbkIIIYSQPkdBNyGEuKrSNIA3t3zfQEE3IYQQ4mqWL1+ORYsWtbt979694DjOZbZAmz17NtasWSP1MHqEgm5CCHFVrUvLAaC+QppxEEIIIaRf0Ov17W4zmUwwm80dPFoaHY3R3ijoJoQQV9Uu6KZMNyGEEGIpnufRoDdKcuF5vk/+jWq1Gvfeey/CwsLg7u6OUaNG4eeffxbv/+677zBy5EioVCrExsbijTfeaPPzsbGx+Oc//4mlS5fC19cX99xzDzZu3Ah/f3/8+OOPGDFiBFQqFfLz86HT6fD4448jKioKXl5emDJlCvbu3dvm+Q4ePIjZs2fD09MTAQEBmD9/PmpqarB8+XLs27cP//nPf8BxHDiOQ15eHgBg3759mDx5MlQqFSIiIvD000/DaDSKzzl79mysXr0aa9asQXBwMObPnw+e5/HCCy9gwIABUKlUiIyMxEMPPWS33zPt000IIa5KCLpDhrG13ZTpJoQQQizWaDBhxHO/SfLa6S/Oh6fSvqGa2WzGFVdcAa1Wiy+++AKDBg1Cenq6uBf1iRMncPPNN+OFF17ALbfcgr/++gsPPPAAgoKCsHz5cvF5Xn/9dTz33HN4/vnnAQD79+9HQ0MDXnnlFfzvf/9DUFAQQkNDsXr1aqSnp2Pz5s2IjIzE999/jwULFiAtLQ0JCQlISUnB3Llzceedd+I///kPFAoF/vjjD5hMJvznP/9BZmYmRo0ahRdffBEAEBISgqKiIlx55ZVYvnw5PvvsM2RkZODuu++Gu7s7XnjhBXGMn376Ke6//34cPHgQAJtMePPNN7F582aMHDkSpaWlOHXqlN1+1xR0E0KIK2rSAJVZ7PrgeSzobqiSdkyEEEIIsYuff/4Z3t7ebW4zmUxd/syuXbtw9OhRnD17FkOGDAEAxMfHi/evW7cOc+fOxT/+8Q8AwJAhQ5Ceno7XXnutTdB96aWX4rHHHhO/379/PwwGA95//32MGTMGAJCfn48NGzYgPz8fkZGRAIDHH38cv/76KzZs2ICXX34Zr776KiZOnIj3339ffK6RI0eK15VKJTw9PREeHi7e9v777yMmJgbvvvsuOI7DsGHDUFxcjKeeegrPPfccZDJW2J2QkIBXX31V/Lnt27cjPDwc8+bNg5ubGwYMGIDJkyd3+fvqDQq6CSHEFZWmAuABvxggdDi7jTLdhBBCiMU83ORIf3G+ZK9tjTlz5mD9+vVtbjty5AiWLFnS6c+kpKQgOjpaDLgvdvbsWVx77bVtbps+fTreeustmEwmMSM+ceLEdj+rVCqRmJgofp+WlgaTydTutXQ6HYKCgsTx3HTTTV38KzseY1JSUpu9tKdPn466ujoUFhZiwIABAIAJEya0+bmbbroJb731FuLj47FgwQJceeWVuPrqq6FQ2Cc8pqCbEEJckVBaHjkW8Axm12lNNyGEEGIxjuPsXuJtK15eXhg8eHCb2woLC7v8GQ8PD5u9dkfP3ToQrqurg1wux4kTJ8RgXSBk6G01HkvGGBMTg3PnzmHXrl3YuXMnHnjgAbz22mvYt28f3NzcbP761EiNEEJckRh0jwO8Qth1CroJIYQQ0iwxMRGFhYXIzMzs8P7hw4eLa6AFBw8exJAhQ9oFzt0ZN24cTCYTysvLMXjw4DYXoVw8MTERu3fv7vQ5lEplu5L54cOH49ChQ20azx08eBA+Pj6Ijo7uckweHh64+uqr8fbbb2Pv3r04dOgQ0tLSrPp3WYqCbkIIcUVtgm5WtoWGSqCPuqESQgghxLHNmjULM2fOxA033ICdO3ciNzcXO3bswK+//goAeOyxx7B7927885//RGZmJj799FO8++67ePzxx61+rSFDhmDx4sVYunQptm7ditzcXBw9ehRr167F9u3bAQDPPPMMjh07hgceeACpqanIyMjA+vXrUVnJkgaxsbE4cuQI8vLyUFlZCbPZjAceeAAFBQV48MEHkZGRgW3btuH555/Ho48+Kq7n7sjGjRvx8ccf4/Tp08jJycEXX3wBDw8PDBw4sAe/ye5R0E0IIa6msQaozmHXI8a2ZLqNTYC+TrJhEUIIIcSxfPfdd5g0aRJuu+02jBgxAk8++aSYTR4/fjy++eYbbN68GaNGjcJzzz2HF198sU0TNWts2LABS5cuxWOPPYahQ4di0aJFOHbsmLjuesiQIfj9999x6tQpTJ48GUlJSdi2bZu4zvrxxx+HXC7HiBEjEBISgvz8fERFReGXX37B0aNHMWbMGNx3331YuXIl/v73v3c5Fn9/f3z00UeYPn06EhMTsWvXLvz000/i+nJb4/i+2gTOQaxduxZbt25FRkYGPDw8MG3aNLzyyisYOnSoRT+v0Wjg5+eH2tpa+Pr62nm0hBDSAzl7gc+uBQJigYebt7/4VzhgbAQeSgEC4yQcHCGEEOJ4mpqakJubi7i4OLi7u0s9HOJAujo2LI0N+12me9++fVi1ahUOHz6MnTt3wmAw4PLLL0d9fb3UQyMOoJ/NQRFX1bq0XOBFzdQIIYQQQqTgHO34bEhYoyDYuHEjQkNDceLECcycOVOiURFH8NuZUjz7/Wn859axmD44WOrhENJznQXdtQVsXTchhBBCCOkz/S7TfbHa2loAQGBgYIf363Q6aDSaNhfimnafLUNlnQ57MsqlHgohvdNR0E3bhhFCCCGESKJfB91msxlr1qzB9OnTMWrUqA4fs3btWvj5+YmXmJiYPh4l6Ss1DQYAQLlWJ/FICOmF+ipAnc+uR4xpuV3cNqyi78dECCGEENKP9euge9WqVTh9+jQ2b97c6WOeeeYZ1NbWipeCgoI+HCHpS7XNQXeFtknikRDSCyXNWe6gwYC7X8vt4rZhVX0/JkIIIYSQfqzfrekWrF69Gj///DP+/PPPLjdOV6lUUKlUfTgyIpWaBj0AoIIy3cSZdVRaDlCmmxBCCCFEIv0u6OZ5Hg8++CC+//577N27F3FxtHUOYWrETDcF3cSJFaewrxcH3bSmmxBCCCFEEv0u6F61ahU2bdqEbdu2wcfHB6WlpQAAPz8/eHh4SDw6IhWe56FuznRrmoxoMpjg7iaXeFSE9ABlugkhhBBCHEq/W9O9fv161NbWYvbs2YiIiBAvX3/9tdRDIxKq15tgNLfs0U3ZbuKUtGWApggAB4Qntr2P1nQTQgghhEii32W6eZ7v/kGk36mp17f5vqJOh5hAT4lGQ0gPlaSwryFDAZV32/taZ7p5HuC4Ph0aIYQQQkh/1e8y3YR0RN28nltQrqFMN3FCnZWWAy1ruk16QKftuzERQgghxG6uvvpqLFiwoMP79u/fD47jkJqa2sejsr3ly5dj0aJFUg+jxyjoJgQtncsFFXUUdBMn1FXQrfQE3LzYdVrXTQghhLiElStXYufOnSgsLGx334YNGzBx4kQkJiZ28JO2p9fr293G8zyMRmOfvL4lOhpjX6CgmxAA6sa2mW5a002cDs93HXQDtK6bEEIIsQbPA/p6aS4WLolduHAhQkJCsHHjxja319XVYcuWLVi5cmWnP6vT6fDUU08hJiYGKpUKgwcPxscffyzev2/fPkyePBkqlQoRERF4+umn2wTQs2fPxurVq7FmzRoEBwdj/vz52Lt3LziOw44dOzBhwgSoVCocOHAAZrMZa9euRVxcHDw8PDBmzBh8++23bcZz5swZLFy4EL6+vvDx8cEll1yC8+fP44UXXsCnn36Kbdu2geM4cByHvXv3AgDS0tJw6aWXwsPDA0FBQbjnnntQV1cnPqeQIX/ppZcQGRmJoUOHAgDef/99JCQkwN3dHWFhYbjxxhst+n33VL9b001IR9QXZ7op6CbORlsC1JUBnBwIG9XxY7xCAHU+ZboJIYQQSxgagJcjpXntvxUDSq9uH6ZQKLB06VJs3LgRzz77LLjmni1btmyByWTCbbfd1unPLl26FIcOHcLbb7+NMWPGIDc3F5WVbGvRoqIiXHnllVi+fDk+++wzZGRk4O6774a7uzteeOEF8Tk+/fRT3H///Th48CAAoKSkBADw9NNP4/XXX0d8fDwCAgKwdu1afPHFF/jggw+QkJCAP//8E0uWLEFISAhmzZqFoqIizJw5E7Nnz8aePXvg6+uLgwcPwmg04vHHH8fZs2eh0WiwYcMGAEBgYCDq6+sxf/58JCUl4dixYygvL8ddd92F1atXt5mE2L17N3x9fbFz504AwPHjx/HQQw/h888/x7Rp01BdXY39+/db/n/TAxR0EwKgpp5luhUyDkYzjwptk8QjIsRKQpY7dDgrJe8I7dVNCCGEuJw777wTr732Gvbt24fZs2cDYKXlN9xwA/z8/Dr8mczMTHzzzTfYuXMn5s2bBwCIj48X73///fcRExODd999FxzHYdiwYSguLsZTTz2F5557DjIZK5hOSEjAq6++Kv6cEHS/+OKLuOyyywCwjPrLL7+MXbt2ISkpSXytAwcO4L///S9mzZqF9957D35+fti8eTPc3NwAAEOGDBGf18PDAzqdDuHh4eJtn376KZqamvDZZ5/By4tNULz77ru4+uqr8corryAsLAwA4OXlhf/9739Q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JjMvdhC2dD23YHJz0H3cXtv+tC7Hi5vVs+eQuwFz/sauH/wPC+QJsTExyLRREzVBy17dzhN0N+pNyCpnVSVdldoLQXdaUS00TYa+GJpFzGYe//cj6yp904Romy0XIP3Y4eb4Z+KdgJsHW0YW3pztphJzpydJ0G00GvGvf/0LpaWl4m233nor3n77bTz44INQKrvehqY3Zs+eDZ7n2102btxot9ckvbP7bBkWvrPf5vv81nSxR7cgxLs56K6joLtXTAagOodd7yrTDTSXmAPI3S/uTZlTUd9mXf3JfMffs9UmeB7YthrQ1QJRE4Dpj9juua1c051WVAttkxG+7gqr9xYePyAAHMcCAptPYLUpx7u3d2vdR90AhAwDmmqBQ+/ZZnyEtJJm4yZqAmfcqzu9RAOTmUeIjwphvp1X70T4eSAu2AtmHjia4zjrurcmF+FUYS28lHI8sWCo1MNxPTzPLv1FySngwkG2i8uku1puFybaKeh2epIE3QqFAq+++iqMRsftREkcx6Yj+ThdpMGvp0u7f7AVahuF7cI6z3SH+lJ5uU3U5LGu225egE83a96CBgGhI9ke0pm/AQDSS9iJqqeSrSPuN5nu4x8DOX8ACndg0QeA3IYNesRMt2VBt1BanjQoCHKZdYGtn6cbhob5AABOXLDxSXObcrxbevdcMjkwh1Vg4fD7VpXeE9IdnueRKjZRs0+m+0J1g9NsGyau5+6kiVprUx1sXXedzohXfmXlvg/OTRC3GCU2UpkN/HsAsPtFqUfSdw439yUZeR3gG9FyOwXdLkOy8vK5c+di3759Ur08cSJC+Zmtt+6qqe98j25BS6bbubZhcThiaflgQGbB285FJeZniliVw8LECMhlHEpqm1BS22iPkTqO6hzg93+w6/NeAEK6qRCwlrim27qg29rScoHQ7fxYno2rFIQTlQnLWTlebw2/GogYA+jrgINv9v75CGlWptGhQquDjANGRNg26I7094BSLoPeaEaxk7w3ChMQlpTaCyXmhxxkXfe7e7JRodUhNsgTK6bHSj0c15O5A9BpWINMvfNUb/SYtgw4/S27PuWiviStg+7+lPl3QZIF3VdccQWefvppPP744/jqq6/w448/trkQAgBNBhMKalg31tJaGwfdYnm5667pdpidACzpXN6aUGKevQvQ14tN1CYODMSwcJYxPXlBbeNB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",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "positions_ac = bpms.positions.get()\n",
+ "std_ac = np.std(positions_ac, axis=0)\n",
+ "print(f\"R.m.s. orbit after correction — H: {1e6 * std_ac[0]:.1f} µm, V: {1e6 * std_ac[1]:.1f} µm\")\n",
+ "\n",
+ "fig, axes = plt.subplots(3, 1, figsize=(10, 8))\n",
+ "\n",
+ "axes[0].plot(positions_ac[:, 0] * 1e6, label=\"After\", color=\"C0\", ls=\"-\")\n",
+ "axes[0].plot(positions_bc[:, 0] * 1e6, label=\"Before\", color=\"grey\", ls=\"--\")\n",
+ "\n",
+ "axes[0].set_ylabel(\"H position [µm]\")\n",
+ "axes[0].legend()\n",
+ "\n",
+ "axes[1].plot(positions_ac[:, 1] * 1e6, label=\"After\", color=\"C1\", ls=\"-\")\n",
+ "axes[1].plot(positions_bc[:, 1] * 1e6, label=\"Before\", color=\"grey\", ls=\"--\")\n",
+ "\n",
+ "axes[1].set_ylabel(\"V position [µm]\")\n",
+ "axes[1].legend()\n",
+ "\n",
+ "axes[2].plot(hcorr.strengths.get() * 1e6, label=\"H correctors\")\n",
+ "axes[2].plot(vcorr.strengths.get() * 1e6, label=\"V correctors\")\n",
+ "axes[2].set_ylabel(\"Strength [µrad]\")\n",
+ "axes[2].set_xlabel(\"Index\")\n",
+ "axes[2].legend()\n",
+ "\n",
+ "fig.tight_layout()\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1d72eed8-df85-4e9d-b313-39fc711d28b7",
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.3"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/use_cases/03-orbit_correction.py b/examples/use_cases/03-orbit_correction.py
new file mode 100644
index 000000000..b41ba01fb
--- /dev/null
+++ b/examples/use_cases/03-orbit_correction.py
@@ -0,0 +1,262 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+# In[1]:
+
+
+from pathlib import Path
+from time import sleep
+
+import matplotlib.pyplot as plt
+import numpy as np
+
+from pyaml.accelerator import Accelerator
+from pyaml.common.constants import Action
+
+# ## Facility configuration
+#
+# Edit the `CONFIG_FILE` variable below to select the facility. The rest of the notebook runs unchanged.
+#
+# | Facility | Config file | Control system | Virtual twin |
+# |----------|-------------|----------------|--------------|
+# | SOLEIL II | `config/soleil_ii/p.yaml` | TANGO (`tango-pyaml`) | Apptainer container |
+# | BESSY2 | `config/bessy2/bessy2.yaml` | EPICS (`pyaml-cs-oa`) | Apptainer container |
+# | ESRF EBS | `config/esrf/esrf.yaml` | TANGO (`tango-pyaml`) | Apptainer container |
+#
+# See `README.md` for installation and virtual accelerator startup instructions.
+
+# In[2]:
+
+
+# ── Facility configuration ──────────────────────────────────────────────────
+# Uncomment the facility you want to use:
+
+# CONFIG_FILE = "config/soleil_ii/p.yaml"
+CONFIG_FILE = "config/bessy2/bessy2.yaml"
+# CONFIG_FILE = "config/esrf/esrf.yaml"
+# ────────────────────────────────────────────────────────────────────────────
+
+CONFIG_DIR = Path(CONFIG_FILE).parent
+
+sr = Accelerator.load(CONFIG_FILE)
+print(sr) # string representation
+
+
+# ### Virtual accelerator setup
+#
+# For **live** control mode you need a running control system or emulator.
+# If you want to skip this, run the notebook in **design** mode only.
+#
+# **SOLEIL II / ESRF (TANGO)**
+# ```
+# apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest
+# apptainer run virtual-accelerator.sif
+# ```
+#
+# **BESSY2 (EPICS)**
+# ```
+# apptainer run oras://registry.hzdr.de/digital-twins-for-accelerators/containers/pyat-softioc-digital-twin:default-v0-5-1-bessy.2711893
+# ```
+#
+# > **Note for BESSY2 live mode:** the PV prefix in `config/bessy2/bessy2.yaml` must match
+# > your virtual accelerator instance. Edit the `prefix:` field under `controls:`.
+
+# ### Control mode choice
+#
+# - **`sr.design`** runs in simulation, no control system needed. ORM measurement is fast (set `wait_time = 0.0`).
+# - **`sr.live`** connects to the real machine or twin. Use `wait_time ≥ 1.5 s` for settling.
+#
+# > **BESSY2 live note:** BPM readbacks may be in nm. `orbit_correction.correct(gain=1e-9)`
+# > compensates for the unit mismatch when using a design-mode ORM to correct on live.
+
+# In[3]:
+
+
+SR = sr.design
+# SR = sr.live
+
+wait_time = 0.0 if SR == sr.design else 2.0
+print(SR) # string representation
+
+
+# #### Orbit diagnostics and correctors
+
+# In[4]:
+
+
+bpms = SR.get_bpms("BPM")
+hcorr = SR.get_magnets("HCorr")
+vcorr = SR.get_magnets("VCorr")
+print(f"BPMs: {len(bpms)}, H correctors: {len(hcorr)}, V correctors: {len(vcorr)}")
+
+
+# ### Orbit response matrix
+#
+# The ORM can be saved in multiple formats. Load it into `SR.orbit` before correcting.
+
+# In[5]:
+
+
+print(SR.orm) # string representation
+
+
+# In[6]:
+
+
+SR.orm.measure(sleep_between_step=wait_time)
+SR.orm.save(CONFIG_DIR / "orm.json")
+SR.orm.save(CONFIG_DIR / "orm.yaml", with_type="yaml")
+SR.orm.save(CONFIG_DIR / "orm.npz", with_type="npz")
+
+SR.orbit.load(CONFIG_DIR / "orm.json")
+print("ORM measured, saved and loaded.")
+
+
+# #### Visualise the orbit response matrix
+
+# In[7]:
+
+
+orm_data = SR.orm.get()
+plt.imshow(np.array(orm_data["matrix"]))
+plt.colorbar()
+plt.title("Orbit response matrix")
+plt.xlabel("Corrector index")
+plt.ylabel("BPM index")
+plt.show()
+
+
+# ### Dispersion measurement (optional)
+#
+# The dispersion can be measured and incorporated into the ORM to enable RF-based orbit
+# correction. This is particularly useful for correcting closed-orbit distortions caused
+# by energy errors.
+
+# In[8]:
+
+
+# Uncomment to measure and visualise dispersion
+
+# def disp_callback(action: int, cb_data) -> bool:
+# from pyaml.common.constants import Action
+# if action == Action.APPLY:
+# print("Changing RF frequency")
+# elif action == Action.MEASURE:
+# print("Reading orbit")
+# elif action == Action.RESTORE:
+# print("Restoring RF frequency")
+# return True
+
+# SR.dispersion.measure(callback=disp_callback)
+# disp_data = SR.dispersion.get()
+# plt.plot(disp_data["frequency_response_x"], label="H dispersion")
+# plt.plot(disp_data["frequency_response_y"], label="V dispersion")
+# plt.xlabel("BPM index")
+# plt.ylabel("Orbit / Δf [m/Hz]")
+# plt.legend()
+# plt.show()
+
+
+# ### Introduce orbit distortion
+#
+# Reset correctors to zero, then add small random kicks to simulate a disturbed orbit.
+
+# In[9]:
+
+
+# Reset correctors to zero
+hcorr.strengths.set(np.zeros(len(hcorr)))
+vcorr.strengths.set(np.zeros(len(vcorr)))
+ref_h, ref_v = SR.get_bpms("BPM").positions.get().T
+reference = np.concatenate((ref_h, ref_v))
+
+# Add random kicks to simulate a distorted orbit
+np.random.seed(1)
+std_kick = 1e-6 # rad
+hcorr.strengths.set(hcorr.strengths.get() + std_kick * np.random.normal(size=len(hcorr)))
+vcorr.strengths.set(vcorr.strengths.get() + std_kick * np.random.normal(size=len(vcorr)))
+
+
+# In[10]:
+
+
+positions_bc = bpms.positions.get()
+std_bc = np.std(positions_bc, axis=0)
+print(f"R.m.s. orbit before correction — H: {1e6 * std_bc[0]:.1f} µm, V: {1e6 * std_bc[1]:.1f} µm")
+
+
+# #### Orbit before correction
+
+# In[11]:
+
+
+plt.figure()
+plt.plot(positions_bc[:, 0] * 1e6, label="H (before)", color="C0", ls="--")
+plt.plot(positions_bc[:, 1] * 1e6, label="V (before)", color="C1", ls="--")
+plt.xlabel("BPM index")
+plt.ylabel("Position [µm]")
+plt.legend()
+plt.title("Orbit before correction")
+plt.show()
+
+
+# ### Correct the orbit
+#
+# Standard correction: `SR.orbit.correct(reference=reference)`.
+#
+# Optional variants (uncomment to use):
+# - **Virtual corrector weight**: down-weights correctors that are already at large strengths.
+# - **RF correction**: also adjusts the RF frequency to minimise dispersion-driven orbit.
+# - **Live unit mismatch**: if BESSY2 BPMs read in nm, pass `gain=1e-9`.
+
+# In[12]:
+
+
+# Standard correction
+SR.orbit.correct(reference=reference)
+
+# With virtual corrector weight (ESRF style):
+# SR.orbit.set_virtual_weight(1000)
+# SR.orbit.correct(reference=reference)
+
+# With RF orbit correction (ESRF style, requires dispersion in ORM):
+# SR.orbit.correct(reference=reference, rf=True)
+
+# BESSY2 live mode — BPMs in nm, use gain to compensate unit mismatch:
+# SR.orbit.correct(reference=reference, gain=1e-9)
+
+sleep(wait_time)
+
+
+# In[13]:
+
+
+positions_ac = bpms.positions.get()
+std_ac = np.std(positions_ac, axis=0)
+print(f"R.m.s. orbit after correction — H: {1e6 * std_ac[0]:.1f} µm, V: {1e6 * std_ac[1]:.1f} µm")
+
+fig, axes = plt.subplots(3, 1, figsize=(10, 8))
+
+axes[0].plot(positions_ac[:, 0] * 1e6, label="After", color="C0", ls="-")
+axes[0].plot(positions_bc[:, 0] * 1e6, label="Before", color="grey", ls="--")
+
+axes[0].set_ylabel("H position [µm]")
+axes[0].legend()
+
+axes[1].plot(positions_ac[:, 1] * 1e6, label="After", color="C1", ls="-")
+axes[1].plot(positions_bc[:, 1] * 1e6, label="Before", color="grey", ls="--")
+
+axes[1].set_ylabel("V position [µm]")
+axes[1].legend()
+
+axes[2].plot(hcorr.strengths.get() * 1e6, label="H correctors")
+axes[2].plot(vcorr.strengths.get() * 1e6, label="V correctors")
+axes[2].set_ylabel("Strength [µrad]")
+axes[2].set_xlabel("Index")
+axes[2].legend()
+
+fig.tight_layout()
+plt.show()
+
+
+# In[ ]:
diff --git a/examples/use_cases/README.md b/examples/use_cases/README.md
new file mode 100644
index 000000000..ebcfe8c99
--- /dev/null
+++ b/examples/use_cases/README.md
@@ -0,0 +1,96 @@
+# Unified pyAML Examples
+
+Three notebooks demonstrating tune correction, chromaticity measurement, and orbit correction. A single configuration variable at the top of each notebook selects the facility — the rest of the code runs unchanged.
+
+## Notebooks
+
+| Notebook | Topic |
+|----------|-------|
+| `01-tune_correction.ipynb` | Measure tune response matrix and correct betatron tune |
+| `02-chromaticity_measurement.ipynb` | Measure chromaticity via RF frequency scan |
+| `03-orbit_correction.ipynb` | Measure ORM and correct closed orbit |
+
+## Facility configuration
+
+Edit the `CONFIG_FILE` variable at the top of each notebook:
+
+```python
+CONFIG_FILE = "config/soleil_ii/p.yaml" # SOLEIL II
+# CONFIG_FILE = "config/bessy2/bessy2.yaml" # BESSY2
+# CONFIG_FILE = "config/esrf/esrf.yaml" # ESRF EBS
+```
+
+## Installation
+
+### SOLEIL II and ESRF (TANGO)
+
+```bash
+pip install accelerator-middle-layer[tango-pyaml]
+```
+
+### BESSY2 (EPICS)
+
+```bash
+pip install accelerator-middle-layer[pyaml-cs-oa]
+```
+
+To support both control systems in the same environment:
+
+```bash
+pip install accelerator-middle-layer[tango-pyaml,pyaml-cs-oa]
+```
+
+## Starting the virtual accelerator
+
+### SOLEIL II
+
+```bash
+apptainer pull -F virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest
+apptainer run virtual-accelerator.sif
+```
+
+This starts the TANGO control system twin on `localhost:11000`.
+
+### BESSY2
+
+```bash
+apptainer run oras://registry.hzdr.de/digital-twins-for-accelerators/containers/pyat-softioc-digital-twin:default-v0-5-1-bessy.2711893
+```
+
+> **BESSY2 PV prefix:** the virtual accelerator assigns a unique PV prefix (usually your username). Edit `config/bessy2/bessy2.yaml` and set `prefix:` under `controls:` to match:
+> ```yaml
+> controls:
+> - type: pyaml_cs_oa.controlsystem
+> prefix: "your_prefix:" # ← change this
+> ```
+
+### ESRF EBS
+
+Follow the ESRF internal documentation to start the EBS simulator and set `tango_host` in `config/esrf/esrf.yaml`.
+
+## Control modes
+
+Each notebook lets you choose between design and live mode:
+
+```python
+SR = sr.design # simulation only — no control system needed
+# SR = sr.live # real machine or virtual twin
+```
+
+In `design` mode all wait times can be set to `0.0`. In `live` mode use `wait_time ≥ 1.5 s` to allow readbacks to settle.
+
+## Named arrays and tools (canonical names used in all configs)
+
+| Name | Description |
+|------|-------------|
+| `QForTune` | Quadrupoles for tune correction |
+| `HCorr` | Horizontal orbit correctors |
+| `VCorr` | Vertical orbit correctors |
+| `BPM` | Beam position monitors |
+| `BETATRON_TUNE` | Betatron tune monitor |
+| `CHROMATICITY_MONITOR` | Chromaticity monitor |
+| `DEFAULT_TUNE_CORRECTION` | Tune correction tool → `SR.tune` |
+| `DEFAULT_TUNE_RESPONSE_MATRIX` | Tune response matrix tool → `SR.trm` |
+| `DEFAULT_ORBIT_CORRECTION` | Orbit correction tool → `SR.orbit` |
+| `DEFAULT_ORBIT_RESPONSE_MATRIX` | Orbit response matrix tool → `SR.orm` |
+| `DEFAULT_DISPERSION` | Dispersion measurement tool → `SR.dispersion` |
diff --git a/examples/use_cases/config/bessy2/bessy2.yaml b/examples/use_cases/config/bessy2/bessy2.yaml
new file mode 100644
index 000000000..c04f66c82
--- /dev/null
+++ b/examples/use_cases/config/bessy2/bessy2.yaml
@@ -0,0 +1,2462 @@
+class: pyaml.accelerator.Accelerator
+machine: sr
+facility: BESSY2
+energy: 1.7185e9
+simulators:
+- class: pyaml.lattice.simulator.Simulator
+ lattice: bessy2_standard_user.mat
+ name: design
+controls:
+- class: pyaml_cs_oa.controlsystem.OphydAsyncControlSystem
+ prefix: 'pons:'
+ name: live
+ catalog:
+ class: pyaml_cs_oa.dynamic_catalog.DynamicCatalog
+ backend: epics
+data_folder: /data/store
+arrays:
+- class: pyaml.arrays.magnet.Magnet
+ name: HCorr
+ elements:
+ - HS4M2D1R
+ - HS1MT1R
+ - HS4M1T1R
+ - HS4M2T1R
+ - HS1MD2R
+ - HS4M1D2R
+ - HS4M2D2R
+ - HS1MT2R
+ - HS4M1T2R
+ - HS4M2T2R
+ - HS1MD3R
+ - HS4M1D3R
+ - HS4M2D3R
+ - HS1MT3R
+ - HS4M1T3R
+ - HS4M2T3R
+ - HS1MD4R
+ - HS4M1D4R
+ - HS4M2D4R
+ - HS1MT4R
+ - HS4M1T4R
+ - HS4M2T4R
+ - HS1MD5R
+ - HS4M1D5R
+ - HS4M2D5R
+ - HS1MT5R
+ - HS4M1T5R
+ - HS4M2T5R
+ - HS1MD6R
+ - HS4M1D6R
+ - HS4M2D6R
+ - HS1MT6R
+ - HS4M1T6R
+ - HS4M2T6R
+ - HS1MD7R
+ - HS4M1D7R
+ - HS4M2D7R
+ - HS1MT7R
+ - HS4M1T7R
+ - HS4M2T7R
+ - HS1MD8R
+ - HS4M1D8R
+ - HS4M2D8R
+ - HS1MT8R
+ - HS4M1T8R
+ - HS4M2T8R
+ - HS1MD1R
+ - HS4M1D1R
+- class: pyaml.arrays.magnet.Magnet
+ name: VCorr
+ elements:
+ - VS3M2D1R
+ - VS2M2D1R
+ - VS2M1T1R
+ - VS3M1T1R
+ - VS3M2T1R
+ - VS2M2T1R
+ - VS2M1D2R
+ - VS3M1D2R
+ - VS3M2D2R
+ - VS2M2D2R
+ - VS2M1T2R
+ - VS3M1T2R
+ - VS3M2T2R
+ - VS2M2T2R
+ - VS2M1D3R
+ - VS3M1D3R
+ - VS3M2D3R
+ - VS2M2D3R
+ - VS2M1T3R
+ - VS3M1T3R
+ - VS3M2T3R
+ - VS2M2T3R
+ - VS2M1D4R
+ - VS3M1D4R
+ - VS3M2D4R
+ - VS2M2D4R
+ - VS2M1T4R
+ - VS3M1T4R
+ - VS3M2T4R
+ - VS2M2T4R
+ - VS2M1D5R
+ - VS3M1D5R
+ - VS3M2D5R
+ - VS2M2D5R
+ - VS2M1T5R
+ - VS3M1T5R
+ - VS3M2T5R
+ - VS2M2T5R
+ - VS2M1D6R
+ - VS3M1D6R
+ - VS3M2D6R
+ - VS2M2D6R
+ - VS2M1T6R
+ - VS3M1T6R
+ - VS3M2T6R
+ - VS2M2T6R
+ - VS2M1D7R
+ - VS3M1D7R
+ - VS3M2D7R
+ - VS2M2D7R
+ - VS2M1T7R
+ - VS3M1T7R
+ - VS3M2T7R
+ - VS2M2T7R
+ - VS2M1D8R
+ - VS3M1D8R
+ - VS3M2D8R
+ - VS2M2D8R
+ - VS2M1T8R
+ - VS3M1T8R
+ - VS3M2T8R
+ - VS2M2T8R
+ - VS2M1D1R
+ - VS3M1D1R
+- class: pyaml.arrays.bpm.BPM
+ name: BPM
+ elements:
+ - BPMZ5D1R
+ - BPMZ6D1R
+ - BPMZ7D1R
+ - BPMZ1T1R
+ - BPMZ2T1R
+ - BPMZ3T1R
+ - BPMZ4T1R
+ - BPMZ41T1R
+ - BPMZ5T1R
+ - BPMZ6T1R
+ - BPMZ7T1R
+ - BPMZ1D2R
+ - BPMZ2D2R
+ - BPMZ3D2R
+ - BPMZ4D2R
+ - BPMZ5D2R
+ - BPMZ6D2R
+ - BPMZ7D2R
+ - BPMZ1T2R
+ - BPMZ2T2R
+ - BPMZ3T2R
+ - BPMZ4T2R
+ - BPMZ41T2R
+ - BPMZ42T2R
+ - BPMZ43T2R
+ - BPMZ5T2R
+ - BPMZ6T2R
+ - BPMZ7T2R
+ - BPMZ1D3R
+ - BPMZ2D3R
+ - BPMZ3D3R
+ - BPMZ4D3R
+ - BPMZ5D3R
+ - BPMZ6D3R
+ - BPMZ7D3R
+ - BPMZ1T3R
+ - BPMZ2T3R
+ - BPMZ3T3R
+ - BPMZ4T3R
+ - BPMZ5T3R
+ - BPMZ6T3R
+ - BPMZ7T3R
+ - BPMZ1D4R
+ - BPMZ2D4R
+ - BPMZ3D4R
+ - BPMZ4D4R
+ - BPMZ5D4R
+ - BPMZ6D4R
+ - BPMZ7D4R
+ - BPMZ1T4R
+ - BPMZ2T4R
+ - BPMZ3T4R
+ - BPMZ4T4R
+ - BPMZ5T4R
+ - BPMZ6T4R
+ - BPMZ7T4R
+ - BPMZ1D5R
+ - BPMZ2D5R
+ - BPMZ3D5R
+ - BPMZ4D5R
+ - BPMZ5D5R
+ - BPMZ6D5R
+ - BPMZ7D5R
+ - BPMZ1T5R
+ - BPMZ2T5R
+ - BPMZ3T5R
+ - BPMZ4T5R
+ - BPMZ5T5R
+ - BPMZ6T5R
+ - BPMZ7T5R
+ - BPMZ1D6R
+ - BPMZ2D6R
+ - BPMZ3D6R
+ - BPMZ4D6R
+ - BPMZ41D6R
+ - BPMZ42D6R
+ - BPMZ43D6R
+ - BPMZ44D6R
+ - BPMZ6D6R
+ - BPMZ7D6R
+ - BPMZ1T6R
+ - BPMZ2T6R
+ - BPMZ3T6R
+ - BPMZ4T6R
+ - BPMZ41T6R
+ - BPMZ5T6R
+ - BPMZ6T6R
+ - BPMZ7T6R
+ - BPMZ1D7R
+ - BPMZ2D7R
+ - BPMZ3D7R
+ - BPMZ4D7R
+ - BPMZ5D7R
+ - BPMZ6D7R
+ - BPMZ7D7R
+ - BPMZ1T7R
+ - BPMZ2T7R
+ - BPMZ3T7R
+ - BPMZ4T7R
+ - BPMZ41T7R
+ - BPMZ5T7R
+ - BPMZ6T7R
+ - BPMZ7T7R
+ - BPMZ1D8R
+ - BPMZ2D8R
+ - BPMZ3D8R
+ - BPMZ4D8R
+ - BPMZ5D8R
+ - BPMZ6D8R
+ - BPMZ7D8R
+ - BPMZ1T8R
+ - BPMZ2T8R
+ - BPMZ3T8R
+ - BPMZ4T8R
+ - BPMZ5T8R
+ - BPMZ6T8R
+ - BPMZ7T8R
+ - BPMZ1D1R
+ - BPMZ2D1R
+ - BPMZ3D1R
+ - BPMZ4D1R
+ - BPMZ41D1R
+ - BPMZ42D1R
+- class: pyaml.arrays.magnet.Magnet
+ name: QForTune
+ elements:
+ - Q3M2D1R
+ - Q3M1T1R
+ - Q3M2T1R
+ - Q3M1D2R
+ - Q3M2D2R
+ - Q3M1T2R
+ - Q3M2T2R
+ - Q3M1D3R
+ - Q3M2D3R
+ - Q3M1T3R
+ - Q3M2T3R
+ - Q3M1D4R
+ - Q3M2D4R
+ - Q3M1T4R
+ - Q3M2T4R
+ - Q3M1D5R
+ - Q3M2D5R
+ - Q3M1T5R
+ - Q3M2T5R
+ - Q3M1D6R
+ - Q3M2D6R
+ - Q3M1T6R
+ - Q3M2T6R
+ - Q3M1D7R
+ - Q3M2D7R
+ - Q3M1T7R
+ - Q3M2T7R
+ - Q3M1D8R
+ - Q3M2D8R
+ - Q3M1T8R
+ - Q3M2T8R
+ - Q3M1D1R
+ - Q4M2D1R
+ - Q4M1T1R
+ - Q4M2T1R
+ - Q4M1D2R
+ - Q4M2D2R
+ - Q4M1T2R
+ - Q4M2T2R
+ - Q4M1D3R
+ - Q4M2D3R
+ - Q4M1T3R
+ - Q4M2T3R
+ - Q4M1D4R
+ - Q4M2D4R
+ - Q4M1T4R
+ - Q4M2T4R
+ - Q4M1D5R
+ - Q4M2D5R
+ - Q4M1T5R
+ - Q4M2T5R
+ - Q4M1D6R
+ - Q4M2D6R
+ - Q4M1T6R
+ - Q4M2T6R
+ - Q4M1D7R
+ - Q4M2D7R
+ - Q4M1T7R
+ - Q4M2T7R
+ - Q4M1D8R
+ - Q4M2D8R
+ - Q4M1T8R
+ - Q4M2T8R
+ - Q4M1D1R
+devices:
+- class: pyaml.tuning_tools.orbit_response_matrix.OrbitResponseMatrix
+ bpm_array_name: BPM
+ hcorr_array_name: HCorr
+ vcorr_array_name: VCorr
+ corrector_delta: 1e-6
+ name: DEFAULT_ORBIT_RESPONSE_MATRIX
+- class: pyaml.tuning_tools.dispersion.Dispersion
+ bpm_array_name: BPM
+ rf_plant_name: RF
+ frequency_delta: 10
+ name: DEFAULT_DISPERSION
+- class: pyaml.tuning_tools.orbit.Orbit
+ bpm_array_name: BPM
+ hcorr_array_name: HCorr
+ vcorr_array_name: VCorr
+ name: DEFAULT_ORBIT_CORRECTION
+ singular_values: 16
+ response_matrix: ${path:orm.json}
+- class: pyaml.rf.rf_plant.RFPlant
+ name: RF
+ masterclock: (MCLKHX251C:freq)[KHz]
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2D1R
+ lattice_names: S4M2D1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2D1R:rdbk, HS4P2D1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MT1R
+ lattice_names: S1MT1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PT1R:rdbk, HS1PT1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1T1R
+ lattice_names: S4M1T1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1T1R:rdbk, HS4P1T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2T1R
+ lattice_names: S4M2T1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2T1R:rdbk, HS4P2T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MD2R
+ lattice_names: S1MD2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PD2R:rdbk, HS1PD2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1D2R
+ lattice_names: S4M1D2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1D2R:rdbk, HS4P1D2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2D2R
+ lattice_names: S4M2D2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2D2R:rdbk, HS4P2D2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MT2R
+ lattice_names: S1MT2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PT2R:rdbk, HS1PT2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1T2R
+ lattice_names: S4M1T2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1T2R:rdbk, HS4P1T2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2T2R
+ lattice_names: S4M2T2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2T2R:rdbk, HS4P2T2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MD3R
+ lattice_names: S1MD3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PD3R:rdbk, HS1PD3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1D3R
+ lattice_names: S4M1D3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1D3R:rdbk, HS4P1D3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2D3R
+ lattice_names: S4M2D3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2D3R:rdbk, HS4P2D3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MT3R
+ lattice_names: S1MT3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PT3R:rdbk, HS1PT3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1T3R
+ lattice_names: S4M1T3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1T3R:rdbk, HS4P1T3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2T3R
+ lattice_names: S4M2T3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2T3R:rdbk, HS4P2T3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MD4R
+ lattice_names: S1MD4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PD4R:rdbk, HS1PD4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1D4R
+ lattice_names: S4M1D4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1D4R:rdbk, HS4P1D4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2D4R
+ lattice_names: S4M2D4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2D4R:rdbk, HS4P2D4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MT4R
+ lattice_names: S1MT4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PT4R:rdbk, HS1PT4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1T4R
+ lattice_names: S4M1T4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1T4R:rdbk, HS4P1T4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2T4R
+ lattice_names: S4M2T4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2T4R:rdbk, HS4P2T4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MD5R
+ lattice_names: S1MD5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PD5R:rdbk, HS1PD5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1D5R
+ lattice_names: S4M1D5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1D5R:rdbk, HS4P1D5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2D5R
+ lattice_names: S4M2D5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2D5R:rdbk, HS4P2D5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MT5R
+ lattice_names: S1MT5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PT5R:rdbk, HS1PT5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1T5R
+ lattice_names: S4M1T5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1T5R:rdbk, HS4P1T5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2T5R
+ lattice_names: S4M2T5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2T5R:rdbk, HS4P2T5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MD6R
+ lattice_names: S1MD6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PD6R:rdbk, HS1PD6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1D6R
+ lattice_names: S4M1D6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1D6R:rdbk, HS4P1D6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2D6R
+ lattice_names: S4M2D6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2D6R:rdbk, HS4P2D6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MT6R
+ lattice_names: S1MT6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PT6R:rdbk, HS1PT6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1T6R
+ lattice_names: S4M1T6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1T6R:rdbk, HS4P1T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2T6R
+ lattice_names: S4M2T6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2T6R:rdbk, HS4P2T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MD7R
+ lattice_names: S1MD7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PD7R:rdbk, HS1PD7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1D7R
+ lattice_names: S4M1D7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1D7R:rdbk, HS4P1D7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2D7R
+ lattice_names: S4M2D7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2D7R:rdbk, HS4P2D7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MT7R
+ lattice_names: S1MT7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PT7R:rdbk, HS1PT7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1T7R
+ lattice_names: S4M1T7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1T7R:rdbk, HS4P1T7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2T7R
+ lattice_names: S4M2T7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2T7R:rdbk, HS4P2T7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MD8R
+ lattice_names: S1MD8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PD8R:rdbk, HS1PD8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1D8R
+ lattice_names: S4M1D8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1D8R:rdbk, HS4P1D8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2D8R
+ lattice_names: S4M2D8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2D8R:rdbk, HS4P2D8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MT8R
+ lattice_names: S1MT8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PT8R:rdbk, HS1PT8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1T8R
+ lattice_names: S4M1T8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1T8R:rdbk, HS4P1T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M2T8R
+ lattice_names: S4M2T8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P2T8R:rdbk, HS4P2T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS1MD1R
+ lattice_names: S1MD1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.00553438
+ unit: 1/m
+ powerconverter: (HS1PD1R:rdbk, HS1PD1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.hcorrector.HCorrector
+ name: HS4M1D1R
+ lattice_names: S4M1D1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0044502
+ unit: 1/m
+ powerconverter: (HS4P1D1R:rdbk, HS4P1D1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2D1R
+ lattice_names: S3M2D1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2D1R:rdbk, VS3P2D1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2D1R
+ lattice_names: S2M2D1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2D1R:rdbk, VS2P2D1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1T1R
+ lattice_names: S2M1T1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1T1R:rdbk, VS2P1T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1T1R
+ lattice_names: S3M1T1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1T1R:rdbk, VS3P1T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2T1R
+ lattice_names: S3M2T1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2T1R:rdbk, VS3P2T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2T1R
+ lattice_names: S2M2T1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2T1R:rdbk, VS2P2T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1D2R
+ lattice_names: S2M1D2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1D2R:rdbk, VS2P1D2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1D2R
+ lattice_names: S3M1D2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1D2R:rdbk, VS3P1D2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2D2R
+ lattice_names: S3M2D2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2D2R:rdbk, VS3P2D2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2D2R
+ lattice_names: S2M2D2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2D2R:rdbk, VS2P2D2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1T2R
+ lattice_names: S2M1T2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1T2R:rdbk, VS2P1T2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1T2R
+ lattice_names: S3M1T2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1T2R:rdbk, VS3P1T2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2T2R
+ lattice_names: S3M2T2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2T2R:rdbk, VS3P2T2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2T2R
+ lattice_names: S2M2T2R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2T2R:rdbk, VS2P2T2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1D3R
+ lattice_names: S2M1D3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1D3R:rdbk, VS2P1D3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1D3R
+ lattice_names: S3M1D3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1D3R:rdbk, VS3P1D3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2D3R
+ lattice_names: S3M2D3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2D3R:rdbk, VS3P2D3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2D3R
+ lattice_names: S2M2D3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2D3R:rdbk, VS2P2D3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1T3R
+ lattice_names: S2M1T3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1T3R:rdbk, VS2P1T3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1T3R
+ lattice_names: S3M1T3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1T3R:rdbk, VS3P1T3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2T3R
+ lattice_names: S3M2T3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2T3R:rdbk, VS3P2T3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2T3R
+ lattice_names: S2M2T3R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2T3R:rdbk, VS2P2T3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1D4R
+ lattice_names: S2M1D4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1D4R:rdbk, VS2P1D4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1D4R
+ lattice_names: S3M1D4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1D4R:rdbk, VS3P1D4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2D4R
+ lattice_names: S3M2D4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2D4R:rdbk, VS3P2D4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2D4R
+ lattice_names: S2M2D4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2D4R:rdbk, VS2P2D4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1T4R
+ lattice_names: S2M1T4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1T4R:rdbk, VS2P1T4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1T4R
+ lattice_names: S3M1T4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1T4R:rdbk, VS3P1T4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2T4R
+ lattice_names: S3M2T4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2T4R:rdbk, VS3P2T4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2T4R
+ lattice_names: S2M2T4R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2T4R:rdbk, VS2P2T4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1D5R
+ lattice_names: S2M1D5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1D5R:rdbk, VS2P1D5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1D5R
+ lattice_names: S3M1D5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1D5R:rdbk, VS3P1D5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2D5R
+ lattice_names: S3M2D5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2D5R:rdbk, VS3P2D5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2D5R
+ lattice_names: S2M2D5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2D5R:rdbk, VS2P2D5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1T5R
+ lattice_names: S2M1T5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1T5R:rdbk, VS2P1T5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1T5R
+ lattice_names: S3M1T5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1T5R:rdbk, VS3P1T5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2T5R
+ lattice_names: S3M2T5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2T5R:rdbk, VS3P2T5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2T5R
+ lattice_names: S2M2T5R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2T5R:rdbk, VS2P2T5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1D6R
+ lattice_names: S2M1D6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1D6R:rdbk, VS2P1D6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1D6R
+ lattice_names: S3M1D6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1D6R:rdbk, VS3P1D6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2D6R
+ lattice_names: S3M2D6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2D6R:rdbk, VS3P2D6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2D6R
+ lattice_names: S2M2D6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2D6R:rdbk, VS2P2D6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1T6R
+ lattice_names: S2M1T6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1T6R:rdbk, VS2P1T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1T6R
+ lattice_names: S3M1T6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1T6R:rdbk, VS3P1T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2T6R
+ lattice_names: S3M2T6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2T6R:rdbk, VS3P2T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2T6R
+ lattice_names: S2M2T6R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2T6R:rdbk, VS2P2T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1D7R
+ lattice_names: S2M1D7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1D7R:rdbk, VS2P1D7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1D7R
+ lattice_names: S3M1D7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1D7R:rdbk, VS3P1D7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2D7R
+ lattice_names: S3M2D7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2D7R:rdbk, VS3P2D7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2D7R
+ lattice_names: S2M2D7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2D7R:rdbk, VS2P2D7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1T7R
+ lattice_names: S2M1T7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1T7R:rdbk, VS2P1T7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1T7R
+ lattice_names: S3M1T7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1T7R:rdbk, VS3P1T7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2T7R
+ lattice_names: S3M2T7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2T7R:rdbk, VS3P2T7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2T7R
+ lattice_names: S2M2T7R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2T7R:rdbk, VS2P2T7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1D8R
+ lattice_names: S2M1D8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1D8R:rdbk, VS2P1D8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1D8R
+ lattice_names: S3M1D8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1D8R:rdbk, VS3P1D8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2D8R
+ lattice_names: S3M2D8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2D8R:rdbk, VS3P2D8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2D8R
+ lattice_names: S2M2D8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2D8R:rdbk, VS2P2D8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1T8R
+ lattice_names: S2M1T8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1T8R:rdbk, VS2P1T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1T8R
+ lattice_names: S3M1T8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1T8R:rdbk, VS3P1T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M2T8R
+ lattice_names: S3M2T8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P2T8R:rdbk, VS3P2T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M2T8R
+ lattice_names: S2M2T8R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P2T8R:rdbk, VS2P2T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS2M1D1R
+ lattice_names: S2M1D1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS2P1D1R:rdbk, VS2P1D1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.vcorrector.VCorrector
+ name: VS3M1D1R
+ lattice_names: S3M1D1R@0
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.00297607
+ unit: 1/m
+ powerconverter: (VS3P1D1R:rdbk, VS3P1D1R:set)[A]
+ hardware_unit: A
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5D1R
+ x_pos: ORBITCC:rdPos@0
+ y_pos: ORBITCC:rdPos@1
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6D1R
+ x_pos: ORBITCC:rdPos@2
+ y_pos: ORBITCC:rdPos@3
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7D1R
+ x_pos: ORBITCC:rdPos@4
+ y_pos: ORBITCC:rdPos@5
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1T1R
+ x_pos: ORBITCC:rdPos@6
+ y_pos: ORBITCC:rdPos@7
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2T1R
+ x_pos: ORBITCC:rdPos@8
+ y_pos: ORBITCC:rdPos@9
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3T1R
+ x_pos: ORBITCC:rdPos@10
+ y_pos: ORBITCC:rdPos@11
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4T1R
+ x_pos: ORBITCC:rdPos@12
+ y_pos: ORBITCC:rdPos@13
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ41T1R
+ x_pos: ORBITCC:rdPos@14
+ y_pos: ORBITCC:rdPos@15
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5T1R
+ x_pos: ORBITCC:rdPos@16
+ y_pos: ORBITCC:rdPos@17
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6T1R
+ x_pos: ORBITCC:rdPos@18
+ y_pos: ORBITCC:rdPos@19
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7T1R
+ x_pos: ORBITCC:rdPos@20
+ y_pos: ORBITCC:rdPos@21
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1D2R
+ x_pos: ORBITCC:rdPos@22
+ y_pos: ORBITCC:rdPos@23
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2D2R
+ x_pos: ORBITCC:rdPos@24
+ y_pos: ORBITCC:rdPos@25
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3D2R
+ x_pos: ORBITCC:rdPos@26
+ y_pos: ORBITCC:rdPos@27
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4D2R
+ x_pos: ORBITCC:rdPos@28
+ y_pos: ORBITCC:rdPos@29
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5D2R
+ x_pos: ORBITCC:rdPos@30
+ y_pos: ORBITCC:rdPos@31
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6D2R
+ x_pos: ORBITCC:rdPos@32
+ y_pos: ORBITCC:rdPos@33
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7D2R
+ x_pos: ORBITCC:rdPos@34
+ y_pos: ORBITCC:rdPos@35
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1T2R
+ x_pos: ORBITCC:rdPos@36
+ y_pos: ORBITCC:rdPos@37
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2T2R
+ x_pos: ORBITCC:rdPos@38
+ y_pos: ORBITCC:rdPos@39
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3T2R
+ x_pos: ORBITCC:rdPos@40
+ y_pos: ORBITCC:rdPos@41
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4T2R
+ x_pos: ORBITCC:rdPos@42
+ y_pos: ORBITCC:rdPos@43
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ41T2R
+ x_pos: ORBITCC:rdPos@44
+ y_pos: ORBITCC:rdPos@45
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ42T2R
+ x_pos: ORBITCC:rdPos@46
+ y_pos: ORBITCC:rdPos@47
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ43T2R
+ x_pos: ORBITCC:rdPos@48
+ y_pos: ORBITCC:rdPos@49
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5T2R
+ x_pos: ORBITCC:rdPos@50
+ y_pos: ORBITCC:rdPos@51
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6T2R
+ x_pos: ORBITCC:rdPos@52
+ y_pos: ORBITCC:rdPos@53
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7T2R
+ x_pos: ORBITCC:rdPos@54
+ y_pos: ORBITCC:rdPos@55
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1D3R
+ x_pos: ORBITCC:rdPos@56
+ y_pos: ORBITCC:rdPos@57
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2D3R
+ x_pos: ORBITCC:rdPos@58
+ y_pos: ORBITCC:rdPos@59
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3D3R
+ x_pos: ORBITCC:rdPos@60
+ y_pos: ORBITCC:rdPos@61
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4D3R
+ x_pos: ORBITCC:rdPos@62
+ y_pos: ORBITCC:rdPos@63
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5D3R
+ x_pos: ORBITCC:rdPos@64
+ y_pos: ORBITCC:rdPos@65
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6D3R
+ x_pos: ORBITCC:rdPos@66
+ y_pos: ORBITCC:rdPos@67
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7D3R
+ x_pos: ORBITCC:rdPos@68
+ y_pos: ORBITCC:rdPos@69
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1T3R
+ x_pos: ORBITCC:rdPos@70
+ y_pos: ORBITCC:rdPos@71
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2T3R
+ x_pos: ORBITCC:rdPos@72
+ y_pos: ORBITCC:rdPos@73
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3T3R
+ x_pos: ORBITCC:rdPos@74
+ y_pos: ORBITCC:rdPos@75
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4T3R
+ x_pos: ORBITCC:rdPos@76
+ y_pos: ORBITCC:rdPos@77
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5T3R
+ x_pos: ORBITCC:rdPos@78
+ y_pos: ORBITCC:rdPos@79
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6T3R
+ x_pos: ORBITCC:rdPos@80
+ y_pos: ORBITCC:rdPos@81
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7T3R
+ x_pos: ORBITCC:rdPos@82
+ y_pos: ORBITCC:rdPos@83
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1D4R
+ x_pos: ORBITCC:rdPos@84
+ y_pos: ORBITCC:rdPos@85
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2D4R
+ x_pos: ORBITCC:rdPos@86
+ y_pos: ORBITCC:rdPos@87
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3D4R
+ x_pos: ORBITCC:rdPos@88
+ y_pos: ORBITCC:rdPos@89
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4D4R
+ x_pos: ORBITCC:rdPos@90
+ y_pos: ORBITCC:rdPos@91
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5D4R
+ x_pos: ORBITCC:rdPos@92
+ y_pos: ORBITCC:rdPos@93
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6D4R
+ x_pos: ORBITCC:rdPos@94
+ y_pos: ORBITCC:rdPos@95
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7D4R
+ x_pos: ORBITCC:rdPos@96
+ y_pos: ORBITCC:rdPos@97
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1T4R
+ x_pos: ORBITCC:rdPos@98
+ y_pos: ORBITCC:rdPos@99
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2T4R
+ x_pos: ORBITCC:rdPos@100
+ y_pos: ORBITCC:rdPos@101
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3T4R
+ x_pos: ORBITCC:rdPos@102
+ y_pos: ORBITCC:rdPos@103
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4T4R
+ x_pos: ORBITCC:rdPos@104
+ y_pos: ORBITCC:rdPos@105
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5T4R
+ x_pos: ORBITCC:rdPos@106
+ y_pos: ORBITCC:rdPos@107
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6T4R
+ x_pos: ORBITCC:rdPos@108
+ y_pos: ORBITCC:rdPos@109
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7T4R
+ x_pos: ORBITCC:rdPos@110
+ y_pos: ORBITCC:rdPos@111
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1D5R
+ x_pos: ORBITCC:rdPos@112
+ y_pos: ORBITCC:rdPos@113
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2D5R
+ x_pos: ORBITCC:rdPos@114
+ y_pos: ORBITCC:rdPos@115
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3D5R
+ x_pos: ORBITCC:rdPos@116
+ y_pos: ORBITCC:rdPos@117
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4D5R
+ x_pos: ORBITCC:rdPos@118
+ y_pos: ORBITCC:rdPos@119
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5D5R
+ x_pos: ORBITCC:rdPos@120
+ y_pos: ORBITCC:rdPos@121
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6D5R
+ x_pos: ORBITCC:rdPos@122
+ y_pos: ORBITCC:rdPos@123
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7D5R
+ x_pos: ORBITCC:rdPos@124
+ y_pos: ORBITCC:rdPos@125
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1T5R
+ x_pos: ORBITCC:rdPos@126
+ y_pos: ORBITCC:rdPos@127
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2T5R
+ x_pos: ORBITCC:rdPos@128
+ y_pos: ORBITCC:rdPos@129
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3T5R
+ x_pos: ORBITCC:rdPos@130
+ y_pos: ORBITCC:rdPos@131
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4T5R
+ x_pos: ORBITCC:rdPos@132
+ y_pos: ORBITCC:rdPos@133
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5T5R
+ x_pos: ORBITCC:rdPos@134
+ y_pos: ORBITCC:rdPos@135
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6T5R
+ x_pos: ORBITCC:rdPos@136
+ y_pos: ORBITCC:rdPos@137
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7T5R
+ x_pos: ORBITCC:rdPos@138
+ y_pos: ORBITCC:rdPos@139
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1D6R
+ x_pos: ORBITCC:rdPos@140
+ y_pos: ORBITCC:rdPos@141
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2D6R
+ x_pos: ORBITCC:rdPos@142
+ y_pos: ORBITCC:rdPos@143
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3D6R
+ x_pos: ORBITCC:rdPos@144
+ y_pos: ORBITCC:rdPos@145
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4D6R
+ x_pos: ORBITCC:rdPos@146
+ y_pos: ORBITCC:rdPos@147
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ41D6R
+ x_pos: ORBITCC:rdPos@148
+ y_pos: ORBITCC:rdPos@149
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ42D6R
+ x_pos: ORBITCC:rdPos@150
+ y_pos: ORBITCC:rdPos@151
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ43D6R
+ x_pos: ORBITCC:rdPos@152
+ y_pos: ORBITCC:rdPos@153
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ44D6R
+ x_pos: ORBITCC:rdPos@154
+ y_pos: ORBITCC:rdPos@155
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6D6R
+ x_pos: ORBITCC:rdPos@156
+ y_pos: ORBITCC:rdPos@157
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7D6R
+ x_pos: ORBITCC:rdPos@158
+ y_pos: ORBITCC:rdPos@159
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1T6R
+ x_pos: ORBITCC:rdPos@160
+ y_pos: ORBITCC:rdPos@161
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2T6R
+ x_pos: ORBITCC:rdPos@162
+ y_pos: ORBITCC:rdPos@163
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3T6R
+ x_pos: ORBITCC:rdPos@164
+ y_pos: ORBITCC:rdPos@165
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4T6R
+ x_pos: ORBITCC:rdPos@166
+ y_pos: ORBITCC:rdPos@167
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ41T6R
+ x_pos: ORBITCC:rdPos@168
+ y_pos: ORBITCC:rdPos@169
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5T6R
+ x_pos: ORBITCC:rdPos@170
+ y_pos: ORBITCC:rdPos@171
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6T6R
+ x_pos: ORBITCC:rdPos@172
+ y_pos: ORBITCC:rdPos@173
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7T6R
+ x_pos: ORBITCC:rdPos@174
+ y_pos: ORBITCC:rdPos@175
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1D7R
+ x_pos: ORBITCC:rdPos@176
+ y_pos: ORBITCC:rdPos@177
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2D7R
+ x_pos: ORBITCC:rdPos@178
+ y_pos: ORBITCC:rdPos@179
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3D7R
+ x_pos: ORBITCC:rdPos@180
+ y_pos: ORBITCC:rdPos@181
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4D7R
+ x_pos: ORBITCC:rdPos@182
+ y_pos: ORBITCC:rdPos@183
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5D7R
+ x_pos: ORBITCC:rdPos@184
+ y_pos: ORBITCC:rdPos@185
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6D7R
+ x_pos: ORBITCC:rdPos@186
+ y_pos: ORBITCC:rdPos@187
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7D7R
+ x_pos: ORBITCC:rdPos@188
+ y_pos: ORBITCC:rdPos@189
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1T7R
+ x_pos: ORBITCC:rdPos@190
+ y_pos: ORBITCC:rdPos@191
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2T7R
+ x_pos: ORBITCC:rdPos@192
+ y_pos: ORBITCC:rdPos@193
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3T7R
+ x_pos: ORBITCC:rdPos@194
+ y_pos: ORBITCC:rdPos@195
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4T7R
+ x_pos: ORBITCC:rdPos@196
+ y_pos: ORBITCC:rdPos@197
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ41T7R
+ x_pos: ORBITCC:rdPos@198
+ y_pos: ORBITCC:rdPos@199
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5T7R
+ x_pos: ORBITCC:rdPos@200
+ y_pos: ORBITCC:rdPos@201
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6T7R
+ x_pos: ORBITCC:rdPos@202
+ y_pos: ORBITCC:rdPos@203
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7T7R
+ x_pos: ORBITCC:rdPos@204
+ y_pos: ORBITCC:rdPos@205
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1D8R
+ x_pos: ORBITCC:rdPos@206
+ y_pos: ORBITCC:rdPos@207
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2D8R
+ x_pos: ORBITCC:rdPos@208
+ y_pos: ORBITCC:rdPos@209
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3D8R
+ x_pos: ORBITCC:rdPos@210
+ y_pos: ORBITCC:rdPos@211
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4D8R
+ x_pos: ORBITCC:rdPos@212
+ y_pos: ORBITCC:rdPos@213
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5D8R
+ x_pos: ORBITCC:rdPos@214
+ y_pos: ORBITCC:rdPos@215
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6D8R
+ x_pos: ORBITCC:rdPos@216
+ y_pos: ORBITCC:rdPos@217
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7D8R
+ x_pos: ORBITCC:rdPos@218
+ y_pos: ORBITCC:rdPos@219
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1T8R
+ x_pos: ORBITCC:rdPos@220
+ y_pos: ORBITCC:rdPos@221
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2T8R
+ x_pos: ORBITCC:rdPos@222
+ y_pos: ORBITCC:rdPos@223
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3T8R
+ x_pos: ORBITCC:rdPos@224
+ y_pos: ORBITCC:rdPos@225
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4T8R
+ x_pos: ORBITCC:rdPos@226
+ y_pos: ORBITCC:rdPos@227
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ5T8R
+ x_pos: ORBITCC:rdPos@228
+ y_pos: ORBITCC:rdPos@229
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ6T8R
+ x_pos: ORBITCC:rdPos@230
+ y_pos: ORBITCC:rdPos@231
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ7T8R
+ x_pos: ORBITCC:rdPos@232
+ y_pos: ORBITCC:rdPos@233
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ1D1R
+ x_pos: ORBITCC:rdPos@234
+ y_pos: ORBITCC:rdPos@235
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ2D1R
+ x_pos: ORBITCC:rdPos@236
+ y_pos: ORBITCC:rdPos@237
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ3D1R
+ x_pos: ORBITCC:rdPos@238
+ y_pos: ORBITCC:rdPos@239
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ4D1R
+ x_pos: ORBITCC:rdPos@240
+ y_pos: ORBITCC:rdPos@241
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ41D1R
+ x_pos: ORBITCC:rdPos@242
+ y_pos: ORBITCC:rdPos@243
+- class: pyaml.bpm.bpm.BPM
+ name: BPMZ42D1R
+ x_pos: ORBITCC:rdPos@244
+ y_pos: ORBITCC:rdPos@245
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1D1R
+ lattice_names: Q3M1D1R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD1R:rdbk, Q3PD1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2D1R
+ lattice_names: Q3M2D1R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD1R:rdbk, Q3PD1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1T1R
+ lattice_names: Q3M1T1R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3P1T1R:rdbk, Q3P1T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2T1R
+ lattice_names: Q3M2T1R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3P2T1R:rdbk, Q3P2T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1D2R
+ lattice_names: Q3M1D2R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD2R:rdbk, Q3PD2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2D2R
+ lattice_names: Q3M2D2R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD2R:rdbk, Q3PD2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1T2R
+ lattice_names: Q3M1T2R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT2R:rdbk, Q3PT2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2T2R
+ lattice_names: Q3M2T2R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT2R:rdbk, Q3PT2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1D3R
+ lattice_names: Q3M1D3R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD3R:rdbk, Q3PD3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2D3R
+ lattice_names: Q3M2D3R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD3R:rdbk, Q3PD3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1T3R
+ lattice_names: Q3M1T3R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT3R:rdbk, Q3PT3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2T3R
+ lattice_names: Q3M2T3R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT3R:rdbk, Q3PT3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1D4R
+ lattice_names: Q3M1D4R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD4R:rdbk, Q3PD4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2D4R
+ lattice_names: Q3M2D4R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD4R:rdbk, Q3PD4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1T4R
+ lattice_names: Q3M1T4R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT4R:rdbk, Q3PT4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2T4R
+ lattice_names: Q3M2T4R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT4R:rdbk, Q3PT4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1D5R
+ lattice_names: Q3M1D5R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD5R:rdbk, Q3PD5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2D5R
+ lattice_names: Q3M2D5R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD5R:rdbk, Q3PD5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1T5R
+ lattice_names: Q3M1T5R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT5R:rdbk, Q3PT5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2T5R
+ lattice_names: Q3M2T5R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT5R:rdbk, Q3PT5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1D6R
+ lattice_names: Q3M1D6R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD6R:rdbk, Q3PD6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2D6R
+ lattice_names: Q3M2D6R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD6R:rdbk, Q3PD6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1T6R
+ lattice_names: Q3M1T6R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3P1T6R:rdbk, Q3P1T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2T6R
+ lattice_names: Q3M2T6R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3P2T6R:rdbk, Q3P2T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1D7R
+ lattice_names: Q3M1D7R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD7R:rdbk, Q3PD7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2D7R
+ lattice_names: Q3M2D7R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD7R:rdbk, Q3PD7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1T7R
+ lattice_names: Q3M1T7R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT7R:rdbk, Q3PT7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2T7R
+ lattice_names: Q3M2T7R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3PT7R:rdbk, Q3PT7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1D8R
+ lattice_names: Q3M1D8R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD8R:rdbk, Q3PD8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2D8R
+ lattice_names: Q3M2D8R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.0158575
+ unit: 1/m
+ powerconverter: (Q3PD8R:rdbk, Q3PD8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M1T8R
+ lattice_names: Q3M1T8R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3P1T8R:rdbk, Q3P1T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q3M2T8R
+ lattice_names: Q3M2T8R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: -0.015735
+ unit: 1/m
+ powerconverter: (Q3P2T8R:rdbk, Q3P2T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1D1R
+ lattice_names: Q4M1D1R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD1R:rdbk, Q4PD1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2D1R
+ lattice_names: Q4M2D1R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD1R:rdbk, Q4PD1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1T1R
+ lattice_names: Q4M1T1R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4P1T1R:rdbk, Q4P1T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2T1R
+ lattice_names: Q4M2T1R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4P2T1R:rdbk, Q4P2T1R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1D2R
+ lattice_names: Q4M1D2R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD2R:rdbk, Q4PD2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2D2R
+ lattice_names: Q4M2D2R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD2R:rdbk, Q4PD2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1T2R
+ lattice_names: Q4M1T2R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT2R:rdbk, Q4PT2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2T2R
+ lattice_names: Q4M2T2R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT2R:rdbk, Q4PT2R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1D3R
+ lattice_names: Q4M1D3R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD3R:rdbk, Q4PD3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2D3R
+ lattice_names: Q4M2D3R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD3R:rdbk, Q4PD3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1T3R
+ lattice_names: Q4M1T3R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT3R:rdbk, Q4PT3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2T3R
+ lattice_names: Q4M2T3R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT3R:rdbk, Q4PT3R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1D4R
+ lattice_names: Q4M1D4R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD4R:rdbk, Q4PD4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2D4R
+ lattice_names: Q4M2D4R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD4R:rdbk, Q4PD4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1T4R
+ lattice_names: Q4M1T4R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT4R:rdbk, Q4PT4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2T4R
+ lattice_names: Q4M2T4R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT4R:rdbk, Q4PT4R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1D5R
+ lattice_names: Q4M1D5R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD5R:rdbk, Q4PD5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2D5R
+ lattice_names: Q4M2D5R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD5R:rdbk, Q4PD5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1T5R
+ lattice_names: Q4M1T5R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT5R:rdbk, Q4PT5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2T5R
+ lattice_names: Q4M2T5R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT5R:rdbk, Q4PT5R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1D6R
+ lattice_names: Q4M1D6R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD6R:rdbk, Q4PD6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2D6R
+ lattice_names: Q4M2D6R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD6R:rdbk, Q4PD6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1T6R
+ lattice_names: Q4M1T6R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4P1T6R:rdbk, Q4P1T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2T6R
+ lattice_names: Q4M2T6R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4P2T6R:rdbk, Q4P2T6R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1D7R
+ lattice_names: Q4M1D7R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD7R:rdbk, Q4PD7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2D7R
+ lattice_names: Q4M2D7R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD7R:rdbk, Q4PD7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1T7R
+ lattice_names: Q4M1T7R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT7R:rdbk, Q4PT7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2T7R
+ lattice_names: Q4M2T7R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4PT7R:rdbk, Q4PT7R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1D8R
+ lattice_names: Q4M1D8R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD8R:rdbk, Q4PD8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2D8R
+ lattice_names: Q4M2D8R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0303165
+ unit: 1/m
+ powerconverter: (Q4PD8R:rdbk, Q4PD8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M1T8R
+ lattice_names: Q4M1T8R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4P1T8R:rdbk, Q4P1T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.magnet.quadrupole.Quadrupole
+ name: Q4M2T8R
+ lattice_names: Q4M2T8R
+ model:
+ class: pyaml.magnet.linear_model.LinearMagnetModel
+ calibration_factor: 0.0296695
+ unit: 1/m
+ powerconverter: (Q4P2T8R:rdbk, Q4P2T8R:set)[A]
+ hardware_unit: A
+- class: pyaml.diagnostics.tune_monitor.BetatronTuneMonitor
+ name: BETATRON_TUNE
+ tune_h: beam:twiss:x:tune
+ tune_v: beam:twiss:y:tune
+- class: pyaml.tuning_tools.tune.Tune
+ name: DEFAULT_TUNE_CORRECTION
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ response_matrix: ${path:trm.json}
+- class: pyaml.tuning_tools.tune_response_matrix.TuneResponseMatrix
+ name: DEFAULT_TUNE_RESPONSE_MATRIX
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ quad_delta: 1e-4
+- class: pyaml.tuning_tools.chromaticity_monitor.ChromaticityMonitor
+ name: KSI
+ betatron_tune_name: BETATRON_TUNE
+ rf_plant_name: RF
+ fit_order: 2
+ n_avg_meas: 1
+ n_step: 5
+ sleep_between_meas: 2
+ sleep_between_step: 2
+ e_delta: 1e-3
+ max_e_delta: 1e-3
+- class: pyaml.tuning_tools.chromaticity_monitor.ChromaticityMonitor
+ name: CHROMATICITY_MONITOR
+ betatron_tune_name: BETATRON_TUNE
+ rf_plant_name: RF
+ fit_order: 2
+ n_avg_meas: 1
+ n_step: 5
+ sleep_between_meas: 2
+ sleep_between_step: 2
+ e_delta: 1e-3
+ max_e_delta: 1e-3
diff --git a/examples/BESSY2_example/bessy2_standard_user.mat b/examples/use_cases/config/bessy2/bessy2_standard_user.mat
similarity index 100%
rename from examples/BESSY2_example/bessy2_standard_user.mat
rename to examples/use_cases/config/bessy2/bessy2_standard_user.mat
diff --git a/examples/use_cases/config/bessy2/orm.json b/examples/use_cases/config/bessy2/orm.json
new file mode 100644
index 000000000..e1f9deb66
--- /dev/null
+++ b/examples/use_cases/config/bessy2/orm.json
@@ -0,0 +1,28774 @@
+{
+ "type": "pyaml.tuning_tools.orbit_response_matrix_data",
+ "matrix": [
+ [
+ -16.598148463795624,
+ 18.080575992708052,
+ -14.989908252591041,
+ 11.05505279467195,
+ -7.082768139702697,
+ 0.14205839394943673,
+ 7.446500021106512,
+ -1.35232074838934,
+ -3.7506012481843216,
+ 12.015097954535205,
+ -14.916200203551108,
+ 14.271054079807755,
+ 12.884779663933331,
+ -15.968524585607776,
+ 14.72836341292029,
+ -8.345028651901705,
+ 3.557461095182497,
+ 3.5833688292220462,
+ -4.5161786299103515,
+ -2.4223468195059175,
+ 7.402774719018811,
+ -14.501472157027301,
+ 16.48371251187001,
+ -14.088427585468272,
+ -14.702939040349433,
+ 16.009443943340994,
+ -13.304868611680778,
+ 5.040597871521453,
+ 0.32381179083843853,
+ -6.904881861092474,
+ 1.128816114482535,
+ 6.317090011052518,
+ -12.072708174662926,
+ 14.265934830246213,
+ -13.926921778666474,
+ 9.317663213071874,
+ 13.045787572529859,
+ -11.013736262776476,
+ 6.869623097804253,
+ 2.247325084322918,
+ -6.980357737173575,
+ 10.941242494137652,
+ 4.981154436552323,
+ -11.396004125530352,
+ 13.981708881506671,
+ -14.515744139297528,
+ 16.053630685288507,
+ -13.183619531416738,
+ 3.3542504711270293e-13,
+ 2.668153783851046e-14,
+ 3.197549375884984e-13,
+ 5.082197683525802e-14,
+ -7.580944877925988e-14,
+ -8.427977825180288e-14,
+ 2.642742795433417e-13,
+ -5.086432848262074e-13,
+ 1.5712461171567271e-13,
+ -2.778268066994105e-13,
+ 4.0742284762931846e-13,
+ 1.0842021724855044e-13,
+ -1.9778219318387913e-13,
+ -5.577711957669568e-13,
+ -4.002230675776569e-13,
+ -1.4230153513872246e-13,
+ -1.0596382170151297e-12,
+ 6.750852589616774e-13,
+ -6.102872384967234e-13,
+ 1.7067713887174152e-13,
+ 3.5575383784680614e-14,
+ 4.0826988057657276e-13,
+ -3.0112021274890377e-13,
+ 3.8116482626443515e-13,
+ 2.7909735612029196e-13,
+ -6.191810844428935e-13,
+ -5.929230630780102e-15,
+ 1.7364175418713157e-13,
+ -1.1350241493207625e-13,
+ 4.764560328305439e-13,
+ -1.6517142471458857e-13,
+ 7.415773453211399e-13,
+ -8.470329472543003e-16,
+ 2.6723889485873176e-13,
+ 1.1096131609031334e-13,
+ -1.0122043719688889e-13,
+ -1.6940658945086007e-14,
+ -5.548065804515667e-13,
+ -3.570243872676876e-13,
+ -1.139259314057034e-13,
+ 1.5246593050577406e-14,
+ -3.8116482626443515e-14,
+ 5.221958119822762e-13,
+ -1.8931186371133613e-13,
+ -4.362219678359647e-14,
+ 1.4992483166401116e-13,
+ 7.606355866343617e-13,
+ -3.6591823321385775e-13,
+ -2.922263668027336e-13,
+ -3.3881317890172014e-15,
+ 4.743384504624082e-14,
+ -1.1265538198482195e-13,
+ -1.7787691892340307e-14,
+ -8.470329472543003e-15,
+ -1.3129010682441655e-14,
+ -5.886878983417387e-14,
+ 2.2319318160150814e-13,
+ 3.8116482626443515e-13,
+ 3.9302328752599536e-13,
+ 1.393369198233324e-13,
+ -3.066259269060567e-13,
+ -7.453889935837843e-14,
+ 1.3912516158651883e-12,
+ 1.5754812818929986e-13
+ ],
+ [
+ -9.349580357938478,
+ 10.793814558629013,
+ -8.667591362151677,
+ 5.782894593626114,
+ -3.23804949243086,
+ -0.8449433361998255,
+ 3.5662208545765934,
+ 0.22257434994279662,
+ -3.1541898053279156,
+ 7.649687966226026,
+ -9.0724705481893,
+ 8.246245768494504,
+ 7.921615470335085,
+ -9.318867131670228,
+ 8.27409794628716,
+ -4.0603709791431415,
+ 1.1192233003210683,
+ 2.948487479216476,
+ -1.818497333755394,
+ -2.400231098403187,
+ 5.2082657486213355,
+ -8.956782171289001,
+ 9.825861989520014,
+ -8.007004301065122,
+ -8.838902052819154,
+ 9.1831324237175,
+ -7.311536727923913,
+ 2.0779421957616453,
+ 1.1550561038631142,
+ -4.84431041457602,
+ -0.19663207376559808,
+ 4.62232384065912,
+ -7.917852350287892,
+ 8.39854890531923,
+ -7.845858188890551,
+ 4.78598002263699,
+ 7.430619123970336,
+ -5.779351891818329,
+ 3.1423350729657633,
+ 2.371077117831979,
+ -5.106336977433167,
+ 7.074400599700002,
+ 3.842206895521678,
+ -7.501002332369222,
+ 8.746107246080177,
+ -8.427512106595142,
+ 8.967895714170945,
+ -6.962017261928952,
+ 1.8041801776516597e-13,
+ -2.964615315390051e-15,
+ 1.6644197413547002e-13,
+ 1.5670109524204556e-14,
+ -4.912791094074942e-14,
+ -2.0328790734103208e-14,
+ 1.8253560013330172e-13,
+ -2.8333252085656346e-13,
+ 9.910285482875314e-14,
+ -1.7406527066075872e-13,
+ 2.2065208275974524e-13,
+ 9.359714067160019e-14,
+ -1.291725244562808e-13,
+ -3.1509625637859973e-13,
+ -2.625802136488331e-13,
+ -9.656175598699024e-14,
+ -6.496742705440484e-13,
+ 3.968349357886397e-13,
+ -3.6168306847758624e-13,
+ 1.0926725019580474e-13,
+ -3.9810548520952116e-14,
+ 2.642742795433417e-13,
+ -1.8761779781682753e-13,
+ 2.1895801686523664e-13,
+ 1.6220680939919851e-13,
+ -3.451659260061274e-13,
+ -2.117582368135751e-15,
+ 1.105377996166862e-13,
+ -9.020900888258299e-14,
+ 3.108610916423282e-13,
+ -9.529120656610879e-14,
+ 4.637505386217294e-13,
+ -2.0328790734103208e-14,
+ 1.7237120476625012e-13,
+ 4.828087799349512e-14,
+ -8.046812998915853e-14,
+ -4.1504614415460717e-14,
+ -3.1763735522036263e-13,
+ -1.8592373192231892e-13,
+ -1.4399560103323106e-14,
+ 4.404571325722362e-14,
+ -1.6093625997831706e-14,
+ 2.854501032246992e-13,
+ -1.5161889755851976e-13,
+ -1.4823076576950256e-14,
+ 7.835054762102278e-14,
+ 4.446922973085077e-13,
+ -1.8168856718604742e-13,
+ -1.8973538018496328e-13,
+ 2.244637310223896e-14,
+ 5.082197683525802e-14,
+ -7.919758056827708e-14,
+ -4.616329562535937e-14,
+ 3.3881317890172014e-14,
+ -6.733911930671688e-14,
+ -9.190307477709159e-14,
+ 1.139259314057034e-13,
+ 2.329340604949326e-13,
+ 2.3251054402130544e-13,
+ 6.013933925505532e-14,
+ -1.5712461171567271e-13,
+ -6.183340514956392e-14,
+ 8.411037166235202e-13,
+ 1.122318655111948e-13
+ ],
+ [
+ 11.41643847123161,
+ -10.172193861234764,
+ 9.005864128515999,
+ -9.197005639046338,
+ 7.11879049625272,
+ -3.9840353163199214,
+ -7.573689326358967,
+ 4.302638172532428,
+ -1.9038274521262015,
+ -4.227523954752871,
+ 6.301729549243182,
+ -8.565611127209564,
+ -5.717788442186832,
+ 8.463649698743357,
+ -9.84777370010313,
+ 8.252490589320114,
+ -6.853925800290361,
+ 1.5753670321327862,
+ 6.080839068250666,
+ -3.5277813117594192,
+ -0.5062062977278409,
+ 6.294255686466625,
+ -9.397896629523533,
+ 9.05987199201866,
+ 7.414054818406289,
+ -10.671035860241224,
+ 9.606249175666049,
+ -6.5474293648274,
+ 3.140772024258379,
+ 0.5621539201351221,
+ -4.245704650486259,
+ -0.44779193695196906,
+ 3.295647660936063,
+ -7.906971640869578,
+ 8.467147877905223,
+ -8.10687648247472,
+ -8.275688869572143,
+ 8.335091609476205,
+ -7.611992725861682,
+ 3.1936260970117227,
+ -1.0937035863073759,
+ -3.3772852526771007,
+ 1.0992961417513218,
+ 2.222708204694204,
+ -5.57169482886114,
+ 8.566882307519094,
+ -11.708395397601251,
+ 10.71948654686251,
+ -2.896852679609707e-13,
+ -9.486769009248164e-14,
+ -2.574980159653073e-13,
+ -8.131516293641283e-14,
+ 1.6940658945086007e-15,
+ 2.286988957586611e-13,
+ -3.3881317890172014e-14,
+ 3.3711911300721153e-13,
+ -4.404571325722362e-14,
+ 1.1689054672109345e-13,
+ -3.2187251995663413e-13,
+ 4.573977915173222e-14,
+ 9.825582188149884e-14,
+ 3.5236570605778894e-13,
+ 1.2366681029912785e-13,
+ 1.6940658945086007e-15,
+ 5.488773498207866e-13,
+ -3.8963515573697816e-13,
+ 3.4050724479622874e-13,
+ -1.2536087619363645e-13,
+ -2.896852679609707e-13,
+ -1.3044307387716225e-13,
+ 4.743384504624082e-14,
+ -1.5246593050577406e-13,
+ -1.4738373282224826e-13,
+ 4.1504614415460717e-13,
+ 3.7269449679189215e-14,
+ -5.082197683525802e-14,
+ -7.623296525288703e-14,
+ -9.825582188149884e-14,
+ 1.2197274440461925e-13,
+ -2.473336205982557e-13,
+ -1.3044307387716225e-13,
+ -3.7269449679189215e-14,
+ -1.3213713977167085e-13,
+ -3.3881317890172014e-14,
+ -1.3383120566617945e-13,
+ 3.5067164016328034e-13,
+ 3.3711911300721153e-13,
+ 2.710505431213761e-13,
+ 1.7448878713438587e-13,
+ 5.421010862427522e-14,
+ -3.1679032227310833e-13,
+ -1.6940658945086007e-14,
+ 9.147955830346444e-14,
+ -1.2705494208814505e-13,
+ -4.997494388800372e-13,
+ 3.2017845406212553e-13,
+ 1.0503208545953324e-13,
+ 5.929230630780102e-14,
+ 8.300922883092143e-14,
+ 2.710505431213761e-14,
+ -2.0498197323554068e-13,
+ 2.236166980751353e-13,
+ -2.710505431213761e-13,
+ -1.9651164376299768e-13,
+ -1.9481757786848908e-13,
+ -1.9651164376299768e-13,
+ -2.846030702774449e-13,
+ -1.8465318250143747e-13,
+ 3.032377951170395e-13,
+ -8.470329472543003e-15,
+ -6.284984468626909e-13,
+ 2.0328790734103208e-14
+ ],
+ [
+ 18.08630140167283,
+ -16.96831968855996,
+ 14.690195997832486,
+ -13.991361203564054,
+ 10.201951756783755,
+ -4.961157345218796,
+ -11.127703224553029,
+ 5.3641840124238644,
+ -1.4709015490146633,
+ -8.061058560645897,
+ 11.033876401106653,
+ -13.963154291446834,
+ -10.108990406687413,
+ 13.959743679225458,
+ -15.662041515971218,
+ 12.192304044917094,
+ -9.61231978294185,
+ 1.1154287472113065,
+ 8.603456412393523,
+ -4.084242099828514,
+ -2.365013699409847,
+ 11.215301982590304,
+ -15.806364252634841,
+ 14.547072982283533,
+ 12.652988963172339,
+ -17.271820508922037,
+ 15.03635391764495,
+ -9.292449821100345,
+ 3.5298524495374615,
+ 2.32956933225707,
+ -5.5169832752447645,
+ -2.3267785773817087,
+ 6.930152359712059,
+ -13.146332602382154,
+ 13.48035861242052,
+ -12.226145913379499,
+ -13.312617405102086,
+ 12.631203453096292,
+ -11.040311989380273,
+ 3.431572135434686,
+ 0.0032812016178854707,
+ -6.750077527495067,
+ 0.19703851667185843,
+ 5.149995269080029,
+ -10.186232693030707,
+ 14.03085523936177,
+ -18.56463717967041,
+ 16.38868088627005,
+ -4.607859233063394e-13,
+ -1.1858461261560205e-13,
+ -3.8285889215894375e-13,
+ -1.2197274440461925e-13,
+ 3.3881317890172014e-15,
+ 3.1848438816761693e-13,
+ -1.2197274440461925e-13,
+ 5.353248226647178e-13,
+ -8.470329472543003e-14,
+ 2.337810934421869e-13,
+ -4.980553729855286e-13,
+ 1.6940658945086007e-14,
+ 1.7279472123987727e-13,
+ 5.522654816098038e-13,
+ 2.574980159653073e-13,
+ 3.049318610115481e-14,
+ 9.58841296291868e-13,
+ -6.471331717022855e-13,
+ 5.89534931288993e-13,
+ -2.507217523872729e-13,
+ -3.5575383784680614e-13,
+ -2.473336205982557e-13,
+ 1.0503208545953324e-13,
+ -2.473336205982557e-13,
+ -2.405573570202213e-13,
+ 6.369687763352339e-13,
+ 5.082197683525802e-14,
+ -9.825582188149884e-14,
+ -7.453889935837843e-14,
+ -2.405573570202213e-13,
+ 2.1006417091906648e-13,
+ -4.641740550953566e-13,
+ -1.8634724839594607e-13,
+ -8.470329472543003e-14,
+ -1.7279472123987727e-13,
+ -2.371692252312041e-14,
+ -1.8295911660692887e-13,
+ 5.759824041329242e-13,
+ 5.183841637196318e-13,
+ 3.4897757426877174e-13,
+ 2.371692252312041e-13,
+ 6.098637220230962e-14,
+ -4.912791094074942e-13,
+ 4.743384504624082e-14,
+ 1.3213713977167085e-13,
+ -2.1006417091906648e-13,
+ -8.097634975751111e-13,
+ 4.54009659728305e-13,
+ 1.9989977555201488e-13,
+ 6.776263578034403e-14,
+ 1.0164395367051604e-13,
+ 6.776263578034403e-14,
+ -2.879912020664621e-13,
+ 3.1509625637859973e-13,
+ -3.5914196963582334e-13,
+ -2.405573570202213e-13,
+ -2.981555974335137e-13,
+ -3.1509625637859973e-13,
+ -4.641740550953566e-13,
+ -2.642742795433417e-13,
+ 4.438452643612534e-13,
+ 2.710505431213761e-14,
+ -1.0842021724855044e-12,
+ 6.776263578034403e-15
+ ],
+ [
+ 10.371639138988343,
+ -9.4438931486961,
+ 8.64758719403139,
+ -7.717465209760991,
+ 5.2817021364241095,
+ -2.131255511761423,
+ -5.920998341690742,
+ 2.308582471013939,
+ -0.02684871447508871,
+ -5.343339361281831,
+ 6.882545283296709,
+ -8.215029564388354,
+ -6.352312935148231,
+ 8.296606940450996,
+ -9.013610041435635,
+ 6.525801429090383,
+ -4.85378661834429,
+ -0.08985464700150697,
+ 4.3893139517249535,
+ -1.546978005541341,
+ -2.1823050014176872,
+ 7.088760452622565,
+ -9.54935036271711,
+ 8.44465330644171,
+ 7.735452213268713,
+ -10.09825520666284,
+ 8.5263530858976,
+ -4.757889749599368,
+ 1.260028306039763,
+ 2.0964052004608296,
+ -2.5246623461105075,
+ -2.189115255372492,
+ 4.877365412351078,
+ -7.86638833591486,
+ 7.7654172728328055,
+ -6.685010203021294,
+ -7.740910476121145,
+ 6.940253934627995,
+ -5.792627089827016,
+ 1.107509750020382,
+ 0.9193060036493343,
+ -4.61057672247533,
+ -0.70327886235019,
+ 3.8140181672869864,
+ -6.5597500887707865,
+ 8.288569560222278,
+ -10.654330018536012,
+ 9.084475792545357,
+ -2.642742795433417e-13,
+ -4.0657581468206416e-14,
+ -2.0667603913004928e-13,
+ -6.098637220230962e-14,
+ 5.082197683525802e-15,
+ 1.6263032587282567e-13,
+ -8.639736061993863e-14,
+ 2.998496633280223e-13,
+ -6.437450399132683e-14,
+ 1.5246593050577406e-13,
+ -2.727446090158847e-13,
+ -2.371692252312041e-14,
+ 1.1519648082658485e-13,
+ 3.3542504711270293e-13,
+ 1.6601845766184287e-13,
+ 2.371692252312041e-14,
+ 5.912289971835016e-13,
+ -3.8285889215894375e-13,
+ 3.7947076036992655e-13,
+ -1.3552527156068805e-13,
+ -1.6601845766184287e-13,
+ -1.6263032587282567e-13,
+ 8.131516293641283e-14,
+ -1.4907779871675686e-13,
+ -1.4230153513872246e-13,
+ 3.6761229910836635e-13,
+ 2.371692252312041e-14,
+ -7.284483346386983e-14,
+ -3.218725199566341e-14,
+ -1.7110065534536867e-13,
+ 1.2536087619363645e-13,
+ -3.049318610115481e-13,
+ -9.147955830346444e-14,
+ -6.606856988583543e-14,
+ -8.470329472543003e-14,
+ -3.3881317890172014e-15,
+ -8.470329472543003e-14,
+ 3.1848438816761693e-13,
+ 2.862971361719535e-13,
+ 1.4738373282224826e-13,
+ 1.0672615135404184e-13,
+ 3.049318610115481e-14,
+ -2.795208725939191e-13,
+ 7.284483346386983e-14,
+ 4.573977915173222e-14,
+ -9.147955830346444e-14,
+ -4.828087799349512e-13,
+ 2.524158182817815e-13,
+ 1.3044307387716225e-13,
+ 2.541098841762901e-14,
+ 4.235164736271502e-14,
+ 6.268043809681823e-14,
+ -1.4060746924421386e-13,
+ 1.4738373282224826e-13,
+ -1.6771252355635147e-13,
+ -8.809142651444724e-14,
+ -1.5924219408380846e-13,
+ -2.0498197323554068e-13,
+ -2.574980159653073e-13,
+ -1.5924219408380846e-13,
+ 2.591920818598159e-13,
+ 5.082197683525802e-14,
+ -6.725441601199145e-13,
+ -6.776263578034403e-15
+ ],
+ [
+ -11.20169267745478,
+ 11.294432197216693,
+ -7.951624248947936,
+ 10.255778458021165,
+ -9.947078383475889,
+ 6.755367033745671,
+ 9.279069605813815,
+ -7.967175541725742,
+ 5.111033181045524,
+ 1.314461661971962,
+ -4.700652124683343,
+ 7.611769660548222,
+ 3.4399168271619973,
+ -7.867740046553978,
+ 9.558783973404774,
+ -9.938240855071843,
+ 8.631883973360019,
+ -4.4138550804478545,
+ -8.108188170249518,
+ 5.904695041280326,
+ -2.7573930040463854,
+ -3.5740243321843517,
+ 6.610163134787196,
+ -8.477156506246367,
+ -5.369439249369876,
+ 9.013586062293623,
+ -9.808065643416112,
+ 8.702418447072077,
+ -6.813574339883094,
+ 2.474037009332458,
+ 6.718730227697705,
+ -3.6471267587267917,
+ 0.34752177634143644,
+ 6.490364875426389,
+ -8.892287880760282,
+ 9.278943741926158,
+ 7.733883191219127,
+ -10.099355358801214,
+ 9.623758975033017,
+ -6.528634111332076,
+ 3.994931435707435,
+ 0.41613017169886457,
+ -4.288226806582467,
+ 0.5098494760381256,
+ 2.6513030452649216,
+ -7.454595069624492,
+ 10.772015812830329,
+ -11.756824786979436,
+ 3.0789647632693817e-13,
+ 1.359487880343152e-13,
+ 3.400837283226016e-13,
+ 1.291725244562808e-13,
+ 1.6940658945086007e-14,
+ -2.261577969168982e-13,
+ -3.049318610115481e-14,
+ -3.2504889350883776e-13,
+ -5.2727800966580196e-14,
+ -2.710505431213761e-14,
+ 3.460129589533817e-13,
+ -1.6432439176733427e-13,
+ 4.404571325722362e-14,
+ -3.316133988500586e-13,
+ -1.503483481376383e-14,
+ -2.1175823681357508e-16,
+ -2.913793338554793e-13,
+ 3.654947167402306e-13,
+ -2.115464785767615e-13,
+ 9.084428359302371e-14,
+ 3.928115292891818e-13,
+ 1.9481757786848908e-14,
+ -5.3998350387461647e-14,
+ 2.1091120386632078e-13,
+ 1.1265538198482195e-13,
+ -3.2526065174565133e-13,
+ -5.759824041329242e-14,
+ 6.988021814847978e-15,
+ 9.465593185566806e-14,
+ 4.8916152703935845e-14,
+ -4.1504614415460717e-14,
+ 1.590304358469949e-13,
+ 1.2218450264143282e-13,
+ 6.1409888675936775e-15,
+ 1.7131241358218224e-13,
+ 3.790472438962994e-14,
+ 2.210755992333724e-13,
+ -3.4537768424294096e-13,
+ -3.21449003483007e-13,
+ -4.751854834096625e-13,
+ -2.295459287059154e-13,
+ -4.5951537388545793e-14,
+ 4.086933970501999e-13,
+ 2.627919718856467e-13,
+ -1.742770288975723e-13,
+ 2.4818065354551e-13,
+ 4.0064658405128406e-13,
+ -3.8963515573697816e-13,
+ -8.216219588366713e-14,
+ -1.9566461081574338e-13,
+ -1.2811373327221293e-13,
+ 8.745615180400651e-14,
+ 2.63639004832901e-13,
+ -3.0620241043242957e-13,
+ 4.04669990550742e-13,
+ 4.504097697024742e-13,
+ 1.962998855261841e-13,
+ 6.818615225397118e-14,
+ 2.1535812683940586e-13,
+ 1.9058241313221758e-13,
+ -2.9857911390714087e-13,
+ 1.2896076621946723e-13,
+ 4.4596284672938913e-13,
+ -4.912791094074942e-14
+ ],
+ [
+ -10.958127082977919,
+ 10.488188716551113,
+ -7.646224070642454,
+ 9.454021774521427,
+ -8.672551275629298,
+ 5.257472602012701,
+ 8.206510394580322,
+ -6.358970668081518,
+ 3.45374093466314,
+ 2.651137727684315,
+ -5.668321124033918,
+ 7.840579829684806,
+ 4.417353993840046,
+ -8.267074117413053,
+ 9.412473641639867,
+ -8.83979738356289,
+ 7.179134558145199,
+ -2.9359596398742602,
+ -6.900719313403443,
+ 4.252225993220727,
+ -1.1327202209121328,
+ -4.741033252962804,
+ 7.367121126172495,
+ -8.48694801905126,
+ -6.160626195900438,
+ 9.166367219420792,
+ -9.412508537448124,
+ 7.43261068964772,
+ -5.236784677266394,
+ 0.9805106367287652,
+ 5.3630816685679275,
+ -1.9674337108118156,
+ -1.3703181781161873,
+ 6.970327295352663,
+ -8.784205506582223,
+ 8.460535026287664,
+ 7.768823554927299,
+ -9.32451661052809,
+ 8.395445627643609,
+ -4.757238542528503,
+ 2.1522843365164537,
+ 1.8086545355467263,
+ -2.6486982880005536,
+ -1.1498518299638827,
+ 3.9548342628520143,
+ -7.752016191399001,
+ 10.53586637290742,
+ -10.90716403868461,
+ 2.8597949881673315e-13,
+ 9.952637130238029e-14,
+ 3.0027317980164947e-13,
+ 1.1127895344553371e-13,
+ 4.7645603283054394e-15,
+ -1.8973538018496328e-13,
+ 4.552802091491864e-15,
+ -3.1594328932585403e-13,
+ -1.0587911840678754e-14,
+ -5.908054807098745e-14,
+ 3.21449003483007e-13,
+ -1.0842021724855044e-13,
+ 7.835054762102278e-15,
+ -3.380720250728726e-13,
+ -6.003346013664854e-14,
+ -1.7470054537119944e-14,
+ -3.704710353053496e-13,
+ 3.686710902924342e-13,
+ -2.6639186191147746e-13,
+ 8.173867941003998e-14,
+ 3.1244927841843004e-13,
+ 6.733911930671688e-14,
+ -8.459741560702325e-14,
+ 2.149346103657787e-13,
+ 1.3118422770600977e-13,
+ -3.389190580201269e-13,
+ -4.2034010007494654e-14,
+ 3.1234339930002325e-14,
+ 6.183340514956392e-14,
+ 9.994988777600744e-14,
+ -6.098637220230962e-14,
+ 2.218167530622199e-13,
+ 9.645587686858345e-14,
+ 4.1928130889087867e-14,
+ 1.479131284142822e-13,
+ 2.1811098391798234e-14,
+ 1.6855955650360577e-13,
+ -3.372249921256183e-13,
+ -2.981555974335137e-13,
+ -3.7703554064657044e-13,
+ -1.7893571010747095e-13,
+ -4.309280119156253e-14,
+ 3.9048218868423246e-13,
+ 1.7279472123987727e-13,
+ -1.250432388384161e-13,
+ 1.9767631406547234e-13,
+ 4.1081097941833566e-13,
+ -3.5310685988663645e-13,
+ -9.624411863176988e-14,
+ -1.511953810848926e-13,
+ -9.77264262894649e-14,
+ 4.743384504624082e-14,
+ 2.0667603913004928e-13,
+ -2.406632361386281e-13,
+ 3.2176664083822734e-13,
+ 3.3542504711270293e-13,
+ 1.8740603958001395e-13,
+ 1.0746730518288936e-13,
+ 2.1006417091906648e-13,
+ 1.7522994096323338e-13,
+ -2.8015614730435984e-13,
+ 7.739763555536169e-14,
+ 5.338425150070228e-13,
+ -2.0540548970916783e-14
+ ],
+ [
+ 1.9212479970643574,
+ -3.77702613944647,
+ 4.377924574482038,
+ -3.6582781818249743,
+ 5.178819663020083,
+ -5.592139065089633,
+ -4.4491229307814235,
+ 6.0755174706916435,
+ -5.950526301942615,
+ 4.254809237895389,
+ -2.704700672139145,
+ -0.011524374726920418,
+ 2.863037913075096,
+ -0.5224257126261119,
+ -1.4375403330362755,
+ 4.600087190883962,
+ -5.631934073808348,
+ 5.291984297312253,
+ 4.774569783624947,
+ -6.014184034486391,
+ 5.607741374511339,
+ -3.4717089240738885,
+ 1.8219850598441265,
+ 0.8169372031601462,
+ -2.0585751896941917,
+ -0.4014209401563672,
+ 2.2804416098667533,
+ -5.038660815412148,
+ 5.8568803398460885,
+ -5.1489879164704915,
+ -5.121672308061909,
+ 5.877419861977989,
+ -5.672109054285606,
+ 0.9249819226288047,
+ 1.2453416886706155,
+ -3.615084632529966,
+ -0.6599627770452977,
+ 3.5542835677652547,
+ -4.994773149702825,
+ 6.466956466348679,
+ -6.44699506030297,
+ 4.528058765555425,
+ 5.809820075185924,
+ -5.497571335436567,
+ 4.012142685361242,
+ -0.2293736905558183,
+ -1.8538679989690787,
+ 3.965824984878519,
+ -9.740878893424454e-14,
+ -1.334076891925523e-13,
+ -1.6644197413547002e-13,
+ -6.988021814847978e-14,
+ -4.383395502041004e-14,
+ 1.41030985717841e-13,
+ 1.1498472258977127e-13,
+ 6.140988867593677e-14,
+ 1.469602163486211e-13,
+ -1.0630263488041469e-13,
+ -1.1350241493207625e-13,
+ 2.0328790734103208e-13,
+ -1.2620790914089075e-13,
+ 1.0376153603865179e-14,
+ -1.4738373282224826e-13,
+ -5.590417451878382e-14,
+ -2.32722302258119e-13,
+ -2.964615315390051e-14,
+ -1.6474790824096142e-13,
+ -3.9810548520952116e-14,
+ -3.0450834453792097e-13,
+ 1.554305458211641e-13,
+ -9.783230540787169e-14,
+ -6.776263578034403e-15,
+ 4.828087799349512e-14,
+ -1.5246593050577406e-14,
+ 5.653944922922455e-14,
+ 7.64447234897006e-14,
+ -1.1350241493207625e-13,
+ 1.6559494118821572e-13,
+ -5.95040645446146e-14,
+ 1.8486494073825105e-13,
+ -9.486769009248164e-14,
+ 1.1689054672109345e-13,
+ -9.783230540787169e-14,
+ -6.20451633863775e-14,
+ -1.9566461081574338e-13,
+ 5.505714157152952e-14,
+ 1.0545560193316039e-13,
+ 3.7015339795012925e-13,
+ 1.895236219481497e-13,
+ 1.461131834013668e-14,
+ -9.889109659193956e-14,
+ -3.206019705357527e-13,
+ 1.7957098481791167e-13,
+ -1.90370654895404e-13,
+ -6.564505341220828e-15,
+ 1.5775988642611344e-13,
+ -3.959879028413854e-14,
+ 1.6305384234645282e-13,
+ 1.130788984584491e-13,
+ -1.3827812863926453e-13,
+ -2.1133472033994793e-13,
+ 2.445807635196792e-13,
+ -3.146727399049726e-13,
+ -4.2012834183813297e-13,
+ -4.6375053862172944e-14,
+ 1.1752582143153417e-13,
+ -3.5998900258307764e-14,
+ -6.903318520122548e-14,
+ 9.380889890841376e-14,
+ -1.7914746834428452e-13,
+ 2.422514229147299e-13,
+ 9.571472303973594e-14
+ ],
+ [
+ 7.521486751102796,
+ -9.979858852583067,
+ 9.606291852261782,
+ -9.35979785290723,
+ 11.201703835978838,
+ -10.309791540210702,
+ -9.952073793313378,
+ 11.482309487277604,
+ -10.03971087063992,
+ 4.952121280165837,
+ -1.4160525813881817,
+ -3.425793933071856,
+ 2.1871867093149486,
+ 2.8451196739585463,
+ -6.155367740438755,
+ 10.44404794021044,
+ -11.202471664913034,
+ 8.869677331075213,
+ 9.851245170391165,
+ -10.478247464947918,
+ 8.53864400078025,
+ -2.919778472952636,
+ -0.58916343937067,
+ 4.862473439253892,
+ -0.2749121724103453,
+ -4.561708043272415,
+ 7.364796414123085,
+ -10.461447057812839,
+ 10.680652639903203,
+ -7.814230222647379,
+ -9.680676544025838,
+ 9.288536684421688,
+ -7.5426234097394,
+ -1.7036687089019895,
+ 5.606411891164331,
+ -8.865832651906457,
+ -4.324986551294095,
+ 9.154272341736014,
+ -10.81713810575957,
+ 11.34748611013575,
+ -10.186153011335666,
+ 5.710516211056017,
+ 9.48777199792061,
+ -7.388056480478016,
+ 4.037061662149667,
+ 3.0416385910323305,
+ -7.241200082273628,
+ 10.432931424477072,
+ -2.6385076306971456e-13,
+ -2.346281263894412e-13,
+ -3.6930636500287495e-13,
+ -1.4907779871675686e-13,
+ -6.522153693858113e-14,
+ 2.846030702774449e-13,
+ 1.6263032587282567e-13,
+ 2.253107639696439e-13,
+ 2.1556988507621944e-13,
+ -1.2705494208814505e-13,
+ -3.023907621697852e-13,
+ 3.38389662428093e-13,
+ -1.8465318250143747e-13,
+ 1.6178329292557136e-13,
+ -1.8550021544869177e-13,
+ -7.284483346386983e-14,
+ -1.7321823771350442e-13,
+ -2.0286439086740493e-13,
+ -1.207021949837378e-13,
+ -9.232659125071874e-14,
+ -5.730177888175342e-13,
+ 1.9397054492123478e-13,
+ -1.0418505251227894e-13,
+ -1.0291450309139749e-13,
+ 1.2281977735187355e-14,
+ 1.2536087619363645e-13,
+ 9.910285482875314e-14,
+ 9.613823951336309e-14,
+ -1.8973538018496328e-13,
+ 1.9397054492123478e-13,
+ -5.844527336054672e-14,
+ 1.6898307297723292e-13,
+ -1.7787691892340307e-13,
+ 1.4992483166401116e-13,
+ -2.0498197323554068e-13,
+ -9.910285482875314e-14,
+ -3.544832884259247e-13,
+ 2.2573428044327104e-13,
+ 2.8079142201480056e-13,
+ 6.954140496957806e-13,
+ 3.4982460721602604e-13,
+ 3.9810548520952116e-14,
+ -3.117081245895825e-13,
+ -5.349013061910907e-13,
+ 3.121316410632097e-13,
+ -3.5914196963582334e-13,
+ -1.8804131429045468e-13,
+ 3.7947076036992655e-13,
+ -1.4823076576950256e-14,
+ 2.9942614685439517e-13,
+ 2.0498197323554068e-13,
+ -2.185345003916095e-13,
+ -3.9302328752599536e-13,
+ 4.552802091491864e-13,
+ -5.912289971835016e-13,
+ -7.487771253728015e-13,
+ -1.478072492958754e-13,
+ 1.215492279309921e-13,
+ -1.427250516123496e-13,
+ -1.7491230360801302e-13,
+ 2.56650983018053e-13,
+ -2.9095581738185217e-13,
+ 1.1519648082658485e-13,
+ 1.461131834013668e-13
+ ],
+ [
+ 9.162280700606539,
+ -11.305192552825435,
+ 10.367084872069574,
+ -9.751235612563585,
+ 12.037642171194769,
+ -10.506398395130939,
+ -10.800178895062492,
+ 11.807136847117162,
+ -9.880926496173476,
+ 3.958318749334634,
+ -0.09961206195068764,
+ -4.772168814941206,
+ 1.065765621843634,
+ 4.332329329670745,
+ -7.591625789417333,
+ 11.381927333568468,
+ -11.724393429890641,
+ 8.705162723072947,
+ 10.433723104046612,
+ -10.448680958111307,
+ 8.024213687841497,
+ -1.665743187020023,
+ -2.08601734950801,
+ 6.21811044231479,
+ 1.0444541228407147,
+ -6.08669069558627,
+ 8.694467991099973,
+ -11.101962747518854,
+ 10.840219648594397,
+ -7.33164779618896,
+ -9.954932891995309,
+ 8.88348953170802,
+ -6.5897690716381385,
+ -3.018872925578757,
+ 6.958968405210322,
+ -9.863077486632756,
+ -5.5770251900978405,
+ 10.307724014342291,
+ -11.628719582001347,
+ 11.347471800240852,
+ -9.740863771073363,
+ 4.826985634122053,
+ 9.208390749878422,
+ -6.495177942058553,
+ 2.849835044455865,
+ 4.403252876822217,
+ -8.817930774634196,
+ 11.806409087801196,
+ -3.0196724569615807e-13,
+ -2.354751593366955e-13,
+ -3.985290016831483e-13,
+ -1.6347735882007997e-13,
+ -5.802175688691957e-14,
+ 2.9603801506537797e-13,
+ 1.478072492958754e-13,
+ 2.744386749103933e-13,
+ 1.9735867671025198e-13,
+ -1.0630263488041469e-13,
+ -3.443188930588731e-13,
+ 3.341544976918215e-13,
+ -1.7279472123987727e-13,
+ 2.1218175328720223e-13,
+ -1.5754812818929986e-13,
+ -6.310395457044538e-14,
+ -7.792703114739563e-14,
+ -2.668153783851046e-13,
+ -5.548065804515667e-14,
+ -9.952637130238029e-14,
+ -5.912289971835016e-13,
+ 1.6263032587282567e-13,
+ -7.835054762102278e-14,
+ -1.3891340334970526e-13,
+ -1.3552527156068805e-14,
+ 1.8634724839594607e-13,
+ 9.952637130238029e-14,
+ 8.555032767268433e-14,
+ -1.8804131429045468e-13,
+ 1.6051274350468991e-13,
+ -3.9810548520952116e-14,
+ 1.0545560193316039e-13,
+ -1.8422966602781032e-13,
+ 1.3044307387716225e-13,
+ -2.1811098391798234e-13,
+ -9.656175598699024e-14,
+ -3.5829493668856904e-13,
+ 2.7486219138402046e-13,
+ 3.180608716939898e-13,
+ 7.102371262727308e-13,
+ 3.5660087079406044e-13,
+ 4.531626267810507e-14,
+ -3.654947167402306e-13,
+ -5.230428449295305e-13,
+ 3.155197728522269e-13,
+ -3.7269449679189215e-13,
+ -2.5622746654442585e-13,
+ 4.205518583117601e-13,
+ 8.046812998915853e-15,
+ 3.057788939588024e-13,
+ 2.0921713797181218e-13,
+ -2.1133472033994793e-13,
+ -4.010701005249112e-13,
+ 4.667151539371195e-13,
+ -6.068991067077062e-13,
+ -7.517417406881916e-13,
+ -1.7448878713438587e-13,
+ 9.105604182983729e-14,
+ -1.7660636950252162e-13,
+ -1.9651164376299768e-13,
+ 2.947674656444965e-13,
+ -2.8333252085656346e-13,
+ -7.199780051661553e-15,
+ 1.376428539288238e-13
+ ],
+ [
+ -3.2356829534619367,
+ 5.431222354759373,
+ -7.070587507923899,
+ 9.399116205463528,
+ -9.116231608258492,
+ 8.970446720047956,
+ 7.218008624428972,
+ -10.491022720245303,
+ 9.494737698711146,
+ -6.669992510823335,
+ 3.4164200421171014,
+ 0.18869777439630234,
+ -4.425922810087348,
+ -0.086850695922476,
+ 2.467743326860577,
+ -7.436713091980077,
+ 8.295029464123552,
+ -8.410698304152847,
+ -7.6682779641282215,
+ 8.843525862396637,
+ -8.88278488025871,
+ 5.413667839738456,
+ -3.4953680860967467,
+ -1.4367672001759584,
+ 3.1583668093915302,
+ 0.057667391717172924,
+ -3.7786606004666563,
+ 8.129516292703947,
+ -10.124646532167315,
+ 8.187013982291141,
+ 8.229664027416293,
+ -10.094984322763027,
+ 8.963726639682381,
+ -1.3107567267945934,
+ -2.9023403701010775,
+ 5.909907883501317,
+ 1.2212176946491273,
+ -6.565773404150391,
+ 8.082520655845142,
+ -10.31312050435339,
+ 9.485905489120368,
+ -7.105527717961251,
+ -9.223488872737008,
+ 7.917069420129538,
+ -6.253133975153082,
+ 0.21683758282131993,
+ 2.389403789379905,
+ -6.469559011365721,
+ 1.3891340334970526e-13,
+ 2.0498197323554068e-13,
+ 2.879912020664621e-13,
+ 9.994988777600744e-14,
+ 5.759824041329242e-14,
+ -1.6771252355635147e-13,
+ -1.8465318250143747e-13,
+ -1.0842021724855044e-13,
+ -2.0159384144652348e-13,
+ 1.9312351197398048e-13,
+ 1.7279472123987727e-13,
+ -3.4050724479622874e-13,
+ 2.405573570202213e-13,
+ -5.082197683525802e-14,
+ 2.473336205982557e-13,
+ 6.098637220230962e-14,
+ 4.2521053952165877e-13,
+ 3.8963515573697816e-14,
+ 2.710505431213761e-13,
+ -1.1858461261560205e-14,
+ 4.692562527788824e-13,
+ -2.456395547037471e-13,
+ 7.792703114739563e-14,
+ 9.147955830346444e-14,
+ -6.945670167485263e-14,
+ 2.879912020664621e-14,
+ -6.098637220230962e-14,
+ -1.0333801956502464e-13,
+ 1.3721933745519665e-13,
+ -2.0667603913004928e-13,
+ 1.1519648082658485e-13,
+ -2.574980159653073e-13,
+ 1.0503208545953324e-13,
+ -1.2874900798265365e-13,
+ 1.5924219408380846e-13,
+ 7.115076756936123e-14,
+ 2.981555974335137e-13,
+ -1.1011428314305904e-13,
+ -1.3721933745519665e-13,
+ -6.386628422297425e-13,
+ -2.591920818598159e-13,
+ -2.541098841762901e-14,
+ 2.439454888092385e-13,
+ 5.759824041329242e-13,
+ -2.761327408049019e-13,
+ 2.862971361719535e-13,
+ -5.421010862427522e-14,
+ -2.930733997499879e-13,
+ 6.945670167485263e-14,
+ -2.998496633280223e-13,
+ -1.4907779871675686e-13,
+ 2.490276864927643e-13,
+ 2.710505431213761e-13,
+ -3.4558944247975454e-13,
+ 4.895850435129856e-13,
+ 6.877907531704919e-13,
+ 7.962109704190423e-14,
+ -2.1514636860259229e-13,
+ -5.082197683525802e-15,
+ 8.639736061993863e-14,
+ -1.2197274440461925e-13,
+ 3.1509625637859973e-13,
+ -3.3542504711270293e-13,
+ -1.2874900798265365e-13
+ ],
+ [
+ -7.1858913834039235,
+ 10.537421883061638,
+ -12.611487234267946,
+ 15.477668356419123,
+ -15.88623939523909,
+ 15.158143550416392,
+ 12.951304275951504,
+ -17.79249232954977,
+ 15.643296781976696,
+ -10.025419652377792,
+ 4.291798116771955,
+ 1.7859284933643447,
+ -6.1477731064476115,
+ -1.7312022651722752,
+ 5.68139223711646,
+ -13.415565302262422,
+ 14.430008751533379,
+ -13.83279243276102,
+ -13.412997355384569,
+ 14.740574644142162,
+ -14.236154436878703,
+ 7.646604688821604,
+ -4.145741562953617,
+ -3.877328648631422,
+ 3.8175291372118663,
+ 1.8041457629275715,
+ -7.749932903387621,
+ 14.24310864307762,
+ -17.001314816775057,
+ 13.110118932934958,
+ 14.008889836840595,
+ -16.334306817290763,
+ 13.890017275389917,
+ -0.7461170076672908,
+ -6.273909300845599,
+ 10.934855240583033,
+ 3.4024427017637526,
+ -12.15921132080919,
+ 14.351713249466345,
+ -17.181597302340553,
+ 15.356147364679881,
+ -10.872299313460433,
+ -15.061270848193425,
+ 12.253168353321653,
+ -9.119814398880559,
+ -1.1282053382055386,
+ 5.744893027818196,
+ -12.280964300642667,
+ 2.608861477543245e-13,
+ 3.3711911300721153e-13,
+ 5.116079001415974e-13,
+ 1.9142944607947188e-13,
+ 9.317362419797304e-14,
+ -2.981555974335137e-13,
+ -2.913793338554793e-13,
+ -2.456395547037471e-13,
+ -3.3203691532368573e-13,
+ 2.930733997499879e-13,
+ 3.3034284942917713e-13,
+ -5.64123942871364e-13,
+ 3.8963515573697816e-13,
+ -1.3213713977167085e-13,
+ 3.8285889215894375e-13,
+ 8.639736061993863e-14,
+ 6.098637220230962e-13,
+ 1.3721933745519665e-13,
+ 3.7100043089738355e-13,
+ -1.0164395367051604e-14,
+ 7.860465750519907e-13,
+ -3.7438856268640075e-13,
+ 1.0842021724855044e-13,
+ 1.8973538018496328e-13,
+ -7.623296525288703e-14,
+ -6.776263578034403e-15,
+ -1.0164395367051604e-13,
+ -1.6432439176733427e-13,
+ 2.286988957586611e-13,
+ -3.1340219048409113e-13,
+ 1.7448878713438587e-13,
+ -3.6761229910836635e-13,
+ 1.6432439176733427e-13,
+ -2.0159384144652348e-13,
+ 2.812149384884277e-13,
+ 1.3044307387716225e-13,
+ 4.997494388800372e-13,
+ -2.405573570202213e-13,
+ -2.659683454378503e-13,
+ -1.0842021724855044e-12,
+ -4.45539330255762e-13,
+ -4.912791094074942e-14,
+ 4.658681209898652e-13,
+ 9.41900637346782e-13,
+ -4.641740550953566e-13,
+ 4.980553729855286e-13,
+ -1.3552527156068805e-14,
+ -5.166900978251232e-13,
+ 7.962109704190423e-14,
+ -5.014435047745458e-13,
+ -2.642742795433417e-13,
+ 4.0318768289304696e-13,
+ 4.590918574118308e-13,
+ -5.861467994999758e-13,
+ 8.317863542037229e-13,
+ 1.1434944787933055e-12,
+ 1.6432439176733427e-13,
+ -3.100140586950739e-13,
+ 1.8634724839594607e-14,
+ 1.6771252355635147e-13,
+ -2.388632911257127e-13,
+ 5.183841637196318e-13,
+ -4.2521053952165877e-13,
+ -1.8804131429045468e-13
+ ],
+ [
+ -5.212287960399375,
+ 7.068129296779004,
+ -7.981448048178705,
+ 9.190698508833938,
+ -9.140409558106349,
+ 9.197572425497652,
+ 8.232621460878814,
+ -10.828233807701421,
+ 9.293204962082704,
+ -5.465563518717062,
+ 1.86960641925161,
+ 1.811159531360895,
+ -3.0702356734923524,
+ -1.8361806832061118,
+ 4.196825352356359,
+ -8.561281397631381,
+ 8.960623964961188,
+ -8.205194626804944,
+ -8.364410610046175,
+ 8.84346287366136,
+ -8.254383966085186,
+ 3.8952655076455334,
+ -1.6424489252540355,
+ -3.0714527618917677,
+ 1.562906885882479,
+ 1.9410189230909094,
+ -5.3792496492902835,
+ 8.893251664211252,
+ -10.262835198206705,
+ 7.595765882255279,
+ 8.551069037174496,
+ -9.552205424937172,
+ 7.804887193151403,
+ 0.2756288960975089,
+ -4.486026867654666,
+ 7.105276129390313,
+ 2.728433958850155,
+ -7.905771609125558,
+ 9.052385957778021,
+ -10.303670619402826,
+ 8.983952410182738,
+ -6.03443092431719,
+ -8.878717464630034,
+ 6.877012375942906,
+ -4.816290885063223,
+ -1.425728658918029,
+ 4.332465570902142,
+ -8.120621968282581,
+ 1.8888834723770898e-13,
+ 2.0498197323554068e-13,
+ 3.117081245895825e-13,
+ 1.2959604092990795e-13,
+ 5.421010862427522e-14,
+ -1.9735867671025198e-13,
+ -1.7533582008164017e-13,
+ -1.7618285302889447e-13,
+ -1.9142944607947188e-13,
+ 1.6263032587282567e-13,
+ 2.1345230270808369e-13,
+ -3.3881317890172014e-13,
+ 2.39710324072967e-13,
+ -1.1350241493207625e-13,
+ 2.193815333388638e-13,
+ 5.421010862427522e-14,
+ 3.07472959853311e-13,
+ 1.0333801956502464e-13,
+ 1.8634724839594607e-13,
+ 1.1011428314305904e-14,
+ 4.828087799349512e-13,
+ -2.1684043449710089e-13,
+ 4.1504614415460717e-14,
+ 1.2959604092990795e-13,
+ -2.541098841762901e-14,
+ -4.404571325722362e-14,
+ -6.776263578034403e-14,
+ -9.232659125071874e-14,
+ 1.4314856808597676e-13,
+ -1.7194768829262297e-13,
+ 9.656175598699024e-14,
+ -1.8634724839594607e-13,
+ 9.486769009248164e-14,
+ -1.0672615135404184e-13,
+ 1.6771252355635147e-13,
+ 7.284483346386983e-14,
+ 2.922263668027336e-13,
+ -1.6686549060909717e-13,
+ -1.7957098481791167e-13,
+ -6.606856988583543e-13,
+ -2.625802136488331e-13,
+ -3.3881317890172014e-14,
+ 2.99002630380768e-13,
+ 5.632769099241097e-13,
+ -2.90532300908225e-13,
+ 3.006966962752766e-13,
+ 3.049318610115481e-14,
+ -3.3203691532368573e-13,
+ 3.134021904840911e-14,
+ -2.981555974335137e-13,
+ -1.5077186461126546e-13,
+ 2.346281263894412e-13,
+ 2.769797737521562e-13,
+ -3.4304834363799164e-13,
+ 5.039846036163087e-13,
+ 6.818615225397118e-13,
+ 1.1434944787933055e-13,
+ -1.7957098481791167e-13,
+ 3.3881317890172014e-14,
+ 1.1011428314305904e-13,
+ -1.7194768829262297e-13,
+ 3.083199928005653e-13,
+ -1.8634724839594607e-13,
+ -1.0587911840678754e-13
+ ],
+ [
+ -1.1410885931663426,
+ -1.9040649038286743,
+ 3.87734763131167,
+ -7.797204107401418,
+ 8.803932597464508,
+ -6.6384993746376875,
+ -3.776936006814084,
+ 6.9564938736429776,
+ -7.864606962581874,
+ 7.5386487105871876,
+ -6.295736949656891,
+ 2.9145473350094386,
+ 6.057676626007714,
+ -3.9095560531869147,
+ 1.3079235723306155,
+ 3.7730324300581732,
+ -5.995826737261459,
+ 7.045505194337699,
+ 4.766752632737568,
+ -7.678501518744042,
+ 8.205543190294524,
+ -7.114718255132538,
+ 5.544154931581422,
+ -1.9161915641384542,
+ -5.470957319557147,
+ 2.7957171817830546,
+ -0.010494789454006052,
+ -4.973598427303749,
+ 7.039675644746915,
+ -7.555930431048937,
+ -5.875049211100114,
+ 8.293808935185561,
+ -9.240059827114782,
+ 4.030152469864329,
+ -1.3829484035817994,
+ -2.398446680036514,
+ 1.8900826674570363,
+ 1.9678875140399772,
+ -4.545949349301515,
+ 8.17228222233426,
+ -9.12977908093481,
+ 7.644318372596617,
+ 7.9497608674838505,
+ -8.903717508319708,
+ 7.652899302888963,
+ -3.2516814874045314,
+ 1.0730186702216724,
+ 2.0240561518443245,
+ -1.6940658945086007e-14,
+ -1.8550021544869177e-13,
+ -1.8041801776516597e-13,
+ -2.286988957586611e-14,
+ -8.173867941003998e-14,
+ 1.2387856853594142e-13,
+ 1.590304358469949e-13,
+ -1.0587911840678754e-14,
+ 2.0582900618279498e-13,
+ -1.8338263308055602e-13,
+ -3.4304834363799164e-14,
+ 2.6469779601696886e-13,
+ -1.6368911705689354e-13,
+ -1.4060746924421386e-13,
+ -2.2679307162733892e-13,
+ -6.776263578034403e-14,
+ -5.01867021248173e-13,
+ 5.166900978251232e-14,
+ -3.5914196963582334e-13,
+ -3.6422416731934915e-14,
+ -3.2017845406212553e-13,
+ 2.625802136488331e-13,
+ -2.3335757696855974e-13,
+ 3.875175733688424e-14,
+ 1.73429995950318e-13,
+ -1.9248823726353975e-13,
+ 4.616329562535937e-14,
+ 1.24090326772755e-13,
+ -1.0990252490624547e-13,
+ 2.73591641963139e-13,
+ -1.0249098661777034e-13,
+ 3.729062550287057e-13,
+ -1.3065483211397583e-13,
+ 2.261577969168982e-13,
+ -1.0037340424963459e-13,
+ -1.1456120611614412e-13,
+ -2.7147405959500326e-13,
+ -5.505714157152952e-15,
+ 5.2727800966580196e-14,
+ 4.2457526481121804e-13,
+ 2.1175823681357508e-13,
+ -1.8422966602781032e-14,
+ -3.282252670610414e-14,
+ -4.290221877843031e-13,
+ 2.15781643313033e-13,
+ -2.0731131384049e-13,
+ 1.759710947920809e-13,
+ 1.1943164556285635e-13,
+ -1.1879637085241562e-13,
+ 2.0519373147235426e-13,
+ 1.4145450219146816e-13,
+ -2.22769665127881e-13,
+ -2.4775713707188285e-13,
+ 3.443188930588731e-13,
+ -3.6253010142484055e-13,
+ -5.346895479542771e-13,
+ 6.988021814847978e-15,
+ 2.0688779736686286e-13,
+ 5.738648217647885e-14,
+ -3.091670257478196e-14,
+ 1.7364175418713157e-14,
+ -2.488159282559507e-13,
+ 5.721707558702799e-13,
+ 1.5670109524204556e-13
+ ],
+ [
+ 0.21282717127909342,
+ -5.281474808236151,
+ 8.076785283278843,
+ -13.889151524187092,
+ 15.02298918718225,
+ -12.142590568595491,
+ -8.01647217262635,
+ 13.053040466042964,
+ -14.018824050576624,
+ 12.268655697031821,
+ -9.563485924334394,
+ 3.40672194440053,
+ 9.409958991996282,
+ -5.006000297663657,
+ 0.3730783218902506,
+ 8.133804025259941,
+ -11.573850451276545,
+ 12.527553025297733,
+ 9.439287173234952,
+ -13.854431634967929,
+ 14.141911433066342,
+ -11.139869339070477,
+ 7.96572118673551,
+ -1.5866355313579275,
+ -8.073092382346166,
+ 2.950469959365151,
+ 1.82773171326353,
+ -9.89470069886853,
+ 12.974119343885372,
+ -13.010288523546464,
+ -11.018187323844208,
+ 14.460581364538026,
+ -15.406255798101263,
+ 5.469880902886342,
+ -0.618404168629139,
+ -5.727856988381642,
+ 1.6828353423179645,
+ 5.17189833007967,
+ -9.35805644469117,
+ 14.796191965586818,
+ -15.904608524645058,
+ 12.613019089038902,
+ 14.005199561969528,
+ -14.87361241896422,
+ 12.206787696618097,
+ -3.996157232777677,
+ -0.2404983424103504,
+ 5.572186558500861,
+ -9.783230540787169e-14,
+ -3.290723000082957e-13,
+ -3.5236570605778894e-13,
+ -7.453889935837843e-14,
+ -1.384898868760781e-13,
+ 2.5368636770266295e-13,
+ 2.7825032317303766e-13,
+ 5.124549330888517e-14,
+ 3.5151867311053464e-13,
+ -2.99002630380768e-13,
+ -1.215492279309921e-13,
+ 4.760325163569168e-13,
+ -2.939204326972422e-13,
+ -1.6220680939919851e-13,
+ -3.866705404215881e-13,
+ -1.215492279309921e-13,
+ -7.720705314222948e-13,
+ 3.218725199566341e-14,
+ -5.543830639779396e-13,
+ -7.580944877925988e-14,
+ -6.085931726022148e-13,
+ 4.341043854678289e-13,
+ -3.5660087079406044e-13,
+ 3.176373552203626e-14,
+ 2.507217523872729e-13,
+ -2.464865876510014e-13,
+ 8.851494298807439e-14,
+ 2.0371142381465923e-13,
+ -2.1429933565533799e-13,
+ 4.463863632030163e-13,
+ -1.6474790824096142e-13,
+ 5.903819642362473e-13,
+ -2.2996944517954254e-13,
+ 3.6422416731934915e-13,
+ -1.9100592960584473e-13,
+ -1.8888834723770898e-13,
+ -4.828087799349512e-13,
+ 5.209252625613947e-14,
+ 1.5161889755851976e-13,
+ 8.042577834179582e-13,
+ 3.968349357886397e-13,
+ -1.5670109524204556e-14,
+ -1.207021949837378e-13,
+ -7.640237184233789e-13,
+ 4.044582323139284e-13,
+ -3.909057051578596e-13,
+ 2.1429933565533799e-13,
+ 2.65121312490596e-13,
+ -1.6983010592448722e-13,
+ 3.6930636500287495e-13,
+ 2.515687853345272e-13,
+ -3.7608262858090935e-13,
+ -4.561272420964407e-13,
+ 6.081696561285876e-13,
+ -6.844026213814747e-13,
+ -9.634999775017666e-13,
+ -2.710505431213761e-14,
+ 3.3373098121819433e-13,
+ 4.870439446712227e-14,
+ -8.682087709356578e-14,
+ 9.275010772434589e-14,
+ -4.387630666777276e-13,
+ 8.643971226730135e-13,
+ 2.6385076306971456e-13
+ ],
+ [
+ 7.158064800513094,
+ -11.08685693884166,
+ 11.63380776282265,
+ -13.780979160318369,
+ 12.86579426743195,
+ -8.021154529743862,
+ -11.940730401235951,
+ 14.997722904759685,
+ -13.939366607660599,
+ 8.584544736867388,
+ -4.380885510148495,
+ -2.1420585566642747,
+ 5.06549493709499,
+ 1.0908431728657884,
+ -5.683481095910767,
+ 12.441658955134194,
+ -14.247980154389152,
+ 12.3600727203389,
+ 12.29951806756325,
+ -14.2932922188459,
+ 12.563424605299979,
+ -6.308594962498,
+ 1.9943312962694146,
+ 4.077031131820494,
+ -2.8364503938301864,
+ -3.351447557692443,
+ 7.525913066954446,
+ -13.020416307972894,
+ 14.216843903786502,
+ -11.519603536415833,
+ -12.643130968636935,
+ 13.379061414154615,
+ -12.028364900718058,
+ 0.13995027389201575,
+ 5.094524775440374,
+ -10.186247213252626,
+ -3.5400753094325386,
+ 10.287375530587335,
+ -13.184441040389718,
+ 15.420101023218194,
+ -14.672390180705348,
+ 9.409269343426237,
+ 13.414420523363145,
+ -11.705568904647674,
+ 7.702126717246388,
+ 1.5915596211132692,
+ -6.896015868570974,
+ 11.613420883159323,
+ -3.0535537748517527e-13,
+ -3.222960364302613e-13,
+ -4.4426878083488053e-13,
+ -1.6644197413547002e-13,
+ -1.15619997300212e-13,
+ 3.7015339795012925e-13,
+ 2.5876856538618875e-13,
+ 2.558039500707987e-13,
+ 3.057788939588024e-13,
+ -2.219226321806267e-13,
+ -2.99002630380768e-13,
+ 4.866204281975955e-13,
+ -2.8841471854008927e-13,
+ 1.2112571145736495e-13,
+ -3.2780175058741423e-13,
+ -1.223962608782464e-13,
+ -3.9810548520952116e-13,
+ -1.5585406229479126e-13,
+ -2.879912020664621e-13,
+ -1.1265538198482195e-13,
+ -7.267542687441897e-13,
+ 3.2991933295555e-13,
+ -1.7830043539703022e-13,
+ -7.496241583200558e-14,
+ 7.877406409464993e-14,
+ 5.082197683525802e-14,
+ 1.181610961419749e-13,
+ 1.4653669987499396e-13,
+ -2.7655625727852906e-13,
+ 3.2017845406212553e-13,
+ -1.1096131609031334e-13,
+ 3.5151867311053464e-13,
+ -2.1684043449710089e-13,
+ 2.422514229147299e-13,
+ -2.4436900528286565e-13,
+ -1.435720845596039e-13,
+ -4.836558128822055e-13,
+ 2.3166351107405114e-13,
+ 3.206019705357527e-13,
+ 9.351243737687476e-13,
+ 4.429982314139991e-13,
+ 3.6845933205562065e-14,
+ -3.282252670610414e-13,
+ -7.568239383717174e-13,
+ 4.612094397799665e-13,
+ -4.4426878083488053e-13,
+ -9.359714067160019e-14,
+ 4.404571325722362e-13,
+ -5.675120746603812e-14,
+ 3.765061450545365e-13,
+ 2.422514229147299e-13,
+ -3.172138387467355e-13,
+ -5.010199883009187e-13,
+ 5.869938324472301e-13,
+ -7.796938279475835e-13,
+ -1.0054281083908545e-12,
+ -1.5966571055743561e-13,
+ 2.2742834633777964e-13,
+ -1.2705494208814505e-13,
+ -1.7957098481791167e-13,
+ 2.634272465960874e-13,
+ -4.2436350657440447e-13,
+ 3.7777669447541795e-13,
+ 2.1641691802347374e-13
+ ],
+ [
+ 5.26861578497662,
+ -7.261814631529953,
+ 7.160109822258967,
+ -7.697398035584346,
+ 6.813102580489416,
+ -3.7437932420149256,
+ -6.489705320536842,
+ 8.751249908771149,
+ -7.791301901696943,
+ 4.138634675913247,
+ -1.5127736552433937,
+ -2.2063714138815076,
+ 2.0482228009095667,
+ 1.717163132259228,
+ -4.281625793575875,
+ 7.748731948709794,
+ -8.463780219617815,
+ 6.890961796033181,
+ 7.406453944427236,
+ -8.083547257226119,
+ 6.7487961662371765,
+ -2.655994253213561,
+ 0.03322213170529816,
+ 3.310758008802275,
+ -0.6381172197226767,
+ -3.0202660500796057,
+ 5.248314333306386,
+ -7.85831431402346,
+ 8.186600262215972,
+ -6.180212971787822,
+ -7.374716754889834,
+ 7.295709671070354,
+ -6.122659544663635,
+ -0.8887877385158416,
+ 3.889467146647814,
+ -6.513069675517016,
+ -2.9300965798944363,
+ 6.688930209053294,
+ -8.07730604460314,
+ 8.748109854952004,
+ -7.992603220379205,
+ 4.68762645487798,
+ 7.404561175545638,
+ -5.979982265006873,
+ 3.4956061176645044,
+ 1.9051702312459708,
+ -5.0693050012633405,
+ 7.5994729073190905,
+ -2.0752307207730358e-13,
+ -1.7914746834428452e-13,
+ -2.6385076306971456e-13,
+ -1.0778494253810972e-13,
+ -6.013933925505532e-14,
+ 2.2891065399547467e-13,
+ 1.427250516123496e-13,
+ 1.81900325422861e-13,
+ 1.6263032587282567e-13,
+ -1.1180834903756764e-13,
+ -2.0117032497289633e-13,
+ 2.7232109254225756e-13,
+ -1.5966571055743561e-13,
+ 1.1943164556285635e-13,
+ -1.7321823771350442e-13,
+ -6.88214269644119e-14,
+ -1.5839516113655416e-13,
+ -1.1921988732604277e-13,
+ -1.1244362374800837e-13,
+ -7.030373462210693e-14,
+ -4.2626933070572665e-13,
+ 1.6347735882007997e-13,
+ -6.670384459627615e-14,
+ -6.077461396549605e-14,
+ 1.3129010682441655e-14,
+ 8.152692117322641e-14,
+ 7.369186641112413e-14,
+ 6.839791049078475e-14,
+ -1.6601845766184287e-13,
+ 1.562775787684184e-13,
+ -5.3574833913834496e-14,
+ 1.5310120521621479e-13,
+ -1.1858461261560205e-13,
+ 1.130788984584491e-13,
+ -1.4717197458543468e-13,
+ -7.242131699024268e-14,
+ -2.718975760686304e-13,
+ 1.6284208410963924e-13,
+ 2.090053797349986e-13,
+ 5.45700976268583e-13,
+ 2.5707449949168015e-13,
+ 3.049318610115481e-14,
+ -2.2213439041744026e-13,
+ -4.2266944067989587e-13,
+ 2.676624113323589e-13,
+ -2.610979059911381e-13,
+ -1.0545560193316039e-13,
+ 2.7846208140985124e-13,
+ -1.1858461261560205e-14,
+ 2.1429933565533799e-13,
+ 1.3065483211397583e-13,
+ -1.6771252355635147e-13,
+ -2.9010878443459787e-13,
+ 3.248371352720242e-13,
+ -4.54009659728305e-13,
+ -5.694178987917034e-13,
+ -1.1265538198482195e-13,
+ 1.0672615135404184e-13,
+ -1.0227922838095677e-13,
+ -1.1667878848427987e-13,
+ 1.7893571010747095e-13,
+ -2.3483988462625477e-13,
+ 1.2387856853594142e-13,
+ 1.1180834903756764e-13
+ ],
+ [
+ 0.22408320855009048,
+ 2.693989222748813,
+ -5.534544608616029,
+ 9.864235120312616,
+ -11.514450501692124,
+ 8.83636868446326,
+ 9.767177190627697,
+ -9.90324755434584,
+ 9.949390896804081,
+ -8.871911670395688,
+ 6.289745962076985,
+ -2.6814785989512724,
+ -6.8728028305345275,
+ 3.107809992505384,
+ -0.5659932833538858,
+ -5.527683507905543,
+ 7.30684064640394,
+ -8.865285847347376,
+ -6.520397834853145,
+ 9.03840930381292,
+ -10.089321606821196,
+ 8.154565444589789,
+ -6.70763025071549,
+ 1.4366663875369141,
+ 6.010731396940413,
+ -3.171063213346387,
+ -0.9890513110342681,
+ 6.862462053858841,
+ -9.884853281294138,
+ 9.31606473395891,
+ 7.744817384984271,
+ -11.059152486288498,
+ 11.105587326008058,
+ -4.132792801182878,
+ -0.029143082055911446,
+ 3.854324988997984,
+ -1.4353265465456333,
+ -4.162182806994435,
+ 6.449877395641118,
+ -10.439879532047042,
+ 10.575480588059616,
+ -9.077974077313415,
+ -9.93308550826955,
+ 9.942241567549917,
+ -8.86276956830095,
+ 3.1237860825888735,
+ -0.9213559993782929,
+ -3.619629728892252,
+ 3.218725199566341e-14,
+ 2.1514636860259229e-13,
+ 2.507217523872729e-13,
+ 5.336307567702092e-14,
+ 8.470329472543003e-14,
+ -1.1604351377383915e-13,
+ -2.1429933565533799e-13,
+ -2.456395547037471e-14,
+ -2.346281263894412e-13,
+ 2.380162581784584e-13,
+ 6.860966872759833e-14,
+ -3.5744790374131474e-13,
+ 2.702035101741218e-13,
+ 1.1773757966834775e-13,
+ 2.837560373301906e-13,
+ 5.251604272976662e-14,
+ 6.361217433879796e-13,
+ -4.235164736271502e-14,
+ 4.1589317710186147e-13,
+ -2.286988957586611e-14,
+ 4.1419911120735287e-13,
+ -3.1679032227310833e-13,
+ 1.8634724839594607e-13,
+ 4.319868030996932e-14,
+ -1.6263032587282567e-13,
+ 1.9058241313221758e-13,
+ -3.7269449679189215e-14,
+ -1.4230153513872246e-13,
+ 1.0587911840678754e-13,
+ -2.829090043829363e-13,
+ 1.5331296345302836e-13,
+ -3.8709405689521525e-13,
+ 1.0757318430129614e-13,
+ -2.1599340154984659e-13,
+ 1.4145450219146816e-13,
+ 1.2112571145736495e-13,
+ 3.1424922343134543e-13,
+ -2.286988957586611e-14,
+ -5.675120746603812e-14,
+ -5.996993266560446e-13,
+ -2.346281263894412e-13,
+ 3.3881317890172014e-15,
+ 1.5331296345302836e-13,
+ 5.98005260761536e-13,
+ -2.583450489125616e-13,
+ 2.73591641963139e-13,
+ -2.1175823681357508e-13,
+ -1.9989977555201488e-13,
+ 1.2027867851011065e-13,
+ -3.057788939588024e-13,
+ -1.6178329292557136e-13,
+ 2.956144985917508e-13,
+ 2.574980159653073e-13,
+ -3.8031779331718085e-13,
+ 4.607859233063394e-13,
+ 6.844026213814747e-13,
+ 1.5246593050577406e-14,
+ -2.786738396466648e-13,
+ -1.0587911840678754e-13,
+ 4.319868030996932e-14,
+ -3.6422416731934915e-14,
+ 3.4558944247975454e-13,
+ -5.929230630780102e-13,
+ -1.5246593050577406e-13
+ ],
+ [
+ -1.4176377350212064,
+ 5.6859434620977325,
+ -9.612029190431402,
+ 15.48865876856297,
+ -17.59315838252026,
+ 12.848787734428639,
+ 14.969269081948111,
+ -15.929574819266676,
+ 15.629700654007566,
+ -13.014877989624964,
+ 8.539947019263114,
+ -2.8021733643260074,
+ -9.701780115252044,
+ 3.3019690529937424,
+ 0.654419730233728,
+ -9.792313970658839,
+ 12.142853466049166,
+ -13.900712294848773,
+ -10.98436964607903,
+ 14.29654266502997,
+ -15.466557053203474,
+ 11.595056101949899,
+ -9.059865300534428,
+ 0.8165526555131519,
+ 8.120001903640166,
+ -3.4129070393992227,
+ -3.008018111529721,
+ 11.591490583474814,
+ -15.896717102030498,
+ 14.274081590292662,
+ 12.597080689893746,
+ -17.151223297179506,
+ 16.607424171436264,
+ -5.140783140356609,
+ -1.5346246880105172,
+ 7.200315212144689,
+ -0.92484806213741,
+ -7.883150525675572,
+ 11.12134159223133,
+ -16.579512066547586,
+ 16.288065067064693,
+ -13.460914685797437,
+ -15.472289153407981,
+ 14.798361364145372,
+ -12.790963433876042,
+ 3.48891011167237,
+ 0.21611875761193863,
+ -7.2329285037164865,
+ 9.825582188149884e-14,
+ 3.3881317890172014e-13,
+ 4.2182240773264157e-13,
+ 1.0842021724855044e-13,
+ 1.2705494208814505e-13,
+ -2.1345230270808369e-13,
+ -3.2356658585114273e-13,
+ -8.809142651444724e-14,
+ -3.5405977195229754e-13,
+ 3.5405977195229754e-13,
+ 1.5077186461126546e-13,
+ -5.692061405548898e-13,
+ 4.2859867131067597e-13,
+ 9.656175598699024e-14,
+ 4.2521053952165877e-13,
+ 8.639736061993863e-14,
+ 9.16489648929153e-13,
+ -1.8634724839594607e-14,
+ 5.929230630780102e-13,
+ -2.371692252312041e-14,
+ 6.691560283308973e-13,
+ -4.692562527788824e-13,
+ 2.473336205982557e-13,
+ 9.994988777600744e-14,
+ -2.1175823681357508e-13,
+ 2.1175823681357508e-13,
+ -7.453889935837843e-14,
+ -1.9312351197398048e-13,
+ 1.7279472123987727e-13,
+ -4.1165801236558996e-13,
+ 2.320870275476783e-13,
+ -5.370188885592264e-13,
+ 1.6093625997831706e-13,
+ -3.1848438816761693e-13,
+ 2.320870275476783e-13,
+ 1.7448878713438587e-13,
+ 4.929731753020028e-13,
+ -9.486769009248164e-14,
+ -1.4907779871675686e-13,
+ -9.723938234479368e-13,
+ -3.8285889215894375e-13,
+ -1.0164395367051604e-14,
+ 2.964615315390051e-13,
+ 9.317362419797304e-13,
+ -4.2182240773264157e-13,
+ 4.45539330255762e-13,
+ -2.490276864927643e-13,
+ -3.5914196963582334e-13,
+ 1.5585406229479126e-13,
+ -4.929731753020028e-13,
+ -2.490276864927643e-13,
+ 4.523155938337964e-13,
+ 4.2182240773264157e-13,
+ -5.98005260761536e-13,
+ 7.487771253728015e-13,
+ 1.0926725019580474e-12,
+ 6.268043809681823e-14,
+ -4.0657581468206416e-13,
+ -1.2536087619363645e-13,
+ 7.623296525288703e-14,
+ -9.994988777600744e-14,
+ 5.336307567702092e-13,
+ -8.029872339970767e-13,
+ -2.1514636860259229e-13
+ ],
+ [
+ -1.7498368554919883,
+ 4.01025507088172,
+ -5.958493369089582,
+ 8.80939513841693,
+ -9.746890504856902,
+ 6.760878524915392,
+ 8.31829635852015,
+ -8.525054908469427,
+ 8.89352397350128,
+ -6.91414861844087,
+ 4.144749376475968,
+ -0.8428668932335898,
+ -4.936926353237354,
+ 1.036665375671162,
+ 1.1950476436054522,
+ -6.1629095193624375,
+ 7.263539182824123,
+ -7.895875624678428,
+ -6.645380824913156,
+ 8.187106503891886,
+ -8.596582419812897,
+ 5.950126962902499,
+ -4.367857192058307,
+ -0.3030318127063163,
+ 3.915603816454737,
+ -1.1060000847843965,
+ -2.48670873192691,
+ 7.0280253289817365,
+ -9.2418286107162,
+ 7.929906047423328,
+ 7.397413294201738,
+ -9.641086007253868,
+ 9.00292667664722,
+ -2.204860729792556,
+ -1.6667602605366523,
+ 4.707593887900904,
+ 0.18257095906580342,
+ -5.202333952475603,
+ 6.855367411703356,
+ -9.529538289330349,
+ 9.094812751613564,
+ -7.23314784404261,
+ -8.733709281477541,
+ 7.9833617176310385,
+ -6.675051337145741,
+ 1.2293171539488448,
+ 1.0095550734117338,
+ -4.9400333326125105,
+ 8.724439356719293e-14,
+ 1.8719428134320037e-13,
+ 2.507217523872729e-13,
+ 7.538593230563273e-14,
+ 7.284483346386983e-14,
+ -1.4823076576950256e-13,
+ -1.8380614955418317e-13,
+ -8.300922883092143e-14,
+ -1.9989977555201488e-13,
+ 1.8719428134320037e-13,
+ 1.1265538198482195e-13,
+ -3.2695471764015993e-13,
+ 2.346281263894412e-13,
+ 1.8634724839594607e-14,
+ 2.244637310223896e-13,
+ 5.844527336054672e-14,
+ 4.701032857261367e-13,
+ 1.6093625997831706e-14,
+ 3.1594328932585403e-13,
+ -8.470329472543003e-16,
+ 3.9387032047324966e-13,
+ -2.558039500707987e-13,
+ 1.1180834903756764e-13,
+ 7.284483346386983e-14,
+ -8.978549240895584e-14,
+ 8.555032767268433e-14,
+ -4.658681209898652e-14,
+ -1.2197274440461925e-13,
+ 1.1096131609031334e-13,
+ -2.1260526976082939e-13,
+ 1.1011428314305904e-13,
+ -2.846030702774449e-13,
+ 9.486769009248164e-14,
+ -1.6347735882007997e-13,
+ 1.4484263398048536e-13,
+ 1.0503208545953324e-13,
+ 2.73591641963139e-13,
+ -7.199780051661553e-14,
+ -1.1180834903756764e-13,
+ -5.759824041329242e-13,
+ -2.236166980751353e-13,
+ -1.1011428314305904e-14,
+ 1.9312351197398048e-13,
+ 5.310896579284463e-13,
+ -2.490276864927643e-13,
+ 2.795208725939191e-13,
+ -1.0757318430129614e-13,
+ -2.202285662861181e-13,
+ 6.776263578034403e-14,
+ -2.761327408049019e-13,
+ -1.3806637040245096e-13,
+ 2.447925217564928e-13,
+ 2.490276864927643e-13,
+ -3.4897757426877174e-13,
+ 4.379160337304733e-13,
+ 6.23416249179165e-13,
+ 4.658681209898652e-14,
+ -2.1260526976082939e-13,
+ -5.251604272976662e-14,
+ 6.098637220230962e-14,
+ -6.860966872759833e-14,
+ 2.922263668027336e-13,
+ -4.0064658405128406e-13,
+ -1.3044307387716225e-13
+ ],
+ [
+ -3.9109369291442073,
+ -0.376291798419927,
+ 3.6696283024623524,
+ -9.951412718179983,
+ 11.94529932261712,
+ -11.055524496303375,
+ -10.614714102454775,
+ 12.29109032154562,
+ -10.027020729998119,
+ 10.88996031725846,
+ -9.852559179868528,
+ 5.671572628485652,
+ 9.241111183311444,
+ -7.142644674796603,
+ 3.8086694755702575,
+ 3.2711491715559458,
+ -6.687956570278326,
+ 9.01731333766208,
+ 5.0475144849088975,
+ -9.619172994548208,
+ 10.991931520788352,
+ -10.756993935008108,
+ 9.152084153374071,
+ -4.442334353185038,
+ -8.810587616689766,
+ 5.7748112170362935,
+ -2.031789591089214,
+ -5.215913957259325,
+ 8.497803810525136,
+ -10.134374638658649,
+ -6.893540338868691,
+ 10.915679550735135,
+ -12.944229860093776,
+ 7.012412255922324,
+ -3.7944413076176207,
+ -1.4695390613685815,
+ 4.2537515131165975,
+ 0.6774767769321296,
+ -4.423919796286666,
+ 10.16941218314679,
+ -12.056355066070024,
+ 10.854348112631646,
+ 10.31695948159989,
+ -12.454768401710503,
+ 11.326030359915608,
+ -6.113633521057522,
+ 3.7099497188888333,
+ 0.43348905221006595,
+ 5.484538333471595e-14,
+ -2.4691010412462855e-13,
+ -2.0582900618279498e-13,
+ -1.4399560103323106e-14,
+ -1.0863197548536402e-13,
+ 8.915021769851511e-14,
+ 2.064642808932357e-13,
+ -1.0842021724855044e-13,
+ 2.437337305724249e-13,
+ -2.558039500707987e-13,
+ 4.341043854678289e-14,
+ 3.570243872676876e-13,
+ -2.6490955425378243e-13,
+ -2.8185021319886844e-13,
+ -2.8693241088239424e-13,
+ -6.45862622281404e-14,
+ -7.591532789766667e-13,
+ 1.3658406274475593e-13,
+ -5.437951521372608e-13,
+ 2.964615315390051e-15,
+ -3.6507120026660345e-13,
+ 3.9132922163148676e-13,
+ -3.8116482626443515e-13,
+ 1.0820845901173687e-13,
+ 3.0387306982748025e-13,
+ -3.1234339930002325e-13,
+ 2.837560373301906e-14,
+ 1.164670302474663e-13,
+ -1.0354977780183822e-13,
+ 3.894233975001646e-13,
+ -1.8232384189648815e-13,
+ 5.190194384300725e-13,
+ -1.5352472168984194e-13,
+ 3.432601018748052e-13,
+ -1.0630263488041469e-13,
+ -1.4844252400631613e-13,
+ -3.688828485292478e-13,
+ -3.239901023247699e-14,
+ 2.1387581918171084e-14,
+ 5.022905377218001e-13,
+ 2.4352197233561135e-13,
+ -3.176373552203626e-14,
+ 2.286988957586611e-14,
+ -5.27278009665802e-13,
+ 2.422514229147299e-13,
+ -1.9587636905255695e-13,
+ 2.9180285032910647e-13,
+ 1.0037340424963459e-13,
+ -2.047702149987271e-13,
+ 2.9688504801263227e-13,
+ 1.8465318250143747e-13,
+ -3.085317510373789e-13,
+ -2.90532300908225e-13,
+ 4.3050449544199815e-13,
+ -4.652328462794245e-13,
+ -6.725441601199145e-13,
+ 2.6893296075324036e-14,
+ 3.248371352720242e-13,
+ 1.0714966782766899e-13,
+ 8.046812998915853e-15,
+ -1.2705494208814505e-15,
+ -3.536362554786704e-13,
+ 8.495740460960632e-13,
+ 1.7131241358218224e-13
+ ],
+ [
+ -2.1637073906780353,
+ -1.850006430572641,
+ 4.5927740381049444,
+ -9.97360920006716,
+ 11.461141919915114,
+ -10.062287675086369,
+ -10.274083401682116,
+ 11.294956219799758,
+ -9.500285066770324,
+ 10.006942330905174,
+ -8.578182652674963,
+ 4.2881336029906585,
+ 8.181833648196228,
+ -5.622183948503214,
+ 2.2868217591605946,
+ 4.3832596364694805,
+ -7.396505945436717,
+ 9.019516920141673,
+ 5.80016350077826,
+ -9.773692845493906,
+ 10.645073306053158,
+ -9.5816367758372,
+ 7.683672558668596,
+ -3.0238030718837186,
+ -7.522461292162807,
+ 4.2054824204548,
+ -0.5924085393415776,
+ -6.03716198613671,
+ 8.861369644737758,
+ -9.805800493104835,
+ -7.341420502195425,
+ 10.70002792163265,
+ -12.149527561743703,
+ 5.691335261951594,
+ -2.354903328674302,
+ -2.6112282031606022,
+ 2.9460928409433675,
+ 1.9873107249480468,
+ -5.4194926605901355,
+ 10.37873672660954,
+ -11.797895840789092,
+ 10.093265856536961,
+ 10.217948614123364,
+ -11.705813445712547,
+ 10.236390794491733,
+ -4.722644391380993,
+ 2.0403287873668954,
+ 1.9723953529704226,
+ 1.0587911840678754e-15,
+ -2.39710324072967e-13,
+ -2.2827537928503394e-13,
+ -3.282252670610414e-14,
+ -1.0503208545953324e-13,
+ 1.2811373327221293e-13,
+ 2.0434669852509996e-13,
+ -4.743384504624082e-14,
+ 2.439454888092385e-13,
+ -2.3589867581032264e-13,
+ -7.199780051661553e-15,
+ 3.5638911255724687e-13,
+ -2.5029823591364575e-13,
+ -2.0964065444543933e-13,
+ -2.7316812548951186e-13,
+ -7.369186641112413e-14,
+ -6.719088854094737e-13,
+ 8.703263533037936e-14,
+ -4.851381205399005e-13,
+ -1.7999450129153882e-14,
+ -3.9387032047324966e-13,
+ 3.612595520039591e-13,
+ -3.2758999235060066e-13,
+ 7.432714112156485e-14,
+ 2.5368636770266295e-13,
+ -2.4585131294056067e-13,
+ 4.1081097941833566e-14,
+ 1.24090326772755e-13,
+ -1.2387856853594142e-13,
+ 3.587184531621962e-13,
+ -1.5500702934753696e-13,
+ 4.775148240146118e-13,
+ -1.5564230405797769e-13,
+ 3.0959054222144677e-13,
+ -1.2197274440461925e-13,
+ -1.4632494163818038e-13,
+ -3.6422416731934915e-13,
+ -8.470329472543003e-16,
+ 6.54332951753947e-14,
+ 5.38712954453735e-13,
+ 2.568627412548666e-13,
+ -2.117582368135751e-14,
+ -2.6893296075324036e-14,
+ -5.313014161652599e-13,
+ 2.608861477543245e-13,
+ -2.286988957586611e-13,
+ 2.2594603868008462e-13,
+ 1.3912516158651883e-13,
+ -1.6517142471458857e-13,
+ 2.8523834498788564e-13,
+ 1.8168856718604742e-13,
+ -2.898970261977843e-13,
+ -3.083199928005653e-13,
+ 4.3558669312552395e-13,
+ -4.842910875926462e-13,
+ -6.829203137237796e-13,
+ 3.8116482626443515e-15,
+ 2.907440591450386e-13,
+ 7.22095587534291e-14,
+ -2.0328790734103208e-14,
+ 3.091670257478196e-14,
+ -3.38389662428093e-13,
+ 7.417891035579535e-13,
+ 1.759710947920809e-13
+ ],
+ [
+ 8.129432843537948,
+ -5.89202303354425,
+ 2.7892732766395776,
+ 2.5223752511850193,
+ -5.104233788700388,
+ 6.940086557771867,
+ 4.17144612250844,
+ -7.276254949624994,
+ 8.10362304414203,
+ -6.448568843675553,
+ 7.767116936055114,
+ -7.112816726835876,
+ -6.7321995654924995,
+ 8.056024164974005,
+ -7.186382998380772,
+ 3.6620498904494663,
+ -1.12450619868295,
+ -2.3584132131406124,
+ 1.7344415054360398,
+ 1.8972319537607325,
+ -4.295794665554086,
+ 7.602049674674701,
+ -8.372009433612428,
+ 6.9327512414930395,
+ 7.549466148573822,
+ -7.895591996122713,
+ 6.3846523737595735,
+ -1.969092384364297,
+ -0.75305811256666,
+ 3.996328482191365,
+ -0.010875434842177551,
+ -3.7424172725180913,
+ 6.628876435244119,
+ -7.211327439562123,
+ 6.848040084156364,
+ -4.255277655404342,
+ -6.432532134414183,
+ 5.146739216575268,
+ -2.8856679381798567,
+ -1.8189128600282491,
+ 4.215883282638276,
+ -5.943537725294936,
+ -3.1110647552349713,
+ 6.314397294152618,
+ -7.40299106665751,
+ 7.259565867735026,
+ -7.761188926308894,
+ 6.142008019633387,
+ -2.363221922839498e-13,
+ 8.639736061993863e-14,
+ -2.964615315390051e-14,
+ -7.199780051661553e-14,
+ 3.5998900258307764e-14,
+ 1.435720845596039e-13,
+ -6.37392292808861e-14,
+ 2.7062702664774896e-13,
+ -5.738648217647885e-14,
+ 1.478072492958754e-13,
+ -2.2086384099655881e-13,
+ -9.762054717105811e-14,
+ 1.3383120566617945e-13,
+ 3.6570647497704417e-13,
+ 1.2599615090407718e-13,
+ -1.9269999550035333e-14,
+ 5.54171305741126e-13,
+ -2.4436900528286565e-13,
+ 3.8899988102653743e-13,
+ -8.343274530454858e-14,
+ -1.9481757786848908e-14,
+ -2.1641691802347374e-13,
+ 3.1234339930002325e-13,
+ -1.691948312140465e-13,
+ -2.879912020664621e-13,
+ 3.525774642946025e-13,
+ 4.489274620447792e-14,
+ -1.2705494208814505e-15,
+ -4.785736151986797e-14,
+ -2.3145175283723757e-13,
+ 1.5161889755851976e-13,
+ -3.040848280642938e-13,
+ 2.710505431213761e-14,
+ -2.293341704691018e-13,
+ -3.006966962752766e-14,
+ 4.298692207315574e-14,
+ 1.181610961419749e-13,
+ 1.3383120566617945e-13,
+ 1.7279472123987727e-13,
+ 1.8422966602781032e-14,
+ -9.529120656610879e-15,
+ 6.077461396549605e-14,
+ -2.056172479459814e-13,
+ 1.2620790914089075e-13,
+ 1.2705494208814505e-14,
+ -9.126780006665086e-14,
+ -3.3351922298138076e-13,
+ 1.3806637040245096e-13,
+ 2.0667603913004928e-13,
+ -1.24090326772755e-13,
+ -5.4421866861088797e-14,
+ 1.4823076576950256e-13,
+ 4.235164736271502e-15,
+ -8.300922883092143e-14,
+ 4.997494388800372e-14,
+ 1.3488999685024733e-13,
+ -9.867933835512599e-14,
+ -2.3166351107405114e-13,
+ -1.6877131474041934e-13,
+ -1.2281977735187355e-13,
+ 1.2133746969417852e-13,
+ 1.5331296345302836e-13,
+ -6.61320973568795e-13,
+ -2.8587361969832636e-14
+ ],
+ [
+ 8.489416764063105,
+ -6.033385236958971,
+ 2.7261991068517935,
+ 2.9593996549359702,
+ -5.68357777477927,
+ 7.534713775055321,
+ 4.676652331095194,
+ -7.92574939481355,
+ 8.719287818363727,
+ -7.024070516836456,
+ 8.338764158789903,
+ -7.511544297242494,
+ -7.253790841326798,
+ 8.534394698203567,
+ -7.517691161969302,
+ 3.636826886974763,
+ -0.9051543772763132,
+ -2.756335693903574,
+ 1.5922502488957428,
+ 2.305401391832123,
+ -4.818324438401157,
+ 8.203017958091996,
+ -8.933527805923491,
+ 7.280963679592016,
+ 8.076579488772119,
+ -8.318805137294692,
+ 6.628662431340636,
+ -1.8268190245447908,
+ -1.089305294566115,
+ 4.479032922922172,
+ 0.24549709024595195,
+ -4.247515612252903,
+ 7.285617073982326,
+ -7.662574677899046,
+ 7.169896347137152,
+ -4.312775304701745,
+ -6.760532541572875,
+ 5.257234500731035,
+ -2.797052011772409,
+ -2.2455035427038537,
+ 4.775936178071735,
+ -6.504395859422887,
+ -3.577222835301129,
+ 6.9446214981581615,
+ -8.019896470987746,
+ 7.678621950473989,
+ -8.103979240380092,
+ 6.287832664072521,
+ -2.4436900528286565e-13,
+ 9.783230540787169e-14,
+ -2.2658131339052534e-14,
+ -7.326834993749698e-14,
+ 4.1081097941833566e-14,
+ 1.444191175068582e-13,
+ -7.30565917006834e-14,
+ 2.8185021319886844e-13,
+ -6.776263578034403e-14,
+ 1.6135977645194421e-13,
+ -2.2827537928503394e-13,
+ -1.1371417316888982e-13,
+ 1.4738373282224826e-13,
+ 3.858235074743338e-13,
+ 1.3997219453377313e-13,
+ -1.7364175418713157e-14,
+ 5.971582278142817e-13,
+ -2.560157083076123e-13,
+ 4.1949306712769224e-13,
+ -8.576208590949791e-14,
+ -6.3527471044072525e-15,
+ -2.363221922839498e-13,
+ 3.3457801416544863e-13,
+ -1.776651606865895e-13,
+ -3.068376851428703e-13,
+ 3.7332977150233287e-13,
+ 4.489274620447792e-14,
+ -5.717472393966527e-15,
+ -4.510450444129149e-14,
+ -2.5199230180815435e-13,
+ 1.6220680939919851e-13,
+ -3.316133988500586e-13,
+ 3.3457801416544863e-14,
+ -2.4839241178232357e-13,
+ -2.710505431213761e-14,
+ 4.955142741437657e-14,
+ 1.3488999685024733e-13,
+ 1.384898868760781e-13,
+ 1.7660636950252162e-13,
+ 2.1175823681357508e-16,
+ -1.8846483076408183e-14,
+ 6.37392292808861e-14,
+ -2.1175823681357508e-13,
+ 1.4907779871675686e-13,
+ 4.023406499457927e-15,
+ -8.639736061993863e-14,
+ -3.5300098076822967e-13,
+ 1.3806637040245096e-13,
+ 2.1980504981249094e-13,
+ -1.3827812863926453e-13,
+ -6.268043809681823e-14,
+ 1.6347735882007997e-13,
+ 1.5246593050577406e-14,
+ -1.0100867896007532e-13,
+ 6.860966872759833e-14,
+ 1.6368911705689354e-13,
+ -1.0227922838095677e-13,
+ -2.500864776768322e-13,
+ -1.7724164421296235e-13,
+ -1.2641966737770433e-13,
+ 1.2451384324638215e-13,
+ 1.7046538063492794e-13,
+ -7.104488845095444e-13,
+ -3.578714202149419e-14
+ ],
+ [
+ 8.849400684588261,
+ -6.174747440373693,
+ 2.6631249370640098,
+ 3.3964240586869208,
+ -6.262921760858153,
+ 8.129340992338774,
+ 5.181858539681946,
+ -8.575243840002104,
+ 9.33495259258542,
+ -7.599572189997357,
+ 8.910411381524693,
+ -7.9102718676491115,
+ -7.775382117161097,
+ 9.012765231433125,
+ -7.848999325557831,
+ 3.61160388350006,
+ -0.6858025558696765,
+ -3.1542581746665355,
+ 1.450058992355446,
+ 2.713570829903514,
+ -5.340854211248227,
+ 8.803986241509294,
+ -9.495046178234556,
+ 7.629176117690994,
+ 8.603692828970416,
+ -8.742018278466674,
+ 6.872672488921698,
+ -1.6845456647252848,
+ -1.4255524765655698,
+ 4.961737363652978,
+ 0.5018696153340814,
+ -4.752613951987716,
+ 7.942357712720535,
+ -8.113821916235967,
+ 7.49175261011794,
+ -4.370272953999148,
+ -7.088532948731568,
+ 5.3677297848868015,
+ -2.7084360853649616,
+ -2.672094225379458,
+ 5.335989073505194,
+ -7.065253993550838,
+ -4.043380915367287,
+ 7.574845702163706,
+ -8.636801875317984,
+ 8.09767803321295,
+ -8.44676955445129,
+ 6.433657308511655,
+ -2.526275765185951e-13,
+ 1.0926725019580474e-13,
+ -1.5670109524204556e-14,
+ -7.453889935837843e-14,
+ 4.5951537388545793e-14,
+ 1.4484263398048536e-13,
+ -8.237395412048071e-14,
+ 2.9286164151317434e-13,
+ -7.835054762102278e-14,
+ 1.7470054537119944e-13,
+ -2.3568691757350907e-13,
+ -1.2959604092990795e-13,
+ 1.6093625997831706e-13,
+ 4.0594053997162344e-13,
+ 1.5394823816346909e-13,
+ -1.545835128739098e-14,
+ 6.401451498874375e-13,
+ -2.676624113323589e-13,
+ 4.4998625322884706e-13,
+ -8.809142651444724e-14,
+ 6.776263578034403e-15,
+ -2.56650983018053e-13,
+ 3.56812629030874e-13,
+ -1.861354901591325e-13,
+ -3.2589592645609206e-13,
+ 3.942938369468768e-13,
+ 4.489274620447792e-14,
+ -1.0164395367051604e-14,
+ -4.256340559952859e-14,
+ -2.727446090158847e-13,
+ 1.7300647947669084e-13,
+ -3.5914196963582334e-13,
+ 3.9810548520952116e-14,
+ -2.6723889485873176e-13,
+ -2.3928680759933985e-14,
+ 5.632769099241097e-14,
+ 1.5183065579533334e-13,
+ 1.4314856808597676e-13,
+ 1.802062595283524e-13,
+ -1.7999450129153882e-14,
+ -2.8163845496205486e-14,
+ 6.649208635946258e-14,
+ -2.1811098391798234e-13,
+ 1.7194768829262297e-13,
+ -4.658681209898652e-15,
+ -8.173867941003998e-14,
+ -3.7248273855507857e-13,
+ 1.3806637040245096e-13,
+ 2.329340604949326e-13,
+ -1.5246593050577406e-13,
+ -7.072725109573408e-14,
+ 1.7872395187065737e-13,
+ 2.625802136488331e-14,
+ -1.190081290892292e-13,
+ 8.724439356719293e-14,
+ 1.9248823726353975e-13,
+ -1.0587911840678754e-13,
+ -2.685094442796132e-13,
+ -1.8571197368550535e-13,
+ -1.300195574035351e-13,
+ 1.2769021679858578e-13,
+ 1.8761779781682753e-13,
+ -7.595767954502938e-13,
+ -4.277516383634217e-14
+ ],
+ [
+ 9.168586427453901,
+ -6.300088594068079,
+ 2.607199173185508,
+ 3.7839190300127634,
+ -6.776606761848094,
+ 8.65657712499677,
+ 5.629808044628867,
+ -9.151128914735956,
+ 9.880842025728658,
+ -8.109850340200024,
+ 9.417271919016207,
+ -8.263810313409646,
+ -8.23785971506751,
+ 9.436920437563336,
+ -8.142759230606329,
+ 3.5892394870858233,
+ -0.49131060755579203,
+ -3.5070827742763617,
+ 1.3239827448897163,
+ 3.0754810649934807,
+ -5.804163943172631,
+ 9.336844786139297,
+ -9.992925801683699,
+ 7.937924479472087,
+ 9.071066657279571,
+ -9.117267263639164,
+ 7.089028073310239,
+ -1.5583966190186558,
+ -1.7236916446050867,
+ 5.389735301100961,
+ 0.7291865875788895,
+ -5.20046781321925,
+ 8.524667745735078,
+ -8.513927800894704,
+ 7.777131829960906,
+ -4.421254203042846,
+ -7.3793599764122755,
+ 5.4657022701715805,
+ -2.6298632972836917,
+ -3.0503379640184947,
+ 5.832569307456194,
+ -7.562548205810955,
+ -4.45670774635928,
+ 8.133644496381953,
+ -9.183791333824127,
+ 8.469241093241495,
+ -8.750710299594418,
+ 6.562955159914353,
+ -2.600391148070702e-13,
+ 1.1943164556285635e-13,
+ -9.529120656610879e-15,
+ -7.580944877925988e-14,
+ 5.0186702124817295e-14,
+ 1.452661504541125e-13,
+ -9.063252535621014e-14,
+ 3.0281427864341237e-13,
+ -8.787966827763366e-14,
+ 1.8655900663275965e-13,
+ -2.4246318115154347e-13,
+ -1.435720845596039e-13,
+ 1.7279472123987727e-13,
+ 4.2372823186396374e-13,
+ 1.6644197413547002e-13,
+ -1.376428539288238e-14,
+ 6.780498742770674e-13,
+ -2.778268066994105e-13,
+ 4.770913075409847e-13,
+ -9.020900888258299e-14,
+ 1.8211208365967457e-14,
+ -2.746504331472069e-13,
+ 3.767179032913501e-13,
+ -1.9354702844760763e-13,
+ -3.4283658540117806e-13,
+ 4.129285617864714e-13,
+ 4.489274620447792e-14,
+ -1.3976043629695956e-14,
+ -4.0234064994579266e-14,
+ -2.9095581738185217e-13,
+ 1.8253560013330172e-13,
+ -3.834941668693845e-13,
+ 4.5528020914918643e-14,
+ -2.839677955670042e-13,
+ -2.0964065444543933e-14,
+ 6.20451633863775e-14,
+ 1.6686549060909717e-13,
+ 1.4738373282224826e-13,
+ 1.835943913173696e-13,
+ -3.4304834363799164e-14,
+ -3.6422416731934915e-14,
+ 6.903318520122548e-14,
+ -2.2382845631194886e-13,
+ 1.9248823726353975e-13,
+ -1.2281977735187355e-14,
+ -7.750351467376848e-14,
+ -3.8984691397379173e-13,
+ 1.3806637040245096e-13,
+ 2.445807635196792e-13,
+ -1.64959666477775e-13,
+ -7.81387893842092e-14,
+ 1.9227647902672618e-13,
+ 3.5998900258307764e-14,
+ -1.351017550870609e-13,
+ 1.0376153603865179e-13,
+ 2.1768746744435519e-13,
+ -1.0905549195899117e-13,
+ -2.848148285142585e-13,
+ -1.9312351197398048e-13,
+ -1.3319593095573873e-13,
+ 1.3044307387716225e-13,
+ 2.0286439086740493e-13,
+ -8.029872339970767e-13,
+ -4.912791094074942e-14
+ ],
+ [
+ 8.872498834531703,
+ -5.396290958100359,
+ 1.4299059745199945,
+ 5.567621128334696,
+ -8.627642156371605,
+ 10.060186376802553,
+ 7.325535591195116,
+ -10.772989006472194,
+ 11.066319352583948,
+ -8.777124575394556,
+ 10.447146977736557,
+ -8.487643582522509,
+ -9.2810496606816,
+ 9.84476490247682,
+ -7.956450061124517,
+ 2.375564965931805,
+ 1.1013166618032564,
+ -5.11318647707065,
+ -0.0017255202877525019,
+ 4.875193979410374,
+ -7.563490580109311,
+ 10.583909273616097,
+ -10.787947879640917,
+ 7.923057845711919,
+ 9.907686226810355,
+ -9.253916550050805,
+ 6.633306654677252,
+ -0.16376487477204543,
+ -3.4425258691770564,
+ 7.0068207919058665,
+ 2.210382475487945,
+ -7.020723549443961,
+ 10.377153005150635,
+ -9.011807621308087,
+ 7.635031935214209,
+ -3.5114248976867852,
+ -7.393887780698863,
+ 4.601364974170837,
+ -1.277198993835603,
+ -4.97909604792549,
+ 7.831535431946153,
+ -9.062178418424535,
+ -6.236642493716571,
+ 9.924998363244088,
+ -10.580803258518472,
+ 8.767462618663181,
+ -8.462917608199849,
+ 5.611963101881435,
+ -2.3843977465208555e-13,
+ 1.6135977645194421e-13,
+ 4.0234064994579266e-14,
+ -6.395098751769968e-14,
+ 6.733911930671688e-14,
+ 1.0587911840678754e-13,
+ -1.2726670032495863e-13,
+ 2.873559273560214e-13,
+ -1.3065483211397583e-13,
+ 2.210755992333724e-13,
+ -2.2213439041744026e-13,
+ -2.0709955560367643e-13,
+ 2.1027592915588006e-13,
+ 4.3304559428376105e-13,
+ 2.0688779736686286e-13,
+ 3.3881317890172014e-15,
+ 7.644472348970061e-13,
+ -2.7062702664774896e-13,
+ 5.38712954453735e-13,
+ -7.898582233146351e-14,
+ 9.677351422380381e-14,
+ -3.263194429297192e-13,
+ 4.156814188650479e-13,
+ -1.9142944607947188e-13,
+ -3.671887826347392e-13,
+ 4.332573525205746e-13,
+ 3.049318610115481e-14,
+ -3.917527381051139e-14,
+ -9.952637130238029e-15,
+ -3.4135427774348304e-13,
+ 2.0095856673608276e-13,
+ -4.529508685442371e-13,
+ 7.432714112156485e-14,
+ -3.246253770352106e-13,
+ 8.046812998915853e-15,
+ 8.491505296224361e-14,
+ 2.2996944517954254e-13,
+ 1.3488999685024733e-13,
+ 1.5352472168984194e-13,
+ -1.4378384279641748e-13,
+ -8.893845946170154e-14,
+ 6.6280328122649e-14,
+ -1.98840984367947e-13,
+ 2.862971361719535e-13,
+ -6.500977870176755e-14,
+ -2.117582368135751e-14,
+ -4.053052652611827e-13,
+ 9.931461306556671e-14,
+ 2.5728625772849373e-13,
+ -2.1472285212896514e-13,
+ -1.0863197548536402e-13,
+ 2.3928680759933985e-13,
+ 9.783230540787169e-14,
+ -2.1641691802347374e-13,
+ 1.9651164376299768e-13,
+ 3.4198955245392376e-13,
+ -1.0143219543370247e-13,
+ -3.2335482761432915e-13,
+ -1.9227647902672618e-13,
+ -1.2049043674692422e-13,
+ 1.1286714022163552e-13,
+ 2.560157083076123e-13,
+ -8.936197593532869e-13,
+ -8.089164646278568e-14
+ ],
+ [
+ -9.237907692972597,
+ 7.125912931871413,
+ -4.99161325775882,
+ 0.32123132234159346,
+ 1.6040426306341187,
+ -5.076314619558314,
+ -1.5968889433315772,
+ 4.333689033291965,
+ -6.708795635863941,
+ 7.921646021258545,
+ -7.373013512023364,
+ 7.298272190507878,
+ 5.501481464209671,
+ -8.737033616495554,
+ 8.06402016906629,
+ -5.984429203936813,
+ 3.1515598662530633,
+ -0.15988699790338615,
+ -4.091610732382217,
+ 0.24888192747531557,
+ 1.6593755295714154,
+ -6.06203090267961,
+ 6.9134752607724534,
+ -7.469629040171377,
+ -6.6920504073428875,
+ 7.515137366055375,
+ -7.634049573816361,
+ 4.494007712097584,
+ -2.8547350439084185,
+ -1.5446680682011886,
+ 2.5409577771085052,
+ 0.19114753392537262,
+ -3.986201801278659,
+ 6.939649583741297,
+ -8.37568181154431,
+ 6.147909835658151,
+ 6.9280016923739405,
+ -7.766026168892364,
+ 5.413666459443963,
+ -1.2949857267396296,
+ -1.9121561502590945,
+ 3.885090749274022,
+ 0.35725906715921235,
+ -4.525759544480489,
+ 5.6247422641095675,
+ -7.307706677110984,
+ 8.095953095435421,
+ -8.206386612707549,
+ 2.574980159653073e-13,
+ -4.404571325722362e-14,
+ 1.2197274440461925e-13,
+ 1.0333801956502464e-13,
+ -1.9481757786848908e-14,
+ -1.6771252355635147e-13,
+ 8.470329472543003e-16,
+ -3.2187251995663413e-13,
+ 2.541098841762901e-15,
+ -7.030373462210693e-14,
+ 2.727446090158847e-13,
+ -5.929230630780102e-15,
+ -3.134021904840911e-14,
+ -4.0234064994579266e-13,
+ -5.590417451878382e-14,
+ 1.7787691892340307e-14,
+ -3.7777669447541795e-13,
+ 2.676624113323589e-13,
+ -3.125551575368368e-13,
+ 3.3034284942917713e-14,
+ 1.4568966692773966e-13,
+ 1.4568966692773966e-13,
+ -3.3203691532368573e-13,
+ 2.608861477543245e-13,
+ 2.871441691192078e-13,
+ -3.4304834363799164e-13,
+ -5.505714157152952e-14,
+ -3.6422416731934915e-14,
+ 6.437450399132683e-14,
+ 2.0159384144652348e-13,
+ -1.0503208545953324e-13,
+ 2.65121312490596e-13,
+ -3.4728350837426314e-14,
+ 2.219226321806267e-13,
+ 8.978549240895584e-14,
+ -1.6093625997831706e-14,
+ -5.505714157152952e-14,
+ -1.6771252355635147e-13,
+ -1.9905274260476058e-13,
+ -2.329340604949326e-13,
+ -4.489274620447792e-14,
+ -7.199780051661553e-14,
+ 3.3711911300721153e-13,
+ 8.046812998915853e-14,
+ -8.724439356719293e-14,
+ 1.8973538018496328e-13,
+ 2.718975760686304e-13,
+ -2.430984558619842e-13,
+ -2.1175823681357508e-13,
+ 1.6940658945086007e-15,
+ 2.117582368135751e-14,
+ -5.844527336054672e-14,
+ 3.3034284942917713e-14,
+ 8.470329472543003e-15,
+ 7.792703114739563e-14,
+ 7.453889935837843e-14,
+ 1.2027867851011065e-13,
+ 1.6601845766184287e-13,
+ 1.2112571145736495e-13,
+ 1.3721933745519665e-13,
+ -1.4484263398048536e-13,
+ -4.489274620447792e-14,
+ 5.886878983417387e-13,
+ 1.6940658945086007e-14
+ ],
+ [
+ -14.97794870598939,
+ 10.867508374034307,
+ -7.012355909575518,
+ -1.3637761619429432,
+ 4.653802291037017,
+ -9.89483552602944,
+ -4.445715230082133,
+ 8.928689395371702,
+ -12.364969939225178,
+ 13.229704343433918,
+ -13.091686638239986,
+ 12.31801460981441,
+ 10.214109219839038,
+ -14.863822729703596,
+ 13.15022863342224,
+ -8.617508104522987,
+ 3.557230655614046,
+ 1.440611182919514,
+ -5.365558819171746,
+ -1.4676495477742317,
+ 4.615166306437532,
+ -11.359888323488093,
+ 12.32074848317013,
+ -12.349757198100175,
+ -11.967123361718409,
+ 12.617323773241798,
+ -12.153268905674306,
+ 5.957034790735259,
+ -2.8674763393704525,
+ -4.275597154455415,
+ 2.6317636352204237,
+ 2.2822452179803236,
+ -8.566960853060808,
+ 12.015520260435867,
+ -13.681123153651493,
+ 9.20922240476375,
+ 11.482420972417536,
+ -11.904752607705273,
+ 7.52379078417996,
+ -0.09526383749185739,
+ -5.256461279363229,
+ 8.023081022416003,
+ 2.4812696552169013,
+ -9.362181570747397,
+ 10.794001469561884,
+ -12.41361635616315,
+ 13.12759461456731,
+ -12.574769614503445,
+ 4.0826988057657276e-13,
+ -1.0842021724855044e-13,
+ 1.4738373282224826e-13,
+ 1.7448878713438587e-13,
+ -4.573977915173222e-14,
+ -2.422514229147299e-13,
+ 4.573977915173222e-14,
+ -5.183841637196318e-13,
+ 5.082197683525802e-14,
+ -1.4907779871675686e-13,
+ 4.2690460541616737e-13,
+ 6.776263578034403e-14,
+ -9.656175598699024e-14,
+ -6.606856988583543e-13,
+ -1.2197274440461925e-13,
+ 2.0328790734103208e-14,
+ -7.132017415881209e-13,
+ 4.1843427594362437e-13,
+ -5.793705359219414e-13,
+ 4.912791094074942e-14,
+ 1.4907779871675686e-13,
+ 2.947674656444965e-13,
+ -5.98005260761536e-13,
+ 4.2351647362715017e-13,
+ 5.04831636563563e-13,
+ -5.844527336054672e-13,
+ -7.792703114739563e-14,
+ -3.049318610115481e-14,
+ 7.284483346386983e-14,
+ 3.8285889215894375e-13,
+ -2.0498197323554068e-13,
+ 5.082197683525802e-13,
+ -8.639736061993863e-14,
+ 4.0826988057657276e-13,
+ 1.1519648082658485e-13,
+ -6.098637220230962e-14,
+ -1.6093625997831706e-13,
+ -2.693564772268675e-13,
+ -2.930733997499879e-13,
+ -2.744386749103933e-13,
+ -2.0328790734103208e-14,
+ -1.3044307387716225e-13,
+ 5.251604272976662e-13,
+ 2.202285662861181e-14,
+ -9.825582188149884e-14,
+ 2.507217523872729e-13,
+ 4.760325163569168e-13,
+ -3.6591823321385775e-13,
+ -3.5575383784680614e-13,
+ 5.251604272976662e-14,
+ 7.453889935837843e-14,
+ -1.5077186461126546e-13,
+ -1.6940658945086007e-14,
+ 9.147955830346444e-14,
+ 4.0657581468206416e-14,
+ 1.6940658945086007e-15,
+ 1.8634724839594607e-13,
+ 2.964615315390051e-13,
+ 2.0837010502455788e-13,
+ 2.1684043449710089e-13,
+ -2.202285662861181e-13,
+ -1.2705494208814505e-13,
+ 1.094366567852556e-12,
+ 6.268043809681823e-14
+ ],
+ [
+ -8.774641397224713,
+ 6.011957795357662,
+ -3.549505469547318,
+ -1.772950536235892,
+ 3.7874156185637813,
+ -6.656913241198089,
+ -3.5639845574352598,
+ 6.213844801750077,
+ -8.01268844368172,
+ 7.949888676316285,
+ -7.519571436731365,
+ 7.466963170728082,
+ 6.652695887985663,
+ -9.068530004579166,
+ 7.742951967908702,
+ -4.487508112220325,
+ 1.2815358208756926,
+ 1.722476190430238,
+ -2.487809291918797,
+ -1.8268862985002259,
+ 3.6984714334305564,
+ -7.446384082726906,
+ 7.79239322647023,
+ -7.358375088389724,
+ -7.588031812515502,
+ 7.615252378760554,
+ -7.003940526033118,
+ 2.80281723979882,
+ -0.7697449906491859,
+ -3.4201612800167562,
+ 0.7727409522956084,
+ 2.356336169759472,
+ -6.1061819174016625,
+ 7.433922933749657,
+ -8.067213352365828,
+ 5.002978400530109,
+ 6.855858365984639,
+ -6.619347174862442,
+ 3.759784331874252,
+ 0.9800874733013175,
+ -4.193805559524547,
+ 5.591196551923601,
+ 2.436623197901858,
+ -6.530939897316047,
+ 7.188831504238308,
+ -7.564472743729187,
+ 7.691212601836374,
+ -6.989122189778856,
+ 2.253107639696439e-13,
+ -9.232659125071874e-14,
+ 6.352747104407253e-14,
+ 1.0249098661777034e-13,
+ -3.3881317890172014e-14,
+ -1.2620790914089075e-13,
+ 4.319868030996932e-14,
+ -2.879912020664621e-13,
+ 4.743384504624082e-14,
+ -1.0757318430129614e-13,
+ 2.22769665127881e-13,
+ 6.268043809681823e-14,
+ -7.877406409464993e-14,
+ -4.1081097941833566e-13,
+ -9.825582188149884e-14,
+ 1.4399560103323106e-14,
+ -4.760325163569168e-13,
+ 2.718975760686304e-13,
+ -3.8370592510619805e-13,
+ 2.964615315390051e-14,
+ 4.743384504624082e-14,
+ 1.9820570965750628e-13,
+ -3.7269449679189215e-13,
+ 2.346281263894412e-13,
+ 3.2610768469290563e-13,
+ -3.4050724479622874e-13,
+ -3.8963515573697816e-14,
+ -3.3881317890172014e-15,
+ 2.202285662861181e-14,
+ 2.4818065354551e-13,
+ -1.3213713977167085e-13,
+ 3.4135427774348304e-13,
+ -6.437450399132683e-14,
+ 2.583450489125616e-13,
+ 5.251604272976662e-14,
+ -4.997494388800372e-14,
+ -1.3298417271892515e-13,
+ -1.5415999640028266e-13,
+ -1.6686549060909717e-13,
+ -1.0926725019580474e-13,
+ 2.0328790734103208e-14,
+ -6.522153693858113e-14,
+ 2.998496633280223e-13,
+ -3.5575383784680614e-14,
+ -1.1858461261560205e-14,
+ 1.3552527156068805e-13,
+ 2.829090043829363e-13,
+ -1.9905274260476058e-13,
+ -2.31239994600424e-13,
+ 6.437450399132683e-14,
+ 5.590417451878382e-14,
+ -1.0842021724855044e-13,
+ -4.658681209898652e-14,
+ 9.910285482875314e-14,
+ -2.286988957586611e-14,
+ -5.421010862427522e-14,
+ 1.0926725019580474e-13,
+ 2.0837010502455788e-13,
+ 1.2790197503539935e-13,
+ 1.1265538198482195e-13,
+ -1.2366681029912785e-13,
+ -1.1858461261560205e-13,
+ 6.810144895924575e-13,
+ 4.0657581468206416e-14
+ ],
+ [
+ 8.167885036915496,
+ -8.399466814952765,
+ 6.650765263935919,
+ -4.175295321467489,
+ 2.14456772074889,
+ 1.047348982663585,
+ -2.4185091948840967,
+ -0.5744483268189384,
+ 2.844904968546391,
+ -6.173429548916061,
+ 7.1844242854784905,
+ -5.418284637466351,
+ -2.15423340960208,
+ 5.570782570826346,
+ -6.950038581257195,
+ 7.5442306031187485,
+ -6.695198596017979,
+ 3.6840125257533636,
+ 6.259674635325344,
+ -4.793851429409125,
+ 2.5379926187765656,
+ 2.1860515912511054,
+ -4.4905692207901335,
+ 6.115519910160675,
+ 3.608590893726278,
+ -6.4293132913274285,
+ 7.213262783001987,
+ -6.710797609879603,
+ 5.476304724353309,
+ -2.2903503865744566,
+ -5.308059866615829,
+ 3.2252418063701342,
+ -0.8307127894061359,
+ -4.524037426592234,
+ 6.481791772181751,
+ -6.975200042280874,
+ -5.572086995401387,
+ 7.577991798995254,
+ -7.362034972991077,
+ 5.30988922542854,
+ -3.4792986954240757,
+ 0.16838179751235255,
+ 3.647797202019746,
+ -0.9016909487903775,
+ -1.4749747269719822,
+ 5.2809072784709485,
+ -7.8300961770998905,
+ 8.773013495147984,
+ -3.085317510373789e-13,
+ -8.830318475126081e-14,
+ -1.937587866844212e-13,
+ -1.2641966737770433e-13,
+ -3.112846081159554e-14,
+ 2.608861477543245e-13,
+ 5.378659215064807e-14,
+ 3.138257069577183e-13,
+ 6.500977870176755e-14,
+ -2.2234614865425384e-14,
+ -2.9688504801263227e-13,
+ 8.449153648861646e-14,
+ -2.2658131339052534e-14,
+ 2.8439131204063134e-13,
+ -6.691560283308973e-14,
+ -6.755087754353045e-14,
+ 1.4992483166401116e-13,
+ -1.4823076576950256e-13,
+ 1.1117307432712692e-13,
+ -1.0227922838095677e-13,
+ -3.0048493803846305e-13,
+ 1.503483481376383e-14,
+ 1.4145450219146816e-13,
+ -1.7618285302889447e-13,
+ -1.2366681029912785e-13,
+ 2.7486219138402046e-13,
+ 8.406802001498931e-14,
+ 8.089164646278568e-14,
+ -1.861354901591325e-13,
+ -1.1011428314305904e-14,
+ 8.957373417214226e-14,
+ -4.129285617864714e-14,
+ -6.564505341220828e-14,
+ -3.8963515573697816e-14,
+ -1.1943164556285635e-13,
+ -6.522153693858113e-14,
+ -1.1879637085241562e-13,
+ 1.49501315190384e-13,
+ 2.627919718856467e-13,
+ 4.156814188650479e-13,
+ 1.9481757786848908e-13,
+ 1.198551620364835e-13,
+ -2.568627412548666e-13,
+ -1.9757043494706555e-13,
+ 2.6554482896422316e-13,
+ -2.2298142336469456e-13,
+ -2.517805435713408e-13,
+ 2.3843977465208555e-13,
+ 1.367958209815695e-13,
+ 8.004461351553138e-14,
+ 4.658681209898652e-14,
+ 1.2281977735187355e-14,
+ -1.9926450084157415e-13,
+ 2.1895801686523664e-13,
+ -2.839677955670042e-13,
+ -2.9879087214395444e-13,
+ -1.0757318430129614e-13,
+ -3.705769144237564e-14,
+ -1.7808867716021665e-13,
+ -1.878295560536411e-13,
+ 1.6707724884591074e-13,
+ -1.0651439311722827e-13,
+ -3.170020805099219e-13,
+ 4.002230675776569e-14
+ ],
+ [
+ 14.230595050943602,
+ -13.841678315929899,
+ 10.359556086397452,
+ -5.133744680205996,
+ 1.4172173458096744,
+ 3.715329290878557,
+ -2.1048468704599945,
+ -3.148789740492487,
+ 6.646633219255644,
+ -11.19470282059524,
+ 12.200944772359072,
+ -9.841514483884737,
+ -5.224079505075823,
+ 10.512178539032208,
+ -12.195083584903914,
+ 11.910911370653633,
+ -9.88782674748564,
+ 4.487044536009892,
+ 9.464781244732553,
+ -6.213144943704247,
+ 2.2349716840520673,
+ 5.548156186727584,
+ -9.073502637653693,
+ 10.926031368018494,
+ 7.555852598893238,
+ -11.68001169719352,
+ 12.31265739863288,
+ -10.182101033752062,
+ 7.553810802312311,
+ -1.9785820259623383,
+ -7.557989080969404,
+ 3.3917923500357126,
+ 0.9427039827553594,
+ -8.75039154518621,
+ 11.421505984540818,
+ -11.291300737568532,
+ -9.99234048561666,
+ 12.436241390771572,
+ -11.40277767047514,
+ 6.973963173209437,
+ -3.598976288595097,
+ -1.6657081771275024,
+ 4.194224836369698,
+ 0.7422128675754874,
+ -4.472388471199968,
+ 9.842999571664791,
+ -13.630541723766154,
+ 14.45471236699309,
+ -5.052551530371902e-13,
+ -9.486769009248164e-14,
+ -2.846030702774449e-13,
+ -2.0667603913004928e-13,
+ -3.5998900258307764e-14,
+ 4.188577924172515e-13,
+ 5.336307567702092e-14,
+ 5.315131744020735e-13,
+ 7.962109704190423e-14,
+ 1.0164395367051604e-14,
+ -4.840793293558326e-13,
+ 9.063252535621014e-14,
+ 1.1434944787933055e-14,
+ 5.247369108240391e-13,
+ -5.336307567702092e-14,
+ -1.0630263488041469e-13,
+ 3.942938369468768e-13,
+ -3.0112021274890377e-13,
+ 2.846030702774449e-13,
+ -1.7279472123987727e-13,
+ -4.37069000783219e-13,
+ -4.743384504624082e-14,
+ 3.006966962752766e-13,
+ -3.0112021274890377e-13,
+ -2.7316812548951186e-13,
+ 4.946672411965114e-13,
+ 1.300195574035351e-13,
+ 1.1689054672109345e-13,
+ -2.7655625727852906e-13,
+ -8.682087709356578e-14,
+ 1.7957098481791167e-13,
+ -1.5966571055743561e-13,
+ -8.555032767268433e-14,
+ -1.274784585617722e-13,
+ -1.8295911660692887e-13,
+ -7.919758056827708e-14,
+ -1.283254915090265e-13,
+ 2.5622746654442585e-13,
+ 4.3113977015243887e-13,
+ 6.039344913923161e-13,
+ 2.7316812548951186e-13,
+ 1.7914746834428452e-13,
+ -4.2775163836342167e-13,
+ -2.3759274170483125e-13,
+ 3.731180132655193e-13,
+ -3.4897757426877174e-13,
+ -4.590918574118308e-13,
+ 3.858235074743338e-13,
+ 2.6554482896422316e-13,
+ 7.496241583200558e-14,
+ 4.658681209898652e-14,
+ 5.886878983417387e-14,
+ -2.803679055411734e-13,
+ 2.7909735612029196e-13,
+ -3.89211639263351e-13,
+ -3.8878812278972386e-13,
+ -1.8550021544869177e-13,
+ -1.2705494208814505e-13,
+ -3.117081245895825e-13,
+ -3.023907621697852e-13,
+ 2.812149384884277e-13,
+ -9.698527246061739e-14,
+ -6.636503141737443e-13,
+ 4.658681209898652e-14
+ ],
+ [
+ 12.975174285091738,
+ -10.111028974030651,
+ 5.557108463031336,
+ 2.0988389491282358,
+ -6.052693246432117,
+ 9.37504950761921,
+ 4.7595513277387305,
+ -9.673595752957349,
+ 11.412736897142443,
+ -11.597341644126688,
+ 10.123168859404688,
+ -5.234585039094663,
+ -9.421397262845462,
+ 12.138748035204658,
+ -11.392537510449703,
+ 6.954832777775687,
+ -3.387830601468903,
+ -2.0258103736280386,
+ 4.065451392310733,
+ 1.1092506600032102,
+ -4.888082056245667,
+ 10.567675487586268,
+ -12.231027269629271,
+ 10.82101572970598,
+ 10.907410389570288,
+ -12.164895420731932,
+ 10.419683543816129,
+ -4.502059509468776,
+ 0.5934596773464001,
+ 4.567408343025187,
+ -1.5388268730316779,
+ -3.961716249690223,
+ 8.42879441836897,
+ -10.728465115171689,
+ 10.82096502092025,
+ -7.567351036620551,
+ -10.01122062906057,
+ 8.911277574658696,
+ -5.887572532558715,
+ -0.8533938844241671,
+ 4.518512380351367,
+ -7.72318837815225,
+ -3.020335705604842,
+ 8.002687129882943,
+ -10.10339930322936,
+ 11.008753947649703,
+ -12.39150749165897,
+ 10.55033772625818,
+ -3.6761229910836635e-13,
+ 9.275010772434589e-14,
+ -9.613823951336309e-14,
+ -1.3976043629695956e-13,
+ 2.286988957586611e-14,
+ 2.7232109254225756e-13,
+ -6.988021814847978e-14,
+ 4.3029273720518457e-13,
+ -3.8116482626443515e-14,
+ 1.8041801776516597e-13,
+ -3.3711911300721153e-13,
+ -9.994988777600744e-14,
+ 1.7830043539703022e-13,
+ 5.692061405548898e-13,
+ 1.511953810848926e-13,
+ -7.030373462210693e-14,
+ 7.775762455794477e-13,
+ -4.1674021004911577e-13,
+ 5.488773498207866e-13,
+ -1.3976043629695956e-13,
+ -1.1180834903756764e-13,
+ -2.7062702664774896e-13,
+ 4.324103195733203e-13,
+ -2.5876856538618875e-13,
+ -4.374925172568461e-13,
+ 5.175371307723775e-13,
+ 7.538593230563273e-14,
+ 3.006966962752766e-14,
+ -9.994988777600744e-14,
+ -2.9264988327636077e-13,
+ 2.31239994600424e-13,
+ -4.154696606282343e-13,
+ 2.371692252312041e-14,
+ -3.0450834453792097e-13,
+ -7.453889935837843e-14,
+ 4.955142741437657e-14,
+ 1.3044307387716225e-13,
+ 2.2234614865425384e-13,
+ 3.0366131159066667e-13,
+ 1.6432439176733427e-13,
+ 4.235164736271502e-14,
+ 8.639736061993863e-14,
+ -3.341544976918215e-13,
+ 1.1434944787933055e-13,
+ 6.776263578034403e-14,
+ -1.9989977555201488e-13,
+ -4.887380105657313e-13,
+ 2.608861477543245e-13,
+ 3.2949581648192283e-13,
+ -1.461131834013668e-13,
+ -5.632769099241097e-14,
+ 1.7872395187065737e-13,
+ -4.1928130889087867e-14,
+ -5.632769099241097e-14,
+ -1.3129010682441655e-14,
+ 6.140988867593677e-14,
+ -1.5670109524204556e-13,
+ -3.273782341137871e-13,
+ -2.8417955380381776e-13,
+ -1.9608812728937053e-13,
+ 2.202285662861181e-13,
+ 1.9312351197398048e-13,
+ -9.39359538505019e-13,
+ -1.8634724839594607e-14
+ ],
+ [
+ 7.012378952897768,
+ -4.965645685663094,
+ 2.2304029052847776,
+ 2.4818898777187153,
+ -4.731073927852712,
+ 6.256824094660571,
+ 3.8997899311867594,
+ -6.580185588089757,
+ 7.231863000593151,
+ -6.544068499365307,
+ 5.271979944980382,
+ -2.085875288510349,
+ -5.10966066862159,
+ 7.067981858612974,
+ -6.211373238162249,
+ 2.9824637031881127,
+ -0.7123331299779859,
+ -2.31070340556221,
+ 1.289912095041309,
+ 1.9459984549818445,
+ -4.018384546096849,
+ 6.806261803746984,
+ -7.396923974110356,
+ 6.018889745845267,
+ 6.693538966968044,
+ -6.875654886413619,
+ 5.4709183003905775,
+ -1.4826572938630977,
+ -0.9302977192606351,
+ 3.734872035646848,
+ 0.23223003607133244,
+ -3.5432525251969786,
+ 6.059828894704788,
+ -6.344771419680985,
+ 5.929059632079674,
+ -3.547539016260382,
+ -5.589493546761598,
+ 4.333490385526751,
+ -2.2856210571171434,
+ -1.894747356666795,
+ 3.992398514859307,
+ -5.407203971809462,
+ -2.992801438150018,
+ 5.7811834526880475,
+ -6.658026609322132,
+ 6.353948724707052,
+ -6.689670612124413,
+ 5.179290108117241,
+ -1.7978274305472525e-13,
+ 8.597384414631148e-14,
+ -1.7364175418713157e-14,
+ -6.6280328122649e-14,
+ 2.456395547037471e-14,
+ 1.2684318385133148e-13,
+ -6.37392292808861e-14,
+ 2.210755992333724e-13,
+ -4.256340559952859e-14,
+ 1.3319593095573873e-13,
+ -1.624185676360121e-13,
+ -8.957373417214226e-14,
+ 1.2980779916672153e-13,
+ 3.2864878353466853e-13,
+ 1.2387856853594142e-13,
+ -3.3034284942917713e-14,
+ 5.041963618531223e-13,
+ -2.5283933475540865e-13,
+ 3.5384801371548397e-13,
+ -7.263307522705625e-14,
+ -3.1763735522036263e-15,
+ -1.920647207899126e-13,
+ 2.644860377801553e-13,
+ -1.3743109569201023e-13,
+ -2.744386749103933e-13,
+ 2.9201460856592004e-13,
+ 3.091670257478196e-14,
+ 3.1763735522036263e-15,
+ -2.202285662861181e-14,
+ -2.0011153378882846e-13,
+ 1.384898868760781e-13,
+ -2.7930911435710554e-13,
+ 3.536362554786704e-14,
+ -1.996880173152013e-13,
+ -2.0964065444543933e-14,
+ 4.9339669177562995e-14,
+ 1.2176098616780567e-13,
+ 1.1794933790516132e-13,
+ 1.4336032632279033e-13,
+ 1.291725244562808e-14,
+ -1.7152417181899582e-14,
+ 3.049318610115481e-14,
+ -1.6855955650360577e-13,
+ 1.2811373327221293e-13,
+ -1.8846483076408183e-14,
+ -8.406802001498931e-14,
+ -2.7592098256808834e-13,
+ 1.2387856853594142e-13,
+ 1.9481757786848908e-13,
+ -1.2536087619363645e-13,
+ -5.1033735072071595e-14,
+ 1.2027867851011065e-13,
+ 1.8634724839594607e-14,
+ -9.296186596115946e-14,
+ 5.738648217647885e-14,
+ 1.1921988732604277e-13,
+ -8.173867941003998e-14,
+ -2.1705219273391446e-13,
+ -1.545835128739098e-13,
+ -8.809142651444724e-14,
+ 1.1011428314305904e-13,
+ 1.5670109524204556e-13,
+ -5.723825141070935e-13,
+ -2.244637310223896e-14
+ ],
+ [
+ -10.3441331602714,
+ 9.408983731863284,
+ -7.661671382902837,
+ 3.971463279780406,
+ -2.0247073101185467,
+ -2.4938419211912515,
+ 1.7694507962224255,
+ 1.3199022433020906,
+ -4.6586516049889255,
+ 8.125015211186584,
+ -9.67845620559726,
+ 7.312348306023481,
+ 7.9338061484947096,
+ -8.325664203401027,
+ 8.88082569738402,
+ -8.783158610726526,
+ 6.622678184051636,
+ -3.4422401250496595,
+ -7.016290617399387,
+ 3.984220176882624,
+ -1.8357931434176302,
+ -3.851459068675911,
+ 5.724376380479474,
+ -7.907125150005201,
+ -5.352527124066146,
+ 7.700063122565422,
+ -8.978058685376244,
+ 7.578553118723707,
+ -6.456510147617687,
+ 1.6645187903595406,
+ 5.695134067991246,
+ -3.4517327754523146,
+ -0.4296340261934273,
+ 6.300921987925354,
+ -9.064517863122367,
+ 8.333617420617395,
+ 7.272778009389799,
+ -9.893248691184214,
+ 8.46238436260134,
+ -5.295778099556689,
+ 2.1118841840876623,
+ 1.039045596750448,
+ -3.2512370832535997,
+ -1.0664759026164774,
+ 3.0826638902849726,
+ -7.097346947718211,
+ 9.176662151839727,
+ -10.590887167761293,
+ 3.5998900258307764e-13,
+ 6.183340514956392e-14,
+ 2.22769665127881e-13,
+ 1.5754812818929986e-13,
+ 1.0164395367051604e-14,
+ -2.490276864927643e-13,
+ -4.489274620447792e-14,
+ -3.8455295805345235e-13,
+ -4.658681209898652e-14,
+ 3.3881317890172014e-14,
+ 3.5490680489955184e-13,
+ -8.809142651444724e-14,
+ 4.912791094074942e-14,
+ -3.9048218868423246e-13,
+ 6.522153693858113e-14,
+ 4.828087799349512e-14,
+ -1.9820570965750628e-13,
+ 2.0413494028828638e-13,
+ -1.9058241313221758e-13,
+ 4.828087799349512e-14,
+ 3.108610916423282e-13,
+ 3.3034284942917713e-14,
+ -2.930733997499879e-13,
+ 2.947674656444965e-13,
+ 2.0921713797181218e-13,
+ -3.5660087079406044e-13,
+ -8.724439356719293e-14,
+ -6.945670167485263e-14,
+ 1.6855955650360577e-13,
+ 9.486769009248164e-14,
+ -9.740878893424454e-14,
+ 1.4907779871675686e-13,
+ 7.623296525288703e-15,
+ 1.3891340334970526e-13,
+ 1.4568966692773966e-13,
+ 3.218725199566341e-14,
+ 6.268043809681823e-14,
+ -1.8804131429045468e-13,
+ -2.744386749103933e-13,
+ -4.802676810931883e-13,
+ -1.6771252355635147e-13,
+ -1.4314856808597676e-13,
+ 3.8709405689521525e-13,
+ 2.405573570202213e-13,
+ -2.617331807015788e-13,
+ 2.685094442796132e-13,
+ 2.829090043829363e-13,
+ -2.99002630380768e-13,
+ -1.8295911660692887e-13,
+ -1.0842021724855044e-13,
+ -2.456395547037471e-14,
+ -9.317362419797304e-15,
+ 1.4484263398048536e-13,
+ -1.6008922703106276e-13,
+ 2.702035101741218e-13,
+ 3.015437292225309e-13,
+ 1.3976043629695956e-13,
+ 4.828087799349512e-14,
+ 1.6855955650360577e-13,
+ 2.0921713797181218e-13,
+ -1.7787691892340307e-13,
+ 1.0418505251227894e-13,
+ 5.073727354053259e-13,
+ -9.317362419797304e-15
+ ],
+ [
+ -15.890299844992073,
+ 13.77214927596612,
+ -10.803670557166578,
+ 4.41757422158289,
+ -1.3447425485555966,
+ -5.317908967897309,
+ 1.0602454523168003,
+ 3.65899921439342,
+ -8.486670119907318,
+ 12.829441081636984,
+ -14.680232932974427,
+ 10.3068186219806,
+ 12.111802079881832,
+ -13.30988364736961,
+ 13.712322964531747,
+ -12.521761442511963,
+ 8.715970644909342,
+ -3.7663083801744044,
+ -9.642976687536494,
+ 4.3775672598573045,
+ -1.097868508248377,
+ -7.2852952168352845,
+ 9.718527390130244,
+ -12.359532568872892,
+ -9.220167782131304,
+ 12.146617039381631,
+ -13.59144688003156,
+ 10.455340596722714,
+ -8.414304966045139,
+ 0.9751603834509438,
+ 7.420728937011108,
+ -3.609196853583165,
+ -2.5402274294049607,
+ 10.365000253376412,
+ -14.087008719871376,
+ 12.126887842769808,
+ 11.398999042859552,
+ -14.65550925593265,
+ 11.881200662102694,
+ -6.342317211930615,
+ 1.2460239238309794,
+ 3.1403385350189135,
+ -3.2919571654921698,
+ -3.519244934954551,
+ 6.235039728044595,
+ -11.408865887893468,
+ 14.02993525546714,
+ -15.615863298003832,
+ 5.200782296141404e-13,
+ 5.251604272976662e-14,
+ 2.947674656444965e-13,
+ 2.371692252312041e-13,
+ -5.082197683525802e-15,
+ -3.5405977195229754e-13,
+ -4.235164736271502e-14,
+ -5.692061405548898e-13,
+ -4.235164736271502e-14,
+ 3.3881317890172014e-15,
+ 5.149960319306146e-13,
+ -7.453889935837843e-14,
+ 3.5575383784680614e-14,
+ -6.200281173901478e-13,
+ 5.082197683525802e-14,
+ 5.759824041329242e-14,
+ -3.9979955110402976e-13,
+ 3.4558944247975454e-13,
+ -3.6930636500287495e-13,
+ 7.623296525288703e-14,
+ 4.0149361699853836e-13,
+ 9.486769009248164e-14,
+ -4.980553729855286e-13,
+ 4.45539330255762e-13,
+ 3.6591823321385775e-13,
+ -5.590417451878382e-13,
+ -1.1519648082658485e-13,
+ -9.147955830346444e-14,
+ 2.303929616531697e-13,
+ 2.0328790734103208e-13,
+ -1.6432439176733427e-13,
+ 3.049318610115481e-13,
+ -1.1858461261560205e-14,
+ 2.693564772268675e-13,
+ 1.8973538018496328e-13,
+ 2.879912020664621e-14,
+ 3.049318610115481e-14,
+ -2.812149384884277e-13,
+ -3.9979955110402976e-13,
+ -6.471331717022855e-13,
+ -2.0667603913004928e-13,
+ -2.1175823681357508e-13,
+ 5.827586677109586e-13,
+ 3.083199928005653e-13,
+ -3.3542504711270293e-13,
+ 3.8116482626443515e-13,
+ 4.54009659728305e-13,
+ -4.404571325722362e-13,
+ -3.117081245895825e-13,
+ -1.1350241493207625e-13,
+ -1.5246593050577406e-14,
+ -4.0657581468206416e-14,
+ 1.6263032587282567e-13,
+ -1.6601845766184287e-13,
+ 3.3711911300721153e-13,
+ 3.5236570605778894e-13,
+ 2.1006417091906648e-13,
+ 1.2366681029912785e-13,
+ 2.422514229147299e-13,
+ 2.862971361719535e-13,
+ -2.710505431213761e-13,
+ 8.978549240895584e-14,
+ 8.74138001566438e-13,
+ 0.0
+ ],
+ [
+ -8.85008724616724,
+ 7.298867326579505,
+ -5.490633044175745,
+ 1.5429364745439045,
+ 0.2133065547365663,
+ -3.7722442330039803,
+ -0.31312056150654344,
+ 2.927029580512717,
+ -5.451651982805647,
+ 7.33505737369554,
+ -8.073981154434993,
+ 5.235586511558074,
+ 6.704323953850755,
+ -6.958930605714985,
+ 7.675166507827707,
+ -6.444960812214752,
+ 4.059913195325226,
+ -1.2683501170662166,
+ -4.751920773035003,
+ 1.4881479577133514,
+ 0.32720748384194587,
+ -4.8035890546960465,
+ 5.91682680862658,
+ -6.999656398842709,
+ -5.678998011450604,
+ 6.938372601521654,
+ -7.460553171764066,
+ 5.176371677231491,
+ -3.866649427524109,
+ -0.3190273754545904,
+ 3.4091972953808622,
+ -1.0872889076200039,
+ -2.43956978896137,
+ 6.146529800279866,
+ -7.934285389834458,
+ 6.386201536731881,
+ 6.472280907686458,
+ -7.866898533988034,
+ 6.007646691413404,
+ -2.5551709305065273,
+ -0.39512314642176966,
+ 2.590645914255463,
+ -0.9055428360912314,
+ -2.98524748202638,
+ 4.2899093419700955,
+ -6.630034923059019,
+ 7.777456917370157,
+ -8.341065300981835,
+ 2.65121312490596e-13,
+ 8.470329472543003e-15,
+ 1.4568966692773966e-13,
+ 1.2705494208814505e-13,
+ -1.2705494208814505e-14,
+ -1.8634724839594607e-13,
+ -1.1858461261560205e-14,
+ -3.091670257478196e-13,
+ -1.6093625997831706e-14,
+ -2.456395547037471e-14,
+ 2.778268066994105e-13,
+ -1.7787691892340307e-14,
+ 6.776263578034403e-15,
+ -3.7438856268640075e-13,
+ 4.235164736271502e-15,
+ 2.625802136488331e-14,
+ -2.769797737521562e-13,
+ 2.1429933565533799e-13,
+ -2.422514229147299e-13,
+ 3.134021904840911e-14,
+ 1.9142944607947188e-13,
+ 7.538593230563273e-14,
+ -2.913793338554793e-13,
+ 2.439454888092385e-13,
+ 2.430984558619842e-13,
+ -3.1679032227310833e-13,
+ -5.844527336054672e-14,
+ -4.743384504624082e-14,
+ 9.994988777600744e-14,
+ 1.3976043629695956e-13,
+ -9.317362419797304e-14,
+ 2.1091120386632078e-13,
+ -2.456395547037471e-14,
+ 1.7618285302889447e-13,
+ 8.978549240895584e-14,
+ -4.235164736271502e-15,
+ -1.2705494208814505e-14,
+ -1.5246593050577406e-13,
+ -2.0582900618279498e-13,
+ -3.032377951170395e-13,
+ -8.724439356719293e-14,
+ -1.1434944787933055e-13,
+ 3.1679032227310833e-13,
+ 1.3129010682441655e-13,
+ -1.4145450219146816e-13,
+ 1.9397054492123478e-13,
+ 2.65121312490596e-13,
+ -2.380162581784584e-13,
+ -1.9312351197398048e-13,
+ -3.7269449679189215e-14,
+ 1.0164395367051604e-14,
+ -4.0657581468206416e-14,
+ 6.606856988583543e-14,
+ -3.6422416731934915e-14,
+ 1.4399560103323106e-13,
+ 1.5161889755851976e-13,
+ 1.1265538198482195e-13,
+ 9.994988777600744e-14,
+ 1.2027867851011065e-13,
+ 1.5077186461126546e-13,
+ -1.4653669987499396e-13,
+ 1.6940658945086007e-14,
+ 5.310896579284463e-13,
+ 9.317362419797304e-15
+ ],
+ [
+ 11.18308837080933,
+ -12.282580605362806,
+ 10.299864335559182,
+ -7.798102402570965,
+ 5.179405129906523,
+ -0.4043612104506317,
+ -5.361738543549421,
+ 1.290265159636391,
+ 2.2515432611065953,
+ -8.0249530271569,
+ 10.131548709625386,
+ -9.809066903275774,
+ -8.699078036319388,
+ 10.974154363448807,
+ -9.431342611965087,
+ 11.528413649478148,
+ -10.906867609769197,
+ 6.922582979916765,
+ 9.972193827735195,
+ -8.6557788336284,
+ 5.601813368247056,
+ 1.3014723614075905,
+ -4.944893363119102,
+ 8.109468862421185,
+ 3.707039870576752,
+ -8.349368133896029,
+ 10.123758971935509,
+ -10.656070741081779,
+ 9.418276951118273,
+ -5.091969466508592,
+ -8.910635484486527,
+ 6.569762765953591,
+ -3.4614621585095446,
+ -5.349188091162966,
+ 8.73707165229188,
+ -10.387135484613408,
+ -7.3519380388994096,
+ 11.108449935819898,
+ -11.463945498486984,
+ 9.48476053131266,
+ -7.171001840257065,
+ 2.136177434127213,
+ 7.096428256479833,
+ -3.49642085563532,
+ -0.1687906504638015,
+ 6.605634490526837,
+ -10.743635107065861,
+ 12.818954499084843,
+ -4.811147140404426e-13,
+ -1.6728900708272432e-13,
+ -3.2356658585114273e-13,
+ -1.9862922613113343e-13,
+ -5.505714157152952e-14,
+ 4.0403471584030126e-13,
+ 8.300922883092143e-14,
+ 4.256340559952859e-13,
+ 1.0714966782766899e-13,
+ -9.825582188149884e-14,
+ -4.2351647362715017e-13,
+ 1.6644197413547002e-13,
+ -7.877406409464993e-14,
+ 2.99002630380768e-13,
+ -1.7872395187065737e-13,
+ -9.063252535621014e-14,
+ 6.606856988583543e-14,
+ -1.528894469794012e-13,
+ 5.929230630780102e-14,
+ -1.528894469794012e-13,
+ -4.730679010415267e-13,
+ 8.343274530454858e-14,
+ 1.7787691892340307e-13,
+ -2.702035101741218e-13,
+ -7.453889935837843e-14,
+ 3.646476837929763e-13,
+ 1.1943164556285635e-13,
+ 1.096907666694319e-13,
+ -3.2187251995663413e-13,
+ 5.632769099241097e-14,
+ 1.223962608782464e-13,
+ 3.3034284942917713e-14,
+ -1.2197274440461925e-13,
+ -1.2705494208814505e-14,
+ -1.8804131429045468e-13,
+ -1.2197274440461925e-13,
+ -2.0371142381465923e-13,
+ 2.0540548970916783e-13,
+ 3.951408698941311e-13,
+ 6.848261378551018e-13,
+ 3.2356658585114273e-13,
+ 2.0201735792015063e-13,
+ -3.7184746384463785e-13,
+ -3.7184746384463785e-13,
+ 4.679857033580009e-13,
+ -3.519421895841618e-13,
+ -3.066259269060567e-13,
+ 3.2017845406212553e-13,
+ 1.0884373372217759e-13,
+ 1.528894469794012e-13,
+ 9.275010772434589e-14,
+ -4.1081097941833566e-14,
+ -3.180608716939898e-13,
+ 4.1250504531284427e-13,
+ -5.001729553536644e-13,
+ -5.205017460877676e-13,
+ -1.6474790824096142e-13,
+ 4.531626267810507e-14,
+ -2.888382350137164e-13,
+ -2.82061971435682e-13,
+ 2.5538043359717155e-13,
+ -2.202285662861181e-13,
+ -3.4813054132151744e-13,
+ 7.326834993749698e-14
+ ],
+ [
+ 10.858263362113075,
+ -11.34180663842423,
+ 9.102824308933496,
+ -6.00622131999628,
+ 3.3376273012862545,
+ 0.9898784013403307,
+ -3.6639590991936046,
+ -0.31337699765533006,
+ 3.4220903449083213,
+ -8.113081078664901,
+ 9.610832949654172,
+ -8.661075118143836,
+ -8.373274931092201,
+ 9.82926674023057,
+ -8.663631013465107,
+ 10.291774986784787,
+ -9.285955669435861,
+ 5.308918661872038,
+ 8.62851333508225,
+ -6.83546714497463,
+ 3.839761125444487,
+ 2.53573216101643,
+ -5.710614418408356,
+ 8.072200270173017,
+ 4.527135098252329,
+ -8.452170085335213,
+ 9.643427351424274,
+ -9.24252826936752,
+ 7.696079085789491,
+ -3.472957590793364,
+ -7.4160633292846745,
+ 4.754709785399988,
+ -1.6131632703005079,
+ -5.829008136113662,
+ 8.582080582592168,
+ -9.45577694776309,
+ -7.346543780487809,
+ 10.229966045106357,
+ -10.089899238569464,
+ 7.543867114446761,
+ -5.1569358074920615,
+ 0.6412808668089228,
+ 5.309707496252337,
+ -1.6985010029128662,
+ -1.5554207600506038,
+ 6.883514372677965,
+ -10.418608574896629,
+ 11.839499737012419,
+ -4.3283383604694747e-13,
+ -1.266314256145179e-13,
+ -2.710505431213761e-13,
+ -1.8295911660692887e-13,
+ -4.404571325722362e-14,
+ 3.6591823321385775e-13,
+ 6.098637220230962e-14,
+ 4.010701005249112e-13,
+ 8.343274530454858e-14,
+ -5.802175688691957e-14,
+ -3.9132922163148676e-13,
+ 1.1773757966834775e-13,
+ -4.404571325722362e-14,
+ 3.282252670610414e-13,
+ -1.2536087619363645e-13,
+ -8.343274530454858e-14,
+ 1.6263032587282567e-13,
+ -1.8592373192231892e-13,
+ 1.283254915090265e-13,
+ -1.4484263398048536e-13,
+ -3.9725845226226686e-13,
+ 3.134021904840911e-14,
+ 2.0752307207730358e-13,
+ -2.473336205982557e-13,
+ -1.249373597200093e-13,
+ 3.6930636500287495e-13,
+ 1.0842021724855044e-13,
+ 9.402065714522734e-14,
+ -2.744386749103933e-13,
+ 3.8116482626443515e-15,
+ 1.3044307387716225e-13,
+ -3.6845933205562065e-14,
+ -9.147955830346444e-14,
+ -5.632769099241097e-14,
+ -1.6093625997831706e-13,
+ -9.656175598699024e-14,
+ -1.486542822431297e-13,
+ 1.9439406139486193e-13,
+ 3.621065849512134e-13,
+ 5.768294370801785e-13,
+ 2.676624113323589e-13,
+ 1.7745340244977592e-13,
+ -3.426248271643645e-13,
+ -2.8672065264558066e-13,
+ 3.7947076036992655e-13,
+ -3.121316410632097e-13,
+ -3.172138387467355e-13,
+ 2.998496633280223e-13,
+ 1.3891340334970526e-13,
+ 1.0630263488041469e-13,
+ 6.564505341220828e-14,
+ -3.8116482626443515e-15,
+ -2.6554482896422316e-13,
+ 3.239901023247699e-13,
+ -4.0996394647108136e-13,
+ -4.154696606282343e-13,
+ -1.49501315190384e-13,
+ -3.8116482626443515e-15,
+ -2.6639186191147746e-13,
+ -2.574980159653073e-13,
+ 2.405573570202213e-13,
+ -1.520424140321469e-13,
+ -4.154696606282343e-13,
+ 6.183340514956392e-14
+ ],
+ [
+ -5.377956361510987,
+ 8.477928521568101,
+ -8.9062197443291,
+ 10.641923909695956,
+ -9.937127941213912,
+ 6.281101243858613,
+ 9.367539564182817,
+ -7.515751575620756,
+ 4.358671110008953,
+ 2.4449779932427806,
+ -5.869159319047653,
+ 8.51701449886696,
+ 4.50535338853787,
+ -8.91462912926916,
+ 10.37005455180462,
+ -9.514262680033637,
+ 10.986685140527003,
+ -9.548221653192885,
+ -9.436152757935977,
+ 11.069891698638784,
+ -9.73526276259733,
+ 4.97457090892001,
+ -1.6255342529750385,
+ -3.0268930818305635,
+ 2.30193201969777,
+ 2.4949195424395945,
+ -5.688632345506375,
+ 9.985152571222551,
+ -10.907069053687122,
+ 8.925519106235946,
+ 9.725722933093117,
+ -10.310293006185706,
+ 9.359387435233964,
+ -0.22410682635001108,
+ -3.7667208433439066,
+ 7.767323668907081,
+ 2.619135805294527,
+ -7.789154969274463,
+ 10.096460924899784,
+ -11.89339996619837,
+ 11.398767822278067,
+ -7.335627384851463,
+ -10.371500181160357,
+ 9.149947298331984,
+ -6.045265669249187,
+ -1.1085182039105044,
+ 5.223726032063931,
+ -8.837559209216558,
+ 3.7269449679189215e-13,
+ 2.4182790644110275e-13,
+ 3.3966021184897444e-13,
+ 1.427250516123496e-13,
+ 6.903318520122548e-14,
+ -3.057788939588024e-13,
+ -1.3298417271892515e-13,
+ -2.5622746654442585e-13,
+ -1.3129010682441655e-13,
+ 2.185345003916095e-13,
+ 2.871441691192078e-13,
+ -2.752857078576476e-13,
+ 1.7575933655526732e-13,
+ 3.3881317890172014e-14,
+ 3.0789647632693817e-13,
+ 5.632769099241097e-14,
+ 4.0403471584030126e-13,
+ -8.216219588366713e-14,
+ 2.879912020664621e-13,
+ 9.740878893424454e-14,
+ 4.832322964085783e-13,
+ -2.532628512290358e-13,
+ 7.115076756936123e-14,
+ 2.0286439086740493e-13,
+ -2.1133472033994793e-13,
+ -1.0926725019580474e-13,
+ -8.300922883092143e-14,
+ -1.096907666694319e-13,
+ 3.197549375884984e-13,
+ -2.422514229147299e-13,
+ -7.623296525288703e-15,
+ -3.189079046412441e-13,
+ 1.7702988597614877e-13,
+ -1.6093625997831706e-13,
+ 1.9397054492123478e-13,
+ 1.4738373282224826e-13,
+ 3.273782341137871e-13,
+ -1.4060746924421386e-13,
+ -2.939204326972422e-13,
+ -7.081195439045951e-13,
+ -3.7100043089738355e-13,
+ -1.8592373192231892e-13,
+ 2.7401515843676616e-13,
+ 5.10337350720716e-13,
+ -5.408305368218708e-13,
+ 3.1043757516870107e-13,
+ 5.886878983417387e-14,
+ -2.0582900618279498e-13,
+ 9.190307477709159e-14,
+ -2.786738396466648e-13,
+ -1.3806637040245096e-13,
+ 1.6728900708272432e-13,
+ 3.4474240953250024e-13,
+ -5.446421850845151e-13,
+ 5.721707558702799e-13,
+ 6.471331717022855e-13,
+ 1.2536087619363645e-13,
+ -2.346281263894412e-13,
+ 1.9947625907838773e-13,
+ 1.9651164376299768e-13,
+ -1.7575933655526732e-13,
+ 3.8285889215894375e-13,
+ -1.6517142471458857e-13,
+ -8.046812998915853e-14
+ ],
+ [
+ -7.26177762887226,
+ 10.233215777622602,
+ -10.158905056818325,
+ 11.114581455641416,
+ -9.900992880020283,
+ 5.6065113986664885,
+ 9.44232101998459,
+ -6.891725138438407,
+ 3.315416196245882,
+ 3.969370063420005,
+ -7.454203097163643,
+ 9.705715006949989,
+ 5.931450143043688,
+ -10.31944179975697,
+ 11.421682568420346,
+ -10.202057158467424,
+ 12.12337827044939,
+ -9.955475602847574,
+ -10.54974963106063,
+ 11.685134653230408,
+ -9.819702843864182,
+ 4.071955251584357,
+ -0.3040331759848008,
+ -4.4994749875536195,
+ 1.1790532371877176,
+ 4.086903274564452,
+ -7.293935288493472,
+ 11.187090387118769,
+ -11.715368372754812,
+ 8.992963296944971,
+ 10.56287053064331,
+ -10.54441996384787,
+ 9.003547646674363,
+ 1.0182176367893605,
+ -5.291576657073478,
+ 9.178801696301608,
+ 3.969412678202437,
+ -9.361803445619325,
+ 11.46831190085929,
+ -12.59644590170362,
+ 11.636638396030996,
+ -6.925715066256156,
+ -10.717781936517458,
+ 8.827604303436624,
+ -5.269271190718069,
+ -2.4736136125669805,
+ 7.026552462099136,
+ -10.670791795767933,
+ 4.359043304807443e-13,
+ 2.5019235679523896e-13,
+ 3.7174158472623106e-13,
+ 1.7025362239811437e-13,
+ 7.337422905590377e-14,
+ -3.6004194214228104e-13,
+ -1.360017275935186e-13,
+ -3.2166076171982055e-13,
+ -1.3970749673775616e-13,
+ 2.1472285212896514e-13,
+ 3.4818348088072083e-13,
+ -2.7983850994913947e-13,
+ 1.717359300558094e-13,
+ -3.7269449679189215e-14,
+ 3.109140312015316e-13,
+ 6.982727858927638e-14,
+ 3.3960727228977104e-13,
+ -3.689887276476546e-14,
+ 2.3928680759933985e-13,
+ 1.2128453013497513e-13,
+ 5.306132018956158e-13,
+ -2.4113969217145863e-13,
+ 2.2128735747018596e-14,
+ 2.398691427505772e-13,
+ -1.6940658945086007e-13,
+ -1.7872395187065737e-13,
+ -9.979106909839726e-14,
+ -1.2133746969417852e-13,
+ 3.5400683239309415e-13,
+ -2.2504606617362692e-13,
+ -3.4198955245392376e-14,
+ -2.8751474603363157e-13,
+ 1.835414517581662e-13,
+ -1.3716639789599326e-13,
+ 2.1376994006330405e-13,
+ 1.5696579303806253e-13,
+ 3.3436625592863506e-13,
+ -1.7131241358218224e-13,
+ -3.4818348088072083e-13,
+ -7.768880313098036e-13,
+ -3.996407324264196e-13,
+ -2.0948183576782915e-13,
+ 3.2573710777848187e-13,
+ 5.328366633821583e-13,
+ -5.806940249020263e-13,
+ 3.526304038538059e-13,
+ 1.216021674901955e-13,
+ -2.5379224682106974e-13,
+ 5.574535584117364e-14,
+ -2.805267242187836e-13,
+ -1.411898043954512e-13,
+ 1.554305458211641e-13,
+ 3.7512971651524826e-13,
+ -5.725413327847036e-13,
+ 6.158988317722831e-13,
+ 6.86467264190407e-13,
+ 1.4733079326304487e-13,
+ -2.1620515978666016e-13,
+ 2.406632361386281e-13,
+ 2.353163406590853e-13,
+ -2.1355818182649047e-13,
+ 3.867234799807915e-13,
+ -6.522153693858113e-14,
+ -8.787966827763366e-14
+ ],
+ [
+ 1.0051046134429555,
+ -4.933427249354512,
+ 5.680341562464285,
+ -8.979520100574769,
+ 8.675839303181633,
+ -7.352748631600169,
+ -8.633893506356165,
+ 7.670738301975642,
+ -6.350604541714311,
+ 1.0143586151423984,
+ 1.3341882291829035,
+ -5.419703112369603,
+ -1.129925129064751,
+ 4.590814293013094,
+ -7.468369638461885,
+ 9.207237395533252,
+ -8.640630910441788,
+ 8.12849441023482,
+ 6.495616502423162,
+ -9.846552937442501,
+ 8.99547606316487,
+ -6.623822094072733,
+ 3.633946939618694,
+ -0.3152028803604492,
+ -4.575757075468573,
+ 0.3396645582909184,
+ 1.8955030339549155,
+ -6.7883572563018975,
+ 7.764945542028077,
+ -8.236800216523278,
+ -7.324288370889393,
+ 8.443890989504826,
+ -9.566374285202246,
+ 2.9160707896013456,
+ -0.5135474870978927,
+ -4.23399446007811,
+ 0.48128846578417456,
+ 3.1707050487970303,
+ -6.5218222397365615,
+ 9.688696264847893,
+ -10.9742609984805,
+ 7.817419395610554,
+ 9.036523411873919,
+ -10.071361960117175,
+ 7.3888856913377525,
+ -1.9050753361974295,
+ -1.7664621508431873,
+ 4.372052364100696,
+ -2.414043899674756e-13,
+ -2.219226321806267e-13,
+ -2.430984558619842e-13,
+ -6.776263578034403e-14,
+ -7.115076756936123e-14,
+ 2.286988957586611e-13,
+ 1.1350241493207625e-13,
+ 1.0333801956502464e-13,
+ 1.1773757966834775e-13,
+ -1.9227647902672618e-13,
+ -1.3806637040245096e-13,
+ 2.337810934421869e-13,
+ -1.2451384324638215e-13,
+ -2.0498197323554068e-13,
+ -2.718975760686304e-13,
+ -5.336307567702092e-14,
+ -4.446922973085077e-13,
+ 1.6263032587282567e-13,
+ -3.7100043089738355e-13,
+ -1.1011428314305904e-13,
+ -3.6930636500287495e-13,
+ 2.668153783851046e-13,
+ -2.456395547037471e-13,
+ -3.5575383784680614e-14,
+ 3.1340219048409113e-13,
+ -4.489274620447792e-14,
+ 5.929230630780102e-14,
+ 8.724439356719293e-14,
+ -2.65121312490596e-13,
+ 3.032377951170395e-13,
+ -2.202285662861181e-14,
+ 4.0911691352382706e-13,
+ -2.0159384144652348e-13,
+ 2.4818065354551e-13,
+ -1.3298417271892515e-13,
+ -1.3891340334970526e-13,
+ -3.2187251995663413e-13,
+ 6.860966872759833e-14,
+ 2.0244087439377778e-13,
+ 4.87890977618477e-13,
+ 3.2526065174565133e-13,
+ 1.1773757966834775e-13,
+ -7.115076756936123e-14,
+ -3.7015339795012925e-13,
+ 4.3622196783596467e-13,
+ -1.9312351197398048e-13,
+ 2.541098841762901e-14,
+ 6.691560283308973e-14,
+ -1.6517142471458857e-13,
+ 2.1514636860259229e-13,
+ 1.3891340334970526e-13,
+ -1.5670109524204556e-13,
+ -3.2271955290388843e-13,
+ 5.039846036163087e-13,
+ -4.692562527788824e-13,
+ -5.166900978251232e-13,
+ -6.945670167485263e-14,
+ 2.329340604949326e-13,
+ -1.6686549060909717e-13,
+ -1.1773757966834775e-13,
+ 1.1011428314305904e-13,
+ -3.2526065174565133e-13,
+ 4.0488174878755556e-13,
+ 9.232659125071874e-14
+ ],
+ [
+ 3.658966820817939,
+ -9.993959044020059,
+ 10.729352156308703,
+ -15.36472811261222,
+ 14.354464147806208,
+ -11.456597610174834,
+ -14.371342103053733,
+ 12.067766092405073,
+ -9.406759228951334,
+ 0.06303274810148542,
+ 3.920252236455446,
+ -10.231526545499188,
+ -3.3824527248180605,
+ 9.119782246960252,
+ -13.476989360893366,
+ 15.378320161321115,
+ -15.299509429475211,
+ 13.885203263593118,
+ 11.930792310810833,
+ -16.918103341709536,
+ 14.978537108285364,
+ -10.00811471512649,
+ 4.646929968795961,
+ 1.0376696949906108,
+ -6.385063971287255,
+ -1.092460449160485,
+ 4.837873660770319,
+ -12.510352325790436,
+ 13.741334175193211,
+ -13.706150691035864,
+ -13.011308695694247,
+ 14.25683469830938,
+ -15.458181990075143,
+ 3.509716397924432,
+ 0.7979855091612722,
+ -8.504861446417312,
+ -0.6351588329744065,
+ 6.946893082113634,
+ -12.249367092933614,
+ 16.781441705977105,
+ -18.38480255994046,
+ 12.504287425591182,
+ 15.323555159765899,
+ -16.296614862702857,
+ 11.407319425983793,
+ -1.7071342717024491,
+ -4.802281416667326,
+ 9.178430862789424,
+ -4.633270221481023e-13,
+ -3.8709405689521525e-13,
+ -4.387630666777276e-13,
+ -1.3467823861343375e-13,
+ -1.1943164556285635e-13,
+ 4.2436350657440447e-13,
+ 1.8888834723770898e-13,
+ 2.422514229147299e-13,
+ 2.0159384144652348e-13,
+ -3.1340219048409113e-13,
+ -2.947674656444965e-13,
+ 3.9895251815677546e-13,
+ -2.0328790734103208e-13,
+ -2.702035101741218e-13,
+ -4.616329562535937e-13,
+ -1.0503208545953324e-13,
+ -6.700030612781516e-13,
+ 2.261577969168982e-13,
+ -5.590417451878382e-13,
+ -2.0498197323554068e-13,
+ -6.522153693858113e-13,
+ 4.3029273720518457e-13,
+ -3.5236570605778894e-13,
+ -9.740878893424454e-14,
+ 4.675621868843738e-13,
+ 8.470329472543003e-16,
+ 1.0926725019580474e-13,
+ 1.5415999640028266e-13,
+ -4.726443845678996e-13,
+ 4.777265822514254e-13,
+ -1.2705494208814505e-14,
+ 6.437450399132683e-13,
+ -3.3796614595446584e-13,
+ 3.8455295805345235e-13,
+ -2.456395547037471e-13,
+ -2.405573570202213e-13,
+ -5.437951521372608e-13,
+ 1.3976043629695956e-13,
+ 3.9048218868423246e-13,
+ 8.834553639862353e-13,
+ 5.700531735021441e-13,
+ 2.1768746744435519e-13,
+ -1.6940658945086007e-13,
+ -6.454391058077769e-13,
+ 7.682588831596504e-13,
+ -3.5744790374131474e-13,
+ -1.4399560103323106e-14,
+ 1.6008922703106276e-13,
+ -2.278518628114068e-13,
+ 3.5744790374131474e-13,
+ 2.320870275476783e-13,
+ -2.430984558619842e-13,
+ -5.581947122405839e-13,
+ 8.571973426213519e-13,
+ -8.12304596416874e-13,
+ -8.978549240895584e-13,
+ -1.4314856808597676e-13,
+ 3.7100043089738355e-13,
+ -3.1340219048409113e-13,
+ -2.380162581784584e-13,
+ 2.1091120386632078e-13,
+ -5.404070203482436e-13,
+ 5.590417451878382e-13,
+ 1.6347735882007997e-13
+ ],
+ [
+ 3.192464348714273,
+ -6.886270153847997,
+ 7.071295285470601,
+ -9.418135478389278,
+ 8.558588708716757,
+ -6.471841550845043,
+ -8.612359529770819,
+ 6.8792989343731294,
+ -5.051255257130356,
+ -0.7804648671317531,
+ 3.2048149729942104,
+ -6.74075004414442,
+ -2.7829643733945963,
+ 6.209394856823793,
+ -8.602809596790673,
+ 9.242310412231168,
+ -8.892321675768242,
+ 8.499796633733109,
+ 7.71295263492197,
+ -10.404507791454334,
+ 8.978919591255504,
+ -5.485420060525214,
+ 2.0790534659567723,
+ 1.4083416253458743,
+ -3.206496706735576,
+ -1.4892675769312598,
+ 3.746325422708747,
+ -8.106724283489243,
+ 8.645773929997116,
+ -8.211604231964879,
+ -8.210042781360444,
+ 8.645292887197972,
+ -9.029437757437503,
+ 1.4266160536666228,
+ 1.3102340931887304,
+ -5.8303371169475335,
+ -1.103668570765007,
+ 5.00335162430171,
+ -8.04228021892732,
+ 10.386075570881133,
+ -11.076861775763872,
+ 7.23774621977,
+ 9.324970050288055,
+ -9.530827020697577,
+ 6.387223267744218,
+ -0.2860914083631373,
+ -3.8152185746973872,
+ 6.457387204033791,
+ -3.1128460811595537e-13,
+ -2.4267493938835705e-13,
+ -2.8163845496205486e-13,
+ -9.952637130238029e-14,
+ -7.072725109573408e-14,
+ 2.8248548790930916e-13,
+ 1.2281977735187355e-13,
+ 1.7364175418713157e-13,
+ 1.223962608782464e-13,
+ -1.9142944607947188e-13,
+ -2.0117032497289633e-13,
+ 2.3505164286306834e-13,
+ -1.105377996166862e-13,
+ -1.223962608782464e-13,
+ -2.769797737521562e-13,
+ -6.945670167485263e-14,
+ -3.7523559563365505e-13,
+ 1.0842021724855044e-13,
+ -3.0112021274890377e-13,
+ -1.2959604092990795e-13,
+ -4.1589317710186147e-13,
+ 2.405573570202213e-13,
+ -1.8507669897506462e-13,
+ -8.004461351553138e-14,
+ 2.532628512290358e-13,
+ 4.446922973085077e-14,
+ 6.945670167485263e-14,
+ 9.994988777600744e-14,
+ -3.006966962752766e-13,
+ 2.7825032317303766e-13,
+ 6.776263578034403e-15,
+ 3.646476837929763e-13,
+ -2.0540548970916783e-13,
+ 2.1599340154984659e-13,
+ -1.5670109524204556e-13,
+ -1.4907779871675686e-13,
+ -3.21449003483007e-13,
+ 9.613823951336309e-14,
+ 2.6385076306971456e-13,
+ 5.653944922922455e-13,
+ 3.536362554786704e-13,
+ 1.4823076576950256e-13,
+ -1.3467823861343375e-13,
+ -3.959879028413854e-13,
+ 4.785736151986797e-13,
+ -2.3674570875757694e-13,
+ -3.8963515573697816e-14,
+ 1.249373597200093e-13,
+ -1.198551620364835e-13,
+ 2.1472285212896514e-13,
+ 1.401839527705867e-13,
+ -1.4230153513872246e-13,
+ -3.4982460721602604e-13,
+ 5.209252625613947e-13,
+ -5.073727354053259e-13,
+ -5.573476792933296e-13,
+ -9.740878893424454e-14,
+ 2.0498197323554068e-13,
+ -2.0667603913004928e-13,
+ -1.6178329292557136e-13,
+ 1.41030985717841e-13,
+ -3.2356658585114273e-13,
+ 2.8502658675107206e-13,
+ 1.0037340424963459e-13
+ ],
+ [
+ 3.3265979517865936,
+ -0.4651862660046089,
+ -1.859625148697342,
+ 6.264317320935712,
+ -7.747945801731722,
+ 7.460752542366443,
+ 6.861156295132164,
+ -8.21831691842916,
+ 7.4469517696175025,
+ -4.147929665551653,
+ 1.7574324879781573,
+ 1.815447615472514,
+ -2.1859400789214334,
+ -1.2802805278862626,
+ 3.7717898254311804,
+ -7.177214738998104,
+ 7.985553563154126,
+ -5.686249931756702,
+ -2.813055892584725,
+ 6.013848837927431,
+ -7.1032520713715135,
+ 7.3624501447455115,
+ -6.471376824906777,
+ 3.4996838133024673,
+ 6.190254335139774,
+ -4.391234534065174,
+ 1.9900173601422724,
+ 2.8844258605809947,
+ -5.15628077778541,
+ 6.552394167966921,
+ 4.126058367245425,
+ -6.966393675046652,
+ 8.554206175518123,
+ -5.073676850288298,
+ 3.1259746501652232,
+ 0.36353429160704565,
+ -3.3276043015386376,
+ 0.2418758914988792,
+ 2.2989655752199756,
+ -6.310533868663672,
+ 7.754338512196046,
+ -7.22091117918998,
+ -6.555755952923125,
+ 8.247301452039228,
+ -7.680053407808396,
+ 4.540620153291612,
+ -3.1386660491987284,
+ 0.4841788284389632,
+ 3.9810548520952116e-14,
+ 1.300195574035351e-13,
+ 1.2790197503539935e-13,
+ -1.9481757786848908e-14,
+ 2.583450489125616e-14,
+ -1.5246593050577406e-14,
+ -7.707999820014133e-14,
+ 4.658681209898652e-14,
+ -6.860966872759833e-14,
+ 1.5712461171567271e-13,
+ -2.117582368135751e-15,
+ -2.346281263894412e-13,
+ 1.8465318250143747e-13,
+ 2.9942614685439517e-13,
+ 2.3759274170483125e-13,
+ 8.470329472543003e-16,
+ 5.382894379801079e-13,
+ -2.430984558619842e-13,
+ 4.264810889425402e-13,
+ -1.3976043629695956e-14,
+ 1.8550021544869177e-13,
+ -2.6385076306971456e-13,
+ 2.5029823591364575e-13,
+ 6.3527471044072525e-15,
+ -3.2610768469290563e-13,
+ 2.1175823681357508e-13,
+ 2.964615315390051e-15,
+ -1.2705494208814505e-14,
+ 1.0884373372217759e-13,
+ -2.363221922839498e-13,
+ 8.766791004082009e-14,
+ -3.7777669447541795e-13,
+ 9.994988777600744e-14,
+ -2.2065208275974524e-13,
+ 7.496241583200558e-14,
+ 7.199780051661553e-14,
+ 2.4818065354551e-13,
+ 1.0164395367051604e-14,
+ -9.740878893424454e-15,
+ -2.702035101741218e-13,
+ -1.6432439176733427e-13,
+ -2.625802136488331e-14,
+ -1.2705494208814505e-14,
+ 3.121316410632097e-13,
+ -2.558039500707987e-13,
+ 7.453889935837843e-14,
+ -1.9778219318387913e-13,
+ 4.277516383634217e-14,
+ 1.9269999550035333e-13,
+ -2.0964065444543933e-13,
+ -9.613823951336309e-14,
+ 1.6008922703106276e-13,
+ 1.2620790914089075e-13,
+ -3.282252670610414e-13,
+ 2.727446090158847e-13,
+ 3.3881317890172014e-13,
+ 2.0328790734103208e-14,
+ -2.6300373012246026e-13,
+ -1.4823076576950256e-14,
+ -1.6940658945086007e-15,
+ 3.3881317890172014e-15,
+ 2.9688504801263227e-13,
+ -4.9932592240641e-13,
+ -2.286988957586611e-14
+ ],
+ [
+ 3.484336549558461,
+ 1.4668853309756336,
+ -4.958158598898086,
+ 11.809770500228055,
+ -13.78999053842268,
+ 12.449741435223439,
+ 12.35669021475777,
+ -13.862954988875373,
+ 11.943873317535619,
+ -5.421413322724338,
+ 1.0774419134494,
+ 4.795407101888502,
+ -2.0441979092018654,
+ -4.114935298131382,
+ 8.112044102351481,
+ -12.994774119403253,
+ 13.747123672466572,
+ -10.541838624057574,
+ -6.480266434246295,
+ 11.555102737709333,
+ -12.802182792734005,
+ 11.976474921708592,
+ -9.831019381091666,
+ 4.330449259008061,
+ 9.594408012650547,
+ -5.761175437992433,
+ 1.459832806004221,
+ 6.722831499408428,
+ -10.26174326280735,
+ 11.79545395746787,
+ 8.46501818050937,
+ -12.74638493479156,
+ 14.819662375183603,
+ -7.443740609102435,
+ 3.601267547740479,
+ 2.492038076847351,
+ -4.183061433169262,
+ -1.6143357877384064,
+ 5.898543849670339,
+ -12.193379166863975,
+ 14.172296008807415,
+ -12.36712836155124,
+ -12.165848779579502,
+ 14.321757309821313,
+ -12.709531935717857,
+ 6.330823841476056,
+ -3.247932133989297,
+ -1.5283545220944417,
+ 1.5415999640028266e-13,
+ 2.541098841762901e-13,
+ 2.761327408049019e-13,
+ 4.235164736271502e-15,
+ 5.421010862427522e-14,
+ -1.0164395367051604e-13,
+ -1.4653669987499396e-13,
+ 6.776263578034403e-15,
+ -1.2959604092990795e-13,
+ 2.930733997499879e-13,
+ 6.776263578034403e-14,
+ -4.0572878173480986e-13,
+ 3.091670257478196e-13,
+ 4.463863632030163e-13,
+ 4.2266944067989587e-13,
+ 1.2705494208814505e-14,
+ 8.859964628279982e-13,
+ -3.7862372742267225e-13,
+ 6.886377861177462e-13,
+ 3.3881317890172014e-15,
+ 3.8794108984246956e-13,
+ -4.489274620447792e-13,
+ 3.8963515573697816e-13,
+ 5.844527336054672e-14,
+ -5.200782296141404e-13,
+ 2.73591641963139e-13,
+ -1.1858461261560205e-14,
+ -5.336307567702092e-14,
+ 2.346281263894412e-13,
+ -4.0826988057657276e-13,
+ 1.2959604092990795e-13,
+ -6.293454798099452e-13,
+ 1.8888834723770898e-13,
+ -3.5575383784680614e-13,
+ 1.6008922703106276e-13,
+ 1.4738373282224826e-13,
+ 4.421511984667448e-13,
+ -1.5246593050577406e-14,
+ -9.232659125071874e-14,
+ -5.742883382384156e-13,
+ -3.3796614595446584e-13,
+ -8.385626177817573e-14,
+ 5.251604272976662e-14,
+ 5.768294370801785e-13,
+ -5.022905377218001e-13,
+ 1.9397054492123478e-13,
+ -2.761327408049019e-13,
+ 5.929230630780102e-15,
+ 3.023907621697852e-13,
+ -3.7777669447541795e-13,
+ -1.8041801776516597e-13,
+ 2.761327408049019e-13,
+ 2.659683454378503e-13,
+ -6.081696561285876e-13,
+ 5.344777897174635e-13,
+ 6.606856988583543e-13,
+ 6.268043809681823e-14,
+ -4.37069000783219e-13,
+ 1.9481757786848908e-14,
+ 4.743384504624082e-14,
+ -3.8963515573697816e-14,
+ 5.277015261394291e-13,
+ -7.707999820014133e-13,
+ -5.929230630780102e-14
+ ],
+ [
+ -4.201499105577355,
+ 8.540965701710949,
+ -9.903586094299133,
+ 13.449471417516012,
+ -13.31044257008698,
+ 9.442632545113636,
+ 12.37730393965025,
+ -11.008120595321392,
+ 7.45998803640787,
+ 0.8562123825102562,
+ -5.3263745679007855,
+ 9.485304979337045,
+ 3.759609573127408,
+ -9.673077823870713,
+ 12.17335326745365,
+ -13.2277865150695,
+ 11.823001106898134,
+ -6.4718786039842655,
+ -10.82994279631857,
+ 13.797090959852964,
+ -12.852651125406236,
+ 8.0596377854592,
+ -4.251606253919315,
+ -1.714258034644977,
+ 4.8421100114115765,
+ 0.8179071801077274,
+ -5.055329040291253,
+ 11.42279986800199,
+ -13.271951301031736,
+ 11.799277134057599,
+ 11.65227214242115,
+ -13.3818059465189,
+ 13.045858202633898,
+ -2.259042402683095,
+ -2.6169003879888377,
+ 8.133812912844604,
+ 1.3632132400949115,
+ -7.907014161791557,
+ 11.303186402646785,
+ -14.755384734214122,
+ 14.831178267996178,
+ -10.431768880247294,
+ -13.288227199212672,
+ 12.715358864243711,
+ -9.288128656150985,
+ 0.675108631186041,
+ 4.125186065308154,
+ -8.896073226404694,
+ 3.8624702394796095e-13,
+ 3.4643647542700884e-13,
+ 3.9387032047324966e-13,
+ 1.4230153513872246e-13,
+ 6.268043809681823e-14,
+ -3.125551575368368e-13,
+ -1.7872395187065737e-13,
+ -2.236166980751353e-13,
+ -1.6220680939919851e-13,
+ 3.066259269060567e-13,
+ 2.685094442796132e-13,
+ -3.5321273900504324e-13,
+ 2.244637310223896e-13,
+ 1.7194768829262297e-13,
+ 4.171637265227429e-13,
+ 5.759824041329242e-14,
+ 6.318865786517081e-13,
+ -1.7237120476625012e-13,
+ 4.446922973085077e-13,
+ 7.242131699024268e-14,
+ 5.658180087658726e-13,
+ -3.341544976918215e-13,
+ 1.8126505071242027e-13,
+ 2.1133472033994793e-13,
+ -3.46859991900636e-13,
+ -4.319868030996932e-14,
+ -6.988021814847978e-14,
+ -1.435720845596039e-13,
+ 3.6337713437209485e-13,
+ -3.5236570605778894e-13,
+ 3.5151867311053464e-14,
+ -4.785736151986797e-13,
+ 2.3166351107405114e-13,
+ -2.515687853345272e-13,
+ 2.3928680759933985e-13,
+ 1.9820570965750628e-13,
+ 4.1589317710186147e-13,
+ -1.6093625997831706e-13,
+ -3.1763735522036263e-13,
+ -8.411037166235202e-13,
+ -4.480804290975249e-13,
+ -2.1726395097072804e-13,
+ 2.947674656444965e-13,
+ 6.433215234396411e-13,
+ -6.479802046495398e-13,
+ 3.4135427774348304e-13,
+ -2.202285662861181e-14,
+ -2.0709955560367643e-13,
+ 1.7448878713438587e-13,
+ -3.6676526616111205e-13,
+ -1.8295911660692887e-13,
+ 2.490276864927643e-13,
+ 4.078463641029456e-13,
+ -6.85249654328729e-13,
+ 6.742382260144231e-13,
+ 8.173867941003998e-13,
+ 1.3213713977167085e-13,
+ -3.4558944247975454e-13,
+ 1.9947625907838773e-13,
+ 1.9862922613113343e-13,
+ -1.6135977645194421e-13,
+ 5.086432848262074e-13,
+ -3.824353756853166e-13,
+ -1.0460856898590609e-13
+ ],
+ [
+ -3.7249704969715896,
+ 6.025047551917105,
+ -6.396841623339727,
+ 7.7685399232783645,
+ -7.307798597567263,
+ 4.701658547008308,
+ 6.879907995283498,
+ -5.598914878653263,
+ 3.3329663828693774,
+ 1.6116738441680734,
+ -4.11789383858394,
+ 6.118225586791526,
+ 3.138905511493917,
+ -6.379658818878187,
+ 7.497813336204924,
+ -7.390827384607557,
+ 6.220046818750885,
+ -2.8589294297182373,
+ -5.896784364834572,
+ 8.070651989851001,
+ -7.149388509301139,
+ 3.768713961828684,
+ -1.3523082022531165,
+ -2.0462096817605055,
+ 1.8300389748691357,
+ 1.64494781057331,
+ -3.987466713810539,
+ 7.196418040049929,
+ -7.917925710776893,
+ 6.555748316536336,
+ 7.050157915374406,
+ -7.549210572945746,
+ 6.926601294252302,
+ -0.3167751352086454,
+ -2.579057574460064,
+ 5.539660745332369,
+ 1.7609905315358783,
+ -5.531449509408434,
+ 7.257485887586206,
+ -8.660938146617214,
+ 8.358655477152665,
+ -5.445115928063697,
+ -7.585345916795817,
+ 6.7732895234129735,
+ -4.5408532135081145,
+ -0.6484109155528538,
+ 3.6259873685953377,
+ -6.275461619281389,
+ 2.590862027414091e-13,
+ 2.0964065444543933e-13,
+ 2.4013384054659415e-13,
+ 1.0471444810431288e-13,
+ 3.6422416731934915e-14,
+ -2.132405444712701e-13,
+ -1.053497228147536e-13,
+ -1.658066994250293e-13,
+ -9.43382945004477e-14,
+ 1.7237120476625012e-13,
+ 1.8645312751435286e-13,
+ -1.851825780934714e-13,
+ 1.0884373372217759e-13,
+ 4.521038355969828e-14,
+ 2.318752693108647e-13,
+ 4.0657581468206416e-14,
+ 3.060965313140228e-13,
+ -5.982170189983496e-14,
+ 2.0201735792015063e-13,
+ 5.304543832180056e-14,
+ 3.466482336638224e-13,
+ -1.666537323722836e-13,
+ 6.405686663610646e-14,
+ 1.4314856808597676e-13,
+ -1.6104213909672385e-13,
+ -8.173867941003998e-14,
+ -4.955142741437657e-14,
+ -9.338538243478661e-14,
+ 2.2562840132486425e-13,
+ -1.8581785280391214e-13,
+ 1.6940658945086007e-15,
+ -2.41192631730662e-13,
+ 1.359487880343152e-13,
+ -1.2006692027329707e-13,
+ 1.4748961194065505e-13,
+ 1.1826697526038168e-13,
+ 2.2636955515371177e-13,
+ -1.1487884347136448e-13,
+ -2.149346103657787e-13,
+ -5.144666363385807e-13,
+ -2.6829768604279963e-13,
+ -1.4727785370384147e-13,
+ 2.057231270643882e-13,
+ 3.686710902924342e-13,
+ -3.850823536454863e-13,
+ 2.1451109389215156e-13,
+ 3.441071348220595e-14,
+ -1.5352472168984194e-13,
+ 7.443302023997164e-14,
+ -2.0244087439377778e-13,
+ -1.0270274485458392e-13,
+ 1.3499587596865412e-13,
+ 2.5220406004496793e-13,
+ -3.9461147430209717e-13,
+ 4.0075246316969085e-13,
+ 4.830205381717648e-13,
+ 8.491505296224361e-14,
+ -1.741711497791655e-13,
+ 1.4261917249394282e-13,
+ 1.3668994186316272e-13,
+ -1.096907666694319e-13,
+ 2.78567960528258e-13,
+ -1.4399560103323106e-13,
+ -6.596269076742864e-14
+ ],
+ [
+ -2.697048806847691,
+ -1.7155453565324057,
+ 3.5958565837858347,
+ -8.70869974204147,
+ 9.47158763414816,
+ -9.259566461941883,
+ -9.135244507142863,
+ 9.56909155107678,
+ -8.920112453282536,
+ 4.144498611094329,
+ -1.6711508578291947,
+ -3.4469445125606533,
+ 1.6412269042865486,
+ 2.1916022646412285,
+ -5.923666414772871,
+ 9.636480934525345,
+ -10.976513333940689,
+ 7.905679044094085,
+ 9.00740646165548,
+ -9.282589623123616,
+ 9.501243032985546,
+ -8.93218312438231,
+ 6.626938398980385,
+ -3.2926133306683827,
+ -7.172457502321056,
+ 3.627206723618743,
+ -1.1809970162738792,
+ -4.89053487114446,
+ 6.799307416781818,
+ -8.722709196455835,
+ -6.198813317416458,
+ 8.680336077577898,
+ -11.000191103154888,
+ 5.623856638636995,
+ -3.5372757369358196,
+ -1.7253565811889207,
+ 3.2216348735950393,
+ 0.3280731174727402,
+ -4.263727305009549,
+ 9.006621777223,
+ -11.251348557269624,
+ 9.224453966180942,
+ 9.019720716871396,
+ -11.403292921279405,
+ 9.498042844646356,
+ -4.785015508182157,
+ 1.7847451834499268,
+ 1.0243696852342656,
+ -1.3891340334970526e-13,
+ -2.0074680849926918e-13,
+ -1.9312351197398048e-13,
+ 1.3552527156068805e-14,
+ -6.013933925505532e-14,
+ 1.2790197503539935e-13,
+ 1.0079692072326174e-13,
+ -9.317362419797304e-15,
+ 1.0587911840678754e-13,
+ -1.9227647902672618e-13,
+ -5.166900978251232e-14,
+ 2.82061971435682e-13,
+ -1.8295911660692887e-13,
+ -3.5744790374131474e-13,
+ -3.006966962752766e-13,
+ -3.7269449679189215e-14,
+ -5.869938324472301e-13,
+ 2.812149384884277e-13,
+ -5.13301966036106e-13,
+ -6.860966872759833e-14,
+ -3.006966962752766e-13,
+ 3.3627208005995723e-13,
+ -3.6083603553033194e-13,
+ 3.8963515573697816e-14,
+ 4.1589317710186147e-13,
+ -2.0074680849926918e-13,
+ 2.710505431213761e-14,
+ 4.573977915173222e-14,
+ -2.219226321806267e-13,
+ 3.3711911300721153e-13,
+ -7.369186641112413e-14,
+ 5.082197683525802e-13,
+ -1.9397054492123478e-13,
+ 3.1848438816761693e-13,
+ -1.0757318430129614e-13,
+ -1.3044307387716225e-13,
+ -3.5744790374131474e-13,
+ 8.470329472543003e-15,
+ 1.1434944787933055e-13,
+ 3.9641141931501256e-13,
+ 2.90532300908225e-13,
+ 5.505714157152952e-14,
+ 4.0657581468206416e-14,
+ -3.6422416731934915e-13,
+ 3.9132922163148676e-13,
+ -1.3298417271892515e-13,
+ 1.5161889755851976e-13,
+ -2.625802136488331e-14,
+ -2.261577969168982e-13,
+ 2.371692252312041e-13,
+ 1.4484263398048536e-13,
+ -1.8380614955418317e-13,
+ -2.574980159653073e-13,
+ 5.014435047745458e-13,
+ -4.2012834183813297e-13,
+ -4.802676810931883e-13,
+ -4.319868030996932e-14,
+ 2.922263668027336e-13,
+ -7.369186641112413e-14,
+ -5.590417451878382e-14,
+ 4.658681209898652e-14,
+ -3.6761229910836635e-13,
+ 6.081696561285876e-13,
+ 7.707999820014133e-14
+ ],
+ [
+ -2.3293317006237215,
+ -4.446137468576366,
+ 6.818992843876179,
+ -13.987429055330809,
+ 14.619274256439985,
+ -13.711448536839942,
+ -14.257011788961048,
+ 14.191228898439494,
+ -12.821572469456866,
+ 4.933729315093267,
+ -1.0847101402487838,
+ -6.522430086000569,
+ 1.1442079380248458,
+ 4.735511762046603,
+ -10.233575613501309,
+ 15.092710227139083,
+ -16.69737917063818,
+ 11.34168201901005,
+ 13.780578310152805,
+ -14.897414144624657,
+ 14.837347287840194,
+ -12.978815275346728,
+ 8.935056415565258,
+ -3.659327653644687,
+ -10.028624722213708,
+ 4.01047755290224,
+ -0.25018220879150954,
+ -8.77808139853052,
+ 11.302609715289757,
+ -13.609425838009331,
+ -10.449245827006678,
+ 13.657207815249812,
+ -16.728857113953204,
+ 7.508869228561477,
+ -4.041610896177676,
+ -4.068995072483528,
+ 3.6729286214046986,
+ 2.007541544419797,
+ -7.972063697244307,
+ 14.679210320485373,
+ -17.757481853234086,
+ 13.920953535399535,
+ 14.348406157012432,
+ -17.44123291841925,
+ 13.984442034790737,
+ -6.083782599251147,
+ 0.9421537205206211,
+ 3.399313520803803,
+ -2.803679055411734e-13,
+ -3.3627208005995723e-13,
+ -3.2949581648192283e-13,
+ -1.5246593050577406e-14,
+ -9.994988777600744e-14,
+ 2.56650983018053e-13,
+ 1.6178329292557136e-13,
+ 4.404571325722362e-14,
+ 1.7364175418713157e-13,
+ -2.947674656444965e-13,
+ -1.2874900798265365e-13,
+ 4.2266944067989587e-13,
+ -2.65121312490596e-13,
+ -4.912791094074942e-13,
+ -4.701032857261367e-13,
+ -7.115076756936123e-14,
+ -8.402566836762659e-13,
+ 3.7947076036992655e-13,
+ -7.462360265310386e-13,
+ -1.3383120566617945e-13,
+ -5.175371307723775e-13,
+ 5.13301966036106e-13,
+ -5.183841637196318e-13,
+ 3.134021904840911e-14,
+ 6.073226231813333e-13,
+ -2.363221922839498e-13,
+ 6.098637220230962e-14,
+ 8.978549240895584e-14,
+ -3.7947076036992655e-13,
+ 5.149960319306146e-13,
+ -9.571472303973594e-14,
+ 7.538593230563273e-13,
+ -3.07472959853311e-13,
+ 4.734914175151539e-13,
+ -1.8465318250143747e-13,
+ -2.1514636860259229e-13,
+ -5.531125145570581e-13,
+ 4.489274620447792e-14,
+ 2.346281263894412e-13,
+ 6.759322919089317e-13,
+ 4.802676810931883e-13,
+ 1.1434944787933055e-13,
+ 1.5246593050577406e-14,
+ -5.802175688691957e-13,
+ 6.479802046495398e-13,
+ -2.405573570202213e-13,
+ 1.7533582008164017e-13,
+ 9.317362419797304e-15,
+ -3.1679032227310833e-13,
+ 3.6253010142484055e-13,
+ 2.270048298641525e-13,
+ -2.803679055411734e-13,
+ -4.37069000783219e-13,
+ 8.004461351553138e-13,
+ -6.894848190650005e-13,
+ -7.919758056827708e-13,
+ -8.555032767268433e-14,
+ 4.379160337304733e-13,
+ -1.7025362239811437e-13,
+ -1.2197274440461925e-13,
+ 1.1180834903756764e-13,
+ -5.64123942871364e-13,
+ 8.54656243779589e-13,
+ 1.2959604092990795e-13
+ ],
+ [
+ -0.3087940699289219,
+ -3.463288406719769,
+ 4.503851379966752,
+ -8.122681567401996,
+ 8.180227437058553,
+ -7.35733568020479,
+ -8.062633476713335,
+ 7.6268874485905656,
+ -6.660905755059184,
+ 1.9669447782564624,
+ 0.20382159928717908,
+ -4.301717342179534,
+ -0.11321379943464205,
+ 3.3835705040991826,
+ -6.3177352978735755,
+ 8.5639071749206,
+ -9.21030880363085,
+ 5.879413107767787,
+ 7.644639424304138,
+ -7.907409195145226,
+ 8.395727045125017,
+ -6.824080412739201,
+ 4.297941020332623,
+ -1.2758044504404198,
+ -5.046322470540916,
+ 1.3826174231221446,
+ 0.7130971387182501,
+ -5.57878199426357,
+ 6.762658548645998,
+ -7.694393965552186,
+ -6.325034671546937,
+ 7.782514074921891,
+ -9.225159970355119,
+ 3.566137635614038,
+ -1.4922473670294805,
+ -3.039451239567237,
+ 1.3502205905246816,
+ 1.9376088149455684,
+ -5.215351873041069,
+ 8.635585260368124,
+ -10.148430504997556,
+ 7.617608196169926,
+ 8.260073367684903,
+ -9.672709161055353,
+ 7.458508285056541,
+ -2.6980220594580597,
+ -0.4560515125403986,
+ 2.888370951741429,
+ -1.9015889665859043e-13,
+ -2.0371142381465923e-13,
+ -2.0201735792015063e-13,
+ -2.244637310223896e-14,
+ -5.759824041329242e-14,
+ 1.7787691892340307e-13,
+ 9.402065714522734e-14,
+ 6.098637220230962e-14,
+ 1.0079692072326174e-13,
+ -1.7448878713438587e-13,
+ -9.783230540787169e-14,
+ 2.286988957586611e-13,
+ -1.3383120566617945e-13,
+ -2.3928680759933985e-13,
+ -2.6300373012246026e-13,
+ -4.446922973085077e-14,
+ -4.3918658315135473e-13,
+ 1.9269999550035333e-13,
+ -3.7947076036992655e-13,
+ -8.724439356719293e-14,
+ -3.1043757516870107e-13,
+ 2.7825032317303766e-13,
+ -2.718975760686304e-13,
+ 8.470329472543003e-16,
+ 3.163668057994812e-13,
+ -9.910285482875314e-14,
+ 4.573977915173222e-14,
+ 6.479802046495398e-14,
+ -2.295459287059154e-13,
+ 2.896852679609707e-13,
+ -4.1081097941833566e-14,
+ 4.112344958919628e-13,
+ -1.8295911660692887e-13,
+ 2.558039500707987e-13,
+ -1.1096131609031334e-13,
+ -1.291725244562808e-13,
+ -3.163668057994812e-13,
+ 4.0234064994579266e-14,
+ 1.5924219408380846e-13,
+ 4.205518583117601e-13,
+ 2.854501032246992e-13,
+ 8.639736061993863e-14,
+ -1.6093625997831706e-14,
+ -3.434718601116188e-13,
+ 3.832824086325709e-13,
+ -1.4992483166401116e-13,
+ 6.522153693858113e-14,
+ 3.261076846929056e-14,
+ -1.5881867761018131e-13,
+ 2.0117032497289633e-13,
+ 1.2874900798265365e-13,
+ -1.5797164466292701e-13,
+ -2.634272465960874e-13,
+ 4.612094397799665e-13,
+ -4.120815288392171e-13,
+ -4.743384504624082e-13,
+ -5.293955920339377e-14,
+ 2.430984558619842e-13,
+ -1.257843926672636e-13,
+ -8.385626177817573e-14,
+ 8.343274530454858e-14,
+ -3.1763735522036263e-13,
+ 4.3537493488871037e-13,
+ 7.707999820014133e-14
+ ],
+ [
+ 6.717843925041759,
+ -2.632145606432502,
+ -1.1660487347503268,
+ 8.136149378177183,
+ -10.777482407488764,
+ 11.079608302888554,
+ 9.408756267325206,
+ -12.08825984148048,
+ 11.47422129522138,
+ -7.449706461736301,
+ 4.193065346502394,
+ 1.1775454700748262,
+ -4.624802528199791,
+ -0.2118827349164438,
+ 4.037805758172666,
+ -9.782400744477052,
+ 11.483808291123278,
+ -10.186227366016382,
+ -9.818095801796826,
+ 11.756089069270125,
+ -9.731985328714991,
+ 11.199459004345211,
+ -10.45457877623761,
+ 6.495633846075054,
+ 9.825282715471776,
+ -7.880484601693148,
+ 4.555894952374488,
+ 2.6412193829026513,
+ -6.243787404674052,
+ 8.989758183902527,
+ 4.7687825551018115,
+ -9.392742240114064,
+ 12.2343413213743,
+ -8.413753843179116,
+ 6.018848129736891,
+ -1.0813140432648134,
+ -6.119135475690677,
+ 2.0824780810913293,
+ 1.6405613039136293,
+ -7.940708494140559,
+ 10.442876398631036,
+ -10.449559107737823,
+ -8.680340109449642,
+ 11.753840332577731,
+ -11.495946760868524,
+ 7.814658244729579,
+ -6.384179009281292,
+ 2.728665044416092,
+ 4.235164736271502e-15,
+ 1.3383120566617945e-13,
+ 1.5077186461126546e-13,
+ -6.522153693858113e-14,
+ 3.3881317890172014e-14,
+ 4.573977915173222e-14,
+ -9.486769009248164e-14,
+ 1.3806637040245096e-13,
+ -8.470329472543003e-14,
+ 1.8465318250143747e-13,
+ -5.251604272976662e-14,
+ -3.2441361879839703e-13,
+ 2.99002630380768e-13,
+ 4.785736151986797e-13,
+ 3.2949581648192283e-13,
+ -1.4399560103323106e-14,
+ 7.843525091574821e-13,
+ -3.7862372742267225e-13,
+ 7.089665768518494e-13,
+ -4.658681209898652e-14,
+ 2.261577969168982e-13,
+ -3.9048218868423246e-13,
+ 3.9048218868423246e-13,
+ -4.319868030996932e-14,
+ -5.065257024580716e-13,
+ 3.4728350837426314e-13,
+ 2.964615315390051e-14,
+ 1.8634724839594607e-14,
+ 1.2027867851011065e-13,
+ -3.1509625637859973e-13,
+ 1.7618285302889447e-13,
+ -5.421010862427522e-13,
+ 1.1434944787933055e-13,
+ -3.2695471764015993e-13,
+ 8.555032767268433e-14,
+ 9.402065714522734e-14,
+ 3.3881317890172014e-13,
+ 6.098637220230962e-14,
+ 2.879912020664621e-14,
+ -2.625802136488331e-13,
+ -1.9142944607947188e-13,
+ 9.317362419797304e-15,
+ -8.470329472543003e-14,
+ 3.8031779331718085e-13,
+ -3.1763735522036263e-13,
+ 6.945670167485263e-14,
+ -3.4220131069073734e-13,
+ 1.0587911840678754e-13,
+ 2.913793338554793e-13,
+ -2.896852679609707e-13,
+ -1.2790197503539935e-13,
+ 2.261577969168982e-13,
+ 1.4907779871675686e-13,
+ -4.3113977015243887e-13,
+ 3.2864878353466853e-13,
+ 4.1335207826009857e-13,
+ 7.623296525288703e-15,
+ -3.7269449679189215e-13,
+ -9.656175598699024e-14,
+ -3.218725199566341e-14,
+ 4.743384504624082e-14,
+ 4.0234064994579266e-13,
+ -7.919758056827708e-13,
+ -3.5575383784680614e-14
+ ],
+ [
+ 4.828374969857499,
+ -0.9213044546733957,
+ -2.3307351182864164,
+ 8.450110964416305,
+ -10.558302490004484,
+ 10.261655984810428,
+ 9.325991832199387,
+ -11.292316039478248,
+ 10.301645194398716,
+ -5.888386520507742,
+ 2.63690392887287,
+ 2.2811738302138793,
+ -3.202433591683288,
+ -1.5260595855358474,
+ 4.965468927289506,
+ -9.74685524800177,
+ 10.924571292894457,
+ -9.124226463578605,
+ -9.460129883622846,
+ 10.67703386147462,
+ -9.096797281212469,
+ 10.164206564111328,
+ -9.026213440355933,
+ 4.998294528372943,
+ 8.604173017712009,
+ -6.238444709512165,
+ 2.96482601630117,
+ 3.7337265353883127,
+ -6.896285586447421,
+ 8.906920587728603,
+ 5.481880141599017,
+ -9.451471831737267,
+ 11.698830751600601,
+ -7.103243089450402,
+ 4.48982331125653,
+ 0.2695922208052328,
+ -4.744077979243526,
+ 0.5723502570652411,
+ 2.9098475134158046,
+ -8.475905635865397,
+ 10.507310358797396,
+ -9.892505333980225,
+ -8.866525669761115,
+ 11.267653865281074,
+ -10.575900540608954,
+ 6.3976183310652655,
+ -4.567363668599273,
+ 0.9519108900384592,
+ 6.098637220230962e-14,
+ 1.5500702934753696e-13,
+ 1.6771252355635147e-13,
+ -3.9810548520952116e-14,
+ 4.404571325722362e-14,
+ -9.317362419797304e-15,
+ -9.994988777600744e-14,
+ 7.707999820014133e-14,
+ -9.232659125071874e-14,
+ 2.0244087439377778e-13,
+ -6.776263578034403e-15,
+ -3.1679032227310833e-13,
+ 2.702035101741218e-13,
+ 4.1843427594362437e-13,
+ 3.3034284942917713e-13,
+ -1.6940658945086007e-15,
+ 7.225191040079182e-13,
+ -3.3373098121819433e-13,
+ 6.369687763352339e-13,
+ -1.7787691892340307e-14,
+ 2.625802136488331e-13,
+ -3.7692966152816365e-13,
+ 3.3373098121819433e-13,
+ 1.6940658945086007e-15,
+ -4.590918574118308e-13,
+ 2.871441691192078e-13,
+ 1.2705494208814505e-14,
+ 8.470329472543003e-16,
+ 1.4314856808597676e-13,
+ -3.066259269060567e-13,
+ 1.4823076576950256e-13,
+ -5.107608671943431e-13,
+ 1.2112571145736495e-13,
+ -2.888382350137164e-13,
+ 1.0079692072326174e-13,
+ 8.978549240895584e-14,
+ 3.3034284942917713e-13,
+ 3.3881317890172014e-14,
+ -2.371692252312041e-14,
+ -3.3627208005995723e-13,
+ -2.1260526976082939e-13,
+ -2.541098841762901e-14,
+ -3.049318610115481e-14,
+ 3.9895251815677546e-13,
+ -3.5490680489955184e-13,
+ 1.0249098661777034e-13,
+ -2.795208725939191e-13,
+ 6.183340514956392e-14,
+ 2.56650983018053e-13,
+ -2.812149384884277e-13,
+ -1.4568966692773966e-13,
+ 2.320870275476783e-13,
+ 1.7194768829262297e-13,
+ -4.438452643612534e-13,
+ 3.5914196963582334e-13,
+ 4.531626267810507e-13,
+ 2.117582368135751e-14,
+ -3.6337713437209485e-13,
+ -5.082197683525802e-14,
+ -8.470329472543003e-15,
+ 1.7787691892340307e-14,
+ 3.9641141931501256e-13,
+ -6.844026213814747e-13,
+ -2.964615315390051e-14
+ ],
+ [
+ -10.828208135000768,
+ 8.49726489081324,
+ -4.663985414460119,
+ -1.7061420321183904,
+ 5.044081410081932,
+ -7.7834003492712345,
+ -3.927455956998581,
+ 8.069106967614157,
+ -9.487505486687194,
+ 9.666940281216052,
+ -8.410457374598398,
+ 4.391961175117482,
+ 7.987553663530838,
+ -5.6807716460807525,
+ 2.5369173087001755,
+ 3.8620150448647372,
+ -6.80232962816972,
+ 8.51478956109898,
+ 5.288966258283077,
+ -9.184268248902526,
+ 10.136241939684204,
+ -8.781408085343177,
+ 10.222578124815074,
+ -9.025001362177271,
+ -9.07554581173375,
+ 10.184056261923967,
+ -8.700997537087176,
+ 3.7886767621283512,
+ -0.4948354599847384,
+ -3.7690334388262112,
+ 1.3193632645432858,
+ 3.3011533333777834,
+ -6.982716245226727,
+ 8.93268382837911,
+ -8.98321772128852,
+ 6.331778053526286,
+ 8.346297249470664,
+ -7.4090314469724765,
+ 4.9427540012211395,
+ 0.662241029314388,
+ -3.673906862121513,
+ 6.400966448608956,
+ 2.472458352527079,
+ -6.5843953024708535,
+ 8.388692679344313,
+ -9.172713108527978,
+ 10.38334229819666,
+ -8.822735530131501,
+ 2.710505431213761e-13,
+ 4.0657581468206416e-14,
+ 3.7269449679189215e-14,
+ 9.740878893424454e-14,
+ 2.0328790734103208e-14,
+ -2.752857078576476e-13,
+ 3.3881317890172014e-14,
+ -3.3373098121819433e-13,
+ 3.5575383784680614e-14,
+ -1.4399560103323106e-14,
+ 2.253107639696439e-13,
+ 1.6263032587282567e-13,
+ -2.219226321806267e-13,
+ -4.751854834096625e-13,
+ -1.1180834903756764e-13,
+ 6.945670167485263e-14,
+ -5.454892180317694e-13,
+ 3.3203691532368573e-13,
+ -5.852997665527215e-13,
+ 1.3383120566617945e-13,
+ 8.555032767268433e-14,
+ 2.0837010502455788e-13,
+ -3.9471735342050396e-13,
+ 2.1260526976082939e-13,
+ 4.0826988057657276e-13,
+ -4.1589317710186147e-13,
+ -1.2790197503539935e-13,
+ -9.571472303973594e-14,
+ 5.336307567702092e-14,
+ 1.4907779871675686e-13,
+ -1.9142944607947188e-13,
+ 3.117081245895825e-13,
+ -1.5246593050577406e-14,
+ 2.642742795433417e-13,
+ 6.776263578034403e-15,
+ -4.828087799349512e-14,
+ -1.8634724839594607e-13,
+ -1.5754812818929986e-13,
+ -2.295459287059154e-13,
+ -2.1514636860259229e-13,
+ -3.049318610115481e-14,
+ -1.3976043629695956e-13,
+ 2.837560373301906e-13,
+ -1.9481757786848908e-14,
+ -6.098637220230962e-14,
+ 1.0757318430129614e-13,
+ 4.1250504531284427e-13,
+ -2.261577969168982e-13,
+ -2.354751593366955e-13,
+ 1.3976043629695956e-13,
+ 1.9481757786848908e-14,
+ -7.792703114739563e-14,
+ 5.929230630780102e-14,
+ 1.2536087619363645e-13,
+ 4.997494388800372e-14,
+ 3.134021904840911e-14,
+ 6.776263578034403e-14,
+ 2.0667603913004928e-13,
+ 2.346281263894412e-13,
+ 1.0842021724855044e-13,
+ -1.8126505071242027e-13,
+ -1.9905274260476058e-13,
+ 7.733410808431762e-13,
+ 5.929230630780102e-15
+ ],
+ [
+ -10.979295423362514,
+ 8.01372778617267,
+ -3.8030593708484615,
+ -3.3443775286162456,
+ 6.859009698492748,
+ -9.31781812597918,
+ -5.572620641761624,
+ 9.79714821216632,
+ -10.89455636356201,
+ 10.13310107894674,
+ -8.294057330357298,
+ 3.5631129620217323,
+ 8.023573384848538,
+ -4.907797009897012,
+ 1.2922702017679728,
+ 5.60075694152375,
+ -8.55410105325156,
+ 9.75212789512722,
+ 6.853825528103267,
+ -10.694302591843053,
+ 11.238642984645066,
+ -9.446403583877379,
+ 11.303271705338327,
+ -9.355422719465798,
+ -10.159020271290364,
+ 10.682506895365046,
+ -8.630290590150485,
+ 2.702917183778445,
+ 0.9925020901446927,
+ -5.338832387235979,
+ 0.06329235517161587,
+ 5.022550679227253,
+ -8.88266825913397,
+ 9.712409351756275,
+ -9.21022048672194,
+ 5.770733889978581,
+ 8.677415717152176,
+ -6.938945447621991,
+ 3.938030413881361,
+ 2.389058422723865,
+ -5.587307366603624,
+ 7.968015036213273,
+ 4.137072476104648,
+ -8.425561882414636,
+ 9.940866236417865,
+ -9.785164732278654,
+ 10.515060870202639,
+ -8.319704005180208,
+ 2.422514229147299e-13,
+ 2.541098841762901e-15,
+ -2.541098841762901e-15,
+ 9.825582188149884e-14,
+ 1.1858461261560205e-14,
+ -2.490276864927643e-13,
+ 5.844527336054672e-14,
+ -3.2780175058741423e-13,
+ 4.658681209898652e-14,
+ -6.098637220230962e-14,
+ 2.1175823681357508e-13,
+ 2.219226321806267e-13,
+ -2.583450489125616e-13,
+ -5.277015261394291e-13,
+ -1.7110065534536867e-13,
+ 6.183340514956392e-14,
+ -6.488272375967941e-13,
+ 3.7692966152816365e-13,
+ -6.708500942254059e-13,
+ 1.2705494208814505e-13,
+ 2.541098841762901e-14,
+ 2.761327408049019e-13,
+ -4.3537493488871037e-13,
+ 1.9651164376299768e-13,
+ 4.667151539371195e-13,
+ -4.472333961502706e-13,
+ -1.2451384324638215e-13,
+ -8.809142651444724e-14,
+ 1.3552527156068805e-14,
+ 2.0498197323554068e-13,
+ -2.0921713797181218e-13,
+ 4.0064658405128406e-13,
+ -4.235164736271502e-14,
+ 3.006966962752766e-13,
+ -1.6093625997831706e-14,
+ -5.929230630780102e-14,
+ -2.464865876510014e-13,
+ -1.5500702934753696e-13,
+ -2.0244087439377778e-13,
+ -1.2281977735187355e-13,
+ 1.0164395367051604e-14,
+ -1.3129010682441655e-13,
+ 2.642742795433417e-13,
+ -1.0418505251227894e-13,
+ 1.9481757786848908e-14,
+ 7.538593230563273e-14,
+ 4.404571325722362e-13,
+ -2.1514636860259229e-13,
+ -2.710505431213761e-13,
+ 1.8888834723770898e-13,
+ 4.743384504624082e-14,
+ -1.1858461261560205e-13,
+ 2.0328790734103208e-14,
+ 2.0667603913004928e-13,
+ -3.9810548520952116e-14,
+ -6.522153693858113e-14,
+ 5.590417451878382e-14,
+ 2.668153783851046e-13,
+ 2.253107639696439e-13,
+ 1.0503208545953324e-13,
+ -1.7194768829262297e-13,
+ -2.710505431213761e-13,
+ 8.588914085158605e-13,
+ 9.317362419797304e-15
+ ],
+ [
+ 9.932056354547129,
+ -9.833887647038527,
+ 6.2819769157517555,
+ -1.9181677075807881,
+ -1.5972105238522984,
+ 4.058117273465421,
+ 0.17447301029612602,
+ -4.64397975495997,
+ 5.935682733573532,
+ -8.115367195244566,
+ 7.444848225800237,
+ -5.922548354742418,
+ -7.450569650586278,
+ 6.284785437516857,
+ -5.076227488624968,
+ 0.12203655911418049,
+ 1.8857899051497098,
+ -5.351396456119759,
+ -1.5950776682268377,
+ 4.659199229311348,
+ -7.182467809192533,
+ 8.601512913803537,
+ -8.08346493655056,
+ 7.841453582277234,
+ 6.257741746340146,
+ -9.308508573534063,
+ 8.3958457227918,
+ -5.92356016559658,
+ 2.934956000775034,
+ 0.1847103508905431,
+ -3.947868892623541,
+ -0.14984727528589428,
+ 2.50382500187304,
+ -6.74251033395061,
+ 7.244119200747446,
+ -7.1792582388242465,
+ -7.15119061579662,
+ 7.265914957061304,
+ -6.835868782931893,
+ 3.126822446190078,
+ -1.427353890033365,
+ -2.6353654206870525,
+ 1.288684541549886,
+ 1.4797119851050429,
+ -4.553381216978485,
+ 7.353885411868771,
+ -10.284634716090538,
+ 9.452574737383971,
+ -3.502481236896532e-13,
+ -1.2959604092990795e-13,
+ -1.0842021724855044e-13,
+ -9.317362419797304e-14,
+ -6.183340514956392e-14,
+ 3.604125190567048e-13,
+ -1.2281977735187355e-14,
+ 3.485540577951446e-13,
+ 2.286988957586611e-14,
+ 0.0,
+ -2.371692252312041e-13,
+ -2.625802136488331e-14,
+ 1.6517142471458857e-13,
+ 3.3373098121819433e-13,
+ -9.740878893424454e-15,
+ -1.2620790914089075e-13,
+ 3.5067164016328034e-13,
+ -2.303929616531697e-13,
+ 3.6845933205562065e-13,
+ -1.9058241313221758e-13,
+ -2.295459287059154e-13,
+ -5.759824041329242e-14,
+ 2.380162581784584e-13,
+ -1.520424140321469e-13,
+ -2.329340604949326e-13,
+ 3.2526065174565133e-13,
+ 1.5500702934753696e-13,
+ 9.656175598699024e-14,
+ -1.4484263398048536e-13,
+ 1.3552527156068805e-14,
+ 1.7364175418713157e-13,
+ -6.437450399132683e-14,
+ -1.181610961419749e-13,
+ -1.147729643529577e-13,
+ -4.912791094074942e-14,
+ 1.4823076576950256e-14,
+ 4.658681209898652e-14,
+ 1.5331296345302836e-13,
+ 3.324604317973129e-13,
+ 3.519421895841618e-13,
+ 1.562775787684184e-13,
+ 1.342547221398066e-13,
+ -1.9820570965750628e-13,
+ -1.2366681029912785e-13,
+ 2.2319318160150814e-13,
+ -1.3806637040245096e-13,
+ -4.0234064994579266e-13,
+ 2.1345230270808369e-13,
+ 1.376428539288238e-13,
+ -9.994988777600744e-14,
+ 5.166900978251232e-14,
+ 2.0328790734103208e-14,
+ -1.7533582008164017e-13,
+ 1.334076891925523e-13,
+ -2.6046263128069735e-13,
+ -2.414043899674756e-13,
+ -8.216219588366713e-14,
+ -1.0587911840678754e-13,
+ -3.015437292225309e-13,
+ -1.2536087619363645e-13,
+ 2.464865876510014e-13,
+ 5.421010862427522e-14,
+ -4.929731753020028e-13,
+ 4.0234064994579266e-14
+ ],
+ [
+ 16.577912032785548,
+ -15.716374491737696,
+ 9.476442184739652,
+ -1.443140750207588,
+ -4.524747620966019,
+ 8.326896247676027,
+ 2.02335625278945,
+ -9.469951399193732,
+ 11.296819924013741,
+ -13.908543331546547,
+ 12.21551864467165,
+ -8.91742051817038,
+ -12.356002558678304,
+ 9.605000303746762,
+ -7.079291688652966,
+ -1.633209541716455,
+ 4.9963692125512535,
+ -10.153126302272387,
+ -4.28876464526351,
+ 9.326300882770363,
+ -13.037581442876384,
+ 14.333684428214825,
+ -14.297888498591574,
+ 13.310910283666976,
+ 11.487378385545219,
+ -15.883717867805823,
+ 13.804486282216482,
+ -8.647404636235994,
+ 3.3131535492892525,
+ 1.9608875233309273,
+ -5.2019493575184095,
+ -2.0334052492452437,
+ 6.143311628640602,
+ -11.96981998890002,
+ 12.245963325569269,
+ -11.277440440977701,
+ -12.172431078713911,
+ 11.546441872308302,
+ -10.241245108719966,
+ 3.346574771133565,
+ -0.3100590788582568,
+ -6.01110231515787,
+ 0.3731294644415185,
+ 4.41963972318696,
+ -9.16594845681067,
+ 12.803128517130196,
+ -17.11072495307884,
+ 15.095052622618212,
+ -5.463362509790237e-13,
+ -1.7618285302889447e-13,
+ -1.3383120566617945e-13,
+ -1.4992483166401116e-13,
+ -8.555032767268433e-14,
+ 5.683591076076355e-13,
+ -3.134021904840911e-14,
+ 5.590417451878382e-13,
+ 1.7787691892340307e-14,
+ 2.795208725939191e-14,
+ -3.8031779331718085e-13,
+ -1.1180834903756764e-13,
+ 3.2017845406212553e-13,
+ 6.005463596032989e-13,
+ 4.573977915173222e-14,
+ -1.9227647902672618e-13,
+ 6.835555884342204e-13,
+ -4.2521053952165877e-13,
+ 7.02190313273815e-13,
+ -3.125551575368368e-13,
+ -3.049318610115481e-13,
+ -1.6686549060909717e-13,
+ 4.3198680309969317e-13,
+ -2.430984558619842e-13,
+ -4.497744949920335e-13,
+ 5.751353711856699e-13,
+ 2.498747194400186e-13,
+ 1.5500702934753696e-13,
+ -2.0328790734103208e-13,
+ -4.1504614415460717e-14,
+ 3.006966962752766e-13,
+ -1.9989977555201488e-13,
+ -1.5754812818929986e-13,
+ -2.278518628114068e-13,
+ -6.437450399132683e-14,
+ 3.3034284942917713e-14,
+ 1.3383120566617945e-13,
+ 2.490276864927643e-13,
+ 5.13301966036106e-13,
+ 4.87890977618477e-13,
+ 2.1768746744435519e-13,
+ 2.1260526976082939e-13,
+ -3.2187251995663413e-13,
+ -1.1434944787933055e-13,
+ 2.947674656444965e-13,
+ -1.9142944607947188e-13,
+ -6.844026213814747e-13,
+ 3.4304834363799164e-13,
+ 2.685094442796132e-13,
+ -2.0159384144652348e-13,
+ 6.098637220230962e-14,
+ 6.776263578034403e-14,
+ -2.591920818598159e-13,
+ 1.2620790914089075e-13,
+ -3.3203691532368573e-13,
+ -2.930733997499879e-13,
+ -1.2790197503539935e-13,
+ -2.286988957586611e-13,
+ -4.921261423547485e-13,
+ -2.0752307207730358e-13,
+ 3.7777669447541795e-13,
+ 1.6601845766184287e-13,
+ -9.156426159818987e-13,
+ 5.675120746603812e-14
+ ],
+ [
+ 9.959014235712749,
+ -9.091200151589382,
+ 5.186346996535924,
+ 0.015848411993386987,
+ -3.6513165657269515,
+ 5.782102472077393,
+ 2.085060426223474,
+ -6.55168841911745,
+ 7.483934624281186,
+ -8.537610309609347,
+ 7.2324811867383145,
+ -4.871059105662515,
+ -7.382594055233599,
+ 5.32577325084728,
+ -3.553212546395627,
+ -1.9032781795279432,
+ 3.929614451675828,
+ -6.712312788819301,
+ -3.392885861381946,
+ 6.380549068596873,
+ -8.35885269565434,
+ 8.599082743138013,
+ -8.255811478964493,
+ 8.108087776618762,
+ 7.4242129430548225,
+ -9.715963627697334,
+ 8.187842233550532,
+ -4.57245113261241,
+ 1.1943316117072913,
+ 2.007595044705538,
+ -2.428448588540749,
+ -2.1167647745976876,
+ 4.676528473732262,
+ -7.550028453336998,
+ 7.434248929778018,
+ -6.4205474463646075,
+ -7.431016426432395,
+ 6.644588835304161,
+ -5.565616292008064,
+ 1.0704059367649634,
+ 0.8541031629314282,
+ -4.420514942450768,
+ -0.6683468309491495,
+ 3.6338872596834557,
+ -6.292375877228481,
+ 7.95667515023603,
+ -10.251129453361749,
+ 8.725558985983575,
+ -3.1424922343134543e-13,
+ -8.385626177817573e-14,
+ -5.421010862427522e-14,
+ -8.978549240895584e-14,
+ -4.573977915173222e-14,
+ 3.2864878353466853e-13,
+ -2.625802136488331e-14,
+ 3.3203691532368573e-13,
+ 5.082197683525802e-15,
+ 3.049318610115481e-14,
+ -2.1599340154984659e-13,
+ -1.0418505251227894e-13,
+ 2.1684043449710089e-13,
+ 3.8031779331718085e-13,
+ 5.675120746603812e-14,
+ -1.1180834903756764e-13,
+ 4.684092198316281e-13,
+ -2.761327408049019e-13,
+ 4.667151539371195e-13,
+ -1.8380614955418317e-13,
+ -1.5585406229479126e-13,
+ -1.2959604092990795e-13,
+ 2.82061971435682e-13,
+ -1.3552527156068805e-13,
+ -2.981555974335137e-13,
+ 3.5829493668856904e-13,
+ 1.4907779871675686e-13,
+ 8.639736061993863e-14,
+ -1.0503208545953324e-13,
+ -5.929230630780102e-14,
+ 1.8719428134320037e-13,
+ -1.6432439176733427e-13,
+ -8.046812998915853e-14,
+ -1.5754812818929986e-13,
+ -2.879912020664621e-14,
+ 2.541098841762901e-14,
+ 1.0333801956502464e-13,
+ 1.5077186461126546e-13,
+ 2.896852679609707e-13,
+ 2.39710324072967e-13,
+ 1.0672615135404184e-13,
+ 1.2281977735187355e-13,
+ -1.9651164376299768e-13,
+ -2.456395547037471e-14,
+ 1.3298417271892515e-13,
+ -1.0587911840678754e-13,
+ -4.2182240773264157e-13,
+ 1.9481757786848908e-13,
+ 1.8973538018496328e-13,
+ -1.3891340334970526e-13,
+ 1.9481757786848908e-14,
+ 6.268043809681823e-14,
+ -1.3213713977167085e-13,
+ 2.456395547037471e-14,
+ -1.5500702934753696e-13,
+ -1.1773757966834775e-13,
+ -7.284483346386983e-14,
+ -1.6263032587282567e-13,
+ -2.947674656444965e-13,
+ -1.1858461261560205e-13,
+ 2.185345003916095e-13,
+ 1.3637230450794235e-13,
+ -5.954641619197731e-13,
+ 3.3034284942917713e-14
+ ],
+ [
+ -7.7614125811599015,
+ 8.451083798136711,
+ -6.994930435344137,
+ 5.144130154370055,
+ -3.2787642325466697,
+ 0.04413029840232475,
+ 3.4570962000316903,
+ -0.6012397441607643,
+ -1.7736448001972482,
+ 5.6232415488524214,
+ -6.965086129793938,
+ 6.65909163033211,
+ 6.023524613531978,
+ -7.447545926970577,
+ 6.866935825529073,
+ -3.8760345214607166,
+ 1.6437517762174485,
+ 1.692768754342561,
+ -2.088751414796413,
+ -1.1481042871766067,
+ 3.4763126940073312,
+ -6.780555527235962,
+ 7.704833634539084,
+ -5.662334220430059,
+ -2.731554408284933,
+ 5.88024608075584,
+ -6.994330675703613,
+ 7.206342284843418,
+ -6.2619265924136185,
+ 3.2820936058174155,
+ 5.972265627368701,
+ -4.255133543153986,
+ 2.1035759217856014,
+ 3.8199029268762095,
+ -6.052866520076937,
+ 7.1001379416268255,
+ 5.136631352839512,
+ -7.586933042906638,
+ 7.777590588362194,
+ -6.298625780326014,
+ 4.6957126749139375,
+ -1.2389760881725929,
+ -4.655959940661444,
+ 2.1643861888212106,
+ 0.35377307430330446,
+ -4.66441976030266,
+ 7.4804634901204805,
+ -8.793142931022736,
+ 3.305810774455924e-13,
+ 1.6604492744144456e-13,
+ 1.8507669897506462e-13,
+ 8.298275905131974e-14,
+ 4.187519132988447e-14,
+ -2.7827679295263936e-13,
+ -3.602537003790946e-14,
+ -2.849207076326653e-13,
+ -4.0339944112986054e-14,
+ 8.645030017914203e-14,
+ 2.2290201402588947e-13,
+ -1.3277241448211158e-13,
+ 8.020343219314156e-15,
+ -1.8917951481332764e-13,
+ 1.4132215329345967e-13,
+ 8.782672871843027e-14,
+ 2.930204601907845e-14,
+ 7.173310272059856e-14,
+ -9.290892640195607e-14,
+ 9.571472303973594e-14,
+ 2.7671507595613924e-13,
+ -5.976876234063157e-14,
+ -1.827473583701153e-13,
+ 2.3314581873174617e-13,
+ 7.692117952253115e-14,
+ -1.937587866844212e-13,
+ -1.155935275206103e-13,
+ -8.4967992521447e-14,
+ 1.5363060080824872e-13,
+ -8.846200342887099e-14,
+ -6.71273610699033e-14,
+ -9.648234664818515e-14,
+ 1.1577881597782218e-13,
+ 4.608388628655428e-14,
+ 1.0119396741728719e-13,
+ -1.691418916548431e-14,
+ 3.9889957859757207e-14,
+ -1.257843926672636e-13,
+ -2.908499382634454e-13,
+ -5.029522822118425e-13,
+ -1.8830601208647164e-13,
+ -1.0868491504456741e-13,
+ 2.296518078243222e-13,
+ 3.3203691532368573e-13,
+ -3.290193604490923e-13,
+ 1.5021599923962983e-13,
+ 2.3841330487248385e-13,
+ -2.318752693108647e-13,
+ -1.6728900708272432e-14,
+ -3.782531505082485e-14,
+ -9.282951706315098e-14,
+ 8.949432483333717e-14,
+ 1.7713576509455556e-13,
+ -2.7660919683773245e-13,
+ 3.713180682526039e-13,
+ 4.351367068722951e-13,
+ 8.92560968169219e-14,
+ -4.613682584575767e-14,
+ 1.8425613580741202e-13,
+ 1.1374064294849152e-13,
+ -2.1789922568116876e-13,
+ 1.4052805990540877e-13,
+ 2.3510458242227174e-13,
+ -3.679299364635867e-15
+ ],
+ [
+ -14.082423932747469,
+ 14.499584374280174,
+ -11.398320123401067,
+ 7.078547719140101,
+ -3.5054834615566346,
+ -1.9114662389731567,
+ 4.051152120267568,
+ 1.172277094124753,
+ -4.998438876320236,
+ 10.665283721388745,
+ -12.303921456785773,
+ 10.838777659383215,
+ 10.823454724096443,
+ -12.315485455956152,
+ 10.671387193798502,
+ -4.67959635287683,
+ 0.6753214099409397,
+ 4.633332594778526,
+ -1.707504295029846,
+ -4.006139127882841,
+ 7.64937487749828,
+ -12.271838292734143,
+ 13.188133947867184,
+ -10.4095038159829,
+ -6.2926720185922616,
+ 11.17374213672822,
+ -12.422279392105333,
+ 11.484788942975655,
+ -9.267729231452476,
+ 3.8358292448087763,
+ 9.055861115654901,
+ -5.373679345298974,
+ 1.2991043231213428,
+ 7.845570492570896,
+ -11.11725696034333,
+ 11.975252404026499,
+ 9.619441549358752,
+ -12.95775953272699,
+ 12.61191237391706,
+ -9.02946877766647,
+ 5.926116007685841,
+ -0.18435142987766376,
+ -6.171258473174988,
+ 1.4909156478722545,
+ 2.6460653055743655,
+ -9.139760512222072,
+ 13.56102856055247,
+ -15.079906429462888,
+ 5.530066354386513e-13,
+ 2.51674664452934e-13,
+ 2.7570922433127476e-13,
+ 1.478072492958754e-13,
+ 6.490389958336076e-14,
+ -4.776207031330186e-13,
+ -4.1504614415460717e-14,
+ -5.043022409715291e-13,
+ -5.304543832180056e-14,
+ 1.1519648082658485e-13,
+ 3.8190598009328267e-13,
+ -1.5140713932170619e-13,
+ -4.743384504624082e-14,
+ -3.970466940254533e-13,
+ 1.768181277393352e-13,
+ 1.5013658990082474e-13,
+ -9.677351422380381e-14,
+ 1.8910010547452255e-13,
+ -2.8619125705354673e-13,
+ 1.7194768829262297e-13,
+ 4.3029273720518457e-13,
+ -3.885763645529103e-14,
+ -3.703651561869428e-13,
+ 3.9217625457874106e-13,
+ 2.1556988507621944e-13,
+ -3.8730581513202883e-13,
+ -2.030761491042185e-13,
+ -1.4336032632279033e-13,
+ 2.3494576374466156e-13,
+ -8.946785505373547e-14,
+ -1.4674845811180753e-13,
+ -6.479802046495398e-14,
+ 1.7099477622696188e-13,
+ 1.326665353637048e-13,
+ 1.4971307342719758e-13,
+ -3.758708703440958e-14,
+ 9.317362419797304e-15,
+ -2.261577969168982e-13,
+ -4.85879274368748e-13,
+ -7.831878388550075e-13,
+ -2.8269724614612274e-13,
+ -1.9418230315804835e-13,
+ 4.062581773268438e-13,
+ 4.855616370135277e-13,
+ -4.937143291308503e-13,
+ 2.455336755853403e-13,
+ 4.563390003332543e-13,
+ -3.9217625457874106e-13,
+ -8.745615180400651e-14,
+ -1.937587866844212e-14,
+ -1.2949016181150116e-13,
+ 1.0990252490624547e-13,
+ 2.6914471899005393e-13,
+ -3.721651011998582e-13,
+ 5.562888881092617e-13,
+ 6.417333366635393e-13,
+ 1.4812488665109577e-13,
+ -1.6517142471458857e-14,
+ 3.321427944420925e-13,
+ 1.9058241313221758e-13,
+ -3.6676526616111205e-13,
+ 1.554305458211641e-13,
+ 5.381835588617011e-13,
+ -5.717472393966527e-15
+ ],
+ [
+ -14.723037880117658,
+ 12.624564788619075,
+ -7.986995044665598,
+ 0.5488219112911173,
+ 3.7595694568966986,
+ -8.049521749528417,
+ -2.5142481434402124,
+ 8.10205391082762,
+ -10.635131194236987,
+ 12.555378723592042,
+ -11.849910656822267,
+ 7.5533373453529125,
+ 10.994598980624904,
+ -9.237367879128632,
+ 5.7239003459345135,
+ 2.2573249432015987,
+ -6.3039526203269665,
+ 9.589938510649679,
+ 4.541874083085062,
+ -10.031245020914957,
+ 12.07458959450884,
+ -12.736189434594316,
+ 11.382761923782498,
+ -6.285828504394753,
+ -10.639755846772317,
+ 13.215020604185142,
+ -12.17204743919394,
+ 7.174625236157367,
+ -3.3268812731004096,
+ -2.428827289049037,
+ 4.058513248772379,
+ 1.5127063014115385,
+ -6.291464625436069,
+ 10.981642376415172,
+ -12.032699566168148,
+ 9.763125838596347,
+ 10.966915152744225,
+ -11.091918132211726,
+ 8.62842891243883,
+ -2.1515276748744996,
+ -1.6854984121530348,
+ 6.0775208006123105,
+ 0.4652053920859259,
+ -5.843371553411282,
+ 8.855935002417942,
+ -11.611217818605558,
+ 14.142563579820782,
+ -13.108794058895489,
+ 4.341043854678289e-13,
+ 1.1180834903756764e-13,
+ 1.0545560193316039e-13,
+ 1.444191175068582e-13,
+ 3.6422416731934915e-14,
+ -4.197048253645058e-13,
+ 3.049318610115481e-14,
+ -4.874674611448498e-13,
+ 8.470329472543003e-15,
+ -3.3881317890172014e-15,
+ 3.2864878353466853e-13,
+ 1.1434944787933055e-13,
+ -2.3674570875757694e-13,
+ -5.793705359219414e-13,
+ -5.590417451878382e-14,
+ 1.2874900798265365e-13,
+ -5.55653613398821e-13,
+ 3.773531780017908e-13,
+ -6.547564682275742e-13,
+ 1.7533582008164017e-13,
+ 2.3081647812679684e-13,
+ 1.6983010592448722e-13,
+ -5.04831636563563e-13,
+ 3.146727399049726e-13,
+ 4.573977915173222e-13,
+ -5.145725154569875e-13,
+ -1.9354702844760763e-13,
+ -1.2112571145736495e-13,
+ 1.139259314057034e-13,
+ 1.2197274440461925e-13,
+ -2.286988957586611e-13,
+ 2.6723889485873176e-13,
+ 6.013933925505532e-14,
+ 2.8841471854008927e-13,
+ 5.421010862427522e-14,
+ -6.352747104407253e-14,
+ -1.8295911660692887e-13,
+ -2.329340604949326e-13,
+ -3.824353756853166e-13,
+ -4.2775163836342167e-13,
+ -1.1519648082658485e-13,
+ -1.9397054492123478e-13,
+ 3.9387032047324966e-13,
+ 1.528894469794012e-13,
+ -2.0159384144652348e-13,
+ 1.7533582008164017e-13,
+ 5.484538333471595e-13,
+ -3.248371352720242e-13,
+ -2.634272465960874e-13,
+ 1.2959604092990795e-13,
+ -1.7364175418713157e-14,
+ -4.404571325722362e-14,
+ 1.2366681029912785e-13,
+ 5.082197683525802e-15,
+ 2.270048298641525e-13,
+ 2.244637310223896e-13,
+ 1.1180834903756764e-13,
+ 1.8507669897506462e-13,
+ 3.4220131069073734e-13,
+ 1.537364799266555e-13,
+ -2.9434394917086937e-13,
+ -1.401839527705867e-13,
+ 8.999725064576941e-13,
+ -5.929230630780102e-15
+ ],
+ [
+ -8.351924043576911,
+ 6.721768214059987,
+ -3.8489518592333964,
+ -0.877439405034299,
+ 3.4208303348667646,
+ -5.616105442194721,
+ -2.5973199629642454,
+ 5.789098022910996,
+ -6.9714917012304785,
+ 7.366031874950674,
+ -6.546212781007255,
+ 3.629208524121984,
+ 6.181165071818757,
+ -4.608826631865376,
+ 2.304383009478792,
+ 2.520994137871761,
+ -4.79226953482775,
+ 6.263473611997329,
+ 3.6742028575905907,
+ -6.704151374017323,
+ 7.556939193653672,
+ -7.208555055541329,
+ 6.039766324600801,
+ -2.7681447927368223,
+ -5.831479062837836,
+ 7.762438994848897,
+ -6.763367825416153,
+ 3.2314895288000143,
+ -0.7833636652123354,
+ -2.494985155078893,
+ 1.363760168756251,
+ 2.09530072501122,
+ -4.89616332912092,
+ 6.711730456665702,
+ -6.896867986389344,
+ 5.0600024815111695,
+ 6.379055676676,
+ -5.866115270940857,
+ 4.103970272133999,
+ 0.04408690429788546,
+ -2.323515850578134,
+ 4.535473943685633,
+ 1.4640241074386626,
+ -4.59902773940194,
+ 6.08022081823239,
+ -6.9433445708329105,
+ 8.016499581097206,
+ -6.975208614812388,
+ 2.202285662861181e-13,
+ 3.3457801416544863e-14,
+ 2.964615315390051e-14,
+ 7.877406409464993e-14,
+ 1.4823076576950256e-14,
+ -2.2658131339052534e-13,
+ 2.922263668027336e-14,
+ -2.676624113323589e-13,
+ 1.5246593050577406e-14,
+ -2.456395547037471e-14,
+ 1.7237120476625012e-13,
+ 1.1011428314305904e-13,
+ -1.6644197413547002e-13,
+ -3.5744790374131474e-13,
+ -7.580944877925988e-14,
+ 6.988021814847978e-14,
+ -3.942938369468768e-13,
+ 2.4606307117737425e-13,
+ -4.3029273720518457e-13,
+ 9.783230540787169e-14,
+ 9.529120656610879e-14,
+ 1.3383120566617945e-13,
+ -3.057788939588024e-13,
+ 1.6517142471458857e-13,
+ 3.032377951170395e-13,
+ -3.1509625637859973e-13,
+ -1.0545560193316039e-13,
+ -6.479802046495398e-14,
+ 4.489274620447792e-14,
+ 1.0714966782766899e-13,
+ -1.4060746924421386e-13,
+ 2.1218175328720223e-13,
+ 1.5246593050577406e-14,
+ 1.9058241313221758e-13,
+ 1.2705494208814505e-14,
+ -3.8963515573697816e-14,
+ -1.376428539288238e-13,
+ -1.308665903507894e-13,
+ -1.9354702844760763e-13,
+ -1.7491230360801302e-13,
+ -3.3034284942917713e-14,
+ -1.105377996166862e-13,
+ 2.1726395097072804e-13,
+ 2.414043899674756e-14,
+ -5.717472393966527e-14,
+ 8.470329472543003e-14,
+ 3.2526065174565133e-13,
+ -1.6855955650360577e-13,
+ -1.7914746834428452e-13,
+ 1.0249098661777034e-13,
+ 1.2705494208814505e-14,
+ -4.828087799349512e-14,
+ 4.404571325722362e-14,
+ 7.157428404298838e-14,
+ 6.691560283308973e-14,
+ 5.124549330888517e-14,
+ 5.590417451878382e-14,
+ 1.4230153513872246e-13,
+ 1.9227647902672618e-13,
+ 7.962109704190423e-14,
+ -1.511953810848926e-13,
+ -1.3044307387716225e-13,
+ 5.675120746603812e-13,
+ -3.8116482626443515e-15
+ ],
+ [
+ 10.06425466382831,
+ -11.210024566247403,
+ 8.31723872280066,
+ -5.3466208955052466,
+ 2.0823824280789704,
+ 1.106934120997286,
+ -3.175506364379938,
+ -1.277257011201276,
+ 3.3284491445267927,
+ -7.526299787291497,
+ 8.061584191560778,
+ -7.878459358534498,
+ -7.7099805841135,
+ 8.18943717511125,
+ -7.842293861166291,
+ 3.674079655181117,
+ -1.5563631391132786,
+ -3.06643321583549,
+ 1.5253126369649261,
+ 1.833702549380525,
+ -5.25386275260604,
+ 8.762844769923797,
+ -10.2644523373705,
+ 7.648668095867363,
+ 8.588158631323408,
+ -8.657564071022087,
+ 8.912520550860918,
+ -8.402675867367854,
+ 6.147542804013391,
+ -3.0108613626145644,
+ -6.687172765597464,
+ 3.4031892344654713,
+ -1.2618441722534062,
+ -5.452662174078968,
+ 7.151277123829573,
+ -8.644568038253613,
+ -6.795235993970458,
+ 8.59610643162578,
+ -9.190459204441593,
+ 6.787857481523666,
+ -5.346275198152212,
+ 0.44281663346817535,
+ 4.7405475830642505,
+ -2.1624667497084054,
+ -1.5904502471388935,
+ 6.431072882103348,
+ -10.42567303999302,
+ 10.897877086547814,
+ -4.349514184150832e-13,
+ -2.0328790734103208e-13,
+ -2.0371142381465923e-13,
+ -9.613823951336309e-14,
+ -6.818615225397118e-14,
+ 3.9556438636775826e-13,
+ 3.049318610115481e-14,
+ 3.6761229910836635e-13,
+ 5.293955920339377e-14,
+ -6.733911930671688e-14,
+ -2.752857078576476e-13,
+ 9.486769009248164e-14,
+ 7.919758056827708e-14,
+ 2.600391148070702e-13,
+ -1.3467823861343375e-13,
+ -1.300195574035351e-13,
+ 1.2112571145736495e-13,
+ -1.3976043629695956e-13,
+ 2.0244087439377778e-13,
+ -1.9989977555201488e-13,
+ -3.2864878353466853e-13,
+ 3.9810548520952116e-14,
+ 1.8677076486957322e-13,
+ -2.0625252265642213e-13,
+ -1.0545560193316039e-13,
+ 2.7147405959500326e-13,
+ 1.6517142471458857e-13,
+ 1.096907666694319e-13,
+ -2.0625252265642213e-13,
+ 1.0926725019580474e-13,
+ 1.384898868760781e-13,
+ 1.0291450309139749e-13,
+ -1.7702988597614877e-13,
+ -3.5575383784680614e-14,
+ -1.0291450309139749e-13,
+ 6.3527471044072525e-15,
+ -4.531626267810507e-14,
+ 1.6347735882007997e-13,
+ 4.053052652611827e-13,
+ 5.44218668610888e-13,
+ 2.574980159653073e-13,
+ 1.3044307387716225e-13,
+ -2.185345003916095e-13,
+ -3.108610916423282e-13,
+ 3.89211639263351e-13,
+ -1.7364175418713157e-13,
+ -3.72270980318265e-13,
+ 2.6385076306971456e-13,
+ 5.166900978251232e-14,
+ -2.244637310223896e-14,
+ 1.181610961419749e-13,
+ -5.124549330888517e-14,
+ -2.5707449949168015e-13,
+ 3.265312011665328e-13,
+ -4.3452790194145607e-13,
+ -4.688327363052552e-13,
+ -1.0418505251227894e-13,
+ -4.2351647362715017e-16,
+ -3.100140586950739e-13,
+ -1.5712461171567271e-13,
+ 2.9942614685439517e-13,
+ -8.470329472543003e-14,
+ -3.400837283226016e-13,
+ 3.5151867311053464e-14
+ ],
+ [
+ 15.968651756596765,
+ -17.16498691349769,
+ 12.20043455216111,
+ -6.745991113598846,
+ 1.4006127216515238,
+ 3.2905225703379344,
+ -3.3269305140707157,
+ -3.790875102546235,
+ 6.652271249608282,
+ -12.296943604748611,
+ 12.51204082080295,
+ -11.541685730924096,
+ -12.150647995747864,
+ 12.049661957439177,
+ -11.065200315752787,
+ 4.0174768920759725,
+ -0.714110453907103,
+ -6.067483737621753,
+ 0.8169883593635031,
+ 4.368734685472205,
+ -9.368793944027628,
+ 13.879611023679251,
+ -15.697380607650597,
+ 10.970700949363872,
+ 13.20398503692218,
+ -13.971320587131597,
+ 13.934508224670605,
+ -12.106681541779425,
+ 8.119746494055951,
+ -3.1444986514214404,
+ -9.238408222833623,
+ 3.5707070686619797,
+ -0.06281642419427286,
+ -9.355198897006929,
+ 11.428542145225006,
+ -13.016198919344776,
+ -11.011336443193294,
+ 12.994814324638524,
+ -13.426291075090258,
+ 8.922774252983624,
+ -6.506569023608988,
+ -0.8859349947702638,
+ 5.768877883620891,
+ -1.5765637232023901,
+ -4.066306652630491,
+ 10.72482195268578,
+ -16.55394756565086,
+ 16.617857540044998,
+ -6.462861387550312e-13,
+ -2.82061971435682e-13,
+ -2.744386749103933e-13,
+ -1.4823076576950256e-13,
+ -1.0333801956502464e-13,
+ 6.140988867593677e-13,
+ 2.795208725939191e-14,
+ 5.72594272343907e-13,
+ 7.030373462210693e-14,
+ -7.199780051661553e-14,
+ -4.1081097941833566e-13,
+ 7.962109704190423e-14,
+ 1.7618285302889447e-13,
+ 4.54009659728305e-13,
+ -1.5161889755851976e-13,
+ -2.0159384144652348e-13,
+ 3.108610916423282e-13,
+ -2.659683454378503e-13,
+ 4.1335207826009857e-13,
+ -3.117081245895825e-13,
+ -4.692562527788824e-13,
+ 1.3552527156068805e-14,
+ 3.3118988237643143e-13,
+ -2.947674656444965e-13,
+ -2.329340604949326e-13,
+ 4.633270221481023e-13,
+ 2.558039500707987e-13,
+ 1.6432439176733427e-13,
+ -2.956144985917508e-13,
+ 1.1689054672109345e-13,
+ 2.422514229147299e-13,
+ 8.046812998915853e-14,
+ -2.583450489125616e-13,
+ -9.825582188149884e-14,
+ -1.3806637040245096e-13,
+ 1.4399560103323106e-14,
+ -2.625802136488331e-14,
+ 2.558039500707987e-13,
+ 6.090166890758419e-13,
+ 7.691059161069047e-13,
+ 3.6083603553033194e-13,
+ 2.0413494028828638e-13,
+ -3.3881317890172014e-13,
+ -3.8878812278972386e-13,
+ 5.404070203482436e-13,
+ -2.507217523872729e-13,
+ -6.115577879176048e-13,
+ 3.9641141931501256e-13,
+ 1.3298417271892515e-13,
+ -7.369186641112413e-14,
+ 1.5670109524204556e-13,
+ -4.658681209898652e-14,
+ -3.7184746384463785e-13,
+ 4.3029273720518457e-13,
+ -6.056285572868247e-13,
+ -6.318865786517081e-13,
+ -1.5415999640028266e-13,
+ -5.759824041329242e-14,
+ -4.938202082492571e-13,
+ -2.363221922839498e-13,
+ 4.45539330255762e-13,
+ -6.352747104407253e-14,
+ -6.23416249179165e-13,
+ 5.929230630780102e-14
+ ],
+ [
+ 9.172215105954997,
+ -9.531354828500032,
+ 6.482086416174173,
+ -2.9580836156892647,
+ -0.19988310330304912,
+ 2.699582161325628,
+ -1.007817761081399,
+ -3.108389691036104,
+ 4.544489865945863,
+ -7.250650149101084,
+ 7.039548920514233,
+ -6.123469793583644,
+ -6.935639176556625,
+ 6.422936599109284,
+ -5.628633723993231,
+ 1.3514154496596875,
+ 0.5160653276613605,
+ -4.119389733700031,
+ -0.37668146200566116,
+ 3.2793672299186056,
+ -5.926228178567946,
+ 7.959559624952422,
+ -8.705635586571983,
+ 5.686600351005233,
+ 7.361233706218999,
+ -7.411180844579734,
+ 7.894745082225719,
+ -6.3072340503427435,
+ 3.8014901831719623,
+ -0.9446141970015128,
+ -4.582512873236459,
+ 1.0858586525590723,
+ 0.9872371218210256,
+ -5.744803065683244,
+ 6.6076135556759485,
+ -7.107054704602073,
+ -6.445909998970504,
+ 7.124071157582547,
+ -7.101959192996411,
+ 4.150367968821394,
+ -2.69450559182914,
+ -1.3470962832841782,
+ 2.3886745696429585,
+ 0.07304428041809259,
+ -3.1497242044981153,
+ 6.4350450732128675,
+ -9.514642776126196,
+ 9.189737329038534,
+ -3.5236570605778894e-13,
+ -1.4568966692773966e-13,
+ -1.300195574035351e-13,
+ -8.470329472543003e-14,
+ -5.421010862427522e-14,
+ 3.400837283226016e-13,
+ 8.046812998915853e-15,
+ 3.2017845406212553e-13,
+ 2.922263668027336e-14,
+ -2.795208725939191e-14,
+ -2.329340604949326e-13,
+ 1.5670109524204556e-14,
+ 1.3467823861343375e-13,
+ 2.8587361969832636e-13,
+ -5.929230630780102e-14,
+ -1.105377996166862e-13,
+ 2.371692252312041e-13,
+ -1.7660636950252162e-13,
+ 2.8248548790930916e-13,
+ -1.8041801776516597e-13,
+ -2.4436900528286565e-13,
+ -2.456395547037471e-14,
+ 2.0582900618279498e-13,
+ -1.6474790824096142e-13,
+ -1.7194768829262297e-13,
+ 2.812149384884277e-13,
+ 1.452661504541125e-13,
+ 8.724439356719293e-14,
+ -1.6220680939919851e-13,
+ 3.134021904840911e-14,
+ 1.5161889755851976e-13,
+ 4.658681209898652e-15,
+ -1.266314256145179e-13,
+ -7.496241583200558e-14,
+ -6.988021814847978e-14,
+ 1.1011428314305904e-14,
+ 1.0587911840678754e-14,
+ 1.5161889755851976e-13,
+ 3.239901023247699e-13,
+ 3.858235074743338e-13,
+ 1.8168856718604742e-13,
+ 1.1265538198482195e-13,
+ -1.8295911660692887e-13,
+ -1.7364175418713157e-13,
+ 2.659683454378503e-13,
+ -1.32560656245298e-13,
+ -3.6507120026660345e-13,
+ 2.1472285212896514e-13,
+ 9.952637130238029e-14,
+ -6.606856988583543e-14,
+ 7.157428404298838e-14,
+ -8.470329472543003e-15,
+ -1.9524109434211623e-13,
+ 1.9608812728937053e-13,
+ -2.964615315390051e-13,
+ -3.006966962752766e-13,
+ -8.512681119905718e-14,
+ -6.564505341220828e-14,
+ -2.812149384884277e-13,
+ -1.2536087619363645e-13,
+ 2.430984558619842e-13,
+ -1.6940658945086007e-15,
+ -4.002230675776569e-13,
+ 3.3457801416544863e-14
+ ],
+ [
+ -9.79075566904309,
+ 11.52128259673453,
+ -10.176674298208672,
+ 8.84796140582249,
+ -6.704002623904743,
+ 2.1387767697344136,
+ 6.6847488836793865,
+ -3.137611364142711,
+ -0.37541941459427974,
+ 6.6104561667125585,
+ -9.147793463422445,
+ 9.701453385747184,
+ 7.709683099624721,
+ -10.659819783871521,
+ 10.532979166902049,
+ -7.350438538166252,
+ 4.474169653638181,
+ 0.502280638225987,
+ -4.812439128306497,
+ 0.5504605055642525,
+ 2.9822705529773312,
+ -8.585949436762965,
+ 10.535444948330323,
+ -9.871498639142468,
+ -9.238924538151894,
+ 11.025165448506531,
+ -9.103789325790725,
+ 10.75438890174061,
+ -10.10165741345085,
+ 6.357043962867159,
+ 9.396241355700454,
+ -7.83458664173819,
+ 5.286911599831109,
+ 3.862512335909604,
+ -7.507059229177957,
+ 9.906162618892582,
+ 6.167113467504403,
+ -10.428408038394116,
+ 11.380286088679988,
+ -10.454284354193886,
+ 8.62402630286751,
+ -3.7207870329302066,
+ -8.254045245193062,
+ 5.265814053043833,
+ -1.6494059707024247,
+ -5.176537839827455,
+ 9.436611796355018,
+ -12.00684928452599,
+ 4.696797692525095e-13,
+ 2.558039500707987e-13,
+ 3.0874350927419247e-13,
+ 9.444417361885449e-14,
+ 6.691560283308973e-14,
+ -3.7947076036992655e-13,
+ -7.707999820014133e-14,
+ -3.875175733688424e-13,
+ -7.538593230563273e-14,
+ 1.4230153513872246e-13,
+ 2.8587361969832636e-13,
+ -2.473336205982557e-13,
+ 8.682087709356578e-14,
+ -1.7787691892340307e-13,
+ 2.6639186191147746e-13,
+ 1.1604351377383915e-13,
+ 1.8465318250143747e-13,
+ 2.498747194400186e-14,
+ -1.5246593050577406e-14,
+ 1.207021949837378e-13,
+ 4.180107594699972e-13,
+ -1.554305458211641e-13,
+ -1.9100592960584473e-13,
+ 3.040848280642938e-13,
+ -1.6940658945086007e-14,
+ -2.0117032497289633e-13,
+ -1.537364799266555e-13,
+ -1.215492279309921e-13,
+ 1.9312351197398048e-13,
+ -1.9608812728937053e-13,
+ -6.818615225397118e-14,
+ -2.270048298641525e-13,
+ 1.9693516023662483e-13,
+ 7.199780051661553e-15,
+ 1.4992483166401116e-13,
+ -1.1011428314305904e-14,
+ 1.274784585617722e-13,
+ -1.6008922703106276e-13,
+ -4.341043854678289e-13,
+ -7.919758056827708e-13,
+ -3.0874350927419247e-13,
+ -1.528894469794012e-13,
+ 3.248371352720242e-13,
+ 5.522654816098038e-13,
+ -5.450657015581423e-13,
+ 2.1260526976082939e-13,
+ 2.7232109254225756e-13,
+ -3.2187251995663413e-13,
+ 2.795208725939191e-14,
+ -1.113848325639405e-13,
+ -1.7957098481791167e-13,
+ 1.4823076576950256e-13,
+ 2.7909735612029196e-13,
+ -4.845028458294598e-13,
+ 5.933465795516374e-13,
+ 7.026138297474421e-13,
+ 1.113848325639405e-13,
+ -1.5500702934753696e-13,
+ 2.371692252312041e-13,
+ 1.6559494118821572e-13,
+ -3.2187251995663413e-13,
+ 2.5199230180815435e-13,
+ 1.9142944607947188e-13,
+ -1.6940658945086007e-15
+ ],
+ [
+ -9.990853238217452,
+ 11.101233265048744,
+ -9.360293584346564,
+ 7.24271923444589,
+ -4.900483690990239,
+ 0.6051544843641387,
+ 5.061873447156714,
+ -1.404117268090245,
+ -1.7930456155404702,
+ 7.111527606961685,
+ -9.065074289439547,
+ 8.914582548869312,
+ 7.783244583110018,
+ -9.923893110621146,
+ 9.331932236385894,
+ -5.637098525964067,
+ 2.743744115929304,
+ 1.7493449386170912,
+ -3.261766511381695,
+ -0.9558820555508796,
+ 4.105761734589272,
+ -8.736867172395346,
+ 10.128934174530217,
+ -8.87498550778555,
+ -8.993231305700352,
+ 10.038056591738583,
+ -8.52072849767346,
+ 9.7143854966266,
+ -8.644376224831106,
+ 4.808436681911303,
+ 8.178125201495574,
+ -6.130715439460871,
+ 3.4009743846206333,
+ 4.665648650768859,
+ -7.761843807849693,
+ 9.389762232092544,
+ 6.530047307692097,
+ -9.996126640059448,
+ 10.42482277088547,
+ -8.768166598861736,
+ 6.751318470052712,
+ -2.1626679645956965,
+ -6.619877279361217,
+ 3.4494006831532484,
+ -0.09605245058560566,
+ -5.818096532945623,
+ 9.625387543724477,
+ -11.559663342743848,
+ 4.419394402299312e-13,
+ 2.253107639696439e-13,
+ 2.602508730438838e-13,
+ 9.677351422380381e-14,
+ 6.352747104407253e-14,
+ -3.6083603553033194e-13,
+ -6.056285572868247e-14,
+ -3.809530680276216e-13,
+ -5.484538333471595e-14,
+ 1.2049043674692422e-13,
+ 2.80579663777987e-13,
+ -1.861354901591325e-13,
+ 3.494010907423989e-14,
+ -2.2827537928503394e-13,
+ 2.1112296210313436e-13,
+ 1.0947900843261832e-13,
+ 6.96684599116662e-14,
+ 6.945670167485263e-14,
+ -1.0587911840678754e-13,
+ 1.2451384324638215e-13,
+ 3.7078867266056997e-13,
+ -1.0143219543370247e-13,
+ -2.278518628114068e-13,
+ 2.922263668027336e-13,
+ 5.378659215064807e-14,
+ -2.320870275476783e-13,
+ -1.5013658990082474e-13,
+ -1.1519648082658485e-13,
+ 1.7618285302889447e-13,
+ -1.3743109569201023e-13,
+ -9.190307477709159e-14,
+ -1.478072492958754e-13,
+ 1.6474790824096142e-13,
+ 4.7222086809427244e-14,
+ 1.3044307387716225e-13,
+ -1.6517142471458857e-14,
+ 7.64447234897006e-14,
+ -1.6453615000414784e-13,
+ -4.0234064994579266e-13,
+ -6.998609726688657e-13,
+ -2.6723889485873176e-13,
+ -1.5013658990082474e-13,
+ 3.1594328932585403e-13,
+ 4.603624068327122e-13,
+ -4.686209780684417e-13,
+ 1.971469184734384e-13,
+ 2.966732897758187e-13,
+ -3.0704944337968387e-13,
+ -1.503483481376383e-14,
+ -6.839791049078475e-14,
+ -1.4547790869092608e-13,
+ 1.1604351377383915e-13,
+ 2.4331021409879777e-13,
+ -3.928115292891818e-13,
+ 5.141489989833603e-13,
+ 5.992758101824175e-13,
+ 1.0757318430129614e-13,
+ -9.889109659193956e-14,
+ 2.394985658361534e-13,
+ 1.5225417226896049e-13,
+ -2.9879087214395444e-13,
+ 1.8825307252726825e-13,
+ 2.7655625727852906e-13,
+ -2.117582368135751e-15
+ ],
+ [
+ 2.904912505356541,
+ -6.2866247487068945,
+ 7.501651624385338,
+ -10.44036192950893,
+ 10.480126533281055,
+ -7.536390141034123,
+ -9.68224611237415,
+ 8.796647971776355,
+ -6.058038367574682,
+ -0.35996969394568734,
+ 3.894167256025904,
+ -7.189033488902239,
+ -2.655032210737963,
+ 7.336189358332117,
+ -9.322385244087409,
+ 10.335124138624671,
+ -9.299263434593891,
+ 5.262738660236096,
+ 8.643365432160987,
+ -6.803714904237549,
+ 3.764440939801564,
+ 2.65489863873862,
+ -5.846727866892838,
+ 8.172006687438317,
+ 4.642448920938796,
+ -8.576299701834069,
+ 9.731811966690978,
+ -8.703211449922598,
+ 10.277043437030157,
+ -9.230741377055097,
+ -8.958149862438013,
+ 10.48065345944714,
+ -10.293563825185183,
+ 2.0228047287359985,
+ 1.7838480761241184,
+ -6.084600338542366,
+ -0.7932217640153111,
+ 5.918198087013006,
+ -8.574971145699045,
+ 11.414485038662335,
+ -11.524204315599405,
+ 8.254432880895939,
+ 10.33760287209134,
+ -9.981188108829146,
+ 7.433766828758083,
+ -0.808423316312252,
+ -2.817690568293181,
+ 6.592872043855271,
+ -2.99002630380768e-13,
+ -2.286988957586611e-13,
+ -3.3457801416544863e-13,
+ -1.6940658945086007e-14,
+ -4.828087799349512e-14,
+ 2.244637310223896e-13,
+ 9.740878893424454e-14,
+ 1.8804131429045468e-13,
+ 1.1943164556285635e-13,
+ -1.4653669987499396e-13,
+ -1.4653669987499396e-13,
+ 3.6930636500287495e-13,
+ -2.591920818598159e-13,
+ -1.5331296345302836e-13,
+ -3.4135427774348304e-13,
+ -7.538593230563273e-14,
+ -5.827586677109586e-13,
+ 1.9566461081574338e-13,
+ -3.9471735342050396e-13,
+ -2.795208725939191e-14,
+ -3.6591823321385775e-13,
+ 2.871441691192078e-13,
+ -8.046812998915853e-14,
+ -1.6517142471458857e-13,
+ 3.117081245895825e-13,
+ -5.505714157152952e-14,
+ 7.962109704190423e-14,
+ 6.437450399132683e-14,
+ -1.6855955650360577e-13,
+ 3.2949581648192283e-13,
+ -7.792703114739563e-14,
+ 4.3452790194145607e-13,
+ -2.193815333388638e-13,
+ 1.6263032587282567e-13,
+ -1.3976043629695956e-13,
+ -3.049318610115481e-14,
+ -2.574980159653073e-13,
+ 4.404571325722362e-14,
+ 3.091670257478196e-13,
+ 7.165898733771381e-13,
+ 2.846030702774449e-13,
+ 7.538593230563273e-14,
+ -1.6263032587282567e-13,
+ -5.963111948670274e-13,
+ 5.632769099241097e-13,
+ -1.4738373282224826e-13,
+ 4.235164736271502e-15,
+ 1.7872395187065737e-13,
+ -1.9820570965750628e-13,
+ 2.270048298641525e-13,
+ 2.286988957586611e-13,
+ -2.0244087439377778e-13,
+ -2.676624113323589e-13,
+ 5.912289971835016e-13,
+ -5.683591076076355e-13,
+ -7.284483346386983e-13,
+ -4.997494388800372e-14,
+ 3.040848280642938e-13,
+ -7.623296525288703e-14,
+ -1.0672615135404184e-13,
+ 2.202285662861181e-13,
+ -3.7692966152816365e-13,
+ 3.057788939588024e-13,
+ 2.541098841762901e-15
+ ],
+ [
+ 4.767251404873419,
+ -8.107700118586786,
+ 8.858510874291078,
+ -11.11402793938696,
+ 10.658684988708377,
+ -7.051836900092597,
+ -9.9594579891663,
+ 8.377591326969517,
+ -5.189839109240831,
+ -1.8241871905331304,
+ 5.481797901011723,
+ -8.477663815976072,
+ -4.0740491449485114,
+ 8.82482653509334,
+ -10.525521716466775,
+ 10.680148318144502,
+ -9.120753993669338,
+ 4.468261626761043,
+ 8.62686558894608,
+ -6.050811291294106,
+ 2.596711101891892,
+ 4.274188935233458,
+ -7.499319922813435,
+ 9.372546030763967,
+ 6.154271039834112,
+ -9.98828139807194,
+ 10.73136640772092,
+ -9.26716175814227,
+ 11.258307034045963,
+ -9.491374293561536,
+ -9.948545579339765,
+ 10.917519788459071,
+ -10.17237122782244,
+ 0.8788450447880924,
+ 3.269067040489341,
+ -7.562652459060867,
+ -2.1001656447689805,
+ 7.537085413987763,
+ -10.068274812168365,
+ 12.329439973131432,
+ -12.006720672121368,
+ 8.038685562861001,
+ 10.88881110736597,
+ -9.895524295386666,
+ 6.850630371526198,
+ 0.47899598738856997,
+ -4.610366924090892,
+ 8.48535702257602,
+ -3.7015339795012925e-13,
+ -2.558039500707987e-13,
+ -3.6168306847758624e-13,
+ -2.456395547037471e-14,
+ -6.098637220230962e-14,
+ 2.803679055411734e-13,
+ 1.0842021724855044e-13,
+ 2.532628512290358e-13,
+ 1.2451384324638215e-13,
+ -1.5670109524204556e-13,
+ -1.9312351197398048e-13,
+ 3.7947076036992655e-13,
+ -2.439454888092385e-13,
+ -9.486769009248164e-14,
+ -3.5405977195229754e-13,
+ -9.402065714522734e-14,
+ -5.514184486625495e-13,
+ 1.6347735882007997e-13,
+ -3.4050724479622874e-13,
+ -5.336307567702092e-14,
+ -4.0657581468206416e-13,
+ 2.90532300908225e-13,
+ -2.795208725939191e-14,
+ -2.0328790734103208e-13,
+ 2.744386749103933e-13,
+ -2.541098841762901e-15,
+ 1.0079692072326174e-13,
+ 8.978549240895584e-14,
+ -1.8719428134320037e-13,
+ 3.3203691532368573e-13,
+ -4.912791094074942e-14,
+ 4.45539330255762e-13,
+ -2.371692252312041e-13,
+ 1.3467823861343375e-13,
+ -1.5585406229479126e-13,
+ -2.795208725939191e-14,
+ -2.56650983018053e-13,
+ 7.623296525288703e-14,
+ 3.6761229910836635e-13,
+ 8.021402010498224e-13,
+ 3.125551575368368e-13,
+ 1.0079692072326174e-13,
+ -2.1514636860259229e-13,
+ -6.445920728605226e-13,
+ 6.166399856011306e-13,
+ -1.8295911660692887e-13,
+ -5.929230630780102e-14,
+ 2.320870275476783e-13,
+ -1.7618285302889447e-13,
+ 2.219226321806267e-13,
+ 2.39710324072967e-13,
+ -2.1345230270808369e-13,
+ -2.922263668027336e-13,
+ 6.251103150736737e-13,
+ -6.25957348020928e-13,
+ -7.987520692608052e-13,
+ -6.860966872759833e-14,
+ 2.99002630380768e-13,
+ -1.1858461261560205e-13,
+ -1.2366681029912785e-13,
+ 2.65121312490596e-13,
+ -3.8285889215894375e-13,
+ 2.22769665127881e-13,
+ 1.6940658945086007e-15
+ ],
+ [
+ 1.342171283945513,
+ 1.1751534525533425,
+ -4.060940028574447,
+ 8.310835791699068,
+ -10.162741416762813,
+ 8.112578786350738,
+ 8.46890944122963,
+ -9.883173440815984,
+ 7.553131791028417,
+ -2.8208405471875526,
+ -0.9577815783839451,
+ 3.9494635948805255,
+ -0.5702863021477623,
+ -4.389005747996248,
+ 6.120616457815923,
+ -8.899955354032535,
+ 8.322393779995334,
+ -6.61827884478749,
+ -8.094066309732465,
+ 7.233171467027104,
+ -6.032940387671711,
+ 1.0346855759376963,
+ 1.133560892422288,
+ -5.0199610220950115,
+ -1.0473312773843955,
+ 4.2054959883653185,
+ -6.921000040602515,
+ 8.651645303992433,
+ -8.22932959405036,
+ 8.07982256835242,
+ 6.243149823149085,
+ -9.60161215494122,
+ 9.895583023828284,
+ -4.353530009990823,
+ 0.7933085374048627,
+ 2.504674175670804,
+ -2.0673694096914055,
+ -2.7790477013518102,
+ 4.789168317278279,
+ -8.668325520190345,
+ 8.96368880333668,
+ -8.156023304080868,
+ -8.442201489101219,
+ 8.75189940938767,
+ -8.191700306623627,
+ 3.5519874540590193,
+ -2.0040423402473384,
+ -2.0378730928206257,
+ 9.825582188149884e-14,
+ 1.3044307387716225e-13,
+ 2.761327408049019e-13,
+ 6.776263578034403e-15,
+ -5.082197683525802e-15,
+ -4.235164736271502e-14,
+ -8.470329472543003e-14,
+ -1.0164395367051604e-14,
+ -5.759824041329242e-14,
+ 1.3552527156068805e-13,
+ 7.623296525288703e-14,
+ -3.1679032227310833e-13,
+ 2.998496633280223e-13,
+ 2.286988957586611e-13,
+ 2.964615315390051e-13,
+ 2.371692252312041e-14,
+ 6.911788849595091e-13,
+ -2.795208725939191e-13,
+ 4.946672411965114e-13,
+ -9.486769009248164e-14,
+ 2.422514229147299e-13,
+ -2.253107639696439e-13,
+ 1.2197274440461925e-13,
+ 1.2874900798265365e-13,
+ -3.2864878353466853e-13,
+ 1.6263032587282567e-13,
+ 1.1858461261560205e-14,
+ -1.1858461261560205e-14,
+ 5.759824041329242e-14,
+ -2.693564772268675e-13,
+ 1.3891340334970526e-13,
+ -3.2356658585114273e-13,
+ 1.3044307387716225e-13,
+ -1.4568966692773966e-13,
+ 1.1858461261560205e-13,
+ 2.371692252312041e-14,
+ 2.1006417091906648e-13,
+ 2.202285662861181e-14,
+ -1.3721933745519665e-13,
+ -5.30242624981192e-13,
+ -1.5246593050577406e-13,
+ -2.710505431213761e-14,
+ 1.3213713977167085e-13,
+ 5.031375706690544e-13,
+ -3.9979955110402976e-13,
+ 7.623296525288703e-14,
+ -1.9312351197398048e-13,
+ -9.656175598699024e-14,
+ 2.270048298641525e-13,
+ -2.659683454378503e-13,
+ -1.7787691892340307e-13,
+ 1.8126505071242027e-13,
+ 1.2027867851011065e-13,
+ -3.9641141931501256e-13,
+ 3.6591823321385775e-13,
+ 5.319366908757006e-13,
+ -5.082197683525802e-15,
+ -3.3373098121819433e-13,
+ -6.606856988583543e-14,
+ 3.3881317890172014e-14,
+ -7.623296525288703e-14,
+ 3.6253010142484055e-13,
+ -4.3368086899420177e-13,
+ 2.202285662861181e-14
+ ],
+ [
+ 0.23708480307784557,
+ 3.92177643036351,
+ -8.17500676750914,
+ 14.48654995569274,
+ -16.994081496924064,
+ 12.922953079192034,
+ 14.3254129106677,
+ -15.893796594977257,
+ 11.587461769421934,
+ -3.1129592202643757,
+ -3.246042654152355,
+ 7.916126518643776,
+ 0.5670900477479327,
+ -8.825145328844808,
+ 11.422355584628743,
+ -15.113262689726046,
+ 13.631018342020322,
+ -10.11865981331848,
+ -13.393025908273657,
+ 11.214122776467642,
+ -8.750680735720264,
+ -0.012565972050678312,
+ 3.6730387366339046,
+ -9.597462337201353,
+ -3.347712901748738,
+ 8.505917871521499,
+ -12.53235852123168,
+ 14.340768384987134,
+ -14.471935968176476,
+ 13.663255680721761,
+ 11.398454872105177,
+ -16.339923678274953,
+ 16.26461738406778,
+ -5.993688831424465,
+ -0.23578712653240555,
+ 5.724540860315569,
+ -2.0326791937921778,
+ -6.2968457647844005,
+ 9.52604867292873,
+ -15.337400480012654,
+ 15.398502452819999,
+ -13.283516378534996,
+ -14.575299962722605,
+ 14.441879253276541,
+ -12.950630867149133,
+ 4.511794519300967,
+ -1.375654623732684,
+ -5.394965322197402,
+ 2.371692252312041e-13,
+ 2.320870275476783e-13,
+ 4.811147140404426e-13,
+ 2.202285662861181e-14,
+ 1.6940658945086007e-15,
+ -1.1180834903756764e-13,
+ -1.3552527156068805e-13,
+ -9.656175598699024e-14,
+ -1.0842021724855044e-13,
+ 2.286988957586611e-13,
+ 1.5415999640028266e-13,
+ -5.454892180317694e-13,
+ 4.912791094074942e-13,
+ 3.1340219048409113e-13,
+ 5.082197683525802e-13,
+ 5.929230630780102e-14,
+ 1.0977546996415732e-12,
+ -4.2012834183813297e-13,
+ 7.691059161069047e-13,
+ -1.1858461261560205e-13,
+ 4.3198680309969317e-13,
+ -3.8624702394796095e-13,
+ 1.4399560103323106e-13,
+ 2.558039500707987e-13,
+ -5.149960319306146e-13,
+ 2.253107639696439e-13,
+ -2.541098841762901e-14,
+ -3.8963515573697816e-14,
+ 1.1858461261560205e-13,
+ -4.506215279392878e-13,
+ 1.9651164376299768e-13,
+ -5.658180087658726e-13,
+ 2.270048298641525e-13,
+ -2.270048298641525e-13,
+ 2.1006417091906648e-13,
+ 3.218725199566341e-14,
+ 3.5744790374131474e-13,
+ 1.0164395367051604e-14,
+ -2.846030702774449e-13,
+ -9.58841296291868e-13,
+ -2.998496633280223e-13,
+ -6.268043809681823e-14,
+ 2.659683454378503e-13,
+ 8.859964628279982e-13,
+ -7.233661369551725e-13,
+ 1.6601845766184287e-13,
+ -2.422514229147299e-13,
+ -2.0498197323554068e-13,
+ 3.5575383784680614e-13,
+ -4.404571325722362e-13,
+ -3.032377951170395e-13,
+ 3.117081245895825e-13,
+ 2.320870275476783e-13,
+ -7.030373462210693e-13,
+ 6.860966872759833e-13,
+ 9.50370966819325e-13,
+ 1.0164395367051604e-14,
+ -5.437951521372608e-13,
+ -6.437450399132683e-14,
+ 8.300922883092143e-14,
+ -1.6771252355635147e-13,
+ 6.030874584450618e-13,
+ -6.284984468626909e-13,
+ 4.235164736271502e-14
+ ],
+ [
+ -0.8631676435911733,
+ 3.3402188123213254,
+ -5.612551270927812,
+ 9.011777733932663,
+ -10.225283841156237,
+ 7.45359146222317,
+ 8.701626667763911,
+ -9.246161659384564,
+ 6.4496016717470415,
+ -1.0693053331632518,
+ -2.7771191594784805,
+ 5.420468801651005,
+ 1.1032255011687018,
+ -6.05459748128378,
+ 7.467845498666199,
+ -9.209276939507184,
+ 8.058653206196974,
+ -5.613156734340839,
+ -7.987492877767073,
+ 6.306013633051297,
+ -4.595034188674274,
+ -0.880832114188035,
+ 3.1007658617974347,
+ -6.377636860859669,
+ -2.8142304442594406,
+ 5.8563739541565765,
+ -8.021288322796078,
+ 8.565444288444835,
+ -8.326065170058563,
+ 8.297431297097939,
+ 7.33881606506374,
+ -9.974066213212952,
+ 9.64472288897118,
+ -2.9618671964177623,
+ -0.9247186636750212,
+ 4.214230729341655,
+ -0.5093330433604059,
+ -4.6154337071352485,
+ 6.4922659365849436,
+ -9.65053759360156,
+ 9.470456359054907,
+ -7.8148134108961,
+ -8.999578289510028,
+ 8.592969392741601,
+ -7.417818600944317,
+ 1.99928013516497,
+ 0.1621857311390099,
+ -4.241919663195187,
+ 1.8380614955418317e-13,
+ 1.6263032587282567e-13,
+ 2.939204326972422e-13,
+ 1.2705494208814505e-14,
+ 2.117582368135751e-14,
+ -1.0672615135404184e-13,
+ -8.555032767268433e-14,
+ -9.063252535621014e-14,
+ -6.522153693858113e-14,
+ 1.4484263398048536e-13,
+ 1.1350241493207625e-13,
+ -3.2695471764015993e-13,
+ 2.854501032246992e-13,
+ 1.7279472123987727e-13,
+ 3.049318610115481e-13,
+ 4.658681209898652e-14,
+ 6.208751503374021e-13,
+ -2.31239994600424e-13,
+ 4.1335207826009857e-13,
+ -6.776263578034403e-14,
+ 2.73591641963139e-13,
+ -2.473336205982557e-13,
+ 7.030373462210693e-14,
+ 1.7787691892340307e-13,
+ -2.795208725939191e-13,
+ 1.0587911840678754e-13,
+ -3.134021904840911e-14,
+ -2.795208725939191e-14,
+ 8.639736061993863e-14,
+ -2.702035101741218e-13,
+ 1.0418505251227894e-13,
+ -3.4643647542700884e-13,
+ 1.4230153513872246e-13,
+ -1.1943164556285635e-13,
+ 1.1858461261560205e-13,
+ 5.929230630780102e-15,
+ 2.193815333388638e-13,
+ -7.623296525288703e-15,
+ -1.9566461081574338e-13,
+ -6.25957348020928e-13,
+ -1.9989977555201488e-13,
+ -5.929230630780102e-14,
+ 1.8634724839594607e-13,
+ 5.615828440296011e-13,
+ -4.734914175151539e-13,
+ 1.1096131609031334e-13,
+ -1.1604351377383915e-13,
+ -1.3467823861343375e-13,
+ 2.0921713797181218e-13,
+ -2.65121312490596e-13,
+ -1.8465318250143747e-13,
+ 1.9227647902672618e-13,
+ 1.6940658945086007e-13,
+ -4.421511984667448e-13,
+ 4.413041655194905e-13,
+ 6.191810844428935e-13,
+ 2.964615315390051e-14,
+ -3.1509625637859973e-13,
+ -2.625802136488331e-14,
+ 5.590417451878382e-14,
+ -1.3721933745519665e-13,
+ 3.6676526616111205e-13,
+ -3.2695471764015993e-13,
+ 2.625802136488331e-14
+ ],
+ [
+ -5.174738806837997,
+ 2.4409593018110005,
+ 0.30060821101433116,
+ -5.225745384446724,
+ 7.201191488468091,
+ -7.614597772390605,
+ -6.221665845314725,
+ 8.293946308734535,
+ -8.015683120774764,
+ 5.523533686906924,
+ -3.354600136751694,
+ -0.3337041431154986,
+ 3.609832387912885,
+ -0.3607964091166771,
+ -2.2849401697062484,
+ 6.447424289383804,
+ -7.750789089500309,
+ 7.123298004112382,
+ 6.599608840414658,
+ -8.137761494513612,
+ 7.4678760647346225,
+ -4.402030931738044,
+ 2.1067285188194416,
+ 1.4261924428307622,
+ -2.4740297474867785,
+ -0.9090243240531635,
+ 3.400669108912675,
+ -6.970509626973795,
+ 7.958976898407662,
+ -5.94602995680255,
+ -2.851585207006063,
+ 6.179247207799342,
+ -8.260822042180717,
+ 6.0572133738293,
+ -4.544531308293198,
+ 1.2508765225811636,
+ 4.573680309185449,
+ -1.948203245226969,
+ -0.5715367203508378,
+ 5.007689285527051,
+ -6.816505194318246,
+ 7.094336285376829,
+ 5.633479550471761,
+ -7.898933609341296,
+ 7.92795163422067,
+ -5.706584049356915,
+ 4.950911074038715,
+ -2.5061291156644923,
+ 8.089164646278568e-14,
+ -1.9481757786848908e-14,
+ -1.7702988597614877e-13,
+ 5.505714157152952e-15,
+ 3.5151867311053464e-14,
+ -8.639736061993863e-14,
+ 2.329340604949326e-14,
+ -1.1773757966834775e-13,
+ 5.759824041329242e-14,
+ -5.632769099241097e-14,
+ 1.8634724839594607e-14,
+ 2.1472285212896514e-13,
+ -1.9015889665859043e-13,
+ -2.7994438906754626e-13,
+ -2.210755992333724e-13,
+ -1.8634724839594607e-14,
+ -6.098637220230962e-13,
+ 3.0789647632693817e-13,
+ -5.518419651361767e-13,
+ 3.8963515573697816e-14,
+ -1.1434944787933055e-13,
+ 1.1773757966834775e-13,
+ -2.39710324072967e-13,
+ 7.962109704190423e-14,
+ 3.7438856268640075e-13,
+ -2.456395547037471e-13,
+ -3.3457801416544863e-14,
+ 1.6093625997831706e-14,
+ -8.470329472543003e-15,
+ 2.4436900528286565e-13,
+ -1.113848325639405e-13,
+ 2.6723889485873176e-13,
+ -1.3637230450794235e-13,
+ 2.0371142381465923e-13,
+ -1.0418505251227894e-13,
+ -6.479802046495398e-14,
+ -1.8973538018496328e-13,
+ -7.919758056827708e-14,
+ 3.5575383784680614e-14,
+ 2.1260526976082939e-13,
+ 8.978549240895584e-14,
+ -6.691560283308973e-14,
+ 8.173867941003998e-14,
+ -2.6300373012246026e-13,
+ 1.9142944607947188e-13,
+ -7.623296525288703e-15,
+ 2.3081647812679684e-13,
+ -3.8116482626443515e-14,
+ -2.3420460991581404e-13,
+ 1.8931186371133613e-13,
+ 1.15619997300212e-13,
+ -6.691560283308973e-14,
+ -5.209252625613947e-14,
+ 2.4818065354551e-13,
+ -2.0032329202564203e-13,
+ -2.5114526886090005e-13,
+ 6.776263578034403e-14,
+ 2.668153783851046e-13,
+ 4.701032857261367e-14,
+ -4.701032857261367e-14,
+ -5.293955920339377e-14,
+ -2.388632911257127e-13,
+ 5.840292171318401e-13,
+ 4.319868030996932e-14
+ ],
+ [
+ -6.804013962010437,
+ 1.96866992853125,
+ 2.334006002852184,
+ -10.251460324312417,
+ 13.141036070543967,
+ -12.997382936729945,
+ -11.51064629506835,
+ 14.30736677738882,
+ -13.20796486899757,
+ 7.955285402608189,
+ -3.9005913035531234,
+ -2.3032812195363532,
+ 4.587413805286161,
+ 1.3305876937148948,
+ -5.684918291252547,
+ 12.00445872078446,
+ -13.639453613318256,
+ 11.70689954006643,
+ 11.798520185062285,
+ -13.572387751439793,
+ 11.83016154363927,
+ -5.74154347299896,
+ 1.5929629490378692,
+ 4.1431051825600385,
+ -2.4306074563819795,
+ -3.4901096692495597,
+ 7.413666105457191,
+ -12.494715092421183,
+ 13.532684881548143,
+ -10.844985250048637,
+ -6.418308747237535,
+ 11.652465312855114,
+ -14.635648618314304,
+ 9.334985523297107,
+ -6.167410553841047,
+ 0.2841914778663348,
+ 6.462074958226604,
+ -1.3402580628842409,
+ -3.0000207907549017,
+ 10.179957183584495,
+ -12.840816086891746,
+ 12.420883138891684,
+ 10.81935288789038,
+ -14.02760807834896,
+ 13.427821397223946,
+ -8.51731982026043,
+ 6.501805681529381,
+ -1.9843951937074025,
+ 3.9387032047324966e-14,
+ -8.978549240895584e-14,
+ -3.400837283226016e-13,
+ 3.8116482626443515e-15,
+ 3.7692966152816365e-14,
+ -6.733911930671688e-14,
+ 5.929230630780102e-14,
+ -1.283254915090265e-13,
+ 1.0630263488041469e-13,
+ -1.15619997300212e-13,
+ -1.2281977735187355e-14,
+ 4.019171334721655e-13,
+ -3.409307612698559e-13,
+ -4.463863632030163e-13,
+ -4.0318768289304696e-13,
+ -4.870439446712227e-14,
+ -1.0287215144403478e-12,
+ 4.972083400382743e-13,
+ -8.953138252477955e-13,
+ 5.675120746603812e-14,
+ -2.583450489125616e-13,
+ 2.4775713707188285e-13,
+ -3.815883427380623e-13,
+ 7.453889935837843e-14,
+ 6.217221832846564e-13,
+ -3.714239473710107e-13,
+ -3.091670257478196e-14,
+ 3.006966962752766e-14,
+ -5.209252625613947e-14,
+ 4.4257471494037193e-13,
+ -1.8168856718604742e-13,
+ 5.022905377218001e-13,
+ -2.507217523872729e-13,
+ 3.38389662428093e-13,
+ -1.7787691892340307e-13,
+ -1.0037340424963459e-13,
+ -3.4474240953250024e-13,
+ -1.0545560193316039e-13,
+ 1.317136232980437e-13,
+ 4.950907576701385e-13,
+ 2.0879362149818503e-13,
+ -7.326834993749698e-14,
+ 7.580944877925988e-14,
+ -5.315131744020735e-13,
+ 4.3198680309969317e-13,
+ -4.1081097941833566e-14,
+ 3.366955965335844e-13,
+ -1.3976043629695956e-14,
+ -3.925997710523682e-13,
+ 3.3542504711270293e-13,
+ 2.2573428044327104e-13,
+ -1.4823076576950256e-13,
+ -1.4738373282224826e-13,
+ 5.086432848262074e-13,
+ -4.2859867131067597e-13,
+ -5.514184486625495e-13,
+ 8.851494298807439e-14,
+ 4.688327363052552e-13,
+ 5.378659215064807e-14,
+ -9.105604182983729e-14,
+ -1.3129010682441655e-14,
+ -4.463863632030163e-13,
+ 9.241129454544417e-13,
+ 6.268043809681823e-14
+ ],
+ [
+ -6.162927241465474,
+ 1.317145495103422,
+ 2.789407791898464,
+ -10.46252913216207,
+ 13.147860826484415,
+ -12.812399621280566,
+ -11.585409339866679,
+ 14.110416950737601,
+ -12.893374014162625,
+ 7.448582402375079,
+ -3.3909422370115645,
+ -2.7342361771153025,
+ 4.101600232288246,
+ 1.7985871024410578,
+ -6.082022496242137,
+ 12.10277328743575,
+ -13.590702060023135,
+ 11.420967688690023,
+ 11.775316112334716,
+ -13.329659729838609,
+ 11.417605720944426,
+ -5.18490565886851,
+ 0.9991697405899365,
+ 4.543106286992084,
+ -1.9151158310276375,
+ -3.994631186349151,
+ 7.74027045830178,
+ -12.477038906363008,
+ 13.292285887983702,
+ -10.461506480608502,
+ -6.7422704881194235,
+ 11.749015084941622,
+ -14.571198850971575,
+ 8.934381820091469,
+ -5.688794228091902,
+ -0.21493692719439497,
+ 6.011209866258644,
+ -0.8239402491972876,
+ -3.4995919439569865,
+ 10.474007308070343,
+ -13.016997928795778,
+ 12.32963159200111,
+ 10.98979591006037,
+ -14.009920012323983,
+ 13.21052524491778,
+ -8.068523275058054,
+ 5.852834394134555,
+ -1.340610852072962,
+ 1.1858461261560205e-14,
+ -1.0545560193316039e-13,
+ -3.4643647542700884e-13,
+ 2.964615315390051e-15,
+ 2.879912020664621e-14,
+ -4.235164736271502e-14,
+ 6.522153693858113e-14,
+ -1.0842021724855044e-13,
+ 1.0672615135404184e-13,
+ -1.1858461261560205e-13,
+ -2.159934015498466e-14,
+ 4.036111993666741e-13,
+ -3.392366953753473e-13,
+ -4.3113977015243887e-13,
+ -4.0403471584030126e-13,
+ -5.421010862427522e-14,
+ -1.0075456907589903e-12,
+ 4.832322964085783e-13,
+ -8.745615180400651e-13,
+ 4.955142741437657e-14,
+ -2.702035101741218e-13,
+ 2.541098841762901e-13,
+ -3.7100043089738355e-13,
+ 6.013933925505532e-14,
+ 6.107107549703505e-13,
+ -3.527892225314161e-13,
+ -2.0328790734103208e-14,
+ 3.3457801416544863e-14,
+ -6.564505341220828e-14,
+ 4.429982314139991e-13,
+ -1.7533582008164017e-13,
+ 5.094903177734617e-13,
+ -2.5283933475540865e-13,
+ 3.3457801416544863e-13,
+ -1.7448878713438587e-13,
+ -9.613823951336309e-14,
+ -3.4813054132151744e-13,
+ -9.698527246061739e-14,
+ 1.49501315190384e-13,
+ 5.243133943504119e-13,
+ 2.253107639696439e-13,
+ -5.929230630780102e-14,
+ 6.056285572868247e-14,
+ -5.437951521372608e-13,
+ 4.54009659728305e-13,
+ -4.955142741437657e-14,
+ 3.138257069577183e-13,
+ -2.541098841762901e-15,
+ -3.8285889215894375e-13,
+ 3.2991933295555e-13,
+ 2.31239994600424e-13,
+ -1.5500702934753696e-13,
+ -1.6644197413547002e-13,
+ 5.260074602449205e-13,
+ -4.4765691262389773e-13,
+ -5.764059206065514e-13,
+ 8.173867941003998e-14,
+ 4.633270221481023e-13,
+ 4.319868030996932e-14,
+ -9.190307477709159e-14,
+ 7.623296525288703e-15,
+ -4.4680987967664343e-13,
+ 8.931962428796597e-13,
+ 6.056285572868247e-14
+ ],
+ [
+ -3.5869856920477026,
+ -1.4809635652319724,
+ 4.668194554286105,
+ -11.393792222605093,
+ 13.117241218411891,
+ -12.143570774166225,
+ -11.967090919651229,
+ 13.255656867757324,
+ -11.698320431648787,
+ 5.43708508249084,
+ -1.4869479275646018,
+ -4.506395484399512,
+ 2.1534618340845157,
+ 3.5689722420612955,
+ -7.741065748344062,
+ 12.590525234776388,
+ -13.637050640307738,
+ 10.338853894920264,
+ 11.766795323799188,
+ -12.583364429862188,
+ 9.817808407952905,
+ -2.9494435415004085,
+ -1.5648180619281036,
+ 6.209420209030865,
+ 0.17702836005260808,
+ -6.229478820778412,
+ 9.128012785524827,
+ -12.489360430850295,
+ 12.254441640699353,
+ -8.966999023636303,
+ -8.107222112904886,
+ 12.074950834911517,
+ -14.407527984949347,
+ 7.366033950955746,
+ -3.9272635013779236,
+ -2.247980806874951,
+ 4.218957975181782,
+ 1.1256976567610262,
+ -5.559346945795899,
+ 11.74977222117326,
+ -13.97787321880975,
+ 12.048702356762565,
+ 11.766598734373684,
+ -14.187206001329136,
+ 12.4203657841105,
+ -6.293091168642378,
+ 3.0970584741550677,
+ 1.2802667753407622,
+ -1.0524384369634682e-13,
+ -1.6559494118821572e-13,
+ -3.6994163971331567e-13,
+ 0.0,
+ -6.564505341220828e-15,
+ 7.093900933254765e-14,
+ 7.940933880509066e-14,
+ -2.3081647812679684e-14,
+ 1.15619997300212e-13,
+ -1.2705494208814505e-13,
+ -7.348010817431055e-14,
+ 4.1419911120735287e-13,
+ -3.254724099824649e-13,
+ -3.8201185921168945e-13,
+ -4.0742284762931846e-13,
+ -8.089164646278568e-14,
+ -9.056899788516606e-13,
+ 4.2711636365298095e-13,
+ -7.767292126321934e-13,
+ 5.293955920339377e-15,
+ -3.282252670610414e-13,
+ 2.9095581738185217e-13,
+ -3.4728350837426314e-13,
+ 2.159934015498466e-14,
+ 5.679355911340084e-13,
+ -2.7846208140985124e-13,
+ 1.5246593050577406e-14,
+ 4.277516383634217e-14,
+ -1.2091395322055137e-13,
+ 4.582448244645765e-13,
+ -1.444191175068582e-13,
+ 5.503596574784816e-13,
+ -2.814266967252413e-13,
+ 3.256841682192785e-13,
+ -1.6178329292557136e-13,
+ -8.533856943587076e-14,
+ -3.661299914506713e-13,
+ -6.352747104407253e-14,
+ 2.405573570202213e-13,
+ 6.350629522039117e-13,
+ 2.882029603032757e-13,
+ -1.3129010682441655e-14,
+ 1.291725244562808e-14,
+ -5.846644918422808e-13,
+ 5.54171305741126e-13,
+ -7.686823996332776e-14,
+ 2.140875774185244e-13,
+ 4.468098796766434e-14,
+ -3.5321273900504324e-13,
+ 3.0726120161649745e-13,
+ 2.644860377801553e-13,
+ -1.768181277393352e-13,
+ -2.490276864927643e-13,
+ 6.151576779434356e-13,
+ -5.31724932638887e-13,
+ -6.731794348303552e-13,
+ 4.8069119756681544e-14,
+ 4.4320998965081265e-13,
+ -1.7575933655526732e-14,
+ -9.952637130238029e-14,
+ 9.910285482875314e-14,
+ -4.512568026497285e-13,
+ 7.828702014997871e-13,
+ 5.463362509790237e-14
+ ],
+ [
+ -2.5994602337605306,
+ -2.453282875042354,
+ 5.390214960602139,
+ -11.755350465568423,
+ 13.211601048156815,
+ -11.890497435623278,
+ -12.118338218844867,
+ 13.03282163582399,
+ -11.241487515614338,
+ 4.661809458850931,
+ -0.6497424542265374,
+ -5.191918385271158,
+ 1.4010738211385079,
+ 4.355411525029787,
+ -8.382397952718447,
+ 12.778207402103208,
+ -13.552163426714726,
+ 9.920890825819669,
+ 11.762321727421645,
+ -12.193191050128002,
+ 9.201474007219977,
+ -2.0908156597200134,
+ -2.447695593634813,
+ 6.84904183941327,
+ 0.9797652792510659,
+ -6.986274953625288,
+ 9.661917267293273,
+ -12.497587916211408,
+ 11.961158443767825,
+ -8.395666110477643,
+ -8.63573421886939,
+ 12.306081555111144,
+ -14.348191831670887,
+ 6.761454045264364,
+ -3.1452811792606035,
+ -3.033277902798202,
+ 3.5267951504852544,
+ 1.9804361084342597,
+ -6.353975976707751,
+ 12.239749071080272,
+ -14.244058956204645,
+ 11.938597363457003,
+ 12.063534642806944,
+ -14.151845698930346,
+ 12.115314608070074,
+ -5.611824009299776,
+ 2.141439861259026,
+ 2.2855229096732197,
+ -1.4738373282224826e-13,
+ -1.8507669897506462e-13,
+ -3.801060350803673e-13,
+ -2.329340604949326e-15,
+ -1.8422966602781032e-14,
+ 1.0566736016997397e-13,
+ 8.682087709356578e-14,
+ 9.317362419797304e-15,
+ 1.1667878848427987e-13,
+ -1.3383120566617945e-13,
+ -9.380889890841376e-14,
+ 4.188577924172515e-13,
+ -3.263194429297192e-13,
+ -3.604125190567048e-13,
+ -4.105992211815221e-13,
+ -8.766791004082009e-14,
+ -8.766791004082009e-13,
+ 4.069993311556913e-13,
+ -7.398832794266313e-13,
+ -1.9058241313221758e-15,
+ -3.477070248478903e-13,
+ 3.049318610115481e-13,
+ -3.2843702529785496e-13,
+ -2.541098841762901e-15,
+ 5.484538333471595e-13,
+ -2.509335106240865e-13,
+ 2.7740329022578336e-14,
+ 4.510450444129149e-14,
+ -1.3700757921838308e-13,
+ 4.605741650695258e-13,
+ -1.3637230450794235e-13,
+ 5.603122946087197e-13,
+ -2.846030702774449e-13,
+ 3.1488449814178615e-13,
+ -1.5797164466292701e-13,
+ -7.771527291058206e-14,
+ -3.6930636500287495e-13,
+ -5.1033735072071595e-14,
+ 2.687212025164268e-13,
+ 6.820732807765253e-13,
+ 3.066259269060567e-13,
+ 6.776263578034403e-15,
+ -1.6517142471458857e-14,
+ -6.083814143654012e-13,
+ 5.912289971835016e-13,
+ -8.830318475126081e-14,
+ 1.81900325422861e-13,
+ 6.564505341220828e-14,
+ -3.4198955245392376e-13,
+ 3.057788939588024e-13,
+ 2.7401515843676616e-13,
+ -1.8846483076408183e-13,
+ -2.710505431213761e-13,
+ 6.420509740187597e-13,
+ -5.596770198982789e-13,
+ -7.125664668776802e-13,
+ 3.5151867311053464e-14,
+ 4.396100996249819e-13,
+ -3.197549375884984e-14,
+ -1.0016164601282102e-13,
+ 1.2980779916672153e-13,
+ -4.576095497541358e-13,
+ 7.354363564535463e-13,
+ 4.870439446712227e-14
+ ],
+ [
+ 0.2072233070984704,
+ -4.90217600411787,
+ 7.43792869982656,
+ -12.779868986565896,
+ 13.787162954061431,
+ -11.166415109848057,
+ -12.54654261672429,
+ 12.704399740866526,
+ -9.93367379524938,
+ 2.442166788655403,
+ 2.0566620501119273,
+ -7.14972807659205,
+ -0.7535325739012732,
+ 6.9124021959353925,
+ -10.207961101562258,
+ 13.295982768479071,
+ -12.97820475397096,
+ 8.711603614467402,
+ 11.730167721659399,
+ -10.750125457740063,
+ 7.430328030454135,
+ 0.35429645370611496,
+ -4.643662824103379,
+ 8.658007841236534,
+ 3.2592049469564297,
+ -8.818572230425142,
+ 11.170330412258894,
+ -12.514950935967997,
+ 11.433400138277205,
+ -6.767563059794567,
+ -10.14047334917546,
+ 13.271341436719325,
+ -14.171000009987255,
+ 5.026015838634043,
+ -0.5941551171859257,
+ -5.2764635161865945,
+ 1.5417201766737634,
+ 4.733194172410803,
+ -8.616418565872696,
+ 13.616950954130688,
+ -14.667192215811552,
+ 11.602681563670345,
+ 12.887617157941339,
+ -13.715617020888912,
+ 11.226628245131375,
+ -3.6685258437561985,
+ -0.26475357142529254,
+ 5.1375395783167095,
+ -2.541098841762901e-13,
+ -2.371692252312041e-13,
+ -4.1165801236558996e-13,
+ -1.1858461261560205e-14,
+ -4.404571325722362e-14,
+ 1.8465318250143747e-13,
+ 1.1180834903756764e-13,
+ 9.910285482875314e-14,
+ 1.1519648082658485e-13,
+ -1.6093625997831706e-13,
+ -1.5161889755851976e-13,
+ 4.438452643612534e-13,
+ -3.5321273900504324e-13,
+ -2.913793338554793e-13,
+ -4.2182240773264157e-13,
+ -9.232659125071874e-14,
+ -8.250100906256885e-13,
+ 3.5490680489955184e-13,
+ -6.386628422297425e-13,
+ 7.623296525288703e-15,
+ -3.9979955110402976e-13,
+ 3.4558944247975454e-13,
+ -2.430984558619842e-13,
+ -1.0587911840678754e-13,
+ 4.819617469876969e-13,
+ -1.7364175418713157e-13,
+ 5.082197683525802e-14,
+ 4.997494388800372e-14,
+ -1.6517142471458857e-13,
+ 4.472333961502706e-13,
+ -1.2705494208814505e-13,
+ 5.709002064493984e-13,
+ -2.73591641963139e-13,
+ 2.642742795433417e-13,
+ -1.5077186461126546e-13,
+ -4.912791094074942e-14,
+ -3.6422416731934915e-13,
+ -1.3552527156068805e-14,
+ 3.3373098121819433e-13,
+ 8.2924525536196e-13,
+ 3.4389537658524594e-13,
+ 6.437450399132683e-14,
+ -1.2959604092990795e-13,
+ -7.004962473793064e-13,
+ 6.85249654328729e-13,
+ -1.2451384324638215e-13,
+ 1.1434944787933055e-13,
+ 1.3552527156068805e-13,
+ -3.091670257478196e-13,
+ 3.1848438816761693e-13,
+ 2.998496633280223e-13,
+ -2.329340604949326e-13,
+ -3.091670257478196e-13,
+ 6.979551485375435e-13,
+ -6.318865786517081e-13,
+ -8.258571235729428e-13,
+ -1.6940658945086007e-15,
+ 4.396100996249819e-13,
+ -4.235164736271502e-14,
+ -9.317362419797304e-14,
+ 2.0837010502455788e-13,
+ -4.828087799349512e-13,
+ 5.869938324472301e-13,
+ 1.3552527156068805e-14
+ ],
+ [
+ 1.827704227676739,
+ -4.390849125490555,
+ 5.408689897546962,
+ -7.769937339979419,
+ 7.904153776390233,
+ -5.802416412111676,
+ -7.275099163881082,
+ 6.748794948646634,
+ -4.759627404564717,
+ 0.019357294331373755,
+ 2.637085259408573,
+ -5.185857415236559,
+ -1.7272572327319546,
+ 5.262710195509456,
+ -6.817966469777198,
+ 7.755623272310999,
+ -7.0704067138840605,
+ 4.142589698802991,
+ 6.546863463710193,
+ -5.2956127070984955,
+ 3.0827380791424672,
+ 1.686997790408347,
+ -4.091443472478381,
+ 5.94733048496916,
+ 3.2131021256447205,
+ -6.205925987691542,
+ 7.1683640154097645,
+ -7.009033439248428,
+ 5.9163255538589965,
+ -2.7919606527630596,
+ -5.6763719711803375,
+ 7.853026982507714,
+ -7.817307899827801,
+ 1.7594392207712923,
+ 1.059823442663989,
+ -4.311923419124877,
+ -0.3400689227582051,
+ 4.1631853438719695,
+ -6.194218903494122,
+ 8.459090057820918,
+ -8.623000140838823,
+ 6.292099066987015,
+ 7.71628611665676,
+ -7.568114639983121,
+ 5.744102243158,
+ -0.868828067825406,
+ -1.7702625471448703,
+ 4.613761566494897,
+ -2.1302878623445654e-13,
+ -1.6771252355635147e-13,
+ -2.473336205982557e-13,
+ -6.776263578034403e-15,
+ -4.1081097941833566e-14,
+ 1.6601845766184287e-13,
+ 7.919758056827708e-14,
+ 1.164670302474663e-13,
+ 6.776263578034403e-14,
+ -1.0206747014414319e-13,
+ -1.2197274440461925e-13,
+ 2.591920818598159e-13,
+ -2.0244087439377778e-13,
+ -1.2536087619363645e-13,
+ -2.3505164286306834e-13,
+ -5.929230630780102e-14,
+ -4.180107594699972e-13,
+ 1.7110065534536867e-13,
+ -2.879912020664621e-13,
+ -4.235164736271502e-15,
+ -2.5961559833344305e-13,
+ 2.1599340154984659e-13,
+ -9.910285482875314e-14,
+ -1.0714966782766899e-13,
+ 2.3589867581032264e-13,
+ -4.743384504624082e-14,
+ 4.446922973085077e-14,
+ 2.710505431213761e-14,
+ -1.198551620364835e-13,
+ 2.524158182817815e-13,
+ -6.352747104407253e-14,
+ 3.3711911300721153e-13,
+ -1.5670109524204556e-13,
+ 1.249373597200093e-13,
+ -8.343274530454858e-14,
+ -1.3552527156068805e-14,
+ -2.0582900618279498e-13,
+ 1.3976043629695956e-14,
+ 2.346281263894412e-13,
+ 5.463362509790237e-13,
+ 2.2573428044327104e-13,
+ 7.115076756936123e-14,
+ -1.2705494208814505e-13,
+ -4.3537493488871037e-13,
+ 4.4257471494037193e-13,
+ -8.682087709356578e-14,
+ 1.0587911840678754e-14,
+ 1.164670302474663e-13,
+ -1.5331296345302836e-13,
+ 1.7321823771350442e-13,
+ 1.9312351197398048e-13,
+ -1.5966571055743561e-13,
+ -2.1684043449710089e-13,
+ 4.357984513623375e-13,
+ -4.0149361699853836e-13,
+ -5.268544931921748e-13,
+ -2.710505431213761e-14,
+ 2.430984558619842e-13,
+ -4.277516383634217e-14,
+ -4.870439446712227e-14,
+ 1.6898307297723292e-13,
+ -2.8079142201480056e-13,
+ 2.380162581784584e-13,
+ -7.623296525288703e-15
+ ],
+ [
+ 5.168444249451511,
+ -2.3913140856227715,
+ -1.5269351303828327,
+ 7.368976472218358,
+ -10.263735166176692,
+ 9.498744021967815,
+ 8.33494980918537,
+ -11.1767245843237,
+ 9.686274649558017,
+ -5.920396979511619,
+ 2.2506107111607725,
+ 1.5453688206063338,
+ -3.4655961231684977,
+ -1.5535433194426964,
+ 3.9991688503887106,
+ -8.65299913937499,
+ 9.153615334250132,
+ -8.557580354032517,
+ -8.536930844507992,
+ 9.169259163491514,
+ -8.695897456011188,
+ 4.355717789156536,
+ -2.095139035399006,
+ -2.850352168735544,
+ 1.9511504971362839,
+ 1.6175490675699782,
+ -5.252531467958271,
+ 9.072207100775724,
+ -10.63099283775718,
+ 8.005093567188794,
+ 8.808377497775025,
+ -9.152913300892733,
+ 10.638489059742774,
+ -6.88380786887204,
+ 3.8831993793773507,
+ -0.35458355711261424,
+ -4.811916184238377,
+ 0.40041810174525,
+ 2.015006882688933,
+ -7.259369469788839,
+ 8.493038577299089,
+ -9.004716809679294,
+ -7.756774211529659,
+ 9.41777685396202,
+ -9.783503335708817,
+ 6.329958875654769,
+ -5.673601514238321,
+ 1.6787014634221753,
+ -6.437450399132683e-14,
+ 5.929230630780102e-14,
+ 2.439454888092385e-13,
+ 2.0328790734103208e-14,
+ -4.235164736271502e-14,
+ 1.0164395367051604e-13,
+ -5.929230630780102e-14,
+ 1.1519648082658485e-13,
+ -4.912791094074942e-14,
+ 9.656175598699024e-14,
+ -6.776263578034403e-15,
+ -3.066259269060567e-13,
+ 2.998496633280223e-13,
+ 3.1679032227310833e-13,
+ 3.032377951170395e-13,
+ 8.470329472543003e-15,
+ 8.199278929421627e-13,
+ -3.8116482626443515e-13,
+ 6.759322919089317e-13,
+ -1.2027867851011065e-13,
+ 1.5585406229479126e-13,
+ -1.7110065534536867e-13,
+ 2.1684043449710089e-13,
+ 2.879912020664621e-14,
+ -4.37069000783219e-13,
+ 2.727446090158847e-13,
+ 3.7269449679189215e-14,
+ -2.0328790734103208e-14,
+ 1.6940658945086007e-15,
+ -2.761327408049019e-13,
+ 1.6093625997831706e-13,
+ -3.1848438816761693e-13,
+ 1.2366681029912785e-13,
+ -1.9481757786848908e-13,
+ 1.3213713977167085e-13,
+ 5.929230630780102e-14,
+ 2.320870275476783e-13,
+ 7.792703114739563e-14,
+ -3.8963515573697816e-14,
+ -3.7100043089738355e-13,
+ -9.486769009248164e-14,
+ 5.251604272976662e-14,
+ 1.1858461261560205e-14,
+ 4.3368086899420177e-13,
+ -3.015437292225309e-13,
+ 4.235164736271502e-14,
+ -3.015437292225309e-13,
+ 1.6940658945086007e-15,
+ 2.846030702774449e-13,
+ -2.947674656444965e-13,
+ -1.4568966692773966e-13,
+ 1.2874900798265365e-13,
+ 4.404571325722362e-14,
+ -3.117081245895825e-13,
+ 2.829090043829363e-13,
+ 3.9302328752599536e-13,
+ -7.115076756936123e-14,
+ -3.7438856268640075e-13,
+ -1.1519648082658485e-13,
+ 5.082197683525802e-14,
+ 4.404571325722362e-14,
+ 3.3542504711270293e-13,
+ -6.420509740187597e-13,
+ -8.470329472543003e-15
+ ],
+ [
+ 6.207857600988087,
+ -1.9386884440859145,
+ -3.7701100498861093,
+ 12.231132045542397,
+ -16.304752050851768,
+ 14.392117787465068,
+ 13.3424165021932,
+ -17.128221111731627,
+ 14.295783587370252,
+ -7.788391839471928,
+ 1.872120150248988,
+ 3.731500241727433,
+ -3.9875457297711514,
+ -3.9879083186017072,
+ 7.488995479280658,
+ -13.907862094603317,
+ 14.119587067697525,
+ -12.600403898074731,
+ -13.358351258420432,
+ 13.560603558334789,
+ -12.438355239855737,
+ 5.180493833835236,
+ -1.6455061976161929,
+ -5.684606752289012,
+ 1.5224855141022395,
+ 3.927351182964416,
+ -9.244777160605913,
+ 14.22311877338313,
+ -16.139080088834305,
+ 11.44489543226193,
+ 13.443589100010854,
+ -14.651499617960205,
+ 16.546649470523455,
+ -9.623193732122411,
+ 4.5342202095258,
+ 0.9468140260586001,
+ -6.210870371203846,
+ -1.0584783661123394,
+ 4.674579924477743,
+ -12.30281499640923,
+ 13.755639451008847,
+ -13.888586159586103,
+ -12.712290260484384,
+ 14.627430011904332,
+ -14.73604321133058,
+ 8.610917629801792,
+ -7.110353506809246,
+ 0.7093676795164171,
+ -3.3881317890172014e-15,
+ 1.2874900798265365e-13,
+ 3.9641141931501256e-13,
+ 2.0328790734103208e-14,
+ -6.098637220230962e-14,
+ 1.0503208545953324e-13,
+ -9.486769009248164e-14,
+ 1.0164395367051604e-13,
+ -7.115076756936123e-14,
+ 1.6940658945086007e-13,
+ 2.0328790734103208e-14,
+ -4.845028458294598e-13,
+ 4.743384504624082e-13,
+ 4.438452643612534e-13,
+ 4.675621868843738e-13,
+ 2.371692252312041e-14,
+ 1.2536087619363645e-12,
+ -5.488773498207866e-13,
+ 9.825582188149884e-13,
+ -1.5924219408380846e-13,
+ 2.710505431213761e-13,
+ -3.117081245895825e-13,
+ 2.981555974335137e-13,
+ 6.098637220230962e-14,
+ -6.335806445462167e-13,
+ 3.9302328752599536e-13,
+ 5.082197683525802e-14,
+ -3.7269449679189215e-14,
+ 2.371692252312041e-14,
+ -4.573977915173222e-13,
+ 2.236166980751353e-13,
+ -5.183841637196318e-13,
+ 1.7957098481791167e-13,
+ -2.676624113323589e-13,
+ 2.0667603913004928e-13,
+ 7.453889935837843e-14,
+ 3.7608262858090935e-13,
+ 9.825582188149884e-14,
+ -1.1180834903756764e-13,
+ -6.776263578034403e-13,
+ -1.9312351197398048e-13,
+ 5.082197683525802e-14,
+ 6.437450399132683e-14,
+ 7.250602028496811e-13,
+ -5.285485590866834e-13,
+ 6.776263578034403e-14,
+ -4.2012834183813297e-13,
+ -5.082197683525802e-14,
+ 4.2012834183813297e-13,
+ -4.573977915173222e-13,
+ -2.507217523872729e-13,
+ 2.1684043449710089e-13,
+ 1.1519648082658485e-13,
+ -5.421010862427522e-13,
+ 5.149960319306146e-13,
+ 6.877907531704919e-13,
+ -8.470329472543003e-14,
+ -5.861467994999758e-13,
+ -1.5585406229479126e-13,
+ 7.115076756936123e-14,
+ 2.710505431213761e-14,
+ 5.421010862427522e-13,
+ -8.91078660511524e-13,
+ 1.0164395367051604e-14
+ ],
+ [
+ 2.5146310960253144,
+ -0.13456299107983757,
+ -2.8767103635933546,
+ 7.310636982432031,
+ -9.376645557658382,
+ 7.9092007658135115,
+ 7.726664694567559,
+ -9.519827273266527,
+ 7.646024717703031,
+ -3.6270110803379585,
+ 0.1790593073490991,
+ 2.818723440621269,
+ -1.4932576805344275,
+ -3.094440625020975,
+ 4.905537729646574,
+ -8.083573965639587,
+ 7.897822163106209,
+ -6.7224915861621035,
+ -7.575125115114426,
+ 7.268660581889884,
+ -6.428092703715574,
+ 2.06279203524159,
+ -0.05940723192317474,
+ -3.87871089704957,
+ 0.04440497669707614,
+ 2.9741744922299618,
+ -5.791267939694945,
+ 8.08005132748066,
+ -8.8865792165524,
+ 5.911541263819826,
+ 7.441803788853851,
+ -7.74699917496528,
+ 9.329522027179534,
+ -4.842584084296298,
+ 1.746158899638266,
+ 1.3403629961404067,
+ -2.8164470074924663,
+ -1.50177355230087,
+ 3.46491446843954,
+ -7.481406702660373,
+ 8.049760501459629,
+ -7.767863955684587,
+ -7.51625705690589,
+ 8.236361641890227,
+ -8.049840689406265,
+ 4.190633562049656,
+ -3.0863260965110397,
+ -0.6236441924100516,
+ 4.743384504624082e-14,
+ 8.809142651444724e-14,
+ 2.422514229147299e-13,
+ 6.776263578034403e-15,
+ -5.082197683525802e-15,
+ 3.8963515573697816e-14,
+ -6.098637220230962e-14,
+ 2.0328790734103208e-14,
+ -3.049318610115481e-14,
+ 1.1858461261560205e-13,
+ 3.8963515573697816e-14,
+ -2.829090043829363e-13,
+ 2.795208725939191e-13,
+ 2.253107639696439e-13,
+ 2.625802136488331e-13,
+ 1.3552527156068805e-14,
+ 7.013432803265607e-13,
+ -2.862971361719535e-13,
+ 5.268544931921748e-13,
+ -7.962109704190423e-14,
+ 1.9312351197398048e-13,
+ -1.8804131429045468e-13,
+ 1.4060746924421386e-13,
+ 6.776263578034403e-14,
+ -3.4897757426877174e-13,
+ 1.9142944607947188e-13,
+ 6.776263578034403e-15,
+ -2.371692252312041e-14,
+ 2.710505431213761e-14,
+ -2.642742795433417e-13,
+ 1.2536087619363645e-13,
+ -3.066259269060567e-13,
+ 1.0333801956502464e-13,
+ -1.3383120566617945e-13,
+ 9.825582188149884e-14,
+ 4.404571325722362e-14,
+ 2.202285662861181e-13,
+ 3.5575383784680614e-14,
+ -6.945670167485263e-14,
+ -4.438452643612534e-13,
+ -1.2874900798265365e-13,
+ -1.1858461261560205e-14,
+ 7.792703114739563e-14,
+ 4.404571325722362e-13,
+ -3.5405977195229754e-13,
+ 5.082197683525802e-14,
+ -2.0667603913004928e-13,
+ -4.743384504624082e-14,
+ 2.371692252312041e-13,
+ -2.558039500707987e-13,
+ -1.5754812818929986e-13,
+ 1.3721933745519665e-13,
+ 8.809142651444724e-14,
+ -3.3373098121819433e-13,
+ 3.3881317890172014e-13,
+ 4.404571325722362e-13,
+ -3.218725199566341e-14,
+ -3.1509625637859973e-13,
+ -8.978549240895584e-14,
+ 3.8963515573697816e-14,
+ -2.0328790734103208e-14,
+ 3.049318610115481e-13,
+ -4.590918574118308e-13,
+ 1.1858461261560205e-14
+ ],
+ [
+ -9.276174047922732,
+ 5.56471308841492,
+ -1.3362308026281497,
+ -6.098052303240957,
+ 9.345660050750391,
+ -10.762465864318921,
+ -7.931931307420047,
+ 11.566227277680483,
+ -11.788020050196275,
+ 9.2320201618935,
+ -6.518462368385824,
+ 1.2055823768506777,
+ 6.625287824033052,
+ -2.4039890510503983,
+ -1.5030911461304453,
+ 8.14659493850086,
+ -10.570346155687952,
+ 10.505741214665928,
+ 8.812272996805145,
+ -11.821094828141645,
+ 11.4423641556959,
+ -7.936147966047684,
+ 4.903951576057546,
+ 0.3632955891346149,
+ -5.230283130815824,
+ 0.5789553315272835,
+ 3.2503936073753135,
+ -9.274985245437081,
+ 11.289033216974229,
+ -10.514529619359937,
+ -9.77103320037837,
+ 11.843944996824485,
+ -11.158262821640946,
+ 9.532936384638996,
+ -7.9723414354773166,
+ 3.5586687328770967,
+ 7.7656756855398,
+ -4.685088122496225,
+ 1.1505008553925773,
+ 5.49944248297806,
+ -8.479855103576835,
+ 9.72644946439095,
+ 6.798802359182422,
+ -10.648982043634337,
+ 11.306955149304429,
+ -9.249005244408169,
+ 8.871650438597905,
+ -5.760138959198895,
+ 1.9778219318387913e-13,
+ -3.006966962752766e-14,
+ -1.3637230450794235e-13,
+ -1.5246593050577406e-14,
+ 1.164670302474663e-13,
+ -1.7575933655526732e-13,
+ 1.0164395367051604e-14,
+ -2.185345003916095e-13,
+ 5.039846036163087e-14,
+ -5.505714157152952e-15,
+ 1.520424140321469e-13,
+ 2.718975760686304e-13,
+ -2.0879362149818503e-13,
+ -4.4765691262389773e-13,
+ -2.837560373301906e-13,
+ -3.6845933205562065e-14,
+ -8.571973426213519e-13,
+ 4.696797692525095e-13,
+ -8.211984423630442e-13,
+ 1.0714966782766899e-13,
+ 6.776263578034403e-15,
+ 1.6305384234645282e-13,
+ -3.4982460721602604e-13,
+ 1.7914746834428452e-13,
+ 5.247369108240391e-13,
+ -4.552802091491864e-13,
+ -8.766791004082009e-14,
+ 4.319868030996932e-14,
+ 9.317362419797304e-15,
+ 3.21449003483007e-13,
+ -1.266314256145179e-13,
+ 3.032377951170395e-13,
+ -1.5712461171567271e-13,
+ 3.1848438816761693e-13,
+ -1.9947625907838773e-13,
+ -1.3383120566617945e-13,
+ -2.659683454378503e-13,
+ -1.283254915090265e-13,
+ 6.437450399132683e-14,
+ 1.6135977645194421e-13,
+ 7.877406409464993e-14,
+ -1.6686549060909717e-13,
+ 2.1980504981249094e-13,
+ -2.9857911390714087e-13,
+ 1.452661504541125e-13,
+ 1.7787691892340307e-14,
+ 3.9641141931501256e-13,
+ -9.402065714522734e-14,
+ -2.922263668027336e-13,
+ 2.5453340064991725e-13,
+ 1.130788984584491e-13,
+ -8.131516293641283e-14,
+ -1.1858461261560205e-14,
+ 2.3928680759933985e-13,
+ -1.9566461081574338e-13,
+ -1.9862922613113343e-13,
+ 1.4823076576950256e-13,
+ 4.1419911120735287e-13,
+ 4.573977915173222e-14,
+ -5.929230630780102e-14,
+ -1.7025362239811437e-13,
+ -3.1043757516870107e-13,
+ 8.707498697774207e-13,
+ 6.818615225397118e-14
+ ],
+ [
+ -9.308227543451597,
+ 4.870086866466909,
+ -0.22108384134337744,
+ -8.071570992330233,
+ 11.501946942368212,
+ -12.523901521287142,
+ -9.882745898253495,
+ 13.5739384549397,
+ -13.369985420453348,
+ 9.663847499291466,
+ -6.243346420740697,
+ 0.1327401983413771,
+ 6.556209580821682,
+ -1.3668546640836128,
+ -3.056576307154412,
+ 10.2117952775311,
+ -12.595585685218278,
+ 11.893885188418633,
+ 10.645215350828275,
+ -13.518022203349929,
+ 12.64326874131856,
+ -7.9366849435319375,
+ 4.24385595193128,
+ 1.6743722811592459,
+ -4.773379039306792,
+ -0.7416704199996602,
+ 4.960982466023952,
+ -11.23008390663213,
+ 13.10273683744933,
+ -11.60930948482003,
+ -11.45911740053669,
+ 13.215094938399643,
+ -12.838447643295527,
+ 10.357395808038909,
+ -8.107839077573525,
+ 2.78503766787061,
+ 8.051319315124253,
+ -3.992926617044304,
+ -0.1442915325076546,
+ 7.5950840377352895,
+ -10.746117133170458,
+ 11.54627100703164,
+ 8.792948612462201,
+ -12.786152501404061,
+ 13.080762011671585,
+ -9.866582680991778,
+ 8.900531724624756,
+ -5.022987309441796,
+ 1.5415999640028266e-13,
+ -6.437450399132683e-14,
+ -2.0921713797181218e-13,
+ -1.4823076576950256e-14,
+ 1.0291450309139749e-13,
+ -1.528894469794012e-13,
+ 2.837560373301906e-14,
+ -2.0328790734103208e-13,
+ 6.183340514956392e-14,
+ -4.1504614415460717e-14,
+ 1.2536087619363645e-13,
+ 3.392366953753473e-13,
+ -2.73591641963139e-13,
+ -4.938202082492571e-13,
+ -3.5067164016328034e-13,
+ -4.573977915173222e-14,
+ -1.0033105260227188e-12,
+ 5.175371307723775e-13,
+ -9.330067914006118e-13,
+ 1.0206747014414319e-13,
+ -6.056285572868247e-14,
+ 2.1133472033994793e-13,
+ -3.9471735342050396e-13,
+ 1.6051274350468991e-13,
+ 6.098637220230962e-13,
+ -4.781500987250525e-13,
+ -7.792703114739563e-14,
+ 5.251604272976662e-14,
+ -1.6940658945086007e-14,
+ 3.97681968735894e-13,
+ -1.49501315190384e-13,
+ 3.925997710523682e-13,
+ -1.9735867671025198e-13,
+ 3.5151867311053464e-13,
+ -2.1048768739269363e-13,
+ -1.452661504541125e-13,
+ -3.3034284942917713e-13,
+ -1.3129010682441655e-13,
+ 9.529120656610879e-14,
+ 2.8841471854008927e-13,
+ 1.3044307387716225e-13,
+ -1.5246593050577406e-13,
+ 2.0074680849926918e-13,
+ -4.069993311556913e-13,
+ 2.6469779601696886e-13,
+ 1.2705494208814505e-15,
+ 4.129285617864714e-13,
+ -7.835054762102278e-14,
+ -3.46859991900636e-13,
+ 3.057788939588024e-13,
+ 1.5712461171567271e-13,
+ -1.139259314057034e-13,
+ -6.564505341220828e-14,
+ 3.4643647542700884e-13,
+ -3.066259269060567e-13,
+ -3.324604317973129e-13,
+ 1.478072492958754e-13,
+ 4.811147140404426e-13,
+ 5.082197683525802e-14,
+ -6.945670167485263e-14,
+ -1.401839527705867e-13,
+ -3.866705404215881e-13,
+ 9.584177798182408e-13,
+ 7.157428404298838e-14
+ ],
+ [
+ -0.48010990478167825,
+ -1.2358779548509269,
+ 2.321228423560407,
+ -4.483555233069907,
+ 5.017837509893025,
+ -4.237827181937936,
+ -4.5164773557999105,
+ 4.799220088313261,
+ -3.900222701116932,
+ 1.331557697766429,
+ 0.29799231165992013,
+ -2.2367172618254383,
+ 0.14657337529015865,
+ 2.1072955830450115,
+ -3.382970959180795,
+ 4.770186673651172,
+ -4.792458780908106,
+ 3.4295590564577556,
+ 4.303923360508622,
+ -4.147112163469493,
+ 3.071422643503397,
+ -0.35335944798990504,
+ -1.191489751165685,
+ 2.814910949542616,
+ 0.743239934439626,
+ -2.79348666027947,
+ 3.7958911604902785,
+ -4.58522866825972,
+ 4.372765291295688,
+ -2.803697184413518,
+ -4.037241350849798,
+ 3.4526626448822513,
+ -2.3912336451306726,
+ 2.1830739321179053,
+ -0.6430789483975462,
+ -1.4935520117050054,
+ 0.9544182127517874,
+ 1.2696364274239342,
+ -2.7129644988158272,
+ 4.717687382664169,
+ -5.214197623982941,
+ 4.316486122594482,
+ 4.558689716828389,
+ -5.0348905040780245,
+ 4.288401632869082,
+ -1.7288365495308486,
+ 0.45537597791762335,
+ 1.317975826007266,
+ -8.491505296224361e-14,
+ -7.22095587534291e-14,
+ -1.5606582053160484e-13,
+ 1.6940658945086007e-15,
+ -1.588186776101813e-14,
+ 3.134021904840911e-14,
+ 4.235164736271502e-14,
+ 2.583450489125616e-14,
+ 2.541098841762901e-14,
+ -7.792703114739563e-14,
+ -5.124549330888517e-14,
+ 1.5924219408380846e-13,
+ -1.3976043629695956e-13,
+ -1.1667878848427987e-13,
+ -1.5352472168984194e-13,
+ -2.4775713707188285e-14,
+ -3.502481236896532e-13,
+ 1.274784585617722e-13,
+ -2.7083878488456253e-13,
+ -1.3552527156068805e-14,
+ -1.4886604047994328e-13,
+ 1.1011428314305904e-13,
+ -1.0820845901173687e-13,
+ -3.197549375884984e-14,
+ 2.0688779736686286e-13,
+ -7.538593230563273e-14,
+ 1.376428539288238e-14,
+ 3.006966962752766e-14,
+ -5.336307567702092e-14,
+ 1.7724164421296235e-13,
+ -5.421010862427522e-14,
+ 2.0709955560367643e-13,
+ -9.804406364468526e-14,
+ 8.406802001498931e-14,
+ -3.4304834363799164e-14,
+ -2.3505164286306834e-14,
+ -1.4420735927004463e-13,
+ -1.461131834013668e-14,
+ 7.792703114739563e-14,
+ 2.8079142201480056e-13,
+ 1.1265538198482195e-13,
+ 2.414043899674756e-14,
+ -2.5199230180815435e-14,
+ -2.4839241178232357e-13,
+ 2.6215669717520595e-13,
+ -3.494010907423989e-14,
+ 5.675120746603812e-14,
+ 3.176373552203626e-14,
+ -1.3573702979750163e-13,
+ 1.1583175553702557e-13,
+ 9.931461306556671e-14,
+ -7.602120701607346e-14,
+ -1.1625527201065272e-13,
+ 2.3759274170483125e-13,
+ -2.439454888092385e-13,
+ -2.9349691622361507e-13,
+ -4.2351647362715017e-16,
+ 1.6601845766184287e-13,
+ 1.545835128739098e-14,
+ -2.795208725939191e-14,
+ 5.251604272976662e-14,
+ -1.6961834768767364e-13,
+ 2.310282363636104e-13,
+ 3.1763735522036263e-15
+ ],
+ [
+ 10.26792670616433,
+ -9.670119565457844,
+ 6.98561925446306,
+ -2.851288691376187,
+ 0.10003332304280732,
+ 3.434010225017997,
+ -0.6785310363269312,
+ -3.1263087491464754,
+ 5.469195713319373,
+ -8.252382279884623,
+ 8.679020219074193,
+ -6.6307445510736125,
+ -7.785900315817773,
+ 7.802021209140293,
+ -5.950047892984824,
+ 0.9997707059139069,
+ 1.9207842273407731,
+ -4.981165117248894,
+ -0.8905353137841373,
+ 4.941008803843304,
+ -6.954605889101039,
+ 8.916847250201624,
+ -8.757678402228388,
+ 6.03901028780537,
+ 8.125210187082256,
+ -7.144994831824006,
+ 4.758813675470964,
+ 0.8098684283012259,
+ -3.7688156324159237,
+ 6.4336839784498085,
+ 2.6804441859811186,
+ -6.568776121133395,
+ 9.164877257208401,
+ -6.659785550744467,
+ 8.293820509806451,
+ -7.804000002563171,
+ -7.323217615722096,
+ 8.669332682999256,
+ -7.660295622020239,
+ 4.124619516164639,
+ -1.6139788720869486,
+ -1.9825063719511198,
+ 2.1651499466336457,
+ 1.4587343886885888,
+ -3.985127740957035,
+ 7.358032194118546,
+ -9.828904050411786,
+ 10.09885754843564,
+ -4.377042754936597e-13,
+ -1.2620790914089075e-13,
+ -1.8973538018496328e-13,
+ 2.244637310223896e-14,
+ -1.7522994096323338e-13,
+ 2.814266967252413e-13,
+ 8.75620309224133e-14,
+ 3.3002521207395677e-13,
+ -5.505714157152952e-15,
+ -1.7406527066075872e-13,
+ -3.0450834453792097e-13,
+ 3.5469504666273827e-14,
+ -6.109225132071641e-14,
+ 2.8079142201480056e-13,
+ -5.1880768019325896e-15,
+ -1.3234889800848443e-14,
+ 2.430984558619842e-13,
+ -2.7909735612029196e-13,
+ 3.8624702394796095e-13,
+ -1.6675961149069038e-13,
+ -3.5321273900504324e-13,
+ 5.293955920339377e-14,
+ 1.8200620454126779e-13,
+ -2.9360279534202186e-13,
+ -1.6517142471458857e-13,
+ 3.801060350803673e-13,
+ 1.3901928246811204e-13,
+ 1.9693516023662483e-14,
+ -1.3361944742936588e-13,
+ 1.2811373327221293e-14,
+ 3.134021904840911e-14,
+ 1.0640851399882148e-13,
+ -3.5998900258307764e-14,
+ -1.9926450084157415e-13,
+ 1.6443027088574105e-13,
+ 1.130788984584491e-13,
+ -4.023406499457927e-15,
+ 1.2112571145736495e-13,
+ 1.0725554694607578e-13,
+ 4.4850394557115203e-13,
+ 1.6263032587282567e-13,
+ 2.5887444450459554e-13,
+ -3.247312561536174e-13,
+ -2.0879362149818503e-13,
+ 4.2605757246891307e-13,
+ -1.0333801956502464e-13,
+ -3.534244972418568e-13,
+ 1.895236219481497e-13,
+ 4.213988912590144e-14,
+ -4.648093298057973e-14,
+ 9.063252535621014e-14,
+ -7.64447234897006e-14,
+ -2.541098841762901e-13,
+ 2.5305109299222223e-13,
+ -3.2176664083822734e-13,
+ -4.3230444045491354e-13,
+ -1.8814719340886146e-13,
+ -1.2123159057577174e-13,
+ -1.9693516023662483e-14,
+ 7.835054762102278e-15,
+ 3.2769587146900744e-13,
+ -7.517417406881916e-15,
+ -5.305602623364124e-13,
+ -8.099752558119247e-14
+ ],
+ [
+ 11.222890524794854,
+ -9.94739775159396,
+ 6.659505091080986,
+ -1.4150291017412082,
+ -1.74159346058779,
+ 5.255967740416417,
+ 0.9344973648538801,
+ -5.131838439798203,
+ 7.320948849389604,
+ -9.368403834740512,
+ 9.226837296092318,
+ -6.30888517717112,
+ -8.42987677685515,
+ 7.616608884571462,
+ -5.15418500616293,
+ -0.6824151339968568,
+ 3.8324775246960585,
+ -6.622486662942783,
+ -2.544124621383148,
+ 6.843725781161338,
+ -8.613477916387806,
+ 9.722724983034087,
+ -8.982176522996893,
+ 5.4592335967598995,
+ 8.466977081776985,
+ -6.656916543413867,
+ 3.720515351273999,
+ 2.5610138668321083,
+ -5.6658699388879885,
+ 7.954420207483949,
+ 4.37138057204275,
+ -8.338909110027423,
+ 10.740560061536359,
+ -7.197531481961105,
+ 9.159259808461252,
+ -7.8449178697497715,
+ -8.229847692241513,
+ 8.858338868928808,
+ -7.240938470125226,
+ 2.6985599026250005,
+ 0.1852972475824849,
+ -3.723467201634914,
+ 0.6492105381790421,
+ 3.4247594147586033,
+ -5.867483097704041,
+ 8.552694081559377,
+ -10.741486094391739,
+ 10.378367834887747,
+ -4.400865556578124e-13,
+ -1.0984958534704208e-13,
+ -1.469602163486211e-13,
+ 2.3928680759933985e-14,
+ -1.826414792517085e-13,
+ 2.9111463605946235e-13,
+ 7.893288277226011e-14,
+ 3.4553650292055114e-13,
+ -1.4717197458543468e-14,
+ -1.581834028997406e-13,
+ -3.093258444254298e-13,
+ -2.022291161569642e-14,
+ -1.4081922748102743e-14,
+ 3.450600468877206e-13,
+ 5.09807955128682e-14,
+ -5.1880768019325896e-15,
+ 3.9064100736184264e-13,
+ -3.477599644070937e-13,
+ 5.155783670818519e-13,
+ -1.7496524316721641e-13,
+ -3.2510183306804115e-13,
+ 1.641126335305207e-14,
+ 2.354751593366955e-13,
+ -3.04243646741904e-13,
+ -2.542687028539003e-13,
+ 4.3717487990162576e-13,
+ 1.4404854059243445e-13,
+ 1.0323214044661785e-14,
+ -1.239844476543482e-13,
+ -5.113961419047838e-14,
+ 5.3574833913834496e-14,
+ 3.8116482626443515e-14,
+ -2.6999175193730823e-15,
+ -2.448984008748996e-13,
+ 1.9005301754018364e-13,
+ 1.3065483211397583e-13,
+ 4.8757334026325663e-14,
+ 1.3568409023829824e-13,
+ 8.634442106073524e-14,
+ 3.7962957904753673e-13,
+ 1.3367238698856927e-13,
+ 2.702564497333252e-13,
+ -3.4024254700021177e-13,
+ -1.326665353637048e-13,
+ 3.620007058328066e-13,
+ -9.77793658486683e-14,
+ -4.011230400841146e-13,
+ 1.9185296255309903e-13,
+ 9.5185327447702e-14,
+ -9.280304728354928e-14,
+ 6.072167440629266e-14,
+ -5.458068553869898e-14,
+ -2.3081647812679684e-13,
+ 1.8460024294223408e-13,
+ -2.5617452698522246e-13,
+ -3.567596894716706e-13,
+ -2.0180559968333706e-13,
+ -1.9164120431628545e-13,
+ -2.710505431213761e-14,
+ 1.7999450129153882e-14,
+ 3.3346628342217736e-13,
+ 5.505714157152952e-14,
+ -6.556035011748285e-13,
+ -8.793260783683705e-14
+ ],
+ [
+ -7.931352167317246,
+ 8.053661708547876,
+ -7.468019499585372,
+ 5.826045042295543,
+ -4.753603363607659,
+ 0.5425615723030054,
+ 4.097067646143602,
+ -1.9650391806381167,
+ -1.380754169457821,
+ 5.66903325080941,
+ -8.030224575080306,
+ 7.147066188372264,
+ 6.22349621475813,
+ -8.731324612368807,
+ 7.481975537156707,
+ -4.52350006224936,
+ 1.4283508462703411,
+ 1.384215794224062,
+ -2.6181842099912105,
+ -1.526581001233698,
+ 3.2582138553718436,
+ -6.949004718291274,
+ 7.283420109431797,
+ -7.0794871181002765,
+ -7.154683045335248,
+ 7.2256899380464334,
+ -6.8148015998736104,
+ 2.936402936734531,
+ -1.1118307290620462,
+ -3.011439181425587,
+ 0.999121049254015,
+ 1.878090744888542,
+ -5.555756482048947,
+ 7.068300915528336,
+ -6.982379286507138,
+ 7.516290043967019,
+ 5.217638509293427,
+ -8.778301993272024,
+ 8.341820650967948,
+ -7.011499704664217,
+ 4.618725269525951,
+ -1.736055183118749,
+ -5.290267150308631,
+ 1.9857374827706633,
+ -0.09648038614661172,
+ -4.611233119190815,
+ 6.8633535100846625,
+ -9.19665959160397,
+ 3.9641141931501256e-13,
+ 1.4738373282224826e-13,
+ 2.812149384884277e-13,
+ -1.3552527156068805e-14,
+ 1.4060746924421386e-13,
+ -1.9820570965750628e-13,
+ -1.1011428314305904e-13,
+ -2.862971361719535e-13,
+ -1.6940658945086007e-15,
+ 2.1514636860259229e-13,
+ 2.829090043829363e-13,
+ -1.7279472123987727e-13,
+ 2.1514636860259229e-13,
+ -1.5754812818929986e-13,
+ 1.3552527156068805e-13,
+ -1.6940658945086007e-15,
+ 1.4738373282224826e-13,
+ 1.1180834903756764e-13,
+ -8.978549240895584e-14,
+ 7.115076756936123e-14,
+ 3.8455295805345235e-13,
+ -1.3044307387716225e-13,
+ -1.3721933745519665e-13,
+ 3.4050724479622874e-13,
+ -1.3552527156068805e-14,
+ -2.490276864927643e-13,
+ -1.0503208545953324e-13,
+ -3.3881317890172014e-14,
+ 1.1011428314305904e-13,
+ -1.1180834903756764e-13,
+ 4.573977915173222e-14,
+ -2.0328790734103208e-13,
+ 5.759824041329242e-14,
+ 1.5077186461126546e-13,
+ -1.0164395367051604e-13,
+ -8.978549240895584e-14,
+ 8.131516293641283e-14,
+ -8.978549240895584e-14,
+ -9.486769009248164e-14,
+ -6.14945919706622e-13,
+ -1.7279472123987727e-13,
+ -2.422514229147299e-13,
+ 3.5575383784680614e-13,
+ 4.2690460541616737e-13,
+ -5.353248226647178e-13,
+ 1.2027867851011065e-13,
+ 1.9142944607947188e-13,
+ -1.9820570965750628e-13,
+ 6.776263578034403e-14,
+ -9.994988777600744e-14,
+ -1.3383120566617945e-13,
+ 1.4738373282224826e-13,
+ 2.354751593366955e-13,
+ -3.3711911300721153e-13,
+ 4.2521053952165877e-13,
+ 5.827586677109586e-13,
+ 1.5415999640028266e-13,
+ -5.082197683525802e-14,
+ -6.268043809681823e-14,
+ -6.776263578034403e-15,
+ -2.744386749103933e-13,
+ 1.6432439176733427e-13,
+ 2.879912020664621e-13,
+ 9.147955830346444e-14
+ ],
+ [
+ -14.031573822461189,
+ 13.560476167468282,
+ -11.952626239593632,
+ 8.109676603601612,
+ -5.904418349677435,
+ -0.9798819908466618,
+ 5.083070908003643,
+ -1.1479446465946366,
+ -4.174688877932389,
+ 10.473573373928291,
+ -13.750437004279055,
+ 11.427849694565346,
+ 10.900600834075727,
+ -14.150636170325285,
+ 11.492135731023502,
+ -5.714690378725233,
+ 0.41065171489763735,
+ 3.9631387782378718,
+ -2.6094628365836106,
+ -4.441916586100758,
+ 7.064719686538382,
+ -12.261636634179972,
+ 12.238800019276397,
+ -11.052942246910812,
+ -12.123474860041249,
+ 11.411701860566659,
+ -10.146090950127112,
+ 3.03172083943105,
+ 0.1444414032747904,
+ -6.517855991648686,
+ -0.09413907509358534,
+ 4.933426526633955,
+ -10.760320529200564,
+ 11.611340901655426,
+ -12.177738545451676,
+ 12.408146460722365,
+ 9.515488932417023,
+ -14.61270249393457,
+ 13.293838229696442,
+ -10.07160480248806,
+ 5.775563932544213,
+ -1.0685053270075306,
+ -7.147518627944564,
+ 1.272131503086021,
+ 1.7746272917375954,
+ -8.814668008020698,
+ 12.254717980391376,
+ -15.419481380133641,
+ 6.454391058077769e-13,
+ 2.185345003916095e-13,
+ 4.2859867131067597e-13,
+ -2.371692252312041e-14,
+ 2.320870275476783e-13,
+ -3.2864878353466853e-13,
+ -1.8126505071242027e-13,
+ -4.79420648145934e-13,
+ 1.5246593050577406e-14,
+ 3.4389537658524594e-13,
+ 4.692562527788824e-13,
+ -2.202285662861181e-13,
+ 2.981555974335137e-13,
+ -3.2017845406212553e-13,
+ 1.7110065534536867e-13,
+ -1.6940658945086007e-14,
+ 7.115076756936123e-14,
+ 2.507217523872729e-13,
+ -2.795208725939191e-13,
+ 1.2197274440461925e-13,
+ 6.047815243395704e-13,
+ -1.7618285302889447e-13,
+ -2.761327408049019e-13,
+ 5.522654816098038e-13,
+ 6.437450399132683e-14,
+ -4.777265822514254e-13,
+ -1.9142944607947188e-13,
+ -5.082197683525802e-14,
+ 1.7787691892340307e-13,
+ -1.2197274440461925e-13,
+ 4.404571325722362e-14,
+ -2.710505431213761e-13,
+ 6.437450399132683e-14,
+ 3.032377951170395e-13,
+ -1.8973538018496328e-13,
+ -1.8126505071242027e-13,
+ 7.453889935837843e-14,
+ -1.6263032587282567e-13,
+ -1.3552527156068805e-13,
+ -9.368184396632562e-13,
+ -2.490276864927643e-13,
+ -4.0996394647108136e-13,
+ 5.878408653944844e-13,
+ 6.166399856011306e-13,
+ -8.199278929421627e-13,
+ 1.9481757786848908e-13,
+ 3.6591823321385775e-13,
+ -3.3542504711270293e-13,
+ 6.098637220230962e-14,
+ -1.1180834903756764e-13,
+ -1.9142944607947188e-13,
+ 2.202285662861181e-13,
+ 3.6253010142484055e-13,
+ -4.9636130709102e-13,
+ 6.454391058077769e-13,
+ 8.707498697774207e-13,
+ 2.676624113323589e-13,
+ -6.776263578034403e-15,
+ -8.300922883092143e-14,
+ -1.1858461261560205e-14,
+ -4.506215279392878e-13,
+ 2.0328790734103208e-13,
+ 6.183340514956392e-13,
+ 1.4907779871675686e-13
+ ],
+ [
+ -8.828065116318488,
+ 8.206089441015445,
+ -6.923661925579206,
+ 4.06153712055393,
+ -2.52819014894318,
+ -1.5352177895565593,
+ 2.1725658069260994,
+ 0.3806168075517605,
+ -3.4468404262913963,
+ 6.799969847483582,
+ -8.4351550899228,
+ 6.613874337530029,
+ 6.8062996517536,
+ -8.289030807012333,
+ 6.40414474774875,
+ -2.5117962549699064,
+ -0.743938249864381,
+ 3.210644269599282,
+ -0.6838781039594014,
+ -3.6193159264925328,
+ 5.060782954490828,
+ -7.6993212586092605,
+ 7.393956392853065,
+ -6.257058513134208,
+ -7.374619026531411,
+ 6.5302171577376225,
+ -5.478778117353769,
+ 0.8828984563135326,
+ 1.0909303226609455,
+ -4.66448562914323,
+ -0.940988744453785,
+ 3.8668712885870424,
+ -7.2111071683484615,
+ 6.8822239716578535,
+ -6.840930194181291,
+ 7.385555474133316,
+ 6.121635661066556,
+ -8.759228182920417,
+ 7.670564270770642,
+ -5.231821049714294,
+ 2.499165695161007,
+ 0.27632333172455054,
+ -3.4494178850429007,
+ -0.2609499033977063,
+ 2.0378744186115396,
+ -5.85689431424123,
+ 7.763488286788306,
+ -9.298416872101528,
+ 3.8794108984246956e-13,
+ 1.2027867851011065e-13,
+ 2.253107639696439e-13,
+ -1.3552527156068805e-14,
+ 1.5415999640028266e-13,
+ -1.9481757786848908e-13,
+ -9.486769009248164e-14,
+ -2.846030702774449e-13,
+ 1.3552527156068805e-14,
+ 2.0328790734103208e-13,
+ 2.795208725939191e-13,
+ -8.131516293641283e-14,
+ 1.4907779871675686e-13,
+ -2.1345230270808369e-13,
+ 8.131516293641283e-14,
+ -1.5246593050577406e-14,
+ -3.3881317890172014e-14,
+ 1.8126505071242027e-13,
+ -2.422514229147299e-13,
+ 7.623296525288703e-14,
+ 3.4897757426877174e-13,
+ -7.962109704190423e-14,
+ -1.9481757786848908e-13,
+ 3.3711911300721153e-13,
+ 8.978549240895584e-14,
+ -3.015437292225309e-13,
+ -1.2536087619363645e-13,
+ -1.6940658945086007e-14,
+ 9.656175598699024e-14,
+ -4.404571325722362e-14,
+ 1.3552527156068805e-14,
+ -1.3383120566617945e-13,
+ 6.776263578034403e-15,
+ 1.9989977555201488e-13,
+ -1.2536087619363645e-13,
+ -1.1180834903756764e-13,
+ 1.6940658945086007e-14,
+ -1.1011428314305904e-13,
+ -6.437450399132683e-14,
+ -5.149960319306146e-13,
+ -1.4230153513872246e-13,
+ -2.456395547037471e-13,
+ 3.5744790374131474e-13,
+ 3.3203691532368573e-13,
+ -4.590918574118308e-13,
+ 1.1011428314305904e-13,
+ 2.456395547037471e-13,
+ -1.9820570965750628e-13,
+ 1.6940658945086007e-15,
+ -5.251604272976662e-14,
+ -1.0164395367051604e-13,
+ 1.2027867851011065e-13,
+ 1.9989977555201488e-13,
+ -2.591920818598159e-13,
+ 3.5405977195229754e-13,
+ 4.828087799349512e-13,
+ 1.6940658945086007e-13,
+ 3.5575383784680614e-14,
+ -4.235164736271502e-14,
+ -1.1858461261560205e-14,
+ -2.761327408049019e-13,
+ 7.115076756936123e-14,
+ 4.2690460541616737e-13,
+ 9.317362419797304e-14
+ ],
+ [
+ 4.581707570578481,
+ -6.749240657651378,
+ 6.91326152559669,
+ -7.891173339248015,
+ 7.230910684795824,
+ -4.313060357568762,
+ -6.823142453797,
+ 5.261700352440981,
+ -2.7847267940841065,
+ -2.3258624701925954,
+ 4.866807211589701,
+ -6.609338492748319,
+ -3.785231943617124,
+ 7.010736015131354,
+ -7.903541874583513,
+ 7.352371630868674,
+ -5.899764800252189,
+ 2.361008944380418,
+ 5.713914744942358,
+ -3.4245388956005436,
+ 0.8346326136429219,
+ 4.069760851898038,
+ -6.217239034631927,
+ 7.135366128818959,
+ 5.235847809659884,
+ -7.686394366104759,
+ 7.884643071298025,
+ -6.15798469860999,
+ 4.32053000457319,
+ -0.7174947656547651,
+ -4.4121802263511745,
+ 1.564409647202437,
+ 1.2754021076832185,
+ -5.895749931228886,
+ 7.40926113012482,
+ -6.146027235760931,
+ -2.3895618369745484,
+ 6.254940319136317,
+ -7.820749125178753,
+ 8.880918949328763,
+ -8.318610667164666,
+ 5.171634062962297,
+ 7.64749007178617,
+ -6.484598573365017,
+ 4.103472066382604,
+ 1.297717875007106,
+ -4.405941525772649,
+ 7.072895332243772,
+ -3.3362510209978755e-13,
+ -1.5955983143902883e-13,
+ -3.7078867266056997e-13,
+ 7.411538288475128e-16,
+ -6.522153693858113e-14,
+ 1.9407642403964157e-13,
+ 1.3203126065326407e-13,
+ 2.236166980751353e-13,
+ 1.4081922748102743e-14,
+ -1.8412378690940354e-13,
+ -2.1398169830011762e-13,
+ 2.982614765519205e-13,
+ -2.2329906071991493e-13,
+ 2.4352197233561135e-14,
+ -1.9926450084157415e-13,
+ -5.601005363719061e-14,
+ -3.6655350792429847e-13,
+ 3.9810548520952116e-14,
+ -2.091112588534054e-13,
+ -1.1667878848427987e-13,
+ -4.2446938569281126e-13,
+ 1.5680697436045235e-13,
+ -4.6798570335800094e-14,
+ -1.8730016046160716e-13,
+ 2.3505164286306834e-13,
+ 1.4081922748102743e-13,
+ 3.801060350803673e-14,
+ 8.851494298807439e-14,
+ -1.5352472168984194e-13,
+ 2.5781565332052767e-13,
+ -5.960994366302139e-14,
+ 3.510951566369075e-13,
+ -1.9153532519787866e-13,
+ -8.999725064576941e-15,
+ 1.4717197458543468e-14,
+ 2.498747194400186e-14,
+ -1.886765890008954e-13,
+ 1.6093625997831706e-14,
+ 1.2006692027329707e-13,
+ 6.337924027830302e-13,
+ 2.0095856673608276e-13,
+ 1.3986631541536634e-13,
+ -1.7152417181899582e-13,
+ -4.629035056744751e-13,
+ 6.06475590234079e-13,
+ -1.147729643529577e-13,
+ -1.096907666694319e-13,
+ 1.52995326097808e-13,
+ -1.895236219481497e-13,
+ 9.275010772434589e-14,
+ 1.742770288975723e-13,
+ -1.3139598594282334e-13,
+ -2.9794383919670014e-13,
+ 4.842910875926462e-13,
+ -5.122431748520381e-13,
+ -6.442744355053022e-13,
+ -1.0249098661777034e-13,
+ 1.5352472168984194e-13,
+ -2.3822801641527197e-14,
+ -3.875175733688424e-14,
+ 2.313458737188308e-13,
+ -2.8513246586947885e-13,
+ 3.186961464044305e-14,
+ -4.0763460586613204e-14
+ ],
+ [
+ 9.33457117784927,
+ -12.342882399353627,
+ 11.89227880471373,
+ -12.25438600894663,
+ 10.583284997695872,
+ -5.41122766469522,
+ -10.135330607415025,
+ 6.877138126178493,
+ -2.6556380992648316,
+ -5.522136108348122,
+ 9.343162284049438,
+ -11.357233923344461,
+ -7.5323171766559405,
+ 12.246843860290037,
+ -13.071060458837264,
+ 10.990610075278651,
+ -8.115601246781479,
+ 2.1627938406738685,
+ 8.111603418289647,
+ -3.723893705971649,
+ -0.5739885314473924,
+ 8.239066569559599,
+ -11.331123439743438,
+ 11.972530861919708,
+ 9.737276208846247,
+ -13.06017030156688,
+ 12.736409511058868,
+ -8.780726000312319,
+ 5.337634382024147,
+ 0.6106527949547919,
+ -5.7501369905049176,
+ 0.5926464490645635,
+ 4.223781759878668,
+ -10.466030834032628,
+ 12.298818127321912,
+ -10.833254506678543,
+ -5.375678279720786,
+ 11.367052940141807,
+ -13.390955781763331,
+ 14.027305084849482,
+ -12.557594759706943,
+ 7.038544435550685,
+ 11.721733295439682,
+ -9.08840399749394,
+ 4.963142925905618,
+ 3.7907061726581666,
+ -8.963064497043446,
+ 12.927625855516737,
+ -6.025580628530279e-13,
+ -2.6490955425378243e-13,
+ -5.876291071576709e-13,
+ 6.988021814847978e-15,
+ -1.513012602032994e-13,
+ 3.501422445712464e-13,
+ 2.1313466535286332e-13,
+ 4.071052102740981e-13,
+ 1.6940658945086007e-14,
+ -3.143551025497522e-13,
+ -3.899527930921985e-13,
+ 4.3304559428376105e-13,
+ -3.407190030330423e-13,
+ 1.0037340424963459e-13,
+ -3.0461422365632776e-13,
+ -8.067988822597211e-14,
+ -4.68938615423662e-13,
+ -1.079967007749233e-14,
+ -2.0095856673608276e-13,
+ -2.0974653356384612e-13,
+ -7.081195439045951e-13,
+ 2.4341609321720456e-13,
+ -2.1705219273391446e-14,
+ -3.502481236896532e-13,
+ 3.034495533538531e-13,
+ 2.976262018414798e-13,
+ 1.03655656920245e-13,
+ 1.2949016181150116e-13,
+ -2.56650983018053e-13,
+ 3.818001009748759e-13,
+ -7.81387893842092e-14,
+ 5.44218668610888e-13,
+ -2.822737296724956e-13,
+ -6.437450399132683e-14,
+ 6.691560283308973e-14,
+ 6.818615225397118e-14,
+ -2.7814444405463087e-13,
+ 6.013933925505532e-14,
+ 2.0106444585448954e-13,
+ 1.0378271186233315e-12,
+ 3.39871970085788e-13,
+ 2.7676801551534264e-13,
+ -3.3457801416544863e-13,
+ -7.331070158485969e-13,
+ 9.990753612864472e-13,
+ -1.9449994051326872e-13,
+ -2.5199230180815435e-13,
+ 2.7401515843676616e-13,
+ -2.6056851039910414e-13,
+ 1.2896076621946723e-13,
+ 2.796267517123259e-13,
+ -2.1144059945835472e-13,
+ -4.990082850511897e-13,
+ 7.702705864093794e-13,
+ -8.345392112822994e-13,
+ -1.0491561842928578e-12,
+ -1.9915862172316737e-13,
+ 1.9227647902672618e-13,
+ -3.875175733688424e-14,
+ -5.6221811874004185e-14,
+ 4.217165286142348e-13,
+ -4.0668169380047095e-13,
+ -9.137367918505765e-14,
+ -7.517417406881916e-14
+ ],
+ [
+ 12.927193361371623,
+ -13.2871840243218,
+ 10.54132128817588,
+ -6.635008980350892,
+ 3.439561166880733,
+ 1.6340395764922486,
+ -3.854241476137093,
+ -0.8660750656827921,
+ 4.481776224466494,
+ -9.765913704122251,
+ 11.391842276894783,
+ -10.027885457572529,
+ -9.94584421089771,
+ 11.454061873809616,
+ -9.905951936881285,
+ 4.4358960857058385,
+ -0.6827618526632319,
+ -4.162779013928844,
+ 1.690168380118992,
+ 3.6384847734606334,
+ -6.944401581284119,
+ 11.26814796121066,
+ -12.081015633085498,
+ 9.64597737597088,
+ 10.970367937233897,
+ -11.057588421585507,
+ 8.641793970757433,
+ -1.9797973468603167,
+ -1.9760854055449912,
+ 6.449053694639513,
+ 0.7943690966865563,
+ -6.194454316781184,
+ 10.243897258839551,
+ -10.314897323910406,
+ 9.471287280635801,
+ -5.428790991128155,
+ -8.816214318919775,
+ 12.020232042994222,
+ -11.669948092353009,
+ 8.431789863983564,
+ -5.520178862524096,
+ 0.28998944976255364,
+ 5.799522848319417,
+ -1.438626934844722,
+ -2.3115713451860507,
+ 8.350287334277413,
+ -12.376454411462978,
+ 13.895122735080827,
+ -6.197104800349275e-13,
+ -2.030761491042185e-13,
+ -3.6147131024077267e-13,
+ 2.7316812548951186e-14,
+ -2.576038950837141e-13,
+ 3.613654311223659e-13,
+ 1.428309307307564e-13,
+ 4.3378674811260856e-13,
+ -5.717472393966527e-15,
+ -2.7073290576615575e-13,
+ -4.1959894624609903e-13,
+ 1.249373597200093e-13,
+ -1.607245017415035e-13,
+ 2.746504331472069e-13,
+ -1.4833664488790935e-13,
+ -1.8846483076408183e-14,
+ 9.836170099990563e-14,
+ -2.6152142246476523e-13,
+ 3.3097812413961786e-13,
+ -2.1567576419462622e-13,
+ -5.609475693191604e-13,
+ 1.3330181007414552e-13,
+ 1.690889520956397e-13,
+ -3.9916427639358903e-13,
+ -5.166900978251232e-14,
+ 4.4585696761098234e-13,
+ 2.150404894841855e-13,
+ 4.4575108849257555e-14,
+ -1.9947625907838773e-13,
+ 1.435720845596039e-13,
+ 8.893845946170154e-15,
+ 2.922263668027336e-13,
+ -1.0016164601282102e-13,
+ -2.1218175328720223e-13,
+ 1.8931186371133613e-13,
+ 1.4039571100740028e-13,
+ -9.60323603949563e-14,
+ 1.5945395232062204e-13,
+ 1.6104213909672385e-13,
+ 7.502594330304965e-13,
+ 2.8185021319886844e-13,
+ 3.6147131024077267e-13,
+ -4.2203416596945514e-13,
+ -4.4596284672938913e-13,
+ 7.4454196063653e-13,
+ -1.6379499617530033e-13,
+ -4.2521053952165877e-13,
+ 2.7507394962083404e-13,
+ -2.2764010457459322e-14,
+ 1.7575933655526732e-14,
+ 1.7904158922587773e-13,
+ -1.4304268896756997e-13,
+ -3.992701555119958e-13,
+ 4.873615820264431e-13,
+ -5.884761401049252e-13,
+ -7.399891585450381e-13,
+ -2.550627962419512e-13,
+ -5.992758101824175e-14,
+ -2.879912020664621e-14,
+ -1.3446648037662018e-14,
+ 4.503038905840674e-13,
+ -9.26442286059391e-14,
+ -5.496185036496341e-13,
+ -8.258571235729428e-14
+ ],
+ [
+ 7.900570668556524,
+ -7.621650036792201,
+ 5.665349341086597,
+ -2.7001724813052186,
+ 0.6317354954284593,
+ 2.195198170858625,
+ -1.0208495451234132,
+ -1.8912971337309505,
+ 3.8086738406406497,
+ -6.246226404663713,
+ 6.759405306402923,
+ -5.3813848974234,
+ -6.014855806496396,
+ 6.278460557460186,
+ -4.979756642635937,
+ 1.2973144968155046,
+ 0.9665097986038164,
+ -3.48243009904625,
+ -0.21804071877843262,
+ 3.3766742315707514,
+ -5.0502471269616835,
+ 6.868027643706873,
+ -6.910049695109991,
+ 4.9862160079226,
+ 6.375020739975662,
+ -5.836529183374629,
+ 4.102193305163696,
+ 0.12453582759483257,
+ -2.4357192074597376,
+ 4.675921642748806,
+ 1.6334816653566073,
+ -4.705389547508966,
+ 6.836707188221984,
+ -5.756204747849313,
+ 4.797320716789081,
+ -2.062851795585046,
+ -4.658603679532857,
+ 6.858412548406144,
+ -6.231001047833983,
+ 3.7119729129286165,
+ -1.8176507406861693,
+ -1.0625161829698142,
+ 2.1767334259299003,
+ 0.5820728364597622,
+ -2.616748636657849,
+ 5.509804086419761,
+ -7.559229012788691,
+ 7.966737473459316,
+ -3.509892775185007e-13,
+ -1.0249098661777034e-13,
+ -1.6167741380716458e-13,
+ 1.895236219481497e-14,
+ -1.6368911705689354e-13,
+ 2.0434669852509996e-13,
+ 6.786851489875081e-14,
+ 2.4849829090073036e-13,
+ -7.199780051661553e-15,
+ -1.4346620544119712e-13,
+ -2.4002796142818736e-13,
+ 1.3976043629695956e-14,
+ -5.685708658444491e-14,
+ 1.851825780934714e-13,
+ -5.558653716356346e-14,
+ 1.2705494208814505e-15,
+ 1.590304358469949e-13,
+ -1.9185296255309903e-13,
+ 2.821678505540888e-13,
+ -1.222903817598396e-13,
+ -2.873559273560214e-13,
+ 5.473950421630916e-14,
+ 1.2959604092990795e-13,
+ -2.3314581873174617e-13,
+ -9.402065714522734e-14,
+ 2.7666213639693585e-13,
+ 1.4071334836262064e-13,
+ 9.317362419797304e-15,
+ -1.0238510749936355e-13,
+ 3.6845933205562065e-14,
+ 1.9693516023662483e-14,
+ 1.180552170235681e-13,
+ -2.3081647812679684e-14,
+ -1.4590142516455323e-13,
+ 1.2896076621946723e-13,
+ 9.17971956586848e-14,
+ -2.0858186326137146e-14,
+ 1.0736142606448257e-13,
+ 8.311510794932822e-14,
+ 3.6824757381880707e-13,
+ 1.479131284142822e-13,
+ 2.174757092075416e-13,
+ -2.5273345563700186e-13,
+ -1.979939514206927e-13,
+ 3.7163570560782427e-13,
+ -8.597384414631148e-14,
+ -2.693564772268675e-13,
+ 1.546893919923166e-13,
+ 3.134021904840911e-14,
+ -1.0376153603865179e-14,
+ 8.205631676526035e-14,
+ -6.755087754353045e-14,
+ -2.0529961059076104e-13,
+ 2.218167530622199e-13,
+ -2.849207076326653e-13,
+ -3.6009488170148443e-13,
+ -1.5310120521621479e-13,
+ -7.887994321305672e-14,
+ -1.4717197458543468e-14,
+ 4.2351647362715017e-16,
+ 2.583450489125616e-13,
+ 4.658681209898652e-15,
+ -3.909057051578596e-13,
+ -4.8069119756681544e-14
+ ],
+ [
+ -6.4131243960652204,
+ 7.943224368012353,
+ -8.48272634070016,
+ 8.97450430680259,
+ -8.608548955071518,
+ 4.203201251220752,
+ 7.513630117318144,
+ -6.011456629615265,
+ 2.2463897411989038,
+ 3.716858833986114,
+ -7.276428683126785,
+ 8.135445872821897,
+ 5.239697686909971,
+ -9.474736570029888,
+ 9.433012329315643,
+ -8.100983332867443,
+ 5.363566808930962,
+ -1.8250175594948184,
+ -6.046467695345742,
+ 2.2470752482721204,
+ 0.1055446201086258,
+ -5.679493676926637,
+ 7.240528184995277,
+ -8.5818722530849,
+ -6.821835294254058,
+ 8.60189955032166,
+ -9.218721829340145,
+ 6.572585802419825,
+ -4.900231917412573,
+ -0.12465540434130373,
+ 4.420397430688567,
+ -1.5116415194652688,
+ -2.682624194607476,
+ 7.444876586420253,
+ -9.620104244881464,
+ 7.971921554927677,
+ 7.923166190492875,
+ -8.777050849077504,
+ 9.583688320405304,
+ -10.199311838893736,
+ 8.485219728546326,
+ -5.296191999737826,
+ -8.574223416479605,
+ 6.05693195450215,
+ -3.8585485000705932,
+ -2.452186687016006,
+ 5.427233211359782,
+ -9.087882601882663,
+ 3.9979955110402976e-13,
+ 1.7957098481791167e-13,
+ 4.387630666777276e-13,
+ 0.0,
+ 8.639736061993863e-14,
+ -1.7787691892340307e-13,
+ -1.6601845766184287e-13,
+ -2.896852679609707e-13,
+ 5.082197683525802e-15,
+ 2.591920818598159e-13,
+ 2.727446090158847e-13,
+ -3.4389537658524594e-13,
+ 3.066259269060567e-13,
+ -8.639736061993863e-14,
+ 2.371692252312041e-13,
+ 2.879912020664621e-14,
+ 4.2182240773264157e-13,
+ -1.0164395367051604e-14,
+ 1.7957098481791167e-13,
+ 7.623296525288703e-14,
+ 4.9636130709102e-13,
+ -1.7448878713438587e-13,
+ -4.235164736271502e-14,
+ 3.3034284942917713e-13,
+ -2.1514636860259229e-13,
+ -2.0328790734103208e-13,
+ -5.251604272976662e-14,
+ -9.486769009248164e-14,
+ 1.4060746924421386e-13,
+ -2.405573570202213e-13,
+ 8.470329472543003e-14,
+ -3.5744790374131474e-13,
+ 1.5585406229479126e-13,
+ 8.809142651444724e-14,
+ -3.049318610115481e-14,
+ -5.590417451878382e-14,
+ 1.7448878713438587e-13,
+ -4.743384504624082e-14,
+ -1.0333801956502464e-13,
+ -7.724940478959219e-13,
+ -1.9312351197398048e-13,
+ -1.9651164376299768e-13,
+ 3.066259269060567e-13,
+ 5.878408653944844e-13,
+ -7.047314121155779e-13,
+ 1.4568966692773966e-13,
+ 1.1689054672109345e-13,
+ -2.1514636860259229e-13,
+ 2.1006417091906648e-13,
+ -1.4399560103323106e-13,
+ -1.8126505071242027e-13,
+ 1.7957098481791167e-13,
+ 2.913793338554793e-13,
+ -5.13301966036106e-13,
+ 5.861467994999758e-13,
+ 7.691059161069047e-13,
+ 1.3552527156068805e-13,
+ -1.7448878713438587e-13,
+ -4.912791094074942e-14,
+ 2.202285662861181e-14,
+ -2.744386749103933e-13,
+ 3.2017845406212553e-13,
+ 8.131516293641283e-14,
+ 8.978549240895584e-14
+ ],
+ [
+ -11.00891077105257,
+ 12.7102800702763,
+ -13.003964899732692,
+ 12.688855678088652,
+ -11.754371631916197,
+ 4.8163450853582646,
+ 10.221201050863874,
+ -7.5141685353111525,
+ 1.712983968034093,
+ 6.933583885248425,
+ -12.005502538488606,
+ 12.464322581370936,
+ 8.86303798049742,
+ -14.7394039741187,
+ 14.037212135096103,
+ -11.074321373146617,
+ 6.511424388244561,
+ -1.2558607788606049,
+ -7.874805659766946,
+ 1.6248989868849883,
+ 1.7934798503990714,
+ -9.711083079183679,
+ 11.554979875874778,
+ -12.910608327128536,
+ -11.04982930120217,
+ 12.994497000863161,
+ -13.46165597070118,
+ 8.607228060221987,
+ -5.87513234371404,
+ -1.68632386736099,
+ 5.2861043672009,
+ -0.6769220978154669,
+ -5.758523885307435,
+ 11.67840930989601,
+ -14.448885581845989,
+ 11.166578879502874,
+ 11.951218298113874,
+ -13.8355766974121,
+ 14.642923466421797,
+ -14.621197389006632,
+ 11.52473790742694,
+ -6.610296107819687,
+ -11.980029387897945,
+ 7.5469091270356,
+ -4.213774821393757,
+ -5.023078416926541,
+ 9.381395512806083,
+ -14.547800602627879,
+ 6.301925127571995e-13,
+ 2.574980159653073e-13,
+ 6.369687763352339e-13,
+ 0.0,
+ 1.3891340334970526e-13,
+ -2.913793338554793e-13,
+ -2.574980159653073e-13,
+ -4.506215279392878e-13,
+ 1.0164395367051604e-14,
+ 3.7947076036992655e-13,
+ 4.37069000783219e-13,
+ -4.777265822514254e-13,
+ 4.404571325722362e-13,
+ -1.9312351197398048e-13,
+ 2.981555974335137e-13,
+ 3.3881317890172014e-14,
+ 5.149960319306146e-13,
+ 4.0657581468206416e-14,
+ 1.5924219408380846e-13,
+ 1.1180834903756764e-13,
+ 7.318364664277155e-13,
+ -2.371692252312041e-13,
+ -1.3552527156068805e-13,
+ 5.38712954453735e-13,
+ -2.405573570202213e-13,
+ -3.4897757426877174e-13,
+ -1.0503208545953324e-13,
+ -1.1858461261560205e-13,
+ 2.202285662861181e-13,
+ -3.049318610115481e-13,
+ 1.2197274440461925e-13,
+ -4.946672411965114e-13,
+ 1.9651164376299768e-13,
+ 1.7618285302889447e-13,
+ -7.792703114739563e-14,
+ -1.2197274440461925e-13,
+ 2.270048298641525e-13,
+ -8.131516293641283e-14,
+ -1.5246593050577406e-13,
+ -1.1418004128987969e-12,
+ -2.846030702774449e-13,
+ -3.2864878353466853e-13,
+ 4.980553729855286e-13,
+ 8.571973426213519e-13,
+ -1.060485249962384e-12,
+ 2.1345230270808369e-13,
+ 2.202285662861181e-13,
+ -3.3542504711270293e-13,
+ 2.473336205982557e-13,
+ -2.0328790734103208e-13,
+ -2.541098841762901e-13,
+ 2.778268066994105e-13,
+ 4.2012834183813297e-13,
+ -7.352245982167327e-13,
+ 8.605854744103691e-13,
+ 1.128247885742728e-12,
+ 2.202285662861181e-13,
+ -2.236166980751353e-13,
+ -8.470329472543003e-14,
+ 1.6940658945086007e-14,
+ -4.2690460541616737e-13,
+ 4.2012834183813297e-13,
+ 2.371692252312041e-13,
+ 1.3213713977167085e-13
+ ],
+ [
+ -6.763880263307684,
+ 7.3579844626758515,
+ -7.229942803507827,
+ 6.470927652796943,
+ -5.74737132082569,
+ 1.7891535702707149,
+ 4.974363624859878,
+ -3.248521860489645,
+ 0.007178141474001247,
+ 4.529771657225409,
+ -7.139426949089196,
+ 6.925944133151051,
+ 5.381297767518332,
+ -8.312029508404988,
+ 7.573098755721077,
+ -5.42285693938097,
+ 2.685877273631637,
+ 0.14384077211571178,
+ -3.616708040854089,
+ -0.09044134496493407,
+ 1.888256606032519,
+ -5.947735691307385,
+ 6.6730230279575435,
+ -7.04404623125188,
+ -6.466795077827592,
+ 7.119766660914779,
+ -7.118179361688396,
+ 3.983442750551588,
+ -2.372456874293791,
+ -1.7541598696920837,
+ 2.125040939480004,
+ 0.5195672239638399,
+ -4.100605379523938,
+ 6.637937020912612,
+ -7.870139379130973,
+ 5.632586878549999,
+ 6.538168961695499,
+ -7.162441050090291,
+ 8.114513386235899,
+ -7.575156423095131,
+ 5.597610108978982,
+ -2.8512204334222178,
+ -6.024845100637793,
+ 3.2466004645138344,
+ -1.4136043153157671,
+ -3.4829868958924965,
+ 5.795613313731498,
+ -8.424778147436093,
+ 3.4558944247975454e-13,
+ 1.3891340334970526e-13,
+ 3.4389537658524594e-13,
+ -3.3881317890172014e-15,
+ 1.1350241493207625e-13,
+ -1.6601845766184287e-13,
+ -1.3891340334970526e-13,
+ -2.642742795433417e-13,
+ 1.0164395367051604e-14,
+ 1.8804131429045468e-13,
+ 2.608861477543245e-13,
+ -2.1514636860259229e-13,
+ 2.456395547037471e-13,
+ -1.1180834903756764e-13,
+ 1.3721933745519665e-13,
+ -8.470329472543003e-15,
+ 2.0498197323554068e-13,
+ 5.082197683525802e-14,
+ 3.7269449679189215e-14,
+ 5.759824041329242e-14,
+ 3.9302328752599536e-13,
+ -1.2874900798265365e-13,
+ -9.825582188149884e-14,
+ 3.032377951170395e-13,
+ -8.131516293641283e-14,
+ -2.0837010502455788e-13,
+ -7.453889935837843e-14,
+ -4.573977915173222e-14,
+ 1.2027867851011065e-13,
+ -1.5077186461126546e-13,
+ 6.606856988583543e-14,
+ -2.490276864927643e-13,
+ 9.656175598699024e-14,
+ 1.3891340334970526e-13,
+ -4.912791094074942e-14,
+ -9.317362419797304e-14,
+ 1.2027867851011065e-13,
+ -6.437450399132683e-14,
+ -7.623296525288703e-14,
+ -6.06475590234079e-13,
+ -1.5754812818929986e-13,
+ -2.0159384144652348e-13,
+ 2.879912020664621e-13,
+ 4.54009659728305e-13,
+ -5.64123942871364e-13,
+ 1.2705494208814505e-13,
+ 1.4568966692773966e-13,
+ -2.0328790734103208e-13,
+ 8.978549240895584e-14,
+ -1.1350241493207625e-13,
+ -1.2197274440461925e-13,
+ 1.3044307387716225e-13,
+ 2.1684043449710089e-13,
+ -3.8794108984246956e-13,
+ 4.607859233063394e-13,
+ 5.929230630780102e-13,
+ 1.3044307387716225e-13,
+ -8.131516293641283e-14,
+ -4.912791094074942e-14,
+ -5.082197683525802e-15,
+ -2.591920818598159e-13,
+ 2.0837010502455788e-13,
+ 1.9481757786848908e-13,
+ 5.421010862427522e-14
+ ],
+ [
+ 4.515433866871797,
+ -8.207083259242475,
+ 9.217005941963864,
+ -11.96791673516317,
+ 11.662431824847227,
+ -7.951887309141055,
+ -10.85289729871268,
+ 9.38652210426894,
+ -6.053188005887432,
+ -1.4326330633836135,
+ 5.411059970971822,
+ -8.824685579604353,
+ -3.926683853002336,
+ 9.129409107059637,
+ -11.112205554497024,
+ 11.619426983670087,
+ -10.107546704278963,
+ 5.229982290899066,
+ 9.501504009908611,
+ -6.954277796928334,
+ 3.316710899080963,
+ 4.068246519675777,
+ -7.603666407949976,
+ 9.844166663878811,
+ 6.179737065449519,
+ -10.437625218007222,
+ 11.418697506551496,
+ -10.196917705889279,
+ 8.044545302735015,
+ -2.9792462809757354,
+ -7.899346376877244,
+ 4.37431284384282,
+ -0.5251814427352619,
+ -7.504548118937582,
+ 10.355332087135988,
+ -10.83500240705562,
+ -8.980391656749434,
+ 11.804239218360024,
+ -10.494954651022415,
+ 13.21081554673824,
+ -13.0242828454237,
+ 8.9323873387883,
+ 11.768076179623653,
+ -10.92380658895598,
+ 7.769094163952924,
+ 0.021477022129030608,
+ -4.368943753542378,
+ 8.595877461007197,
+ -4.1812325603330443e-13,
+ -1.9749102560826046e-13,
+ -4.939790269268673e-13,
+ 3.2491654461082927e-15,
+ 5.4967806065373795e-14,
+ 2.7824370572813724e-13,
+ 2.1408095997362399e-13,
+ 2.481740361006096e-13,
+ 2.421984833555265e-14,
+ -2.7988152334099223e-13,
+ -2.8614493493924376e-13,
+ 5.683591076076355e-13,
+ -2.891823421485385e-13,
+ 2.4150365164098196e-14,
+ -3.3225859972784994e-13,
+ -1.2517227901397436e-13,
+ -6.389473923604607e-13,
+ 1.2626415742254436e-13,
+ -4.508233600087507e-13,
+ -1.259200502877223e-13,
+ -5.683624163300857e-13,
+ 1.9698809979582822e-13,
+ -1.303471209261061e-13,
+ -2.511849735303026e-13,
+ 4.531163046667477e-13,
+ 1.351546946462643e-13,
+ 2.5576424540139616e-15,
+ 1.637056606691446e-13,
+ -2.1235711557706348e-13,
+ 3.6490907286654305e-13,
+ -9.361699300630146e-14,
+ 5.737754862586328e-13,
+ -2.589240753413487e-13,
+ 9.057958579700674e-14,
+ 1.2063602053473356e-14,
+ -2.8190315275807183e-14,
+ -2.1980835853494115e-13,
+ -3.1968876313949414e-14,
+ 1.9642230825684195e-13,
+ 8.765037381183396e-13,
+ 2.8889448329537e-13,
+ 1.4389303063727448e-13,
+ -2.18292963652744e-13,
+ -6.801939264248049e-13,
+ 8.886798367351202e-13,
+ -8.825686263695784e-14,
+ -5.547404060025625e-14,
+ 1.9803034736764504e-13,
+ -3.7502052867439126e-13,
+ 1.0959150499592553e-13,
+ 2.645720645638608e-13,
+ -2.1691984383590598e-13,
+ -4.0807135722956004e-13,
+ 6.954107409733304e-13,
+ -7.213544337054435e-13,
+ -9.46876955911901e-13,
+ -8.342943658209837e-14,
+ 2.725791728933741e-13,
+ 2.1341259803868114e-15,
+ -9.103618949513601e-14,
+ 2.52220603657219e-13,
+ -4.011164226392142e-13,
+ 2.0783740071007373e-13,
+ -9.678674911360466e-14
+ ],
+ [
+ 5.439907301230577,
+ -8.455041251330512,
+ 8.884934466274796,
+ -10.549118054820838,
+ 9.858711050967981,
+ -6.16295704005924,
+ -9.263440300001824,
+ 7.42631661694952,
+ -4.237917337486592,
+ -2.5193393488836104,
+ 5.947591578890598,
+ -8.497797521844454,
+ -4.549287871796035,
+ 8.945119004284706,
+ -10.319403726605943,
+ 9.960923742246404,
+ -8.2173634831928,
+ 3.620785006132011,
+ 7.873961625008959,
+ -5.077558879849923,
+ 1.69334654666741,
+ 4.848157768522459,
+ -7.801104232372742,
+ 9.263630472961422,
+ 6.503641974027117,
+ -9.935709941085179,
+ 10.388630972328118,
+ -8.473618434636958,
+ 6.192178195672945,
+ -1.49158608059862,
+ -6.2383288447085885,
+ 2.6512489258784795,
+ 1.0124939950854055,
+ -7.476863565974841,
+ 9.652853503562259,
+ -9.469601043791533,
+ -8.474292972420772,
+ 10.43036290718441,
+ -9.513453711472739,
+ 11.79969554367969,
+ -11.239306868990163,
+ 7.220385032321364,
+ 10.27133832323444,
+ -8.979310459599471,
+ 5.920999486976213,
+ 1.1867094264437539,
+ -5.242395120335877,
+ 8.855328462677564,
+ -4.163166935754886e-13,
+ -1.887295285600988e-13,
+ -4.585624618197968e-13,
+ 5.717472393966527e-15,
+ -7.30565917006834e-15,
+ 2.6903883987164715e-13,
+ 1.9338820976999745e-13,
+ 2.624743345304263e-13,
+ 1.7522994096323338e-14,
+ -2.5352754902505277e-13,
+ -2.8952644928336053e-13,
+ 4.643858133321702e-13,
+ -2.685094442796132e-13,
+ 4.494568576368131e-14,
+ -2.7666213639693585e-13,
+ -9.550296480292236e-14,
+ -4.92602598387579e-13,
+ 6.96684599116662e-14,
+ -3.2346070673273594e-13,
+ -1.316606837388403e-13,
+ -5.309837788100395e-13,
+ 1.834885121989628e-13,
+ -7.914464100907369e-14,
+ -2.547980984459342e-13,
+ 3.5331861812345003e-13,
+ 1.6797722135236844e-13,
+ 3.001673006832427e-14,
+ 1.3488999685024733e-13,
+ -2.014350227689133e-13,
+ 3.1641974535868457e-13,
+ -8.152692117322641e-14,
+ 4.962554279726132e-13,
+ -2.2891065399547467e-13,
+ 3.4198955245392376e-14,
+ 2.668153783851046e-14,
+ 8.682087709356578e-15,
+ -2.0508785235394747e-13,
+ -5.293955920339377e-17,
+ 1.7803573760101325e-13,
+ 8.102928931671451e-13,
+ 2.701505706149184e-13,
+ 1.6623021589865644e-13,
+ -2.288047748770679e-13,
+ -6.086461121614182e-13,
+ 8.201396511789763e-13,
+ -1.0169689322971943e-13,
+ -1.0339095912422804e-13,
+ 1.972527975918452e-13,
+ -2.9037348223061483e-13,
+ 1.0095573940087192e-13,
+ 2.3309287917254277e-13,
+ -1.8714134178399698e-13,
+ -3.8127070538284194e-13,
+ 6.343747379342676e-13,
+ -6.647620449170156e-13,
+ -8.5841495248303e-13,
+ -1.0317920088741446e-13,
+ 2.1027592915588006e-13,
+ -2.0117032497289633e-15,
+ -6.71273610699033e-14,
+ 2.704682079701388e-13,
+ -3.426777667235679e-13,
+ 9.121486050744747e-14,
+ -7.702705864093794e-14
+ ],
+ [
+ 3.279238026085307,
+ -1.148287303280925,
+ -0.7615337635165288,
+ 4.306733964328341,
+ -5.61161972908476,
+ 5.704468908125486,
+ 4.922895569154302,
+ -6.2247596889240056,
+ 5.865897083741949,
+ -3.705837921814428,
+ 2.010347514452718,
+ 0.75919058806494,
+ -2.242487425965453,
+ -0.26842482802264406,
+ 2.236560628658476,
+ -5.125411881178829,
+ 5.961821892069327,
+ -5.205213750598383,
+ -5.102756900591842,
+ 6.03771888798228,
+ -5.326305129908518,
+ 2.7764011261416943,
+ -0.9553843542235185,
+ -1.5721623769594673,
+ 1.3255531153277014,
+ 1.2852372630255091,
+ -3.0218811357351645,
+ 5.39773948305989,
+ -5.914026217453766,
+ 4.883368645731335,
+ 5.2767627624474,
+ -5.620619832131395,
+ 5.145666711610646,
+ -0.1952754431106291,
+ -1.9621930217911883,
+ 4.170864969097897,
+ 1.3552696677970006,
+ -4.162103910973765,
+ 5.448747621936511,
+ -4.233192489896256,
+ 5.496332285755875,
+ -5.408363384981221,
+ -4.576248581931952,
+ 6.11293063660405,
+ -5.910254534767883,
+ 3.915438861486896,
+ -3.1022012090011097,
+ 1.201833687047459,
+ -9.317362419797304e-15,
+ 2.1811098391798234e-14,
+ 9.984400865760065e-14,
+ 8.046812998915853e-15,
+ -2.0688779736686286e-13,
+ -2.0117032497289633e-14,
+ -6.098637220230962e-14,
+ 5.770411953169921e-14,
+ -2.149346103657787e-14,
+ 7.792703114739563e-14,
+ -2.1705219273391446e-14,
+ -3.272723549953803e-13,
+ 5.844527336054672e-14,
+ 7.115076756936123e-14,
+ 1.7279472123987727e-13,
+ 9.486769009248164e-14,
+ 4.669269121739331e-13,
+ -1.8486494073825105e-13,
+ 4.103874629447085e-13,
+ -2.5199230180815435e-14,
+ 1.0418505251227894e-13,
+ -3.758708703440958e-14,
+ 1.6792428179316504e-13,
+ -2.1811098391798234e-14,
+ -3.17954992575583e-13,
+ 1.1509060170817806e-13,
+ 9.243247036912552e-14,
+ -9.09501627114305e-14,
+ 2.8587361969832636e-14,
+ -1.4886604047994328e-13,
+ 3.6422416731934915e-14,
+ -2.380162581784584e-13,
+ 9.063252535621014e-14,
+ -1.8624136927753929e-13,
+ 5.0186702124817295e-14,
+ 1.2292565647028034e-13,
+ 4.1081097941833566e-14,
+ 1.0566736016997397e-13,
+ -5.3998350387461647e-14,
+ -1.8973538018496328e-13,
+ -5.1033735072071595e-14,
+ 8.067988822597211e-14,
+ -4.404571325722362e-14,
+ 2.1472285212896514e-13,
+ -1.9661752288140447e-13,
+ -4.923379005915621e-14,
+ -1.6294796322804603e-13,
+ 4.235164736271502e-15,
+ 2.7052114752934217e-13,
+ -2.5093351062408648e-14,
+ -9.592648127654951e-14,
+ 9.126780006665086e-14,
+ 7.422126200315807e-14,
+ -1.7830043539703022e-13,
+ 1.624185676360121e-13,
+ 2.607802686359177e-13,
+ -6.945670167485263e-14,
+ -1.9831158877591307e-13,
+ -1.3976043629695956e-14,
+ 7.686823996332776e-14,
+ 7.168016316139517e-14,
+ 1.8073565512038633e-13,
+ -3.8370592510619805e-13,
+ 6.37392292808861e-14
+ ],
+ [
+ 2.3397309666101065,
+ 2.02885183365586,
+ -4.956032711201543,
+ 10.76638885323824,
+ -12.338463650766764,
+ 10.86468967137445,
+ 11.091429944347984,
+ -12.160551300502556,
+ 10.259260327977149,
+ -4.22175389199492,
+ 0.29834622116478016,
+ 4.784334916621714,
+ -1.2394392831567127,
+ -4.274678618369596,
+ 7.696173206107088,
+ -11.685286167754798,
+ 12.127247073473187,
+ -9.04295432212108,
+ -10.745322749918717,
+ 10.870888892773491,
+ -8.37860581334217,
+ 1.8755552570299123,
+ 2.021286914579744,
+ -6.283806123005287,
+ -0.9259950939700389,
+ 6.164354689060875,
+ -8.853070083361589,
+ 11.429314439068458,
+ -11.178073168284614,
+ 7.655340755539346,
+ 10.283780717427716,
+ -9.217412354985278,
+ 6.942862140765194,
+ 2.970921033285204,
+ -7.012673598448977,
+ 10.10204298928774,
+ 5.629382137609105,
+ -10.507233056152844,
+ 11.954645558159129,
+ -11.204648818078322,
+ 12.773360432350096,
+ -10.899624091502034,
+ -11.032309615445506,
+ 12.675372754096376,
+ -11.05474693984713,
+ 5.101951113552146,
+ -2.171597293133577,
+ -2.1260760740970803,
+ 1.675007653195379e-13,
+ 1.1350241493207625e-13,
+ 3.426248271643645e-13,
+ 9.105604182983729e-15,
+ -2.9370867446042864e-13,
+ -1.4590142516455323e-13,
+ -1.717359300558094e-13,
+ -3.134021904840911e-14,
+ -3.8539999100070665e-14,
+ 2.219226321806267e-13,
+ 9.465593185566806e-14,
+ -6.714853689358466e-13,
+ 2.005350502624556e-13,
+ 8.258571235729428e-14,
+ 3.6824757381880707e-13,
+ 1.776651606865895e-13,
+ 8.843023969334896e-13,
+ -2.956144985917508e-13,
+ 7.295071258227662e-13,
+ 2.117582368135751e-14,
+ 3.8031779331718085e-13,
+ -1.3361944742936588e-13,
+ 2.752857078576476e-13,
+ 7.940933880509066e-14,
+ -6.098637220230962e-13,
+ 9.211483301390516e-14,
+ 1.1964340379966992e-13,
+ -1.8910010547452255e-13,
+ 1.2853724974584008e-13,
+ -3.510951566369075e-13,
+ 8.766791004082009e-14,
+ -5.573476792933296e-13,
+ 2.2975768694272897e-13,
+ -2.822737296724956e-13,
+ 6.056285572868247e-14,
+ 1.725829630030637e-13,
+ 1.4801900753268898e-13,
+ 1.5161889755851976e-13,
+ -1.5479527111072339e-13,
+ -6.244750403632329e-13,
+ -1.9079417136903115e-13,
+ 4.362219678359647e-14,
+ 3.6422416731934915e-14,
+ 5.72594272343907e-13,
+ -6.38874600466556e-13,
+ -2.6469779601696886e-14,
+ -1.8888834723770898e-13,
+ -7.962109704190423e-14,
+ 5.143607572201739e-13,
+ -7.983285527871781e-14,
+ -2.3907504936252627e-13,
+ 2.1218175328720223e-13,
+ 2.72109334305444e-13,
+ -5.31724932638887e-13,
+ 5.219840537454626e-13,
+ 7.4750657595192e-13,
+ -5.484538333471595e-14,
+ -3.758708703440958e-13,
+ -1.9058241313221758e-14,
+ 1.3954867806014598e-13,
+ -1.461131834013668e-14,
+ 4.0826988057657276e-13,
+ -5.901702059994338e-13,
+ 1.249373597200093e-13
+ ],
+ [
+ 1.0117206432542385,
+ 3.641552649958364,
+ -6.425731785231027,
+ 12.122401708188132,
+ -13.42433753704503,
+ 11.292407623992165,
+ 12.151738519293056,
+ -12.750146893266633,
+ 10.331232886000842,
+ -3.356697473946737,
+ -0.973560755163908,
+ 6.186470411921791,
+ -0.1859940009829747,
+ -5.811291077982145,
+ 9.248590705863558,
+ -12.844652154405315,
+ 12.885505798845438,
+ -9.082324089347557,
+ -11.541616040250343,
+ 11.070337340906905,
+ -8.066420954378344,
+ 0.7087092827554398,
+ 3.497357705760129,
+ -7.727189930114992,
+ -2.2170482569453074,
+ 7.758297278978147,
+ -10.327842624221546,
+ 12.296953957626291,
+ -11.586953611084871,
+ 7.358439390754845,
+ 10.773598376139061,
+ -9.039417582349419,
+ 6.177229044979061,
+ 4.303286370518405,
+ -8.479665715322795,
+ 11.284442563052007,
+ 6.959258020928362,
+ -11.858970191478237,
+ 12.998646514199809,
+ -12.019001971408146,
+ 14.114315189999804,
+ -11.546466729996856,
+ -12.308842281338624,
+ 13.549860198246066,
+ -11.416546435555114,
+ 4.446427781680397,
+ -0.8984299827923616,
+ -3.8150317730201397,
+ 2.4182790644110275e-13,
+ 1.4251329337553603e-13,
+ 4.1165801236558996e-13,
+ 7.835054762102278e-15,
+ -2.685094442796132e-13,
+ -1.8910010547452255e-13,
+ -1.996880173152013e-13,
+ -8.385626177817573e-14,
+ -4.002230675776569e-14,
+ 2.5707449949168015e-13,
+ 1.4590142516455323e-13,
+ -7.159545986666974e-13,
+ 2.4098087349384845e-13,
+ 6.54332951753947e-14,
+ 3.9747021049908043e-13,
+ 1.852884572118782e-13,
+ 9.171249236395937e-13,
+ -2.8587361969832636e-13,
+ 7.405185541370721e-13,
+ 4.8492636230308694e-14,
+ 4.633270221481023e-13,
+ -1.6199505116238494e-13,
+ 2.6893296075324036e-13,
+ 1.2705494208814505e-13,
+ -6.378158092824882e-13,
+ 4.912791094074942e-14,
+ 1.0376153603865179e-13,
+ -2.0180559968333706e-13,
+ 1.6114801821513064e-13,
+ -3.8899988102653743e-13,
+ 9.762054717105811e-14,
+ -6.162164691275035e-13,
+ 2.5961559833344305e-13,
+ -2.661801036746639e-13,
+ 4.9763185651190145e-14,
+ 1.562775787684184e-13,
+ 1.7914746834428452e-13,
+ 1.393369198233324e-13,
+ -1.810532924756067e-13,
+ -7.449654771101571e-13,
+ -2.32722302258119e-13,
+ 5.082197683525802e-15,
+ 8.152692117322641e-14,
+ 6.549682264643877e-13,
+ -7.60000311923921e-13,
+ -2.117582368135751e-15,
+ -1.5098362284807904e-13,
+ -1.1350241493207625e-13,
+ 5.349013061910907e-13,
+ -9.338538243478661e-14,
+ -2.687212025164268e-13,
+ 2.344163681526276e-13,
+ 3.297075747187364e-13,
+ -6.217221832846564e-13,
+ 6.208751503374021e-13,
+ 8.696910785933529e-13,
+ -2.795208725939191e-14,
+ -3.9132922163148676e-13,
+ -1.7999450129153882e-14,
+ 1.4420735927004463e-13,
+ -6.945670167485263e-14,
+ 4.4680987967664343e-13,
+ -5.630651516872962e-13,
+ 1.317136232980437e-13
+ ],
+ [
+ -5.07395992840553,
+ 0.7801231576305403,
+ 1.5807048569809403,
+ -7.354643280349714,
+ 8.696806132706136,
+ -9.441579929881584,
+ -8.294494982627656,
+ 9.596682829938759,
+ -9.638249524591798,
+ 5.912507064812348,
+ -3.78249800979797,
+ -1.5292895986189319,
+ 3.476091104830638,
+ 0.017415202729209732,
+ -3.995999349667426,
+ 8.68082270890245,
+ -10.710675457508492,
+ 8.578030339241355,
+ 8.57266363108635,
+ -10.71508115840255,
+ 8.69410659820379,
+ -4.297839035669443,
+ 0.49757111423173145,
+ 2.912348027201007,
+ -1.8798775190697565,
+ -3.208001455769225,
+ 5.292081678273292,
+ -9.039443169339737,
+ 9.04619678033024,
+ -7.936777062239402,
+ -8.750778129347179,
+ 8.437166512163744,
+ -8.27252867918364,
+ 0.0526909546028515,
+ 2.776270698481453,
+ -7.078755768465365,
+ -2.4850002614486004,
+ 6.365511442305786,
+ -9.157272342795551,
+ 10.697798929898331,
+ -10.07900773116691,
+ 9.048238376754144,
+ 7.817844791244575,
+ -10.990774394983907,
+ 9.803722514131497,
+ -6.28008869384477,
+ 4.064015607271516,
+ -1.5825479754397769,
+ -2.202285662861181e-14,
+ -4.912791094074942e-14,
+ -1.7279472123987727e-13,
+ -3.3881317890172014e-15,
+ 3.2187251995663413e-13,
+ 8.300922883092143e-14,
+ 9.147955830346444e-14,
+ -8.639736061993863e-14,
+ 4.404571325722362e-14,
+ -1.1350241493207625e-13,
+ 2.879912020664621e-14,
+ 5.38712954453735e-13,
+ -5.421010862427522e-14,
+ -1.3721933745519665e-13,
+ -2.744386749103933e-13,
+ -1.8973538018496328e-13,
+ -6.928729508540177e-13,
+ 2.812149384884277e-13,
+ -6.657678965418801e-13,
+ -3.218725199566341e-14,
+ -1.9820570965750628e-13,
+ 7.115076756936123e-14,
+ -3.4728350837426314e-13,
+ 9.147955830346444e-14,
+ 5.505714157152952e-13,
+ -1.7448878713438587e-13,
+ -1.2366681029912785e-13,
+ 1.6940658945086007e-13,
+ -8.978549240895584e-14,
+ 2.829090043829363e-13,
+ -3.3881317890172014e-14,
+ 4.506215279392878e-13,
+ -2.0498197323554068e-13,
+ 3.4897757426877174e-13,
+ -7.623296525288703e-14,
+ -2.270048298641525e-13,
+ -1.1180834903756764e-13,
+ -1.7787691892340307e-13,
+ 1.3213713977167085e-13,
+ 3.100140586950739e-13,
+ 1.2366681029912785e-13,
+ -1.3552527156068805e-13,
+ 1.3383120566617945e-13,
+ -3.100140586950739e-13,
+ 3.7438856268640075e-13,
+ 9.317362419797304e-14,
+ 1.9820570965750628e-13,
+ -2.371692252312041e-14,
+ -4.506215279392878e-13,
+ -1.0164395367051604e-14,
+ 1.7957098481791167e-13,
+ -1.2874900798265365e-13,
+ -1.9312351197398048e-13,
+ 3.6422416731934915e-13,
+ -3.1340219048409113e-13,
+ -4.421511984667448e-13,
+ 1.0672615135404184e-13,
+ 3.049318610115481e-13,
+ -5.251604272976662e-14,
+ -1.4060746924421386e-13,
+ -7.962109704190423e-14,
+ -2.761327408049019e-13,
+ 6.640738306473715e-13,
+ -7.792703114739563e-14
+ ],
+ [
+ -6.984433869982501,
+ -0.3708991713752608,
+ 4.144689148501353,
+ -13.553954560479335,
+ 15.513862528368515,
+ -16.027040402245476,
+ -14.795829329502695,
+ 16.479717353202076,
+ -15.979222558640162,
+ 8.850785526025243,
+ -4.882944322678185,
+ -3.9904309960759674,
+ 4.633300085620406,
+ 1.6638877866777237,
+ -8.217472858783696,
+ 15.535666460249619,
+ -18.437775140258953,
+ 14.19452657675321,
+ 14.977239585643382,
+ -17.860656601572302,
+ 14.018679074005233,
+ -5.8717786780533725,
+ -0.694420635653486,
+ 6.3142165899986535,
+ -1.7524576305640482,
+ -6.9320352214262995,
+ 10.274006458378878,
+ -15.823294222329492,
+ 15.382451424780102,
+ -12.78627505187741,
+ -14.952193191528067,
+ 13.763819300244043,
+ -12.849875669647313,
+ -1.3071065548902703,
+ 6.14361153115304,
+ -12.91774345286824,
+ -5.492117484038256,
+ 11.945450021003822,
+ -16.202297086061666,
+ 17.920662332707774,
+ -17.829574939138638,
+ 15.605450060660742,
+ 14.233730614860432,
+ -19.021240928239408,
+ 16.554221476533822,
+ -9.677248704364956,
+ 5.402676052158674,
+ -0.846053945252567,
+ -1.3213713977167085e-13,
+ -1.1519648082658485e-13,
+ -3.6591823321385775e-13,
+ -3.3881317890172014e-15,
+ 4.811147140404426e-13,
+ 1.8973538018496328e-13,
+ 1.7618285302889447e-13,
+ -7.792703114739563e-14,
+ 8.131516293641283e-14,
+ -2.473336205982557e-13,
+ 0.0,
+ 9.452887691357992e-13,
+ -1.3552527156068805e-13,
+ -2.202285662861181e-13,
+ -4.912791094074942e-13,
+ -3.117081245895825e-13,
+ -1.1485766764768313e-12,
+ 4.506215279392878e-13,
+ -1.0977546996415732e-12,
+ -8.131516293641283e-14,
+ -4.1335207826009857e-13,
+ 1.5924219408380846e-13,
+ -5.72594272343907e-13,
+ 9.486769009248164e-14,
+ 9.41900637346782e-13,
+ -2.371692252312041e-13,
+ -1.8634724839594607e-13,
+ 2.812149384884277e-13,
+ -1.5924219408380846e-13,
+ 5.319366908757006e-13,
+ -8.131516293641283e-14,
+ 7.826584432629735e-13,
+ -3.6591823321385775e-13,
+ 5.454892180317694e-13,
+ -1.1858461261560205e-13,
+ -3.5236570605778894e-13,
+ -2.1006417091906648e-13,
+ -2.913793338554793e-13,
+ 2.846030702774449e-13,
+ 6.471331717022855e-13,
+ 2.405573570202213e-13,
+ -1.8634724839594607e-13,
+ 1.8295911660692887e-13,
+ -6.030874584450618e-13,
+ 7.521652571618187e-13,
+ 1.3213713977167085e-13,
+ 2.913793338554793e-13,
+ 3.3881317890172014e-15,
+ -7.623296525288703e-13,
+ -3.3881317890172014e-15,
+ 3.2526065174565133e-13,
+ -2.270048298641525e-13,
+ -4.0318768289304696e-13,
+ 7.047314121155779e-13,
+ -5.72594272343907e-13,
+ -8.538092108323347e-13,
+ 1.4907779871675686e-13,
+ 5.116079001415974e-13,
+ -9.147955830346444e-14,
+ -2.337810934421869e-13,
+ -8.470329472543003e-14,
+ -5.014435047745458e-13,
+ 1.0570971181733668e-12,
+ -1.4568966692773966e-13
+ ],
+ [
+ -3.450882319968619,
+ -1.0626606766676687,
+ 3.246250713470019,
+ -8.784703642044763,
+ 9.821503260222428,
+ -9.763348230929354,
+ -9.366727080239187,
+ 10.132628776026861,
+ -9.545823969240802,
+ 4.806456045059075,
+ -2.215463126272692,
+ -3.1192185825788408,
+ 2.1969309218882995,
+ 1.8203657175742491,
+ -5.713898399284587,
+ 9.858906210419578,
+ -11.358470989642493,
+ 8.466036678362725,
+ 9.333703850703698,
+ -10.718337190051368,
+ 8.174852596077109,
+ -2.874169961505446,
+ -1.1826859321891932,
+ 4.522997732742395,
+ -0.35743745178662234,
+ -4.956560483544874,
+ 6.895832460932381,
+ -9.875610984477861,
+ 9.383827476582171,
+ -7.450338946177787,
+ -9.156841583831817,
+ 8.109121759132924,
+ -7.23914858792504,
+ -1.4856188501008132,
+ 4.44891126585161,
+ -8.314263103246384,
+ -3.9744721810224717,
+ 7.839690143254623,
+ -10.194842998928074,
+ 10.79902564614132,
+ -10.479150608935631,
+ 9.628002593195662,
+ 9.146234611910032,
+ -11.767216004177122,
+ 10.041276414912756,
+ -5.409875831801896,
+ 2.5528029431587345,
+ 0.3930034409246704,
+ -1.0503208545953324e-13,
+ -8.131516293641283e-14,
+ -2.371692252312041e-13,
+ -3.3881317890172014e-15,
+ 2.846030702774449e-13,
+ 1.4399560103323106e-13,
+ 1.1519648082658485e-13,
+ -1.5246593050577406e-14,
+ 4.743384504624082e-14,
+ -1.8465318250143747e-13,
+ -2.202285662861181e-14,
+ 5.946171289725188e-13,
+ -9.656175598699024e-14,
+ -1.1689054672109345e-13,
+ -3.049318610115481e-13,
+ -1.8634724839594607e-13,
+ -7.115076756936123e-13,
+ 2.608861477543245e-13,
+ -6.691560283308973e-13,
+ -6.945670167485263e-14,
+ -2.676624113323589e-13,
+ 1.2366681029912785e-13,
+ -3.3542504711270293e-13,
+ 3.3881317890172014e-14,
+ 5.55653613398821e-13,
+ -1.0164395367051604e-13,
+ -1.0842021724855044e-13,
+ 1.7957098481791167e-13,
+ -1.2874900798265365e-13,
+ 3.4050724479622874e-13,
+ -6.606856988583543e-14,
+ 5.268544931921748e-13,
+ -2.219226321806267e-13,
+ 3.2526065174565133e-13,
+ -5.590417451878382e-14,
+ -2.1175823681357508e-13,
+ -1.5077186461126546e-13,
+ -1.5415999640028266e-13,
+ 1.8804131429045468e-13,
+ 4.45539330255762e-13,
+ 1.6940658945086007e-13,
+ -9.486769009248164e-14,
+ 7.453889935837843e-14,
+ -4.1843427594362437e-13,
+ 5.149960319306146e-13,
+ 6.606856988583543e-14,
+ 1.4907779871675686e-13,
+ 3.218725199566341e-14,
+ -4.692562527788824e-13,
+ 5.082197683525802e-15,
+ 2.0328790734103208e-13,
+ -1.3891340334970526e-13,
+ -2.795208725939191e-13,
+ 4.573977915173222e-13,
+ -4.0826988057657276e-13,
+ -5.861467994999758e-13,
+ 7.453889935837843e-14,
+ 3.1679032227310833e-13,
+ -3.7269449679189215e-14,
+ -1.3552527156068805e-13,
+ -3.5575383784680614e-14,
+ -3.1509625637859973e-13,
+ 5.996993266560446e-13,
+ -7.115076756936123e-14
+ ],
+ [
+ 7.06141936635342,
+ -4.765095543641761,
+ 1.889765568749134,
+ 3.1202680892737282,
+ -5.431598561921142,
+ 6.849071966231048,
+ 4.538810786642596,
+ -7.24401437244843,
+ 7.77284649586547,
+ -6.7174477600174445,
+ 5.222762334676653,
+ -1.7581875176053592,
+ -5.11656960722279,
+ 2.67317580646963,
+ -0.06305349347276895,
+ -4.6148498376991345,
+ 6.525323740969764,
+ -6.945412303686488,
+ -5.3047824473054686,
+ 7.736889529478563,
+ -7.806732048513333,
+ 6.062711769591103,
+ -4.233508081834211,
+ 0.7437805527538006,
+ 4.3516205733913225,
+ -1.443959091540459,
+ -1.150333154163777,
+ 5.561860173605222,
+ -7.183423551750089,
+ 7.1793341396089305,
+ 6.148697136221247,
+ -7.952369791651933,
+ 8.463526985651507,
+ -2.9076802059375457,
+ 0.24925374081071155,
+ 3.28181700949583,
+ -0.8102612546600737,
+ -2.9480663341151194,
+ 5.28071661637292,
+ -8.222127096069165,
+ 8.834241169424654,
+ -6.013693750703138,
+ -3.6409825626397243,
+ 6.498401999378027,
+ -7.25685887668701,
+ 6.584814166480354,
+ -6.727766624888102,
+ 4.974610402324622,
+ -8.385626177817573e-14,
+ -3.3881317890172014e-14,
+ 1.9058241313221758e-14,
+ -3.3881317890172014e-15,
+ -2.922263668027336e-13,
+ 1.164670302474663e-13,
+ -4.2351647362715017e-16,
+ 1.9608812728937053e-13,
+ -2.159934015498466e-14,
+ 3.176373552203626e-14,
+ -1.1943164556285635e-13,
+ -3.273782341137871e-13,
+ 5.251604272976662e-14,
+ 1.7830043539703022e-13,
+ 1.9354702844760763e-13,
+ 1.0122043719688889e-13,
+ 4.921261423547485e-13,
+ -2.625802136488331e-13,
+ 5.378659215064807e-13,
+ -1.24090326772755e-13,
+ 3.3881317890172014e-14,
+ 5.209252625613947e-14,
+ 2.4521603823011995e-13,
+ -9.656175598699024e-14,
+ -3.5914196963582334e-13,
+ 2.8079142201480056e-13,
+ 1.427250516123496e-13,
+ -1.1858461261560205e-13,
+ -7.115076756936123e-14,
+ -1.215492279309921e-13,
+ 8.893845946170154e-15,
+ -1.8168856718604742e-13,
+ 8.173867941003998e-14,
+ -2.6808592780598606e-13,
+ 1.418780186650953e-13,
+ 1.6601845766184287e-13,
+ -2.710505431213761e-14,
+ 2.1641691802347374e-13,
+ -4.912791094074942e-14,
+ -5.548065804515667e-14,
+ 3.5151867311053464e-14,
+ 1.9100592960584473e-13,
+ -1.8931186371133613e-13,
+ 5.929230630780102e-14,
+ -7.072725109573408e-14,
+ -1.274784585617722e-13,
+ -3.091670257478196e-13,
+ 8.978549240895584e-14,
+ 3.4220131069073734e-13,
+ -5.929230630780102e-15,
+ -9.402065714522734e-14,
+ 8.555032767268433e-14,
+ -3.049318610115481e-14,
+ -4.870439446712227e-14,
+ -3.261076846929056e-14,
+ 1.164670302474663e-13,
+ -1.6644197413547002e-13,
+ -1.8888834723770898e-13,
+ 6.776263578034403e-15,
+ 1.130788984584491e-13,
+ 2.0540548970916783e-13,
+ 2.0582900618279498e-13,
+ -6.107107549703505e-13,
+ 1.139259314057034e-13
+ ],
+ [
+ 10.87877090186718,
+ -6.422760794263081,
+ 1.493244656277957,
+ 7.279511925157664,
+ -11.043357856868226,
+ 12.73519723745371,
+ 9.428070063945013,
+ -13.637813513238694,
+ 13.926824983833237,
+ -10.856003000338278,
+ 7.684208111555492,
+ -1.3453092470681356,
+ -7.766830765095885,
+ 2.8091875149040653,
+ 1.8632737998155848,
+ -9.689757485480202,
+ 12.586310378844898,
+ -12.412814097826312,
+ -10.455824087367988,
+ 14.031703855174682,
+ -13.498475981520421,
+ 9.306342658466543,
+ -5.650475537349548,
+ -0.5131218971064792,
+ 6.102535625096406,
+ -0.5351932894077711,
+ -3.9244380791351254,
+ 11.003919947698606,
+ -13.299975733645164,
+ 12.400897213087767,
+ 11.567573496008352,
+ -13.921802668345574,
+ 14.090248024568861,
+ -3.4801404581057946,
+ -1.4166209340286988,
+ 7.3459885251294645,
+ 0.2499339910543398,
+ -6.9610472007687605,
+ 10.727900062487027,
+ -14.96285369237596,
+ 15.456190935147761,
+ -11.3775076967619,
+ -8.105541298835792,
+ 12.68636340582037,
+ -13.377485067670694,
+ 10.886383848138985,
+ -10.348335648346222,
+ 6.704986447063827,
+ -8.893845946170154e-14,
+ -2.541098841762901e-14,
+ 1.1096131609031334e-13,
+ -3.3881317890172014e-15,
+ -5.073727354053259e-13,
+ 1.2705494208814505e-13,
+ -5.251604272976662e-14,
+ 2.710505431213761e-13,
+ -4.573977915173222e-14,
+ 1.1519648082658485e-13,
+ -1.5077186461126546e-13,
+ -6.657678965418801e-13,
+ 1.2874900798265365e-13,
+ 2.795208725939191e-13,
+ 3.8031779331718085e-13,
+ 1.8973538018496328e-13,
+ 9.469828350303078e-13,
+ -4.489274620447792e-13,
+ 9.681586587116653e-13,
+ -1.7448878713438587e-13,
+ 1.3129010682441655e-13,
+ 2.371692252312041e-14,
+ 4.3198680309969317e-13,
+ -1.1773757966834775e-13,
+ -6.666149294891344e-13,
+ 4.1335207826009857e-13,
+ 2.388632911257127e-13,
+ -2.261577969168982e-13,
+ -7.369186641112413e-14,
+ -2.676624113323589e-13,
+ 3.3881317890172014e-14,
+ -4.0911691352382706e-13,
+ 1.7364175418713157e-13,
+ -4.590918574118308e-13,
+ 2.1260526976082939e-13,
+ 2.964615315390051e-13,
+ 4.235164736271502e-15,
+ 3.4982460721602604e-13,
+ -1.1434944787933055e-13,
+ -2.422514229147299e-13,
+ 2.541098841762901e-15,
+ 2.854501032246992e-13,
+ -2.617331807015788e-13,
+ 2.490276864927643e-13,
+ -2.600391148070702e-13,
+ -1.8550021544869177e-13,
+ -4.836558128822055e-13,
+ 1.0587911840678754e-13,
+ 6.301925127571995e-13,
+ -2.710505431213761e-14,
+ -1.9227647902672618e-13,
+ 1.7533582008164017e-13,
+ 3.5575383784680614e-14,
+ -2.0921713797181218e-13,
+ 8.639736061993863e-14,
+ 3.6253010142484055e-13,
+ -2.541098841762901e-13,
+ -3.7438856268640075e-13,
+ 2.541098841762901e-15,
+ 1.9481757786848908e-13,
+ 3.006966962752766e-13,
+ 4.0657581468206416e-13,
+ -1.029145030913975e-12,
+ 1.9227647902672618e-13
+ ],
+ [
+ 5.257119978126999,
+ 0.1901407691886521,
+ -4.365026986628193,
+ 12.386217811195973,
+ -14.933291320845361,
+ 13.986462540307787,
+ 13.292363930695906,
+ -15.47778226344429,
+ 13.731828568672462,
+ -7.065222220634556,
+ 2.4151433230114665,
+ 4.240050618893665,
+ -3.3382179214727397,
+ -3.3380069517404984,
+ 7.932221524116205,
+ -13.937282838341092,
+ 15.169516109439124,
+ -12.141946913314264,
+ -13.24275230757766,
+ 14.357425229398677,
+ -11.80113804071761,
+ 4.375918488917113,
+ 0.3959276716741777,
+ -6.198573144610846,
+ 0.7913652069243057,
+ 5.8009571797226025,
+ -9.616345011481616,
+ 14.05298147704252,
+ -14.437555729229343,
+ 10.800801797651628,
+ 13.104301307464977,
+ -12.71932345355181,
+ 10.580319015540066,
+ 1.9030183625460642,
+ -7.143185652779584,
+ 11.764075678221474,
+ 5.4947278140592495,
+ -12.041571175590486,
+ 14.483125667348126,
+ -15.465914112806127,
+ 14.091383835082242,
+ -8.064996539712093,
+ -12.870836217824708,
+ 15.725514622034886,
+ -14.347258396665366,
+ 7.9218020572802255,
+ -4.941893451389501,
+ -0.19918342837870565,
+ 9.613823951336309e-14,
+ 7.962109704190423e-14,
+ 3.46859991900636e-13,
+ 1.2281977735187355e-14,
+ -4.4172768199311763e-13,
+ -1.2281977735187355e-13,
+ -1.7872395187065737e-13,
+ 5.251604272976662e-14,
+ -7.157428404298838e-14,
+ 2.7232109254225756e-13,
+ 2.583450489125616e-14,
+ -8.787966827763366e-13,
+ 2.1175823681357508e-13,
+ 1.511953810848926e-13,
+ 4.5358614325467783e-13,
+ 2.253107639696439e-13,
+ 1.1265538198482195e-12,
+ -3.8455295805345235e-13,
+ 9.72817339921564e-13,
+ -1.7364175418713157e-14,
+ 3.6761229910836635e-13,
+ -1.8338263308055602e-13,
+ 3.9641141931501256e-13,
+ 4.658681209898652e-14,
+ -7.436949276892757e-13,
+ 1.5415999640028266e-13,
+ 1.8719428134320037e-13,
+ -2.4098087349384845e-13,
+ 1.15619997300212e-13,
+ -4.1165801236558996e-13,
+ 1.139259314057034e-13,
+ -6.822850390133389e-13,
+ 2.634272465960874e-13,
+ -3.951408698941311e-13,
+ 1.232432938255007e-13,
+ 2.998496633280223e-13,
+ 1.5839516113655416e-13,
+ 2.31239994600424e-13,
+ -2.0201735792015063e-13,
+ -6.556035011748285e-13,
+ -1.8804131429045468e-13,
+ 1.2790197503539935e-13,
+ -1.6940658945086007e-14,
+ 6.818615225397118e-13,
+ -7.017667968001878e-13,
+ -7.877406409464993e-14,
+ -2.871441691192078e-13,
+ -8.555032767268433e-14,
+ 6.708500942254059e-13,
+ -6.606856988583543e-14,
+ -2.693564772268675e-13,
+ 2.430984558619842e-13,
+ 3.180608716939898e-13,
+ -5.590417451878382e-13,
+ 5.243133943504119e-13,
+ 8.427977825180288e-13,
+ -1.147729643529577e-13,
+ -5.039846036163087e-13,
+ -4.277516383634217e-14,
+ 1.7745340244977592e-13,
+ 9.190307477709159e-14,
+ 4.980553729855286e-13,
+ -8.283982224147057e-13,
+ 1.5246593050577406e-13
+ ],
+ [
+ 1.9034302384737813,
+ 1.3023415408159797,
+ -3.485259151125681,
+ 7.805663169856358,
+ -9.000569790473385,
+ 7.997029044835993,
+ 8.084267140796076,
+ -8.932107232149601,
+ 7.59383771475257,
+ -3.239297656556035,
+ 0.38829465978923394,
+ 3.3664373533045997,
+ -1.0532248498076082,
+ -2.966949058901325,
+ 5.505244778579109,
+ -8.511922467616037,
+ 8.895346842495702,
+ -6.696802023075757,
+ -7.861739322501215,
+ 8.03564128471844,
+ -6.249315041474841,
+ 1.5389400918487377,
+ 1.3141564995267085,
+ -4.472665854025322,
+ -0.5214664975153911,
+ 4.369515112234577,
+ -6.3726787481472655,
+ 8.359322804232471,
+ -8.22707109747819,
+ 5.71114577733527,
+ 7.5585767319802235,
+ -6.848988667703367,
+ 5.243038119751083,
+ 2.031438480156804,
+ -5.004910051513265,
+ 7.335398084042007,
+ 4.001880147889441,
+ -7.609443233632137,
+ 8.726092754765519,
+ -8.683584084191192,
+ 7.581908614198982,
+ -3.881301834701088,
+ -7.106178034410469,
+ 9.286758234977365,
+ -8.146540080508615,
+ 3.8647085426808143,
+ -1.7672387076932732,
+ -1.3600714647684824,
+ 8.576208590949791e-14,
+ 6.225692162319107e-14,
+ 2.346281263894412e-13,
+ 1.0164395367051604e-14,
+ -2.3420460991581404e-13,
+ -1.1583175553702557e-13,
+ -1.2197274440461925e-13,
+ -9.952637130238029e-15,
+ -4.446922973085077e-14,
+ 1.7872395187065737e-13,
+ 4.701032857261367e-14,
+ -5.260074602449205e-13,
+ 1.3361944742936588e-13,
+ 5.971582278142817e-14,
+ 2.608861477543245e-13,
+ 1.3234889800848443e-13,
+ 6.562387758852692e-13,
+ -2.0011153378882846e-13,
+ 5.404070203482436e-13,
+ 1.7999450129153882e-14,
+ 2.4945120296639145e-13,
+ -1.3870164511289168e-13,
+ 2.1175823681357508e-13,
+ 5.505714157152952e-14,
+ -4.273281218897945e-13,
+ 3.8539999100070665e-14,
+ 9.338538243478661e-14,
+ -1.359487880343152e-13,
+ 9.825582188149884e-14,
+ -2.5474515888673083e-13,
+ 7.4750657595192e-14,
+ -4.281751548370488e-13,
+ 1.6305384234645282e-13,
+ -2.0371142381465923e-13,
+ 5.2304284492953046e-14,
+ 1.691948312140465e-13,
+ 1.1667878848427987e-13,
+ 1.0503208545953324e-13,
+ -1.274784585617722e-13,
+ -4.3918658315135473e-13,
+ -1.3997219453377313e-13,
+ 4.213988912590144e-14,
+ 3.176373552203626e-14,
+ 4.573977915173222e-13,
+ -4.717973516206453e-13,
+ -2.414043899674756e-14,
+ -1.2260801911505997e-13,
+ -8.089164646278568e-14,
+ 3.818001009748759e-13,
+ -4.298692207315574e-14,
+ -1.6368911705689354e-13,
+ 1.4632494163818038e-13,
+ 2.270048298641525e-13,
+ -3.746003209232143e-13,
+ 3.7078867266056997e-13,
+ 5.535360310306853e-13,
+ -3.8963515573697816e-14,
+ -3.0450834453792097e-13,
+ -3.028142786434124e-14,
+ 9.656175598699024e-14,
+ 1.418780186650953e-14,
+ 2.9434394917086937e-13,
+ -4.2351647362715017e-13,
+ 7.81387893842092e-14
+ ],
+ [
+ -8.132364962882209,
+ 4.120764853618552,
+ -1.2038288238831982,
+ -5.278370901344275,
+ 7.343803267211773,
+ -9.380778294695512,
+ -6.88370184377716,
+ 9.302769252509203,
+ -10.298477875007146,
+ 8.118653301521926,
+ -6.5424704712059825,
+ 1.1221584949134273,
+ 5.852387926846603,
+ -2.9514264345433108,
+ -1.25091213335819,
+ 7.102412547353122,
+ -10.020732968146358,
+ 9.21145708681651,
+ 7.704549473438532,
+ -11.133708640461652,
+ 10.035105438026788,
+ -6.970528131617835,
+ 3.5432523492169246,
+ 0.2901738740336493,
+ -4.598594043694494,
+ -0.23680466896489885,
+ 2.8064482489461127,
+ -8.0720463988204,
+ 9.065001351736287,
+ -9.187850362556265,
+ -8.509530121123902,
+ 9.569253977713315,
+ -10.480502984759385,
+ 2.6974442440975865,
+ 0.17582138985297538,
+ -5.325404374021653,
+ -0.05714914016160014,
+ 4.292122837853546,
+ -7.850324991908913,
+ 11.075761492000138,
+ -12.222395927226517,
+ 8.50852118234892,
+ 10.194121099152197,
+ -10.092928598089195,
+ 9.89985600715135,
+ -8.103501094546125,
+ 7.00432018790008,
+ -5.066499013279585,
+ 3.8963515573697816e-14,
+ 6.776263578034403e-15,
+ -7.115076756936123e-14,
+ 2.0328790734103208e-14,
+ 3.5236570605778894e-13,
+ -4.235164736271502e-14,
+ 2.879912020664621e-14,
+ -1.8634724839594607e-13,
+ 3.8963515573697816e-14,
+ -6.945670167485263e-14,
+ 1.1689054672109345e-13,
+ 4.70950318673391e-13,
+ -3.8963515573697816e-14,
+ -2.202285662861181e-13,
+ -2.778268066994105e-13,
+ -1.7279472123987727e-13,
+ -6.369687763352339e-13,
+ 3.2864878353466853e-13,
+ -7.013432803265607e-13,
+ 5.929230630780102e-14,
+ -1.0333801956502464e-13,
+ -2.710505431213761e-14,
+ -3.9302328752599536e-13,
+ 1.6432439176733427e-13,
+ 5.149960319306146e-13,
+ -3.1848438816761693e-13,
+ -1.7110065534536867e-13,
+ 1.7618285302889447e-13,
+ 1.6940658945086007e-14,
+ 2.337810934421869e-13,
+ 3.3881317890172014e-15,
+ 3.4728350837426314e-13,
+ -1.8465318250143747e-13,
+ 4.0149361699853836e-13,
+ -1.5585406229479126e-13,
+ -2.388632911257127e-13,
+ -3.049318610115481e-14,
+ -2.727446090158847e-13,
+ 1.3213713977167085e-13,
+ 1.4907779871675686e-13,
+ 3.5575383784680614e-14,
+ -2.185345003916095e-13,
+ 2.659683454378503e-13,
+ -1.0503208545953324e-13,
+ 2.0159384144652348e-13,
+ 1.4399560103323106e-13,
+ 3.1509625637859973e-13,
+ -8.978549240895584e-14,
+ -4.607859233063394e-13,
+ -2.541098841762901e-14,
+ 1.5415999640028266e-13,
+ -1.0842021724855044e-13,
+ -8.639736061993863e-14,
+ 2.0498197323554068e-13,
+ -7.453889935837843e-14,
+ -2.490276864927643e-13,
+ 1.8634724839594607e-13,
+ 2.473336205982557e-13,
+ -7.453889935837843e-14,
+ -1.5924219408380846e-13,
+ -2.0837010502455788e-13,
+ -2.710505431213761e-13,
+ 8.012931681025681e-13,
+ -1.0333801956502464e-13
+ ],
+ [
+ -11.313910589225651,
+ 4.771248636243456,
+ -0.44459487526147834,
+ -9.48579435901771,
+ 12.370718711200102,
+ -14.94393291493996,
+ -11.68651555895531,
+ 14.926166636148597,
+ -16.022625924290953,
+ 11.742532648413215,
+ -8.96169787006347,
+ 0.38571804470230403,
+ 8.050348305492287,
+ -3.1429564551305282,
+ -3.436245124574761,
+ 12.123344569234364,
+ -16.310758533945393,
+ 14.309489615997077,
+ 12.706039471032355,
+ -17.49527245305553,
+ 15.245424158257077,
+ -9.6707773944281,
+ 4.0088925217571845,
+ 1.8448645383539055,
+ -5.875725447581384,
+ -1.9608518045912937,
+ 5.772695341314348,
+ -13.341853529782712,
+ 14.383214810687727,
+ -13.945250540998128,
+ -13.654081949577897,
+ 14.597556970063003,
+ -15.495525224886757,
+ 2.893412953350976,
+ 1.63382229076009,
+ -9.389878187344584,
+ -1.3708686620026622,
+ 7.899375072924317,
+ -13.168407136088076,
+ 17.407682684407913,
+ -18.780705282494488,
+ 12.468655116971137,
+ 15.73631933039605,
+ -16.360336861899906,
+ 15.687186565255962,
+ -11.91983378430908,
+ 9.566346729402094,
+ -6.215700298393848,
+ 2.0328790734103208e-14,
+ -1.6940658945086007e-14,
+ -1.8634724839594607e-13,
+ 2.371692252312041e-14,
+ 5.421010862427522e-13,
+ 1.0164395367051604e-14,
+ 9.486769009248164e-14,
+ -2.270048298641525e-13,
+ 7.453889935837843e-14,
+ -1.5924219408380846e-13,
+ 1.4907779871675686e-13,
+ 7.962109704190423e-13,
+ -7.453889935837843e-14,
+ -3.2526065174565133e-13,
+ -4.54009659728305e-13,
+ -2.744386749103933e-13,
+ -1.0164395367051604e-12,
+ 4.87890977618477e-13,
+ -1.111307226797642e-12,
+ 3.7269449679189215e-14,
+ -2.1684043449710089e-13,
+ 0.0,
+ -5.963111948670274e-13,
+ 2.202285662861181e-13,
+ 8.233160247311799e-13,
+ -4.2351647362715017e-13,
+ -2.541098841762901e-13,
+ 2.574980159653073e-13,
+ -2.710505431213761e-14,
+ 3.9979955110402976e-13,
+ -3.3881317890172014e-15,
+ 6.200281173901478e-13,
+ -3.015437292225309e-13,
+ 6.301925127571995e-13,
+ -2.1345230270808369e-13,
+ -3.6253010142484055e-13,
+ -7.792703114739563e-14,
+ -3.8963515573697816e-13,
+ 2.337810934421869e-13,
+ 3.3203691532368573e-13,
+ 1.0842021724855044e-13,
+ -2.879912020664621e-13,
+ 3.6253010142484055e-13,
+ -2.744386749103933e-13,
+ 4.3029273720518457e-13,
+ 2.0328790734103208e-13,
+ 4.0318768289304696e-13,
+ -1.2536087619363645e-13,
+ -7.453889935837843e-13,
+ -6.098637220230962e-14,
+ 2.778268066994105e-13,
+ -1.7618285302889447e-13,
+ -2.202285662861181e-13,
+ 4.2012834183813297e-13,
+ -2.303929616531697e-13,
+ -5.149960319306146e-13,
+ 2.676624113323589e-13,
+ 4.1674021004911577e-13,
+ -1.1519648082658485e-13,
+ -2.473336205982557e-13,
+ -2.812149384884277e-13,
+ -4.54009659728305e-13,
+ 1.1993986533120893e-12,
+ -1.5246593050577406e-13
+ ],
+ [
+ -5.660589151530598,
+ 1.8084848070346617,
+ 0.517878546637807,
+ -6.035228435379495,
+ 7.485543741080368,
+ -8.616076475577124,
+ -7.116649025442354,
+ 8.661841043897414,
+ -9.036597008553398,
+ 6.144456018750286,
+ -4.399248488182501,
+ -0.5143926758158955,
+ 3.9726267628342855,
+ -0.9928519627097868,
+ -2.7398321579972436,
+ 7.414971990873054,
+ -9.586649516079213,
+ 8.058607171955066,
+ 7.5530436947566,
+ -9.960307346780631,
+ 8.400534525580433,
+ -4.822388982220267,
+ 1.4517898755218706,
+ 1.7903042346863343,
+ -2.625657114489227,
+ -1.9627827707611998,
+ 4.012528988360277,
+ -7.946106319049212,
+ 8.262512555760344,
+ -7.6769413848212,
+ -7.923946040589998,
+ 8.076570007972848,
+ -8.303278353501163,
+ 0.9305010529328982,
+ 1.6534870584814652,
+ -5.8901414211245475,
+ -1.4630038764297586,
+ 5.112562107984989,
+ -7.940579356982545,
+ 9.912322792063108,
+ -10.465523667607252,
+ 6.618316814136021,
+ 8.808423573226506,
+ -8.843254135005518,
+ 9.000639217909187,
+ -6.352548319984626,
+ 4.6790380522738415,
+ -2.6086071488233467,
+ -2.202285662861181e-14,
+ -1.3552527156068805e-14,
+ -1.1858461261560205e-13,
+ 3.3881317890172014e-15,
+ 3.066259269060567e-13,
+ 3.5575383784680614e-14,
+ 6.945670167485263e-14,
+ -9.656175598699024e-14,
+ 5.251604272976662e-14,
+ -8.470329472543003e-14,
+ 6.945670167485263e-14,
+ 4.658681209898652e-13,
+ -5.929230630780102e-14,
+ -1.4738373282224826e-13,
+ -2.473336205982557e-13,
+ -1.5077186461126546e-13,
+ -5.709002064493984e-13,
+ 2.608861477543245e-13,
+ -6.454391058077769e-13,
+ 8.470329472543003e-15,
+ -1.5077186461126546e-13,
+ 3.8963515573697816e-14,
+ -3.049318610115481e-13,
+ 1.2366681029912785e-13,
+ 4.658681209898652e-13,
+ -1.9820570965750628e-13,
+ -1.2705494208814505e-13,
+ 1.6432439176733427e-13,
+ -3.3881317890172014e-14,
+ 2.354751593366955e-13,
+ -1.3552527156068805e-14,
+ 3.8285889215894375e-13,
+ -1.7787691892340307e-13,
+ 3.3373098121819433e-13,
+ -1.0842021724855044e-13,
+ -1.8804131429045468e-13,
+ -6.268043809681823e-14,
+ -2.0667603913004928e-13,
+ 1.5077186461126546e-13,
+ 2.270048298641525e-13,
+ 8.809142651444724e-14,
+ -1.4907779871675686e-13,
+ 1.7448878713438587e-13,
+ -1.8295911660692887e-13,
+ 2.981555974335137e-13,
+ 9.486769009248164e-14,
+ 1.9651164376299768e-13,
+ -2.371692252312041e-14,
+ -4.37069000783219e-13,
+ -2.371692252312041e-14,
+ 1.6771252355635147e-13,
+ -9.656175598699024e-14,
+ -1.6771252355635147e-13,
+ 2.710505431213761e-13,
+ -1.7957098481791167e-13,
+ -3.5236570605778894e-13,
+ 1.3721933745519665e-13,
+ 2.405573570202213e-13,
+ -5.082197683525802e-14,
+ -1.3213713977167085e-13,
+ -1.2366681029912785e-13,
+ -2.591920818598159e-13,
+ 6.539094352803199e-13,
+ -8.978549240895584e-14
+ ],
+ [
+ 11.26953899403319,
+ -8.416870228995851,
+ 4.251322169649839,
+ 2.8260413758176974,
+ -6.349995430352077,
+ 9.028512880826144,
+ 5.122080214775707,
+ -9.414626102918932,
+ 10.704284989179028,
+ -10.278210446445957,
+ 8.637716275792293,
+ -3.993086408735802,
+ -8.265856510226799,
+ 5.393941661967456,
+ -1.808093975048117,
+ -5.11698914487768,
+ 8.194330264767295,
+ -9.591704689634746,
+ -6.4764810139319495,
+ 10.494670790305163,
+ -11.17654957159747,
+ 9.704948806181072,
+ -7.5277886962662794,
+ 2.6323910533553248,
+ 7.4689235874843325,
+ -3.788327548601692,
+ 0.039161311899490896,
+ 6.754846959408851,
+ -9.530921131985952,
+ 10.289971573811464,
+ 7.988037501988239,
+ -11.248316737121026,
+ 12.591078777983565,
+ -5.510529033387894,
+ 1.953702954004281,
+ 3.242992431531908,
+ -2.597677054981804,
+ -2.6098959870618703,
+ 6.169390579278452,
+ -11.121348681939882,
+ 12.477645921811558,
+ -10.420670239789683,
+ -10.824466931758657,
+ 12.178800903308204,
+ -9.666414660889094,
+ 9.862449115645031,
+ -10.763394647651886,
+ 8.774527427573275,
+ -1.6940658945086007e-13,
+ -2.0328790734103208e-14,
+ 1.9481757786848908e-14,
+ -3.3881317890172014e-14,
+ -4.1758724299637007e-13,
+ 2.0328790734103208e-13,
+ 1.6940658945086007e-15,
+ 2.981555974335137e-13,
+ -5.082197683525802e-15,
+ 5.759824041329242e-14,
+ -2.320870275476783e-13,
+ -4.62479989200848e-13,
+ 2.879912020664621e-14,
+ 3.100140586950739e-13,
+ 2.574980159653073e-13,
+ 1.0587911840678754e-13,
+ 6.76779324856186e-13,
+ -4.0488174878755556e-13,
+ 7.453889935837843e-13,
+ -2.1768746744435519e-13,
+ -4.404571325722362e-14,
+ 1.4823076576950256e-13,
+ 3.6253010142484055e-13,
+ -1.2451384324638215e-13,
+ -5.031375706690544e-13,
+ 4.79420648145934e-13,
+ 2.600391148070702e-13,
+ -1.0079692072326174e-13,
+ -1.2620790914089075e-13,
+ -1.5415999640028266e-13,
+ -2.879912020664621e-14,
+ -1.6686549060909717e-13,
+ 9.656175598699024e-14,
+ -4.2690460541616737e-13,
+ 2.1599340154984659e-13,
+ 2.464865876510014e-13,
+ -8.131516293641283e-14,
+ 3.8878812278972386e-13,
+ -3.5575383784680614e-14,
+ -6.268043809681823e-14,
+ 1.1943164556285635e-13,
+ 2.659683454378503e-13,
+ -3.032377951170395e-13,
+ 2.117582368135751e-14,
+ 1.6093625997831706e-14,
+ -1.8719428134320037e-13,
+ -4.472333961502706e-13,
+ 2.507217523872729e-13,
+ 4.3622196783596467e-13,
+ 4.1504614415460717e-14,
+ -1.2027867851011065e-13,
+ 1.0249098661777034e-13,
+ -1.2705494208814505e-13,
+ -2.202285662861181e-14,
+ -1.4484263398048536e-13,
+ 5.759824041329242e-14,
+ -3.057788939588024e-13,
+ -2.253107639696439e-13,
+ 3.4728350837426314e-14,
+ 1.6347735882007997e-13,
+ 4.0657581468206416e-13,
+ 2.625802136488331e-13,
+ -8.893845946170154e-13,
+ 1.2112571145736495e-13
+ ],
+ [
+ 9.980711549836808,
+ -6.873847911394842,
+ 2.874120012777876,
+ 4.05624051758662,
+ -7.301291357538387,
+ 9.367897196314903,
+ 6.066535502724389,
+ -9.891233565214165,
+ 10.70660833504596,
+ -9.421562603790093,
+ 7.42610688453109,
+ -2.6799825417456566,
+ -7.248019136075613,
+ 3.9581838007358083,
+ -0.36967895208047397,
+ -6.152993154141401,
+ 8.852571055177119,
+ -9.57107264489982,
+ -7.170556247997739,
+ 10.625265520237619,
+ -10.823057875539957,
+ 8.573854628318847,
+ -6.115783445571016,
+ 1.2889541674440548,
+ 6.2367983012253605,
+ -2.2901724159807304,
+ -1.3176036150969506,
+ 7.512462567558951,
+ -9.840612224812572,
+ 9.955392220959226,
+ 8.390709050602789,
+ -11.008009362714956,
+ 11.811770379166337,
+ -4.252552327398054,
+ 0.602559685722421,
+ 4.310836917998766,
+ -1.3594381405434437,
+ -3.8278792764482983,
+ 7.09264576112622,
+ -11.292142418607364,
+ 12.21431298684002,
+ -9.678772568710594,
+ -10.705508834243195,
+ 11.453962523246481,
+ -9.386209357575362,
+ 9.200711786473494,
+ -9.518701773536272,
+ 7.168560357154535,
+ -1.1604351377383915e-13,
+ -1.2705494208814505e-14,
+ 4.828087799349512e-14,
+ -2.541098841762901e-14,
+ -4.0742284762931846e-13,
+ 1.5331296345302836e-13,
+ -2.371692252312041e-14,
+ 2.354751593366955e-13,
+ -1.6093625997831706e-14,
+ 6.945670167485263e-14,
+ -1.9227647902672618e-13,
+ -4.895850435129856e-13,
+ 5.675120746603812e-14,
+ 2.727446090158847e-13,
+ 2.642742795433417e-13,
+ 1.0926725019580474e-13,
+ 6.971081155902892e-13,
+ -3.7862372742267225e-13,
+ 7.453889935837843e-13,
+ -1.7194768829262297e-13,
+ 1.4399560103323106e-14,
+ 8.470329472543003e-14,
+ 3.3288394827094003e-13,
+ -1.0249098661777034e-13,
+ -5.090668012998345e-13,
+ 3.9302328752599536e-13,
+ 2.346281263894412e-13,
+ -1.1943164556285635e-13,
+ -9.825582188149884e-14,
+ -1.8126505071242027e-13,
+ -1.3552527156068805e-14,
+ -2.31239994600424e-13,
+ 1.1604351377383915e-13,
+ -4.0996394647108136e-13,
+ 1.9058241313221758e-13,
+ 2.464865876510014e-13,
+ -3.7269449679189215e-14,
+ 3.4643647542700884e-13,
+ -6.437450399132683e-14,
+ -1.2959604092990795e-13,
+ 7.284483346386983e-14,
+ 2.31239994600424e-13,
+ -2.558039500707987e-13,
+ 9.317362419797304e-14,
+ -8.978549240895584e-14,
+ -1.7194768829262297e-13,
+ -4.0234064994579266e-13,
+ 1.7872395187065737e-13,
+ 4.582448244645765e-13,
+ 1.4399560103323106e-14,
+ -1.4484263398048536e-13,
+ 1.0418505251227894e-13,
+ -5.675120746603812e-14,
+ -8.893845946170154e-14,
+ -4.0657581468206416e-14,
+ 1.5077186461126546e-13,
+ -2.574980159653073e-13,
+ -2.464865876510014e-13,
+ 2.625802136488331e-14,
+ 1.6263032587282567e-13,
+ 3.5151867311053464e-13,
+ 2.888382350137164e-13,
+ -8.487270131488089e-13,
+ 1.2027867851011065e-13
+ ],
+ [
+ -10.374612522115834,
+ 10.261939174080288,
+ -7.771964802907406,
+ 4.124920601794054,
+ -1.4181860695107822,
+ -2.3708383507880177,
+ 1.9109242411176715,
+ 1.9409158521089749,
+ -4.543206023331057,
+ 8.08149807333891,
+ -8.920700657049284,
+ 7.38455787587954,
+ 7.923491489622174,
+ -8.51151283742668,
+ 6.997755987129861,
+ -2.3095178109349175,
+ -0.6352395533371396,
+ 4.169349069022072,
+ -0.2506071881127566,
+ -3.898554292059103,
+ 6.284847345937669,
+ -9.026064605811076,
+ 9.316419192423572,
+ -6.937111849857904,
+ -8.512417026635164,
+ 8.09881786700443,
+ -5.891746368812393,
+ 0.4073405727534097,
+ 2.7131683456090703,
+ -5.8258326952611625,
+ -1.6542055184860032,
+ 5.825307612659991,
+ -8.730424689941731,
+ 7.791317683735591,
+ -6.681743459087885,
+ 3.244530905518942,
+ 6.466812707752792,
+ -4.163920508921328,
+ 1.3736306640745843,
+ 3.991096379498348,
+ -6.447841984403093,
+ 7.645201916528074,
+ 5.11950034013946,
+ -8.319141830467036,
+ 8.99382623592996,
+ -7.060642820020951,
+ 9.96824523707356,
+ -10.686596914118315,
+ 2.625802136488331e-13,
+ 4.658681209898652e-14,
+ 1.1011428314305904e-13,
+ 4.743384504624082e-14,
+ 1.9354702844760763e-13,
+ -3.0620241043242957e-13,
+ -1.3129010682441655e-13,
+ -3.9810548520952116e-13,
+ -1.6093625997831706e-14,
+ 3.4304834363799164e-14,
+ 3.2356658585114273e-13,
+ 6.140988867593677e-14,
+ 1.1096131609031334e-13,
+ -2.82061971435682e-13,
+ -9.317362419797304e-14,
+ 3.3034284942917713e-14,
+ -1.7787691892340307e-13,
+ 2.524158182817815e-13,
+ -2.913793338554793e-13,
+ 2.4818065354551e-13,
+ 2.6046263128069735e-13,
+ -3.6676526616111205e-13,
+ -2.414043899674756e-13,
+ 1.435720845596039e-13,
+ 1.7194768829262297e-13,
+ -5.501478992416681e-13,
+ -2.0921713797181218e-13,
+ -2.329340604949326e-14,
+ 1.6686549060909717e-13,
+ -7.538593230563273e-14,
+ 8.385626177817573e-14,
+ -1.8719428134320037e-13,
+ -4.235164736271502e-15,
+ 3.0112021274890377e-13,
+ -2.0709955560367643e-13,
+ -1.1689054672109345e-13,
+ 1.9142944607947188e-13,
+ -3.6507120026660345e-13,
+ -9.232659125071874e-14,
+ -2.7570922433127476e-13,
+ -2.8756768559283497e-13,
+ -2.346281263894412e-13,
+ 3.273782341137871e-13,
+ 2.625802136488331e-13,
+ -4.413041655194905e-13,
+ 1.2112571145736495e-13,
+ 3.959879028413854e-13,
+ -4.290221877843031e-13,
+ -7.496241583200558e-14,
+ -1.147729643529577e-13,
+ -2.583450489125616e-14,
+ -4.701032857261367e-14,
+ 3.3796614595446584e-13,
+ -2.8417955380381776e-13,
+ 4.819617469876969e-13,
+ 4.086933970501999e-13,
+ 3.324604317973129e-13,
+ 9.317362419797304e-15,
+ -7.326834993749698e-14,
+ -7.496241583200558e-14,
+ -4.2351647362715017e-13,
+ 1.6940658945086007e-15,
+ 5.200782296141404e-13,
+ -3.8116482626443515e-14
+ ],
+ [
+ -11.138195599026036,
+ 10.400689575509261,
+ -7.3975908069464005,
+ 2.778547618771885,
+ 0.2592147011836078,
+ -4.002547467178613,
+ 0.4261987283885712,
+ 3.7336228406018073,
+ -6.180350354667476,
+ 9.014934141821023,
+ -9.339612555687022,
+ 7.018385423385677,
+ 8.429638858019906,
+ -8.268189977756077,
+ 6.20459280120938,
+ -0.7575065234899129,
+ -2.3765726608758295,
+ 5.619445806069044,
+ 1.254898492435274,
+ -5.599052241119744,
+ 7.729610529677804,
+ -9.667876076813197,
+ 9.41674061300537,
+ -6.3404981437947985,
+ -8.73749217878787,
+ 7.563769472358924,
+ -4.889026258678335,
+ -1.187933510289398,
+ 4.3995470825462135,
+ -7.14920310224872,
+ -3.174000814658209,
+ 7.3651697844747375,
+ -10.07472282892246,
+ 7.697967406324568,
+ -5.975723469612507,
+ 1.9551602482934227,
+ 5.943106840552201,
+ -2.859666161537493,
+ -0.25534315480517383,
+ 5.817212142864125,
+ -8.158431784121966,
+ 8.685715860422107,
+ 6.684838745343769,
+ -9.640961946243571,
+ 9.806675071553551,
+ -7.313543729470511,
+ 10.687297877369165,
+ -10.833206998939094,
+ 2.541098841762901e-13,
+ 3.9810548520952116e-14,
+ 8.639736061993863e-14,
+ 4.658681209898652e-14,
+ 2.507217523872729e-13,
+ -3.015437292225309e-13,
+ -1.0672615135404184e-13,
+ -3.9048218868423246e-13,
+ -1.2705494208814505e-14,
+ 1.3552527156068805e-14,
+ 3.2271955290388843e-13,
+ 1.5924219408380846e-13,
+ 8.470329472543003e-14,
+ -3.040848280642938e-13,
+ -1.3467823861343375e-13,
+ -8.470329472543003e-16,
+ -2.956144985917508e-13,
+ 3.006966962752766e-13,
+ -4.1081097941833566e-13,
+ 2.558039500707987e-13,
+ 2.244637310223896e-13,
+ -3.3966021184897444e-13,
+ -2.778268066994105e-13,
+ 1.4653669987499396e-13,
+ 2.541098841762901e-13,
+ -5.64123942871364e-13,
+ -2.270048298641525e-13,
+ 7.623296525288703e-15,
+ 1.7194768829262297e-13,
+ -2.710505431213761e-14,
+ 7.284483346386983e-14,
+ -1.1773757966834775e-13,
+ -2.541098841762901e-14,
+ 3.4813054132151744e-13,
+ -2.219226321806267e-13,
+ -1.5161889755851976e-13,
+ 1.8041801776516597e-13,
+ -3.9132922163148676e-13,
+ -7.284483346386983e-14,
+ -2.1684043449710089e-13,
+ -2.685094442796132e-13,
+ -2.532628512290358e-13,
+ 3.4558944247975454e-13,
+ 2.1429933565533799e-13,
+ -3.6591823321385775e-13,
+ 1.4060746924421386e-13,
+ 4.2521053952165877e-13,
+ -4.1419911120735287e-13,
+ -1.5754812818929986e-13,
+ -1.0333801956502464e-13,
+ 1.3552527156068805e-14,
+ -6.437450399132683e-14,
+ 3.07472959853311e-13,
+ -2.371692252312041e-13,
+ 4.2605757246891307e-13,
+ 3.2949581648192283e-13,
+ 3.4982460721602604e-13,
+ 5.590417451878382e-14,
+ -6.945670167485263e-14,
+ -9.825582188149884e-14,
+ -4.45539330255762e-13,
+ -5.590417451878382e-14,
+ 6.284984468626909e-13,
+ -5.505714157152952e-14
+ ],
+ [
+ 9.526745953516768,
+ -11.46026578822472,
+ 9.132495557533339,
+ -7.2564269979551215,
+ 4.313539002746917,
+ -0.8912589662533627,
+ -5.168410086393868,
+ 0.9580434483026271,
+ 1.4166689464975752,
+ -6.672356015159287,
+ 7.917365822665005,
+ -8.667043419199922,
+ -7.399206972305614,
+ 8.879810711346357,
+ -9.163598473698679,
+ 5.770176156703334,
+ -3.758031680664152,
+ -1.379792049458743,
+ 3.4730447352810843,
+ -0.1752939071811082,
+ -3.6648115861982005,
+ 8.324361480071799,
+ -10.52362004146849,
+ 8.71396313990235,
+ 8.663747171942257,
+ -10.563013666954658,
+ 8.444773480003285,
+ -3.7977665176972892,
+ -0.0954860439530574,
+ 3.4628914356914193,
+ -1.4206858090756158,
+ -3.74061007775619,
+ 6.5248468844055045,
+ -8.526510035775035,
+ 7.88991043787227,
+ -6.177227991535057,
+ -8.009180077376994,
+ 6.45838186340519,
+ -4.900441709725536,
+ -0.4014749966137345,
+ 2.5326461294149056,
+ -5.965317602351775,
+ -2.152924071592087,
+ 5.357088911591714,
+ -7.89716535508678,
+ 8.803244324109079,
+ -9.916594371294714,
+ 11.167660332899228,
+ -3.2356658585114273e-13,
+ -7.792703114739563e-14,
+ -1.6432439176733427e-13,
+ -5.082197683525802e-14,
+ -1.2536087619363645e-13,
+ 3.9641141931501256e-13,
+ 1.6601845766184287e-13,
+ 4.675621868843738e-13,
+ 5.082197683525802e-14,
+ -3.7269449679189215e-14,
+ -3.049318610115481e-13,
+ 1.3721933745519665e-13,
+ -1.3552527156068805e-13,
+ 2.591920818598159e-13,
+ 1.0164395367051604e-14,
+ -1.5077186461126546e-13,
+ -5.082197683525802e-15,
+ -1.7618285302889447e-13,
+ 5.421010862427522e-14,
+ -2.846030702774449e-13,
+ -4.0488174878755556e-13,
+ 4.777265822514254e-13,
+ 9.486769009248164e-14,
+ -7.792703114739563e-14,
+ 2.879912020664621e-14,
+ 5.336307567702092e-13,
+ 1.8804131429045468e-13,
+ 1.3044307387716225e-13,
+ -2.1684043449710089e-13,
+ 1.9989977555201488e-13,
+ -7.792703114739563e-14,
+ 3.8116482626443515e-13,
+ -7.792703114739563e-14,
+ -2.0328790734103208e-13,
+ 1.4907779871675686e-13,
+ 3.218725199566341e-14,
+ -2.388632911257127e-13,
+ 3.5405977195229754e-13,
+ 1.9312351197398048e-13,
+ 3.9302328752599536e-13,
+ 3.9471735342050396e-13,
+ 2.202285662861181e-13,
+ -2.371692252312041e-13,
+ -2.524158182817815e-13,
+ 6.539094352803199e-13,
+ -6.606856988583543e-14,
+ -4.489274620447792e-13,
+ 4.675621868843738e-13,
+ -8.809142651444724e-14,
+ 1.0842021724855044e-13,
+ 1.0842021724855044e-13,
+ 6.606856988583543e-14,
+ -5.251604272976662e-13,
+ 4.590918574118308e-13,
+ -6.420509740187597e-13,
+ -5.759824041329242e-13,
+ -3.117081245895825e-13,
+ 3.8963515573697816e-14,
+ 3.3881317890172014e-14,
+ -5.082197683525802e-15,
+ 4.3537493488871037e-13,
+ -7.792703114739563e-14,
+ -3.1848438816761693e-13,
+ 1.6940658945086007e-14
+ ],
+ [
+ 16.085818727613056,
+ -18.609777485496156,
+ 14.368709873159036,
+ -10.420150549068794,
+ 5.3603722081152485,
+ 0.11369455902803904,
+ -6.922117718899433,
+ -0.15933389349771268,
+ 3.8399700528066787,
+ -11.645036297212378,
+ 13.163097101357454,
+ -13.626033130766736,
+ -12.410878222471618,
+ 14.085515986812364,
+ -14.020854634623571,
+ 7.828425458743932,
+ -4.404606463011201,
+ -3.602740230692047,
+ 4.168918400040494,
+ 1.333098751017616,
+ -7.281852672567109,
+ 14.031461708869719,
+ -17.063084014294894,
+ 13.482701703049933,
+ 14.182621590669287,
+ -16.522781571456136,
+ 12.66273962433804,
+ -4.6071484787276775,
+ -1.756910936333941,
+ 6.840942908460379,
+ -0.8462653543322489,
+ -7.494769686042991,
+ 11.797674683766319,
+ -13.658722838900044,
+ 12.049758793621148,
+ -8.734303610721852,
+ -12.415634559301914,
+ 9.173153665117084,
+ -6.352983612631557,
+ -2.382731518894638,
+ 5.708748945673983,
+ -10.606820373863465,
+ -4.958793206143709,
+ 9.893184110671855,
+ -13.505216193531526,
+ 13.90608064978631,
+ -16.49738122049035,
+ 18.145160898686893,
+ -5.04831636563563e-13,
+ -1.2874900798265365e-13,
+ -2.439454888092385e-13,
+ -9.147955830346444e-14,
+ -2.270048298641525e-13,
+ 6.132518538121134e-13,
+ 2.642742795433417e-13,
+ 7.589415207398531e-13,
+ 9.147955830346444e-14,
+ -3.7269449679189215e-14,
+ -4.912791094074942e-13,
+ 1.1858461261560205e-13,
+ -1.7957098481791167e-13,
+ 4.2690460541616737e-13,
+ 4.0657581468206416e-14,
+ -2.1006417091906648e-13,
+ 1.0164395367051604e-13,
+ -3.1509625637859973e-13,
+ 1.9651164376299768e-13,
+ -4.811147140404426e-13,
+ -6.098637220230962e-13,
+ 7.555533889508359e-13,
+ 1.7618285302889447e-13,
+ -1.2874900798265365e-13,
+ -3.049318610115481e-14,
+ 8.843023969334896e-13,
+ 3.2187251995663413e-13,
+ 1.7618285302889447e-13,
+ -3.5914196963582334e-13,
+ 2.913793338554793e-13,
+ -1.2536087619363645e-13,
+ 5.488773498207866e-13,
+ -1.1180834903756764e-13,
+ -3.8963515573697816e-13,
+ 2.676624113323589e-13,
+ 7.115076756936123e-14,
+ -3.7947076036992655e-13,
+ 5.861467994999758e-13,
+ 3.015437292225309e-13,
+ 5.55653613398821e-13,
+ 6.505213034913027e-13,
+ 3.4558944247975454e-13,
+ -3.8624702394796095e-13,
+ -3.6253010142484055e-13,
+ 9.58841296291868e-13,
+ -1.1519648082658485e-13,
+ -7.453889935837843e-13,
+ 7.284483346386983e-13,
+ -6.437450399132683e-14,
+ 1.6601845766184287e-13,
+ 1.2536087619363645e-13,
+ 1.2874900798265365e-13,
+ -7.792703114739563e-13,
+ 6.810144895924575e-13,
+ -9.961107459710572e-13,
+ -8.605854744103691e-13,
+ -5.319366908757006e-13,
+ 2.710505431213761e-14,
+ 3.7269449679189215e-14,
+ 3.049318610115481e-14,
+ 7.250602028496811e-13,
+ -6.776263578034403e-14,
+ -6.335806445462167e-13,
+ 4.743384504624082e-14
+ ],
+ [
+ 9.753899537816041,
+ -10.91675141997004,
+ 8.19091006783469,
+ -5.4091278447770845,
+ 2.295983318823879,
+ 0.8721977447124464,
+ -3.301717289919079,
+ -0.978516751814863,
+ 3.047001939868864,
+ -7.249159060151602,
+ 7.8797403264843995,
+ -7.76203072849876,
+ -7.4845396913421895,
+ 8.090352693782062,
+ -7.78128728350451,
+ 3.7967980547464517,
+ -1.7076749195313539,
+ -2.816322611963712,
+ 1.6865684090887558,
+ 1.6167813706186605,
+ -4.958319793708575,
+ 8.496224838684913,
+ -9.996170561678246,
+ 7.564672998980294,
+ 8.378510951357867,
+ -9.367401725824639,
+ 6.886118196048429,
+ -1.897675276482376,
+ -1.8572606737170643,
+ 4.641356252725583,
+ 0.25734265115347804,
+ -5.129609575207669,
+ 7.541070961129962,
+ -7.915836013034511,
+ 6.675135449017314,
+ -4.45456329202473,
+ -6.9786553312686435,
+ 4.702829988487034,
+ -2.8987124620250677,
+ -2.290876420682257,
+ 4.172420853878792,
+ -6.696845159275344,
+ -3.663712234153039,
+ 6.419595290620195,
+ -8.273934441620753,
+ 7.9566932497805185,
+ -9.143193317861058,
+ 10.64960329412581,
+ -2.862971361719535e-13,
+ -5.759824041329242e-14,
+ -1.2027867851011065e-13,
+ -5.421010862427522e-14,
+ -1.6263032587282567e-13,
+ 3.4389537658524594e-13,
+ 1.4568966692773966e-13,
+ 4.0996394647108136e-13,
+ 5.590417451878382e-14,
+ -1.1858461261560205e-14,
+ -2.812149384884277e-13,
+ 2.710505431213761e-14,
+ -7.284483346386983e-14,
+ 2.541098841762901e-13,
+ 4.404571325722362e-14,
+ -1.1519648082658485e-13,
+ 1.1858461261560205e-13,
+ -2.1345230270808369e-13,
+ 1.7957098481791167e-13,
+ -2.964615315390051e-13,
+ -3.5405977195229754e-13,
+ 4.45539330255762e-13,
+ 1.2536087619363645e-13,
+ -8.978549240895584e-14,
+ -4.404571325722362e-14,
+ 5.166900978251232e-13,
+ 1.9481757786848908e-13,
+ 8.978549240895584e-14,
+ -2.185345003916095e-13,
+ 1.4060746924421386e-13,
+ -7.115076756936123e-14,
+ 2.710505431213761e-13,
+ -5.082197683525802e-14,
+ -2.574980159653073e-13,
+ 1.5754812818929986e-13,
+ 5.590417451878382e-14,
+ -2.185345003916095e-13,
+ 3.6253010142484055e-13,
+ 1.7618285302889447e-13,
+ 2.778268066994105e-13,
+ 3.8963515573697816e-13,
+ 2.1345230270808369e-13,
+ -2.219226321806267e-13,
+ -1.7957098481791167e-13,
+ 5.319366908757006e-13,
+ -8.809142651444724e-14,
+ -4.37069000783219e-13,
+ 4.2012834183813297e-13,
+ -1.1858461261560205e-14,
+ 7.962109704190423e-14,
+ 3.8963515573697816e-14,
+ 7.453889935837843e-14,
+ -4.404571325722362e-13,
+ 3.7100043089738355e-13,
+ -5.709002064493984e-13,
+ -4.726443845678996e-13,
+ -3.1848438816761693e-13,
+ -3.3881317890172014e-15,
+ 2.541098841762901e-14,
+ 2.202285662861181e-14,
+ 4.37069000783219e-13,
+ -3.7269449679189215e-14,
+ -4.37069000783219e-13,
+ 3.7269449679189215e-14
+ ],
+ [
+ -7.041347983677048,
+ 9.32398781804501,
+ -8.917420768147664,
+ 9.150258004019715,
+ -7.8342853187855335,
+ 3.999515224579067,
+ 7.552974592174975,
+ -5.0465302520676705,
+ 1.930409487011112,
+ 4.182319468908639,
+ -6.98383769151593,
+ 8.513780184807523,
+ 5.674959656904311,
+ -9.138924751954988,
+ 9.784876408382122,
+ -8.194785960158285,
+ 6.076557464885725,
+ -1.5695805745104563,
+ -6.034941323358956,
+ 2.7800044564499187,
+ 0.48597478986414105,
+ -6.212955453743895,
+ 8.562366718317552,
+ -8.96949346701673,
+ -7.322548836198142,
+ 9.836346212561896,
+ -9.526957400937961,
+ 6.531834857107106,
+ -3.894402097740994,
+ -0.5109730933138051,
+ 4.258243449177511,
+ -0.33656387923510167,
+ -3.2248284511106386,
+ 7.855071113816672,
+ -9.159572411225572,
+ 8.084204825022141,
+ 8.237330155671328,
+ -9.03976972408181,
+ 7.591203403286031,
+ -3.188396318295796,
+ 0.3663271347594431,
+ 3.350727729654781,
+ -1.0990199551455817,
+ -2.9302184079139186,
+ 5.52425076715066,
+ -8.491358892882593,
+ 10.879455228805199,
+ -9.715993487125939,
+ 2.9857911390714087e-13,
+ 8.692675621197257e-14,
+ 2.568627412548666e-13,
+ 5.505714157152952e-14,
+ -1.0651439311722827e-13,
+ -3.525774642946025e-13,
+ -1.9788807230228592e-13,
+ -5.315131744020735e-13,
+ -1.683477982667922e-14,
+ 9.68793933422106e-14,
+ 2.9127345473707253e-13,
+ -2.8862647677690284e-13,
+ 2.4839241178232357e-13,
+ -1.7575933655526732e-13,
+ 1.0227922838095677e-13,
+ 8.396214089658252e-14,
+ 2.583450489125616e-13,
+ 1.0217334926254998e-13,
+ 1.4346620544119712e-13,
+ 1.3573702979750163e-13,
+ 4.1271680354965784e-13,
+ -4.444805390716941e-13,
+ -6.977433903007299e-14,
+ 7.983285527871781e-14,
+ -1.1032604137987262e-13,
+ -4.561272420964407e-13,
+ -1.113848325639405e-13,
+ -1.3446648037662018e-13,
+ 1.7268884212147048e-13,
+ -2.270048298641525e-13,
+ 1.377487330472306e-13,
+ -4.529508685442371e-13,
+ 1.1911400820763599e-13,
+ 1.5797164466292701e-13,
+ -1.4336032632279033e-13,
+ -2.7422691667357973e-14,
+ 2.363221922839498e-13,
+ -2.6999175193730823e-13,
+ -2.1705219273391446e-13,
+ -4.942437247228842e-13,
+ -3.663417496874849e-13,
+ -1.0810257989333008e-13,
+ 2.9879087214395444e-13,
+ 4.357984513623375e-13,
+ -6.756146545537113e-13,
+ -7.30565917006834e-15,
+ 3.247312561536174e-13,
+ -3.8285889215894375e-13,
+ 1.8761779781682753e-13,
+ -1.673948862011311e-13,
+ -2.236166980751353e-13,
+ -2.922263668027336e-14,
+ 4.854557578951209e-13,
+ -4.531626267810507e-13,
+ 6.294513589283519e-13,
+ 7.179663019164263e-13,
+ 2.6565070808262994e-13,
+ -1.6030098526787634e-13,
+ -4.944554829596978e-14,
+ -2.159934015498466e-14,
+ -3.4040136567782195e-13,
+ 1.7237120476625012e-13,
+ 8.459741560702325e-14,
+ 7.549181142403952e-14
+ ],
+ [
+ -13.185614123327237,
+ 16.5261577846375,
+ -15.253981037840088,
+ 14.615819239376657,
+ -11.943048450199633,
+ 5.264873577040166,
+ 11.66227319721489,
+ -6.924174813737962,
+ 1.6261818332551063,
+ 8.348408659332094,
+ -12.707447867566158,
+ 14.553854628412095,
+ 10.508937506048467,
+ -15.778126298917801,
+ 16.3258401158374,
+ -12.716940733994013,
+ 8.799609916788803,
+ -1.1943293707066405,
+ -8.974861496068229,
+ 3.055555574244957,
+ 2.4090907293089607,
+ -11.599880056715426,
+ 15.147493270026873,
+ -15.106115522073507,
+ -13.099348280978237,
+ 16.700069421963924,
+ -15.647486058722393,
+ 9.750369171548543,
+ -5.015787701982591,
+ -2.322503998009888,
+ 5.839655871497364,
+ 1.0732204987788625,
+ -7.109938091541053,
+ 13.69112328594337,
+ -15.31601927688848,
+ 12.805331391121145,
+ 13.898754423768397,
+ -14.461414636898892,
+ 11.574067786525763,
+ -3.6316066672001637,
+ -1.1931902511326213,
+ 7.003529873804277,
+ -0.244027236931533,
+ -6.562505090347604,
+ 10.57462387139205,
+ -14.583151494853984,
+ 18.074904845727556,
+ -17.067286907231725,
+ 5.088550430630209e-13,
+ 1.351017550870609e-13,
+ 3.9916427639358903e-13,
+ 9.359714067160019e-14,
+ -9.952637130238029e-14,
+ -5.927113048411967e-13,
+ -3.3288394827094003e-13,
+ -8.813377816180995e-13,
+ -3.3881317890172014e-14,
+ 1.5013658990082474e-13,
+ 5.11819658378411e-13,
+ -4.0996394647108136e-13,
+ 3.851882327638931e-13,
+ -3.3118988237643143e-13,
+ 1.342547221398066e-13,
+ 1.418780186650953e-13,
+ 3.356368053495165e-13,
+ 2.22769665127881e-13,
+ 1.3383120566617945e-13,
+ 2.695682354636811e-13,
+ 6.909671267226955e-13,
+ -7.644472348970061e-13,
+ -1.7152417181899582e-13,
+ 1.6432439176733427e-13,
+ -1.2027867851011065e-13,
+ -8.137869040745691e-13,
+ -2.1599340154984659e-13,
+ -2.1006417091906648e-13,
+ 2.9709680624944584e-13,
+ -3.5236570605778894e-13,
+ 2.3081647812679684e-13,
+ -7.142605327721888e-13,
+ 1.7131241358218224e-13,
+ 3.2526065174565133e-13,
+ -2.5898032362300233e-13,
+ -7.411538288475128e-14,
+ 4.010701005249112e-13,
+ -4.955142741437657e-13,
+ -3.5130691487372107e-13,
+ -7.904934980250758e-13,
+ -6.272278974418094e-13,
+ -2.2234614865425384e-13,
+ 5.249486690608526e-13,
+ 7.064254780100865e-13,
+ -1.1221068968751344e-12,
+ 2.583450489125616e-14,
+ 5.776764700274328e-13,
+ -6.841908631446611e-13,
+ 2.6469779601696886e-13,
+ -2.7168581783181683e-13,
+ -3.2843702529785496e-13,
+ -5.421010862427522e-14,
+ 8.095517393382975e-13,
+ -7.479300924255472e-13,
+ 1.0638733817514012e-12,
+ 1.1663643683691716e-12,
+ 4.815382305140697e-13,
+ -2.3992208230978057e-13,
+ -9.296186596115946e-14,
+ -4.912791094074942e-14,
+ -6.170635020747578e-13,
+ 2.661801036746639e-13,
+ 2.7083878488456253e-13,
+ 9.910285482875314e-14
+ ],
+ [
+ -13.776531850527745,
+ 16.795322335962382,
+ -15.208253940467312,
+ 13.99923349849656,
+ -11.101437638968221,
+ 4.377801974869911,
+ 10.932265861002278,
+ -5.95934720701064,
+ 0.6951329056421727,
+ 8.983336102838908,
+ -13.089917545556268,
+ 14.504884613531683,
+ 10.920340618238663,
+ -15.81109584928953,
+ 16.04921951414875,
+ -11.959896234709595,
+ 7.891874387045756,
+ -0.3670185571355578,
+ -8.20279168439362,
+ 2.1069967292965597,
+ 3.2738018498868815,
+ -12.102322534391313,
+ 15.378874278583725,
+ -14.929891700567293,
+ -13.377027598560403,
+ 16.580480050119274,
+ -15.241836169404102,
+ 8.934820645269353,
+ -4.091177520323274,
+ -3.1159929542721265,
+ 5.0239223301789435,
+ 1.9812539849719442,
+ -7.96929613033375,
+ 13.79065820557778,
+ -15.075481818620332,
+ 12.201403416371418,
+ 13.75105386376674,
+ -13.86441133504317,
+ 10.759441621381306,
+ -2.6136051931106894,
+ -2.195301736789114,
+ 7.685387976851946,
+ 0.6607702451303507,
+ -7.399478430198061,
+ 11.164597987309508,
+ -14.571479172360444,
+ 17.724899068856008,
+ -16.39478733068406,
+ 5.069492189316988e-13,
+ 1.274784585617722e-13,
+ 3.7692966152816365e-13,
+ 9.275010772434589e-14,
+ -5.336307567702092e-14,
+ -5.844527336054672e-13,
+ -3.2864878353466853e-13,
+ -8.648206391466406e-13,
+ -3.6845933205562065e-14,
+ 1.4145450219146816e-13,
+ 5.166900978251232e-13,
+ -3.63800650845722e-13,
+ 3.6168306847758624e-13,
+ -3.477070248478903e-13,
+ 1.1096131609031334e-13,
+ 1.3976043629695956e-13,
+ 2.752857078576476e-13,
+ 2.4945120296639145e-13,
+ 7.115076756936123e-14,
+ 2.8926175148734357e-13,
+ 6.810144895924575e-13,
+ -7.657177843178875e-13,
+ -1.9989977555201488e-13,
+ 1.7787691892340307e-13,
+ -8.343274530454858e-14,
+ -8.2924525536196e-13,
+ -2.286988957586611e-13,
+ -1.9778219318387913e-13,
+ 2.973085644862594e-13,
+ -3.3203691532368573e-13,
+ 2.2742834633777964e-13,
+ -6.784733907506946e-13,
+ 1.5331296345302836e-13,
+ 3.5490680489955184e-13,
+ -2.6639186191147746e-13,
+ -8.851494298807439e-14,
+ 3.985290016831483e-13,
+ -5.124549330888517e-13,
+ -3.3881317890172014e-13,
+ -7.589415207398531e-13,
+ -6.263808644945551e-13,
+ -2.414043899674756e-13,
+ 5.323602073493278e-13,
+ 6.831320719605932e-13,
+ -1.1011428314305904e-12,
+ 4.701032857261367e-14,
+ 5.891114148153659e-13,
+ -6.979551485375435e-13,
+ 2.320870275476783e-13,
+ -2.6215669717520595e-13,
+ -2.9688504801263227e-13,
+ -5.590417451878382e-14,
+ 7.957874539454152e-13,
+ -7.297188840595797e-13,
+ 1.0537089863843496e-12,
+ 1.1299419516372367e-12,
+ 4.959377906173928e-13,
+ -2.1980504981249094e-13,
+ -9.783230540787169e-14,
+ -5.463362509790237e-14,
+ -6.34427677493471e-13,
+ 2.490276864927643e-13,
+ 3.400837283226016e-13,
+ 8.258571235729428e-14
+ ],
+ [
+ -13.90266886274825,
+ 16.852778070892935,
+ -15.19849305638038,
+ 13.867617404491659,
+ -10.921787802291066,
+ 4.188448099748395,
+ 10.77643884811988,
+ -5.753395572767057,
+ 0.4963916519035548,
+ 9.1188674078146,
+ -13.17155933801893,
+ 14.494431497842172,
+ 11.008158527570535,
+ -15.818133513564463,
+ 15.990172214314052,
+ -11.798297882075802,
+ 7.698109599939723,
+ -0.1904211910420461,
+ -8.037986035844783,
+ 1.9045178170730848,
+ 3.4583826674234937,
+ -12.209573662643896,
+ 15.428264756750956,
+ -14.89227504886828,
+ -13.436300891377627,
+ 16.55495256065086,
+ -15.155246340243625,
+ 8.760734051331735,
+ -3.8938106781814854,
+ -3.285370723064171,
+ 4.849796243020542,
+ 2.17508237371768,
+ -8.15273428162178,
+ 13.811904881377762,
+ -15.024136809126711,
+ 12.072489243002128,
+ 13.719525773671752,
+ -13.73697529900036,
+ 10.58555191420536,
+ -2.3963030908602545,
+ -2.409211969794653,
+ 7.8309370777128064,
+ 0.8539078779995015,
+ -7.5781383544773915,
+ 11.290533576721963,
+ -14.568987604046894,
+ 17.650187005023284,
+ -16.25123589636316,
+ 5.065257024580716e-13,
+ 1.257843926672636e-13,
+ 3.72270980318265e-13,
+ 9.232659125071874e-14,
+ -4.319868030996932e-14,
+ -5.827586677109586e-13,
+ -3.273782341137871e-13,
+ -8.610089908839963e-13,
+ -3.7269449679189215e-14,
+ 1.3976043629695956e-13,
+ 5.179606472460047e-13,
+ -3.5405977195229754e-13,
+ 3.5660087079406044e-13,
+ -3.510951566369075e-13,
+ 1.0587911840678754e-13,
+ 1.393369198233324e-13,
+ 2.6215669717520595e-13,
+ 2.549569171235444e-13,
+ 5.802175688691957e-14,
+ 2.9349691622361507e-13,
+ 6.788969072243217e-13,
+ -7.661413007915147e-13,
+ -2.0582900618279498e-13,
+ 1.8084153423879312e-13,
+ -7.538593230563273e-14,
+ -8.326333871509772e-13,
+ -2.31239994600424e-13,
+ -1.9524109434211623e-13,
+ 2.973085644862594e-13,
+ -3.2780175058741423e-13,
+ 2.2658131339052534e-13,
+ -6.708500942254059e-13,
+ 1.49501315190384e-13,
+ 3.612595520039591e-13,
+ -2.6808592780598606e-13,
+ -9.147955830346444e-14,
+ 3.97681968735894e-13,
+ -5.162665813514961e-13,
+ -3.3627208005995723e-13,
+ -7.521652571618187e-13,
+ -6.263808644945551e-13,
+ -2.456395547037471e-13,
+ 5.336307567702092e-13,
+ 6.780498742770674e-13,
+ -1.0964841502206918e-12,
+ 5.166900978251232e-14,
+ 5.912289971835016e-13,
+ -7.004962473793064e-13,
+ 2.2488724749601674e-13,
+ -2.600391148070702e-13,
+ -2.90532300908225e-13,
+ -5.632769099241097e-14,
+ 7.932463551036523e-13,
+ -7.259072357969354e-13,
+ 1.0511678875425867e-12,
+ 1.1218951386383208e-12,
+ 4.989024059327829e-13,
+ -2.1556988507621944e-13,
+ -9.867933835512599e-14,
+ -5.590417451878382e-14,
+ -6.382393257561153e-13,
+ 2.4521603823011995e-13,
+ 3.5490680489955184e-13,
+ 7.919758056827708e-14
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.2529167026002046,
+ -2.4448123210322694,
+ -1.3600076229536713,
+ -0.529288514900975,
+ 3.1108093948679523,
+ 2.464160259648809,
+ 1.413649241731117,
+ 0.6290528009450782,
+ -5.979110220613215,
+ -5.735544660478981,
+ -5.325555673945499,
+ -4.8208052550458484,
+ 5.553138968948162,
+ 5.615128429966513,
+ 5.386755340320791,
+ 5.168062485163374,
+ -3.441461128270684,
+ -3.9804134661891566,
+ -4.66344114669304,
+ -4.975299223233767,
+ 3.154113124193729,
+ 3.9657051358628332,
+ 4.894496857765078,
+ 5.524686165956722,
+ 2.626349591584625,
+ 1.7443159816103249,
+ 0.5165771219241116,
+ -0.3783942044688208,
+ -2.3796489649720094,
+ -1.6092588812805193,
+ -0.44212467494439683,
+ 0.4185591725103664,
+ 6.129269186923281,
+ 5.76512008541108,
+ 5.196639614816326,
+ 4.585847084892173,
+ -5.666301924452756,
+ -5.6245541612268894,
+ -5.2528278956071555,
+ -4.939414940051828,
+ 4.00128791183987,
+ 4.50920757172446,
+ 5.1533489821762855,
+ 5.27453062028604,
+ -4.243838475953185,
+ -4.809561721531592,
+ -5.403936321778887,
+ -5.796176901292042,
+ -0.8676382955078303,
+ -0.03066466276789009,
+ 1.1090877308445029,
+ 1.8805858594025227,
+ 0.8046798345567707,
+ -0.03882736999025163,
+ -1.219220669908316,
+ -2.0714823484655374,
+ -5.477812239167537,
+ -4.914387269679005,
+ -4.074178545715214,
+ -3.307295270862801,
+ 5.3093189597061805,
+ 5.023551765016048,
+ 4.289062593288429,
+ 3.752813599029134
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -6.507199755568982,
+ -5.3886191316541225,
+ -3.698941410093304,
+ -2.3321917257812803,
+ 6.2976690191925675,
+ 5.380617083977759,
+ 3.7826066321729117,
+ 2.5728385119205055,
+ -9.864430717254297,
+ -9.672931203864282,
+ -9.280442502647974,
+ -8.630031718420392,
+ 9.172970473754797,
+ 9.495156343484593,
+ 9.414348995594983,
+ 9.265710092936944,
+ -4.389612552454293,
+ -5.442644474553705,
+ -6.807373430557533,
+ -7.524872079816652,
+ 4.045623514419949,
+ 5.474386556540743,
+ 7.188904122343109,
+ 8.37137410508179,
+ 5.650445682210133,
+ 4.231498231630454,
+ 2.2361948524193536,
+ 0.7281908530604685,
+ -5.120142950525014,
+ -3.976204302305153,
+ -2.1579199833336467,
+ -0.8035612538878928,
+ 10.178927859878591,
+ 9.779508222352515,
+ 9.112609306470278,
+ 8.276489522022457,
+ -9.419072683782018,
+ -9.565143435713718,
+ -9.237840067146047,
+ -8.926556683031848,
+ 5.486998282265118,
+ 6.498449724848967,
+ 7.8070207361054855,
+ 8.22255687513694,
+ -6.157064570764308,
+ -7.268249434265558,
+ -8.52299839947768,
+ -9.37472034819187,
+ -2.985499747760302,
+ -1.5572641405429193,
+ 0.4044545900894515,
+ 1.7887296557632817,
+ 2.711811861985644,
+ 1.3893236931225623,
+ -0.5375536889760018,
+ -1.9442821690205578,
+ -9.597885949170491,
+ -8.840155278634871,
+ -7.677693318040419,
+ -6.531677763491226,
+ 9.288582825464264,
+ 9.017210035223327,
+ 8.04016545059216,
+ 7.331118292438899
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.29679060117089,
+ -6.099092793390206,
+ -4.598859715031012,
+ -3.3247716104007163,
+ 6.799511587941377,
+ 6.060267350056957,
+ 4.673239087110222,
+ 3.6093465609938433,
+ -9.217096057876633,
+ -9.203328238134382,
+ -9.059537255364518,
+ -8.594983418980082,
+ 8.579895611103096,
+ 9.05362282594138,
+ 9.210520630227293,
+ 9.238234008722161,
+ -3.090043614113645,
+ -4.20264039306333,
+ -5.664586312069406,
+ -6.494395056615335,
+ 2.8707730384842907,
+ 4.276278864649071,
+ 6.02133993754603,
+ 7.238323127532819,
+ 6.314152631490175,
+ 5.0167821450058705,
+ 3.176161945425509,
+ 1.7424096306214492,
+ -5.721837006673601,
+ -4.752741292637339,
+ -3.1380120813786023,
+ -1.9240505816822284,
+ 9.56337898681685,
+ 9.348284428571686,
+ 8.937939046291405,
+ 8.291414661654898,
+ -8.856493908188323,
+ -9.161762346316038,
+ -9.080495740386773,
+ -8.951232987297047,
+ 4.251869007674263,
+ 5.333166095529613,
+ 6.7489190073590155,
+ 7.306489404448495,
+ -5.089899741362962,
+ -6.267815442896513,
+ -7.6554878220832965,
+ -8.611973554802313,
+ -4.009877822107213,
+ -2.6381606007962533,
+ -0.7413073453654117,
+ 0.6396377237827778,
+ 3.620803523300792,
+ 2.439394784917683,
+ 0.6551049077345906,
+ -0.6598229506434666,
+ -9.408169288385903,
+ -8.835079412613956,
+ -7.924580140023817,
+ -6.9473699224174945,
+ 9.094569914646454,
+ 8.998123027701956,
+ 8.269510697463152,
+ 7.744931266069984
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.997535310972447,
+ -3.759222047251826,
+ -4.026108540279064,
+ -3.160242786557747,
+ 5.347973240385894,
+ 4.936101525636768,
+ 4.073827852105063,
+ 3.400796076905711,
+ -6.280692071373528,
+ -6.400297176697944,
+ -6.476423174099275,
+ -6.27168152336811,
+ 5.853430475966822,
+ 6.311095549473106,
+ 6.599504781448019,
+ 6.748495199065255,
+ -1.3156650297449934,
+ -2.1742924155513235,
+ -3.3163512763323384,
+ -4.006277982329759,
+ 1.2460209411606589,
+ 2.258817009012855,
+ 3.5596526769875885,
+ 4.476480088449108,
+ 5.110480809076741,
+ 4.248656628840056,
+ 3.01296945970373,
+ 2.0166892266767955,
+ -4.631259646406992,
+ -4.048820032036461,
+ -3.014297888250197,
+ -2.2273179911952314,
+ 6.5575963482725665,
+ 6.53450734105088,
+ 6.421070311907977,
+ 6.085732915608364,
+ -6.078338042523258,
+ -6.418165912622641,
+ -6.53815970984221,
+ -6.576275218849394,
+ 2.213917754893972,
+ 3.0571148848482217,
+ 4.172601183411461,
+ 4.684757949161204,
+ -2.950479894098301,
+ -3.8621933475701784,
+ -4.975889780160293,
+ -5.753121872172377,
+ -3.6854005713677105,
+ -2.7216312380561436,
+ -1.3792032579018145,
+ -0.36986097248590805,
+ 3.3161404194757247,
+ 2.5535086482034677,
+ 1.3502665091240251,
+ 0.4538505880761847,
+ -6.754612782124511,
+ -6.469462966516073,
+ -5.986229936189292,
+ -5.393439409664253,
+ 6.521714011752578,
+ 6.578695515833061,
+ 6.226148773483399,
+ 5.976414650982352
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.5241039418300804,
+ -4.703290411536571,
+ -6.306590876275502,
+ -5.315380489910797,
+ 8.164353701227038,
+ 7.688235244551221,
+ 6.577724854674633,
+ 5.69767598975832,
+ -8.716086471910954,
+ -9.016108078703828,
+ -9.302679317568707,
+ -9.134740025274962,
+ 8.130360154146011,
+ 8.905629728147808,
+ 9.494476883403404,
+ 9.836441352107054,
+ -1.0049420835970264,
+ -2.30092969607353,
+ -4.03740794914025,
+ -5.124215589283781,
+ 0.9911878857008967,
+ 2.453920668921402,
+ 4.3752627751884665,
+ 5.7385808386284,
+ 7.9316629487844645,
+ 6.7587562759810105,
+ 5.063190618675347,
+ 3.6605420205805763,
+ -7.188051503876202,
+ -6.460736802401132,
+ -5.093428748205591,
+ -4.043101105325964,
+ 9.142907279259566,
+ 9.239181678943105,
+ 9.254446475670685,
+ 8.898415565281804,
+ -8.480332973232597,
+ -9.088907180587949,
+ -9.437668379946533,
+ -9.621703518632,
+ 2.3622383402917744,
+ 3.6429413769272063,
+ 5.3476395538558075,
+ 6.19578650782391,
+ -3.5564046045395328,
+ -4.934975383719806,
+ -6.655213675191009,
+ -7.8642041811623375,
+ -6.104771114474641,
+ -4.737096605531355,
+ -2.822298014343355,
+ -1.350555689523825,
+ 5.484110379537037,
+ 4.469823001074109,
+ 2.8131111492846124,
+ 1.5686854047856285,
+ -9.730956112254763,
+ -9.444727279833929,
+ -8.9166869835895,
+ -8.169997329031446,
+ 9.387789912219633,
+ 9.594374303250735,
+ 9.254704561376956,
+ 9.02007641119514
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.393257056647189,
+ -3.646682013578494,
+ -5.347593312602385,
+ -6.1624499027493,
+ 8.539050036311677,
+ 8.22864504339875,
+ 7.320102959190369,
+ 6.580795235671854,
+ -8.044475643039949,
+ -8.502549431399054,
+ -9.011584540702026,
+ -9.013634914991375,
+ 7.513626907663603,
+ 8.418576760438853,
+ 9.216973902263367,
+ 9.715330796338646,
+ 0.18202137959383485,
+ -1.1552415653835957,
+ -2.962790926428395,
+ -4.140696115992704,
+ -0.08267265069605723,
+ 1.3446851447114292,
+ 3.2748980052338017,
+ 4.6561412901856345,
+ 8.45525022857052,
+ 7.40394012830178,
+ 5.865071036592902,
+ 4.543399791997434,
+ -7.662742532819701,
+ -7.100913119986226,
+ -5.931358081428791,
+ -5.018475065486068,
+ 8.495912331182375,
+ 8.758204231453092,
+ 9.005702598889343,
+ 8.824887568408307,
+ -7.887799153997971,
+ -8.634619325574173,
+ -9.202825779650638,
+ -9.54993258022694,
+ 1.220366001610036,
+ 2.551806095927821,
+ 4.3369123840096755,
+ 5.305415312617068,
+ -2.5549906008048375,
+ -3.9805197155248506,
+ -5.804330431717305,
+ -7.096387912048042,
+ -6.972920847479634,
+ -5.669818975231354,
+ -3.8325058414051494,
+ -2.3781768186589054,
+ 6.253816081571775,
+ 5.377238701911953,
+ 3.8658872368081156,
+ 2.7167866672878347,
+ -9.463922037207933,
+ -9.347738432331766,
+ -9.053088137172477,
+ -8.46660452396755,
+ 9.120221307126329,
+ 9.483230451847763,
+ 9.371910194750143,
+ 9.306665740292022
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.04033511290022151,
+ -0.8749261872067291,
+ -2.003653209070936,
+ -2.710476889410624,
+ 5.525755164963673,
+ 5.543765598484656,
+ 5.250995230032728,
+ 4.983947422103448,
+ -3.95517120479182,
+ -4.419969028830141,
+ -4.993630315486804,
+ -5.202320802876253,
+ 3.7070592227206642,
+ 4.402476583044677,
+ 5.132130037559766,
+ 5.61881255358506,
+ 1.5567369972949203,
+ 0.7126148138038877,
+ -0.447016367429721,
+ -1.2573585508956724,
+ -1.3597247566108848,
+ -0.555678104280503,
+ 0.600845259215485,
+ 1.4425734457952422,
+ 5.657737278613807,
+ 5.182131377020078,
+ 4.45996987622301,
+ 3.7743124798883176,
+ -5.127658481374724,
+ -4.996155035589095,
+ -4.54331312180232,
+ -4.1692146023422225,
+ 4.2531696564373584,
+ 4.611480964485213,
+ 5.041828551671867,
+ 5.14835612114774,
+ -3.95868834755232,
+ -4.570700764140031,
+ -5.175799522081224,
+ -5.58085811860025,
+ -0.6693023699184246,
+ 0.18291170290850559,
+ 1.3406174483292974,
+ 2.0623769760646393,
+ -0.2943072843659886,
+ -1.1977568511208738,
+ -2.4067081767348597,
+ -3.2750051855485065,
+ -5.1984269957255975,
+ -4.503769567580191,
+ -3.5077860507145457,
+ -2.6658080130857296,
+ 4.651443821948037,
+ 4.299218759417308,
+ 3.5795547337352525,
+ 3.013839937578799,
+ -5.291485818717623,
+ -5.430065199918443,
+ -5.540026650570907,
+ -5.387446116241897,
+ 5.086826524479914,
+ 5.4932115292489145,
+ 5.705838310978563,
+ 5.873845706506141
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.3295504580195243,
+ 3.27610427747091,
+ 3.2120217062362526,
+ 3.0186451203389137,
+ 0.010701335942169711,
+ 0.49389306415353174,
+ 1.1448721126701253,
+ 1.6109374489039332,
+ 2.7528017228708412,
+ 2.3802359565649778,
+ 1.839947950786898,
+ 1.3818049377093877,
+ -2.542675103629688,
+ -2.2989316567583393,
+ -1.8273424617167928,
+ -1.463968286202531,
+ 3.1793787586687814,
+ 3.2246339220045535,
+ 3.2446009226903216,
+ 3.1368524649873315,
+ -2.886023698287606,
+ -3.1485166665251816,
+ -3.350569500009169,
+ -3.4639378953943067,
+ 0.42200149171230544,
+ 0.8729694612343237,
+ 1.4756651021660003,
+ 1.8487535463692535,
+ -0.3829312158467508,
+ -0.8949423345210187,
+ -1.5651119241081903,
+ -2.042608836408591,
+ -2.739274572217083,
+ -2.322309545995085,
+ -1.7250586899788216,
+ -1.2314146748270587,
+ 2.521225443230801,
+ 2.2358718454049424,
+ 1.7106509428004837,
+ 1.3115588916484628,
+ -3.221968715394156,
+ -3.241028316326072,
+ -3.233190325355533,
+ -3.0220304559763473,
+ 2.9994645861530644,
+ 3.0397287973505573,
+ 2.9739586171934116,
+ 2.9012288851690604,
+ -1.5246648528337026,
+ -1.851343461407914,
+ -2.275382916588118,
+ -2.4925991398348923,
+ 1.3433938496847755,
+ 1.8173559926581404,
+ 2.386261698372133,
+ 2.777836410248442,
+ 1.8280233605912903,
+ 1.3558886767946996,
+ 0.6920492189687742,
+ 0.19138746144254437,
+ -1.7892271358940182,
+ -1.409920406733525,
+ -0.7811356284221104,
+ -0.3167483261204382
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 4.794851658866123,
+ 5.081064652722718,
+ 5.479913168954146,
+ 5.509794800056807,
+ -2.3873667373880556,
+ -1.7019038354599103,
+ -0.6405615491183532,
+ 0.14427768845163796,
+ 5.669577553768827,
+ 5.337116337634687,
+ 4.8113397766871335,
+ 4.244729256997767,
+ -5.260198598314389,
+ -5.2128530153600146,
+ -4.853475900326563,
+ -4.543718933949732,
+ 3.884939488090233,
+ 4.316915703783694,
+ 4.849798231156376,
+ 5.0475531528416555,
+ -3.5496924268015495,
+ -4.2759405445477086,
+ -5.068732526581785,
+ -5.597398159521394,
+ -1.85461288417832,
+ -1.000749986194852,
+ 0.17802300806828533,
+ 1.0114776928700795,
+ 1.6801817337036986,
+ 0.8883561690427668,
+ -0.27012380077172726,
+ -1.117913348395517,
+ -5.779744852133371,
+ -5.337275884645133,
+ -4.667451774999221,
+ -4.005480918837978,
+ 5.338836088812887,
+ 5.195521011086759,
+ 4.70503277666427,
+ 4.308535112148586,
+ -4.331924820035837,
+ -4.729833593604917,
+ -5.221983678179293,
+ -5.232843897255792,
+ 4.431669857108022,
+ 4.882281809493559,
+ 5.313592218564228,
+ 5.586792833876699,
+ 0.0727686404748051,
+ -0.6980095939109436,
+ -1.7395066221685123,
+ -2.417284069150617,
+ -0.09501985748894942,
+ 0.7381868588895687,
+ 1.8673913448003847,
+ 2.675216827261586,
+ 4.923744307291702,
+ 4.306572358829494,
+ 3.401894423864332,
+ 2.6171883881111673,
+ -4.779088207907113,
+ -4.411555715269189,
+ -3.60181618365832,
+ -3.008556305667273
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 6.3001796226565885,
+ 7.0781614647015765,
+ 8.145739338881096,
+ 8.526249993590918,
+ -5.652910229036768,
+ -4.906726385077224,
+ -3.3750940914030108,
+ -2.2180717364777838,
+ 9.33668732312609,
+ 9.125681541856439,
+ 8.714032046376277,
+ 8.072627659875959,
+ -8.680619648575265,
+ -8.954462814103609,
+ -8.83611562687196,
+ -8.665419263416966,
+ 4.3369745942860565,
+ 5.310492512491846,
+ 6.568564952302616,
+ 7.218965695281193,
+ -3.9929893355906003,
+ -5.332614325946966,
+ -6.929637027996269,
+ -8.028650651932725,
+ -5.1618015333657015,
+ -3.8136404964103745,
+ -1.9208078758962022,
+ -0.4979322775482675,
+ 4.677308890074284,
+ 3.5765980755998807,
+ 1.840418171754017,
+ 0.5492367622849029,
+ -9.624915735380311,
+ -9.218383584174422,
+ -8.548833380509766,
+ -7.733177167996186,
+ 8.90515304579889,
+ 9.013005848428872,
+ 8.66276306396429,
+ 8.339025167612357,
+ -5.351071016462957,
+ -6.2838726138583105,
+ -7.487660360727057,
+ -7.850468640547794,
+ 5.947112588824797,
+ 6.97369404929471,
+ 8.12253856561629,
+ 8.899754402987199,
+ 2.605962789586673,
+ 1.2608393900519546,
+ -0.5844233629289951,
+ -1.8788768322009766,
+ -2.370937043371425,
+ -1.1094215043348512,
+ 0.7172759403044021,
+ 2.0486525094035377,
+ 9.005121877600196,
+ 8.263626866304069,
+ 7.131710994000309,
+ 6.030146501941616,
+ -8.716796453883443,
+ -8.431640178904745,
+ -7.473666078280327,
+ -6.77770572124417
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.2872167173013045,
+ 6.195264639903293,
+ 7.436239778220669,
+ 7.972210076554127,
+ -4.703504084038535,
+ -5.813169859673478,
+ -4.440770546162342,
+ -3.3899237220403804,
+ 9.033561412635892,
+ 8.999849133330923,
+ 8.831630072717555,
+ 8.358799903668297,
+ -8.407961630541473,
+ -8.851116711142673,
+ -8.97644084165951,
+ -8.983208320714947,
+ 3.1523369119306563,
+ 4.227028340536273,
+ 5.636999419184259,
+ 6.430772431771855,
+ -2.9249285209015996,
+ -4.293816769093915,
+ -5.986617369377212,
+ -7.16564350567074,
+ -6.061783762082488,
+ -4.786762991766948,
+ -2.9798872411613226,
+ -1.577709055520546,
+ 5.493113907652397,
+ 4.531101418952996,
+ 2.9382139423736255,
+ 1.7421185486320927,
+ -9.366531527681703,
+ -9.136364554706514,
+ -8.708141570475949,
+ -8.057998529314604,
+ 8.673342018434465,
+ 8.951870265142277,
+ 8.844732658099506,
+ 8.69826244750826,
+ -4.274323646721001,
+ -5.317414142506626,
+ -6.681343301955159,
+ -7.207085947478807,
+ 5.069723055881792,
+ 6.207088369715188,
+ 7.540777369624571,
+ 8.45855045261898,
+ 3.7806493503535443,
+ 2.440800995431598,
+ 0.5895371200018225,
+ -0.7531974371158974,
+ -3.415646045265927,
+ -2.2511156675166575,
+ -0.5003795588461718,
+ 0.7883020774095261,
+ 9.166951959239155,
+ 8.588757973630312,
+ 7.674883344404048,
+ 6.7056737065617344,
+ -8.862607732002575,
+ -8.748847843153724,
+ -8.012181022964903,
+ -7.481161620784549
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.0326481106368366,
+ 3.780719863271822,
+ 4.799809221157883,
+ 5.300165400677864,
+ -2.661761393942712,
+ -3.6159032824789525,
+ -3.979486039534946,
+ -3.3056238639129747,
+ 6.2484406001505235,
+ 6.356783294082226,
+ 6.418145277476109,
+ 6.205224440604581,
+ -5.822800239422321,
+ -6.266982190193983,
+ -6.538927383452868,
+ -6.676412096221124,
+ 1.37412137313765,
+ 2.2200444162900146,
+ 3.3441973571384747,
+ 4.020305057848746,
+ -1.2982496002694839,
+ -2.30129960867931,
+ -3.586232625592945,
+ -4.491124304669892,
+ -5.017543371343747,
+ -4.158309774478476,
+ -2.927437031138469,
+ -1.9378656702753052,
+ 4.547024590013231,
+ 3.9611433444011834,
+ 2.9265029254788755,
+ 2.14024267745347,
+ -6.520543174638713,
+ -6.487379067988412,
+ -6.360805916518338,
+ -6.018504607126226,
+ 6.043545624219106,
+ 6.370746949002581,
+ 6.4756472304803925,
+ 6.503149039994397,
+ -2.2589643601641893,
+ -3.08904949282274,
+ -4.186361467809467,
+ -4.684973276299001,
+ 2.978080638766134,
+ 3.876109128325181,
+ 4.970208569534913,
+ 5.733091985865422,
+ 3.587803081327939,
+ 2.631381461408427,
+ 1.2999645039629384,
+ 0.30144703608089485,
+ -3.2290359886551796,
+ -2.46682001831159,
+ -1.2687160114842868,
+ -0.37693629413546637,
+ 6.691552591982382,
+ 6.399168940266612,
+ 5.907091286939791,
+ 5.311310317482887,
+ -6.461435326460828,
+ -6.507994808165524,
+ -6.145375517292912,
+ -5.888030885384325
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.615203918267806,
+ 4.7873225612205035,
+ 6.381289293954442,
+ 7.215791597683356,
+ -3.128558256935357,
+ -4.556703690615363,
+ -6.3030735066036625,
+ -5.620019660307752,
+ 8.76508571934765,
+ 9.051763887870877,
+ 9.319658391448531,
+ 9.137746013910995,
+ -8.175258169054532,
+ -8.93917175244713,
+ -9.510180529695365,
+ -9.838906923047352,
+ 1.1026392796025644,
+ 2.394203701811455,
+ 4.12344734554772,
+ 5.201859724619491,
+ -1.0795125444314762,
+ -2.5440526031160466,
+ -4.46317781318538,
+ -5.8239579356731745,
+ -7.882111851782469,
+ -6.700021463353825,
+ -4.992763023867572,
+ -3.584477616619022,
+ 7.1431300679143614,
+ 6.402647132874912,
+ 5.019987187284398,
+ 3.9590665772879627,
+ -9.189535389347286,
+ -9.271962580419991,
+ -9.267949250008806,
+ -8.897656658537096,
+ 8.522953633959025,
+ 9.119589713464661,
+ 9.449876663163652,
+ 9.620241339146764,
+ -2.4551485384979337,
+ -3.7306552105569337,
+ -5.427368670108784,
+ -6.264877013388786,
+ 3.6367417685582186,
+ 5.010354235546426,
+ 6.720674090844448,
+ 7.921841381862254,
+ 6.028042899736417,
+ 4.656065569924018,
+ 2.736314614578003,
+ 1.264262074164021,
+ -5.41602759510465,
+ -4.391097448476228,
+ -2.723603321291123,
+ -1.4722284924714129,
+ 9.745608958976723,
+ 9.44549360917222,
+ 8.898498029635048,
+ 8.139093049861055,
+ -9.402751618425507,
+ -9.596199600458654,
+ -9.237847545974477,
+ -8.989347986673293
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.5797243520665627,
+ 3.8664255657522366,
+ 5.612795608718664,
+ 6.590612005023852,
+ -2.1609657686883774,
+ -3.647021106517389,
+ -5.52700220718984,
+ -6.7078473648706485,
+ 8.368944300967256,
+ 8.826532415598866,
+ 9.33050430805439,
+ 9.316200160300019,
+ -7.81566418773442,
+ -8.737289574825969,
+ -9.541208567916131,
+ -10.040540038859278,
+ -0.07323666243345163,
+ 1.3031921451338662,
+ 3.1622051253844674,
+ 4.369321031987216,
+ -0.018392484750868774,
+ -1.4952277469278763,
+ -3.4868709664233717,
+ -4.910954919247626,
+ -8.677520464860454,
+ -7.580538965376183,
+ -5.976874533333277,
+ -4.604731184446162,
+ 7.864162129203178,
+ 7.268217106686958,
+ 6.041818376464867,
+ 5.086200064383239,
+ -8.83257086235949,
+ -9.087289833225801,
+ -9.320341531945187,
+ -9.116766123581584,
+ 8.199573246234737,
+ 8.957138719850292,
+ 9.522482970865756,
+ 9.865038353534295,
+ -1.3700495419598908,
+ -2.7395536142239334,
+ -4.574497359936582,
+ -5.562627363610751,
+ 2.734173977814151,
+ 4.201168309067826,
+ 6.073827827895908,
+ 7.3995554153203225,
+ 7.114072760342692,
+ 5.762682671408753,
+ 3.858595162449156,
+ 2.3556533797330963,
+ -6.381272258815501,
+ -5.463105517439665,
+ -3.888941748021352,
+ -2.6935518867579913,
+ 9.795114311538121,
+ 9.658755448615782,
+ 9.332051851210814,
+ 8.711167018520253,
+ -9.440374126659078,
+ -9.799987094705397,
+ -9.66301642806956,
+ -9.579304402509521
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.5752085257649836,
+ 1.3691517395261739,
+ 2.444226376829883,
+ 3.092762667021152,
+ -0.40132800048908085,
+ -1.2584803147157637,
+ -2.3913387545842495,
+ -3.198428587810658,
+ 4.246847437488572,
+ 4.633779389174933,
+ 5.098374273594411,
+ 5.225242698993681,
+ -3.9744062864750855,
+ -4.603859537621567,
+ -5.229526588468799,
+ -5.63898399814599,
+ -0.9847513888353882,
+ -0.16574121661020416,
+ 0.9525924520401124,
+ 1.7144690090546069,
+ 0.8425640333893386,
+ 0.027091985686458632,
+ -1.1175888916408874,
+ -1.945270639018308,
+ -5.3725671651230265,
+ -4.842563033234159,
+ -4.051023008337914,
+ -3.331577685033317,
+ 4.869130913760186,
+ 4.660185668395377,
+ 4.1167562646846,
+ 3.6800889276960884,
+ -4.531227375879082,
+ -4.808607336253906,
+ -5.1262126109819866,
+ -5.149120273619067,
+ 4.21292046791759,
+ 4.755466629250415,
+ 5.252719658160041,
+ 5.577931938401319,
+ 0.1245207738115351,
+ -0.6980503136626328,
+ -1.8100528134992833,
+ -2.470086564215412,
+ 0.7662516156976387,
+ 1.641507698789532,
+ 2.7934552111633835,
+ 3.61670374309002,
+ 4.753238896477103,
+ 4.032616073718795,
+ 3.0065483218363664,
+ 2.161895452273576,
+ -4.256457045452071,
+ -3.8413929906772193,
+ -3.0576984356120853,
+ -2.4506131986315274,
+ 5.382874942068597,
+ 5.440069405928227,
+ 5.438859053139658,
+ 5.211474284452817,
+ -5.179821402459781,
+ -5.509496774587554,
+ -5.612658411567281,
+ -5.699399425142161
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.523444678567727,
+ -5.108531902927734,
+ -4.5610323404485005,
+ -3.963231464461548,
+ 5.130154675272382,
+ 5.024806681711399,
+ 4.58838399756336,
+ 4.222573168202918,
+ -3.0347752770350964,
+ -2.233403698692437,
+ -1.1104785310327747,
+ -0.26677387364875504,
+ 2.7821128335641685,
+ 2.1049746365088002,
+ 1.0354084690285146,
+ 0.24078015064924835,
+ -5.897439437689381,
+ -5.643008029275823,
+ -5.223265988427677,
+ -4.727485126653254,
+ 5.332445516501677,
+ 5.455075127754441,
+ 5.339473747149831,
+ 5.1992938907333155,
+ -2.9120139150015434,
+ -3.476490853941296,
+ -4.197082876839822,
+ -4.549948108328464,
+ 2.6399622189778453,
+ 3.4404023119966993,
+ 4.378445357736427,
+ 5.026706612475767,
+ 2.895870589852687,
+ 2.0622286501160367,
+ 0.9005166763081824,
+ 0.03765639240777148,
+ -2.648140067750361,
+ -1.9343557766962596,
+ -0.8242172571362215,
+ -0.0020498428967766027,
+ 5.621655929005353,
+ 5.320483577527339,
+ 4.855235907357617,
+ 4.222015871176307,
+ -4.875094670800779,
+ -4.589186384854473,
+ -4.007543065027787,
+ -3.5473834743058874,
+ 4.567047773667095,
+ 4.839187888729359,
+ 5.155602088519361,
+ 5.188090869112962,
+ -4.0518211570439435,
+ -4.702745718356584,
+ -5.368098702706858,
+ -5.798568996370078,
+ -0.9742957220967565,
+ -0.1346997342708279,
+ 1.0126471501382617,
+ 1.7859730369399258,
+ 0.9896938312457751,
+ 0.19992411267147978,
+ -0.9292059302732398,
+ -1.7674077955829397
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -9.930800726895125,
+ -9.421628800355695,
+ -8.757507040836426,
+ -7.883768794771133,
+ 9.18608883188006,
+ 9.24225578302528,
+ 8.790916893004148,
+ 8.372299564406166,
+ -6.42528889527351,
+ -5.260533160584618,
+ -3.406091080106267,
+ -1.9499075116313762,
+ 6.044388249024742,
+ 5.024945546479241,
+ 3.310431954026528,
+ 2.0209779343443737,
+ -10.150918155261616,
+ -9.932644821548255,
+ -9.506696493338032,
+ -8.845440163196576,
+ 9.191961560720609,
+ 9.639511099024759,
+ 9.75888166715736,
+ 9.745112599748278,
+ -3.630030246287343,
+ -4.778223050639886,
+ -6.2764854314533665,
+ -7.104037186387547,
+ 3.291325839102976,
+ 4.765992462067812,
+ 6.578626091070653,
+ 7.84858628297651,
+ 6.403080572579788,
+ 5.007269602829284,
+ 3.0426533148544284,
+ 1.5231848940522328,
+ -5.874931731008148,
+ -4.766096847482564,
+ -2.943506039214347,
+ -1.5815183805987192,
+ 9.906544639057023,
+ 9.606618334093403,
+ 9.09840337104411,
+ 8.165279580239027,
+ -8.838251177252607,
+ -8.580222628105936,
+ -7.877464334635018,
+ -7.296564388942358,
+ 6.732116018953394,
+ 7.417240362270044,
+ 8.267067105983308,
+ 8.563459373474121,
+ -5.961479946262716,
+ -7.230038977440926,
+ -8.628393064443143,
+ -9.561403015651363,
+ -3.2457348605773944,
+ -1.7771079145534778,
+ 0.2522910521926484,
+ 1.684223024405703,
+ 3.215525990689088,
+ 1.9120954401879833,
+ -0.05556256481096587,
+ -1.5133658661582494
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -9.5129565549167,
+ -9.189965683597231,
+ -8.776590626505977,
+ -8.079504040762664,
+ 8.773418564434511,
+ 8.998074959874724,
+ 8.797625504093544,
+ 8.562960078269201,
+ -5.15958188134219,
+ -5.905378847538481,
+ -4.243413765007304,
+ -2.890760589416758,
+ 6.515237564414296,
+ 5.676447484913079,
+ 4.179129830119651,
+ 3.040800606035772,
+ -9.409136292149775,
+ -9.36644850931125,
+ -9.187120826915045,
+ -8.713791063842363,
+ 8.530091570767786,
+ 9.116787445956941,
+ 9.458785894121112,
+ 9.611362743402635,
+ -2.36025315518807,
+ -3.5528744308290947,
+ -5.129108355971838,
+ -6.056200148212791,
+ 2.140455494341316,
+ 3.5777912356729216,
+ 5.401882419697674,
+ 6.691061129831698,
+ 6.966092457503238,
+ 5.700687152390293,
+ 3.905049880722084,
+ 2.471706999646281,
+ -6.402598093139131,
+ -5.461824220438542,
+ -3.8365355369629697,
+ -2.6127089642875543,
+ 9.34999658021341,
+ 9.230750211955792,
+ 8.972303953459607,
+ 8.221319206444553,
+ -8.517263447322334,
+ -8.4482078934972,
+ -8.013650856805999,
+ -7.628644802785264,
+ 5.419784472915522,
+ 6.212327796094234,
+ 7.221849844495601,
+ 7.671338935026992,
+ -4.7899032507216015,
+ -6.073433486638898,
+ -7.553550909508293,
+ -8.557959884411055,
+ -4.148587468191225,
+ -2.770217944786037,
+ -0.8494841996869801,
+ 0.5510997187014445,
+ 4.079371710126109,
+ 2.91185278484214,
+ 1.0704299899310536,
+ -0.29178490580713284
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -6.617735046875905,
+ -6.519286474028659,
+ -6.402438170875032,
+ -6.024692962815594,
+ 6.083227077128935,
+ 6.3704224452022125,
+ 6.4086662580444935,
+ 6.372873112847687,
+ -2.826616833279044,
+ -3.5439775423568096,
+ -3.7033419160386307,
+ -2.7947433381846523,
+ 5.088002613894513,
+ 4.6100488997104465,
+ 3.6795790167626854,
+ 2.9619193631401473,
+ -6.304398416095903,
+ -6.402203921998291,
+ -6.452688926589238,
+ -6.246090711630012,
+ 5.72320106591999,
+ 6.25238545139875,
+ 6.664730411076429,
+ 6.897886161456796,
+ -0.7860137843511265,
+ -1.686726080394091,
+ -2.891288081337066,
+ -3.6391741853699244,
+ 0.7133004352219176,
+ 1.7321286266066385,
+ 3.0682840593644674,
+ 4.020776162045483,
+ 5.483823604049855,
+ 4.658458384880694,
+ 3.4754526740758767,
+ 2.4953455554237673,
+ -5.047716024499289,
+ -4.4862867794268215,
+ -3.448065675456042,
+ -2.6586577723621927,
+ 6.397310373005036,
+ 6.4431285309946285,
+ 6.438334207044408,
+ 6.025384515625865,
+ -5.964067078699067,
+ -6.052505856184083,
+ -5.933050755265407,
+ -5.79659079042083,
+ 2.9817949773082844,
+ 3.6375270641413406,
+ 4.48956695060896,
+ 4.929118783416326,
+ -2.6266203539448063,
+ -3.5718834935672663,
+ -4.709265973739612,
+ -5.49277566180565,
+ -3.6824165587456075,
+ -2.7453569951637244,
+ -1.4270246663353041,
+ -0.43055659737852686,
+ 3.603404209075134,
+ 2.8533312495709864,
+ 1.6056250771618201,
+ 0.6842372561395885
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -9.32428504403356,
+ -9.314075017403288,
+ -9.323213062201178,
+ -8.900082087422678,
+ 8.550767980369995,
+ 9.088678293378297,
+ 9.323432885657155,
+ 9.40273646431224,
+ -3.206328546171134,
+ -4.3179202783790345,
+ -5.774803504664327,
+ -4.735557605121348,
+ 7.734512573152408,
+ 7.168528370547497,
+ 5.970647894652266,
+ 5.035030635054293,
+ -8.637367049405244,
+ -8.904958356705418,
+ -9.154464391946423,
+ -8.988243694827398,
+ 7.849326413113386,
+ 8.718153249100155,
+ 9.47669678318279,
+ 9.934499197751235,
+ -0.23624479576250687,
+ -1.5776663537331883,
+ -3.384857478960663,
+ -4.543411156871933,
+ 0.2154189153127985,
+ 1.6702095646487571,
+ 3.6212528701624804,
+ 5.019964887013562,
+ 8.375871475638567,
+ 7.268848580689819,
+ 5.669334720538367,
+ 4.305688588960376,
+ -7.7165028154526505,
+ -7.020148503851404,
+ -5.651385318005281,
+ -4.602184530827357,
+ 8.904732048560694,
+ 9.100367770028294,
+ 9.271741694538017,
+ 8.801339190327182,
+ -8.442966257484027,
+ -8.706496885661311,
+ -8.72430773976261,
+ -8.66576189498211,
+ 3.3986764200606854,
+ 4.428857693982017,
+ 5.781811506236176,
+ 6.530267654748215,
+ -2.9827328207396286,
+ -4.367900669060351,
+ -6.0801156342975755,
+ -7.270374609214961,
+ -5.9991617746649135,
+ -4.701060091115744,
+ -2.861705446527243,
+ -1.4351559694831542,
+ 5.856419834564196,
+ 4.862808560355155,
+ 3.1386949176248313,
+ 1.8671875711689834
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -8.826417558983014,
+ -8.988346003199752,
+ -9.229043865974528,
+ -8.974198588200748,
+ 8.06695651641611,
+ 8.754086825604732,
+ 9.21782759267556,
+ 9.46613667335301,
+ -1.9984697433351275,
+ -3.185365426446178,
+ -4.760302573641215,
+ -5.5480415309270255,
+ 8.07678904639643,
+ 7.6845001669761,
+ 6.701655532270128,
+ 5.916884813728586,
+ -7.848444921363585,
+ -8.27505402921064,
+ -8.749425348261296,
+ -8.75882666983729,
+ 7.14368623589712,
+ 8.130654204339653,
+ 9.085791458580688,
+ 9.691794056292785,
+ 0.9397581657078784,
+ -0.4266257756622264,
+ -2.28418497698444,
+ -3.5208124960488414,
+ -0.8504742175856783,
+ 0.5523803872038248,
+ 2.4906132642084677,
+ 3.890308721353149,
+ 8.795607672499827,
+ 7.822343972257477,
+ 6.398133710391154,
+ 5.130412909306846,
+ -8.111489571266933,
+ -7.578760310166143,
+ -6.408701871780083,
+ -5.499732274040786,
+ 8.283744649344413,
+ 8.643967831722781,
+ 9.044052523453217,
+ 8.747572487938406,
+ -8.045154650858803,
+ -8.480120675277444,
+ -8.745513938087974,
+ -8.868660062370784,
+ 2.1454337871237055,
+ 3.2625078070286904,
+ 4.746782830923569,
+ 5.627712669236525,
+ -1.8645239949835926,
+ -3.2469135384563,
+ -5.0141388193022225,
+ -6.256091455287539,
+ -6.7613836408096555,
+ -5.562238827244271,
+ -3.8453388779452276,
+ -2.4648591458921634,
+ 6.584314249784391,
+ 5.7281892366872045,
+ 4.141381585614524,
+ 2.973437591606224
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -4.795813692337795,
+ -5.10206704407862,
+ -5.5280187515489505,
+ -5.574873056961786,
+ 4.348505249898771,
+ 4.948200919688194,
+ 5.5073924130208125,
+ 5.862674963311206,
+ 0.23278417542255858,
+ -0.5833991771500872,
+ -1.6882545994724307,
+ -2.407203125407054,
+ 5.349207770848571,
+ 5.31856107196106,
+ 4.976705364852372,
+ 4.678635359913511,
+ -3.8475528078814794,
+ -4.2997980506596996,
+ -4.860525674250411,
+ -5.077738792082496,
+ 3.5170369930360845,
+ 4.262591415390271,
+ 5.083153511489734,
+ 5.632030551908554,
+ 1.9904676625515783,
+ 1.1251853639723814,
+ -0.07092704276081269,
+ -0.9208450482209406,
+ -1.8033081484991456,
+ -1.0083259134604632,
+ 0.1610264173925323,
+ 1.017797910470248,
+ 5.881866887670911,
+ 5.448002528964643,
+ 4.788513122026974,
+ 4.129101177925219,
+ -5.433887442054052,
+ -5.305268606501876,
+ -4.829311072047161,
+ -4.442540481343848,
+ 4.315847188861568,
+ 4.734219345583906,
+ 5.254168354325506,
+ 5.282359925180482,
+ -4.438730921271856,
+ -4.911036486137658,
+ -5.3713764428854915,
+ -5.665426804009596,
+ -0.19759658168031902,
+ 0.5898611730939943,
+ 1.6552729930912795,
+ 2.3532676461215294,
+ 0.20671324925120615,
+ -0.6349501918678551,
+ -1.7814341844885202,
+ -2.6028428811620534,
+ -5.050800238051692,
+ -4.436956786514004,
+ -3.5349205463176867,
+ -2.7465517136522433,
+ 4.901229923580896,
+ 4.543456311358034,
+ 3.738823613469317,
+ 3.149598846957094
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 4.5646640693904805,
+ 4.100434696766341,
+ 3.4838843299259414,
+ 2.886828336925794,
+ -4.25890908538585,
+ -4.046020022852095,
+ -3.5145666879591566,
+ -3.089751616194259,
+ 4.344027137447147,
+ 4.527822631353231,
+ 4.716901582388523,
+ 4.662906833112818,
+ -1.7651172722416046,
+ -1.1040640386174883,
+ -0.1133273660585437,
+ 0.6147083259989361,
+ 5.105488701419731,
+ 4.772672811240163,
+ 4.257361669032805,
+ 3.7297287806594888,
+ -4.609431486888775,
+ -4.59442918471462,
+ -4.331236741273769,
+ -4.0933078382743515,
+ 3.2292022272661205,
+ 3.6273954185508877,
+ 4.119053457027175,
+ 4.311715151213298,
+ -2.927298691625533,
+ -3.570592341374195,
+ -4.281199398784773,
+ -4.763426409507558,
+ -1.7801386777915011,
+ -1.0384162299609851,
+ -0.014789090646144497,
+ 0.7146370951032366,
+ 1.6178070021168756,
+ 0.9385122138179255,
+ -0.06775388697891846,
+ -0.8067533293190933,
+ -4.748730216919903,
+ -4.376065207985145,
+ -3.8233782607166424,
+ -3.1948502101701193,
+ 3.9913805632582644,
+ 3.623924139723087,
+ 2.9674993183725595,
+ 2.460946702679893,
+ -4.5321635457953535,
+ -4.6567235548770505,
+ -4.774268778441801,
+ -4.679182497594289,
+ 4.026590287353512,
+ 4.514189736881035,
+ 4.960500701747324,
+ 5.234753597479927,
+ 0.03967370462628645,
+ -0.6751449439431904,
+ -1.6404738415372588,
+ -2.258277941011467,
+ -0.08206241888006792,
+ 0.6303209145049021,
+ 1.5954480646273637,
+ 2.313376086024932
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 4.892029810649339,
+ 4.422275513070082,
+ 3.7990593036310556,
+ 3.1827610040004353,
+ -4.559937798440803,
+ -4.360576595801744,
+ -3.830093352717141,
+ -3.402846507060619,
+ 4.487810407277804,
+ 4.7065783486009565,
+ 4.940910308730127,
+ 4.910171112380242,
+ -2.013927893939792,
+ -1.328683709073721,
+ -0.2913420337285454,
+ 0.4725798449807066,
+ 5.418605098340967,
+ 5.08996603326977,
+ 4.576243250168846,
+ 4.037753993042631,
+ -4.893639990500044,
+ -4.904187424401199,
+ -4.660487974175267,
+ -4.433433918602501,
+ 3.2725247231176433,
+ 3.714905679261258,
+ 4.265590429507521,
+ 4.494714458724406,
+ -2.966608223327318,
+ -3.6602029648731595,
+ -4.436558193941359,
+ -4.965614250029048,
+ -2.048103432937074,
+ -1.265266967624507,
+ -0.18277587821923097,
+ 0.5952224034680542,
+ 1.8644272321531636,
+ 1.1568771294271514,
+ 0.09877294392810797,
+ -0.679598264547885,
+ -5.065747379630842,
+ -4.694680895333096,
+ -4.140848998011192,
+ -3.491325267363542,
+ 4.2862084305185855,
+ 3.9224189156333487,
+ 3.2591363816014485,
+ 2.7451518847744194,
+ -4.683757167762538,
+ -4.840213344850391,
+ -4.999130346576556,
+ -4.925129693107783,
+ 4.160183562176395,
+ 4.69427157164726,
+ 5.1962876527697945,
+ 5.508859326506808,
+ 0.21770380287802268,
+ -0.5435823940747776,
+ -1.574219002246733,
+ -2.241201450944758,
+ -0.25634403496054,
+ 0.4934660976413047,
+ 1.520487390268237,
+ 2.2841307108466102
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.219395551908196,
+ 4.744116329373823,
+ 4.11423427733617,
+ 3.4786936710750767,
+ -4.860966511495755,
+ -4.675133168751393,
+ -4.145620017475125,
+ -3.7159413979269798,
+ 4.6315936771084605,
+ 4.885334065848682,
+ 5.164919035071733,
+ 5.157435391647666,
+ -2.26273851563798,
+ -1.5533033795299536,
+ -0.4693567013985471,
+ 0.3304513639624771,
+ 5.731721495262203,
+ 5.407259255299374,
+ 4.895124831304888,
+ 4.345779205425774,
+ -5.177848494111311,
+ -5.2139456640877775,
+ -4.989739207076766,
+ -4.773559998930652,
+ 3.3158472189691666,
+ 3.802415939971628,
+ 4.412127401987864,
+ 4.677713766235511,
+ -3.005917755029104,
+ -3.7498135883721244,
+ -4.591916989097944,
+ -5.167802090550538,
+ -2.316068188082647,
+ -1.4921177052880283,
+ -0.35076266579231735,
+ 0.47580771183287174,
+ 2.1110474621894517,
+ 1.3752420450363776,
+ 0.2652997748351344,
+ -0.5524431997766764,
+ -5.382764542341782,
+ -5.013296582681046,
+ -4.458319735305741,
+ -3.7878003245569647,
+ 4.5810362977789065,
+ 4.22091369154361,
+ 3.5507734448303383,
+ 3.029357066868946,
+ -4.8353507897297225,
+ -5.023703134823732,
+ -5.22399191471131,
+ -5.171076888621276,
+ 4.293776836999278,
+ 4.874353406413483,
+ 5.432074603792265,
+ 5.7829650555336904,
+ 0.3957339011297589,
+ -0.412019844206365,
+ -1.5079641629562075,
+ -2.224124960878049,
+ -0.4306256510410121,
+ 0.35661128077770715,
+ 1.4455267159091107,
+ 2.254885335668288
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.50965984249105,
+ 5.02948185316314,
+ 4.3936894206880375,
+ 3.7410873025479248,
+ -5.127878637071148,
+ -4.954039996766748,
+ -4.425386993560538,
+ -3.99355220116182,
+ 4.759081509691644,
+ 5.043830801808333,
+ 5.363540105761289,
+ 5.376676385931448,
+ -2.4833506002103722,
+ -1.7524661540011468,
+ -0.627196373399282,
+ 0.20443077745964694,
+ 6.009351367199033,
+ 5.688592578832292,
+ 5.177866499912178,
+ 4.618894893738826,
+ -5.429846700646636,
+ -5.48859796994321,
+ -5.281675300249427,
+ -5.075138456821612,
+ 3.3542598319575165,
+ 3.8800083711348217,
+ 4.542056850920437,
+ 4.839973152228692,
+ -3.0407722064713534,
+ -3.8292683412078734,
+ -4.7296684541367835,
+ -5.347075309146258,
+ -2.5536636043117213,
+ -1.6932586926830178,
+ -0.49971095077378747,
+ 0.36992668524967665,
+ 2.3297173994882936,
+ 1.5688589368765578,
+ 0.41295356490603113,
+ -0.43969904234620494,
+ -5.663853093278815,
+ -5.295802492129561,
+ -4.739810455706908,
+ -4.0506748752684665,
+ 4.842450340083058,
+ 4.485579059517375,
+ 3.8093583075599535,
+ 3.2813523283260926,
+ -4.969763801207293,
+ -5.18639741526676,
+ -5.423369171790792,
+ -5.389150068643241,
+ 4.412229540675568,
+ 5.034025966572868,
+ 5.641139033698856,
+ 6.026005468604192,
+ 0.5535872549129651,
+ -0.29536771665637246,
+ -1.4492182054519416,
+ -2.208983806352233,
+ -0.585155350632364,
+ 0.235266676491984,
+ 1.3790615846440188,
+ 2.2289544363435088
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 9.399341276579616,
+ 8.929833103488198,
+ 8.318041316970264,
+ 7.501603158464409,
+ -8.692512364701127,
+ -8.758547533956753,
+ -8.34883664404515,
+ -7.965156053037279,
+ 6.006429274300246,
+ 6.766601177875802,
+ 7.711096877099775,
+ 8.075105504743783,
+ -5.632561451832896,
+ -4.821052499647499,
+ -3.2092235595361145,
+ -1.996075656033552,
+ 9.583967481902457,
+ 9.389913981369217,
+ 9.003993670059902,
+ 8.390189421264779,
+ -8.679311820831268,
+ -9.114814051018184,
+ -9.244950228575064,
+ -9.244408844689103,
+ 3.3515934590634058,
+ 4.445327345925377,
+ 5.874033811638202,
+ 6.6674223407364455,
+ -3.038901238457254,
+ -4.436511640653323,
+ -6.158750131319006,
+ -7.366221316445924,
+ -6.1231363054074786,
+ -4.807424864798589,
+ -2.954451640608504,
+ -1.517971794833691,
+ 5.618914194488001,
+ 4.578568195953583,
+ 2.8626042578646853,
+ 1.5795976470122934,
+ -9.365854828377778,
+ -9.094643110813365,
+ -8.630835150396441,
+ -7.758414722649051,
+ 8.369095342694465,
+ 8.138296899580427,
+ 7.49112897911922,
+ 6.9542358634924355,
+ -6.29429570056882,
+ -6.95302112611895,
+ -7.772095989179239,
+ -8.065102268142109,
+ 5.573064046940304,
+ 6.778884569322852,
+ 8.112998415237158,
+ 9.004415277380264,
+ 3.1503573514767,
+ 1.7624706593907327,
+ -0.15656847834333784,
+ -1.5140465638479177,
+ -3.11873012371663,
+ -1.8911630165591897,
+ -0.03208037795775754,
+ 1.3451258934238426
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 9.32188322322334,
+ 9.027338072304946,
+ 8.65196032348459,
+ 7.987518981857161,
+ -8.593712742201005,
+ -8.836627406057357,
+ -8.671110762753594,
+ -8.463327698479183,
+ 4.923290806155563,
+ 5.811463447337664,
+ 6.943449539087981,
+ 7.47160609602636,
+ -4.631100974112451,
+ -5.677440779976546,
+ -4.229530260594066,
+ -3.126975559375072,
+ 9.1782093785016,
+ 9.158556400040641,
+ 9.013310736200605,
+ 8.570826130721244,
+ -8.322093627995626,
+ -8.91806000292415,
+ -9.283529634594112,
+ -9.455134652897044,
+ 2.163970876186457,
+ 3.3449976135954573,
+ 4.90836549017778,
+ 5.834743076166187,
+ -1.9625360951182353,
+ -3.3742962345490803,
+ -5.173441161071007,
+ -6.446408861345323,
+ -6.937116974434782,
+ -5.706680810868094,
+ -3.9586139423338595,
+ -2.5570184051463,
+ 6.377268314132788,
+ 5.471571007108261,
+ 3.8950024068246685,
+ 2.706533125103901,
+ -9.143574435247475,
+ -9.049121671103858,
+ -8.826304809135472,
+ -8.109446197445203,
+ 8.352971207676491,
+ 8.309041362786429,
+ 7.915016697965769,
+ 7.560594236999798,
+ -5.173773708977136,
+ -5.968556702104375,
+ -6.983851070781563,
+ -7.446378165748916,
+ 4.570981831323158,
+ 5.837840591181155,
+ 7.30696762721475,
+ 8.305950277903122,
+ 4.2037906031603045,
+ 2.856900029344925,
+ 0.9778476320318832,
+ -0.3984565988862981,
+ -4.130596982694349,
+ -2.997332946386895,
+ -1.1986863833988135,
+ 0.13160284494826432
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 6.62699626111285,
+ 6.546484673435006,
+ 6.453915566613924,
+ 6.09098824978702,
+ -6.088870355718033,
+ -6.395211089114327,
+ -6.458948984778138,
+ -6.441353947413898,
+ 2.7213763657623726,
+ 3.4539250706586637,
+ 4.40575955968048,
+ 4.90714008638756,
+ -2.5728625265173375,
+ -3.482880677284561,
+ -3.7953098614038634,
+ -3.0872730549463903,
+ 6.278699514305094,
+ 6.394897032139546,
+ 6.47054214404962,
+ 6.281219044207467,
+ -5.701029093233101,
+ -6.248284996549715,
+ -6.686181485871005,
+ -6.937849003889695,
+ 0.6645683881125938,
+ 1.5767151906308468,
+ 2.798432669232946,
+ 3.562105389602281,
+ -0.6032345539613402,
+ -1.626200087891028,
+ -2.973849327933875,
+ -3.935644803114667,
+ -5.58281942876334,
+ -4.764162399373135,
+ -3.5889705228790665,
+ -2.6099264841437706,
+ 5.139786058216121,
+ 4.590890015622851,
+ 3.564448135804828,
+ 2.782805678635608,
+ -6.390934623663349,
+ -6.4552540131576475,
+ -6.475508047754743,
+ -6.077654846294147,
+ 5.977996083645026,
+ 6.086098926244862,
+ 5.992655878335104,
+ 5.87481415806668,
+ -2.8730730025382334,
+ -3.5446696660598667,
+ -4.419344096026236,
+ -4.877674717908099,
+ 2.529285688666689,
+ 3.4833696660348155,
+ 4.637768420762743,
+ 5.434514143354127,
+ 3.801599708961378,
+ 2.86635143335956,
+ 1.5487277746664,
+ 0.5476945622102277,
+ -3.7180580767326346,
+ -2.9758291290492944,
+ -1.731142979601767,
+ -0.8122231771395707
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 9.479421728931161,
+ 9.492548216130528,
+ 9.533626274270048,
+ 9.123413576630961,
+ -8.68930259819863,
+ -9.260538642834625,
+ -9.532284743615596,
+ -9.636639718320117,
+ 3.1176645254689426,
+ 4.266197357040105,
+ 5.774148513662094,
+ 6.61666904315315,
+ -2.964161441380704,
+ -4.330088535401883,
+ -6.005803808946154,
+ -5.276435979670612,
+ 8.736179131172234,
+ 9.03196357725994,
+ 9.318249945278842,
+ 9.172106140425628,
+ -7.940671731670258,
+ -8.846493092796388,
+ -9.650136740011245,
+ -10.1392064112393,
+ 0.08080401510289494,
+ 1.4577754134127292,
+ 3.3151529784261005,
+ 4.512152054558854,
+ -0.07456313846249041,
+ -1.5570848531097117,
+ -3.553105443260197,
+ -4.985454691224104,
+ -8.633992937037686,
+ -7.5187777141967755,
+ -5.904966310328161,
+ -4.521798290217587,
+ 7.9554404142526245,
+ 7.264821565397681,
+ 5.890493566735228,
+ 4.835372023416732,
+ -9.032953379678393,
+ -9.255821706169499,
+ -9.462631289465849,
+ -9.004786967051311,
+ 8.590699799018163,
+ 8.884027369869326,
+ 8.936180886532798,
+ 8.901122517952759,
+ -3.3084025026382577,
+ -4.375162439853772,
+ -5.778512305154177,
+ -6.563043210636785,
+ 2.9009941883840478,
+ 4.318959542195779,
+ 6.079721981082077,
+ 7.305571980755768,
+ 6.2472720879092325,
+ 4.931633746452398,
+ 3.064997075881071,
+ 1.6105893546754013,
+ -6.0964086521928875,
+ -5.097832099195312,
+ -3.3512311954835248,
+ -2.0634552287108754
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 9.303599362056408,
+ 9.488256953524221,
+ 9.760865966976676,
+ 9.504108452413913,
+ -8.50086072684283,
+ -9.239631128306346,
+ -9.748112890088535,
+ -10.023955199765926,
+ 2.0220858491435987,
+ 3.284115241742406,
+ 4.960147881433597,
+ 5.954854129614317,
+ -1.9503396176003143,
+ -3.3769103189308853,
+ -5.191373620160309,
+ -6.330483429544408,
+ 8.246063675702441,
+ 8.709850802521036,
+ 9.229266384410277,
+ 9.252756079455024,
+ -7.506559452429981,
+ -8.560285520127707,
+ -9.586369741329415,
+ -10.239195031990786,
+ -1.085312390000814,
+ 0.36280845201937906,
+ 2.3327534204130727,
+ 3.647633104130202,
+ 0.9823245367101673,
+ -0.4984689415263627,
+ -2.548929228593,
+ -4.030458751495411,
+ -9.341730631287243,
+ -8.32192907572073,
+ -6.82804329617515,
+ -5.493668250158388,
+ 8.61574419380756,
+ 8.064511778415644,
+ 6.841427261360406,
+ 5.890174266622023,
+ -8.719736500633447,
+ -9.113689374778318,
+ -9.554775576142294,
+ -9.254385900979406,
+ 8.484415384577634,
+ 8.958004865593782,
+ 9.257986992302401,
+ 9.40233343334827,
+ -2.174135497546234,
+ -3.363158260249687,
+ -4.944255898509189,
+ -5.886854926681887,
+ 1.8872275067170803,
+ 3.3501502552285483,
+ 5.224842656827106,
+ 6.543324778395275,
+ 7.215087868099505,
+ 5.953528140236164,
+ 4.145781960876272,
+ 2.6882180476770103,
+ -7.025029186343685,
+ -6.1294958941997635,
+ -4.460585827276851,
+ -3.232404531551597
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 4.966523243182084,
+ 5.2058251089824985,
+ 5.541657579610457,
+ 5.524078166341282,
+ -4.5156541241233175,
+ -5.055963311105826,
+ -5.525480325636648,
+ -5.814809551583375,
+ 0.22926654079812306,
+ 1.013407793018394,
+ 2.068735839236626,
+ 2.737218647291266,
+ -0.25561321973794593,
+ -1.0875948032921379,
+ -2.1953388025000975,
+ -2.987319306735012,
+ 4.133202296261246,
+ 4.522915770048865,
+ 4.99553590795665,
+ 5.1448270342155595,
+ -3.7722268012913647,
+ -4.469670697084727,
+ -5.211869538137174,
+ -5.701954523084096,
+ -1.5334841916674473,
+ -0.6812237978342874,
+ 0.4908326112123798,
+ 1.3075149303386508,
+ 1.3891154901390028,
+ 0.577514748975583,
+ -0.5920085596360251,
+ -1.4449466728472977,
+ -5.697889479601254,
+ -5.214712397329146,
+ -4.490960936424604,
+ -3.797590009829722,
+ 5.2611664028851814,
+ 5.070601309980164,
+ 4.520707385285503,
+ 4.08196326167517,
+ -4.535496026341442,
+ -4.889346854881163,
+ -5.319884915000408,
+ -5.281566209803355,
+ 4.572684395256759,
+ 4.977636696357185,
+ 5.341601862545366,
+ 5.565102857016403,
+ -0.2816378031253237,
+ -1.0327452666136026,
+ -2.0437239998046746,
+ -2.688328495806504,
+ 0.2210075316177907,
+ 1.0603346560568467,
+ 2.1811907390607557,
+ 2.9795496937817614,
+ 4.739429960210179,
+ 4.090286290870603,
+ 3.145142469395081,
+ 2.3423679517861045,
+ -4.603568135900099,
+ -4.194751853778237,
+ -3.340948835311454,
+ -2.7145659268665137
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.7906794515863138,
+ -0.9459336081995077,
+ 0.19202008616086622,
+ 0.9888538987157147,
+ 1.7759475570693453,
+ 1.0052857145962668,
+ -0.1358668221279892,
+ -0.9715092817082204,
+ -5.70733049125258,
+ -5.2594340494200855,
+ -4.577328888679141,
+ -3.908798169271476,
+ 5.28913552149549,
+ 5.123098728372055,
+ 4.602015511581558,
+ 4.175991995154986,
+ -3.268426767811455,
+ -2.468620469817781,
+ -1.346672209426856,
+ -0.49576956069564204,
+ 2.914709563251052,
+ 2.273460441170742,
+ 1.254631796406661,
+ 0.49460275843341867,
+ -5.759383924729196,
+ -5.542606245817767,
+ -5.168348550027219,
+ -4.7035507393550215,
+ 5.220038684526398,
+ 5.372990598184745,
+ 5.298936669497842,
+ 5.195910116776819,
+ -2.649571943486671,
+ -3.2288154041223818,
+ -3.977530054039275,
+ -4.352935301801739,
+ 2.481723566764556,
+ 3.2364848692601025,
+ 4.116334676642369,
+ 4.731424887013095,
+ 2.424840683293492,
+ 1.602730481121639,
+ 0.4673802959549849,
+ -0.35381992549503494,
+ -1.3611251354685892,
+ -0.5006145763644222,
+ 0.7166433155444772,
+ 1.6049179857155078,
+ 5.91673058950902,
+ 5.4176308824246036,
+ 4.677659422685207,
+ 3.9744661936487873,
+ -5.2827097505276335,
+ -5.199109991725289,
+ -4.808719627871319,
+ -4.471262928255277,
+ 4.164842904668126,
+ 4.559739157245568,
+ 5.032047021152613,
+ 5.158169107762866,
+ -3.9862215374339316,
+ -4.591732619068634,
+ -5.145073497046471,
+ -5.5644616563500024
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -4.577854091221845,
+ -3.149423812522347,
+ -1.2290051509908684,
+ 0.1873000412879814,
+ 4.424099050795498,
+ 3.212113485349282,
+ 1.3238815460431412,
+ -0.07425998706855551,
+ -10.173565076538466,
+ -9.602292080609507,
+ -8.692981576934752,
+ -7.698179534981378,
+ 9.440330954464773,
+ 9.381824987943856,
+ 8.772553051350002,
+ 8.242240373862398,
+ -6.8162447807366595,
+ -5.652996207877129,
+ -3.799656932896461,
+ -2.3348356104821346,
+ 6.230540002346626,
+ 5.292258547247646,
+ 3.6978920515640317,
+ 2.490518136289281,
+ -9.766642436995676,
+ -9.624007668336654,
+ -9.292998492197512,
+ -8.701004230343708,
+ 8.852248282150908,
+ 9.35295456681223,
+ 9.552939860544885,
+ 9.611969491421105,
+ -3.0794987497854924,
+ -4.24224729039952,
+ -5.773275985791172,
+ -6.63450834301015,
+ 2.905867800484546,
+ 4.296635874570369,
+ 6.010699852613664,
+ 7.224357983868774,
+ 5.579016859355056,
+ 4.2231123564090005,
+ 2.334120575540386,
+ 0.8687860710558496,
+ -3.705526257969339,
+ -2.296077464052341,
+ -0.24316333259565076,
+ 1.2668378445426036,
+ 10.559276898817977,
+ 9.88796082054411,
+ 8.863601917646243,
+ 7.800645624242663,
+ -9.41915131592945,
+ -9.508735173699364,
+ -9.134655070686453,
+ -8.763015267966322,
+ 6.034685443445725,
+ 6.917916848620791,
+ 8.022068968103575,
+ 8.472755965294105,
+ -5.7567856551928,
+ -6.945003547820029,
+ -8.166815957765662,
+ -9.08698202931012
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.349922888251247,
+ -4.038077434660289,
+ -2.2772177730616905,
+ -0.9255816503291424,
+ 5.1134734915266975,
+ 4.067802613274075,
+ 2.364294085400729,
+ 1.0912761193263723,
+ -9.729616341040524,
+ -9.342538130473729,
+ -8.68788646682082,
+ -7.874556414422498,
+ 9.036945423900432,
+ 9.1475091126242,
+ 8.788926118734162,
+ 8.44240286991551,
+ -5.543419231416532,
+ -6.284661744499512,
+ -4.614986216496821,
+ -3.250514955917871,
+ 6.684393577055695,
+ 5.930650398988823,
+ 4.561349862854306,
+ 3.5100324309214748,
+ -8.99003648192969,
+ -9.024573651441536,
+ -8.943709052883966,
+ -8.54340971929414,
+ 8.148510798779432,
+ 8.787293197696352,
+ 9.211354438890153,
+ 9.437983171102875,
+ -1.792652231793097,
+ -2.9959775020071118,
+ -4.59792713467814,
+ -5.556254017099805,
+ 1.714649452442502,
+ 3.0765451969056326,
+ 4.817977080207132,
+ 6.060882174434614,
+ 6.216757698982103,
+ 4.996836663611751,
+ 3.2848157958615185,
+ 1.882366379594749,
+ -4.440889532113223,
+ -3.180213364123227,
+ -1.2988583577671429,
+ 0.09378856743513031,
+ 10.107224955968135,
+ 9.61831873653624,
+ 8.845294952799064,
+ 7.962320087682877,
+ -9.009870205960315,
+ -9.262862410759242,
+ -9.130769104676375,
+ -8.936554696652896,
+ 4.797101109247457,
+ 5.767530147120925,
+ 7.007393705757781,
+ 7.59680105484626,
+ -4.5597285968195855,
+ -5.772437740048233,
+ -7.106044899560296,
+ -8.107082307051995
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -4.461754274321308,
+ -3.5921718326349743,
+ -2.4272042790924004,
+ -1.4905541588747082,
+ 4.22891652272749,
+ 3.5896243450842036,
+ 2.484879360711475,
+ 1.649832496814662,
+ -6.758206277866116,
+ -6.611546010375333,
+ -6.321777410106927,
+ -5.8627717057561055,
+ 6.283649256408055,
+ 6.48821529900262,
+ 6.411096556990593,
+ 6.293666276640045,
+ -3.1020560627396967,
+ -3.8114517282277913,
+ -3.9584035250603073,
+ -3.0385916868000766,
+ 5.19984981766011,
+ 4.786478502242676,
+ 3.954669293315338,
+ 3.3037382971407605,
+ -5.975619756894538,
+ -6.130777667136754,
+ -6.255461951870981,
+ -6.104679330598563,
+ 5.416390058683019,
+ 5.98280039690456,
+ 6.455983778195376,
+ 6.743975873815956,
+ -0.360891559890705,
+ -1.266790076506822,
+ -2.4851879678792015,
+ -3.2541806963853026,
+ 0.37427259461019585,
+ 1.3446608722353657,
+ 2.632653649686125,
+ 3.5590556403115814,
+ 4.9943111058738054,
+ 4.205892482540889,
+ 3.089260871286988,
+ 2.1143052556958533,
+ -3.7729659301758,
+ -2.9642590369036115,
+ -1.7203665846223182,
+ -0.7925184562229727,
+ 7.027191010114508,
+ 6.80508152929632,
+ 6.426689014673983,
+ 5.915882200084205,
+ -6.259609914029116,
+ -6.5637216035762505,
+ -6.6451207336620275,
+ -6.633914134667316,
+ 2.5845339596575947,
+ 3.3550755692972825,
+ 4.357388601712963,
+ 4.888322482821561,
+ -2.441446328262646,
+ -3.3423732886114683,
+ -4.395389096813125,
+ -5.18357383879305
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -7.039881536498836,
+ -5.858426779704395,
+ -4.278054711301406,
+ -2.9620096854333475,
+ 6.642240472999894,
+ 5.8311954879985395,
+ 4.356366494984975,
+ 3.2312318832193996,
+ -9.511822685855282,
+ -9.429988042077456,
+ -9.190316049553484,
+ -8.65228474700902,
+ 8.850609555496414,
+ 9.26877933158815,
+ 9.335537196135782,
+ 9.29592330942528,
+ -3.6030122724490856,
+ -4.698502543606769,
+ -6.130721045807453,
+ -5.072626368543763,
+ 7.886209479312185,
+ 7.416734025247924,
+ 6.367635836409387,
+ 5.53234299531901,
+ -8.136269549319044,
+ -8.488366092360272,
+ -8.848223701214538,
+ -8.765746563147587,
+ 7.374970300122827,
+ 8.297261439285608,
+ 9.145346941119682,
+ 9.683796233549474,
+ 0.39355290759462075,
+ -0.9528819181303254,
+ -2.775450382714838,
+ -3.9631151128133024,
+ -0.3058436729054717,
+ 1.0848155231988528,
+ 2.9775146110831723,
+ 4.345682328360298,
+ 7.7185266533557115,
+ 6.668955498775989,
+ 5.171306550888847,
+ 3.7982794750715194,
+ -6.011959446829496,
+ -4.942009930200727,
+ -3.255419350619738,
+ -1.9897761721675733,
+ 9.897232156471858,
+ 9.704395554037532,
+ 9.333463014107046,
+ 8.71903198949426,
+ -8.811440800821329,
+ -9.37034241117446,
+ -9.661426989614348,
+ -9.771755477151336,
+ 2.8755154756251886,
+ 4.058369485521514,
+ 5.61291947392221,
+ 6.484075912576375,
+ -2.6963426776028863,
+ -4.024067185874351,
+ -5.635286674230337,
+ -6.839284615401551
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -7.680100665764849,
+ -6.618748005021161,
+ -5.202366929068022,
+ -3.959838025495202,
+ 7.210167587028311,
+ 6.561328666872273,
+ 5.272650960183711,
+ 4.274923788935523,
+ -9.002158114469006,
+ -9.091446701653972,
+ -9.089682116758693,
+ -8.725018656726448,
+ 8.385342903696458,
+ 8.955435485097933,
+ 9.253232633830416,
+ 9.383926589977671,
+ -2.3888098308397674,
+ -3.5554951442572746,
+ -5.09952623365438,
+ -5.866131897690835,
+ 8.223437892970361,
+ 7.929449204871465,
+ 7.099351263996664,
+ 6.41703492727482,
+ -7.333455010370669,
+ -7.8456537309133925,
+ -8.432988192033605,
+ -8.528574104721365,
+ 6.647461222520995,
+ 7.687763066802175,
+ 8.73413177279755,
+ 9.421889079143092,
+ 1.5790020914508467,
+ 0.2091116947395395,
+ -1.6599927783117434,
+ -2.9250151152400177,
+ -1.4038099412612235,
+ -0.05435525999875839,
+ 1.8438875599942703,
+ 3.2248108082752753,
+ 8.227490088390605,
+ 7.314576531948738,
+ 5.9961506657526575,
+ 4.695585353593105,
+ -6.628977063016102,
+ -5.707720103925214,
+ -4.197322050770254,
+ -3.053370942043113,
+ 9.376054286083926,
+ 9.353849520266884,
+ 9.219121993803203,
+ 8.777478371201147,
+ -8.341133105392682,
+ -9.045255344022747,
+ -9.556993569100882,
+ -9.830181984548345,
+ 1.7014831515941071,
+ 2.952596328243494,
+ 4.616371917107902,
+ 5.606668314356117,
+ -1.5616437592137866,
+ -2.898149762751933,
+ -4.595894847196487,
+ -5.862083255933452
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.562716449310571,
+ -5.0444317039807975,
+ -4.35723759727632,
+ -3.6699222640650784,
+ 5.1825752041268345,
+ 4.9723410510625605,
+ 4.391469629946335,
+ 3.921672321097973,
+ -5.007191824264159,
+ -5.268407733183098,
+ -5.552981035234901,
+ -5.533533328293361,
+ 4.6754851944134534,
+ 5.213765602134053,
+ 5.677079562376575,
+ 5.963161779086522,
+ -0.0331142792143583,
+ -0.8468541647549762,
+ -1.944907759526216,
+ -2.6550097032473086,
+ 5.5380444422070925,
+ 5.565256594367583,
+ 5.310077116825673,
+ 5.067863514758361,
+ -3.613570902223723,
+ -4.12553533703965,
+ -4.765302087843687,
+ -5.038782021209572,
+ 3.2757958786024926,
+ 4.066862007796917,
+ 4.958104816186103,
+ 5.566692287020069,
+ 2.409085367546423,
+ 1.52582862184911,
+ 0.30324564762932105,
+ -0.579276545526375,
+ -2.1946817939030665,
+ -1.4018237341609507,
+ -0.210275230571644,
+ 0.6670198669300035,
+ 5.74678999317055,
+ 5.341041143569989,
+ 4.733281523990356,
+ 4.008473547831742,
+ -4.878740430531173,
+ -4.48223494274955,
+ -3.7510063850164657,
+ -3.1830725252666228,
+ 5.226754561352453,
+ 5.4177857550396755,
+ 5.617318768518865,
+ 5.549122702305626,
+ -4.641836079506435,
+ -5.255730538793194,
+ -5.840116582280639,
+ -6.206201159833126,
+ -0.34768259019095393,
+ 0.5152322038757274,
+ 1.6849244516475894,
+ 2.446132937169188,
+ 0.38774015155702235,
+ -0.4570575556484586,
+ -1.6206959794843223,
+ -2.4857336225034103
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.2801922891305981,
+ 0.4436045980437834,
+ -0.6845729309700361,
+ -1.4517889701865683,
+ -1.306602401028543,
+ -0.5143712880523286,
+ 0.6289376398102657,
+ 1.4612497243022697,
+ 5.4858806113337995,
+ 4.983090018030183,
+ 4.2298963561111425,
+ 3.524654676211128,
+ -5.080024529345845,
+ -4.844866867289854,
+ -4.242307423371998,
+ -3.7599139114270383,
+ 4.868172604831003,
+ 5.145069638068351,
+ 5.45589035274697,
+ 5.472463723398839,
+ -2.4722844607253602,
+ -1.7907551461425883,
+ -0.7408976796390327,
+ 0.03654946266634012,
+ 5.694928168644763,
+ 5.4089876259252865,
+ 4.942293542549119,
+ 4.420264215782233,
+ -5.1615501837490045,
+ -5.2359950414666265,
+ -5.059171322887758,
+ -4.882918898729568,
+ 3.0697409372615923,
+ 3.5850710161254846,
+ 4.242234049181366,
+ 4.541958599425621,
+ -2.868448583523468,
+ -3.5794861178717685,
+ -4.378835491292505,
+ -4.932754623367871,
+ -1.930878673473526,
+ -1.1058093034130942,
+ 0.028389366662963142,
+ 0.8172459350495297,
+ 0.9012355889167822,
+ 0.03451255780271615,
+ -1.172713902251429,
+ -2.0498753333419413,
+ -5.683194982193171,
+ -5.1339789108076905,
+ -4.328950692538287,
+ -3.5924174413837826,
+ 5.076942823427122,
+ 4.920660095325097,
+ 4.44301411645751,
+ 4.045496796775487,
+ -4.445344226034943,
+ -4.76785897834997,
+ -5.138391997357873,
+ -5.187746195305288,
+ 4.2607657612240635,
+ 4.808139303243298,
+ 5.265084356554964,
+ 5.613280113267578
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 4.307113025116818,
+ 2.9950152301597113,
+ 1.2312481804213677,
+ -0.07424956601469859,
+ -4.157393633203037,
+ -3.0501181289131427,
+ -1.318392733099662,
+ -0.035098022326372824,
+ 9.379449731321445,
+ 8.866959167525627,
+ 8.047781278608387,
+ 7.142931629181839,
+ -8.704212777150175,
+ -8.665110366118828,
+ -8.123363877925774,
+ -7.648759544781287,
+ 6.197283615984193,
+ 6.9411480734809965,
+ 7.865144970848143,
+ 8.228505293595502,
+ -5.665869883659466,
+ -4.956620359390338,
+ -3.5005593555166827,
+ -2.3966394379488394,
+ 8.973067970356306,
+ 8.85679838849976,
+ 8.57262778767973,
+ 8.041621089223282,
+ -8.132985790019195,
+ -8.608858085876792,
+ -8.813976104224706,
+ -8.883560811311416,
+ 2.7364375255619864,
+ 3.8165620514942766,
+ 5.240355602773214,
+ 6.046362764959948,
+ -2.5842050953748257,
+ -3.86924929187232,
+ -5.458622040672934,
+ -6.584870772045531,
+ -5.222052181495901,
+ -3.9788294705109233,
+ -2.245709840564215,
+ -0.8946602709237265,
+ 3.4962140153512204,
+ 2.204557842789207,
+ 0.31919155375291075,
+ -1.0683585808615672,
+ -9.735831852846745,
+ -9.130559219738268,
+ -8.204569749228078,
+ -7.236487932287072,
+ 8.684078720994926,
+ 8.781578079719004,
+ 8.456804189707057,
+ 8.128537138628213,
+ -5.476831465479797,
+ -6.302324212058637,
+ -7.336674908809728,
+ -7.766295173947867,
+ 5.223154127149222,
+ 6.325425751281546,
+ 7.466579045795094,
+ 8.325703387122143
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.360195956452899,
+ 4.101114883216612,
+ 2.4116344237338465,
+ 1.104341708348041,
+ -5.1145145785213515,
+ -4.124164461080083,
+ -2.4951972769629043,
+ -1.2755487441009898,
+ 9.41431206108505,
+ 9.06987398771358,
+ 8.477061614995376,
+ 7.716178109016942,
+ -8.745707127113553,
+ -8.884154205758051,
+ -8.579539873496701,
+ -8.274603676837653,
+ 5.179459187423473,
+ 6.058490043266149,
+ 7.178115540559494,
+ 7.7068460449670715,
+ -4.751178932645796,
+ -5.902734345036769,
+ -4.607191298178063,
+ -3.6094771591642445,
+ 8.632482260488622,
+ 8.6982039249353,
+ 8.664499776815633,
+ 8.308515450610516,
+ -7.824457256164812,
+ -8.472759767988979,
+ -8.927070994038788,
+ -9.178513158782502,
+ 1.5167788356971892,
+ 2.698364237895729,
+ 4.274426897387532,
+ 5.227147234736972,
+ -1.4579427994390322,
+ -2.7817165255018637,
+ -4.486020459553773,
+ -5.70418187154344,
+ -6.181811478115678,
+ -5.015939653081693,
+ -3.377264746660038,
+ -2.020064015285515,
+ 4.466491813000355,
+ 3.263160809219108,
+ 1.4582649344449152,
+ 0.12047365278408033,
+ -9.781333016932338,
+ -9.337204577289851,
+ -8.628279343241687,
+ -7.799164298305336,
+ 8.718220602346198,
+ 8.99463191822783,
+ 8.90946248093509,
+ 8.752005133690755,
+ -4.4575413847327665,
+ -5.4202828934544085,
+ -6.6547167675748575,
+ -7.25495358311868,
+ 4.233228103494896,
+ 5.421063655478515,
+ 6.7426539543497395,
+ 7.7341210125028255
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 4.635150268453673,
+ 3.770516825719784,
+ 2.6126685574518445,
+ 1.6725130180913659,
+ -4.387112103696896,
+ -3.7631519847061066,
+ -2.670005591506688,
+ -1.8416216494333182,
+ 6.786785940374983,
+ 6.664829723691002,
+ 6.408018690534167,
+ 5.9690245133833075,
+ -6.311584237329915,
+ -6.543492534495656,
+ -6.5016812458033195,
+ -6.40929837875616,
+ 2.96008256541728,
+ 3.6922064885768724,
+ 4.642226295560908,
+ 5.145323849893992,
+ -2.7294747205650634,
+ -3.7166538184944846,
+ -4.134346569137644,
+ -3.497099285235155,
+ 5.945171918929249,
+ 6.128167721853017,
+ 6.290857073428692,
+ 6.1658098642675565,
+ -5.388819195118468,
+ -5.9830539945466255,
+ -6.49525550782874,
+ -6.811524372320103,
+ 0.17916865822267503,
+ 1.1034179471992795,
+ 2.348868412286336,
+ 3.1425275274932685,
+ -0.206606993609001,
+ -1.1861580734402,
+ -2.495842542560367,
+ -3.439233750647944,
+ -5.155546932502484,
+ -4.376008274746684,
+ -3.2696870188016205,
+ -2.2904401375960433,
+ 3.931559947396615,
+ 3.1333092549959276,
+ 1.8971910821847227,
+ 0.9736019077462505,
+ -7.058296045730128,
+ -6.859593568079419,
+ -6.512457059208885,
+ -6.02073279843934,
+ 6.286358860564894,
+ 6.61836112320314,
+ 6.735986266441686,
+ 6.750365337813577,
+ -2.440552538379565,
+ -3.2343460598552114,
+ -4.270138021737897,
+ -4.8285017059142,
+ 2.3013756459696566,
+ 3.2182513911744897,
+ 4.3019740474326,
+ 5.112735668838911
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 7.450858134839011,
+ 6.244411093850346,
+ 4.6312529817759565,
+ 3.2757202406404202,
+ -7.023020416314248,
+ -6.210234102434553,
+ -4.711208433433995,
+ -3.564791431563461,
+ 9.801413413689763,
+ 9.749313783078989,
+ 9.54584457246226,
+ 9.019368607500821,
+ -9.121802849606894,
+ -9.58639758471471,
+ -9.700533582643882,
+ -9.692219783914686,
+ 3.5153445621370216,
+ 4.669292754210404,
+ 6.181558578156715,
+ 7.0278226758621285,
+ -3.259007160171738,
+ -4.737625114123042,
+ -6.560869592366131,
+ -5.929060444031191,
+ 8.31307683979845,
+ 8.710483338795274,
+ 9.128989467208221,
+ 9.077562430594314,
+ -7.535270168325283,
+ -8.518000791772401,
+ -9.43901281475784,
+ -10.028289281233032,
+ -0.6387291731909829,
+ 0.7671756029231487,
+ 2.6731018740599275,
+ 3.9241764607474163,
+ 0.5305329298763318,
+ -0.9089033999625779,
+ -2.8798989067563237,
+ -4.306355245562656,
+ -8.131824421897646,
+ -7.065841809346146,
+ -5.541726042983839,
+ -4.126682522895188,
+ 6.376510987517677,
+ 5.291644614423525,
+ 3.5702923829919806,
+ 2.2765292121428367,
+ -10.200322939719248,
+ -10.03259732463267,
+ -9.692182901120372,
+ -9.086077801708969,
+ 9.08006165068954,
+ 9.68983491750866,
+ 10.03544319781957,
+ 10.181750142708532,
+ -2.765928713662255,
+ -4.010237786596043,
+ -5.649326414655638,
+ -6.57905421810128,
+ 2.5870475896471965,
+ 3.970642500457534,
+ 5.664325468504288,
+ 6.929468244506829
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 8.407471466327562,
+ 7.2645720391633075,
+ 5.739704180582887,
+ 4.395605860979462,
+ -7.890019284936455,
+ -7.199404057539054,
+ -5.815381563903008,
+ -4.742315555540336,
+ 9.740120124626051,
+ 9.852753561062618,
+ 9.87247546899432,
+ 9.491810030822197,
+ -9.07360278638758,
+ -9.707184225481381,
+ -10.051942728377474,
+ -10.209514842270416,
+ 2.4864923900157265,
+ 3.761302211582238,
+ 5.450029007979296,
+ 6.449664395390389,
+ -2.333434270393605,
+ -3.8729849153900298,
+ -5.827226968284225,
+ -7.05659737141833,
+ 7.899364558541299,
+ 8.470752096266807,
+ 9.129950104296734,
+ 9.250060786781026,
+ -7.160452751642778,
+ -8.302126226954998,
+ -9.457696797392552,
+ -10.218956783910468,
+ -1.8244034980083985,
+ -0.3330265765195361,
+ 1.7031583336236187,
+ 3.0854334419092417,
+ 1.6259900495825743,
+ 0.16271085833151133,
+ -1.9014224106014523,
+ -3.4038201444106715,
+ -8.990613590656668,
+ -8.010592060837372,
+ -6.593599370022011,
+ -5.186312262788977,
+ 7.262657304697061,
+ 6.274660156200724,
+ 4.648693862545849,
+ 3.416144144243653,
+ -10.145545128485933,
+ -10.136926540545945,
+ -10.011946117924694,
+ -9.547540741175526,
+ 9.02508265933055,
+ 9.803761573520594,
+ 10.380156276431396,
+ 10.691960344569729,
+ -1.7429356230353341,
+ -3.109262121243939,
+ -4.92793097372478,
+ -6.01534494042356,
+ 1.594490380549788,
+ 3.0482395081249543,
+ 4.9017726759305225,
+ 6.283935840009984
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.371782444283131,
+ 4.797452184694919,
+ 4.033997186417581,
+ 3.3075829012127906,
+ -5.01641269941557,
+ -4.7368279448208295,
+ -4.071970043544257,
+ -3.543754436108295,
+ 5.281390087264764,
+ 5.475698329250009,
+ 5.666234159587514,
+ 5.575321913125612,
+ -4.927150609062857,
+ -5.409998390261728,
+ -5.784410906773895,
+ -6.004242434320842,
+ 0.5322896293976886,
+ 1.3273241424482198,
+ 2.3936704259369526,
+ 3.064283379274073,
+ -0.5316948760177997,
+ -1.4233591429320185,
+ -2.5984085291646672,
+ -3.4329864454614727,
+ 3.990134805357687,
+ 4.442966035247153,
+ 4.997579888687036,
+ 5.201460381089788,
+ -3.6170527461627695,
+ -4.369889832266692,
+ -5.191228206807426,
+ -5.746367648815822,
+ -1.9533496755564874,
+ -1.0682884915646254,
+ 0.151013000957305,
+ 1.0131892860806886,
+ 1.7721038886642484,
+ 0.9520523333323395,
+ -0.25265076816895715,
+ -1.136068244136264,
+ -5.61215457914416,
+ -5.145017320939263,
+ -4.455768833180706,
+ -3.6918094355657862,
+ 4.6884785082338745,
+ 4.225760838971341,
+ 3.412689199928741,
+ 2.7874137264723453,
+ -5.508525585023673,
+ -5.6319419954255014,
+ -5.737035463065596,
+ -5.596981943969283,
+ 4.895136355805631,
+ 5.457330460552339,
+ 5.958649080850958,
+ 6.2625783891642905,
+ -0.13006075261538533,
+ -0.976112982509827,
+ -2.116088348329037,
+ -2.838217250826996,
+ 0.0733277905816467,
+ 0.9254593838094732,
+ 2.0686267888620087,
+ 2.91932214250655
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.9667292563871923,
+ 4.403409294072969,
+ 5.003698409329946,
+ 5.198145188338046,
+ -3.5676342850303318,
+ -4.253811274897034,
+ -4.974429404456773,
+ -5.453422241546593,
+ -1.3003509188820663,
+ -0.4813672801825655,
+ 0.6417700699402902,
+ 1.4155704988987623,
+ 1.1665068237027705,
+ 0.3791025612605732,
+ -0.7484150806906296,
+ -1.568636511917254,
+ -5.439698095359835,
+ -4.960165584697231,
+ -4.24247621825291,
+ -3.5710493535954067,
+ 4.903471114003078,
+ 4.7529962761796645,
+ 4.291520146269248,
+ 3.908621590423323,
+ -2.8896010737445956,
+ -2.070689388883467,
+ -0.9244144080110753,
+ -0.07188843250710664,
+ 2.618318081282696,
+ 1.9332608520327714,
+ 0.868426433068196,
+ 0.07891002392597074,
+ -5.791497314770328,
+ -5.512411693751494,
+ -5.063000892187195,
+ -4.542286192185859,
+ 5.356891691963014,
+ 5.385630023980834,
+ 5.12619653054775,
+ 4.896278761827,
+ -3.4142279161471802,
+ -3.947320215494679,
+ -4.6315691947091135,
+ -4.813905952965592,
+ 3.7280134483937037,
+ 4.316907322655353,
+ 4.963256940060772,
+ 5.397294795794439,
+ 1.3087699792453211,
+ 0.5058069825086972,
+ -0.592953389004907,
+ -1.3545536980093087,
+ -1.1957421516928892,
+ -0.4235147124767244,
+ 0.6812530407144156,
+ 1.4838165927542717,
+ 5.334481359400667,
+ 4.858436962751075,
+ 4.138248595143723,
+ 3.45400394904007,
+ -5.165939931309137,
+ -4.960244830504992,
+ -4.343067428275458,
+ -3.8938258362419003
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.516073285390223,
+ 6.453747797559545,
+ 7.735350535880722,
+ 8.286302961191264,
+ -4.9086313885816155,
+ -6.205477266781625,
+ -7.672649833076412,
+ -8.672334671827942,
+ -3.8045199668009486,
+ -2.4063472932973653,
+ -0.4673970495231235,
+ 0.9314505353870707,
+ 3.466603866098158,
+ 2.2062589894555122,
+ 0.3116591092843396,
+ -1.0814749588321797,
+ -9.803406586072787,
+ -9.177862133381126,
+ -8.206626147728725,
+ -7.205303644021418,
+ 8.85172533159635,
+ 8.837471512921603,
+ 8.351689114307488,
+ 7.9088268873944685,
+ -6.115550942091207,
+ -4.933788088654518,
+ -3.0569852520678737,
+ -1.6020065025080747,
+ 5.671413281710343,
+ 4.669212110523123,
+ 3.01252984740246,
+ 1.7689293678201026,
+ -9.723062532305025,
+ -9.478722433488064,
+ -9.026893495502325,
+ -8.347305443354012,
+ 9.003250018616756,
+ 9.28670272965436,
+ 9.167842521261388,
+ 9.010282807354189,
+ -4.467544837783449,
+ -5.545913229458617,
+ -6.9554641620130795,
+ -7.495570652996953,
+ 5.286176196320071,
+ 6.462309371140832,
+ 7.839709252790482,
+ 8.787136616778369,
+ 3.8838447111433045,
+ 2.494004493855459,
+ 0.574090083524151,
+ -0.8170388309294087,
+ -3.509405762169089,
+ -2.2984836106996718,
+ -0.4802261865320628,
+ 0.8577357419871615,
+ 9.50268513239736,
+ 8.897792044829428,
+ 7.942993120598026,
+ 6.9335290778041525,
+ -9.187533380345675,
+ -9.064087272461553,
+ -8.292981899166389,
+ -7.736965457734343
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 4.1748124810856435,
+ 5.181040362213302,
+ 6.552048087160806,
+ 7.220825017880709,
+ -3.6679861456146394,
+ -4.957022350588289,
+ -6.484849390702029,
+ -7.540855156487009,
+ -4.671020535718499,
+ -3.380101440607563,
+ -1.5741525184550444,
+ -0.22572806539218163,
+ 4.279039787661586,
+ 3.1767197137592555,
+ 1.4496067669454427,
+ 0.16856786640660149,
+ -9.42912908813861,
+ -8.99274187479909,
+ -8.281693709436071,
+ -7.463137241483987,
+ 8.523964696264214,
+ 8.68817768630104,
+ 8.46046612089961,
+ 8.205692763013255,
+ -4.842069132836709,
+ -5.577796900461951,
+ -3.9035350626240124,
+ -2.5605019618326126,
+ 6.114616337347078,
+ 5.311617021145415,
+ 3.8998651763551897,
+ 2.8278815323042883,
+ -8.857168019067652,
+ -8.801253254163823,
+ -8.614653714385456,
+ -8.140257051982557,
+ 8.208763037342363,
+ 8.641816772253275,
+ 8.768958991155559,
+ 8.795244394887831,
+ -3.1297430492027574,
+ -4.248399623991274,
+ -5.72629135520109,
+ -6.392239095717233,
+ 4.092409258785497,
+ 5.303158709319348,
+ 6.7751611296738945,
+ 7.800820730681185,
+ 4.791741401435476,
+ 3.4946129652484803,
+ 1.6897326853962207,
+ 0.33885152146150405,
+ -4.313361665261585,
+ -3.273861476196325,
+ -1.6446508360974275,
+ -0.4328467760043467,
+ 9.062952831844566,
+ 8.656376243576375,
+ 7.975638867089745,
+ 7.159610392374624,
+ -8.751933858201646,
+ -8.804423821493414,
+ -8.29901480578429,
+ -7.939845433629934
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.0534120314572393,
+ 2.835993584796723,
+ 3.8993412871408455,
+ 4.4725251192204905,
+ -1.7584507948470844,
+ -2.690775970418135,
+ -3.8471371854952965,
+ -4.656962702684048,
+ -4.035340767920321,
+ -3.1746521015782365,
+ -1.9580681450743356,
+ -1.0138095630918624,
+ 3.710396615623194,
+ 3.0242290932678446,
+ 1.8903333341889341,
+ 1.040389147641835,
+ -6.586998995096429,
+ -6.408300638287732,
+ -6.081872840617346,
+ -5.620369808031729,
+ 5.962442252539156,
+ 6.212964867448519,
+ 6.236717055997949,
+ 6.189398564641767,
+ -2.5887486244516964,
+ -3.3040260720431913,
+ -3.462178669312099,
+ -2.5670102339876975,
+ 4.7751118521807765,
+ 4.33699644959108,
+ 3.48945069903779,
+ 2.8353382246016317,
+ -5.809850338637288,
+ -5.9074924305622325,
+ -5.966418169029591,
+ -5.771831015281311,
+ 5.390416286079077,
+ 5.8153881327464,
+ 6.088514838765859,
+ 6.242613145854858,
+ -1.2954325632982597,
+ -2.1390799488225904,
+ -3.264745103032199,
+ -3.84175555681333,
+ 2.101728093419238,
+ 3.0082293616586298,
+ 4.148888794855509,
+ 4.952716956577545,
+ 4.153582836130088,
+ 3.277699639947926,
+ 2.0487027426312583,
+ 1.0951861042365967,
+ -3.7291477651751777,
+ -3.0985311107869373,
+ -2.051709070873874,
+ -1.2624726560457737,
+ 6.272471219079542,
+ 6.122190952447829,
+ 5.828006356800239,
+ 5.37617604007687,
+ -6.049170269485841,
+ -6.216531765621712,
+ -6.043795989854669,
+ -5.92693616594598
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.0271444565921035,
+ 3.2138552989984555,
+ 4.823647370192011,
+ 5.741128163473529,
+ -1.6701989659122902,
+ -3.0200593802284894,
+ -4.7445383942450245,
+ -5.962118710577791,
+ -6.485692117125145,
+ -5.31101888389865,
+ -3.63732900419741,
+ -2.3005614104619236,
+ 5.974657206645442,
+ 5.089977130566122,
+ 3.561137187367561,
+ 2.4055432713801297,
+ -9.308982509727345,
+ -9.184314955322499,
+ -8.895616731926332,
+ -8.355234421664182,
+ 8.434215521138158,
+ 8.925924008646453,
+ 9.144814555548079,
+ 9.210387370730777,
+ -2.8538507283129837,
+ -3.967507277672616,
+ -5.4301617698751015,
+ -4.4167123731495375,
+ 7.258798689722856,
+ 6.764159257519668,
+ 5.706946239132199,
+ 4.878578441554633,
+ -7.827944689703466,
+ -8.10450546413258,
+ -8.379646152526059,
+ -8.24333340951482,
+ 7.269171825141145,
+ 7.993878348234167,
+ 8.566694930283555,
+ 8.92206128504718,
+ -0.9276445330765136,
+ -2.182942624422955,
+ -3.8682857855126587,
+ -4.7970567747200485,
+ 2.2027533657116676,
+ 3.5453782631385167,
+ 5.271281203214347,
+ 6.495795263194898,
+ 6.687167909082851,
+ 5.4800161852206974,
+ 3.775444753167893,
+ 2.417948524897821,
+ -5.995860229237305,
+ -5.201512077253992,
+ -3.8146640380349126,
+ -2.7573747359357763,
+ 8.804954383121261,
+ 8.728144946048957,
+ 8.496233779928854,
+ 7.9775359544152415,
+ -8.483265800162805,
+ -8.852264521732229,
+ -8.790943047958223,
+ -8.761671427487704
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.7632804194948505,
+ 2.0000444100593926,
+ 3.6744138538389595,
+ 4.690571124357396,
+ -0.5034538887114447,
+ -1.8308728159676462,
+ -3.592034775216192,
+ -4.848002100207077,
+ -7.214323784298172,
+ -6.152128752362469,
+ -4.620365289855738,
+ -3.3453201066599956,
+ 6.659025394123047,
+ 5.930531293017038,
+ 4.573893167461518,
+ 3.5350421211824528,
+ -8.85774869400997,
+ -8.909505899977358,
+ -8.864803086367147,
+ -8.499617912009846,
+ 8.035882167902358,
+ 8.687176256878658,
+ 9.14238195827242,
+ 9.381246643154507,
+ -1.6433812931764475,
+ -2.8400280376461446,
+ -4.431860548450128,
+ -5.253784552124674,
+ 7.587055939852173,
+ 7.282305443644185,
+ 6.463633427830361,
+ 5.803393019935827,
+ -6.938531676321996,
+ -7.3863174043164905,
+ -7.903762740615821,
+ -7.958841777479973,
+ 6.452127749527578,
+ 7.307085203352081,
+ 8.101061115116341,
+ 8.62252624058761,
+ 0.3206255372168845,
+ -0.9577999627517834,
+ -2.6873790451594104,
+ -3.7221168080265525,
+ 1.073379981549255,
+ 2.432899959331296,
+ 4.226880557623782,
+ 5.509977114606699,
+ 7.451830723240015,
+ 6.344068355157502,
+ 4.765147116533948,
+ 3.4601920803956343,
+ -6.672143208944442,
+ -6.04535866480609,
+ -4.8490603757586435,
+ -3.920417507123322,
+ 8.29883924592991,
+ 8.406389813017139,
+ 8.430670768062896,
+ 8.096797746642025,
+ -7.984600593944661,
+ -8.51222651229539,
+ -8.697434319374473,
+ -8.85062725795539
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.0457822794110292,
+ -0.217329813194372,
+ 0.9004231874581227,
+ 1.650312481056006,
+ 1.0903874417839006,
+ 0.29280342934517095,
+ -0.8453179613786309,
+ -1.6716695668457735,
+ -5.357677206440896,
+ -4.833124148582971,
+ -4.05229681576976,
+ -3.334485726449767,
+ 4.959503263456404,
+ 4.694802943853394,
+ 4.059169896321174,
+ 3.554246439235315,
+ -4.959643505334922,
+ -5.203962336107191,
+ -5.469622025969399,
+ -5.45346636965948,
+ 4.512730732289884,
+ 5.1092218551042885,
+ 5.676180709630101,
+ 6.032960196539469,
+ 0.43486500445428206,
+ -0.40827726862549324,
+ -1.5524481977414795,
+ -2.308579519979124,
+ 5.107723229789977,
+ 5.146776967902645,
+ 4.925099485084764,
+ 4.7171580095462025,
+ -3.2405022680777695,
+ -3.724574603469473,
+ -4.337398703382194,
+ -4.601780304839547,
+ 3.025386401297266,
+ 3.7131122428264836,
+ 4.472283548683401,
+ 4.9959596568854305,
+ 1.7003346180499959,
+ 0.8783835109834117,
+ -0.24920227818109364,
+ -1.019400790654002,
+ -0.6914150561592669,
+ 0.17341570481308244,
+ 1.369678744967159,
+ 2.237169661176596,
+ 5.548543800463471,
+ 4.979944407671112,
+ 4.150249645622503,
+ 3.4028177064588507,
+ -4.957928583996559,
+ -4.770091382132883,
+ -4.2561241428137775,
+ -3.833975501821401,
+ 4.546457469369124,
+ 4.834977170072901,
+ 5.158156224444114,
+ 5.173029390520563,
+ -4.360216564508624,
+ -4.878734342136545,
+ -5.290258152160959,
+ -5.604850729709593
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -4.355886060190458,
+ -4.720733920696459,
+ -5.224841136398358,
+ -5.341000281321108,
+ 3.935845610039446,
+ 4.570424949484705,
+ 5.200335386109978,
+ 5.610546766247365,
+ 0.7351420816989257,
+ -0.0741991888883448,
+ -1.176643241404959,
+ -1.9143296648400714,
+ -0.6408454924739038,
+ 0.16640992471753474,
+ 1.291169069591338,
+ 2.104215481870782,
+ 5.196329440321415,
+ 4.655424466319953,
+ 3.8580351827654598,
+ 3.14421368619366,
+ -4.6789896314833745,
+ -4.446082234284504,
+ -3.885216197585765,
+ -3.4336620242665403,
+ 4.558806039674349,
+ 4.801558825403477,
+ 5.064562127211189,
+ 5.058005037508349,
+ -2.1705579829118298,
+ -1.435496043398634,
+ -0.32725339984180557,
+ 0.48915159551876375,
+ 5.780297098695399,
+ 5.423944432939998,
+ 4.870366834785875,
+ 4.283120737138377,
+ -5.343122092403378,
+ -5.2901799112268675,
+ -4.921344996371812,
+ -4.612595435111298,
+ 3.8464311215257916,
+ 4.314850853402765,
+ 4.907269779927321,
+ 5.008050670021876,
+ -4.05833329068798,
+ -4.5810299920903885,
+ -5.124699400041535,
+ -5.481986185452555,
+ -0.7209213770113885,
+ 0.06598790256002535,
+ 1.1365056550345431,
+ 1.8575861389559603,
+ 0.6722036208097641,
+ -0.12821346146084914,
+ -1.2435057480324332,
+ -2.0477873097194856,
+ -5.134375897445854,
+ -4.591817764912843,
+ -3.7847740731083492,
+ -3.0535170585766815,
+ 4.977333528106966,
+ 4.6950338049226925,
+ 3.9870700168752315,
+ 3.4699167929331036
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.072954161066307,
+ -5.939975239152243,
+ -7.12494203826329,
+ -7.635602093914472,
+ 4.5135676455840175,
+ 5.711079863422209,
+ 7.066967167658051,
+ 7.991061968944172,
+ 3.52712016450685,
+ 2.2375995331252514,
+ 0.4490772675224783,
+ -0.8419620019041815,
+ -3.214203355071841,
+ -2.0527663902512296,
+ -0.3057449407660209,
+ 0.9790462668377262,
+ 9.047534766580316,
+ 8.472825538213586,
+ 7.579989775867188,
+ 6.658149388312576,
+ -8.169391404616348,
+ -8.159039745532374,
+ -7.714486295222235,
+ -7.308466999765535,
+ 5.627638741359195,
+ 6.345407712813132,
+ 7.234392794920852,
+ 7.59092819328648,
+ -5.101524269500233,
+ -4.322131478905791,
+ -2.796046689091266,
+ -1.6502872779868438,
+ 8.96559184745831,
+ 8.74291273928677,
+ 8.329828030920135,
+ 7.705462227054995,
+ -8.301971063883206,
+ -8.56609616838786,
+ -8.460204677498513,
+ -8.317594971743373,
+ 4.104694177756462,
+ 5.101200529349233,
+ 6.4039954355399535,
+ 6.904765596636925,
+ -4.862968277868167,
+ -5.949670903888143,
+ -7.22318811251924,
+ -8.09936842222572,
+ -3.6010286122987325,
+ -2.318973896421824,
+ -0.5477481358293839,
+ 0.7363232577264336,
+ 3.253597221564067,
+ 2.1380131450002042,
+ 0.4618335190110756,
+ -0.7717847415089044,
+ -8.76878773253708,
+ -8.213294304501801,
+ -7.335856702655719,
+ -6.40666569846975,
+ 8.477810675883964,
+ 8.36658021377245,
+ 7.6586515381305516,
+ 7.148272469260824
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.9175338268570066,
+ -4.904352700291217,
+ -6.2484802733582425,
+ -6.912213789958908,
+ 3.435177125929222,
+ 4.68895193649153,
+ 6.182586483138306,
+ 7.216524401378196,
+ 4.640531702712839,
+ 3.395736211295451,
+ 1.652459603094528,
+ 0.345515091576525,
+ -4.253137199862366,
+ -3.1974259168875654,
+ -1.5346300850118622,
+ -0.29997742540047323,
+ 9.136714714305745,
+ 8.732543290845344,
+ 8.068766037835962,
+ 7.291932934036525,
+ -8.26077222379959,
+ -8.440004985882608,
+ -8.246430939623158,
+ -8.01890882588016,
+ 4.574346511198131,
+ 5.440842285750446,
+ 6.54550248695932,
+ 7.082172607164255,
+ -4.146973824327113,
+ -5.239662144606152,
+ -3.8922284420423106,
+ -2.867521495435937,
+ 8.526572244335375,
+ 8.49263654538633,
+ 8.339855295936161,
+ 7.900432424466828,
+ -7.9032408890975,
+ -8.340998981234627,
+ -8.491493362559211,
+ -8.537065425866098,
+ 2.900739803890037,
+ 3.9939128517548412,
+ 5.439780852868379,
+ 6.101632318994455,
+ -3.8533665800409183,
+ -5.03555730576503,
+ -6.478548500188665,
+ -7.485332663825309,
+ -4.762530522096619,
+ -3.5101104171835384,
+ -1.7659204658871255,
+ -0.45547852492680396,
+ 4.285620819393085,
+ 3.2925089689561076,
+ 1.7273459072071613,
+ 0.5616087377331126,
+ -8.773197447879115,
+ -8.399036649792954,
+ -7.766269404198723,
+ -6.993056833588793,
+ 8.47093081743261,
+ 8.541147970865515,
+ 8.078118995306362,
+ 7.749940059859168
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.9498501936081476,
+ -2.747689440064838,
+ -3.8314154643306613,
+ -4.4221572663271935,
+ 1.661075537587665,
+ 2.603130888962087,
+ 3.7782006432161954,
+ 4.602434978646567,
+ 4.162444620771103,
+ 3.3022176350463006,
+ 2.0845302533251044,
+ 1.1344302604337553,
+ -3.8287485090744324,
+ -3.1497948937424294,
+ -2.018979534566679,
+ -1.1700747086461665,
+ 6.625620542679832,
+ 6.462772475195647,
+ 6.157241714837176,
+ 5.707810532558699,
+ -5.998442998678314,
+ -6.268625670026522,
+ -6.317006590817757,
+ -6.28691256093345,
+ 2.4975955095145395,
+ 3.2306514345396797,
+ 4.184654082762334,
+ 4.70437966231519,
+ -2.2644996073709134,
+ -3.218040352045908,
+ -3.6123925390723572,
+ -2.967136949363802,
+ 5.793337721281752,
+ 5.90986354055139,
+ 5.994488687308025,
+ 5.817087069380791,
+ -5.37593550828837,
+ -5.819801045152436,
+ -6.1192170028250725,
+ -6.292400510191852,
+ 1.1836872574185884,
+ 2.0406096810080436,
+ 3.1853643339536157,
+ 3.7807325071083904,
+ -2.012632225150381,
+ -2.9325787745833196,
+ -4.0949751764589095,
+ -4.9152132620602815,
+ -4.28592202715747,
+ -3.4089571673061423,
+ -2.1770213723838037,
+ -1.2165988226052733,
+ 3.8469096548491644,
+ 3.2253952896650673,
+ 2.184666511133875,
+ 1.39847856556033,
+ -6.3013825367681635,
+ -6.168136248868907,
+ -5.896520368681159,
+ -5.457877703150427,
+ 6.075964681680609,
+ 6.261813656357844,
+ 6.112220447573739,
+ 6.012631107492175
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.957538627545994,
+ -3.1945610850336768,
+ -4.872218890213694,
+ -5.835511149665772,
+ 1.598391031158501,
+ 2.9963298473206392,
+ 4.7897636947920414,
+ 6.05746946020559,
+ 6.813117733269792,
+ 5.607320539409274,
+ 3.8871713741941245,
+ 2.5073449222459203,
+ -6.277799274121424,
+ -5.377918196830577,
+ -3.811545737203707,
+ -2.6260355918065295,
+ 9.606367597779682,
+ 9.497358202345275,
+ 9.225950669697422,
+ 8.685481664012139,
+ -8.70486542575076,
+ -9.233425845906076,
+ -9.487773456514486,
+ -9.575783722735439,
+ 2.8214293824653125,
+ 3.986452365184443,
+ 5.518896805376602,
+ 6.399839993761054,
+ -2.558434439553501,
+ -3.9970328334227645,
+ -5.800375502019785,
+ -5.168298044548365,
+ 8.019229655312698,
+ 8.32590879168865,
+ 8.639308270093633,
+ 8.519941925974889,
+ -7.4478262817277505,
+ -8.214748478325895,
+ -8.8345592175205,
+ -9.222410882148003,
+ 0.8185679229516767,
+ 2.1236480969948657,
+ 3.8773478404493815,
+ 4.853194446115504,
+ -2.1552422342503794,
+ -3.550208485156843,
+ -5.348738729132443,
+ -6.625966522026645,
+ -7.026309161022004,
+ -5.785305618476248,
+ -4.031239560537017,
+ -2.62884808918608,
+ 6.2988660952762165,
+ 5.494018999292511,
+ 4.077083000109013,
+ 2.994939398065852,
+ -9.077094954712981,
+ -9.018654703661385,
+ -8.807571632468518,
+ -8.290710839438239,
+ 8.744190980646831,
+ 9.145325392242679,
+ 9.110121002107094,
+ 9.100784345617972
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.80817613649168,
+ -2.150804455341993,
+ -3.9684460169991773,
+ -5.072492690077825,
+ 0.5278081611743446,
+ 1.9676489440984233,
+ 3.879016476019911,
+ 5.242295465217961,
+ 7.838747574951535,
+ 6.688085191883187,
+ 5.028425218375878,
+ 3.646027907579867,
+ -7.23557285455683,
+ -6.447652271798446,
+ -4.978474039987452,
+ -3.8532062465940426,
+ 9.603170369955304,
+ 9.662109916737451,
+ 9.61746099471021,
+ 9.22401579437916,
+ -8.712314040283621,
+ -9.421460659837722,
+ -9.919070705815288,
+ -10.180964724333318,
+ 1.7638923702829772,
+ 3.063515073692258,
+ 4.792627240802633,
+ 5.841588034442181,
+ -1.600022992590129,
+ -3.1122255070441507,
+ -5.066346813540817,
+ -6.311042619394638,
+ 7.513981467935179,
+ 8.002513618578078,
+ 8.567745678346004,
+ 8.630525551610805,
+ -6.987395605016419,
+ -7.917045541561197,
+ -8.781968120927765,
+ -9.350358472086471,
+ -0.36757117252319216,
+ 1.019833113244324,
+ 2.8970537460214625,
+ 4.021374575240818,
+ -1.146744537339098,
+ -2.6220346190236747,
+ -4.569504626423996,
+ -5.962536523673368,
+ -8.097001642531977,
+ -6.896693947705982,
+ -5.185612785741191,
+ -3.77061958077336,
+ 7.249677505258053,
+ 6.572287224652351,
+ 5.277360781048103,
+ 4.271852251848384,
+ -8.99591021828205,
+ -9.115508528680964,
+ -9.145896689013844,
+ -8.78657586567297,
+ 8.655091790687818,
+ 9.230048383900254,
+ 9.43488303432168,
+ 9.603971527321935
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.47985958428449127,
+ -0.34189223386686945,
+ -1.45197649195557,
+ -2.1710214312699287,
+ -0.5704466042398817,
+ 0.25347908769745214,
+ 1.3972894669069122,
+ 2.2223149617636055,
+ 5.1263368598851615,
+ 4.539089511566227,
+ 3.676779313947891,
+ 2.9159813116961626,
+ -4.740765206682045,
+ -4.398264984785721,
+ -3.6699910376265055,
+ -3.100785118575687,
+ 5.268157272801814,
+ 5.435441174326255,
+ 5.593119565140657,
+ 5.4952990533359865,
+ -4.787761524316674,
+ -5.322066456266452,
+ -5.790624773755418,
+ -6.074068978751129,
+ 0.11846295217876666,
+ 0.9399054803182709,
+ 2.046941595729349,
+ 2.7576565008024945,
+ -0.10816298977007976,
+ -0.9972749896364252,
+ -2.190939429828114,
+ -3.046908758598752,
+ 3.7181388389860284,
+ 4.132376711451721,
+ 4.644935028959699,
+ 4.825733177485103,
+ -3.4651283810218985,
+ -4.106109171817908,
+ -4.7777538140617075,
+ -5.234766108782769,
+ -1.1547190034192332,
+ -0.32709696728603027,
+ 0.802460711037722,
+ 1.538835486690527,
+ 0.1808607753737019,
+ -0.693390535894245,
+ -1.8819269909182177,
+ -2.7395364964155404,
+ -5.304284851198322,
+ -4.678188885226067,
+ -3.7735926065600998,
+ -2.9868451832819645,
+ 4.742912971378369,
+ 4.473527779661049,
+ 3.8608297169753683,
+ 3.370524354757952,
+ -4.872203586521596,
+ -5.080886493520668,
+ -5.291569712334767,
+ -5.2209274297271095,
+ 4.67878578529385,
+ 5.134005759795187,
+ 5.439283740522635,
+ 5.675440059357345
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.856582167725175,
+ 5.463354154250717,
+ 4.945998955113041,
+ 4.351801847459358,
+ -5.432154942797615,
+ -5.368890668776372,
+ -4.971890450199927,
+ -4.631174120982398,
+ 4.350785631256832,
+ 4.745424866504065,
+ 5.2190112079803,
+ 5.347456745116704,
+ -4.071581900347323,
+ -4.71459770140216,
+ -5.353097364670801,
+ -5.770798072197665,
+ -0.9980579917110516,
+ -0.16037630212885023,
+ 0.9833344939306657,
+ 1.762156376526337,
+ 0.8534807698637971,
+ 0.018803077514893303,
+ -1.1523663200669885,
+ -1.9991085271265623,
+ -5.493016658059743,
+ -4.949737380250303,
+ -4.138571644085956,
+ -3.4017821350135073,
+ 4.978292362504901,
+ 4.763168606152256,
+ 4.205540285628082,
+ 3.7576360531056956,
+ -3.306527049724042,
+ -2.4429259155388423,
+ -1.2356184233648448,
+ -0.32700799153604554,
+ 3.0275343247583795,
+ 2.3051185824739178,
+ 1.1622190283510105,
+ 0.3133866539143594,
+ -5.921104200030947,
+ -5.649413115012502,
+ -5.220853209176665,
+ -4.5899480124068415,
+ 5.183554618480228,
+ 4.930899135273088,
+ 4.381828441679653,
+ 3.942522656338468,
+ -4.550753961775313,
+ -4.877934208138767,
+ -5.268844152809764,
+ -5.350231745211344,
+ 4.035164376309317,
+ 4.744724998709008,
+ 5.490068463901064,
+ 5.977873398953449,
+ 1.3277393510756974,
+ 0.44557423104043425,
+ -0.7643738141561839,
+ -1.5925352431266189,
+ -1.332647160816828,
+ -0.5182272740906838,
+ 0.6666875323769628,
+ 1.5457339585284797
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 10.226195324777047,
+ 9.762984335306315,
+ 9.16174304697282,
+ 8.313898141245424,
+ -9.449629208037813,
+ -9.570833972000196,
+ -9.192078337394902,
+ -8.822701921290424,
+ 6.2472447870088645,
+ 7.111642043723885,
+ 8.193551001991935,
+ 8.636082922656145,
+ -5.862354273385839,
+ -7.096947543027873,
+ -8.432708731862446,
+ -9.332803367849003,
+ -3.2565253240914704,
+ -1.8217603440748826,
+ 0.15717599407509908,
+ 1.5628148267645967,
+ 2.8647942505309936,
+ 1.5391962156388437,
+ -0.40035591034772783,
+ -1.8182829091760582,
+ -9.752244430131762,
+ -9.023462137038269,
+ -7.901523110962859,
+ -6.79903422609385,
+ 8.838634838135633,
+ 8.70960162339191,
+ 8.060755399573809,
+ 7.510488636762775,
+ -6.759276915188485,
+ -5.491532028831005,
+ -3.500491439452844,
+ -1.944057120581506,
+ 6.337068102576178,
+ 5.2402786290041945,
+ 3.408209136943277,
+ 2.0356967315761105,
+ -10.149395563093407,
+ -9.902879348390874,
+ -9.464252631417114,
+ -8.556364214118116,
+ 9.120020752466939,
+ 8.920378171181786,
+ 8.28522184472036,
+ 7.750632309223792,
+ -6.550694160815852,
+ -7.306729667136946,
+ -8.254325565878556,
+ -8.620941089799155,
+ 5.797313488335492,
+ 7.12895507823536,
+ 8.621050361888711,
+ 9.62285386232087,
+ 3.7277875709846007,
+ 2.2260328558969174,
+ 0.14490200599810538,
+ -1.3403423228609705,
+ -3.6817415319840388,
+ -2.369607547370861,
+ -0.35953415376761844,
+ 1.1289288362646803
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 9.62754247385763,
+ 9.351502690281324,
+ 9.001902159915865,
+ 8.339586505229066,
+ -8.871023880048114,
+ -9.151108853790586,
+ -9.019805471373198,
+ -8.833642931903825,
+ 4.914577597894066,
+ 5.853973974768079,
+ 7.055220807879057,
+ 7.628209102994973,
+ -4.62574466782337,
+ -5.868175664691915,
+ -7.283981258902061,
+ -8.25371093270957,
+ -4.150424945691935,
+ -2.819650730819531,
+ -0.9695312056122675,
+ 0.3865863361191477,
+ 3.6818388437959166,
+ 2.5282933411389235,
+ 0.7778180293773882,
+ -0.5137063575981304,
+ -9.296590550588032,
+ -8.767971265963029,
+ -7.922657140068076,
+ -7.016547536591929,
+ 8.425827143019204,
+ 8.481015570951143,
+ 8.10287142439516,
+ 7.750900627088426,
+ -5.399715136783352,
+ -6.048345180712537,
+ -4.257715043679481,
+ -2.813955643531951,
+ 6.718828127013669,
+ 5.804186503606012,
+ 4.196540959857428,
+ 2.982923610632816,
+ -9.419502660295278,
+ -9.350680822648263,
+ -9.159597757467456,
+ -8.443656992594253,
+ 8.635558817731534,
+ 8.620635460180276,
+ 8.254482374993932,
+ 7.917746357142508,
+ -5.167510491642968,
+ -6.011643652202862,
+ -7.093639265811308,
+ -7.599634245418728,
+ 4.563471154144787,
+ 5.88355255789628,
+ 7.424885365525586,
+ 8.475539435433788,
+ 4.519307086279383,
+ 3.133118347744684,
+ 1.1964318553322721,
+ -0.2299409343155442,
+ -4.436828430330024,
+ -3.2802631327071414,
+ -1.430066395202908,
+ -0.06201248688971796
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 6.571911493339011,
+ 6.508220332618658,
+ 6.438262161140807,
+ 6.092064895922873,
+ -6.0356940649241215,
+ -6.356237181487908,
+ -6.442178424668663,
+ -6.4410358451892336,
+ 2.6011804366277396,
+ 3.3403146538968964,
+ 4.302671122011199,
+ 4.8156627809325,
+ -2.461320588032324,
+ -3.3718587030185203,
+ -4.461634799867869,
+ -5.2189231698199094,
+ -3.6783788185708572,
+ -2.785556878784881,
+ -1.5327426008868446,
+ -0.5814991127709515,
+ 3.2807455425131975,
+ 2.566927081859662,
+ 1.4308918442517478,
+ 0.5830972837414323,
+ -6.435820937821024,
+ -6.197723782979172,
+ -5.785098809088533,
+ -5.2693220637309865,
+ 5.8331338399749395,
+ 6.0084919955314815,
+ 5.9317329649792825,
+ 5.820908334437932,
+ -2.9347435948498255,
+ -3.585340952080778,
+ -3.656229297394208,
+ -2.687498846033865,
+ 5.173022697042907,
+ 4.640590667185174,
+ 3.634504743199821,
+ 2.867285639146975,
+ -6.324114741026293,
+ -6.404374514258318,
+ -6.4468488864597955,
+ -6.066309024789014,
+ 5.933294320894905,
+ 6.057959393840639,
+ 5.988686257365644,
+ 5.888631561042136,
+ -2.7483110450589545,
+ -3.427681523012594,
+ -4.314245757337504,
+ -4.784997303143364,
+ 2.4180009720014453,
+ 3.3708544748751175,
+ 4.5294407116343285,
+ 5.330411370894117,
+ 3.8718946922903155,
+ 2.9472107066466107,
+ 1.6428212345836,
+ 0.6472755924948802,
+ -3.785099002524706,
+ -3.056986820422356,
+ -1.8269056502530556,
+ -0.9189816689677428
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 9.131360282281404,
+ 9.172265049046814,
+ 9.250051531077606,
+ 8.878895488218262,
+ -8.365765211397209,
+ -8.945332629617576,
+ -9.246877742386012,
+ -9.375932508283991,
+ 2.832460860591855,
+ 3.9609994565217974,
+ 5.445836458801513,
+ 6.2850301256950205,
+ -2.6975762007702726,
+ -4.027494916623745,
+ -5.6696221510962,
+ -6.820737863931667,
+ -5.987761906887154,
+ -4.763396029076588,
+ -3.0331539264698875,
+ -1.6849551408301253,
+ 5.354593209985005,
+ 4.439137534430078,
+ 2.921737384534955,
+ 1.7788513679970523,
+ -9.03544886010648,
+ -8.8319590495528,
+ -8.429181126038298,
+ -7.819122323368341,
+ 8.18944340418148,
+ 8.575927626819084,
+ 8.657422214200386,
+ 8.637711104889823,
+ -3.2984214907757003,
+ -4.316732784543079,
+ -5.650030685098705,
+ -4.52945845806105,
+ 7.796244466970845,
+ 7.151807862414838,
+ 5.848630645200745,
+ 4.846119328020032,
+ -8.67731865655076,
+ -8.92083062657265,
+ -9.159220815994049,
+ -8.742694687535932,
+ 8.283998473857375,
+ 8.59710744744281,
+ 8.688277788384475,
+ 8.683915275056838,
+ -3.010412393183954,
+ -4.061373309805532,
+ -5.4467208329972525,
+ -6.230844918780517,
+ 2.6365445921947726,
+ 4.014168952080842,
+ 5.734397073650419,
+ 6.934217255412225,
+ 6.1961753571607145,
+ 4.933726418020749,
+ 3.1396207774402334,
+ 1.7336580556085635,
+ -6.043942502992295,
+ -5.095936772184524,
+ -3.4209187976130075,
+ -2.1863017296585645
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 8.474548517797325,
+ 8.687753925081221,
+ 8.996928403639139,
+ 8.80126078578423,
+ -7.736196933543761,
+ -8.455802672339678,
+ -8.982315559594788,
+ -9.279012006289395,
+ 1.5700178899171133,
+ 2.754902623668905,
+ 4.332945563176169,
+ 5.28297760668913,
+ -1.5253383626006396,
+ -2.847311584666763,
+ -4.5445797388016995,
+ -5.746832596284443,
+ -6.744525898116171,
+ -5.630123489441954,
+ -4.038534643391506,
+ -2.7514349898036974,
+ 6.047643685106698,
+ 5.301449594620052,
+ 3.9758959840592714,
+ 2.9627305577554925,
+ -8.511726419270321,
+ -8.495318859526494,
+ -8.352475719051016,
+ -7.930647307889227,
+ 7.714926487802489,
+ 8.26704422333694,
+ 8.597478936788141,
+ 8.761029012918495,
+ -2.005834991961223,
+ -3.105742702653751,
+ -4.565408430795178,
+ -5.280713841883647,
+ 8.05963777268051,
+ 7.590687707834379,
+ 6.509538844943866,
+ 5.66513784388431,
+ -7.904548897153637,
+ -8.309301350828429,
+ -8.773464545536752,
+ -8.538869183464984,
+ 7.742262138204001,
+ 8.222301447890816,
+ 8.560733377408413,
+ 8.73904845700574,
+ -1.6993092268947865,
+ -2.8195923173754482,
+ -4.313184135983443,
+ -5.217011581243246,
+ 1.4675577102770687,
+ 2.8187868910772864,
+ 4.564828306456324,
+ 5.796044693457235,
+ 6.856058972967989,
+ 5.714692635611384,
+ 4.074394138628922,
+ 2.738820585633035,
+ -6.67193478485544,
+ -5.878346833250475,
+ -4.370021416190465,
+ -3.2606396799275545
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 4.398959073359056,
+ 4.736898081073734,
+ 5.204722120285863,
+ 5.296119495594192,
+ -3.979610521334194,
+ -4.588819246370659,
+ -5.182005785380584,
+ -5.5654640546354965,
+ -0.5580493534041103,
+ 0.23534726524793953,
+ 1.31386338448742,
+ 2.029031614413015,
+ 0.4768390329490115,
+ -0.3231243682818164,
+ -1.4288346798597849,
+ -2.2265973711680336,
+ -5.0409301017925126,
+ -4.490863495502765,
+ -3.6831167773018403,
+ -2.9684840544056135,
+ 4.537500487413888,
+ 4.284281645624757,
+ 3.7034680040002455,
+ 3.239174663601018,
+ -4.581910935840805,
+ -4.797034689580008,
+ -5.02241895446074,
+ -4.990660164633515,
+ 4.153204194995748,
+ 4.690655821540327,
+ 5.192624484687174,
+ 5.513348489492451,
+ 0.3274519782193449,
+ -0.4442990049713032,
+ -1.49023884005879,
+ -2.1758840409956046,
+ 5.252436920564215,
+ 5.176484168730871,
+ 4.781661421244449,
+ 4.454882759554466,
+ -3.910346428032887,
+ -4.352269682086592,
+ -4.908244807082029,
+ -4.983558279316196,
+ 4.08903863546147,
+ 4.583912996609556,
+ 5.088758573783013,
+ 5.417821706383021,
+ 0.5374433515140373,
+ -0.23201153856402812,
+ -1.2769130644086069,
+ -1.9744571917815854,
+ -0.5083089000217544,
+ 0.2873638119426648,
+ 1.387642472339257,
+ 2.1793812563802817,
+ 4.992624069967681,
+ 4.439428700689557,
+ 3.62009316281942,
+ 2.886958288310451,
+ -4.841489138983191,
+ -4.541382161732644,
+ -3.8183707674196214,
+ -3.289759756796138
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.841406457003734,
+ -5.383080554381015,
+ -4.777655336204027,
+ -4.128860875084883,
+ 5.428577088432876,
+ 5.296913864806556,
+ 4.807881674730674,
+ 4.401296939602094,
+ -4.738947680129168,
+ -5.080679436901548,
+ -5.477577805608032,
+ -5.541098656037508,
+ 4.43009471496981,
+ 5.038350779803589,
+ 5.609828034575206,
+ 5.975914088791607,
+ 0.5474591353233318,
+ -0.29631292370649814,
+ -1.4424169333893722,
+ -2.2056852586123687,
+ -0.44447771359621185,
+ 0.4270537186533442,
+ 1.6263903947067857,
+ 2.4888647858240422,
+ 5.431173034200329,
+ 4.824240141695896,
+ 3.9280369163568825,
+ 3.138695494782535,
+ -4.922176761912062,
+ -4.63463070647208,
+ -3.982313902202381,
+ -3.4669631811616135,
+ 5.0277021695702535,
+ 5.2510313678254175,
+ 5.48944185935529,
+ 5.4415609844128605,
+ -2.7087403735057913,
+ -1.9394765018983637,
+ -0.7511356406470083,
+ 0.12794405768228767,
+ 5.961832485696516,
+ 5.623403089744454,
+ 5.104303076548117,
+ 4.417696279097581,
+ -5.14970209846489,
+ -4.826223549834759,
+ -4.182812904227263,
+ -3.6758419985860535,
+ 4.951927465902068,
+ 5.223584645587667,
+ 5.535047008669339,
+ 5.549781680749506,
+ -4.39420129956955,
+ -5.074495937175879,
+ -5.761485559178506,
+ -6.203620441826044,
+ -0.9071819837494477,
+ -0.01588015671781664,
+ 1.2002736990410152,
+ 2.0146911337785895,
+ 0.928240541340281,
+ 0.08339813959655451,
+ -1.1158806372711674,
+ -2.0063939224957803
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -9.6332388064775,
+ -9.207120684020264,
+ -8.654581383261,
+ -7.864587246370558,
+ 8.900076208720721,
+ 9.02486564121932,
+ 8.682476348550756,
+ 8.34485008736547,
+ -5.823176682745872,
+ -6.645483754588879,
+ -7.676339551340338,
+ -8.10320962614816,
+ 5.465304980157028,
+ 6.633433942670826,
+ 7.901860339183836,
+ 8.75758554740244,
+ 3.137045131824538,
+ 1.786752366991398,
+ -0.07660800771508652,
+ -1.4028372795141233,
+ -2.761647725189414,
+ -1.5189525229551721,
+ 0.3033067950697013,
+ 1.6362418517760489,
+ 9.194138900807886,
+ 8.517685017501421,
+ 7.4742886244476585,
+ 6.444156405407539,
+ -8.332823947547714,
+ -8.222568901744566,
+ -7.626225612925298,
+ -7.118485033778385,
+ 6.305716062645833,
+ 6.965352860288237,
+ 7.77672727528029,
+ 8.046125209014825,
+ -5.874747826576697,
+ -4.992097886936647,
+ -3.273751360593931,
+ -1.9858451588722719,
+ 9.552213145369288,
+ 9.330430119427923,
+ 8.93142305957459,
+ 8.085052628790818,
+ -8.594365621668263,
+ -8.417362934797264,
+ -7.833858356465713,
+ -7.340916365105576,
+ 6.106936609726875,
+ 6.8275971043066175,
+ 7.732388177122121,
+ 8.088030186142367,
+ -5.403969001564214,
+ -6.662641975272047,
+ -8.076952948196064,
+ -9.027541264649454,
+ -3.57619939032253,
+ -2.1632906125678377,
+ -0.20427809958568402,
+ 1.1966409241216258,
+ 3.5303213966951397,
+ 2.2993059565039324,
+ 0.4084834308296488,
+ -0.9915449104451148
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -9.399347296006955,
+ -9.15053787459269,
+ -8.837199754280773,
+ -8.208147483090626,
+ 8.657475171301948,
+ 8.952374409468428,
+ 8.853301374960278,
+ 8.69243740979604,
+ -4.673109460055189,
+ -5.606474439708697,
+ -6.802860182335523,
+ -7.382477742060121,
+ 4.400625988710279,
+ 5.623963261311012,
+ 7.026664214573163,
+ 7.989220302400127,
+ 4.192230822411215,
+ 2.8955838674551555,
+ 1.0909925977741401,
+ -0.23721696970348483,
+ -3.721853427878987,
+ -2.6078577027602665,
+ -0.9086356718865216,
+ 0.3466675475644221,
+ 9.091136600057345,
+ 8.595404154795098,
+ 7.797391366005298,
+ 6.9297992409378075,
+ -8.23963737432657,
+ -8.316352649165836,
+ -7.977251001484325,
+ -7.6550895061198725,
+ 5.1471462652318785,
+ 5.938293812402979,
+ 6.941737037002694,
+ 7.380995053815112,
+ -4.806436130220572,
+ -5.779152135673148,
+ -4.2247564901912025,
+ -3.050057122970731,
+ 9.178694164001413,
+ 9.1326058811135,
+ 8.974728875071493,
+ 8.293697806641779,
+ -8.437265511896213,
+ -8.44506085004054,
+ -8.117550048031354,
+ -7.8103236654806,
+ 4.915813912560301,
+ 5.757046733444147,
+ 6.837938284346426,
+ 7.352729334152564,
+ -4.339694042366044,
+ -5.637068305264713,
+ -7.159522209948709,
+ -8.199167727125594,
+ -4.54270246912741,
+ -3.192943698190242,
+ -1.3050839539309096,
+ 0.09110943773267083,
+ 4.457121290453084,
+ 3.33814863422565,
+ 1.5372609797873231,
+ 0.205933760976806
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -6.567727152550231,
+ -6.521691590704942,
+ -6.475599003053259,
+ -6.144578362654721,
+ 6.029054207924821,
+ 6.367659964362994,
+ 6.478339996887342,
+ 6.494982222577084,
+ -2.4931053065270836,
+ -3.245592248929571,
+ -4.227440489698997,
+ -4.757314291001746,
+ 2.3614264955844515,
+ 3.2802017579501985,
+ 4.386699521850163,
+ 5.156968700342775,
+ 3.7953977136799946,
+ 2.9053451549412657,
+ 1.6547557293504478,
+ 0.7005117414466409,
+ -3.387035335789976,
+ -2.684066285894056,
+ -1.5570673129346313,
+ -0.7145885233707153,
+ 6.444407631228886,
+ 6.223795926019433,
+ 5.834649622491794,
+ 5.333710970630598,
+ -5.840933535880528,
+ -6.035623526065028,
+ -5.984525532409321,
+ -5.892049982304691,
+ 2.826795103459388,
+ 3.492542696059314,
+ 4.355810977086928,
+ 4.7977831059930205,
+ -2.6498128622535355,
+ -3.5051619267917773,
+ -3.7409103989769736,
+ -2.982824369221458,
+ 6.305149502025523,
+ 6.403326367184461,
+ 6.47019153538575,
+ 6.105169711051969,
+ -5.9349571471701275,
+ -6.078586170265009,
+ -6.03487053981237,
+ -5.953210379403777,
+ 2.6365376234273974,
+ 3.3300423038989178,
+ 4.236938869614717,
+ 4.725092382374063,
+ -2.3180199643601234,
+ -3.2775740666399282,
+ -4.450454888983916,
+ -5.262746365921556,
+ -3.980559015418897,
+ -3.05950702591296,
+ -1.758436742676137,
+ -0.7604349851719366,
+ 3.889512268057066,
+ 3.1705311865642414,
+ 1.945878131506253,
+ 1.042194126709568
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -9.279807213628496,
+ -9.344214809534924,
+ -9.454149755342524,
+ -9.096350560742465,
+ 8.498139785883692,
+ 9.1108118867507,
+ 9.449403870519141,
+ 9.603613655799755,
+ -2.7405358745580184,
+ -3.9053428269495707,
+ -5.440383987792093,
+ -6.3155313845120995,
+ 2.613949653408296,
+ 3.9769196893684717,
+ 5.6683218709699394,
+ 6.855605769084254,
+ 6.239854926562238,
+ 4.998438231009909,
+ 3.2419182214556104,
+ 1.8671266323961087,
+ -5.582154437655441,
+ -4.665293335733405,
+ -3.134002784099217,
+ -1.9787291097444428,
+ 9.198781846478422,
+ 9.014457215547678,
+ 8.635230797649802,
+ 8.034066145627467,
+ -8.337505181012208,
+ -8.755480818966735,
+ -8.871506329396409,
+ -8.875172816049336,
+ 3.2145110884737838,
+ 4.269556172822054,
+ 5.6534958564442075,
+ 6.4147471192989345,
+ -3.0263135881795136,
+ -4.311588241221969,
+ -5.876661578692766,
+ -5.077064289116788,
+ 8.799016369752756,
+ 9.069782774513683,
+ 9.343706078514098,
+ 8.94021351117965,
+ -8.425723652860022,
+ -8.768612390205927,
+ -8.894342906030214,
+ -8.913675329556058,
+ 2.9167069663539698,
+ 4.00363892201506,
+ 5.438600432992713,
+ 6.25842206951015,
+ -2.551777423558502,
+ -3.9612714458644263,
+ -5.728954281431881,
+ -6.963618313522756,
+ -6.440984595707954,
+ -5.161957802088632,
+ -3.3419122644877857,
+ -1.9090869028427035,
+ 6.280693787413822,
+ 5.328513887966935,
+ 3.632287560786619,
+ 2.382347179111534
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -8.964065752526523,
+ -9.201903072551865,
+ -9.5455921910541,
+ -9.349079589406692,
+ 8.181108979543254,
+ 8.955053606792289,
+ 9.52931525569929,
+ 9.85558451732735,
+ -1.5862987528019934,
+ -2.8492915580058678,
+ -4.532544472166012,
+ -5.549485847331131,
+ 1.5446963281071413,
+ 2.949195777585886,
+ 4.7566806012258365,
+ 6.037792811219962,
+ 7.217568900499007,
+ 6.040333914519964,
+ 4.3578076684034315,
+ 2.993839561438785,
+ -6.472753690871531,
+ -5.690725189150216,
+ -4.2944157767051925,
+ -3.22606603465248,
+ 9.01226009978697,
+ 9.007024660964847,
+ 8.872163091699433,
+ 8.436113730278171,
+ -8.168615865243634,
+ -8.76622063178855,
+ -9.13365040535344,
+ -9.319428045877894,
+ 2.0475271073853616,
+ 3.221851748381017,
+ 4.7814541949355265,
+ 5.702353088258285,
+ -1.949665325954124,
+ -3.295286871864603,
+ -5.001686370248787,
+ -6.0744359032796735,
+ 8.350695925588388,
+ 8.791391596934936,
+ 9.299439380511156,
+ 9.061973883575288,
+ -8.19328418267165,
+ -8.714367256552293,
+ -9.090187145154392,
+ -9.29161924411534,
+ 1.7205380047226848,
+ 2.915717374729214,
+ 4.510194979149746,
+ 5.478607486973261,
+ -1.4834980171663574,
+ -2.9178878198373077,
+ -4.775296810541616,
+ -6.085904348000453,
+ -7.32978909462927,
+ -6.124621613641663,
+ -4.391314293903802,
+ -2.9764331955156087,
+ 7.132018311943133,
+ 6.298650512763388,
+ 4.70644710964444,
+ 3.535544327958328
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -4.727017415536317,
+ -4.998456526934936,
+ -5.377159228330083,
+ -5.397512203628211,
+ 4.290955898698135,
+ 4.8505024324934585,
+ 5.358854149425759,
+ 5.678327228252625,
+ 0.0456604642621138,
+ -0.7349419360634956,
+ -1.7892278789036622,
+ -2.468143694350725,
+ -0.000519863454492217,
+ 0.813202101795466,
+ 1.9107088368731144,
+ 2.697878915509504,
+ 4.795483544812742,
+ 4.192937222621448,
+ 3.317521935602052,
+ 2.5683677953169988,
+ -4.311682571365395,
+ -3.9854647161806964,
+ -3.318059769822601,
+ -2.794277882092084,
+ 4.857579449964931,
+ 4.99850808744869,
+ 5.1198408319819135,
+ 5.010177600071951,
+ -4.402996034495258,
+ -4.879308042561036,
+ -5.285377389425235,
+ -5.534863725337632,
+ 0.20036916701598945,
+ 0.9486474657710708,
+ 1.9562784095562518,
+ 2.596170532104869,
+ -0.21854943503861435,
+ -1.014671170147051,
+ -2.0762875648359267,
+ -2.840583241273671,
+ 4.279734936246032,
+ 4.661074643643854,
+ 5.131395609030596,
+ 5.132801718577983,
+ -4.365661199036658,
+ -4.798303890870314,
+ -5.207978864638308,
+ -5.466153895789541,
+ -0.00475256857672842,
+ 0.7462524314851718,
+ 1.7602923032301898,
+ 2.4177035441484307,
+ 0.03374061713454224,
+ -0.7832295163287732,
+ -1.8873065762747943,
+ -2.6765004476154166,
+ -4.786426582693527,
+ -4.17613310822567,
+ -3.282738734644138,
+ -2.5110154881707443,
+ 4.646438821641279,
+ 4.278828816178038,
+ 3.477716927681355,
+ 2.890620583369438
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -4.156381444687381,
+ -4.476147950748726,
+ -4.9188001607370655,
+ -5.00555053720458,
+ 3.7600840799716613,
+ 4.33617844597566,
+ 4.897305682308507,
+ 5.260085765534522,
+ 0.5300727568222221,
+ -0.21993581416014923,
+ -1.239506232977512,
+ -1.9156892363108875,
+ -0.4531280731515346,
+ 0.3029535944663772,
+ 1.3481479353525692,
+ 2.102272344490524,
+ 4.766088194277593,
+ 4.2464124770264675,
+ 3.483245906536114,
+ 2.807926350027602,
+ -4.290131255038917,
+ -4.051149168205274,
+ -3.5025825610454855,
+ -3.064017874879554,
+ 4.329577895270804,
+ 4.533294322511262,
+ 4.7468600318242915,
+ 4.717233870377579,
+ -3.924481131587991,
+ -4.43280631893122,
+ -4.907767340037846,
+ -5.211285593106299,
+ -0.312182599956271,
+ 0.4174197232927361,
+ 1.406269055134666,
+ 2.054593899649879,
+ 0.25744033269715305,
+ -0.4906342551816005,
+ -1.5139425551038619,
+ -2.254391568031186,
+ 3.69432042328298,
+ 4.112346318949553,
+ 4.638304266206806,
+ 4.7098660689824206,
+ -3.8636943324655295,
+ -4.331779634562587,
+ -4.809456326537808,
+ -5.12085522191025,
+ -0.5106977968202074,
+ 0.21670883633410415,
+ 1.2045391375198387,
+ 1.8640828600018955,
+ 0.4828655678795925,
+ -0.26912234464418605,
+ -1.3091219246179426,
+ -2.057511716474186,
+ -4.720229646139416,
+ -4.197619836520064,
+ -3.4235314070279492,
+ -2.730743558174143,
+ 4.577315775812614,
+ 4.293985777268123,
+ 3.6109664286472793,
+ 3.111601550630189
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.7520351160499352,
+ -2.263147662532153,
+ -2.958642858351468,
+ -3.3147297676708702,
+ 1.5252317051341397,
+ 2.1583162290188334,
+ 2.9245275187118858,
+ 3.457382649797261,
+ 2.496937753483966,
+ 1.8854706819222848,
+ 1.0261867748591167,
+ 0.3735141627353161,
+ -2.2916288832899423,
+ -1.7845577897626597,
+ -0.9719190746338057,
+ -0.36641567282308246,
+ 4.559028653970168,
+ 4.38698990819299,
+ 4.095782877377827,
+ 3.7340754415484136,
+ -4.123777646969281,
+ -4.245113086995288,
+ -4.191471163836014,
+ -4.108635704793212,
+ 2.096027562190025,
+ 2.5522142037924826,
+ 3.1382156389966775,
+ 3.4357073330660626,
+ -1.900256438487901,
+ -2.5299139706436202,
+ -3.2772930033239724,
+ -3.7957305313125644,
+ -2.3978481927112187,
+ -1.7577857929935896,
+ -0.8636460801782115,
+ -0.1927635410615151,
+ 2.194922120450235,
+ 1.6565686884750448,
+ 0.8082740380097717,
+ 0.17866123821609894,
+ 1.2381188278872481,
+ 1.79819495191336,
+ 2.541555460670799,
+ 2.898066431240013,
+ -1.7448893736785158,
+ -2.3490357015467964,
+ -3.0954494669632298,
+ -3.6183264811271467,
+ -2.5657780662506853,
+ -1.9479561221642063,
+ -1.0851252126913347,
+ -0.4289358160741045,
+ 2.3066100308137685,
+ 1.8335152124650798,
+ 1.0739815426494117,
+ 0.5057646817603746,
+ -4.3638463299488315,
+ -4.208565915692786,
+ -3.9354323621057268,
+ -3.5773888485128205,
+ 4.211605278529962,
+ 4.2773429904519515,
+ 4.088662835290889,
+ 3.956397513307721
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.813472905523033,
+ -1.3941450393639616,
+ -2.181396905773815,
+ -2.638262813451063,
+ 0.6536485054942879,
+ 1.3036554152730797,
+ 2.1426967157809957,
+ 2.736758807023314,
+ 3.2337058100150804,
+ 2.680349069239636,
+ 1.889494705828345,
+ 1.25101558026466,
+ -2.980647239726856,
+ -2.573349994289929,
+ -1.8565680662976358,
+ -1.3130046018616937,
+ 4.443409816643953,
+ 4.406433350882109,
+ 4.299044765729626,
+ 4.060810274601743,
+ -4.0272498816044004,
+ -4.286209230986902,
+ -4.423343402063297,
+ -4.477978551449842,
+ 1.2204401789633763,
+ 1.7701288435677738,
+ 2.4947476228080356,
+ 2.9157040183007115,
+ -1.1067227907244062,
+ -1.778076371645123,
+ -2.624331326472844,
+ -3.2213371196469205,
+ -3.1810901422768225,
+ -2.580517288671382,
+ -1.729860721026506,
+ -1.0555971659566021,
+ 2.9227727505505037,
+ 2.469328977014833,
+ 1.6950413352620832,
+ 1.1130263639912072,
+ 0.2836686334303787,
+ 0.8939582665825401,
+ 1.7150669492534942,
+ 2.1783583388508316,
+ -0.9162054805830412,
+ -1.5679139928312893,
+ -2.411795574958063,
+ -3.0118823147148293,
+ -3.335931236996515,
+ -2.765132715005053,
+ -1.9571875824280072,
+ -1.3074672143307453,
+ 2.9898347185760628,
+ 2.627738694017493,
+ 1.982069433945086,
+ 1.487633398567417,
+ -4.192336612618452,
+ -4.179560107651128,
+ -4.101254237674086,
+ -3.874782401808744,
+ 4.037709789319059,
+ 4.237183425143942,
+ 4.240119957576992,
+ 4.250088501697999
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.8773882892196845,
+ 1.1118883690771537,
+ 0.08131328827929576,
+ -0.6520902845833456,
+ -1.8428654617489966,
+ -1.1594819422047526,
+ -0.1321862333202149,
+ 0.6226165352597542,
+ 5.257819740948306,
+ 4.882522650104023,
+ 4.304519149391298,
+ 3.720995855963768,
+ -4.874569457873326,
+ -4.760631845046626,
+ -4.333106089935491,
+ -3.978283095249272,
+ 4.013000857867956,
+ 4.3614242535278125,
+ 4.7798609226925866,
+ 4.898612677992824,
+ -3.660677478100515,
+ -4.305589496427383,
+ -4.982789430817517,
+ -5.427594854336599,
+ -1.3003851161850122,
+ -0.49699255230821915,
+ 0.6058006818391825,
+ 1.3687048146883563,
+ 1.1778838207035875,
+ 0.403102770881156,
+ -0.7054017969605498,
+ -1.512513388985083,
+ -5.338725872205575,
+ -4.864269915468945,
+ -4.156797467405211,
+ -3.4882656395058222,
+ 4.928578865410581,
+ 4.727223616325018,
+ 4.1812899815769775,
+ 3.7480555953277386,
+ -2.4403619318719074,
+ -1.7010024804625266,
+ -0.6772276247729987,
+ 0.0795426837233515,
+ 1.46414346654312,
+ 0.6918575890529324,
+ -0.41031842251627815,
+ -1.216572666078113,
+ -5.452772824934764,
+ -5.028863914651819,
+ -4.3955962941501205,
+ -3.7790942600464557,
+ 4.867051575496892,
+ 4.8292459451897,
+ 4.522485463087011,
+ 4.2493849771050725,
+ -3.608510651371875,
+ -4.00177104509286,
+ -4.479974161760298,
+ -4.633279852444077,
+ 3.4506129989984795,
+ 4.026324157513134,
+ 4.5747765936835,
+ 4.989495066640642
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.665941558329094,
+ 4.343199068383839,
+ 2.5683808834433095,
+ 1.1934456147192556,
+ -5.40495138788507,
+ -4.366570036832154,
+ -2.656167116358113,
+ -1.3751846997090773,
+ 9.902027527133988,
+ 9.54434354112149,
+ 8.927026471358438,
+ 8.130710633903304,
+ -9.199032311054326,
+ -9.349459044117763,
+ -9.035533725816986,
+ -8.719437963758345,
+ 5.419625909580955,
+ 6.347777542608641,
+ 7.530605634092613,
+ 8.091164762311388,
+ -4.972001825927203,
+ -6.33558406141696,
+ -7.913329864059008,
+ -8.987999471357343,
+ -4.6356602218683145,
+ -3.182793571150285,
+ -1.1560986310997972,
+ 0.33290131776742005,
+ 4.2003191410336305,
+ 2.9520714650170534,
+ 1.0424756910675923,
+ -0.36865532774610066,
+ -10.165207168467557,
+ -9.605873987605955,
+ -8.72327054153716,
+ -7.749001106964044,
+ 9.39934447320632,
+ 9.376892614953256,
+ 8.823389813466486,
+ 8.349043334720283,
+ -6.384501215635929,
+ -5.303451590919147,
+ -3.582613287323328,
+ -2.1550712247392507,
+ 4.723779687561224,
+ 3.4606286379182354,
+ 1.56459540212682,
+ 0.15898452903496227,
+ -10.288314178198059,
+ -9.82559774959571,
+ -9.08591164026775,
+ -8.21770058991467,
+ 9.169924868782768,
+ 9.465486321581254,
+ 9.382419477816098,
+ 9.221458971649508,
+ -4.6603413521446955,
+ -5.676588476894593,
+ -6.980282090785549,
+ -7.616187217460906,
+ 4.425227273573278,
+ 5.676803507737996,
+ 7.071626492890439,
+ 8.117951184118953
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 6.378678965686524,
+ 5.1786352065135635,
+ 3.571497929369309,
+ 2.2690600578448157,
+ -6.038955955063572,
+ -5.169739236227573,
+ -3.6510799528742868,
+ -2.500823465050305,
+ 9.401132787426276,
+ 9.22531728636982,
+ 8.860292554518596,
+ 8.246228542682962,
+ -8.74250789489676,
+ -9.056556307746607,
+ -8.988957552533396,
+ -8.854047705190476,
+ 4.142476882113301,
+ 5.151263227753759,
+ 6.459460862670676,
+ 7.149717325554147,
+ -3.818781158562963,
+ -5.183295864774144,
+ -6.823082937654381,
+ -7.954557447601516,
+ -5.426966313949576,
+ -4.075814722148664,
+ -2.175185610564318,
+ -0.737006507931226,
+ 4.917648677091741,
+ 3.831478190350074,
+ 2.1020042271468697,
+ 0.8133418054676026,
+ -9.702982400148322,
+ -9.328726494165041,
+ -8.701768501141231,
+ -7.910375424910629,
+ 8.978940812140234,
+ 9.12498765545442,
+ 8.822152245345624,
+ 8.532034035645806,
+ -5.1938491486860805,
+ -6.02030966902317,
+ -4.483736782437217,
+ -3.1273186480885222,
+ 5.407287778170401,
+ 4.297771875010706,
+ 2.581945620827622,
+ 1.3003562608346682,
+ -9.776854516817352,
+ -9.494994954181138,
+ -9.005210841433541,
+ -8.31829739407194,
+ 8.707859976691838,
+ 9.160525094669417,
+ 9.313712051626254,
+ 9.326665841602859,
+ -3.4227688785897814,
+ -4.51690864999671,
+ -5.943755107971733,
+ -6.710364399272508,
+ 3.228752566230627,
+ 4.495521220572979,
+ 5.9895732079777755,
+ 7.107421030758416
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.171988613783284,
+ 4.387233307293172,
+ 3.3387262905569286,
+ 2.4425296495869695,
+ -4.866639355115202,
+ -4.357091891036953,
+ -3.3907187094147107,
+ -2.6481387407934824,
+ 6.485263376727823,
+ 6.4904514879063155,
+ 6.409357226103398,
+ 6.095386200375507,
+ -6.037721359287296,
+ -6.386594239482836,
+ -6.517920431180188,
+ -6.552424315677234,
+ 2.083093127980504,
+ 2.877518341565953,
+ 3.9229832288804682,
+ 4.521202599494615,
+ -1.9380111423094346,
+ -2.9332922207242413,
+ -4.174022952798161,
+ -5.040404526255615,
+ -4.535887536343816,
+ -3.625604859531224,
+ -2.3326601852442663,
+ -1.321628921890475,
+ 4.110407591217596,
+ 3.4375258096835553,
+ 2.3089686356342765,
+ 1.4594502946059111,
+ -6.733633791218497,
+ -6.596530886073949,
+ -6.326971348637624,
+ -5.884202702578279,
+ 6.236540415051562,
+ 6.466532297345609,
+ 6.429576582942993,
+ 6.353179346283423,
+ -2.912857332460457,
+ -3.6859398810707984,
+ -3.928880432873391,
+ -2.992330492101479,
+ 4.442509639687783,
+ 3.7464218974412566,
+ 2.627875011614902,
+ 1.7846507870511883,
+ -6.751381786133856,
+ -6.678532490019632,
+ -6.5047483493659195,
+ -6.136977621190675,
+ 6.008404311527731,
+ 6.453536367903162,
+ 6.738408651602548,
+ 6.875359299348318,
+ -1.58751288158034,
+ -2.4421419731474727,
+ -3.572464994637999,
+ -4.227076259540559,
+ 1.4762256325610494,
+ 2.4107143765665273,
+ 3.572483414720685,
+ 4.4397234186981605
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 8.034264617025826,
+ 6.979638534338391,
+ 5.573225439934012,
+ 4.320665322929128,
+ -7.533821403837424,
+ -6.912791520310011,
+ -5.643044161091963,
+ -4.6555118577413195,
+ 9.080963257872137,
+ 9.218056378328248,
+ 9.279748390507729,
+ 8.952654980739586,
+ -8.461277716651367,
+ -9.085524577862312,
+ -9.452094253527974,
+ -9.631363262228708,
+ 2.121742215897453,
+ 3.335272872120349,
+ 4.945995730250683,
+ 5.908942642726483,
+ -1.9988830896800875,
+ -3.447940190657062,
+ -5.297717570989015,
+ -6.598989719500199,
+ -7.164535734099743,
+ -5.91228821246268,
+ -4.120512732782653,
+ -2.6853983764440192,
+ 6.49265896927125,
+ 5.628886845559623,
+ 4.11484147327321,
+ 2.9658044029051815,
+ -9.469951055682548,
+ -9.402259316327692,
+ -9.192073711260539,
+ -8.677991104813692,
+ 8.776339613757242,
+ 9.231057547976675,
+ 9.355825198654404,
+ 9.375871262357396,
+ -3.390875917871426,
+ -4.580457991812334,
+ -6.151398219381401,
+ -5.047141313864185,
+ 6.951863181321858,
+ 6.048307165124144,
+ 4.548890031313125,
+ 3.4101186636101817,
+ -9.460709495847654,
+ -9.48351731944507,
+ -9.408618826318454,
+ -9.002553169145253,
+ 8.414667362472953,
+ 9.174353653005742,
+ 9.75719811439888,
+ 10.08037431786431,
+ -1.4287339995516677,
+ -2.727923815448176,
+ -4.460558403997391,
+ -5.506287349556525,
+ 1.2960556192067925,
+ 2.66680127351346,
+ 4.428157288926327,
+ 5.741162322586463
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 8.489833107864955,
+ 7.572179943230682,
+ 6.352118076174257,
+ 5.195606069977838,
+ -7.9297693260495805,
+ -7.477578471228367,
+ -6.412794925355772,
+ -5.56792817919372,
+ 8.407101827171092,
+ 8.706385747824708,
+ 8.996158564579963,
+ 8.842752953501186,
+ -7.842671876270769,
+ -8.600806869876244,
+ -9.182706925273262,
+ -9.522532740184102,
+ 0.9086989614949987,
+ 2.166454754023428,
+ 3.8525680488707383,
+ 4.910400676369979,
+ -0.9015537143863815,
+ -2.316657815608296,
+ -4.178461542342575,
+ -5.5001686761287045,
+ -7.712482310219656,
+ -6.582860732769302,
+ -4.9488257600175665,
+ -3.5944202219914416,
+ 6.989430011964198,
+ 6.293877856459065,
+ 4.980088738590473,
+ 3.970082627747258,
+ -8.821933522678536,
+ -8.924270517358197,
+ -8.9517463049907,
+ -8.616410601861103,
+ 8.18303357930452,
+ 8.780148781083827,
+ 9.13000381193705,
+ 9.317198931063466,
+ -2.2260565102252556,
+ -3.469522174991939,
+ -5.125358347707886,
+ -5.810580244292827,
+ 7.406831335654917,
+ 6.664769298604841,
+ 5.365334599497635,
+ 4.366760650633024,
+ -8.768114734474718,
+ -8.95493763029137,
+ -9.109225399398989,
+ -8.877875934073826,
+ 7.7921396213207945,
+ 8.676530460851641,
+ 9.460345836445528,
+ 9.934006184979408,
+ -0.26834543064720673,
+ -1.6072081141481238,
+ -3.410288234142532,
+ -4.549830862576453,
+ 0.17624866231371786,
+ 1.5278973114494998,
+ 3.337240607338166,
+ 4.683791050284597
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.899706331258652,
+ 3.7061821474654972,
+ 3.454073415647492,
+ 3.1164191496464584,
+ -3.6062472773794547,
+ -3.6349624666229285,
+ -3.4667655304651603,
+ -3.3088626811833546,
+ 2.484339081280096,
+ 2.8007251191396674,
+ 3.1940386556631934,
+ 3.346304169503052,
+ -2.32980826487434,
+ -2.7921644685436977,
+ -3.284860167407892,
+ -3.615204554447778,
+ -1.1274714590331651,
+ -0.5782220871802901,
+ 0.17780270105500212,
+ 0.7103798515128888,
+ 0.9886115248074143,
+ 0.4731398204513341,
+ -0.27446485559432776,
+ -0.8197609100108313,
+ -3.706811758029488,
+ -3.41228281998723,
+ -2.962188603470274,
+ -2.5278550891679226,
+ 3.3595334454287205,
+ 3.291693965037763,
+ 3.019714854496336,
+ 2.7923565825373804,
+ -2.6792749897439343,
+ -2.927731111162485,
+ -3.229523925753847,
+ -3.316368539414688,
+ 2.4947636516416174,
+ 2.904154075363284,
+ 3.3174534347989795,
+ 3.5957874076922836,
+ 0.549864698390984,
+ -0.0055846908439729954,
+ -0.761329115923256,
+ -1.2397312518997097,
+ 3.4726585563423775,
+ 3.3782760460430357,
+ 3.111612148132197,
+ 2.8901821686751883,
+ -2.6035123378345175,
+ -2.877862737156317,
+ -3.2191973969921697,
+ -3.3420401974136227,
+ 2.305115030803088,
+ 2.8059268061138996,
+ 3.360523661019025,
+ 3.731218365065855,
+ 1.3150732258240747,
+ 0.7394704433776979,
+ -0.056542948370699356,
+ -0.6199719045488524,
+ -1.301640695619497,
+ -0.7929588771314735,
+ -0.021976479299855967,
+ 0.5491504512658417
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.8054058962312095,
+ 1.2306897676899449,
+ 1.8077883202459981,
+ 2.1330790867232867,
+ -0.6709247726762828,
+ -1.159320145303673,
+ -1.7794339861693915,
+ -2.2165391988744734,
+ -2.2976691718940447,
+ -1.867221307602529,
+ -1.254986027940783,
+ -0.7690172472171886,
+ 2.1158570087869957,
+ 1.7874932738891987,
+ 1.2257545112963193,
+ 0.8019417530168879,
+ -3.385442128537849,
+ -3.3301367942550595,
+ -3.211690059146484,
+ -3.006450353410777,
+ 3.0666973346652715,
+ 3.234789709527893,
+ 3.299950193933079,
+ 3.313474320916404,
+ -1.1005905629694848,
+ -1.497586841684456,
+ -2.0178134140809267,
+ -2.3113436433862464,
+ 0.9979455825996865,
+ 1.4974801128476591,
+ 2.117782130145202,
+ 2.553601892873621,
+ 2.248455023417534,
+ 1.786049291526581,
+ 1.1336129067869527,
+ 0.6241241863739296,
+ -2.064210000796169,
+ -1.7039375958107623,
+ -1.1031087911966206,
+ -0.6531040733804883,
+ 3.3222802542509116,
+ 3.2396471729776573,
+ 3.093449855406261,
+ 2.794728437945105,
+ 0.8609051925228876,
+ 1.34438860803204,
+ 1.9631797364025891,
+ 2.4016055346100975,
+ 2.368261783321378,
+ 1.9268600737940351,
+ 1.3044336357278705,
+ 0.8115222231266863,
+ -2.1239808368423665,
+ -1.8275468392854812,
+ -1.3159710100985782,
+ -0.9269340749858949,
+ 3.2067794037873183,
+ 3.168278972322433,
+ 3.0696097593508878,
+ 2.87163146399424,
+ -3.090265737771672,
+ -3.214135685339623,
+ -3.1775871755815057,
+ -3.1563511251550684
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.247139656176822,
+ -2.377774825207528,
+ -1.210112638998956,
+ -0.32763660486502,
+ 3.1152395881788593,
+ 2.4047237748655155,
+ 1.2678331504834006,
+ 0.42133288913422307,
+ -6.347258656555649,
+ -6.054925559450201,
+ -5.57410860058076,
+ -5.009005044065929,
+ 5.893242846333919,
+ 5.923741090901861,
+ 5.63378812182845,
+ 5.367566154886017,
+ -3.860179512846774,
+ -4.406008209716203,
+ -5.09290247728991,
+ -5.391371633247513,
+ 3.5342536480565903,
+ 4.381401957972106,
+ 5.338131663220636,
+ 5.984200468995549,
+ 2.5765388608147592,
+ 1.6343769435579172,
+ 0.326188133430224,
+ -0.6188367701108203,
+ -2.3344432489118425,
+ -1.4962179556320825,
+ -0.2399975316938541,
+ 0.6842148174168872,
+ 6.495944299617003,
+ 6.077044734250461,
+ 5.430053309819161,
+ 4.75410577954168,
+ -6.00383594078206,
+ -5.925007221182581,
+ -5.484478361793471,
+ -5.118727472192561,
+ 4.426576037552247,
+ 4.937917153489366,
+ 5.582246863324726,
+ 5.6762732320141875,
+ -2.6728113861887253,
+ -1.828573511517016,
+ -0.5807498338330627,
+ 0.3406294709295377,
+ 6.591415043469134,
+ 6.234190614234264,
+ 5.678237921434385,
+ 5.068816707364993,
+ -5.877284863203966,
+ -6.0004982058399055,
+ -5.857908842219275,
+ -5.690907758681313,
+ 3.373023858689085,
+ 3.974662284154562,
+ 4.737531560839624,
+ 5.082442871252156,
+ -3.211070214168372,
+ -3.9831131639522748,
+ -4.811833078640447,
+ -5.434617959810465
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -6.397937828041278,
+ -5.279788547804953,
+ -3.783445577462592,
+ -2.5496848554466607,
+ 6.043610541862299,
+ 5.26045096330529,
+ 3.8575742707557628,
+ 2.790183201168765,
+ -8.912873426994567,
+ -8.803636738457202,
+ -8.535113445668319,
+ -8.00274069276223,
+ 8.291545056638965,
+ 8.649345961130452,
+ 8.666092164754929,
+ 8.5961351557481,
+ -3.575509489803881,
+ -4.576656580276217,
+ -5.8818753062664095,
+ -6.591723042444414,
+ 3.3041532893745353,
+ 4.622322468312873,
+ 6.226702711381608,
+ 7.338406972347725,
+ 5.504932071684437,
+ 4.233853560813186,
+ 2.4401949779043575,
+ 1.0681154544589915,
+ -4.98839299651835,
+ -3.9933375063192806,
+ -2.382984004173458,
+ -1.1791695145327663,
+ 9.217280262048913,
+ 8.917456937108325,
+ 8.397073179181755,
+ 7.693642646640848,
+ -8.531922998078084,
+ -8.7290908859314,
+ -8.52008934650441,
+ -8.301244108819018,
+ 4.61973868917491,
+ 5.586233110994992,
+ 6.843136432591604,
+ 7.283976854121464,
+ -5.307022258742548,
+ -4.42961256492096,
+ -2.83246849536764,
+ -1.6360023848174612,
+ 9.272229887259398,
+ 9.060238147980453,
+ 8.670425249847835,
+ 8.067376174535221,
+ -8.256236694483238,
+ -8.74574397956451,
+ -8.972372179430183,
+ -9.04280133513298,
+ 2.893590138797531,
+ 3.9762590313420496,
+ 5.395331459810654,
+ 6.17925662963227,
+ -2.7198944131967964,
+ -3.948408671960183,
+ -5.424421405439315,
+ -6.527866484511922
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -7.121362404113263,
+ -6.129545087589307,
+ -4.805822590904007,
+ -3.6471690530145096,
+ 6.686836953792431,
+ 6.077238324960425,
+ 4.87150465359248,
+ 3.9386103207064123,
+ -8.393633270701416,
+ -8.47039948399509,
+ -8.459998418923806,
+ -8.114362333277114,
+ 7.818164395843158,
+ 8.342938080111681,
+ 8.611477513447637,
+ 8.726793912331747,
+ -2.267057813234098,
+ -3.3498246165465964,
+ -4.782147441886247,
+ -5.624004416930405,
+ 2.1226063504367296,
+ 3.4406636533762964,
+ 5.1071690891206,
+ 6.276043764211361,
+ 6.309394855773703,
+ 5.143321368648662,
+ 3.47998257745957,
+ 2.1609631992008502,
+ -5.717650785493784,
+ -4.889082337984845,
+ -3.464159118033845,
+ -2.3865105608248194,
+ 8.737324435512877,
+ 8.626938183783144,
+ 8.368307868524296,
+ 7.852390644008375,
+ -8.095272474382218,
+ -8.464528455105723,
+ -8.51193994837343,
+ -8.481598459466516,
+ 3.398864590670353,
+ 4.457211477905134,
+ 5.850863630361269,
+ 6.450161711509718,
+ -4.2766180930517805,
+ -5.281801130859447,
+ -3.8701637339165162,
+ -2.8014450809576457,
+ 8.741899395893967,
+ 8.714959461711924,
+ 8.580923274566517,
+ 8.16369252218626,
+ -7.777220821266372,
+ -8.426931440872803,
+ -8.894886426142072,
+ -9.143042161384184,
+ 1.6261465035950533,
+ 2.7875661663981877,
+ 4.331384679034087,
+ 5.2482884586173935,
+ -1.4946032234845306,
+ -2.7376552457818764,
+ -4.313911962871416,
+ -5.4895798034326715
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.678201939036158,
+ -5.056083618715112,
+ -4.228758289824055,
+ -3.44814890191782,
+ 5.304946998552251,
+ 4.993831259538742,
+ 4.269897672359082,
+ 3.6963803189490405,
+ -5.673436124861272,
+ -5.867035917325969,
+ -6.051289847687672,
+ -5.940511486836463,
+ 5.292086921009987,
+ 5.794956105774211,
+ 6.175869386511922,
+ 6.396755793817074,
+ -0.6644758593350553,
+ -1.5067385994847158,
+ -2.635129355273685,
+ -3.3409194056645792,
+ 0.6544785284020409,
+ 1.6058730757562283,
+ 2.8550416552794666,
+ 3.7413001571248006,
+ 5.1522640532657835,
+ 4.388509844562978,
+ 3.284597001101997,
+ 2.3718438885508766,
+ -4.669225804184376,
+ -4.194785100705238,
+ -3.3039216841175625,
+ -2.619720263134057,
+ 5.950724309711483,
+ 6.011773991211389,
+ 6.019534157697416,
+ 5.786410424303381,
+ -5.519412649590242,
+ -5.913817125445923,
+ -6.138534934315376,
+ -6.256673854351352,
+ 1.5465656935026415,
+ 2.3788022530289763,
+ 3.4864426556243884,
+ 4.036783434143613,
+ -2.321699865120302,
+ -3.2176049786503405,
+ -3.5647060773017936,
+ -2.8881258996432155,
+ 5.91660290971312,
+ 6.034632850671968,
+ 6.127894697766025,
+ 5.964751418522307,
+ -5.258344140078636,
+ -5.8463735523811104,
+ -6.3634650515183555,
+ -6.674638730720428,
+ 0.23228094110635805,
+ 1.12919014110087,
+ 2.3363154722261057,
+ 3.097000377755573,
+ -0.1686382136837108,
+ -1.0767714365131158,
+ -2.2891103010061444,
+ -3.1914552189816474
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -8.734120615551,
+ -7.926921190631265,
+ -6.856828418150253,
+ -5.783239575164173,
+ 8.13621102856669,
+ 7.812930382282754,
+ 6.910139413636025,
+ 6.179134041195804,
+ -7.822197274654793,
+ -8.237491833998275,
+ -8.691802552825859,
+ -8.66768461003496,
+ 7.304396284351082,
+ 8.15284785541566,
+ 8.886799753723261,
+ 9.341002980019665,
+ -0.0074830269371450805,
+ -1.2843298338746063,
+ -3.0078712305367783,
+ -4.1241597620203105,
+ 0.08545786368496662,
+ 1.4605180713331616,
+ 3.311306978733829,
+ 4.633938608329128,
+ 8.032952468177863,
+ 7.005500677031219,
+ 5.504821810396411,
+ 4.22417608470819,
+ -7.279999083135,
+ -6.715497277929683,
+ -5.562896223886556,
+ -4.665841224798642,
+ 8.251599301263964,
+ 8.477807598785823,
+ 8.679659590721538,
+ 8.479269787797076,
+ -7.659722563008849,
+ -8.355125189847232,
+ -8.866677418707466,
+ -9.174722521350748,
+ 1.3462348728116917,
+ 2.616042411277077,
+ 4.3166156089200465,
+ 5.227480845723284,
+ -2.6053301295014855,
+ -3.9660013384538493,
+ -5.700159035895023,
+ -5.023278965034138,
+ 8.165592414807712,
+ 8.470965942591535,
+ 8.792048840829516,
+ 8.69157403151518,
+ -7.251520476756203,
+ -8.218132083824734,
+ -9.141292676429797,
+ -9.720500377913758,
+ -0.5873434689520174,
+ 0.7663996466863523,
+ 2.6020263217808854,
+ 3.798365640805542,
+ 0.6486327018236374,
+ -0.6745671265934483,
+ -2.4998844991397045,
+ -3.856730017863
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -9.398883108688942,
+ -8.716789101355854,
+ -7.817513770900742,
+ -6.820598215823921,
+ 8.725846761843991,
+ 8.571404358452073,
+ 7.862462690470343,
+ 7.264151962358739,
+ -7.290583167464981,
+ -7.883874309879285,
+ -8.585668327895224,
+ -8.741954328710037,
+ 6.819065469204741,
+ 7.8254637025519465,
+ 8.799706555173426,
+ 9.431051548167124,
+ 1.2559712743315763,
+ -0.0947500404165465,
+ -1.9343581293276042,
+ -3.1737974454568354,
+ -1.0557601980547353,
+ 0.3138757574967566,
+ 2.217496537612864,
+ 3.590217714346515,
+ 8.778675325220068,
+ 7.856587451022178,
+ 6.487545722025768,
+ 5.263085448310339,
+ -7.956015945386718,
+ -7.554454515183941,
+ -6.585358899840737,
+ -5.813596399304681,
+ 7.756257514222994,
+ 8.164509433689853,
+ 8.61832703574478,
+ 8.599772591200715,
+ -7.208484166757969,
+ -8.067364454244178,
+ -8.824528297628705,
+ -9.313399415544115,
+ 0.16216858904791911,
+ 1.5157584739077212,
+ 3.3417999949003603,
+ 4.402148492621673,
+ -1.6003114591954646,
+ -3.0428723459340623,
+ -4.92794619418867,
+ -6.129195675321991,
+ 7.62194197677579,
+ 8.104818696719855,
+ 8.671635183352123,
+ 8.750972791920493,
+ -6.760952781387893,
+ -7.878517733670785,
+ -9.031131501035249,
+ -9.77971055401109,
+ -1.8089011891840707,
+ -0.38435107909624366,
+ 1.5646320731207464,
+ 2.8847486972858456,
+ 1.8292515667851088,
+ 0.49712997364523737,
+ -1.4179247953308338,
+ -2.8392619470701965
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.718487462639022,
+ -5.442609145196007,
+ -5.083607567537597,
+ -4.595185488320437,
+ 5.2869073379501135,
+ 5.33721084742401,
+ 5.101692950272083,
+ 4.878125218721065,
+ -3.595260399430266,
+ -4.065407695850225,
+ -4.651178868333498,
+ -4.882180558469041,
+ 3.3722887587604986,
+ 4.054238862115599,
+ 4.78453648738663,
+ 5.274990473229759,
+ 1.7068665361640316,
+ 0.9024406601673319,
+ -0.2055456252477781,
+ -0.988129038642353,
+ -1.498316329835277,
+ -0.7470981198745942,
+ 0.3454515197459177,
+ 1.1429249243378128,
+ 5.441320133526875,
+ 5.017203362631753,
+ 4.367606499640517,
+ 3.7372146665780197,
+ -4.931549666153345,
+ -4.84079442474986,
+ -4.453458767649212,
+ -4.128264192778903,
+ 3.881264429740425,
+ 4.252581236976686,
+ 4.705151412025723,
+ 4.840849663880955,
+ -3.614476190125991,
+ -4.21948571423269,
+ -4.834299994535127,
+ -5.249113877943421,
+ -0.860823708149368,
+ -0.04686371846310383,
+ 1.061183835747367,
+ 1.7661036749064012,
+ -0.07623685332425406,
+ -0.9377594833271828,
+ -2.098796163946098,
+ -2.934424665143586,
+ 3.7683974727319582,
+ 4.177237720426912,
+ 4.687143114417796,
+ 4.875220818215306,
+ -3.3360274908864205,
+ -4.0736911081383935,
+ -4.893690605638909,
+ -5.4425815421286075,
+ -1.9782705384822052,
+ -1.1355782351764703,
+ 0.030570638365943547,
+ 0.8581632103945351,
+ 1.9566410708362072,
+ 1.2146044293268625,
+ 0.086128193674797,
+ -0.7497231899939389
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.5055473317285233,
+ -3.193270576055204,
+ -4.129452833298688,
+ -4.601999116707003,
+ 2.18806126902192,
+ 3.048615469573818,
+ 4.083541910398784,
+ 4.801944118545811,
+ 3.3097827754205467,
+ 2.469244066837202,
+ 1.2897149059912911,
+ 0.3985531472292777,
+ -3.0360237429885615,
+ -2.3324992190286427,
+ -1.2130805803076579,
+ -0.3801864803726931,
+ 6.22698904606206,
+ 5.975561551477649,
+ 5.5556119738609615,
+ 5.047187521294468,
+ -5.631484297382071,
+ -5.779505905574516,
+ -5.682403029840583,
+ -5.55222689745539,
+ 2.966370127621221,
+ 3.5762347628167426,
+ 4.357316606439291,
+ 4.747162382832246,
+ -2.6892737504449946,
+ -3.542040657482454,
+ -4.548027460036971,
+ -5.244598577087014,
+ -3.1689085397471763,
+ -2.2917470890603195,
+ -1.06786020022648,
+ -0.15409585712572305,
+ 2.8993580909492724,
+ 2.155076586361132,
+ 0.9898202383528898,
+ 0.12587780120965694,
+ -5.953851365511319,
+ -5.652976926586828,
+ -5.184669938284533,
+ -4.528358581307563,
+ 5.182562809474754,
+ 4.899030346325584,
+ 4.30827834928436,
+ 3.838958691330479,
+ -3.3993880725584065,
+ -2.5515849446091123,
+ -1.368926715346551,
+ -0.4739447692612295,
+ 3.057167094965707,
+ 2.3985284090440846,
+ 1.3492082336616644,
+ 0.5656332422030222,
+ -5.968053599521519,
+ -5.738525711402519,
+ -5.341818893245535,
+ -4.837368006740537,
+ 5.760899893746342,
+ 5.833649551737081,
+ 5.552428690142289,
+ 5.354296688480533
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.8114134807728623,
+ -4.10497210981941,
+ -5.861185682901823,
+ -6.834525924374087,
+ 2.3723055168137055,
+ 3.8791010012930682,
+ 5.774924283342524,
+ 7.107914892883208,
+ 6.866700915835475,
+ 5.5140090897328005,
+ 3.5948520961801282,
+ 2.085057214426475,
+ -6.319781099655649,
+ -5.269155575724656,
+ -3.4971135558926005,
+ -2.163675973589231,
+ 10.523458801091497,
+ 10.306544714075127,
+ 9.87761261145547,
+ 9.200282279755534,
+ -9.529885638316,
+ -10.003947275467526,
+ -10.141278106822574,
+ -10.136708484051185,
+ 3.70429241916331,
+ 4.90215671185446,
+ 6.466408564656611,
+ 7.3337237625913865,
+ -3.358684041268488,
+ -4.891605190178607,
+ -6.779210100862942,
+ -8.102353266296168,
+ -6.698585452920499,
+ -5.253215304723258,
+ -3.2179889379519793,
+ -1.641293621490577,
+ 6.146713490715733,
+ 5.002292606953185,
+ 3.1165756877299278,
+ 1.7068704312291132,
+ -10.279940931840972,
+ -9.978326003238312,
+ -9.463939992127454,
+ -8.503258803062852,
+ 9.181685172683208,
+ 8.924172117328316,
+ 8.208350470579614,
+ 7.615137935366023,
+ -6.931032987379883,
+ -5.69116985068037,
+ -3.745028385632892,
+ -2.2163430041271255,
+ 6.346897523916697,
+ 5.391362334308585,
+ 3.7685851786383417,
+ 2.5388438393131825,
+ -9.989043449223917,
+ -9.82165795463432,
+ -9.45025483373717,
+ -8.79267575783117,
+ 9.62901794862827,
+ 9.967440758601354,
+ 9.789504529623,
+ 9.675676410397246
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.5354189065657629,
+ -2.824334263622894,
+ -4.571128713510398,
+ -5.597244171535615,
+ 1.2031230574632366,
+ 2.6300435163311047,
+ 4.485239396651649,
+ 5.801279158886343,
+ 7.2689826078152935,
+ 6.073148319069261,
+ 4.3602546645538585,
+ 2.966678788172322,
+ -6.70272157119651,
+ -5.837398830098344,
+ -4.293763255365241,
+ -3.1203600216182847,
+ 9.69401161254586,
+ 9.648321530020802,
+ 9.46125625561698,
+ 8.972100422365639,
+ -8.788247183731391,
+ -9.39086541455556,
+ -9.740740347271808,
+ -9.896165729681185,
+ 2.4424726835831385,
+ 3.66982769850539,
+ 5.291776504606312,
+ 6.245223427691271,
+ -2.2150118077766723,
+ -3.695110574057662,
+ -5.572887264760026,
+ -6.899897875073692,
+ -7.16595874488788,
+ -5.861937201724153,
+ -4.011662193154368,
+ -2.5351895840923278,
+ 6.586195767486792,
+ 5.616006383369319,
+ 3.9408229600182043,
+ 2.6795294386036965,
+ -9.631288515534688,
+ -9.506731285618587,
+ -9.238182686951815,
+ -8.46324024032069,
+ 8.771656249310528,
+ 8.698687799432514,
+ 8.248651246957532,
+ 7.850345017312651,
+ -5.5926634257618675,
+ -6.264509319256495,
+ -4.510680518460899,
+ -3.090488831955965,
+ 6.721316565323413,
+ 5.957842353994178,
+ 4.5745304010752035,
+ 3.5117286497308258,
+ -9.129971833215624,
+ -9.139183267031147,
+ -9.018635746243374,
+ -8.557334394523021,
+ 8.790956760072145,
+ 9.262379437222052,
+ 9.318789086485703,
+ 9.377706413483619
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.1830483779474001,
+ -1.118848550627764,
+ -2.384793075982783,
+ -3.1712056295024444,
+ 0.019244444379198825,
+ 1.000433143654489,
+ 2.32248021893511,
+ 3.269019337851653,
+ 5.591776455487419,
+ 4.8354322017645766,
+ 3.7385505428593198,
+ 2.8083129996026606,
+ -5.164969670415715,
+ -4.670323161915895,
+ -3.7130154348159596,
+ -2.9753460061087784,
+ 6.455528156430731,
+ 6.547805689275394,
+ 6.588873593006109,
+ 6.370438015466704,
+ -5.859913213099724,
+ -6.393308242351825,
+ -6.804128672229389,
+ -7.034719765338161,
+ 0.8543947514566301,
+ 1.770370124702418,
+ 2.994563334105347,
+ 3.752486602022984,
+ -0.7752949090081964,
+ -1.8150731747906224,
+ -3.176161676303547,
+ -4.145962578396031,
+ -5.56444150438375,
+ -4.717889663161417,
+ -3.505271496389196,
+ -2.5028976138411054,
+ 5.121525964620035,
+ 4.542345971862963,
+ 3.4760745768450545,
+ 2.665837649097035,
+ -6.542413040008059,
+ -6.581500010484233,
+ -6.566104638238133,
+ -6.1376360614349075,
+ 6.091016983541275,
+ 6.1731862987968125,
+ 6.0401735631946005,
+ 5.8928750898910565,
+ -3.0937327543532196,
+ -3.7574176027384074,
+ -3.848345710722476,
+ -2.8930482624786142,
+ 5.17227005815825,
+ 4.756794701959333,
+ 3.9244216047260294,
+ 3.2724092534709714,
+ -6.022798531146376,
+ -6.159021994523123,
+ -6.2551520928811755,
+ -6.062956164667086,
+ 5.791173869076588,
+ 6.232228034919978,
+ 6.445195313800688,
+ 6.614813837818024
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.6430808513831977,
+ -0.7151633686187744,
+ -2.5503512328304594,
+ -3.7321646854582093,
+ -0.8052836606896422,
+ 0.5653809937963835,
+ 2.4599535915946293,
+ 3.8250508828707215,
+ 8.422529820159236,
+ 7.433871161014706,
+ 5.984955405677338,
+ 4.714325317313275,
+ -7.787757642538209,
+ -7.20013230981,
+ -5.970072822749044,
+ -5.0108494524523515,
+ 8.801394738123237,
+ 9.05768743419569,
+ 9.289819654226047,
+ 9.10611736438907,
+ -7.9973795760453,
+ -8.865072051545463,
+ -9.614281583983862,
+ -10.063812248843556,
+ 0.34380497407058563,
+ 1.6975323780024685,
+ 3.5198077166038924,
+ 4.683943737127875,
+ -0.3129221827781636,
+ -1.7881130058933428,
+ -3.7614401555685744,
+ -5.175219778200066,
+ -8.42914970079253,
+ -7.298189134233681,
+ -5.665691999018856,
+ -4.278705631376711,
+ 7.764846407228348,
+ 7.046337511523057,
+ 5.6450018881717305,
+ 4.57191207018869,
+ -9.056662481342112,
+ -9.239722651000369,
+ -9.392532822671715,
+ -8.90150456433058,
+ 8.56996690568375,
+ 8.821046206703944,
+ 8.816944443342734,
+ 8.741541724205005,
+ -3.5473987021995224,
+ -4.580983976181348,
+ -5.936872267032824,
+ -4.8322838766462874,
+ 7.792306154353442,
+ 7.324688430873502,
+ 6.284285702349427,
+ 5.454611515149957,
+ -8.1506761508253,
+ -8.474737813017619,
+ -8.793389776123824,
+ -8.653640393119955,
+ 7.828645376819054,
+ 8.565152171569958,
+ 9.042031188798331,
+ 9.411936413935436
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.814215508490771,
+ 0.4734343320102165,
+ -1.335256111425019,
+ -2.554299046431449,
+ -1.8762877937780336,
+ -0.5926238639990753,
+ 1.2460788971697474,
+ 2.582290314187807,
+ 8.711998263628114,
+ 7.877666444700342,
+ 6.633130547378017,
+ 5.482065566155146,
+ -8.065538731921407,
+ -7.654595875557486,
+ -6.647224439560571,
+ -5.844973590649672,
+ 7.950657315634141,
+ 8.362453561754814,
+ 8.815506673027542,
+ 8.807217485865854,
+ -7.235465358519216,
+ -8.213359465200252,
+ -9.151416438445667,
+ -9.744214602720456,
+ -0.8238258695736111,
+ 0.5439781285771281,
+ 2.401810081183985,
+ 3.63412552767869,
+ 0.7453930086084144,
+ -0.6667446737848218,
+ -2.611856601233709,
+ -4.015487268248453,
+ -8.77861463967017,
+ -7.789051366688413,
+ -6.343050526832652,
+ -5.061998277626826,
+ 8.09502154198012,
+ 7.544249449146405,
+ 6.350772148671454,
+ 5.425035351231627,
+ -8.37026962071298,
+ -8.714926702013424,
+ -9.093091089790388,
+ -8.778210317352885,
+ 8.108476833008938,
+ 8.527401327156758,
+ 8.768582199897516,
+ 8.873753291377346,
+ -2.278050964901626,
+ -3.3895786239321573,
+ -4.864883513685701,
+ -5.591981657911058,
+ 8.062180278107986,
+ 7.776316500791929,
+ 6.966965683418248,
+ 6.2993785812643655,
+ -7.278917661545882,
+ -7.762782989154778,
+ -8.309810402977329,
+ -8.352524591998993,
+ 6.979398014328384,
+ 7.831479148275905,
+ 8.51996467891581,
+ 9.045674952269664
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.5446653520550546,
+ 1.7257103755184482,
+ 0.624489407840022,
+ -0.18396091341173645,
+ -2.463158645467555,
+ -1.7635948215058836,
+ -0.6788883771118853,
+ 0.12346947401457818,
+ 5.8058025175066375,
+ 5.468679442902842,
+ 4.934759743561753,
+ 4.357418515486751,
+ -5.386766188213734,
+ -5.341760752722552,
+ -4.978429175792577,
+ -4.664584741232287,
+ 3.9579132436282127,
+ 4.4028599875278145,
+ 4.952307778019401,
+ 5.1580243200311875,
+ -3.6166682088898283,
+ -4.361786017557372,
+ -5.176507727249249,
+ -5.7201336267819345,
+ -1.9200085598074712,
+ -1.0462027861521914,
+ 0.16041479335064662,
+ 1.0143927976393605,
+ 1.739436549962075,
+ 0.9305948912288338,
+ -0.2540238860497676,
+ -1.1211460026052766,
+ -5.919672618453152,
+ -5.4697565977107185,
+ -4.788123817650308,
+ -4.1129608487840255,
+ 5.46823253967107,
+ 5.324873157814827,
+ 4.82712222794988,
+ 4.424352144870886,
+ -4.41838650225141,
+ -4.828599357265926,
+ -5.336462490669146,
+ -5.3509932970743375,
+ 4.524796402221767,
+ 4.989047829359657,
+ 5.435056753880901,
+ 5.71805716649711,
+ 0.0990929903831531,
+ -0.6909543266888445,
+ -1.7587620354762155,
+ -2.4545870751162164,
+ 5.375155259406548,
+ 5.41460514321642,
+ 5.185382805772454,
+ 4.962049968249361,
+ -3.5118173390215373,
+ -4.0070830870493905,
+ -4.624365512460705,
+ -4.870511066092166,
+ 3.3512453469630596,
+ 4.024005728616024,
+ 4.7097443758234,
+ 5.2264167334237674
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.850409196306769,
+ 3.0259183767665734,
+ 3.2702758896618067,
+ 3.2925934897026106,
+ -2.585584045367862,
+ -2.935260750271144,
+ -3.2584502114745106,
+ -3.4630375643900773,
+ -0.09900499825038744,
+ 0.3809850026969596,
+ 1.0302256663991771,
+ 1.451171940836442,
+ 0.06635040915044947,
+ -0.430248448830938,
+ -1.103745472365701,
+ -1.5874537777974265,
+ -2.9718580489943576,
+ -2.6099984973183585,
+ -2.083078294082612,
+ -1.6289136224041523,
+ 2.6727484848483107,
+ 2.483019174958097,
+ 2.0861545064479614,
+ 1.7735196328243048,
+ -2.9376575498555515,
+ -3.03427956393271,
+ -3.1230356377358515,
+ -3.066653097354901,
+ 2.6627557675352254,
+ 2.9630320595277517,
+ 3.225094687014734,
+ 3.3878118444210936,
+ -0.049579463427515805,
+ -0.5112472741329575,
+ -1.133857677356765,
+ -1.532214163314787,
+ 0.06619616772900766,
+ 0.553271557301203,
+ 1.2065375263619675,
+ 1.677391633726485,
+ 2.58790878777478,
+ 2.2037722958311075,
+ 1.6581119813793965,
+ 1.172236747672655,
+ -1.9811866987935405,
+ -1.5881230546591982,
+ -0.9776372697071651,
+ -0.5211673446738897,
+ 3.502168846072296,
+ 3.4088085186150088,
+ 3.2436304321160354,
+ 3.004225780467126,
+ -0.08645952301089048,
+ 0.4110841357157755,
+ 1.0869424814221507,
+ 1.5707749725174178,
+ 2.9608684321913414,
+ 2.59490303584548,
+ 2.0578542802755107,
+ 1.5904270089034604,
+ -2.8735631361941043,
+ -2.657714070602887,
+ -2.1777601402053306,
+ -1.8261981832196563
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.9833534202885987,
+ 3.591277735559058,
+ 4.420722700809474,
+ 4.8042766713667335,
+ -2.638817332288961,
+ -3.4447271568536686,
+ -4.380101072906573,
+ -5.022530597497662,
+ -2.6665466436616003,
+ -1.8312577028437933,
+ -0.6675525968702383,
+ 0.18747128804865998,
+ 2.437486796518467,
+ 1.7053863451128173,
+ 0.5810531844571067,
+ -0.24944879187360858,
+ -5.985076742322494,
+ -5.659345349890487,
+ -5.142220642662977,
+ -4.580025198103019,
+ 5.407526755507464,
+ 5.459292718102927,
+ 5.244121585275281,
+ 5.031926747530027,
+ -3.3801539657652455,
+ -3.8987395666686337,
+ -4.550752917251129,
+ -4.84118262507802,
+ 3.0642355002447905,
+ 3.846780946746151,
+ 4.737892826806682,
+ 5.34840700671059,
+ 2.502867605804233,
+ 1.6448228693005809,
+ 0.45509852038254245,
+ -0.410048102267543,
+ -2.2827294014746053,
+ -1.521526950852852,
+ -0.367773232669422,
+ 0.4829521042680715,
+ 5.634401817257453,
+ 5.261603907979955,
+ 4.699508538505335,
+ 4.008682263939122,
+ -4.810132860310679,
+ -4.4480232476190835,
+ -3.7660192653785485,
+ -3.234120937954261,
+ 4.981901920970857,
+ 5.191476592644122,
+ 5.418781942637005,
+ 5.377839027607741,
+ -2.4612911102607695,
+ -1.7645580890588894,
+ -0.6951505310802144,
+ 0.0961731740086333,
+ 5.775336174095209,
+ 5.465593446621099,
+ 4.963432075293901,
+ 4.399786591194175,
+ -5.580248319845852,
+ -5.563074457318859,
+ -5.172600298952554,
+ -4.892832016618848
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.5869526460120302,
+ 3.7597083053046583,
+ 5.352006183896954,
+ 6.2327548757914935,
+ -2.185685537149441,
+ -3.554004996802634,
+ -5.273798691710659,
+ -6.482669935584598,
+ -6.2125862395540885,
+ -4.981645905580127,
+ -3.2357160449704683,
+ -1.8635840130906265,
+ 5.717383287641639,
+ 4.7594112980756345,
+ 3.146175432366892,
+ 1.9325935493751087,
+ -9.564514940093686,
+ -9.36272924410329,
+ -8.96662270093328,
+ -8.346957831355926,
+ 8.661194788490437,
+ 9.087065160702608,
+ 9.205160509135448,
+ 9.196203782782941,
+ -3.3959243608040115,
+ -4.480905623745371,
+ -5.897169896857591,
+ -6.6808027541520145,
+ 3.0790738952492616,
+ 4.470262351118946,
+ 6.1816793025151435,
+ 7.380997368876006,
+ 6.058230298023119,
+ 4.743743371823923,
+ 2.8932374577222038,
+ 1.4609412545859426,
+ -5.558795460844134,
+ -4.516130758160357,
+ -2.8003859642847684,
+ -1.5180168690925502,
+ 9.338324799514549,
+ 9.059581930810301,
+ 8.585891632637122,
+ 7.709441417734353,
+ -8.33557136997232,
+ -8.096581737674418,
+ -7.439689011321308,
+ -6.896074699809144,
+ 6.32328069678928,
+ 6.972652523465287,
+ 7.778774571406307,
+ 8.062290361380194,
+ -5.5992146086976975,
+ -4.870245271310703,
+ -3.391985809856984,
+ -2.272197189859851,
+ 9.080956764665556,
+ 8.923907258025752,
+ 8.579680493314802,
+ 7.977676391241045,
+ -8.753960023896045,
+ -9.056739580869294,
+ -8.888388100038435,
+ -8.78000446246963
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.3723430711925377,
+ 2.616873266428219,
+ 4.303243816587492,
+ 5.2989223563491405,
+ -1.060651408034558,
+ -2.4319517482075947,
+ -4.2203176247059835,
+ -5.489979061187245,
+ -7.055833497640041,
+ -5.914411430653692,
+ -4.27785945433522,
+ -2.941918397663827,
+ 6.507217622737287,
+ 5.687496255403555,
+ 4.216347395986997,
+ 3.096866516903256,
+ -9.29126968538252,
+ -9.261990958382555,
+ -9.102288937694297,
+ -8.646147409049263,
+ 8.424029850743295,
+ 9.017235798141721,
+ 9.373608163250042,
+ 9.537608099986256,
+ -2.24967448186417,
+ -3.4377058338160524,
+ -5.009312681488353,
+ -5.937695795106657,
+ 2.0402236911676552,
+ 3.4652343015049234,
+ 5.278082027851042,
+ 6.56014576217958,
+ 6.961971344124626,
+ 5.714708485301308,
+ 3.9436144571265705,
+ 2.5262178521381298,
+ -6.399572634318072,
+ -5.4776027077802505,
+ -3.8778445538069013,
+ -2.6724643542704065,
+ 9.246369350266995,
+ 9.141420731840904,
+ 8.90336031238732,
+ 8.170972957046132,
+ -8.436769402721884,
+ -8.382298598808607,
+ -7.970673537523549,
+ -7.602865432088492,
+ 5.285729411919151,
+ 6.0810455728406305,
+ 7.095809044790935,
+ 7.553761220802144,
+ -4.670548605578815,
+ -5.803676874711044,
+ -4.488340068875895,
+ -3.4762855236945547,
+ 8.74390729023946,
+ 8.768122701246623,
+ 8.673448313802162,
+ 8.24491366073371,
+ -8.418283100634216,
+ -8.885155775998125,
+ -8.959968069011174,
+ -9.031859147746808
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.07937945220808733,
+ 1.0268089659175008,
+ 2.3082248848751354,
+ 3.1091194878084223,
+ 0.0776528767619405,
+ -0.9094971072433166,
+ -2.24514288063882,
+ -3.2024266158419135,
+ -5.696996217404446,
+ -4.943973833558628,
+ -3.8501467433077634,
+ -2.9176218284982434,
+ 5.263102469432536,
+ 4.777501320077363,
+ 3.826880023034713,
+ 3.0930361914549582,
+ -6.46949679654918,
+ -6.577185682959519,
+ -6.638876964606483,
+ -6.433271732667121,
+ 5.873530302824159,
+ 6.4244552543618365,
+ 6.858210124182712,
+ 7.105055450137407,
+ -0.7605232863615254,
+ -1.690709571709798,
+ -2.9354146210249144,
+ -3.7102256611664104,
+ 0.6902244225080083,
+ 1.7389639720995937,
+ 3.116711476479265,
+ 4.099285408528334,
+ 5.674718601796645,
+ 4.829041819951137,
+ 3.616221475292883,
+ 2.609304938965687,
+ -5.223798883167922,
+ -4.651659010329087,
+ -3.5891900021841305,
+ -2.7808812540016854,
+ 6.572518983033905,
+ 6.626819084207226,
+ 6.631652052215384,
+ 6.213114746479881,
+ -6.135153881340962,
+ -6.233711547756701,
+ -6.121074415080167,
+ -5.988078984126429,
+ 3.0222527865605016,
+ 3.7023804952848254,
+ 4.586906690402337,
+ 5.045985026653917,
+ -2.661650011286079,
+ -3.636606137883188,
+ -4.041772871588551,
+ -3.3952596417304943,
+ 6.028749745493161,
+ 6.181395230576047,
+ 6.2996025410606356,
+ 6.121247145573064,
+ -5.795896851947293,
+ -6.253664527412949,
+ -6.4888373933030605,
+ -6.674986704456255
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.7786334789287528,
+ 0.6388337466565192,
+ 2.553776040852886,
+ 3.791898563576751,
+ 0.9389711046590471,
+ -0.48513371989369247,
+ -2.459442127714265,
+ -3.883027975674145,
+ -8.826033150513917,
+ -7.80717585135778,
+ -6.312016366944685,
+ -4.995393642625083,
+ 8.161773870778369,
+ 7.563943930081496,
+ 6.2991088737403205,
+ 5.311245997627561,
+ -9.11792216637159,
+ -9.399865745678287,
+ -9.662530416132356,
+ -9.486593312517753,
+ 8.28600449475541,
+ 9.202593410567458,
+ 10.002563584358663,
+ 10.485281877467381,
+ -0.25275922632195963,
+ -1.6683825054234487,
+ -3.5754908802832417,
+ -4.797965824949734,
+ 0.23045871959171663,
+ 1.765952869073876,
+ 3.825063001695404,
+ 5.3012189530679645,
+ 8.838418627128526,
+ 7.6697092660816635,
+ 5.981118370731205,
+ 4.541686971549767,
+ -8.142612954828666,
+ -7.407223715478168,
+ -5.962091839812353,
+ -4.854387286337062,
+ 9.399600817174749,
+ 9.605588375866907,
+ 9.7857835225228,
+ 9.288826988039627,
+ -8.91161541859326,
+ -9.189237225159784,
+ -9.207311407223404,
+ -9.144993398321274,
+ 3.590520396593433,
+ 4.677489195316174,
+ 6.1049727379649665,
+ 6.894484172191966,
+ -3.1511517392704977,
+ -4.613024538803412,
+ -6.419884346924382,
+ -5.775847539407281,
+ 8.436151619366345,
+ 8.789290495329043,
+ 9.143028358087273,
+ 9.013654853411422,
+ -8.101754105850487,
+ -8.881773325617077,
+ -9.399294173290286,
+ -9.799964731935498
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.9575558817354362,
+ -0.4838485959833389,
+ 1.5042467299358269,
+ 2.8425231431186178,
+ 2.028818202417018,
+ 0.6157423984451514,
+ -1.406226612164792,
+ -2.8752620869520817,
+ -9.563395372239224,
+ -8.641961843245063,
+ -7.2682895420621145,
+ -5.9999104050928995,
+ 8.853459988879596,
+ 8.396538581315248,
+ 7.282889327452037,
+ 6.396623656285086,
+ -8.761732292585265,
+ -9.209436837859501,
+ -9.700472326022279,
+ -9.68600247416768,
+ 7.973205168433465,
+ 9.044290401584288,
+ 10.069200770132166,
+ 10.71615388770271,
+ 0.8694796413025089,
+ -0.6329546503851505,
+ -2.6731469465040267,
+ -4.025060339833964,
+ -0.7866437534500089,
+ 0.7668596065089965,
+ 2.9048995588326423,
+ 4.44743868981424,
+ 9.63475560433147,
+ 8.543157901882907,
+ 6.9486741622389285,
+ 5.5378891521084475,
+ -8.884252375308684,
+ -8.273968093933231,
+ -6.956289727092988,
+ -5.934638835526951,
+ 9.217754376065036,
+ 9.591504000767458,
+ 10.00012054793889,
+ 9.64876300698252,
+ -8.923236479547631,
+ -9.378395874447342,
+ -9.63589360680923,
+ -9.745929658196834,
+ 2.5417941085452367,
+ 3.7606943492888987,
+ 5.378024324822841,
+ 6.330212813780343,
+ -2.2130959433763437,
+ -3.7370931610373215,
+ -5.677067276567085,
+ -6.895572462857976,
+ 8.024305848959823,
+ 8.551064330026891,
+ 9.145125541466957,
+ 9.1864797664042,
+ -7.694522689562554,
+ -8.627207625865019,
+ -9.377207512520972,
+ -9.950065052703609
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.0181052728734663,
+ -1.168386723862554,
+ -0.02426804064078975,
+ 0.7868968902407496,
+ 1.9852567474477232,
+ 1.2228164996859419,
+ 0.08074116617829043,
+ -0.7577359891238078,
+ -5.814072318533891,
+ -5.3895815077240306,
+ -4.737619546874094,
+ -4.084136561661872,
+ 5.389765531546062,
+ 5.253852819927093,
+ 4.767744900693578,
+ 4.365811918626444,
+ -4.495670712571954,
+ -4.873563411260704,
+ -5.32553812168247,
+ -5.447695714204094,
+ 4.1002047460539615,
+ 4.809294892680167,
+ 5.549920557821722,
+ 6.035343312072224,
+ 1.3785252137626653,
+ 0.48850233209288146,
+ -0.7323254617455489,
+ -1.5745217286597235,
+ -1.2486259723082593,
+ -0.3861444888174285,
+ 0.84447405842989,
+ 1.7399341895233356,
+ 5.9005261258980575,
+ 5.366790983204119,
+ 4.572246062899106,
+ 3.825246378580108,
+ -5.446809040453767,
+ -5.2144544000424995,
+ -4.597862227270358,
+ -4.109509824738766,
+ 4.885016394465272,
+ 5.224152805715833,
+ 5.631180099173636,
+ 5.556667136937754,
+ -4.880085522120523,
+ -5.271533067907286,
+ -5.604934377466117,
+ -5.803822111621349,
+ 0.542721269472078,
+ 1.3143206760128991,
+ 2.3500503001924584,
+ 3.0008302592984473,
+ -0.45244324078718495,
+ -1.334352046541815,
+ -2.500500490324436,
+ -3.3286545255325364,
+ 4.048319670502067,
+ 4.475693590990272,
+ 4.9935319323296135,
+ 5.153619915542679,
+ -3.872025096181282,
+ -4.504095316853021,
+ -5.1007340722209715,
+ -5.552117119346135
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.726944764943545,
+ -5.606867652321003,
+ -5.4585787734982985,
+ -5.102065093598078,
+ 5.269923365760098,
+ 5.482289584391239,
+ 5.46629078428222,
+ 5.400100569820071,
+ -2.656860740294712,
+ -3.2502878286229104,
+ -4.015210839433139,
+ -4.399160432671672,
+ 2.505318638098385,
+ 3.2664649069395875,
+ 4.152282400646836,
+ 4.762850546384523,
+ 2.767876417040001,
+ 1.9817784339512252,
+ 0.8848096413847515,
+ 0.06908963364983149,
+ -2.4616276341596257,
+ -1.8014799056960318,
+ -0.781033132238274,
+ -0.02473337593748124,
+ 5.561852081498074,
+ 5.290823621381486,
+ 4.846143687932883,
+ 4.34349065110986,
+ -5.040945703633382,
+ -5.122479909201572,
+ -4.961698550891172,
+ -4.79811584188034,
+ 2.946294125656627,
+ 3.4561848976397442,
+ 4.107553783880326,
+ 4.408492309295336,
+ -2.7537663823965786,
+ -3.452244450499977,
+ -4.241037903387755,
+ -4.788254615836006,
+ -1.9394284454514799,
+ -1.1350368432583573,
+ -0.02866993968137633,
+ 0.7444149143400197,
+ 0.9312969311140247,
+ 0.08664843347401889,
+ -1.0919553009964105,
+ -1.9487544494537798,
+ -5.569629233291084,
+ -5.0396508709778285,
+ -4.261865612938953,
+ -3.5472810534919463,
+ 4.975166935630247,
+ 4.830999871780227,
+ 4.375049106497207,
+ 3.994159952695698,
+ -2.9666866701623533,
+ -2.149735366888868,
+ -1.0039312369401616,
+ -0.1477128900613261,
+ 2.9068370122989906,
+ 2.2405658641500845,
+ 1.1516114891621354,
+ 0.3469973899293093
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -9.589915675478714,
+ -9.617713314560438,
+ -9.678903287785888,
+ -9.276235862497021,
+ 8.788281551150844,
+ 9.381231304712632,
+ 9.676579519293956,
+ 9.796808332818301,
+ -3.066295225366156,
+ -4.239608638107781,
+ -5.78170670986346,
+ -6.648231106410625,
+ 2.917672198959028,
+ 4.306787618876354,
+ 6.016389061788517,
+ 7.213723492985525,
+ 6.185719332920579,
+ 4.89797431609173,
+ 3.0796151152136817,
+ 1.6668167676436714,
+ -5.530206808123531,
+ -4.559832175205457,
+ -2.95907679175459,
+ -1.7546870399067185,
+ 9.47827044085679,
+ 9.249642596049508,
+ 8.806656158534555,
+ 8.153473159849286,
+ -8.590788202988028,
+ -8.979945754119516,
+ -9.04348844490169,
+ -9.00705518357925,
+ 3.5553635703921067,
+ 4.611415702340214,
+ 5.9924387454911265,
+ 6.738175666301861,
+ -3.342351764630441,
+ -4.647605582425087,
+ -6.222033678544702,
+ -7.331453155284366,
+ -4.826074370099056,
+ -3.494882897268316,
+ -1.6471066016195264,
+ -0.2542117683806465,
+ 3.035833272743336,
+ 1.648037672736004,
+ -0.34878699766028975,
+ -1.8127265750645405,
+ -10.036673666761162,
+ -9.314992566526211,
+ -8.228470550783411,
+ -7.144973592896698,
+ 8.956260503337198,
+ 8.950437331009553,
+ 8.471952149155342,
+ 8.030848308139886,
+ -6.268676260635605,
+ -5.083217977879214,
+ -3.19687457728726,
+ -1.7229672632625241,
+ 6.255512254999799,
+ 5.2524398006172595,
+ 3.489308485678379,
+ 2.18954003679246
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -8.700230176349656,
+ -8.895993990481221,
+ -9.182137345314363,
+ -8.961629299487766,
+ 7.945886830945942,
+ 8.660681353105161,
+ 9.168674590169479,
+ 9.449930975977024,
+ -1.7515009011816698,
+ -2.949796924712393,
+ -4.543477249911632,
+ -5.496223000334576,
+ 1.6950109751874896,
+ 3.0406170782453072,
+ 4.760226866250649,
+ 5.976826472802792,
+ 6.7674776115936135,
+ 5.620509393423302,
+ 3.984662527416468,
+ 2.668019728435943,
+ -6.066451022674786,
+ -5.286742273885555,
+ -3.914977904428968,
+ -2.8685629788519003,
+ 8.721750220242388,
+ 8.682155411020432,
+ 8.505037873060877,
+ 8.052932308503118,
+ -7.905267624248269,
+ -8.446569404451123,
+ -8.752188386494105,
+ -8.89610374013009,
+ 2.198479134932396,
+ 3.3072499229219274,
+ 4.776463654929857,
+ 5.633202113870938,
+ -2.086735492281112,
+ -3.371966533043981,
+ -4.98928326042454,
+ -6.139662619653581,
+ -5.554546744281746,
+ -4.3586147228330265,
+ -2.685886262895881,
+ -1.3489319789886147,
+ 3.854311420414964,
+ 2.6150796272071544,
+ 0.7862018826423605,
+ -0.5636878725794587,
+ -9.6347451437467,
+ -9.10355043224019,
+ -8.27870828442888,
+ -7.380003347545967,
+ 8.59124816875205,
+ 8.761516609478717,
+ 8.539805024299492,
+ 8.286200624351633,
+ -4.987965298885437,
+ -5.717028540907208,
+ -4.029781708450007,
+ -2.662696663541174,
+ 6.709408678799106,
+ 5.883311165749115,
+ 4.328721898578164,
+ 3.1849905620162184
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -5.677596449506235,
+ -5.943380294501585,
+ -6.3167744934938055,
+ -6.2900728209162144,
+ 5.163410204205464,
+ 5.773009747331292,
+ 6.298799035688705,
+ 6.621698151857945,
+ -0.30909112709728187,
+ -1.19939538566345,
+ -2.396939058737489,
+ -3.1535304901367196,
+ 0.3356361281900668,
+ 1.28284126779658,
+ 2.5414930303833367,
+ 3.4409180371139882,
+ 5.351637997959483,
+ 4.620395918472951,
+ 3.5640583628562545,
+ 2.6765855547584136,
+ -4.808104489615962,
+ -4.380737132179041,
+ -3.5506916743824597,
+ -2.905246935639669,
+ 5.7910355470254595,
+ 5.90102556596539,
+ 5.96736336406843,
+ 5.786026888476995,
+ -5.249041399820738,
+ -5.75464411802276,
+ -6.1547829773068825,
+ -6.391930511574442,
+ 0.6034367035318667,
+ 1.4489622498357648,
+ 2.58281630681944,
+ 3.2877418470382467,
+ -0.5964830395599705,
+ -1.5170007831142223,
+ -2.7253603923981666,
+ -3.5925289638688285,
+ -4.576756676479734,
+ -3.8058340298926456,
+ -2.717177988768625,
+ -1.7853964058235396,
+ 3.405640718323175,
+ 2.612979295512277,
+ 1.4054846053873646,
+ 0.5069583781126018,
+ -6.71575872642823,
+ -6.469094976541486,
+ -6.061029183512,
+ -5.542759232365596,
+ 5.9835472036695245,
+ 6.236745190403442,
+ 6.2639549300091995,
+ 6.21709119592537,
+ -2.6891852409505748,
+ -3.3975955469161434,
+ -3.543919437396393,
+ -2.6275737686481384,
+ 5.215497650617669,
+ 4.744321848591476,
+ 3.7662256687915234,
+ 3.0485442000235934
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -7.617291246060718,
+ -8.12366297905796,
+ -8.827180338110109,
+ -8.918532905054281,
+ 6.903655320132627,
+ 7.8768454370377405,
+ 8.793091307292832,
+ 9.377528491752676,
+ 0.4902195437314625,
+ -0.8217918351517107,
+ -2.5994184052961455,
+ -3.7608225083555196,
+ -0.38579733925520165,
+ 0.9599833910854967,
+ 2.7967299136433175,
+ 4.117913811488774,
+ 8.19492995378483,
+ 7.232581219295769,
+ 5.827492060045259,
+ 4.60615880446446,
+ -7.372318404922662,
+ -6.887335945060639,
+ -5.8444008197978015,
+ -5.019057645253926,
+ 7.877344553522513,
+ 8.172305926748717,
+ 8.45871876278316,
+ 8.338810260338812,
+ -7.140228408528469,
+ -7.983898435783511,
+ -8.738527828732819,
+ -9.212121576267885,
+ -0.09243099950257501,
+ 1.1743088627838116,
+ 2.88551473388463,
+ 3.9895238302643703,
+ 0.030175263836929214,
+ -1.2935951651419602,
+ -3.0807316966038445,
+ -4.370529655294701,
+ -7.173389219145013,
+ -6.14941766668271,
+ -4.692015934276385,
+ -3.377538160122888,
+ 5.535353612175546,
+ 4.489289211242844,
+ 2.854067729344586,
+ 1.6294538571164852,
+ -9.47491815134871,
+ -9.252480863905848,
+ -8.846300252453089,
+ -8.224983124243183,
+ 8.436944036930777,
+ 8.93082701513415,
+ 9.153863454694468,
+ 9.219724026487723,
+ -2.9938755637802874,
+ -4.095483701059594,
+ -5.538656698687381,
+ -4.490987083989969,
+ 7.905667468173235,
+ 7.347221200185408,
+ 6.0744650375376885,
+ 5.142732842406278
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -6.694424416778344,
+ -7.349306842448078,
+ -8.251386043194058,
+ -8.509854050420255,
+ 6.033926829921476,
+ 7.106834576171237,
+ 8.207454970355798,
+ 8.93295865786039,
+ 1.6986666777168475,
+ 0.38092450660859806,
+ -1.4208533550533544,
+ -2.6465678274217326,
+ -1.5104904016899492,
+ -0.22271529671748033,
+ 1.5989842878773481,
+ 2.92049446958515,
+ 8.624105402096504,
+ 7.804570229821517,
+ 6.58671645596368,
+ 5.470390299164409,
+ -7.7703176169138715,
+ -7.467934323788478,
+ -6.6503927557737805,
+ -5.981942722560856,
+ 7.07408889310228,
+ 7.539824100162081,
+ 8.068123777785145,
+ 8.135606287111319,
+ -6.412329751919761,
+ -7.385428727088298,
+ -8.353766263651014,
+ -8.987746221793543,
+ -1.345033015640811,
+ -0.0463341423953879,
+ 1.7237294930752274,
+ 2.9157061921224483,
+ 1.1900242371207856,
+ -0.09773436163211217,
+ -1.9008630834440137,
+ -3.211449401638441,
+ -7.75164750174557,
+ -6.86620633141062,
+ -5.589834396444317,
+ -4.344435233194401,
+ 6.218448141726226,
+ 5.32350019736686,
+ 3.865099011074315,
+ 2.7620707829675464,
+ -8.978190299657804,
+ -8.934713563709883,
+ -8.775710018396586,
+ -8.333367663245388,
+ 7.988058014773552,
+ 8.638125149044397,
+ 9.095482220191428,
+ 9.33372987862767,
+ -1.770838049124269,
+ -2.950790347013145,
+ -4.517513872063885,
+ -5.299937548012559,
+ 8.22051871704828,
+ 7.83299227842853,
+ 6.769773780623418,
+ 5.994551423431634
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.8864539263603914,
+ -3.4567206066283447,
+ -4.235002236191864,
+ -4.590889829236721,
+ 2.5559525060999624,
+ 3.317111434639158,
+ 4.196892563362265,
+ 4.8003718378001325,
+ 2.4717228149914363,
+ 1.6776206373612934,
+ 0.5721564055466022,
+ -0.23759717952552978,
+ -2.2583313484693877,
+ -1.558975186702169,
+ -0.4888697544754474,
+ 0.30096737844772714,
+ 5.669306551834599,
+ 5.351916888477807,
+ 4.850137168747036,
+ 4.309868861748272,
+ -5.121682962897359,
+ -5.161197288585004,
+ -4.94456174805264,
+ -4.7344024660415105,
+ 3.257467970484155,
+ 3.741583606848622,
+ 4.348811924912414,
+ 4.6150539866573235,
+ -2.9530010394210864,
+ -3.6903578653985805,
+ -4.52648213676822,
+ -5.098579901690913,
+ -2.313704810075009,
+ -1.4993564635643812,
+ -0.370993556541288,
+ 0.4471282728196684,
+ 2.1092772657844145,
+ 1.3834139747052845,
+ 0.2869798452385149,
+ -0.5210018448903976,
+ -5.32786052630103,
+ -4.965935885407499,
+ -4.421716772415458,
+ -3.761025381182623,
+ 4.538354526103618,
+ 4.185925223195779,
+ 3.5278902517259083,
+ 3.0155538995076943,
+ -4.764507554822461,
+ -4.954300560878817,
+ -5.157325922477802,
+ -5.108861735839871,
+ 4.2307032011105745,
+ 4.807344906213414,
+ 5.3630713055313155,
+ 5.713235474735947,
+ 0.41670112065510906,
+ -0.3826349925361188,
+ -1.4675238873868106,
+ -2.177511109186429,
+ 5.290376156173059,
+ 5.264946376354126,
+ 4.882431568894719,
+ 4.608026504629882
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 6.004306480708509,
+ 5.808239073190377,
+ 5.557870113469873,
+ 5.124507575226203,
+ -5.5362934838878335,
+ -5.686173788995157,
+ -5.570627733893456,
+ -5.430383632838183,
+ 3.2094870163566833,
+ 3.7765849911464655,
+ 4.498461676107848,
+ 4.832450064560792,
+ -3.018368700766194,
+ -3.781253347453521,
+ -4.640591914811277,
+ -5.227096707350933,
+ -2.426417407457093,
+ -1.593479889575414,
+ -0.4376981897438678,
+ 0.40316174719032905,
+ 2.1490878621458536,
+ 1.4155572442288742,
+ 0.312572097328824,
+ -0.49938255372322826,
+ -5.7806860634241435,
+ -5.4274768220547935,
+ -4.8687728937160735,
+ -4.283972139969811,
+ 5.239215626483266,
+ 5.247239656040437,
+ 4.976637752150263,
+ 4.732314602554067,
+ -3.511587386437498,
+ -3.9841669347916815,
+ -4.578075372989303,
+ -4.819446892045411,
+ 3.2761975664048593,
+ 3.9669161417861085,
+ 4.716162387106705,
+ 5.230676804220652,
+ 1.5493805042066855,
+ 0.7011921418799434,
+ -0.4602484281844691,
+ -1.2406207163447125,
+ -0.5237292229692424,
+ 0.36997932273614703,
+ 1.5985436595158653,
+ 2.4878830207227134,
+ 5.621618333374231,
+ 5.015141620575911,
+ 4.133489535686244,
+ 3.3496208935270273,
+ -5.02441892345716,
+ -4.801034882856904,
+ -4.235611859992024,
+ -3.775963285758886,
+ 4.79998160891694,
+ 5.067580031715139,
+ 5.358830167147625,
+ 5.342651233287019,
+ -2.6220555740669513,
+ -1.8889866321485604,
+ -0.7287886882937459,
+ 0.12938194580261378
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 9.466522412818877,
+ 9.48203705200281,
+ 9.526312926079695,
+ 9.118701313279503,
+ -8.677096403123036,
+ -9.250050170893562,
+ -9.524813025468001,
+ -9.631455100397798,
+ 3.098886488455845,
+ 4.247744555915383,
+ 5.7563898089446575,
+ 6.600114387079716,
+ -2.9466975477149795,
+ -4.311970244461006,
+ -5.987784033531096,
+ -7.160598005508048,
+ -6.025320850292463,
+ -4.752655222945499,
+ -2.95672663810986,
+ -1.5645481078625882,
+ 5.385677756363943,
+ 4.420751604572846,
+ 2.8349652916368364,
+ 1.6428390884558999,
+ -9.34772640507741,
+ -9.110305350599665,
+ -8.657301687228536,
+ -8.002700163892715,
+ 8.472455970933764,
+ 8.843443061229651,
+ 8.888828792945231,
+ 8.840489818600016,
+ -3.5814324899547896,
+ -4.613359331734525,
+ -5.961487186637449,
+ -6.685029271652586,
+ 3.365462184055368,
+ 4.646854063375919,
+ 6.187811524791286,
+ 7.272895061006865,
+ 4.681731702834089,
+ 3.3668462777143766,
+ 1.5425918809780983,
+ 0.17274366533774188,
+ -2.9198455090292748,
+ -1.5485211755991897,
+ 0.42140037057642205,
+ 1.8649816012996208,
+ 9.870527458429631,
+ 9.149494147242699,
+ 8.06570291508776,
+ 6.990254553898844,
+ -8.808443379630079,
+ -8.790419751400098,
+ -8.303240405634902,
+ -7.857562890195375,
+ 6.236905007822773,
+ 6.986460204078254,
+ 7.907251581878764,
+ 8.232392976889093,
+ -5.959710953593771,
+ -5.106669915786826,
+ -3.3630801869622813,
+ -2.077556746931498
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 8.865544941767945,
+ 9.049373778993377,
+ 9.319784122696905,
+ 9.081794383533854,
+ -8.099353838423003,
+ -8.811496426364915,
+ -9.307107821893078,
+ -9.577903471466515,
+ 1.8793574077542854,
+ 3.0881375146225003,
+ 4.694232537324023,
+ 5.649787944698969,
+ -1.8146026524339938,
+ -3.1779411969939666,
+ -4.914748221850774,
+ -6.142499956808266,
+ -6.789990155551067,
+ -5.6192721907401335,
+ -3.9510739342518297,
+ -2.6126181943429705,
+ 6.085403311739773,
+ 5.28164107239661,
+ 3.8764237263960233,
+ 2.805881197504379,
+ -8.87620109604093,
+ -8.82044911784069,
+ -8.619333817362092,
+ -8.145742750500888,
+ 8.045244801638956,
+ 8.57955228187841,
+ 8.868216522468307,
+ 8.998622079537421,
+ -2.334527473330017,
+ -3.4505338849286544,
+ -4.927808624856741,
+ -5.784286467586449,
+ 2.2131789053022937,
+ 3.5135534661638954,
+ 5.144256706207842,
+ 6.303287194691529,
+ 5.552123483172635,
+ 4.3323877729764435,
+ 2.6275428149577262,
+ 1.2719115739728863,
+ -3.826565243485715,
+ -2.5619678098386034,
+ -0.6999276269889748,
+ 0.6736138518605079,
+ 9.76923993959852,
+ 9.216612438293284,
+ 8.361329769990398,
+ 7.437812782960962,
+ -8.711727289364969,
+ -8.869116769219401,
+ -8.623697272102095,
+ -8.35181945730414,
+ 5.146918919951781,
+ 6.019760307380894,
+ 7.122820058026478,
+ 7.61018368357154,
+ -4.902566341526334,
+ -5.892462962793404,
+ -4.304206643375984,
+ -3.1354886694198543
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.88229773818834,
+ 6.139770831211569,
+ 6.502430029977875,
+ 6.459573126612004,
+ -5.352414023839017,
+ -5.96543684418647,
+ -6.4849977895740984,
+ -6.8014737021616805,
+ 0.42833558728873994,
+ 1.3366973196223813,
+ 2.5569953273051365,
+ 3.3233844013532226,
+ -0.4476178004383485,
+ -1.4200174800356236,
+ -2.7063582466087395,
+ -3.6245356234506123,
+ -5.423340187590208,
+ -4.663498060718577,
+ -3.567625360903355,
+ -2.6518185613840624,
+ 4.871365809522785,
+ 4.418030896938872,
+ 3.549614513196716,
+ 2.876047335643721,
+ -5.986941970618126,
+ -6.083289850770131,
+ -6.1284366207134315,
+ -5.92582323681132,
+ 5.426595879549442,
+ 5.930676996725928,
+ 6.3192256872041535,
+ 6.546356054894801,
+ -0.7329491957180585,
+ -1.593149103529892,
+ -2.745188152770234,
+ -3.4566243574568705,
+ 0.7171932672814151,
+ 1.6602954635313254,
+ 2.8923968084360094,
+ 3.775734323152654,
+ 4.618362366447092,
+ 3.8184107843820265,
+ 2.6901238801414404,
+ 1.7324363583650337,
+ -3.4130050019350078,
+ -2.589685955533386,
+ -1.3404715654761836,
+ -0.41183316313728185,
+ 6.902366667618398,
+ 6.633848634053304,
+ 6.194191031064579,
+ 5.648393477105997,
+ -6.1503989806577986,
+ -6.3943071879502655,
+ -6.4002149845687075,
+ -6.336282947613385,
+ 2.8594953482794288,
+ 3.5753872817279553,
+ 4.499937805682673,
+ 4.969663211966751,
+ -2.7095680225505347,
+ -3.5697982008685054,
+ -3.779980082288261,
+ -3.0327034169134968
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 7.995950605631128,
+ 8.490457873572382,
+ 9.178862579305695,
+ 9.24331021458327,
+ -7.25272014561177,
+ -8.235881380422635,
+ -9.14554478333317,
+ -9.721642780961725,
+ -0.2908378463806648,
+ 1.0573300829412087,
+ 2.881052715503425,
+ 4.064008580286435,
+ 0.19823854568317129,
+ -1.1959037104970585,
+ -3.0873388790810354,
+ -4.445892969516357,
+ -8.35134215421851,
+ -7.336527052133342,
+ -5.858589497089079,
+ -4.5841252726700175,
+ 7.510928911083417,
+ 6.979981936611801,
+ 5.867723636981323,
+ 4.991310532461579,
+ -8.242261762430047,
+ -8.51544058331302,
+ -8.767278531467102,
+ -8.610902008249528,
+ 7.470964719504398,
+ 8.315693174919172,
+ 9.053984808378768,
+ 9.512689705963778,
+ -0.12601218064506509,
+ -1.4229972922834724,
+ -3.1722925377569227,
+ -4.292052386277365,
+ 0.17366231538368962,
+ 1.5412892407811676,
+ 3.37623118475851,
+ 4.698899024669292,
+ 7.2745517938903825,
+ 6.197124068990957,
+ 4.666487153138375,
+ 3.3025804480660175,
+ -5.571610619448515,
+ -4.469242962834325,
+ -2.7564917479177344,
+ -1.475728154143338,
+ 9.830996330901499,
+ 9.57067431576902,
+ 9.109364731696912,
+ 8.438860510060858,
+ -8.755174263290296,
+ -9.23548474895202,
+ -9.423486214437139,
+ -9.460789337575372,
+ 3.294533048639487,
+ 4.413522275142944,
+ 5.875774431463057,
+ 6.67038045159237,
+ -3.103745784528165,
+ -4.388856933572982,
+ -5.915848982633422,
+ -5.138090546551447
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 7.333866844130699,
+ 7.992192075211267,
+ 8.900500571940668,
+ 9.133468678619217,
+ -6.619665028755279,
+ -7.7337579553805025,
+ -8.85630874090669,
+ -9.59143367221052,
+ -1.5038118414575943,
+ -0.10658755017737134,
+ 1.799829199501105,
+ 3.0848749712807813,
+ 1.324815449336292,
+ -0.05637945345166269,
+ -1.993644206497723,
+ -3.396205682936832,
+ -9.047329843954799,
+ -8.14212817747638,
+ -6.803157477015167,
+ -5.592302510371664,
+ 8.148842530382211,
+ 7.7826938519664335,
+ 6.859166136055977,
+ 6.110839955839106,
+ -7.707231426158384,
+ -8.159285957617307,
+ -8.66014251992471,
+ -8.685380789603593,
+ 6.986190552564525,
+ 7.986992277292095,
+ 8.9618775675009,
+ 9.595077356716311,
+ 1.117537183000397,
+ -0.2529820861838535,
+ -2.117146252183549,
+ -3.3605268121541116,
+ -0.9759721911133548,
+ 0.39976080713637496,
+ 2.3096310858466538,
+ 3.69553282557987,
+ 8.084404434565705,
+ 7.110310846569086,
+ 5.710765504015522,
+ 4.371807113837327,
+ -6.431125279091976,
+ -5.443825675534633,
+ -3.85211770322865,
+ -2.651273174548175,
+ 9.652353521685841,
+ 9.561907287261498,
+ 9.331955176592716,
+ 8.81815206408905,
+ -8.589590732197435,
+ -9.24090553389991,
+ -9.668337049744888,
+ -9.878538447219306,
+ 2.182309500792072,
+ 3.4153096346495624,
+ 5.04763571741042,
+ 5.997616869709577,
+ -2.0257571685968108,
+ -3.3685033880327695,
+ -5.044103594668432,
+ -6.151716411202377
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.6960292729545956,
+ 4.2043708124871655,
+ 4.900902518450582,
+ 5.168226637115852,
+ -3.3080594613029555,
+ -4.052625284351276,
+ -4.866875769977382,
+ -5.415616149793349,
+ -1.8245784724928535,
+ -0.9818628300084508,
+ 0.18042943743249953,
+ 1.0005451483086085,
+ 1.6532588231532248,
+ 0.868804353931996,
+ -0.28208089879173154,
+ -1.1238741755814865,
+ -5.755990930581445,
+ -5.321860089051329,
+ -4.6613681618435185,
+ -4.014989946884873,
+ 5.19310020499391,
+ 5.112768251269593,
+ 4.730666506509606,
+ 4.401407274140266,
+ -4.011336879072003,
+ -4.41290608287103,
+ -4.89803000819207,
+ -5.056189395421426,
+ 3.636220823617101,
+ 4.335486923645174,
+ 5.0835246704633565,
+ 5.585854173281072,
+ 1.6265105273175346,
+ 0.7798007357105944,
+ -0.3836276398932674,
+ -1.1967991350218594,
+ -1.470781927073984,
+ -0.6728190252345353,
+ 0.48531837294939606,
+ 1.3327323164357885,
+ 5.292010244638124,
+ 4.813274971502514,
+ 4.111701844592318,
+ 3.361040375834324,
+ -4.380044792408996,
+ -3.9029914974763202,
+ -3.0829071031570874,
+ -2.455187898195841,
+ 5.412361518780309,
+ 5.494675496518424,
+ 5.545347872557243,
+ 5.3736563551413745,
+ -4.811211008113227,
+ -5.321202626007872,
+ -5.756496637825529,
+ -6.014183925309918,
+ 0.37597836351619157,
+ 1.1755769645847405,
+ 2.2492746053657253,
+ 2.9187480573964484,
+ -0.3129794751138226,
+ -1.131135062587442,
+ -2.2127540650445257,
+ -3.0181173888246984
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.492743107121975,
+ 3.0529918685728945,
+ 3.8167572991360235,
+ 4.1816394358107125,
+ -2.1965619590782084,
+ -2.9241724343250284,
+ -3.779334020863257,
+ -4.368915462948434,
+ -2.5439811841575333,
+ -1.805014945954839,
+ -0.7729922378990005,
+ -0.007485484173216213,
+ 2.3285658185376072,
+ 1.690682394046485,
+ 0.6995402343830858,
+ -0.034356374349056494,
+ -5.355204724828045,
+ -5.089573902171907,
+ -4.661727121893046,
+ -4.1812780244172325,
+ 4.840027241803606,
+ 4.914141699421087,
+ 4.75903552763922,
+ 4.595915326965713,
+ -2.8619487083519504,
+ -3.346715590642029,
+ -3.9604314319465463,
+ -4.2461778829312475,
+ 2.594507027377418,
+ 3.3060890247951646,
+ 4.1266979174621525,
+ 4.691080403118436,
+ 2.4062125457597996,
+ 1.6430634271827211,
+ 0.5826568027922108,
+ -0.19547055615476636,
+ -2.1972822033862953,
+ -1.530266241973178,
+ -0.5083045515584698,
+ 0.24664126747008502,
+ 5.068507524592335,
+ 4.7606223682270645,
+ 4.292074464374302,
+ 3.6923821861900397,
+ -4.356459175702973,
+ -4.059974069048888,
+ -3.484818754087397,
+ -3.0337167659934536,
+ 4.324910713356429,
+ 4.537902282483241,
+ 4.777160801404846,
+ 4.768792909866823,
+ -3.838757950688047,
+ -4.406501448208781,
+ -4.970817569091092,
+ -5.331461929756625,
+ -0.6376696450694237,
+ 0.12103290289776775,
+ 1.1542993783668145,
+ 1.8406404089669737,
+ 0.6605831271282911,
+ -0.0653835744135692,
+ -1.0868932416514943,
+ -1.8456564694057207
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.235890224194508,
+ 2.807219076128523,
+ 3.585336185023662,
+ 3.9710430090336954,
+ -1.9593022398861755,
+ -2.683293434792612,
+ -3.5471878851427863,
+ -4.14548724062507,
+ -2.6975445390134007,
+ -1.9807245984649513,
+ -0.9765091675438949,
+ -0.22265921539699166,
+ 2.472716523125441,
+ 1.8661200829457925,
+ 0.9090766066590984,
+ 0.19821156850076824,
+ -5.26965309520876,
+ -5.039990205077771,
+ -4.661803745331588,
+ -4.216773797013519,
+ 4.764660457862879,
+ 4.87174297173944,
+ 4.765091165167413,
+ 4.637434921838023,
+ -2.616600865390678,
+ -3.119127083888625,
+ -3.76029209337889,
+ -4.07327321727877,
+ 2.372143304310482,
+ 3.086354247227812,
+ 3.9224541415849234,
+ 4.500082426942815,
+ 2.5726473614735537,
+ 1.8273350637430172,
+ 0.7889194125347471,
+ 0.018272557946200987,
+ -2.352360600958745,
+ -1.7132965101098179,
+ -0.720402820407152,
+ 0.014804797501591006,
+ 5.020798742079932,
+ 4.749383169000023,
+ 4.330576716546481,
+ 3.763110248758084,
+ -4.351424601369301,
+ -4.0934834928440855,
+ -3.570610620689766,
+ -3.1572092582783284,
+ 4.092783990432089,
+ 4.333669935007802,
+ 4.613183960769793,
+ 4.639679051411793,
+ -3.631178591426942,
+ -4.211249777237997,
+ -4.803106895113078,
+ -5.185728422819381,
+ -0.8540424586791816,
+ -0.10406956242552928,
+ 0.9205664960526411,
+ 1.610508071815361,
+ 0.8683993292893312,
+ 0.162111222746574,
+ -0.8465675348704372,
+ -1.5953835286674956
+ ]
+ ],
+ "variable_names": [
+ "HS4M2D1R",
+ "HS1MT1R",
+ "HS4M1T1R",
+ "HS4M2T1R",
+ "HS1MD2R",
+ "HS4M1D2R",
+ "HS4M2D2R",
+ "HS1MT2R",
+ "HS4M1T2R",
+ "HS4M2T2R",
+ "HS1MD3R",
+ "HS4M1D3R",
+ "HS4M2D3R",
+ "HS1MT3R",
+ "HS4M1T3R",
+ "HS4M2T3R",
+ "HS1MD4R",
+ "HS4M1D4R",
+ "HS4M2D4R",
+ "HS1MT4R",
+ "HS4M1T4R",
+ "HS4M2T4R",
+ "HS1MD5R",
+ "HS4M1D5R",
+ "HS4M2D5R",
+ "HS1MT5R",
+ "HS4M1T5R",
+ "HS4M2T5R",
+ "HS1MD6R",
+ "HS4M1D6R",
+ "HS4M2D6R",
+ "HS1MT6R",
+ "HS4M1T6R",
+ "HS4M2T6R",
+ "HS1MD7R",
+ "HS4M1D7R",
+ "HS4M2D7R",
+ "HS1MT7R",
+ "HS4M1T7R",
+ "HS4M2T7R",
+ "HS1MD8R",
+ "HS4M1D8R",
+ "HS4M2D8R",
+ "HS1MT8R",
+ "HS4M1T8R",
+ "HS4M2T8R",
+ "HS1MD1R",
+ "HS4M1D1R",
+ "VS3M2D1R",
+ "VS2M2D1R",
+ "VS2M1T1R",
+ "VS3M1T1R",
+ "VS3M2T1R",
+ "VS2M2T1R",
+ "VS2M1D2R",
+ "VS3M1D2R",
+ "VS3M2D2R",
+ "VS2M2D2R",
+ "VS2M1T2R",
+ "VS3M1T2R",
+ "VS3M2T2R",
+ "VS2M2T2R",
+ "VS2M1D3R",
+ "VS3M1D3R",
+ "VS3M2D3R",
+ "VS2M2D3R",
+ "VS2M1T3R",
+ "VS3M1T3R",
+ "VS3M2T3R",
+ "VS2M2T3R",
+ "VS2M1D4R",
+ "VS3M1D4R",
+ "VS3M2D4R",
+ "VS2M2D4R",
+ "VS2M1T4R",
+ "VS3M1T4R",
+ "VS3M2T4R",
+ "VS2M2T4R",
+ "VS2M1D5R",
+ "VS3M1D5R",
+ "VS3M2D5R",
+ "VS2M2D5R",
+ "VS2M1T5R",
+ "VS3M1T5R",
+ "VS3M2T5R",
+ "VS2M2T5R",
+ "VS2M1D6R",
+ "VS3M1D6R",
+ "VS3M2D6R",
+ "VS2M2D6R",
+ "VS2M1T6R",
+ "VS3M1T6R",
+ "VS3M2T6R",
+ "VS2M2T6R",
+ "VS2M1D7R",
+ "VS3M1D7R",
+ "VS3M2D7R",
+ "VS2M2D7R",
+ "VS2M1T7R",
+ "VS3M1T7R",
+ "VS3M2T7R",
+ "VS2M2T7R",
+ "VS2M1D8R",
+ "VS3M1D8R",
+ "VS3M2D8R",
+ "VS2M2D8R",
+ "VS2M1T8R",
+ "VS3M1T8R",
+ "VS3M2T8R",
+ "VS2M2T8R",
+ "VS2M1D1R",
+ "VS3M1D1R"
+ ],
+ "observable_names": [
+ "BPMZ5D1R",
+ "BPMZ6D1R",
+ "BPMZ7D1R",
+ "BPMZ1T1R",
+ "BPMZ2T1R",
+ "BPMZ3T1R",
+ "BPMZ4T1R",
+ "BPMZ41T1R",
+ "BPMZ5T1R",
+ "BPMZ6T1R",
+ "BPMZ7T1R",
+ "BPMZ1D2R",
+ "BPMZ2D2R",
+ "BPMZ3D2R",
+ "BPMZ4D2R",
+ "BPMZ5D2R",
+ "BPMZ6D2R",
+ "BPMZ7D2R",
+ "BPMZ1T2R",
+ "BPMZ2T2R",
+ "BPMZ3T2R",
+ "BPMZ4T2R",
+ "BPMZ41T2R",
+ "BPMZ42T2R",
+ "BPMZ43T2R",
+ "BPMZ5T2R",
+ "BPMZ6T2R",
+ "BPMZ7T2R",
+ "BPMZ1D3R",
+ "BPMZ2D3R",
+ "BPMZ3D3R",
+ "BPMZ4D3R",
+ "BPMZ5D3R",
+ "BPMZ6D3R",
+ "BPMZ7D3R",
+ "BPMZ1T3R",
+ "BPMZ2T3R",
+ "BPMZ3T3R",
+ "BPMZ4T3R",
+ "BPMZ5T3R",
+ "BPMZ6T3R",
+ "BPMZ7T3R",
+ "BPMZ1D4R",
+ "BPMZ2D4R",
+ "BPMZ3D4R",
+ "BPMZ4D4R",
+ "BPMZ5D4R",
+ "BPMZ6D4R",
+ "BPMZ7D4R",
+ "BPMZ1T4R",
+ "BPMZ2T4R",
+ "BPMZ3T4R",
+ "BPMZ4T4R",
+ "BPMZ5T4R",
+ "BPMZ6T4R",
+ "BPMZ7T4R",
+ "BPMZ1D5R",
+ "BPMZ2D5R",
+ "BPMZ3D5R",
+ "BPMZ4D5R",
+ "BPMZ5D5R",
+ "BPMZ6D5R",
+ "BPMZ7D5R",
+ "BPMZ1T5R",
+ "BPMZ2T5R",
+ "BPMZ3T5R",
+ "BPMZ4T5R",
+ "BPMZ5T5R",
+ "BPMZ6T5R",
+ "BPMZ7T5R",
+ "BPMZ1D6R",
+ "BPMZ2D6R",
+ "BPMZ3D6R",
+ "BPMZ4D6R",
+ "BPMZ41D6R",
+ "BPMZ42D6R",
+ "BPMZ43D6R",
+ "BPMZ44D6R",
+ "BPMZ6D6R",
+ "BPMZ7D6R",
+ "BPMZ1T6R",
+ "BPMZ2T6R",
+ "BPMZ3T6R",
+ "BPMZ4T6R",
+ "BPMZ41T6R",
+ "BPMZ5T6R",
+ "BPMZ6T6R",
+ "BPMZ7T6R",
+ "BPMZ1D7R",
+ "BPMZ2D7R",
+ "BPMZ3D7R",
+ "BPMZ4D7R",
+ "BPMZ5D7R",
+ "BPMZ6D7R",
+ "BPMZ7D7R",
+ "BPMZ1T7R",
+ "BPMZ2T7R",
+ "BPMZ3T7R",
+ "BPMZ4T7R",
+ "BPMZ41T7R",
+ "BPMZ5T7R",
+ "BPMZ6T7R",
+ "BPMZ7T7R",
+ "BPMZ1D8R",
+ "BPMZ2D8R",
+ "BPMZ3D8R",
+ "BPMZ4D8R",
+ "BPMZ5D8R",
+ "BPMZ6D8R",
+ "BPMZ7D8R",
+ "BPMZ1T8R",
+ "BPMZ2T8R",
+ "BPMZ3T8R",
+ "BPMZ4T8R",
+ "BPMZ5T8R",
+ "BPMZ6T8R",
+ "BPMZ7T8R",
+ "BPMZ1D1R",
+ "BPMZ2D1R",
+ "BPMZ3D1R",
+ "BPMZ4D1R",
+ "BPMZ41D1R",
+ "BPMZ42D1R",
+ "BPMZ5D1R",
+ "BPMZ6D1R",
+ "BPMZ7D1R",
+ "BPMZ1T1R",
+ "BPMZ2T1R",
+ "BPMZ3T1R",
+ "BPMZ4T1R",
+ "BPMZ41T1R",
+ "BPMZ5T1R",
+ "BPMZ6T1R",
+ "BPMZ7T1R",
+ "BPMZ1D2R",
+ "BPMZ2D2R",
+ "BPMZ3D2R",
+ "BPMZ4D2R",
+ "BPMZ5D2R",
+ "BPMZ6D2R",
+ "BPMZ7D2R",
+ "BPMZ1T2R",
+ "BPMZ2T2R",
+ "BPMZ3T2R",
+ "BPMZ4T2R",
+ "BPMZ41T2R",
+ "BPMZ42T2R",
+ "BPMZ43T2R",
+ "BPMZ5T2R",
+ "BPMZ6T2R",
+ "BPMZ7T2R",
+ "BPMZ1D3R",
+ "BPMZ2D3R",
+ "BPMZ3D3R",
+ "BPMZ4D3R",
+ "BPMZ5D3R",
+ "BPMZ6D3R",
+ "BPMZ7D3R",
+ "BPMZ1T3R",
+ "BPMZ2T3R",
+ "BPMZ3T3R",
+ "BPMZ4T3R",
+ "BPMZ5T3R",
+ "BPMZ6T3R",
+ "BPMZ7T3R",
+ "BPMZ1D4R",
+ "BPMZ2D4R",
+ "BPMZ3D4R",
+ "BPMZ4D4R",
+ "BPMZ5D4R",
+ "BPMZ6D4R",
+ "BPMZ7D4R",
+ "BPMZ1T4R",
+ "BPMZ2T4R",
+ "BPMZ3T4R",
+ "BPMZ4T4R",
+ "BPMZ5T4R",
+ "BPMZ6T4R",
+ "BPMZ7T4R",
+ "BPMZ1D5R",
+ "BPMZ2D5R",
+ "BPMZ3D5R",
+ "BPMZ4D5R",
+ "BPMZ5D5R",
+ "BPMZ6D5R",
+ "BPMZ7D5R",
+ "BPMZ1T5R",
+ "BPMZ2T5R",
+ "BPMZ3T5R",
+ "BPMZ4T5R",
+ "BPMZ5T5R",
+ "BPMZ6T5R",
+ "BPMZ7T5R",
+ "BPMZ1D6R",
+ "BPMZ2D6R",
+ "BPMZ3D6R",
+ "BPMZ4D6R",
+ "BPMZ41D6R",
+ "BPMZ42D6R",
+ "BPMZ43D6R",
+ "BPMZ44D6R",
+ "BPMZ6D6R",
+ "BPMZ7D6R",
+ "BPMZ1T6R",
+ "BPMZ2T6R",
+ "BPMZ3T6R",
+ "BPMZ4T6R",
+ "BPMZ41T6R",
+ "BPMZ5T6R",
+ "BPMZ6T6R",
+ "BPMZ7T6R",
+ "BPMZ1D7R",
+ "BPMZ2D7R",
+ "BPMZ3D7R",
+ "BPMZ4D7R",
+ "BPMZ5D7R",
+ "BPMZ6D7R",
+ "BPMZ7D7R",
+ "BPMZ1T7R",
+ "BPMZ2T7R",
+ "BPMZ3T7R",
+ "BPMZ4T7R",
+ "BPMZ41T7R",
+ "BPMZ5T7R",
+ "BPMZ6T7R",
+ "BPMZ7T7R",
+ "BPMZ1D8R",
+ "BPMZ2D8R",
+ "BPMZ3D8R",
+ "BPMZ4D8R",
+ "BPMZ5D8R",
+ "BPMZ6D8R",
+ "BPMZ7D8R",
+ "BPMZ1T8R",
+ "BPMZ2T8R",
+ "BPMZ3T8R",
+ "BPMZ4T8R",
+ "BPMZ5T8R",
+ "BPMZ6T8R",
+ "BPMZ7T8R",
+ "BPMZ1D1R",
+ "BPMZ2D1R",
+ "BPMZ3D1R",
+ "BPMZ4D1R",
+ "BPMZ41D1R",
+ "BPMZ42D1R"
+ ],
+ "rf_response": null,
+ "variable_planes": [
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V"
+ ],
+ "observable_planes": [
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V"
+ ]
+}
diff --git a/examples/use_cases/config/bessy2/orm.npz b/examples/use_cases/config/bessy2/orm.npz
new file mode 100644
index 000000000..c1a4e4489
Binary files /dev/null and b/examples/use_cases/config/bessy2/orm.npz differ
diff --git a/examples/use_cases/config/bessy2/orm.yaml b/examples/use_cases/config/bessy2/orm.yaml
new file mode 100644
index 000000000..56ce79cd0
--- /dev/null
+++ b/examples/use_cases/config/bessy2/orm.yaml
@@ -0,0 +1,28275 @@
+matrix:
+- - -16.598148463795624
+ - 18.080575992708052
+ - -14.989908252591041
+ - 11.05505279467195
+ - -7.082768139702697
+ - 0.14205839394943673
+ - 7.446500021106512
+ - -1.35232074838934
+ - -3.7506012481843216
+ - 12.015097954535205
+ - -14.916200203551108
+ - 14.271054079807755
+ - 12.884779663933331
+ - -15.968524585607776
+ - 14.72836341292029
+ - -8.345028651901705
+ - 3.557461095182497
+ - 3.5833688292220462
+ - -4.5161786299103515
+ - -2.4223468195059175
+ - 7.402774719018811
+ - -14.501472157027301
+ - 16.48371251187001
+ - -14.088427585468272
+ - -14.702939040349433
+ - 16.009443943340994
+ - -13.304868611680778
+ - 5.040597871521453
+ - 0.32381179083843853
+ - -6.904881861092474
+ - 1.128816114482535
+ - 6.317090011052518
+ - -12.072708174662926
+ - 14.265934830246213
+ - -13.926921778666474
+ - 9.317663213071874
+ - 13.045787572529859
+ - -11.013736262776476
+ - 6.869623097804253
+ - 2.247325084322918
+ - -6.980357737173575
+ - 10.941242494137652
+ - 4.981154436552323
+ - -11.396004125530352
+ - 13.981708881506671
+ - -14.515744139297528
+ - 16.053630685288507
+ - -13.183619531416738
+ - 3.3542504711270293e-13
+ - 2.668153783851046e-14
+ - 3.197549375884984e-13
+ - 5.082197683525802e-14
+ - -7.580944877925988e-14
+ - -8.427977825180288e-14
+ - 2.642742795433417e-13
+ - -5.086432848262074e-13
+ - 1.5712461171567271e-13
+ - -2.778268066994105e-13
+ - 4.0742284762931846e-13
+ - 1.0842021724855044e-13
+ - -1.9778219318387913e-13
+ - -5.577711957669568e-13
+ - -4.002230675776569e-13
+ - -1.4230153513872246e-13
+ - -1.0596382170151297e-12
+ - 6.750852589616774e-13
+ - -6.102872384967234e-13
+ - 1.7067713887174152e-13
+ - 3.5575383784680614e-14
+ - 4.0826988057657276e-13
+ - -3.0112021274890377e-13
+ - 3.8116482626443515e-13
+ - 2.7909735612029196e-13
+ - -6.191810844428935e-13
+ - -5.929230630780102e-15
+ - 1.7364175418713157e-13
+ - -1.1350241493207625e-13
+ - 4.764560328305439e-13
+ - -1.6517142471458857e-13
+ - 7.415773453211399e-13
+ - -8.470329472543003e-16
+ - 2.6723889485873176e-13
+ - 1.1096131609031334e-13
+ - -1.0122043719688889e-13
+ - -1.6940658945086007e-14
+ - -5.548065804515667e-13
+ - -3.570243872676876e-13
+ - -1.139259314057034e-13
+ - 1.5246593050577406e-14
+ - -3.8116482626443515e-14
+ - 5.221958119822762e-13
+ - -1.8931186371133613e-13
+ - -4.362219678359647e-14
+ - 1.4992483166401116e-13
+ - 7.606355866343617e-13
+ - -3.6591823321385775e-13
+ - -2.922263668027336e-13
+ - -3.3881317890172014e-15
+ - 4.743384504624082e-14
+ - -1.1265538198482195e-13
+ - -1.7787691892340307e-14
+ - -8.470329472543003e-15
+ - -1.3129010682441655e-14
+ - -5.886878983417387e-14
+ - 2.2319318160150814e-13
+ - 3.8116482626443515e-13
+ - 3.9302328752599536e-13
+ - 1.393369198233324e-13
+ - -3.066259269060567e-13
+ - -7.453889935837843e-14
+ - 1.3912516158651883e-12
+ - 1.5754812818929986e-13
+- - -9.349580357938478
+ - 10.793814558629013
+ - -8.667591362151677
+ - 5.782894593626114
+ - -3.23804949243086
+ - -0.8449433361998255
+ - 3.5662208545765934
+ - 0.22257434994279662
+ - -3.1541898053279156
+ - 7.649687966226026
+ - -9.0724705481893
+ - 8.246245768494504
+ - 7.921615470335085
+ - -9.318867131670228
+ - 8.27409794628716
+ - -4.0603709791431415
+ - 1.1192233003210683
+ - 2.948487479216476
+ - -1.818497333755394
+ - -2.400231098403187
+ - 5.2082657486213355
+ - -8.956782171289001
+ - 9.825861989520014
+ - -8.007004301065122
+ - -8.838902052819154
+ - 9.1831324237175
+ - -7.311536727923913
+ - 2.0779421957616453
+ - 1.1550561038631142
+ - -4.84431041457602
+ - -0.19663207376559808
+ - 4.62232384065912
+ - -7.917852350287892
+ - 8.39854890531923
+ - -7.845858188890551
+ - 4.78598002263699
+ - 7.430619123970336
+ - -5.779351891818329
+ - 3.1423350729657633
+ - 2.371077117831979
+ - -5.106336977433167
+ - 7.074400599700002
+ - 3.842206895521678
+ - -7.501002332369222
+ - 8.746107246080177
+ - -8.427512106595142
+ - 8.967895714170945
+ - -6.962017261928952
+ - 1.8041801776516597e-13
+ - -2.964615315390051e-15
+ - 1.6644197413547002e-13
+ - 1.5670109524204556e-14
+ - -4.912791094074942e-14
+ - -2.0328790734103208e-14
+ - 1.8253560013330172e-13
+ - -2.8333252085656346e-13
+ - 9.910285482875314e-14
+ - -1.7406527066075872e-13
+ - 2.2065208275974524e-13
+ - 9.359714067160019e-14
+ - -1.291725244562808e-13
+ - -3.1509625637859973e-13
+ - -2.625802136488331e-13
+ - -9.656175598699024e-14
+ - -6.496742705440484e-13
+ - 3.968349357886397e-13
+ - -3.6168306847758624e-13
+ - 1.0926725019580474e-13
+ - -3.9810548520952116e-14
+ - 2.642742795433417e-13
+ - -1.8761779781682753e-13
+ - 2.1895801686523664e-13
+ - 1.6220680939919851e-13
+ - -3.451659260061274e-13
+ - -2.117582368135751e-15
+ - 1.105377996166862e-13
+ - -9.020900888258299e-14
+ - 3.108610916423282e-13
+ - -9.529120656610879e-14
+ - 4.637505386217294e-13
+ - -2.0328790734103208e-14
+ - 1.7237120476625012e-13
+ - 4.828087799349512e-14
+ - -8.046812998915853e-14
+ - -4.1504614415460717e-14
+ - -3.1763735522036263e-13
+ - -1.8592373192231892e-13
+ - -1.4399560103323106e-14
+ - 4.404571325722362e-14
+ - -1.6093625997831706e-14
+ - 2.854501032246992e-13
+ - -1.5161889755851976e-13
+ - -1.4823076576950256e-14
+ - 7.835054762102278e-14
+ - 4.446922973085077e-13
+ - -1.8168856718604742e-13
+ - -1.8973538018496328e-13
+ - 2.244637310223896e-14
+ - 5.082197683525802e-14
+ - -7.919758056827708e-14
+ - -4.616329562535937e-14
+ - 3.3881317890172014e-14
+ - -6.733911930671688e-14
+ - -9.190307477709159e-14
+ - 1.139259314057034e-13
+ - 2.329340604949326e-13
+ - 2.3251054402130544e-13
+ - 6.013933925505532e-14
+ - -1.5712461171567271e-13
+ - -6.183340514956392e-14
+ - 8.411037166235202e-13
+ - 1.122318655111948e-13
+- - 11.41643847123161
+ - -10.172193861234764
+ - 9.005864128515999
+ - -9.197005639046338
+ - 7.11879049625272
+ - -3.9840353163199214
+ - -7.573689326358967
+ - 4.302638172532428
+ - -1.9038274521262015
+ - -4.227523954752871
+ - 6.301729549243182
+ - -8.565611127209564
+ - -5.717788442186832
+ - 8.463649698743357
+ - -9.84777370010313
+ - 8.252490589320114
+ - -6.853925800290361
+ - 1.5753670321327862
+ - 6.080839068250666
+ - -3.5277813117594192
+ - -0.5062062977278409
+ - 6.294255686466625
+ - -9.397896629523533
+ - 9.05987199201866
+ - 7.414054818406289
+ - -10.671035860241224
+ - 9.606249175666049
+ - -6.5474293648274
+ - 3.140772024258379
+ - 0.5621539201351221
+ - -4.245704650486259
+ - -0.44779193695196906
+ - 3.295647660936063
+ - -7.906971640869578
+ - 8.467147877905223
+ - -8.10687648247472
+ - -8.275688869572143
+ - 8.335091609476205
+ - -7.611992725861682
+ - 3.1936260970117227
+ - -1.0937035863073759
+ - -3.3772852526771007
+ - 1.0992961417513218
+ - 2.222708204694204
+ - -5.57169482886114
+ - 8.566882307519094
+ - -11.708395397601251
+ - 10.71948654686251
+ - -2.896852679609707e-13
+ - -9.486769009248164e-14
+ - -2.574980159653073e-13
+ - -8.131516293641283e-14
+ - 1.6940658945086007e-15
+ - 2.286988957586611e-13
+ - -3.3881317890172014e-14
+ - 3.3711911300721153e-13
+ - -4.404571325722362e-14
+ - 1.1689054672109345e-13
+ - -3.2187251995663413e-13
+ - 4.573977915173222e-14
+ - 9.825582188149884e-14
+ - 3.5236570605778894e-13
+ - 1.2366681029912785e-13
+ - 1.6940658945086007e-15
+ - 5.488773498207866e-13
+ - -3.8963515573697816e-13
+ - 3.4050724479622874e-13
+ - -1.2536087619363645e-13
+ - -2.896852679609707e-13
+ - -1.3044307387716225e-13
+ - 4.743384504624082e-14
+ - -1.5246593050577406e-13
+ - -1.4738373282224826e-13
+ - 4.1504614415460717e-13
+ - 3.7269449679189215e-14
+ - -5.082197683525802e-14
+ - -7.623296525288703e-14
+ - -9.825582188149884e-14
+ - 1.2197274440461925e-13
+ - -2.473336205982557e-13
+ - -1.3044307387716225e-13
+ - -3.7269449679189215e-14
+ - -1.3213713977167085e-13
+ - -3.3881317890172014e-14
+ - -1.3383120566617945e-13
+ - 3.5067164016328034e-13
+ - 3.3711911300721153e-13
+ - 2.710505431213761e-13
+ - 1.7448878713438587e-13
+ - 5.421010862427522e-14
+ - -3.1679032227310833e-13
+ - -1.6940658945086007e-14
+ - 9.147955830346444e-14
+ - -1.2705494208814505e-13
+ - -4.997494388800372e-13
+ - 3.2017845406212553e-13
+ - 1.0503208545953324e-13
+ - 5.929230630780102e-14
+ - 8.300922883092143e-14
+ - 2.710505431213761e-14
+ - -2.0498197323554068e-13
+ - 2.236166980751353e-13
+ - -2.710505431213761e-13
+ - -1.9651164376299768e-13
+ - -1.9481757786848908e-13
+ - -1.9651164376299768e-13
+ - -2.846030702774449e-13
+ - -1.8465318250143747e-13
+ - 3.032377951170395e-13
+ - -8.470329472543003e-15
+ - -6.284984468626909e-13
+ - 2.0328790734103208e-14
+- - 18.08630140167283
+ - -16.96831968855996
+ - 14.690195997832486
+ - -13.991361203564054
+ - 10.201951756783755
+ - -4.961157345218796
+ - -11.127703224553029
+ - 5.3641840124238644
+ - -1.4709015490146633
+ - -8.061058560645897
+ - 11.033876401106653
+ - -13.963154291446834
+ - -10.108990406687413
+ - 13.959743679225458
+ - -15.662041515971218
+ - 12.192304044917094
+ - -9.61231978294185
+ - 1.1154287472113065
+ - 8.603456412393523
+ - -4.084242099828514
+ - -2.365013699409847
+ - 11.215301982590304
+ - -15.806364252634841
+ - 14.547072982283533
+ - 12.652988963172339
+ - -17.271820508922037
+ - 15.03635391764495
+ - -9.292449821100345
+ - 3.5298524495374615
+ - 2.32956933225707
+ - -5.5169832752447645
+ - -2.3267785773817087
+ - 6.930152359712059
+ - -13.146332602382154
+ - 13.48035861242052
+ - -12.226145913379499
+ - -13.312617405102086
+ - 12.631203453096292
+ - -11.040311989380273
+ - 3.431572135434686
+ - 0.0032812016178854707
+ - -6.750077527495067
+ - 0.19703851667185843
+ - 5.149995269080029
+ - -10.186232693030707
+ - 14.03085523936177
+ - -18.56463717967041
+ - 16.38868088627005
+ - -4.607859233063394e-13
+ - -1.1858461261560205e-13
+ - -3.8285889215894375e-13
+ - -1.2197274440461925e-13
+ - 3.3881317890172014e-15
+ - 3.1848438816761693e-13
+ - -1.2197274440461925e-13
+ - 5.353248226647178e-13
+ - -8.470329472543003e-14
+ - 2.337810934421869e-13
+ - -4.980553729855286e-13
+ - 1.6940658945086007e-14
+ - 1.7279472123987727e-13
+ - 5.522654816098038e-13
+ - 2.574980159653073e-13
+ - 3.049318610115481e-14
+ - 9.58841296291868e-13
+ - -6.471331717022855e-13
+ - 5.89534931288993e-13
+ - -2.507217523872729e-13
+ - -3.5575383784680614e-13
+ - -2.473336205982557e-13
+ - 1.0503208545953324e-13
+ - -2.473336205982557e-13
+ - -2.405573570202213e-13
+ - 6.369687763352339e-13
+ - 5.082197683525802e-14
+ - -9.825582188149884e-14
+ - -7.453889935837843e-14
+ - -2.405573570202213e-13
+ - 2.1006417091906648e-13
+ - -4.641740550953566e-13
+ - -1.8634724839594607e-13
+ - -8.470329472543003e-14
+ - -1.7279472123987727e-13
+ - -2.371692252312041e-14
+ - -1.8295911660692887e-13
+ - 5.759824041329242e-13
+ - 5.183841637196318e-13
+ - 3.4897757426877174e-13
+ - 2.371692252312041e-13
+ - 6.098637220230962e-14
+ - -4.912791094074942e-13
+ - 4.743384504624082e-14
+ - 1.3213713977167085e-13
+ - -2.1006417091906648e-13
+ - -8.097634975751111e-13
+ - 4.54009659728305e-13
+ - 1.9989977555201488e-13
+ - 6.776263578034403e-14
+ - 1.0164395367051604e-13
+ - 6.776263578034403e-14
+ - -2.879912020664621e-13
+ - 3.1509625637859973e-13
+ - -3.5914196963582334e-13
+ - -2.405573570202213e-13
+ - -2.981555974335137e-13
+ - -3.1509625637859973e-13
+ - -4.641740550953566e-13
+ - -2.642742795433417e-13
+ - 4.438452643612534e-13
+ - 2.710505431213761e-14
+ - -1.0842021724855044e-12
+ - 6.776263578034403e-15
+- - 10.371639138988343
+ - -9.4438931486961
+ - 8.64758719403139
+ - -7.717465209760991
+ - 5.2817021364241095
+ - -2.131255511761423
+ - -5.920998341690742
+ - 2.308582471013939
+ - -0.02684871447508871
+ - -5.343339361281831
+ - 6.882545283296709
+ - -8.215029564388354
+ - -6.352312935148231
+ - 8.296606940450996
+ - -9.013610041435635
+ - 6.525801429090383
+ - -4.85378661834429
+ - -0.08985464700150697
+ - 4.3893139517249535
+ - -1.546978005541341
+ - -2.1823050014176872
+ - 7.088760452622565
+ - -9.54935036271711
+ - 8.44465330644171
+ - 7.735452213268713
+ - -10.09825520666284
+ - 8.5263530858976
+ - -4.757889749599368
+ - 1.260028306039763
+ - 2.0964052004608296
+ - -2.5246623461105075
+ - -2.189115255372492
+ - 4.877365412351078
+ - -7.86638833591486
+ - 7.7654172728328055
+ - -6.685010203021294
+ - -7.740910476121145
+ - 6.940253934627995
+ - -5.792627089827016
+ - 1.107509750020382
+ - 0.9193060036493343
+ - -4.61057672247533
+ - -0.70327886235019
+ - 3.8140181672869864
+ - -6.5597500887707865
+ - 8.288569560222278
+ - -10.654330018536012
+ - 9.084475792545357
+ - -2.642742795433417e-13
+ - -4.0657581468206416e-14
+ - -2.0667603913004928e-13
+ - -6.098637220230962e-14
+ - 5.082197683525802e-15
+ - 1.6263032587282567e-13
+ - -8.639736061993863e-14
+ - 2.998496633280223e-13
+ - -6.437450399132683e-14
+ - 1.5246593050577406e-13
+ - -2.727446090158847e-13
+ - -2.371692252312041e-14
+ - 1.1519648082658485e-13
+ - 3.3542504711270293e-13
+ - 1.6601845766184287e-13
+ - 2.371692252312041e-14
+ - 5.912289971835016e-13
+ - -3.8285889215894375e-13
+ - 3.7947076036992655e-13
+ - -1.3552527156068805e-13
+ - -1.6601845766184287e-13
+ - -1.6263032587282567e-13
+ - 8.131516293641283e-14
+ - -1.4907779871675686e-13
+ - -1.4230153513872246e-13
+ - 3.6761229910836635e-13
+ - 2.371692252312041e-14
+ - -7.284483346386983e-14
+ - -3.218725199566341e-14
+ - -1.7110065534536867e-13
+ - 1.2536087619363645e-13
+ - -3.049318610115481e-13
+ - -9.147955830346444e-14
+ - -6.606856988583543e-14
+ - -8.470329472543003e-14
+ - -3.3881317890172014e-15
+ - -8.470329472543003e-14
+ - 3.1848438816761693e-13
+ - 2.862971361719535e-13
+ - 1.4738373282224826e-13
+ - 1.0672615135404184e-13
+ - 3.049318610115481e-14
+ - -2.795208725939191e-13
+ - 7.284483346386983e-14
+ - 4.573977915173222e-14
+ - -9.147955830346444e-14
+ - -4.828087799349512e-13
+ - 2.524158182817815e-13
+ - 1.3044307387716225e-13
+ - 2.541098841762901e-14
+ - 4.235164736271502e-14
+ - 6.268043809681823e-14
+ - -1.4060746924421386e-13
+ - 1.4738373282224826e-13
+ - -1.6771252355635147e-13
+ - -8.809142651444724e-14
+ - -1.5924219408380846e-13
+ - -2.0498197323554068e-13
+ - -2.574980159653073e-13
+ - -1.5924219408380846e-13
+ - 2.591920818598159e-13
+ - 5.082197683525802e-14
+ - -6.725441601199145e-13
+ - -6.776263578034403e-15
+- - -11.20169267745478
+ - 11.294432197216693
+ - -7.951624248947936
+ - 10.255778458021165
+ - -9.947078383475889
+ - 6.755367033745671
+ - 9.279069605813815
+ - -7.967175541725742
+ - 5.111033181045524
+ - 1.314461661971962
+ - -4.700652124683343
+ - 7.611769660548222
+ - 3.4399168271619973
+ - -7.867740046553978
+ - 9.558783973404774
+ - -9.938240855071843
+ - 8.631883973360019
+ - -4.4138550804478545
+ - -8.108188170249518
+ - 5.904695041280326
+ - -2.7573930040463854
+ - -3.5740243321843517
+ - 6.610163134787196
+ - -8.477156506246367
+ - -5.369439249369876
+ - 9.013586062293623
+ - -9.808065643416112
+ - 8.702418447072077
+ - -6.813574339883094
+ - 2.474037009332458
+ - 6.718730227697705
+ - -3.6471267587267917
+ - 0.34752177634143644
+ - 6.490364875426389
+ - -8.892287880760282
+ - 9.278943741926158
+ - 7.733883191219127
+ - -10.099355358801214
+ - 9.623758975033017
+ - -6.528634111332076
+ - 3.994931435707435
+ - 0.41613017169886457
+ - -4.288226806582467
+ - 0.5098494760381256
+ - 2.6513030452649216
+ - -7.454595069624492
+ - 10.772015812830329
+ - -11.756824786979436
+ - 3.0789647632693817e-13
+ - 1.359487880343152e-13
+ - 3.400837283226016e-13
+ - 1.291725244562808e-13
+ - 1.6940658945086007e-14
+ - -2.261577969168982e-13
+ - -3.049318610115481e-14
+ - -3.2504889350883776e-13
+ - -5.2727800966580196e-14
+ - -2.710505431213761e-14
+ - 3.460129589533817e-13
+ - -1.6432439176733427e-13
+ - 4.404571325722362e-14
+ - -3.316133988500586e-13
+ - -1.503483481376383e-14
+ - -2.1175823681357508e-16
+ - -2.913793338554793e-13
+ - 3.654947167402306e-13
+ - -2.115464785767615e-13
+ - 9.084428359302371e-14
+ - 3.928115292891818e-13
+ - 1.9481757786848908e-14
+ - -5.3998350387461647e-14
+ - 2.1091120386632078e-13
+ - 1.1265538198482195e-13
+ - -3.2526065174565133e-13
+ - -5.759824041329242e-14
+ - 6.988021814847978e-15
+ - 9.465593185566806e-14
+ - 4.8916152703935845e-14
+ - -4.1504614415460717e-14
+ - 1.590304358469949e-13
+ - 1.2218450264143282e-13
+ - 6.1409888675936775e-15
+ - 1.7131241358218224e-13
+ - 3.790472438962994e-14
+ - 2.210755992333724e-13
+ - -3.4537768424294096e-13
+ - -3.21449003483007e-13
+ - -4.751854834096625e-13
+ - -2.295459287059154e-13
+ - -4.5951537388545793e-14
+ - 4.086933970501999e-13
+ - 2.627919718856467e-13
+ - -1.742770288975723e-13
+ - 2.4818065354551e-13
+ - 4.0064658405128406e-13
+ - -3.8963515573697816e-13
+ - -8.216219588366713e-14
+ - -1.9566461081574338e-13
+ - -1.2811373327221293e-13
+ - 8.745615180400651e-14
+ - 2.63639004832901e-13
+ - -3.0620241043242957e-13
+ - 4.04669990550742e-13
+ - 4.504097697024742e-13
+ - 1.962998855261841e-13
+ - 6.818615225397118e-14
+ - 2.1535812683940586e-13
+ - 1.9058241313221758e-13
+ - -2.9857911390714087e-13
+ - 1.2896076621946723e-13
+ - 4.4596284672938913e-13
+ - -4.912791094074942e-14
+- - -10.958127082977919
+ - 10.488188716551113
+ - -7.646224070642454
+ - 9.454021774521427
+ - -8.672551275629298
+ - 5.257472602012701
+ - 8.206510394580322
+ - -6.358970668081518
+ - 3.45374093466314
+ - 2.651137727684315
+ - -5.668321124033918
+ - 7.840579829684806
+ - 4.417353993840046
+ - -8.267074117413053
+ - 9.412473641639867
+ - -8.83979738356289
+ - 7.179134558145199
+ - -2.9359596398742602
+ - -6.900719313403443
+ - 4.252225993220727
+ - -1.1327202209121328
+ - -4.741033252962804
+ - 7.367121126172495
+ - -8.48694801905126
+ - -6.160626195900438
+ - 9.166367219420792
+ - -9.412508537448124
+ - 7.43261068964772
+ - -5.236784677266394
+ - 0.9805106367287652
+ - 5.3630816685679275
+ - -1.9674337108118156
+ - -1.3703181781161873
+ - 6.970327295352663
+ - -8.784205506582223
+ - 8.460535026287664
+ - 7.768823554927299
+ - -9.32451661052809
+ - 8.395445627643609
+ - -4.757238542528503
+ - 2.1522843365164537
+ - 1.8086545355467263
+ - -2.6486982880005536
+ - -1.1498518299638827
+ - 3.9548342628520143
+ - -7.752016191399001
+ - 10.53586637290742
+ - -10.90716403868461
+ - 2.8597949881673315e-13
+ - 9.952637130238029e-14
+ - 3.0027317980164947e-13
+ - 1.1127895344553371e-13
+ - 4.7645603283054394e-15
+ - -1.8973538018496328e-13
+ - 4.552802091491864e-15
+ - -3.1594328932585403e-13
+ - -1.0587911840678754e-14
+ - -5.908054807098745e-14
+ - 3.21449003483007e-13
+ - -1.0842021724855044e-13
+ - 7.835054762102278e-15
+ - -3.380720250728726e-13
+ - -6.003346013664854e-14
+ - -1.7470054537119944e-14
+ - -3.704710353053496e-13
+ - 3.686710902924342e-13
+ - -2.6639186191147746e-13
+ - 8.173867941003998e-14
+ - 3.1244927841843004e-13
+ - 6.733911930671688e-14
+ - -8.459741560702325e-14
+ - 2.149346103657787e-13
+ - 1.3118422770600977e-13
+ - -3.389190580201269e-13
+ - -4.2034010007494654e-14
+ - 3.1234339930002325e-14
+ - 6.183340514956392e-14
+ - 9.994988777600744e-14
+ - -6.098637220230962e-14
+ - 2.218167530622199e-13
+ - 9.645587686858345e-14
+ - 4.1928130889087867e-14
+ - 1.479131284142822e-13
+ - 2.1811098391798234e-14
+ - 1.6855955650360577e-13
+ - -3.372249921256183e-13
+ - -2.981555974335137e-13
+ - -3.7703554064657044e-13
+ - -1.7893571010747095e-13
+ - -4.309280119156253e-14
+ - 3.9048218868423246e-13
+ - 1.7279472123987727e-13
+ - -1.250432388384161e-13
+ - 1.9767631406547234e-13
+ - 4.1081097941833566e-13
+ - -3.5310685988663645e-13
+ - -9.624411863176988e-14
+ - -1.511953810848926e-13
+ - -9.77264262894649e-14
+ - 4.743384504624082e-14
+ - 2.0667603913004928e-13
+ - -2.406632361386281e-13
+ - 3.2176664083822734e-13
+ - 3.3542504711270293e-13
+ - 1.8740603958001395e-13
+ - 1.0746730518288936e-13
+ - 2.1006417091906648e-13
+ - 1.7522994096323338e-13
+ - -2.8015614730435984e-13
+ - 7.739763555536169e-14
+ - 5.338425150070228e-13
+ - -2.0540548970916783e-14
+- - 1.9212479970643574
+ - -3.77702613944647
+ - 4.377924574482038
+ - -3.6582781818249743
+ - 5.178819663020083
+ - -5.592139065089633
+ - -4.4491229307814235
+ - 6.0755174706916435
+ - -5.950526301942615
+ - 4.254809237895389
+ - -2.704700672139145
+ - -0.011524374726920418
+ - 2.863037913075096
+ - -0.5224257126261119
+ - -1.4375403330362755
+ - 4.600087190883962
+ - -5.631934073808348
+ - 5.291984297312253
+ - 4.774569783624947
+ - -6.014184034486391
+ - 5.607741374511339
+ - -3.4717089240738885
+ - 1.8219850598441265
+ - 0.8169372031601462
+ - -2.0585751896941917
+ - -0.4014209401563672
+ - 2.2804416098667533
+ - -5.038660815412148
+ - 5.8568803398460885
+ - -5.1489879164704915
+ - -5.121672308061909
+ - 5.877419861977989
+ - -5.672109054285606
+ - 0.9249819226288047
+ - 1.2453416886706155
+ - -3.615084632529966
+ - -0.6599627770452977
+ - 3.5542835677652547
+ - -4.994773149702825
+ - 6.466956466348679
+ - -6.44699506030297
+ - 4.528058765555425
+ - 5.809820075185924
+ - -5.497571335436567
+ - 4.012142685361242
+ - -0.2293736905558183
+ - -1.8538679989690787
+ - 3.965824984878519
+ - -9.740878893424454e-14
+ - -1.334076891925523e-13
+ - -1.6644197413547002e-13
+ - -6.988021814847978e-14
+ - -4.383395502041004e-14
+ - 1.41030985717841e-13
+ - 1.1498472258977127e-13
+ - 6.140988867593677e-14
+ - 1.469602163486211e-13
+ - -1.0630263488041469e-13
+ - -1.1350241493207625e-13
+ - 2.0328790734103208e-13
+ - -1.2620790914089075e-13
+ - 1.0376153603865179e-14
+ - -1.4738373282224826e-13
+ - -5.590417451878382e-14
+ - -2.32722302258119e-13
+ - -2.964615315390051e-14
+ - -1.6474790824096142e-13
+ - -3.9810548520952116e-14
+ - -3.0450834453792097e-13
+ - 1.554305458211641e-13
+ - -9.783230540787169e-14
+ - -6.776263578034403e-15
+ - 4.828087799349512e-14
+ - -1.5246593050577406e-14
+ - 5.653944922922455e-14
+ - 7.64447234897006e-14
+ - -1.1350241493207625e-13
+ - 1.6559494118821572e-13
+ - -5.95040645446146e-14
+ - 1.8486494073825105e-13
+ - -9.486769009248164e-14
+ - 1.1689054672109345e-13
+ - -9.783230540787169e-14
+ - -6.20451633863775e-14
+ - -1.9566461081574338e-13
+ - 5.505714157152952e-14
+ - 1.0545560193316039e-13
+ - 3.7015339795012925e-13
+ - 1.895236219481497e-13
+ - 1.461131834013668e-14
+ - -9.889109659193956e-14
+ - -3.206019705357527e-13
+ - 1.7957098481791167e-13
+ - -1.90370654895404e-13
+ - -6.564505341220828e-15
+ - 1.5775988642611344e-13
+ - -3.959879028413854e-14
+ - 1.6305384234645282e-13
+ - 1.130788984584491e-13
+ - -1.3827812863926453e-13
+ - -2.1133472033994793e-13
+ - 2.445807635196792e-13
+ - -3.146727399049726e-13
+ - -4.2012834183813297e-13
+ - -4.6375053862172944e-14
+ - 1.1752582143153417e-13
+ - -3.5998900258307764e-14
+ - -6.903318520122548e-14
+ - 9.380889890841376e-14
+ - -1.7914746834428452e-13
+ - 2.422514229147299e-13
+ - 9.571472303973594e-14
+- - 7.521486751102796
+ - -9.979858852583067
+ - 9.606291852261782
+ - -9.35979785290723
+ - 11.201703835978838
+ - -10.309791540210702
+ - -9.952073793313378
+ - 11.482309487277604
+ - -10.03971087063992
+ - 4.952121280165837
+ - -1.4160525813881817
+ - -3.425793933071856
+ - 2.1871867093149486
+ - 2.8451196739585463
+ - -6.155367740438755
+ - 10.44404794021044
+ - -11.202471664913034
+ - 8.869677331075213
+ - 9.851245170391165
+ - -10.478247464947918
+ - 8.53864400078025
+ - -2.919778472952636
+ - -0.58916343937067
+ - 4.862473439253892
+ - -0.2749121724103453
+ - -4.561708043272415
+ - 7.364796414123085
+ - -10.461447057812839
+ - 10.680652639903203
+ - -7.814230222647379
+ - -9.680676544025838
+ - 9.288536684421688
+ - -7.5426234097394
+ - -1.7036687089019895
+ - 5.606411891164331
+ - -8.865832651906457
+ - -4.324986551294095
+ - 9.154272341736014
+ - -10.81713810575957
+ - 11.34748611013575
+ - -10.186153011335666
+ - 5.710516211056017
+ - 9.48777199792061
+ - -7.388056480478016
+ - 4.037061662149667
+ - 3.0416385910323305
+ - -7.241200082273628
+ - 10.432931424477072
+ - -2.6385076306971456e-13
+ - -2.346281263894412e-13
+ - -3.6930636500287495e-13
+ - -1.4907779871675686e-13
+ - -6.522153693858113e-14
+ - 2.846030702774449e-13
+ - 1.6263032587282567e-13
+ - 2.253107639696439e-13
+ - 2.1556988507621944e-13
+ - -1.2705494208814505e-13
+ - -3.023907621697852e-13
+ - 3.38389662428093e-13
+ - -1.8465318250143747e-13
+ - 1.6178329292557136e-13
+ - -1.8550021544869177e-13
+ - -7.284483346386983e-14
+ - -1.7321823771350442e-13
+ - -2.0286439086740493e-13
+ - -1.207021949837378e-13
+ - -9.232659125071874e-14
+ - -5.730177888175342e-13
+ - 1.9397054492123478e-13
+ - -1.0418505251227894e-13
+ - -1.0291450309139749e-13
+ - 1.2281977735187355e-14
+ - 1.2536087619363645e-13
+ - 9.910285482875314e-14
+ - 9.613823951336309e-14
+ - -1.8973538018496328e-13
+ - 1.9397054492123478e-13
+ - -5.844527336054672e-14
+ - 1.6898307297723292e-13
+ - -1.7787691892340307e-13
+ - 1.4992483166401116e-13
+ - -2.0498197323554068e-13
+ - -9.910285482875314e-14
+ - -3.544832884259247e-13
+ - 2.2573428044327104e-13
+ - 2.8079142201480056e-13
+ - 6.954140496957806e-13
+ - 3.4982460721602604e-13
+ - 3.9810548520952116e-14
+ - -3.117081245895825e-13
+ - -5.349013061910907e-13
+ - 3.121316410632097e-13
+ - -3.5914196963582334e-13
+ - -1.8804131429045468e-13
+ - 3.7947076036992655e-13
+ - -1.4823076576950256e-14
+ - 2.9942614685439517e-13
+ - 2.0498197323554068e-13
+ - -2.185345003916095e-13
+ - -3.9302328752599536e-13
+ - 4.552802091491864e-13
+ - -5.912289971835016e-13
+ - -7.487771253728015e-13
+ - -1.478072492958754e-13
+ - 1.215492279309921e-13
+ - -1.427250516123496e-13
+ - -1.7491230360801302e-13
+ - 2.56650983018053e-13
+ - -2.9095581738185217e-13
+ - 1.1519648082658485e-13
+ - 1.461131834013668e-13
+- - 9.162280700606539
+ - -11.305192552825435
+ - 10.367084872069574
+ - -9.751235612563585
+ - 12.037642171194769
+ - -10.506398395130939
+ - -10.800178895062492
+ - 11.807136847117162
+ - -9.880926496173476
+ - 3.958318749334634
+ - -0.09961206195068764
+ - -4.772168814941206
+ - 1.065765621843634
+ - 4.332329329670745
+ - -7.591625789417333
+ - 11.381927333568468
+ - -11.724393429890641
+ - 8.705162723072947
+ - 10.433723104046612
+ - -10.448680958111307
+ - 8.024213687841497
+ - -1.665743187020023
+ - -2.08601734950801
+ - 6.21811044231479
+ - 1.0444541228407147
+ - -6.08669069558627
+ - 8.694467991099973
+ - -11.101962747518854
+ - 10.840219648594397
+ - -7.33164779618896
+ - -9.954932891995309
+ - 8.88348953170802
+ - -6.5897690716381385
+ - -3.018872925578757
+ - 6.958968405210322
+ - -9.863077486632756
+ - -5.5770251900978405
+ - 10.307724014342291
+ - -11.628719582001347
+ - 11.347471800240852
+ - -9.740863771073363
+ - 4.826985634122053
+ - 9.208390749878422
+ - -6.495177942058553
+ - 2.849835044455865
+ - 4.403252876822217
+ - -8.817930774634196
+ - 11.806409087801196
+ - -3.0196724569615807e-13
+ - -2.354751593366955e-13
+ - -3.985290016831483e-13
+ - -1.6347735882007997e-13
+ - -5.802175688691957e-14
+ - 2.9603801506537797e-13
+ - 1.478072492958754e-13
+ - 2.744386749103933e-13
+ - 1.9735867671025198e-13
+ - -1.0630263488041469e-13
+ - -3.443188930588731e-13
+ - 3.341544976918215e-13
+ - -1.7279472123987727e-13
+ - 2.1218175328720223e-13
+ - -1.5754812818929986e-13
+ - -6.310395457044538e-14
+ - -7.792703114739563e-14
+ - -2.668153783851046e-13
+ - -5.548065804515667e-14
+ - -9.952637130238029e-14
+ - -5.912289971835016e-13
+ - 1.6263032587282567e-13
+ - -7.835054762102278e-14
+ - -1.3891340334970526e-13
+ - -1.3552527156068805e-14
+ - 1.8634724839594607e-13
+ - 9.952637130238029e-14
+ - 8.555032767268433e-14
+ - -1.8804131429045468e-13
+ - 1.6051274350468991e-13
+ - -3.9810548520952116e-14
+ - 1.0545560193316039e-13
+ - -1.8422966602781032e-13
+ - 1.3044307387716225e-13
+ - -2.1811098391798234e-13
+ - -9.656175598699024e-14
+ - -3.5829493668856904e-13
+ - 2.7486219138402046e-13
+ - 3.180608716939898e-13
+ - 7.102371262727308e-13
+ - 3.5660087079406044e-13
+ - 4.531626267810507e-14
+ - -3.654947167402306e-13
+ - -5.230428449295305e-13
+ - 3.155197728522269e-13
+ - -3.7269449679189215e-13
+ - -2.5622746654442585e-13
+ - 4.205518583117601e-13
+ - 8.046812998915853e-15
+ - 3.057788939588024e-13
+ - 2.0921713797181218e-13
+ - -2.1133472033994793e-13
+ - -4.010701005249112e-13
+ - 4.667151539371195e-13
+ - -6.068991067077062e-13
+ - -7.517417406881916e-13
+ - -1.7448878713438587e-13
+ - 9.105604182983729e-14
+ - -1.7660636950252162e-13
+ - -1.9651164376299768e-13
+ - 2.947674656444965e-13
+ - -2.8333252085656346e-13
+ - -7.199780051661553e-15
+ - 1.376428539288238e-13
+- - -3.2356829534619367
+ - 5.431222354759373
+ - -7.070587507923899
+ - 9.399116205463528
+ - -9.116231608258492
+ - 8.970446720047956
+ - 7.218008624428972
+ - -10.491022720245303
+ - 9.494737698711146
+ - -6.669992510823335
+ - 3.4164200421171014
+ - 0.18869777439630234
+ - -4.425922810087348
+ - -0.086850695922476
+ - 2.467743326860577
+ - -7.436713091980077
+ - 8.295029464123552
+ - -8.410698304152847
+ - -7.6682779641282215
+ - 8.843525862396637
+ - -8.88278488025871
+ - 5.413667839738456
+ - -3.4953680860967467
+ - -1.4367672001759584
+ - 3.1583668093915302
+ - 0.057667391717172924
+ - -3.7786606004666563
+ - 8.129516292703947
+ - -10.124646532167315
+ - 8.187013982291141
+ - 8.229664027416293
+ - -10.094984322763027
+ - 8.963726639682381
+ - -1.3107567267945934
+ - -2.9023403701010775
+ - 5.909907883501317
+ - 1.2212176946491273
+ - -6.565773404150391
+ - 8.082520655845142
+ - -10.31312050435339
+ - 9.485905489120368
+ - -7.105527717961251
+ - -9.223488872737008
+ - 7.917069420129538
+ - -6.253133975153082
+ - 0.21683758282131993
+ - 2.389403789379905
+ - -6.469559011365721
+ - 1.3891340334970526e-13
+ - 2.0498197323554068e-13
+ - 2.879912020664621e-13
+ - 9.994988777600744e-14
+ - 5.759824041329242e-14
+ - -1.6771252355635147e-13
+ - -1.8465318250143747e-13
+ - -1.0842021724855044e-13
+ - -2.0159384144652348e-13
+ - 1.9312351197398048e-13
+ - 1.7279472123987727e-13
+ - -3.4050724479622874e-13
+ - 2.405573570202213e-13
+ - -5.082197683525802e-14
+ - 2.473336205982557e-13
+ - 6.098637220230962e-14
+ - 4.2521053952165877e-13
+ - 3.8963515573697816e-14
+ - 2.710505431213761e-13
+ - -1.1858461261560205e-14
+ - 4.692562527788824e-13
+ - -2.456395547037471e-13
+ - 7.792703114739563e-14
+ - 9.147955830346444e-14
+ - -6.945670167485263e-14
+ - 2.879912020664621e-14
+ - -6.098637220230962e-14
+ - -1.0333801956502464e-13
+ - 1.3721933745519665e-13
+ - -2.0667603913004928e-13
+ - 1.1519648082658485e-13
+ - -2.574980159653073e-13
+ - 1.0503208545953324e-13
+ - -1.2874900798265365e-13
+ - 1.5924219408380846e-13
+ - 7.115076756936123e-14
+ - 2.981555974335137e-13
+ - -1.1011428314305904e-13
+ - -1.3721933745519665e-13
+ - -6.386628422297425e-13
+ - -2.591920818598159e-13
+ - -2.541098841762901e-14
+ - 2.439454888092385e-13
+ - 5.759824041329242e-13
+ - -2.761327408049019e-13
+ - 2.862971361719535e-13
+ - -5.421010862427522e-14
+ - -2.930733997499879e-13
+ - 6.945670167485263e-14
+ - -2.998496633280223e-13
+ - -1.4907779871675686e-13
+ - 2.490276864927643e-13
+ - 2.710505431213761e-13
+ - -3.4558944247975454e-13
+ - 4.895850435129856e-13
+ - 6.877907531704919e-13
+ - 7.962109704190423e-14
+ - -2.1514636860259229e-13
+ - -5.082197683525802e-15
+ - 8.639736061993863e-14
+ - -1.2197274440461925e-13
+ - 3.1509625637859973e-13
+ - -3.3542504711270293e-13
+ - -1.2874900798265365e-13
+- - -7.1858913834039235
+ - 10.537421883061638
+ - -12.611487234267946
+ - 15.477668356419123
+ - -15.88623939523909
+ - 15.158143550416392
+ - 12.951304275951504
+ - -17.79249232954977
+ - 15.643296781976696
+ - -10.025419652377792
+ - 4.291798116771955
+ - 1.7859284933643447
+ - -6.1477731064476115
+ - -1.7312022651722752
+ - 5.68139223711646
+ - -13.415565302262422
+ - 14.430008751533379
+ - -13.83279243276102
+ - -13.412997355384569
+ - 14.740574644142162
+ - -14.236154436878703
+ - 7.646604688821604
+ - -4.145741562953617
+ - -3.877328648631422
+ - 3.8175291372118663
+ - 1.8041457629275715
+ - -7.749932903387621
+ - 14.24310864307762
+ - -17.001314816775057
+ - 13.110118932934958
+ - 14.008889836840595
+ - -16.334306817290763
+ - 13.890017275389917
+ - -0.7461170076672908
+ - -6.273909300845599
+ - 10.934855240583033
+ - 3.4024427017637526
+ - -12.15921132080919
+ - 14.351713249466345
+ - -17.181597302340553
+ - 15.356147364679881
+ - -10.872299313460433
+ - -15.061270848193425
+ - 12.253168353321653
+ - -9.119814398880559
+ - -1.1282053382055386
+ - 5.744893027818196
+ - -12.280964300642667
+ - 2.608861477543245e-13
+ - 3.3711911300721153e-13
+ - 5.116079001415974e-13
+ - 1.9142944607947188e-13
+ - 9.317362419797304e-14
+ - -2.981555974335137e-13
+ - -2.913793338554793e-13
+ - -2.456395547037471e-13
+ - -3.3203691532368573e-13
+ - 2.930733997499879e-13
+ - 3.3034284942917713e-13
+ - -5.64123942871364e-13
+ - 3.8963515573697816e-13
+ - -1.3213713977167085e-13
+ - 3.8285889215894375e-13
+ - 8.639736061993863e-14
+ - 6.098637220230962e-13
+ - 1.3721933745519665e-13
+ - 3.7100043089738355e-13
+ - -1.0164395367051604e-14
+ - 7.860465750519907e-13
+ - -3.7438856268640075e-13
+ - 1.0842021724855044e-13
+ - 1.8973538018496328e-13
+ - -7.623296525288703e-14
+ - -6.776263578034403e-15
+ - -1.0164395367051604e-13
+ - -1.6432439176733427e-13
+ - 2.286988957586611e-13
+ - -3.1340219048409113e-13
+ - 1.7448878713438587e-13
+ - -3.6761229910836635e-13
+ - 1.6432439176733427e-13
+ - -2.0159384144652348e-13
+ - 2.812149384884277e-13
+ - 1.3044307387716225e-13
+ - 4.997494388800372e-13
+ - -2.405573570202213e-13
+ - -2.659683454378503e-13
+ - -1.0842021724855044e-12
+ - -4.45539330255762e-13
+ - -4.912791094074942e-14
+ - 4.658681209898652e-13
+ - 9.41900637346782e-13
+ - -4.641740550953566e-13
+ - 4.980553729855286e-13
+ - -1.3552527156068805e-14
+ - -5.166900978251232e-13
+ - 7.962109704190423e-14
+ - -5.014435047745458e-13
+ - -2.642742795433417e-13
+ - 4.0318768289304696e-13
+ - 4.590918574118308e-13
+ - -5.861467994999758e-13
+ - 8.317863542037229e-13
+ - 1.1434944787933055e-12
+ - 1.6432439176733427e-13
+ - -3.100140586950739e-13
+ - 1.8634724839594607e-14
+ - 1.6771252355635147e-13
+ - -2.388632911257127e-13
+ - 5.183841637196318e-13
+ - -4.2521053952165877e-13
+ - -1.8804131429045468e-13
+- - -5.212287960399375
+ - 7.068129296779004
+ - -7.981448048178705
+ - 9.190698508833938
+ - -9.140409558106349
+ - 9.197572425497652
+ - 8.232621460878814
+ - -10.828233807701421
+ - 9.293204962082704
+ - -5.465563518717062
+ - 1.86960641925161
+ - 1.811159531360895
+ - -3.0702356734923524
+ - -1.8361806832061118
+ - 4.196825352356359
+ - -8.561281397631381
+ - 8.960623964961188
+ - -8.205194626804944
+ - -8.364410610046175
+ - 8.84346287366136
+ - -8.254383966085186
+ - 3.8952655076455334
+ - -1.6424489252540355
+ - -3.0714527618917677
+ - 1.562906885882479
+ - 1.9410189230909094
+ - -5.3792496492902835
+ - 8.893251664211252
+ - -10.262835198206705
+ - 7.595765882255279
+ - 8.551069037174496
+ - -9.552205424937172
+ - 7.804887193151403
+ - 0.2756288960975089
+ - -4.486026867654666
+ - 7.105276129390313
+ - 2.728433958850155
+ - -7.905771609125558
+ - 9.052385957778021
+ - -10.303670619402826
+ - 8.983952410182738
+ - -6.03443092431719
+ - -8.878717464630034
+ - 6.877012375942906
+ - -4.816290885063223
+ - -1.425728658918029
+ - 4.332465570902142
+ - -8.120621968282581
+ - 1.8888834723770898e-13
+ - 2.0498197323554068e-13
+ - 3.117081245895825e-13
+ - 1.2959604092990795e-13
+ - 5.421010862427522e-14
+ - -1.9735867671025198e-13
+ - -1.7533582008164017e-13
+ - -1.7618285302889447e-13
+ - -1.9142944607947188e-13
+ - 1.6263032587282567e-13
+ - 2.1345230270808369e-13
+ - -3.3881317890172014e-13
+ - 2.39710324072967e-13
+ - -1.1350241493207625e-13
+ - 2.193815333388638e-13
+ - 5.421010862427522e-14
+ - 3.07472959853311e-13
+ - 1.0333801956502464e-13
+ - 1.8634724839594607e-13
+ - 1.1011428314305904e-14
+ - 4.828087799349512e-13
+ - -2.1684043449710089e-13
+ - 4.1504614415460717e-14
+ - 1.2959604092990795e-13
+ - -2.541098841762901e-14
+ - -4.404571325722362e-14
+ - -6.776263578034403e-14
+ - -9.232659125071874e-14
+ - 1.4314856808597676e-13
+ - -1.7194768829262297e-13
+ - 9.656175598699024e-14
+ - -1.8634724839594607e-13
+ - 9.486769009248164e-14
+ - -1.0672615135404184e-13
+ - 1.6771252355635147e-13
+ - 7.284483346386983e-14
+ - 2.922263668027336e-13
+ - -1.6686549060909717e-13
+ - -1.7957098481791167e-13
+ - -6.606856988583543e-13
+ - -2.625802136488331e-13
+ - -3.3881317890172014e-14
+ - 2.99002630380768e-13
+ - 5.632769099241097e-13
+ - -2.90532300908225e-13
+ - 3.006966962752766e-13
+ - 3.049318610115481e-14
+ - -3.3203691532368573e-13
+ - 3.134021904840911e-14
+ - -2.981555974335137e-13
+ - -1.5077186461126546e-13
+ - 2.346281263894412e-13
+ - 2.769797737521562e-13
+ - -3.4304834363799164e-13
+ - 5.039846036163087e-13
+ - 6.818615225397118e-13
+ - 1.1434944787933055e-13
+ - -1.7957098481791167e-13
+ - 3.3881317890172014e-14
+ - 1.1011428314305904e-13
+ - -1.7194768829262297e-13
+ - 3.083199928005653e-13
+ - -1.8634724839594607e-13
+ - -1.0587911840678754e-13
+- - -1.1410885931663426
+ - -1.9040649038286743
+ - 3.87734763131167
+ - -7.797204107401418
+ - 8.803932597464508
+ - -6.6384993746376875
+ - -3.776936006814084
+ - 6.9564938736429776
+ - -7.864606962581874
+ - 7.5386487105871876
+ - -6.295736949656891
+ - 2.9145473350094386
+ - 6.057676626007714
+ - -3.9095560531869147
+ - 1.3079235723306155
+ - 3.7730324300581732
+ - -5.995826737261459
+ - 7.045505194337699
+ - 4.766752632737568
+ - -7.678501518744042
+ - 8.205543190294524
+ - -7.114718255132538
+ - 5.544154931581422
+ - -1.9161915641384542
+ - -5.470957319557147
+ - 2.7957171817830546
+ - -0.010494789454006052
+ - -4.973598427303749
+ - 7.039675644746915
+ - -7.555930431048937
+ - -5.875049211100114
+ - 8.293808935185561
+ - -9.240059827114782
+ - 4.030152469864329
+ - -1.3829484035817994
+ - -2.398446680036514
+ - 1.8900826674570363
+ - 1.9678875140399772
+ - -4.545949349301515
+ - 8.17228222233426
+ - -9.12977908093481
+ - 7.644318372596617
+ - 7.9497608674838505
+ - -8.903717508319708
+ - 7.652899302888963
+ - -3.2516814874045314
+ - 1.0730186702216724
+ - 2.0240561518443245
+ - -1.6940658945086007e-14
+ - -1.8550021544869177e-13
+ - -1.8041801776516597e-13
+ - -2.286988957586611e-14
+ - -8.173867941003998e-14
+ - 1.2387856853594142e-13
+ - 1.590304358469949e-13
+ - -1.0587911840678754e-14
+ - 2.0582900618279498e-13
+ - -1.8338263308055602e-13
+ - -3.4304834363799164e-14
+ - 2.6469779601696886e-13
+ - -1.6368911705689354e-13
+ - -1.4060746924421386e-13
+ - -2.2679307162733892e-13
+ - -6.776263578034403e-14
+ - -5.01867021248173e-13
+ - 5.166900978251232e-14
+ - -3.5914196963582334e-13
+ - -3.6422416731934915e-14
+ - -3.2017845406212553e-13
+ - 2.625802136488331e-13
+ - -2.3335757696855974e-13
+ - 3.875175733688424e-14
+ - 1.73429995950318e-13
+ - -1.9248823726353975e-13
+ - 4.616329562535937e-14
+ - 1.24090326772755e-13
+ - -1.0990252490624547e-13
+ - 2.73591641963139e-13
+ - -1.0249098661777034e-13
+ - 3.729062550287057e-13
+ - -1.3065483211397583e-13
+ - 2.261577969168982e-13
+ - -1.0037340424963459e-13
+ - -1.1456120611614412e-13
+ - -2.7147405959500326e-13
+ - -5.505714157152952e-15
+ - 5.2727800966580196e-14
+ - 4.2457526481121804e-13
+ - 2.1175823681357508e-13
+ - -1.8422966602781032e-14
+ - -3.282252670610414e-14
+ - -4.290221877843031e-13
+ - 2.15781643313033e-13
+ - -2.0731131384049e-13
+ - 1.759710947920809e-13
+ - 1.1943164556285635e-13
+ - -1.1879637085241562e-13
+ - 2.0519373147235426e-13
+ - 1.4145450219146816e-13
+ - -2.22769665127881e-13
+ - -2.4775713707188285e-13
+ - 3.443188930588731e-13
+ - -3.6253010142484055e-13
+ - -5.346895479542771e-13
+ - 6.988021814847978e-15
+ - 2.0688779736686286e-13
+ - 5.738648217647885e-14
+ - -3.091670257478196e-14
+ - 1.7364175418713157e-14
+ - -2.488159282559507e-13
+ - 5.721707558702799e-13
+ - 1.5670109524204556e-13
+- - 0.21282717127909342
+ - -5.281474808236151
+ - 8.076785283278843
+ - -13.889151524187092
+ - 15.02298918718225
+ - -12.142590568595491
+ - -8.01647217262635
+ - 13.053040466042964
+ - -14.018824050576624
+ - 12.268655697031821
+ - -9.563485924334394
+ - 3.40672194440053
+ - 9.409958991996282
+ - -5.006000297663657
+ - 0.3730783218902506
+ - 8.133804025259941
+ - -11.573850451276545
+ - 12.527553025297733
+ - 9.439287173234952
+ - -13.854431634967929
+ - 14.141911433066342
+ - -11.139869339070477
+ - 7.96572118673551
+ - -1.5866355313579275
+ - -8.073092382346166
+ - 2.950469959365151
+ - 1.82773171326353
+ - -9.89470069886853
+ - 12.974119343885372
+ - -13.010288523546464
+ - -11.018187323844208
+ - 14.460581364538026
+ - -15.406255798101263
+ - 5.469880902886342
+ - -0.618404168629139
+ - -5.727856988381642
+ - 1.6828353423179645
+ - 5.17189833007967
+ - -9.35805644469117
+ - 14.796191965586818
+ - -15.904608524645058
+ - 12.613019089038902
+ - 14.005199561969528
+ - -14.87361241896422
+ - 12.206787696618097
+ - -3.996157232777677
+ - -0.2404983424103504
+ - 5.572186558500861
+ - -9.783230540787169e-14
+ - -3.290723000082957e-13
+ - -3.5236570605778894e-13
+ - -7.453889935837843e-14
+ - -1.384898868760781e-13
+ - 2.5368636770266295e-13
+ - 2.7825032317303766e-13
+ - 5.124549330888517e-14
+ - 3.5151867311053464e-13
+ - -2.99002630380768e-13
+ - -1.215492279309921e-13
+ - 4.760325163569168e-13
+ - -2.939204326972422e-13
+ - -1.6220680939919851e-13
+ - -3.866705404215881e-13
+ - -1.215492279309921e-13
+ - -7.720705314222948e-13
+ - 3.218725199566341e-14
+ - -5.543830639779396e-13
+ - -7.580944877925988e-14
+ - -6.085931726022148e-13
+ - 4.341043854678289e-13
+ - -3.5660087079406044e-13
+ - 3.176373552203626e-14
+ - 2.507217523872729e-13
+ - -2.464865876510014e-13
+ - 8.851494298807439e-14
+ - 2.0371142381465923e-13
+ - -2.1429933565533799e-13
+ - 4.463863632030163e-13
+ - -1.6474790824096142e-13
+ - 5.903819642362473e-13
+ - -2.2996944517954254e-13
+ - 3.6422416731934915e-13
+ - -1.9100592960584473e-13
+ - -1.8888834723770898e-13
+ - -4.828087799349512e-13
+ - 5.209252625613947e-14
+ - 1.5161889755851976e-13
+ - 8.042577834179582e-13
+ - 3.968349357886397e-13
+ - -1.5670109524204556e-14
+ - -1.207021949837378e-13
+ - -7.640237184233789e-13
+ - 4.044582323139284e-13
+ - -3.909057051578596e-13
+ - 2.1429933565533799e-13
+ - 2.65121312490596e-13
+ - -1.6983010592448722e-13
+ - 3.6930636500287495e-13
+ - 2.515687853345272e-13
+ - -3.7608262858090935e-13
+ - -4.561272420964407e-13
+ - 6.081696561285876e-13
+ - -6.844026213814747e-13
+ - -9.634999775017666e-13
+ - -2.710505431213761e-14
+ - 3.3373098121819433e-13
+ - 4.870439446712227e-14
+ - -8.682087709356578e-14
+ - 9.275010772434589e-14
+ - -4.387630666777276e-13
+ - 8.643971226730135e-13
+ - 2.6385076306971456e-13
+- - 7.158064800513094
+ - -11.08685693884166
+ - 11.63380776282265
+ - -13.780979160318369
+ - 12.86579426743195
+ - -8.021154529743862
+ - -11.940730401235951
+ - 14.997722904759685
+ - -13.939366607660599
+ - 8.584544736867388
+ - -4.380885510148495
+ - -2.1420585566642747
+ - 5.06549493709499
+ - 1.0908431728657884
+ - -5.683481095910767
+ - 12.441658955134194
+ - -14.247980154389152
+ - 12.3600727203389
+ - 12.29951806756325
+ - -14.2932922188459
+ - 12.563424605299979
+ - -6.308594962498
+ - 1.9943312962694146
+ - 4.077031131820494
+ - -2.8364503938301864
+ - -3.351447557692443
+ - 7.525913066954446
+ - -13.020416307972894
+ - 14.216843903786502
+ - -11.519603536415833
+ - -12.643130968636935
+ - 13.379061414154615
+ - -12.028364900718058
+ - 0.13995027389201575
+ - 5.094524775440374
+ - -10.186247213252626
+ - -3.5400753094325386
+ - 10.287375530587335
+ - -13.184441040389718
+ - 15.420101023218194
+ - -14.672390180705348
+ - 9.409269343426237
+ - 13.414420523363145
+ - -11.705568904647674
+ - 7.702126717246388
+ - 1.5915596211132692
+ - -6.896015868570974
+ - 11.613420883159323
+ - -3.0535537748517527e-13
+ - -3.222960364302613e-13
+ - -4.4426878083488053e-13
+ - -1.6644197413547002e-13
+ - -1.15619997300212e-13
+ - 3.7015339795012925e-13
+ - 2.5876856538618875e-13
+ - 2.558039500707987e-13
+ - 3.057788939588024e-13
+ - -2.219226321806267e-13
+ - -2.99002630380768e-13
+ - 4.866204281975955e-13
+ - -2.8841471854008927e-13
+ - 1.2112571145736495e-13
+ - -3.2780175058741423e-13
+ - -1.223962608782464e-13
+ - -3.9810548520952116e-13
+ - -1.5585406229479126e-13
+ - -2.879912020664621e-13
+ - -1.1265538198482195e-13
+ - -7.267542687441897e-13
+ - 3.2991933295555e-13
+ - -1.7830043539703022e-13
+ - -7.496241583200558e-14
+ - 7.877406409464993e-14
+ - 5.082197683525802e-14
+ - 1.181610961419749e-13
+ - 1.4653669987499396e-13
+ - -2.7655625727852906e-13
+ - 3.2017845406212553e-13
+ - -1.1096131609031334e-13
+ - 3.5151867311053464e-13
+ - -2.1684043449710089e-13
+ - 2.422514229147299e-13
+ - -2.4436900528286565e-13
+ - -1.435720845596039e-13
+ - -4.836558128822055e-13
+ - 2.3166351107405114e-13
+ - 3.206019705357527e-13
+ - 9.351243737687476e-13
+ - 4.429982314139991e-13
+ - 3.6845933205562065e-14
+ - -3.282252670610414e-13
+ - -7.568239383717174e-13
+ - 4.612094397799665e-13
+ - -4.4426878083488053e-13
+ - -9.359714067160019e-14
+ - 4.404571325722362e-13
+ - -5.675120746603812e-14
+ - 3.765061450545365e-13
+ - 2.422514229147299e-13
+ - -3.172138387467355e-13
+ - -5.010199883009187e-13
+ - 5.869938324472301e-13
+ - -7.796938279475835e-13
+ - -1.0054281083908545e-12
+ - -1.5966571055743561e-13
+ - 2.2742834633777964e-13
+ - -1.2705494208814505e-13
+ - -1.7957098481791167e-13
+ - 2.634272465960874e-13
+ - -4.2436350657440447e-13
+ - 3.7777669447541795e-13
+ - 2.1641691802347374e-13
+- - 5.26861578497662
+ - -7.261814631529953
+ - 7.160109822258967
+ - -7.697398035584346
+ - 6.813102580489416
+ - -3.7437932420149256
+ - -6.489705320536842
+ - 8.751249908771149
+ - -7.791301901696943
+ - 4.138634675913247
+ - -1.5127736552433937
+ - -2.2063714138815076
+ - 2.0482228009095667
+ - 1.717163132259228
+ - -4.281625793575875
+ - 7.748731948709794
+ - -8.463780219617815
+ - 6.890961796033181
+ - 7.406453944427236
+ - -8.083547257226119
+ - 6.7487961662371765
+ - -2.655994253213561
+ - 0.03322213170529816
+ - 3.310758008802275
+ - -0.6381172197226767
+ - -3.0202660500796057
+ - 5.248314333306386
+ - -7.85831431402346
+ - 8.186600262215972
+ - -6.180212971787822
+ - -7.374716754889834
+ - 7.295709671070354
+ - -6.122659544663635
+ - -0.8887877385158416
+ - 3.889467146647814
+ - -6.513069675517016
+ - -2.9300965798944363
+ - 6.688930209053294
+ - -8.07730604460314
+ - 8.748109854952004
+ - -7.992603220379205
+ - 4.68762645487798
+ - 7.404561175545638
+ - -5.979982265006873
+ - 3.4956061176645044
+ - 1.9051702312459708
+ - -5.0693050012633405
+ - 7.5994729073190905
+ - -2.0752307207730358e-13
+ - -1.7914746834428452e-13
+ - -2.6385076306971456e-13
+ - -1.0778494253810972e-13
+ - -6.013933925505532e-14
+ - 2.2891065399547467e-13
+ - 1.427250516123496e-13
+ - 1.81900325422861e-13
+ - 1.6263032587282567e-13
+ - -1.1180834903756764e-13
+ - -2.0117032497289633e-13
+ - 2.7232109254225756e-13
+ - -1.5966571055743561e-13
+ - 1.1943164556285635e-13
+ - -1.7321823771350442e-13
+ - -6.88214269644119e-14
+ - -1.5839516113655416e-13
+ - -1.1921988732604277e-13
+ - -1.1244362374800837e-13
+ - -7.030373462210693e-14
+ - -4.2626933070572665e-13
+ - 1.6347735882007997e-13
+ - -6.670384459627615e-14
+ - -6.077461396549605e-14
+ - 1.3129010682441655e-14
+ - 8.152692117322641e-14
+ - 7.369186641112413e-14
+ - 6.839791049078475e-14
+ - -1.6601845766184287e-13
+ - 1.562775787684184e-13
+ - -5.3574833913834496e-14
+ - 1.5310120521621479e-13
+ - -1.1858461261560205e-13
+ - 1.130788984584491e-13
+ - -1.4717197458543468e-13
+ - -7.242131699024268e-14
+ - -2.718975760686304e-13
+ - 1.6284208410963924e-13
+ - 2.090053797349986e-13
+ - 5.45700976268583e-13
+ - 2.5707449949168015e-13
+ - 3.049318610115481e-14
+ - -2.2213439041744026e-13
+ - -4.2266944067989587e-13
+ - 2.676624113323589e-13
+ - -2.610979059911381e-13
+ - -1.0545560193316039e-13
+ - 2.7846208140985124e-13
+ - -1.1858461261560205e-14
+ - 2.1429933565533799e-13
+ - 1.3065483211397583e-13
+ - -1.6771252355635147e-13
+ - -2.9010878443459787e-13
+ - 3.248371352720242e-13
+ - -4.54009659728305e-13
+ - -5.694178987917034e-13
+ - -1.1265538198482195e-13
+ - 1.0672615135404184e-13
+ - -1.0227922838095677e-13
+ - -1.1667878848427987e-13
+ - 1.7893571010747095e-13
+ - -2.3483988462625477e-13
+ - 1.2387856853594142e-13
+ - 1.1180834903756764e-13
+- - 0.22408320855009048
+ - 2.693989222748813
+ - -5.534544608616029
+ - 9.864235120312616
+ - -11.514450501692124
+ - 8.83636868446326
+ - 9.767177190627697
+ - -9.90324755434584
+ - 9.949390896804081
+ - -8.871911670395688
+ - 6.289745962076985
+ - -2.6814785989512724
+ - -6.8728028305345275
+ - 3.107809992505384
+ - -0.5659932833538858
+ - -5.527683507905543
+ - 7.30684064640394
+ - -8.865285847347376
+ - -6.520397834853145
+ - 9.03840930381292
+ - -10.089321606821196
+ - 8.154565444589789
+ - -6.70763025071549
+ - 1.4366663875369141
+ - 6.010731396940413
+ - -3.171063213346387
+ - -0.9890513110342681
+ - 6.862462053858841
+ - -9.884853281294138
+ - 9.31606473395891
+ - 7.744817384984271
+ - -11.059152486288498
+ - 11.105587326008058
+ - -4.132792801182878
+ - -0.029143082055911446
+ - 3.854324988997984
+ - -1.4353265465456333
+ - -4.162182806994435
+ - 6.449877395641118
+ - -10.439879532047042
+ - 10.575480588059616
+ - -9.077974077313415
+ - -9.93308550826955
+ - 9.942241567549917
+ - -8.86276956830095
+ - 3.1237860825888735
+ - -0.9213559993782929
+ - -3.619629728892252
+ - 3.218725199566341e-14
+ - 2.1514636860259229e-13
+ - 2.507217523872729e-13
+ - 5.336307567702092e-14
+ - 8.470329472543003e-14
+ - -1.1604351377383915e-13
+ - -2.1429933565533799e-13
+ - -2.456395547037471e-14
+ - -2.346281263894412e-13
+ - 2.380162581784584e-13
+ - 6.860966872759833e-14
+ - -3.5744790374131474e-13
+ - 2.702035101741218e-13
+ - 1.1773757966834775e-13
+ - 2.837560373301906e-13
+ - 5.251604272976662e-14
+ - 6.361217433879796e-13
+ - -4.235164736271502e-14
+ - 4.1589317710186147e-13
+ - -2.286988957586611e-14
+ - 4.1419911120735287e-13
+ - -3.1679032227310833e-13
+ - 1.8634724839594607e-13
+ - 4.319868030996932e-14
+ - -1.6263032587282567e-13
+ - 1.9058241313221758e-13
+ - -3.7269449679189215e-14
+ - -1.4230153513872246e-13
+ - 1.0587911840678754e-13
+ - -2.829090043829363e-13
+ - 1.5331296345302836e-13
+ - -3.8709405689521525e-13
+ - 1.0757318430129614e-13
+ - -2.1599340154984659e-13
+ - 1.4145450219146816e-13
+ - 1.2112571145736495e-13
+ - 3.1424922343134543e-13
+ - -2.286988957586611e-14
+ - -5.675120746603812e-14
+ - -5.996993266560446e-13
+ - -2.346281263894412e-13
+ - 3.3881317890172014e-15
+ - 1.5331296345302836e-13
+ - 5.98005260761536e-13
+ - -2.583450489125616e-13
+ - 2.73591641963139e-13
+ - -2.1175823681357508e-13
+ - -1.9989977555201488e-13
+ - 1.2027867851011065e-13
+ - -3.057788939588024e-13
+ - -1.6178329292557136e-13
+ - 2.956144985917508e-13
+ - 2.574980159653073e-13
+ - -3.8031779331718085e-13
+ - 4.607859233063394e-13
+ - 6.844026213814747e-13
+ - 1.5246593050577406e-14
+ - -2.786738396466648e-13
+ - -1.0587911840678754e-13
+ - 4.319868030996932e-14
+ - -3.6422416731934915e-14
+ - 3.4558944247975454e-13
+ - -5.929230630780102e-13
+ - -1.5246593050577406e-13
+- - -1.4176377350212064
+ - 5.6859434620977325
+ - -9.612029190431402
+ - 15.48865876856297
+ - -17.59315838252026
+ - 12.848787734428639
+ - 14.969269081948111
+ - -15.929574819266676
+ - 15.629700654007566
+ - -13.014877989624964
+ - 8.539947019263114
+ - -2.8021733643260074
+ - -9.701780115252044
+ - 3.3019690529937424
+ - 0.654419730233728
+ - -9.792313970658839
+ - 12.142853466049166
+ - -13.900712294848773
+ - -10.98436964607903
+ - 14.29654266502997
+ - -15.466557053203474
+ - 11.595056101949899
+ - -9.059865300534428
+ - 0.8165526555131519
+ - 8.120001903640166
+ - -3.4129070393992227
+ - -3.008018111529721
+ - 11.591490583474814
+ - -15.896717102030498
+ - 14.274081590292662
+ - 12.597080689893746
+ - -17.151223297179506
+ - 16.607424171436264
+ - -5.140783140356609
+ - -1.5346246880105172
+ - 7.200315212144689
+ - -0.92484806213741
+ - -7.883150525675572
+ - 11.12134159223133
+ - -16.579512066547586
+ - 16.288065067064693
+ - -13.460914685797437
+ - -15.472289153407981
+ - 14.798361364145372
+ - -12.790963433876042
+ - 3.48891011167237
+ - 0.21611875761193863
+ - -7.2329285037164865
+ - 9.825582188149884e-14
+ - 3.3881317890172014e-13
+ - 4.2182240773264157e-13
+ - 1.0842021724855044e-13
+ - 1.2705494208814505e-13
+ - -2.1345230270808369e-13
+ - -3.2356658585114273e-13
+ - -8.809142651444724e-14
+ - -3.5405977195229754e-13
+ - 3.5405977195229754e-13
+ - 1.5077186461126546e-13
+ - -5.692061405548898e-13
+ - 4.2859867131067597e-13
+ - 9.656175598699024e-14
+ - 4.2521053952165877e-13
+ - 8.639736061993863e-14
+ - 9.16489648929153e-13
+ - -1.8634724839594607e-14
+ - 5.929230630780102e-13
+ - -2.371692252312041e-14
+ - 6.691560283308973e-13
+ - -4.692562527788824e-13
+ - 2.473336205982557e-13
+ - 9.994988777600744e-14
+ - -2.1175823681357508e-13
+ - 2.1175823681357508e-13
+ - -7.453889935837843e-14
+ - -1.9312351197398048e-13
+ - 1.7279472123987727e-13
+ - -4.1165801236558996e-13
+ - 2.320870275476783e-13
+ - -5.370188885592264e-13
+ - 1.6093625997831706e-13
+ - -3.1848438816761693e-13
+ - 2.320870275476783e-13
+ - 1.7448878713438587e-13
+ - 4.929731753020028e-13
+ - -9.486769009248164e-14
+ - -1.4907779871675686e-13
+ - -9.723938234479368e-13
+ - -3.8285889215894375e-13
+ - -1.0164395367051604e-14
+ - 2.964615315390051e-13
+ - 9.317362419797304e-13
+ - -4.2182240773264157e-13
+ - 4.45539330255762e-13
+ - -2.490276864927643e-13
+ - -3.5914196963582334e-13
+ - 1.5585406229479126e-13
+ - -4.929731753020028e-13
+ - -2.490276864927643e-13
+ - 4.523155938337964e-13
+ - 4.2182240773264157e-13
+ - -5.98005260761536e-13
+ - 7.487771253728015e-13
+ - 1.0926725019580474e-12
+ - 6.268043809681823e-14
+ - -4.0657581468206416e-13
+ - -1.2536087619363645e-13
+ - 7.623296525288703e-14
+ - -9.994988777600744e-14
+ - 5.336307567702092e-13
+ - -8.029872339970767e-13
+ - -2.1514636860259229e-13
+- - -1.7498368554919883
+ - 4.01025507088172
+ - -5.958493369089582
+ - 8.80939513841693
+ - -9.746890504856902
+ - 6.760878524915392
+ - 8.31829635852015
+ - -8.525054908469427
+ - 8.89352397350128
+ - -6.91414861844087
+ - 4.144749376475968
+ - -0.8428668932335898
+ - -4.936926353237354
+ - 1.036665375671162
+ - 1.1950476436054522
+ - -6.1629095193624375
+ - 7.263539182824123
+ - -7.895875624678428
+ - -6.645380824913156
+ - 8.187106503891886
+ - -8.596582419812897
+ - 5.950126962902499
+ - -4.367857192058307
+ - -0.3030318127063163
+ - 3.915603816454737
+ - -1.1060000847843965
+ - -2.48670873192691
+ - 7.0280253289817365
+ - -9.2418286107162
+ - 7.929906047423328
+ - 7.397413294201738
+ - -9.641086007253868
+ - 9.00292667664722
+ - -2.204860729792556
+ - -1.6667602605366523
+ - 4.707593887900904
+ - 0.18257095906580342
+ - -5.202333952475603
+ - 6.855367411703356
+ - -9.529538289330349
+ - 9.094812751613564
+ - -7.23314784404261
+ - -8.733709281477541
+ - 7.9833617176310385
+ - -6.675051337145741
+ - 1.2293171539488448
+ - 1.0095550734117338
+ - -4.9400333326125105
+ - 8.724439356719293e-14
+ - 1.8719428134320037e-13
+ - 2.507217523872729e-13
+ - 7.538593230563273e-14
+ - 7.284483346386983e-14
+ - -1.4823076576950256e-13
+ - -1.8380614955418317e-13
+ - -8.300922883092143e-14
+ - -1.9989977555201488e-13
+ - 1.8719428134320037e-13
+ - 1.1265538198482195e-13
+ - -3.2695471764015993e-13
+ - 2.346281263894412e-13
+ - 1.8634724839594607e-14
+ - 2.244637310223896e-13
+ - 5.844527336054672e-14
+ - 4.701032857261367e-13
+ - 1.6093625997831706e-14
+ - 3.1594328932585403e-13
+ - -8.470329472543003e-16
+ - 3.9387032047324966e-13
+ - -2.558039500707987e-13
+ - 1.1180834903756764e-13
+ - 7.284483346386983e-14
+ - -8.978549240895584e-14
+ - 8.555032767268433e-14
+ - -4.658681209898652e-14
+ - -1.2197274440461925e-13
+ - 1.1096131609031334e-13
+ - -2.1260526976082939e-13
+ - 1.1011428314305904e-13
+ - -2.846030702774449e-13
+ - 9.486769009248164e-14
+ - -1.6347735882007997e-13
+ - 1.4484263398048536e-13
+ - 1.0503208545953324e-13
+ - 2.73591641963139e-13
+ - -7.199780051661553e-14
+ - -1.1180834903756764e-13
+ - -5.759824041329242e-13
+ - -2.236166980751353e-13
+ - -1.1011428314305904e-14
+ - 1.9312351197398048e-13
+ - 5.310896579284463e-13
+ - -2.490276864927643e-13
+ - 2.795208725939191e-13
+ - -1.0757318430129614e-13
+ - -2.202285662861181e-13
+ - 6.776263578034403e-14
+ - -2.761327408049019e-13
+ - -1.3806637040245096e-13
+ - 2.447925217564928e-13
+ - 2.490276864927643e-13
+ - -3.4897757426877174e-13
+ - 4.379160337304733e-13
+ - 6.23416249179165e-13
+ - 4.658681209898652e-14
+ - -2.1260526976082939e-13
+ - -5.251604272976662e-14
+ - 6.098637220230962e-14
+ - -6.860966872759833e-14
+ - 2.922263668027336e-13
+ - -4.0064658405128406e-13
+ - -1.3044307387716225e-13
+- - -3.9109369291442073
+ - -0.376291798419927
+ - 3.6696283024623524
+ - -9.951412718179983
+ - 11.94529932261712
+ - -11.055524496303375
+ - -10.614714102454775
+ - 12.29109032154562
+ - -10.027020729998119
+ - 10.88996031725846
+ - -9.852559179868528
+ - 5.671572628485652
+ - 9.241111183311444
+ - -7.142644674796603
+ - 3.8086694755702575
+ - 3.2711491715559458
+ - -6.687956570278326
+ - 9.01731333766208
+ - 5.0475144849088975
+ - -9.619172994548208
+ - 10.991931520788352
+ - -10.756993935008108
+ - 9.152084153374071
+ - -4.442334353185038
+ - -8.810587616689766
+ - 5.7748112170362935
+ - -2.031789591089214
+ - -5.215913957259325
+ - 8.497803810525136
+ - -10.134374638658649
+ - -6.893540338868691
+ - 10.915679550735135
+ - -12.944229860093776
+ - 7.012412255922324
+ - -3.7944413076176207
+ - -1.4695390613685815
+ - 4.2537515131165975
+ - 0.6774767769321296
+ - -4.423919796286666
+ - 10.16941218314679
+ - -12.056355066070024
+ - 10.854348112631646
+ - 10.31695948159989
+ - -12.454768401710503
+ - 11.326030359915608
+ - -6.113633521057522
+ - 3.7099497188888333
+ - 0.43348905221006595
+ - 5.484538333471595e-14
+ - -2.4691010412462855e-13
+ - -2.0582900618279498e-13
+ - -1.4399560103323106e-14
+ - -1.0863197548536402e-13
+ - 8.915021769851511e-14
+ - 2.064642808932357e-13
+ - -1.0842021724855044e-13
+ - 2.437337305724249e-13
+ - -2.558039500707987e-13
+ - 4.341043854678289e-14
+ - 3.570243872676876e-13
+ - -2.6490955425378243e-13
+ - -2.8185021319886844e-13
+ - -2.8693241088239424e-13
+ - -6.45862622281404e-14
+ - -7.591532789766667e-13
+ - 1.3658406274475593e-13
+ - -5.437951521372608e-13
+ - 2.964615315390051e-15
+ - -3.6507120026660345e-13
+ - 3.9132922163148676e-13
+ - -3.8116482626443515e-13
+ - 1.0820845901173687e-13
+ - 3.0387306982748025e-13
+ - -3.1234339930002325e-13
+ - 2.837560373301906e-14
+ - 1.164670302474663e-13
+ - -1.0354977780183822e-13
+ - 3.894233975001646e-13
+ - -1.8232384189648815e-13
+ - 5.190194384300725e-13
+ - -1.5352472168984194e-13
+ - 3.432601018748052e-13
+ - -1.0630263488041469e-13
+ - -1.4844252400631613e-13
+ - -3.688828485292478e-13
+ - -3.239901023247699e-14
+ - 2.1387581918171084e-14
+ - 5.022905377218001e-13
+ - 2.4352197233561135e-13
+ - -3.176373552203626e-14
+ - 2.286988957586611e-14
+ - -5.27278009665802e-13
+ - 2.422514229147299e-13
+ - -1.9587636905255695e-13
+ - 2.9180285032910647e-13
+ - 1.0037340424963459e-13
+ - -2.047702149987271e-13
+ - 2.9688504801263227e-13
+ - 1.8465318250143747e-13
+ - -3.085317510373789e-13
+ - -2.90532300908225e-13
+ - 4.3050449544199815e-13
+ - -4.652328462794245e-13
+ - -6.725441601199145e-13
+ - 2.6893296075324036e-14
+ - 3.248371352720242e-13
+ - 1.0714966782766899e-13
+ - 8.046812998915853e-15
+ - -1.2705494208814505e-15
+ - -3.536362554786704e-13
+ - 8.495740460960632e-13
+ - 1.7131241358218224e-13
+- - -2.1637073906780353
+ - -1.850006430572641
+ - 4.5927740381049444
+ - -9.97360920006716
+ - 11.461141919915114
+ - -10.062287675086369
+ - -10.274083401682116
+ - 11.294956219799758
+ - -9.500285066770324
+ - 10.006942330905174
+ - -8.578182652674963
+ - 4.2881336029906585
+ - 8.181833648196228
+ - -5.622183948503214
+ - 2.2868217591605946
+ - 4.3832596364694805
+ - -7.396505945436717
+ - 9.019516920141673
+ - 5.80016350077826
+ - -9.773692845493906
+ - 10.645073306053158
+ - -9.5816367758372
+ - 7.683672558668596
+ - -3.0238030718837186
+ - -7.522461292162807
+ - 4.2054824204548
+ - -0.5924085393415776
+ - -6.03716198613671
+ - 8.861369644737758
+ - -9.805800493104835
+ - -7.341420502195425
+ - 10.70002792163265
+ - -12.149527561743703
+ - 5.691335261951594
+ - -2.354903328674302
+ - -2.6112282031606022
+ - 2.9460928409433675
+ - 1.9873107249480468
+ - -5.4194926605901355
+ - 10.37873672660954
+ - -11.797895840789092
+ - 10.093265856536961
+ - 10.217948614123364
+ - -11.705813445712547
+ - 10.236390794491733
+ - -4.722644391380993
+ - 2.0403287873668954
+ - 1.9723953529704226
+ - 1.0587911840678754e-15
+ - -2.39710324072967e-13
+ - -2.2827537928503394e-13
+ - -3.282252670610414e-14
+ - -1.0503208545953324e-13
+ - 1.2811373327221293e-13
+ - 2.0434669852509996e-13
+ - -4.743384504624082e-14
+ - 2.439454888092385e-13
+ - -2.3589867581032264e-13
+ - -7.199780051661553e-15
+ - 3.5638911255724687e-13
+ - -2.5029823591364575e-13
+ - -2.0964065444543933e-13
+ - -2.7316812548951186e-13
+ - -7.369186641112413e-14
+ - -6.719088854094737e-13
+ - 8.703263533037936e-14
+ - -4.851381205399005e-13
+ - -1.7999450129153882e-14
+ - -3.9387032047324966e-13
+ - 3.612595520039591e-13
+ - -3.2758999235060066e-13
+ - 7.432714112156485e-14
+ - 2.5368636770266295e-13
+ - -2.4585131294056067e-13
+ - 4.1081097941833566e-14
+ - 1.24090326772755e-13
+ - -1.2387856853594142e-13
+ - 3.587184531621962e-13
+ - -1.5500702934753696e-13
+ - 4.775148240146118e-13
+ - -1.5564230405797769e-13
+ - 3.0959054222144677e-13
+ - -1.2197274440461925e-13
+ - -1.4632494163818038e-13
+ - -3.6422416731934915e-13
+ - -8.470329472543003e-16
+ - 6.54332951753947e-14
+ - 5.38712954453735e-13
+ - 2.568627412548666e-13
+ - -2.117582368135751e-14
+ - -2.6893296075324036e-14
+ - -5.313014161652599e-13
+ - 2.608861477543245e-13
+ - -2.286988957586611e-13
+ - 2.2594603868008462e-13
+ - 1.3912516158651883e-13
+ - -1.6517142471458857e-13
+ - 2.8523834498788564e-13
+ - 1.8168856718604742e-13
+ - -2.898970261977843e-13
+ - -3.083199928005653e-13
+ - 4.3558669312552395e-13
+ - -4.842910875926462e-13
+ - -6.829203137237796e-13
+ - 3.8116482626443515e-15
+ - 2.907440591450386e-13
+ - 7.22095587534291e-14
+ - -2.0328790734103208e-14
+ - 3.091670257478196e-14
+ - -3.38389662428093e-13
+ - 7.417891035579535e-13
+ - 1.759710947920809e-13
+- - 8.129432843537948
+ - -5.89202303354425
+ - 2.7892732766395776
+ - 2.5223752511850193
+ - -5.104233788700388
+ - 6.940086557771867
+ - 4.17144612250844
+ - -7.276254949624994
+ - 8.10362304414203
+ - -6.448568843675553
+ - 7.767116936055114
+ - -7.112816726835876
+ - -6.7321995654924995
+ - 8.056024164974005
+ - -7.186382998380772
+ - 3.6620498904494663
+ - -1.12450619868295
+ - -2.3584132131406124
+ - 1.7344415054360398
+ - 1.8972319537607325
+ - -4.295794665554086
+ - 7.602049674674701
+ - -8.372009433612428
+ - 6.9327512414930395
+ - 7.549466148573822
+ - -7.895591996122713
+ - 6.3846523737595735
+ - -1.969092384364297
+ - -0.75305811256666
+ - 3.996328482191365
+ - -0.010875434842177551
+ - -3.7424172725180913
+ - 6.628876435244119
+ - -7.211327439562123
+ - 6.848040084156364
+ - -4.255277655404342
+ - -6.432532134414183
+ - 5.146739216575268
+ - -2.8856679381798567
+ - -1.8189128600282491
+ - 4.215883282638276
+ - -5.943537725294936
+ - -3.1110647552349713
+ - 6.314397294152618
+ - -7.40299106665751
+ - 7.259565867735026
+ - -7.761188926308894
+ - 6.142008019633387
+ - -2.363221922839498e-13
+ - 8.639736061993863e-14
+ - -2.964615315390051e-14
+ - -7.199780051661553e-14
+ - 3.5998900258307764e-14
+ - 1.435720845596039e-13
+ - -6.37392292808861e-14
+ - 2.7062702664774896e-13
+ - -5.738648217647885e-14
+ - 1.478072492958754e-13
+ - -2.2086384099655881e-13
+ - -9.762054717105811e-14
+ - 1.3383120566617945e-13
+ - 3.6570647497704417e-13
+ - 1.2599615090407718e-13
+ - -1.9269999550035333e-14
+ - 5.54171305741126e-13
+ - -2.4436900528286565e-13
+ - 3.8899988102653743e-13
+ - -8.343274530454858e-14
+ - -1.9481757786848908e-14
+ - -2.1641691802347374e-13
+ - 3.1234339930002325e-13
+ - -1.691948312140465e-13
+ - -2.879912020664621e-13
+ - 3.525774642946025e-13
+ - 4.489274620447792e-14
+ - -1.2705494208814505e-15
+ - -4.785736151986797e-14
+ - -2.3145175283723757e-13
+ - 1.5161889755851976e-13
+ - -3.040848280642938e-13
+ - 2.710505431213761e-14
+ - -2.293341704691018e-13
+ - -3.006966962752766e-14
+ - 4.298692207315574e-14
+ - 1.181610961419749e-13
+ - 1.3383120566617945e-13
+ - 1.7279472123987727e-13
+ - 1.8422966602781032e-14
+ - -9.529120656610879e-15
+ - 6.077461396549605e-14
+ - -2.056172479459814e-13
+ - 1.2620790914089075e-13
+ - 1.2705494208814505e-14
+ - -9.126780006665086e-14
+ - -3.3351922298138076e-13
+ - 1.3806637040245096e-13
+ - 2.0667603913004928e-13
+ - -1.24090326772755e-13
+ - -5.4421866861088797e-14
+ - 1.4823076576950256e-13
+ - 4.235164736271502e-15
+ - -8.300922883092143e-14
+ - 4.997494388800372e-14
+ - 1.3488999685024733e-13
+ - -9.867933835512599e-14
+ - -2.3166351107405114e-13
+ - -1.6877131474041934e-13
+ - -1.2281977735187355e-13
+ - 1.2133746969417852e-13
+ - 1.5331296345302836e-13
+ - -6.61320973568795e-13
+ - -2.8587361969832636e-14
+- - 8.489416764063105
+ - -6.033385236958971
+ - 2.7261991068517935
+ - 2.9593996549359702
+ - -5.68357777477927
+ - 7.534713775055321
+ - 4.676652331095194
+ - -7.92574939481355
+ - 8.719287818363727
+ - -7.024070516836456
+ - 8.338764158789903
+ - -7.511544297242494
+ - -7.253790841326798
+ - 8.534394698203567
+ - -7.517691161969302
+ - 3.636826886974763
+ - -0.9051543772763132
+ - -2.756335693903574
+ - 1.5922502488957428
+ - 2.305401391832123
+ - -4.818324438401157
+ - 8.203017958091996
+ - -8.933527805923491
+ - 7.280963679592016
+ - 8.076579488772119
+ - -8.318805137294692
+ - 6.628662431340636
+ - -1.8268190245447908
+ - -1.089305294566115
+ - 4.479032922922172
+ - 0.24549709024595195
+ - -4.247515612252903
+ - 7.285617073982326
+ - -7.662574677899046
+ - 7.169896347137152
+ - -4.312775304701745
+ - -6.760532541572875
+ - 5.257234500731035
+ - -2.797052011772409
+ - -2.2455035427038537
+ - 4.775936178071735
+ - -6.504395859422887
+ - -3.577222835301129
+ - 6.9446214981581615
+ - -8.019896470987746
+ - 7.678621950473989
+ - -8.103979240380092
+ - 6.287832664072521
+ - -2.4436900528286565e-13
+ - 9.783230540787169e-14
+ - -2.2658131339052534e-14
+ - -7.326834993749698e-14
+ - 4.1081097941833566e-14
+ - 1.444191175068582e-13
+ - -7.30565917006834e-14
+ - 2.8185021319886844e-13
+ - -6.776263578034403e-14
+ - 1.6135977645194421e-13
+ - -2.2827537928503394e-13
+ - -1.1371417316888982e-13
+ - 1.4738373282224826e-13
+ - 3.858235074743338e-13
+ - 1.3997219453377313e-13
+ - -1.7364175418713157e-14
+ - 5.971582278142817e-13
+ - -2.560157083076123e-13
+ - 4.1949306712769224e-13
+ - -8.576208590949791e-14
+ - -6.3527471044072525e-15
+ - -2.363221922839498e-13
+ - 3.3457801416544863e-13
+ - -1.776651606865895e-13
+ - -3.068376851428703e-13
+ - 3.7332977150233287e-13
+ - 4.489274620447792e-14
+ - -5.717472393966527e-15
+ - -4.510450444129149e-14
+ - -2.5199230180815435e-13
+ - 1.6220680939919851e-13
+ - -3.316133988500586e-13
+ - 3.3457801416544863e-14
+ - -2.4839241178232357e-13
+ - -2.710505431213761e-14
+ - 4.955142741437657e-14
+ - 1.3488999685024733e-13
+ - 1.384898868760781e-13
+ - 1.7660636950252162e-13
+ - 2.1175823681357508e-16
+ - -1.8846483076408183e-14
+ - 6.37392292808861e-14
+ - -2.1175823681357508e-13
+ - 1.4907779871675686e-13
+ - 4.023406499457927e-15
+ - -8.639736061993863e-14
+ - -3.5300098076822967e-13
+ - 1.3806637040245096e-13
+ - 2.1980504981249094e-13
+ - -1.3827812863926453e-13
+ - -6.268043809681823e-14
+ - 1.6347735882007997e-13
+ - 1.5246593050577406e-14
+ - -1.0100867896007532e-13
+ - 6.860966872759833e-14
+ - 1.6368911705689354e-13
+ - -1.0227922838095677e-13
+ - -2.500864776768322e-13
+ - -1.7724164421296235e-13
+ - -1.2641966737770433e-13
+ - 1.2451384324638215e-13
+ - 1.7046538063492794e-13
+ - -7.104488845095444e-13
+ - -3.578714202149419e-14
+- - 8.849400684588261
+ - -6.174747440373693
+ - 2.6631249370640098
+ - 3.3964240586869208
+ - -6.262921760858153
+ - 8.129340992338774
+ - 5.181858539681946
+ - -8.575243840002104
+ - 9.33495259258542
+ - -7.599572189997357
+ - 8.910411381524693
+ - -7.9102718676491115
+ - -7.775382117161097
+ - 9.012765231433125
+ - -7.848999325557831
+ - 3.61160388350006
+ - -0.6858025558696765
+ - -3.1542581746665355
+ - 1.450058992355446
+ - 2.713570829903514
+ - -5.340854211248227
+ - 8.803986241509294
+ - -9.495046178234556
+ - 7.629176117690994
+ - 8.603692828970416
+ - -8.742018278466674
+ - 6.872672488921698
+ - -1.6845456647252848
+ - -1.4255524765655698
+ - 4.961737363652978
+ - 0.5018696153340814
+ - -4.752613951987716
+ - 7.942357712720535
+ - -8.113821916235967
+ - 7.49175261011794
+ - -4.370272953999148
+ - -7.088532948731568
+ - 5.3677297848868015
+ - -2.7084360853649616
+ - -2.672094225379458
+ - 5.335989073505194
+ - -7.065253993550838
+ - -4.043380915367287
+ - 7.574845702163706
+ - -8.636801875317984
+ - 8.09767803321295
+ - -8.44676955445129
+ - 6.433657308511655
+ - -2.526275765185951e-13
+ - 1.0926725019580474e-13
+ - -1.5670109524204556e-14
+ - -7.453889935837843e-14
+ - 4.5951537388545793e-14
+ - 1.4484263398048536e-13
+ - -8.237395412048071e-14
+ - 2.9286164151317434e-13
+ - -7.835054762102278e-14
+ - 1.7470054537119944e-13
+ - -2.3568691757350907e-13
+ - -1.2959604092990795e-13
+ - 1.6093625997831706e-13
+ - 4.0594053997162344e-13
+ - 1.5394823816346909e-13
+ - -1.545835128739098e-14
+ - 6.401451498874375e-13
+ - -2.676624113323589e-13
+ - 4.4998625322884706e-13
+ - -8.809142651444724e-14
+ - 6.776263578034403e-15
+ - -2.56650983018053e-13
+ - 3.56812629030874e-13
+ - -1.861354901591325e-13
+ - -3.2589592645609206e-13
+ - 3.942938369468768e-13
+ - 4.489274620447792e-14
+ - -1.0164395367051604e-14
+ - -4.256340559952859e-14
+ - -2.727446090158847e-13
+ - 1.7300647947669084e-13
+ - -3.5914196963582334e-13
+ - 3.9810548520952116e-14
+ - -2.6723889485873176e-13
+ - -2.3928680759933985e-14
+ - 5.632769099241097e-14
+ - 1.5183065579533334e-13
+ - 1.4314856808597676e-13
+ - 1.802062595283524e-13
+ - -1.7999450129153882e-14
+ - -2.8163845496205486e-14
+ - 6.649208635946258e-14
+ - -2.1811098391798234e-13
+ - 1.7194768829262297e-13
+ - -4.658681209898652e-15
+ - -8.173867941003998e-14
+ - -3.7248273855507857e-13
+ - 1.3806637040245096e-13
+ - 2.329340604949326e-13
+ - -1.5246593050577406e-13
+ - -7.072725109573408e-14
+ - 1.7872395187065737e-13
+ - 2.625802136488331e-14
+ - -1.190081290892292e-13
+ - 8.724439356719293e-14
+ - 1.9248823726353975e-13
+ - -1.0587911840678754e-13
+ - -2.685094442796132e-13
+ - -1.8571197368550535e-13
+ - -1.300195574035351e-13
+ - 1.2769021679858578e-13
+ - 1.8761779781682753e-13
+ - -7.595767954502938e-13
+ - -4.277516383634217e-14
+- - 9.168586427453901
+ - -6.300088594068079
+ - 2.607199173185508
+ - 3.7839190300127634
+ - -6.776606761848094
+ - 8.65657712499677
+ - 5.629808044628867
+ - -9.151128914735956
+ - 9.880842025728658
+ - -8.109850340200024
+ - 9.417271919016207
+ - -8.263810313409646
+ - -8.23785971506751
+ - 9.436920437563336
+ - -8.142759230606329
+ - 3.5892394870858233
+ - -0.49131060755579203
+ - -3.5070827742763617
+ - 1.3239827448897163
+ - 3.0754810649934807
+ - -5.804163943172631
+ - 9.336844786139297
+ - -9.992925801683699
+ - 7.937924479472087
+ - 9.071066657279571
+ - -9.117267263639164
+ - 7.089028073310239
+ - -1.5583966190186558
+ - -1.7236916446050867
+ - 5.389735301100961
+ - 0.7291865875788895
+ - -5.20046781321925
+ - 8.524667745735078
+ - -8.513927800894704
+ - 7.777131829960906
+ - -4.421254203042846
+ - -7.3793599764122755
+ - 5.4657022701715805
+ - -2.6298632972836917
+ - -3.0503379640184947
+ - 5.832569307456194
+ - -7.562548205810955
+ - -4.45670774635928
+ - 8.133644496381953
+ - -9.183791333824127
+ - 8.469241093241495
+ - -8.750710299594418
+ - 6.562955159914353
+ - -2.600391148070702e-13
+ - 1.1943164556285635e-13
+ - -9.529120656610879e-15
+ - -7.580944877925988e-14
+ - 5.0186702124817295e-14
+ - 1.452661504541125e-13
+ - -9.063252535621014e-14
+ - 3.0281427864341237e-13
+ - -8.787966827763366e-14
+ - 1.8655900663275965e-13
+ - -2.4246318115154347e-13
+ - -1.435720845596039e-13
+ - 1.7279472123987727e-13
+ - 4.2372823186396374e-13
+ - 1.6644197413547002e-13
+ - -1.376428539288238e-14
+ - 6.780498742770674e-13
+ - -2.778268066994105e-13
+ - 4.770913075409847e-13
+ - -9.020900888258299e-14
+ - 1.8211208365967457e-14
+ - -2.746504331472069e-13
+ - 3.767179032913501e-13
+ - -1.9354702844760763e-13
+ - -3.4283658540117806e-13
+ - 4.129285617864714e-13
+ - 4.489274620447792e-14
+ - -1.3976043629695956e-14
+ - -4.0234064994579266e-14
+ - -2.9095581738185217e-13
+ - 1.8253560013330172e-13
+ - -3.834941668693845e-13
+ - 4.5528020914918643e-14
+ - -2.839677955670042e-13
+ - -2.0964065444543933e-14
+ - 6.20451633863775e-14
+ - 1.6686549060909717e-13
+ - 1.4738373282224826e-13
+ - 1.835943913173696e-13
+ - -3.4304834363799164e-14
+ - -3.6422416731934915e-14
+ - 6.903318520122548e-14
+ - -2.2382845631194886e-13
+ - 1.9248823726353975e-13
+ - -1.2281977735187355e-14
+ - -7.750351467376848e-14
+ - -3.8984691397379173e-13
+ - 1.3806637040245096e-13
+ - 2.445807635196792e-13
+ - -1.64959666477775e-13
+ - -7.81387893842092e-14
+ - 1.9227647902672618e-13
+ - 3.5998900258307764e-14
+ - -1.351017550870609e-13
+ - 1.0376153603865179e-13
+ - 2.1768746744435519e-13
+ - -1.0905549195899117e-13
+ - -2.848148285142585e-13
+ - -1.9312351197398048e-13
+ - -1.3319593095573873e-13
+ - 1.3044307387716225e-13
+ - 2.0286439086740493e-13
+ - -8.029872339970767e-13
+ - -4.912791094074942e-14
+- - 8.872498834531703
+ - -5.396290958100359
+ - 1.4299059745199945
+ - 5.567621128334696
+ - -8.627642156371605
+ - 10.060186376802553
+ - 7.325535591195116
+ - -10.772989006472194
+ - 11.066319352583948
+ - -8.777124575394556
+ - 10.447146977736557
+ - -8.487643582522509
+ - -9.2810496606816
+ - 9.84476490247682
+ - -7.956450061124517
+ - 2.375564965931805
+ - 1.1013166618032564
+ - -5.11318647707065
+ - -0.0017255202877525019
+ - 4.875193979410374
+ - -7.563490580109311
+ - 10.583909273616097
+ - -10.787947879640917
+ - 7.923057845711919
+ - 9.907686226810355
+ - -9.253916550050805
+ - 6.633306654677252
+ - -0.16376487477204543
+ - -3.4425258691770564
+ - 7.0068207919058665
+ - 2.210382475487945
+ - -7.020723549443961
+ - 10.377153005150635
+ - -9.011807621308087
+ - 7.635031935214209
+ - -3.5114248976867852
+ - -7.393887780698863
+ - 4.601364974170837
+ - -1.277198993835603
+ - -4.97909604792549
+ - 7.831535431946153
+ - -9.062178418424535
+ - -6.236642493716571
+ - 9.924998363244088
+ - -10.580803258518472
+ - 8.767462618663181
+ - -8.462917608199849
+ - 5.611963101881435
+ - -2.3843977465208555e-13
+ - 1.6135977645194421e-13
+ - 4.0234064994579266e-14
+ - -6.395098751769968e-14
+ - 6.733911930671688e-14
+ - 1.0587911840678754e-13
+ - -1.2726670032495863e-13
+ - 2.873559273560214e-13
+ - -1.3065483211397583e-13
+ - 2.210755992333724e-13
+ - -2.2213439041744026e-13
+ - -2.0709955560367643e-13
+ - 2.1027592915588006e-13
+ - 4.3304559428376105e-13
+ - 2.0688779736686286e-13
+ - 3.3881317890172014e-15
+ - 7.644472348970061e-13
+ - -2.7062702664774896e-13
+ - 5.38712954453735e-13
+ - -7.898582233146351e-14
+ - 9.677351422380381e-14
+ - -3.263194429297192e-13
+ - 4.156814188650479e-13
+ - -1.9142944607947188e-13
+ - -3.671887826347392e-13
+ - 4.332573525205746e-13
+ - 3.049318610115481e-14
+ - -3.917527381051139e-14
+ - -9.952637130238029e-15
+ - -3.4135427774348304e-13
+ - 2.0095856673608276e-13
+ - -4.529508685442371e-13
+ - 7.432714112156485e-14
+ - -3.246253770352106e-13
+ - 8.046812998915853e-15
+ - 8.491505296224361e-14
+ - 2.2996944517954254e-13
+ - 1.3488999685024733e-13
+ - 1.5352472168984194e-13
+ - -1.4378384279641748e-13
+ - -8.893845946170154e-14
+ - 6.6280328122649e-14
+ - -1.98840984367947e-13
+ - 2.862971361719535e-13
+ - -6.500977870176755e-14
+ - -2.117582368135751e-14
+ - -4.053052652611827e-13
+ - 9.931461306556671e-14
+ - 2.5728625772849373e-13
+ - -2.1472285212896514e-13
+ - -1.0863197548536402e-13
+ - 2.3928680759933985e-13
+ - 9.783230540787169e-14
+ - -2.1641691802347374e-13
+ - 1.9651164376299768e-13
+ - 3.4198955245392376e-13
+ - -1.0143219543370247e-13
+ - -3.2335482761432915e-13
+ - -1.9227647902672618e-13
+ - -1.2049043674692422e-13
+ - 1.1286714022163552e-13
+ - 2.560157083076123e-13
+ - -8.936197593532869e-13
+ - -8.089164646278568e-14
+- - -9.237907692972597
+ - 7.125912931871413
+ - -4.99161325775882
+ - 0.32123132234159346
+ - 1.6040426306341187
+ - -5.076314619558314
+ - -1.5968889433315772
+ - 4.333689033291965
+ - -6.708795635863941
+ - 7.921646021258545
+ - -7.373013512023364
+ - 7.298272190507878
+ - 5.501481464209671
+ - -8.737033616495554
+ - 8.06402016906629
+ - -5.984429203936813
+ - 3.1515598662530633
+ - -0.15988699790338615
+ - -4.091610732382217
+ - 0.24888192747531557
+ - 1.6593755295714154
+ - -6.06203090267961
+ - 6.9134752607724534
+ - -7.469629040171377
+ - -6.6920504073428875
+ - 7.515137366055375
+ - -7.634049573816361
+ - 4.494007712097584
+ - -2.8547350439084185
+ - -1.5446680682011886
+ - 2.5409577771085052
+ - 0.19114753392537262
+ - -3.986201801278659
+ - 6.939649583741297
+ - -8.37568181154431
+ - 6.147909835658151
+ - 6.9280016923739405
+ - -7.766026168892364
+ - 5.413666459443963
+ - -1.2949857267396296
+ - -1.9121561502590945
+ - 3.885090749274022
+ - 0.35725906715921235
+ - -4.525759544480489
+ - 5.6247422641095675
+ - -7.307706677110984
+ - 8.095953095435421
+ - -8.206386612707549
+ - 2.574980159653073e-13
+ - -4.404571325722362e-14
+ - 1.2197274440461925e-13
+ - 1.0333801956502464e-13
+ - -1.9481757786848908e-14
+ - -1.6771252355635147e-13
+ - 8.470329472543003e-16
+ - -3.2187251995663413e-13
+ - 2.541098841762901e-15
+ - -7.030373462210693e-14
+ - 2.727446090158847e-13
+ - -5.929230630780102e-15
+ - -3.134021904840911e-14
+ - -4.0234064994579266e-13
+ - -5.590417451878382e-14
+ - 1.7787691892340307e-14
+ - -3.7777669447541795e-13
+ - 2.676624113323589e-13
+ - -3.125551575368368e-13
+ - 3.3034284942917713e-14
+ - 1.4568966692773966e-13
+ - 1.4568966692773966e-13
+ - -3.3203691532368573e-13
+ - 2.608861477543245e-13
+ - 2.871441691192078e-13
+ - -3.4304834363799164e-13
+ - -5.505714157152952e-14
+ - -3.6422416731934915e-14
+ - 6.437450399132683e-14
+ - 2.0159384144652348e-13
+ - -1.0503208545953324e-13
+ - 2.65121312490596e-13
+ - -3.4728350837426314e-14
+ - 2.219226321806267e-13
+ - 8.978549240895584e-14
+ - -1.6093625997831706e-14
+ - -5.505714157152952e-14
+ - -1.6771252355635147e-13
+ - -1.9905274260476058e-13
+ - -2.329340604949326e-13
+ - -4.489274620447792e-14
+ - -7.199780051661553e-14
+ - 3.3711911300721153e-13
+ - 8.046812998915853e-14
+ - -8.724439356719293e-14
+ - 1.8973538018496328e-13
+ - 2.718975760686304e-13
+ - -2.430984558619842e-13
+ - -2.1175823681357508e-13
+ - 1.6940658945086007e-15
+ - 2.117582368135751e-14
+ - -5.844527336054672e-14
+ - 3.3034284942917713e-14
+ - 8.470329472543003e-15
+ - 7.792703114739563e-14
+ - 7.453889935837843e-14
+ - 1.2027867851011065e-13
+ - 1.6601845766184287e-13
+ - 1.2112571145736495e-13
+ - 1.3721933745519665e-13
+ - -1.4484263398048536e-13
+ - -4.489274620447792e-14
+ - 5.886878983417387e-13
+ - 1.6940658945086007e-14
+- - -14.97794870598939
+ - 10.867508374034307
+ - -7.012355909575518
+ - -1.3637761619429432
+ - 4.653802291037017
+ - -9.89483552602944
+ - -4.445715230082133
+ - 8.928689395371702
+ - -12.364969939225178
+ - 13.229704343433918
+ - -13.091686638239986
+ - 12.31801460981441
+ - 10.214109219839038
+ - -14.863822729703596
+ - 13.15022863342224
+ - -8.617508104522987
+ - 3.557230655614046
+ - 1.440611182919514
+ - -5.365558819171746
+ - -1.4676495477742317
+ - 4.615166306437532
+ - -11.359888323488093
+ - 12.32074848317013
+ - -12.349757198100175
+ - -11.967123361718409
+ - 12.617323773241798
+ - -12.153268905674306
+ - 5.957034790735259
+ - -2.8674763393704525
+ - -4.275597154455415
+ - 2.6317636352204237
+ - 2.2822452179803236
+ - -8.566960853060808
+ - 12.015520260435867
+ - -13.681123153651493
+ - 9.20922240476375
+ - 11.482420972417536
+ - -11.904752607705273
+ - 7.52379078417996
+ - -0.09526383749185739
+ - -5.256461279363229
+ - 8.023081022416003
+ - 2.4812696552169013
+ - -9.362181570747397
+ - 10.794001469561884
+ - -12.41361635616315
+ - 13.12759461456731
+ - -12.574769614503445
+ - 4.0826988057657276e-13
+ - -1.0842021724855044e-13
+ - 1.4738373282224826e-13
+ - 1.7448878713438587e-13
+ - -4.573977915173222e-14
+ - -2.422514229147299e-13
+ - 4.573977915173222e-14
+ - -5.183841637196318e-13
+ - 5.082197683525802e-14
+ - -1.4907779871675686e-13
+ - 4.2690460541616737e-13
+ - 6.776263578034403e-14
+ - -9.656175598699024e-14
+ - -6.606856988583543e-13
+ - -1.2197274440461925e-13
+ - 2.0328790734103208e-14
+ - -7.132017415881209e-13
+ - 4.1843427594362437e-13
+ - -5.793705359219414e-13
+ - 4.912791094074942e-14
+ - 1.4907779871675686e-13
+ - 2.947674656444965e-13
+ - -5.98005260761536e-13
+ - 4.2351647362715017e-13
+ - 5.04831636563563e-13
+ - -5.844527336054672e-13
+ - -7.792703114739563e-14
+ - -3.049318610115481e-14
+ - 7.284483346386983e-14
+ - 3.8285889215894375e-13
+ - -2.0498197323554068e-13
+ - 5.082197683525802e-13
+ - -8.639736061993863e-14
+ - 4.0826988057657276e-13
+ - 1.1519648082658485e-13
+ - -6.098637220230962e-14
+ - -1.6093625997831706e-13
+ - -2.693564772268675e-13
+ - -2.930733997499879e-13
+ - -2.744386749103933e-13
+ - -2.0328790734103208e-14
+ - -1.3044307387716225e-13
+ - 5.251604272976662e-13
+ - 2.202285662861181e-14
+ - -9.825582188149884e-14
+ - 2.507217523872729e-13
+ - 4.760325163569168e-13
+ - -3.6591823321385775e-13
+ - -3.5575383784680614e-13
+ - 5.251604272976662e-14
+ - 7.453889935837843e-14
+ - -1.5077186461126546e-13
+ - -1.6940658945086007e-14
+ - 9.147955830346444e-14
+ - 4.0657581468206416e-14
+ - 1.6940658945086007e-15
+ - 1.8634724839594607e-13
+ - 2.964615315390051e-13
+ - 2.0837010502455788e-13
+ - 2.1684043449710089e-13
+ - -2.202285662861181e-13
+ - -1.2705494208814505e-13
+ - 1.094366567852556e-12
+ - 6.268043809681823e-14
+- - -8.774641397224713
+ - 6.011957795357662
+ - -3.549505469547318
+ - -1.772950536235892
+ - 3.7874156185637813
+ - -6.656913241198089
+ - -3.5639845574352598
+ - 6.213844801750077
+ - -8.01268844368172
+ - 7.949888676316285
+ - -7.519571436731365
+ - 7.466963170728082
+ - 6.652695887985663
+ - -9.068530004579166
+ - 7.742951967908702
+ - -4.487508112220325
+ - 1.2815358208756926
+ - 1.722476190430238
+ - -2.487809291918797
+ - -1.8268862985002259
+ - 3.6984714334305564
+ - -7.446384082726906
+ - 7.79239322647023
+ - -7.358375088389724
+ - -7.588031812515502
+ - 7.615252378760554
+ - -7.003940526033118
+ - 2.80281723979882
+ - -0.7697449906491859
+ - -3.4201612800167562
+ - 0.7727409522956084
+ - 2.356336169759472
+ - -6.1061819174016625
+ - 7.433922933749657
+ - -8.067213352365828
+ - 5.002978400530109
+ - 6.855858365984639
+ - -6.619347174862442
+ - 3.759784331874252
+ - 0.9800874733013175
+ - -4.193805559524547
+ - 5.591196551923601
+ - 2.436623197901858
+ - -6.530939897316047
+ - 7.188831504238308
+ - -7.564472743729187
+ - 7.691212601836374
+ - -6.989122189778856
+ - 2.253107639696439e-13
+ - -9.232659125071874e-14
+ - 6.352747104407253e-14
+ - 1.0249098661777034e-13
+ - -3.3881317890172014e-14
+ - -1.2620790914089075e-13
+ - 4.319868030996932e-14
+ - -2.879912020664621e-13
+ - 4.743384504624082e-14
+ - -1.0757318430129614e-13
+ - 2.22769665127881e-13
+ - 6.268043809681823e-14
+ - -7.877406409464993e-14
+ - -4.1081097941833566e-13
+ - -9.825582188149884e-14
+ - 1.4399560103323106e-14
+ - -4.760325163569168e-13
+ - 2.718975760686304e-13
+ - -3.8370592510619805e-13
+ - 2.964615315390051e-14
+ - 4.743384504624082e-14
+ - 1.9820570965750628e-13
+ - -3.7269449679189215e-13
+ - 2.346281263894412e-13
+ - 3.2610768469290563e-13
+ - -3.4050724479622874e-13
+ - -3.8963515573697816e-14
+ - -3.3881317890172014e-15
+ - 2.202285662861181e-14
+ - 2.4818065354551e-13
+ - -1.3213713977167085e-13
+ - 3.4135427774348304e-13
+ - -6.437450399132683e-14
+ - 2.583450489125616e-13
+ - 5.251604272976662e-14
+ - -4.997494388800372e-14
+ - -1.3298417271892515e-13
+ - -1.5415999640028266e-13
+ - -1.6686549060909717e-13
+ - -1.0926725019580474e-13
+ - 2.0328790734103208e-14
+ - -6.522153693858113e-14
+ - 2.998496633280223e-13
+ - -3.5575383784680614e-14
+ - -1.1858461261560205e-14
+ - 1.3552527156068805e-13
+ - 2.829090043829363e-13
+ - -1.9905274260476058e-13
+ - -2.31239994600424e-13
+ - 6.437450399132683e-14
+ - 5.590417451878382e-14
+ - -1.0842021724855044e-13
+ - -4.658681209898652e-14
+ - 9.910285482875314e-14
+ - -2.286988957586611e-14
+ - -5.421010862427522e-14
+ - 1.0926725019580474e-13
+ - 2.0837010502455788e-13
+ - 1.2790197503539935e-13
+ - 1.1265538198482195e-13
+ - -1.2366681029912785e-13
+ - -1.1858461261560205e-13
+ - 6.810144895924575e-13
+ - 4.0657581468206416e-14
+- - 8.167885036915496
+ - -8.399466814952765
+ - 6.650765263935919
+ - -4.175295321467489
+ - 2.14456772074889
+ - 1.047348982663585
+ - -2.4185091948840967
+ - -0.5744483268189384
+ - 2.844904968546391
+ - -6.173429548916061
+ - 7.1844242854784905
+ - -5.418284637466351
+ - -2.15423340960208
+ - 5.570782570826346
+ - -6.950038581257195
+ - 7.5442306031187485
+ - -6.695198596017979
+ - 3.6840125257533636
+ - 6.259674635325344
+ - -4.793851429409125
+ - 2.5379926187765656
+ - 2.1860515912511054
+ - -4.4905692207901335
+ - 6.115519910160675
+ - 3.608590893726278
+ - -6.4293132913274285
+ - 7.213262783001987
+ - -6.710797609879603
+ - 5.476304724353309
+ - -2.2903503865744566
+ - -5.308059866615829
+ - 3.2252418063701342
+ - -0.8307127894061359
+ - -4.524037426592234
+ - 6.481791772181751
+ - -6.975200042280874
+ - -5.572086995401387
+ - 7.577991798995254
+ - -7.362034972991077
+ - 5.30988922542854
+ - -3.4792986954240757
+ - 0.16838179751235255
+ - 3.647797202019746
+ - -0.9016909487903775
+ - -1.4749747269719822
+ - 5.2809072784709485
+ - -7.8300961770998905
+ - 8.773013495147984
+ - -3.085317510373789e-13
+ - -8.830318475126081e-14
+ - -1.937587866844212e-13
+ - -1.2641966737770433e-13
+ - -3.112846081159554e-14
+ - 2.608861477543245e-13
+ - 5.378659215064807e-14
+ - 3.138257069577183e-13
+ - 6.500977870176755e-14
+ - -2.2234614865425384e-14
+ - -2.9688504801263227e-13
+ - 8.449153648861646e-14
+ - -2.2658131339052534e-14
+ - 2.8439131204063134e-13
+ - -6.691560283308973e-14
+ - -6.755087754353045e-14
+ - 1.4992483166401116e-13
+ - -1.4823076576950256e-13
+ - 1.1117307432712692e-13
+ - -1.0227922838095677e-13
+ - -3.0048493803846305e-13
+ - 1.503483481376383e-14
+ - 1.4145450219146816e-13
+ - -1.7618285302889447e-13
+ - -1.2366681029912785e-13
+ - 2.7486219138402046e-13
+ - 8.406802001498931e-14
+ - 8.089164646278568e-14
+ - -1.861354901591325e-13
+ - -1.1011428314305904e-14
+ - 8.957373417214226e-14
+ - -4.129285617864714e-14
+ - -6.564505341220828e-14
+ - -3.8963515573697816e-14
+ - -1.1943164556285635e-13
+ - -6.522153693858113e-14
+ - -1.1879637085241562e-13
+ - 1.49501315190384e-13
+ - 2.627919718856467e-13
+ - 4.156814188650479e-13
+ - 1.9481757786848908e-13
+ - 1.198551620364835e-13
+ - -2.568627412548666e-13
+ - -1.9757043494706555e-13
+ - 2.6554482896422316e-13
+ - -2.2298142336469456e-13
+ - -2.517805435713408e-13
+ - 2.3843977465208555e-13
+ - 1.367958209815695e-13
+ - 8.004461351553138e-14
+ - 4.658681209898652e-14
+ - 1.2281977735187355e-14
+ - -1.9926450084157415e-13
+ - 2.1895801686523664e-13
+ - -2.839677955670042e-13
+ - -2.9879087214395444e-13
+ - -1.0757318430129614e-13
+ - -3.705769144237564e-14
+ - -1.7808867716021665e-13
+ - -1.878295560536411e-13
+ - 1.6707724884591074e-13
+ - -1.0651439311722827e-13
+ - -3.170020805099219e-13
+ - 4.002230675776569e-14
+- - 14.230595050943602
+ - -13.841678315929899
+ - 10.359556086397452
+ - -5.133744680205996
+ - 1.4172173458096744
+ - 3.715329290878557
+ - -2.1048468704599945
+ - -3.148789740492487
+ - 6.646633219255644
+ - -11.19470282059524
+ - 12.200944772359072
+ - -9.841514483884737
+ - -5.224079505075823
+ - 10.512178539032208
+ - -12.195083584903914
+ - 11.910911370653633
+ - -9.88782674748564
+ - 4.487044536009892
+ - 9.464781244732553
+ - -6.213144943704247
+ - 2.2349716840520673
+ - 5.548156186727584
+ - -9.073502637653693
+ - 10.926031368018494
+ - 7.555852598893238
+ - -11.68001169719352
+ - 12.31265739863288
+ - -10.182101033752062
+ - 7.553810802312311
+ - -1.9785820259623383
+ - -7.557989080969404
+ - 3.3917923500357126
+ - 0.9427039827553594
+ - -8.75039154518621
+ - 11.421505984540818
+ - -11.291300737568532
+ - -9.99234048561666
+ - 12.436241390771572
+ - -11.40277767047514
+ - 6.973963173209437
+ - -3.598976288595097
+ - -1.6657081771275024
+ - 4.194224836369698
+ - 0.7422128675754874
+ - -4.472388471199968
+ - 9.842999571664791
+ - -13.630541723766154
+ - 14.45471236699309
+ - -5.052551530371902e-13
+ - -9.486769009248164e-14
+ - -2.846030702774449e-13
+ - -2.0667603913004928e-13
+ - -3.5998900258307764e-14
+ - 4.188577924172515e-13
+ - 5.336307567702092e-14
+ - 5.315131744020735e-13
+ - 7.962109704190423e-14
+ - 1.0164395367051604e-14
+ - -4.840793293558326e-13
+ - 9.063252535621014e-14
+ - 1.1434944787933055e-14
+ - 5.247369108240391e-13
+ - -5.336307567702092e-14
+ - -1.0630263488041469e-13
+ - 3.942938369468768e-13
+ - -3.0112021274890377e-13
+ - 2.846030702774449e-13
+ - -1.7279472123987727e-13
+ - -4.37069000783219e-13
+ - -4.743384504624082e-14
+ - 3.006966962752766e-13
+ - -3.0112021274890377e-13
+ - -2.7316812548951186e-13
+ - 4.946672411965114e-13
+ - 1.300195574035351e-13
+ - 1.1689054672109345e-13
+ - -2.7655625727852906e-13
+ - -8.682087709356578e-14
+ - 1.7957098481791167e-13
+ - -1.5966571055743561e-13
+ - -8.555032767268433e-14
+ - -1.274784585617722e-13
+ - -1.8295911660692887e-13
+ - -7.919758056827708e-14
+ - -1.283254915090265e-13
+ - 2.5622746654442585e-13
+ - 4.3113977015243887e-13
+ - 6.039344913923161e-13
+ - 2.7316812548951186e-13
+ - 1.7914746834428452e-13
+ - -4.2775163836342167e-13
+ - -2.3759274170483125e-13
+ - 3.731180132655193e-13
+ - -3.4897757426877174e-13
+ - -4.590918574118308e-13
+ - 3.858235074743338e-13
+ - 2.6554482896422316e-13
+ - 7.496241583200558e-14
+ - 4.658681209898652e-14
+ - 5.886878983417387e-14
+ - -2.803679055411734e-13
+ - 2.7909735612029196e-13
+ - -3.89211639263351e-13
+ - -3.8878812278972386e-13
+ - -1.8550021544869177e-13
+ - -1.2705494208814505e-13
+ - -3.117081245895825e-13
+ - -3.023907621697852e-13
+ - 2.812149384884277e-13
+ - -9.698527246061739e-14
+ - -6.636503141737443e-13
+ - 4.658681209898652e-14
+- - 12.975174285091738
+ - -10.111028974030651
+ - 5.557108463031336
+ - 2.0988389491282358
+ - -6.052693246432117
+ - 9.37504950761921
+ - 4.7595513277387305
+ - -9.673595752957349
+ - 11.412736897142443
+ - -11.597341644126688
+ - 10.123168859404688
+ - -5.234585039094663
+ - -9.421397262845462
+ - 12.138748035204658
+ - -11.392537510449703
+ - 6.954832777775687
+ - -3.387830601468903
+ - -2.0258103736280386
+ - 4.065451392310733
+ - 1.1092506600032102
+ - -4.888082056245667
+ - 10.567675487586268
+ - -12.231027269629271
+ - 10.82101572970598
+ - 10.907410389570288
+ - -12.164895420731932
+ - 10.419683543816129
+ - -4.502059509468776
+ - 0.5934596773464001
+ - 4.567408343025187
+ - -1.5388268730316779
+ - -3.961716249690223
+ - 8.42879441836897
+ - -10.728465115171689
+ - 10.82096502092025
+ - -7.567351036620551
+ - -10.01122062906057
+ - 8.911277574658696
+ - -5.887572532558715
+ - -0.8533938844241671
+ - 4.518512380351367
+ - -7.72318837815225
+ - -3.020335705604842
+ - 8.002687129882943
+ - -10.10339930322936
+ - 11.008753947649703
+ - -12.39150749165897
+ - 10.55033772625818
+ - -3.6761229910836635e-13
+ - 9.275010772434589e-14
+ - -9.613823951336309e-14
+ - -1.3976043629695956e-13
+ - 2.286988957586611e-14
+ - 2.7232109254225756e-13
+ - -6.988021814847978e-14
+ - 4.3029273720518457e-13
+ - -3.8116482626443515e-14
+ - 1.8041801776516597e-13
+ - -3.3711911300721153e-13
+ - -9.994988777600744e-14
+ - 1.7830043539703022e-13
+ - 5.692061405548898e-13
+ - 1.511953810848926e-13
+ - -7.030373462210693e-14
+ - 7.775762455794477e-13
+ - -4.1674021004911577e-13
+ - 5.488773498207866e-13
+ - -1.3976043629695956e-13
+ - -1.1180834903756764e-13
+ - -2.7062702664774896e-13
+ - 4.324103195733203e-13
+ - -2.5876856538618875e-13
+ - -4.374925172568461e-13
+ - 5.175371307723775e-13
+ - 7.538593230563273e-14
+ - 3.006966962752766e-14
+ - -9.994988777600744e-14
+ - -2.9264988327636077e-13
+ - 2.31239994600424e-13
+ - -4.154696606282343e-13
+ - 2.371692252312041e-14
+ - -3.0450834453792097e-13
+ - -7.453889935837843e-14
+ - 4.955142741437657e-14
+ - 1.3044307387716225e-13
+ - 2.2234614865425384e-13
+ - 3.0366131159066667e-13
+ - 1.6432439176733427e-13
+ - 4.235164736271502e-14
+ - 8.639736061993863e-14
+ - -3.341544976918215e-13
+ - 1.1434944787933055e-13
+ - 6.776263578034403e-14
+ - -1.9989977555201488e-13
+ - -4.887380105657313e-13
+ - 2.608861477543245e-13
+ - 3.2949581648192283e-13
+ - -1.461131834013668e-13
+ - -5.632769099241097e-14
+ - 1.7872395187065737e-13
+ - -4.1928130889087867e-14
+ - -5.632769099241097e-14
+ - -1.3129010682441655e-14
+ - 6.140988867593677e-14
+ - -1.5670109524204556e-13
+ - -3.273782341137871e-13
+ - -2.8417955380381776e-13
+ - -1.9608812728937053e-13
+ - 2.202285662861181e-13
+ - 1.9312351197398048e-13
+ - -9.39359538505019e-13
+ - -1.8634724839594607e-14
+- - 7.012378952897768
+ - -4.965645685663094
+ - 2.2304029052847776
+ - 2.4818898777187153
+ - -4.731073927852712
+ - 6.256824094660571
+ - 3.8997899311867594
+ - -6.580185588089757
+ - 7.231863000593151
+ - -6.544068499365307
+ - 5.271979944980382
+ - -2.085875288510349
+ - -5.10966066862159
+ - 7.067981858612974
+ - -6.211373238162249
+ - 2.9824637031881127
+ - -0.7123331299779859
+ - -2.31070340556221
+ - 1.289912095041309
+ - 1.9459984549818445
+ - -4.018384546096849
+ - 6.806261803746984
+ - -7.396923974110356
+ - 6.018889745845267
+ - 6.693538966968044
+ - -6.875654886413619
+ - 5.4709183003905775
+ - -1.4826572938630977
+ - -0.9302977192606351
+ - 3.734872035646848
+ - 0.23223003607133244
+ - -3.5432525251969786
+ - 6.059828894704788
+ - -6.344771419680985
+ - 5.929059632079674
+ - -3.547539016260382
+ - -5.589493546761598
+ - 4.333490385526751
+ - -2.2856210571171434
+ - -1.894747356666795
+ - 3.992398514859307
+ - -5.407203971809462
+ - -2.992801438150018
+ - 5.7811834526880475
+ - -6.658026609322132
+ - 6.353948724707052
+ - -6.689670612124413
+ - 5.179290108117241
+ - -1.7978274305472525e-13
+ - 8.597384414631148e-14
+ - -1.7364175418713157e-14
+ - -6.6280328122649e-14
+ - 2.456395547037471e-14
+ - 1.2684318385133148e-13
+ - -6.37392292808861e-14
+ - 2.210755992333724e-13
+ - -4.256340559952859e-14
+ - 1.3319593095573873e-13
+ - -1.624185676360121e-13
+ - -8.957373417214226e-14
+ - 1.2980779916672153e-13
+ - 3.2864878353466853e-13
+ - 1.2387856853594142e-13
+ - -3.3034284942917713e-14
+ - 5.041963618531223e-13
+ - -2.5283933475540865e-13
+ - 3.5384801371548397e-13
+ - -7.263307522705625e-14
+ - -3.1763735522036263e-15
+ - -1.920647207899126e-13
+ - 2.644860377801553e-13
+ - -1.3743109569201023e-13
+ - -2.744386749103933e-13
+ - 2.9201460856592004e-13
+ - 3.091670257478196e-14
+ - 3.1763735522036263e-15
+ - -2.202285662861181e-14
+ - -2.0011153378882846e-13
+ - 1.384898868760781e-13
+ - -2.7930911435710554e-13
+ - 3.536362554786704e-14
+ - -1.996880173152013e-13
+ - -2.0964065444543933e-14
+ - 4.9339669177562995e-14
+ - 1.2176098616780567e-13
+ - 1.1794933790516132e-13
+ - 1.4336032632279033e-13
+ - 1.291725244562808e-14
+ - -1.7152417181899582e-14
+ - 3.049318610115481e-14
+ - -1.6855955650360577e-13
+ - 1.2811373327221293e-13
+ - -1.8846483076408183e-14
+ - -8.406802001498931e-14
+ - -2.7592098256808834e-13
+ - 1.2387856853594142e-13
+ - 1.9481757786848908e-13
+ - -1.2536087619363645e-13
+ - -5.1033735072071595e-14
+ - 1.2027867851011065e-13
+ - 1.8634724839594607e-14
+ - -9.296186596115946e-14
+ - 5.738648217647885e-14
+ - 1.1921988732604277e-13
+ - -8.173867941003998e-14
+ - -2.1705219273391446e-13
+ - -1.545835128739098e-13
+ - -8.809142651444724e-14
+ - 1.1011428314305904e-13
+ - 1.5670109524204556e-13
+ - -5.723825141070935e-13
+ - -2.244637310223896e-14
+- - -10.3441331602714
+ - 9.408983731863284
+ - -7.661671382902837
+ - 3.971463279780406
+ - -2.0247073101185467
+ - -2.4938419211912515
+ - 1.7694507962224255
+ - 1.3199022433020906
+ - -4.6586516049889255
+ - 8.125015211186584
+ - -9.67845620559726
+ - 7.312348306023481
+ - 7.9338061484947096
+ - -8.325664203401027
+ - 8.88082569738402
+ - -8.783158610726526
+ - 6.622678184051636
+ - -3.4422401250496595
+ - -7.016290617399387
+ - 3.984220176882624
+ - -1.8357931434176302
+ - -3.851459068675911
+ - 5.724376380479474
+ - -7.907125150005201
+ - -5.352527124066146
+ - 7.700063122565422
+ - -8.978058685376244
+ - 7.578553118723707
+ - -6.456510147617687
+ - 1.6645187903595406
+ - 5.695134067991246
+ - -3.4517327754523146
+ - -0.4296340261934273
+ - 6.300921987925354
+ - -9.064517863122367
+ - 8.333617420617395
+ - 7.272778009389799
+ - -9.893248691184214
+ - 8.46238436260134
+ - -5.295778099556689
+ - 2.1118841840876623
+ - 1.039045596750448
+ - -3.2512370832535997
+ - -1.0664759026164774
+ - 3.0826638902849726
+ - -7.097346947718211
+ - 9.176662151839727
+ - -10.590887167761293
+ - 3.5998900258307764e-13
+ - 6.183340514956392e-14
+ - 2.22769665127881e-13
+ - 1.5754812818929986e-13
+ - 1.0164395367051604e-14
+ - -2.490276864927643e-13
+ - -4.489274620447792e-14
+ - -3.8455295805345235e-13
+ - -4.658681209898652e-14
+ - 3.3881317890172014e-14
+ - 3.5490680489955184e-13
+ - -8.809142651444724e-14
+ - 4.912791094074942e-14
+ - -3.9048218868423246e-13
+ - 6.522153693858113e-14
+ - 4.828087799349512e-14
+ - -1.9820570965750628e-13
+ - 2.0413494028828638e-13
+ - -1.9058241313221758e-13
+ - 4.828087799349512e-14
+ - 3.108610916423282e-13
+ - 3.3034284942917713e-14
+ - -2.930733997499879e-13
+ - 2.947674656444965e-13
+ - 2.0921713797181218e-13
+ - -3.5660087079406044e-13
+ - -8.724439356719293e-14
+ - -6.945670167485263e-14
+ - 1.6855955650360577e-13
+ - 9.486769009248164e-14
+ - -9.740878893424454e-14
+ - 1.4907779871675686e-13
+ - 7.623296525288703e-15
+ - 1.3891340334970526e-13
+ - 1.4568966692773966e-13
+ - 3.218725199566341e-14
+ - 6.268043809681823e-14
+ - -1.8804131429045468e-13
+ - -2.744386749103933e-13
+ - -4.802676810931883e-13
+ - -1.6771252355635147e-13
+ - -1.4314856808597676e-13
+ - 3.8709405689521525e-13
+ - 2.405573570202213e-13
+ - -2.617331807015788e-13
+ - 2.685094442796132e-13
+ - 2.829090043829363e-13
+ - -2.99002630380768e-13
+ - -1.8295911660692887e-13
+ - -1.0842021724855044e-13
+ - -2.456395547037471e-14
+ - -9.317362419797304e-15
+ - 1.4484263398048536e-13
+ - -1.6008922703106276e-13
+ - 2.702035101741218e-13
+ - 3.015437292225309e-13
+ - 1.3976043629695956e-13
+ - 4.828087799349512e-14
+ - 1.6855955650360577e-13
+ - 2.0921713797181218e-13
+ - -1.7787691892340307e-13
+ - 1.0418505251227894e-13
+ - 5.073727354053259e-13
+ - -9.317362419797304e-15
+- - -15.890299844992073
+ - 13.77214927596612
+ - -10.803670557166578
+ - 4.41757422158289
+ - -1.3447425485555966
+ - -5.317908967897309
+ - 1.0602454523168003
+ - 3.65899921439342
+ - -8.486670119907318
+ - 12.829441081636984
+ - -14.680232932974427
+ - 10.3068186219806
+ - 12.111802079881832
+ - -13.30988364736961
+ - 13.712322964531747
+ - -12.521761442511963
+ - 8.715970644909342
+ - -3.7663083801744044
+ - -9.642976687536494
+ - 4.3775672598573045
+ - -1.097868508248377
+ - -7.2852952168352845
+ - 9.718527390130244
+ - -12.359532568872892
+ - -9.220167782131304
+ - 12.146617039381631
+ - -13.59144688003156
+ - 10.455340596722714
+ - -8.414304966045139
+ - 0.9751603834509438
+ - 7.420728937011108
+ - -3.609196853583165
+ - -2.5402274294049607
+ - 10.365000253376412
+ - -14.087008719871376
+ - 12.126887842769808
+ - 11.398999042859552
+ - -14.65550925593265
+ - 11.881200662102694
+ - -6.342317211930615
+ - 1.2460239238309794
+ - 3.1403385350189135
+ - -3.2919571654921698
+ - -3.519244934954551
+ - 6.235039728044595
+ - -11.408865887893468
+ - 14.02993525546714
+ - -15.615863298003832
+ - 5.200782296141404e-13
+ - 5.251604272976662e-14
+ - 2.947674656444965e-13
+ - 2.371692252312041e-13
+ - -5.082197683525802e-15
+ - -3.5405977195229754e-13
+ - -4.235164736271502e-14
+ - -5.692061405548898e-13
+ - -4.235164736271502e-14
+ - 3.3881317890172014e-15
+ - 5.149960319306146e-13
+ - -7.453889935837843e-14
+ - 3.5575383784680614e-14
+ - -6.200281173901478e-13
+ - 5.082197683525802e-14
+ - 5.759824041329242e-14
+ - -3.9979955110402976e-13
+ - 3.4558944247975454e-13
+ - -3.6930636500287495e-13
+ - 7.623296525288703e-14
+ - 4.0149361699853836e-13
+ - 9.486769009248164e-14
+ - -4.980553729855286e-13
+ - 4.45539330255762e-13
+ - 3.6591823321385775e-13
+ - -5.590417451878382e-13
+ - -1.1519648082658485e-13
+ - -9.147955830346444e-14
+ - 2.303929616531697e-13
+ - 2.0328790734103208e-13
+ - -1.6432439176733427e-13
+ - 3.049318610115481e-13
+ - -1.1858461261560205e-14
+ - 2.693564772268675e-13
+ - 1.8973538018496328e-13
+ - 2.879912020664621e-14
+ - 3.049318610115481e-14
+ - -2.812149384884277e-13
+ - -3.9979955110402976e-13
+ - -6.471331717022855e-13
+ - -2.0667603913004928e-13
+ - -2.1175823681357508e-13
+ - 5.827586677109586e-13
+ - 3.083199928005653e-13
+ - -3.3542504711270293e-13
+ - 3.8116482626443515e-13
+ - 4.54009659728305e-13
+ - -4.404571325722362e-13
+ - -3.117081245895825e-13
+ - -1.1350241493207625e-13
+ - -1.5246593050577406e-14
+ - -4.0657581468206416e-14
+ - 1.6263032587282567e-13
+ - -1.6601845766184287e-13
+ - 3.3711911300721153e-13
+ - 3.5236570605778894e-13
+ - 2.1006417091906648e-13
+ - 1.2366681029912785e-13
+ - 2.422514229147299e-13
+ - 2.862971361719535e-13
+ - -2.710505431213761e-13
+ - 8.978549240895584e-14
+ - 8.74138001566438e-13
+ - 0.0
+- - -8.85008724616724
+ - 7.298867326579505
+ - -5.490633044175745
+ - 1.5429364745439045
+ - 0.2133065547365663
+ - -3.7722442330039803
+ - -0.31312056150654344
+ - 2.927029580512717
+ - -5.451651982805647
+ - 7.33505737369554
+ - -8.073981154434993
+ - 5.235586511558074
+ - 6.704323953850755
+ - -6.958930605714985
+ - 7.675166507827707
+ - -6.444960812214752
+ - 4.059913195325226
+ - -1.2683501170662166
+ - -4.751920773035003
+ - 1.4881479577133514
+ - 0.32720748384194587
+ - -4.8035890546960465
+ - 5.91682680862658
+ - -6.999656398842709
+ - -5.678998011450604
+ - 6.938372601521654
+ - -7.460553171764066
+ - 5.176371677231491
+ - -3.866649427524109
+ - -0.3190273754545904
+ - 3.4091972953808622
+ - -1.0872889076200039
+ - -2.43956978896137
+ - 6.146529800279866
+ - -7.934285389834458
+ - 6.386201536731881
+ - 6.472280907686458
+ - -7.866898533988034
+ - 6.007646691413404
+ - -2.5551709305065273
+ - -0.39512314642176966
+ - 2.590645914255463
+ - -0.9055428360912314
+ - -2.98524748202638
+ - 4.2899093419700955
+ - -6.630034923059019
+ - 7.777456917370157
+ - -8.341065300981835
+ - 2.65121312490596e-13
+ - 8.470329472543003e-15
+ - 1.4568966692773966e-13
+ - 1.2705494208814505e-13
+ - -1.2705494208814505e-14
+ - -1.8634724839594607e-13
+ - -1.1858461261560205e-14
+ - -3.091670257478196e-13
+ - -1.6093625997831706e-14
+ - -2.456395547037471e-14
+ - 2.778268066994105e-13
+ - -1.7787691892340307e-14
+ - 6.776263578034403e-15
+ - -3.7438856268640075e-13
+ - 4.235164736271502e-15
+ - 2.625802136488331e-14
+ - -2.769797737521562e-13
+ - 2.1429933565533799e-13
+ - -2.422514229147299e-13
+ - 3.134021904840911e-14
+ - 1.9142944607947188e-13
+ - 7.538593230563273e-14
+ - -2.913793338554793e-13
+ - 2.439454888092385e-13
+ - 2.430984558619842e-13
+ - -3.1679032227310833e-13
+ - -5.844527336054672e-14
+ - -4.743384504624082e-14
+ - 9.994988777600744e-14
+ - 1.3976043629695956e-13
+ - -9.317362419797304e-14
+ - 2.1091120386632078e-13
+ - -2.456395547037471e-14
+ - 1.7618285302889447e-13
+ - 8.978549240895584e-14
+ - -4.235164736271502e-15
+ - -1.2705494208814505e-14
+ - -1.5246593050577406e-13
+ - -2.0582900618279498e-13
+ - -3.032377951170395e-13
+ - -8.724439356719293e-14
+ - -1.1434944787933055e-13
+ - 3.1679032227310833e-13
+ - 1.3129010682441655e-13
+ - -1.4145450219146816e-13
+ - 1.9397054492123478e-13
+ - 2.65121312490596e-13
+ - -2.380162581784584e-13
+ - -1.9312351197398048e-13
+ - -3.7269449679189215e-14
+ - 1.0164395367051604e-14
+ - -4.0657581468206416e-14
+ - 6.606856988583543e-14
+ - -3.6422416731934915e-14
+ - 1.4399560103323106e-13
+ - 1.5161889755851976e-13
+ - 1.1265538198482195e-13
+ - 9.994988777600744e-14
+ - 1.2027867851011065e-13
+ - 1.5077186461126546e-13
+ - -1.4653669987499396e-13
+ - 1.6940658945086007e-14
+ - 5.310896579284463e-13
+ - 9.317362419797304e-15
+- - 11.18308837080933
+ - -12.282580605362806
+ - 10.299864335559182
+ - -7.798102402570965
+ - 5.179405129906523
+ - -0.4043612104506317
+ - -5.361738543549421
+ - 1.290265159636391
+ - 2.2515432611065953
+ - -8.0249530271569
+ - 10.131548709625386
+ - -9.809066903275774
+ - -8.699078036319388
+ - 10.974154363448807
+ - -9.431342611965087
+ - 11.528413649478148
+ - -10.906867609769197
+ - 6.922582979916765
+ - 9.972193827735195
+ - -8.6557788336284
+ - 5.601813368247056
+ - 1.3014723614075905
+ - -4.944893363119102
+ - 8.109468862421185
+ - 3.707039870576752
+ - -8.349368133896029
+ - 10.123758971935509
+ - -10.656070741081779
+ - 9.418276951118273
+ - -5.091969466508592
+ - -8.910635484486527
+ - 6.569762765953591
+ - -3.4614621585095446
+ - -5.349188091162966
+ - 8.73707165229188
+ - -10.387135484613408
+ - -7.3519380388994096
+ - 11.108449935819898
+ - -11.463945498486984
+ - 9.48476053131266
+ - -7.171001840257065
+ - 2.136177434127213
+ - 7.096428256479833
+ - -3.49642085563532
+ - -0.1687906504638015
+ - 6.605634490526837
+ - -10.743635107065861
+ - 12.818954499084843
+ - -4.811147140404426e-13
+ - -1.6728900708272432e-13
+ - -3.2356658585114273e-13
+ - -1.9862922613113343e-13
+ - -5.505714157152952e-14
+ - 4.0403471584030126e-13
+ - 8.300922883092143e-14
+ - 4.256340559952859e-13
+ - 1.0714966782766899e-13
+ - -9.825582188149884e-14
+ - -4.2351647362715017e-13
+ - 1.6644197413547002e-13
+ - -7.877406409464993e-14
+ - 2.99002630380768e-13
+ - -1.7872395187065737e-13
+ - -9.063252535621014e-14
+ - 6.606856988583543e-14
+ - -1.528894469794012e-13
+ - 5.929230630780102e-14
+ - -1.528894469794012e-13
+ - -4.730679010415267e-13
+ - 8.343274530454858e-14
+ - 1.7787691892340307e-13
+ - -2.702035101741218e-13
+ - -7.453889935837843e-14
+ - 3.646476837929763e-13
+ - 1.1943164556285635e-13
+ - 1.096907666694319e-13
+ - -3.2187251995663413e-13
+ - 5.632769099241097e-14
+ - 1.223962608782464e-13
+ - 3.3034284942917713e-14
+ - -1.2197274440461925e-13
+ - -1.2705494208814505e-14
+ - -1.8804131429045468e-13
+ - -1.2197274440461925e-13
+ - -2.0371142381465923e-13
+ - 2.0540548970916783e-13
+ - 3.951408698941311e-13
+ - 6.848261378551018e-13
+ - 3.2356658585114273e-13
+ - 2.0201735792015063e-13
+ - -3.7184746384463785e-13
+ - -3.7184746384463785e-13
+ - 4.679857033580009e-13
+ - -3.519421895841618e-13
+ - -3.066259269060567e-13
+ - 3.2017845406212553e-13
+ - 1.0884373372217759e-13
+ - 1.528894469794012e-13
+ - 9.275010772434589e-14
+ - -4.1081097941833566e-14
+ - -3.180608716939898e-13
+ - 4.1250504531284427e-13
+ - -5.001729553536644e-13
+ - -5.205017460877676e-13
+ - -1.6474790824096142e-13
+ - 4.531626267810507e-14
+ - -2.888382350137164e-13
+ - -2.82061971435682e-13
+ - 2.5538043359717155e-13
+ - -2.202285662861181e-13
+ - -3.4813054132151744e-13
+ - 7.326834993749698e-14
+- - 10.858263362113075
+ - -11.34180663842423
+ - 9.102824308933496
+ - -6.00622131999628
+ - 3.3376273012862545
+ - 0.9898784013403307
+ - -3.6639590991936046
+ - -0.31337699765533006
+ - 3.4220903449083213
+ - -8.113081078664901
+ - 9.610832949654172
+ - -8.661075118143836
+ - -8.373274931092201
+ - 9.82926674023057
+ - -8.663631013465107
+ - 10.291774986784787
+ - -9.285955669435861
+ - 5.308918661872038
+ - 8.62851333508225
+ - -6.83546714497463
+ - 3.839761125444487
+ - 2.53573216101643
+ - -5.710614418408356
+ - 8.072200270173017
+ - 4.527135098252329
+ - -8.452170085335213
+ - 9.643427351424274
+ - -9.24252826936752
+ - 7.696079085789491
+ - -3.472957590793364
+ - -7.4160633292846745
+ - 4.754709785399988
+ - -1.6131632703005079
+ - -5.829008136113662
+ - 8.582080582592168
+ - -9.45577694776309
+ - -7.346543780487809
+ - 10.229966045106357
+ - -10.089899238569464
+ - 7.543867114446761
+ - -5.1569358074920615
+ - 0.6412808668089228
+ - 5.309707496252337
+ - -1.6985010029128662
+ - -1.5554207600506038
+ - 6.883514372677965
+ - -10.418608574896629
+ - 11.839499737012419
+ - -4.3283383604694747e-13
+ - -1.266314256145179e-13
+ - -2.710505431213761e-13
+ - -1.8295911660692887e-13
+ - -4.404571325722362e-14
+ - 3.6591823321385775e-13
+ - 6.098637220230962e-14
+ - 4.010701005249112e-13
+ - 8.343274530454858e-14
+ - -5.802175688691957e-14
+ - -3.9132922163148676e-13
+ - 1.1773757966834775e-13
+ - -4.404571325722362e-14
+ - 3.282252670610414e-13
+ - -1.2536087619363645e-13
+ - -8.343274530454858e-14
+ - 1.6263032587282567e-13
+ - -1.8592373192231892e-13
+ - 1.283254915090265e-13
+ - -1.4484263398048536e-13
+ - -3.9725845226226686e-13
+ - 3.134021904840911e-14
+ - 2.0752307207730358e-13
+ - -2.473336205982557e-13
+ - -1.249373597200093e-13
+ - 3.6930636500287495e-13
+ - 1.0842021724855044e-13
+ - 9.402065714522734e-14
+ - -2.744386749103933e-13
+ - 3.8116482626443515e-15
+ - 1.3044307387716225e-13
+ - -3.6845933205562065e-14
+ - -9.147955830346444e-14
+ - -5.632769099241097e-14
+ - -1.6093625997831706e-13
+ - -9.656175598699024e-14
+ - -1.486542822431297e-13
+ - 1.9439406139486193e-13
+ - 3.621065849512134e-13
+ - 5.768294370801785e-13
+ - 2.676624113323589e-13
+ - 1.7745340244977592e-13
+ - -3.426248271643645e-13
+ - -2.8672065264558066e-13
+ - 3.7947076036992655e-13
+ - -3.121316410632097e-13
+ - -3.172138387467355e-13
+ - 2.998496633280223e-13
+ - 1.3891340334970526e-13
+ - 1.0630263488041469e-13
+ - 6.564505341220828e-14
+ - -3.8116482626443515e-15
+ - -2.6554482896422316e-13
+ - 3.239901023247699e-13
+ - -4.0996394647108136e-13
+ - -4.154696606282343e-13
+ - -1.49501315190384e-13
+ - -3.8116482626443515e-15
+ - -2.6639186191147746e-13
+ - -2.574980159653073e-13
+ - 2.405573570202213e-13
+ - -1.520424140321469e-13
+ - -4.154696606282343e-13
+ - 6.183340514956392e-14
+- - -5.377956361510987
+ - 8.477928521568101
+ - -8.9062197443291
+ - 10.641923909695956
+ - -9.937127941213912
+ - 6.281101243858613
+ - 9.367539564182817
+ - -7.515751575620756
+ - 4.358671110008953
+ - 2.4449779932427806
+ - -5.869159319047653
+ - 8.51701449886696
+ - 4.50535338853787
+ - -8.91462912926916
+ - 10.37005455180462
+ - -9.514262680033637
+ - 10.986685140527003
+ - -9.548221653192885
+ - -9.436152757935977
+ - 11.069891698638784
+ - -9.73526276259733
+ - 4.97457090892001
+ - -1.6255342529750385
+ - -3.0268930818305635
+ - 2.30193201969777
+ - 2.4949195424395945
+ - -5.688632345506375
+ - 9.985152571222551
+ - -10.907069053687122
+ - 8.925519106235946
+ - 9.725722933093117
+ - -10.310293006185706
+ - 9.359387435233964
+ - -0.22410682635001108
+ - -3.7667208433439066
+ - 7.767323668907081
+ - 2.619135805294527
+ - -7.789154969274463
+ - 10.096460924899784
+ - -11.89339996619837
+ - 11.398767822278067
+ - -7.335627384851463
+ - -10.371500181160357
+ - 9.149947298331984
+ - -6.045265669249187
+ - -1.1085182039105044
+ - 5.223726032063931
+ - -8.837559209216558
+ - 3.7269449679189215e-13
+ - 2.4182790644110275e-13
+ - 3.3966021184897444e-13
+ - 1.427250516123496e-13
+ - 6.903318520122548e-14
+ - -3.057788939588024e-13
+ - -1.3298417271892515e-13
+ - -2.5622746654442585e-13
+ - -1.3129010682441655e-13
+ - 2.185345003916095e-13
+ - 2.871441691192078e-13
+ - -2.752857078576476e-13
+ - 1.7575933655526732e-13
+ - 3.3881317890172014e-14
+ - 3.0789647632693817e-13
+ - 5.632769099241097e-14
+ - 4.0403471584030126e-13
+ - -8.216219588366713e-14
+ - 2.879912020664621e-13
+ - 9.740878893424454e-14
+ - 4.832322964085783e-13
+ - -2.532628512290358e-13
+ - 7.115076756936123e-14
+ - 2.0286439086740493e-13
+ - -2.1133472033994793e-13
+ - -1.0926725019580474e-13
+ - -8.300922883092143e-14
+ - -1.096907666694319e-13
+ - 3.197549375884984e-13
+ - -2.422514229147299e-13
+ - -7.623296525288703e-15
+ - -3.189079046412441e-13
+ - 1.7702988597614877e-13
+ - -1.6093625997831706e-13
+ - 1.9397054492123478e-13
+ - 1.4738373282224826e-13
+ - 3.273782341137871e-13
+ - -1.4060746924421386e-13
+ - -2.939204326972422e-13
+ - -7.081195439045951e-13
+ - -3.7100043089738355e-13
+ - -1.8592373192231892e-13
+ - 2.7401515843676616e-13
+ - 5.10337350720716e-13
+ - -5.408305368218708e-13
+ - 3.1043757516870107e-13
+ - 5.886878983417387e-14
+ - -2.0582900618279498e-13
+ - 9.190307477709159e-14
+ - -2.786738396466648e-13
+ - -1.3806637040245096e-13
+ - 1.6728900708272432e-13
+ - 3.4474240953250024e-13
+ - -5.446421850845151e-13
+ - 5.721707558702799e-13
+ - 6.471331717022855e-13
+ - 1.2536087619363645e-13
+ - -2.346281263894412e-13
+ - 1.9947625907838773e-13
+ - 1.9651164376299768e-13
+ - -1.7575933655526732e-13
+ - 3.8285889215894375e-13
+ - -1.6517142471458857e-13
+ - -8.046812998915853e-14
+- - -7.26177762887226
+ - 10.233215777622602
+ - -10.158905056818325
+ - 11.114581455641416
+ - -9.900992880020283
+ - 5.6065113986664885
+ - 9.44232101998459
+ - -6.891725138438407
+ - 3.315416196245882
+ - 3.969370063420005
+ - -7.454203097163643
+ - 9.705715006949989
+ - 5.931450143043688
+ - -10.31944179975697
+ - 11.421682568420346
+ - -10.202057158467424
+ - 12.12337827044939
+ - -9.955475602847574
+ - -10.54974963106063
+ - 11.685134653230408
+ - -9.819702843864182
+ - 4.071955251584357
+ - -0.3040331759848008
+ - -4.4994749875536195
+ - 1.1790532371877176
+ - 4.086903274564452
+ - -7.293935288493472
+ - 11.187090387118769
+ - -11.715368372754812
+ - 8.992963296944971
+ - 10.56287053064331
+ - -10.54441996384787
+ - 9.003547646674363
+ - 1.0182176367893605
+ - -5.291576657073478
+ - 9.178801696301608
+ - 3.969412678202437
+ - -9.361803445619325
+ - 11.46831190085929
+ - -12.59644590170362
+ - 11.636638396030996
+ - -6.925715066256156
+ - -10.717781936517458
+ - 8.827604303436624
+ - -5.269271190718069
+ - -2.4736136125669805
+ - 7.026552462099136
+ - -10.670791795767933
+ - 4.359043304807443e-13
+ - 2.5019235679523896e-13
+ - 3.7174158472623106e-13
+ - 1.7025362239811437e-13
+ - 7.337422905590377e-14
+ - -3.6004194214228104e-13
+ - -1.360017275935186e-13
+ - -3.2166076171982055e-13
+ - -1.3970749673775616e-13
+ - 2.1472285212896514e-13
+ - 3.4818348088072083e-13
+ - -2.7983850994913947e-13
+ - 1.717359300558094e-13
+ - -3.7269449679189215e-14
+ - 3.109140312015316e-13
+ - 6.982727858927638e-14
+ - 3.3960727228977104e-13
+ - -3.689887276476546e-14
+ - 2.3928680759933985e-13
+ - 1.2128453013497513e-13
+ - 5.306132018956158e-13
+ - -2.4113969217145863e-13
+ - 2.2128735747018596e-14
+ - 2.398691427505772e-13
+ - -1.6940658945086007e-13
+ - -1.7872395187065737e-13
+ - -9.979106909839726e-14
+ - -1.2133746969417852e-13
+ - 3.5400683239309415e-13
+ - -2.2504606617362692e-13
+ - -3.4198955245392376e-14
+ - -2.8751474603363157e-13
+ - 1.835414517581662e-13
+ - -1.3716639789599326e-13
+ - 2.1376994006330405e-13
+ - 1.5696579303806253e-13
+ - 3.3436625592863506e-13
+ - -1.7131241358218224e-13
+ - -3.4818348088072083e-13
+ - -7.768880313098036e-13
+ - -3.996407324264196e-13
+ - -2.0948183576782915e-13
+ - 3.2573710777848187e-13
+ - 5.328366633821583e-13
+ - -5.806940249020263e-13
+ - 3.526304038538059e-13
+ - 1.216021674901955e-13
+ - -2.5379224682106974e-13
+ - 5.574535584117364e-14
+ - -2.805267242187836e-13
+ - -1.411898043954512e-13
+ - 1.554305458211641e-13
+ - 3.7512971651524826e-13
+ - -5.725413327847036e-13
+ - 6.158988317722831e-13
+ - 6.86467264190407e-13
+ - 1.4733079326304487e-13
+ - -2.1620515978666016e-13
+ - 2.406632361386281e-13
+ - 2.353163406590853e-13
+ - -2.1355818182649047e-13
+ - 3.867234799807915e-13
+ - -6.522153693858113e-14
+ - -8.787966827763366e-14
+- - 1.0051046134429555
+ - -4.933427249354512
+ - 5.680341562464285
+ - -8.979520100574769
+ - 8.675839303181633
+ - -7.352748631600169
+ - -8.633893506356165
+ - 7.670738301975642
+ - -6.350604541714311
+ - 1.0143586151423984
+ - 1.3341882291829035
+ - -5.419703112369603
+ - -1.129925129064751
+ - 4.590814293013094
+ - -7.468369638461885
+ - 9.207237395533252
+ - -8.640630910441788
+ - 8.12849441023482
+ - 6.495616502423162
+ - -9.846552937442501
+ - 8.99547606316487
+ - -6.623822094072733
+ - 3.633946939618694
+ - -0.3152028803604492
+ - -4.575757075468573
+ - 0.3396645582909184
+ - 1.8955030339549155
+ - -6.7883572563018975
+ - 7.764945542028077
+ - -8.236800216523278
+ - -7.324288370889393
+ - 8.443890989504826
+ - -9.566374285202246
+ - 2.9160707896013456
+ - -0.5135474870978927
+ - -4.23399446007811
+ - 0.48128846578417456
+ - 3.1707050487970303
+ - -6.5218222397365615
+ - 9.688696264847893
+ - -10.9742609984805
+ - 7.817419395610554
+ - 9.036523411873919
+ - -10.071361960117175
+ - 7.3888856913377525
+ - -1.9050753361974295
+ - -1.7664621508431873
+ - 4.372052364100696
+ - -2.414043899674756e-13
+ - -2.219226321806267e-13
+ - -2.430984558619842e-13
+ - -6.776263578034403e-14
+ - -7.115076756936123e-14
+ - 2.286988957586611e-13
+ - 1.1350241493207625e-13
+ - 1.0333801956502464e-13
+ - 1.1773757966834775e-13
+ - -1.9227647902672618e-13
+ - -1.3806637040245096e-13
+ - 2.337810934421869e-13
+ - -1.2451384324638215e-13
+ - -2.0498197323554068e-13
+ - -2.718975760686304e-13
+ - -5.336307567702092e-14
+ - -4.446922973085077e-13
+ - 1.6263032587282567e-13
+ - -3.7100043089738355e-13
+ - -1.1011428314305904e-13
+ - -3.6930636500287495e-13
+ - 2.668153783851046e-13
+ - -2.456395547037471e-13
+ - -3.5575383784680614e-14
+ - 3.1340219048409113e-13
+ - -4.489274620447792e-14
+ - 5.929230630780102e-14
+ - 8.724439356719293e-14
+ - -2.65121312490596e-13
+ - 3.032377951170395e-13
+ - -2.202285662861181e-14
+ - 4.0911691352382706e-13
+ - -2.0159384144652348e-13
+ - 2.4818065354551e-13
+ - -1.3298417271892515e-13
+ - -1.3891340334970526e-13
+ - -3.2187251995663413e-13
+ - 6.860966872759833e-14
+ - 2.0244087439377778e-13
+ - 4.87890977618477e-13
+ - 3.2526065174565133e-13
+ - 1.1773757966834775e-13
+ - -7.115076756936123e-14
+ - -3.7015339795012925e-13
+ - 4.3622196783596467e-13
+ - -1.9312351197398048e-13
+ - 2.541098841762901e-14
+ - 6.691560283308973e-14
+ - -1.6517142471458857e-13
+ - 2.1514636860259229e-13
+ - 1.3891340334970526e-13
+ - -1.5670109524204556e-13
+ - -3.2271955290388843e-13
+ - 5.039846036163087e-13
+ - -4.692562527788824e-13
+ - -5.166900978251232e-13
+ - -6.945670167485263e-14
+ - 2.329340604949326e-13
+ - -1.6686549060909717e-13
+ - -1.1773757966834775e-13
+ - 1.1011428314305904e-13
+ - -3.2526065174565133e-13
+ - 4.0488174878755556e-13
+ - 9.232659125071874e-14
+- - 3.658966820817939
+ - -9.993959044020059
+ - 10.729352156308703
+ - -15.36472811261222
+ - 14.354464147806208
+ - -11.456597610174834
+ - -14.371342103053733
+ - 12.067766092405073
+ - -9.406759228951334
+ - 0.06303274810148542
+ - 3.920252236455446
+ - -10.231526545499188
+ - -3.3824527248180605
+ - 9.119782246960252
+ - -13.476989360893366
+ - 15.378320161321115
+ - -15.299509429475211
+ - 13.885203263593118
+ - 11.930792310810833
+ - -16.918103341709536
+ - 14.978537108285364
+ - -10.00811471512649
+ - 4.646929968795961
+ - 1.0376696949906108
+ - -6.385063971287255
+ - -1.092460449160485
+ - 4.837873660770319
+ - -12.510352325790436
+ - 13.741334175193211
+ - -13.706150691035864
+ - -13.011308695694247
+ - 14.25683469830938
+ - -15.458181990075143
+ - 3.509716397924432
+ - 0.7979855091612722
+ - -8.504861446417312
+ - -0.6351588329744065
+ - 6.946893082113634
+ - -12.249367092933614
+ - 16.781441705977105
+ - -18.38480255994046
+ - 12.504287425591182
+ - 15.323555159765899
+ - -16.296614862702857
+ - 11.407319425983793
+ - -1.7071342717024491
+ - -4.802281416667326
+ - 9.178430862789424
+ - -4.633270221481023e-13
+ - -3.8709405689521525e-13
+ - -4.387630666777276e-13
+ - -1.3467823861343375e-13
+ - -1.1943164556285635e-13
+ - 4.2436350657440447e-13
+ - 1.8888834723770898e-13
+ - 2.422514229147299e-13
+ - 2.0159384144652348e-13
+ - -3.1340219048409113e-13
+ - -2.947674656444965e-13
+ - 3.9895251815677546e-13
+ - -2.0328790734103208e-13
+ - -2.702035101741218e-13
+ - -4.616329562535937e-13
+ - -1.0503208545953324e-13
+ - -6.700030612781516e-13
+ - 2.261577969168982e-13
+ - -5.590417451878382e-13
+ - -2.0498197323554068e-13
+ - -6.522153693858113e-13
+ - 4.3029273720518457e-13
+ - -3.5236570605778894e-13
+ - -9.740878893424454e-14
+ - 4.675621868843738e-13
+ - 8.470329472543003e-16
+ - 1.0926725019580474e-13
+ - 1.5415999640028266e-13
+ - -4.726443845678996e-13
+ - 4.777265822514254e-13
+ - -1.2705494208814505e-14
+ - 6.437450399132683e-13
+ - -3.3796614595446584e-13
+ - 3.8455295805345235e-13
+ - -2.456395547037471e-13
+ - -2.405573570202213e-13
+ - -5.437951521372608e-13
+ - 1.3976043629695956e-13
+ - 3.9048218868423246e-13
+ - 8.834553639862353e-13
+ - 5.700531735021441e-13
+ - 2.1768746744435519e-13
+ - -1.6940658945086007e-13
+ - -6.454391058077769e-13
+ - 7.682588831596504e-13
+ - -3.5744790374131474e-13
+ - -1.4399560103323106e-14
+ - 1.6008922703106276e-13
+ - -2.278518628114068e-13
+ - 3.5744790374131474e-13
+ - 2.320870275476783e-13
+ - -2.430984558619842e-13
+ - -5.581947122405839e-13
+ - 8.571973426213519e-13
+ - -8.12304596416874e-13
+ - -8.978549240895584e-13
+ - -1.4314856808597676e-13
+ - 3.7100043089738355e-13
+ - -3.1340219048409113e-13
+ - -2.380162581784584e-13
+ - 2.1091120386632078e-13
+ - -5.404070203482436e-13
+ - 5.590417451878382e-13
+ - 1.6347735882007997e-13
+- - 3.192464348714273
+ - -6.886270153847997
+ - 7.071295285470601
+ - -9.418135478389278
+ - 8.558588708716757
+ - -6.471841550845043
+ - -8.612359529770819
+ - 6.8792989343731294
+ - -5.051255257130356
+ - -0.7804648671317531
+ - 3.2048149729942104
+ - -6.74075004414442
+ - -2.7829643733945963
+ - 6.209394856823793
+ - -8.602809596790673
+ - 9.242310412231168
+ - -8.892321675768242
+ - 8.499796633733109
+ - 7.71295263492197
+ - -10.404507791454334
+ - 8.978919591255504
+ - -5.485420060525214
+ - 2.0790534659567723
+ - 1.4083416253458743
+ - -3.206496706735576
+ - -1.4892675769312598
+ - 3.746325422708747
+ - -8.106724283489243
+ - 8.645773929997116
+ - -8.211604231964879
+ - -8.210042781360444
+ - 8.645292887197972
+ - -9.029437757437503
+ - 1.4266160536666228
+ - 1.3102340931887304
+ - -5.8303371169475335
+ - -1.103668570765007
+ - 5.00335162430171
+ - -8.04228021892732
+ - 10.386075570881133
+ - -11.076861775763872
+ - 7.23774621977
+ - 9.324970050288055
+ - -9.530827020697577
+ - 6.387223267744218
+ - -0.2860914083631373
+ - -3.8152185746973872
+ - 6.457387204033791
+ - -3.1128460811595537e-13
+ - -2.4267493938835705e-13
+ - -2.8163845496205486e-13
+ - -9.952637130238029e-14
+ - -7.072725109573408e-14
+ - 2.8248548790930916e-13
+ - 1.2281977735187355e-13
+ - 1.7364175418713157e-13
+ - 1.223962608782464e-13
+ - -1.9142944607947188e-13
+ - -2.0117032497289633e-13
+ - 2.3505164286306834e-13
+ - -1.105377996166862e-13
+ - -1.223962608782464e-13
+ - -2.769797737521562e-13
+ - -6.945670167485263e-14
+ - -3.7523559563365505e-13
+ - 1.0842021724855044e-13
+ - -3.0112021274890377e-13
+ - -1.2959604092990795e-13
+ - -4.1589317710186147e-13
+ - 2.405573570202213e-13
+ - -1.8507669897506462e-13
+ - -8.004461351553138e-14
+ - 2.532628512290358e-13
+ - 4.446922973085077e-14
+ - 6.945670167485263e-14
+ - 9.994988777600744e-14
+ - -3.006966962752766e-13
+ - 2.7825032317303766e-13
+ - 6.776263578034403e-15
+ - 3.646476837929763e-13
+ - -2.0540548970916783e-13
+ - 2.1599340154984659e-13
+ - -1.5670109524204556e-13
+ - -1.4907779871675686e-13
+ - -3.21449003483007e-13
+ - 9.613823951336309e-14
+ - 2.6385076306971456e-13
+ - 5.653944922922455e-13
+ - 3.536362554786704e-13
+ - 1.4823076576950256e-13
+ - -1.3467823861343375e-13
+ - -3.959879028413854e-13
+ - 4.785736151986797e-13
+ - -2.3674570875757694e-13
+ - -3.8963515573697816e-14
+ - 1.249373597200093e-13
+ - -1.198551620364835e-13
+ - 2.1472285212896514e-13
+ - 1.401839527705867e-13
+ - -1.4230153513872246e-13
+ - -3.4982460721602604e-13
+ - 5.209252625613947e-13
+ - -5.073727354053259e-13
+ - -5.573476792933296e-13
+ - -9.740878893424454e-14
+ - 2.0498197323554068e-13
+ - -2.0667603913004928e-13
+ - -1.6178329292557136e-13
+ - 1.41030985717841e-13
+ - -3.2356658585114273e-13
+ - 2.8502658675107206e-13
+ - 1.0037340424963459e-13
+- - 3.3265979517865936
+ - -0.4651862660046089
+ - -1.859625148697342
+ - 6.264317320935712
+ - -7.747945801731722
+ - 7.460752542366443
+ - 6.861156295132164
+ - -8.21831691842916
+ - 7.4469517696175025
+ - -4.147929665551653
+ - 1.7574324879781573
+ - 1.815447615472514
+ - -2.1859400789214334
+ - -1.2802805278862626
+ - 3.7717898254311804
+ - -7.177214738998104
+ - 7.985553563154126
+ - -5.686249931756702
+ - -2.813055892584725
+ - 6.013848837927431
+ - -7.1032520713715135
+ - 7.3624501447455115
+ - -6.471376824906777
+ - 3.4996838133024673
+ - 6.190254335139774
+ - -4.391234534065174
+ - 1.9900173601422724
+ - 2.8844258605809947
+ - -5.15628077778541
+ - 6.552394167966921
+ - 4.126058367245425
+ - -6.966393675046652
+ - 8.554206175518123
+ - -5.073676850288298
+ - 3.1259746501652232
+ - 0.36353429160704565
+ - -3.3276043015386376
+ - 0.2418758914988792
+ - 2.2989655752199756
+ - -6.310533868663672
+ - 7.754338512196046
+ - -7.22091117918998
+ - -6.555755952923125
+ - 8.247301452039228
+ - -7.680053407808396
+ - 4.540620153291612
+ - -3.1386660491987284
+ - 0.4841788284389632
+ - 3.9810548520952116e-14
+ - 1.300195574035351e-13
+ - 1.2790197503539935e-13
+ - -1.9481757786848908e-14
+ - 2.583450489125616e-14
+ - -1.5246593050577406e-14
+ - -7.707999820014133e-14
+ - 4.658681209898652e-14
+ - -6.860966872759833e-14
+ - 1.5712461171567271e-13
+ - -2.117582368135751e-15
+ - -2.346281263894412e-13
+ - 1.8465318250143747e-13
+ - 2.9942614685439517e-13
+ - 2.3759274170483125e-13
+ - 8.470329472543003e-16
+ - 5.382894379801079e-13
+ - -2.430984558619842e-13
+ - 4.264810889425402e-13
+ - -1.3976043629695956e-14
+ - 1.8550021544869177e-13
+ - -2.6385076306971456e-13
+ - 2.5029823591364575e-13
+ - 6.3527471044072525e-15
+ - -3.2610768469290563e-13
+ - 2.1175823681357508e-13
+ - 2.964615315390051e-15
+ - -1.2705494208814505e-14
+ - 1.0884373372217759e-13
+ - -2.363221922839498e-13
+ - 8.766791004082009e-14
+ - -3.7777669447541795e-13
+ - 9.994988777600744e-14
+ - -2.2065208275974524e-13
+ - 7.496241583200558e-14
+ - 7.199780051661553e-14
+ - 2.4818065354551e-13
+ - 1.0164395367051604e-14
+ - -9.740878893424454e-15
+ - -2.702035101741218e-13
+ - -1.6432439176733427e-13
+ - -2.625802136488331e-14
+ - -1.2705494208814505e-14
+ - 3.121316410632097e-13
+ - -2.558039500707987e-13
+ - 7.453889935837843e-14
+ - -1.9778219318387913e-13
+ - 4.277516383634217e-14
+ - 1.9269999550035333e-13
+ - -2.0964065444543933e-13
+ - -9.613823951336309e-14
+ - 1.6008922703106276e-13
+ - 1.2620790914089075e-13
+ - -3.282252670610414e-13
+ - 2.727446090158847e-13
+ - 3.3881317890172014e-13
+ - 2.0328790734103208e-14
+ - -2.6300373012246026e-13
+ - -1.4823076576950256e-14
+ - -1.6940658945086007e-15
+ - 3.3881317890172014e-15
+ - 2.9688504801263227e-13
+ - -4.9932592240641e-13
+ - -2.286988957586611e-14
+- - 3.484336549558461
+ - 1.4668853309756336
+ - -4.958158598898086
+ - 11.809770500228055
+ - -13.78999053842268
+ - 12.449741435223439
+ - 12.35669021475777
+ - -13.862954988875373
+ - 11.943873317535619
+ - -5.421413322724338
+ - 1.0774419134494
+ - 4.795407101888502
+ - -2.0441979092018654
+ - -4.114935298131382
+ - 8.112044102351481
+ - -12.994774119403253
+ - 13.747123672466572
+ - -10.541838624057574
+ - -6.480266434246295
+ - 11.555102737709333
+ - -12.802182792734005
+ - 11.976474921708592
+ - -9.831019381091666
+ - 4.330449259008061
+ - 9.594408012650547
+ - -5.761175437992433
+ - 1.459832806004221
+ - 6.722831499408428
+ - -10.26174326280735
+ - 11.79545395746787
+ - 8.46501818050937
+ - -12.74638493479156
+ - 14.819662375183603
+ - -7.443740609102435
+ - 3.601267547740479
+ - 2.492038076847351
+ - -4.183061433169262
+ - -1.6143357877384064
+ - 5.898543849670339
+ - -12.193379166863975
+ - 14.172296008807415
+ - -12.36712836155124
+ - -12.165848779579502
+ - 14.321757309821313
+ - -12.709531935717857
+ - 6.330823841476056
+ - -3.247932133989297
+ - -1.5283545220944417
+ - 1.5415999640028266e-13
+ - 2.541098841762901e-13
+ - 2.761327408049019e-13
+ - 4.235164736271502e-15
+ - 5.421010862427522e-14
+ - -1.0164395367051604e-13
+ - -1.4653669987499396e-13
+ - 6.776263578034403e-15
+ - -1.2959604092990795e-13
+ - 2.930733997499879e-13
+ - 6.776263578034403e-14
+ - -4.0572878173480986e-13
+ - 3.091670257478196e-13
+ - 4.463863632030163e-13
+ - 4.2266944067989587e-13
+ - 1.2705494208814505e-14
+ - 8.859964628279982e-13
+ - -3.7862372742267225e-13
+ - 6.886377861177462e-13
+ - 3.3881317890172014e-15
+ - 3.8794108984246956e-13
+ - -4.489274620447792e-13
+ - 3.8963515573697816e-13
+ - 5.844527336054672e-14
+ - -5.200782296141404e-13
+ - 2.73591641963139e-13
+ - -1.1858461261560205e-14
+ - -5.336307567702092e-14
+ - 2.346281263894412e-13
+ - -4.0826988057657276e-13
+ - 1.2959604092990795e-13
+ - -6.293454798099452e-13
+ - 1.8888834723770898e-13
+ - -3.5575383784680614e-13
+ - 1.6008922703106276e-13
+ - 1.4738373282224826e-13
+ - 4.421511984667448e-13
+ - -1.5246593050577406e-14
+ - -9.232659125071874e-14
+ - -5.742883382384156e-13
+ - -3.3796614595446584e-13
+ - -8.385626177817573e-14
+ - 5.251604272976662e-14
+ - 5.768294370801785e-13
+ - -5.022905377218001e-13
+ - 1.9397054492123478e-13
+ - -2.761327408049019e-13
+ - 5.929230630780102e-15
+ - 3.023907621697852e-13
+ - -3.7777669447541795e-13
+ - -1.8041801776516597e-13
+ - 2.761327408049019e-13
+ - 2.659683454378503e-13
+ - -6.081696561285876e-13
+ - 5.344777897174635e-13
+ - 6.606856988583543e-13
+ - 6.268043809681823e-14
+ - -4.37069000783219e-13
+ - 1.9481757786848908e-14
+ - 4.743384504624082e-14
+ - -3.8963515573697816e-14
+ - 5.277015261394291e-13
+ - -7.707999820014133e-13
+ - -5.929230630780102e-14
+- - -4.201499105577355
+ - 8.540965701710949
+ - -9.903586094299133
+ - 13.449471417516012
+ - -13.31044257008698
+ - 9.442632545113636
+ - 12.37730393965025
+ - -11.008120595321392
+ - 7.45998803640787
+ - 0.8562123825102562
+ - -5.3263745679007855
+ - 9.485304979337045
+ - 3.759609573127408
+ - -9.673077823870713
+ - 12.17335326745365
+ - -13.2277865150695
+ - 11.823001106898134
+ - -6.4718786039842655
+ - -10.82994279631857
+ - 13.797090959852964
+ - -12.852651125406236
+ - 8.0596377854592
+ - -4.251606253919315
+ - -1.714258034644977
+ - 4.8421100114115765
+ - 0.8179071801077274
+ - -5.055329040291253
+ - 11.42279986800199
+ - -13.271951301031736
+ - 11.799277134057599
+ - 11.65227214242115
+ - -13.3818059465189
+ - 13.045858202633898
+ - -2.259042402683095
+ - -2.6169003879888377
+ - 8.133812912844604
+ - 1.3632132400949115
+ - -7.907014161791557
+ - 11.303186402646785
+ - -14.755384734214122
+ - 14.831178267996178
+ - -10.431768880247294
+ - -13.288227199212672
+ - 12.715358864243711
+ - -9.288128656150985
+ - 0.675108631186041
+ - 4.125186065308154
+ - -8.896073226404694
+ - 3.8624702394796095e-13
+ - 3.4643647542700884e-13
+ - 3.9387032047324966e-13
+ - 1.4230153513872246e-13
+ - 6.268043809681823e-14
+ - -3.125551575368368e-13
+ - -1.7872395187065737e-13
+ - -2.236166980751353e-13
+ - -1.6220680939919851e-13
+ - 3.066259269060567e-13
+ - 2.685094442796132e-13
+ - -3.5321273900504324e-13
+ - 2.244637310223896e-13
+ - 1.7194768829262297e-13
+ - 4.171637265227429e-13
+ - 5.759824041329242e-14
+ - 6.318865786517081e-13
+ - -1.7237120476625012e-13
+ - 4.446922973085077e-13
+ - 7.242131699024268e-14
+ - 5.658180087658726e-13
+ - -3.341544976918215e-13
+ - 1.8126505071242027e-13
+ - 2.1133472033994793e-13
+ - -3.46859991900636e-13
+ - -4.319868030996932e-14
+ - -6.988021814847978e-14
+ - -1.435720845596039e-13
+ - 3.6337713437209485e-13
+ - -3.5236570605778894e-13
+ - 3.5151867311053464e-14
+ - -4.785736151986797e-13
+ - 2.3166351107405114e-13
+ - -2.515687853345272e-13
+ - 2.3928680759933985e-13
+ - 1.9820570965750628e-13
+ - 4.1589317710186147e-13
+ - -1.6093625997831706e-13
+ - -3.1763735522036263e-13
+ - -8.411037166235202e-13
+ - -4.480804290975249e-13
+ - -2.1726395097072804e-13
+ - 2.947674656444965e-13
+ - 6.433215234396411e-13
+ - -6.479802046495398e-13
+ - 3.4135427774348304e-13
+ - -2.202285662861181e-14
+ - -2.0709955560367643e-13
+ - 1.7448878713438587e-13
+ - -3.6676526616111205e-13
+ - -1.8295911660692887e-13
+ - 2.490276864927643e-13
+ - 4.078463641029456e-13
+ - -6.85249654328729e-13
+ - 6.742382260144231e-13
+ - 8.173867941003998e-13
+ - 1.3213713977167085e-13
+ - -3.4558944247975454e-13
+ - 1.9947625907838773e-13
+ - 1.9862922613113343e-13
+ - -1.6135977645194421e-13
+ - 5.086432848262074e-13
+ - -3.824353756853166e-13
+ - -1.0460856898590609e-13
+- - -3.7249704969715896
+ - 6.025047551917105
+ - -6.396841623339727
+ - 7.7685399232783645
+ - -7.307798597567263
+ - 4.701658547008308
+ - 6.879907995283498
+ - -5.598914878653263
+ - 3.3329663828693774
+ - 1.6116738441680734
+ - -4.11789383858394
+ - 6.118225586791526
+ - 3.138905511493917
+ - -6.379658818878187
+ - 7.497813336204924
+ - -7.390827384607557
+ - 6.220046818750885
+ - -2.8589294297182373
+ - -5.896784364834572
+ - 8.070651989851001
+ - -7.149388509301139
+ - 3.768713961828684
+ - -1.3523082022531165
+ - -2.0462096817605055
+ - 1.8300389748691357
+ - 1.64494781057331
+ - -3.987466713810539
+ - 7.196418040049929
+ - -7.917925710776893
+ - 6.555748316536336
+ - 7.050157915374406
+ - -7.549210572945746
+ - 6.926601294252302
+ - -0.3167751352086454
+ - -2.579057574460064
+ - 5.539660745332369
+ - 1.7609905315358783
+ - -5.531449509408434
+ - 7.257485887586206
+ - -8.660938146617214
+ - 8.358655477152665
+ - -5.445115928063697
+ - -7.585345916795817
+ - 6.7732895234129735
+ - -4.5408532135081145
+ - -0.6484109155528538
+ - 3.6259873685953377
+ - -6.275461619281389
+ - 2.590862027414091e-13
+ - 2.0964065444543933e-13
+ - 2.4013384054659415e-13
+ - 1.0471444810431288e-13
+ - 3.6422416731934915e-14
+ - -2.132405444712701e-13
+ - -1.053497228147536e-13
+ - -1.658066994250293e-13
+ - -9.43382945004477e-14
+ - 1.7237120476625012e-13
+ - 1.8645312751435286e-13
+ - -1.851825780934714e-13
+ - 1.0884373372217759e-13
+ - 4.521038355969828e-14
+ - 2.318752693108647e-13
+ - 4.0657581468206416e-14
+ - 3.060965313140228e-13
+ - -5.982170189983496e-14
+ - 2.0201735792015063e-13
+ - 5.304543832180056e-14
+ - 3.466482336638224e-13
+ - -1.666537323722836e-13
+ - 6.405686663610646e-14
+ - 1.4314856808597676e-13
+ - -1.6104213909672385e-13
+ - -8.173867941003998e-14
+ - -4.955142741437657e-14
+ - -9.338538243478661e-14
+ - 2.2562840132486425e-13
+ - -1.8581785280391214e-13
+ - 1.6940658945086007e-15
+ - -2.41192631730662e-13
+ - 1.359487880343152e-13
+ - -1.2006692027329707e-13
+ - 1.4748961194065505e-13
+ - 1.1826697526038168e-13
+ - 2.2636955515371177e-13
+ - -1.1487884347136448e-13
+ - -2.149346103657787e-13
+ - -5.144666363385807e-13
+ - -2.6829768604279963e-13
+ - -1.4727785370384147e-13
+ - 2.057231270643882e-13
+ - 3.686710902924342e-13
+ - -3.850823536454863e-13
+ - 2.1451109389215156e-13
+ - 3.441071348220595e-14
+ - -1.5352472168984194e-13
+ - 7.443302023997164e-14
+ - -2.0244087439377778e-13
+ - -1.0270274485458392e-13
+ - 1.3499587596865412e-13
+ - 2.5220406004496793e-13
+ - -3.9461147430209717e-13
+ - 4.0075246316969085e-13
+ - 4.830205381717648e-13
+ - 8.491505296224361e-14
+ - -1.741711497791655e-13
+ - 1.4261917249394282e-13
+ - 1.3668994186316272e-13
+ - -1.096907666694319e-13
+ - 2.78567960528258e-13
+ - -1.4399560103323106e-13
+ - -6.596269076742864e-14
+- - -2.697048806847691
+ - -1.7155453565324057
+ - 3.5958565837858347
+ - -8.70869974204147
+ - 9.47158763414816
+ - -9.259566461941883
+ - -9.135244507142863
+ - 9.56909155107678
+ - -8.920112453282536
+ - 4.144498611094329
+ - -1.6711508578291947
+ - -3.4469445125606533
+ - 1.6412269042865486
+ - 2.1916022646412285
+ - -5.923666414772871
+ - 9.636480934525345
+ - -10.976513333940689
+ - 7.905679044094085
+ - 9.00740646165548
+ - -9.282589623123616
+ - 9.501243032985546
+ - -8.93218312438231
+ - 6.626938398980385
+ - -3.2926133306683827
+ - -7.172457502321056
+ - 3.627206723618743
+ - -1.1809970162738792
+ - -4.89053487114446
+ - 6.799307416781818
+ - -8.722709196455835
+ - -6.198813317416458
+ - 8.680336077577898
+ - -11.000191103154888
+ - 5.623856638636995
+ - -3.5372757369358196
+ - -1.7253565811889207
+ - 3.2216348735950393
+ - 0.3280731174727402
+ - -4.263727305009549
+ - 9.006621777223
+ - -11.251348557269624
+ - 9.224453966180942
+ - 9.019720716871396
+ - -11.403292921279405
+ - 9.498042844646356
+ - -4.785015508182157
+ - 1.7847451834499268
+ - 1.0243696852342656
+ - -1.3891340334970526e-13
+ - -2.0074680849926918e-13
+ - -1.9312351197398048e-13
+ - 1.3552527156068805e-14
+ - -6.013933925505532e-14
+ - 1.2790197503539935e-13
+ - 1.0079692072326174e-13
+ - -9.317362419797304e-15
+ - 1.0587911840678754e-13
+ - -1.9227647902672618e-13
+ - -5.166900978251232e-14
+ - 2.82061971435682e-13
+ - -1.8295911660692887e-13
+ - -3.5744790374131474e-13
+ - -3.006966962752766e-13
+ - -3.7269449679189215e-14
+ - -5.869938324472301e-13
+ - 2.812149384884277e-13
+ - -5.13301966036106e-13
+ - -6.860966872759833e-14
+ - -3.006966962752766e-13
+ - 3.3627208005995723e-13
+ - -3.6083603553033194e-13
+ - 3.8963515573697816e-14
+ - 4.1589317710186147e-13
+ - -2.0074680849926918e-13
+ - 2.710505431213761e-14
+ - 4.573977915173222e-14
+ - -2.219226321806267e-13
+ - 3.3711911300721153e-13
+ - -7.369186641112413e-14
+ - 5.082197683525802e-13
+ - -1.9397054492123478e-13
+ - 3.1848438816761693e-13
+ - -1.0757318430129614e-13
+ - -1.3044307387716225e-13
+ - -3.5744790374131474e-13
+ - 8.470329472543003e-15
+ - 1.1434944787933055e-13
+ - 3.9641141931501256e-13
+ - 2.90532300908225e-13
+ - 5.505714157152952e-14
+ - 4.0657581468206416e-14
+ - -3.6422416731934915e-13
+ - 3.9132922163148676e-13
+ - -1.3298417271892515e-13
+ - 1.5161889755851976e-13
+ - -2.625802136488331e-14
+ - -2.261577969168982e-13
+ - 2.371692252312041e-13
+ - 1.4484263398048536e-13
+ - -1.8380614955418317e-13
+ - -2.574980159653073e-13
+ - 5.014435047745458e-13
+ - -4.2012834183813297e-13
+ - -4.802676810931883e-13
+ - -4.319868030996932e-14
+ - 2.922263668027336e-13
+ - -7.369186641112413e-14
+ - -5.590417451878382e-14
+ - 4.658681209898652e-14
+ - -3.6761229910836635e-13
+ - 6.081696561285876e-13
+ - 7.707999820014133e-14
+- - -2.3293317006237215
+ - -4.446137468576366
+ - 6.818992843876179
+ - -13.987429055330809
+ - 14.619274256439985
+ - -13.711448536839942
+ - -14.257011788961048
+ - 14.191228898439494
+ - -12.821572469456866
+ - 4.933729315093267
+ - -1.0847101402487838
+ - -6.522430086000569
+ - 1.1442079380248458
+ - 4.735511762046603
+ - -10.233575613501309
+ - 15.092710227139083
+ - -16.69737917063818
+ - 11.34168201901005
+ - 13.780578310152805
+ - -14.897414144624657
+ - 14.837347287840194
+ - -12.978815275346728
+ - 8.935056415565258
+ - -3.659327653644687
+ - -10.028624722213708
+ - 4.01047755290224
+ - -0.25018220879150954
+ - -8.77808139853052
+ - 11.302609715289757
+ - -13.609425838009331
+ - -10.449245827006678
+ - 13.657207815249812
+ - -16.728857113953204
+ - 7.508869228561477
+ - -4.041610896177676
+ - -4.068995072483528
+ - 3.6729286214046986
+ - 2.007541544419797
+ - -7.972063697244307
+ - 14.679210320485373
+ - -17.757481853234086
+ - 13.920953535399535
+ - 14.348406157012432
+ - -17.44123291841925
+ - 13.984442034790737
+ - -6.083782599251147
+ - 0.9421537205206211
+ - 3.399313520803803
+ - -2.803679055411734e-13
+ - -3.3627208005995723e-13
+ - -3.2949581648192283e-13
+ - -1.5246593050577406e-14
+ - -9.994988777600744e-14
+ - 2.56650983018053e-13
+ - 1.6178329292557136e-13
+ - 4.404571325722362e-14
+ - 1.7364175418713157e-13
+ - -2.947674656444965e-13
+ - -1.2874900798265365e-13
+ - 4.2266944067989587e-13
+ - -2.65121312490596e-13
+ - -4.912791094074942e-13
+ - -4.701032857261367e-13
+ - -7.115076756936123e-14
+ - -8.402566836762659e-13
+ - 3.7947076036992655e-13
+ - -7.462360265310386e-13
+ - -1.3383120566617945e-13
+ - -5.175371307723775e-13
+ - 5.13301966036106e-13
+ - -5.183841637196318e-13
+ - 3.134021904840911e-14
+ - 6.073226231813333e-13
+ - -2.363221922839498e-13
+ - 6.098637220230962e-14
+ - 8.978549240895584e-14
+ - -3.7947076036992655e-13
+ - 5.149960319306146e-13
+ - -9.571472303973594e-14
+ - 7.538593230563273e-13
+ - -3.07472959853311e-13
+ - 4.734914175151539e-13
+ - -1.8465318250143747e-13
+ - -2.1514636860259229e-13
+ - -5.531125145570581e-13
+ - 4.489274620447792e-14
+ - 2.346281263894412e-13
+ - 6.759322919089317e-13
+ - 4.802676810931883e-13
+ - 1.1434944787933055e-13
+ - 1.5246593050577406e-14
+ - -5.802175688691957e-13
+ - 6.479802046495398e-13
+ - -2.405573570202213e-13
+ - 1.7533582008164017e-13
+ - 9.317362419797304e-15
+ - -3.1679032227310833e-13
+ - 3.6253010142484055e-13
+ - 2.270048298641525e-13
+ - -2.803679055411734e-13
+ - -4.37069000783219e-13
+ - 8.004461351553138e-13
+ - -6.894848190650005e-13
+ - -7.919758056827708e-13
+ - -8.555032767268433e-14
+ - 4.379160337304733e-13
+ - -1.7025362239811437e-13
+ - -1.2197274440461925e-13
+ - 1.1180834903756764e-13
+ - -5.64123942871364e-13
+ - 8.54656243779589e-13
+ - 1.2959604092990795e-13
+- - -0.3087940699289219
+ - -3.463288406719769
+ - 4.503851379966752
+ - -8.122681567401996
+ - 8.180227437058553
+ - -7.35733568020479
+ - -8.062633476713335
+ - 7.6268874485905656
+ - -6.660905755059184
+ - 1.9669447782564624
+ - 0.20382159928717908
+ - -4.301717342179534
+ - -0.11321379943464205
+ - 3.3835705040991826
+ - -6.3177352978735755
+ - 8.5639071749206
+ - -9.21030880363085
+ - 5.879413107767787
+ - 7.644639424304138
+ - -7.907409195145226
+ - 8.395727045125017
+ - -6.824080412739201
+ - 4.297941020332623
+ - -1.2758044504404198
+ - -5.046322470540916
+ - 1.3826174231221446
+ - 0.7130971387182501
+ - -5.57878199426357
+ - 6.762658548645998
+ - -7.694393965552186
+ - -6.325034671546937
+ - 7.782514074921891
+ - -9.225159970355119
+ - 3.566137635614038
+ - -1.4922473670294805
+ - -3.039451239567237
+ - 1.3502205905246816
+ - 1.9376088149455684
+ - -5.215351873041069
+ - 8.635585260368124
+ - -10.148430504997556
+ - 7.617608196169926
+ - 8.260073367684903
+ - -9.672709161055353
+ - 7.458508285056541
+ - -2.6980220594580597
+ - -0.4560515125403986
+ - 2.888370951741429
+ - -1.9015889665859043e-13
+ - -2.0371142381465923e-13
+ - -2.0201735792015063e-13
+ - -2.244637310223896e-14
+ - -5.759824041329242e-14
+ - 1.7787691892340307e-13
+ - 9.402065714522734e-14
+ - 6.098637220230962e-14
+ - 1.0079692072326174e-13
+ - -1.7448878713438587e-13
+ - -9.783230540787169e-14
+ - 2.286988957586611e-13
+ - -1.3383120566617945e-13
+ - -2.3928680759933985e-13
+ - -2.6300373012246026e-13
+ - -4.446922973085077e-14
+ - -4.3918658315135473e-13
+ - 1.9269999550035333e-13
+ - -3.7947076036992655e-13
+ - -8.724439356719293e-14
+ - -3.1043757516870107e-13
+ - 2.7825032317303766e-13
+ - -2.718975760686304e-13
+ - 8.470329472543003e-16
+ - 3.163668057994812e-13
+ - -9.910285482875314e-14
+ - 4.573977915173222e-14
+ - 6.479802046495398e-14
+ - -2.295459287059154e-13
+ - 2.896852679609707e-13
+ - -4.1081097941833566e-14
+ - 4.112344958919628e-13
+ - -1.8295911660692887e-13
+ - 2.558039500707987e-13
+ - -1.1096131609031334e-13
+ - -1.291725244562808e-13
+ - -3.163668057994812e-13
+ - 4.0234064994579266e-14
+ - 1.5924219408380846e-13
+ - 4.205518583117601e-13
+ - 2.854501032246992e-13
+ - 8.639736061993863e-14
+ - -1.6093625997831706e-14
+ - -3.434718601116188e-13
+ - 3.832824086325709e-13
+ - -1.4992483166401116e-13
+ - 6.522153693858113e-14
+ - 3.261076846929056e-14
+ - -1.5881867761018131e-13
+ - 2.0117032497289633e-13
+ - 1.2874900798265365e-13
+ - -1.5797164466292701e-13
+ - -2.634272465960874e-13
+ - 4.612094397799665e-13
+ - -4.120815288392171e-13
+ - -4.743384504624082e-13
+ - -5.293955920339377e-14
+ - 2.430984558619842e-13
+ - -1.257843926672636e-13
+ - -8.385626177817573e-14
+ - 8.343274530454858e-14
+ - -3.1763735522036263e-13
+ - 4.3537493488871037e-13
+ - 7.707999820014133e-14
+- - 6.717843925041759
+ - -2.632145606432502
+ - -1.1660487347503268
+ - 8.136149378177183
+ - -10.777482407488764
+ - 11.079608302888554
+ - 9.408756267325206
+ - -12.08825984148048
+ - 11.47422129522138
+ - -7.449706461736301
+ - 4.193065346502394
+ - 1.1775454700748262
+ - -4.624802528199791
+ - -0.2118827349164438
+ - 4.037805758172666
+ - -9.782400744477052
+ - 11.483808291123278
+ - -10.186227366016382
+ - -9.818095801796826
+ - 11.756089069270125
+ - -9.731985328714991
+ - 11.199459004345211
+ - -10.45457877623761
+ - 6.495633846075054
+ - 9.825282715471776
+ - -7.880484601693148
+ - 4.555894952374488
+ - 2.6412193829026513
+ - -6.243787404674052
+ - 8.989758183902527
+ - 4.7687825551018115
+ - -9.392742240114064
+ - 12.2343413213743
+ - -8.413753843179116
+ - 6.018848129736891
+ - -1.0813140432648134
+ - -6.119135475690677
+ - 2.0824780810913293
+ - 1.6405613039136293
+ - -7.940708494140559
+ - 10.442876398631036
+ - -10.449559107737823
+ - -8.680340109449642
+ - 11.753840332577731
+ - -11.495946760868524
+ - 7.814658244729579
+ - -6.384179009281292
+ - 2.728665044416092
+ - 4.235164736271502e-15
+ - 1.3383120566617945e-13
+ - 1.5077186461126546e-13
+ - -6.522153693858113e-14
+ - 3.3881317890172014e-14
+ - 4.573977915173222e-14
+ - -9.486769009248164e-14
+ - 1.3806637040245096e-13
+ - -8.470329472543003e-14
+ - 1.8465318250143747e-13
+ - -5.251604272976662e-14
+ - -3.2441361879839703e-13
+ - 2.99002630380768e-13
+ - 4.785736151986797e-13
+ - 3.2949581648192283e-13
+ - -1.4399560103323106e-14
+ - 7.843525091574821e-13
+ - -3.7862372742267225e-13
+ - 7.089665768518494e-13
+ - -4.658681209898652e-14
+ - 2.261577969168982e-13
+ - -3.9048218868423246e-13
+ - 3.9048218868423246e-13
+ - -4.319868030996932e-14
+ - -5.065257024580716e-13
+ - 3.4728350837426314e-13
+ - 2.964615315390051e-14
+ - 1.8634724839594607e-14
+ - 1.2027867851011065e-13
+ - -3.1509625637859973e-13
+ - 1.7618285302889447e-13
+ - -5.421010862427522e-13
+ - 1.1434944787933055e-13
+ - -3.2695471764015993e-13
+ - 8.555032767268433e-14
+ - 9.402065714522734e-14
+ - 3.3881317890172014e-13
+ - 6.098637220230962e-14
+ - 2.879912020664621e-14
+ - -2.625802136488331e-13
+ - -1.9142944607947188e-13
+ - 9.317362419797304e-15
+ - -8.470329472543003e-14
+ - 3.8031779331718085e-13
+ - -3.1763735522036263e-13
+ - 6.945670167485263e-14
+ - -3.4220131069073734e-13
+ - 1.0587911840678754e-13
+ - 2.913793338554793e-13
+ - -2.896852679609707e-13
+ - -1.2790197503539935e-13
+ - 2.261577969168982e-13
+ - 1.4907779871675686e-13
+ - -4.3113977015243887e-13
+ - 3.2864878353466853e-13
+ - 4.1335207826009857e-13
+ - 7.623296525288703e-15
+ - -3.7269449679189215e-13
+ - -9.656175598699024e-14
+ - -3.218725199566341e-14
+ - 4.743384504624082e-14
+ - 4.0234064994579266e-13
+ - -7.919758056827708e-13
+ - -3.5575383784680614e-14
+- - 4.828374969857499
+ - -0.9213044546733957
+ - -2.3307351182864164
+ - 8.450110964416305
+ - -10.558302490004484
+ - 10.261655984810428
+ - 9.325991832199387
+ - -11.292316039478248
+ - 10.301645194398716
+ - -5.888386520507742
+ - 2.63690392887287
+ - 2.2811738302138793
+ - -3.202433591683288
+ - -1.5260595855358474
+ - 4.965468927289506
+ - -9.74685524800177
+ - 10.924571292894457
+ - -9.124226463578605
+ - -9.460129883622846
+ - 10.67703386147462
+ - -9.096797281212469
+ - 10.164206564111328
+ - -9.026213440355933
+ - 4.998294528372943
+ - 8.604173017712009
+ - -6.238444709512165
+ - 2.96482601630117
+ - 3.7337265353883127
+ - -6.896285586447421
+ - 8.906920587728603
+ - 5.481880141599017
+ - -9.451471831737267
+ - 11.698830751600601
+ - -7.103243089450402
+ - 4.48982331125653
+ - 0.2695922208052328
+ - -4.744077979243526
+ - 0.5723502570652411
+ - 2.9098475134158046
+ - -8.475905635865397
+ - 10.507310358797396
+ - -9.892505333980225
+ - -8.866525669761115
+ - 11.267653865281074
+ - -10.575900540608954
+ - 6.3976183310652655
+ - -4.567363668599273
+ - 0.9519108900384592
+ - 6.098637220230962e-14
+ - 1.5500702934753696e-13
+ - 1.6771252355635147e-13
+ - -3.9810548520952116e-14
+ - 4.404571325722362e-14
+ - -9.317362419797304e-15
+ - -9.994988777600744e-14
+ - 7.707999820014133e-14
+ - -9.232659125071874e-14
+ - 2.0244087439377778e-13
+ - -6.776263578034403e-15
+ - -3.1679032227310833e-13
+ - 2.702035101741218e-13
+ - 4.1843427594362437e-13
+ - 3.3034284942917713e-13
+ - -1.6940658945086007e-15
+ - 7.225191040079182e-13
+ - -3.3373098121819433e-13
+ - 6.369687763352339e-13
+ - -1.7787691892340307e-14
+ - 2.625802136488331e-13
+ - -3.7692966152816365e-13
+ - 3.3373098121819433e-13
+ - 1.6940658945086007e-15
+ - -4.590918574118308e-13
+ - 2.871441691192078e-13
+ - 1.2705494208814505e-14
+ - 8.470329472543003e-16
+ - 1.4314856808597676e-13
+ - -3.066259269060567e-13
+ - 1.4823076576950256e-13
+ - -5.107608671943431e-13
+ - 1.2112571145736495e-13
+ - -2.888382350137164e-13
+ - 1.0079692072326174e-13
+ - 8.978549240895584e-14
+ - 3.3034284942917713e-13
+ - 3.3881317890172014e-14
+ - -2.371692252312041e-14
+ - -3.3627208005995723e-13
+ - -2.1260526976082939e-13
+ - -2.541098841762901e-14
+ - -3.049318610115481e-14
+ - 3.9895251815677546e-13
+ - -3.5490680489955184e-13
+ - 1.0249098661777034e-13
+ - -2.795208725939191e-13
+ - 6.183340514956392e-14
+ - 2.56650983018053e-13
+ - -2.812149384884277e-13
+ - -1.4568966692773966e-13
+ - 2.320870275476783e-13
+ - 1.7194768829262297e-13
+ - -4.438452643612534e-13
+ - 3.5914196963582334e-13
+ - 4.531626267810507e-13
+ - 2.117582368135751e-14
+ - -3.6337713437209485e-13
+ - -5.082197683525802e-14
+ - -8.470329472543003e-15
+ - 1.7787691892340307e-14
+ - 3.9641141931501256e-13
+ - -6.844026213814747e-13
+ - -2.964615315390051e-14
+- - -10.828208135000768
+ - 8.49726489081324
+ - -4.663985414460119
+ - -1.7061420321183904
+ - 5.044081410081932
+ - -7.7834003492712345
+ - -3.927455956998581
+ - 8.069106967614157
+ - -9.487505486687194
+ - 9.666940281216052
+ - -8.410457374598398
+ - 4.391961175117482
+ - 7.987553663530838
+ - -5.6807716460807525
+ - 2.5369173087001755
+ - 3.8620150448647372
+ - -6.80232962816972
+ - 8.51478956109898
+ - 5.288966258283077
+ - -9.184268248902526
+ - 10.136241939684204
+ - -8.781408085343177
+ - 10.222578124815074
+ - -9.025001362177271
+ - -9.07554581173375
+ - 10.184056261923967
+ - -8.700997537087176
+ - 3.7886767621283512
+ - -0.4948354599847384
+ - -3.7690334388262112
+ - 1.3193632645432858
+ - 3.3011533333777834
+ - -6.982716245226727
+ - 8.93268382837911
+ - -8.98321772128852
+ - 6.331778053526286
+ - 8.346297249470664
+ - -7.4090314469724765
+ - 4.9427540012211395
+ - 0.662241029314388
+ - -3.673906862121513
+ - 6.400966448608956
+ - 2.472458352527079
+ - -6.5843953024708535
+ - 8.388692679344313
+ - -9.172713108527978
+ - 10.38334229819666
+ - -8.822735530131501
+ - 2.710505431213761e-13
+ - 4.0657581468206416e-14
+ - 3.7269449679189215e-14
+ - 9.740878893424454e-14
+ - 2.0328790734103208e-14
+ - -2.752857078576476e-13
+ - 3.3881317890172014e-14
+ - -3.3373098121819433e-13
+ - 3.5575383784680614e-14
+ - -1.4399560103323106e-14
+ - 2.253107639696439e-13
+ - 1.6263032587282567e-13
+ - -2.219226321806267e-13
+ - -4.751854834096625e-13
+ - -1.1180834903756764e-13
+ - 6.945670167485263e-14
+ - -5.454892180317694e-13
+ - 3.3203691532368573e-13
+ - -5.852997665527215e-13
+ - 1.3383120566617945e-13
+ - 8.555032767268433e-14
+ - 2.0837010502455788e-13
+ - -3.9471735342050396e-13
+ - 2.1260526976082939e-13
+ - 4.0826988057657276e-13
+ - -4.1589317710186147e-13
+ - -1.2790197503539935e-13
+ - -9.571472303973594e-14
+ - 5.336307567702092e-14
+ - 1.4907779871675686e-13
+ - -1.9142944607947188e-13
+ - 3.117081245895825e-13
+ - -1.5246593050577406e-14
+ - 2.642742795433417e-13
+ - 6.776263578034403e-15
+ - -4.828087799349512e-14
+ - -1.8634724839594607e-13
+ - -1.5754812818929986e-13
+ - -2.295459287059154e-13
+ - -2.1514636860259229e-13
+ - -3.049318610115481e-14
+ - -1.3976043629695956e-13
+ - 2.837560373301906e-13
+ - -1.9481757786848908e-14
+ - -6.098637220230962e-14
+ - 1.0757318430129614e-13
+ - 4.1250504531284427e-13
+ - -2.261577969168982e-13
+ - -2.354751593366955e-13
+ - 1.3976043629695956e-13
+ - 1.9481757786848908e-14
+ - -7.792703114739563e-14
+ - 5.929230630780102e-14
+ - 1.2536087619363645e-13
+ - 4.997494388800372e-14
+ - 3.134021904840911e-14
+ - 6.776263578034403e-14
+ - 2.0667603913004928e-13
+ - 2.346281263894412e-13
+ - 1.0842021724855044e-13
+ - -1.8126505071242027e-13
+ - -1.9905274260476058e-13
+ - 7.733410808431762e-13
+ - 5.929230630780102e-15
+- - -10.979295423362514
+ - 8.01372778617267
+ - -3.8030593708484615
+ - -3.3443775286162456
+ - 6.859009698492748
+ - -9.31781812597918
+ - -5.572620641761624
+ - 9.79714821216632
+ - -10.89455636356201
+ - 10.13310107894674
+ - -8.294057330357298
+ - 3.5631129620217323
+ - 8.023573384848538
+ - -4.907797009897012
+ - 1.2922702017679728
+ - 5.60075694152375
+ - -8.55410105325156
+ - 9.75212789512722
+ - 6.853825528103267
+ - -10.694302591843053
+ - 11.238642984645066
+ - -9.446403583877379
+ - 11.303271705338327
+ - -9.355422719465798
+ - -10.159020271290364
+ - 10.682506895365046
+ - -8.630290590150485
+ - 2.702917183778445
+ - 0.9925020901446927
+ - -5.338832387235979
+ - 0.06329235517161587
+ - 5.022550679227253
+ - -8.88266825913397
+ - 9.712409351756275
+ - -9.21022048672194
+ - 5.770733889978581
+ - 8.677415717152176
+ - -6.938945447621991
+ - 3.938030413881361
+ - 2.389058422723865
+ - -5.587307366603624
+ - 7.968015036213273
+ - 4.137072476104648
+ - -8.425561882414636
+ - 9.940866236417865
+ - -9.785164732278654
+ - 10.515060870202639
+ - -8.319704005180208
+ - 2.422514229147299e-13
+ - 2.541098841762901e-15
+ - -2.541098841762901e-15
+ - 9.825582188149884e-14
+ - 1.1858461261560205e-14
+ - -2.490276864927643e-13
+ - 5.844527336054672e-14
+ - -3.2780175058741423e-13
+ - 4.658681209898652e-14
+ - -6.098637220230962e-14
+ - 2.1175823681357508e-13
+ - 2.219226321806267e-13
+ - -2.583450489125616e-13
+ - -5.277015261394291e-13
+ - -1.7110065534536867e-13
+ - 6.183340514956392e-14
+ - -6.488272375967941e-13
+ - 3.7692966152816365e-13
+ - -6.708500942254059e-13
+ - 1.2705494208814505e-13
+ - 2.541098841762901e-14
+ - 2.761327408049019e-13
+ - -4.3537493488871037e-13
+ - 1.9651164376299768e-13
+ - 4.667151539371195e-13
+ - -4.472333961502706e-13
+ - -1.2451384324638215e-13
+ - -8.809142651444724e-14
+ - 1.3552527156068805e-14
+ - 2.0498197323554068e-13
+ - -2.0921713797181218e-13
+ - 4.0064658405128406e-13
+ - -4.235164736271502e-14
+ - 3.006966962752766e-13
+ - -1.6093625997831706e-14
+ - -5.929230630780102e-14
+ - -2.464865876510014e-13
+ - -1.5500702934753696e-13
+ - -2.0244087439377778e-13
+ - -1.2281977735187355e-13
+ - 1.0164395367051604e-14
+ - -1.3129010682441655e-13
+ - 2.642742795433417e-13
+ - -1.0418505251227894e-13
+ - 1.9481757786848908e-14
+ - 7.538593230563273e-14
+ - 4.404571325722362e-13
+ - -2.1514636860259229e-13
+ - -2.710505431213761e-13
+ - 1.8888834723770898e-13
+ - 4.743384504624082e-14
+ - -1.1858461261560205e-13
+ - 2.0328790734103208e-14
+ - 2.0667603913004928e-13
+ - -3.9810548520952116e-14
+ - -6.522153693858113e-14
+ - 5.590417451878382e-14
+ - 2.668153783851046e-13
+ - 2.253107639696439e-13
+ - 1.0503208545953324e-13
+ - -1.7194768829262297e-13
+ - -2.710505431213761e-13
+ - 8.588914085158605e-13
+ - 9.317362419797304e-15
+- - 9.932056354547129
+ - -9.833887647038527
+ - 6.2819769157517555
+ - -1.9181677075807881
+ - -1.5972105238522984
+ - 4.058117273465421
+ - 0.17447301029612602
+ - -4.64397975495997
+ - 5.935682733573532
+ - -8.115367195244566
+ - 7.444848225800237
+ - -5.922548354742418
+ - -7.450569650586278
+ - 6.284785437516857
+ - -5.076227488624968
+ - 0.12203655911418049
+ - 1.8857899051497098
+ - -5.351396456119759
+ - -1.5950776682268377
+ - 4.659199229311348
+ - -7.182467809192533
+ - 8.601512913803537
+ - -8.08346493655056
+ - 7.841453582277234
+ - 6.257741746340146
+ - -9.308508573534063
+ - 8.3958457227918
+ - -5.92356016559658
+ - 2.934956000775034
+ - 0.1847103508905431
+ - -3.947868892623541
+ - -0.14984727528589428
+ - 2.50382500187304
+ - -6.74251033395061
+ - 7.244119200747446
+ - -7.1792582388242465
+ - -7.15119061579662
+ - 7.265914957061304
+ - -6.835868782931893
+ - 3.126822446190078
+ - -1.427353890033365
+ - -2.6353654206870525
+ - 1.288684541549886
+ - 1.4797119851050429
+ - -4.553381216978485
+ - 7.353885411868771
+ - -10.284634716090538
+ - 9.452574737383971
+ - -3.502481236896532e-13
+ - -1.2959604092990795e-13
+ - -1.0842021724855044e-13
+ - -9.317362419797304e-14
+ - -6.183340514956392e-14
+ - 3.604125190567048e-13
+ - -1.2281977735187355e-14
+ - 3.485540577951446e-13
+ - 2.286988957586611e-14
+ - 0.0
+ - -2.371692252312041e-13
+ - -2.625802136488331e-14
+ - 1.6517142471458857e-13
+ - 3.3373098121819433e-13
+ - -9.740878893424454e-15
+ - -1.2620790914089075e-13
+ - 3.5067164016328034e-13
+ - -2.303929616531697e-13
+ - 3.6845933205562065e-13
+ - -1.9058241313221758e-13
+ - -2.295459287059154e-13
+ - -5.759824041329242e-14
+ - 2.380162581784584e-13
+ - -1.520424140321469e-13
+ - -2.329340604949326e-13
+ - 3.2526065174565133e-13
+ - 1.5500702934753696e-13
+ - 9.656175598699024e-14
+ - -1.4484263398048536e-13
+ - 1.3552527156068805e-14
+ - 1.7364175418713157e-13
+ - -6.437450399132683e-14
+ - -1.181610961419749e-13
+ - -1.147729643529577e-13
+ - -4.912791094074942e-14
+ - 1.4823076576950256e-14
+ - 4.658681209898652e-14
+ - 1.5331296345302836e-13
+ - 3.324604317973129e-13
+ - 3.519421895841618e-13
+ - 1.562775787684184e-13
+ - 1.342547221398066e-13
+ - -1.9820570965750628e-13
+ - -1.2366681029912785e-13
+ - 2.2319318160150814e-13
+ - -1.3806637040245096e-13
+ - -4.0234064994579266e-13
+ - 2.1345230270808369e-13
+ - 1.376428539288238e-13
+ - -9.994988777600744e-14
+ - 5.166900978251232e-14
+ - 2.0328790734103208e-14
+ - -1.7533582008164017e-13
+ - 1.334076891925523e-13
+ - -2.6046263128069735e-13
+ - -2.414043899674756e-13
+ - -8.216219588366713e-14
+ - -1.0587911840678754e-13
+ - -3.015437292225309e-13
+ - -1.2536087619363645e-13
+ - 2.464865876510014e-13
+ - 5.421010862427522e-14
+ - -4.929731753020028e-13
+ - 4.0234064994579266e-14
+- - 16.577912032785548
+ - -15.716374491737696
+ - 9.476442184739652
+ - -1.443140750207588
+ - -4.524747620966019
+ - 8.326896247676027
+ - 2.02335625278945
+ - -9.469951399193732
+ - 11.296819924013741
+ - -13.908543331546547
+ - 12.21551864467165
+ - -8.91742051817038
+ - -12.356002558678304
+ - 9.605000303746762
+ - -7.079291688652966
+ - -1.633209541716455
+ - 4.9963692125512535
+ - -10.153126302272387
+ - -4.28876464526351
+ - 9.326300882770363
+ - -13.037581442876384
+ - 14.333684428214825
+ - -14.297888498591574
+ - 13.310910283666976
+ - 11.487378385545219
+ - -15.883717867805823
+ - 13.804486282216482
+ - -8.647404636235994
+ - 3.3131535492892525
+ - 1.9608875233309273
+ - -5.2019493575184095
+ - -2.0334052492452437
+ - 6.143311628640602
+ - -11.96981998890002
+ - 12.245963325569269
+ - -11.277440440977701
+ - -12.172431078713911
+ - 11.546441872308302
+ - -10.241245108719966
+ - 3.346574771133565
+ - -0.3100590788582568
+ - -6.01110231515787
+ - 0.3731294644415185
+ - 4.41963972318696
+ - -9.16594845681067
+ - 12.803128517130196
+ - -17.11072495307884
+ - 15.095052622618212
+ - -5.463362509790237e-13
+ - -1.7618285302889447e-13
+ - -1.3383120566617945e-13
+ - -1.4992483166401116e-13
+ - -8.555032767268433e-14
+ - 5.683591076076355e-13
+ - -3.134021904840911e-14
+ - 5.590417451878382e-13
+ - 1.7787691892340307e-14
+ - 2.795208725939191e-14
+ - -3.8031779331718085e-13
+ - -1.1180834903756764e-13
+ - 3.2017845406212553e-13
+ - 6.005463596032989e-13
+ - 4.573977915173222e-14
+ - -1.9227647902672618e-13
+ - 6.835555884342204e-13
+ - -4.2521053952165877e-13
+ - 7.02190313273815e-13
+ - -3.125551575368368e-13
+ - -3.049318610115481e-13
+ - -1.6686549060909717e-13
+ - 4.3198680309969317e-13
+ - -2.430984558619842e-13
+ - -4.497744949920335e-13
+ - 5.751353711856699e-13
+ - 2.498747194400186e-13
+ - 1.5500702934753696e-13
+ - -2.0328790734103208e-13
+ - -4.1504614415460717e-14
+ - 3.006966962752766e-13
+ - -1.9989977555201488e-13
+ - -1.5754812818929986e-13
+ - -2.278518628114068e-13
+ - -6.437450399132683e-14
+ - 3.3034284942917713e-14
+ - 1.3383120566617945e-13
+ - 2.490276864927643e-13
+ - 5.13301966036106e-13
+ - 4.87890977618477e-13
+ - 2.1768746744435519e-13
+ - 2.1260526976082939e-13
+ - -3.2187251995663413e-13
+ - -1.1434944787933055e-13
+ - 2.947674656444965e-13
+ - -1.9142944607947188e-13
+ - -6.844026213814747e-13
+ - 3.4304834363799164e-13
+ - 2.685094442796132e-13
+ - -2.0159384144652348e-13
+ - 6.098637220230962e-14
+ - 6.776263578034403e-14
+ - -2.591920818598159e-13
+ - 1.2620790914089075e-13
+ - -3.3203691532368573e-13
+ - -2.930733997499879e-13
+ - -1.2790197503539935e-13
+ - -2.286988957586611e-13
+ - -4.921261423547485e-13
+ - -2.0752307207730358e-13
+ - 3.7777669447541795e-13
+ - 1.6601845766184287e-13
+ - -9.156426159818987e-13
+ - 5.675120746603812e-14
+- - 9.959014235712749
+ - -9.091200151589382
+ - 5.186346996535924
+ - 0.015848411993386987
+ - -3.6513165657269515
+ - 5.782102472077393
+ - 2.085060426223474
+ - -6.55168841911745
+ - 7.483934624281186
+ - -8.537610309609347
+ - 7.2324811867383145
+ - -4.871059105662515
+ - -7.382594055233599
+ - 5.32577325084728
+ - -3.553212546395627
+ - -1.9032781795279432
+ - 3.929614451675828
+ - -6.712312788819301
+ - -3.392885861381946
+ - 6.380549068596873
+ - -8.35885269565434
+ - 8.599082743138013
+ - -8.255811478964493
+ - 8.108087776618762
+ - 7.4242129430548225
+ - -9.715963627697334
+ - 8.187842233550532
+ - -4.57245113261241
+ - 1.1943316117072913
+ - 2.007595044705538
+ - -2.428448588540749
+ - -2.1167647745976876
+ - 4.676528473732262
+ - -7.550028453336998
+ - 7.434248929778018
+ - -6.4205474463646075
+ - -7.431016426432395
+ - 6.644588835304161
+ - -5.565616292008064
+ - 1.0704059367649634
+ - 0.8541031629314282
+ - -4.420514942450768
+ - -0.6683468309491495
+ - 3.6338872596834557
+ - -6.292375877228481
+ - 7.95667515023603
+ - -10.251129453361749
+ - 8.725558985983575
+ - -3.1424922343134543e-13
+ - -8.385626177817573e-14
+ - -5.421010862427522e-14
+ - -8.978549240895584e-14
+ - -4.573977915173222e-14
+ - 3.2864878353466853e-13
+ - -2.625802136488331e-14
+ - 3.3203691532368573e-13
+ - 5.082197683525802e-15
+ - 3.049318610115481e-14
+ - -2.1599340154984659e-13
+ - -1.0418505251227894e-13
+ - 2.1684043449710089e-13
+ - 3.8031779331718085e-13
+ - 5.675120746603812e-14
+ - -1.1180834903756764e-13
+ - 4.684092198316281e-13
+ - -2.761327408049019e-13
+ - 4.667151539371195e-13
+ - -1.8380614955418317e-13
+ - -1.5585406229479126e-13
+ - -1.2959604092990795e-13
+ - 2.82061971435682e-13
+ - -1.3552527156068805e-13
+ - -2.981555974335137e-13
+ - 3.5829493668856904e-13
+ - 1.4907779871675686e-13
+ - 8.639736061993863e-14
+ - -1.0503208545953324e-13
+ - -5.929230630780102e-14
+ - 1.8719428134320037e-13
+ - -1.6432439176733427e-13
+ - -8.046812998915853e-14
+ - -1.5754812818929986e-13
+ - -2.879912020664621e-14
+ - 2.541098841762901e-14
+ - 1.0333801956502464e-13
+ - 1.5077186461126546e-13
+ - 2.896852679609707e-13
+ - 2.39710324072967e-13
+ - 1.0672615135404184e-13
+ - 1.2281977735187355e-13
+ - -1.9651164376299768e-13
+ - -2.456395547037471e-14
+ - 1.3298417271892515e-13
+ - -1.0587911840678754e-13
+ - -4.2182240773264157e-13
+ - 1.9481757786848908e-13
+ - 1.8973538018496328e-13
+ - -1.3891340334970526e-13
+ - 1.9481757786848908e-14
+ - 6.268043809681823e-14
+ - -1.3213713977167085e-13
+ - 2.456395547037471e-14
+ - -1.5500702934753696e-13
+ - -1.1773757966834775e-13
+ - -7.284483346386983e-14
+ - -1.6263032587282567e-13
+ - -2.947674656444965e-13
+ - -1.1858461261560205e-13
+ - 2.185345003916095e-13
+ - 1.3637230450794235e-13
+ - -5.954641619197731e-13
+ - 3.3034284942917713e-14
+- - -7.7614125811599015
+ - 8.451083798136711
+ - -6.994930435344137
+ - 5.144130154370055
+ - -3.2787642325466697
+ - 0.04413029840232475
+ - 3.4570962000316903
+ - -0.6012397441607643
+ - -1.7736448001972482
+ - 5.6232415488524214
+ - -6.965086129793938
+ - 6.65909163033211
+ - 6.023524613531978
+ - -7.447545926970577
+ - 6.866935825529073
+ - -3.8760345214607166
+ - 1.6437517762174485
+ - 1.692768754342561
+ - -2.088751414796413
+ - -1.1481042871766067
+ - 3.4763126940073312
+ - -6.780555527235962
+ - 7.704833634539084
+ - -5.662334220430059
+ - -2.731554408284933
+ - 5.88024608075584
+ - -6.994330675703613
+ - 7.206342284843418
+ - -6.2619265924136185
+ - 3.2820936058174155
+ - 5.972265627368701
+ - -4.255133543153986
+ - 2.1035759217856014
+ - 3.8199029268762095
+ - -6.052866520076937
+ - 7.1001379416268255
+ - 5.136631352839512
+ - -7.586933042906638
+ - 7.777590588362194
+ - -6.298625780326014
+ - 4.6957126749139375
+ - -1.2389760881725929
+ - -4.655959940661444
+ - 2.1643861888212106
+ - 0.35377307430330446
+ - -4.66441976030266
+ - 7.4804634901204805
+ - -8.793142931022736
+ - 3.305810774455924e-13
+ - 1.6604492744144456e-13
+ - 1.8507669897506462e-13
+ - 8.298275905131974e-14
+ - 4.187519132988447e-14
+ - -2.7827679295263936e-13
+ - -3.602537003790946e-14
+ - -2.849207076326653e-13
+ - -4.0339944112986054e-14
+ - 8.645030017914203e-14
+ - 2.2290201402588947e-13
+ - -1.3277241448211158e-13
+ - 8.020343219314156e-15
+ - -1.8917951481332764e-13
+ - 1.4132215329345967e-13
+ - 8.782672871843027e-14
+ - 2.930204601907845e-14
+ - 7.173310272059856e-14
+ - -9.290892640195607e-14
+ - 9.571472303973594e-14
+ - 2.7671507595613924e-13
+ - -5.976876234063157e-14
+ - -1.827473583701153e-13
+ - 2.3314581873174617e-13
+ - 7.692117952253115e-14
+ - -1.937587866844212e-13
+ - -1.155935275206103e-13
+ - -8.4967992521447e-14
+ - 1.5363060080824872e-13
+ - -8.846200342887099e-14
+ - -6.71273610699033e-14
+ - -9.648234664818515e-14
+ - 1.1577881597782218e-13
+ - 4.608388628655428e-14
+ - 1.0119396741728719e-13
+ - -1.691418916548431e-14
+ - 3.9889957859757207e-14
+ - -1.257843926672636e-13
+ - -2.908499382634454e-13
+ - -5.029522822118425e-13
+ - -1.8830601208647164e-13
+ - -1.0868491504456741e-13
+ - 2.296518078243222e-13
+ - 3.3203691532368573e-13
+ - -3.290193604490923e-13
+ - 1.5021599923962983e-13
+ - 2.3841330487248385e-13
+ - -2.318752693108647e-13
+ - -1.6728900708272432e-14
+ - -3.782531505082485e-14
+ - -9.282951706315098e-14
+ - 8.949432483333717e-14
+ - 1.7713576509455556e-13
+ - -2.7660919683773245e-13
+ - 3.713180682526039e-13
+ - 4.351367068722951e-13
+ - 8.92560968169219e-14
+ - -4.613682584575767e-14
+ - 1.8425613580741202e-13
+ - 1.1374064294849152e-13
+ - -2.1789922568116876e-13
+ - 1.4052805990540877e-13
+ - 2.3510458242227174e-13
+ - -3.679299364635867e-15
+- - -14.082423932747469
+ - 14.499584374280174
+ - -11.398320123401067
+ - 7.078547719140101
+ - -3.5054834615566346
+ - -1.9114662389731567
+ - 4.051152120267568
+ - 1.172277094124753
+ - -4.998438876320236
+ - 10.665283721388745
+ - -12.303921456785773
+ - 10.838777659383215
+ - 10.823454724096443
+ - -12.315485455956152
+ - 10.671387193798502
+ - -4.67959635287683
+ - 0.6753214099409397
+ - 4.633332594778526
+ - -1.707504295029846
+ - -4.006139127882841
+ - 7.64937487749828
+ - -12.271838292734143
+ - 13.188133947867184
+ - -10.4095038159829
+ - -6.2926720185922616
+ - 11.17374213672822
+ - -12.422279392105333
+ - 11.484788942975655
+ - -9.267729231452476
+ - 3.8358292448087763
+ - 9.055861115654901
+ - -5.373679345298974
+ - 1.2991043231213428
+ - 7.845570492570896
+ - -11.11725696034333
+ - 11.975252404026499
+ - 9.619441549358752
+ - -12.95775953272699
+ - 12.61191237391706
+ - -9.02946877766647
+ - 5.926116007685841
+ - -0.18435142987766376
+ - -6.171258473174988
+ - 1.4909156478722545
+ - 2.6460653055743655
+ - -9.139760512222072
+ - 13.56102856055247
+ - -15.079906429462888
+ - 5.530066354386513e-13
+ - 2.51674664452934e-13
+ - 2.7570922433127476e-13
+ - 1.478072492958754e-13
+ - 6.490389958336076e-14
+ - -4.776207031330186e-13
+ - -4.1504614415460717e-14
+ - -5.043022409715291e-13
+ - -5.304543832180056e-14
+ - 1.1519648082658485e-13
+ - 3.8190598009328267e-13
+ - -1.5140713932170619e-13
+ - -4.743384504624082e-14
+ - -3.970466940254533e-13
+ - 1.768181277393352e-13
+ - 1.5013658990082474e-13
+ - -9.677351422380381e-14
+ - 1.8910010547452255e-13
+ - -2.8619125705354673e-13
+ - 1.7194768829262297e-13
+ - 4.3029273720518457e-13
+ - -3.885763645529103e-14
+ - -3.703651561869428e-13
+ - 3.9217625457874106e-13
+ - 2.1556988507621944e-13
+ - -3.8730581513202883e-13
+ - -2.030761491042185e-13
+ - -1.4336032632279033e-13
+ - 2.3494576374466156e-13
+ - -8.946785505373547e-14
+ - -1.4674845811180753e-13
+ - -6.479802046495398e-14
+ - 1.7099477622696188e-13
+ - 1.326665353637048e-13
+ - 1.4971307342719758e-13
+ - -3.758708703440958e-14
+ - 9.317362419797304e-15
+ - -2.261577969168982e-13
+ - -4.85879274368748e-13
+ - -7.831878388550075e-13
+ - -2.8269724614612274e-13
+ - -1.9418230315804835e-13
+ - 4.062581773268438e-13
+ - 4.855616370135277e-13
+ - -4.937143291308503e-13
+ - 2.455336755853403e-13
+ - 4.563390003332543e-13
+ - -3.9217625457874106e-13
+ - -8.745615180400651e-14
+ - -1.937587866844212e-14
+ - -1.2949016181150116e-13
+ - 1.0990252490624547e-13
+ - 2.6914471899005393e-13
+ - -3.721651011998582e-13
+ - 5.562888881092617e-13
+ - 6.417333366635393e-13
+ - 1.4812488665109577e-13
+ - -1.6517142471458857e-14
+ - 3.321427944420925e-13
+ - 1.9058241313221758e-13
+ - -3.6676526616111205e-13
+ - 1.554305458211641e-13
+ - 5.381835588617011e-13
+ - -5.717472393966527e-15
+- - -14.723037880117658
+ - 12.624564788619075
+ - -7.986995044665598
+ - 0.5488219112911173
+ - 3.7595694568966986
+ - -8.049521749528417
+ - -2.5142481434402124
+ - 8.10205391082762
+ - -10.635131194236987
+ - 12.555378723592042
+ - -11.849910656822267
+ - 7.5533373453529125
+ - 10.994598980624904
+ - -9.237367879128632
+ - 5.7239003459345135
+ - 2.2573249432015987
+ - -6.3039526203269665
+ - 9.589938510649679
+ - 4.541874083085062
+ - -10.031245020914957
+ - 12.07458959450884
+ - -12.736189434594316
+ - 11.382761923782498
+ - -6.285828504394753
+ - -10.639755846772317
+ - 13.215020604185142
+ - -12.17204743919394
+ - 7.174625236157367
+ - -3.3268812731004096
+ - -2.428827289049037
+ - 4.058513248772379
+ - 1.5127063014115385
+ - -6.291464625436069
+ - 10.981642376415172
+ - -12.032699566168148
+ - 9.763125838596347
+ - 10.966915152744225
+ - -11.091918132211726
+ - 8.62842891243883
+ - -2.1515276748744996
+ - -1.6854984121530348
+ - 6.0775208006123105
+ - 0.4652053920859259
+ - -5.843371553411282
+ - 8.855935002417942
+ - -11.611217818605558
+ - 14.142563579820782
+ - -13.108794058895489
+ - 4.341043854678289e-13
+ - 1.1180834903756764e-13
+ - 1.0545560193316039e-13
+ - 1.444191175068582e-13
+ - 3.6422416731934915e-14
+ - -4.197048253645058e-13
+ - 3.049318610115481e-14
+ - -4.874674611448498e-13
+ - 8.470329472543003e-15
+ - -3.3881317890172014e-15
+ - 3.2864878353466853e-13
+ - 1.1434944787933055e-13
+ - -2.3674570875757694e-13
+ - -5.793705359219414e-13
+ - -5.590417451878382e-14
+ - 1.2874900798265365e-13
+ - -5.55653613398821e-13
+ - 3.773531780017908e-13
+ - -6.547564682275742e-13
+ - 1.7533582008164017e-13
+ - 2.3081647812679684e-13
+ - 1.6983010592448722e-13
+ - -5.04831636563563e-13
+ - 3.146727399049726e-13
+ - 4.573977915173222e-13
+ - -5.145725154569875e-13
+ - -1.9354702844760763e-13
+ - -1.2112571145736495e-13
+ - 1.139259314057034e-13
+ - 1.2197274440461925e-13
+ - -2.286988957586611e-13
+ - 2.6723889485873176e-13
+ - 6.013933925505532e-14
+ - 2.8841471854008927e-13
+ - 5.421010862427522e-14
+ - -6.352747104407253e-14
+ - -1.8295911660692887e-13
+ - -2.329340604949326e-13
+ - -3.824353756853166e-13
+ - -4.2775163836342167e-13
+ - -1.1519648082658485e-13
+ - -1.9397054492123478e-13
+ - 3.9387032047324966e-13
+ - 1.528894469794012e-13
+ - -2.0159384144652348e-13
+ - 1.7533582008164017e-13
+ - 5.484538333471595e-13
+ - -3.248371352720242e-13
+ - -2.634272465960874e-13
+ - 1.2959604092990795e-13
+ - -1.7364175418713157e-14
+ - -4.404571325722362e-14
+ - 1.2366681029912785e-13
+ - 5.082197683525802e-15
+ - 2.270048298641525e-13
+ - 2.244637310223896e-13
+ - 1.1180834903756764e-13
+ - 1.8507669897506462e-13
+ - 3.4220131069073734e-13
+ - 1.537364799266555e-13
+ - -2.9434394917086937e-13
+ - -1.401839527705867e-13
+ - 8.999725064576941e-13
+ - -5.929230630780102e-15
+- - -8.351924043576911
+ - 6.721768214059987
+ - -3.8489518592333964
+ - -0.877439405034299
+ - 3.4208303348667646
+ - -5.616105442194721
+ - -2.5973199629642454
+ - 5.789098022910996
+ - -6.9714917012304785
+ - 7.366031874950674
+ - -6.546212781007255
+ - 3.629208524121984
+ - 6.181165071818757
+ - -4.608826631865376
+ - 2.304383009478792
+ - 2.520994137871761
+ - -4.79226953482775
+ - 6.263473611997329
+ - 3.6742028575905907
+ - -6.704151374017323
+ - 7.556939193653672
+ - -7.208555055541329
+ - 6.039766324600801
+ - -2.7681447927368223
+ - -5.831479062837836
+ - 7.762438994848897
+ - -6.763367825416153
+ - 3.2314895288000143
+ - -0.7833636652123354
+ - -2.494985155078893
+ - 1.363760168756251
+ - 2.09530072501122
+ - -4.89616332912092
+ - 6.711730456665702
+ - -6.896867986389344
+ - 5.0600024815111695
+ - 6.379055676676
+ - -5.866115270940857
+ - 4.103970272133999
+ - 0.04408690429788546
+ - -2.323515850578134
+ - 4.535473943685633
+ - 1.4640241074386626
+ - -4.59902773940194
+ - 6.08022081823239
+ - -6.9433445708329105
+ - 8.016499581097206
+ - -6.975208614812388
+ - 2.202285662861181e-13
+ - 3.3457801416544863e-14
+ - 2.964615315390051e-14
+ - 7.877406409464993e-14
+ - 1.4823076576950256e-14
+ - -2.2658131339052534e-13
+ - 2.922263668027336e-14
+ - -2.676624113323589e-13
+ - 1.5246593050577406e-14
+ - -2.456395547037471e-14
+ - 1.7237120476625012e-13
+ - 1.1011428314305904e-13
+ - -1.6644197413547002e-13
+ - -3.5744790374131474e-13
+ - -7.580944877925988e-14
+ - 6.988021814847978e-14
+ - -3.942938369468768e-13
+ - 2.4606307117737425e-13
+ - -4.3029273720518457e-13
+ - 9.783230540787169e-14
+ - 9.529120656610879e-14
+ - 1.3383120566617945e-13
+ - -3.057788939588024e-13
+ - 1.6517142471458857e-13
+ - 3.032377951170395e-13
+ - -3.1509625637859973e-13
+ - -1.0545560193316039e-13
+ - -6.479802046495398e-14
+ - 4.489274620447792e-14
+ - 1.0714966782766899e-13
+ - -1.4060746924421386e-13
+ - 2.1218175328720223e-13
+ - 1.5246593050577406e-14
+ - 1.9058241313221758e-13
+ - 1.2705494208814505e-14
+ - -3.8963515573697816e-14
+ - -1.376428539288238e-13
+ - -1.308665903507894e-13
+ - -1.9354702844760763e-13
+ - -1.7491230360801302e-13
+ - -3.3034284942917713e-14
+ - -1.105377996166862e-13
+ - 2.1726395097072804e-13
+ - 2.414043899674756e-14
+ - -5.717472393966527e-14
+ - 8.470329472543003e-14
+ - 3.2526065174565133e-13
+ - -1.6855955650360577e-13
+ - -1.7914746834428452e-13
+ - 1.0249098661777034e-13
+ - 1.2705494208814505e-14
+ - -4.828087799349512e-14
+ - 4.404571325722362e-14
+ - 7.157428404298838e-14
+ - 6.691560283308973e-14
+ - 5.124549330888517e-14
+ - 5.590417451878382e-14
+ - 1.4230153513872246e-13
+ - 1.9227647902672618e-13
+ - 7.962109704190423e-14
+ - -1.511953810848926e-13
+ - -1.3044307387716225e-13
+ - 5.675120746603812e-13
+ - -3.8116482626443515e-15
+- - 10.06425466382831
+ - -11.210024566247403
+ - 8.31723872280066
+ - -5.3466208955052466
+ - 2.0823824280789704
+ - 1.106934120997286
+ - -3.175506364379938
+ - -1.277257011201276
+ - 3.3284491445267927
+ - -7.526299787291497
+ - 8.061584191560778
+ - -7.878459358534498
+ - -7.7099805841135
+ - 8.18943717511125
+ - -7.842293861166291
+ - 3.674079655181117
+ - -1.5563631391132786
+ - -3.06643321583549
+ - 1.5253126369649261
+ - 1.833702549380525
+ - -5.25386275260604
+ - 8.762844769923797
+ - -10.2644523373705
+ - 7.648668095867363
+ - 8.588158631323408
+ - -8.657564071022087
+ - 8.912520550860918
+ - -8.402675867367854
+ - 6.147542804013391
+ - -3.0108613626145644
+ - -6.687172765597464
+ - 3.4031892344654713
+ - -1.2618441722534062
+ - -5.452662174078968
+ - 7.151277123829573
+ - -8.644568038253613
+ - -6.795235993970458
+ - 8.59610643162578
+ - -9.190459204441593
+ - 6.787857481523666
+ - -5.346275198152212
+ - 0.44281663346817535
+ - 4.7405475830642505
+ - -2.1624667497084054
+ - -1.5904502471388935
+ - 6.431072882103348
+ - -10.42567303999302
+ - 10.897877086547814
+ - -4.349514184150832e-13
+ - -2.0328790734103208e-13
+ - -2.0371142381465923e-13
+ - -9.613823951336309e-14
+ - -6.818615225397118e-14
+ - 3.9556438636775826e-13
+ - 3.049318610115481e-14
+ - 3.6761229910836635e-13
+ - 5.293955920339377e-14
+ - -6.733911930671688e-14
+ - -2.752857078576476e-13
+ - 9.486769009248164e-14
+ - 7.919758056827708e-14
+ - 2.600391148070702e-13
+ - -1.3467823861343375e-13
+ - -1.300195574035351e-13
+ - 1.2112571145736495e-13
+ - -1.3976043629695956e-13
+ - 2.0244087439377778e-13
+ - -1.9989977555201488e-13
+ - -3.2864878353466853e-13
+ - 3.9810548520952116e-14
+ - 1.8677076486957322e-13
+ - -2.0625252265642213e-13
+ - -1.0545560193316039e-13
+ - 2.7147405959500326e-13
+ - 1.6517142471458857e-13
+ - 1.096907666694319e-13
+ - -2.0625252265642213e-13
+ - 1.0926725019580474e-13
+ - 1.384898868760781e-13
+ - 1.0291450309139749e-13
+ - -1.7702988597614877e-13
+ - -3.5575383784680614e-14
+ - -1.0291450309139749e-13
+ - 6.3527471044072525e-15
+ - -4.531626267810507e-14
+ - 1.6347735882007997e-13
+ - 4.053052652611827e-13
+ - 5.44218668610888e-13
+ - 2.574980159653073e-13
+ - 1.3044307387716225e-13
+ - -2.185345003916095e-13
+ - -3.108610916423282e-13
+ - 3.89211639263351e-13
+ - -1.7364175418713157e-13
+ - -3.72270980318265e-13
+ - 2.6385076306971456e-13
+ - 5.166900978251232e-14
+ - -2.244637310223896e-14
+ - 1.181610961419749e-13
+ - -5.124549330888517e-14
+ - -2.5707449949168015e-13
+ - 3.265312011665328e-13
+ - -4.3452790194145607e-13
+ - -4.688327363052552e-13
+ - -1.0418505251227894e-13
+ - -4.2351647362715017e-16
+ - -3.100140586950739e-13
+ - -1.5712461171567271e-13
+ - 2.9942614685439517e-13
+ - -8.470329472543003e-14
+ - -3.400837283226016e-13
+ - 3.5151867311053464e-14
+- - 15.968651756596765
+ - -17.16498691349769
+ - 12.20043455216111
+ - -6.745991113598846
+ - 1.4006127216515238
+ - 3.2905225703379344
+ - -3.3269305140707157
+ - -3.790875102546235
+ - 6.652271249608282
+ - -12.296943604748611
+ - 12.51204082080295
+ - -11.541685730924096
+ - -12.150647995747864
+ - 12.049661957439177
+ - -11.065200315752787
+ - 4.0174768920759725
+ - -0.714110453907103
+ - -6.067483737621753
+ - 0.8169883593635031
+ - 4.368734685472205
+ - -9.368793944027628
+ - 13.879611023679251
+ - -15.697380607650597
+ - 10.970700949363872
+ - 13.20398503692218
+ - -13.971320587131597
+ - 13.934508224670605
+ - -12.106681541779425
+ - 8.119746494055951
+ - -3.1444986514214404
+ - -9.238408222833623
+ - 3.5707070686619797
+ - -0.06281642419427286
+ - -9.355198897006929
+ - 11.428542145225006
+ - -13.016198919344776
+ - -11.011336443193294
+ - 12.994814324638524
+ - -13.426291075090258
+ - 8.922774252983624
+ - -6.506569023608988
+ - -0.8859349947702638
+ - 5.768877883620891
+ - -1.5765637232023901
+ - -4.066306652630491
+ - 10.72482195268578
+ - -16.55394756565086
+ - 16.617857540044998
+ - -6.462861387550312e-13
+ - -2.82061971435682e-13
+ - -2.744386749103933e-13
+ - -1.4823076576950256e-13
+ - -1.0333801956502464e-13
+ - 6.140988867593677e-13
+ - 2.795208725939191e-14
+ - 5.72594272343907e-13
+ - 7.030373462210693e-14
+ - -7.199780051661553e-14
+ - -4.1081097941833566e-13
+ - 7.962109704190423e-14
+ - 1.7618285302889447e-13
+ - 4.54009659728305e-13
+ - -1.5161889755851976e-13
+ - -2.0159384144652348e-13
+ - 3.108610916423282e-13
+ - -2.659683454378503e-13
+ - 4.1335207826009857e-13
+ - -3.117081245895825e-13
+ - -4.692562527788824e-13
+ - 1.3552527156068805e-14
+ - 3.3118988237643143e-13
+ - -2.947674656444965e-13
+ - -2.329340604949326e-13
+ - 4.633270221481023e-13
+ - 2.558039500707987e-13
+ - 1.6432439176733427e-13
+ - -2.956144985917508e-13
+ - 1.1689054672109345e-13
+ - 2.422514229147299e-13
+ - 8.046812998915853e-14
+ - -2.583450489125616e-13
+ - -9.825582188149884e-14
+ - -1.3806637040245096e-13
+ - 1.4399560103323106e-14
+ - -2.625802136488331e-14
+ - 2.558039500707987e-13
+ - 6.090166890758419e-13
+ - 7.691059161069047e-13
+ - 3.6083603553033194e-13
+ - 2.0413494028828638e-13
+ - -3.3881317890172014e-13
+ - -3.8878812278972386e-13
+ - 5.404070203482436e-13
+ - -2.507217523872729e-13
+ - -6.115577879176048e-13
+ - 3.9641141931501256e-13
+ - 1.3298417271892515e-13
+ - -7.369186641112413e-14
+ - 1.5670109524204556e-13
+ - -4.658681209898652e-14
+ - -3.7184746384463785e-13
+ - 4.3029273720518457e-13
+ - -6.056285572868247e-13
+ - -6.318865786517081e-13
+ - -1.5415999640028266e-13
+ - -5.759824041329242e-14
+ - -4.938202082492571e-13
+ - -2.363221922839498e-13
+ - 4.45539330255762e-13
+ - -6.352747104407253e-14
+ - -6.23416249179165e-13
+ - 5.929230630780102e-14
+- - 9.172215105954997
+ - -9.531354828500032
+ - 6.482086416174173
+ - -2.9580836156892647
+ - -0.19988310330304912
+ - 2.699582161325628
+ - -1.007817761081399
+ - -3.108389691036104
+ - 4.544489865945863
+ - -7.250650149101084
+ - 7.039548920514233
+ - -6.123469793583644
+ - -6.935639176556625
+ - 6.422936599109284
+ - -5.628633723993231
+ - 1.3514154496596875
+ - 0.5160653276613605
+ - -4.119389733700031
+ - -0.37668146200566116
+ - 3.2793672299186056
+ - -5.926228178567946
+ - 7.959559624952422
+ - -8.705635586571983
+ - 5.686600351005233
+ - 7.361233706218999
+ - -7.411180844579734
+ - 7.894745082225719
+ - -6.3072340503427435
+ - 3.8014901831719623
+ - -0.9446141970015128
+ - -4.582512873236459
+ - 1.0858586525590723
+ - 0.9872371218210256
+ - -5.744803065683244
+ - 6.6076135556759485
+ - -7.107054704602073
+ - -6.445909998970504
+ - 7.124071157582547
+ - -7.101959192996411
+ - 4.150367968821394
+ - -2.69450559182914
+ - -1.3470962832841782
+ - 2.3886745696429585
+ - 0.07304428041809259
+ - -3.1497242044981153
+ - 6.4350450732128675
+ - -9.514642776126196
+ - 9.189737329038534
+ - -3.5236570605778894e-13
+ - -1.4568966692773966e-13
+ - -1.300195574035351e-13
+ - -8.470329472543003e-14
+ - -5.421010862427522e-14
+ - 3.400837283226016e-13
+ - 8.046812998915853e-15
+ - 3.2017845406212553e-13
+ - 2.922263668027336e-14
+ - -2.795208725939191e-14
+ - -2.329340604949326e-13
+ - 1.5670109524204556e-14
+ - 1.3467823861343375e-13
+ - 2.8587361969832636e-13
+ - -5.929230630780102e-14
+ - -1.105377996166862e-13
+ - 2.371692252312041e-13
+ - -1.7660636950252162e-13
+ - 2.8248548790930916e-13
+ - -1.8041801776516597e-13
+ - -2.4436900528286565e-13
+ - -2.456395547037471e-14
+ - 2.0582900618279498e-13
+ - -1.6474790824096142e-13
+ - -1.7194768829262297e-13
+ - 2.812149384884277e-13
+ - 1.452661504541125e-13
+ - 8.724439356719293e-14
+ - -1.6220680939919851e-13
+ - 3.134021904840911e-14
+ - 1.5161889755851976e-13
+ - 4.658681209898652e-15
+ - -1.266314256145179e-13
+ - -7.496241583200558e-14
+ - -6.988021814847978e-14
+ - 1.1011428314305904e-14
+ - 1.0587911840678754e-14
+ - 1.5161889755851976e-13
+ - 3.239901023247699e-13
+ - 3.858235074743338e-13
+ - 1.8168856718604742e-13
+ - 1.1265538198482195e-13
+ - -1.8295911660692887e-13
+ - -1.7364175418713157e-13
+ - 2.659683454378503e-13
+ - -1.32560656245298e-13
+ - -3.6507120026660345e-13
+ - 2.1472285212896514e-13
+ - 9.952637130238029e-14
+ - -6.606856988583543e-14
+ - 7.157428404298838e-14
+ - -8.470329472543003e-15
+ - -1.9524109434211623e-13
+ - 1.9608812728937053e-13
+ - -2.964615315390051e-13
+ - -3.006966962752766e-13
+ - -8.512681119905718e-14
+ - -6.564505341220828e-14
+ - -2.812149384884277e-13
+ - -1.2536087619363645e-13
+ - 2.430984558619842e-13
+ - -1.6940658945086007e-15
+ - -4.002230675776569e-13
+ - 3.3457801416544863e-14
+- - -9.79075566904309
+ - 11.52128259673453
+ - -10.176674298208672
+ - 8.84796140582249
+ - -6.704002623904743
+ - 2.1387767697344136
+ - 6.6847488836793865
+ - -3.137611364142711
+ - -0.37541941459427974
+ - 6.6104561667125585
+ - -9.147793463422445
+ - 9.701453385747184
+ - 7.709683099624721
+ - -10.659819783871521
+ - 10.532979166902049
+ - -7.350438538166252
+ - 4.474169653638181
+ - 0.502280638225987
+ - -4.812439128306497
+ - 0.5504605055642525
+ - 2.9822705529773312
+ - -8.585949436762965
+ - 10.535444948330323
+ - -9.871498639142468
+ - -9.238924538151894
+ - 11.025165448506531
+ - -9.103789325790725
+ - 10.75438890174061
+ - -10.10165741345085
+ - 6.357043962867159
+ - 9.396241355700454
+ - -7.83458664173819
+ - 5.286911599831109
+ - 3.862512335909604
+ - -7.507059229177957
+ - 9.906162618892582
+ - 6.167113467504403
+ - -10.428408038394116
+ - 11.380286088679988
+ - -10.454284354193886
+ - 8.62402630286751
+ - -3.7207870329302066
+ - -8.254045245193062
+ - 5.265814053043833
+ - -1.6494059707024247
+ - -5.176537839827455
+ - 9.436611796355018
+ - -12.00684928452599
+ - 4.696797692525095e-13
+ - 2.558039500707987e-13
+ - 3.0874350927419247e-13
+ - 9.444417361885449e-14
+ - 6.691560283308973e-14
+ - -3.7947076036992655e-13
+ - -7.707999820014133e-14
+ - -3.875175733688424e-13
+ - -7.538593230563273e-14
+ - 1.4230153513872246e-13
+ - 2.8587361969832636e-13
+ - -2.473336205982557e-13
+ - 8.682087709356578e-14
+ - -1.7787691892340307e-13
+ - 2.6639186191147746e-13
+ - 1.1604351377383915e-13
+ - 1.8465318250143747e-13
+ - 2.498747194400186e-14
+ - -1.5246593050577406e-14
+ - 1.207021949837378e-13
+ - 4.180107594699972e-13
+ - -1.554305458211641e-13
+ - -1.9100592960584473e-13
+ - 3.040848280642938e-13
+ - -1.6940658945086007e-14
+ - -2.0117032497289633e-13
+ - -1.537364799266555e-13
+ - -1.215492279309921e-13
+ - 1.9312351197398048e-13
+ - -1.9608812728937053e-13
+ - -6.818615225397118e-14
+ - -2.270048298641525e-13
+ - 1.9693516023662483e-13
+ - 7.199780051661553e-15
+ - 1.4992483166401116e-13
+ - -1.1011428314305904e-14
+ - 1.274784585617722e-13
+ - -1.6008922703106276e-13
+ - -4.341043854678289e-13
+ - -7.919758056827708e-13
+ - -3.0874350927419247e-13
+ - -1.528894469794012e-13
+ - 3.248371352720242e-13
+ - 5.522654816098038e-13
+ - -5.450657015581423e-13
+ - 2.1260526976082939e-13
+ - 2.7232109254225756e-13
+ - -3.2187251995663413e-13
+ - 2.795208725939191e-14
+ - -1.113848325639405e-13
+ - -1.7957098481791167e-13
+ - 1.4823076576950256e-13
+ - 2.7909735612029196e-13
+ - -4.845028458294598e-13
+ - 5.933465795516374e-13
+ - 7.026138297474421e-13
+ - 1.113848325639405e-13
+ - -1.5500702934753696e-13
+ - 2.371692252312041e-13
+ - 1.6559494118821572e-13
+ - -3.2187251995663413e-13
+ - 2.5199230180815435e-13
+ - 1.9142944607947188e-13
+ - -1.6940658945086007e-15
+- - -9.990853238217452
+ - 11.101233265048744
+ - -9.360293584346564
+ - 7.24271923444589
+ - -4.900483690990239
+ - 0.6051544843641387
+ - 5.061873447156714
+ - -1.404117268090245
+ - -1.7930456155404702
+ - 7.111527606961685
+ - -9.065074289439547
+ - 8.914582548869312
+ - 7.783244583110018
+ - -9.923893110621146
+ - 9.331932236385894
+ - -5.637098525964067
+ - 2.743744115929304
+ - 1.7493449386170912
+ - -3.261766511381695
+ - -0.9558820555508796
+ - 4.105761734589272
+ - -8.736867172395346
+ - 10.128934174530217
+ - -8.87498550778555
+ - -8.993231305700352
+ - 10.038056591738583
+ - -8.52072849767346
+ - 9.7143854966266
+ - -8.644376224831106
+ - 4.808436681911303
+ - 8.178125201495574
+ - -6.130715439460871
+ - 3.4009743846206333
+ - 4.665648650768859
+ - -7.761843807849693
+ - 9.389762232092544
+ - 6.530047307692097
+ - -9.996126640059448
+ - 10.42482277088547
+ - -8.768166598861736
+ - 6.751318470052712
+ - -2.1626679645956965
+ - -6.619877279361217
+ - 3.4494006831532484
+ - -0.09605245058560566
+ - -5.818096532945623
+ - 9.625387543724477
+ - -11.559663342743848
+ - 4.419394402299312e-13
+ - 2.253107639696439e-13
+ - 2.602508730438838e-13
+ - 9.677351422380381e-14
+ - 6.352747104407253e-14
+ - -3.6083603553033194e-13
+ - -6.056285572868247e-14
+ - -3.809530680276216e-13
+ - -5.484538333471595e-14
+ - 1.2049043674692422e-13
+ - 2.80579663777987e-13
+ - -1.861354901591325e-13
+ - 3.494010907423989e-14
+ - -2.2827537928503394e-13
+ - 2.1112296210313436e-13
+ - 1.0947900843261832e-13
+ - 6.96684599116662e-14
+ - 6.945670167485263e-14
+ - -1.0587911840678754e-13
+ - 1.2451384324638215e-13
+ - 3.7078867266056997e-13
+ - -1.0143219543370247e-13
+ - -2.278518628114068e-13
+ - 2.922263668027336e-13
+ - 5.378659215064807e-14
+ - -2.320870275476783e-13
+ - -1.5013658990082474e-13
+ - -1.1519648082658485e-13
+ - 1.7618285302889447e-13
+ - -1.3743109569201023e-13
+ - -9.190307477709159e-14
+ - -1.478072492958754e-13
+ - 1.6474790824096142e-13
+ - 4.7222086809427244e-14
+ - 1.3044307387716225e-13
+ - -1.6517142471458857e-14
+ - 7.64447234897006e-14
+ - -1.6453615000414784e-13
+ - -4.0234064994579266e-13
+ - -6.998609726688657e-13
+ - -2.6723889485873176e-13
+ - -1.5013658990082474e-13
+ - 3.1594328932585403e-13
+ - 4.603624068327122e-13
+ - -4.686209780684417e-13
+ - 1.971469184734384e-13
+ - 2.966732897758187e-13
+ - -3.0704944337968387e-13
+ - -1.503483481376383e-14
+ - -6.839791049078475e-14
+ - -1.4547790869092608e-13
+ - 1.1604351377383915e-13
+ - 2.4331021409879777e-13
+ - -3.928115292891818e-13
+ - 5.141489989833603e-13
+ - 5.992758101824175e-13
+ - 1.0757318430129614e-13
+ - -9.889109659193956e-14
+ - 2.394985658361534e-13
+ - 1.5225417226896049e-13
+ - -2.9879087214395444e-13
+ - 1.8825307252726825e-13
+ - 2.7655625727852906e-13
+ - -2.117582368135751e-15
+- - 2.904912505356541
+ - -6.2866247487068945
+ - 7.501651624385338
+ - -10.44036192950893
+ - 10.480126533281055
+ - -7.536390141034123
+ - -9.68224611237415
+ - 8.796647971776355
+ - -6.058038367574682
+ - -0.35996969394568734
+ - 3.894167256025904
+ - -7.189033488902239
+ - -2.655032210737963
+ - 7.336189358332117
+ - -9.322385244087409
+ - 10.335124138624671
+ - -9.299263434593891
+ - 5.262738660236096
+ - 8.643365432160987
+ - -6.803714904237549
+ - 3.764440939801564
+ - 2.65489863873862
+ - -5.846727866892838
+ - 8.172006687438317
+ - 4.642448920938796
+ - -8.576299701834069
+ - 9.731811966690978
+ - -8.703211449922598
+ - 10.277043437030157
+ - -9.230741377055097
+ - -8.958149862438013
+ - 10.48065345944714
+ - -10.293563825185183
+ - 2.0228047287359985
+ - 1.7838480761241184
+ - -6.084600338542366
+ - -0.7932217640153111
+ - 5.918198087013006
+ - -8.574971145699045
+ - 11.414485038662335
+ - -11.524204315599405
+ - 8.254432880895939
+ - 10.33760287209134
+ - -9.981188108829146
+ - 7.433766828758083
+ - -0.808423316312252
+ - -2.817690568293181
+ - 6.592872043855271
+ - -2.99002630380768e-13
+ - -2.286988957586611e-13
+ - -3.3457801416544863e-13
+ - -1.6940658945086007e-14
+ - -4.828087799349512e-14
+ - 2.244637310223896e-13
+ - 9.740878893424454e-14
+ - 1.8804131429045468e-13
+ - 1.1943164556285635e-13
+ - -1.4653669987499396e-13
+ - -1.4653669987499396e-13
+ - 3.6930636500287495e-13
+ - -2.591920818598159e-13
+ - -1.5331296345302836e-13
+ - -3.4135427774348304e-13
+ - -7.538593230563273e-14
+ - -5.827586677109586e-13
+ - 1.9566461081574338e-13
+ - -3.9471735342050396e-13
+ - -2.795208725939191e-14
+ - -3.6591823321385775e-13
+ - 2.871441691192078e-13
+ - -8.046812998915853e-14
+ - -1.6517142471458857e-13
+ - 3.117081245895825e-13
+ - -5.505714157152952e-14
+ - 7.962109704190423e-14
+ - 6.437450399132683e-14
+ - -1.6855955650360577e-13
+ - 3.2949581648192283e-13
+ - -7.792703114739563e-14
+ - 4.3452790194145607e-13
+ - -2.193815333388638e-13
+ - 1.6263032587282567e-13
+ - -1.3976043629695956e-13
+ - -3.049318610115481e-14
+ - -2.574980159653073e-13
+ - 4.404571325722362e-14
+ - 3.091670257478196e-13
+ - 7.165898733771381e-13
+ - 2.846030702774449e-13
+ - 7.538593230563273e-14
+ - -1.6263032587282567e-13
+ - -5.963111948670274e-13
+ - 5.632769099241097e-13
+ - -1.4738373282224826e-13
+ - 4.235164736271502e-15
+ - 1.7872395187065737e-13
+ - -1.9820570965750628e-13
+ - 2.270048298641525e-13
+ - 2.286988957586611e-13
+ - -2.0244087439377778e-13
+ - -2.676624113323589e-13
+ - 5.912289971835016e-13
+ - -5.683591076076355e-13
+ - -7.284483346386983e-13
+ - -4.997494388800372e-14
+ - 3.040848280642938e-13
+ - -7.623296525288703e-14
+ - -1.0672615135404184e-13
+ - 2.202285662861181e-13
+ - -3.7692966152816365e-13
+ - 3.057788939588024e-13
+ - 2.541098841762901e-15
+- - 4.767251404873419
+ - -8.107700118586786
+ - 8.858510874291078
+ - -11.11402793938696
+ - 10.658684988708377
+ - -7.051836900092597
+ - -9.9594579891663
+ - 8.377591326969517
+ - -5.189839109240831
+ - -1.8241871905331304
+ - 5.481797901011723
+ - -8.477663815976072
+ - -4.0740491449485114
+ - 8.82482653509334
+ - -10.525521716466775
+ - 10.680148318144502
+ - -9.120753993669338
+ - 4.468261626761043
+ - 8.62686558894608
+ - -6.050811291294106
+ - 2.596711101891892
+ - 4.274188935233458
+ - -7.499319922813435
+ - 9.372546030763967
+ - 6.154271039834112
+ - -9.98828139807194
+ - 10.73136640772092
+ - -9.26716175814227
+ - 11.258307034045963
+ - -9.491374293561536
+ - -9.948545579339765
+ - 10.917519788459071
+ - -10.17237122782244
+ - 0.8788450447880924
+ - 3.269067040489341
+ - -7.562652459060867
+ - -2.1001656447689805
+ - 7.537085413987763
+ - -10.068274812168365
+ - 12.329439973131432
+ - -12.006720672121368
+ - 8.038685562861001
+ - 10.88881110736597
+ - -9.895524295386666
+ - 6.850630371526198
+ - 0.47899598738856997
+ - -4.610366924090892
+ - 8.48535702257602
+ - -3.7015339795012925e-13
+ - -2.558039500707987e-13
+ - -3.6168306847758624e-13
+ - -2.456395547037471e-14
+ - -6.098637220230962e-14
+ - 2.803679055411734e-13
+ - 1.0842021724855044e-13
+ - 2.532628512290358e-13
+ - 1.2451384324638215e-13
+ - -1.5670109524204556e-13
+ - -1.9312351197398048e-13
+ - 3.7947076036992655e-13
+ - -2.439454888092385e-13
+ - -9.486769009248164e-14
+ - -3.5405977195229754e-13
+ - -9.402065714522734e-14
+ - -5.514184486625495e-13
+ - 1.6347735882007997e-13
+ - -3.4050724479622874e-13
+ - -5.336307567702092e-14
+ - -4.0657581468206416e-13
+ - 2.90532300908225e-13
+ - -2.795208725939191e-14
+ - -2.0328790734103208e-13
+ - 2.744386749103933e-13
+ - -2.541098841762901e-15
+ - 1.0079692072326174e-13
+ - 8.978549240895584e-14
+ - -1.8719428134320037e-13
+ - 3.3203691532368573e-13
+ - -4.912791094074942e-14
+ - 4.45539330255762e-13
+ - -2.371692252312041e-13
+ - 1.3467823861343375e-13
+ - -1.5585406229479126e-13
+ - -2.795208725939191e-14
+ - -2.56650983018053e-13
+ - 7.623296525288703e-14
+ - 3.6761229910836635e-13
+ - 8.021402010498224e-13
+ - 3.125551575368368e-13
+ - 1.0079692072326174e-13
+ - -2.1514636860259229e-13
+ - -6.445920728605226e-13
+ - 6.166399856011306e-13
+ - -1.8295911660692887e-13
+ - -5.929230630780102e-14
+ - 2.320870275476783e-13
+ - -1.7618285302889447e-13
+ - 2.219226321806267e-13
+ - 2.39710324072967e-13
+ - -2.1345230270808369e-13
+ - -2.922263668027336e-13
+ - 6.251103150736737e-13
+ - -6.25957348020928e-13
+ - -7.987520692608052e-13
+ - -6.860966872759833e-14
+ - 2.99002630380768e-13
+ - -1.1858461261560205e-13
+ - -1.2366681029912785e-13
+ - 2.65121312490596e-13
+ - -3.8285889215894375e-13
+ - 2.22769665127881e-13
+ - 1.6940658945086007e-15
+- - 1.342171283945513
+ - 1.1751534525533425
+ - -4.060940028574447
+ - 8.310835791699068
+ - -10.162741416762813
+ - 8.112578786350738
+ - 8.46890944122963
+ - -9.883173440815984
+ - 7.553131791028417
+ - -2.8208405471875526
+ - -0.9577815783839451
+ - 3.9494635948805255
+ - -0.5702863021477623
+ - -4.389005747996248
+ - 6.120616457815923
+ - -8.899955354032535
+ - 8.322393779995334
+ - -6.61827884478749
+ - -8.094066309732465
+ - 7.233171467027104
+ - -6.032940387671711
+ - 1.0346855759376963
+ - 1.133560892422288
+ - -5.0199610220950115
+ - -1.0473312773843955
+ - 4.2054959883653185
+ - -6.921000040602515
+ - 8.651645303992433
+ - -8.22932959405036
+ - 8.07982256835242
+ - 6.243149823149085
+ - -9.60161215494122
+ - 9.895583023828284
+ - -4.353530009990823
+ - 0.7933085374048627
+ - 2.504674175670804
+ - -2.0673694096914055
+ - -2.7790477013518102
+ - 4.789168317278279
+ - -8.668325520190345
+ - 8.96368880333668
+ - -8.156023304080868
+ - -8.442201489101219
+ - 8.75189940938767
+ - -8.191700306623627
+ - 3.5519874540590193
+ - -2.0040423402473384
+ - -2.0378730928206257
+ - 9.825582188149884e-14
+ - 1.3044307387716225e-13
+ - 2.761327408049019e-13
+ - 6.776263578034403e-15
+ - -5.082197683525802e-15
+ - -4.235164736271502e-14
+ - -8.470329472543003e-14
+ - -1.0164395367051604e-14
+ - -5.759824041329242e-14
+ - 1.3552527156068805e-13
+ - 7.623296525288703e-14
+ - -3.1679032227310833e-13
+ - 2.998496633280223e-13
+ - 2.286988957586611e-13
+ - 2.964615315390051e-13
+ - 2.371692252312041e-14
+ - 6.911788849595091e-13
+ - -2.795208725939191e-13
+ - 4.946672411965114e-13
+ - -9.486769009248164e-14
+ - 2.422514229147299e-13
+ - -2.253107639696439e-13
+ - 1.2197274440461925e-13
+ - 1.2874900798265365e-13
+ - -3.2864878353466853e-13
+ - 1.6263032587282567e-13
+ - 1.1858461261560205e-14
+ - -1.1858461261560205e-14
+ - 5.759824041329242e-14
+ - -2.693564772268675e-13
+ - 1.3891340334970526e-13
+ - -3.2356658585114273e-13
+ - 1.3044307387716225e-13
+ - -1.4568966692773966e-13
+ - 1.1858461261560205e-13
+ - 2.371692252312041e-14
+ - 2.1006417091906648e-13
+ - 2.202285662861181e-14
+ - -1.3721933745519665e-13
+ - -5.30242624981192e-13
+ - -1.5246593050577406e-13
+ - -2.710505431213761e-14
+ - 1.3213713977167085e-13
+ - 5.031375706690544e-13
+ - -3.9979955110402976e-13
+ - 7.623296525288703e-14
+ - -1.9312351197398048e-13
+ - -9.656175598699024e-14
+ - 2.270048298641525e-13
+ - -2.659683454378503e-13
+ - -1.7787691892340307e-13
+ - 1.8126505071242027e-13
+ - 1.2027867851011065e-13
+ - -3.9641141931501256e-13
+ - 3.6591823321385775e-13
+ - 5.319366908757006e-13
+ - -5.082197683525802e-15
+ - -3.3373098121819433e-13
+ - -6.606856988583543e-14
+ - 3.3881317890172014e-14
+ - -7.623296525288703e-14
+ - 3.6253010142484055e-13
+ - -4.3368086899420177e-13
+ - 2.202285662861181e-14
+- - 0.23708480307784557
+ - 3.92177643036351
+ - -8.17500676750914
+ - 14.48654995569274
+ - -16.994081496924064
+ - 12.922953079192034
+ - 14.3254129106677
+ - -15.893796594977257
+ - 11.587461769421934
+ - -3.1129592202643757
+ - -3.246042654152355
+ - 7.916126518643776
+ - 0.5670900477479327
+ - -8.825145328844808
+ - 11.422355584628743
+ - -15.113262689726046
+ - 13.631018342020322
+ - -10.11865981331848
+ - -13.393025908273657
+ - 11.214122776467642
+ - -8.750680735720264
+ - -0.012565972050678312
+ - 3.6730387366339046
+ - -9.597462337201353
+ - -3.347712901748738
+ - 8.505917871521499
+ - -12.53235852123168
+ - 14.340768384987134
+ - -14.471935968176476
+ - 13.663255680721761
+ - 11.398454872105177
+ - -16.339923678274953
+ - 16.26461738406778
+ - -5.993688831424465
+ - -0.23578712653240555
+ - 5.724540860315569
+ - -2.0326791937921778
+ - -6.2968457647844005
+ - 9.52604867292873
+ - -15.337400480012654
+ - 15.398502452819999
+ - -13.283516378534996
+ - -14.575299962722605
+ - 14.441879253276541
+ - -12.950630867149133
+ - 4.511794519300967
+ - -1.375654623732684
+ - -5.394965322197402
+ - 2.371692252312041e-13
+ - 2.320870275476783e-13
+ - 4.811147140404426e-13
+ - 2.202285662861181e-14
+ - 1.6940658945086007e-15
+ - -1.1180834903756764e-13
+ - -1.3552527156068805e-13
+ - -9.656175598699024e-14
+ - -1.0842021724855044e-13
+ - 2.286988957586611e-13
+ - 1.5415999640028266e-13
+ - -5.454892180317694e-13
+ - 4.912791094074942e-13
+ - 3.1340219048409113e-13
+ - 5.082197683525802e-13
+ - 5.929230630780102e-14
+ - 1.0977546996415732e-12
+ - -4.2012834183813297e-13
+ - 7.691059161069047e-13
+ - -1.1858461261560205e-13
+ - 4.3198680309969317e-13
+ - -3.8624702394796095e-13
+ - 1.4399560103323106e-13
+ - 2.558039500707987e-13
+ - -5.149960319306146e-13
+ - 2.253107639696439e-13
+ - -2.541098841762901e-14
+ - -3.8963515573697816e-14
+ - 1.1858461261560205e-13
+ - -4.506215279392878e-13
+ - 1.9651164376299768e-13
+ - -5.658180087658726e-13
+ - 2.270048298641525e-13
+ - -2.270048298641525e-13
+ - 2.1006417091906648e-13
+ - 3.218725199566341e-14
+ - 3.5744790374131474e-13
+ - 1.0164395367051604e-14
+ - -2.846030702774449e-13
+ - -9.58841296291868e-13
+ - -2.998496633280223e-13
+ - -6.268043809681823e-14
+ - 2.659683454378503e-13
+ - 8.859964628279982e-13
+ - -7.233661369551725e-13
+ - 1.6601845766184287e-13
+ - -2.422514229147299e-13
+ - -2.0498197323554068e-13
+ - 3.5575383784680614e-13
+ - -4.404571325722362e-13
+ - -3.032377951170395e-13
+ - 3.117081245895825e-13
+ - 2.320870275476783e-13
+ - -7.030373462210693e-13
+ - 6.860966872759833e-13
+ - 9.50370966819325e-13
+ - 1.0164395367051604e-14
+ - -5.437951521372608e-13
+ - -6.437450399132683e-14
+ - 8.300922883092143e-14
+ - -1.6771252355635147e-13
+ - 6.030874584450618e-13
+ - -6.284984468626909e-13
+ - 4.235164736271502e-14
+- - -0.8631676435911733
+ - 3.3402188123213254
+ - -5.612551270927812
+ - 9.011777733932663
+ - -10.225283841156237
+ - 7.45359146222317
+ - 8.701626667763911
+ - -9.246161659384564
+ - 6.4496016717470415
+ - -1.0693053331632518
+ - -2.7771191594784805
+ - 5.420468801651005
+ - 1.1032255011687018
+ - -6.05459748128378
+ - 7.467845498666199
+ - -9.209276939507184
+ - 8.058653206196974
+ - -5.613156734340839
+ - -7.987492877767073
+ - 6.306013633051297
+ - -4.595034188674274
+ - -0.880832114188035
+ - 3.1007658617974347
+ - -6.377636860859669
+ - -2.8142304442594406
+ - 5.8563739541565765
+ - -8.021288322796078
+ - 8.565444288444835
+ - -8.326065170058563
+ - 8.297431297097939
+ - 7.33881606506374
+ - -9.974066213212952
+ - 9.64472288897118
+ - -2.9618671964177623
+ - -0.9247186636750212
+ - 4.214230729341655
+ - -0.5093330433604059
+ - -4.6154337071352485
+ - 6.4922659365849436
+ - -9.65053759360156
+ - 9.470456359054907
+ - -7.8148134108961
+ - -8.999578289510028
+ - 8.592969392741601
+ - -7.417818600944317
+ - 1.99928013516497
+ - 0.1621857311390099
+ - -4.241919663195187
+ - 1.8380614955418317e-13
+ - 1.6263032587282567e-13
+ - 2.939204326972422e-13
+ - 1.2705494208814505e-14
+ - 2.117582368135751e-14
+ - -1.0672615135404184e-13
+ - -8.555032767268433e-14
+ - -9.063252535621014e-14
+ - -6.522153693858113e-14
+ - 1.4484263398048536e-13
+ - 1.1350241493207625e-13
+ - -3.2695471764015993e-13
+ - 2.854501032246992e-13
+ - 1.7279472123987727e-13
+ - 3.049318610115481e-13
+ - 4.658681209898652e-14
+ - 6.208751503374021e-13
+ - -2.31239994600424e-13
+ - 4.1335207826009857e-13
+ - -6.776263578034403e-14
+ - 2.73591641963139e-13
+ - -2.473336205982557e-13
+ - 7.030373462210693e-14
+ - 1.7787691892340307e-13
+ - -2.795208725939191e-13
+ - 1.0587911840678754e-13
+ - -3.134021904840911e-14
+ - -2.795208725939191e-14
+ - 8.639736061993863e-14
+ - -2.702035101741218e-13
+ - 1.0418505251227894e-13
+ - -3.4643647542700884e-13
+ - 1.4230153513872246e-13
+ - -1.1943164556285635e-13
+ - 1.1858461261560205e-13
+ - 5.929230630780102e-15
+ - 2.193815333388638e-13
+ - -7.623296525288703e-15
+ - -1.9566461081574338e-13
+ - -6.25957348020928e-13
+ - -1.9989977555201488e-13
+ - -5.929230630780102e-14
+ - 1.8634724839594607e-13
+ - 5.615828440296011e-13
+ - -4.734914175151539e-13
+ - 1.1096131609031334e-13
+ - -1.1604351377383915e-13
+ - -1.3467823861343375e-13
+ - 2.0921713797181218e-13
+ - -2.65121312490596e-13
+ - -1.8465318250143747e-13
+ - 1.9227647902672618e-13
+ - 1.6940658945086007e-13
+ - -4.421511984667448e-13
+ - 4.413041655194905e-13
+ - 6.191810844428935e-13
+ - 2.964615315390051e-14
+ - -3.1509625637859973e-13
+ - -2.625802136488331e-14
+ - 5.590417451878382e-14
+ - -1.3721933745519665e-13
+ - 3.6676526616111205e-13
+ - -3.2695471764015993e-13
+ - 2.625802136488331e-14
+- - -5.174738806837997
+ - 2.4409593018110005
+ - 0.30060821101433116
+ - -5.225745384446724
+ - 7.201191488468091
+ - -7.614597772390605
+ - -6.221665845314725
+ - 8.293946308734535
+ - -8.015683120774764
+ - 5.523533686906924
+ - -3.354600136751694
+ - -0.3337041431154986
+ - 3.609832387912885
+ - -0.3607964091166771
+ - -2.2849401697062484
+ - 6.447424289383804
+ - -7.750789089500309
+ - 7.123298004112382
+ - 6.599608840414658
+ - -8.137761494513612
+ - 7.4678760647346225
+ - -4.402030931738044
+ - 2.1067285188194416
+ - 1.4261924428307622
+ - -2.4740297474867785
+ - -0.9090243240531635
+ - 3.400669108912675
+ - -6.970509626973795
+ - 7.958976898407662
+ - -5.94602995680255
+ - -2.851585207006063
+ - 6.179247207799342
+ - -8.260822042180717
+ - 6.0572133738293
+ - -4.544531308293198
+ - 1.2508765225811636
+ - 4.573680309185449
+ - -1.948203245226969
+ - -0.5715367203508378
+ - 5.007689285527051
+ - -6.816505194318246
+ - 7.094336285376829
+ - 5.633479550471761
+ - -7.898933609341296
+ - 7.92795163422067
+ - -5.706584049356915
+ - 4.950911074038715
+ - -2.5061291156644923
+ - 8.089164646278568e-14
+ - -1.9481757786848908e-14
+ - -1.7702988597614877e-13
+ - 5.505714157152952e-15
+ - 3.5151867311053464e-14
+ - -8.639736061993863e-14
+ - 2.329340604949326e-14
+ - -1.1773757966834775e-13
+ - 5.759824041329242e-14
+ - -5.632769099241097e-14
+ - 1.8634724839594607e-14
+ - 2.1472285212896514e-13
+ - -1.9015889665859043e-13
+ - -2.7994438906754626e-13
+ - -2.210755992333724e-13
+ - -1.8634724839594607e-14
+ - -6.098637220230962e-13
+ - 3.0789647632693817e-13
+ - -5.518419651361767e-13
+ - 3.8963515573697816e-14
+ - -1.1434944787933055e-13
+ - 1.1773757966834775e-13
+ - -2.39710324072967e-13
+ - 7.962109704190423e-14
+ - 3.7438856268640075e-13
+ - -2.456395547037471e-13
+ - -3.3457801416544863e-14
+ - 1.6093625997831706e-14
+ - -8.470329472543003e-15
+ - 2.4436900528286565e-13
+ - -1.113848325639405e-13
+ - 2.6723889485873176e-13
+ - -1.3637230450794235e-13
+ - 2.0371142381465923e-13
+ - -1.0418505251227894e-13
+ - -6.479802046495398e-14
+ - -1.8973538018496328e-13
+ - -7.919758056827708e-14
+ - 3.5575383784680614e-14
+ - 2.1260526976082939e-13
+ - 8.978549240895584e-14
+ - -6.691560283308973e-14
+ - 8.173867941003998e-14
+ - -2.6300373012246026e-13
+ - 1.9142944607947188e-13
+ - -7.623296525288703e-15
+ - 2.3081647812679684e-13
+ - -3.8116482626443515e-14
+ - -2.3420460991581404e-13
+ - 1.8931186371133613e-13
+ - 1.15619997300212e-13
+ - -6.691560283308973e-14
+ - -5.209252625613947e-14
+ - 2.4818065354551e-13
+ - -2.0032329202564203e-13
+ - -2.5114526886090005e-13
+ - 6.776263578034403e-14
+ - 2.668153783851046e-13
+ - 4.701032857261367e-14
+ - -4.701032857261367e-14
+ - -5.293955920339377e-14
+ - -2.388632911257127e-13
+ - 5.840292171318401e-13
+ - 4.319868030996932e-14
+- - -6.804013962010437
+ - 1.96866992853125
+ - 2.334006002852184
+ - -10.251460324312417
+ - 13.141036070543967
+ - -12.997382936729945
+ - -11.51064629506835
+ - 14.30736677738882
+ - -13.20796486899757
+ - 7.955285402608189
+ - -3.9005913035531234
+ - -2.3032812195363532
+ - 4.587413805286161
+ - 1.3305876937148948
+ - -5.684918291252547
+ - 12.00445872078446
+ - -13.639453613318256
+ - 11.70689954006643
+ - 11.798520185062285
+ - -13.572387751439793
+ - 11.83016154363927
+ - -5.74154347299896
+ - 1.5929629490378692
+ - 4.1431051825600385
+ - -2.4306074563819795
+ - -3.4901096692495597
+ - 7.413666105457191
+ - -12.494715092421183
+ - 13.532684881548143
+ - -10.844985250048637
+ - -6.418308747237535
+ - 11.652465312855114
+ - -14.635648618314304
+ - 9.334985523297107
+ - -6.167410553841047
+ - 0.2841914778663348
+ - 6.462074958226604
+ - -1.3402580628842409
+ - -3.0000207907549017
+ - 10.179957183584495
+ - -12.840816086891746
+ - 12.420883138891684
+ - 10.81935288789038
+ - -14.02760807834896
+ - 13.427821397223946
+ - -8.51731982026043
+ - 6.501805681529381
+ - -1.9843951937074025
+ - 3.9387032047324966e-14
+ - -8.978549240895584e-14
+ - -3.400837283226016e-13
+ - 3.8116482626443515e-15
+ - 3.7692966152816365e-14
+ - -6.733911930671688e-14
+ - 5.929230630780102e-14
+ - -1.283254915090265e-13
+ - 1.0630263488041469e-13
+ - -1.15619997300212e-13
+ - -1.2281977735187355e-14
+ - 4.019171334721655e-13
+ - -3.409307612698559e-13
+ - -4.463863632030163e-13
+ - -4.0318768289304696e-13
+ - -4.870439446712227e-14
+ - -1.0287215144403478e-12
+ - 4.972083400382743e-13
+ - -8.953138252477955e-13
+ - 5.675120746603812e-14
+ - -2.583450489125616e-13
+ - 2.4775713707188285e-13
+ - -3.815883427380623e-13
+ - 7.453889935837843e-14
+ - 6.217221832846564e-13
+ - -3.714239473710107e-13
+ - -3.091670257478196e-14
+ - 3.006966962752766e-14
+ - -5.209252625613947e-14
+ - 4.4257471494037193e-13
+ - -1.8168856718604742e-13
+ - 5.022905377218001e-13
+ - -2.507217523872729e-13
+ - 3.38389662428093e-13
+ - -1.7787691892340307e-13
+ - -1.0037340424963459e-13
+ - -3.4474240953250024e-13
+ - -1.0545560193316039e-13
+ - 1.317136232980437e-13
+ - 4.950907576701385e-13
+ - 2.0879362149818503e-13
+ - -7.326834993749698e-14
+ - 7.580944877925988e-14
+ - -5.315131744020735e-13
+ - 4.3198680309969317e-13
+ - -4.1081097941833566e-14
+ - 3.366955965335844e-13
+ - -1.3976043629695956e-14
+ - -3.925997710523682e-13
+ - 3.3542504711270293e-13
+ - 2.2573428044327104e-13
+ - -1.4823076576950256e-13
+ - -1.4738373282224826e-13
+ - 5.086432848262074e-13
+ - -4.2859867131067597e-13
+ - -5.514184486625495e-13
+ - 8.851494298807439e-14
+ - 4.688327363052552e-13
+ - 5.378659215064807e-14
+ - -9.105604182983729e-14
+ - -1.3129010682441655e-14
+ - -4.463863632030163e-13
+ - 9.241129454544417e-13
+ - 6.268043809681823e-14
+- - -6.162927241465474
+ - 1.317145495103422
+ - 2.789407791898464
+ - -10.46252913216207
+ - 13.147860826484415
+ - -12.812399621280566
+ - -11.585409339866679
+ - 14.110416950737601
+ - -12.893374014162625
+ - 7.448582402375079
+ - -3.3909422370115645
+ - -2.7342361771153025
+ - 4.101600232288246
+ - 1.7985871024410578
+ - -6.082022496242137
+ - 12.10277328743575
+ - -13.590702060023135
+ - 11.420967688690023
+ - 11.775316112334716
+ - -13.329659729838609
+ - 11.417605720944426
+ - -5.18490565886851
+ - 0.9991697405899365
+ - 4.543106286992084
+ - -1.9151158310276375
+ - -3.994631186349151
+ - 7.74027045830178
+ - -12.477038906363008
+ - 13.292285887983702
+ - -10.461506480608502
+ - -6.7422704881194235
+ - 11.749015084941622
+ - -14.571198850971575
+ - 8.934381820091469
+ - -5.688794228091902
+ - -0.21493692719439497
+ - 6.011209866258644
+ - -0.8239402491972876
+ - -3.4995919439569865
+ - 10.474007308070343
+ - -13.016997928795778
+ - 12.32963159200111
+ - 10.98979591006037
+ - -14.009920012323983
+ - 13.21052524491778
+ - -8.068523275058054
+ - 5.852834394134555
+ - -1.340610852072962
+ - 1.1858461261560205e-14
+ - -1.0545560193316039e-13
+ - -3.4643647542700884e-13
+ - 2.964615315390051e-15
+ - 2.879912020664621e-14
+ - -4.235164736271502e-14
+ - 6.522153693858113e-14
+ - -1.0842021724855044e-13
+ - 1.0672615135404184e-13
+ - -1.1858461261560205e-13
+ - -2.159934015498466e-14
+ - 4.036111993666741e-13
+ - -3.392366953753473e-13
+ - -4.3113977015243887e-13
+ - -4.0403471584030126e-13
+ - -5.421010862427522e-14
+ - -1.0075456907589903e-12
+ - 4.832322964085783e-13
+ - -8.745615180400651e-13
+ - 4.955142741437657e-14
+ - -2.702035101741218e-13
+ - 2.541098841762901e-13
+ - -3.7100043089738355e-13
+ - 6.013933925505532e-14
+ - 6.107107549703505e-13
+ - -3.527892225314161e-13
+ - -2.0328790734103208e-14
+ - 3.3457801416544863e-14
+ - -6.564505341220828e-14
+ - 4.429982314139991e-13
+ - -1.7533582008164017e-13
+ - 5.094903177734617e-13
+ - -2.5283933475540865e-13
+ - 3.3457801416544863e-13
+ - -1.7448878713438587e-13
+ - -9.613823951336309e-14
+ - -3.4813054132151744e-13
+ - -9.698527246061739e-14
+ - 1.49501315190384e-13
+ - 5.243133943504119e-13
+ - 2.253107639696439e-13
+ - -5.929230630780102e-14
+ - 6.056285572868247e-14
+ - -5.437951521372608e-13
+ - 4.54009659728305e-13
+ - -4.955142741437657e-14
+ - 3.138257069577183e-13
+ - -2.541098841762901e-15
+ - -3.8285889215894375e-13
+ - 3.2991933295555e-13
+ - 2.31239994600424e-13
+ - -1.5500702934753696e-13
+ - -1.6644197413547002e-13
+ - 5.260074602449205e-13
+ - -4.4765691262389773e-13
+ - -5.764059206065514e-13
+ - 8.173867941003998e-14
+ - 4.633270221481023e-13
+ - 4.319868030996932e-14
+ - -9.190307477709159e-14
+ - 7.623296525288703e-15
+ - -4.4680987967664343e-13
+ - 8.931962428796597e-13
+ - 6.056285572868247e-14
+- - -3.5869856920477026
+ - -1.4809635652319724
+ - 4.668194554286105
+ - -11.393792222605093
+ - 13.117241218411891
+ - -12.143570774166225
+ - -11.967090919651229
+ - 13.255656867757324
+ - -11.698320431648787
+ - 5.43708508249084
+ - -1.4869479275646018
+ - -4.506395484399512
+ - 2.1534618340845157
+ - 3.5689722420612955
+ - -7.741065748344062
+ - 12.590525234776388
+ - -13.637050640307738
+ - 10.338853894920264
+ - 11.766795323799188
+ - -12.583364429862188
+ - 9.817808407952905
+ - -2.9494435415004085
+ - -1.5648180619281036
+ - 6.209420209030865
+ - 0.17702836005260808
+ - -6.229478820778412
+ - 9.128012785524827
+ - -12.489360430850295
+ - 12.254441640699353
+ - -8.966999023636303
+ - -8.107222112904886
+ - 12.074950834911517
+ - -14.407527984949347
+ - 7.366033950955746
+ - -3.9272635013779236
+ - -2.247980806874951
+ - 4.218957975181782
+ - 1.1256976567610262
+ - -5.559346945795899
+ - 11.74977222117326
+ - -13.97787321880975
+ - 12.048702356762565
+ - 11.766598734373684
+ - -14.187206001329136
+ - 12.4203657841105
+ - -6.293091168642378
+ - 3.0970584741550677
+ - 1.2802667753407622
+ - -1.0524384369634682e-13
+ - -1.6559494118821572e-13
+ - -3.6994163971331567e-13
+ - 0.0
+ - -6.564505341220828e-15
+ - 7.093900933254765e-14
+ - 7.940933880509066e-14
+ - -2.3081647812679684e-14
+ - 1.15619997300212e-13
+ - -1.2705494208814505e-13
+ - -7.348010817431055e-14
+ - 4.1419911120735287e-13
+ - -3.254724099824649e-13
+ - -3.8201185921168945e-13
+ - -4.0742284762931846e-13
+ - -8.089164646278568e-14
+ - -9.056899788516606e-13
+ - 4.2711636365298095e-13
+ - -7.767292126321934e-13
+ - 5.293955920339377e-15
+ - -3.282252670610414e-13
+ - 2.9095581738185217e-13
+ - -3.4728350837426314e-13
+ - 2.159934015498466e-14
+ - 5.679355911340084e-13
+ - -2.7846208140985124e-13
+ - 1.5246593050577406e-14
+ - 4.277516383634217e-14
+ - -1.2091395322055137e-13
+ - 4.582448244645765e-13
+ - -1.444191175068582e-13
+ - 5.503596574784816e-13
+ - -2.814266967252413e-13
+ - 3.256841682192785e-13
+ - -1.6178329292557136e-13
+ - -8.533856943587076e-14
+ - -3.661299914506713e-13
+ - -6.352747104407253e-14
+ - 2.405573570202213e-13
+ - 6.350629522039117e-13
+ - 2.882029603032757e-13
+ - -1.3129010682441655e-14
+ - 1.291725244562808e-14
+ - -5.846644918422808e-13
+ - 5.54171305741126e-13
+ - -7.686823996332776e-14
+ - 2.140875774185244e-13
+ - 4.468098796766434e-14
+ - -3.5321273900504324e-13
+ - 3.0726120161649745e-13
+ - 2.644860377801553e-13
+ - -1.768181277393352e-13
+ - -2.490276864927643e-13
+ - 6.151576779434356e-13
+ - -5.31724932638887e-13
+ - -6.731794348303552e-13
+ - 4.8069119756681544e-14
+ - 4.4320998965081265e-13
+ - -1.7575933655526732e-14
+ - -9.952637130238029e-14
+ - 9.910285482875314e-14
+ - -4.512568026497285e-13
+ - 7.828702014997871e-13
+ - 5.463362509790237e-14
+- - -2.5994602337605306
+ - -2.453282875042354
+ - 5.390214960602139
+ - -11.755350465568423
+ - 13.211601048156815
+ - -11.890497435623278
+ - -12.118338218844867
+ - 13.03282163582399
+ - -11.241487515614338
+ - 4.661809458850931
+ - -0.6497424542265374
+ - -5.191918385271158
+ - 1.4010738211385079
+ - 4.355411525029787
+ - -8.382397952718447
+ - 12.778207402103208
+ - -13.552163426714726
+ - 9.920890825819669
+ - 11.762321727421645
+ - -12.193191050128002
+ - 9.201474007219977
+ - -2.0908156597200134
+ - -2.447695593634813
+ - 6.84904183941327
+ - 0.9797652792510659
+ - -6.986274953625288
+ - 9.661917267293273
+ - -12.497587916211408
+ - 11.961158443767825
+ - -8.395666110477643
+ - -8.63573421886939
+ - 12.306081555111144
+ - -14.348191831670887
+ - 6.761454045264364
+ - -3.1452811792606035
+ - -3.033277902798202
+ - 3.5267951504852544
+ - 1.9804361084342597
+ - -6.353975976707751
+ - 12.239749071080272
+ - -14.244058956204645
+ - 11.938597363457003
+ - 12.063534642806944
+ - -14.151845698930346
+ - 12.115314608070074
+ - -5.611824009299776
+ - 2.141439861259026
+ - 2.2855229096732197
+ - -1.4738373282224826e-13
+ - -1.8507669897506462e-13
+ - -3.801060350803673e-13
+ - -2.329340604949326e-15
+ - -1.8422966602781032e-14
+ - 1.0566736016997397e-13
+ - 8.682087709356578e-14
+ - 9.317362419797304e-15
+ - 1.1667878848427987e-13
+ - -1.3383120566617945e-13
+ - -9.380889890841376e-14
+ - 4.188577924172515e-13
+ - -3.263194429297192e-13
+ - -3.604125190567048e-13
+ - -4.105992211815221e-13
+ - -8.766791004082009e-14
+ - -8.766791004082009e-13
+ - 4.069993311556913e-13
+ - -7.398832794266313e-13
+ - -1.9058241313221758e-15
+ - -3.477070248478903e-13
+ - 3.049318610115481e-13
+ - -3.2843702529785496e-13
+ - -2.541098841762901e-15
+ - 5.484538333471595e-13
+ - -2.509335106240865e-13
+ - 2.7740329022578336e-14
+ - 4.510450444129149e-14
+ - -1.3700757921838308e-13
+ - 4.605741650695258e-13
+ - -1.3637230450794235e-13
+ - 5.603122946087197e-13
+ - -2.846030702774449e-13
+ - 3.1488449814178615e-13
+ - -1.5797164466292701e-13
+ - -7.771527291058206e-14
+ - -3.6930636500287495e-13
+ - -5.1033735072071595e-14
+ - 2.687212025164268e-13
+ - 6.820732807765253e-13
+ - 3.066259269060567e-13
+ - 6.776263578034403e-15
+ - -1.6517142471458857e-14
+ - -6.083814143654012e-13
+ - 5.912289971835016e-13
+ - -8.830318475126081e-14
+ - 1.81900325422861e-13
+ - 6.564505341220828e-14
+ - -3.4198955245392376e-13
+ - 3.057788939588024e-13
+ - 2.7401515843676616e-13
+ - -1.8846483076408183e-13
+ - -2.710505431213761e-13
+ - 6.420509740187597e-13
+ - -5.596770198982789e-13
+ - -7.125664668776802e-13
+ - 3.5151867311053464e-14
+ - 4.396100996249819e-13
+ - -3.197549375884984e-14
+ - -1.0016164601282102e-13
+ - 1.2980779916672153e-13
+ - -4.576095497541358e-13
+ - 7.354363564535463e-13
+ - 4.870439446712227e-14
+- - 0.2072233070984704
+ - -4.90217600411787
+ - 7.43792869982656
+ - -12.779868986565896
+ - 13.787162954061431
+ - -11.166415109848057
+ - -12.54654261672429
+ - 12.704399740866526
+ - -9.93367379524938
+ - 2.442166788655403
+ - 2.0566620501119273
+ - -7.14972807659205
+ - -0.7535325739012732
+ - 6.9124021959353925
+ - -10.207961101562258
+ - 13.295982768479071
+ - -12.97820475397096
+ - 8.711603614467402
+ - 11.730167721659399
+ - -10.750125457740063
+ - 7.430328030454135
+ - 0.35429645370611496
+ - -4.643662824103379
+ - 8.658007841236534
+ - 3.2592049469564297
+ - -8.818572230425142
+ - 11.170330412258894
+ - -12.514950935967997
+ - 11.433400138277205
+ - -6.767563059794567
+ - -10.14047334917546
+ - 13.271341436719325
+ - -14.171000009987255
+ - 5.026015838634043
+ - -0.5941551171859257
+ - -5.2764635161865945
+ - 1.5417201766737634
+ - 4.733194172410803
+ - -8.616418565872696
+ - 13.616950954130688
+ - -14.667192215811552
+ - 11.602681563670345
+ - 12.887617157941339
+ - -13.715617020888912
+ - 11.226628245131375
+ - -3.6685258437561985
+ - -0.26475357142529254
+ - 5.1375395783167095
+ - -2.541098841762901e-13
+ - -2.371692252312041e-13
+ - -4.1165801236558996e-13
+ - -1.1858461261560205e-14
+ - -4.404571325722362e-14
+ - 1.8465318250143747e-13
+ - 1.1180834903756764e-13
+ - 9.910285482875314e-14
+ - 1.1519648082658485e-13
+ - -1.6093625997831706e-13
+ - -1.5161889755851976e-13
+ - 4.438452643612534e-13
+ - -3.5321273900504324e-13
+ - -2.913793338554793e-13
+ - -4.2182240773264157e-13
+ - -9.232659125071874e-14
+ - -8.250100906256885e-13
+ - 3.5490680489955184e-13
+ - -6.386628422297425e-13
+ - 7.623296525288703e-15
+ - -3.9979955110402976e-13
+ - 3.4558944247975454e-13
+ - -2.430984558619842e-13
+ - -1.0587911840678754e-13
+ - 4.819617469876969e-13
+ - -1.7364175418713157e-13
+ - 5.082197683525802e-14
+ - 4.997494388800372e-14
+ - -1.6517142471458857e-13
+ - 4.472333961502706e-13
+ - -1.2705494208814505e-13
+ - 5.709002064493984e-13
+ - -2.73591641963139e-13
+ - 2.642742795433417e-13
+ - -1.5077186461126546e-13
+ - -4.912791094074942e-14
+ - -3.6422416731934915e-13
+ - -1.3552527156068805e-14
+ - 3.3373098121819433e-13
+ - 8.2924525536196e-13
+ - 3.4389537658524594e-13
+ - 6.437450399132683e-14
+ - -1.2959604092990795e-13
+ - -7.004962473793064e-13
+ - 6.85249654328729e-13
+ - -1.2451384324638215e-13
+ - 1.1434944787933055e-13
+ - 1.3552527156068805e-13
+ - -3.091670257478196e-13
+ - 3.1848438816761693e-13
+ - 2.998496633280223e-13
+ - -2.329340604949326e-13
+ - -3.091670257478196e-13
+ - 6.979551485375435e-13
+ - -6.318865786517081e-13
+ - -8.258571235729428e-13
+ - -1.6940658945086007e-15
+ - 4.396100996249819e-13
+ - -4.235164736271502e-14
+ - -9.317362419797304e-14
+ - 2.0837010502455788e-13
+ - -4.828087799349512e-13
+ - 5.869938324472301e-13
+ - 1.3552527156068805e-14
+- - 1.827704227676739
+ - -4.390849125490555
+ - 5.408689897546962
+ - -7.769937339979419
+ - 7.904153776390233
+ - -5.802416412111676
+ - -7.275099163881082
+ - 6.748794948646634
+ - -4.759627404564717
+ - 0.019357294331373755
+ - 2.637085259408573
+ - -5.185857415236559
+ - -1.7272572327319546
+ - 5.262710195509456
+ - -6.817966469777198
+ - 7.755623272310999
+ - -7.0704067138840605
+ - 4.142589698802991
+ - 6.546863463710193
+ - -5.2956127070984955
+ - 3.0827380791424672
+ - 1.686997790408347
+ - -4.091443472478381
+ - 5.94733048496916
+ - 3.2131021256447205
+ - -6.205925987691542
+ - 7.1683640154097645
+ - -7.009033439248428
+ - 5.9163255538589965
+ - -2.7919606527630596
+ - -5.6763719711803375
+ - 7.853026982507714
+ - -7.817307899827801
+ - 1.7594392207712923
+ - 1.059823442663989
+ - -4.311923419124877
+ - -0.3400689227582051
+ - 4.1631853438719695
+ - -6.194218903494122
+ - 8.459090057820918
+ - -8.623000140838823
+ - 6.292099066987015
+ - 7.71628611665676
+ - -7.568114639983121
+ - 5.744102243158
+ - -0.868828067825406
+ - -1.7702625471448703
+ - 4.613761566494897
+ - -2.1302878623445654e-13
+ - -1.6771252355635147e-13
+ - -2.473336205982557e-13
+ - -6.776263578034403e-15
+ - -4.1081097941833566e-14
+ - 1.6601845766184287e-13
+ - 7.919758056827708e-14
+ - 1.164670302474663e-13
+ - 6.776263578034403e-14
+ - -1.0206747014414319e-13
+ - -1.2197274440461925e-13
+ - 2.591920818598159e-13
+ - -2.0244087439377778e-13
+ - -1.2536087619363645e-13
+ - -2.3505164286306834e-13
+ - -5.929230630780102e-14
+ - -4.180107594699972e-13
+ - 1.7110065534536867e-13
+ - -2.879912020664621e-13
+ - -4.235164736271502e-15
+ - -2.5961559833344305e-13
+ - 2.1599340154984659e-13
+ - -9.910285482875314e-14
+ - -1.0714966782766899e-13
+ - 2.3589867581032264e-13
+ - -4.743384504624082e-14
+ - 4.446922973085077e-14
+ - 2.710505431213761e-14
+ - -1.198551620364835e-13
+ - 2.524158182817815e-13
+ - -6.352747104407253e-14
+ - 3.3711911300721153e-13
+ - -1.5670109524204556e-13
+ - 1.249373597200093e-13
+ - -8.343274530454858e-14
+ - -1.3552527156068805e-14
+ - -2.0582900618279498e-13
+ - 1.3976043629695956e-14
+ - 2.346281263894412e-13
+ - 5.463362509790237e-13
+ - 2.2573428044327104e-13
+ - 7.115076756936123e-14
+ - -1.2705494208814505e-13
+ - -4.3537493488871037e-13
+ - 4.4257471494037193e-13
+ - -8.682087709356578e-14
+ - 1.0587911840678754e-14
+ - 1.164670302474663e-13
+ - -1.5331296345302836e-13
+ - 1.7321823771350442e-13
+ - 1.9312351197398048e-13
+ - -1.5966571055743561e-13
+ - -2.1684043449710089e-13
+ - 4.357984513623375e-13
+ - -4.0149361699853836e-13
+ - -5.268544931921748e-13
+ - -2.710505431213761e-14
+ - 2.430984558619842e-13
+ - -4.277516383634217e-14
+ - -4.870439446712227e-14
+ - 1.6898307297723292e-13
+ - -2.8079142201480056e-13
+ - 2.380162581784584e-13
+ - -7.623296525288703e-15
+- - 5.168444249451511
+ - -2.3913140856227715
+ - -1.5269351303828327
+ - 7.368976472218358
+ - -10.263735166176692
+ - 9.498744021967815
+ - 8.33494980918537
+ - -11.1767245843237
+ - 9.686274649558017
+ - -5.920396979511619
+ - 2.2506107111607725
+ - 1.5453688206063338
+ - -3.4655961231684977
+ - -1.5535433194426964
+ - 3.9991688503887106
+ - -8.65299913937499
+ - 9.153615334250132
+ - -8.557580354032517
+ - -8.536930844507992
+ - 9.169259163491514
+ - -8.695897456011188
+ - 4.355717789156536
+ - -2.095139035399006
+ - -2.850352168735544
+ - 1.9511504971362839
+ - 1.6175490675699782
+ - -5.252531467958271
+ - 9.072207100775724
+ - -10.63099283775718
+ - 8.005093567188794
+ - 8.808377497775025
+ - -9.152913300892733
+ - 10.638489059742774
+ - -6.88380786887204
+ - 3.8831993793773507
+ - -0.35458355711261424
+ - -4.811916184238377
+ - 0.40041810174525
+ - 2.015006882688933
+ - -7.259369469788839
+ - 8.493038577299089
+ - -9.004716809679294
+ - -7.756774211529659
+ - 9.41777685396202
+ - -9.783503335708817
+ - 6.329958875654769
+ - -5.673601514238321
+ - 1.6787014634221753
+ - -6.437450399132683e-14
+ - 5.929230630780102e-14
+ - 2.439454888092385e-13
+ - 2.0328790734103208e-14
+ - -4.235164736271502e-14
+ - 1.0164395367051604e-13
+ - -5.929230630780102e-14
+ - 1.1519648082658485e-13
+ - -4.912791094074942e-14
+ - 9.656175598699024e-14
+ - -6.776263578034403e-15
+ - -3.066259269060567e-13
+ - 2.998496633280223e-13
+ - 3.1679032227310833e-13
+ - 3.032377951170395e-13
+ - 8.470329472543003e-15
+ - 8.199278929421627e-13
+ - -3.8116482626443515e-13
+ - 6.759322919089317e-13
+ - -1.2027867851011065e-13
+ - 1.5585406229479126e-13
+ - -1.7110065534536867e-13
+ - 2.1684043449710089e-13
+ - 2.879912020664621e-14
+ - -4.37069000783219e-13
+ - 2.727446090158847e-13
+ - 3.7269449679189215e-14
+ - -2.0328790734103208e-14
+ - 1.6940658945086007e-15
+ - -2.761327408049019e-13
+ - 1.6093625997831706e-13
+ - -3.1848438816761693e-13
+ - 1.2366681029912785e-13
+ - -1.9481757786848908e-13
+ - 1.3213713977167085e-13
+ - 5.929230630780102e-14
+ - 2.320870275476783e-13
+ - 7.792703114739563e-14
+ - -3.8963515573697816e-14
+ - -3.7100043089738355e-13
+ - -9.486769009248164e-14
+ - 5.251604272976662e-14
+ - 1.1858461261560205e-14
+ - 4.3368086899420177e-13
+ - -3.015437292225309e-13
+ - 4.235164736271502e-14
+ - -3.015437292225309e-13
+ - 1.6940658945086007e-15
+ - 2.846030702774449e-13
+ - -2.947674656444965e-13
+ - -1.4568966692773966e-13
+ - 1.2874900798265365e-13
+ - 4.404571325722362e-14
+ - -3.117081245895825e-13
+ - 2.829090043829363e-13
+ - 3.9302328752599536e-13
+ - -7.115076756936123e-14
+ - -3.7438856268640075e-13
+ - -1.1519648082658485e-13
+ - 5.082197683525802e-14
+ - 4.404571325722362e-14
+ - 3.3542504711270293e-13
+ - -6.420509740187597e-13
+ - -8.470329472543003e-15
+- - 6.207857600988087
+ - -1.9386884440859145
+ - -3.7701100498861093
+ - 12.231132045542397
+ - -16.304752050851768
+ - 14.392117787465068
+ - 13.3424165021932
+ - -17.128221111731627
+ - 14.295783587370252
+ - -7.788391839471928
+ - 1.872120150248988
+ - 3.731500241727433
+ - -3.9875457297711514
+ - -3.9879083186017072
+ - 7.488995479280658
+ - -13.907862094603317
+ - 14.119587067697525
+ - -12.600403898074731
+ - -13.358351258420432
+ - 13.560603558334789
+ - -12.438355239855737
+ - 5.180493833835236
+ - -1.6455061976161929
+ - -5.684606752289012
+ - 1.5224855141022395
+ - 3.927351182964416
+ - -9.244777160605913
+ - 14.22311877338313
+ - -16.139080088834305
+ - 11.44489543226193
+ - 13.443589100010854
+ - -14.651499617960205
+ - 16.546649470523455
+ - -9.623193732122411
+ - 4.5342202095258
+ - 0.9468140260586001
+ - -6.210870371203846
+ - -1.0584783661123394
+ - 4.674579924477743
+ - -12.30281499640923
+ - 13.755639451008847
+ - -13.888586159586103
+ - -12.712290260484384
+ - 14.627430011904332
+ - -14.73604321133058
+ - 8.610917629801792
+ - -7.110353506809246
+ - 0.7093676795164171
+ - -3.3881317890172014e-15
+ - 1.2874900798265365e-13
+ - 3.9641141931501256e-13
+ - 2.0328790734103208e-14
+ - -6.098637220230962e-14
+ - 1.0503208545953324e-13
+ - -9.486769009248164e-14
+ - 1.0164395367051604e-13
+ - -7.115076756936123e-14
+ - 1.6940658945086007e-13
+ - 2.0328790734103208e-14
+ - -4.845028458294598e-13
+ - 4.743384504624082e-13
+ - 4.438452643612534e-13
+ - 4.675621868843738e-13
+ - 2.371692252312041e-14
+ - 1.2536087619363645e-12
+ - -5.488773498207866e-13
+ - 9.825582188149884e-13
+ - -1.5924219408380846e-13
+ - 2.710505431213761e-13
+ - -3.117081245895825e-13
+ - 2.981555974335137e-13
+ - 6.098637220230962e-14
+ - -6.335806445462167e-13
+ - 3.9302328752599536e-13
+ - 5.082197683525802e-14
+ - -3.7269449679189215e-14
+ - 2.371692252312041e-14
+ - -4.573977915173222e-13
+ - 2.236166980751353e-13
+ - -5.183841637196318e-13
+ - 1.7957098481791167e-13
+ - -2.676624113323589e-13
+ - 2.0667603913004928e-13
+ - 7.453889935837843e-14
+ - 3.7608262858090935e-13
+ - 9.825582188149884e-14
+ - -1.1180834903756764e-13
+ - -6.776263578034403e-13
+ - -1.9312351197398048e-13
+ - 5.082197683525802e-14
+ - 6.437450399132683e-14
+ - 7.250602028496811e-13
+ - -5.285485590866834e-13
+ - 6.776263578034403e-14
+ - -4.2012834183813297e-13
+ - -5.082197683525802e-14
+ - 4.2012834183813297e-13
+ - -4.573977915173222e-13
+ - -2.507217523872729e-13
+ - 2.1684043449710089e-13
+ - 1.1519648082658485e-13
+ - -5.421010862427522e-13
+ - 5.149960319306146e-13
+ - 6.877907531704919e-13
+ - -8.470329472543003e-14
+ - -5.861467994999758e-13
+ - -1.5585406229479126e-13
+ - 7.115076756936123e-14
+ - 2.710505431213761e-14
+ - 5.421010862427522e-13
+ - -8.91078660511524e-13
+ - 1.0164395367051604e-14
+- - 2.5146310960253144
+ - -0.13456299107983757
+ - -2.8767103635933546
+ - 7.310636982432031
+ - -9.376645557658382
+ - 7.9092007658135115
+ - 7.726664694567559
+ - -9.519827273266527
+ - 7.646024717703031
+ - -3.6270110803379585
+ - 0.1790593073490991
+ - 2.818723440621269
+ - -1.4932576805344275
+ - -3.094440625020975
+ - 4.905537729646574
+ - -8.083573965639587
+ - 7.897822163106209
+ - -6.7224915861621035
+ - -7.575125115114426
+ - 7.268660581889884
+ - -6.428092703715574
+ - 2.06279203524159
+ - -0.05940723192317474
+ - -3.87871089704957
+ - 0.04440497669707614
+ - 2.9741744922299618
+ - -5.791267939694945
+ - 8.08005132748066
+ - -8.8865792165524
+ - 5.911541263819826
+ - 7.441803788853851
+ - -7.74699917496528
+ - 9.329522027179534
+ - -4.842584084296298
+ - 1.746158899638266
+ - 1.3403629961404067
+ - -2.8164470074924663
+ - -1.50177355230087
+ - 3.46491446843954
+ - -7.481406702660373
+ - 8.049760501459629
+ - -7.767863955684587
+ - -7.51625705690589
+ - 8.236361641890227
+ - -8.049840689406265
+ - 4.190633562049656
+ - -3.0863260965110397
+ - -0.6236441924100516
+ - 4.743384504624082e-14
+ - 8.809142651444724e-14
+ - 2.422514229147299e-13
+ - 6.776263578034403e-15
+ - -5.082197683525802e-15
+ - 3.8963515573697816e-14
+ - -6.098637220230962e-14
+ - 2.0328790734103208e-14
+ - -3.049318610115481e-14
+ - 1.1858461261560205e-13
+ - 3.8963515573697816e-14
+ - -2.829090043829363e-13
+ - 2.795208725939191e-13
+ - 2.253107639696439e-13
+ - 2.625802136488331e-13
+ - 1.3552527156068805e-14
+ - 7.013432803265607e-13
+ - -2.862971361719535e-13
+ - 5.268544931921748e-13
+ - -7.962109704190423e-14
+ - 1.9312351197398048e-13
+ - -1.8804131429045468e-13
+ - 1.4060746924421386e-13
+ - 6.776263578034403e-14
+ - -3.4897757426877174e-13
+ - 1.9142944607947188e-13
+ - 6.776263578034403e-15
+ - -2.371692252312041e-14
+ - 2.710505431213761e-14
+ - -2.642742795433417e-13
+ - 1.2536087619363645e-13
+ - -3.066259269060567e-13
+ - 1.0333801956502464e-13
+ - -1.3383120566617945e-13
+ - 9.825582188149884e-14
+ - 4.404571325722362e-14
+ - 2.202285662861181e-13
+ - 3.5575383784680614e-14
+ - -6.945670167485263e-14
+ - -4.438452643612534e-13
+ - -1.2874900798265365e-13
+ - -1.1858461261560205e-14
+ - 7.792703114739563e-14
+ - 4.404571325722362e-13
+ - -3.5405977195229754e-13
+ - 5.082197683525802e-14
+ - -2.0667603913004928e-13
+ - -4.743384504624082e-14
+ - 2.371692252312041e-13
+ - -2.558039500707987e-13
+ - -1.5754812818929986e-13
+ - 1.3721933745519665e-13
+ - 8.809142651444724e-14
+ - -3.3373098121819433e-13
+ - 3.3881317890172014e-13
+ - 4.404571325722362e-13
+ - -3.218725199566341e-14
+ - -3.1509625637859973e-13
+ - -8.978549240895584e-14
+ - 3.8963515573697816e-14
+ - -2.0328790734103208e-14
+ - 3.049318610115481e-13
+ - -4.590918574118308e-13
+ - 1.1858461261560205e-14
+- - -9.276174047922732
+ - 5.56471308841492
+ - -1.3362308026281497
+ - -6.098052303240957
+ - 9.345660050750391
+ - -10.762465864318921
+ - -7.931931307420047
+ - 11.566227277680483
+ - -11.788020050196275
+ - 9.2320201618935
+ - -6.518462368385824
+ - 1.2055823768506777
+ - 6.625287824033052
+ - -2.4039890510503983
+ - -1.5030911461304453
+ - 8.14659493850086
+ - -10.570346155687952
+ - 10.505741214665928
+ - 8.812272996805145
+ - -11.821094828141645
+ - 11.4423641556959
+ - -7.936147966047684
+ - 4.903951576057546
+ - 0.3632955891346149
+ - -5.230283130815824
+ - 0.5789553315272835
+ - 3.2503936073753135
+ - -9.274985245437081
+ - 11.289033216974229
+ - -10.514529619359937
+ - -9.77103320037837
+ - 11.843944996824485
+ - -11.158262821640946
+ - 9.532936384638996
+ - -7.9723414354773166
+ - 3.5586687328770967
+ - 7.7656756855398
+ - -4.685088122496225
+ - 1.1505008553925773
+ - 5.49944248297806
+ - -8.479855103576835
+ - 9.72644946439095
+ - 6.798802359182422
+ - -10.648982043634337
+ - 11.306955149304429
+ - -9.249005244408169
+ - 8.871650438597905
+ - -5.760138959198895
+ - 1.9778219318387913e-13
+ - -3.006966962752766e-14
+ - -1.3637230450794235e-13
+ - -1.5246593050577406e-14
+ - 1.164670302474663e-13
+ - -1.7575933655526732e-13
+ - 1.0164395367051604e-14
+ - -2.185345003916095e-13
+ - 5.039846036163087e-14
+ - -5.505714157152952e-15
+ - 1.520424140321469e-13
+ - 2.718975760686304e-13
+ - -2.0879362149818503e-13
+ - -4.4765691262389773e-13
+ - -2.837560373301906e-13
+ - -3.6845933205562065e-14
+ - -8.571973426213519e-13
+ - 4.696797692525095e-13
+ - -8.211984423630442e-13
+ - 1.0714966782766899e-13
+ - 6.776263578034403e-15
+ - 1.6305384234645282e-13
+ - -3.4982460721602604e-13
+ - 1.7914746834428452e-13
+ - 5.247369108240391e-13
+ - -4.552802091491864e-13
+ - -8.766791004082009e-14
+ - 4.319868030996932e-14
+ - 9.317362419797304e-15
+ - 3.21449003483007e-13
+ - -1.266314256145179e-13
+ - 3.032377951170395e-13
+ - -1.5712461171567271e-13
+ - 3.1848438816761693e-13
+ - -1.9947625907838773e-13
+ - -1.3383120566617945e-13
+ - -2.659683454378503e-13
+ - -1.283254915090265e-13
+ - 6.437450399132683e-14
+ - 1.6135977645194421e-13
+ - 7.877406409464993e-14
+ - -1.6686549060909717e-13
+ - 2.1980504981249094e-13
+ - -2.9857911390714087e-13
+ - 1.452661504541125e-13
+ - 1.7787691892340307e-14
+ - 3.9641141931501256e-13
+ - -9.402065714522734e-14
+ - -2.922263668027336e-13
+ - 2.5453340064991725e-13
+ - 1.130788984584491e-13
+ - -8.131516293641283e-14
+ - -1.1858461261560205e-14
+ - 2.3928680759933985e-13
+ - -1.9566461081574338e-13
+ - -1.9862922613113343e-13
+ - 1.4823076576950256e-13
+ - 4.1419911120735287e-13
+ - 4.573977915173222e-14
+ - -5.929230630780102e-14
+ - -1.7025362239811437e-13
+ - -3.1043757516870107e-13
+ - 8.707498697774207e-13
+ - 6.818615225397118e-14
+- - -9.308227543451597
+ - 4.870086866466909
+ - -0.22108384134337744
+ - -8.071570992330233
+ - 11.501946942368212
+ - -12.523901521287142
+ - -9.882745898253495
+ - 13.5739384549397
+ - -13.369985420453348
+ - 9.663847499291466
+ - -6.243346420740697
+ - 0.1327401983413771
+ - 6.556209580821682
+ - -1.3668546640836128
+ - -3.056576307154412
+ - 10.2117952775311
+ - -12.595585685218278
+ - 11.893885188418633
+ - 10.645215350828275
+ - -13.518022203349929
+ - 12.64326874131856
+ - -7.9366849435319375
+ - 4.24385595193128
+ - 1.6743722811592459
+ - -4.773379039306792
+ - -0.7416704199996602
+ - 4.960982466023952
+ - -11.23008390663213
+ - 13.10273683744933
+ - -11.60930948482003
+ - -11.45911740053669
+ - 13.215094938399643
+ - -12.838447643295527
+ - 10.357395808038909
+ - -8.107839077573525
+ - 2.78503766787061
+ - 8.051319315124253
+ - -3.992926617044304
+ - -0.1442915325076546
+ - 7.5950840377352895
+ - -10.746117133170458
+ - 11.54627100703164
+ - 8.792948612462201
+ - -12.786152501404061
+ - 13.080762011671585
+ - -9.866582680991778
+ - 8.900531724624756
+ - -5.022987309441796
+ - 1.5415999640028266e-13
+ - -6.437450399132683e-14
+ - -2.0921713797181218e-13
+ - -1.4823076576950256e-14
+ - 1.0291450309139749e-13
+ - -1.528894469794012e-13
+ - 2.837560373301906e-14
+ - -2.0328790734103208e-13
+ - 6.183340514956392e-14
+ - -4.1504614415460717e-14
+ - 1.2536087619363645e-13
+ - 3.392366953753473e-13
+ - -2.73591641963139e-13
+ - -4.938202082492571e-13
+ - -3.5067164016328034e-13
+ - -4.573977915173222e-14
+ - -1.0033105260227188e-12
+ - 5.175371307723775e-13
+ - -9.330067914006118e-13
+ - 1.0206747014414319e-13
+ - -6.056285572868247e-14
+ - 2.1133472033994793e-13
+ - -3.9471735342050396e-13
+ - 1.6051274350468991e-13
+ - 6.098637220230962e-13
+ - -4.781500987250525e-13
+ - -7.792703114739563e-14
+ - 5.251604272976662e-14
+ - -1.6940658945086007e-14
+ - 3.97681968735894e-13
+ - -1.49501315190384e-13
+ - 3.925997710523682e-13
+ - -1.9735867671025198e-13
+ - 3.5151867311053464e-13
+ - -2.1048768739269363e-13
+ - -1.452661504541125e-13
+ - -3.3034284942917713e-13
+ - -1.3129010682441655e-13
+ - 9.529120656610879e-14
+ - 2.8841471854008927e-13
+ - 1.3044307387716225e-13
+ - -1.5246593050577406e-13
+ - 2.0074680849926918e-13
+ - -4.069993311556913e-13
+ - 2.6469779601696886e-13
+ - 1.2705494208814505e-15
+ - 4.129285617864714e-13
+ - -7.835054762102278e-14
+ - -3.46859991900636e-13
+ - 3.057788939588024e-13
+ - 1.5712461171567271e-13
+ - -1.139259314057034e-13
+ - -6.564505341220828e-14
+ - 3.4643647542700884e-13
+ - -3.066259269060567e-13
+ - -3.324604317973129e-13
+ - 1.478072492958754e-13
+ - 4.811147140404426e-13
+ - 5.082197683525802e-14
+ - -6.945670167485263e-14
+ - -1.401839527705867e-13
+ - -3.866705404215881e-13
+ - 9.584177798182408e-13
+ - 7.157428404298838e-14
+- - -0.48010990478167825
+ - -1.2358779548509269
+ - 2.321228423560407
+ - -4.483555233069907
+ - 5.017837509893025
+ - -4.237827181937936
+ - -4.5164773557999105
+ - 4.799220088313261
+ - -3.900222701116932
+ - 1.331557697766429
+ - 0.29799231165992013
+ - -2.2367172618254383
+ - 0.14657337529015865
+ - 2.1072955830450115
+ - -3.382970959180795
+ - 4.770186673651172
+ - -4.792458780908106
+ - 3.4295590564577556
+ - 4.303923360508622
+ - -4.147112163469493
+ - 3.071422643503397
+ - -0.35335944798990504
+ - -1.191489751165685
+ - 2.814910949542616
+ - 0.743239934439626
+ - -2.79348666027947
+ - 3.7958911604902785
+ - -4.58522866825972
+ - 4.372765291295688
+ - -2.803697184413518
+ - -4.037241350849798
+ - 3.4526626448822513
+ - -2.3912336451306726
+ - 2.1830739321179053
+ - -0.6430789483975462
+ - -1.4935520117050054
+ - 0.9544182127517874
+ - 1.2696364274239342
+ - -2.7129644988158272
+ - 4.717687382664169
+ - -5.214197623982941
+ - 4.316486122594482
+ - 4.558689716828389
+ - -5.0348905040780245
+ - 4.288401632869082
+ - -1.7288365495308486
+ - 0.45537597791762335
+ - 1.317975826007266
+ - -8.491505296224361e-14
+ - -7.22095587534291e-14
+ - -1.5606582053160484e-13
+ - 1.6940658945086007e-15
+ - -1.588186776101813e-14
+ - 3.134021904840911e-14
+ - 4.235164736271502e-14
+ - 2.583450489125616e-14
+ - 2.541098841762901e-14
+ - -7.792703114739563e-14
+ - -5.124549330888517e-14
+ - 1.5924219408380846e-13
+ - -1.3976043629695956e-13
+ - -1.1667878848427987e-13
+ - -1.5352472168984194e-13
+ - -2.4775713707188285e-14
+ - -3.502481236896532e-13
+ - 1.274784585617722e-13
+ - -2.7083878488456253e-13
+ - -1.3552527156068805e-14
+ - -1.4886604047994328e-13
+ - 1.1011428314305904e-13
+ - -1.0820845901173687e-13
+ - -3.197549375884984e-14
+ - 2.0688779736686286e-13
+ - -7.538593230563273e-14
+ - 1.376428539288238e-14
+ - 3.006966962752766e-14
+ - -5.336307567702092e-14
+ - 1.7724164421296235e-13
+ - -5.421010862427522e-14
+ - 2.0709955560367643e-13
+ - -9.804406364468526e-14
+ - 8.406802001498931e-14
+ - -3.4304834363799164e-14
+ - -2.3505164286306834e-14
+ - -1.4420735927004463e-13
+ - -1.461131834013668e-14
+ - 7.792703114739563e-14
+ - 2.8079142201480056e-13
+ - 1.1265538198482195e-13
+ - 2.414043899674756e-14
+ - -2.5199230180815435e-14
+ - -2.4839241178232357e-13
+ - 2.6215669717520595e-13
+ - -3.494010907423989e-14
+ - 5.675120746603812e-14
+ - 3.176373552203626e-14
+ - -1.3573702979750163e-13
+ - 1.1583175553702557e-13
+ - 9.931461306556671e-14
+ - -7.602120701607346e-14
+ - -1.1625527201065272e-13
+ - 2.3759274170483125e-13
+ - -2.439454888092385e-13
+ - -2.9349691622361507e-13
+ - -4.2351647362715017e-16
+ - 1.6601845766184287e-13
+ - 1.545835128739098e-14
+ - -2.795208725939191e-14
+ - 5.251604272976662e-14
+ - -1.6961834768767364e-13
+ - 2.310282363636104e-13
+ - 3.1763735522036263e-15
+- - 10.26792670616433
+ - -9.670119565457844
+ - 6.98561925446306
+ - -2.851288691376187
+ - 0.10003332304280732
+ - 3.434010225017997
+ - -0.6785310363269312
+ - -3.1263087491464754
+ - 5.469195713319373
+ - -8.252382279884623
+ - 8.679020219074193
+ - -6.6307445510736125
+ - -7.785900315817773
+ - 7.802021209140293
+ - -5.950047892984824
+ - 0.9997707059139069
+ - 1.9207842273407731
+ - -4.981165117248894
+ - -0.8905353137841373
+ - 4.941008803843304
+ - -6.954605889101039
+ - 8.916847250201624
+ - -8.757678402228388
+ - 6.03901028780537
+ - 8.125210187082256
+ - -7.144994831824006
+ - 4.758813675470964
+ - 0.8098684283012259
+ - -3.7688156324159237
+ - 6.4336839784498085
+ - 2.6804441859811186
+ - -6.568776121133395
+ - 9.164877257208401
+ - -6.659785550744467
+ - 8.293820509806451
+ - -7.804000002563171
+ - -7.323217615722096
+ - 8.669332682999256
+ - -7.660295622020239
+ - 4.124619516164639
+ - -1.6139788720869486
+ - -1.9825063719511198
+ - 2.1651499466336457
+ - 1.4587343886885888
+ - -3.985127740957035
+ - 7.358032194118546
+ - -9.828904050411786
+ - 10.09885754843564
+ - -4.377042754936597e-13
+ - -1.2620790914089075e-13
+ - -1.8973538018496328e-13
+ - 2.244637310223896e-14
+ - -1.7522994096323338e-13
+ - 2.814266967252413e-13
+ - 8.75620309224133e-14
+ - 3.3002521207395677e-13
+ - -5.505714157152952e-15
+ - -1.7406527066075872e-13
+ - -3.0450834453792097e-13
+ - 3.5469504666273827e-14
+ - -6.109225132071641e-14
+ - 2.8079142201480056e-13
+ - -5.1880768019325896e-15
+ - -1.3234889800848443e-14
+ - 2.430984558619842e-13
+ - -2.7909735612029196e-13
+ - 3.8624702394796095e-13
+ - -1.6675961149069038e-13
+ - -3.5321273900504324e-13
+ - 5.293955920339377e-14
+ - 1.8200620454126779e-13
+ - -2.9360279534202186e-13
+ - -1.6517142471458857e-13
+ - 3.801060350803673e-13
+ - 1.3901928246811204e-13
+ - 1.9693516023662483e-14
+ - -1.3361944742936588e-13
+ - 1.2811373327221293e-14
+ - 3.134021904840911e-14
+ - 1.0640851399882148e-13
+ - -3.5998900258307764e-14
+ - -1.9926450084157415e-13
+ - 1.6443027088574105e-13
+ - 1.130788984584491e-13
+ - -4.023406499457927e-15
+ - 1.2112571145736495e-13
+ - 1.0725554694607578e-13
+ - 4.4850394557115203e-13
+ - 1.6263032587282567e-13
+ - 2.5887444450459554e-13
+ - -3.247312561536174e-13
+ - -2.0879362149818503e-13
+ - 4.2605757246891307e-13
+ - -1.0333801956502464e-13
+ - -3.534244972418568e-13
+ - 1.895236219481497e-13
+ - 4.213988912590144e-14
+ - -4.648093298057973e-14
+ - 9.063252535621014e-14
+ - -7.64447234897006e-14
+ - -2.541098841762901e-13
+ - 2.5305109299222223e-13
+ - -3.2176664083822734e-13
+ - -4.3230444045491354e-13
+ - -1.8814719340886146e-13
+ - -1.2123159057577174e-13
+ - -1.9693516023662483e-14
+ - 7.835054762102278e-15
+ - 3.2769587146900744e-13
+ - -7.517417406881916e-15
+ - -5.305602623364124e-13
+ - -8.099752558119247e-14
+- - 11.222890524794854
+ - -9.94739775159396
+ - 6.659505091080986
+ - -1.4150291017412082
+ - -1.74159346058779
+ - 5.255967740416417
+ - 0.9344973648538801
+ - -5.131838439798203
+ - 7.320948849389604
+ - -9.368403834740512
+ - 9.226837296092318
+ - -6.30888517717112
+ - -8.42987677685515
+ - 7.616608884571462
+ - -5.15418500616293
+ - -0.6824151339968568
+ - 3.8324775246960585
+ - -6.622486662942783
+ - -2.544124621383148
+ - 6.843725781161338
+ - -8.613477916387806
+ - 9.722724983034087
+ - -8.982176522996893
+ - 5.4592335967598995
+ - 8.466977081776985
+ - -6.656916543413867
+ - 3.720515351273999
+ - 2.5610138668321083
+ - -5.6658699388879885
+ - 7.954420207483949
+ - 4.37138057204275
+ - -8.338909110027423
+ - 10.740560061536359
+ - -7.197531481961105
+ - 9.159259808461252
+ - -7.8449178697497715
+ - -8.229847692241513
+ - 8.858338868928808
+ - -7.240938470125226
+ - 2.6985599026250005
+ - 0.1852972475824849
+ - -3.723467201634914
+ - 0.6492105381790421
+ - 3.4247594147586033
+ - -5.867483097704041
+ - 8.552694081559377
+ - -10.741486094391739
+ - 10.378367834887747
+ - -4.400865556578124e-13
+ - -1.0984958534704208e-13
+ - -1.469602163486211e-13
+ - 2.3928680759933985e-14
+ - -1.826414792517085e-13
+ - 2.9111463605946235e-13
+ - 7.893288277226011e-14
+ - 3.4553650292055114e-13
+ - -1.4717197458543468e-14
+ - -1.581834028997406e-13
+ - -3.093258444254298e-13
+ - -2.022291161569642e-14
+ - -1.4081922748102743e-14
+ - 3.450600468877206e-13
+ - 5.09807955128682e-14
+ - -5.1880768019325896e-15
+ - 3.9064100736184264e-13
+ - -3.477599644070937e-13
+ - 5.155783670818519e-13
+ - -1.7496524316721641e-13
+ - -3.2510183306804115e-13
+ - 1.641126335305207e-14
+ - 2.354751593366955e-13
+ - -3.04243646741904e-13
+ - -2.542687028539003e-13
+ - 4.3717487990162576e-13
+ - 1.4404854059243445e-13
+ - 1.0323214044661785e-14
+ - -1.239844476543482e-13
+ - -5.113961419047838e-14
+ - 5.3574833913834496e-14
+ - 3.8116482626443515e-14
+ - -2.6999175193730823e-15
+ - -2.448984008748996e-13
+ - 1.9005301754018364e-13
+ - 1.3065483211397583e-13
+ - 4.8757334026325663e-14
+ - 1.3568409023829824e-13
+ - 8.634442106073524e-14
+ - 3.7962957904753673e-13
+ - 1.3367238698856927e-13
+ - 2.702564497333252e-13
+ - -3.4024254700021177e-13
+ - -1.326665353637048e-13
+ - 3.620007058328066e-13
+ - -9.77793658486683e-14
+ - -4.011230400841146e-13
+ - 1.9185296255309903e-13
+ - 9.5185327447702e-14
+ - -9.280304728354928e-14
+ - 6.072167440629266e-14
+ - -5.458068553869898e-14
+ - -2.3081647812679684e-13
+ - 1.8460024294223408e-13
+ - -2.5617452698522246e-13
+ - -3.567596894716706e-13
+ - -2.0180559968333706e-13
+ - -1.9164120431628545e-13
+ - -2.710505431213761e-14
+ - 1.7999450129153882e-14
+ - 3.3346628342217736e-13
+ - 5.505714157152952e-14
+ - -6.556035011748285e-13
+ - -8.793260783683705e-14
+- - -7.931352167317246
+ - 8.053661708547876
+ - -7.468019499585372
+ - 5.826045042295543
+ - -4.753603363607659
+ - 0.5425615723030054
+ - 4.097067646143602
+ - -1.9650391806381167
+ - -1.380754169457821
+ - 5.66903325080941
+ - -8.030224575080306
+ - 7.147066188372264
+ - 6.22349621475813
+ - -8.731324612368807
+ - 7.481975537156707
+ - -4.52350006224936
+ - 1.4283508462703411
+ - 1.384215794224062
+ - -2.6181842099912105
+ - -1.526581001233698
+ - 3.2582138553718436
+ - -6.949004718291274
+ - 7.283420109431797
+ - -7.0794871181002765
+ - -7.154683045335248
+ - 7.2256899380464334
+ - -6.8148015998736104
+ - 2.936402936734531
+ - -1.1118307290620462
+ - -3.011439181425587
+ - 0.999121049254015
+ - 1.878090744888542
+ - -5.555756482048947
+ - 7.068300915528336
+ - -6.982379286507138
+ - 7.516290043967019
+ - 5.217638509293427
+ - -8.778301993272024
+ - 8.341820650967948
+ - -7.011499704664217
+ - 4.618725269525951
+ - -1.736055183118749
+ - -5.290267150308631
+ - 1.9857374827706633
+ - -0.09648038614661172
+ - -4.611233119190815
+ - 6.8633535100846625
+ - -9.19665959160397
+ - 3.9641141931501256e-13
+ - 1.4738373282224826e-13
+ - 2.812149384884277e-13
+ - -1.3552527156068805e-14
+ - 1.4060746924421386e-13
+ - -1.9820570965750628e-13
+ - -1.1011428314305904e-13
+ - -2.862971361719535e-13
+ - -1.6940658945086007e-15
+ - 2.1514636860259229e-13
+ - 2.829090043829363e-13
+ - -1.7279472123987727e-13
+ - 2.1514636860259229e-13
+ - -1.5754812818929986e-13
+ - 1.3552527156068805e-13
+ - -1.6940658945086007e-15
+ - 1.4738373282224826e-13
+ - 1.1180834903756764e-13
+ - -8.978549240895584e-14
+ - 7.115076756936123e-14
+ - 3.8455295805345235e-13
+ - -1.3044307387716225e-13
+ - -1.3721933745519665e-13
+ - 3.4050724479622874e-13
+ - -1.3552527156068805e-14
+ - -2.490276864927643e-13
+ - -1.0503208545953324e-13
+ - -3.3881317890172014e-14
+ - 1.1011428314305904e-13
+ - -1.1180834903756764e-13
+ - 4.573977915173222e-14
+ - -2.0328790734103208e-13
+ - 5.759824041329242e-14
+ - 1.5077186461126546e-13
+ - -1.0164395367051604e-13
+ - -8.978549240895584e-14
+ - 8.131516293641283e-14
+ - -8.978549240895584e-14
+ - -9.486769009248164e-14
+ - -6.14945919706622e-13
+ - -1.7279472123987727e-13
+ - -2.422514229147299e-13
+ - 3.5575383784680614e-13
+ - 4.2690460541616737e-13
+ - -5.353248226647178e-13
+ - 1.2027867851011065e-13
+ - 1.9142944607947188e-13
+ - -1.9820570965750628e-13
+ - 6.776263578034403e-14
+ - -9.994988777600744e-14
+ - -1.3383120566617945e-13
+ - 1.4738373282224826e-13
+ - 2.354751593366955e-13
+ - -3.3711911300721153e-13
+ - 4.2521053952165877e-13
+ - 5.827586677109586e-13
+ - 1.5415999640028266e-13
+ - -5.082197683525802e-14
+ - -6.268043809681823e-14
+ - -6.776263578034403e-15
+ - -2.744386749103933e-13
+ - 1.6432439176733427e-13
+ - 2.879912020664621e-13
+ - 9.147955830346444e-14
+- - -14.031573822461189
+ - 13.560476167468282
+ - -11.952626239593632
+ - 8.109676603601612
+ - -5.904418349677435
+ - -0.9798819908466618
+ - 5.083070908003643
+ - -1.1479446465946366
+ - -4.174688877932389
+ - 10.473573373928291
+ - -13.750437004279055
+ - 11.427849694565346
+ - 10.900600834075727
+ - -14.150636170325285
+ - 11.492135731023502
+ - -5.714690378725233
+ - 0.41065171489763735
+ - 3.9631387782378718
+ - -2.6094628365836106
+ - -4.441916586100758
+ - 7.064719686538382
+ - -12.261636634179972
+ - 12.238800019276397
+ - -11.052942246910812
+ - -12.123474860041249
+ - 11.411701860566659
+ - -10.146090950127112
+ - 3.03172083943105
+ - 0.1444414032747904
+ - -6.517855991648686
+ - -0.09413907509358534
+ - 4.933426526633955
+ - -10.760320529200564
+ - 11.611340901655426
+ - -12.177738545451676
+ - 12.408146460722365
+ - 9.515488932417023
+ - -14.61270249393457
+ - 13.293838229696442
+ - -10.07160480248806
+ - 5.775563932544213
+ - -1.0685053270075306
+ - -7.147518627944564
+ - 1.272131503086021
+ - 1.7746272917375954
+ - -8.814668008020698
+ - 12.254717980391376
+ - -15.419481380133641
+ - 6.454391058077769e-13
+ - 2.185345003916095e-13
+ - 4.2859867131067597e-13
+ - -2.371692252312041e-14
+ - 2.320870275476783e-13
+ - -3.2864878353466853e-13
+ - -1.8126505071242027e-13
+ - -4.79420648145934e-13
+ - 1.5246593050577406e-14
+ - 3.4389537658524594e-13
+ - 4.692562527788824e-13
+ - -2.202285662861181e-13
+ - 2.981555974335137e-13
+ - -3.2017845406212553e-13
+ - 1.7110065534536867e-13
+ - -1.6940658945086007e-14
+ - 7.115076756936123e-14
+ - 2.507217523872729e-13
+ - -2.795208725939191e-13
+ - 1.2197274440461925e-13
+ - 6.047815243395704e-13
+ - -1.7618285302889447e-13
+ - -2.761327408049019e-13
+ - 5.522654816098038e-13
+ - 6.437450399132683e-14
+ - -4.777265822514254e-13
+ - -1.9142944607947188e-13
+ - -5.082197683525802e-14
+ - 1.7787691892340307e-13
+ - -1.2197274440461925e-13
+ - 4.404571325722362e-14
+ - -2.710505431213761e-13
+ - 6.437450399132683e-14
+ - 3.032377951170395e-13
+ - -1.8973538018496328e-13
+ - -1.8126505071242027e-13
+ - 7.453889935837843e-14
+ - -1.6263032587282567e-13
+ - -1.3552527156068805e-13
+ - -9.368184396632562e-13
+ - -2.490276864927643e-13
+ - -4.0996394647108136e-13
+ - 5.878408653944844e-13
+ - 6.166399856011306e-13
+ - -8.199278929421627e-13
+ - 1.9481757786848908e-13
+ - 3.6591823321385775e-13
+ - -3.3542504711270293e-13
+ - 6.098637220230962e-14
+ - -1.1180834903756764e-13
+ - -1.9142944607947188e-13
+ - 2.202285662861181e-13
+ - 3.6253010142484055e-13
+ - -4.9636130709102e-13
+ - 6.454391058077769e-13
+ - 8.707498697774207e-13
+ - 2.676624113323589e-13
+ - -6.776263578034403e-15
+ - -8.300922883092143e-14
+ - -1.1858461261560205e-14
+ - -4.506215279392878e-13
+ - 2.0328790734103208e-13
+ - 6.183340514956392e-13
+ - 1.4907779871675686e-13
+- - -8.828065116318488
+ - 8.206089441015445
+ - -6.923661925579206
+ - 4.06153712055393
+ - -2.52819014894318
+ - -1.5352177895565593
+ - 2.1725658069260994
+ - 0.3806168075517605
+ - -3.4468404262913963
+ - 6.799969847483582
+ - -8.4351550899228
+ - 6.613874337530029
+ - 6.8062996517536
+ - -8.289030807012333
+ - 6.40414474774875
+ - -2.5117962549699064
+ - -0.743938249864381
+ - 3.210644269599282
+ - -0.6838781039594014
+ - -3.6193159264925328
+ - 5.060782954490828
+ - -7.6993212586092605
+ - 7.393956392853065
+ - -6.257058513134208
+ - -7.374619026531411
+ - 6.5302171577376225
+ - -5.478778117353769
+ - 0.8828984563135326
+ - 1.0909303226609455
+ - -4.66448562914323
+ - -0.940988744453785
+ - 3.8668712885870424
+ - -7.2111071683484615
+ - 6.8822239716578535
+ - -6.840930194181291
+ - 7.385555474133316
+ - 6.121635661066556
+ - -8.759228182920417
+ - 7.670564270770642
+ - -5.231821049714294
+ - 2.499165695161007
+ - 0.27632333172455054
+ - -3.4494178850429007
+ - -0.2609499033977063
+ - 2.0378744186115396
+ - -5.85689431424123
+ - 7.763488286788306
+ - -9.298416872101528
+ - 3.8794108984246956e-13
+ - 1.2027867851011065e-13
+ - 2.253107639696439e-13
+ - -1.3552527156068805e-14
+ - 1.5415999640028266e-13
+ - -1.9481757786848908e-13
+ - -9.486769009248164e-14
+ - -2.846030702774449e-13
+ - 1.3552527156068805e-14
+ - 2.0328790734103208e-13
+ - 2.795208725939191e-13
+ - -8.131516293641283e-14
+ - 1.4907779871675686e-13
+ - -2.1345230270808369e-13
+ - 8.131516293641283e-14
+ - -1.5246593050577406e-14
+ - -3.3881317890172014e-14
+ - 1.8126505071242027e-13
+ - -2.422514229147299e-13
+ - 7.623296525288703e-14
+ - 3.4897757426877174e-13
+ - -7.962109704190423e-14
+ - -1.9481757786848908e-13
+ - 3.3711911300721153e-13
+ - 8.978549240895584e-14
+ - -3.015437292225309e-13
+ - -1.2536087619363645e-13
+ - -1.6940658945086007e-14
+ - 9.656175598699024e-14
+ - -4.404571325722362e-14
+ - 1.3552527156068805e-14
+ - -1.3383120566617945e-13
+ - 6.776263578034403e-15
+ - 1.9989977555201488e-13
+ - -1.2536087619363645e-13
+ - -1.1180834903756764e-13
+ - 1.6940658945086007e-14
+ - -1.1011428314305904e-13
+ - -6.437450399132683e-14
+ - -5.149960319306146e-13
+ - -1.4230153513872246e-13
+ - -2.456395547037471e-13
+ - 3.5744790374131474e-13
+ - 3.3203691532368573e-13
+ - -4.590918574118308e-13
+ - 1.1011428314305904e-13
+ - 2.456395547037471e-13
+ - -1.9820570965750628e-13
+ - 1.6940658945086007e-15
+ - -5.251604272976662e-14
+ - -1.0164395367051604e-13
+ - 1.2027867851011065e-13
+ - 1.9989977555201488e-13
+ - -2.591920818598159e-13
+ - 3.5405977195229754e-13
+ - 4.828087799349512e-13
+ - 1.6940658945086007e-13
+ - 3.5575383784680614e-14
+ - -4.235164736271502e-14
+ - -1.1858461261560205e-14
+ - -2.761327408049019e-13
+ - 7.115076756936123e-14
+ - 4.2690460541616737e-13
+ - 9.317362419797304e-14
+- - 4.581707570578481
+ - -6.749240657651378
+ - 6.91326152559669
+ - -7.891173339248015
+ - 7.230910684795824
+ - -4.313060357568762
+ - -6.823142453797
+ - 5.261700352440981
+ - -2.7847267940841065
+ - -2.3258624701925954
+ - 4.866807211589701
+ - -6.609338492748319
+ - -3.785231943617124
+ - 7.010736015131354
+ - -7.903541874583513
+ - 7.352371630868674
+ - -5.899764800252189
+ - 2.361008944380418
+ - 5.713914744942358
+ - -3.4245388956005436
+ - 0.8346326136429219
+ - 4.069760851898038
+ - -6.217239034631927
+ - 7.135366128818959
+ - 5.235847809659884
+ - -7.686394366104759
+ - 7.884643071298025
+ - -6.15798469860999
+ - 4.32053000457319
+ - -0.7174947656547651
+ - -4.4121802263511745
+ - 1.564409647202437
+ - 1.2754021076832185
+ - -5.895749931228886
+ - 7.40926113012482
+ - -6.146027235760931
+ - -2.3895618369745484
+ - 6.254940319136317
+ - -7.820749125178753
+ - 8.880918949328763
+ - -8.318610667164666
+ - 5.171634062962297
+ - 7.64749007178617
+ - -6.484598573365017
+ - 4.103472066382604
+ - 1.297717875007106
+ - -4.405941525772649
+ - 7.072895332243772
+ - -3.3362510209978755e-13
+ - -1.5955983143902883e-13
+ - -3.7078867266056997e-13
+ - 7.411538288475128e-16
+ - -6.522153693858113e-14
+ - 1.9407642403964157e-13
+ - 1.3203126065326407e-13
+ - 2.236166980751353e-13
+ - 1.4081922748102743e-14
+ - -1.8412378690940354e-13
+ - -2.1398169830011762e-13
+ - 2.982614765519205e-13
+ - -2.2329906071991493e-13
+ - 2.4352197233561135e-14
+ - -1.9926450084157415e-13
+ - -5.601005363719061e-14
+ - -3.6655350792429847e-13
+ - 3.9810548520952116e-14
+ - -2.091112588534054e-13
+ - -1.1667878848427987e-13
+ - -4.2446938569281126e-13
+ - 1.5680697436045235e-13
+ - -4.6798570335800094e-14
+ - -1.8730016046160716e-13
+ - 2.3505164286306834e-13
+ - 1.4081922748102743e-13
+ - 3.801060350803673e-14
+ - 8.851494298807439e-14
+ - -1.5352472168984194e-13
+ - 2.5781565332052767e-13
+ - -5.960994366302139e-14
+ - 3.510951566369075e-13
+ - -1.9153532519787866e-13
+ - -8.999725064576941e-15
+ - 1.4717197458543468e-14
+ - 2.498747194400186e-14
+ - -1.886765890008954e-13
+ - 1.6093625997831706e-14
+ - 1.2006692027329707e-13
+ - 6.337924027830302e-13
+ - 2.0095856673608276e-13
+ - 1.3986631541536634e-13
+ - -1.7152417181899582e-13
+ - -4.629035056744751e-13
+ - 6.06475590234079e-13
+ - -1.147729643529577e-13
+ - -1.096907666694319e-13
+ - 1.52995326097808e-13
+ - -1.895236219481497e-13
+ - 9.275010772434589e-14
+ - 1.742770288975723e-13
+ - -1.3139598594282334e-13
+ - -2.9794383919670014e-13
+ - 4.842910875926462e-13
+ - -5.122431748520381e-13
+ - -6.442744355053022e-13
+ - -1.0249098661777034e-13
+ - 1.5352472168984194e-13
+ - -2.3822801641527197e-14
+ - -3.875175733688424e-14
+ - 2.313458737188308e-13
+ - -2.8513246586947885e-13
+ - 3.186961464044305e-14
+ - -4.0763460586613204e-14
+- - 9.33457117784927
+ - -12.342882399353627
+ - 11.89227880471373
+ - -12.25438600894663
+ - 10.583284997695872
+ - -5.41122766469522
+ - -10.135330607415025
+ - 6.877138126178493
+ - -2.6556380992648316
+ - -5.522136108348122
+ - 9.343162284049438
+ - -11.357233923344461
+ - -7.5323171766559405
+ - 12.246843860290037
+ - -13.071060458837264
+ - 10.990610075278651
+ - -8.115601246781479
+ - 2.1627938406738685
+ - 8.111603418289647
+ - -3.723893705971649
+ - -0.5739885314473924
+ - 8.239066569559599
+ - -11.331123439743438
+ - 11.972530861919708
+ - 9.737276208846247
+ - -13.06017030156688
+ - 12.736409511058868
+ - -8.780726000312319
+ - 5.337634382024147
+ - 0.6106527949547919
+ - -5.7501369905049176
+ - 0.5926464490645635
+ - 4.223781759878668
+ - -10.466030834032628
+ - 12.298818127321912
+ - -10.833254506678543
+ - -5.375678279720786
+ - 11.367052940141807
+ - -13.390955781763331
+ - 14.027305084849482
+ - -12.557594759706943
+ - 7.038544435550685
+ - 11.721733295439682
+ - -9.08840399749394
+ - 4.963142925905618
+ - 3.7907061726581666
+ - -8.963064497043446
+ - 12.927625855516737
+ - -6.025580628530279e-13
+ - -2.6490955425378243e-13
+ - -5.876291071576709e-13
+ - 6.988021814847978e-15
+ - -1.513012602032994e-13
+ - 3.501422445712464e-13
+ - 2.1313466535286332e-13
+ - 4.071052102740981e-13
+ - 1.6940658945086007e-14
+ - -3.143551025497522e-13
+ - -3.899527930921985e-13
+ - 4.3304559428376105e-13
+ - -3.407190030330423e-13
+ - 1.0037340424963459e-13
+ - -3.0461422365632776e-13
+ - -8.067988822597211e-14
+ - -4.68938615423662e-13
+ - -1.079967007749233e-14
+ - -2.0095856673608276e-13
+ - -2.0974653356384612e-13
+ - -7.081195439045951e-13
+ - 2.4341609321720456e-13
+ - -2.1705219273391446e-14
+ - -3.502481236896532e-13
+ - 3.034495533538531e-13
+ - 2.976262018414798e-13
+ - 1.03655656920245e-13
+ - 1.2949016181150116e-13
+ - -2.56650983018053e-13
+ - 3.818001009748759e-13
+ - -7.81387893842092e-14
+ - 5.44218668610888e-13
+ - -2.822737296724956e-13
+ - -6.437450399132683e-14
+ - 6.691560283308973e-14
+ - 6.818615225397118e-14
+ - -2.7814444405463087e-13
+ - 6.013933925505532e-14
+ - 2.0106444585448954e-13
+ - 1.0378271186233315e-12
+ - 3.39871970085788e-13
+ - 2.7676801551534264e-13
+ - -3.3457801416544863e-13
+ - -7.331070158485969e-13
+ - 9.990753612864472e-13
+ - -1.9449994051326872e-13
+ - -2.5199230180815435e-13
+ - 2.7401515843676616e-13
+ - -2.6056851039910414e-13
+ - 1.2896076621946723e-13
+ - 2.796267517123259e-13
+ - -2.1144059945835472e-13
+ - -4.990082850511897e-13
+ - 7.702705864093794e-13
+ - -8.345392112822994e-13
+ - -1.0491561842928578e-12
+ - -1.9915862172316737e-13
+ - 1.9227647902672618e-13
+ - -3.875175733688424e-14
+ - -5.6221811874004185e-14
+ - 4.217165286142348e-13
+ - -4.0668169380047095e-13
+ - -9.137367918505765e-14
+ - -7.517417406881916e-14
+- - 12.927193361371623
+ - -13.2871840243218
+ - 10.54132128817588
+ - -6.635008980350892
+ - 3.439561166880733
+ - 1.6340395764922486
+ - -3.854241476137093
+ - -0.8660750656827921
+ - 4.481776224466494
+ - -9.765913704122251
+ - 11.391842276894783
+ - -10.027885457572529
+ - -9.94584421089771
+ - 11.454061873809616
+ - -9.905951936881285
+ - 4.4358960857058385
+ - -0.6827618526632319
+ - -4.162779013928844
+ - 1.690168380118992
+ - 3.6384847734606334
+ - -6.944401581284119
+ - 11.26814796121066
+ - -12.081015633085498
+ - 9.64597737597088
+ - 10.970367937233897
+ - -11.057588421585507
+ - 8.641793970757433
+ - -1.9797973468603167
+ - -1.9760854055449912
+ - 6.449053694639513
+ - 0.7943690966865563
+ - -6.194454316781184
+ - 10.243897258839551
+ - -10.314897323910406
+ - 9.471287280635801
+ - -5.428790991128155
+ - -8.816214318919775
+ - 12.020232042994222
+ - -11.669948092353009
+ - 8.431789863983564
+ - -5.520178862524096
+ - 0.28998944976255364
+ - 5.799522848319417
+ - -1.438626934844722
+ - -2.3115713451860507
+ - 8.350287334277413
+ - -12.376454411462978
+ - 13.895122735080827
+ - -6.197104800349275e-13
+ - -2.030761491042185e-13
+ - -3.6147131024077267e-13
+ - 2.7316812548951186e-14
+ - -2.576038950837141e-13
+ - 3.613654311223659e-13
+ - 1.428309307307564e-13
+ - 4.3378674811260856e-13
+ - -5.717472393966527e-15
+ - -2.7073290576615575e-13
+ - -4.1959894624609903e-13
+ - 1.249373597200093e-13
+ - -1.607245017415035e-13
+ - 2.746504331472069e-13
+ - -1.4833664488790935e-13
+ - -1.8846483076408183e-14
+ - 9.836170099990563e-14
+ - -2.6152142246476523e-13
+ - 3.3097812413961786e-13
+ - -2.1567576419462622e-13
+ - -5.609475693191604e-13
+ - 1.3330181007414552e-13
+ - 1.690889520956397e-13
+ - -3.9916427639358903e-13
+ - -5.166900978251232e-14
+ - 4.4585696761098234e-13
+ - 2.150404894841855e-13
+ - 4.4575108849257555e-14
+ - -1.9947625907838773e-13
+ - 1.435720845596039e-13
+ - 8.893845946170154e-15
+ - 2.922263668027336e-13
+ - -1.0016164601282102e-13
+ - -2.1218175328720223e-13
+ - 1.8931186371133613e-13
+ - 1.4039571100740028e-13
+ - -9.60323603949563e-14
+ - 1.5945395232062204e-13
+ - 1.6104213909672385e-13
+ - 7.502594330304965e-13
+ - 2.8185021319886844e-13
+ - 3.6147131024077267e-13
+ - -4.2203416596945514e-13
+ - -4.4596284672938913e-13
+ - 7.4454196063653e-13
+ - -1.6379499617530033e-13
+ - -4.2521053952165877e-13
+ - 2.7507394962083404e-13
+ - -2.2764010457459322e-14
+ - 1.7575933655526732e-14
+ - 1.7904158922587773e-13
+ - -1.4304268896756997e-13
+ - -3.992701555119958e-13
+ - 4.873615820264431e-13
+ - -5.884761401049252e-13
+ - -7.399891585450381e-13
+ - -2.550627962419512e-13
+ - -5.992758101824175e-14
+ - -2.879912020664621e-14
+ - -1.3446648037662018e-14
+ - 4.503038905840674e-13
+ - -9.26442286059391e-14
+ - -5.496185036496341e-13
+ - -8.258571235729428e-14
+- - 7.900570668556524
+ - -7.621650036792201
+ - 5.665349341086597
+ - -2.7001724813052186
+ - 0.6317354954284593
+ - 2.195198170858625
+ - -1.0208495451234132
+ - -1.8912971337309505
+ - 3.8086738406406497
+ - -6.246226404663713
+ - 6.759405306402923
+ - -5.3813848974234
+ - -6.014855806496396
+ - 6.278460557460186
+ - -4.979756642635937
+ - 1.2973144968155046
+ - 0.9665097986038164
+ - -3.48243009904625
+ - -0.21804071877843262
+ - 3.3766742315707514
+ - -5.0502471269616835
+ - 6.868027643706873
+ - -6.910049695109991
+ - 4.9862160079226
+ - 6.375020739975662
+ - -5.836529183374629
+ - 4.102193305163696
+ - 0.12453582759483257
+ - -2.4357192074597376
+ - 4.675921642748806
+ - 1.6334816653566073
+ - -4.705389547508966
+ - 6.836707188221984
+ - -5.756204747849313
+ - 4.797320716789081
+ - -2.062851795585046
+ - -4.658603679532857
+ - 6.858412548406144
+ - -6.231001047833983
+ - 3.7119729129286165
+ - -1.8176507406861693
+ - -1.0625161829698142
+ - 2.1767334259299003
+ - 0.5820728364597622
+ - -2.616748636657849
+ - 5.509804086419761
+ - -7.559229012788691
+ - 7.966737473459316
+ - -3.509892775185007e-13
+ - -1.0249098661777034e-13
+ - -1.6167741380716458e-13
+ - 1.895236219481497e-14
+ - -1.6368911705689354e-13
+ - 2.0434669852509996e-13
+ - 6.786851489875081e-14
+ - 2.4849829090073036e-13
+ - -7.199780051661553e-15
+ - -1.4346620544119712e-13
+ - -2.4002796142818736e-13
+ - 1.3976043629695956e-14
+ - -5.685708658444491e-14
+ - 1.851825780934714e-13
+ - -5.558653716356346e-14
+ - 1.2705494208814505e-15
+ - 1.590304358469949e-13
+ - -1.9185296255309903e-13
+ - 2.821678505540888e-13
+ - -1.222903817598396e-13
+ - -2.873559273560214e-13
+ - 5.473950421630916e-14
+ - 1.2959604092990795e-13
+ - -2.3314581873174617e-13
+ - -9.402065714522734e-14
+ - 2.7666213639693585e-13
+ - 1.4071334836262064e-13
+ - 9.317362419797304e-15
+ - -1.0238510749936355e-13
+ - 3.6845933205562065e-14
+ - 1.9693516023662483e-14
+ - 1.180552170235681e-13
+ - -2.3081647812679684e-14
+ - -1.4590142516455323e-13
+ - 1.2896076621946723e-13
+ - 9.17971956586848e-14
+ - -2.0858186326137146e-14
+ - 1.0736142606448257e-13
+ - 8.311510794932822e-14
+ - 3.6824757381880707e-13
+ - 1.479131284142822e-13
+ - 2.174757092075416e-13
+ - -2.5273345563700186e-13
+ - -1.979939514206927e-13
+ - 3.7163570560782427e-13
+ - -8.597384414631148e-14
+ - -2.693564772268675e-13
+ - 1.546893919923166e-13
+ - 3.134021904840911e-14
+ - -1.0376153603865179e-14
+ - 8.205631676526035e-14
+ - -6.755087754353045e-14
+ - -2.0529961059076104e-13
+ - 2.218167530622199e-13
+ - -2.849207076326653e-13
+ - -3.6009488170148443e-13
+ - -1.5310120521621479e-13
+ - -7.887994321305672e-14
+ - -1.4717197458543468e-14
+ - 4.2351647362715017e-16
+ - 2.583450489125616e-13
+ - 4.658681209898652e-15
+ - -3.909057051578596e-13
+ - -4.8069119756681544e-14
+- - -6.4131243960652204
+ - 7.943224368012353
+ - -8.48272634070016
+ - 8.97450430680259
+ - -8.608548955071518
+ - 4.203201251220752
+ - 7.513630117318144
+ - -6.011456629615265
+ - 2.2463897411989038
+ - 3.716858833986114
+ - -7.276428683126785
+ - 8.135445872821897
+ - 5.239697686909971
+ - -9.474736570029888
+ - 9.433012329315643
+ - -8.100983332867443
+ - 5.363566808930962
+ - -1.8250175594948184
+ - -6.046467695345742
+ - 2.2470752482721204
+ - 0.1055446201086258
+ - -5.679493676926637
+ - 7.240528184995277
+ - -8.5818722530849
+ - -6.821835294254058
+ - 8.60189955032166
+ - -9.218721829340145
+ - 6.572585802419825
+ - -4.900231917412573
+ - -0.12465540434130373
+ - 4.420397430688567
+ - -1.5116415194652688
+ - -2.682624194607476
+ - 7.444876586420253
+ - -9.620104244881464
+ - 7.971921554927677
+ - 7.923166190492875
+ - -8.777050849077504
+ - 9.583688320405304
+ - -10.199311838893736
+ - 8.485219728546326
+ - -5.296191999737826
+ - -8.574223416479605
+ - 6.05693195450215
+ - -3.8585485000705932
+ - -2.452186687016006
+ - 5.427233211359782
+ - -9.087882601882663
+ - 3.9979955110402976e-13
+ - 1.7957098481791167e-13
+ - 4.387630666777276e-13
+ - 0.0
+ - 8.639736061993863e-14
+ - -1.7787691892340307e-13
+ - -1.6601845766184287e-13
+ - -2.896852679609707e-13
+ - 5.082197683525802e-15
+ - 2.591920818598159e-13
+ - 2.727446090158847e-13
+ - -3.4389537658524594e-13
+ - 3.066259269060567e-13
+ - -8.639736061993863e-14
+ - 2.371692252312041e-13
+ - 2.879912020664621e-14
+ - 4.2182240773264157e-13
+ - -1.0164395367051604e-14
+ - 1.7957098481791167e-13
+ - 7.623296525288703e-14
+ - 4.9636130709102e-13
+ - -1.7448878713438587e-13
+ - -4.235164736271502e-14
+ - 3.3034284942917713e-13
+ - -2.1514636860259229e-13
+ - -2.0328790734103208e-13
+ - -5.251604272976662e-14
+ - -9.486769009248164e-14
+ - 1.4060746924421386e-13
+ - -2.405573570202213e-13
+ - 8.470329472543003e-14
+ - -3.5744790374131474e-13
+ - 1.5585406229479126e-13
+ - 8.809142651444724e-14
+ - -3.049318610115481e-14
+ - -5.590417451878382e-14
+ - 1.7448878713438587e-13
+ - -4.743384504624082e-14
+ - -1.0333801956502464e-13
+ - -7.724940478959219e-13
+ - -1.9312351197398048e-13
+ - -1.9651164376299768e-13
+ - 3.066259269060567e-13
+ - 5.878408653944844e-13
+ - -7.047314121155779e-13
+ - 1.4568966692773966e-13
+ - 1.1689054672109345e-13
+ - -2.1514636860259229e-13
+ - 2.1006417091906648e-13
+ - -1.4399560103323106e-13
+ - -1.8126505071242027e-13
+ - 1.7957098481791167e-13
+ - 2.913793338554793e-13
+ - -5.13301966036106e-13
+ - 5.861467994999758e-13
+ - 7.691059161069047e-13
+ - 1.3552527156068805e-13
+ - -1.7448878713438587e-13
+ - -4.912791094074942e-14
+ - 2.202285662861181e-14
+ - -2.744386749103933e-13
+ - 3.2017845406212553e-13
+ - 8.131516293641283e-14
+ - 8.978549240895584e-14
+- - -11.00891077105257
+ - 12.7102800702763
+ - -13.003964899732692
+ - 12.688855678088652
+ - -11.754371631916197
+ - 4.8163450853582646
+ - 10.221201050863874
+ - -7.5141685353111525
+ - 1.712983968034093
+ - 6.933583885248425
+ - -12.005502538488606
+ - 12.464322581370936
+ - 8.86303798049742
+ - -14.7394039741187
+ - 14.037212135096103
+ - -11.074321373146617
+ - 6.511424388244561
+ - -1.2558607788606049
+ - -7.874805659766946
+ - 1.6248989868849883
+ - 1.7934798503990714
+ - -9.711083079183679
+ - 11.554979875874778
+ - -12.910608327128536
+ - -11.04982930120217
+ - 12.994497000863161
+ - -13.46165597070118
+ - 8.607228060221987
+ - -5.87513234371404
+ - -1.68632386736099
+ - 5.2861043672009
+ - -0.6769220978154669
+ - -5.758523885307435
+ - 11.67840930989601
+ - -14.448885581845989
+ - 11.166578879502874
+ - 11.951218298113874
+ - -13.8355766974121
+ - 14.642923466421797
+ - -14.621197389006632
+ - 11.52473790742694
+ - -6.610296107819687
+ - -11.980029387897945
+ - 7.5469091270356
+ - -4.213774821393757
+ - -5.023078416926541
+ - 9.381395512806083
+ - -14.547800602627879
+ - 6.301925127571995e-13
+ - 2.574980159653073e-13
+ - 6.369687763352339e-13
+ - 0.0
+ - 1.3891340334970526e-13
+ - -2.913793338554793e-13
+ - -2.574980159653073e-13
+ - -4.506215279392878e-13
+ - 1.0164395367051604e-14
+ - 3.7947076036992655e-13
+ - 4.37069000783219e-13
+ - -4.777265822514254e-13
+ - 4.404571325722362e-13
+ - -1.9312351197398048e-13
+ - 2.981555974335137e-13
+ - 3.3881317890172014e-14
+ - 5.149960319306146e-13
+ - 4.0657581468206416e-14
+ - 1.5924219408380846e-13
+ - 1.1180834903756764e-13
+ - 7.318364664277155e-13
+ - -2.371692252312041e-13
+ - -1.3552527156068805e-13
+ - 5.38712954453735e-13
+ - -2.405573570202213e-13
+ - -3.4897757426877174e-13
+ - -1.0503208545953324e-13
+ - -1.1858461261560205e-13
+ - 2.202285662861181e-13
+ - -3.049318610115481e-13
+ - 1.2197274440461925e-13
+ - -4.946672411965114e-13
+ - 1.9651164376299768e-13
+ - 1.7618285302889447e-13
+ - -7.792703114739563e-14
+ - -1.2197274440461925e-13
+ - 2.270048298641525e-13
+ - -8.131516293641283e-14
+ - -1.5246593050577406e-13
+ - -1.1418004128987969e-12
+ - -2.846030702774449e-13
+ - -3.2864878353466853e-13
+ - 4.980553729855286e-13
+ - 8.571973426213519e-13
+ - -1.060485249962384e-12
+ - 2.1345230270808369e-13
+ - 2.202285662861181e-13
+ - -3.3542504711270293e-13
+ - 2.473336205982557e-13
+ - -2.0328790734103208e-13
+ - -2.541098841762901e-13
+ - 2.778268066994105e-13
+ - 4.2012834183813297e-13
+ - -7.352245982167327e-13
+ - 8.605854744103691e-13
+ - 1.128247885742728e-12
+ - 2.202285662861181e-13
+ - -2.236166980751353e-13
+ - -8.470329472543003e-14
+ - 1.6940658945086007e-14
+ - -4.2690460541616737e-13
+ - 4.2012834183813297e-13
+ - 2.371692252312041e-13
+ - 1.3213713977167085e-13
+- - -6.763880263307684
+ - 7.3579844626758515
+ - -7.229942803507827
+ - 6.470927652796943
+ - -5.74737132082569
+ - 1.7891535702707149
+ - 4.974363624859878
+ - -3.248521860489645
+ - 0.007178141474001247
+ - 4.529771657225409
+ - -7.139426949089196
+ - 6.925944133151051
+ - 5.381297767518332
+ - -8.312029508404988
+ - 7.573098755721077
+ - -5.42285693938097
+ - 2.685877273631637
+ - 0.14384077211571178
+ - -3.616708040854089
+ - -0.09044134496493407
+ - 1.888256606032519
+ - -5.947735691307385
+ - 6.6730230279575435
+ - -7.04404623125188
+ - -6.466795077827592
+ - 7.119766660914779
+ - -7.118179361688396
+ - 3.983442750551588
+ - -2.372456874293791
+ - -1.7541598696920837
+ - 2.125040939480004
+ - 0.5195672239638399
+ - -4.100605379523938
+ - 6.637937020912612
+ - -7.870139379130973
+ - 5.632586878549999
+ - 6.538168961695499
+ - -7.162441050090291
+ - 8.114513386235899
+ - -7.575156423095131
+ - 5.597610108978982
+ - -2.8512204334222178
+ - -6.024845100637793
+ - 3.2466004645138344
+ - -1.4136043153157671
+ - -3.4829868958924965
+ - 5.795613313731498
+ - -8.424778147436093
+ - 3.4558944247975454e-13
+ - 1.3891340334970526e-13
+ - 3.4389537658524594e-13
+ - -3.3881317890172014e-15
+ - 1.1350241493207625e-13
+ - -1.6601845766184287e-13
+ - -1.3891340334970526e-13
+ - -2.642742795433417e-13
+ - 1.0164395367051604e-14
+ - 1.8804131429045468e-13
+ - 2.608861477543245e-13
+ - -2.1514636860259229e-13
+ - 2.456395547037471e-13
+ - -1.1180834903756764e-13
+ - 1.3721933745519665e-13
+ - -8.470329472543003e-15
+ - 2.0498197323554068e-13
+ - 5.082197683525802e-14
+ - 3.7269449679189215e-14
+ - 5.759824041329242e-14
+ - 3.9302328752599536e-13
+ - -1.2874900798265365e-13
+ - -9.825582188149884e-14
+ - 3.032377951170395e-13
+ - -8.131516293641283e-14
+ - -2.0837010502455788e-13
+ - -7.453889935837843e-14
+ - -4.573977915173222e-14
+ - 1.2027867851011065e-13
+ - -1.5077186461126546e-13
+ - 6.606856988583543e-14
+ - -2.490276864927643e-13
+ - 9.656175598699024e-14
+ - 1.3891340334970526e-13
+ - -4.912791094074942e-14
+ - -9.317362419797304e-14
+ - 1.2027867851011065e-13
+ - -6.437450399132683e-14
+ - -7.623296525288703e-14
+ - -6.06475590234079e-13
+ - -1.5754812818929986e-13
+ - -2.0159384144652348e-13
+ - 2.879912020664621e-13
+ - 4.54009659728305e-13
+ - -5.64123942871364e-13
+ - 1.2705494208814505e-13
+ - 1.4568966692773966e-13
+ - -2.0328790734103208e-13
+ - 8.978549240895584e-14
+ - -1.1350241493207625e-13
+ - -1.2197274440461925e-13
+ - 1.3044307387716225e-13
+ - 2.1684043449710089e-13
+ - -3.8794108984246956e-13
+ - 4.607859233063394e-13
+ - 5.929230630780102e-13
+ - 1.3044307387716225e-13
+ - -8.131516293641283e-14
+ - -4.912791094074942e-14
+ - -5.082197683525802e-15
+ - -2.591920818598159e-13
+ - 2.0837010502455788e-13
+ - 1.9481757786848908e-13
+ - 5.421010862427522e-14
+- - 4.515433866871797
+ - -8.207083259242475
+ - 9.217005941963864
+ - -11.96791673516317
+ - 11.662431824847227
+ - -7.951887309141055
+ - -10.85289729871268
+ - 9.38652210426894
+ - -6.053188005887432
+ - -1.4326330633836135
+ - 5.411059970971822
+ - -8.824685579604353
+ - -3.926683853002336
+ - 9.129409107059637
+ - -11.112205554497024
+ - 11.619426983670087
+ - -10.107546704278963
+ - 5.229982290899066
+ - 9.501504009908611
+ - -6.954277796928334
+ - 3.316710899080963
+ - 4.068246519675777
+ - -7.603666407949976
+ - 9.844166663878811
+ - 6.179737065449519
+ - -10.437625218007222
+ - 11.418697506551496
+ - -10.196917705889279
+ - 8.044545302735015
+ - -2.9792462809757354
+ - -7.899346376877244
+ - 4.37431284384282
+ - -0.5251814427352619
+ - -7.504548118937582
+ - 10.355332087135988
+ - -10.83500240705562
+ - -8.980391656749434
+ - 11.804239218360024
+ - -10.494954651022415
+ - 13.21081554673824
+ - -13.0242828454237
+ - 8.9323873387883
+ - 11.768076179623653
+ - -10.92380658895598
+ - 7.769094163952924
+ - 0.021477022129030608
+ - -4.368943753542378
+ - 8.595877461007197
+ - -4.1812325603330443e-13
+ - -1.9749102560826046e-13
+ - -4.939790269268673e-13
+ - 3.2491654461082927e-15
+ - 5.4967806065373795e-14
+ - 2.7824370572813724e-13
+ - 2.1408095997362399e-13
+ - 2.481740361006096e-13
+ - 2.421984833555265e-14
+ - -2.7988152334099223e-13
+ - -2.8614493493924376e-13
+ - 5.683591076076355e-13
+ - -2.891823421485385e-13
+ - 2.4150365164098196e-14
+ - -3.3225859972784994e-13
+ - -1.2517227901397436e-13
+ - -6.389473923604607e-13
+ - 1.2626415742254436e-13
+ - -4.508233600087507e-13
+ - -1.259200502877223e-13
+ - -5.683624163300857e-13
+ - 1.9698809979582822e-13
+ - -1.303471209261061e-13
+ - -2.511849735303026e-13
+ - 4.531163046667477e-13
+ - 1.351546946462643e-13
+ - 2.5576424540139616e-15
+ - 1.637056606691446e-13
+ - -2.1235711557706348e-13
+ - 3.6490907286654305e-13
+ - -9.361699300630146e-14
+ - 5.737754862586328e-13
+ - -2.589240753413487e-13
+ - 9.057958579700674e-14
+ - 1.2063602053473356e-14
+ - -2.8190315275807183e-14
+ - -2.1980835853494115e-13
+ - -3.1968876313949414e-14
+ - 1.9642230825684195e-13
+ - 8.765037381183396e-13
+ - 2.8889448329537e-13
+ - 1.4389303063727448e-13
+ - -2.18292963652744e-13
+ - -6.801939264248049e-13
+ - 8.886798367351202e-13
+ - -8.825686263695784e-14
+ - -5.547404060025625e-14
+ - 1.9803034736764504e-13
+ - -3.7502052867439126e-13
+ - 1.0959150499592553e-13
+ - 2.645720645638608e-13
+ - -2.1691984383590598e-13
+ - -4.0807135722956004e-13
+ - 6.954107409733304e-13
+ - -7.213544337054435e-13
+ - -9.46876955911901e-13
+ - -8.342943658209837e-14
+ - 2.725791728933741e-13
+ - 2.1341259803868114e-15
+ - -9.103618949513601e-14
+ - 2.52220603657219e-13
+ - -4.011164226392142e-13
+ - 2.0783740071007373e-13
+ - -9.678674911360466e-14
+- - 5.439907301230577
+ - -8.455041251330512
+ - 8.884934466274796
+ - -10.549118054820838
+ - 9.858711050967981
+ - -6.16295704005924
+ - -9.263440300001824
+ - 7.42631661694952
+ - -4.237917337486592
+ - -2.5193393488836104
+ - 5.947591578890598
+ - -8.497797521844454
+ - -4.549287871796035
+ - 8.945119004284706
+ - -10.319403726605943
+ - 9.960923742246404
+ - -8.2173634831928
+ - 3.620785006132011
+ - 7.873961625008959
+ - -5.077558879849923
+ - 1.69334654666741
+ - 4.848157768522459
+ - -7.801104232372742
+ - 9.263630472961422
+ - 6.503641974027117
+ - -9.935709941085179
+ - 10.388630972328118
+ - -8.473618434636958
+ - 6.192178195672945
+ - -1.49158608059862
+ - -6.2383288447085885
+ - 2.6512489258784795
+ - 1.0124939950854055
+ - -7.476863565974841
+ - 9.652853503562259
+ - -9.469601043791533
+ - -8.474292972420772
+ - 10.43036290718441
+ - -9.513453711472739
+ - 11.79969554367969
+ - -11.239306868990163
+ - 7.220385032321364
+ - 10.27133832323444
+ - -8.979310459599471
+ - 5.920999486976213
+ - 1.1867094264437539
+ - -5.242395120335877
+ - 8.855328462677564
+ - -4.163166935754886e-13
+ - -1.887295285600988e-13
+ - -4.585624618197968e-13
+ - 5.717472393966527e-15
+ - -7.30565917006834e-15
+ - 2.6903883987164715e-13
+ - 1.9338820976999745e-13
+ - 2.624743345304263e-13
+ - 1.7522994096323338e-14
+ - -2.5352754902505277e-13
+ - -2.8952644928336053e-13
+ - 4.643858133321702e-13
+ - -2.685094442796132e-13
+ - 4.494568576368131e-14
+ - -2.7666213639693585e-13
+ - -9.550296480292236e-14
+ - -4.92602598387579e-13
+ - 6.96684599116662e-14
+ - -3.2346070673273594e-13
+ - -1.316606837388403e-13
+ - -5.309837788100395e-13
+ - 1.834885121989628e-13
+ - -7.914464100907369e-14
+ - -2.547980984459342e-13
+ - 3.5331861812345003e-13
+ - 1.6797722135236844e-13
+ - 3.001673006832427e-14
+ - 1.3488999685024733e-13
+ - -2.014350227689133e-13
+ - 3.1641974535868457e-13
+ - -8.152692117322641e-14
+ - 4.962554279726132e-13
+ - -2.2891065399547467e-13
+ - 3.4198955245392376e-14
+ - 2.668153783851046e-14
+ - 8.682087709356578e-15
+ - -2.0508785235394747e-13
+ - -5.293955920339377e-17
+ - 1.7803573760101325e-13
+ - 8.102928931671451e-13
+ - 2.701505706149184e-13
+ - 1.6623021589865644e-13
+ - -2.288047748770679e-13
+ - -6.086461121614182e-13
+ - 8.201396511789763e-13
+ - -1.0169689322971943e-13
+ - -1.0339095912422804e-13
+ - 1.972527975918452e-13
+ - -2.9037348223061483e-13
+ - 1.0095573940087192e-13
+ - 2.3309287917254277e-13
+ - -1.8714134178399698e-13
+ - -3.8127070538284194e-13
+ - 6.343747379342676e-13
+ - -6.647620449170156e-13
+ - -8.5841495248303e-13
+ - -1.0317920088741446e-13
+ - 2.1027592915588006e-13
+ - -2.0117032497289633e-15
+ - -6.71273610699033e-14
+ - 2.704682079701388e-13
+ - -3.426777667235679e-13
+ - 9.121486050744747e-14
+ - -7.702705864093794e-14
+- - 3.279238026085307
+ - -1.148287303280925
+ - -0.7615337635165288
+ - 4.306733964328341
+ - -5.61161972908476
+ - 5.704468908125486
+ - 4.922895569154302
+ - -6.2247596889240056
+ - 5.865897083741949
+ - -3.705837921814428
+ - 2.010347514452718
+ - 0.75919058806494
+ - -2.242487425965453
+ - -0.26842482802264406
+ - 2.236560628658476
+ - -5.125411881178829
+ - 5.961821892069327
+ - -5.205213750598383
+ - -5.102756900591842
+ - 6.03771888798228
+ - -5.326305129908518
+ - 2.7764011261416943
+ - -0.9553843542235185
+ - -1.5721623769594673
+ - 1.3255531153277014
+ - 1.2852372630255091
+ - -3.0218811357351645
+ - 5.39773948305989
+ - -5.914026217453766
+ - 4.883368645731335
+ - 5.2767627624474
+ - -5.620619832131395
+ - 5.145666711610646
+ - -0.1952754431106291
+ - -1.9621930217911883
+ - 4.170864969097897
+ - 1.3552696677970006
+ - -4.162103910973765
+ - 5.448747621936511
+ - -4.233192489896256
+ - 5.496332285755875
+ - -5.408363384981221
+ - -4.576248581931952
+ - 6.11293063660405
+ - -5.910254534767883
+ - 3.915438861486896
+ - -3.1022012090011097
+ - 1.201833687047459
+ - -9.317362419797304e-15
+ - 2.1811098391798234e-14
+ - 9.984400865760065e-14
+ - 8.046812998915853e-15
+ - -2.0688779736686286e-13
+ - -2.0117032497289633e-14
+ - -6.098637220230962e-14
+ - 5.770411953169921e-14
+ - -2.149346103657787e-14
+ - 7.792703114739563e-14
+ - -2.1705219273391446e-14
+ - -3.272723549953803e-13
+ - 5.844527336054672e-14
+ - 7.115076756936123e-14
+ - 1.7279472123987727e-13
+ - 9.486769009248164e-14
+ - 4.669269121739331e-13
+ - -1.8486494073825105e-13
+ - 4.103874629447085e-13
+ - -2.5199230180815435e-14
+ - 1.0418505251227894e-13
+ - -3.758708703440958e-14
+ - 1.6792428179316504e-13
+ - -2.1811098391798234e-14
+ - -3.17954992575583e-13
+ - 1.1509060170817806e-13
+ - 9.243247036912552e-14
+ - -9.09501627114305e-14
+ - 2.8587361969832636e-14
+ - -1.4886604047994328e-13
+ - 3.6422416731934915e-14
+ - -2.380162581784584e-13
+ - 9.063252535621014e-14
+ - -1.8624136927753929e-13
+ - 5.0186702124817295e-14
+ - 1.2292565647028034e-13
+ - 4.1081097941833566e-14
+ - 1.0566736016997397e-13
+ - -5.3998350387461647e-14
+ - -1.8973538018496328e-13
+ - -5.1033735072071595e-14
+ - 8.067988822597211e-14
+ - -4.404571325722362e-14
+ - 2.1472285212896514e-13
+ - -1.9661752288140447e-13
+ - -4.923379005915621e-14
+ - -1.6294796322804603e-13
+ - 4.235164736271502e-15
+ - 2.7052114752934217e-13
+ - -2.5093351062408648e-14
+ - -9.592648127654951e-14
+ - 9.126780006665086e-14
+ - 7.422126200315807e-14
+ - -1.7830043539703022e-13
+ - 1.624185676360121e-13
+ - 2.607802686359177e-13
+ - -6.945670167485263e-14
+ - -1.9831158877591307e-13
+ - -1.3976043629695956e-14
+ - 7.686823996332776e-14
+ - 7.168016316139517e-14
+ - 1.8073565512038633e-13
+ - -3.8370592510619805e-13
+ - 6.37392292808861e-14
+- - 2.3397309666101065
+ - 2.02885183365586
+ - -4.956032711201543
+ - 10.76638885323824
+ - -12.338463650766764
+ - 10.86468967137445
+ - 11.091429944347984
+ - -12.160551300502556
+ - 10.259260327977149
+ - -4.22175389199492
+ - 0.29834622116478016
+ - 4.784334916621714
+ - -1.2394392831567127
+ - -4.274678618369596
+ - 7.696173206107088
+ - -11.685286167754798
+ - 12.127247073473187
+ - -9.04295432212108
+ - -10.745322749918717
+ - 10.870888892773491
+ - -8.37860581334217
+ - 1.8755552570299123
+ - 2.021286914579744
+ - -6.283806123005287
+ - -0.9259950939700389
+ - 6.164354689060875
+ - -8.853070083361589
+ - 11.429314439068458
+ - -11.178073168284614
+ - 7.655340755539346
+ - 10.283780717427716
+ - -9.217412354985278
+ - 6.942862140765194
+ - 2.970921033285204
+ - -7.012673598448977
+ - 10.10204298928774
+ - 5.629382137609105
+ - -10.507233056152844
+ - 11.954645558159129
+ - -11.204648818078322
+ - 12.773360432350096
+ - -10.899624091502034
+ - -11.032309615445506
+ - 12.675372754096376
+ - -11.05474693984713
+ - 5.101951113552146
+ - -2.171597293133577
+ - -2.1260760740970803
+ - 1.675007653195379e-13
+ - 1.1350241493207625e-13
+ - 3.426248271643645e-13
+ - 9.105604182983729e-15
+ - -2.9370867446042864e-13
+ - -1.4590142516455323e-13
+ - -1.717359300558094e-13
+ - -3.134021904840911e-14
+ - -3.8539999100070665e-14
+ - 2.219226321806267e-13
+ - 9.465593185566806e-14
+ - -6.714853689358466e-13
+ - 2.005350502624556e-13
+ - 8.258571235729428e-14
+ - 3.6824757381880707e-13
+ - 1.776651606865895e-13
+ - 8.843023969334896e-13
+ - -2.956144985917508e-13
+ - 7.295071258227662e-13
+ - 2.117582368135751e-14
+ - 3.8031779331718085e-13
+ - -1.3361944742936588e-13
+ - 2.752857078576476e-13
+ - 7.940933880509066e-14
+ - -6.098637220230962e-13
+ - 9.211483301390516e-14
+ - 1.1964340379966992e-13
+ - -1.8910010547452255e-13
+ - 1.2853724974584008e-13
+ - -3.510951566369075e-13
+ - 8.766791004082009e-14
+ - -5.573476792933296e-13
+ - 2.2975768694272897e-13
+ - -2.822737296724956e-13
+ - 6.056285572868247e-14
+ - 1.725829630030637e-13
+ - 1.4801900753268898e-13
+ - 1.5161889755851976e-13
+ - -1.5479527111072339e-13
+ - -6.244750403632329e-13
+ - -1.9079417136903115e-13
+ - 4.362219678359647e-14
+ - 3.6422416731934915e-14
+ - 5.72594272343907e-13
+ - -6.38874600466556e-13
+ - -2.6469779601696886e-14
+ - -1.8888834723770898e-13
+ - -7.962109704190423e-14
+ - 5.143607572201739e-13
+ - -7.983285527871781e-14
+ - -2.3907504936252627e-13
+ - 2.1218175328720223e-13
+ - 2.72109334305444e-13
+ - -5.31724932638887e-13
+ - 5.219840537454626e-13
+ - 7.4750657595192e-13
+ - -5.484538333471595e-14
+ - -3.758708703440958e-13
+ - -1.9058241313221758e-14
+ - 1.3954867806014598e-13
+ - -1.461131834013668e-14
+ - 4.0826988057657276e-13
+ - -5.901702059994338e-13
+ - 1.249373597200093e-13
+- - 1.0117206432542385
+ - 3.641552649958364
+ - -6.425731785231027
+ - 12.122401708188132
+ - -13.42433753704503
+ - 11.292407623992165
+ - 12.151738519293056
+ - -12.750146893266633
+ - 10.331232886000842
+ - -3.356697473946737
+ - -0.973560755163908
+ - 6.186470411921791
+ - -0.1859940009829747
+ - -5.811291077982145
+ - 9.248590705863558
+ - -12.844652154405315
+ - 12.885505798845438
+ - -9.082324089347557
+ - -11.541616040250343
+ - 11.070337340906905
+ - -8.066420954378344
+ - 0.7087092827554398
+ - 3.497357705760129
+ - -7.727189930114992
+ - -2.2170482569453074
+ - 7.758297278978147
+ - -10.327842624221546
+ - 12.296953957626291
+ - -11.586953611084871
+ - 7.358439390754845
+ - 10.773598376139061
+ - -9.039417582349419
+ - 6.177229044979061
+ - 4.303286370518405
+ - -8.479665715322795
+ - 11.284442563052007
+ - 6.959258020928362
+ - -11.858970191478237
+ - 12.998646514199809
+ - -12.019001971408146
+ - 14.114315189999804
+ - -11.546466729996856
+ - -12.308842281338624
+ - 13.549860198246066
+ - -11.416546435555114
+ - 4.446427781680397
+ - -0.8984299827923616
+ - -3.8150317730201397
+ - 2.4182790644110275e-13
+ - 1.4251329337553603e-13
+ - 4.1165801236558996e-13
+ - 7.835054762102278e-15
+ - -2.685094442796132e-13
+ - -1.8910010547452255e-13
+ - -1.996880173152013e-13
+ - -8.385626177817573e-14
+ - -4.002230675776569e-14
+ - 2.5707449949168015e-13
+ - 1.4590142516455323e-13
+ - -7.159545986666974e-13
+ - 2.4098087349384845e-13
+ - 6.54332951753947e-14
+ - 3.9747021049908043e-13
+ - 1.852884572118782e-13
+ - 9.171249236395937e-13
+ - -2.8587361969832636e-13
+ - 7.405185541370721e-13
+ - 4.8492636230308694e-14
+ - 4.633270221481023e-13
+ - -1.6199505116238494e-13
+ - 2.6893296075324036e-13
+ - 1.2705494208814505e-13
+ - -6.378158092824882e-13
+ - 4.912791094074942e-14
+ - 1.0376153603865179e-13
+ - -2.0180559968333706e-13
+ - 1.6114801821513064e-13
+ - -3.8899988102653743e-13
+ - 9.762054717105811e-14
+ - -6.162164691275035e-13
+ - 2.5961559833344305e-13
+ - -2.661801036746639e-13
+ - 4.9763185651190145e-14
+ - 1.562775787684184e-13
+ - 1.7914746834428452e-13
+ - 1.393369198233324e-13
+ - -1.810532924756067e-13
+ - -7.449654771101571e-13
+ - -2.32722302258119e-13
+ - 5.082197683525802e-15
+ - 8.152692117322641e-14
+ - 6.549682264643877e-13
+ - -7.60000311923921e-13
+ - -2.117582368135751e-15
+ - -1.5098362284807904e-13
+ - -1.1350241493207625e-13
+ - 5.349013061910907e-13
+ - -9.338538243478661e-14
+ - -2.687212025164268e-13
+ - 2.344163681526276e-13
+ - 3.297075747187364e-13
+ - -6.217221832846564e-13
+ - 6.208751503374021e-13
+ - 8.696910785933529e-13
+ - -2.795208725939191e-14
+ - -3.9132922163148676e-13
+ - -1.7999450129153882e-14
+ - 1.4420735927004463e-13
+ - -6.945670167485263e-14
+ - 4.4680987967664343e-13
+ - -5.630651516872962e-13
+ - 1.317136232980437e-13
+- - -5.07395992840553
+ - 0.7801231576305403
+ - 1.5807048569809403
+ - -7.354643280349714
+ - 8.696806132706136
+ - -9.441579929881584
+ - -8.294494982627656
+ - 9.596682829938759
+ - -9.638249524591798
+ - 5.912507064812348
+ - -3.78249800979797
+ - -1.5292895986189319
+ - 3.476091104830638
+ - 0.017415202729209732
+ - -3.995999349667426
+ - 8.68082270890245
+ - -10.710675457508492
+ - 8.578030339241355
+ - 8.57266363108635
+ - -10.71508115840255
+ - 8.69410659820379
+ - -4.297839035669443
+ - 0.49757111423173145
+ - 2.912348027201007
+ - -1.8798775190697565
+ - -3.208001455769225
+ - 5.292081678273292
+ - -9.039443169339737
+ - 9.04619678033024
+ - -7.936777062239402
+ - -8.750778129347179
+ - 8.437166512163744
+ - -8.27252867918364
+ - 0.0526909546028515
+ - 2.776270698481453
+ - -7.078755768465365
+ - -2.4850002614486004
+ - 6.365511442305786
+ - -9.157272342795551
+ - 10.697798929898331
+ - -10.07900773116691
+ - 9.048238376754144
+ - 7.817844791244575
+ - -10.990774394983907
+ - 9.803722514131497
+ - -6.28008869384477
+ - 4.064015607271516
+ - -1.5825479754397769
+ - -2.202285662861181e-14
+ - -4.912791094074942e-14
+ - -1.7279472123987727e-13
+ - -3.3881317890172014e-15
+ - 3.2187251995663413e-13
+ - 8.300922883092143e-14
+ - 9.147955830346444e-14
+ - -8.639736061993863e-14
+ - 4.404571325722362e-14
+ - -1.1350241493207625e-13
+ - 2.879912020664621e-14
+ - 5.38712954453735e-13
+ - -5.421010862427522e-14
+ - -1.3721933745519665e-13
+ - -2.744386749103933e-13
+ - -1.8973538018496328e-13
+ - -6.928729508540177e-13
+ - 2.812149384884277e-13
+ - -6.657678965418801e-13
+ - -3.218725199566341e-14
+ - -1.9820570965750628e-13
+ - 7.115076756936123e-14
+ - -3.4728350837426314e-13
+ - 9.147955830346444e-14
+ - 5.505714157152952e-13
+ - -1.7448878713438587e-13
+ - -1.2366681029912785e-13
+ - 1.6940658945086007e-13
+ - -8.978549240895584e-14
+ - 2.829090043829363e-13
+ - -3.3881317890172014e-14
+ - 4.506215279392878e-13
+ - -2.0498197323554068e-13
+ - 3.4897757426877174e-13
+ - -7.623296525288703e-14
+ - -2.270048298641525e-13
+ - -1.1180834903756764e-13
+ - -1.7787691892340307e-13
+ - 1.3213713977167085e-13
+ - 3.100140586950739e-13
+ - 1.2366681029912785e-13
+ - -1.3552527156068805e-13
+ - 1.3383120566617945e-13
+ - -3.100140586950739e-13
+ - 3.7438856268640075e-13
+ - 9.317362419797304e-14
+ - 1.9820570965750628e-13
+ - -2.371692252312041e-14
+ - -4.506215279392878e-13
+ - -1.0164395367051604e-14
+ - 1.7957098481791167e-13
+ - -1.2874900798265365e-13
+ - -1.9312351197398048e-13
+ - 3.6422416731934915e-13
+ - -3.1340219048409113e-13
+ - -4.421511984667448e-13
+ - 1.0672615135404184e-13
+ - 3.049318610115481e-13
+ - -5.251604272976662e-14
+ - -1.4060746924421386e-13
+ - -7.962109704190423e-14
+ - -2.761327408049019e-13
+ - 6.640738306473715e-13
+ - -7.792703114739563e-14
+- - -6.984433869982501
+ - -0.3708991713752608
+ - 4.144689148501353
+ - -13.553954560479335
+ - 15.513862528368515
+ - -16.027040402245476
+ - -14.795829329502695
+ - 16.479717353202076
+ - -15.979222558640162
+ - 8.850785526025243
+ - -4.882944322678185
+ - -3.9904309960759674
+ - 4.633300085620406
+ - 1.6638877866777237
+ - -8.217472858783696
+ - 15.535666460249619
+ - -18.437775140258953
+ - 14.19452657675321
+ - 14.977239585643382
+ - -17.860656601572302
+ - 14.018679074005233
+ - -5.8717786780533725
+ - -0.694420635653486
+ - 6.3142165899986535
+ - -1.7524576305640482
+ - -6.9320352214262995
+ - 10.274006458378878
+ - -15.823294222329492
+ - 15.382451424780102
+ - -12.78627505187741
+ - -14.952193191528067
+ - 13.763819300244043
+ - -12.849875669647313
+ - -1.3071065548902703
+ - 6.14361153115304
+ - -12.91774345286824
+ - -5.492117484038256
+ - 11.945450021003822
+ - -16.202297086061666
+ - 17.920662332707774
+ - -17.829574939138638
+ - 15.605450060660742
+ - 14.233730614860432
+ - -19.021240928239408
+ - 16.554221476533822
+ - -9.677248704364956
+ - 5.402676052158674
+ - -0.846053945252567
+ - -1.3213713977167085e-13
+ - -1.1519648082658485e-13
+ - -3.6591823321385775e-13
+ - -3.3881317890172014e-15
+ - 4.811147140404426e-13
+ - 1.8973538018496328e-13
+ - 1.7618285302889447e-13
+ - -7.792703114739563e-14
+ - 8.131516293641283e-14
+ - -2.473336205982557e-13
+ - 0.0
+ - 9.452887691357992e-13
+ - -1.3552527156068805e-13
+ - -2.202285662861181e-13
+ - -4.912791094074942e-13
+ - -3.117081245895825e-13
+ - -1.1485766764768313e-12
+ - 4.506215279392878e-13
+ - -1.0977546996415732e-12
+ - -8.131516293641283e-14
+ - -4.1335207826009857e-13
+ - 1.5924219408380846e-13
+ - -5.72594272343907e-13
+ - 9.486769009248164e-14
+ - 9.41900637346782e-13
+ - -2.371692252312041e-13
+ - -1.8634724839594607e-13
+ - 2.812149384884277e-13
+ - -1.5924219408380846e-13
+ - 5.319366908757006e-13
+ - -8.131516293641283e-14
+ - 7.826584432629735e-13
+ - -3.6591823321385775e-13
+ - 5.454892180317694e-13
+ - -1.1858461261560205e-13
+ - -3.5236570605778894e-13
+ - -2.1006417091906648e-13
+ - -2.913793338554793e-13
+ - 2.846030702774449e-13
+ - 6.471331717022855e-13
+ - 2.405573570202213e-13
+ - -1.8634724839594607e-13
+ - 1.8295911660692887e-13
+ - -6.030874584450618e-13
+ - 7.521652571618187e-13
+ - 1.3213713977167085e-13
+ - 2.913793338554793e-13
+ - 3.3881317890172014e-15
+ - -7.623296525288703e-13
+ - -3.3881317890172014e-15
+ - 3.2526065174565133e-13
+ - -2.270048298641525e-13
+ - -4.0318768289304696e-13
+ - 7.047314121155779e-13
+ - -5.72594272343907e-13
+ - -8.538092108323347e-13
+ - 1.4907779871675686e-13
+ - 5.116079001415974e-13
+ - -9.147955830346444e-14
+ - -2.337810934421869e-13
+ - -8.470329472543003e-14
+ - -5.014435047745458e-13
+ - 1.0570971181733668e-12
+ - -1.4568966692773966e-13
+- - -3.450882319968619
+ - -1.0626606766676687
+ - 3.246250713470019
+ - -8.784703642044763
+ - 9.821503260222428
+ - -9.763348230929354
+ - -9.366727080239187
+ - 10.132628776026861
+ - -9.545823969240802
+ - 4.806456045059075
+ - -2.215463126272692
+ - -3.1192185825788408
+ - 2.1969309218882995
+ - 1.8203657175742491
+ - -5.713898399284587
+ - 9.858906210419578
+ - -11.358470989642493
+ - 8.466036678362725
+ - 9.333703850703698
+ - -10.718337190051368
+ - 8.174852596077109
+ - -2.874169961505446
+ - -1.1826859321891932
+ - 4.522997732742395
+ - -0.35743745178662234
+ - -4.956560483544874
+ - 6.895832460932381
+ - -9.875610984477861
+ - 9.383827476582171
+ - -7.450338946177787
+ - -9.156841583831817
+ - 8.109121759132924
+ - -7.23914858792504
+ - -1.4856188501008132
+ - 4.44891126585161
+ - -8.314263103246384
+ - -3.9744721810224717
+ - 7.839690143254623
+ - -10.194842998928074
+ - 10.79902564614132
+ - -10.479150608935631
+ - 9.628002593195662
+ - 9.146234611910032
+ - -11.767216004177122
+ - 10.041276414912756
+ - -5.409875831801896
+ - 2.5528029431587345
+ - 0.3930034409246704
+ - -1.0503208545953324e-13
+ - -8.131516293641283e-14
+ - -2.371692252312041e-13
+ - -3.3881317890172014e-15
+ - 2.846030702774449e-13
+ - 1.4399560103323106e-13
+ - 1.1519648082658485e-13
+ - -1.5246593050577406e-14
+ - 4.743384504624082e-14
+ - -1.8465318250143747e-13
+ - -2.202285662861181e-14
+ - 5.946171289725188e-13
+ - -9.656175598699024e-14
+ - -1.1689054672109345e-13
+ - -3.049318610115481e-13
+ - -1.8634724839594607e-13
+ - -7.115076756936123e-13
+ - 2.608861477543245e-13
+ - -6.691560283308973e-13
+ - -6.945670167485263e-14
+ - -2.676624113323589e-13
+ - 1.2366681029912785e-13
+ - -3.3542504711270293e-13
+ - 3.3881317890172014e-14
+ - 5.55653613398821e-13
+ - -1.0164395367051604e-13
+ - -1.0842021724855044e-13
+ - 1.7957098481791167e-13
+ - -1.2874900798265365e-13
+ - 3.4050724479622874e-13
+ - -6.606856988583543e-14
+ - 5.268544931921748e-13
+ - -2.219226321806267e-13
+ - 3.2526065174565133e-13
+ - -5.590417451878382e-14
+ - -2.1175823681357508e-13
+ - -1.5077186461126546e-13
+ - -1.5415999640028266e-13
+ - 1.8804131429045468e-13
+ - 4.45539330255762e-13
+ - 1.6940658945086007e-13
+ - -9.486769009248164e-14
+ - 7.453889935837843e-14
+ - -4.1843427594362437e-13
+ - 5.149960319306146e-13
+ - 6.606856988583543e-14
+ - 1.4907779871675686e-13
+ - 3.218725199566341e-14
+ - -4.692562527788824e-13
+ - 5.082197683525802e-15
+ - 2.0328790734103208e-13
+ - -1.3891340334970526e-13
+ - -2.795208725939191e-13
+ - 4.573977915173222e-13
+ - -4.0826988057657276e-13
+ - -5.861467994999758e-13
+ - 7.453889935837843e-14
+ - 3.1679032227310833e-13
+ - -3.7269449679189215e-14
+ - -1.3552527156068805e-13
+ - -3.5575383784680614e-14
+ - -3.1509625637859973e-13
+ - 5.996993266560446e-13
+ - -7.115076756936123e-14
+- - 7.06141936635342
+ - -4.765095543641761
+ - 1.889765568749134
+ - 3.1202680892737282
+ - -5.431598561921142
+ - 6.849071966231048
+ - 4.538810786642596
+ - -7.24401437244843
+ - 7.77284649586547
+ - -6.7174477600174445
+ - 5.222762334676653
+ - -1.7581875176053592
+ - -5.11656960722279
+ - 2.67317580646963
+ - -0.06305349347276895
+ - -4.6148498376991345
+ - 6.525323740969764
+ - -6.945412303686488
+ - -5.3047824473054686
+ - 7.736889529478563
+ - -7.806732048513333
+ - 6.062711769591103
+ - -4.233508081834211
+ - 0.7437805527538006
+ - 4.3516205733913225
+ - -1.443959091540459
+ - -1.150333154163777
+ - 5.561860173605222
+ - -7.183423551750089
+ - 7.1793341396089305
+ - 6.148697136221247
+ - -7.952369791651933
+ - 8.463526985651507
+ - -2.9076802059375457
+ - 0.24925374081071155
+ - 3.28181700949583
+ - -0.8102612546600737
+ - -2.9480663341151194
+ - 5.28071661637292
+ - -8.222127096069165
+ - 8.834241169424654
+ - -6.013693750703138
+ - -3.6409825626397243
+ - 6.498401999378027
+ - -7.25685887668701
+ - 6.584814166480354
+ - -6.727766624888102
+ - 4.974610402324622
+ - -8.385626177817573e-14
+ - -3.3881317890172014e-14
+ - 1.9058241313221758e-14
+ - -3.3881317890172014e-15
+ - -2.922263668027336e-13
+ - 1.164670302474663e-13
+ - -4.2351647362715017e-16
+ - 1.9608812728937053e-13
+ - -2.159934015498466e-14
+ - 3.176373552203626e-14
+ - -1.1943164556285635e-13
+ - -3.273782341137871e-13
+ - 5.251604272976662e-14
+ - 1.7830043539703022e-13
+ - 1.9354702844760763e-13
+ - 1.0122043719688889e-13
+ - 4.921261423547485e-13
+ - -2.625802136488331e-13
+ - 5.378659215064807e-13
+ - -1.24090326772755e-13
+ - 3.3881317890172014e-14
+ - 5.209252625613947e-14
+ - 2.4521603823011995e-13
+ - -9.656175598699024e-14
+ - -3.5914196963582334e-13
+ - 2.8079142201480056e-13
+ - 1.427250516123496e-13
+ - -1.1858461261560205e-13
+ - -7.115076756936123e-14
+ - -1.215492279309921e-13
+ - 8.893845946170154e-15
+ - -1.8168856718604742e-13
+ - 8.173867941003998e-14
+ - -2.6808592780598606e-13
+ - 1.418780186650953e-13
+ - 1.6601845766184287e-13
+ - -2.710505431213761e-14
+ - 2.1641691802347374e-13
+ - -4.912791094074942e-14
+ - -5.548065804515667e-14
+ - 3.5151867311053464e-14
+ - 1.9100592960584473e-13
+ - -1.8931186371133613e-13
+ - 5.929230630780102e-14
+ - -7.072725109573408e-14
+ - -1.274784585617722e-13
+ - -3.091670257478196e-13
+ - 8.978549240895584e-14
+ - 3.4220131069073734e-13
+ - -5.929230630780102e-15
+ - -9.402065714522734e-14
+ - 8.555032767268433e-14
+ - -3.049318610115481e-14
+ - -4.870439446712227e-14
+ - -3.261076846929056e-14
+ - 1.164670302474663e-13
+ - -1.6644197413547002e-13
+ - -1.8888834723770898e-13
+ - 6.776263578034403e-15
+ - 1.130788984584491e-13
+ - 2.0540548970916783e-13
+ - 2.0582900618279498e-13
+ - -6.107107549703505e-13
+ - 1.139259314057034e-13
+- - 10.87877090186718
+ - -6.422760794263081
+ - 1.493244656277957
+ - 7.279511925157664
+ - -11.043357856868226
+ - 12.73519723745371
+ - 9.428070063945013
+ - -13.637813513238694
+ - 13.926824983833237
+ - -10.856003000338278
+ - 7.684208111555492
+ - -1.3453092470681356
+ - -7.766830765095885
+ - 2.8091875149040653
+ - 1.8632737998155848
+ - -9.689757485480202
+ - 12.586310378844898
+ - -12.412814097826312
+ - -10.455824087367988
+ - 14.031703855174682
+ - -13.498475981520421
+ - 9.306342658466543
+ - -5.650475537349548
+ - -0.5131218971064792
+ - 6.102535625096406
+ - -0.5351932894077711
+ - -3.9244380791351254
+ - 11.003919947698606
+ - -13.299975733645164
+ - 12.400897213087767
+ - 11.567573496008352
+ - -13.921802668345574
+ - 14.090248024568861
+ - -3.4801404581057946
+ - -1.4166209340286988
+ - 7.3459885251294645
+ - 0.2499339910543398
+ - -6.9610472007687605
+ - 10.727900062487027
+ - -14.96285369237596
+ - 15.456190935147761
+ - -11.3775076967619
+ - -8.105541298835792
+ - 12.68636340582037
+ - -13.377485067670694
+ - 10.886383848138985
+ - -10.348335648346222
+ - 6.704986447063827
+ - -8.893845946170154e-14
+ - -2.541098841762901e-14
+ - 1.1096131609031334e-13
+ - -3.3881317890172014e-15
+ - -5.073727354053259e-13
+ - 1.2705494208814505e-13
+ - -5.251604272976662e-14
+ - 2.710505431213761e-13
+ - -4.573977915173222e-14
+ - 1.1519648082658485e-13
+ - -1.5077186461126546e-13
+ - -6.657678965418801e-13
+ - 1.2874900798265365e-13
+ - 2.795208725939191e-13
+ - 3.8031779331718085e-13
+ - 1.8973538018496328e-13
+ - 9.469828350303078e-13
+ - -4.489274620447792e-13
+ - 9.681586587116653e-13
+ - -1.7448878713438587e-13
+ - 1.3129010682441655e-13
+ - 2.371692252312041e-14
+ - 4.3198680309969317e-13
+ - -1.1773757966834775e-13
+ - -6.666149294891344e-13
+ - 4.1335207826009857e-13
+ - 2.388632911257127e-13
+ - -2.261577969168982e-13
+ - -7.369186641112413e-14
+ - -2.676624113323589e-13
+ - 3.3881317890172014e-14
+ - -4.0911691352382706e-13
+ - 1.7364175418713157e-13
+ - -4.590918574118308e-13
+ - 2.1260526976082939e-13
+ - 2.964615315390051e-13
+ - 4.235164736271502e-15
+ - 3.4982460721602604e-13
+ - -1.1434944787933055e-13
+ - -2.422514229147299e-13
+ - 2.541098841762901e-15
+ - 2.854501032246992e-13
+ - -2.617331807015788e-13
+ - 2.490276864927643e-13
+ - -2.600391148070702e-13
+ - -1.8550021544869177e-13
+ - -4.836558128822055e-13
+ - 1.0587911840678754e-13
+ - 6.301925127571995e-13
+ - -2.710505431213761e-14
+ - -1.9227647902672618e-13
+ - 1.7533582008164017e-13
+ - 3.5575383784680614e-14
+ - -2.0921713797181218e-13
+ - 8.639736061993863e-14
+ - 3.6253010142484055e-13
+ - -2.541098841762901e-13
+ - -3.7438856268640075e-13
+ - 2.541098841762901e-15
+ - 1.9481757786848908e-13
+ - 3.006966962752766e-13
+ - 4.0657581468206416e-13
+ - -1.029145030913975e-12
+ - 1.9227647902672618e-13
+- - 5.257119978126999
+ - 0.1901407691886521
+ - -4.365026986628193
+ - 12.386217811195973
+ - -14.933291320845361
+ - 13.986462540307787
+ - 13.292363930695906
+ - -15.47778226344429
+ - 13.731828568672462
+ - -7.065222220634556
+ - 2.4151433230114665
+ - 4.240050618893665
+ - -3.3382179214727397
+ - -3.3380069517404984
+ - 7.932221524116205
+ - -13.937282838341092
+ - 15.169516109439124
+ - -12.141946913314264
+ - -13.24275230757766
+ - 14.357425229398677
+ - -11.80113804071761
+ - 4.375918488917113
+ - 0.3959276716741777
+ - -6.198573144610846
+ - 0.7913652069243057
+ - 5.8009571797226025
+ - -9.616345011481616
+ - 14.05298147704252
+ - -14.437555729229343
+ - 10.800801797651628
+ - 13.104301307464977
+ - -12.71932345355181
+ - 10.580319015540066
+ - 1.9030183625460642
+ - -7.143185652779584
+ - 11.764075678221474
+ - 5.4947278140592495
+ - -12.041571175590486
+ - 14.483125667348126
+ - -15.465914112806127
+ - 14.091383835082242
+ - -8.064996539712093
+ - -12.870836217824708
+ - 15.725514622034886
+ - -14.347258396665366
+ - 7.9218020572802255
+ - -4.941893451389501
+ - -0.19918342837870565
+ - 9.613823951336309e-14
+ - 7.962109704190423e-14
+ - 3.46859991900636e-13
+ - 1.2281977735187355e-14
+ - -4.4172768199311763e-13
+ - -1.2281977735187355e-13
+ - -1.7872395187065737e-13
+ - 5.251604272976662e-14
+ - -7.157428404298838e-14
+ - 2.7232109254225756e-13
+ - 2.583450489125616e-14
+ - -8.787966827763366e-13
+ - 2.1175823681357508e-13
+ - 1.511953810848926e-13
+ - 4.5358614325467783e-13
+ - 2.253107639696439e-13
+ - 1.1265538198482195e-12
+ - -3.8455295805345235e-13
+ - 9.72817339921564e-13
+ - -1.7364175418713157e-14
+ - 3.6761229910836635e-13
+ - -1.8338263308055602e-13
+ - 3.9641141931501256e-13
+ - 4.658681209898652e-14
+ - -7.436949276892757e-13
+ - 1.5415999640028266e-13
+ - 1.8719428134320037e-13
+ - -2.4098087349384845e-13
+ - 1.15619997300212e-13
+ - -4.1165801236558996e-13
+ - 1.139259314057034e-13
+ - -6.822850390133389e-13
+ - 2.634272465960874e-13
+ - -3.951408698941311e-13
+ - 1.232432938255007e-13
+ - 2.998496633280223e-13
+ - 1.5839516113655416e-13
+ - 2.31239994600424e-13
+ - -2.0201735792015063e-13
+ - -6.556035011748285e-13
+ - -1.8804131429045468e-13
+ - 1.2790197503539935e-13
+ - -1.6940658945086007e-14
+ - 6.818615225397118e-13
+ - -7.017667968001878e-13
+ - -7.877406409464993e-14
+ - -2.871441691192078e-13
+ - -8.555032767268433e-14
+ - 6.708500942254059e-13
+ - -6.606856988583543e-14
+ - -2.693564772268675e-13
+ - 2.430984558619842e-13
+ - 3.180608716939898e-13
+ - -5.590417451878382e-13
+ - 5.243133943504119e-13
+ - 8.427977825180288e-13
+ - -1.147729643529577e-13
+ - -5.039846036163087e-13
+ - -4.277516383634217e-14
+ - 1.7745340244977592e-13
+ - 9.190307477709159e-14
+ - 4.980553729855286e-13
+ - -8.283982224147057e-13
+ - 1.5246593050577406e-13
+- - 1.9034302384737813
+ - 1.3023415408159797
+ - -3.485259151125681
+ - 7.805663169856358
+ - -9.000569790473385
+ - 7.997029044835993
+ - 8.084267140796076
+ - -8.932107232149601
+ - 7.59383771475257
+ - -3.239297656556035
+ - 0.38829465978923394
+ - 3.3664373533045997
+ - -1.0532248498076082
+ - -2.966949058901325
+ - 5.505244778579109
+ - -8.511922467616037
+ - 8.895346842495702
+ - -6.696802023075757
+ - -7.861739322501215
+ - 8.03564128471844
+ - -6.249315041474841
+ - 1.5389400918487377
+ - 1.3141564995267085
+ - -4.472665854025322
+ - -0.5214664975153911
+ - 4.369515112234577
+ - -6.3726787481472655
+ - 8.359322804232471
+ - -8.22707109747819
+ - 5.71114577733527
+ - 7.5585767319802235
+ - -6.848988667703367
+ - 5.243038119751083
+ - 2.031438480156804
+ - -5.004910051513265
+ - 7.335398084042007
+ - 4.001880147889441
+ - -7.609443233632137
+ - 8.726092754765519
+ - -8.683584084191192
+ - 7.581908614198982
+ - -3.881301834701088
+ - -7.106178034410469
+ - 9.286758234977365
+ - -8.146540080508615
+ - 3.8647085426808143
+ - -1.7672387076932732
+ - -1.3600714647684824
+ - 8.576208590949791e-14
+ - 6.225692162319107e-14
+ - 2.346281263894412e-13
+ - 1.0164395367051604e-14
+ - -2.3420460991581404e-13
+ - -1.1583175553702557e-13
+ - -1.2197274440461925e-13
+ - -9.952637130238029e-15
+ - -4.446922973085077e-14
+ - 1.7872395187065737e-13
+ - 4.701032857261367e-14
+ - -5.260074602449205e-13
+ - 1.3361944742936588e-13
+ - 5.971582278142817e-14
+ - 2.608861477543245e-13
+ - 1.3234889800848443e-13
+ - 6.562387758852692e-13
+ - -2.0011153378882846e-13
+ - 5.404070203482436e-13
+ - 1.7999450129153882e-14
+ - 2.4945120296639145e-13
+ - -1.3870164511289168e-13
+ - 2.1175823681357508e-13
+ - 5.505714157152952e-14
+ - -4.273281218897945e-13
+ - 3.8539999100070665e-14
+ - 9.338538243478661e-14
+ - -1.359487880343152e-13
+ - 9.825582188149884e-14
+ - -2.5474515888673083e-13
+ - 7.4750657595192e-14
+ - -4.281751548370488e-13
+ - 1.6305384234645282e-13
+ - -2.0371142381465923e-13
+ - 5.2304284492953046e-14
+ - 1.691948312140465e-13
+ - 1.1667878848427987e-13
+ - 1.0503208545953324e-13
+ - -1.274784585617722e-13
+ - -4.3918658315135473e-13
+ - -1.3997219453377313e-13
+ - 4.213988912590144e-14
+ - 3.176373552203626e-14
+ - 4.573977915173222e-13
+ - -4.717973516206453e-13
+ - -2.414043899674756e-14
+ - -1.2260801911505997e-13
+ - -8.089164646278568e-14
+ - 3.818001009748759e-13
+ - -4.298692207315574e-14
+ - -1.6368911705689354e-13
+ - 1.4632494163818038e-13
+ - 2.270048298641525e-13
+ - -3.746003209232143e-13
+ - 3.7078867266056997e-13
+ - 5.535360310306853e-13
+ - -3.8963515573697816e-14
+ - -3.0450834453792097e-13
+ - -3.028142786434124e-14
+ - 9.656175598699024e-14
+ - 1.418780186650953e-14
+ - 2.9434394917086937e-13
+ - -4.2351647362715017e-13
+ - 7.81387893842092e-14
+- - -8.132364962882209
+ - 4.120764853618552
+ - -1.2038288238831982
+ - -5.278370901344275
+ - 7.343803267211773
+ - -9.380778294695512
+ - -6.88370184377716
+ - 9.302769252509203
+ - -10.298477875007146
+ - 8.118653301521926
+ - -6.5424704712059825
+ - 1.1221584949134273
+ - 5.852387926846603
+ - -2.9514264345433108
+ - -1.25091213335819
+ - 7.102412547353122
+ - -10.020732968146358
+ - 9.21145708681651
+ - 7.704549473438532
+ - -11.133708640461652
+ - 10.035105438026788
+ - -6.970528131617835
+ - 3.5432523492169246
+ - 0.2901738740336493
+ - -4.598594043694494
+ - -0.23680466896489885
+ - 2.8064482489461127
+ - -8.0720463988204
+ - 9.065001351736287
+ - -9.187850362556265
+ - -8.509530121123902
+ - 9.569253977713315
+ - -10.480502984759385
+ - 2.6974442440975865
+ - 0.17582138985297538
+ - -5.325404374021653
+ - -0.05714914016160014
+ - 4.292122837853546
+ - -7.850324991908913
+ - 11.075761492000138
+ - -12.222395927226517
+ - 8.50852118234892
+ - 10.194121099152197
+ - -10.092928598089195
+ - 9.89985600715135
+ - -8.103501094546125
+ - 7.00432018790008
+ - -5.066499013279585
+ - 3.8963515573697816e-14
+ - 6.776263578034403e-15
+ - -7.115076756936123e-14
+ - 2.0328790734103208e-14
+ - 3.5236570605778894e-13
+ - -4.235164736271502e-14
+ - 2.879912020664621e-14
+ - -1.8634724839594607e-13
+ - 3.8963515573697816e-14
+ - -6.945670167485263e-14
+ - 1.1689054672109345e-13
+ - 4.70950318673391e-13
+ - -3.8963515573697816e-14
+ - -2.202285662861181e-13
+ - -2.778268066994105e-13
+ - -1.7279472123987727e-13
+ - -6.369687763352339e-13
+ - 3.2864878353466853e-13
+ - -7.013432803265607e-13
+ - 5.929230630780102e-14
+ - -1.0333801956502464e-13
+ - -2.710505431213761e-14
+ - -3.9302328752599536e-13
+ - 1.6432439176733427e-13
+ - 5.149960319306146e-13
+ - -3.1848438816761693e-13
+ - -1.7110065534536867e-13
+ - 1.7618285302889447e-13
+ - 1.6940658945086007e-14
+ - 2.337810934421869e-13
+ - 3.3881317890172014e-15
+ - 3.4728350837426314e-13
+ - -1.8465318250143747e-13
+ - 4.0149361699853836e-13
+ - -1.5585406229479126e-13
+ - -2.388632911257127e-13
+ - -3.049318610115481e-14
+ - -2.727446090158847e-13
+ - 1.3213713977167085e-13
+ - 1.4907779871675686e-13
+ - 3.5575383784680614e-14
+ - -2.185345003916095e-13
+ - 2.659683454378503e-13
+ - -1.0503208545953324e-13
+ - 2.0159384144652348e-13
+ - 1.4399560103323106e-13
+ - 3.1509625637859973e-13
+ - -8.978549240895584e-14
+ - -4.607859233063394e-13
+ - -2.541098841762901e-14
+ - 1.5415999640028266e-13
+ - -1.0842021724855044e-13
+ - -8.639736061993863e-14
+ - 2.0498197323554068e-13
+ - -7.453889935837843e-14
+ - -2.490276864927643e-13
+ - 1.8634724839594607e-13
+ - 2.473336205982557e-13
+ - -7.453889935837843e-14
+ - -1.5924219408380846e-13
+ - -2.0837010502455788e-13
+ - -2.710505431213761e-13
+ - 8.012931681025681e-13
+ - -1.0333801956502464e-13
+- - -11.313910589225651
+ - 4.771248636243456
+ - -0.44459487526147834
+ - -9.48579435901771
+ - 12.370718711200102
+ - -14.94393291493996
+ - -11.68651555895531
+ - 14.926166636148597
+ - -16.022625924290953
+ - 11.742532648413215
+ - -8.96169787006347
+ - 0.38571804470230403
+ - 8.050348305492287
+ - -3.1429564551305282
+ - -3.436245124574761
+ - 12.123344569234364
+ - -16.310758533945393
+ - 14.309489615997077
+ - 12.706039471032355
+ - -17.49527245305553
+ - 15.245424158257077
+ - -9.6707773944281
+ - 4.0088925217571845
+ - 1.8448645383539055
+ - -5.875725447581384
+ - -1.9608518045912937
+ - 5.772695341314348
+ - -13.341853529782712
+ - 14.383214810687727
+ - -13.945250540998128
+ - -13.654081949577897
+ - 14.597556970063003
+ - -15.495525224886757
+ - 2.893412953350976
+ - 1.63382229076009
+ - -9.389878187344584
+ - -1.3708686620026622
+ - 7.899375072924317
+ - -13.168407136088076
+ - 17.407682684407913
+ - -18.780705282494488
+ - 12.468655116971137
+ - 15.73631933039605
+ - -16.360336861899906
+ - 15.687186565255962
+ - -11.91983378430908
+ - 9.566346729402094
+ - -6.215700298393848
+ - 2.0328790734103208e-14
+ - -1.6940658945086007e-14
+ - -1.8634724839594607e-13
+ - 2.371692252312041e-14
+ - 5.421010862427522e-13
+ - 1.0164395367051604e-14
+ - 9.486769009248164e-14
+ - -2.270048298641525e-13
+ - 7.453889935837843e-14
+ - -1.5924219408380846e-13
+ - 1.4907779871675686e-13
+ - 7.962109704190423e-13
+ - -7.453889935837843e-14
+ - -3.2526065174565133e-13
+ - -4.54009659728305e-13
+ - -2.744386749103933e-13
+ - -1.0164395367051604e-12
+ - 4.87890977618477e-13
+ - -1.111307226797642e-12
+ - 3.7269449679189215e-14
+ - -2.1684043449710089e-13
+ - 0.0
+ - -5.963111948670274e-13
+ - 2.202285662861181e-13
+ - 8.233160247311799e-13
+ - -4.2351647362715017e-13
+ - -2.541098841762901e-13
+ - 2.574980159653073e-13
+ - -2.710505431213761e-14
+ - 3.9979955110402976e-13
+ - -3.3881317890172014e-15
+ - 6.200281173901478e-13
+ - -3.015437292225309e-13
+ - 6.301925127571995e-13
+ - -2.1345230270808369e-13
+ - -3.6253010142484055e-13
+ - -7.792703114739563e-14
+ - -3.8963515573697816e-13
+ - 2.337810934421869e-13
+ - 3.3203691532368573e-13
+ - 1.0842021724855044e-13
+ - -2.879912020664621e-13
+ - 3.6253010142484055e-13
+ - -2.744386749103933e-13
+ - 4.3029273720518457e-13
+ - 2.0328790734103208e-13
+ - 4.0318768289304696e-13
+ - -1.2536087619363645e-13
+ - -7.453889935837843e-13
+ - -6.098637220230962e-14
+ - 2.778268066994105e-13
+ - -1.7618285302889447e-13
+ - -2.202285662861181e-13
+ - 4.2012834183813297e-13
+ - -2.303929616531697e-13
+ - -5.149960319306146e-13
+ - 2.676624113323589e-13
+ - 4.1674021004911577e-13
+ - -1.1519648082658485e-13
+ - -2.473336205982557e-13
+ - -2.812149384884277e-13
+ - -4.54009659728305e-13
+ - 1.1993986533120893e-12
+ - -1.5246593050577406e-13
+- - -5.660589151530598
+ - 1.8084848070346617
+ - 0.517878546637807
+ - -6.035228435379495
+ - 7.485543741080368
+ - -8.616076475577124
+ - -7.116649025442354
+ - 8.661841043897414
+ - -9.036597008553398
+ - 6.144456018750286
+ - -4.399248488182501
+ - -0.5143926758158955
+ - 3.9726267628342855
+ - -0.9928519627097868
+ - -2.7398321579972436
+ - 7.414971990873054
+ - -9.586649516079213
+ - 8.058607171955066
+ - 7.5530436947566
+ - -9.960307346780631
+ - 8.400534525580433
+ - -4.822388982220267
+ - 1.4517898755218706
+ - 1.7903042346863343
+ - -2.625657114489227
+ - -1.9627827707611998
+ - 4.012528988360277
+ - -7.946106319049212
+ - 8.262512555760344
+ - -7.6769413848212
+ - -7.923946040589998
+ - 8.076570007972848
+ - -8.303278353501163
+ - 0.9305010529328982
+ - 1.6534870584814652
+ - -5.8901414211245475
+ - -1.4630038764297586
+ - 5.112562107984989
+ - -7.940579356982545
+ - 9.912322792063108
+ - -10.465523667607252
+ - 6.618316814136021
+ - 8.808423573226506
+ - -8.843254135005518
+ - 9.000639217909187
+ - -6.352548319984626
+ - 4.6790380522738415
+ - -2.6086071488233467
+ - -2.202285662861181e-14
+ - -1.3552527156068805e-14
+ - -1.1858461261560205e-13
+ - 3.3881317890172014e-15
+ - 3.066259269060567e-13
+ - 3.5575383784680614e-14
+ - 6.945670167485263e-14
+ - -9.656175598699024e-14
+ - 5.251604272976662e-14
+ - -8.470329472543003e-14
+ - 6.945670167485263e-14
+ - 4.658681209898652e-13
+ - -5.929230630780102e-14
+ - -1.4738373282224826e-13
+ - -2.473336205982557e-13
+ - -1.5077186461126546e-13
+ - -5.709002064493984e-13
+ - 2.608861477543245e-13
+ - -6.454391058077769e-13
+ - 8.470329472543003e-15
+ - -1.5077186461126546e-13
+ - 3.8963515573697816e-14
+ - -3.049318610115481e-13
+ - 1.2366681029912785e-13
+ - 4.658681209898652e-13
+ - -1.9820570965750628e-13
+ - -1.2705494208814505e-13
+ - 1.6432439176733427e-13
+ - -3.3881317890172014e-14
+ - 2.354751593366955e-13
+ - -1.3552527156068805e-14
+ - 3.8285889215894375e-13
+ - -1.7787691892340307e-13
+ - 3.3373098121819433e-13
+ - -1.0842021724855044e-13
+ - -1.8804131429045468e-13
+ - -6.268043809681823e-14
+ - -2.0667603913004928e-13
+ - 1.5077186461126546e-13
+ - 2.270048298641525e-13
+ - 8.809142651444724e-14
+ - -1.4907779871675686e-13
+ - 1.7448878713438587e-13
+ - -1.8295911660692887e-13
+ - 2.981555974335137e-13
+ - 9.486769009248164e-14
+ - 1.9651164376299768e-13
+ - -2.371692252312041e-14
+ - -4.37069000783219e-13
+ - -2.371692252312041e-14
+ - 1.6771252355635147e-13
+ - -9.656175598699024e-14
+ - -1.6771252355635147e-13
+ - 2.710505431213761e-13
+ - -1.7957098481791167e-13
+ - -3.5236570605778894e-13
+ - 1.3721933745519665e-13
+ - 2.405573570202213e-13
+ - -5.082197683525802e-14
+ - -1.3213713977167085e-13
+ - -1.2366681029912785e-13
+ - -2.591920818598159e-13
+ - 6.539094352803199e-13
+ - -8.978549240895584e-14
+- - 11.26953899403319
+ - -8.416870228995851
+ - 4.251322169649839
+ - 2.8260413758176974
+ - -6.349995430352077
+ - 9.028512880826144
+ - 5.122080214775707
+ - -9.414626102918932
+ - 10.704284989179028
+ - -10.278210446445957
+ - 8.637716275792293
+ - -3.993086408735802
+ - -8.265856510226799
+ - 5.393941661967456
+ - -1.808093975048117
+ - -5.11698914487768
+ - 8.194330264767295
+ - -9.591704689634746
+ - -6.4764810139319495
+ - 10.494670790305163
+ - -11.17654957159747
+ - 9.704948806181072
+ - -7.5277886962662794
+ - 2.6323910533553248
+ - 7.4689235874843325
+ - -3.788327548601692
+ - 0.039161311899490896
+ - 6.754846959408851
+ - -9.530921131985952
+ - 10.289971573811464
+ - 7.988037501988239
+ - -11.248316737121026
+ - 12.591078777983565
+ - -5.510529033387894
+ - 1.953702954004281
+ - 3.242992431531908
+ - -2.597677054981804
+ - -2.6098959870618703
+ - 6.169390579278452
+ - -11.121348681939882
+ - 12.477645921811558
+ - -10.420670239789683
+ - -10.824466931758657
+ - 12.178800903308204
+ - -9.666414660889094
+ - 9.862449115645031
+ - -10.763394647651886
+ - 8.774527427573275
+ - -1.6940658945086007e-13
+ - -2.0328790734103208e-14
+ - 1.9481757786848908e-14
+ - -3.3881317890172014e-14
+ - -4.1758724299637007e-13
+ - 2.0328790734103208e-13
+ - 1.6940658945086007e-15
+ - 2.981555974335137e-13
+ - -5.082197683525802e-15
+ - 5.759824041329242e-14
+ - -2.320870275476783e-13
+ - -4.62479989200848e-13
+ - 2.879912020664621e-14
+ - 3.100140586950739e-13
+ - 2.574980159653073e-13
+ - 1.0587911840678754e-13
+ - 6.76779324856186e-13
+ - -4.0488174878755556e-13
+ - 7.453889935837843e-13
+ - -2.1768746744435519e-13
+ - -4.404571325722362e-14
+ - 1.4823076576950256e-13
+ - 3.6253010142484055e-13
+ - -1.2451384324638215e-13
+ - -5.031375706690544e-13
+ - 4.79420648145934e-13
+ - 2.600391148070702e-13
+ - -1.0079692072326174e-13
+ - -1.2620790914089075e-13
+ - -1.5415999640028266e-13
+ - -2.879912020664621e-14
+ - -1.6686549060909717e-13
+ - 9.656175598699024e-14
+ - -4.2690460541616737e-13
+ - 2.1599340154984659e-13
+ - 2.464865876510014e-13
+ - -8.131516293641283e-14
+ - 3.8878812278972386e-13
+ - -3.5575383784680614e-14
+ - -6.268043809681823e-14
+ - 1.1943164556285635e-13
+ - 2.659683454378503e-13
+ - -3.032377951170395e-13
+ - 2.117582368135751e-14
+ - 1.6093625997831706e-14
+ - -1.8719428134320037e-13
+ - -4.472333961502706e-13
+ - 2.507217523872729e-13
+ - 4.3622196783596467e-13
+ - 4.1504614415460717e-14
+ - -1.2027867851011065e-13
+ - 1.0249098661777034e-13
+ - -1.2705494208814505e-13
+ - -2.202285662861181e-14
+ - -1.4484263398048536e-13
+ - 5.759824041329242e-14
+ - -3.057788939588024e-13
+ - -2.253107639696439e-13
+ - 3.4728350837426314e-14
+ - 1.6347735882007997e-13
+ - 4.0657581468206416e-13
+ - 2.625802136488331e-13
+ - -8.893845946170154e-13
+ - 1.2112571145736495e-13
+- - 9.980711549836808
+ - -6.873847911394842
+ - 2.874120012777876
+ - 4.05624051758662
+ - -7.301291357538387
+ - 9.367897196314903
+ - 6.066535502724389
+ - -9.891233565214165
+ - 10.70660833504596
+ - -9.421562603790093
+ - 7.42610688453109
+ - -2.6799825417456566
+ - -7.248019136075613
+ - 3.9581838007358083
+ - -0.36967895208047397
+ - -6.152993154141401
+ - 8.852571055177119
+ - -9.57107264489982
+ - -7.170556247997739
+ - 10.625265520237619
+ - -10.823057875539957
+ - 8.573854628318847
+ - -6.115783445571016
+ - 1.2889541674440548
+ - 6.2367983012253605
+ - -2.2901724159807304
+ - -1.3176036150969506
+ - 7.512462567558951
+ - -9.840612224812572
+ - 9.955392220959226
+ - 8.390709050602789
+ - -11.008009362714956
+ - 11.811770379166337
+ - -4.252552327398054
+ - 0.602559685722421
+ - 4.310836917998766
+ - -1.3594381405434437
+ - -3.8278792764482983
+ - 7.09264576112622
+ - -11.292142418607364
+ - 12.21431298684002
+ - -9.678772568710594
+ - -10.705508834243195
+ - 11.453962523246481
+ - -9.386209357575362
+ - 9.200711786473494
+ - -9.518701773536272
+ - 7.168560357154535
+ - -1.1604351377383915e-13
+ - -1.2705494208814505e-14
+ - 4.828087799349512e-14
+ - -2.541098841762901e-14
+ - -4.0742284762931846e-13
+ - 1.5331296345302836e-13
+ - -2.371692252312041e-14
+ - 2.354751593366955e-13
+ - -1.6093625997831706e-14
+ - 6.945670167485263e-14
+ - -1.9227647902672618e-13
+ - -4.895850435129856e-13
+ - 5.675120746603812e-14
+ - 2.727446090158847e-13
+ - 2.642742795433417e-13
+ - 1.0926725019580474e-13
+ - 6.971081155902892e-13
+ - -3.7862372742267225e-13
+ - 7.453889935837843e-13
+ - -1.7194768829262297e-13
+ - 1.4399560103323106e-14
+ - 8.470329472543003e-14
+ - 3.3288394827094003e-13
+ - -1.0249098661777034e-13
+ - -5.090668012998345e-13
+ - 3.9302328752599536e-13
+ - 2.346281263894412e-13
+ - -1.1943164556285635e-13
+ - -9.825582188149884e-14
+ - -1.8126505071242027e-13
+ - -1.3552527156068805e-14
+ - -2.31239994600424e-13
+ - 1.1604351377383915e-13
+ - -4.0996394647108136e-13
+ - 1.9058241313221758e-13
+ - 2.464865876510014e-13
+ - -3.7269449679189215e-14
+ - 3.4643647542700884e-13
+ - -6.437450399132683e-14
+ - -1.2959604092990795e-13
+ - 7.284483346386983e-14
+ - 2.31239994600424e-13
+ - -2.558039500707987e-13
+ - 9.317362419797304e-14
+ - -8.978549240895584e-14
+ - -1.7194768829262297e-13
+ - -4.0234064994579266e-13
+ - 1.7872395187065737e-13
+ - 4.582448244645765e-13
+ - 1.4399560103323106e-14
+ - -1.4484263398048536e-13
+ - 1.0418505251227894e-13
+ - -5.675120746603812e-14
+ - -8.893845946170154e-14
+ - -4.0657581468206416e-14
+ - 1.5077186461126546e-13
+ - -2.574980159653073e-13
+ - -2.464865876510014e-13
+ - 2.625802136488331e-14
+ - 1.6263032587282567e-13
+ - 3.5151867311053464e-13
+ - 2.888382350137164e-13
+ - -8.487270131488089e-13
+ - 1.2027867851011065e-13
+- - -10.374612522115834
+ - 10.261939174080288
+ - -7.771964802907406
+ - 4.124920601794054
+ - -1.4181860695107822
+ - -2.3708383507880177
+ - 1.9109242411176715
+ - 1.9409158521089749
+ - -4.543206023331057
+ - 8.08149807333891
+ - -8.920700657049284
+ - 7.38455787587954
+ - 7.923491489622174
+ - -8.51151283742668
+ - 6.997755987129861
+ - -2.3095178109349175
+ - -0.6352395533371396
+ - 4.169349069022072
+ - -0.2506071881127566
+ - -3.898554292059103
+ - 6.284847345937669
+ - -9.026064605811076
+ - 9.316419192423572
+ - -6.937111849857904
+ - -8.512417026635164
+ - 8.09881786700443
+ - -5.891746368812393
+ - 0.4073405727534097
+ - 2.7131683456090703
+ - -5.8258326952611625
+ - -1.6542055184860032
+ - 5.825307612659991
+ - -8.730424689941731
+ - 7.791317683735591
+ - -6.681743459087885
+ - 3.244530905518942
+ - 6.466812707752792
+ - -4.163920508921328
+ - 1.3736306640745843
+ - 3.991096379498348
+ - -6.447841984403093
+ - 7.645201916528074
+ - 5.11950034013946
+ - -8.319141830467036
+ - 8.99382623592996
+ - -7.060642820020951
+ - 9.96824523707356
+ - -10.686596914118315
+ - 2.625802136488331e-13
+ - 4.658681209898652e-14
+ - 1.1011428314305904e-13
+ - 4.743384504624082e-14
+ - 1.9354702844760763e-13
+ - -3.0620241043242957e-13
+ - -1.3129010682441655e-13
+ - -3.9810548520952116e-13
+ - -1.6093625997831706e-14
+ - 3.4304834363799164e-14
+ - 3.2356658585114273e-13
+ - 6.140988867593677e-14
+ - 1.1096131609031334e-13
+ - -2.82061971435682e-13
+ - -9.317362419797304e-14
+ - 3.3034284942917713e-14
+ - -1.7787691892340307e-13
+ - 2.524158182817815e-13
+ - -2.913793338554793e-13
+ - 2.4818065354551e-13
+ - 2.6046263128069735e-13
+ - -3.6676526616111205e-13
+ - -2.414043899674756e-13
+ - 1.435720845596039e-13
+ - 1.7194768829262297e-13
+ - -5.501478992416681e-13
+ - -2.0921713797181218e-13
+ - -2.329340604949326e-14
+ - 1.6686549060909717e-13
+ - -7.538593230563273e-14
+ - 8.385626177817573e-14
+ - -1.8719428134320037e-13
+ - -4.235164736271502e-15
+ - 3.0112021274890377e-13
+ - -2.0709955560367643e-13
+ - -1.1689054672109345e-13
+ - 1.9142944607947188e-13
+ - -3.6507120026660345e-13
+ - -9.232659125071874e-14
+ - -2.7570922433127476e-13
+ - -2.8756768559283497e-13
+ - -2.346281263894412e-13
+ - 3.273782341137871e-13
+ - 2.625802136488331e-13
+ - -4.413041655194905e-13
+ - 1.2112571145736495e-13
+ - 3.959879028413854e-13
+ - -4.290221877843031e-13
+ - -7.496241583200558e-14
+ - -1.147729643529577e-13
+ - -2.583450489125616e-14
+ - -4.701032857261367e-14
+ - 3.3796614595446584e-13
+ - -2.8417955380381776e-13
+ - 4.819617469876969e-13
+ - 4.086933970501999e-13
+ - 3.324604317973129e-13
+ - 9.317362419797304e-15
+ - -7.326834993749698e-14
+ - -7.496241583200558e-14
+ - -4.2351647362715017e-13
+ - 1.6940658945086007e-15
+ - 5.200782296141404e-13
+ - -3.8116482626443515e-14
+- - -11.138195599026036
+ - 10.400689575509261
+ - -7.3975908069464005
+ - 2.778547618771885
+ - 0.2592147011836078
+ - -4.002547467178613
+ - 0.4261987283885712
+ - 3.7336228406018073
+ - -6.180350354667476
+ - 9.014934141821023
+ - -9.339612555687022
+ - 7.018385423385677
+ - 8.429638858019906
+ - -8.268189977756077
+ - 6.20459280120938
+ - -0.7575065234899129
+ - -2.3765726608758295
+ - 5.619445806069044
+ - 1.254898492435274
+ - -5.599052241119744
+ - 7.729610529677804
+ - -9.667876076813197
+ - 9.41674061300537
+ - -6.3404981437947985
+ - -8.73749217878787
+ - 7.563769472358924
+ - -4.889026258678335
+ - -1.187933510289398
+ - 4.3995470825462135
+ - -7.14920310224872
+ - -3.174000814658209
+ - 7.3651697844747375
+ - -10.07472282892246
+ - 7.697967406324568
+ - -5.975723469612507
+ - 1.9551602482934227
+ - 5.943106840552201
+ - -2.859666161537493
+ - -0.25534315480517383
+ - 5.817212142864125
+ - -8.158431784121966
+ - 8.685715860422107
+ - 6.684838745343769
+ - -9.640961946243571
+ - 9.806675071553551
+ - -7.313543729470511
+ - 10.687297877369165
+ - -10.833206998939094
+ - 2.541098841762901e-13
+ - 3.9810548520952116e-14
+ - 8.639736061993863e-14
+ - 4.658681209898652e-14
+ - 2.507217523872729e-13
+ - -3.015437292225309e-13
+ - -1.0672615135404184e-13
+ - -3.9048218868423246e-13
+ - -1.2705494208814505e-14
+ - 1.3552527156068805e-14
+ - 3.2271955290388843e-13
+ - 1.5924219408380846e-13
+ - 8.470329472543003e-14
+ - -3.040848280642938e-13
+ - -1.3467823861343375e-13
+ - -8.470329472543003e-16
+ - -2.956144985917508e-13
+ - 3.006966962752766e-13
+ - -4.1081097941833566e-13
+ - 2.558039500707987e-13
+ - 2.244637310223896e-13
+ - -3.3966021184897444e-13
+ - -2.778268066994105e-13
+ - 1.4653669987499396e-13
+ - 2.541098841762901e-13
+ - -5.64123942871364e-13
+ - -2.270048298641525e-13
+ - 7.623296525288703e-15
+ - 1.7194768829262297e-13
+ - -2.710505431213761e-14
+ - 7.284483346386983e-14
+ - -1.1773757966834775e-13
+ - -2.541098841762901e-14
+ - 3.4813054132151744e-13
+ - -2.219226321806267e-13
+ - -1.5161889755851976e-13
+ - 1.8041801776516597e-13
+ - -3.9132922163148676e-13
+ - -7.284483346386983e-14
+ - -2.1684043449710089e-13
+ - -2.685094442796132e-13
+ - -2.532628512290358e-13
+ - 3.4558944247975454e-13
+ - 2.1429933565533799e-13
+ - -3.6591823321385775e-13
+ - 1.4060746924421386e-13
+ - 4.2521053952165877e-13
+ - -4.1419911120735287e-13
+ - -1.5754812818929986e-13
+ - -1.0333801956502464e-13
+ - 1.3552527156068805e-14
+ - -6.437450399132683e-14
+ - 3.07472959853311e-13
+ - -2.371692252312041e-13
+ - 4.2605757246891307e-13
+ - 3.2949581648192283e-13
+ - 3.4982460721602604e-13
+ - 5.590417451878382e-14
+ - -6.945670167485263e-14
+ - -9.825582188149884e-14
+ - -4.45539330255762e-13
+ - -5.590417451878382e-14
+ - 6.284984468626909e-13
+ - -5.505714157152952e-14
+- - 9.526745953516768
+ - -11.46026578822472
+ - 9.132495557533339
+ - -7.2564269979551215
+ - 4.313539002746917
+ - -0.8912589662533627
+ - -5.168410086393868
+ - 0.9580434483026271
+ - 1.4166689464975752
+ - -6.672356015159287
+ - 7.917365822665005
+ - -8.667043419199922
+ - -7.399206972305614
+ - 8.879810711346357
+ - -9.163598473698679
+ - 5.770176156703334
+ - -3.758031680664152
+ - -1.379792049458743
+ - 3.4730447352810843
+ - -0.1752939071811082
+ - -3.6648115861982005
+ - 8.324361480071799
+ - -10.52362004146849
+ - 8.71396313990235
+ - 8.663747171942257
+ - -10.563013666954658
+ - 8.444773480003285
+ - -3.7977665176972892
+ - -0.0954860439530574
+ - 3.4628914356914193
+ - -1.4206858090756158
+ - -3.74061007775619
+ - 6.5248468844055045
+ - -8.526510035775035
+ - 7.88991043787227
+ - -6.177227991535057
+ - -8.009180077376994
+ - 6.45838186340519
+ - -4.900441709725536
+ - -0.4014749966137345
+ - 2.5326461294149056
+ - -5.965317602351775
+ - -2.152924071592087
+ - 5.357088911591714
+ - -7.89716535508678
+ - 8.803244324109079
+ - -9.916594371294714
+ - 11.167660332899228
+ - -3.2356658585114273e-13
+ - -7.792703114739563e-14
+ - -1.6432439176733427e-13
+ - -5.082197683525802e-14
+ - -1.2536087619363645e-13
+ - 3.9641141931501256e-13
+ - 1.6601845766184287e-13
+ - 4.675621868843738e-13
+ - 5.082197683525802e-14
+ - -3.7269449679189215e-14
+ - -3.049318610115481e-13
+ - 1.3721933745519665e-13
+ - -1.3552527156068805e-13
+ - 2.591920818598159e-13
+ - 1.0164395367051604e-14
+ - -1.5077186461126546e-13
+ - -5.082197683525802e-15
+ - -1.7618285302889447e-13
+ - 5.421010862427522e-14
+ - -2.846030702774449e-13
+ - -4.0488174878755556e-13
+ - 4.777265822514254e-13
+ - 9.486769009248164e-14
+ - -7.792703114739563e-14
+ - 2.879912020664621e-14
+ - 5.336307567702092e-13
+ - 1.8804131429045468e-13
+ - 1.3044307387716225e-13
+ - -2.1684043449710089e-13
+ - 1.9989977555201488e-13
+ - -7.792703114739563e-14
+ - 3.8116482626443515e-13
+ - -7.792703114739563e-14
+ - -2.0328790734103208e-13
+ - 1.4907779871675686e-13
+ - 3.218725199566341e-14
+ - -2.388632911257127e-13
+ - 3.5405977195229754e-13
+ - 1.9312351197398048e-13
+ - 3.9302328752599536e-13
+ - 3.9471735342050396e-13
+ - 2.202285662861181e-13
+ - -2.371692252312041e-13
+ - -2.524158182817815e-13
+ - 6.539094352803199e-13
+ - -6.606856988583543e-14
+ - -4.489274620447792e-13
+ - 4.675621868843738e-13
+ - -8.809142651444724e-14
+ - 1.0842021724855044e-13
+ - 1.0842021724855044e-13
+ - 6.606856988583543e-14
+ - -5.251604272976662e-13
+ - 4.590918574118308e-13
+ - -6.420509740187597e-13
+ - -5.759824041329242e-13
+ - -3.117081245895825e-13
+ - 3.8963515573697816e-14
+ - 3.3881317890172014e-14
+ - -5.082197683525802e-15
+ - 4.3537493488871037e-13
+ - -7.792703114739563e-14
+ - -3.1848438816761693e-13
+ - 1.6940658945086007e-14
+- - 16.085818727613056
+ - -18.609777485496156
+ - 14.368709873159036
+ - -10.420150549068794
+ - 5.3603722081152485
+ - 0.11369455902803904
+ - -6.922117718899433
+ - -0.15933389349771268
+ - 3.8399700528066787
+ - -11.645036297212378
+ - 13.163097101357454
+ - -13.626033130766736
+ - -12.410878222471618
+ - 14.085515986812364
+ - -14.020854634623571
+ - 7.828425458743932
+ - -4.404606463011201
+ - -3.602740230692047
+ - 4.168918400040494
+ - 1.333098751017616
+ - -7.281852672567109
+ - 14.031461708869719
+ - -17.063084014294894
+ - 13.482701703049933
+ - 14.182621590669287
+ - -16.522781571456136
+ - 12.66273962433804
+ - -4.6071484787276775
+ - -1.756910936333941
+ - 6.840942908460379
+ - -0.8462653543322489
+ - -7.494769686042991
+ - 11.797674683766319
+ - -13.658722838900044
+ - 12.049758793621148
+ - -8.734303610721852
+ - -12.415634559301914
+ - 9.173153665117084
+ - -6.352983612631557
+ - -2.382731518894638
+ - 5.708748945673983
+ - -10.606820373863465
+ - -4.958793206143709
+ - 9.893184110671855
+ - -13.505216193531526
+ - 13.90608064978631
+ - -16.49738122049035
+ - 18.145160898686893
+ - -5.04831636563563e-13
+ - -1.2874900798265365e-13
+ - -2.439454888092385e-13
+ - -9.147955830346444e-14
+ - -2.270048298641525e-13
+ - 6.132518538121134e-13
+ - 2.642742795433417e-13
+ - 7.589415207398531e-13
+ - 9.147955830346444e-14
+ - -3.7269449679189215e-14
+ - -4.912791094074942e-13
+ - 1.1858461261560205e-13
+ - -1.7957098481791167e-13
+ - 4.2690460541616737e-13
+ - 4.0657581468206416e-14
+ - -2.1006417091906648e-13
+ - 1.0164395367051604e-13
+ - -3.1509625637859973e-13
+ - 1.9651164376299768e-13
+ - -4.811147140404426e-13
+ - -6.098637220230962e-13
+ - 7.555533889508359e-13
+ - 1.7618285302889447e-13
+ - -1.2874900798265365e-13
+ - -3.049318610115481e-14
+ - 8.843023969334896e-13
+ - 3.2187251995663413e-13
+ - 1.7618285302889447e-13
+ - -3.5914196963582334e-13
+ - 2.913793338554793e-13
+ - -1.2536087619363645e-13
+ - 5.488773498207866e-13
+ - -1.1180834903756764e-13
+ - -3.8963515573697816e-13
+ - 2.676624113323589e-13
+ - 7.115076756936123e-14
+ - -3.7947076036992655e-13
+ - 5.861467994999758e-13
+ - 3.015437292225309e-13
+ - 5.55653613398821e-13
+ - 6.505213034913027e-13
+ - 3.4558944247975454e-13
+ - -3.8624702394796095e-13
+ - -3.6253010142484055e-13
+ - 9.58841296291868e-13
+ - -1.1519648082658485e-13
+ - -7.453889935837843e-13
+ - 7.284483346386983e-13
+ - -6.437450399132683e-14
+ - 1.6601845766184287e-13
+ - 1.2536087619363645e-13
+ - 1.2874900798265365e-13
+ - -7.792703114739563e-13
+ - 6.810144895924575e-13
+ - -9.961107459710572e-13
+ - -8.605854744103691e-13
+ - -5.319366908757006e-13
+ - 2.710505431213761e-14
+ - 3.7269449679189215e-14
+ - 3.049318610115481e-14
+ - 7.250602028496811e-13
+ - -6.776263578034403e-14
+ - -6.335806445462167e-13
+ - 4.743384504624082e-14
+- - 9.753899537816041
+ - -10.91675141997004
+ - 8.19091006783469
+ - -5.4091278447770845
+ - 2.295983318823879
+ - 0.8721977447124464
+ - -3.301717289919079
+ - -0.978516751814863
+ - 3.047001939868864
+ - -7.249159060151602
+ - 7.8797403264843995
+ - -7.76203072849876
+ - -7.4845396913421895
+ - 8.090352693782062
+ - -7.78128728350451
+ - 3.7967980547464517
+ - -1.7076749195313539
+ - -2.816322611963712
+ - 1.6865684090887558
+ - 1.6167813706186605
+ - -4.958319793708575
+ - 8.496224838684913
+ - -9.996170561678246
+ - 7.564672998980294
+ - 8.378510951357867
+ - -9.367401725824639
+ - 6.886118196048429
+ - -1.897675276482376
+ - -1.8572606737170643
+ - 4.641356252725583
+ - 0.25734265115347804
+ - -5.129609575207669
+ - 7.541070961129962
+ - -7.915836013034511
+ - 6.675135449017314
+ - -4.45456329202473
+ - -6.9786553312686435
+ - 4.702829988487034
+ - -2.8987124620250677
+ - -2.290876420682257
+ - 4.172420853878792
+ - -6.696845159275344
+ - -3.663712234153039
+ - 6.419595290620195
+ - -8.273934441620753
+ - 7.9566932497805185
+ - -9.143193317861058
+ - 10.64960329412581
+ - -2.862971361719535e-13
+ - -5.759824041329242e-14
+ - -1.2027867851011065e-13
+ - -5.421010862427522e-14
+ - -1.6263032587282567e-13
+ - 3.4389537658524594e-13
+ - 1.4568966692773966e-13
+ - 4.0996394647108136e-13
+ - 5.590417451878382e-14
+ - -1.1858461261560205e-14
+ - -2.812149384884277e-13
+ - 2.710505431213761e-14
+ - -7.284483346386983e-14
+ - 2.541098841762901e-13
+ - 4.404571325722362e-14
+ - -1.1519648082658485e-13
+ - 1.1858461261560205e-13
+ - -2.1345230270808369e-13
+ - 1.7957098481791167e-13
+ - -2.964615315390051e-13
+ - -3.5405977195229754e-13
+ - 4.45539330255762e-13
+ - 1.2536087619363645e-13
+ - -8.978549240895584e-14
+ - -4.404571325722362e-14
+ - 5.166900978251232e-13
+ - 1.9481757786848908e-13
+ - 8.978549240895584e-14
+ - -2.185345003916095e-13
+ - 1.4060746924421386e-13
+ - -7.115076756936123e-14
+ - 2.710505431213761e-13
+ - -5.082197683525802e-14
+ - -2.574980159653073e-13
+ - 1.5754812818929986e-13
+ - 5.590417451878382e-14
+ - -2.185345003916095e-13
+ - 3.6253010142484055e-13
+ - 1.7618285302889447e-13
+ - 2.778268066994105e-13
+ - 3.8963515573697816e-13
+ - 2.1345230270808369e-13
+ - -2.219226321806267e-13
+ - -1.7957098481791167e-13
+ - 5.319366908757006e-13
+ - -8.809142651444724e-14
+ - -4.37069000783219e-13
+ - 4.2012834183813297e-13
+ - -1.1858461261560205e-14
+ - 7.962109704190423e-14
+ - 3.8963515573697816e-14
+ - 7.453889935837843e-14
+ - -4.404571325722362e-13
+ - 3.7100043089738355e-13
+ - -5.709002064493984e-13
+ - -4.726443845678996e-13
+ - -3.1848438816761693e-13
+ - -3.3881317890172014e-15
+ - 2.541098841762901e-14
+ - 2.202285662861181e-14
+ - 4.37069000783219e-13
+ - -3.7269449679189215e-14
+ - -4.37069000783219e-13
+ - 3.7269449679189215e-14
+- - -7.041347983677048
+ - 9.32398781804501
+ - -8.917420768147664
+ - 9.150258004019715
+ - -7.8342853187855335
+ - 3.999515224579067
+ - 7.552974592174975
+ - -5.0465302520676705
+ - 1.930409487011112
+ - 4.182319468908639
+ - -6.98383769151593
+ - 8.513780184807523
+ - 5.674959656904311
+ - -9.138924751954988
+ - 9.784876408382122
+ - -8.194785960158285
+ - 6.076557464885725
+ - -1.5695805745104563
+ - -6.034941323358956
+ - 2.7800044564499187
+ - 0.48597478986414105
+ - -6.212955453743895
+ - 8.562366718317552
+ - -8.96949346701673
+ - -7.322548836198142
+ - 9.836346212561896
+ - -9.526957400937961
+ - 6.531834857107106
+ - -3.894402097740994
+ - -0.5109730933138051
+ - 4.258243449177511
+ - -0.33656387923510167
+ - -3.2248284511106386
+ - 7.855071113816672
+ - -9.159572411225572
+ - 8.084204825022141
+ - 8.237330155671328
+ - -9.03976972408181
+ - 7.591203403286031
+ - -3.188396318295796
+ - 0.3663271347594431
+ - 3.350727729654781
+ - -1.0990199551455817
+ - -2.9302184079139186
+ - 5.52425076715066
+ - -8.491358892882593
+ - 10.879455228805199
+ - -9.715993487125939
+ - 2.9857911390714087e-13
+ - 8.692675621197257e-14
+ - 2.568627412548666e-13
+ - 5.505714157152952e-14
+ - -1.0651439311722827e-13
+ - -3.525774642946025e-13
+ - -1.9788807230228592e-13
+ - -5.315131744020735e-13
+ - -1.683477982667922e-14
+ - 9.68793933422106e-14
+ - 2.9127345473707253e-13
+ - -2.8862647677690284e-13
+ - 2.4839241178232357e-13
+ - -1.7575933655526732e-13
+ - 1.0227922838095677e-13
+ - 8.396214089658252e-14
+ - 2.583450489125616e-13
+ - 1.0217334926254998e-13
+ - 1.4346620544119712e-13
+ - 1.3573702979750163e-13
+ - 4.1271680354965784e-13
+ - -4.444805390716941e-13
+ - -6.977433903007299e-14
+ - 7.983285527871781e-14
+ - -1.1032604137987262e-13
+ - -4.561272420964407e-13
+ - -1.113848325639405e-13
+ - -1.3446648037662018e-13
+ - 1.7268884212147048e-13
+ - -2.270048298641525e-13
+ - 1.377487330472306e-13
+ - -4.529508685442371e-13
+ - 1.1911400820763599e-13
+ - 1.5797164466292701e-13
+ - -1.4336032632279033e-13
+ - -2.7422691667357973e-14
+ - 2.363221922839498e-13
+ - -2.6999175193730823e-13
+ - -2.1705219273391446e-13
+ - -4.942437247228842e-13
+ - -3.663417496874849e-13
+ - -1.0810257989333008e-13
+ - 2.9879087214395444e-13
+ - 4.357984513623375e-13
+ - -6.756146545537113e-13
+ - -7.30565917006834e-15
+ - 3.247312561536174e-13
+ - -3.8285889215894375e-13
+ - 1.8761779781682753e-13
+ - -1.673948862011311e-13
+ - -2.236166980751353e-13
+ - -2.922263668027336e-14
+ - 4.854557578951209e-13
+ - -4.531626267810507e-13
+ - 6.294513589283519e-13
+ - 7.179663019164263e-13
+ - 2.6565070808262994e-13
+ - -1.6030098526787634e-13
+ - -4.944554829596978e-14
+ - -2.159934015498466e-14
+ - -3.4040136567782195e-13
+ - 1.7237120476625012e-13
+ - 8.459741560702325e-14
+ - 7.549181142403952e-14
+- - -13.185614123327237
+ - 16.5261577846375
+ - -15.253981037840088
+ - 14.615819239376657
+ - -11.943048450199633
+ - 5.264873577040166
+ - 11.66227319721489
+ - -6.924174813737962
+ - 1.6261818332551063
+ - 8.348408659332094
+ - -12.707447867566158
+ - 14.553854628412095
+ - 10.508937506048467
+ - -15.778126298917801
+ - 16.3258401158374
+ - -12.716940733994013
+ - 8.799609916788803
+ - -1.1943293707066405
+ - -8.974861496068229
+ - 3.055555574244957
+ - 2.4090907293089607
+ - -11.599880056715426
+ - 15.147493270026873
+ - -15.106115522073507
+ - -13.099348280978237
+ - 16.700069421963924
+ - -15.647486058722393
+ - 9.750369171548543
+ - -5.015787701982591
+ - -2.322503998009888
+ - 5.839655871497364
+ - 1.0732204987788625
+ - -7.109938091541053
+ - 13.69112328594337
+ - -15.31601927688848
+ - 12.805331391121145
+ - 13.898754423768397
+ - -14.461414636898892
+ - 11.574067786525763
+ - -3.6316066672001637
+ - -1.1931902511326213
+ - 7.003529873804277
+ - -0.244027236931533
+ - -6.562505090347604
+ - 10.57462387139205
+ - -14.583151494853984
+ - 18.074904845727556
+ - -17.067286907231725
+ - 5.088550430630209e-13
+ - 1.351017550870609e-13
+ - 3.9916427639358903e-13
+ - 9.359714067160019e-14
+ - -9.952637130238029e-14
+ - -5.927113048411967e-13
+ - -3.3288394827094003e-13
+ - -8.813377816180995e-13
+ - -3.3881317890172014e-14
+ - 1.5013658990082474e-13
+ - 5.11819658378411e-13
+ - -4.0996394647108136e-13
+ - 3.851882327638931e-13
+ - -3.3118988237643143e-13
+ - 1.342547221398066e-13
+ - 1.418780186650953e-13
+ - 3.356368053495165e-13
+ - 2.22769665127881e-13
+ - 1.3383120566617945e-13
+ - 2.695682354636811e-13
+ - 6.909671267226955e-13
+ - -7.644472348970061e-13
+ - -1.7152417181899582e-13
+ - 1.6432439176733427e-13
+ - -1.2027867851011065e-13
+ - -8.137869040745691e-13
+ - -2.1599340154984659e-13
+ - -2.1006417091906648e-13
+ - 2.9709680624944584e-13
+ - -3.5236570605778894e-13
+ - 2.3081647812679684e-13
+ - -7.142605327721888e-13
+ - 1.7131241358218224e-13
+ - 3.2526065174565133e-13
+ - -2.5898032362300233e-13
+ - -7.411538288475128e-14
+ - 4.010701005249112e-13
+ - -4.955142741437657e-13
+ - -3.5130691487372107e-13
+ - -7.904934980250758e-13
+ - -6.272278974418094e-13
+ - -2.2234614865425384e-13
+ - 5.249486690608526e-13
+ - 7.064254780100865e-13
+ - -1.1221068968751344e-12
+ - 2.583450489125616e-14
+ - 5.776764700274328e-13
+ - -6.841908631446611e-13
+ - 2.6469779601696886e-13
+ - -2.7168581783181683e-13
+ - -3.2843702529785496e-13
+ - -5.421010862427522e-14
+ - 8.095517393382975e-13
+ - -7.479300924255472e-13
+ - 1.0638733817514012e-12
+ - 1.1663643683691716e-12
+ - 4.815382305140697e-13
+ - -2.3992208230978057e-13
+ - -9.296186596115946e-14
+ - -4.912791094074942e-14
+ - -6.170635020747578e-13
+ - 2.661801036746639e-13
+ - 2.7083878488456253e-13
+ - 9.910285482875314e-14
+- - -13.776531850527745
+ - 16.795322335962382
+ - -15.208253940467312
+ - 13.99923349849656
+ - -11.101437638968221
+ - 4.377801974869911
+ - 10.932265861002278
+ - -5.95934720701064
+ - 0.6951329056421727
+ - 8.983336102838908
+ - -13.089917545556268
+ - 14.504884613531683
+ - 10.920340618238663
+ - -15.81109584928953
+ - 16.04921951414875
+ - -11.959896234709595
+ - 7.891874387045756
+ - -0.3670185571355578
+ - -8.20279168439362
+ - 2.1069967292965597
+ - 3.2738018498868815
+ - -12.102322534391313
+ - 15.378874278583725
+ - -14.929891700567293
+ - -13.377027598560403
+ - 16.580480050119274
+ - -15.241836169404102
+ - 8.934820645269353
+ - -4.091177520323274
+ - -3.1159929542721265
+ - 5.0239223301789435
+ - 1.9812539849719442
+ - -7.96929613033375
+ - 13.79065820557778
+ - -15.075481818620332
+ - 12.201403416371418
+ - 13.75105386376674
+ - -13.86441133504317
+ - 10.759441621381306
+ - -2.6136051931106894
+ - -2.195301736789114
+ - 7.685387976851946
+ - 0.6607702451303507
+ - -7.399478430198061
+ - 11.164597987309508
+ - -14.571479172360444
+ - 17.724899068856008
+ - -16.39478733068406
+ - 5.069492189316988e-13
+ - 1.274784585617722e-13
+ - 3.7692966152816365e-13
+ - 9.275010772434589e-14
+ - -5.336307567702092e-14
+ - -5.844527336054672e-13
+ - -3.2864878353466853e-13
+ - -8.648206391466406e-13
+ - -3.6845933205562065e-14
+ - 1.4145450219146816e-13
+ - 5.166900978251232e-13
+ - -3.63800650845722e-13
+ - 3.6168306847758624e-13
+ - -3.477070248478903e-13
+ - 1.1096131609031334e-13
+ - 1.3976043629695956e-13
+ - 2.752857078576476e-13
+ - 2.4945120296639145e-13
+ - 7.115076756936123e-14
+ - 2.8926175148734357e-13
+ - 6.810144895924575e-13
+ - -7.657177843178875e-13
+ - -1.9989977555201488e-13
+ - 1.7787691892340307e-13
+ - -8.343274530454858e-14
+ - -8.2924525536196e-13
+ - -2.286988957586611e-13
+ - -1.9778219318387913e-13
+ - 2.973085644862594e-13
+ - -3.3203691532368573e-13
+ - 2.2742834633777964e-13
+ - -6.784733907506946e-13
+ - 1.5331296345302836e-13
+ - 3.5490680489955184e-13
+ - -2.6639186191147746e-13
+ - -8.851494298807439e-14
+ - 3.985290016831483e-13
+ - -5.124549330888517e-13
+ - -3.3881317890172014e-13
+ - -7.589415207398531e-13
+ - -6.263808644945551e-13
+ - -2.414043899674756e-13
+ - 5.323602073493278e-13
+ - 6.831320719605932e-13
+ - -1.1011428314305904e-12
+ - 4.701032857261367e-14
+ - 5.891114148153659e-13
+ - -6.979551485375435e-13
+ - 2.320870275476783e-13
+ - -2.6215669717520595e-13
+ - -2.9688504801263227e-13
+ - -5.590417451878382e-14
+ - 7.957874539454152e-13
+ - -7.297188840595797e-13
+ - 1.0537089863843496e-12
+ - 1.1299419516372367e-12
+ - 4.959377906173928e-13
+ - -2.1980504981249094e-13
+ - -9.783230540787169e-14
+ - -5.463362509790237e-14
+ - -6.34427677493471e-13
+ - 2.490276864927643e-13
+ - 3.400837283226016e-13
+ - 8.258571235729428e-14
+- - -13.90266886274825
+ - 16.852778070892935
+ - -15.19849305638038
+ - 13.867617404491659
+ - -10.921787802291066
+ - 4.188448099748395
+ - 10.77643884811988
+ - -5.753395572767057
+ - 0.4963916519035548
+ - 9.1188674078146
+ - -13.17155933801893
+ - 14.494431497842172
+ - 11.008158527570535
+ - -15.818133513564463
+ - 15.990172214314052
+ - -11.798297882075802
+ - 7.698109599939723
+ - -0.1904211910420461
+ - -8.037986035844783
+ - 1.9045178170730848
+ - 3.4583826674234937
+ - -12.209573662643896
+ - 15.428264756750956
+ - -14.89227504886828
+ - -13.436300891377627
+ - 16.55495256065086
+ - -15.155246340243625
+ - 8.760734051331735
+ - -3.8938106781814854
+ - -3.285370723064171
+ - 4.849796243020542
+ - 2.17508237371768
+ - -8.15273428162178
+ - 13.811904881377762
+ - -15.024136809126711
+ - 12.072489243002128
+ - 13.719525773671752
+ - -13.73697529900036
+ - 10.58555191420536
+ - -2.3963030908602545
+ - -2.409211969794653
+ - 7.8309370777128064
+ - 0.8539078779995015
+ - -7.5781383544773915
+ - 11.290533576721963
+ - -14.568987604046894
+ - 17.650187005023284
+ - -16.25123589636316
+ - 5.065257024580716e-13
+ - 1.257843926672636e-13
+ - 3.72270980318265e-13
+ - 9.232659125071874e-14
+ - -4.319868030996932e-14
+ - -5.827586677109586e-13
+ - -3.273782341137871e-13
+ - -8.610089908839963e-13
+ - -3.7269449679189215e-14
+ - 1.3976043629695956e-13
+ - 5.179606472460047e-13
+ - -3.5405977195229754e-13
+ - 3.5660087079406044e-13
+ - -3.510951566369075e-13
+ - 1.0587911840678754e-13
+ - 1.393369198233324e-13
+ - 2.6215669717520595e-13
+ - 2.549569171235444e-13
+ - 5.802175688691957e-14
+ - 2.9349691622361507e-13
+ - 6.788969072243217e-13
+ - -7.661413007915147e-13
+ - -2.0582900618279498e-13
+ - 1.8084153423879312e-13
+ - -7.538593230563273e-14
+ - -8.326333871509772e-13
+ - -2.31239994600424e-13
+ - -1.9524109434211623e-13
+ - 2.973085644862594e-13
+ - -3.2780175058741423e-13
+ - 2.2658131339052534e-13
+ - -6.708500942254059e-13
+ - 1.49501315190384e-13
+ - 3.612595520039591e-13
+ - -2.6808592780598606e-13
+ - -9.147955830346444e-14
+ - 3.97681968735894e-13
+ - -5.162665813514961e-13
+ - -3.3627208005995723e-13
+ - -7.521652571618187e-13
+ - -6.263808644945551e-13
+ - -2.456395547037471e-13
+ - 5.336307567702092e-13
+ - 6.780498742770674e-13
+ - -1.0964841502206918e-12
+ - 5.166900978251232e-14
+ - 5.912289971835016e-13
+ - -7.004962473793064e-13
+ - 2.2488724749601674e-13
+ - -2.600391148070702e-13
+ - -2.90532300908225e-13
+ - -5.632769099241097e-14
+ - 7.932463551036523e-13
+ - -7.259072357969354e-13
+ - 1.0511678875425867e-12
+ - 1.1218951386383208e-12
+ - 4.989024059327829e-13
+ - -2.1556988507621944e-13
+ - -9.867933835512599e-14
+ - -5.590417451878382e-14
+ - -6.382393257561153e-13
+ - 2.4521603823011995e-13
+ - 3.5490680489955184e-13
+ - 7.919758056827708e-14
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.2529167026002046
+ - -2.4448123210322694
+ - -1.3600076229536713
+ - -0.529288514900975
+ - 3.1108093948679523
+ - 2.464160259648809
+ - 1.413649241731117
+ - 0.6290528009450782
+ - -5.979110220613215
+ - -5.735544660478981
+ - -5.325555673945499
+ - -4.8208052550458484
+ - 5.553138968948162
+ - 5.615128429966513
+ - 5.386755340320791
+ - 5.168062485163374
+ - -3.441461128270684
+ - -3.9804134661891566
+ - -4.66344114669304
+ - -4.975299223233767
+ - 3.154113124193729
+ - 3.9657051358628332
+ - 4.894496857765078
+ - 5.524686165956722
+ - 2.626349591584625
+ - 1.7443159816103249
+ - 0.5165771219241116
+ - -0.3783942044688208
+ - -2.3796489649720094
+ - -1.6092588812805193
+ - -0.44212467494439683
+ - 0.4185591725103664
+ - 6.129269186923281
+ - 5.76512008541108
+ - 5.196639614816326
+ - 4.585847084892173
+ - -5.666301924452756
+ - -5.6245541612268894
+ - -5.2528278956071555
+ - -4.939414940051828
+ - 4.00128791183987
+ - 4.50920757172446
+ - 5.1533489821762855
+ - 5.27453062028604
+ - -4.243838475953185
+ - -4.809561721531592
+ - -5.403936321778887
+ - -5.796176901292042
+ - -0.8676382955078303
+ - -0.03066466276789009
+ - 1.1090877308445029
+ - 1.8805858594025227
+ - 0.8046798345567707
+ - -0.03882736999025163
+ - -1.219220669908316
+ - -2.0714823484655374
+ - -5.477812239167537
+ - -4.914387269679005
+ - -4.074178545715214
+ - -3.307295270862801
+ - 5.3093189597061805
+ - 5.023551765016048
+ - 4.289062593288429
+ - 3.752813599029134
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -6.507199755568982
+ - -5.3886191316541225
+ - -3.698941410093304
+ - -2.3321917257812803
+ - 6.2976690191925675
+ - 5.380617083977759
+ - 3.7826066321729117
+ - 2.5728385119205055
+ - -9.864430717254297
+ - -9.672931203864282
+ - -9.280442502647974
+ - -8.630031718420392
+ - 9.172970473754797
+ - 9.495156343484593
+ - 9.414348995594983
+ - 9.265710092936944
+ - -4.389612552454293
+ - -5.442644474553705
+ - -6.807373430557533
+ - -7.524872079816652
+ - 4.045623514419949
+ - 5.474386556540743
+ - 7.188904122343109
+ - 8.37137410508179
+ - 5.650445682210133
+ - 4.231498231630454
+ - 2.2361948524193536
+ - 0.7281908530604685
+ - -5.120142950525014
+ - -3.976204302305153
+ - -2.1579199833336467
+ - -0.8035612538878928
+ - 10.178927859878591
+ - 9.779508222352515
+ - 9.112609306470278
+ - 8.276489522022457
+ - -9.419072683782018
+ - -9.565143435713718
+ - -9.237840067146047
+ - -8.926556683031848
+ - 5.486998282265118
+ - 6.498449724848967
+ - 7.8070207361054855
+ - 8.22255687513694
+ - -6.157064570764308
+ - -7.268249434265558
+ - -8.52299839947768
+ - -9.37472034819187
+ - -2.985499747760302
+ - -1.5572641405429193
+ - 0.4044545900894515
+ - 1.7887296557632817
+ - 2.711811861985644
+ - 1.3893236931225623
+ - -0.5375536889760018
+ - -1.9442821690205578
+ - -9.597885949170491
+ - -8.840155278634871
+ - -7.677693318040419
+ - -6.531677763491226
+ - 9.288582825464264
+ - 9.017210035223327
+ - 8.04016545059216
+ - 7.331118292438899
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.29679060117089
+ - -6.099092793390206
+ - -4.598859715031012
+ - -3.3247716104007163
+ - 6.799511587941377
+ - 6.060267350056957
+ - 4.673239087110222
+ - 3.6093465609938433
+ - -9.217096057876633
+ - -9.203328238134382
+ - -9.059537255364518
+ - -8.594983418980082
+ - 8.579895611103096
+ - 9.05362282594138
+ - 9.210520630227293
+ - 9.238234008722161
+ - -3.090043614113645
+ - -4.20264039306333
+ - -5.664586312069406
+ - -6.494395056615335
+ - 2.8707730384842907
+ - 4.276278864649071
+ - 6.02133993754603
+ - 7.238323127532819
+ - 6.314152631490175
+ - 5.0167821450058705
+ - 3.176161945425509
+ - 1.7424096306214492
+ - -5.721837006673601
+ - -4.752741292637339
+ - -3.1380120813786023
+ - -1.9240505816822284
+ - 9.56337898681685
+ - 9.348284428571686
+ - 8.937939046291405
+ - 8.291414661654898
+ - -8.856493908188323
+ - -9.161762346316038
+ - -9.080495740386773
+ - -8.951232987297047
+ - 4.251869007674263
+ - 5.333166095529613
+ - 6.7489190073590155
+ - 7.306489404448495
+ - -5.089899741362962
+ - -6.267815442896513
+ - -7.6554878220832965
+ - -8.611973554802313
+ - -4.009877822107213
+ - -2.6381606007962533
+ - -0.7413073453654117
+ - 0.6396377237827778
+ - 3.620803523300792
+ - 2.439394784917683
+ - 0.6551049077345906
+ - -0.6598229506434666
+ - -9.408169288385903
+ - -8.835079412613956
+ - -7.924580140023817
+ - -6.9473699224174945
+ - 9.094569914646454
+ - 8.998123027701956
+ - 8.269510697463152
+ - 7.744931266069984
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.997535310972447
+ - -3.759222047251826
+ - -4.026108540279064
+ - -3.160242786557747
+ - 5.347973240385894
+ - 4.936101525636768
+ - 4.073827852105063
+ - 3.400796076905711
+ - -6.280692071373528
+ - -6.400297176697944
+ - -6.476423174099275
+ - -6.27168152336811
+ - 5.853430475966822
+ - 6.311095549473106
+ - 6.599504781448019
+ - 6.748495199065255
+ - -1.3156650297449934
+ - -2.1742924155513235
+ - -3.3163512763323384
+ - -4.006277982329759
+ - 1.2460209411606589
+ - 2.258817009012855
+ - 3.5596526769875885
+ - 4.476480088449108
+ - 5.110480809076741
+ - 4.248656628840056
+ - 3.01296945970373
+ - 2.0166892266767955
+ - -4.631259646406992
+ - -4.048820032036461
+ - -3.014297888250197
+ - -2.2273179911952314
+ - 6.5575963482725665
+ - 6.53450734105088
+ - 6.421070311907977
+ - 6.085732915608364
+ - -6.078338042523258
+ - -6.418165912622641
+ - -6.53815970984221
+ - -6.576275218849394
+ - 2.213917754893972
+ - 3.0571148848482217
+ - 4.172601183411461
+ - 4.684757949161204
+ - -2.950479894098301
+ - -3.8621933475701784
+ - -4.975889780160293
+ - -5.753121872172377
+ - -3.6854005713677105
+ - -2.7216312380561436
+ - -1.3792032579018145
+ - -0.36986097248590805
+ - 3.3161404194757247
+ - 2.5535086482034677
+ - 1.3502665091240251
+ - 0.4538505880761847
+ - -6.754612782124511
+ - -6.469462966516073
+ - -5.986229936189292
+ - -5.393439409664253
+ - 6.521714011752578
+ - 6.578695515833061
+ - 6.226148773483399
+ - 5.976414650982352
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.5241039418300804
+ - -4.703290411536571
+ - -6.306590876275502
+ - -5.315380489910797
+ - 8.164353701227038
+ - 7.688235244551221
+ - 6.577724854674633
+ - 5.69767598975832
+ - -8.716086471910954
+ - -9.016108078703828
+ - -9.302679317568707
+ - -9.134740025274962
+ - 8.130360154146011
+ - 8.905629728147808
+ - 9.494476883403404
+ - 9.836441352107054
+ - -1.0049420835970264
+ - -2.30092969607353
+ - -4.03740794914025
+ - -5.124215589283781
+ - 0.9911878857008967
+ - 2.453920668921402
+ - 4.3752627751884665
+ - 5.7385808386284
+ - 7.9316629487844645
+ - 6.7587562759810105
+ - 5.063190618675347
+ - 3.6605420205805763
+ - -7.188051503876202
+ - -6.460736802401132
+ - -5.093428748205591
+ - -4.043101105325964
+ - 9.142907279259566
+ - 9.239181678943105
+ - 9.254446475670685
+ - 8.898415565281804
+ - -8.480332973232597
+ - -9.088907180587949
+ - -9.437668379946533
+ - -9.621703518632
+ - 2.3622383402917744
+ - 3.6429413769272063
+ - 5.3476395538558075
+ - 6.19578650782391
+ - -3.5564046045395328
+ - -4.934975383719806
+ - -6.655213675191009
+ - -7.8642041811623375
+ - -6.104771114474641
+ - -4.737096605531355
+ - -2.822298014343355
+ - -1.350555689523825
+ - 5.484110379537037
+ - 4.469823001074109
+ - 2.8131111492846124
+ - 1.5686854047856285
+ - -9.730956112254763
+ - -9.444727279833929
+ - -8.9166869835895
+ - -8.169997329031446
+ - 9.387789912219633
+ - 9.594374303250735
+ - 9.254704561376956
+ - 9.02007641119514
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.393257056647189
+ - -3.646682013578494
+ - -5.347593312602385
+ - -6.1624499027493
+ - 8.539050036311677
+ - 8.22864504339875
+ - 7.320102959190369
+ - 6.580795235671854
+ - -8.044475643039949
+ - -8.502549431399054
+ - -9.011584540702026
+ - -9.013634914991375
+ - 7.513626907663603
+ - 8.418576760438853
+ - 9.216973902263367
+ - 9.715330796338646
+ - 0.18202137959383485
+ - -1.1552415653835957
+ - -2.962790926428395
+ - -4.140696115992704
+ - -0.08267265069605723
+ - 1.3446851447114292
+ - 3.2748980052338017
+ - 4.6561412901856345
+ - 8.45525022857052
+ - 7.40394012830178
+ - 5.865071036592902
+ - 4.543399791997434
+ - -7.662742532819701
+ - -7.100913119986226
+ - -5.931358081428791
+ - -5.018475065486068
+ - 8.495912331182375
+ - 8.758204231453092
+ - 9.005702598889343
+ - 8.824887568408307
+ - -7.887799153997971
+ - -8.634619325574173
+ - -9.202825779650638
+ - -9.54993258022694
+ - 1.220366001610036
+ - 2.551806095927821
+ - 4.3369123840096755
+ - 5.305415312617068
+ - -2.5549906008048375
+ - -3.9805197155248506
+ - -5.804330431717305
+ - -7.096387912048042
+ - -6.972920847479634
+ - -5.669818975231354
+ - -3.8325058414051494
+ - -2.3781768186589054
+ - 6.253816081571775
+ - 5.377238701911953
+ - 3.8658872368081156
+ - 2.7167866672878347
+ - -9.463922037207933
+ - -9.347738432331766
+ - -9.053088137172477
+ - -8.46660452396755
+ - 9.120221307126329
+ - 9.483230451847763
+ - 9.371910194750143
+ - 9.306665740292022
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.04033511290022151
+ - -0.8749261872067291
+ - -2.003653209070936
+ - -2.710476889410624
+ - 5.525755164963673
+ - 5.543765598484656
+ - 5.250995230032728
+ - 4.983947422103448
+ - -3.95517120479182
+ - -4.419969028830141
+ - -4.993630315486804
+ - -5.202320802876253
+ - 3.7070592227206642
+ - 4.402476583044677
+ - 5.132130037559766
+ - 5.61881255358506
+ - 1.5567369972949203
+ - 0.7126148138038877
+ - -0.447016367429721
+ - -1.2573585508956724
+ - -1.3597247566108848
+ - -0.555678104280503
+ - 0.600845259215485
+ - 1.4425734457952422
+ - 5.657737278613807
+ - 5.182131377020078
+ - 4.45996987622301
+ - 3.7743124798883176
+ - -5.127658481374724
+ - -4.996155035589095
+ - -4.54331312180232
+ - -4.1692146023422225
+ - 4.2531696564373584
+ - 4.611480964485213
+ - 5.041828551671867
+ - 5.14835612114774
+ - -3.95868834755232
+ - -4.570700764140031
+ - -5.175799522081224
+ - -5.58085811860025
+ - -0.6693023699184246
+ - 0.18291170290850559
+ - 1.3406174483292974
+ - 2.0623769760646393
+ - -0.2943072843659886
+ - -1.1977568511208738
+ - -2.4067081767348597
+ - -3.2750051855485065
+ - -5.1984269957255975
+ - -4.503769567580191
+ - -3.5077860507145457
+ - -2.6658080130857296
+ - 4.651443821948037
+ - 4.299218759417308
+ - 3.5795547337352525
+ - 3.013839937578799
+ - -5.291485818717623
+ - -5.430065199918443
+ - -5.540026650570907
+ - -5.387446116241897
+ - 5.086826524479914
+ - 5.4932115292489145
+ - 5.705838310978563
+ - 5.873845706506141
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.3295504580195243
+ - 3.27610427747091
+ - 3.2120217062362526
+ - 3.0186451203389137
+ - 0.010701335942169711
+ - 0.49389306415353174
+ - 1.1448721126701253
+ - 1.6109374489039332
+ - 2.7528017228708412
+ - 2.3802359565649778
+ - 1.839947950786898
+ - 1.3818049377093877
+ - -2.542675103629688
+ - -2.2989316567583393
+ - -1.8273424617167928
+ - -1.463968286202531
+ - 3.1793787586687814
+ - 3.2246339220045535
+ - 3.2446009226903216
+ - 3.1368524649873315
+ - -2.886023698287606
+ - -3.1485166665251816
+ - -3.350569500009169
+ - -3.4639378953943067
+ - 0.42200149171230544
+ - 0.8729694612343237
+ - 1.4756651021660003
+ - 1.8487535463692535
+ - -0.3829312158467508
+ - -0.8949423345210187
+ - -1.5651119241081903
+ - -2.042608836408591
+ - -2.739274572217083
+ - -2.322309545995085
+ - -1.7250586899788216
+ - -1.2314146748270587
+ - 2.521225443230801
+ - 2.2358718454049424
+ - 1.7106509428004837
+ - 1.3115588916484628
+ - -3.221968715394156
+ - -3.241028316326072
+ - -3.233190325355533
+ - -3.0220304559763473
+ - 2.9994645861530644
+ - 3.0397287973505573
+ - 2.9739586171934116
+ - 2.9012288851690604
+ - -1.5246648528337026
+ - -1.851343461407914
+ - -2.275382916588118
+ - -2.4925991398348923
+ - 1.3433938496847755
+ - 1.8173559926581404
+ - 2.386261698372133
+ - 2.777836410248442
+ - 1.8280233605912903
+ - 1.3558886767946996
+ - 0.6920492189687742
+ - 0.19138746144254437
+ - -1.7892271358940182
+ - -1.409920406733525
+ - -0.7811356284221104
+ - -0.3167483261204382
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 4.794851658866123
+ - 5.081064652722718
+ - 5.479913168954146
+ - 5.509794800056807
+ - -2.3873667373880556
+ - -1.7019038354599103
+ - -0.6405615491183532
+ - 0.14427768845163796
+ - 5.669577553768827
+ - 5.337116337634687
+ - 4.8113397766871335
+ - 4.244729256997767
+ - -5.260198598314389
+ - -5.2128530153600146
+ - -4.853475900326563
+ - -4.543718933949732
+ - 3.884939488090233
+ - 4.316915703783694
+ - 4.849798231156376
+ - 5.0475531528416555
+ - -3.5496924268015495
+ - -4.2759405445477086
+ - -5.068732526581785
+ - -5.597398159521394
+ - -1.85461288417832
+ - -1.000749986194852
+ - 0.17802300806828533
+ - 1.0114776928700795
+ - 1.6801817337036986
+ - 0.8883561690427668
+ - -0.27012380077172726
+ - -1.117913348395517
+ - -5.779744852133371
+ - -5.337275884645133
+ - -4.667451774999221
+ - -4.005480918837978
+ - 5.338836088812887
+ - 5.195521011086759
+ - 4.70503277666427
+ - 4.308535112148586
+ - -4.331924820035837
+ - -4.729833593604917
+ - -5.221983678179293
+ - -5.232843897255792
+ - 4.431669857108022
+ - 4.882281809493559
+ - 5.313592218564228
+ - 5.586792833876699
+ - 0.0727686404748051
+ - -0.6980095939109436
+ - -1.7395066221685123
+ - -2.417284069150617
+ - -0.09501985748894942
+ - 0.7381868588895687
+ - 1.8673913448003847
+ - 2.675216827261586
+ - 4.923744307291702
+ - 4.306572358829494
+ - 3.401894423864332
+ - 2.6171883881111673
+ - -4.779088207907113
+ - -4.411555715269189
+ - -3.60181618365832
+ - -3.008556305667273
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 6.3001796226565885
+ - 7.0781614647015765
+ - 8.145739338881096
+ - 8.526249993590918
+ - -5.652910229036768
+ - -4.906726385077224
+ - -3.3750940914030108
+ - -2.2180717364777838
+ - 9.33668732312609
+ - 9.125681541856439
+ - 8.714032046376277
+ - 8.072627659875959
+ - -8.680619648575265
+ - -8.954462814103609
+ - -8.83611562687196
+ - -8.665419263416966
+ - 4.3369745942860565
+ - 5.310492512491846
+ - 6.568564952302616
+ - 7.218965695281193
+ - -3.9929893355906003
+ - -5.332614325946966
+ - -6.929637027996269
+ - -8.028650651932725
+ - -5.1618015333657015
+ - -3.8136404964103745
+ - -1.9208078758962022
+ - -0.4979322775482675
+ - 4.677308890074284
+ - 3.5765980755998807
+ - 1.840418171754017
+ - 0.5492367622849029
+ - -9.624915735380311
+ - -9.218383584174422
+ - -8.548833380509766
+ - -7.733177167996186
+ - 8.90515304579889
+ - 9.013005848428872
+ - 8.66276306396429
+ - 8.339025167612357
+ - -5.351071016462957
+ - -6.2838726138583105
+ - -7.487660360727057
+ - -7.850468640547794
+ - 5.947112588824797
+ - 6.97369404929471
+ - 8.12253856561629
+ - 8.899754402987199
+ - 2.605962789586673
+ - 1.2608393900519546
+ - -0.5844233629289951
+ - -1.8788768322009766
+ - -2.370937043371425
+ - -1.1094215043348512
+ - 0.7172759403044021
+ - 2.0486525094035377
+ - 9.005121877600196
+ - 8.263626866304069
+ - 7.131710994000309
+ - 6.030146501941616
+ - -8.716796453883443
+ - -8.431640178904745
+ - -7.473666078280327
+ - -6.77770572124417
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.2872167173013045
+ - 6.195264639903293
+ - 7.436239778220669
+ - 7.972210076554127
+ - -4.703504084038535
+ - -5.813169859673478
+ - -4.440770546162342
+ - -3.3899237220403804
+ - 9.033561412635892
+ - 8.999849133330923
+ - 8.831630072717555
+ - 8.358799903668297
+ - -8.407961630541473
+ - -8.851116711142673
+ - -8.97644084165951
+ - -8.983208320714947
+ - 3.1523369119306563
+ - 4.227028340536273
+ - 5.636999419184259
+ - 6.430772431771855
+ - -2.9249285209015996
+ - -4.293816769093915
+ - -5.986617369377212
+ - -7.16564350567074
+ - -6.061783762082488
+ - -4.786762991766948
+ - -2.9798872411613226
+ - -1.577709055520546
+ - 5.493113907652397
+ - 4.531101418952996
+ - 2.9382139423736255
+ - 1.7421185486320927
+ - -9.366531527681703
+ - -9.136364554706514
+ - -8.708141570475949
+ - -8.057998529314604
+ - 8.673342018434465
+ - 8.951870265142277
+ - 8.844732658099506
+ - 8.69826244750826
+ - -4.274323646721001
+ - -5.317414142506626
+ - -6.681343301955159
+ - -7.207085947478807
+ - 5.069723055881792
+ - 6.207088369715188
+ - 7.540777369624571
+ - 8.45855045261898
+ - 3.7806493503535443
+ - 2.440800995431598
+ - 0.5895371200018225
+ - -0.7531974371158974
+ - -3.415646045265927
+ - -2.2511156675166575
+ - -0.5003795588461718
+ - 0.7883020774095261
+ - 9.166951959239155
+ - 8.588757973630312
+ - 7.674883344404048
+ - 6.7056737065617344
+ - -8.862607732002575
+ - -8.748847843153724
+ - -8.012181022964903
+ - -7.481161620784549
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.0326481106368366
+ - 3.780719863271822
+ - 4.799809221157883
+ - 5.300165400677864
+ - -2.661761393942712
+ - -3.6159032824789525
+ - -3.979486039534946
+ - -3.3056238639129747
+ - 6.2484406001505235
+ - 6.356783294082226
+ - 6.418145277476109
+ - 6.205224440604581
+ - -5.822800239422321
+ - -6.266982190193983
+ - -6.538927383452868
+ - -6.676412096221124
+ - 1.37412137313765
+ - 2.2200444162900146
+ - 3.3441973571384747
+ - 4.020305057848746
+ - -1.2982496002694839
+ - -2.30129960867931
+ - -3.586232625592945
+ - -4.491124304669892
+ - -5.017543371343747
+ - -4.158309774478476
+ - -2.927437031138469
+ - -1.9378656702753052
+ - 4.547024590013231
+ - 3.9611433444011834
+ - 2.9265029254788755
+ - 2.14024267745347
+ - -6.520543174638713
+ - -6.487379067988412
+ - -6.360805916518338
+ - -6.018504607126226
+ - 6.043545624219106
+ - 6.370746949002581
+ - 6.4756472304803925
+ - 6.503149039994397
+ - -2.2589643601641893
+ - -3.08904949282274
+ - -4.186361467809467
+ - -4.684973276299001
+ - 2.978080638766134
+ - 3.876109128325181
+ - 4.970208569534913
+ - 5.733091985865422
+ - 3.587803081327939
+ - 2.631381461408427
+ - 1.2999645039629384
+ - 0.30144703608089485
+ - -3.2290359886551796
+ - -2.46682001831159
+ - -1.2687160114842868
+ - -0.37693629413546637
+ - 6.691552591982382
+ - 6.399168940266612
+ - 5.907091286939791
+ - 5.311310317482887
+ - -6.461435326460828
+ - -6.507994808165524
+ - -6.145375517292912
+ - -5.888030885384325
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.615203918267806
+ - 4.7873225612205035
+ - 6.381289293954442
+ - 7.215791597683356
+ - -3.128558256935357
+ - -4.556703690615363
+ - -6.3030735066036625
+ - -5.620019660307752
+ - 8.76508571934765
+ - 9.051763887870877
+ - 9.319658391448531
+ - 9.137746013910995
+ - -8.175258169054532
+ - -8.93917175244713
+ - -9.510180529695365
+ - -9.838906923047352
+ - 1.1026392796025644
+ - 2.394203701811455
+ - 4.12344734554772
+ - 5.201859724619491
+ - -1.0795125444314762
+ - -2.5440526031160466
+ - -4.46317781318538
+ - -5.8239579356731745
+ - -7.882111851782469
+ - -6.700021463353825
+ - -4.992763023867572
+ - -3.584477616619022
+ - 7.1431300679143614
+ - 6.402647132874912
+ - 5.019987187284398
+ - 3.9590665772879627
+ - -9.189535389347286
+ - -9.271962580419991
+ - -9.267949250008806
+ - -8.897656658537096
+ - 8.522953633959025
+ - 9.119589713464661
+ - 9.449876663163652
+ - 9.620241339146764
+ - -2.4551485384979337
+ - -3.7306552105569337
+ - -5.427368670108784
+ - -6.264877013388786
+ - 3.6367417685582186
+ - 5.010354235546426
+ - 6.720674090844448
+ - 7.921841381862254
+ - 6.028042899736417
+ - 4.656065569924018
+ - 2.736314614578003
+ - 1.264262074164021
+ - -5.41602759510465
+ - -4.391097448476228
+ - -2.723603321291123
+ - -1.4722284924714129
+ - 9.745608958976723
+ - 9.44549360917222
+ - 8.898498029635048
+ - 8.139093049861055
+ - -9.402751618425507
+ - -9.596199600458654
+ - -9.237847545974477
+ - -8.989347986673293
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.5797243520665627
+ - 3.8664255657522366
+ - 5.612795608718664
+ - 6.590612005023852
+ - -2.1609657686883774
+ - -3.647021106517389
+ - -5.52700220718984
+ - -6.7078473648706485
+ - 8.368944300967256
+ - 8.826532415598866
+ - 9.33050430805439
+ - 9.316200160300019
+ - -7.81566418773442
+ - -8.737289574825969
+ - -9.541208567916131
+ - -10.040540038859278
+ - -0.07323666243345163
+ - 1.3031921451338662
+ - 3.1622051253844674
+ - 4.369321031987216
+ - -0.018392484750868774
+ - -1.4952277469278763
+ - -3.4868709664233717
+ - -4.910954919247626
+ - -8.677520464860454
+ - -7.580538965376183
+ - -5.976874533333277
+ - -4.604731184446162
+ - 7.864162129203178
+ - 7.268217106686958
+ - 6.041818376464867
+ - 5.086200064383239
+ - -8.83257086235949
+ - -9.087289833225801
+ - -9.320341531945187
+ - -9.116766123581584
+ - 8.199573246234737
+ - 8.957138719850292
+ - 9.522482970865756
+ - 9.865038353534295
+ - -1.3700495419598908
+ - -2.7395536142239334
+ - -4.574497359936582
+ - -5.562627363610751
+ - 2.734173977814151
+ - 4.201168309067826
+ - 6.073827827895908
+ - 7.3995554153203225
+ - 7.114072760342692
+ - 5.762682671408753
+ - 3.858595162449156
+ - 2.3556533797330963
+ - -6.381272258815501
+ - -5.463105517439665
+ - -3.888941748021352
+ - -2.6935518867579913
+ - 9.795114311538121
+ - 9.658755448615782
+ - 9.332051851210814
+ - 8.711167018520253
+ - -9.440374126659078
+ - -9.799987094705397
+ - -9.66301642806956
+ - -9.579304402509521
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.5752085257649836
+ - 1.3691517395261739
+ - 2.444226376829883
+ - 3.092762667021152
+ - -0.40132800048908085
+ - -1.2584803147157637
+ - -2.3913387545842495
+ - -3.198428587810658
+ - 4.246847437488572
+ - 4.633779389174933
+ - 5.098374273594411
+ - 5.225242698993681
+ - -3.9744062864750855
+ - -4.603859537621567
+ - -5.229526588468799
+ - -5.63898399814599
+ - -0.9847513888353882
+ - -0.16574121661020416
+ - 0.9525924520401124
+ - 1.7144690090546069
+ - 0.8425640333893386
+ - 0.027091985686458632
+ - -1.1175888916408874
+ - -1.945270639018308
+ - -5.3725671651230265
+ - -4.842563033234159
+ - -4.051023008337914
+ - -3.331577685033317
+ - 4.869130913760186
+ - 4.660185668395377
+ - 4.1167562646846
+ - 3.6800889276960884
+ - -4.531227375879082
+ - -4.808607336253906
+ - -5.1262126109819866
+ - -5.149120273619067
+ - 4.21292046791759
+ - 4.755466629250415
+ - 5.252719658160041
+ - 5.577931938401319
+ - 0.1245207738115351
+ - -0.6980503136626328
+ - -1.8100528134992833
+ - -2.470086564215412
+ - 0.7662516156976387
+ - 1.641507698789532
+ - 2.7934552111633835
+ - 3.61670374309002
+ - 4.753238896477103
+ - 4.032616073718795
+ - 3.0065483218363664
+ - 2.161895452273576
+ - -4.256457045452071
+ - -3.8413929906772193
+ - -3.0576984356120853
+ - -2.4506131986315274
+ - 5.382874942068597
+ - 5.440069405928227
+ - 5.438859053139658
+ - 5.211474284452817
+ - -5.179821402459781
+ - -5.509496774587554
+ - -5.612658411567281
+ - -5.699399425142161
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.523444678567727
+ - -5.108531902927734
+ - -4.5610323404485005
+ - -3.963231464461548
+ - 5.130154675272382
+ - 5.024806681711399
+ - 4.58838399756336
+ - 4.222573168202918
+ - -3.0347752770350964
+ - -2.233403698692437
+ - -1.1104785310327747
+ - -0.26677387364875504
+ - 2.7821128335641685
+ - 2.1049746365088002
+ - 1.0354084690285146
+ - 0.24078015064924835
+ - -5.897439437689381
+ - -5.643008029275823
+ - -5.223265988427677
+ - -4.727485126653254
+ - 5.332445516501677
+ - 5.455075127754441
+ - 5.339473747149831
+ - 5.1992938907333155
+ - -2.9120139150015434
+ - -3.476490853941296
+ - -4.197082876839822
+ - -4.549948108328464
+ - 2.6399622189778453
+ - 3.4404023119966993
+ - 4.378445357736427
+ - 5.026706612475767
+ - 2.895870589852687
+ - 2.0622286501160367
+ - 0.9005166763081824
+ - 0.03765639240777148
+ - -2.648140067750361
+ - -1.9343557766962596
+ - -0.8242172571362215
+ - -0.0020498428967766027
+ - 5.621655929005353
+ - 5.320483577527339
+ - 4.855235907357617
+ - 4.222015871176307
+ - -4.875094670800779
+ - -4.589186384854473
+ - -4.007543065027787
+ - -3.5473834743058874
+ - 4.567047773667095
+ - 4.839187888729359
+ - 5.155602088519361
+ - 5.188090869112962
+ - -4.0518211570439435
+ - -4.702745718356584
+ - -5.368098702706858
+ - -5.798568996370078
+ - -0.9742957220967565
+ - -0.1346997342708279
+ - 1.0126471501382617
+ - 1.7859730369399258
+ - 0.9896938312457751
+ - 0.19992411267147978
+ - -0.9292059302732398
+ - -1.7674077955829397
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -9.930800726895125
+ - -9.421628800355695
+ - -8.757507040836426
+ - -7.883768794771133
+ - 9.18608883188006
+ - 9.24225578302528
+ - 8.790916893004148
+ - 8.372299564406166
+ - -6.42528889527351
+ - -5.260533160584618
+ - -3.406091080106267
+ - -1.9499075116313762
+ - 6.044388249024742
+ - 5.024945546479241
+ - 3.310431954026528
+ - 2.0209779343443737
+ - -10.150918155261616
+ - -9.932644821548255
+ - -9.506696493338032
+ - -8.845440163196576
+ - 9.191961560720609
+ - 9.639511099024759
+ - 9.75888166715736
+ - 9.745112599748278
+ - -3.630030246287343
+ - -4.778223050639886
+ - -6.2764854314533665
+ - -7.104037186387547
+ - 3.291325839102976
+ - 4.765992462067812
+ - 6.578626091070653
+ - 7.84858628297651
+ - 6.403080572579788
+ - 5.007269602829284
+ - 3.0426533148544284
+ - 1.5231848940522328
+ - -5.874931731008148
+ - -4.766096847482564
+ - -2.943506039214347
+ - -1.5815183805987192
+ - 9.906544639057023
+ - 9.606618334093403
+ - 9.09840337104411
+ - 8.165279580239027
+ - -8.838251177252607
+ - -8.580222628105936
+ - -7.877464334635018
+ - -7.296564388942358
+ - 6.732116018953394
+ - 7.417240362270044
+ - 8.267067105983308
+ - 8.563459373474121
+ - -5.961479946262716
+ - -7.230038977440926
+ - -8.628393064443143
+ - -9.561403015651363
+ - -3.2457348605773944
+ - -1.7771079145534778
+ - 0.2522910521926484
+ - 1.684223024405703
+ - 3.215525990689088
+ - 1.9120954401879833
+ - -0.05556256481096587
+ - -1.5133658661582494
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -9.5129565549167
+ - -9.189965683597231
+ - -8.776590626505977
+ - -8.079504040762664
+ - 8.773418564434511
+ - 8.998074959874724
+ - 8.797625504093544
+ - 8.562960078269201
+ - -5.15958188134219
+ - -5.905378847538481
+ - -4.243413765007304
+ - -2.890760589416758
+ - 6.515237564414296
+ - 5.676447484913079
+ - 4.179129830119651
+ - 3.040800606035772
+ - -9.409136292149775
+ - -9.36644850931125
+ - -9.187120826915045
+ - -8.713791063842363
+ - 8.530091570767786
+ - 9.116787445956941
+ - 9.458785894121112
+ - 9.611362743402635
+ - -2.36025315518807
+ - -3.5528744308290947
+ - -5.129108355971838
+ - -6.056200148212791
+ - 2.140455494341316
+ - 3.5777912356729216
+ - 5.401882419697674
+ - 6.691061129831698
+ - 6.966092457503238
+ - 5.700687152390293
+ - 3.905049880722084
+ - 2.471706999646281
+ - -6.402598093139131
+ - -5.461824220438542
+ - -3.8365355369629697
+ - -2.6127089642875543
+ - 9.34999658021341
+ - 9.230750211955792
+ - 8.972303953459607
+ - 8.221319206444553
+ - -8.517263447322334
+ - -8.4482078934972
+ - -8.013650856805999
+ - -7.628644802785264
+ - 5.419784472915522
+ - 6.212327796094234
+ - 7.221849844495601
+ - 7.671338935026992
+ - -4.7899032507216015
+ - -6.073433486638898
+ - -7.553550909508293
+ - -8.557959884411055
+ - -4.148587468191225
+ - -2.770217944786037
+ - -0.8494841996869801
+ - 0.5510997187014445
+ - 4.079371710126109
+ - 2.91185278484214
+ - 1.0704299899310536
+ - -0.29178490580713284
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -6.617735046875905
+ - -6.519286474028659
+ - -6.402438170875032
+ - -6.024692962815594
+ - 6.083227077128935
+ - 6.3704224452022125
+ - 6.4086662580444935
+ - 6.372873112847687
+ - -2.826616833279044
+ - -3.5439775423568096
+ - -3.7033419160386307
+ - -2.7947433381846523
+ - 5.088002613894513
+ - 4.6100488997104465
+ - 3.6795790167626854
+ - 2.9619193631401473
+ - -6.304398416095903
+ - -6.402203921998291
+ - -6.452688926589238
+ - -6.246090711630012
+ - 5.72320106591999
+ - 6.25238545139875
+ - 6.664730411076429
+ - 6.897886161456796
+ - -0.7860137843511265
+ - -1.686726080394091
+ - -2.891288081337066
+ - -3.6391741853699244
+ - 0.7133004352219176
+ - 1.7321286266066385
+ - 3.0682840593644674
+ - 4.020776162045483
+ - 5.483823604049855
+ - 4.658458384880694
+ - 3.4754526740758767
+ - 2.4953455554237673
+ - -5.047716024499289
+ - -4.4862867794268215
+ - -3.448065675456042
+ - -2.6586577723621927
+ - 6.397310373005036
+ - 6.4431285309946285
+ - 6.438334207044408
+ - 6.025384515625865
+ - -5.964067078699067
+ - -6.052505856184083
+ - -5.933050755265407
+ - -5.79659079042083
+ - 2.9817949773082844
+ - 3.6375270641413406
+ - 4.48956695060896
+ - 4.929118783416326
+ - -2.6266203539448063
+ - -3.5718834935672663
+ - -4.709265973739612
+ - -5.49277566180565
+ - -3.6824165587456075
+ - -2.7453569951637244
+ - -1.4270246663353041
+ - -0.43055659737852686
+ - 3.603404209075134
+ - 2.8533312495709864
+ - 1.6056250771618201
+ - 0.6842372561395885
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -9.32428504403356
+ - -9.314075017403288
+ - -9.323213062201178
+ - -8.900082087422678
+ - 8.550767980369995
+ - 9.088678293378297
+ - 9.323432885657155
+ - 9.40273646431224
+ - -3.206328546171134
+ - -4.3179202783790345
+ - -5.774803504664327
+ - -4.735557605121348
+ - 7.734512573152408
+ - 7.168528370547497
+ - 5.970647894652266
+ - 5.035030635054293
+ - -8.637367049405244
+ - -8.904958356705418
+ - -9.154464391946423
+ - -8.988243694827398
+ - 7.849326413113386
+ - 8.718153249100155
+ - 9.47669678318279
+ - 9.934499197751235
+ - -0.23624479576250687
+ - -1.5776663537331883
+ - -3.384857478960663
+ - -4.543411156871933
+ - 0.2154189153127985
+ - 1.6702095646487571
+ - 3.6212528701624804
+ - 5.019964887013562
+ - 8.375871475638567
+ - 7.268848580689819
+ - 5.669334720538367
+ - 4.305688588960376
+ - -7.7165028154526505
+ - -7.020148503851404
+ - -5.651385318005281
+ - -4.602184530827357
+ - 8.904732048560694
+ - 9.100367770028294
+ - 9.271741694538017
+ - 8.801339190327182
+ - -8.442966257484027
+ - -8.706496885661311
+ - -8.72430773976261
+ - -8.66576189498211
+ - 3.3986764200606854
+ - 4.428857693982017
+ - 5.781811506236176
+ - 6.530267654748215
+ - -2.9827328207396286
+ - -4.367900669060351
+ - -6.0801156342975755
+ - -7.270374609214961
+ - -5.9991617746649135
+ - -4.701060091115744
+ - -2.861705446527243
+ - -1.4351559694831542
+ - 5.856419834564196
+ - 4.862808560355155
+ - 3.1386949176248313
+ - 1.8671875711689834
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -8.826417558983014
+ - -8.988346003199752
+ - -9.229043865974528
+ - -8.974198588200748
+ - 8.06695651641611
+ - 8.754086825604732
+ - 9.21782759267556
+ - 9.46613667335301
+ - -1.9984697433351275
+ - -3.185365426446178
+ - -4.760302573641215
+ - -5.5480415309270255
+ - 8.07678904639643
+ - 7.6845001669761
+ - 6.701655532270128
+ - 5.916884813728586
+ - -7.848444921363585
+ - -8.27505402921064
+ - -8.749425348261296
+ - -8.75882666983729
+ - 7.14368623589712
+ - 8.130654204339653
+ - 9.085791458580688
+ - 9.691794056292785
+ - 0.9397581657078784
+ - -0.4266257756622264
+ - -2.28418497698444
+ - -3.5208124960488414
+ - -0.8504742175856783
+ - 0.5523803872038248
+ - 2.4906132642084677
+ - 3.890308721353149
+ - 8.795607672499827
+ - 7.822343972257477
+ - 6.398133710391154
+ - 5.130412909306846
+ - -8.111489571266933
+ - -7.578760310166143
+ - -6.408701871780083
+ - -5.499732274040786
+ - 8.283744649344413
+ - 8.643967831722781
+ - 9.044052523453217
+ - 8.747572487938406
+ - -8.045154650858803
+ - -8.480120675277444
+ - -8.745513938087974
+ - -8.868660062370784
+ - 2.1454337871237055
+ - 3.2625078070286904
+ - 4.746782830923569
+ - 5.627712669236525
+ - -1.8645239949835926
+ - -3.2469135384563
+ - -5.0141388193022225
+ - -6.256091455287539
+ - -6.7613836408096555
+ - -5.562238827244271
+ - -3.8453388779452276
+ - -2.4648591458921634
+ - 6.584314249784391
+ - 5.7281892366872045
+ - 4.141381585614524
+ - 2.973437591606224
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -4.795813692337795
+ - -5.10206704407862
+ - -5.5280187515489505
+ - -5.574873056961786
+ - 4.348505249898771
+ - 4.948200919688194
+ - 5.5073924130208125
+ - 5.862674963311206
+ - 0.23278417542255858
+ - -0.5833991771500872
+ - -1.6882545994724307
+ - -2.407203125407054
+ - 5.349207770848571
+ - 5.31856107196106
+ - 4.976705364852372
+ - 4.678635359913511
+ - -3.8475528078814794
+ - -4.2997980506596996
+ - -4.860525674250411
+ - -5.077738792082496
+ - 3.5170369930360845
+ - 4.262591415390271
+ - 5.083153511489734
+ - 5.632030551908554
+ - 1.9904676625515783
+ - 1.1251853639723814
+ - -0.07092704276081269
+ - -0.9208450482209406
+ - -1.8033081484991456
+ - -1.0083259134604632
+ - 0.1610264173925323
+ - 1.017797910470248
+ - 5.881866887670911
+ - 5.448002528964643
+ - 4.788513122026974
+ - 4.129101177925219
+ - -5.433887442054052
+ - -5.305268606501876
+ - -4.829311072047161
+ - -4.442540481343848
+ - 4.315847188861568
+ - 4.734219345583906
+ - 5.254168354325506
+ - 5.282359925180482
+ - -4.438730921271856
+ - -4.911036486137658
+ - -5.3713764428854915
+ - -5.665426804009596
+ - -0.19759658168031902
+ - 0.5898611730939943
+ - 1.6552729930912795
+ - 2.3532676461215294
+ - 0.20671324925120615
+ - -0.6349501918678551
+ - -1.7814341844885202
+ - -2.6028428811620534
+ - -5.050800238051692
+ - -4.436956786514004
+ - -3.5349205463176867
+ - -2.7465517136522433
+ - 4.901229923580896
+ - 4.543456311358034
+ - 3.738823613469317
+ - 3.149598846957094
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 4.5646640693904805
+ - 4.100434696766341
+ - 3.4838843299259414
+ - 2.886828336925794
+ - -4.25890908538585
+ - -4.046020022852095
+ - -3.5145666879591566
+ - -3.089751616194259
+ - 4.344027137447147
+ - 4.527822631353231
+ - 4.716901582388523
+ - 4.662906833112818
+ - -1.7651172722416046
+ - -1.1040640386174883
+ - -0.1133273660585437
+ - 0.6147083259989361
+ - 5.105488701419731
+ - 4.772672811240163
+ - 4.257361669032805
+ - 3.7297287806594888
+ - -4.609431486888775
+ - -4.59442918471462
+ - -4.331236741273769
+ - -4.0933078382743515
+ - 3.2292022272661205
+ - 3.6273954185508877
+ - 4.119053457027175
+ - 4.311715151213298
+ - -2.927298691625533
+ - -3.570592341374195
+ - -4.281199398784773
+ - -4.763426409507558
+ - -1.7801386777915011
+ - -1.0384162299609851
+ - -0.014789090646144497
+ - 0.7146370951032366
+ - 1.6178070021168756
+ - 0.9385122138179255
+ - -0.06775388697891846
+ - -0.8067533293190933
+ - -4.748730216919903
+ - -4.376065207985145
+ - -3.8233782607166424
+ - -3.1948502101701193
+ - 3.9913805632582644
+ - 3.623924139723087
+ - 2.9674993183725595
+ - 2.460946702679893
+ - -4.5321635457953535
+ - -4.6567235548770505
+ - -4.774268778441801
+ - -4.679182497594289
+ - 4.026590287353512
+ - 4.514189736881035
+ - 4.960500701747324
+ - 5.234753597479927
+ - 0.03967370462628645
+ - -0.6751449439431904
+ - -1.6404738415372588
+ - -2.258277941011467
+ - -0.08206241888006792
+ - 0.6303209145049021
+ - 1.5954480646273637
+ - 2.313376086024932
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 4.892029810649339
+ - 4.422275513070082
+ - 3.7990593036310556
+ - 3.1827610040004353
+ - -4.559937798440803
+ - -4.360576595801744
+ - -3.830093352717141
+ - -3.402846507060619
+ - 4.487810407277804
+ - 4.7065783486009565
+ - 4.940910308730127
+ - 4.910171112380242
+ - -2.013927893939792
+ - -1.328683709073721
+ - -0.2913420337285454
+ - 0.4725798449807066
+ - 5.418605098340967
+ - 5.08996603326977
+ - 4.576243250168846
+ - 4.037753993042631
+ - -4.893639990500044
+ - -4.904187424401199
+ - -4.660487974175267
+ - -4.433433918602501
+ - 3.2725247231176433
+ - 3.714905679261258
+ - 4.265590429507521
+ - 4.494714458724406
+ - -2.966608223327318
+ - -3.6602029648731595
+ - -4.436558193941359
+ - -4.965614250029048
+ - -2.048103432937074
+ - -1.265266967624507
+ - -0.18277587821923097
+ - 0.5952224034680542
+ - 1.8644272321531636
+ - 1.1568771294271514
+ - 0.09877294392810797
+ - -0.679598264547885
+ - -5.065747379630842
+ - -4.694680895333096
+ - -4.140848998011192
+ - -3.491325267363542
+ - 4.2862084305185855
+ - 3.9224189156333487
+ - 3.2591363816014485
+ - 2.7451518847744194
+ - -4.683757167762538
+ - -4.840213344850391
+ - -4.999130346576556
+ - -4.925129693107783
+ - 4.160183562176395
+ - 4.69427157164726
+ - 5.1962876527697945
+ - 5.508859326506808
+ - 0.21770380287802268
+ - -0.5435823940747776
+ - -1.574219002246733
+ - -2.241201450944758
+ - -0.25634403496054
+ - 0.4934660976413047
+ - 1.520487390268237
+ - 2.2841307108466102
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.219395551908196
+ - 4.744116329373823
+ - 4.11423427733617
+ - 3.4786936710750767
+ - -4.860966511495755
+ - -4.675133168751393
+ - -4.145620017475125
+ - -3.7159413979269798
+ - 4.6315936771084605
+ - 4.885334065848682
+ - 5.164919035071733
+ - 5.157435391647666
+ - -2.26273851563798
+ - -1.5533033795299536
+ - -0.4693567013985471
+ - 0.3304513639624771
+ - 5.731721495262203
+ - 5.407259255299374
+ - 4.895124831304888
+ - 4.345779205425774
+ - -5.177848494111311
+ - -5.2139456640877775
+ - -4.989739207076766
+ - -4.773559998930652
+ - 3.3158472189691666
+ - 3.802415939971628
+ - 4.412127401987864
+ - 4.677713766235511
+ - -3.005917755029104
+ - -3.7498135883721244
+ - -4.591916989097944
+ - -5.167802090550538
+ - -2.316068188082647
+ - -1.4921177052880283
+ - -0.35076266579231735
+ - 0.47580771183287174
+ - 2.1110474621894517
+ - 1.3752420450363776
+ - 0.2652997748351344
+ - -0.5524431997766764
+ - -5.382764542341782
+ - -5.013296582681046
+ - -4.458319735305741
+ - -3.7878003245569647
+ - 4.5810362977789065
+ - 4.22091369154361
+ - 3.5507734448303383
+ - 3.029357066868946
+ - -4.8353507897297225
+ - -5.023703134823732
+ - -5.22399191471131
+ - -5.171076888621276
+ - 4.293776836999278
+ - 4.874353406413483
+ - 5.432074603792265
+ - 5.7829650555336904
+ - 0.3957339011297589
+ - -0.412019844206365
+ - -1.5079641629562075
+ - -2.224124960878049
+ - -0.4306256510410121
+ - 0.35661128077770715
+ - 1.4455267159091107
+ - 2.254885335668288
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.50965984249105
+ - 5.02948185316314
+ - 4.3936894206880375
+ - 3.7410873025479248
+ - -5.127878637071148
+ - -4.954039996766748
+ - -4.425386993560538
+ - -3.99355220116182
+ - 4.759081509691644
+ - 5.043830801808333
+ - 5.363540105761289
+ - 5.376676385931448
+ - -2.4833506002103722
+ - -1.7524661540011468
+ - -0.627196373399282
+ - 0.20443077745964694
+ - 6.009351367199033
+ - 5.688592578832292
+ - 5.177866499912178
+ - 4.618894893738826
+ - -5.429846700646636
+ - -5.48859796994321
+ - -5.281675300249427
+ - -5.075138456821612
+ - 3.3542598319575165
+ - 3.8800083711348217
+ - 4.542056850920437
+ - 4.839973152228692
+ - -3.0407722064713534
+ - -3.8292683412078734
+ - -4.7296684541367835
+ - -5.347075309146258
+ - -2.5536636043117213
+ - -1.6932586926830178
+ - -0.49971095077378747
+ - 0.36992668524967665
+ - 2.3297173994882936
+ - 1.5688589368765578
+ - 0.41295356490603113
+ - -0.43969904234620494
+ - -5.663853093278815
+ - -5.295802492129561
+ - -4.739810455706908
+ - -4.0506748752684665
+ - 4.842450340083058
+ - 4.485579059517375
+ - 3.8093583075599535
+ - 3.2813523283260926
+ - -4.969763801207293
+ - -5.18639741526676
+ - -5.423369171790792
+ - -5.389150068643241
+ - 4.412229540675568
+ - 5.034025966572868
+ - 5.641139033698856
+ - 6.026005468604192
+ - 0.5535872549129651
+ - -0.29536771665637246
+ - -1.4492182054519416
+ - -2.208983806352233
+ - -0.585155350632364
+ - 0.235266676491984
+ - 1.3790615846440188
+ - 2.2289544363435088
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 9.399341276579616
+ - 8.929833103488198
+ - 8.318041316970264
+ - 7.501603158464409
+ - -8.692512364701127
+ - -8.758547533956753
+ - -8.34883664404515
+ - -7.965156053037279
+ - 6.006429274300246
+ - 6.766601177875802
+ - 7.711096877099775
+ - 8.075105504743783
+ - -5.632561451832896
+ - -4.821052499647499
+ - -3.2092235595361145
+ - -1.996075656033552
+ - 9.583967481902457
+ - 9.389913981369217
+ - 9.003993670059902
+ - 8.390189421264779
+ - -8.679311820831268
+ - -9.114814051018184
+ - -9.244950228575064
+ - -9.244408844689103
+ - 3.3515934590634058
+ - 4.445327345925377
+ - 5.874033811638202
+ - 6.6674223407364455
+ - -3.038901238457254
+ - -4.436511640653323
+ - -6.158750131319006
+ - -7.366221316445924
+ - -6.1231363054074786
+ - -4.807424864798589
+ - -2.954451640608504
+ - -1.517971794833691
+ - 5.618914194488001
+ - 4.578568195953583
+ - 2.8626042578646853
+ - 1.5795976470122934
+ - -9.365854828377778
+ - -9.094643110813365
+ - -8.630835150396441
+ - -7.758414722649051
+ - 8.369095342694465
+ - 8.138296899580427
+ - 7.49112897911922
+ - 6.9542358634924355
+ - -6.29429570056882
+ - -6.95302112611895
+ - -7.772095989179239
+ - -8.065102268142109
+ - 5.573064046940304
+ - 6.778884569322852
+ - 8.112998415237158
+ - 9.004415277380264
+ - 3.1503573514767
+ - 1.7624706593907327
+ - -0.15656847834333784
+ - -1.5140465638479177
+ - -3.11873012371663
+ - -1.8911630165591897
+ - -0.03208037795775754
+ - 1.3451258934238426
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 9.32188322322334
+ - 9.027338072304946
+ - 8.65196032348459
+ - 7.987518981857161
+ - -8.593712742201005
+ - -8.836627406057357
+ - -8.671110762753594
+ - -8.463327698479183
+ - 4.923290806155563
+ - 5.811463447337664
+ - 6.943449539087981
+ - 7.47160609602636
+ - -4.631100974112451
+ - -5.677440779976546
+ - -4.229530260594066
+ - -3.126975559375072
+ - 9.1782093785016
+ - 9.158556400040641
+ - 9.013310736200605
+ - 8.570826130721244
+ - -8.322093627995626
+ - -8.91806000292415
+ - -9.283529634594112
+ - -9.455134652897044
+ - 2.163970876186457
+ - 3.3449976135954573
+ - 4.90836549017778
+ - 5.834743076166187
+ - -1.9625360951182353
+ - -3.3742962345490803
+ - -5.173441161071007
+ - -6.446408861345323
+ - -6.937116974434782
+ - -5.706680810868094
+ - -3.9586139423338595
+ - -2.5570184051463
+ - 6.377268314132788
+ - 5.471571007108261
+ - 3.8950024068246685
+ - 2.706533125103901
+ - -9.143574435247475
+ - -9.049121671103858
+ - -8.826304809135472
+ - -8.109446197445203
+ - 8.352971207676491
+ - 8.309041362786429
+ - 7.915016697965769
+ - 7.560594236999798
+ - -5.173773708977136
+ - -5.968556702104375
+ - -6.983851070781563
+ - -7.446378165748916
+ - 4.570981831323158
+ - 5.837840591181155
+ - 7.30696762721475
+ - 8.305950277903122
+ - 4.2037906031603045
+ - 2.856900029344925
+ - 0.9778476320318832
+ - -0.3984565988862981
+ - -4.130596982694349
+ - -2.997332946386895
+ - -1.1986863833988135
+ - 0.13160284494826432
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 6.62699626111285
+ - 6.546484673435006
+ - 6.453915566613924
+ - 6.09098824978702
+ - -6.088870355718033
+ - -6.395211089114327
+ - -6.458948984778138
+ - -6.441353947413898
+ - 2.7213763657623726
+ - 3.4539250706586637
+ - 4.40575955968048
+ - 4.90714008638756
+ - -2.5728625265173375
+ - -3.482880677284561
+ - -3.7953098614038634
+ - -3.0872730549463903
+ - 6.278699514305094
+ - 6.394897032139546
+ - 6.47054214404962
+ - 6.281219044207467
+ - -5.701029093233101
+ - -6.248284996549715
+ - -6.686181485871005
+ - -6.937849003889695
+ - 0.6645683881125938
+ - 1.5767151906308468
+ - 2.798432669232946
+ - 3.562105389602281
+ - -0.6032345539613402
+ - -1.626200087891028
+ - -2.973849327933875
+ - -3.935644803114667
+ - -5.58281942876334
+ - -4.764162399373135
+ - -3.5889705228790665
+ - -2.6099264841437706
+ - 5.139786058216121
+ - 4.590890015622851
+ - 3.564448135804828
+ - 2.782805678635608
+ - -6.390934623663349
+ - -6.4552540131576475
+ - -6.475508047754743
+ - -6.077654846294147
+ - 5.977996083645026
+ - 6.086098926244862
+ - 5.992655878335104
+ - 5.87481415806668
+ - -2.8730730025382334
+ - -3.5446696660598667
+ - -4.419344096026236
+ - -4.877674717908099
+ - 2.529285688666689
+ - 3.4833696660348155
+ - 4.637768420762743
+ - 5.434514143354127
+ - 3.801599708961378
+ - 2.86635143335956
+ - 1.5487277746664
+ - 0.5476945622102277
+ - -3.7180580767326346
+ - -2.9758291290492944
+ - -1.731142979601767
+ - -0.8122231771395707
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 9.479421728931161
+ - 9.492548216130528
+ - 9.533626274270048
+ - 9.123413576630961
+ - -8.68930259819863
+ - -9.260538642834625
+ - -9.532284743615596
+ - -9.636639718320117
+ - 3.1176645254689426
+ - 4.266197357040105
+ - 5.774148513662094
+ - 6.61666904315315
+ - -2.964161441380704
+ - -4.330088535401883
+ - -6.005803808946154
+ - -5.276435979670612
+ - 8.736179131172234
+ - 9.03196357725994
+ - 9.318249945278842
+ - 9.172106140425628
+ - -7.940671731670258
+ - -8.846493092796388
+ - -9.650136740011245
+ - -10.1392064112393
+ - 0.08080401510289494
+ - 1.4577754134127292
+ - 3.3151529784261005
+ - 4.512152054558854
+ - -0.07456313846249041
+ - -1.5570848531097117
+ - -3.553105443260197
+ - -4.985454691224104
+ - -8.633992937037686
+ - -7.5187777141967755
+ - -5.904966310328161
+ - -4.521798290217587
+ - 7.9554404142526245
+ - 7.264821565397681
+ - 5.890493566735228
+ - 4.835372023416732
+ - -9.032953379678393
+ - -9.255821706169499
+ - -9.462631289465849
+ - -9.004786967051311
+ - 8.590699799018163
+ - 8.884027369869326
+ - 8.936180886532798
+ - 8.901122517952759
+ - -3.3084025026382577
+ - -4.375162439853772
+ - -5.778512305154177
+ - -6.563043210636785
+ - 2.9009941883840478
+ - 4.318959542195779
+ - 6.079721981082077
+ - 7.305571980755768
+ - 6.2472720879092325
+ - 4.931633746452398
+ - 3.064997075881071
+ - 1.6105893546754013
+ - -6.0964086521928875
+ - -5.097832099195312
+ - -3.3512311954835248
+ - -2.0634552287108754
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 9.303599362056408
+ - 9.488256953524221
+ - 9.760865966976676
+ - 9.504108452413913
+ - -8.50086072684283
+ - -9.239631128306346
+ - -9.748112890088535
+ - -10.023955199765926
+ - 2.0220858491435987
+ - 3.284115241742406
+ - 4.960147881433597
+ - 5.954854129614317
+ - -1.9503396176003143
+ - -3.3769103189308853
+ - -5.191373620160309
+ - -6.330483429544408
+ - 8.246063675702441
+ - 8.709850802521036
+ - 9.229266384410277
+ - 9.252756079455024
+ - -7.506559452429981
+ - -8.560285520127707
+ - -9.586369741329415
+ - -10.239195031990786
+ - -1.085312390000814
+ - 0.36280845201937906
+ - 2.3327534204130727
+ - 3.647633104130202
+ - 0.9823245367101673
+ - -0.4984689415263627
+ - -2.548929228593
+ - -4.030458751495411
+ - -9.341730631287243
+ - -8.32192907572073
+ - -6.82804329617515
+ - -5.493668250158388
+ - 8.61574419380756
+ - 8.064511778415644
+ - 6.841427261360406
+ - 5.890174266622023
+ - -8.719736500633447
+ - -9.113689374778318
+ - -9.554775576142294
+ - -9.254385900979406
+ - 8.484415384577634
+ - 8.958004865593782
+ - 9.257986992302401
+ - 9.40233343334827
+ - -2.174135497546234
+ - -3.363158260249687
+ - -4.944255898509189
+ - -5.886854926681887
+ - 1.8872275067170803
+ - 3.3501502552285483
+ - 5.224842656827106
+ - 6.543324778395275
+ - 7.215087868099505
+ - 5.953528140236164
+ - 4.145781960876272
+ - 2.6882180476770103
+ - -7.025029186343685
+ - -6.1294958941997635
+ - -4.460585827276851
+ - -3.232404531551597
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 4.966523243182084
+ - 5.2058251089824985
+ - 5.541657579610457
+ - 5.524078166341282
+ - -4.5156541241233175
+ - -5.055963311105826
+ - -5.525480325636648
+ - -5.814809551583375
+ - 0.22926654079812306
+ - 1.013407793018394
+ - 2.068735839236626
+ - 2.737218647291266
+ - -0.25561321973794593
+ - -1.0875948032921379
+ - -2.1953388025000975
+ - -2.987319306735012
+ - 4.133202296261246
+ - 4.522915770048865
+ - 4.99553590795665
+ - 5.1448270342155595
+ - -3.7722268012913647
+ - -4.469670697084727
+ - -5.211869538137174
+ - -5.701954523084096
+ - -1.5334841916674473
+ - -0.6812237978342874
+ - 0.4908326112123798
+ - 1.3075149303386508
+ - 1.3891154901390028
+ - 0.577514748975583
+ - -0.5920085596360251
+ - -1.4449466728472977
+ - -5.697889479601254
+ - -5.214712397329146
+ - -4.490960936424604
+ - -3.797590009829722
+ - 5.2611664028851814
+ - 5.070601309980164
+ - 4.520707385285503
+ - 4.08196326167517
+ - -4.535496026341442
+ - -4.889346854881163
+ - -5.319884915000408
+ - -5.281566209803355
+ - 4.572684395256759
+ - 4.977636696357185
+ - 5.341601862545366
+ - 5.565102857016403
+ - -0.2816378031253237
+ - -1.0327452666136026
+ - -2.0437239998046746
+ - -2.688328495806504
+ - 0.2210075316177907
+ - 1.0603346560568467
+ - 2.1811907390607557
+ - 2.9795496937817614
+ - 4.739429960210179
+ - 4.090286290870603
+ - 3.145142469395081
+ - 2.3423679517861045
+ - -4.603568135900099
+ - -4.194751853778237
+ - -3.340948835311454
+ - -2.7145659268665137
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.7906794515863138
+ - -0.9459336081995077
+ - 0.19202008616086622
+ - 0.9888538987157147
+ - 1.7759475570693453
+ - 1.0052857145962668
+ - -0.1358668221279892
+ - -0.9715092817082204
+ - -5.70733049125258
+ - -5.2594340494200855
+ - -4.577328888679141
+ - -3.908798169271476
+ - 5.28913552149549
+ - 5.123098728372055
+ - 4.602015511581558
+ - 4.175991995154986
+ - -3.268426767811455
+ - -2.468620469817781
+ - -1.346672209426856
+ - -0.49576956069564204
+ - 2.914709563251052
+ - 2.273460441170742
+ - 1.254631796406661
+ - 0.49460275843341867
+ - -5.759383924729196
+ - -5.542606245817767
+ - -5.168348550027219
+ - -4.7035507393550215
+ - 5.220038684526398
+ - 5.372990598184745
+ - 5.298936669497842
+ - 5.195910116776819
+ - -2.649571943486671
+ - -3.2288154041223818
+ - -3.977530054039275
+ - -4.352935301801739
+ - 2.481723566764556
+ - 3.2364848692601025
+ - 4.116334676642369
+ - 4.731424887013095
+ - 2.424840683293492
+ - 1.602730481121639
+ - 0.4673802959549849
+ - -0.35381992549503494
+ - -1.3611251354685892
+ - -0.5006145763644222
+ - 0.7166433155444772
+ - 1.6049179857155078
+ - 5.91673058950902
+ - 5.4176308824246036
+ - 4.677659422685207
+ - 3.9744661936487873
+ - -5.2827097505276335
+ - -5.199109991725289
+ - -4.808719627871319
+ - -4.471262928255277
+ - 4.164842904668126
+ - 4.559739157245568
+ - 5.032047021152613
+ - 5.158169107762866
+ - -3.9862215374339316
+ - -4.591732619068634
+ - -5.145073497046471
+ - -5.5644616563500024
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -4.577854091221845
+ - -3.149423812522347
+ - -1.2290051509908684
+ - 0.1873000412879814
+ - 4.424099050795498
+ - 3.212113485349282
+ - 1.3238815460431412
+ - -0.07425998706855551
+ - -10.173565076538466
+ - -9.602292080609507
+ - -8.692981576934752
+ - -7.698179534981378
+ - 9.440330954464773
+ - 9.381824987943856
+ - 8.772553051350002
+ - 8.242240373862398
+ - -6.8162447807366595
+ - -5.652996207877129
+ - -3.799656932896461
+ - -2.3348356104821346
+ - 6.230540002346626
+ - 5.292258547247646
+ - 3.6978920515640317
+ - 2.490518136289281
+ - -9.766642436995676
+ - -9.624007668336654
+ - -9.292998492197512
+ - -8.701004230343708
+ - 8.852248282150908
+ - 9.35295456681223
+ - 9.552939860544885
+ - 9.611969491421105
+ - -3.0794987497854924
+ - -4.24224729039952
+ - -5.773275985791172
+ - -6.63450834301015
+ - 2.905867800484546
+ - 4.296635874570369
+ - 6.010699852613664
+ - 7.224357983868774
+ - 5.579016859355056
+ - 4.2231123564090005
+ - 2.334120575540386
+ - 0.8687860710558496
+ - -3.705526257969339
+ - -2.296077464052341
+ - -0.24316333259565076
+ - 1.2668378445426036
+ - 10.559276898817977
+ - 9.88796082054411
+ - 8.863601917646243
+ - 7.800645624242663
+ - -9.41915131592945
+ - -9.508735173699364
+ - -9.134655070686453
+ - -8.763015267966322
+ - 6.034685443445725
+ - 6.917916848620791
+ - 8.022068968103575
+ - 8.472755965294105
+ - -5.7567856551928
+ - -6.945003547820029
+ - -8.166815957765662
+ - -9.08698202931012
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.349922888251247
+ - -4.038077434660289
+ - -2.2772177730616905
+ - -0.9255816503291424
+ - 5.1134734915266975
+ - 4.067802613274075
+ - 2.364294085400729
+ - 1.0912761193263723
+ - -9.729616341040524
+ - -9.342538130473729
+ - -8.68788646682082
+ - -7.874556414422498
+ - 9.036945423900432
+ - 9.1475091126242
+ - 8.788926118734162
+ - 8.44240286991551
+ - -5.543419231416532
+ - -6.284661744499512
+ - -4.614986216496821
+ - -3.250514955917871
+ - 6.684393577055695
+ - 5.930650398988823
+ - 4.561349862854306
+ - 3.5100324309214748
+ - -8.99003648192969
+ - -9.024573651441536
+ - -8.943709052883966
+ - -8.54340971929414
+ - 8.148510798779432
+ - 8.787293197696352
+ - 9.211354438890153
+ - 9.437983171102875
+ - -1.792652231793097
+ - -2.9959775020071118
+ - -4.59792713467814
+ - -5.556254017099805
+ - 1.714649452442502
+ - 3.0765451969056326
+ - 4.817977080207132
+ - 6.060882174434614
+ - 6.216757698982103
+ - 4.996836663611751
+ - 3.2848157958615185
+ - 1.882366379594749
+ - -4.440889532113223
+ - -3.180213364123227
+ - -1.2988583577671429
+ - 0.09378856743513031
+ - 10.107224955968135
+ - 9.61831873653624
+ - 8.845294952799064
+ - 7.962320087682877
+ - -9.009870205960315
+ - -9.262862410759242
+ - -9.130769104676375
+ - -8.936554696652896
+ - 4.797101109247457
+ - 5.767530147120925
+ - 7.007393705757781
+ - 7.59680105484626
+ - -4.5597285968195855
+ - -5.772437740048233
+ - -7.106044899560296
+ - -8.107082307051995
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -4.461754274321308
+ - -3.5921718326349743
+ - -2.4272042790924004
+ - -1.4905541588747082
+ - 4.22891652272749
+ - 3.5896243450842036
+ - 2.484879360711475
+ - 1.649832496814662
+ - -6.758206277866116
+ - -6.611546010375333
+ - -6.321777410106927
+ - -5.8627717057561055
+ - 6.283649256408055
+ - 6.48821529900262
+ - 6.411096556990593
+ - 6.293666276640045
+ - -3.1020560627396967
+ - -3.8114517282277913
+ - -3.9584035250603073
+ - -3.0385916868000766
+ - 5.19984981766011
+ - 4.786478502242676
+ - 3.954669293315338
+ - 3.3037382971407605
+ - -5.975619756894538
+ - -6.130777667136754
+ - -6.255461951870981
+ - -6.104679330598563
+ - 5.416390058683019
+ - 5.98280039690456
+ - 6.455983778195376
+ - 6.743975873815956
+ - -0.360891559890705
+ - -1.266790076506822
+ - -2.4851879678792015
+ - -3.2541806963853026
+ - 0.37427259461019585
+ - 1.3446608722353657
+ - 2.632653649686125
+ - 3.5590556403115814
+ - 4.9943111058738054
+ - 4.205892482540889
+ - 3.089260871286988
+ - 2.1143052556958533
+ - -3.7729659301758
+ - -2.9642590369036115
+ - -1.7203665846223182
+ - -0.7925184562229727
+ - 7.027191010114508
+ - 6.80508152929632
+ - 6.426689014673983
+ - 5.915882200084205
+ - -6.259609914029116
+ - -6.5637216035762505
+ - -6.6451207336620275
+ - -6.633914134667316
+ - 2.5845339596575947
+ - 3.3550755692972825
+ - 4.357388601712963
+ - 4.888322482821561
+ - -2.441446328262646
+ - -3.3423732886114683
+ - -4.395389096813125
+ - -5.18357383879305
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -7.039881536498836
+ - -5.858426779704395
+ - -4.278054711301406
+ - -2.9620096854333475
+ - 6.642240472999894
+ - 5.8311954879985395
+ - 4.356366494984975
+ - 3.2312318832193996
+ - -9.511822685855282
+ - -9.429988042077456
+ - -9.190316049553484
+ - -8.65228474700902
+ - 8.850609555496414
+ - 9.26877933158815
+ - 9.335537196135782
+ - 9.29592330942528
+ - -3.6030122724490856
+ - -4.698502543606769
+ - -6.130721045807453
+ - -5.072626368543763
+ - 7.886209479312185
+ - 7.416734025247924
+ - 6.367635836409387
+ - 5.53234299531901
+ - -8.136269549319044
+ - -8.488366092360272
+ - -8.848223701214538
+ - -8.765746563147587
+ - 7.374970300122827
+ - 8.297261439285608
+ - 9.145346941119682
+ - 9.683796233549474
+ - 0.39355290759462075
+ - -0.9528819181303254
+ - -2.775450382714838
+ - -3.9631151128133024
+ - -0.3058436729054717
+ - 1.0848155231988528
+ - 2.9775146110831723
+ - 4.345682328360298
+ - 7.7185266533557115
+ - 6.668955498775989
+ - 5.171306550888847
+ - 3.7982794750715194
+ - -6.011959446829496
+ - -4.942009930200727
+ - -3.255419350619738
+ - -1.9897761721675733
+ - 9.897232156471858
+ - 9.704395554037532
+ - 9.333463014107046
+ - 8.71903198949426
+ - -8.811440800821329
+ - -9.37034241117446
+ - -9.661426989614348
+ - -9.771755477151336
+ - 2.8755154756251886
+ - 4.058369485521514
+ - 5.61291947392221
+ - 6.484075912576375
+ - -2.6963426776028863
+ - -4.024067185874351
+ - -5.635286674230337
+ - -6.839284615401551
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -7.680100665764849
+ - -6.618748005021161
+ - -5.202366929068022
+ - -3.959838025495202
+ - 7.210167587028311
+ - 6.561328666872273
+ - 5.272650960183711
+ - 4.274923788935523
+ - -9.002158114469006
+ - -9.091446701653972
+ - -9.089682116758693
+ - -8.725018656726448
+ - 8.385342903696458
+ - 8.955435485097933
+ - 9.253232633830416
+ - 9.383926589977671
+ - -2.3888098308397674
+ - -3.5554951442572746
+ - -5.09952623365438
+ - -5.866131897690835
+ - 8.223437892970361
+ - 7.929449204871465
+ - 7.099351263996664
+ - 6.41703492727482
+ - -7.333455010370669
+ - -7.8456537309133925
+ - -8.432988192033605
+ - -8.528574104721365
+ - 6.647461222520995
+ - 7.687763066802175
+ - 8.73413177279755
+ - 9.421889079143092
+ - 1.5790020914508467
+ - 0.2091116947395395
+ - -1.6599927783117434
+ - -2.9250151152400177
+ - -1.4038099412612235
+ - -0.05435525999875839
+ - 1.8438875599942703
+ - 3.2248108082752753
+ - 8.227490088390605
+ - 7.314576531948738
+ - 5.9961506657526575
+ - 4.695585353593105
+ - -6.628977063016102
+ - -5.707720103925214
+ - -4.197322050770254
+ - -3.053370942043113
+ - 9.376054286083926
+ - 9.353849520266884
+ - 9.219121993803203
+ - 8.777478371201147
+ - -8.341133105392682
+ - -9.045255344022747
+ - -9.556993569100882
+ - -9.830181984548345
+ - 1.7014831515941071
+ - 2.952596328243494
+ - 4.616371917107902
+ - 5.606668314356117
+ - -1.5616437592137866
+ - -2.898149762751933
+ - -4.595894847196487
+ - -5.862083255933452
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.562716449310571
+ - -5.0444317039807975
+ - -4.35723759727632
+ - -3.6699222640650784
+ - 5.1825752041268345
+ - 4.9723410510625605
+ - 4.391469629946335
+ - 3.921672321097973
+ - -5.007191824264159
+ - -5.268407733183098
+ - -5.552981035234901
+ - -5.533533328293361
+ - 4.6754851944134534
+ - 5.213765602134053
+ - 5.677079562376575
+ - 5.963161779086522
+ - -0.0331142792143583
+ - -0.8468541647549762
+ - -1.944907759526216
+ - -2.6550097032473086
+ - 5.5380444422070925
+ - 5.565256594367583
+ - 5.310077116825673
+ - 5.067863514758361
+ - -3.613570902223723
+ - -4.12553533703965
+ - -4.765302087843687
+ - -5.038782021209572
+ - 3.2757958786024926
+ - 4.066862007796917
+ - 4.958104816186103
+ - 5.566692287020069
+ - 2.409085367546423
+ - 1.52582862184911
+ - 0.30324564762932105
+ - -0.579276545526375
+ - -2.1946817939030665
+ - -1.4018237341609507
+ - -0.210275230571644
+ - 0.6670198669300035
+ - 5.74678999317055
+ - 5.341041143569989
+ - 4.733281523990356
+ - 4.008473547831742
+ - -4.878740430531173
+ - -4.48223494274955
+ - -3.7510063850164657
+ - -3.1830725252666228
+ - 5.226754561352453
+ - 5.4177857550396755
+ - 5.617318768518865
+ - 5.549122702305626
+ - -4.641836079506435
+ - -5.255730538793194
+ - -5.840116582280639
+ - -6.206201159833126
+ - -0.34768259019095393
+ - 0.5152322038757274
+ - 1.6849244516475894
+ - 2.446132937169188
+ - 0.38774015155702235
+ - -0.4570575556484586
+ - -1.6206959794843223
+ - -2.4857336225034103
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.2801922891305981
+ - 0.4436045980437834
+ - -0.6845729309700361
+ - -1.4517889701865683
+ - -1.306602401028543
+ - -0.5143712880523286
+ - 0.6289376398102657
+ - 1.4612497243022697
+ - 5.4858806113337995
+ - 4.983090018030183
+ - 4.2298963561111425
+ - 3.524654676211128
+ - -5.080024529345845
+ - -4.844866867289854
+ - -4.242307423371998
+ - -3.7599139114270383
+ - 4.868172604831003
+ - 5.145069638068351
+ - 5.45589035274697
+ - 5.472463723398839
+ - -2.4722844607253602
+ - -1.7907551461425883
+ - -0.7408976796390327
+ - 0.03654946266634012
+ - 5.694928168644763
+ - 5.4089876259252865
+ - 4.942293542549119
+ - 4.420264215782233
+ - -5.1615501837490045
+ - -5.2359950414666265
+ - -5.059171322887758
+ - -4.882918898729568
+ - 3.0697409372615923
+ - 3.5850710161254846
+ - 4.242234049181366
+ - 4.541958599425621
+ - -2.868448583523468
+ - -3.5794861178717685
+ - -4.378835491292505
+ - -4.932754623367871
+ - -1.930878673473526
+ - -1.1058093034130942
+ - 0.028389366662963142
+ - 0.8172459350495297
+ - 0.9012355889167822
+ - 0.03451255780271615
+ - -1.172713902251429
+ - -2.0498753333419413
+ - -5.683194982193171
+ - -5.1339789108076905
+ - -4.328950692538287
+ - -3.5924174413837826
+ - 5.076942823427122
+ - 4.920660095325097
+ - 4.44301411645751
+ - 4.045496796775487
+ - -4.445344226034943
+ - -4.76785897834997
+ - -5.138391997357873
+ - -5.187746195305288
+ - 4.2607657612240635
+ - 4.808139303243298
+ - 5.265084356554964
+ - 5.613280113267578
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 4.307113025116818
+ - 2.9950152301597113
+ - 1.2312481804213677
+ - -0.07424956601469859
+ - -4.157393633203037
+ - -3.0501181289131427
+ - -1.318392733099662
+ - -0.035098022326372824
+ - 9.379449731321445
+ - 8.866959167525627
+ - 8.047781278608387
+ - 7.142931629181839
+ - -8.704212777150175
+ - -8.665110366118828
+ - -8.123363877925774
+ - -7.648759544781287
+ - 6.197283615984193
+ - 6.9411480734809965
+ - 7.865144970848143
+ - 8.228505293595502
+ - -5.665869883659466
+ - -4.956620359390338
+ - -3.5005593555166827
+ - -2.3966394379488394
+ - 8.973067970356306
+ - 8.85679838849976
+ - 8.57262778767973
+ - 8.041621089223282
+ - -8.132985790019195
+ - -8.608858085876792
+ - -8.813976104224706
+ - -8.883560811311416
+ - 2.7364375255619864
+ - 3.8165620514942766
+ - 5.240355602773214
+ - 6.046362764959948
+ - -2.5842050953748257
+ - -3.86924929187232
+ - -5.458622040672934
+ - -6.584870772045531
+ - -5.222052181495901
+ - -3.9788294705109233
+ - -2.245709840564215
+ - -0.8946602709237265
+ - 3.4962140153512204
+ - 2.204557842789207
+ - 0.31919155375291075
+ - -1.0683585808615672
+ - -9.735831852846745
+ - -9.130559219738268
+ - -8.204569749228078
+ - -7.236487932287072
+ - 8.684078720994926
+ - 8.781578079719004
+ - 8.456804189707057
+ - 8.128537138628213
+ - -5.476831465479797
+ - -6.302324212058637
+ - -7.336674908809728
+ - -7.766295173947867
+ - 5.223154127149222
+ - 6.325425751281546
+ - 7.466579045795094
+ - 8.325703387122143
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.360195956452899
+ - 4.101114883216612
+ - 2.4116344237338465
+ - 1.104341708348041
+ - -5.1145145785213515
+ - -4.124164461080083
+ - -2.4951972769629043
+ - -1.2755487441009898
+ - 9.41431206108505
+ - 9.06987398771358
+ - 8.477061614995376
+ - 7.716178109016942
+ - -8.745707127113553
+ - -8.884154205758051
+ - -8.579539873496701
+ - -8.274603676837653
+ - 5.179459187423473
+ - 6.058490043266149
+ - 7.178115540559494
+ - 7.7068460449670715
+ - -4.751178932645796
+ - -5.902734345036769
+ - -4.607191298178063
+ - -3.6094771591642445
+ - 8.632482260488622
+ - 8.6982039249353
+ - 8.664499776815633
+ - 8.308515450610516
+ - -7.824457256164812
+ - -8.472759767988979
+ - -8.927070994038788
+ - -9.178513158782502
+ - 1.5167788356971892
+ - 2.698364237895729
+ - 4.274426897387532
+ - 5.227147234736972
+ - -1.4579427994390322
+ - -2.7817165255018637
+ - -4.486020459553773
+ - -5.70418187154344
+ - -6.181811478115678
+ - -5.015939653081693
+ - -3.377264746660038
+ - -2.020064015285515
+ - 4.466491813000355
+ - 3.263160809219108
+ - 1.4582649344449152
+ - 0.12047365278408033
+ - -9.781333016932338
+ - -9.337204577289851
+ - -8.628279343241687
+ - -7.799164298305336
+ - 8.718220602346198
+ - 8.99463191822783
+ - 8.90946248093509
+ - 8.752005133690755
+ - -4.4575413847327665
+ - -5.4202828934544085
+ - -6.6547167675748575
+ - -7.25495358311868
+ - 4.233228103494896
+ - 5.421063655478515
+ - 6.7426539543497395
+ - 7.7341210125028255
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 4.635150268453673
+ - 3.770516825719784
+ - 2.6126685574518445
+ - 1.6725130180913659
+ - -4.387112103696896
+ - -3.7631519847061066
+ - -2.670005591506688
+ - -1.8416216494333182
+ - 6.786785940374983
+ - 6.664829723691002
+ - 6.408018690534167
+ - 5.9690245133833075
+ - -6.311584237329915
+ - -6.543492534495656
+ - -6.5016812458033195
+ - -6.40929837875616
+ - 2.96008256541728
+ - 3.6922064885768724
+ - 4.642226295560908
+ - 5.145323849893992
+ - -2.7294747205650634
+ - -3.7166538184944846
+ - -4.134346569137644
+ - -3.497099285235155
+ - 5.945171918929249
+ - 6.128167721853017
+ - 6.290857073428692
+ - 6.1658098642675565
+ - -5.388819195118468
+ - -5.9830539945466255
+ - -6.49525550782874
+ - -6.811524372320103
+ - 0.17916865822267503
+ - 1.1034179471992795
+ - 2.348868412286336
+ - 3.1425275274932685
+ - -0.206606993609001
+ - -1.1861580734402
+ - -2.495842542560367
+ - -3.439233750647944
+ - -5.155546932502484
+ - -4.376008274746684
+ - -3.2696870188016205
+ - -2.2904401375960433
+ - 3.931559947396615
+ - 3.1333092549959276
+ - 1.8971910821847227
+ - 0.9736019077462505
+ - -7.058296045730128
+ - -6.859593568079419
+ - -6.512457059208885
+ - -6.02073279843934
+ - 6.286358860564894
+ - 6.61836112320314
+ - 6.735986266441686
+ - 6.750365337813577
+ - -2.440552538379565
+ - -3.2343460598552114
+ - -4.270138021737897
+ - -4.8285017059142
+ - 2.3013756459696566
+ - 3.2182513911744897
+ - 4.3019740474326
+ - 5.112735668838911
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 7.450858134839011
+ - 6.244411093850346
+ - 4.6312529817759565
+ - 3.2757202406404202
+ - -7.023020416314248
+ - -6.210234102434553
+ - -4.711208433433995
+ - -3.564791431563461
+ - 9.801413413689763
+ - 9.749313783078989
+ - 9.54584457246226
+ - 9.019368607500821
+ - -9.121802849606894
+ - -9.58639758471471
+ - -9.700533582643882
+ - -9.692219783914686
+ - 3.5153445621370216
+ - 4.669292754210404
+ - 6.181558578156715
+ - 7.0278226758621285
+ - -3.259007160171738
+ - -4.737625114123042
+ - -6.560869592366131
+ - -5.929060444031191
+ - 8.31307683979845
+ - 8.710483338795274
+ - 9.128989467208221
+ - 9.077562430594314
+ - -7.535270168325283
+ - -8.518000791772401
+ - -9.43901281475784
+ - -10.028289281233032
+ - -0.6387291731909829
+ - 0.7671756029231487
+ - 2.6731018740599275
+ - 3.9241764607474163
+ - 0.5305329298763318
+ - -0.9089033999625779
+ - -2.8798989067563237
+ - -4.306355245562656
+ - -8.131824421897646
+ - -7.065841809346146
+ - -5.541726042983839
+ - -4.126682522895188
+ - 6.376510987517677
+ - 5.291644614423525
+ - 3.5702923829919806
+ - 2.2765292121428367
+ - -10.200322939719248
+ - -10.03259732463267
+ - -9.692182901120372
+ - -9.086077801708969
+ - 9.08006165068954
+ - 9.68983491750866
+ - 10.03544319781957
+ - 10.181750142708532
+ - -2.765928713662255
+ - -4.010237786596043
+ - -5.649326414655638
+ - -6.57905421810128
+ - 2.5870475896471965
+ - 3.970642500457534
+ - 5.664325468504288
+ - 6.929468244506829
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 8.407471466327562
+ - 7.2645720391633075
+ - 5.739704180582887
+ - 4.395605860979462
+ - -7.890019284936455
+ - -7.199404057539054
+ - -5.815381563903008
+ - -4.742315555540336
+ - 9.740120124626051
+ - 9.852753561062618
+ - 9.87247546899432
+ - 9.491810030822197
+ - -9.07360278638758
+ - -9.707184225481381
+ - -10.051942728377474
+ - -10.209514842270416
+ - 2.4864923900157265
+ - 3.761302211582238
+ - 5.450029007979296
+ - 6.449664395390389
+ - -2.333434270393605
+ - -3.8729849153900298
+ - -5.827226968284225
+ - -7.05659737141833
+ - 7.899364558541299
+ - 8.470752096266807
+ - 9.129950104296734
+ - 9.250060786781026
+ - -7.160452751642778
+ - -8.302126226954998
+ - -9.457696797392552
+ - -10.218956783910468
+ - -1.8244034980083985
+ - -0.3330265765195361
+ - 1.7031583336236187
+ - 3.0854334419092417
+ - 1.6259900495825743
+ - 0.16271085833151133
+ - -1.9014224106014523
+ - -3.4038201444106715
+ - -8.990613590656668
+ - -8.010592060837372
+ - -6.593599370022011
+ - -5.186312262788977
+ - 7.262657304697061
+ - 6.274660156200724
+ - 4.648693862545849
+ - 3.416144144243653
+ - -10.145545128485933
+ - -10.136926540545945
+ - -10.011946117924694
+ - -9.547540741175526
+ - 9.02508265933055
+ - 9.803761573520594
+ - 10.380156276431396
+ - 10.691960344569729
+ - -1.7429356230353341
+ - -3.109262121243939
+ - -4.92793097372478
+ - -6.01534494042356
+ - 1.594490380549788
+ - 3.0482395081249543
+ - 4.9017726759305225
+ - 6.283935840009984
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.371782444283131
+ - 4.797452184694919
+ - 4.033997186417581
+ - 3.3075829012127906
+ - -5.01641269941557
+ - -4.7368279448208295
+ - -4.071970043544257
+ - -3.543754436108295
+ - 5.281390087264764
+ - 5.475698329250009
+ - 5.666234159587514
+ - 5.575321913125612
+ - -4.927150609062857
+ - -5.409998390261728
+ - -5.784410906773895
+ - -6.004242434320842
+ - 0.5322896293976886
+ - 1.3273241424482198
+ - 2.3936704259369526
+ - 3.064283379274073
+ - -0.5316948760177997
+ - -1.4233591429320185
+ - -2.5984085291646672
+ - -3.4329864454614727
+ - 3.990134805357687
+ - 4.442966035247153
+ - 4.997579888687036
+ - 5.201460381089788
+ - -3.6170527461627695
+ - -4.369889832266692
+ - -5.191228206807426
+ - -5.746367648815822
+ - -1.9533496755564874
+ - -1.0682884915646254
+ - 0.151013000957305
+ - 1.0131892860806886
+ - 1.7721038886642484
+ - 0.9520523333323395
+ - -0.25265076816895715
+ - -1.136068244136264
+ - -5.61215457914416
+ - -5.145017320939263
+ - -4.455768833180706
+ - -3.6918094355657862
+ - 4.6884785082338745
+ - 4.225760838971341
+ - 3.412689199928741
+ - 2.7874137264723453
+ - -5.508525585023673
+ - -5.6319419954255014
+ - -5.737035463065596
+ - -5.596981943969283
+ - 4.895136355805631
+ - 5.457330460552339
+ - 5.958649080850958
+ - 6.2625783891642905
+ - -0.13006075261538533
+ - -0.976112982509827
+ - -2.116088348329037
+ - -2.838217250826996
+ - 0.0733277905816467
+ - 0.9254593838094732
+ - 2.0686267888620087
+ - 2.91932214250655
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.9667292563871923
+ - 4.403409294072969
+ - 5.003698409329946
+ - 5.198145188338046
+ - -3.5676342850303318
+ - -4.253811274897034
+ - -4.974429404456773
+ - -5.453422241546593
+ - -1.3003509188820663
+ - -0.4813672801825655
+ - 0.6417700699402902
+ - 1.4155704988987623
+ - 1.1665068237027705
+ - 0.3791025612605732
+ - -0.7484150806906296
+ - -1.568636511917254
+ - -5.439698095359835
+ - -4.960165584697231
+ - -4.24247621825291
+ - -3.5710493535954067
+ - 4.903471114003078
+ - 4.7529962761796645
+ - 4.291520146269248
+ - 3.908621590423323
+ - -2.8896010737445956
+ - -2.070689388883467
+ - -0.9244144080110753
+ - -0.07188843250710664
+ - 2.618318081282696
+ - 1.9332608520327714
+ - 0.868426433068196
+ - 0.07891002392597074
+ - -5.791497314770328
+ - -5.512411693751494
+ - -5.063000892187195
+ - -4.542286192185859
+ - 5.356891691963014
+ - 5.385630023980834
+ - 5.12619653054775
+ - 4.896278761827
+ - -3.4142279161471802
+ - -3.947320215494679
+ - -4.6315691947091135
+ - -4.813905952965592
+ - 3.7280134483937037
+ - 4.316907322655353
+ - 4.963256940060772
+ - 5.397294795794439
+ - 1.3087699792453211
+ - 0.5058069825086972
+ - -0.592953389004907
+ - -1.3545536980093087
+ - -1.1957421516928892
+ - -0.4235147124767244
+ - 0.6812530407144156
+ - 1.4838165927542717
+ - 5.334481359400667
+ - 4.858436962751075
+ - 4.138248595143723
+ - 3.45400394904007
+ - -5.165939931309137
+ - -4.960244830504992
+ - -4.343067428275458
+ - -3.8938258362419003
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.516073285390223
+ - 6.453747797559545
+ - 7.735350535880722
+ - 8.286302961191264
+ - -4.9086313885816155
+ - -6.205477266781625
+ - -7.672649833076412
+ - -8.672334671827942
+ - -3.8045199668009486
+ - -2.4063472932973653
+ - -0.4673970495231235
+ - 0.9314505353870707
+ - 3.466603866098158
+ - 2.2062589894555122
+ - 0.3116591092843396
+ - -1.0814749588321797
+ - -9.803406586072787
+ - -9.177862133381126
+ - -8.206626147728725
+ - -7.205303644021418
+ - 8.85172533159635
+ - 8.837471512921603
+ - 8.351689114307488
+ - 7.9088268873944685
+ - -6.115550942091207
+ - -4.933788088654518
+ - -3.0569852520678737
+ - -1.6020065025080747
+ - 5.671413281710343
+ - 4.669212110523123
+ - 3.01252984740246
+ - 1.7689293678201026
+ - -9.723062532305025
+ - -9.478722433488064
+ - -9.026893495502325
+ - -8.347305443354012
+ - 9.003250018616756
+ - 9.28670272965436
+ - 9.167842521261388
+ - 9.010282807354189
+ - -4.467544837783449
+ - -5.545913229458617
+ - -6.9554641620130795
+ - -7.495570652996953
+ - 5.286176196320071
+ - 6.462309371140832
+ - 7.839709252790482
+ - 8.787136616778369
+ - 3.8838447111433045
+ - 2.494004493855459
+ - 0.574090083524151
+ - -0.8170388309294087
+ - -3.509405762169089
+ - -2.2984836106996718
+ - -0.4802261865320628
+ - 0.8577357419871615
+ - 9.50268513239736
+ - 8.897792044829428
+ - 7.942993120598026
+ - 6.9335290778041525
+ - -9.187533380345675
+ - -9.064087272461553
+ - -8.292981899166389
+ - -7.736965457734343
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 4.1748124810856435
+ - 5.181040362213302
+ - 6.552048087160806
+ - 7.220825017880709
+ - -3.6679861456146394
+ - -4.957022350588289
+ - -6.484849390702029
+ - -7.540855156487009
+ - -4.671020535718499
+ - -3.380101440607563
+ - -1.5741525184550444
+ - -0.22572806539218163
+ - 4.279039787661586
+ - 3.1767197137592555
+ - 1.4496067669454427
+ - 0.16856786640660149
+ - -9.42912908813861
+ - -8.99274187479909
+ - -8.281693709436071
+ - -7.463137241483987
+ - 8.523964696264214
+ - 8.68817768630104
+ - 8.46046612089961
+ - 8.205692763013255
+ - -4.842069132836709
+ - -5.577796900461951
+ - -3.9035350626240124
+ - -2.5605019618326126
+ - 6.114616337347078
+ - 5.311617021145415
+ - 3.8998651763551897
+ - 2.8278815323042883
+ - -8.857168019067652
+ - -8.801253254163823
+ - -8.614653714385456
+ - -8.140257051982557
+ - 8.208763037342363
+ - 8.641816772253275
+ - 8.768958991155559
+ - 8.795244394887831
+ - -3.1297430492027574
+ - -4.248399623991274
+ - -5.72629135520109
+ - -6.392239095717233
+ - 4.092409258785497
+ - 5.303158709319348
+ - 6.7751611296738945
+ - 7.800820730681185
+ - 4.791741401435476
+ - 3.4946129652484803
+ - 1.6897326853962207
+ - 0.33885152146150405
+ - -4.313361665261585
+ - -3.273861476196325
+ - -1.6446508360974275
+ - -0.4328467760043467
+ - 9.062952831844566
+ - 8.656376243576375
+ - 7.975638867089745
+ - 7.159610392374624
+ - -8.751933858201646
+ - -8.804423821493414
+ - -8.29901480578429
+ - -7.939845433629934
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.0534120314572393
+ - 2.835993584796723
+ - 3.8993412871408455
+ - 4.4725251192204905
+ - -1.7584507948470844
+ - -2.690775970418135
+ - -3.8471371854952965
+ - -4.656962702684048
+ - -4.035340767920321
+ - -3.1746521015782365
+ - -1.9580681450743356
+ - -1.0138095630918624
+ - 3.710396615623194
+ - 3.0242290932678446
+ - 1.8903333341889341
+ - 1.040389147641835
+ - -6.586998995096429
+ - -6.408300638287732
+ - -6.081872840617346
+ - -5.620369808031729
+ - 5.962442252539156
+ - 6.212964867448519
+ - 6.236717055997949
+ - 6.189398564641767
+ - -2.5887486244516964
+ - -3.3040260720431913
+ - -3.462178669312099
+ - -2.5670102339876975
+ - 4.7751118521807765
+ - 4.33699644959108
+ - 3.48945069903779
+ - 2.8353382246016317
+ - -5.809850338637288
+ - -5.9074924305622325
+ - -5.966418169029591
+ - -5.771831015281311
+ - 5.390416286079077
+ - 5.8153881327464
+ - 6.088514838765859
+ - 6.242613145854858
+ - -1.2954325632982597
+ - -2.1390799488225904
+ - -3.264745103032199
+ - -3.84175555681333
+ - 2.101728093419238
+ - 3.0082293616586298
+ - 4.148888794855509
+ - 4.952716956577545
+ - 4.153582836130088
+ - 3.277699639947926
+ - 2.0487027426312583
+ - 1.0951861042365967
+ - -3.7291477651751777
+ - -3.0985311107869373
+ - -2.051709070873874
+ - -1.2624726560457737
+ - 6.272471219079542
+ - 6.122190952447829
+ - 5.828006356800239
+ - 5.37617604007687
+ - -6.049170269485841
+ - -6.216531765621712
+ - -6.043795989854669
+ - -5.92693616594598
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.0271444565921035
+ - 3.2138552989984555
+ - 4.823647370192011
+ - 5.741128163473529
+ - -1.6701989659122902
+ - -3.0200593802284894
+ - -4.7445383942450245
+ - -5.962118710577791
+ - -6.485692117125145
+ - -5.31101888389865
+ - -3.63732900419741
+ - -2.3005614104619236
+ - 5.974657206645442
+ - 5.089977130566122
+ - 3.561137187367561
+ - 2.4055432713801297
+ - -9.308982509727345
+ - -9.184314955322499
+ - -8.895616731926332
+ - -8.355234421664182
+ - 8.434215521138158
+ - 8.925924008646453
+ - 9.144814555548079
+ - 9.210387370730777
+ - -2.8538507283129837
+ - -3.967507277672616
+ - -5.4301617698751015
+ - -4.4167123731495375
+ - 7.258798689722856
+ - 6.764159257519668
+ - 5.706946239132199
+ - 4.878578441554633
+ - -7.827944689703466
+ - -8.10450546413258
+ - -8.379646152526059
+ - -8.24333340951482
+ - 7.269171825141145
+ - 7.993878348234167
+ - 8.566694930283555
+ - 8.92206128504718
+ - -0.9276445330765136
+ - -2.182942624422955
+ - -3.8682857855126587
+ - -4.7970567747200485
+ - 2.2027533657116676
+ - 3.5453782631385167
+ - 5.271281203214347
+ - 6.495795263194898
+ - 6.687167909082851
+ - 5.4800161852206974
+ - 3.775444753167893
+ - 2.417948524897821
+ - -5.995860229237305
+ - -5.201512077253992
+ - -3.8146640380349126
+ - -2.7573747359357763
+ - 8.804954383121261
+ - 8.728144946048957
+ - 8.496233779928854
+ - 7.9775359544152415
+ - -8.483265800162805
+ - -8.852264521732229
+ - -8.790943047958223
+ - -8.761671427487704
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.7632804194948505
+ - 2.0000444100593926
+ - 3.6744138538389595
+ - 4.690571124357396
+ - -0.5034538887114447
+ - -1.8308728159676462
+ - -3.592034775216192
+ - -4.848002100207077
+ - -7.214323784298172
+ - -6.152128752362469
+ - -4.620365289855738
+ - -3.3453201066599956
+ - 6.659025394123047
+ - 5.930531293017038
+ - 4.573893167461518
+ - 3.5350421211824528
+ - -8.85774869400997
+ - -8.909505899977358
+ - -8.864803086367147
+ - -8.499617912009846
+ - 8.035882167902358
+ - 8.687176256878658
+ - 9.14238195827242
+ - 9.381246643154507
+ - -1.6433812931764475
+ - -2.8400280376461446
+ - -4.431860548450128
+ - -5.253784552124674
+ - 7.587055939852173
+ - 7.282305443644185
+ - 6.463633427830361
+ - 5.803393019935827
+ - -6.938531676321996
+ - -7.3863174043164905
+ - -7.903762740615821
+ - -7.958841777479973
+ - 6.452127749527578
+ - 7.307085203352081
+ - 8.101061115116341
+ - 8.62252624058761
+ - 0.3206255372168845
+ - -0.9577999627517834
+ - -2.6873790451594104
+ - -3.7221168080265525
+ - 1.073379981549255
+ - 2.432899959331296
+ - 4.226880557623782
+ - 5.509977114606699
+ - 7.451830723240015
+ - 6.344068355157502
+ - 4.765147116533948
+ - 3.4601920803956343
+ - -6.672143208944442
+ - -6.04535866480609
+ - -4.8490603757586435
+ - -3.920417507123322
+ - 8.29883924592991
+ - 8.406389813017139
+ - 8.430670768062896
+ - 8.096797746642025
+ - -7.984600593944661
+ - -8.51222651229539
+ - -8.697434319374473
+ - -8.85062725795539
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.0457822794110292
+ - -0.217329813194372
+ - 0.9004231874581227
+ - 1.650312481056006
+ - 1.0903874417839006
+ - 0.29280342934517095
+ - -0.8453179613786309
+ - -1.6716695668457735
+ - -5.357677206440896
+ - -4.833124148582971
+ - -4.05229681576976
+ - -3.334485726449767
+ - 4.959503263456404
+ - 4.694802943853394
+ - 4.059169896321174
+ - 3.554246439235315
+ - -4.959643505334922
+ - -5.203962336107191
+ - -5.469622025969399
+ - -5.45346636965948
+ - 4.512730732289884
+ - 5.1092218551042885
+ - 5.676180709630101
+ - 6.032960196539469
+ - 0.43486500445428206
+ - -0.40827726862549324
+ - -1.5524481977414795
+ - -2.308579519979124
+ - 5.107723229789977
+ - 5.146776967902645
+ - 4.925099485084764
+ - 4.7171580095462025
+ - -3.2405022680777695
+ - -3.724574603469473
+ - -4.337398703382194
+ - -4.601780304839547
+ - 3.025386401297266
+ - 3.7131122428264836
+ - 4.472283548683401
+ - 4.9959596568854305
+ - 1.7003346180499959
+ - 0.8783835109834117
+ - -0.24920227818109364
+ - -1.019400790654002
+ - -0.6914150561592669
+ - 0.17341570481308244
+ - 1.369678744967159
+ - 2.237169661176596
+ - 5.548543800463471
+ - 4.979944407671112
+ - 4.150249645622503
+ - 3.4028177064588507
+ - -4.957928583996559
+ - -4.770091382132883
+ - -4.2561241428137775
+ - -3.833975501821401
+ - 4.546457469369124
+ - 4.834977170072901
+ - 5.158156224444114
+ - 5.173029390520563
+ - -4.360216564508624
+ - -4.878734342136545
+ - -5.290258152160959
+ - -5.604850729709593
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -4.355886060190458
+ - -4.720733920696459
+ - -5.224841136398358
+ - -5.341000281321108
+ - 3.935845610039446
+ - 4.570424949484705
+ - 5.200335386109978
+ - 5.610546766247365
+ - 0.7351420816989257
+ - -0.0741991888883448
+ - -1.176643241404959
+ - -1.9143296648400714
+ - -0.6408454924739038
+ - 0.16640992471753474
+ - 1.291169069591338
+ - 2.104215481870782
+ - 5.196329440321415
+ - 4.655424466319953
+ - 3.8580351827654598
+ - 3.14421368619366
+ - -4.6789896314833745
+ - -4.446082234284504
+ - -3.885216197585765
+ - -3.4336620242665403
+ - 4.558806039674349
+ - 4.801558825403477
+ - 5.064562127211189
+ - 5.058005037508349
+ - -2.1705579829118298
+ - -1.435496043398634
+ - -0.32725339984180557
+ - 0.48915159551876375
+ - 5.780297098695399
+ - 5.423944432939998
+ - 4.870366834785875
+ - 4.283120737138377
+ - -5.343122092403378
+ - -5.2901799112268675
+ - -4.921344996371812
+ - -4.612595435111298
+ - 3.8464311215257916
+ - 4.314850853402765
+ - 4.907269779927321
+ - 5.008050670021876
+ - -4.05833329068798
+ - -4.5810299920903885
+ - -5.124699400041535
+ - -5.481986185452555
+ - -0.7209213770113885
+ - 0.06598790256002535
+ - 1.1365056550345431
+ - 1.8575861389559603
+ - 0.6722036208097641
+ - -0.12821346146084914
+ - -1.2435057480324332
+ - -2.0477873097194856
+ - -5.134375897445854
+ - -4.591817764912843
+ - -3.7847740731083492
+ - -3.0535170585766815
+ - 4.977333528106966
+ - 4.6950338049226925
+ - 3.9870700168752315
+ - 3.4699167929331036
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.072954161066307
+ - -5.939975239152243
+ - -7.12494203826329
+ - -7.635602093914472
+ - 4.5135676455840175
+ - 5.711079863422209
+ - 7.066967167658051
+ - 7.991061968944172
+ - 3.52712016450685
+ - 2.2375995331252514
+ - 0.4490772675224783
+ - -0.8419620019041815
+ - -3.214203355071841
+ - -2.0527663902512296
+ - -0.3057449407660209
+ - 0.9790462668377262
+ - 9.047534766580316
+ - 8.472825538213586
+ - 7.579989775867188
+ - 6.658149388312576
+ - -8.169391404616348
+ - -8.159039745532374
+ - -7.714486295222235
+ - -7.308466999765535
+ - 5.627638741359195
+ - 6.345407712813132
+ - 7.234392794920852
+ - 7.59092819328648
+ - -5.101524269500233
+ - -4.322131478905791
+ - -2.796046689091266
+ - -1.6502872779868438
+ - 8.96559184745831
+ - 8.74291273928677
+ - 8.329828030920135
+ - 7.705462227054995
+ - -8.301971063883206
+ - -8.56609616838786
+ - -8.460204677498513
+ - -8.317594971743373
+ - 4.104694177756462
+ - 5.101200529349233
+ - 6.4039954355399535
+ - 6.904765596636925
+ - -4.862968277868167
+ - -5.949670903888143
+ - -7.22318811251924
+ - -8.09936842222572
+ - -3.6010286122987325
+ - -2.318973896421824
+ - -0.5477481358293839
+ - 0.7363232577264336
+ - 3.253597221564067
+ - 2.1380131450002042
+ - 0.4618335190110756
+ - -0.7717847415089044
+ - -8.76878773253708
+ - -8.213294304501801
+ - -7.335856702655719
+ - -6.40666569846975
+ - 8.477810675883964
+ - 8.36658021377245
+ - 7.6586515381305516
+ - 7.148272469260824
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.9175338268570066
+ - -4.904352700291217
+ - -6.2484802733582425
+ - -6.912213789958908
+ - 3.435177125929222
+ - 4.68895193649153
+ - 6.182586483138306
+ - 7.216524401378196
+ - 4.640531702712839
+ - 3.395736211295451
+ - 1.652459603094528
+ - 0.345515091576525
+ - -4.253137199862366
+ - -3.1974259168875654
+ - -1.5346300850118622
+ - -0.29997742540047323
+ - 9.136714714305745
+ - 8.732543290845344
+ - 8.068766037835962
+ - 7.291932934036525
+ - -8.26077222379959
+ - -8.440004985882608
+ - -8.246430939623158
+ - -8.01890882588016
+ - 4.574346511198131
+ - 5.440842285750446
+ - 6.54550248695932
+ - 7.082172607164255
+ - -4.146973824327113
+ - -5.239662144606152
+ - -3.8922284420423106
+ - -2.867521495435937
+ - 8.526572244335375
+ - 8.49263654538633
+ - 8.339855295936161
+ - 7.900432424466828
+ - -7.9032408890975
+ - -8.340998981234627
+ - -8.491493362559211
+ - -8.537065425866098
+ - 2.900739803890037
+ - 3.9939128517548412
+ - 5.439780852868379
+ - 6.101632318994455
+ - -3.8533665800409183
+ - -5.03555730576503
+ - -6.478548500188665
+ - -7.485332663825309
+ - -4.762530522096619
+ - -3.5101104171835384
+ - -1.7659204658871255
+ - -0.45547852492680396
+ - 4.285620819393085
+ - 3.2925089689561076
+ - 1.7273459072071613
+ - 0.5616087377331126
+ - -8.773197447879115
+ - -8.399036649792954
+ - -7.766269404198723
+ - -6.993056833588793
+ - 8.47093081743261
+ - 8.541147970865515
+ - 8.078118995306362
+ - 7.749940059859168
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.9498501936081476
+ - -2.747689440064838
+ - -3.8314154643306613
+ - -4.4221572663271935
+ - 1.661075537587665
+ - 2.603130888962087
+ - 3.7782006432161954
+ - 4.602434978646567
+ - 4.162444620771103
+ - 3.3022176350463006
+ - 2.0845302533251044
+ - 1.1344302604337553
+ - -3.8287485090744324
+ - -3.1497948937424294
+ - -2.018979534566679
+ - -1.1700747086461665
+ - 6.625620542679832
+ - 6.462772475195647
+ - 6.157241714837176
+ - 5.707810532558699
+ - -5.998442998678314
+ - -6.268625670026522
+ - -6.317006590817757
+ - -6.28691256093345
+ - 2.4975955095145395
+ - 3.2306514345396797
+ - 4.184654082762334
+ - 4.70437966231519
+ - -2.2644996073709134
+ - -3.218040352045908
+ - -3.6123925390723572
+ - -2.967136949363802
+ - 5.793337721281752
+ - 5.90986354055139
+ - 5.994488687308025
+ - 5.817087069380791
+ - -5.37593550828837
+ - -5.819801045152436
+ - -6.1192170028250725
+ - -6.292400510191852
+ - 1.1836872574185884
+ - 2.0406096810080436
+ - 3.1853643339536157
+ - 3.7807325071083904
+ - -2.012632225150381
+ - -2.9325787745833196
+ - -4.0949751764589095
+ - -4.9152132620602815
+ - -4.28592202715747
+ - -3.4089571673061423
+ - -2.1770213723838037
+ - -1.2165988226052733
+ - 3.8469096548491644
+ - 3.2253952896650673
+ - 2.184666511133875
+ - 1.39847856556033
+ - -6.3013825367681635
+ - -6.168136248868907
+ - -5.896520368681159
+ - -5.457877703150427
+ - 6.075964681680609
+ - 6.261813656357844
+ - 6.112220447573739
+ - 6.012631107492175
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.957538627545994
+ - -3.1945610850336768
+ - -4.872218890213694
+ - -5.835511149665772
+ - 1.598391031158501
+ - 2.9963298473206392
+ - 4.7897636947920414
+ - 6.05746946020559
+ - 6.813117733269792
+ - 5.607320539409274
+ - 3.8871713741941245
+ - 2.5073449222459203
+ - -6.277799274121424
+ - -5.377918196830577
+ - -3.811545737203707
+ - -2.6260355918065295
+ - 9.606367597779682
+ - 9.497358202345275
+ - 9.225950669697422
+ - 8.685481664012139
+ - -8.70486542575076
+ - -9.233425845906076
+ - -9.487773456514486
+ - -9.575783722735439
+ - 2.8214293824653125
+ - 3.986452365184443
+ - 5.518896805376602
+ - 6.399839993761054
+ - -2.558434439553501
+ - -3.9970328334227645
+ - -5.800375502019785
+ - -5.168298044548365
+ - 8.019229655312698
+ - 8.32590879168865
+ - 8.639308270093633
+ - 8.519941925974889
+ - -7.4478262817277505
+ - -8.214748478325895
+ - -8.8345592175205
+ - -9.222410882148003
+ - 0.8185679229516767
+ - 2.1236480969948657
+ - 3.8773478404493815
+ - 4.853194446115504
+ - -2.1552422342503794
+ - -3.550208485156843
+ - -5.348738729132443
+ - -6.625966522026645
+ - -7.026309161022004
+ - -5.785305618476248
+ - -4.031239560537017
+ - -2.62884808918608
+ - 6.2988660952762165
+ - 5.494018999292511
+ - 4.077083000109013
+ - 2.994939398065852
+ - -9.077094954712981
+ - -9.018654703661385
+ - -8.807571632468518
+ - -8.290710839438239
+ - 8.744190980646831
+ - 9.145325392242679
+ - 9.110121002107094
+ - 9.100784345617972
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.80817613649168
+ - -2.150804455341993
+ - -3.9684460169991773
+ - -5.072492690077825
+ - 0.5278081611743446
+ - 1.9676489440984233
+ - 3.879016476019911
+ - 5.242295465217961
+ - 7.838747574951535
+ - 6.688085191883187
+ - 5.028425218375878
+ - 3.646027907579867
+ - -7.23557285455683
+ - -6.447652271798446
+ - -4.978474039987452
+ - -3.8532062465940426
+ - 9.603170369955304
+ - 9.662109916737451
+ - 9.61746099471021
+ - 9.22401579437916
+ - -8.712314040283621
+ - -9.421460659837722
+ - -9.919070705815288
+ - -10.180964724333318
+ - 1.7638923702829772
+ - 3.063515073692258
+ - 4.792627240802633
+ - 5.841588034442181
+ - -1.600022992590129
+ - -3.1122255070441507
+ - -5.066346813540817
+ - -6.311042619394638
+ - 7.513981467935179
+ - 8.002513618578078
+ - 8.567745678346004
+ - 8.630525551610805
+ - -6.987395605016419
+ - -7.917045541561197
+ - -8.781968120927765
+ - -9.350358472086471
+ - -0.36757117252319216
+ - 1.019833113244324
+ - 2.8970537460214625
+ - 4.021374575240818
+ - -1.146744537339098
+ - -2.6220346190236747
+ - -4.569504626423996
+ - -5.962536523673368
+ - -8.097001642531977
+ - -6.896693947705982
+ - -5.185612785741191
+ - -3.77061958077336
+ - 7.249677505258053
+ - 6.572287224652351
+ - 5.277360781048103
+ - 4.271852251848384
+ - -8.99591021828205
+ - -9.115508528680964
+ - -9.145896689013844
+ - -8.78657586567297
+ - 8.655091790687818
+ - 9.230048383900254
+ - 9.43488303432168
+ - 9.603971527321935
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.47985958428449127
+ - -0.34189223386686945
+ - -1.45197649195557
+ - -2.1710214312699287
+ - -0.5704466042398817
+ - 0.25347908769745214
+ - 1.3972894669069122
+ - 2.2223149617636055
+ - 5.1263368598851615
+ - 4.539089511566227
+ - 3.676779313947891
+ - 2.9159813116961626
+ - -4.740765206682045
+ - -4.398264984785721
+ - -3.6699910376265055
+ - -3.100785118575687
+ - 5.268157272801814
+ - 5.435441174326255
+ - 5.593119565140657
+ - 5.4952990533359865
+ - -4.787761524316674
+ - -5.322066456266452
+ - -5.790624773755418
+ - -6.074068978751129
+ - 0.11846295217876666
+ - 0.9399054803182709
+ - 2.046941595729349
+ - 2.7576565008024945
+ - -0.10816298977007976
+ - -0.9972749896364252
+ - -2.190939429828114
+ - -3.046908758598752
+ - 3.7181388389860284
+ - 4.132376711451721
+ - 4.644935028959699
+ - 4.825733177485103
+ - -3.4651283810218985
+ - -4.106109171817908
+ - -4.7777538140617075
+ - -5.234766108782769
+ - -1.1547190034192332
+ - -0.32709696728603027
+ - 0.802460711037722
+ - 1.538835486690527
+ - 0.1808607753737019
+ - -0.693390535894245
+ - -1.8819269909182177
+ - -2.7395364964155404
+ - -5.304284851198322
+ - -4.678188885226067
+ - -3.7735926065600998
+ - -2.9868451832819645
+ - 4.742912971378369
+ - 4.473527779661049
+ - 3.8608297169753683
+ - 3.370524354757952
+ - -4.872203586521596
+ - -5.080886493520668
+ - -5.291569712334767
+ - -5.2209274297271095
+ - 4.67878578529385
+ - 5.134005759795187
+ - 5.439283740522635
+ - 5.675440059357345
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.856582167725175
+ - 5.463354154250717
+ - 4.945998955113041
+ - 4.351801847459358
+ - -5.432154942797615
+ - -5.368890668776372
+ - -4.971890450199927
+ - -4.631174120982398
+ - 4.350785631256832
+ - 4.745424866504065
+ - 5.2190112079803
+ - 5.347456745116704
+ - -4.071581900347323
+ - -4.71459770140216
+ - -5.353097364670801
+ - -5.770798072197665
+ - -0.9980579917110516
+ - -0.16037630212885023
+ - 0.9833344939306657
+ - 1.762156376526337
+ - 0.8534807698637971
+ - 0.018803077514893303
+ - -1.1523663200669885
+ - -1.9991085271265623
+ - -5.493016658059743
+ - -4.949737380250303
+ - -4.138571644085956
+ - -3.4017821350135073
+ - 4.978292362504901
+ - 4.763168606152256
+ - 4.205540285628082
+ - 3.7576360531056956
+ - -3.306527049724042
+ - -2.4429259155388423
+ - -1.2356184233648448
+ - -0.32700799153604554
+ - 3.0275343247583795
+ - 2.3051185824739178
+ - 1.1622190283510105
+ - 0.3133866539143594
+ - -5.921104200030947
+ - -5.649413115012502
+ - -5.220853209176665
+ - -4.5899480124068415
+ - 5.183554618480228
+ - 4.930899135273088
+ - 4.381828441679653
+ - 3.942522656338468
+ - -4.550753961775313
+ - -4.877934208138767
+ - -5.268844152809764
+ - -5.350231745211344
+ - 4.035164376309317
+ - 4.744724998709008
+ - 5.490068463901064
+ - 5.977873398953449
+ - 1.3277393510756974
+ - 0.44557423104043425
+ - -0.7643738141561839
+ - -1.5925352431266189
+ - -1.332647160816828
+ - -0.5182272740906838
+ - 0.6666875323769628
+ - 1.5457339585284797
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 10.226195324777047
+ - 9.762984335306315
+ - 9.16174304697282
+ - 8.313898141245424
+ - -9.449629208037813
+ - -9.570833972000196
+ - -9.192078337394902
+ - -8.822701921290424
+ - 6.2472447870088645
+ - 7.111642043723885
+ - 8.193551001991935
+ - 8.636082922656145
+ - -5.862354273385839
+ - -7.096947543027873
+ - -8.432708731862446
+ - -9.332803367849003
+ - -3.2565253240914704
+ - -1.8217603440748826
+ - 0.15717599407509908
+ - 1.5628148267645967
+ - 2.8647942505309936
+ - 1.5391962156388437
+ - -0.40035591034772783
+ - -1.8182829091760582
+ - -9.752244430131762
+ - -9.023462137038269
+ - -7.901523110962859
+ - -6.79903422609385
+ - 8.838634838135633
+ - 8.70960162339191
+ - 8.060755399573809
+ - 7.510488636762775
+ - -6.759276915188485
+ - -5.491532028831005
+ - -3.500491439452844
+ - -1.944057120581506
+ - 6.337068102576178
+ - 5.2402786290041945
+ - 3.408209136943277
+ - 2.0356967315761105
+ - -10.149395563093407
+ - -9.902879348390874
+ - -9.464252631417114
+ - -8.556364214118116
+ - 9.120020752466939
+ - 8.920378171181786
+ - 8.28522184472036
+ - 7.750632309223792
+ - -6.550694160815852
+ - -7.306729667136946
+ - -8.254325565878556
+ - -8.620941089799155
+ - 5.797313488335492
+ - 7.12895507823536
+ - 8.621050361888711
+ - 9.62285386232087
+ - 3.7277875709846007
+ - 2.2260328558969174
+ - 0.14490200599810538
+ - -1.3403423228609705
+ - -3.6817415319840388
+ - -2.369607547370861
+ - -0.35953415376761844
+ - 1.1289288362646803
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 9.62754247385763
+ - 9.351502690281324
+ - 9.001902159915865
+ - 8.339586505229066
+ - -8.871023880048114
+ - -9.151108853790586
+ - -9.019805471373198
+ - -8.833642931903825
+ - 4.914577597894066
+ - 5.853973974768079
+ - 7.055220807879057
+ - 7.628209102994973
+ - -4.62574466782337
+ - -5.868175664691915
+ - -7.283981258902061
+ - -8.25371093270957
+ - -4.150424945691935
+ - -2.819650730819531
+ - -0.9695312056122675
+ - 0.3865863361191477
+ - 3.6818388437959166
+ - 2.5282933411389235
+ - 0.7778180293773882
+ - -0.5137063575981304
+ - -9.296590550588032
+ - -8.767971265963029
+ - -7.922657140068076
+ - -7.016547536591929
+ - 8.425827143019204
+ - 8.481015570951143
+ - 8.10287142439516
+ - 7.750900627088426
+ - -5.399715136783352
+ - -6.048345180712537
+ - -4.257715043679481
+ - -2.813955643531951
+ - 6.718828127013669
+ - 5.804186503606012
+ - 4.196540959857428
+ - 2.982923610632816
+ - -9.419502660295278
+ - -9.350680822648263
+ - -9.159597757467456
+ - -8.443656992594253
+ - 8.635558817731534
+ - 8.620635460180276
+ - 8.254482374993932
+ - 7.917746357142508
+ - -5.167510491642968
+ - -6.011643652202862
+ - -7.093639265811308
+ - -7.599634245418728
+ - 4.563471154144787
+ - 5.88355255789628
+ - 7.424885365525586
+ - 8.475539435433788
+ - 4.519307086279383
+ - 3.133118347744684
+ - 1.1964318553322721
+ - -0.2299409343155442
+ - -4.436828430330024
+ - -3.2802631327071414
+ - -1.430066395202908
+ - -0.06201248688971796
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 6.571911493339011
+ - 6.508220332618658
+ - 6.438262161140807
+ - 6.092064895922873
+ - -6.0356940649241215
+ - -6.356237181487908
+ - -6.442178424668663
+ - -6.4410358451892336
+ - 2.6011804366277396
+ - 3.3403146538968964
+ - 4.302671122011199
+ - 4.8156627809325
+ - -2.461320588032324
+ - -3.3718587030185203
+ - -4.461634799867869
+ - -5.2189231698199094
+ - -3.6783788185708572
+ - -2.785556878784881
+ - -1.5327426008868446
+ - -0.5814991127709515
+ - 3.2807455425131975
+ - 2.566927081859662
+ - 1.4308918442517478
+ - 0.5830972837414323
+ - -6.435820937821024
+ - -6.197723782979172
+ - -5.785098809088533
+ - -5.2693220637309865
+ - 5.8331338399749395
+ - 6.0084919955314815
+ - 5.9317329649792825
+ - 5.820908334437932
+ - -2.9347435948498255
+ - -3.585340952080778
+ - -3.656229297394208
+ - -2.687498846033865
+ - 5.173022697042907
+ - 4.640590667185174
+ - 3.634504743199821
+ - 2.867285639146975
+ - -6.324114741026293
+ - -6.404374514258318
+ - -6.4468488864597955
+ - -6.066309024789014
+ - 5.933294320894905
+ - 6.057959393840639
+ - 5.988686257365644
+ - 5.888631561042136
+ - -2.7483110450589545
+ - -3.427681523012594
+ - -4.314245757337504
+ - -4.784997303143364
+ - 2.4180009720014453
+ - 3.3708544748751175
+ - 4.5294407116343285
+ - 5.330411370894117
+ - 3.8718946922903155
+ - 2.9472107066466107
+ - 1.6428212345836
+ - 0.6472755924948802
+ - -3.785099002524706
+ - -3.056986820422356
+ - -1.8269056502530556
+ - -0.9189816689677428
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 9.131360282281404
+ - 9.172265049046814
+ - 9.250051531077606
+ - 8.878895488218262
+ - -8.365765211397209
+ - -8.945332629617576
+ - -9.246877742386012
+ - -9.375932508283991
+ - 2.832460860591855
+ - 3.9609994565217974
+ - 5.445836458801513
+ - 6.2850301256950205
+ - -2.6975762007702726
+ - -4.027494916623745
+ - -5.6696221510962
+ - -6.820737863931667
+ - -5.987761906887154
+ - -4.763396029076588
+ - -3.0331539264698875
+ - -1.6849551408301253
+ - 5.354593209985005
+ - 4.439137534430078
+ - 2.921737384534955
+ - 1.7788513679970523
+ - -9.03544886010648
+ - -8.8319590495528
+ - -8.429181126038298
+ - -7.819122323368341
+ - 8.18944340418148
+ - 8.575927626819084
+ - 8.657422214200386
+ - 8.637711104889823
+ - -3.2984214907757003
+ - -4.316732784543079
+ - -5.650030685098705
+ - -4.52945845806105
+ - 7.796244466970845
+ - 7.151807862414838
+ - 5.848630645200745
+ - 4.846119328020032
+ - -8.67731865655076
+ - -8.92083062657265
+ - -9.159220815994049
+ - -8.742694687535932
+ - 8.283998473857375
+ - 8.59710744744281
+ - 8.688277788384475
+ - 8.683915275056838
+ - -3.010412393183954
+ - -4.061373309805532
+ - -5.4467208329972525
+ - -6.230844918780517
+ - 2.6365445921947726
+ - 4.014168952080842
+ - 5.734397073650419
+ - 6.934217255412225
+ - 6.1961753571607145
+ - 4.933726418020749
+ - 3.1396207774402334
+ - 1.7336580556085635
+ - -6.043942502992295
+ - -5.095936772184524
+ - -3.4209187976130075
+ - -2.1863017296585645
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 8.474548517797325
+ - 8.687753925081221
+ - 8.996928403639139
+ - 8.80126078578423
+ - -7.736196933543761
+ - -8.455802672339678
+ - -8.982315559594788
+ - -9.279012006289395
+ - 1.5700178899171133
+ - 2.754902623668905
+ - 4.332945563176169
+ - 5.28297760668913
+ - -1.5253383626006396
+ - -2.847311584666763
+ - -4.5445797388016995
+ - -5.746832596284443
+ - -6.744525898116171
+ - -5.630123489441954
+ - -4.038534643391506
+ - -2.7514349898036974
+ - 6.047643685106698
+ - 5.301449594620052
+ - 3.9758959840592714
+ - 2.9627305577554925
+ - -8.511726419270321
+ - -8.495318859526494
+ - -8.352475719051016
+ - -7.930647307889227
+ - 7.714926487802489
+ - 8.26704422333694
+ - 8.597478936788141
+ - 8.761029012918495
+ - -2.005834991961223
+ - -3.105742702653751
+ - -4.565408430795178
+ - -5.280713841883647
+ - 8.05963777268051
+ - 7.590687707834379
+ - 6.509538844943866
+ - 5.66513784388431
+ - -7.904548897153637
+ - -8.309301350828429
+ - -8.773464545536752
+ - -8.538869183464984
+ - 7.742262138204001
+ - 8.222301447890816
+ - 8.560733377408413
+ - 8.73904845700574
+ - -1.6993092268947865
+ - -2.8195923173754482
+ - -4.313184135983443
+ - -5.217011581243246
+ - 1.4675577102770687
+ - 2.8187868910772864
+ - 4.564828306456324
+ - 5.796044693457235
+ - 6.856058972967989
+ - 5.714692635611384
+ - 4.074394138628922
+ - 2.738820585633035
+ - -6.67193478485544
+ - -5.878346833250475
+ - -4.370021416190465
+ - -3.2606396799275545
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 4.398959073359056
+ - 4.736898081073734
+ - 5.204722120285863
+ - 5.296119495594192
+ - -3.979610521334194
+ - -4.588819246370659
+ - -5.182005785380584
+ - -5.5654640546354965
+ - -0.5580493534041103
+ - 0.23534726524793953
+ - 1.31386338448742
+ - 2.029031614413015
+ - 0.4768390329490115
+ - -0.3231243682818164
+ - -1.4288346798597849
+ - -2.2265973711680336
+ - -5.0409301017925126
+ - -4.490863495502765
+ - -3.6831167773018403
+ - -2.9684840544056135
+ - 4.537500487413888
+ - 4.284281645624757
+ - 3.7034680040002455
+ - 3.239174663601018
+ - -4.581910935840805
+ - -4.797034689580008
+ - -5.02241895446074
+ - -4.990660164633515
+ - 4.153204194995748
+ - 4.690655821540327
+ - 5.192624484687174
+ - 5.513348489492451
+ - 0.3274519782193449
+ - -0.4442990049713032
+ - -1.49023884005879
+ - -2.1758840409956046
+ - 5.252436920564215
+ - 5.176484168730871
+ - 4.781661421244449
+ - 4.454882759554466
+ - -3.910346428032887
+ - -4.352269682086592
+ - -4.908244807082029
+ - -4.983558279316196
+ - 4.08903863546147
+ - 4.583912996609556
+ - 5.088758573783013
+ - 5.417821706383021
+ - 0.5374433515140373
+ - -0.23201153856402812
+ - -1.2769130644086069
+ - -1.9744571917815854
+ - -0.5083089000217544
+ - 0.2873638119426648
+ - 1.387642472339257
+ - 2.1793812563802817
+ - 4.992624069967681
+ - 4.439428700689557
+ - 3.62009316281942
+ - 2.886958288310451
+ - -4.841489138983191
+ - -4.541382161732644
+ - -3.8183707674196214
+ - -3.289759756796138
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.841406457003734
+ - -5.383080554381015
+ - -4.777655336204027
+ - -4.128860875084883
+ - 5.428577088432876
+ - 5.296913864806556
+ - 4.807881674730674
+ - 4.401296939602094
+ - -4.738947680129168
+ - -5.080679436901548
+ - -5.477577805608032
+ - -5.541098656037508
+ - 4.43009471496981
+ - 5.038350779803589
+ - 5.609828034575206
+ - 5.975914088791607
+ - 0.5474591353233318
+ - -0.29631292370649814
+ - -1.4424169333893722
+ - -2.2056852586123687
+ - -0.44447771359621185
+ - 0.4270537186533442
+ - 1.6263903947067857
+ - 2.4888647858240422
+ - 5.431173034200329
+ - 4.824240141695896
+ - 3.9280369163568825
+ - 3.138695494782535
+ - -4.922176761912062
+ - -4.63463070647208
+ - -3.982313902202381
+ - -3.4669631811616135
+ - 5.0277021695702535
+ - 5.2510313678254175
+ - 5.48944185935529
+ - 5.4415609844128605
+ - -2.7087403735057913
+ - -1.9394765018983637
+ - -0.7511356406470083
+ - 0.12794405768228767
+ - 5.961832485696516
+ - 5.623403089744454
+ - 5.104303076548117
+ - 4.417696279097581
+ - -5.14970209846489
+ - -4.826223549834759
+ - -4.182812904227263
+ - -3.6758419985860535
+ - 4.951927465902068
+ - 5.223584645587667
+ - 5.535047008669339
+ - 5.549781680749506
+ - -4.39420129956955
+ - -5.074495937175879
+ - -5.761485559178506
+ - -6.203620441826044
+ - -0.9071819837494477
+ - -0.01588015671781664
+ - 1.2002736990410152
+ - 2.0146911337785895
+ - 0.928240541340281
+ - 0.08339813959655451
+ - -1.1158806372711674
+ - -2.0063939224957803
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -9.6332388064775
+ - -9.207120684020264
+ - -8.654581383261
+ - -7.864587246370558
+ - 8.900076208720721
+ - 9.02486564121932
+ - 8.682476348550756
+ - 8.34485008736547
+ - -5.823176682745872
+ - -6.645483754588879
+ - -7.676339551340338
+ - -8.10320962614816
+ - 5.465304980157028
+ - 6.633433942670826
+ - 7.901860339183836
+ - 8.75758554740244
+ - 3.137045131824538
+ - 1.786752366991398
+ - -0.07660800771508652
+ - -1.4028372795141233
+ - -2.761647725189414
+ - -1.5189525229551721
+ - 0.3033067950697013
+ - 1.6362418517760489
+ - 9.194138900807886
+ - 8.517685017501421
+ - 7.4742886244476585
+ - 6.444156405407539
+ - -8.332823947547714
+ - -8.222568901744566
+ - -7.626225612925298
+ - -7.118485033778385
+ - 6.305716062645833
+ - 6.965352860288237
+ - 7.77672727528029
+ - 8.046125209014825
+ - -5.874747826576697
+ - -4.992097886936647
+ - -3.273751360593931
+ - -1.9858451588722719
+ - 9.552213145369288
+ - 9.330430119427923
+ - 8.93142305957459
+ - 8.085052628790818
+ - -8.594365621668263
+ - -8.417362934797264
+ - -7.833858356465713
+ - -7.340916365105576
+ - 6.106936609726875
+ - 6.8275971043066175
+ - 7.732388177122121
+ - 8.088030186142367
+ - -5.403969001564214
+ - -6.662641975272047
+ - -8.076952948196064
+ - -9.027541264649454
+ - -3.57619939032253
+ - -2.1632906125678377
+ - -0.20427809958568402
+ - 1.1966409241216258
+ - 3.5303213966951397
+ - 2.2993059565039324
+ - 0.4084834308296488
+ - -0.9915449104451148
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -9.399347296006955
+ - -9.15053787459269
+ - -8.837199754280773
+ - -8.208147483090626
+ - 8.657475171301948
+ - 8.952374409468428
+ - 8.853301374960278
+ - 8.69243740979604
+ - -4.673109460055189
+ - -5.606474439708697
+ - -6.802860182335523
+ - -7.382477742060121
+ - 4.400625988710279
+ - 5.623963261311012
+ - 7.026664214573163
+ - 7.989220302400127
+ - 4.192230822411215
+ - 2.8955838674551555
+ - 1.0909925977741401
+ - -0.23721696970348483
+ - -3.721853427878987
+ - -2.6078577027602665
+ - -0.9086356718865216
+ - 0.3466675475644221
+ - 9.091136600057345
+ - 8.595404154795098
+ - 7.797391366005298
+ - 6.9297992409378075
+ - -8.23963737432657
+ - -8.316352649165836
+ - -7.977251001484325
+ - -7.6550895061198725
+ - 5.1471462652318785
+ - 5.938293812402979
+ - 6.941737037002694
+ - 7.380995053815112
+ - -4.806436130220572
+ - -5.779152135673148
+ - -4.2247564901912025
+ - -3.050057122970731
+ - 9.178694164001413
+ - 9.1326058811135
+ - 8.974728875071493
+ - 8.293697806641779
+ - -8.437265511896213
+ - -8.44506085004054
+ - -8.117550048031354
+ - -7.8103236654806
+ - 4.915813912560301
+ - 5.757046733444147
+ - 6.837938284346426
+ - 7.352729334152564
+ - -4.339694042366044
+ - -5.637068305264713
+ - -7.159522209948709
+ - -8.199167727125594
+ - -4.54270246912741
+ - -3.192943698190242
+ - -1.3050839539309096
+ - 0.09110943773267083
+ - 4.457121290453084
+ - 3.33814863422565
+ - 1.5372609797873231
+ - 0.205933760976806
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -6.567727152550231
+ - -6.521691590704942
+ - -6.475599003053259
+ - -6.144578362654721
+ - 6.029054207924821
+ - 6.367659964362994
+ - 6.478339996887342
+ - 6.494982222577084
+ - -2.4931053065270836
+ - -3.245592248929571
+ - -4.227440489698997
+ - -4.757314291001746
+ - 2.3614264955844515
+ - 3.2802017579501985
+ - 4.386699521850163
+ - 5.156968700342775
+ - 3.7953977136799946
+ - 2.9053451549412657
+ - 1.6547557293504478
+ - 0.7005117414466409
+ - -3.387035335789976
+ - -2.684066285894056
+ - -1.5570673129346313
+ - -0.7145885233707153
+ - 6.444407631228886
+ - 6.223795926019433
+ - 5.834649622491794
+ - 5.333710970630598
+ - -5.840933535880528
+ - -6.035623526065028
+ - -5.984525532409321
+ - -5.892049982304691
+ - 2.826795103459388
+ - 3.492542696059314
+ - 4.355810977086928
+ - 4.7977831059930205
+ - -2.6498128622535355
+ - -3.5051619267917773
+ - -3.7409103989769736
+ - -2.982824369221458
+ - 6.305149502025523
+ - 6.403326367184461
+ - 6.47019153538575
+ - 6.105169711051969
+ - -5.9349571471701275
+ - -6.078586170265009
+ - -6.03487053981237
+ - -5.953210379403777
+ - 2.6365376234273974
+ - 3.3300423038989178
+ - 4.236938869614717
+ - 4.725092382374063
+ - -2.3180199643601234
+ - -3.2775740666399282
+ - -4.450454888983916
+ - -5.262746365921556
+ - -3.980559015418897
+ - -3.05950702591296
+ - -1.758436742676137
+ - -0.7604349851719366
+ - 3.889512268057066
+ - 3.1705311865642414
+ - 1.945878131506253
+ - 1.042194126709568
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -9.279807213628496
+ - -9.344214809534924
+ - -9.454149755342524
+ - -9.096350560742465
+ - 8.498139785883692
+ - 9.1108118867507
+ - 9.449403870519141
+ - 9.603613655799755
+ - -2.7405358745580184
+ - -3.9053428269495707
+ - -5.440383987792093
+ - -6.3155313845120995
+ - 2.613949653408296
+ - 3.9769196893684717
+ - 5.6683218709699394
+ - 6.855605769084254
+ - 6.239854926562238
+ - 4.998438231009909
+ - 3.2419182214556104
+ - 1.8671266323961087
+ - -5.582154437655441
+ - -4.665293335733405
+ - -3.134002784099217
+ - -1.9787291097444428
+ - 9.198781846478422
+ - 9.014457215547678
+ - 8.635230797649802
+ - 8.034066145627467
+ - -8.337505181012208
+ - -8.755480818966735
+ - -8.871506329396409
+ - -8.875172816049336
+ - 3.2145110884737838
+ - 4.269556172822054
+ - 5.6534958564442075
+ - 6.4147471192989345
+ - -3.0263135881795136
+ - -4.311588241221969
+ - -5.876661578692766
+ - -5.077064289116788
+ - 8.799016369752756
+ - 9.069782774513683
+ - 9.343706078514098
+ - 8.94021351117965
+ - -8.425723652860022
+ - -8.768612390205927
+ - -8.894342906030214
+ - -8.913675329556058
+ - 2.9167069663539698
+ - 4.00363892201506
+ - 5.438600432992713
+ - 6.25842206951015
+ - -2.551777423558502
+ - -3.9612714458644263
+ - -5.728954281431881
+ - -6.963618313522756
+ - -6.440984595707954
+ - -5.161957802088632
+ - -3.3419122644877857
+ - -1.9090869028427035
+ - 6.280693787413822
+ - 5.328513887966935
+ - 3.632287560786619
+ - 2.382347179111534
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -8.964065752526523
+ - -9.201903072551865
+ - -9.5455921910541
+ - -9.349079589406692
+ - 8.181108979543254
+ - 8.955053606792289
+ - 9.52931525569929
+ - 9.85558451732735
+ - -1.5862987528019934
+ - -2.8492915580058678
+ - -4.532544472166012
+ - -5.549485847331131
+ - 1.5446963281071413
+ - 2.949195777585886
+ - 4.7566806012258365
+ - 6.037792811219962
+ - 7.217568900499007
+ - 6.040333914519964
+ - 4.3578076684034315
+ - 2.993839561438785
+ - -6.472753690871531
+ - -5.690725189150216
+ - -4.2944157767051925
+ - -3.22606603465248
+ - 9.01226009978697
+ - 9.007024660964847
+ - 8.872163091699433
+ - 8.436113730278171
+ - -8.168615865243634
+ - -8.76622063178855
+ - -9.13365040535344
+ - -9.319428045877894
+ - 2.0475271073853616
+ - 3.221851748381017
+ - 4.7814541949355265
+ - 5.702353088258285
+ - -1.949665325954124
+ - -3.295286871864603
+ - -5.001686370248787
+ - -6.0744359032796735
+ - 8.350695925588388
+ - 8.791391596934936
+ - 9.299439380511156
+ - 9.061973883575288
+ - -8.19328418267165
+ - -8.714367256552293
+ - -9.090187145154392
+ - -9.29161924411534
+ - 1.7205380047226848
+ - 2.915717374729214
+ - 4.510194979149746
+ - 5.478607486973261
+ - -1.4834980171663574
+ - -2.9178878198373077
+ - -4.775296810541616
+ - -6.085904348000453
+ - -7.32978909462927
+ - -6.124621613641663
+ - -4.391314293903802
+ - -2.9764331955156087
+ - 7.132018311943133
+ - 6.298650512763388
+ - 4.70644710964444
+ - 3.535544327958328
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -4.727017415536317
+ - -4.998456526934936
+ - -5.377159228330083
+ - -5.397512203628211
+ - 4.290955898698135
+ - 4.8505024324934585
+ - 5.358854149425759
+ - 5.678327228252625
+ - 0.0456604642621138
+ - -0.7349419360634956
+ - -1.7892278789036622
+ - -2.468143694350725
+ - -0.000519863454492217
+ - 0.813202101795466
+ - 1.9107088368731144
+ - 2.697878915509504
+ - 4.795483544812742
+ - 4.192937222621448
+ - 3.317521935602052
+ - 2.5683677953169988
+ - -4.311682571365395
+ - -3.9854647161806964
+ - -3.318059769822601
+ - -2.794277882092084
+ - 4.857579449964931
+ - 4.99850808744869
+ - 5.1198408319819135
+ - 5.010177600071951
+ - -4.402996034495258
+ - -4.879308042561036
+ - -5.285377389425235
+ - -5.534863725337632
+ - 0.20036916701598945
+ - 0.9486474657710708
+ - 1.9562784095562518
+ - 2.596170532104869
+ - -0.21854943503861435
+ - -1.014671170147051
+ - -2.0762875648359267
+ - -2.840583241273671
+ - 4.279734936246032
+ - 4.661074643643854
+ - 5.131395609030596
+ - 5.132801718577983
+ - -4.365661199036658
+ - -4.798303890870314
+ - -5.207978864638308
+ - -5.466153895789541
+ - -0.00475256857672842
+ - 0.7462524314851718
+ - 1.7602923032301898
+ - 2.4177035441484307
+ - 0.03374061713454224
+ - -0.7832295163287732
+ - -1.8873065762747943
+ - -2.6765004476154166
+ - -4.786426582693527
+ - -4.17613310822567
+ - -3.282738734644138
+ - -2.5110154881707443
+ - 4.646438821641279
+ - 4.278828816178038
+ - 3.477716927681355
+ - 2.890620583369438
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -4.156381444687381
+ - -4.476147950748726
+ - -4.9188001607370655
+ - -5.00555053720458
+ - 3.7600840799716613
+ - 4.33617844597566
+ - 4.897305682308507
+ - 5.260085765534522
+ - 0.5300727568222221
+ - -0.21993581416014923
+ - -1.239506232977512
+ - -1.9156892363108875
+ - -0.4531280731515346
+ - 0.3029535944663772
+ - 1.3481479353525692
+ - 2.102272344490524
+ - 4.766088194277593
+ - 4.2464124770264675
+ - 3.483245906536114
+ - 2.807926350027602
+ - -4.290131255038917
+ - -4.051149168205274
+ - -3.5025825610454855
+ - -3.064017874879554
+ - 4.329577895270804
+ - 4.533294322511262
+ - 4.7468600318242915
+ - 4.717233870377579
+ - -3.924481131587991
+ - -4.43280631893122
+ - -4.907767340037846
+ - -5.211285593106299
+ - -0.312182599956271
+ - 0.4174197232927361
+ - 1.406269055134666
+ - 2.054593899649879
+ - 0.25744033269715305
+ - -0.4906342551816005
+ - -1.5139425551038619
+ - -2.254391568031186
+ - 3.69432042328298
+ - 4.112346318949553
+ - 4.638304266206806
+ - 4.7098660689824206
+ - -3.8636943324655295
+ - -4.331779634562587
+ - -4.809456326537808
+ - -5.12085522191025
+ - -0.5106977968202074
+ - 0.21670883633410415
+ - 1.2045391375198387
+ - 1.8640828600018955
+ - 0.4828655678795925
+ - -0.26912234464418605
+ - -1.3091219246179426
+ - -2.057511716474186
+ - -4.720229646139416
+ - -4.197619836520064
+ - -3.4235314070279492
+ - -2.730743558174143
+ - 4.577315775812614
+ - 4.293985777268123
+ - 3.6109664286472793
+ - 3.111601550630189
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.7520351160499352
+ - -2.263147662532153
+ - -2.958642858351468
+ - -3.3147297676708702
+ - 1.5252317051341397
+ - 2.1583162290188334
+ - 2.9245275187118858
+ - 3.457382649797261
+ - 2.496937753483966
+ - 1.8854706819222848
+ - 1.0261867748591167
+ - 0.3735141627353161
+ - -2.2916288832899423
+ - -1.7845577897626597
+ - -0.9719190746338057
+ - -0.36641567282308246
+ - 4.559028653970168
+ - 4.38698990819299
+ - 4.095782877377827
+ - 3.7340754415484136
+ - -4.123777646969281
+ - -4.245113086995288
+ - -4.191471163836014
+ - -4.108635704793212
+ - 2.096027562190025
+ - 2.5522142037924826
+ - 3.1382156389966775
+ - 3.4357073330660626
+ - -1.900256438487901
+ - -2.5299139706436202
+ - -3.2772930033239724
+ - -3.7957305313125644
+ - -2.3978481927112187
+ - -1.7577857929935896
+ - -0.8636460801782115
+ - -0.1927635410615151
+ - 2.194922120450235
+ - 1.6565686884750448
+ - 0.8082740380097717
+ - 0.17866123821609894
+ - 1.2381188278872481
+ - 1.79819495191336
+ - 2.541555460670799
+ - 2.898066431240013
+ - -1.7448893736785158
+ - -2.3490357015467964
+ - -3.0954494669632298
+ - -3.6183264811271467
+ - -2.5657780662506853
+ - -1.9479561221642063
+ - -1.0851252126913347
+ - -0.4289358160741045
+ - 2.3066100308137685
+ - 1.8335152124650798
+ - 1.0739815426494117
+ - 0.5057646817603746
+ - -4.3638463299488315
+ - -4.208565915692786
+ - -3.9354323621057268
+ - -3.5773888485128205
+ - 4.211605278529962
+ - 4.2773429904519515
+ - 4.088662835290889
+ - 3.956397513307721
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.813472905523033
+ - -1.3941450393639616
+ - -2.181396905773815
+ - -2.638262813451063
+ - 0.6536485054942879
+ - 1.3036554152730797
+ - 2.1426967157809957
+ - 2.736758807023314
+ - 3.2337058100150804
+ - 2.680349069239636
+ - 1.889494705828345
+ - 1.25101558026466
+ - -2.980647239726856
+ - -2.573349994289929
+ - -1.8565680662976358
+ - -1.3130046018616937
+ - 4.443409816643953
+ - 4.406433350882109
+ - 4.299044765729626
+ - 4.060810274601743
+ - -4.0272498816044004
+ - -4.286209230986902
+ - -4.423343402063297
+ - -4.477978551449842
+ - 1.2204401789633763
+ - 1.7701288435677738
+ - 2.4947476228080356
+ - 2.9157040183007115
+ - -1.1067227907244062
+ - -1.778076371645123
+ - -2.624331326472844
+ - -3.2213371196469205
+ - -3.1810901422768225
+ - -2.580517288671382
+ - -1.729860721026506
+ - -1.0555971659566021
+ - 2.9227727505505037
+ - 2.469328977014833
+ - 1.6950413352620832
+ - 1.1130263639912072
+ - 0.2836686334303787
+ - 0.8939582665825401
+ - 1.7150669492534942
+ - 2.1783583388508316
+ - -0.9162054805830412
+ - -1.5679139928312893
+ - -2.411795574958063
+ - -3.0118823147148293
+ - -3.335931236996515
+ - -2.765132715005053
+ - -1.9571875824280072
+ - -1.3074672143307453
+ - 2.9898347185760628
+ - 2.627738694017493
+ - 1.982069433945086
+ - 1.487633398567417
+ - -4.192336612618452
+ - -4.179560107651128
+ - -4.101254237674086
+ - -3.874782401808744
+ - 4.037709789319059
+ - 4.237183425143942
+ - 4.240119957576992
+ - 4.250088501697999
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.8773882892196845
+ - 1.1118883690771537
+ - 0.08131328827929576
+ - -0.6520902845833456
+ - -1.8428654617489966
+ - -1.1594819422047526
+ - -0.1321862333202149
+ - 0.6226165352597542
+ - 5.257819740948306
+ - 4.882522650104023
+ - 4.304519149391298
+ - 3.720995855963768
+ - -4.874569457873326
+ - -4.760631845046626
+ - -4.333106089935491
+ - -3.978283095249272
+ - 4.013000857867956
+ - 4.3614242535278125
+ - 4.7798609226925866
+ - 4.898612677992824
+ - -3.660677478100515
+ - -4.305589496427383
+ - -4.982789430817517
+ - -5.427594854336599
+ - -1.3003851161850122
+ - -0.49699255230821915
+ - 0.6058006818391825
+ - 1.3687048146883563
+ - 1.1778838207035875
+ - 0.403102770881156
+ - -0.7054017969605498
+ - -1.512513388985083
+ - -5.338725872205575
+ - -4.864269915468945
+ - -4.156797467405211
+ - -3.4882656395058222
+ - 4.928578865410581
+ - 4.727223616325018
+ - 4.1812899815769775
+ - 3.7480555953277386
+ - -2.4403619318719074
+ - -1.7010024804625266
+ - -0.6772276247729987
+ - 0.0795426837233515
+ - 1.46414346654312
+ - 0.6918575890529324
+ - -0.41031842251627815
+ - -1.216572666078113
+ - -5.452772824934764
+ - -5.028863914651819
+ - -4.3955962941501205
+ - -3.7790942600464557
+ - 4.867051575496892
+ - 4.8292459451897
+ - 4.522485463087011
+ - 4.2493849771050725
+ - -3.608510651371875
+ - -4.00177104509286
+ - -4.479974161760298
+ - -4.633279852444077
+ - 3.4506129989984795
+ - 4.026324157513134
+ - 4.5747765936835
+ - 4.989495066640642
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.665941558329094
+ - 4.343199068383839
+ - 2.5683808834433095
+ - 1.1934456147192556
+ - -5.40495138788507
+ - -4.366570036832154
+ - -2.656167116358113
+ - -1.3751846997090773
+ - 9.902027527133988
+ - 9.54434354112149
+ - 8.927026471358438
+ - 8.130710633903304
+ - -9.199032311054326
+ - -9.349459044117763
+ - -9.035533725816986
+ - -8.719437963758345
+ - 5.419625909580955
+ - 6.347777542608641
+ - 7.530605634092613
+ - 8.091164762311388
+ - -4.972001825927203
+ - -6.33558406141696
+ - -7.913329864059008
+ - -8.987999471357343
+ - -4.6356602218683145
+ - -3.182793571150285
+ - -1.1560986310997972
+ - 0.33290131776742005
+ - 4.2003191410336305
+ - 2.9520714650170534
+ - 1.0424756910675923
+ - -0.36865532774610066
+ - -10.165207168467557
+ - -9.605873987605955
+ - -8.72327054153716
+ - -7.749001106964044
+ - 9.39934447320632
+ - 9.376892614953256
+ - 8.823389813466486
+ - 8.349043334720283
+ - -6.384501215635929
+ - -5.303451590919147
+ - -3.582613287323328
+ - -2.1550712247392507
+ - 4.723779687561224
+ - 3.4606286379182354
+ - 1.56459540212682
+ - 0.15898452903496227
+ - -10.288314178198059
+ - -9.82559774959571
+ - -9.08591164026775
+ - -8.21770058991467
+ - 9.169924868782768
+ - 9.465486321581254
+ - 9.382419477816098
+ - 9.221458971649508
+ - -4.6603413521446955
+ - -5.676588476894593
+ - -6.980282090785549
+ - -7.616187217460906
+ - 4.425227273573278
+ - 5.676803507737996
+ - 7.071626492890439
+ - 8.117951184118953
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 6.378678965686524
+ - 5.1786352065135635
+ - 3.571497929369309
+ - 2.2690600578448157
+ - -6.038955955063572
+ - -5.169739236227573
+ - -3.6510799528742868
+ - -2.500823465050305
+ - 9.401132787426276
+ - 9.22531728636982
+ - 8.860292554518596
+ - 8.246228542682962
+ - -8.74250789489676
+ - -9.056556307746607
+ - -8.988957552533396
+ - -8.854047705190476
+ - 4.142476882113301
+ - 5.151263227753759
+ - 6.459460862670676
+ - 7.149717325554147
+ - -3.818781158562963
+ - -5.183295864774144
+ - -6.823082937654381
+ - -7.954557447601516
+ - -5.426966313949576
+ - -4.075814722148664
+ - -2.175185610564318
+ - -0.737006507931226
+ - 4.917648677091741
+ - 3.831478190350074
+ - 2.1020042271468697
+ - 0.8133418054676026
+ - -9.702982400148322
+ - -9.328726494165041
+ - -8.701768501141231
+ - -7.910375424910629
+ - 8.978940812140234
+ - 9.12498765545442
+ - 8.822152245345624
+ - 8.532034035645806
+ - -5.1938491486860805
+ - -6.02030966902317
+ - -4.483736782437217
+ - -3.1273186480885222
+ - 5.407287778170401
+ - 4.297771875010706
+ - 2.581945620827622
+ - 1.3003562608346682
+ - -9.776854516817352
+ - -9.494994954181138
+ - -9.005210841433541
+ - -8.31829739407194
+ - 8.707859976691838
+ - 9.160525094669417
+ - 9.313712051626254
+ - 9.326665841602859
+ - -3.4227688785897814
+ - -4.51690864999671
+ - -5.943755107971733
+ - -6.710364399272508
+ - 3.228752566230627
+ - 4.495521220572979
+ - 5.9895732079777755
+ - 7.107421030758416
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.171988613783284
+ - 4.387233307293172
+ - 3.3387262905569286
+ - 2.4425296495869695
+ - -4.866639355115202
+ - -4.357091891036953
+ - -3.3907187094147107
+ - -2.6481387407934824
+ - 6.485263376727823
+ - 6.4904514879063155
+ - 6.409357226103398
+ - 6.095386200375507
+ - -6.037721359287296
+ - -6.386594239482836
+ - -6.517920431180188
+ - -6.552424315677234
+ - 2.083093127980504
+ - 2.877518341565953
+ - 3.9229832288804682
+ - 4.521202599494615
+ - -1.9380111423094346
+ - -2.9332922207242413
+ - -4.174022952798161
+ - -5.040404526255615
+ - -4.535887536343816
+ - -3.625604859531224
+ - -2.3326601852442663
+ - -1.321628921890475
+ - 4.110407591217596
+ - 3.4375258096835553
+ - 2.3089686356342765
+ - 1.4594502946059111
+ - -6.733633791218497
+ - -6.596530886073949
+ - -6.326971348637624
+ - -5.884202702578279
+ - 6.236540415051562
+ - 6.466532297345609
+ - 6.429576582942993
+ - 6.353179346283423
+ - -2.912857332460457
+ - -3.6859398810707984
+ - -3.928880432873391
+ - -2.992330492101479
+ - 4.442509639687783
+ - 3.7464218974412566
+ - 2.627875011614902
+ - 1.7846507870511883
+ - -6.751381786133856
+ - -6.678532490019632
+ - -6.5047483493659195
+ - -6.136977621190675
+ - 6.008404311527731
+ - 6.453536367903162
+ - 6.738408651602548
+ - 6.875359299348318
+ - -1.58751288158034
+ - -2.4421419731474727
+ - -3.572464994637999
+ - -4.227076259540559
+ - 1.4762256325610494
+ - 2.4107143765665273
+ - 3.572483414720685
+ - 4.4397234186981605
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 8.034264617025826
+ - 6.979638534338391
+ - 5.573225439934012
+ - 4.320665322929128
+ - -7.533821403837424
+ - -6.912791520310011
+ - -5.643044161091963
+ - -4.6555118577413195
+ - 9.080963257872137
+ - 9.218056378328248
+ - 9.279748390507729
+ - 8.952654980739586
+ - -8.461277716651367
+ - -9.085524577862312
+ - -9.452094253527974
+ - -9.631363262228708
+ - 2.121742215897453
+ - 3.335272872120349
+ - 4.945995730250683
+ - 5.908942642726483
+ - -1.9988830896800875
+ - -3.447940190657062
+ - -5.297717570989015
+ - -6.598989719500199
+ - -7.164535734099743
+ - -5.91228821246268
+ - -4.120512732782653
+ - -2.6853983764440192
+ - 6.49265896927125
+ - 5.628886845559623
+ - 4.11484147327321
+ - 2.9658044029051815
+ - -9.469951055682548
+ - -9.402259316327692
+ - -9.192073711260539
+ - -8.677991104813692
+ - 8.776339613757242
+ - 9.231057547976675
+ - 9.355825198654404
+ - 9.375871262357396
+ - -3.390875917871426
+ - -4.580457991812334
+ - -6.151398219381401
+ - -5.047141313864185
+ - 6.951863181321858
+ - 6.048307165124144
+ - 4.548890031313125
+ - 3.4101186636101817
+ - -9.460709495847654
+ - -9.48351731944507
+ - -9.408618826318454
+ - -9.002553169145253
+ - 8.414667362472953
+ - 9.174353653005742
+ - 9.75719811439888
+ - 10.08037431786431
+ - -1.4287339995516677
+ - -2.727923815448176
+ - -4.460558403997391
+ - -5.506287349556525
+ - 1.2960556192067925
+ - 2.66680127351346
+ - 4.428157288926327
+ - 5.741162322586463
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 8.489833107864955
+ - 7.572179943230682
+ - 6.352118076174257
+ - 5.195606069977838
+ - -7.9297693260495805
+ - -7.477578471228367
+ - -6.412794925355772
+ - -5.56792817919372
+ - 8.407101827171092
+ - 8.706385747824708
+ - 8.996158564579963
+ - 8.842752953501186
+ - -7.842671876270769
+ - -8.600806869876244
+ - -9.182706925273262
+ - -9.522532740184102
+ - 0.9086989614949987
+ - 2.166454754023428
+ - 3.8525680488707383
+ - 4.910400676369979
+ - -0.9015537143863815
+ - -2.316657815608296
+ - -4.178461542342575
+ - -5.5001686761287045
+ - -7.712482310219656
+ - -6.582860732769302
+ - -4.9488257600175665
+ - -3.5944202219914416
+ - 6.989430011964198
+ - 6.293877856459065
+ - 4.980088738590473
+ - 3.970082627747258
+ - -8.821933522678536
+ - -8.924270517358197
+ - -8.9517463049907
+ - -8.616410601861103
+ - 8.18303357930452
+ - 8.780148781083827
+ - 9.13000381193705
+ - 9.317198931063466
+ - -2.2260565102252556
+ - -3.469522174991939
+ - -5.125358347707886
+ - -5.810580244292827
+ - 7.406831335654917
+ - 6.664769298604841
+ - 5.365334599497635
+ - 4.366760650633024
+ - -8.768114734474718
+ - -8.95493763029137
+ - -9.109225399398989
+ - -8.877875934073826
+ - 7.7921396213207945
+ - 8.676530460851641
+ - 9.460345836445528
+ - 9.934006184979408
+ - -0.26834543064720673
+ - -1.6072081141481238
+ - -3.410288234142532
+ - -4.549830862576453
+ - 0.17624866231371786
+ - 1.5278973114494998
+ - 3.337240607338166
+ - 4.683791050284597
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.899706331258652
+ - 3.7061821474654972
+ - 3.454073415647492
+ - 3.1164191496464584
+ - -3.6062472773794547
+ - -3.6349624666229285
+ - -3.4667655304651603
+ - -3.3088626811833546
+ - 2.484339081280096
+ - 2.8007251191396674
+ - 3.1940386556631934
+ - 3.346304169503052
+ - -2.32980826487434
+ - -2.7921644685436977
+ - -3.284860167407892
+ - -3.615204554447778
+ - -1.1274714590331651
+ - -0.5782220871802901
+ - 0.17780270105500212
+ - 0.7103798515128888
+ - 0.9886115248074143
+ - 0.4731398204513341
+ - -0.27446485559432776
+ - -0.8197609100108313
+ - -3.706811758029488
+ - -3.41228281998723
+ - -2.962188603470274
+ - -2.5278550891679226
+ - 3.3595334454287205
+ - 3.291693965037763
+ - 3.019714854496336
+ - 2.7923565825373804
+ - -2.6792749897439343
+ - -2.927731111162485
+ - -3.229523925753847
+ - -3.316368539414688
+ - 2.4947636516416174
+ - 2.904154075363284
+ - 3.3174534347989795
+ - 3.5957874076922836
+ - 0.549864698390984
+ - -0.0055846908439729954
+ - -0.761329115923256
+ - -1.2397312518997097
+ - 3.4726585563423775
+ - 3.3782760460430357
+ - 3.111612148132197
+ - 2.8901821686751883
+ - -2.6035123378345175
+ - -2.877862737156317
+ - -3.2191973969921697
+ - -3.3420401974136227
+ - 2.305115030803088
+ - 2.8059268061138996
+ - 3.360523661019025
+ - 3.731218365065855
+ - 1.3150732258240747
+ - 0.7394704433776979
+ - -0.056542948370699356
+ - -0.6199719045488524
+ - -1.301640695619497
+ - -0.7929588771314735
+ - -0.021976479299855967
+ - 0.5491504512658417
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.8054058962312095
+ - 1.2306897676899449
+ - 1.8077883202459981
+ - 2.1330790867232867
+ - -0.6709247726762828
+ - -1.159320145303673
+ - -1.7794339861693915
+ - -2.2165391988744734
+ - -2.2976691718940447
+ - -1.867221307602529
+ - -1.254986027940783
+ - -0.7690172472171886
+ - 2.1158570087869957
+ - 1.7874932738891987
+ - 1.2257545112963193
+ - 0.8019417530168879
+ - -3.385442128537849
+ - -3.3301367942550595
+ - -3.211690059146484
+ - -3.006450353410777
+ - 3.0666973346652715
+ - 3.234789709527893
+ - 3.299950193933079
+ - 3.313474320916404
+ - -1.1005905629694848
+ - -1.497586841684456
+ - -2.0178134140809267
+ - -2.3113436433862464
+ - 0.9979455825996865
+ - 1.4974801128476591
+ - 2.117782130145202
+ - 2.553601892873621
+ - 2.248455023417534
+ - 1.786049291526581
+ - 1.1336129067869527
+ - 0.6241241863739296
+ - -2.064210000796169
+ - -1.7039375958107623
+ - -1.1031087911966206
+ - -0.6531040733804883
+ - 3.3222802542509116
+ - 3.2396471729776573
+ - 3.093449855406261
+ - 2.794728437945105
+ - 0.8609051925228876
+ - 1.34438860803204
+ - 1.9631797364025891
+ - 2.4016055346100975
+ - 2.368261783321378
+ - 1.9268600737940351
+ - 1.3044336357278705
+ - 0.8115222231266863
+ - -2.1239808368423665
+ - -1.8275468392854812
+ - -1.3159710100985782
+ - -0.9269340749858949
+ - 3.2067794037873183
+ - 3.168278972322433
+ - 3.0696097593508878
+ - 2.87163146399424
+ - -3.090265737771672
+ - -3.214135685339623
+ - -3.1775871755815057
+ - -3.1563511251550684
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.247139656176822
+ - -2.377774825207528
+ - -1.210112638998956
+ - -0.32763660486502
+ - 3.1152395881788593
+ - 2.4047237748655155
+ - 1.2678331504834006
+ - 0.42133288913422307
+ - -6.347258656555649
+ - -6.054925559450201
+ - -5.57410860058076
+ - -5.009005044065929
+ - 5.893242846333919
+ - 5.923741090901861
+ - 5.63378812182845
+ - 5.367566154886017
+ - -3.860179512846774
+ - -4.406008209716203
+ - -5.09290247728991
+ - -5.391371633247513
+ - 3.5342536480565903
+ - 4.381401957972106
+ - 5.338131663220636
+ - 5.984200468995549
+ - 2.5765388608147592
+ - 1.6343769435579172
+ - 0.326188133430224
+ - -0.6188367701108203
+ - -2.3344432489118425
+ - -1.4962179556320825
+ - -0.2399975316938541
+ - 0.6842148174168872
+ - 6.495944299617003
+ - 6.077044734250461
+ - 5.430053309819161
+ - 4.75410577954168
+ - -6.00383594078206
+ - -5.925007221182581
+ - -5.484478361793471
+ - -5.118727472192561
+ - 4.426576037552247
+ - 4.937917153489366
+ - 5.582246863324726
+ - 5.6762732320141875
+ - -2.6728113861887253
+ - -1.828573511517016
+ - -0.5807498338330627
+ - 0.3406294709295377
+ - 6.591415043469134
+ - 6.234190614234264
+ - 5.678237921434385
+ - 5.068816707364993
+ - -5.877284863203966
+ - -6.0004982058399055
+ - -5.857908842219275
+ - -5.690907758681313
+ - 3.373023858689085
+ - 3.974662284154562
+ - 4.737531560839624
+ - 5.082442871252156
+ - -3.211070214168372
+ - -3.9831131639522748
+ - -4.811833078640447
+ - -5.434617959810465
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -6.397937828041278
+ - -5.279788547804953
+ - -3.783445577462592
+ - -2.5496848554466607
+ - 6.043610541862299
+ - 5.26045096330529
+ - 3.8575742707557628
+ - 2.790183201168765
+ - -8.912873426994567
+ - -8.803636738457202
+ - -8.535113445668319
+ - -8.00274069276223
+ - 8.291545056638965
+ - 8.649345961130452
+ - 8.666092164754929
+ - 8.5961351557481
+ - -3.575509489803881
+ - -4.576656580276217
+ - -5.8818753062664095
+ - -6.591723042444414
+ - 3.3041532893745353
+ - 4.622322468312873
+ - 6.226702711381608
+ - 7.338406972347725
+ - 5.504932071684437
+ - 4.233853560813186
+ - 2.4401949779043575
+ - 1.0681154544589915
+ - -4.98839299651835
+ - -3.9933375063192806
+ - -2.382984004173458
+ - -1.1791695145327663
+ - 9.217280262048913
+ - 8.917456937108325
+ - 8.397073179181755
+ - 7.693642646640848
+ - -8.531922998078084
+ - -8.7290908859314
+ - -8.52008934650441
+ - -8.301244108819018
+ - 4.61973868917491
+ - 5.586233110994992
+ - 6.843136432591604
+ - 7.283976854121464
+ - -5.307022258742548
+ - -4.42961256492096
+ - -2.83246849536764
+ - -1.6360023848174612
+ - 9.272229887259398
+ - 9.060238147980453
+ - 8.670425249847835
+ - 8.067376174535221
+ - -8.256236694483238
+ - -8.74574397956451
+ - -8.972372179430183
+ - -9.04280133513298
+ - 2.893590138797531
+ - 3.9762590313420496
+ - 5.395331459810654
+ - 6.17925662963227
+ - -2.7198944131967964
+ - -3.948408671960183
+ - -5.424421405439315
+ - -6.527866484511922
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -7.121362404113263
+ - -6.129545087589307
+ - -4.805822590904007
+ - -3.6471690530145096
+ - 6.686836953792431
+ - 6.077238324960425
+ - 4.87150465359248
+ - 3.9386103207064123
+ - -8.393633270701416
+ - -8.47039948399509
+ - -8.459998418923806
+ - -8.114362333277114
+ - 7.818164395843158
+ - 8.342938080111681
+ - 8.611477513447637
+ - 8.726793912331747
+ - -2.267057813234098
+ - -3.3498246165465964
+ - -4.782147441886247
+ - -5.624004416930405
+ - 2.1226063504367296
+ - 3.4406636533762964
+ - 5.1071690891206
+ - 6.276043764211361
+ - 6.309394855773703
+ - 5.143321368648662
+ - 3.47998257745957
+ - 2.1609631992008502
+ - -5.717650785493784
+ - -4.889082337984845
+ - -3.464159118033845
+ - -2.3865105608248194
+ - 8.737324435512877
+ - 8.626938183783144
+ - 8.368307868524296
+ - 7.852390644008375
+ - -8.095272474382218
+ - -8.464528455105723
+ - -8.51193994837343
+ - -8.481598459466516
+ - 3.398864590670353
+ - 4.457211477905134
+ - 5.850863630361269
+ - 6.450161711509718
+ - -4.2766180930517805
+ - -5.281801130859447
+ - -3.8701637339165162
+ - -2.8014450809576457
+ - 8.741899395893967
+ - 8.714959461711924
+ - 8.580923274566517
+ - 8.16369252218626
+ - -7.777220821266372
+ - -8.426931440872803
+ - -8.894886426142072
+ - -9.143042161384184
+ - 1.6261465035950533
+ - 2.7875661663981877
+ - 4.331384679034087
+ - 5.2482884586173935
+ - -1.4946032234845306
+ - -2.7376552457818764
+ - -4.313911962871416
+ - -5.4895798034326715
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.678201939036158
+ - -5.056083618715112
+ - -4.228758289824055
+ - -3.44814890191782
+ - 5.304946998552251
+ - 4.993831259538742
+ - 4.269897672359082
+ - 3.6963803189490405
+ - -5.673436124861272
+ - -5.867035917325969
+ - -6.051289847687672
+ - -5.940511486836463
+ - 5.292086921009987
+ - 5.794956105774211
+ - 6.175869386511922
+ - 6.396755793817074
+ - -0.6644758593350553
+ - -1.5067385994847158
+ - -2.635129355273685
+ - -3.3409194056645792
+ - 0.6544785284020409
+ - 1.6058730757562283
+ - 2.8550416552794666
+ - 3.7413001571248006
+ - 5.1522640532657835
+ - 4.388509844562978
+ - 3.284597001101997
+ - 2.3718438885508766
+ - -4.669225804184376
+ - -4.194785100705238
+ - -3.3039216841175625
+ - -2.619720263134057
+ - 5.950724309711483
+ - 6.011773991211389
+ - 6.019534157697416
+ - 5.786410424303381
+ - -5.519412649590242
+ - -5.913817125445923
+ - -6.138534934315376
+ - -6.256673854351352
+ - 1.5465656935026415
+ - 2.3788022530289763
+ - 3.4864426556243884
+ - 4.036783434143613
+ - -2.321699865120302
+ - -3.2176049786503405
+ - -3.5647060773017936
+ - -2.8881258996432155
+ - 5.91660290971312
+ - 6.034632850671968
+ - 6.127894697766025
+ - 5.964751418522307
+ - -5.258344140078636
+ - -5.8463735523811104
+ - -6.3634650515183555
+ - -6.674638730720428
+ - 0.23228094110635805
+ - 1.12919014110087
+ - 2.3363154722261057
+ - 3.097000377755573
+ - -0.1686382136837108
+ - -1.0767714365131158
+ - -2.2891103010061444
+ - -3.1914552189816474
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -8.734120615551
+ - -7.926921190631265
+ - -6.856828418150253
+ - -5.783239575164173
+ - 8.13621102856669
+ - 7.812930382282754
+ - 6.910139413636025
+ - 6.179134041195804
+ - -7.822197274654793
+ - -8.237491833998275
+ - -8.691802552825859
+ - -8.66768461003496
+ - 7.304396284351082
+ - 8.15284785541566
+ - 8.886799753723261
+ - 9.341002980019665
+ - -0.0074830269371450805
+ - -1.2843298338746063
+ - -3.0078712305367783
+ - -4.1241597620203105
+ - 0.08545786368496662
+ - 1.4605180713331616
+ - 3.311306978733829
+ - 4.633938608329128
+ - 8.032952468177863
+ - 7.005500677031219
+ - 5.504821810396411
+ - 4.22417608470819
+ - -7.279999083135
+ - -6.715497277929683
+ - -5.562896223886556
+ - -4.665841224798642
+ - 8.251599301263964
+ - 8.477807598785823
+ - 8.679659590721538
+ - 8.479269787797076
+ - -7.659722563008849
+ - -8.355125189847232
+ - -8.866677418707466
+ - -9.174722521350748
+ - 1.3462348728116917
+ - 2.616042411277077
+ - 4.3166156089200465
+ - 5.227480845723284
+ - -2.6053301295014855
+ - -3.9660013384538493
+ - -5.700159035895023
+ - -5.023278965034138
+ - 8.165592414807712
+ - 8.470965942591535
+ - 8.792048840829516
+ - 8.69157403151518
+ - -7.251520476756203
+ - -8.218132083824734
+ - -9.141292676429797
+ - -9.720500377913758
+ - -0.5873434689520174
+ - 0.7663996466863523
+ - 2.6020263217808854
+ - 3.798365640805542
+ - 0.6486327018236374
+ - -0.6745671265934483
+ - -2.4998844991397045
+ - -3.856730017863
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -9.398883108688942
+ - -8.716789101355854
+ - -7.817513770900742
+ - -6.820598215823921
+ - 8.725846761843991
+ - 8.571404358452073
+ - 7.862462690470343
+ - 7.264151962358739
+ - -7.290583167464981
+ - -7.883874309879285
+ - -8.585668327895224
+ - -8.741954328710037
+ - 6.819065469204741
+ - 7.8254637025519465
+ - 8.799706555173426
+ - 9.431051548167124
+ - 1.2559712743315763
+ - -0.0947500404165465
+ - -1.9343581293276042
+ - -3.1737974454568354
+ - -1.0557601980547353
+ - 0.3138757574967566
+ - 2.217496537612864
+ - 3.590217714346515
+ - 8.778675325220068
+ - 7.856587451022178
+ - 6.487545722025768
+ - 5.263085448310339
+ - -7.956015945386718
+ - -7.554454515183941
+ - -6.585358899840737
+ - -5.813596399304681
+ - 7.756257514222994
+ - 8.164509433689853
+ - 8.61832703574478
+ - 8.599772591200715
+ - -7.208484166757969
+ - -8.067364454244178
+ - -8.824528297628705
+ - -9.313399415544115
+ - 0.16216858904791911
+ - 1.5157584739077212
+ - 3.3417999949003603
+ - 4.402148492621673
+ - -1.6003114591954646
+ - -3.0428723459340623
+ - -4.92794619418867
+ - -6.129195675321991
+ - 7.62194197677579
+ - 8.104818696719855
+ - 8.671635183352123
+ - 8.750972791920493
+ - -6.760952781387893
+ - -7.878517733670785
+ - -9.031131501035249
+ - -9.77971055401109
+ - -1.8089011891840707
+ - -0.38435107909624366
+ - 1.5646320731207464
+ - 2.8847486972858456
+ - 1.8292515667851088
+ - 0.49712997364523737
+ - -1.4179247953308338
+ - -2.8392619470701965
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.718487462639022
+ - -5.442609145196007
+ - -5.083607567537597
+ - -4.595185488320437
+ - 5.2869073379501135
+ - 5.33721084742401
+ - 5.101692950272083
+ - 4.878125218721065
+ - -3.595260399430266
+ - -4.065407695850225
+ - -4.651178868333498
+ - -4.882180558469041
+ - 3.3722887587604986
+ - 4.054238862115599
+ - 4.78453648738663
+ - 5.274990473229759
+ - 1.7068665361640316
+ - 0.9024406601673319
+ - -0.2055456252477781
+ - -0.988129038642353
+ - -1.498316329835277
+ - -0.7470981198745942
+ - 0.3454515197459177
+ - 1.1429249243378128
+ - 5.441320133526875
+ - 5.017203362631753
+ - 4.367606499640517
+ - 3.7372146665780197
+ - -4.931549666153345
+ - -4.84079442474986
+ - -4.453458767649212
+ - -4.128264192778903
+ - 3.881264429740425
+ - 4.252581236976686
+ - 4.705151412025723
+ - 4.840849663880955
+ - -3.614476190125991
+ - -4.21948571423269
+ - -4.834299994535127
+ - -5.249113877943421
+ - -0.860823708149368
+ - -0.04686371846310383
+ - 1.061183835747367
+ - 1.7661036749064012
+ - -0.07623685332425406
+ - -0.9377594833271828
+ - -2.098796163946098
+ - -2.934424665143586
+ - 3.7683974727319582
+ - 4.177237720426912
+ - 4.687143114417796
+ - 4.875220818215306
+ - -3.3360274908864205
+ - -4.0736911081383935
+ - -4.893690605638909
+ - -5.4425815421286075
+ - -1.9782705384822052
+ - -1.1355782351764703
+ - 0.030570638365943547
+ - 0.8581632103945351
+ - 1.9566410708362072
+ - 1.2146044293268625
+ - 0.086128193674797
+ - -0.7497231899939389
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.5055473317285233
+ - -3.193270576055204
+ - -4.129452833298688
+ - -4.601999116707003
+ - 2.18806126902192
+ - 3.048615469573818
+ - 4.083541910398784
+ - 4.801944118545811
+ - 3.3097827754205467
+ - 2.469244066837202
+ - 1.2897149059912911
+ - 0.3985531472292777
+ - -3.0360237429885615
+ - -2.3324992190286427
+ - -1.2130805803076579
+ - -0.3801864803726931
+ - 6.22698904606206
+ - 5.975561551477649
+ - 5.5556119738609615
+ - 5.047187521294468
+ - -5.631484297382071
+ - -5.779505905574516
+ - -5.682403029840583
+ - -5.55222689745539
+ - 2.966370127621221
+ - 3.5762347628167426
+ - 4.357316606439291
+ - 4.747162382832246
+ - -2.6892737504449946
+ - -3.542040657482454
+ - -4.548027460036971
+ - -5.244598577087014
+ - -3.1689085397471763
+ - -2.2917470890603195
+ - -1.06786020022648
+ - -0.15409585712572305
+ - 2.8993580909492724
+ - 2.155076586361132
+ - 0.9898202383528898
+ - 0.12587780120965694
+ - -5.953851365511319
+ - -5.652976926586828
+ - -5.184669938284533
+ - -4.528358581307563
+ - 5.182562809474754
+ - 4.899030346325584
+ - 4.30827834928436
+ - 3.838958691330479
+ - -3.3993880725584065
+ - -2.5515849446091123
+ - -1.368926715346551
+ - -0.4739447692612295
+ - 3.057167094965707
+ - 2.3985284090440846
+ - 1.3492082336616644
+ - 0.5656332422030222
+ - -5.968053599521519
+ - -5.738525711402519
+ - -5.341818893245535
+ - -4.837368006740537
+ - 5.760899893746342
+ - 5.833649551737081
+ - 5.552428690142289
+ - 5.354296688480533
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.8114134807728623
+ - -4.10497210981941
+ - -5.861185682901823
+ - -6.834525924374087
+ - 2.3723055168137055
+ - 3.8791010012930682
+ - 5.774924283342524
+ - 7.107914892883208
+ - 6.866700915835475
+ - 5.5140090897328005
+ - 3.5948520961801282
+ - 2.085057214426475
+ - -6.319781099655649
+ - -5.269155575724656
+ - -3.4971135558926005
+ - -2.163675973589231
+ - 10.523458801091497
+ - 10.306544714075127
+ - 9.87761261145547
+ - 9.200282279755534
+ - -9.529885638316
+ - -10.003947275467526
+ - -10.141278106822574
+ - -10.136708484051185
+ - 3.70429241916331
+ - 4.90215671185446
+ - 6.466408564656611
+ - 7.3337237625913865
+ - -3.358684041268488
+ - -4.891605190178607
+ - -6.779210100862942
+ - -8.102353266296168
+ - -6.698585452920499
+ - -5.253215304723258
+ - -3.2179889379519793
+ - -1.641293621490577
+ - 6.146713490715733
+ - 5.002292606953185
+ - 3.1165756877299278
+ - 1.7068704312291132
+ - -10.279940931840972
+ - -9.978326003238312
+ - -9.463939992127454
+ - -8.503258803062852
+ - 9.181685172683208
+ - 8.924172117328316
+ - 8.208350470579614
+ - 7.615137935366023
+ - -6.931032987379883
+ - -5.69116985068037
+ - -3.745028385632892
+ - -2.2163430041271255
+ - 6.346897523916697
+ - 5.391362334308585
+ - 3.7685851786383417
+ - 2.5388438393131825
+ - -9.989043449223917
+ - -9.82165795463432
+ - -9.45025483373717
+ - -8.79267575783117
+ - 9.62901794862827
+ - 9.967440758601354
+ - 9.789504529623
+ - 9.675676410397246
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.5354189065657629
+ - -2.824334263622894
+ - -4.571128713510398
+ - -5.597244171535615
+ - 1.2031230574632366
+ - 2.6300435163311047
+ - 4.485239396651649
+ - 5.801279158886343
+ - 7.2689826078152935
+ - 6.073148319069261
+ - 4.3602546645538585
+ - 2.966678788172322
+ - -6.70272157119651
+ - -5.837398830098344
+ - -4.293763255365241
+ - -3.1203600216182847
+ - 9.69401161254586
+ - 9.648321530020802
+ - 9.46125625561698
+ - 8.972100422365639
+ - -8.788247183731391
+ - -9.39086541455556
+ - -9.740740347271808
+ - -9.896165729681185
+ - 2.4424726835831385
+ - 3.66982769850539
+ - 5.291776504606312
+ - 6.245223427691271
+ - -2.2150118077766723
+ - -3.695110574057662
+ - -5.572887264760026
+ - -6.899897875073692
+ - -7.16595874488788
+ - -5.861937201724153
+ - -4.011662193154368
+ - -2.5351895840923278
+ - 6.586195767486792
+ - 5.616006383369319
+ - 3.9408229600182043
+ - 2.6795294386036965
+ - -9.631288515534688
+ - -9.506731285618587
+ - -9.238182686951815
+ - -8.46324024032069
+ - 8.771656249310528
+ - 8.698687799432514
+ - 8.248651246957532
+ - 7.850345017312651
+ - -5.5926634257618675
+ - -6.264509319256495
+ - -4.510680518460899
+ - -3.090488831955965
+ - 6.721316565323413
+ - 5.957842353994178
+ - 4.5745304010752035
+ - 3.5117286497308258
+ - -9.129971833215624
+ - -9.139183267031147
+ - -9.018635746243374
+ - -8.557334394523021
+ - 8.790956760072145
+ - 9.262379437222052
+ - 9.318789086485703
+ - 9.377706413483619
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.1830483779474001
+ - -1.118848550627764
+ - -2.384793075982783
+ - -3.1712056295024444
+ - 0.019244444379198825
+ - 1.000433143654489
+ - 2.32248021893511
+ - 3.269019337851653
+ - 5.591776455487419
+ - 4.8354322017645766
+ - 3.7385505428593198
+ - 2.8083129996026606
+ - -5.164969670415715
+ - -4.670323161915895
+ - -3.7130154348159596
+ - -2.9753460061087784
+ - 6.455528156430731
+ - 6.547805689275394
+ - 6.588873593006109
+ - 6.370438015466704
+ - -5.859913213099724
+ - -6.393308242351825
+ - -6.804128672229389
+ - -7.034719765338161
+ - 0.8543947514566301
+ - 1.770370124702418
+ - 2.994563334105347
+ - 3.752486602022984
+ - -0.7752949090081964
+ - -1.8150731747906224
+ - -3.176161676303547
+ - -4.145962578396031
+ - -5.56444150438375
+ - -4.717889663161417
+ - -3.505271496389196
+ - -2.5028976138411054
+ - 5.121525964620035
+ - 4.542345971862963
+ - 3.4760745768450545
+ - 2.665837649097035
+ - -6.542413040008059
+ - -6.581500010484233
+ - -6.566104638238133
+ - -6.1376360614349075
+ - 6.091016983541275
+ - 6.1731862987968125
+ - 6.0401735631946005
+ - 5.8928750898910565
+ - -3.0937327543532196
+ - -3.7574176027384074
+ - -3.848345710722476
+ - -2.8930482624786142
+ - 5.17227005815825
+ - 4.756794701959333
+ - 3.9244216047260294
+ - 3.2724092534709714
+ - -6.022798531146376
+ - -6.159021994523123
+ - -6.2551520928811755
+ - -6.062956164667086
+ - 5.791173869076588
+ - 6.232228034919978
+ - 6.445195313800688
+ - 6.614813837818024
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.6430808513831977
+ - -0.7151633686187744
+ - -2.5503512328304594
+ - -3.7321646854582093
+ - -0.8052836606896422
+ - 0.5653809937963835
+ - 2.4599535915946293
+ - 3.8250508828707215
+ - 8.422529820159236
+ - 7.433871161014706
+ - 5.984955405677338
+ - 4.714325317313275
+ - -7.787757642538209
+ - -7.20013230981
+ - -5.970072822749044
+ - -5.0108494524523515
+ - 8.801394738123237
+ - 9.05768743419569
+ - 9.289819654226047
+ - 9.10611736438907
+ - -7.9973795760453
+ - -8.865072051545463
+ - -9.614281583983862
+ - -10.063812248843556
+ - 0.34380497407058563
+ - 1.6975323780024685
+ - 3.5198077166038924
+ - 4.683943737127875
+ - -0.3129221827781636
+ - -1.7881130058933428
+ - -3.7614401555685744
+ - -5.175219778200066
+ - -8.42914970079253
+ - -7.298189134233681
+ - -5.665691999018856
+ - -4.278705631376711
+ - 7.764846407228348
+ - 7.046337511523057
+ - 5.6450018881717305
+ - 4.57191207018869
+ - -9.056662481342112
+ - -9.239722651000369
+ - -9.392532822671715
+ - -8.90150456433058
+ - 8.56996690568375
+ - 8.821046206703944
+ - 8.816944443342734
+ - 8.741541724205005
+ - -3.5473987021995224
+ - -4.580983976181348
+ - -5.936872267032824
+ - -4.8322838766462874
+ - 7.792306154353442
+ - 7.324688430873502
+ - 6.284285702349427
+ - 5.454611515149957
+ - -8.1506761508253
+ - -8.474737813017619
+ - -8.793389776123824
+ - -8.653640393119955
+ - 7.828645376819054
+ - 8.565152171569958
+ - 9.042031188798331
+ - 9.411936413935436
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.814215508490771
+ - 0.4734343320102165
+ - -1.335256111425019
+ - -2.554299046431449
+ - -1.8762877937780336
+ - -0.5926238639990753
+ - 1.2460788971697474
+ - 2.582290314187807
+ - 8.711998263628114
+ - 7.877666444700342
+ - 6.633130547378017
+ - 5.482065566155146
+ - -8.065538731921407
+ - -7.654595875557486
+ - -6.647224439560571
+ - -5.844973590649672
+ - 7.950657315634141
+ - 8.362453561754814
+ - 8.815506673027542
+ - 8.807217485865854
+ - -7.235465358519216
+ - -8.213359465200252
+ - -9.151416438445667
+ - -9.744214602720456
+ - -0.8238258695736111
+ - 0.5439781285771281
+ - 2.401810081183985
+ - 3.63412552767869
+ - 0.7453930086084144
+ - -0.6667446737848218
+ - -2.611856601233709
+ - -4.015487268248453
+ - -8.77861463967017
+ - -7.789051366688413
+ - -6.343050526832652
+ - -5.061998277626826
+ - 8.09502154198012
+ - 7.544249449146405
+ - 6.350772148671454
+ - 5.425035351231627
+ - -8.37026962071298
+ - -8.714926702013424
+ - -9.093091089790388
+ - -8.778210317352885
+ - 8.108476833008938
+ - 8.527401327156758
+ - 8.768582199897516
+ - 8.873753291377346
+ - -2.278050964901626
+ - -3.3895786239321573
+ - -4.864883513685701
+ - -5.591981657911058
+ - 8.062180278107986
+ - 7.776316500791929
+ - 6.966965683418248
+ - 6.2993785812643655
+ - -7.278917661545882
+ - -7.762782989154778
+ - -8.309810402977329
+ - -8.352524591998993
+ - 6.979398014328384
+ - 7.831479148275905
+ - 8.51996467891581
+ - 9.045674952269664
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.5446653520550546
+ - 1.7257103755184482
+ - 0.624489407840022
+ - -0.18396091341173645
+ - -2.463158645467555
+ - -1.7635948215058836
+ - -0.6788883771118853
+ - 0.12346947401457818
+ - 5.8058025175066375
+ - 5.468679442902842
+ - 4.934759743561753
+ - 4.357418515486751
+ - -5.386766188213734
+ - -5.341760752722552
+ - -4.978429175792577
+ - -4.664584741232287
+ - 3.9579132436282127
+ - 4.4028599875278145
+ - 4.952307778019401
+ - 5.1580243200311875
+ - -3.6166682088898283
+ - -4.361786017557372
+ - -5.176507727249249
+ - -5.7201336267819345
+ - -1.9200085598074712
+ - -1.0462027861521914
+ - 0.16041479335064662
+ - 1.0143927976393605
+ - 1.739436549962075
+ - 0.9305948912288338
+ - -0.2540238860497676
+ - -1.1211460026052766
+ - -5.919672618453152
+ - -5.4697565977107185
+ - -4.788123817650308
+ - -4.1129608487840255
+ - 5.46823253967107
+ - 5.324873157814827
+ - 4.82712222794988
+ - 4.424352144870886
+ - -4.41838650225141
+ - -4.828599357265926
+ - -5.336462490669146
+ - -5.3509932970743375
+ - 4.524796402221767
+ - 4.989047829359657
+ - 5.435056753880901
+ - 5.71805716649711
+ - 0.0990929903831531
+ - -0.6909543266888445
+ - -1.7587620354762155
+ - -2.4545870751162164
+ - 5.375155259406548
+ - 5.41460514321642
+ - 5.185382805772454
+ - 4.962049968249361
+ - -3.5118173390215373
+ - -4.0070830870493905
+ - -4.624365512460705
+ - -4.870511066092166
+ - 3.3512453469630596
+ - 4.024005728616024
+ - 4.7097443758234
+ - 5.2264167334237674
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.850409196306769
+ - 3.0259183767665734
+ - 3.2702758896618067
+ - 3.2925934897026106
+ - -2.585584045367862
+ - -2.935260750271144
+ - -3.2584502114745106
+ - -3.4630375643900773
+ - -0.09900499825038744
+ - 0.3809850026969596
+ - 1.0302256663991771
+ - 1.451171940836442
+ - 0.06635040915044947
+ - -0.430248448830938
+ - -1.103745472365701
+ - -1.5874537777974265
+ - -2.9718580489943576
+ - -2.6099984973183585
+ - -2.083078294082612
+ - -1.6289136224041523
+ - 2.6727484848483107
+ - 2.483019174958097
+ - 2.0861545064479614
+ - 1.7735196328243048
+ - -2.9376575498555515
+ - -3.03427956393271
+ - -3.1230356377358515
+ - -3.066653097354901
+ - 2.6627557675352254
+ - 2.9630320595277517
+ - 3.225094687014734
+ - 3.3878118444210936
+ - -0.049579463427515805
+ - -0.5112472741329575
+ - -1.133857677356765
+ - -1.532214163314787
+ - 0.06619616772900766
+ - 0.553271557301203
+ - 1.2065375263619675
+ - 1.677391633726485
+ - 2.58790878777478
+ - 2.2037722958311075
+ - 1.6581119813793965
+ - 1.172236747672655
+ - -1.9811866987935405
+ - -1.5881230546591982
+ - -0.9776372697071651
+ - -0.5211673446738897
+ - 3.502168846072296
+ - 3.4088085186150088
+ - 3.2436304321160354
+ - 3.004225780467126
+ - -0.08645952301089048
+ - 0.4110841357157755
+ - 1.0869424814221507
+ - 1.5707749725174178
+ - 2.9608684321913414
+ - 2.59490303584548
+ - 2.0578542802755107
+ - 1.5904270089034604
+ - -2.8735631361941043
+ - -2.657714070602887
+ - -2.1777601402053306
+ - -1.8261981832196563
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.9833534202885987
+ - 3.591277735559058
+ - 4.420722700809474
+ - 4.8042766713667335
+ - -2.638817332288961
+ - -3.4447271568536686
+ - -4.380101072906573
+ - -5.022530597497662
+ - -2.6665466436616003
+ - -1.8312577028437933
+ - -0.6675525968702383
+ - 0.18747128804865998
+ - 2.437486796518467
+ - 1.7053863451128173
+ - 0.5810531844571067
+ - -0.24944879187360858
+ - -5.985076742322494
+ - -5.659345349890487
+ - -5.142220642662977
+ - -4.580025198103019
+ - 5.407526755507464
+ - 5.459292718102927
+ - 5.244121585275281
+ - 5.031926747530027
+ - -3.3801539657652455
+ - -3.8987395666686337
+ - -4.550752917251129
+ - -4.84118262507802
+ - 3.0642355002447905
+ - 3.846780946746151
+ - 4.737892826806682
+ - 5.34840700671059
+ - 2.502867605804233
+ - 1.6448228693005809
+ - 0.45509852038254245
+ - -0.410048102267543
+ - -2.2827294014746053
+ - -1.521526950852852
+ - -0.367773232669422
+ - 0.4829521042680715
+ - 5.634401817257453
+ - 5.261603907979955
+ - 4.699508538505335
+ - 4.008682263939122
+ - -4.810132860310679
+ - -4.4480232476190835
+ - -3.7660192653785485
+ - -3.234120937954261
+ - 4.981901920970857
+ - 5.191476592644122
+ - 5.418781942637005
+ - 5.377839027607741
+ - -2.4612911102607695
+ - -1.7645580890588894
+ - -0.6951505310802144
+ - 0.0961731740086333
+ - 5.775336174095209
+ - 5.465593446621099
+ - 4.963432075293901
+ - 4.399786591194175
+ - -5.580248319845852
+ - -5.563074457318859
+ - -5.172600298952554
+ - -4.892832016618848
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.5869526460120302
+ - 3.7597083053046583
+ - 5.352006183896954
+ - 6.2327548757914935
+ - -2.185685537149441
+ - -3.554004996802634
+ - -5.273798691710659
+ - -6.482669935584598
+ - -6.2125862395540885
+ - -4.981645905580127
+ - -3.2357160449704683
+ - -1.8635840130906265
+ - 5.717383287641639
+ - 4.7594112980756345
+ - 3.146175432366892
+ - 1.9325935493751087
+ - -9.564514940093686
+ - -9.36272924410329
+ - -8.96662270093328
+ - -8.346957831355926
+ - 8.661194788490437
+ - 9.087065160702608
+ - 9.205160509135448
+ - 9.196203782782941
+ - -3.3959243608040115
+ - -4.480905623745371
+ - -5.897169896857591
+ - -6.6808027541520145
+ - 3.0790738952492616
+ - 4.470262351118946
+ - 6.1816793025151435
+ - 7.380997368876006
+ - 6.058230298023119
+ - 4.743743371823923
+ - 2.8932374577222038
+ - 1.4609412545859426
+ - -5.558795460844134
+ - -4.516130758160357
+ - -2.8003859642847684
+ - -1.5180168690925502
+ - 9.338324799514549
+ - 9.059581930810301
+ - 8.585891632637122
+ - 7.709441417734353
+ - -8.33557136997232
+ - -8.096581737674418
+ - -7.439689011321308
+ - -6.896074699809144
+ - 6.32328069678928
+ - 6.972652523465287
+ - 7.778774571406307
+ - 8.062290361380194
+ - -5.5992146086976975
+ - -4.870245271310703
+ - -3.391985809856984
+ - -2.272197189859851
+ - 9.080956764665556
+ - 8.923907258025752
+ - 8.579680493314802
+ - 7.977676391241045
+ - -8.753960023896045
+ - -9.056739580869294
+ - -8.888388100038435
+ - -8.78000446246963
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.3723430711925377
+ - 2.616873266428219
+ - 4.303243816587492
+ - 5.2989223563491405
+ - -1.060651408034558
+ - -2.4319517482075947
+ - -4.2203176247059835
+ - -5.489979061187245
+ - -7.055833497640041
+ - -5.914411430653692
+ - -4.27785945433522
+ - -2.941918397663827
+ - 6.507217622737287
+ - 5.687496255403555
+ - 4.216347395986997
+ - 3.096866516903256
+ - -9.29126968538252
+ - -9.261990958382555
+ - -9.102288937694297
+ - -8.646147409049263
+ - 8.424029850743295
+ - 9.017235798141721
+ - 9.373608163250042
+ - 9.537608099986256
+ - -2.24967448186417
+ - -3.4377058338160524
+ - -5.009312681488353
+ - -5.937695795106657
+ - 2.0402236911676552
+ - 3.4652343015049234
+ - 5.278082027851042
+ - 6.56014576217958
+ - 6.961971344124626
+ - 5.714708485301308
+ - 3.9436144571265705
+ - 2.5262178521381298
+ - -6.399572634318072
+ - -5.4776027077802505
+ - -3.8778445538069013
+ - -2.6724643542704065
+ - 9.246369350266995
+ - 9.141420731840904
+ - 8.90336031238732
+ - 8.170972957046132
+ - -8.436769402721884
+ - -8.382298598808607
+ - -7.970673537523549
+ - -7.602865432088492
+ - 5.285729411919151
+ - 6.0810455728406305
+ - 7.095809044790935
+ - 7.553761220802144
+ - -4.670548605578815
+ - -5.803676874711044
+ - -4.488340068875895
+ - -3.4762855236945547
+ - 8.74390729023946
+ - 8.768122701246623
+ - 8.673448313802162
+ - 8.24491366073371
+ - -8.418283100634216
+ - -8.885155775998125
+ - -8.959968069011174
+ - -9.031859147746808
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.07937945220808733
+ - 1.0268089659175008
+ - 2.3082248848751354
+ - 3.1091194878084223
+ - 0.0776528767619405
+ - -0.9094971072433166
+ - -2.24514288063882
+ - -3.2024266158419135
+ - -5.696996217404446
+ - -4.943973833558628
+ - -3.8501467433077634
+ - -2.9176218284982434
+ - 5.263102469432536
+ - 4.777501320077363
+ - 3.826880023034713
+ - 3.0930361914549582
+ - -6.46949679654918
+ - -6.577185682959519
+ - -6.638876964606483
+ - -6.433271732667121
+ - 5.873530302824159
+ - 6.4244552543618365
+ - 6.858210124182712
+ - 7.105055450137407
+ - -0.7605232863615254
+ - -1.690709571709798
+ - -2.9354146210249144
+ - -3.7102256611664104
+ - 0.6902244225080083
+ - 1.7389639720995937
+ - 3.116711476479265
+ - 4.099285408528334
+ - 5.674718601796645
+ - 4.829041819951137
+ - 3.616221475292883
+ - 2.609304938965687
+ - -5.223798883167922
+ - -4.651659010329087
+ - -3.5891900021841305
+ - -2.7808812540016854
+ - 6.572518983033905
+ - 6.626819084207226
+ - 6.631652052215384
+ - 6.213114746479881
+ - -6.135153881340962
+ - -6.233711547756701
+ - -6.121074415080167
+ - -5.988078984126429
+ - 3.0222527865605016
+ - 3.7023804952848254
+ - 4.586906690402337
+ - 5.045985026653917
+ - -2.661650011286079
+ - -3.636606137883188
+ - -4.041772871588551
+ - -3.3952596417304943
+ - 6.028749745493161
+ - 6.181395230576047
+ - 6.2996025410606356
+ - 6.121247145573064
+ - -5.795896851947293
+ - -6.253664527412949
+ - -6.4888373933030605
+ - -6.674986704456255
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.7786334789287528
+ - 0.6388337466565192
+ - 2.553776040852886
+ - 3.791898563576751
+ - 0.9389711046590471
+ - -0.48513371989369247
+ - -2.459442127714265
+ - -3.883027975674145
+ - -8.826033150513917
+ - -7.80717585135778
+ - -6.312016366944685
+ - -4.995393642625083
+ - 8.161773870778369
+ - 7.563943930081496
+ - 6.2991088737403205
+ - 5.311245997627561
+ - -9.11792216637159
+ - -9.399865745678287
+ - -9.662530416132356
+ - -9.486593312517753
+ - 8.28600449475541
+ - 9.202593410567458
+ - 10.002563584358663
+ - 10.485281877467381
+ - -0.25275922632195963
+ - -1.6683825054234487
+ - -3.5754908802832417
+ - -4.797965824949734
+ - 0.23045871959171663
+ - 1.765952869073876
+ - 3.825063001695404
+ - 5.3012189530679645
+ - 8.838418627128526
+ - 7.6697092660816635
+ - 5.981118370731205
+ - 4.541686971549767
+ - -8.142612954828666
+ - -7.407223715478168
+ - -5.962091839812353
+ - -4.854387286337062
+ - 9.399600817174749
+ - 9.605588375866907
+ - 9.7857835225228
+ - 9.288826988039627
+ - -8.91161541859326
+ - -9.189237225159784
+ - -9.207311407223404
+ - -9.144993398321274
+ - 3.590520396593433
+ - 4.677489195316174
+ - 6.1049727379649665
+ - 6.894484172191966
+ - -3.1511517392704977
+ - -4.613024538803412
+ - -6.419884346924382
+ - -5.775847539407281
+ - 8.436151619366345
+ - 8.789290495329043
+ - 9.143028358087273
+ - 9.013654853411422
+ - -8.101754105850487
+ - -8.881773325617077
+ - -9.399294173290286
+ - -9.799964731935498
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.9575558817354362
+ - -0.4838485959833389
+ - 1.5042467299358269
+ - 2.8425231431186178
+ - 2.028818202417018
+ - 0.6157423984451514
+ - -1.406226612164792
+ - -2.8752620869520817
+ - -9.563395372239224
+ - -8.641961843245063
+ - -7.2682895420621145
+ - -5.9999104050928995
+ - 8.853459988879596
+ - 8.396538581315248
+ - 7.282889327452037
+ - 6.396623656285086
+ - -8.761732292585265
+ - -9.209436837859501
+ - -9.700472326022279
+ - -9.68600247416768
+ - 7.973205168433465
+ - 9.044290401584288
+ - 10.069200770132166
+ - 10.71615388770271
+ - 0.8694796413025089
+ - -0.6329546503851505
+ - -2.6731469465040267
+ - -4.025060339833964
+ - -0.7866437534500089
+ - 0.7668596065089965
+ - 2.9048995588326423
+ - 4.44743868981424
+ - 9.63475560433147
+ - 8.543157901882907
+ - 6.9486741622389285
+ - 5.5378891521084475
+ - -8.884252375308684
+ - -8.273968093933231
+ - -6.956289727092988
+ - -5.934638835526951
+ - 9.217754376065036
+ - 9.591504000767458
+ - 10.00012054793889
+ - 9.64876300698252
+ - -8.923236479547631
+ - -9.378395874447342
+ - -9.63589360680923
+ - -9.745929658196834
+ - 2.5417941085452367
+ - 3.7606943492888987
+ - 5.378024324822841
+ - 6.330212813780343
+ - -2.2130959433763437
+ - -3.7370931610373215
+ - -5.677067276567085
+ - -6.895572462857976
+ - 8.024305848959823
+ - 8.551064330026891
+ - 9.145125541466957
+ - 9.1864797664042
+ - -7.694522689562554
+ - -8.627207625865019
+ - -9.377207512520972
+ - -9.950065052703609
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.0181052728734663
+ - -1.168386723862554
+ - -0.02426804064078975
+ - 0.7868968902407496
+ - 1.9852567474477232
+ - 1.2228164996859419
+ - 0.08074116617829043
+ - -0.7577359891238078
+ - -5.814072318533891
+ - -5.3895815077240306
+ - -4.737619546874094
+ - -4.084136561661872
+ - 5.389765531546062
+ - 5.253852819927093
+ - 4.767744900693578
+ - 4.365811918626444
+ - -4.495670712571954
+ - -4.873563411260704
+ - -5.32553812168247
+ - -5.447695714204094
+ - 4.1002047460539615
+ - 4.809294892680167
+ - 5.549920557821722
+ - 6.035343312072224
+ - 1.3785252137626653
+ - 0.48850233209288146
+ - -0.7323254617455489
+ - -1.5745217286597235
+ - -1.2486259723082593
+ - -0.3861444888174285
+ - 0.84447405842989
+ - 1.7399341895233356
+ - 5.9005261258980575
+ - 5.366790983204119
+ - 4.572246062899106
+ - 3.825246378580108
+ - -5.446809040453767
+ - -5.2144544000424995
+ - -4.597862227270358
+ - -4.109509824738766
+ - 4.885016394465272
+ - 5.224152805715833
+ - 5.631180099173636
+ - 5.556667136937754
+ - -4.880085522120523
+ - -5.271533067907286
+ - -5.604934377466117
+ - -5.803822111621349
+ - 0.542721269472078
+ - 1.3143206760128991
+ - 2.3500503001924584
+ - 3.0008302592984473
+ - -0.45244324078718495
+ - -1.334352046541815
+ - -2.500500490324436
+ - -3.3286545255325364
+ - 4.048319670502067
+ - 4.475693590990272
+ - 4.9935319323296135
+ - 5.153619915542679
+ - -3.872025096181282
+ - -4.504095316853021
+ - -5.1007340722209715
+ - -5.552117119346135
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.726944764943545
+ - -5.606867652321003
+ - -5.4585787734982985
+ - -5.102065093598078
+ - 5.269923365760098
+ - 5.482289584391239
+ - 5.46629078428222
+ - 5.400100569820071
+ - -2.656860740294712
+ - -3.2502878286229104
+ - -4.015210839433139
+ - -4.399160432671672
+ - 2.505318638098385
+ - 3.2664649069395875
+ - 4.152282400646836
+ - 4.762850546384523
+ - 2.767876417040001
+ - 1.9817784339512252
+ - 0.8848096413847515
+ - 0.06908963364983149
+ - -2.4616276341596257
+ - -1.8014799056960318
+ - -0.781033132238274
+ - -0.02473337593748124
+ - 5.561852081498074
+ - 5.290823621381486
+ - 4.846143687932883
+ - 4.34349065110986
+ - -5.040945703633382
+ - -5.122479909201572
+ - -4.961698550891172
+ - -4.79811584188034
+ - 2.946294125656627
+ - 3.4561848976397442
+ - 4.107553783880326
+ - 4.408492309295336
+ - -2.7537663823965786
+ - -3.452244450499977
+ - -4.241037903387755
+ - -4.788254615836006
+ - -1.9394284454514799
+ - -1.1350368432583573
+ - -0.02866993968137633
+ - 0.7444149143400197
+ - 0.9312969311140247
+ - 0.08664843347401889
+ - -1.0919553009964105
+ - -1.9487544494537798
+ - -5.569629233291084
+ - -5.0396508709778285
+ - -4.261865612938953
+ - -3.5472810534919463
+ - 4.975166935630247
+ - 4.830999871780227
+ - 4.375049106497207
+ - 3.994159952695698
+ - -2.9666866701623533
+ - -2.149735366888868
+ - -1.0039312369401616
+ - -0.1477128900613261
+ - 2.9068370122989906
+ - 2.2405658641500845
+ - 1.1516114891621354
+ - 0.3469973899293093
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -9.589915675478714
+ - -9.617713314560438
+ - -9.678903287785888
+ - -9.276235862497021
+ - 8.788281551150844
+ - 9.381231304712632
+ - 9.676579519293956
+ - 9.796808332818301
+ - -3.066295225366156
+ - -4.239608638107781
+ - -5.78170670986346
+ - -6.648231106410625
+ - 2.917672198959028
+ - 4.306787618876354
+ - 6.016389061788517
+ - 7.213723492985525
+ - 6.185719332920579
+ - 4.89797431609173
+ - 3.0796151152136817
+ - 1.6668167676436714
+ - -5.530206808123531
+ - -4.559832175205457
+ - -2.95907679175459
+ - -1.7546870399067185
+ - 9.47827044085679
+ - 9.249642596049508
+ - 8.806656158534555
+ - 8.153473159849286
+ - -8.590788202988028
+ - -8.979945754119516
+ - -9.04348844490169
+ - -9.00705518357925
+ - 3.5553635703921067
+ - 4.611415702340214
+ - 5.9924387454911265
+ - 6.738175666301861
+ - -3.342351764630441
+ - -4.647605582425087
+ - -6.222033678544702
+ - -7.331453155284366
+ - -4.826074370099056
+ - -3.494882897268316
+ - -1.6471066016195264
+ - -0.2542117683806465
+ - 3.035833272743336
+ - 1.648037672736004
+ - -0.34878699766028975
+ - -1.8127265750645405
+ - -10.036673666761162
+ - -9.314992566526211
+ - -8.228470550783411
+ - -7.144973592896698
+ - 8.956260503337198
+ - 8.950437331009553
+ - 8.471952149155342
+ - 8.030848308139886
+ - -6.268676260635605
+ - -5.083217977879214
+ - -3.19687457728726
+ - -1.7229672632625241
+ - 6.255512254999799
+ - 5.2524398006172595
+ - 3.489308485678379
+ - 2.18954003679246
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -8.700230176349656
+ - -8.895993990481221
+ - -9.182137345314363
+ - -8.961629299487766
+ - 7.945886830945942
+ - 8.660681353105161
+ - 9.168674590169479
+ - 9.449930975977024
+ - -1.7515009011816698
+ - -2.949796924712393
+ - -4.543477249911632
+ - -5.496223000334576
+ - 1.6950109751874896
+ - 3.0406170782453072
+ - 4.760226866250649
+ - 5.976826472802792
+ - 6.7674776115936135
+ - 5.620509393423302
+ - 3.984662527416468
+ - 2.668019728435943
+ - -6.066451022674786
+ - -5.286742273885555
+ - -3.914977904428968
+ - -2.8685629788519003
+ - 8.721750220242388
+ - 8.682155411020432
+ - 8.505037873060877
+ - 8.052932308503118
+ - -7.905267624248269
+ - -8.446569404451123
+ - -8.752188386494105
+ - -8.89610374013009
+ - 2.198479134932396
+ - 3.3072499229219274
+ - 4.776463654929857
+ - 5.633202113870938
+ - -2.086735492281112
+ - -3.371966533043981
+ - -4.98928326042454
+ - -6.139662619653581
+ - -5.554546744281746
+ - -4.3586147228330265
+ - -2.685886262895881
+ - -1.3489319789886147
+ - 3.854311420414964
+ - 2.6150796272071544
+ - 0.7862018826423605
+ - -0.5636878725794587
+ - -9.6347451437467
+ - -9.10355043224019
+ - -8.27870828442888
+ - -7.380003347545967
+ - 8.59124816875205
+ - 8.761516609478717
+ - 8.539805024299492
+ - 8.286200624351633
+ - -4.987965298885437
+ - -5.717028540907208
+ - -4.029781708450007
+ - -2.662696663541174
+ - 6.709408678799106
+ - 5.883311165749115
+ - 4.328721898578164
+ - 3.1849905620162184
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -5.677596449506235
+ - -5.943380294501585
+ - -6.3167744934938055
+ - -6.2900728209162144
+ - 5.163410204205464
+ - 5.773009747331292
+ - 6.298799035688705
+ - 6.621698151857945
+ - -0.30909112709728187
+ - -1.19939538566345
+ - -2.396939058737489
+ - -3.1535304901367196
+ - 0.3356361281900668
+ - 1.28284126779658
+ - 2.5414930303833367
+ - 3.4409180371139882
+ - 5.351637997959483
+ - 4.620395918472951
+ - 3.5640583628562545
+ - 2.6765855547584136
+ - -4.808104489615962
+ - -4.380737132179041
+ - -3.5506916743824597
+ - -2.905246935639669
+ - 5.7910355470254595
+ - 5.90102556596539
+ - 5.96736336406843
+ - 5.786026888476995
+ - -5.249041399820738
+ - -5.75464411802276
+ - -6.1547829773068825
+ - -6.391930511574442
+ - 0.6034367035318667
+ - 1.4489622498357648
+ - 2.58281630681944
+ - 3.2877418470382467
+ - -0.5964830395599705
+ - -1.5170007831142223
+ - -2.7253603923981666
+ - -3.5925289638688285
+ - -4.576756676479734
+ - -3.8058340298926456
+ - -2.717177988768625
+ - -1.7853964058235396
+ - 3.405640718323175
+ - 2.612979295512277
+ - 1.4054846053873646
+ - 0.5069583781126018
+ - -6.71575872642823
+ - -6.469094976541486
+ - -6.061029183512
+ - -5.542759232365596
+ - 5.9835472036695245
+ - 6.236745190403442
+ - 6.2639549300091995
+ - 6.21709119592537
+ - -2.6891852409505748
+ - -3.3975955469161434
+ - -3.543919437396393
+ - -2.6275737686481384
+ - 5.215497650617669
+ - 4.744321848591476
+ - 3.7662256687915234
+ - 3.0485442000235934
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -7.617291246060718
+ - -8.12366297905796
+ - -8.827180338110109
+ - -8.918532905054281
+ - 6.903655320132627
+ - 7.8768454370377405
+ - 8.793091307292832
+ - 9.377528491752676
+ - 0.4902195437314625
+ - -0.8217918351517107
+ - -2.5994184052961455
+ - -3.7608225083555196
+ - -0.38579733925520165
+ - 0.9599833910854967
+ - 2.7967299136433175
+ - 4.117913811488774
+ - 8.19492995378483
+ - 7.232581219295769
+ - 5.827492060045259
+ - 4.60615880446446
+ - -7.372318404922662
+ - -6.887335945060639
+ - -5.8444008197978015
+ - -5.019057645253926
+ - 7.877344553522513
+ - 8.172305926748717
+ - 8.45871876278316
+ - 8.338810260338812
+ - -7.140228408528469
+ - -7.983898435783511
+ - -8.738527828732819
+ - -9.212121576267885
+ - -0.09243099950257501
+ - 1.1743088627838116
+ - 2.88551473388463
+ - 3.9895238302643703
+ - 0.030175263836929214
+ - -1.2935951651419602
+ - -3.0807316966038445
+ - -4.370529655294701
+ - -7.173389219145013
+ - -6.14941766668271
+ - -4.692015934276385
+ - -3.377538160122888
+ - 5.535353612175546
+ - 4.489289211242844
+ - 2.854067729344586
+ - 1.6294538571164852
+ - -9.47491815134871
+ - -9.252480863905848
+ - -8.846300252453089
+ - -8.224983124243183
+ - 8.436944036930777
+ - 8.93082701513415
+ - 9.153863454694468
+ - 9.219724026487723
+ - -2.9938755637802874
+ - -4.095483701059594
+ - -5.538656698687381
+ - -4.490987083989969
+ - 7.905667468173235
+ - 7.347221200185408
+ - 6.0744650375376885
+ - 5.142732842406278
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -6.694424416778344
+ - -7.349306842448078
+ - -8.251386043194058
+ - -8.509854050420255
+ - 6.033926829921476
+ - 7.106834576171237
+ - 8.207454970355798
+ - 8.93295865786039
+ - 1.6986666777168475
+ - 0.38092450660859806
+ - -1.4208533550533544
+ - -2.6465678274217326
+ - -1.5104904016899492
+ - -0.22271529671748033
+ - 1.5989842878773481
+ - 2.92049446958515
+ - 8.624105402096504
+ - 7.804570229821517
+ - 6.58671645596368
+ - 5.470390299164409
+ - -7.7703176169138715
+ - -7.467934323788478
+ - -6.6503927557737805
+ - -5.981942722560856
+ - 7.07408889310228
+ - 7.539824100162081
+ - 8.068123777785145
+ - 8.135606287111319
+ - -6.412329751919761
+ - -7.385428727088298
+ - -8.353766263651014
+ - -8.987746221793543
+ - -1.345033015640811
+ - -0.0463341423953879
+ - 1.7237294930752274
+ - 2.9157061921224483
+ - 1.1900242371207856
+ - -0.09773436163211217
+ - -1.9008630834440137
+ - -3.211449401638441
+ - -7.75164750174557
+ - -6.86620633141062
+ - -5.589834396444317
+ - -4.344435233194401
+ - 6.218448141726226
+ - 5.32350019736686
+ - 3.865099011074315
+ - 2.7620707829675464
+ - -8.978190299657804
+ - -8.934713563709883
+ - -8.775710018396586
+ - -8.333367663245388
+ - 7.988058014773552
+ - 8.638125149044397
+ - 9.095482220191428
+ - 9.33372987862767
+ - -1.770838049124269
+ - -2.950790347013145
+ - -4.517513872063885
+ - -5.299937548012559
+ - 8.22051871704828
+ - 7.83299227842853
+ - 6.769773780623418
+ - 5.994551423431634
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.8864539263603914
+ - -3.4567206066283447
+ - -4.235002236191864
+ - -4.590889829236721
+ - 2.5559525060999624
+ - 3.317111434639158
+ - 4.196892563362265
+ - 4.8003718378001325
+ - 2.4717228149914363
+ - 1.6776206373612934
+ - 0.5721564055466022
+ - -0.23759717952552978
+ - -2.2583313484693877
+ - -1.558975186702169
+ - -0.4888697544754474
+ - 0.30096737844772714
+ - 5.669306551834599
+ - 5.351916888477807
+ - 4.850137168747036
+ - 4.309868861748272
+ - -5.121682962897359
+ - -5.161197288585004
+ - -4.94456174805264
+ - -4.7344024660415105
+ - 3.257467970484155
+ - 3.741583606848622
+ - 4.348811924912414
+ - 4.6150539866573235
+ - -2.9530010394210864
+ - -3.6903578653985805
+ - -4.52648213676822
+ - -5.098579901690913
+ - -2.313704810075009
+ - -1.4993564635643812
+ - -0.370993556541288
+ - 0.4471282728196684
+ - 2.1092772657844145
+ - 1.3834139747052845
+ - 0.2869798452385149
+ - -0.5210018448903976
+ - -5.32786052630103
+ - -4.965935885407499
+ - -4.421716772415458
+ - -3.761025381182623
+ - 4.538354526103618
+ - 4.185925223195779
+ - 3.5278902517259083
+ - 3.0155538995076943
+ - -4.764507554822461
+ - -4.954300560878817
+ - -5.157325922477802
+ - -5.108861735839871
+ - 4.2307032011105745
+ - 4.807344906213414
+ - 5.3630713055313155
+ - 5.713235474735947
+ - 0.41670112065510906
+ - -0.3826349925361188
+ - -1.4675238873868106
+ - -2.177511109186429
+ - 5.290376156173059
+ - 5.264946376354126
+ - 4.882431568894719
+ - 4.608026504629882
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 6.004306480708509
+ - 5.808239073190377
+ - 5.557870113469873
+ - 5.124507575226203
+ - -5.5362934838878335
+ - -5.686173788995157
+ - -5.570627733893456
+ - -5.430383632838183
+ - 3.2094870163566833
+ - 3.7765849911464655
+ - 4.498461676107848
+ - 4.832450064560792
+ - -3.018368700766194
+ - -3.781253347453521
+ - -4.640591914811277
+ - -5.227096707350933
+ - -2.426417407457093
+ - -1.593479889575414
+ - -0.4376981897438678
+ - 0.40316174719032905
+ - 2.1490878621458536
+ - 1.4155572442288742
+ - 0.312572097328824
+ - -0.49938255372322826
+ - -5.7806860634241435
+ - -5.4274768220547935
+ - -4.8687728937160735
+ - -4.283972139969811
+ - 5.239215626483266
+ - 5.247239656040437
+ - 4.976637752150263
+ - 4.732314602554067
+ - -3.511587386437498
+ - -3.9841669347916815
+ - -4.578075372989303
+ - -4.819446892045411
+ - 3.2761975664048593
+ - 3.9669161417861085
+ - 4.716162387106705
+ - 5.230676804220652
+ - 1.5493805042066855
+ - 0.7011921418799434
+ - -0.4602484281844691
+ - -1.2406207163447125
+ - -0.5237292229692424
+ - 0.36997932273614703
+ - 1.5985436595158653
+ - 2.4878830207227134
+ - 5.621618333374231
+ - 5.015141620575911
+ - 4.133489535686244
+ - 3.3496208935270273
+ - -5.02441892345716
+ - -4.801034882856904
+ - -4.235611859992024
+ - -3.775963285758886
+ - 4.79998160891694
+ - 5.067580031715139
+ - 5.358830167147625
+ - 5.342651233287019
+ - -2.6220555740669513
+ - -1.8889866321485604
+ - -0.7287886882937459
+ - 0.12938194580261378
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 9.466522412818877
+ - 9.48203705200281
+ - 9.526312926079695
+ - 9.118701313279503
+ - -8.677096403123036
+ - -9.250050170893562
+ - -9.524813025468001
+ - -9.631455100397798
+ - 3.098886488455845
+ - 4.247744555915383
+ - 5.7563898089446575
+ - 6.600114387079716
+ - -2.9466975477149795
+ - -4.311970244461006
+ - -5.987784033531096
+ - -7.160598005508048
+ - -6.025320850292463
+ - -4.752655222945499
+ - -2.95672663810986
+ - -1.5645481078625882
+ - 5.385677756363943
+ - 4.420751604572846
+ - 2.8349652916368364
+ - 1.6428390884558999
+ - -9.34772640507741
+ - -9.110305350599665
+ - -8.657301687228536
+ - -8.002700163892715
+ - 8.472455970933764
+ - 8.843443061229651
+ - 8.888828792945231
+ - 8.840489818600016
+ - -3.5814324899547896
+ - -4.613359331734525
+ - -5.961487186637449
+ - -6.685029271652586
+ - 3.365462184055368
+ - 4.646854063375919
+ - 6.187811524791286
+ - 7.272895061006865
+ - 4.681731702834089
+ - 3.3668462777143766
+ - 1.5425918809780983
+ - 0.17274366533774188
+ - -2.9198455090292748
+ - -1.5485211755991897
+ - 0.42140037057642205
+ - 1.8649816012996208
+ - 9.870527458429631
+ - 9.149494147242699
+ - 8.06570291508776
+ - 6.990254553898844
+ - -8.808443379630079
+ - -8.790419751400098
+ - -8.303240405634902
+ - -7.857562890195375
+ - 6.236905007822773
+ - 6.986460204078254
+ - 7.907251581878764
+ - 8.232392976889093
+ - -5.959710953593771
+ - -5.106669915786826
+ - -3.3630801869622813
+ - -2.077556746931498
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 8.865544941767945
+ - 9.049373778993377
+ - 9.319784122696905
+ - 9.081794383533854
+ - -8.099353838423003
+ - -8.811496426364915
+ - -9.307107821893078
+ - -9.577903471466515
+ - 1.8793574077542854
+ - 3.0881375146225003
+ - 4.694232537324023
+ - 5.649787944698969
+ - -1.8146026524339938
+ - -3.1779411969939666
+ - -4.914748221850774
+ - -6.142499956808266
+ - -6.789990155551067
+ - -5.6192721907401335
+ - -3.9510739342518297
+ - -2.6126181943429705
+ - 6.085403311739773
+ - 5.28164107239661
+ - 3.8764237263960233
+ - 2.805881197504379
+ - -8.87620109604093
+ - -8.82044911784069
+ - -8.619333817362092
+ - -8.145742750500888
+ - 8.045244801638956
+ - 8.57955228187841
+ - 8.868216522468307
+ - 8.998622079537421
+ - -2.334527473330017
+ - -3.4505338849286544
+ - -4.927808624856741
+ - -5.784286467586449
+ - 2.2131789053022937
+ - 3.5135534661638954
+ - 5.144256706207842
+ - 6.303287194691529
+ - 5.552123483172635
+ - 4.3323877729764435
+ - 2.6275428149577262
+ - 1.2719115739728863
+ - -3.826565243485715
+ - -2.5619678098386034
+ - -0.6999276269889748
+ - 0.6736138518605079
+ - 9.76923993959852
+ - 9.216612438293284
+ - 8.361329769990398
+ - 7.437812782960962
+ - -8.711727289364969
+ - -8.869116769219401
+ - -8.623697272102095
+ - -8.35181945730414
+ - 5.146918919951781
+ - 6.019760307380894
+ - 7.122820058026478
+ - 7.61018368357154
+ - -4.902566341526334
+ - -5.892462962793404
+ - -4.304206643375984
+ - -3.1354886694198543
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.88229773818834
+ - 6.139770831211569
+ - 6.502430029977875
+ - 6.459573126612004
+ - -5.352414023839017
+ - -5.96543684418647
+ - -6.4849977895740984
+ - -6.8014737021616805
+ - 0.42833558728873994
+ - 1.3366973196223813
+ - 2.5569953273051365
+ - 3.3233844013532226
+ - -0.4476178004383485
+ - -1.4200174800356236
+ - -2.7063582466087395
+ - -3.6245356234506123
+ - -5.423340187590208
+ - -4.663498060718577
+ - -3.567625360903355
+ - -2.6518185613840624
+ - 4.871365809522785
+ - 4.418030896938872
+ - 3.549614513196716
+ - 2.876047335643721
+ - -5.986941970618126
+ - -6.083289850770131
+ - -6.1284366207134315
+ - -5.92582323681132
+ - 5.426595879549442
+ - 5.930676996725928
+ - 6.3192256872041535
+ - 6.546356054894801
+ - -0.7329491957180585
+ - -1.593149103529892
+ - -2.745188152770234
+ - -3.4566243574568705
+ - 0.7171932672814151
+ - 1.6602954635313254
+ - 2.8923968084360094
+ - 3.775734323152654
+ - 4.618362366447092
+ - 3.8184107843820265
+ - 2.6901238801414404
+ - 1.7324363583650337
+ - -3.4130050019350078
+ - -2.589685955533386
+ - -1.3404715654761836
+ - -0.41183316313728185
+ - 6.902366667618398
+ - 6.633848634053304
+ - 6.194191031064579
+ - 5.648393477105997
+ - -6.1503989806577986
+ - -6.3943071879502655
+ - -6.4002149845687075
+ - -6.336282947613385
+ - 2.8594953482794288
+ - 3.5753872817279553
+ - 4.499937805682673
+ - 4.969663211966751
+ - -2.7095680225505347
+ - -3.5697982008685054
+ - -3.779980082288261
+ - -3.0327034169134968
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 7.995950605631128
+ - 8.490457873572382
+ - 9.178862579305695
+ - 9.24331021458327
+ - -7.25272014561177
+ - -8.235881380422635
+ - -9.14554478333317
+ - -9.721642780961725
+ - -0.2908378463806648
+ - 1.0573300829412087
+ - 2.881052715503425
+ - 4.064008580286435
+ - 0.19823854568317129
+ - -1.1959037104970585
+ - -3.0873388790810354
+ - -4.445892969516357
+ - -8.35134215421851
+ - -7.336527052133342
+ - -5.858589497089079
+ - -4.5841252726700175
+ - 7.510928911083417
+ - 6.979981936611801
+ - 5.867723636981323
+ - 4.991310532461579
+ - -8.242261762430047
+ - -8.51544058331302
+ - -8.767278531467102
+ - -8.610902008249528
+ - 7.470964719504398
+ - 8.315693174919172
+ - 9.053984808378768
+ - 9.512689705963778
+ - -0.12601218064506509
+ - -1.4229972922834724
+ - -3.1722925377569227
+ - -4.292052386277365
+ - 0.17366231538368962
+ - 1.5412892407811676
+ - 3.37623118475851
+ - 4.698899024669292
+ - 7.2745517938903825
+ - 6.197124068990957
+ - 4.666487153138375
+ - 3.3025804480660175
+ - -5.571610619448515
+ - -4.469242962834325
+ - -2.7564917479177344
+ - -1.475728154143338
+ - 9.830996330901499
+ - 9.57067431576902
+ - 9.109364731696912
+ - 8.438860510060858
+ - -8.755174263290296
+ - -9.23548474895202
+ - -9.423486214437139
+ - -9.460789337575372
+ - 3.294533048639487
+ - 4.413522275142944
+ - 5.875774431463057
+ - 6.67038045159237
+ - -3.103745784528165
+ - -4.388856933572982
+ - -5.915848982633422
+ - -5.138090546551447
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 7.333866844130699
+ - 7.992192075211267
+ - 8.900500571940668
+ - 9.133468678619217
+ - -6.619665028755279
+ - -7.7337579553805025
+ - -8.85630874090669
+ - -9.59143367221052
+ - -1.5038118414575943
+ - -0.10658755017737134
+ - 1.799829199501105
+ - 3.0848749712807813
+ - 1.324815449336292
+ - -0.05637945345166269
+ - -1.993644206497723
+ - -3.396205682936832
+ - -9.047329843954799
+ - -8.14212817747638
+ - -6.803157477015167
+ - -5.592302510371664
+ - 8.148842530382211
+ - 7.7826938519664335
+ - 6.859166136055977
+ - 6.110839955839106
+ - -7.707231426158384
+ - -8.159285957617307
+ - -8.66014251992471
+ - -8.685380789603593
+ - 6.986190552564525
+ - 7.986992277292095
+ - 8.9618775675009
+ - 9.595077356716311
+ - 1.117537183000397
+ - -0.2529820861838535
+ - -2.117146252183549
+ - -3.3605268121541116
+ - -0.9759721911133548
+ - 0.39976080713637496
+ - 2.3096310858466538
+ - 3.69553282557987
+ - 8.084404434565705
+ - 7.110310846569086
+ - 5.710765504015522
+ - 4.371807113837327
+ - -6.431125279091976
+ - -5.443825675534633
+ - -3.85211770322865
+ - -2.651273174548175
+ - 9.652353521685841
+ - 9.561907287261498
+ - 9.331955176592716
+ - 8.81815206408905
+ - -8.589590732197435
+ - -9.24090553389991
+ - -9.668337049744888
+ - -9.878538447219306
+ - 2.182309500792072
+ - 3.4153096346495624
+ - 5.04763571741042
+ - 5.997616869709577
+ - -2.0257571685968108
+ - -3.3685033880327695
+ - -5.044103594668432
+ - -6.151716411202377
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.6960292729545956
+ - 4.2043708124871655
+ - 4.900902518450582
+ - 5.168226637115852
+ - -3.3080594613029555
+ - -4.052625284351276
+ - -4.866875769977382
+ - -5.415616149793349
+ - -1.8245784724928535
+ - -0.9818628300084508
+ - 0.18042943743249953
+ - 1.0005451483086085
+ - 1.6532588231532248
+ - 0.868804353931996
+ - -0.28208089879173154
+ - -1.1238741755814865
+ - -5.755990930581445
+ - -5.321860089051329
+ - -4.6613681618435185
+ - -4.014989946884873
+ - 5.19310020499391
+ - 5.112768251269593
+ - 4.730666506509606
+ - 4.401407274140266
+ - -4.011336879072003
+ - -4.41290608287103
+ - -4.89803000819207
+ - -5.056189395421426
+ - 3.636220823617101
+ - 4.335486923645174
+ - 5.0835246704633565
+ - 5.585854173281072
+ - 1.6265105273175346
+ - 0.7798007357105944
+ - -0.3836276398932674
+ - -1.1967991350218594
+ - -1.470781927073984
+ - -0.6728190252345353
+ - 0.48531837294939606
+ - 1.3327323164357885
+ - 5.292010244638124
+ - 4.813274971502514
+ - 4.111701844592318
+ - 3.361040375834324
+ - -4.380044792408996
+ - -3.9029914974763202
+ - -3.0829071031570874
+ - -2.455187898195841
+ - 5.412361518780309
+ - 5.494675496518424
+ - 5.545347872557243
+ - 5.3736563551413745
+ - -4.811211008113227
+ - -5.321202626007872
+ - -5.756496637825529
+ - -6.014183925309918
+ - 0.37597836351619157
+ - 1.1755769645847405
+ - 2.2492746053657253
+ - 2.9187480573964484
+ - -0.3129794751138226
+ - -1.131135062587442
+ - -2.2127540650445257
+ - -3.0181173888246984
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.492743107121975
+ - 3.0529918685728945
+ - 3.8167572991360235
+ - 4.1816394358107125
+ - -2.1965619590782084
+ - -2.9241724343250284
+ - -3.779334020863257
+ - -4.368915462948434
+ - -2.5439811841575333
+ - -1.805014945954839
+ - -0.7729922378990005
+ - -0.007485484173216213
+ - 2.3285658185376072
+ - 1.690682394046485
+ - 0.6995402343830858
+ - -0.034356374349056494
+ - -5.355204724828045
+ - -5.089573902171907
+ - -4.661727121893046
+ - -4.1812780244172325
+ - 4.840027241803606
+ - 4.914141699421087
+ - 4.75903552763922
+ - 4.595915326965713
+ - -2.8619487083519504
+ - -3.346715590642029
+ - -3.9604314319465463
+ - -4.2461778829312475
+ - 2.594507027377418
+ - 3.3060890247951646
+ - 4.1266979174621525
+ - 4.691080403118436
+ - 2.4062125457597996
+ - 1.6430634271827211
+ - 0.5826568027922108
+ - -0.19547055615476636
+ - -2.1972822033862953
+ - -1.530266241973178
+ - -0.5083045515584698
+ - 0.24664126747008502
+ - 5.068507524592335
+ - 4.7606223682270645
+ - 4.292074464374302
+ - 3.6923821861900397
+ - -4.356459175702973
+ - -4.059974069048888
+ - -3.484818754087397
+ - -3.0337167659934536
+ - 4.324910713356429
+ - 4.537902282483241
+ - 4.777160801404846
+ - 4.768792909866823
+ - -3.838757950688047
+ - -4.406501448208781
+ - -4.970817569091092
+ - -5.331461929756625
+ - -0.6376696450694237
+ - 0.12103290289776775
+ - 1.1542993783668145
+ - 1.8406404089669737
+ - 0.6605831271282911
+ - -0.0653835744135692
+ - -1.0868932416514943
+ - -1.8456564694057207
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.235890224194508
+ - 2.807219076128523
+ - 3.585336185023662
+ - 3.9710430090336954
+ - -1.9593022398861755
+ - -2.683293434792612
+ - -3.5471878851427863
+ - -4.14548724062507
+ - -2.6975445390134007
+ - -1.9807245984649513
+ - -0.9765091675438949
+ - -0.22265921539699166
+ - 2.472716523125441
+ - 1.8661200829457925
+ - 0.9090766066590984
+ - 0.19821156850076824
+ - -5.26965309520876
+ - -5.039990205077771
+ - -4.661803745331588
+ - -4.216773797013519
+ - 4.764660457862879
+ - 4.87174297173944
+ - 4.765091165167413
+ - 4.637434921838023
+ - -2.616600865390678
+ - -3.119127083888625
+ - -3.76029209337889
+ - -4.07327321727877
+ - 2.372143304310482
+ - 3.086354247227812
+ - 3.9224541415849234
+ - 4.500082426942815
+ - 2.5726473614735537
+ - 1.8273350637430172
+ - 0.7889194125347471
+ - 0.018272557946200987
+ - -2.352360600958745
+ - -1.7132965101098179
+ - -0.720402820407152
+ - 0.014804797501591006
+ - 5.020798742079932
+ - 4.749383169000023
+ - 4.330576716546481
+ - 3.763110248758084
+ - -4.351424601369301
+ - -4.0934834928440855
+ - -3.570610620689766
+ - -3.1572092582783284
+ - 4.092783990432089
+ - 4.333669935007802
+ - 4.613183960769793
+ - 4.639679051411793
+ - -3.631178591426942
+ - -4.211249777237997
+ - -4.803106895113078
+ - -5.185728422819381
+ - -0.8540424586791816
+ - -0.10406956242552928
+ - 0.9205664960526411
+ - 1.610508071815361
+ - 0.8683993292893312
+ - 0.162111222746574
+ - -0.8465675348704372
+ - -1.5953835286674956
+observable_names:
+- BPMZ5D1R
+- BPMZ6D1R
+- BPMZ7D1R
+- BPMZ1T1R
+- BPMZ2T1R
+- BPMZ3T1R
+- BPMZ4T1R
+- BPMZ41T1R
+- BPMZ5T1R
+- BPMZ6T1R
+- BPMZ7T1R
+- BPMZ1D2R
+- BPMZ2D2R
+- BPMZ3D2R
+- BPMZ4D2R
+- BPMZ5D2R
+- BPMZ6D2R
+- BPMZ7D2R
+- BPMZ1T2R
+- BPMZ2T2R
+- BPMZ3T2R
+- BPMZ4T2R
+- BPMZ41T2R
+- BPMZ42T2R
+- BPMZ43T2R
+- BPMZ5T2R
+- BPMZ6T2R
+- BPMZ7T2R
+- BPMZ1D3R
+- BPMZ2D3R
+- BPMZ3D3R
+- BPMZ4D3R
+- BPMZ5D3R
+- BPMZ6D3R
+- BPMZ7D3R
+- BPMZ1T3R
+- BPMZ2T3R
+- BPMZ3T3R
+- BPMZ4T3R
+- BPMZ5T3R
+- BPMZ6T3R
+- BPMZ7T3R
+- BPMZ1D4R
+- BPMZ2D4R
+- BPMZ3D4R
+- BPMZ4D4R
+- BPMZ5D4R
+- BPMZ6D4R
+- BPMZ7D4R
+- BPMZ1T4R
+- BPMZ2T4R
+- BPMZ3T4R
+- BPMZ4T4R
+- BPMZ5T4R
+- BPMZ6T4R
+- BPMZ7T4R
+- BPMZ1D5R
+- BPMZ2D5R
+- BPMZ3D5R
+- BPMZ4D5R
+- BPMZ5D5R
+- BPMZ6D5R
+- BPMZ7D5R
+- BPMZ1T5R
+- BPMZ2T5R
+- BPMZ3T5R
+- BPMZ4T5R
+- BPMZ5T5R
+- BPMZ6T5R
+- BPMZ7T5R
+- BPMZ1D6R
+- BPMZ2D6R
+- BPMZ3D6R
+- BPMZ4D6R
+- BPMZ41D6R
+- BPMZ42D6R
+- BPMZ43D6R
+- BPMZ44D6R
+- BPMZ6D6R
+- BPMZ7D6R
+- BPMZ1T6R
+- BPMZ2T6R
+- BPMZ3T6R
+- BPMZ4T6R
+- BPMZ41T6R
+- BPMZ5T6R
+- BPMZ6T6R
+- BPMZ7T6R
+- BPMZ1D7R
+- BPMZ2D7R
+- BPMZ3D7R
+- BPMZ4D7R
+- BPMZ5D7R
+- BPMZ6D7R
+- BPMZ7D7R
+- BPMZ1T7R
+- BPMZ2T7R
+- BPMZ3T7R
+- BPMZ4T7R
+- BPMZ41T7R
+- BPMZ5T7R
+- BPMZ6T7R
+- BPMZ7T7R
+- BPMZ1D8R
+- BPMZ2D8R
+- BPMZ3D8R
+- BPMZ4D8R
+- BPMZ5D8R
+- BPMZ6D8R
+- BPMZ7D8R
+- BPMZ1T8R
+- BPMZ2T8R
+- BPMZ3T8R
+- BPMZ4T8R
+- BPMZ5T8R
+- BPMZ6T8R
+- BPMZ7T8R
+- BPMZ1D1R
+- BPMZ2D1R
+- BPMZ3D1R
+- BPMZ4D1R
+- BPMZ41D1R
+- BPMZ42D1R
+- BPMZ5D1R
+- BPMZ6D1R
+- BPMZ7D1R
+- BPMZ1T1R
+- BPMZ2T1R
+- BPMZ3T1R
+- BPMZ4T1R
+- BPMZ41T1R
+- BPMZ5T1R
+- BPMZ6T1R
+- BPMZ7T1R
+- BPMZ1D2R
+- BPMZ2D2R
+- BPMZ3D2R
+- BPMZ4D2R
+- BPMZ5D2R
+- BPMZ6D2R
+- BPMZ7D2R
+- BPMZ1T2R
+- BPMZ2T2R
+- BPMZ3T2R
+- BPMZ4T2R
+- BPMZ41T2R
+- BPMZ42T2R
+- BPMZ43T2R
+- BPMZ5T2R
+- BPMZ6T2R
+- BPMZ7T2R
+- BPMZ1D3R
+- BPMZ2D3R
+- BPMZ3D3R
+- BPMZ4D3R
+- BPMZ5D3R
+- BPMZ6D3R
+- BPMZ7D3R
+- BPMZ1T3R
+- BPMZ2T3R
+- BPMZ3T3R
+- BPMZ4T3R
+- BPMZ5T3R
+- BPMZ6T3R
+- BPMZ7T3R
+- BPMZ1D4R
+- BPMZ2D4R
+- BPMZ3D4R
+- BPMZ4D4R
+- BPMZ5D4R
+- BPMZ6D4R
+- BPMZ7D4R
+- BPMZ1T4R
+- BPMZ2T4R
+- BPMZ3T4R
+- BPMZ4T4R
+- BPMZ5T4R
+- BPMZ6T4R
+- BPMZ7T4R
+- BPMZ1D5R
+- BPMZ2D5R
+- BPMZ3D5R
+- BPMZ4D5R
+- BPMZ5D5R
+- BPMZ6D5R
+- BPMZ7D5R
+- BPMZ1T5R
+- BPMZ2T5R
+- BPMZ3T5R
+- BPMZ4T5R
+- BPMZ5T5R
+- BPMZ6T5R
+- BPMZ7T5R
+- BPMZ1D6R
+- BPMZ2D6R
+- BPMZ3D6R
+- BPMZ4D6R
+- BPMZ41D6R
+- BPMZ42D6R
+- BPMZ43D6R
+- BPMZ44D6R
+- BPMZ6D6R
+- BPMZ7D6R
+- BPMZ1T6R
+- BPMZ2T6R
+- BPMZ3T6R
+- BPMZ4T6R
+- BPMZ41T6R
+- BPMZ5T6R
+- BPMZ6T6R
+- BPMZ7T6R
+- BPMZ1D7R
+- BPMZ2D7R
+- BPMZ3D7R
+- BPMZ4D7R
+- BPMZ5D7R
+- BPMZ6D7R
+- BPMZ7D7R
+- BPMZ1T7R
+- BPMZ2T7R
+- BPMZ3T7R
+- BPMZ4T7R
+- BPMZ41T7R
+- BPMZ5T7R
+- BPMZ6T7R
+- BPMZ7T7R
+- BPMZ1D8R
+- BPMZ2D8R
+- BPMZ3D8R
+- BPMZ4D8R
+- BPMZ5D8R
+- BPMZ6D8R
+- BPMZ7D8R
+- BPMZ1T8R
+- BPMZ2T8R
+- BPMZ3T8R
+- BPMZ4T8R
+- BPMZ5T8R
+- BPMZ6T8R
+- BPMZ7T8R
+- BPMZ1D1R
+- BPMZ2D1R
+- BPMZ3D1R
+- BPMZ4D1R
+- BPMZ41D1R
+- BPMZ42D1R
+observable_planes:
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+rf_response: null
+type: pyaml.tuning_tools.orbit_response_matrix_data
+variable_names:
+- HS4M2D1R
+- HS1MT1R
+- HS4M1T1R
+- HS4M2T1R
+- HS1MD2R
+- HS4M1D2R
+- HS4M2D2R
+- HS1MT2R
+- HS4M1T2R
+- HS4M2T2R
+- HS1MD3R
+- HS4M1D3R
+- HS4M2D3R
+- HS1MT3R
+- HS4M1T3R
+- HS4M2T3R
+- HS1MD4R
+- HS4M1D4R
+- HS4M2D4R
+- HS1MT4R
+- HS4M1T4R
+- HS4M2T4R
+- HS1MD5R
+- HS4M1D5R
+- HS4M2D5R
+- HS1MT5R
+- HS4M1T5R
+- HS4M2T5R
+- HS1MD6R
+- HS4M1D6R
+- HS4M2D6R
+- HS1MT6R
+- HS4M1T6R
+- HS4M2T6R
+- HS1MD7R
+- HS4M1D7R
+- HS4M2D7R
+- HS1MT7R
+- HS4M1T7R
+- HS4M2T7R
+- HS1MD8R
+- HS4M1D8R
+- HS4M2D8R
+- HS1MT8R
+- HS4M1T8R
+- HS4M2T8R
+- HS1MD1R
+- HS4M1D1R
+- VS3M2D1R
+- VS2M2D1R
+- VS2M1T1R
+- VS3M1T1R
+- VS3M2T1R
+- VS2M2T1R
+- VS2M1D2R
+- VS3M1D2R
+- VS3M2D2R
+- VS2M2D2R
+- VS2M1T2R
+- VS3M1T2R
+- VS3M2T2R
+- VS2M2T2R
+- VS2M1D3R
+- VS3M1D3R
+- VS3M2D3R
+- VS2M2D3R
+- VS2M1T3R
+- VS3M1T3R
+- VS3M2T3R
+- VS2M2T3R
+- VS2M1D4R
+- VS3M1D4R
+- VS3M2D4R
+- VS2M2D4R
+- VS2M1T4R
+- VS3M1T4R
+- VS3M2T4R
+- VS2M2T4R
+- VS2M1D5R
+- VS3M1D5R
+- VS3M2D5R
+- VS2M2D5R
+- VS2M1T5R
+- VS3M1T5R
+- VS3M2T5R
+- VS2M2T5R
+- VS2M1D6R
+- VS3M1D6R
+- VS3M2D6R
+- VS2M2D6R
+- VS2M1T6R
+- VS3M1T6R
+- VS3M2T6R
+- VS2M2T6R
+- VS2M1D7R
+- VS3M1D7R
+- VS3M2D7R
+- VS2M2D7R
+- VS2M1T7R
+- VS3M1T7R
+- VS3M2T7R
+- VS2M2T7R
+- VS2M1D8R
+- VS3M1D8R
+- VS3M2D8R
+- VS2M2D8R
+- VS2M1T8R
+- VS3M1T8R
+- VS3M2T8R
+- VS2M2T8R
+- VS2M1D1R
+- VS3M1D1R
+variable_planes:
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
diff --git a/examples/use_cases/config/bessy2/trm.json b/examples/use_cases/config/bessy2/trm.json
new file mode 100644
index 000000000..fec237467
--- /dev/null
+++ b/examples/use_cases/config/bessy2/trm.json
@@ -0,0 +1,207 @@
+{
+ "type": "pyaml.tuning_tools.response_matrix_data",
+ "matrix": [
+ [
+ 0.29477536239053137,
+ 0.3145290611406004,
+ 0.39691751610559933,
+ 0.20692422092571938,
+ 0.2012214548297031,
+ 0.4105806227472364,
+ 0.37238257461047475,
+ 0.1799871613117343,
+ 0.16823049211356356,
+ 0.4013783173340002,
+ 0.42524609069616304,
+ 0.17905906572135422,
+ 0.18699340774031015,
+ 0.405030526797745,
+ 0.39614034530233155,
+ 0.1820690464837682,
+ 0.18852517130629742,
+ 0.38062120808590727,
+ 0.38556336254380597,
+ 0.19108331843487036,
+ 0.18080887363547404,
+ 0.41275970476872814,
+ 0.3107392670242959,
+ 0.2086810204848799,
+ 0.15146129155541033,
+ 0.4477920765943999,
+ 0.49447576338179644,
+ 0.1796543789456262,
+ 0.22091115730593636,
+ 0.38923920847477866,
+ 0.28900570246070956,
+ 0.30993397217904395,
+ 1.232529767424273,
+ 1.2887979980025221,
+ 1.5347386947706099,
+ 0.9125359584483128,
+ 0.8949119399692673,
+ 1.5793499596150617,
+ 1.3851419655819264,
+ 0.7520579128894589,
+ 0.7153644167035011,
+ 1.4815841603788016,
+ 1.6009610365408378,
+ 0.794331408492388,
+ 0.8194273952122355,
+ 1.5317800452407937,
+ 1.4874286375810009,
+ 0.7863713791389504,
+ 0.8064327329604382,
+ 1.4361422777597888,
+ 1.461518248998539,
+ 0.821954991030438,
+ 0.789937943904695,
+ 1.662927439662898,
+ 1.142500036244165,
+ 0.8367819926702325,
+ 0.6605545225646381,
+ 1.6417093023146645,
+ 1.8783413003953253,
+ 0.8436029867930905,
+ 0.9738624758348635,
+ 1.5232627588845915,
+ 1.193062089785979,
+ 1.2748707814169702
+ ],
+ [
+ -1.5973733471885687,
+ -1.6257691216448045,
+ -1.4884776663404153,
+ -1.6645711725815637,
+ -1.595491935533211,
+ -1.4574985254633965,
+ -1.4778751667321455,
+ -1.5726655687053892,
+ -1.6915491926161597,
+ -1.536735096530073,
+ -1.4886369600430882,
+ -1.7490042984014131,
+ -1.5184933676282153,
+ -1.3768276942704993,
+ -1.340172269752582,
+ -1.5613005880421582,
+ -1.6709252283497733,
+ -1.3924360017836257,
+ -1.5355831296348654,
+ -1.5101488202806657,
+ -1.5863041147823331,
+ -1.5739010133186682,
+ -1.3724665899994548,
+ -1.5171847362838164,
+ -1.713244312345763,
+ -1.4684790128394187,
+ -1.4702173862413126,
+ -1.7103973096288527,
+ -1.5568542246646722,
+ -1.3965163023765825,
+ -1.5715762555146284,
+ -1.511104004314756,
+ -0.6248129942254543,
+ -0.49812666691462226,
+ -0.4617832850351,
+ -0.6206617906956424,
+ -0.5946818537627685,
+ -0.4584579827326962,
+ -0.46705245202893764,
+ -0.5860713105487747,
+ -0.6306409061129781,
+ -0.4886470787091035,
+ -0.46807802313919566,
+ -0.6543971723826925,
+ -0.568296097225307,
+ -0.44005649905032307,
+ -0.4245624830256922,
+ -0.5921311986512023,
+ -0.6333133367530941,
+ -0.432166530418554,
+ -0.4922935667828199,
+ -0.5628301047078121,
+ -0.5910038116896388,
+ -0.4078121190098649,
+ -0.4683627868051765,
+ -0.575094512312857,
+ -0.6489279502941425,
+ -0.46345649591383875,
+ -0.46417359029105043,
+ -0.6384879195753257,
+ -0.5811367935115719,
+ -0.43328670490949683,
+ -0.4834271859910366,
+ -0.5913511706512331
+ ]
+ ],
+ "variable_names": [
+ "Q3M2D1R",
+ "Q3M1T1R",
+ "Q3M2T1R",
+ "Q3M1D2R",
+ "Q3M2D2R",
+ "Q3M1T2R",
+ "Q3M2T2R",
+ "Q3M1D3R",
+ "Q3M2D3R",
+ "Q3M1T3R",
+ "Q3M2T3R",
+ "Q3M1D4R",
+ "Q3M2D4R",
+ "Q3M1T4R",
+ "Q3M2T4R",
+ "Q3M1D5R",
+ "Q3M2D5R",
+ "Q3M1T5R",
+ "Q3M2T5R",
+ "Q3M1D6R",
+ "Q3M2D6R",
+ "Q3M1T6R",
+ "Q3M2T6R",
+ "Q3M1D7R",
+ "Q3M2D7R",
+ "Q3M1T7R",
+ "Q3M2T7R",
+ "Q3M1D8R",
+ "Q3M2D8R",
+ "Q3M1T8R",
+ "Q3M2T8R",
+ "Q3M1D1R",
+ "Q4M2D1R",
+ "Q4M1T1R",
+ "Q4M2T1R",
+ "Q4M1D2R",
+ "Q4M2D2R",
+ "Q4M1T2R",
+ "Q4M2T2R",
+ "Q4M1D3R",
+ "Q4M2D3R",
+ "Q4M1T3R",
+ "Q4M2T3R",
+ "Q4M1D4R",
+ "Q4M2D4R",
+ "Q4M1T4R",
+ "Q4M2T4R",
+ "Q4M1D5R",
+ "Q4M2D5R",
+ "Q4M1T5R",
+ "Q4M2T5R",
+ "Q4M1D6R",
+ "Q4M2D6R",
+ "Q4M1T6R",
+ "Q4M2T6R",
+ "Q4M1D7R",
+ "Q4M2D7R",
+ "Q4M1T7R",
+ "Q4M2T7R",
+ "Q4M1D8R",
+ "Q4M2D8R",
+ "Q4M1T8R",
+ "Q4M2T8R",
+ "Q4M1D1R"
+ ],
+ "observable_names": [
+ "BETATRON_TUNE.x",
+ "BETATRON_TUNE.y"
+ ]
+}
diff --git a/examples/use_cases/config/esrf/catalogs/ebs_bpm_catalogs.yaml b/examples/use_cases/config/esrf/catalogs/ebs_bpm_catalogs.yaml
new file mode 100644
index 000000000..ced75f81c
--- /dev/null
+++ b/examples/use_cases/config/esrf/catalogs/ebs_bpm_catalogs.yaml
@@ -0,0 +1,3852 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/HOffset
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c04-04/HOffset
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/VOffset
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c04-04/VOffset
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-10/SA_VPosition
+ unit: m
diff --git a/examples/use_cases/config/esrf/catalogs/ebs_catalogs.yaml b/examples/use_cases/config/esrf/catalogs/ebs_catalogs.yaml
new file mode 100644
index 000000000..d15349d6f
--- /dev/null
+++ b/examples/use_cases/config/esrf/catalogs/ebs_catalogs.yaml
@@ -0,0 +1,8 @@
+type: tango.pyaml.static_catalog
+entries:
+ - catalogs/ebs_bpm_catalogs.yaml
+ - catalogs/ebs_rf_catalogs.yaml
+ - catalogs/ebs_diag_catalogs.yaml
+ - catalogs/ebs_magnets_catalogs.yaml
+ - catalogs/ebs_sh_catalogs.yaml
+ - catalogs/ebs_sext_catalogs.yaml
diff --git a/examples/use_cases/config/esrf/catalogs/ebs_diag_catalogs.yaml b/examples/use_cases/config/esrf/catalogs/ebs_diag_catalogs.yaml
new file mode 100644
index 000000000..84e820625
--- /dev/null
+++ b/examples/use_cases/config/esrf/catalogs/ebs_diag_catalogs.yaml
@@ -0,0 +1,12 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/beam-tune/main/Qh
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/beam-tune/main/Qh
+ unit: ""
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/beam-tune/main/Qv
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/beam-tune/main/Qv
+ unit: ""
diff --git a/examples/use_cases/config/esrf/catalogs/ebs_magnets_catalogs.yaml b/examples/use_cases/config/esrf/catalogs/ebs_magnets_catalogs.yaml
new file mode 100644
index 000000000..79923fd6c
--- /dev/null
+++ b/examples/use_cases/config/esrf/catalogs/ebs_magnets_catalogs.yaml
@@ -0,0 +1,875 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c04-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c04-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c05-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c05-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c05-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c05-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c06-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c06-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c06-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c06-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c07-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c07-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c07-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c07-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c08-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c08-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c08-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c08-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c09-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c09-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c09-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c09-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c10-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c10-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c10-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c10-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c11-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c11-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c11-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c11-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c12-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c12-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c12-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c12-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c13-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c13-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c13-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c13-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c14-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c14-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c14-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c14-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c15-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c15-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c15-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c15-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c16-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c16-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c16-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c16-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c17-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c17-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c17-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c17-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c18-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c18-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c18-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c18-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c19-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c19-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c19-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c19-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c20-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c20-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c20-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c20-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c21-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c21-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c21-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c21-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c22-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c22-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c22-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c22-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c23-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c23-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c23-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c23-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c24-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c24-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c24-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c24-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c25-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c25-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c25-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c25-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c26-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c26-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c26-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c26-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c27-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c27-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c27-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c27-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c28-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c28-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c28-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c28-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c29-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c29-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c29-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c29-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c30-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c30-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c30-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c30-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c31-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c31-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c31-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c31-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c32-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c32-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c32-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c32-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c01-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c01-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c01-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c01-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c02-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c02-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c02-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c02-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c03-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c03-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c04-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c04-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c05-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c05-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c05-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c05-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c06-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c06-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c06-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c06-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c07-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c07-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c07-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c07-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c08-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c08-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c08-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c08-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c09-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c09-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c09-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c09-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c10-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c10-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c10-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c10-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c11-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c11-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c11-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c11-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c12-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c12-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c12-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c12-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c13-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c13-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c13-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c13-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c14-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c14-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c14-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c14-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c15-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c15-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c15-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c15-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c16-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c16-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c16-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c16-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c17-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c17-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c17-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c17-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c18-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c18-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c18-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c18-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c19-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c19-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c19-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c19-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c20-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c20-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c20-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c20-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c21-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c21-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c21-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c21-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c22-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c22-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c22-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c22-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c23-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c23-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c23-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c23-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c24-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c24-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c24-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c24-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c25-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c25-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c25-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c25-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c26-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c26-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c26-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c26-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c27-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c27-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c27-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c27-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c28-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c28-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c28-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c28-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c29-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c29-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c29-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c29-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c30-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c30-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c30-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c30-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c31-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c31-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c31-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c31-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c32-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c32-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c32-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c32-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c01-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c01-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c01-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c01-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c02-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c02-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c02-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c02-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c03-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c03-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf6/c04-b/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf6/c04-b/current
+ range: [10,109]
+ unit: A
diff --git a/examples/use_cases/config/esrf/catalogs/ebs_rf_catalogs.yaml b/examples/use_cases/config/esrf/catalogs/ebs_rf_catalogs.yaml
new file mode 100644
index 000000000..0739d3526
--- /dev/null
+++ b/examples/use_cases/config/esrf/catalogs/ebs_rf_catalogs.yaml
@@ -0,0 +1,30 @@
+- type: tango.pyaml.static_catalog_entry
+ key: sys/ringsimulator/ebs/RfVoltage
+ device:
+ type: tango.pyaml.attribute
+ attribute: sys/ringsimulator/ebs/RfVoltage
+ unit: V
+- type: tango.pyaml.static_catalog_entry
+ key: sy/ms/1/Frequency
+ device:
+ type: tango.pyaml.attribute
+ attribute: sy/ms/1/Frequency
+ unit: Hz
+- type: tango.pyaml.static_catalog_entry
+ key: sr/tra/1/RfVoltage
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/tra/1/RfVoltage
+ unit: V
+- type: tango.pyaml.static_catalog_entry
+ key: sr/tra/2/RfVoltage
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/tra/2/RfVoltage
+ unit: V
+- type: tango.pyaml.static_catalog_entry
+ key: sr/tra/harm/RfVoltage
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/tra/harm/RfVoltage
+ unit: V
diff --git a/examples/use_cases/config/esrf/catalogs/ebs_sext_catalogs.yaml b/examples/use_cases/config/esrf/catalogs/ebs_sext_catalogs.yaml
new file mode 100644
index 000000000..d62c07305
--- /dev/null
+++ b/examples/use_cases/config/esrf/catalogs/ebs_sext_catalogs.yaml
@@ -0,0 +1,4608 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-e/Strength
+ unit: m-2
diff --git a/examples/use_cases/config/esrf/catalogs/ebs_sh_catalogs.yaml b/examples/use_cases/config/esrf/catalogs/ebs_sh_catalogs.yaml
new file mode 100644
index 000000000..72282b1d7
--- /dev/null
+++ b/examples/use_cases/config/esrf/catalogs/ebs_sh_catalogs.yaml
@@ -0,0 +1,1752 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch5/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch5/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch6/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch6/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c04-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c04-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c04-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c04-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c04-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c04-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c04-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c04-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c04-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c04-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c04-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c04-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c05-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c05-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c05-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c05-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c05-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c05-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c05-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c05-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c05-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c05-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c05-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c05-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c05-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c05-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c05-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c05-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c05-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c05-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c06-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c06-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c06-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c06-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c06-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c06-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c06-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c06-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c06-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c06-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c06-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c06-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c06-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c06-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c06-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c06-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c06-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c06-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c07-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c07-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c07-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c07-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c07-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c07-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c07-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c07-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c07-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c07-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c07-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c07-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c07-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c07-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c07-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c07-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c07-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c07-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c08-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c08-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c08-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c08-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c08-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c08-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c08-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c08-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c08-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c08-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c08-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c08-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c08-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c08-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c08-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c08-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c08-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c08-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c09-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c09-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c09-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c09-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c09-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c09-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c09-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c09-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c09-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c09-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c09-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c09-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c09-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c09-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c09-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c09-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c09-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c09-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c10-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c10-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c10-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c10-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c10-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c10-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c10-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c10-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c10-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c10-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c10-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c10-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c10-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c10-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c10-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c10-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c10-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c10-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c11-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c11-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c11-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c11-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c11-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c11-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c11-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c11-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c11-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c11-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c11-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c11-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c11-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c11-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c11-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c11-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c11-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c11-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c12-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c12-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c12-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c12-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c12-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c12-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c12-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c12-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c12-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c12-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c12-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c12-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c12-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c12-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c12-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c12-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c12-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c12-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c13-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c13-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c13-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c13-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c13-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c13-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c13-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c13-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c13-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c13-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c13-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c13-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c13-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c13-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c13-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c13-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c13-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c13-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c14-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c14-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c14-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c14-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c14-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c14-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c14-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c14-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c14-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c14-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c14-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c14-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c14-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c14-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c14-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c14-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c14-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c14-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c15-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c15-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c15-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c15-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c15-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c15-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c15-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c15-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c15-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c15-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c15-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c15-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c15-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c15-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c15-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c15-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c15-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c15-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c16-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c16-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c16-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c16-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c16-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c16-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c16-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c16-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c16-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c16-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c16-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c16-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c16-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c16-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c16-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c16-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c16-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c16-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c17-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c17-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c17-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c17-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c17-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c17-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c17-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c17-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c17-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c17-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c17-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c17-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c17-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c17-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c17-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c17-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c17-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c17-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c18-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c18-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c18-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c18-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c18-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c18-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c18-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c18-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c18-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c18-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c18-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c18-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c18-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c18-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c18-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c18-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c18-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c18-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c19-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c19-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c19-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c19-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c19-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c19-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c19-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c19-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c19-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c19-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c19-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c19-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c19-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c19-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c19-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c19-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c19-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c19-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c20-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c20-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c20-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c20-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c20-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c20-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c20-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c20-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c20-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c20-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c20-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c20-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c20-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c20-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c20-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c20-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c20-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c20-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c21-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c21-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c21-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c21-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c21-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c21-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c21-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c21-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c21-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c21-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c21-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c21-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c21-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c21-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c21-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c21-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c21-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c21-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c22-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c22-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c22-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c22-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c22-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c22-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c22-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c22-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c22-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c22-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c22-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c22-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c22-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c22-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c22-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c22-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c22-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c22-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c23-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c23-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c23-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c23-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c23-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c23-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c23-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c23-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c23-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c23-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c23-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c23-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c23-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c23-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c23-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c23-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c23-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c23-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c24-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c24-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c24-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c24-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c24-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c24-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c24-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c24-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c24-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c24-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c24-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c24-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c24-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c24-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c24-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c24-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c24-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c24-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c25-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c25-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c25-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c25-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c25-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c25-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c25-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c25-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c25-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c25-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c25-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c25-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c25-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c25-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c25-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c25-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c25-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c25-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c26-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c26-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c26-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c26-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c26-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c26-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c26-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c26-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c26-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c26-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c26-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c26-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c26-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c26-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c26-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c26-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c26-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c26-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c27-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c27-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c27-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c27-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c27-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c27-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c27-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c27-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c27-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c27-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c27-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c27-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c27-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c27-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c27-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c27-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c27-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c27-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c28-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c28-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c28-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c28-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c28-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c28-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c28-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c28-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c28-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c28-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c28-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c28-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c28-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c28-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c28-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c28-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c28-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c28-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c29-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c29-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c29-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c29-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c29-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c29-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c29-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c29-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c29-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c29-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c29-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c29-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c29-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c29-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c29-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c29-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c29-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c29-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c30-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c30-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c30-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c30-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c30-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c30-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c30-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c30-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c30-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c30-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c30-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c30-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c30-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c30-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c30-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c30-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c30-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c30-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c31-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c31-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c31-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c31-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c31-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c31-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c31-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c31-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c31-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c31-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c31-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c31-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c31-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c31-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c31-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c31-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c31-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c31-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c32-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c32-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c32-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c32-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c32-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c32-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c32-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c32-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c32-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c32-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c32-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c32-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c32-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c32-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c32-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c32-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c32-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c32-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c01-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c01-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c01-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c01-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c01-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c01-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c01-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c01-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c01-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c01-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c01-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c01-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c02-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c02-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c02-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c02-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c02-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c02-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c02-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c02-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c02-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c02-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c02-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c02-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c03-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c03-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c03-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c03-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c03-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c03-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c03-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c03-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c03-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c03-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c03-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c03-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch5/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch5/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch6/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch6/current
+ unit: A
diff --git a/examples/use_cases/config/esrf/catalogs/sr_catalogs.yaml b/examples/use_cases/config/esrf/catalogs/sr_catalogs.yaml
new file mode 100644
index 000000000..dc3bc686d
--- /dev/null
+++ b/examples/use_cases/config/esrf/catalogs/sr_catalogs.yaml
@@ -0,0 +1,204 @@
+type: tango.pyaml.static_catalog
+entries:
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-01/SA_HPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-01/SA_VPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/HOffset
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-01/HOffset
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/VOffset
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-01/VOffset
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/Tilt_Angle
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-01/Tilt_Angle
+ unit: rad
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-02/SA_HPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-02/SA_VPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-03/SA_HPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-03/SA_VPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-04/Position
+ index: 0
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-04/Position
+ index: 1
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-01/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-01/SA_VPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-02/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-02/SA_VPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-04/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-04/SA_VPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-05/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-05/SA_VPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-06/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-06/SA_VPosition
+ unit: m
+
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/m-qf1/c01-a/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-qf1/c01-a/strength
+ unit: m-1
+
+ - type: tango.pyaml.static_catalog_entry
+ key: sr/ps-qf1/c01-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/ps-qf1/c01-a/current
+ unit: A
+
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/hst-sh1/c01-a/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/hst-sh1/c01-a/strength
+ unit: rad
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/vst-sh1/c01-a/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vst-sh1/c01-a/strength
+ unit: rad
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/sqp-sh1/c01-a/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/sqp-sh1/c01-a/strength
+ unit: m-1
+
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch1/current
+ unit: A
+ range: [-1.5, 1.5]
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch2/current
+ unit: A
+ range: [null, 1.5]
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch3/current
+ unit: A
+ range: [-1.5, null]
+
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch1/current
+ unit: A
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch2/current
+ unit: A
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch3/current
+ unit: A
diff --git a/examples/use_cases/config/esrf/esrf.yaml b/examples/use_cases/config/esrf/esrf.yaml
new file mode 100644
index 000000000..a3bdba75a
--- /dev/null
+++ b/examples/use_cases/config/esrf/esrf.yaml
@@ -0,0 +1,8609 @@
+type: pyaml.accelerator
+machine: sr
+facility: ESRF
+energy: 6e9
+alphac: 8.623614679299252e-05
+simulators:
+ - type: pyaml.lattice.simulator
+ lattice: sr/lattices/ebs.mat
+ name: design
+controls:
+ - type: tango.pyaml.controlsystem
+ tango_host: ebs-simu-3:10000
+ name: live
+ catalog: catalogs/ebs_catalogs.yaml
+data_folder: /data/store
+arrays:
+ - type: pyaml.arrays.magnet
+ name: HCorr
+ elements:
+ - S*-H
+ - type: pyaml.arrays.magnet
+ name: VCorr
+ elements:
+ - S*-V
+ - type: pyaml.arrays.magnet
+ name: Skews
+ elements:
+ - S*-SQ
+ - type: pyaml.arrays.magnet
+ name: Sext
+ elements:
+ - SF*-S
+ - SD*-S
+ - type: pyaml.arrays.bpm
+ name: BPM
+ elements:
+ - BPM*
+ - type: pyaml.arrays.magnet
+ name: QForTune
+ elements:
+ - QD2*
+ - QF1*
+devices:
+- type: pyaml.tuning_tools.bba
+ name: BBA-BPM_C04-04
+ bpm_array_name: BPM
+ bpm_name : BPM_C04-04
+ hcorr_name : SF2E-C02-H
+ vcorr_name : SD1A-C26-V
+ quad_name : QF6B-C04
+ n_step: 7
+ hcorr_delta : 1e-05
+ vcorr_delta : 1e-05
+ hquad_delta : 0.005
+ vquad_delta : 0.005
+- type: pyaml.tuning_tools.bba2
+ name: BBA2-BPM_C04-04
+ bpm_array_name: BPM
+ bpm_name : BPM_C04-04
+ hcorr_name : SF2E-C02-H
+ vcorr_name : SD1A-C26-V
+ quad_name : QF6B-C04
+ tune_correction_name: DEFAULT_TUNE_CORRECTION
+ hcorr_delta : 1e-05
+ vcorr_delta : 1e-05
+ quad_delta : 0.005
+- type: pyaml.diagnostics.tune_monitor
+ name: BETATRON_TUNE
+ tune_h: srdiag/beam-tune/main/Qh
+ tune_v: srdiag/beam-tune/main/Qv
+- type: pyaml.tuning_tools.chromaticity_monitor
+ name: CHROMATICITY_MONITOR
+ betatron_tune_name: BETATRON_TUNE
+ rf_plant_name: RF
+ bpm_array_name: BPM
+ n_step: 5
+- type: pyaml.tuning_tools.tune
+ name: DEFAULT_TUNE_CORRECTION
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ response_matrix: ${path:trm.json}
+- type: pyaml.tuning_tools.tune_response_matrix
+ name: DEFAULT_TUNE_RESPONSE_MATRIX
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ quad_delta: 1e-4
+- type: pyaml.tuning_tools.chromaticity_response_matrix
+ name: DEFAULT_CHROMATICITY_RESPONSE_MATRIX
+ sextu_array_name: Sext
+ chromaticity_name: CHROMATICITY_MONITOR
+ sextu_delta: 1e-6
+- type: pyaml.tuning_tools.chromaticity
+ name: DEFAULT_CHROMATICITY_CORRECTION
+ chromaticity_monitor_name: CHROMATICITY_MONITOR
+ sextu_array_name: Sext
+ response_matrix: ${path:chroma_resp.json}
+- type: pyaml.tuning_tools.orbit
+ bpm_array_name: BPM
+ hcorr_array_name: HCorr
+ vcorr_array_name: VCorr
+ rf_plant_name: RF
+ name: DEFAULT_ORBIT_CORRECTION
+ singular_values: 162
+ response_matrix: ${path:orm.json}
+- type: pyaml.tuning_tools.orbit_response_matrix
+ bpm_array_name: BPM
+ hcorr_array_name: HCorr
+ vcorr_array_name: VCorr
+ corrector_delta: 1e-6
+ name: DEFAULT_ORBIT_RESPONSE_MATRIX
+- type: pyaml.tuning_tools.dispersion
+ bpm_array_name: BPM
+ rf_plant_name: RF
+ frequency_delta: 10
+ name: DEFAULT_DISPERSION
+- type: pyaml.rf.rf_plant
+ name: RF
+ masterclock: sy/ms/1/Frequency
+ transmitters:
+ - type: pyaml.rf.rf_transmitter
+ name: RFTRA
+ cavities: [CAV_C05_01,CAV_C05_02,CAV_C05_03,CAV_C05_04,CAV_C05_05,CAV_C07_01,CAV_C07_02,CAV_C07_03,CAV_C07_04,CAV_C07_05,CAV_C25_01,CAV_C25_02,CAV_C25_03]
+ harmonic: 1
+ distribution: 1
+ voltage: sys/ringsimulator/ebs/RfVoltage
+- type: pyaml.magnet.quadrupole
+ name: QF6B-C04
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998960997
+ crosstalk: 0.99918
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF6_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf6/c04-b/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C04
+ mapping:
+ - [B0, SH1A-C04-H]
+ - [A0, SH1A-C04-V]
+ - [A1, SH1A-C04-SQ]
+ - [B2, SH1A-C04-S]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ pseudo_factors: [1.0,-1.0,-1.0,-1.0]
+ units: [rad,rad,m-1,m-2]
+ hardware_units: ["A","A","A","A","A"]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SHI_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SHI_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SHI_sq_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SHI_sext_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SHI_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c04-a-ch1/current
+ - srmag/ps-corr-sh1/c04-a-ch2/current
+ - srmag/ps-corr-sh1/c04-a-ch3/current
+ - srmag/ps-corr-sh1/c04-a-ch5/current
+ - srmag/ps-corr-sh1/c04-a-ch6/current
+- type: pyaml.magnet.cfm_magnet
+ name: SJ1A-C04
+ mapping:
+ - [B0, SJ1A-C04-H]
+ - [A0, SJ1A-C04-V]
+ - [A1, SJ1A-C04-SQ]
+ - [B2, SJ1A-C04-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c04-a/Strength_H
+ - srmag/m-sd1/c04-a/Strength_V
+ - srmag/m-sd1/c04-a/Strength_SQ
+ - srmag/m-sd1/c04-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SJ2A-C04
+ mapping:
+ - [B0, SJ2A-C04-H]
+ - [A0, SJ2A-C04-V]
+ - [A1, SJ2A-C04-SQ]
+ - [B2, SJ2A-C04-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c04-a/Strength_H
+ - srmag/m-sf2/c04-a/Strength_V
+ - srmag/m-sf2/c04-a/Strength_SQ
+ - srmag/m-sf2/c04-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SJ1B-C04
+ mapping:
+ - [B0, SJ1B-C04-H]
+ - [A0, SJ1B-C04-V]
+ - [A1, SJ1B-C04-SQ]
+ - [B2, SJ1B-C04-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c04-b/Strength_H
+ - srmag/m-sd1/c04-b/Strength_V
+ - srmag/m-sd1/c04-b/Strength_SQ
+ - srmag/m-sd1/c04-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C04
+ mapping:
+ - [B0, SH2B-C04-H]
+ - [A0, SH2B-C04-V]
+ - [A1, SH2B-C04-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c04-b-ch1/current
+ - srmag/ps-corr-sh2/c04-b-ch2/current
+ - srmag/ps-corr-sh2/c04-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SJ1D-C04
+ mapping:
+ - [B0, SJ1D-C04-H]
+ - [A0, SJ1D-C04-V]
+ - [A1, SJ1D-C04-SQ]
+ - [B2, SJ1D-C04-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c04-d/Strength_H
+ - srmag/m-sd1/c04-d/Strength_V
+ - srmag/m-sd1/c04-d/Strength_SQ
+ - srmag/m-sd1/c04-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SJ2E-C04
+ mapping:
+ - [B0, SJ2E-C04-H]
+ - [A0, SJ2E-C04-V]
+ - [A1, SJ2E-C04-SQ]
+ - [B2, SJ2E-C04-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c04-e/Strength_H
+ - srmag/m-sf2/c04-e/Strength_V
+ - srmag/m-sf2/c04-e/Strength_SQ
+ - srmag/m-sf2/c04-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SJ1E-C04
+ mapping:
+ - [B0, SJ1E-C04-H]
+ - [A0, SJ1E-C04-V]
+ - [A1, SJ1E-C04-SQ]
+ - [B2, SJ1E-C04-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c04-e/Strength_H
+ - srmag/m-sd1/c04-e/Strength_V
+ - srmag/m-sd1/c04-e/Strength_SQ
+ - srmag/m-sd1/c04-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C04
+ mapping:
+ - [B0, SH3E-C04-H]
+ - [A0, SH3E-C04-V]
+ - [A1, SH3E-C04-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c04-e-ch1/current
+ - srmag/ps-corr-sh3/c04-e-ch2/current
+ - srmag/ps-corr-sh3/c04-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C05
+ mapping:
+ - [B0, SH1A-C05-H]
+ - [A0, SH1A-C05-V]
+ - [A1, SH1A-C05-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c05-a-ch1/current
+ - srmag/ps-corr-sh1/c05-a-ch2/current
+ - srmag/ps-corr-sh1/c05-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C05
+ mapping:
+ - [B0, SD1A-C05-H]
+ - [A0, SD1A-C05-V]
+ - [A1, SD1A-C05-SQ]
+ - [B2, SD1A-C05-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c05-a/Strength_H
+ - srmag/m-sd1/c05-a/Strength_V
+ - srmag/m-sd1/c05-a/Strength_SQ
+ - srmag/m-sd1/c05-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C05
+ mapping:
+ - [B0, SF2A-C05-H]
+ - [A0, SF2A-C05-V]
+ - [A1, SF2A-C05-SQ]
+ - [B2, SF2A-C05-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c05-a/Strength_H
+ - srmag/m-sf2/c05-a/Strength_V
+ - srmag/m-sf2/c05-a/Strength_SQ
+ - srmag/m-sf2/c05-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C05
+ mapping:
+ - [B0, SD1B-C05-H]
+ - [A0, SD1B-C05-V]
+ - [A1, SD1B-C05-SQ]
+ - [B2, SD1B-C05-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c05-b/Strength_H
+ - srmag/m-sd1/c05-b/Strength_V
+ - srmag/m-sd1/c05-b/Strength_SQ
+ - srmag/m-sd1/c05-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C05
+ mapping:
+ - [B0, SH2B-C05-H]
+ - [A0, SH2B-C05-V]
+ - [A1, SH2B-C05-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c05-b-ch1/current
+ - srmag/ps-corr-sh2/c05-b-ch2/current
+ - srmag/ps-corr-sh2/c05-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C05
+ mapping:
+ - [B0, SD1D-C05-H]
+ - [A0, SD1D-C05-V]
+ - [A1, SD1D-C05-SQ]
+ - [B2, SD1D-C05-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c05-d/Strength_H
+ - srmag/m-sd1/c05-d/Strength_V
+ - srmag/m-sd1/c05-d/Strength_SQ
+ - srmag/m-sd1/c05-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C05
+ mapping:
+ - [B0, SF2E-C05-H]
+ - [A0, SF2E-C05-V]
+ - [A1, SF2E-C05-SQ]
+ - [B2, SF2E-C05-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c05-e/Strength_H
+ - srmag/m-sf2/c05-e/Strength_V
+ - srmag/m-sf2/c05-e/Strength_SQ
+ - srmag/m-sf2/c05-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C05
+ mapping:
+ - [B0, SD1E-C05-H]
+ - [A0, SD1E-C05-V]
+ - [A1, SD1E-C05-SQ]
+ - [B2, SD1E-C05-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c05-e/Strength_H
+ - srmag/m-sd1/c05-e/Strength_V
+ - srmag/m-sd1/c05-e/Strength_SQ
+ - srmag/m-sd1/c05-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C05
+ mapping:
+ - [B0, SH3E-C05-H]
+ - [A0, SH3E-C05-V]
+ - [A1, SH3E-C05-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c05-e-ch1/current
+ - srmag/ps-corr-sh3/c05-e-ch2/current
+ - srmag/ps-corr-sh3/c05-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C06
+ mapping:
+ - [B0, SH1A-C06-H]
+ - [A0, SH1A-C06-V]
+ - [A1, SH1A-C06-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c06-a-ch1/current
+ - srmag/ps-corr-sh1/c06-a-ch2/current
+ - srmag/ps-corr-sh1/c06-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C06
+ mapping:
+ - [B0, SD1A-C06-H]
+ - [A0, SD1A-C06-V]
+ - [A1, SD1A-C06-SQ]
+ - [B2, SD1A-C06-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c06-a/Strength_H
+ - srmag/m-sd1/c06-a/Strength_V
+ - srmag/m-sd1/c06-a/Strength_SQ
+ - srmag/m-sd1/c06-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C06
+ mapping:
+ - [B0, SF2A-C06-H]
+ - [A0, SF2A-C06-V]
+ - [A1, SF2A-C06-SQ]
+ - [B2, SF2A-C06-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c06-a/Strength_H
+ - srmag/m-sf2/c06-a/Strength_V
+ - srmag/m-sf2/c06-a/Strength_SQ
+ - srmag/m-sf2/c06-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C06
+ mapping:
+ - [B0, SD1B-C06-H]
+ - [A0, SD1B-C06-V]
+ - [A1, SD1B-C06-SQ]
+ - [B2, SD1B-C06-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c06-b/Strength_H
+ - srmag/m-sd1/c06-b/Strength_V
+ - srmag/m-sd1/c06-b/Strength_SQ
+ - srmag/m-sd1/c06-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C06
+ mapping:
+ - [B0, SH2B-C06-H]
+ - [A0, SH2B-C06-V]
+ - [A1, SH2B-C06-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c06-b-ch1/current
+ - srmag/ps-corr-sh2/c06-b-ch2/current
+ - srmag/ps-corr-sh2/c06-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C06
+ mapping:
+ - [B0, SD1D-C06-H]
+ - [A0, SD1D-C06-V]
+ - [A1, SD1D-C06-SQ]
+ - [B2, SD1D-C06-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c06-d/Strength_H
+ - srmag/m-sd1/c06-d/Strength_V
+ - srmag/m-sd1/c06-d/Strength_SQ
+ - srmag/m-sd1/c06-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C06
+ mapping:
+ - [B0, SF2E-C06-H]
+ - [A0, SF2E-C06-V]
+ - [A1, SF2E-C06-SQ]
+ - [B2, SF2E-C06-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c06-e/Strength_H
+ - srmag/m-sf2/c06-e/Strength_V
+ - srmag/m-sf2/c06-e/Strength_SQ
+ - srmag/m-sf2/c06-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C06
+ mapping:
+ - [B0, SD1E-C06-H]
+ - [A0, SD1E-C06-V]
+ - [A1, SD1E-C06-SQ]
+ - [B2, SD1E-C06-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c06-e/Strength_H
+ - srmag/m-sd1/c06-e/Strength_V
+ - srmag/m-sd1/c06-e/Strength_SQ
+ - srmag/m-sd1/c06-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C06
+ mapping:
+ - [B0, SH3E-C06-H]
+ - [A0, SH3E-C06-V]
+ - [A1, SH3E-C06-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c06-e-ch1/current
+ - srmag/ps-corr-sh3/c06-e-ch2/current
+ - srmag/ps-corr-sh3/c06-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C07
+ mapping:
+ - [B0, SH1A-C07-H]
+ - [A0, SH1A-C07-V]
+ - [A1, SH1A-C07-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c07-a-ch1/current
+ - srmag/ps-corr-sh1/c07-a-ch2/current
+ - srmag/ps-corr-sh1/c07-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C07
+ mapping:
+ - [B0, SD1A-C07-H]
+ - [A0, SD1A-C07-V]
+ - [A1, SD1A-C07-SQ]
+ - [B2, SD1A-C07-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c07-a/Strength_H
+ - srmag/m-sd1/c07-a/Strength_V
+ - srmag/m-sd1/c07-a/Strength_SQ
+ - srmag/m-sd1/c07-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C07
+ mapping:
+ - [B0, SF2A-C07-H]
+ - [A0, SF2A-C07-V]
+ - [A1, SF2A-C07-SQ]
+ - [B2, SF2A-C07-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c07-a/Strength_H
+ - srmag/m-sf2/c07-a/Strength_V
+ - srmag/m-sf2/c07-a/Strength_SQ
+ - srmag/m-sf2/c07-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C07
+ mapping:
+ - [B0, SD1B-C07-H]
+ - [A0, SD1B-C07-V]
+ - [A1, SD1B-C07-SQ]
+ - [B2, SD1B-C07-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c07-b/Strength_H
+ - srmag/m-sd1/c07-b/Strength_V
+ - srmag/m-sd1/c07-b/Strength_SQ
+ - srmag/m-sd1/c07-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C07
+ mapping:
+ - [B0, SH2B-C07-H]
+ - [A0, SH2B-C07-V]
+ - [A1, SH2B-C07-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c07-b-ch1/current
+ - srmag/ps-corr-sh2/c07-b-ch2/current
+ - srmag/ps-corr-sh2/c07-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C07
+ mapping:
+ - [B0, SD1D-C07-H]
+ - [A0, SD1D-C07-V]
+ - [A1, SD1D-C07-SQ]
+ - [B2, SD1D-C07-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c07-d/Strength_H
+ - srmag/m-sd1/c07-d/Strength_V
+ - srmag/m-sd1/c07-d/Strength_SQ
+ - srmag/m-sd1/c07-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C07
+ mapping:
+ - [B0, SF2E-C07-H]
+ - [A0, SF2E-C07-V]
+ - [A1, SF2E-C07-SQ]
+ - [B2, SF2E-C07-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c07-e/Strength_H
+ - srmag/m-sf2/c07-e/Strength_V
+ - srmag/m-sf2/c07-e/Strength_SQ
+ - srmag/m-sf2/c07-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C07
+ mapping:
+ - [B0, SD1E-C07-H]
+ - [A0, SD1E-C07-V]
+ - [A1, SD1E-C07-SQ]
+ - [B2, SD1E-C07-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c07-e/Strength_H
+ - srmag/m-sd1/c07-e/Strength_V
+ - srmag/m-sd1/c07-e/Strength_SQ
+ - srmag/m-sd1/c07-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C07
+ mapping:
+ - [B0, SH3E-C07-H]
+ - [A0, SH3E-C07-V]
+ - [A1, SH3E-C07-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c07-e-ch1/current
+ - srmag/ps-corr-sh3/c07-e-ch2/current
+ - srmag/ps-corr-sh3/c07-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C08
+ mapping:
+ - [B0, SH1A-C08-H]
+ - [A0, SH1A-C08-V]
+ - [A1, SH1A-C08-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c08-a-ch1/current
+ - srmag/ps-corr-sh1/c08-a-ch2/current
+ - srmag/ps-corr-sh1/c08-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C08
+ mapping:
+ - [B0, SD1A-C08-H]
+ - [A0, SD1A-C08-V]
+ - [A1, SD1A-C08-SQ]
+ - [B2, SD1A-C08-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c08-a/Strength_H
+ - srmag/m-sd1/c08-a/Strength_V
+ - srmag/m-sd1/c08-a/Strength_SQ
+ - srmag/m-sd1/c08-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C08
+ mapping:
+ - [B0, SF2A-C08-H]
+ - [A0, SF2A-C08-V]
+ - [A1, SF2A-C08-SQ]
+ - [B2, SF2A-C08-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c08-a/Strength_H
+ - srmag/m-sf2/c08-a/Strength_V
+ - srmag/m-sf2/c08-a/Strength_SQ
+ - srmag/m-sf2/c08-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C08
+ mapping:
+ - [B0, SD1B-C08-H]
+ - [A0, SD1B-C08-V]
+ - [A1, SD1B-C08-SQ]
+ - [B2, SD1B-C08-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c08-b/Strength_H
+ - srmag/m-sd1/c08-b/Strength_V
+ - srmag/m-sd1/c08-b/Strength_SQ
+ - srmag/m-sd1/c08-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C08
+ mapping:
+ - [B0, SH2B-C08-H]
+ - [A0, SH2B-C08-V]
+ - [A1, SH2B-C08-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c08-b-ch1/current
+ - srmag/ps-corr-sh2/c08-b-ch2/current
+ - srmag/ps-corr-sh2/c08-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C08
+ mapping:
+ - [B0, SD1D-C08-H]
+ - [A0, SD1D-C08-V]
+ - [A1, SD1D-C08-SQ]
+ - [B2, SD1D-C08-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c08-d/Strength_H
+ - srmag/m-sd1/c08-d/Strength_V
+ - srmag/m-sd1/c08-d/Strength_SQ
+ - srmag/m-sd1/c08-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C08
+ mapping:
+ - [B0, SF2E-C08-H]
+ - [A0, SF2E-C08-V]
+ - [A1, SF2E-C08-SQ]
+ - [B2, SF2E-C08-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c08-e/Strength_H
+ - srmag/m-sf2/c08-e/Strength_V
+ - srmag/m-sf2/c08-e/Strength_SQ
+ - srmag/m-sf2/c08-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C08
+ mapping:
+ - [B0, SD1E-C08-H]
+ - [A0, SD1E-C08-V]
+ - [A1, SD1E-C08-SQ]
+ - [B2, SD1E-C08-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c08-e/Strength_H
+ - srmag/m-sd1/c08-e/Strength_V
+ - srmag/m-sd1/c08-e/Strength_SQ
+ - srmag/m-sd1/c08-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C08
+ mapping:
+ - [B0, SH3E-C08-H]
+ - [A0, SH3E-C08-V]
+ - [A1, SH3E-C08-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c08-e-ch1/current
+ - srmag/ps-corr-sh3/c08-e-ch2/current
+ - srmag/ps-corr-sh3/c08-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C09
+ mapping:
+ - [B0, SH1A-C09-H]
+ - [A0, SH1A-C09-V]
+ - [A1, SH1A-C09-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c09-a-ch1/current
+ - srmag/ps-corr-sh1/c09-a-ch2/current
+ - srmag/ps-corr-sh1/c09-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C09
+ mapping:
+ - [B0, SD1A-C09-H]
+ - [A0, SD1A-C09-V]
+ - [A1, SD1A-C09-SQ]
+ - [B2, SD1A-C09-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c09-a/Strength_H
+ - srmag/m-sd1/c09-a/Strength_V
+ - srmag/m-sd1/c09-a/Strength_SQ
+ - srmag/m-sd1/c09-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C09
+ mapping:
+ - [B0, SF2A-C09-H]
+ - [A0, SF2A-C09-V]
+ - [A1, SF2A-C09-SQ]
+ - [B2, SF2A-C09-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c09-a/Strength_H
+ - srmag/m-sf2/c09-a/Strength_V
+ - srmag/m-sf2/c09-a/Strength_SQ
+ - srmag/m-sf2/c09-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C09
+ mapping:
+ - [B0, SD1B-C09-H]
+ - [A0, SD1B-C09-V]
+ - [A1, SD1B-C09-SQ]
+ - [B2, SD1B-C09-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c09-b/Strength_H
+ - srmag/m-sd1/c09-b/Strength_V
+ - srmag/m-sd1/c09-b/Strength_SQ
+ - srmag/m-sd1/c09-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C09
+ mapping:
+ - [B0, SH2B-C09-H]
+ - [A0, SH2B-C09-V]
+ - [A1, SH2B-C09-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c09-b-ch1/current
+ - srmag/ps-corr-sh2/c09-b-ch2/current
+ - srmag/ps-corr-sh2/c09-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C09
+ mapping:
+ - [B0, SD1D-C09-H]
+ - [A0, SD1D-C09-V]
+ - [A1, SD1D-C09-SQ]
+ - [B2, SD1D-C09-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c09-d/Strength_H
+ - srmag/m-sd1/c09-d/Strength_V
+ - srmag/m-sd1/c09-d/Strength_SQ
+ - srmag/m-sd1/c09-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C09
+ mapping:
+ - [B0, SF2E-C09-H]
+ - [A0, SF2E-C09-V]
+ - [A1, SF2E-C09-SQ]
+ - [B2, SF2E-C09-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c09-e/Strength_H
+ - srmag/m-sf2/c09-e/Strength_V
+ - srmag/m-sf2/c09-e/Strength_SQ
+ - srmag/m-sf2/c09-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C09
+ mapping:
+ - [B0, SD1E-C09-H]
+ - [A0, SD1E-C09-V]
+ - [A1, SD1E-C09-SQ]
+ - [B2, SD1E-C09-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c09-e/Strength_H
+ - srmag/m-sd1/c09-e/Strength_V
+ - srmag/m-sd1/c09-e/Strength_SQ
+ - srmag/m-sd1/c09-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C09
+ mapping:
+ - [B0, SH3E-C09-H]
+ - [A0, SH3E-C09-V]
+ - [A1, SH3E-C09-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c09-e-ch1/current
+ - srmag/ps-corr-sh3/c09-e-ch2/current
+ - srmag/ps-corr-sh3/c09-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C10
+ mapping:
+ - [B0, SH1A-C10-H]
+ - [A0, SH1A-C10-V]
+ - [A1, SH1A-C10-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c10-a-ch1/current
+ - srmag/ps-corr-sh1/c10-a-ch2/current
+ - srmag/ps-corr-sh1/c10-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C10
+ mapping:
+ - [B0, SD1A-C10-H]
+ - [A0, SD1A-C10-V]
+ - [A1, SD1A-C10-SQ]
+ - [B2, SD1A-C10-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c10-a/Strength_H
+ - srmag/m-sd1/c10-a/Strength_V
+ - srmag/m-sd1/c10-a/Strength_SQ
+ - srmag/m-sd1/c10-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C10
+ mapping:
+ - [B0, SF2A-C10-H]
+ - [A0, SF2A-C10-V]
+ - [A1, SF2A-C10-SQ]
+ - [B2, SF2A-C10-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c10-a/Strength_H
+ - srmag/m-sf2/c10-a/Strength_V
+ - srmag/m-sf2/c10-a/Strength_SQ
+ - srmag/m-sf2/c10-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C10
+ mapping:
+ - [B0, SD1B-C10-H]
+ - [A0, SD1B-C10-V]
+ - [A1, SD1B-C10-SQ]
+ - [B2, SD1B-C10-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c10-b/Strength_H
+ - srmag/m-sd1/c10-b/Strength_V
+ - srmag/m-sd1/c10-b/Strength_SQ
+ - srmag/m-sd1/c10-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C10
+ mapping:
+ - [B0, SH2B-C10-H]
+ - [A0, SH2B-C10-V]
+ - [A1, SH2B-C10-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c10-b-ch1/current
+ - srmag/ps-corr-sh2/c10-b-ch2/current
+ - srmag/ps-corr-sh2/c10-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C10
+ mapping:
+ - [B0, SD1D-C10-H]
+ - [A0, SD1D-C10-V]
+ - [A1, SD1D-C10-SQ]
+ - [B2, SD1D-C10-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c10-d/Strength_H
+ - srmag/m-sd1/c10-d/Strength_V
+ - srmag/m-sd1/c10-d/Strength_SQ
+ - srmag/m-sd1/c10-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C10
+ mapping:
+ - [B0, SF2E-C10-H]
+ - [A0, SF2E-C10-V]
+ - [A1, SF2E-C10-SQ]
+ - [B2, SF2E-C10-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c10-e/Strength_H
+ - srmag/m-sf2/c10-e/Strength_V
+ - srmag/m-sf2/c10-e/Strength_SQ
+ - srmag/m-sf2/c10-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C10
+ mapping:
+ - [B0, SD1E-C10-H]
+ - [A0, SD1E-C10-V]
+ - [A1, SD1E-C10-SQ]
+ - [B2, SD1E-C10-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c10-e/Strength_H
+ - srmag/m-sd1/c10-e/Strength_V
+ - srmag/m-sd1/c10-e/Strength_SQ
+ - srmag/m-sd1/c10-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C10
+ mapping:
+ - [B0, SH3E-C10-H]
+ - [A0, SH3E-C10-V]
+ - [A1, SH3E-C10-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c10-e-ch1/current
+ - srmag/ps-corr-sh3/c10-e-ch2/current
+ - srmag/ps-corr-sh3/c10-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C11
+ mapping:
+ - [B0, SH1A-C11-H]
+ - [A0, SH1A-C11-V]
+ - [A1, SH1A-C11-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c11-a-ch1/current
+ - srmag/ps-corr-sh1/c11-a-ch2/current
+ - srmag/ps-corr-sh1/c11-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C11
+ mapping:
+ - [B0, SD1A-C11-H]
+ - [A0, SD1A-C11-V]
+ - [A1, SD1A-C11-SQ]
+ - [B2, SD1A-C11-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c11-a/Strength_H
+ - srmag/m-sd1/c11-a/Strength_V
+ - srmag/m-sd1/c11-a/Strength_SQ
+ - srmag/m-sd1/c11-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C11
+ mapping:
+ - [B0, SF2A-C11-H]
+ - [A0, SF2A-C11-V]
+ - [A1, SF2A-C11-SQ]
+ - [B2, SF2A-C11-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c11-a/Strength_H
+ - srmag/m-sf2/c11-a/Strength_V
+ - srmag/m-sf2/c11-a/Strength_SQ
+ - srmag/m-sf2/c11-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C11
+ mapping:
+ - [B0, SD1B-C11-H]
+ - [A0, SD1B-C11-V]
+ - [A1, SD1B-C11-SQ]
+ - [B2, SD1B-C11-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c11-b/Strength_H
+ - srmag/m-sd1/c11-b/Strength_V
+ - srmag/m-sd1/c11-b/Strength_SQ
+ - srmag/m-sd1/c11-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C11
+ mapping:
+ - [B0, SH2B-C11-H]
+ - [A0, SH2B-C11-V]
+ - [A1, SH2B-C11-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c11-b-ch1/current
+ - srmag/ps-corr-sh2/c11-b-ch2/current
+ - srmag/ps-corr-sh2/c11-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C11
+ mapping:
+ - [B0, SD1D-C11-H]
+ - [A0, SD1D-C11-V]
+ - [A1, SD1D-C11-SQ]
+ - [B2, SD1D-C11-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c11-d/Strength_H
+ - srmag/m-sd1/c11-d/Strength_V
+ - srmag/m-sd1/c11-d/Strength_SQ
+ - srmag/m-sd1/c11-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C11
+ mapping:
+ - [B0, SF2E-C11-H]
+ - [A0, SF2E-C11-V]
+ - [A1, SF2E-C11-SQ]
+ - [B2, SF2E-C11-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c11-e/Strength_H
+ - srmag/m-sf2/c11-e/Strength_V
+ - srmag/m-sf2/c11-e/Strength_SQ
+ - srmag/m-sf2/c11-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C11
+ mapping:
+ - [B0, SD1E-C11-H]
+ - [A0, SD1E-C11-V]
+ - [A1, SD1E-C11-SQ]
+ - [B2, SD1E-C11-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c11-e/Strength_H
+ - srmag/m-sd1/c11-e/Strength_V
+ - srmag/m-sd1/c11-e/Strength_SQ
+ - srmag/m-sd1/c11-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C11
+ mapping:
+ - [B0, SH3E-C11-H]
+ - [A0, SH3E-C11-V]
+ - [A1, SH3E-C11-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c11-e-ch1/current
+ - srmag/ps-corr-sh3/c11-e-ch2/current
+ - srmag/ps-corr-sh3/c11-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C12
+ mapping:
+ - [B0, SH1A-C12-H]
+ - [A0, SH1A-C12-V]
+ - [A1, SH1A-C12-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c12-a-ch1/current
+ - srmag/ps-corr-sh1/c12-a-ch2/current
+ - srmag/ps-corr-sh1/c12-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C12
+ mapping:
+ - [B0, SD1A-C12-H]
+ - [A0, SD1A-C12-V]
+ - [A1, SD1A-C12-SQ]
+ - [B2, SD1A-C12-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c12-a/Strength_H
+ - srmag/m-sd1/c12-a/Strength_V
+ - srmag/m-sd1/c12-a/Strength_SQ
+ - srmag/m-sd1/c12-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C12
+ mapping:
+ - [B0, SF2A-C12-H]
+ - [A0, SF2A-C12-V]
+ - [A1, SF2A-C12-SQ]
+ - [B2, SF2A-C12-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c12-a/Strength_H
+ - srmag/m-sf2/c12-a/Strength_V
+ - srmag/m-sf2/c12-a/Strength_SQ
+ - srmag/m-sf2/c12-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C12
+ mapping:
+ - [B0, SD1B-C12-H]
+ - [A0, SD1B-C12-V]
+ - [A1, SD1B-C12-SQ]
+ - [B2, SD1B-C12-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c12-b/Strength_H
+ - srmag/m-sd1/c12-b/Strength_V
+ - srmag/m-sd1/c12-b/Strength_SQ
+ - srmag/m-sd1/c12-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C12
+ mapping:
+ - [B0, SH2B-C12-H]
+ - [A0, SH2B-C12-V]
+ - [A1, SH2B-C12-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c12-b-ch1/current
+ - srmag/ps-corr-sh2/c12-b-ch2/current
+ - srmag/ps-corr-sh2/c12-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C12
+ mapping:
+ - [B0, SD1D-C12-H]
+ - [A0, SD1D-C12-V]
+ - [A1, SD1D-C12-SQ]
+ - [B2, SD1D-C12-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c12-d/Strength_H
+ - srmag/m-sd1/c12-d/Strength_V
+ - srmag/m-sd1/c12-d/Strength_SQ
+ - srmag/m-sd1/c12-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C12
+ mapping:
+ - [B0, SF2E-C12-H]
+ - [A0, SF2E-C12-V]
+ - [A1, SF2E-C12-SQ]
+ - [B2, SF2E-C12-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c12-e/Strength_H
+ - srmag/m-sf2/c12-e/Strength_V
+ - srmag/m-sf2/c12-e/Strength_SQ
+ - srmag/m-sf2/c12-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C12
+ mapping:
+ - [B0, SD1E-C12-H]
+ - [A0, SD1E-C12-V]
+ - [A1, SD1E-C12-SQ]
+ - [B2, SD1E-C12-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c12-e/Strength_H
+ - srmag/m-sd1/c12-e/Strength_V
+ - srmag/m-sd1/c12-e/Strength_SQ
+ - srmag/m-sd1/c12-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C12
+ mapping:
+ - [B0, SH3E-C12-H]
+ - [A0, SH3E-C12-V]
+ - [A1, SH3E-C12-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c12-e-ch1/current
+ - srmag/ps-corr-sh3/c12-e-ch2/current
+ - srmag/ps-corr-sh3/c12-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C13
+ mapping:
+ - [B0, SH1A-C13-H]
+ - [A0, SH1A-C13-V]
+ - [A1, SH1A-C13-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c13-a-ch1/current
+ - srmag/ps-corr-sh1/c13-a-ch2/current
+ - srmag/ps-corr-sh1/c13-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C13
+ mapping:
+ - [B0, SD1A-C13-H]
+ - [A0, SD1A-C13-V]
+ - [A1, SD1A-C13-SQ]
+ - [B2, SD1A-C13-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c13-a/Strength_H
+ - srmag/m-sd1/c13-a/Strength_V
+ - srmag/m-sd1/c13-a/Strength_SQ
+ - srmag/m-sd1/c13-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C13
+ mapping:
+ - [B0, SF2A-C13-H]
+ - [A0, SF2A-C13-V]
+ - [A1, SF2A-C13-SQ]
+ - [B2, SF2A-C13-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c13-a/Strength_H
+ - srmag/m-sf2/c13-a/Strength_V
+ - srmag/m-sf2/c13-a/Strength_SQ
+ - srmag/m-sf2/c13-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C13
+ mapping:
+ - [B0, SD1B-C13-H]
+ - [A0, SD1B-C13-V]
+ - [A1, SD1B-C13-SQ]
+ - [B2, SD1B-C13-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c13-b/Strength_H
+ - srmag/m-sd1/c13-b/Strength_V
+ - srmag/m-sd1/c13-b/Strength_SQ
+ - srmag/m-sd1/c13-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C13
+ mapping:
+ - [B0, SH2B-C13-H]
+ - [A0, SH2B-C13-V]
+ - [A1, SH2B-C13-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c13-b-ch1/current
+ - srmag/ps-corr-sh2/c13-b-ch2/current
+ - srmag/ps-corr-sh2/c13-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C13
+ mapping:
+ - [B0, SD1D-C13-H]
+ - [A0, SD1D-C13-V]
+ - [A1, SD1D-C13-SQ]
+ - [B2, SD1D-C13-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c13-d/Strength_H
+ - srmag/m-sd1/c13-d/Strength_V
+ - srmag/m-sd1/c13-d/Strength_SQ
+ - srmag/m-sd1/c13-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C13
+ mapping:
+ - [B0, SF2E-C13-H]
+ - [A0, SF2E-C13-V]
+ - [A1, SF2E-C13-SQ]
+ - [B2, SF2E-C13-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c13-e/Strength_H
+ - srmag/m-sf2/c13-e/Strength_V
+ - srmag/m-sf2/c13-e/Strength_SQ
+ - srmag/m-sf2/c13-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C13
+ mapping:
+ - [B0, SD1E-C13-H]
+ - [A0, SD1E-C13-V]
+ - [A1, SD1E-C13-SQ]
+ - [B2, SD1E-C13-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c13-e/Strength_H
+ - srmag/m-sd1/c13-e/Strength_V
+ - srmag/m-sd1/c13-e/Strength_SQ
+ - srmag/m-sd1/c13-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C13
+ mapping:
+ - [B0, SH3E-C13-H]
+ - [A0, SH3E-C13-V]
+ - [A1, SH3E-C13-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c13-e-ch1/current
+ - srmag/ps-corr-sh3/c13-e-ch2/current
+ - srmag/ps-corr-sh3/c13-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C14
+ mapping:
+ - [B0, SH1A-C14-H]
+ - [A0, SH1A-C14-V]
+ - [A1, SH1A-C14-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c14-a-ch1/current
+ - srmag/ps-corr-sh1/c14-a-ch2/current
+ - srmag/ps-corr-sh1/c14-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C14
+ mapping:
+ - [B0, SD1A-C14-H]
+ - [A0, SD1A-C14-V]
+ - [A1, SD1A-C14-SQ]
+ - [B2, SD1A-C14-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c14-a/Strength_H
+ - srmag/m-sd1/c14-a/Strength_V
+ - srmag/m-sd1/c14-a/Strength_SQ
+ - srmag/m-sd1/c14-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C14
+ mapping:
+ - [B0, SF2A-C14-H]
+ - [A0, SF2A-C14-V]
+ - [A1, SF2A-C14-SQ]
+ - [B2, SF2A-C14-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c14-a/Strength_H
+ - srmag/m-sf2/c14-a/Strength_V
+ - srmag/m-sf2/c14-a/Strength_SQ
+ - srmag/m-sf2/c14-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C14
+ mapping:
+ - [B0, SD1B-C14-H]
+ - [A0, SD1B-C14-V]
+ - [A1, SD1B-C14-SQ]
+ - [B2, SD1B-C14-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c14-b/Strength_H
+ - srmag/m-sd1/c14-b/Strength_V
+ - srmag/m-sd1/c14-b/Strength_SQ
+ - srmag/m-sd1/c14-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C14
+ mapping:
+ - [B0, SH2B-C14-H]
+ - [A0, SH2B-C14-V]
+ - [A1, SH2B-C14-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c14-b-ch1/current
+ - srmag/ps-corr-sh2/c14-b-ch2/current
+ - srmag/ps-corr-sh2/c14-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C14
+ mapping:
+ - [B0, SD1D-C14-H]
+ - [A0, SD1D-C14-V]
+ - [A1, SD1D-C14-SQ]
+ - [B2, SD1D-C14-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c14-d/Strength_H
+ - srmag/m-sd1/c14-d/Strength_V
+ - srmag/m-sd1/c14-d/Strength_SQ
+ - srmag/m-sd1/c14-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C14
+ mapping:
+ - [B0, SF2E-C14-H]
+ - [A0, SF2E-C14-V]
+ - [A1, SF2E-C14-SQ]
+ - [B2, SF2E-C14-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c14-e/Strength_H
+ - srmag/m-sf2/c14-e/Strength_V
+ - srmag/m-sf2/c14-e/Strength_SQ
+ - srmag/m-sf2/c14-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C14
+ mapping:
+ - [B0, SD1E-C14-H]
+ - [A0, SD1E-C14-V]
+ - [A1, SD1E-C14-SQ]
+ - [B2, SD1E-C14-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c14-e/Strength_H
+ - srmag/m-sd1/c14-e/Strength_V
+ - srmag/m-sd1/c14-e/Strength_SQ
+ - srmag/m-sd1/c14-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C14
+ mapping:
+ - [B0, SH3E-C14-H]
+ - [A0, SH3E-C14-V]
+ - [A1, SH3E-C14-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c14-e-ch1/current
+ - srmag/ps-corr-sh3/c14-e-ch2/current
+ - srmag/ps-corr-sh3/c14-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C15
+ mapping:
+ - [B0, SH1A-C15-H]
+ - [A0, SH1A-C15-V]
+ - [A1, SH1A-C15-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c15-a-ch1/current
+ - srmag/ps-corr-sh1/c15-a-ch2/current
+ - srmag/ps-corr-sh1/c15-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C15
+ mapping:
+ - [B0, SD1A-C15-H]
+ - [A0, SD1A-C15-V]
+ - [A1, SD1A-C15-SQ]
+ - [B2, SD1A-C15-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c15-a/Strength_H
+ - srmag/m-sd1/c15-a/Strength_V
+ - srmag/m-sd1/c15-a/Strength_SQ
+ - srmag/m-sd1/c15-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C15
+ mapping:
+ - [B0, SF2A-C15-H]
+ - [A0, SF2A-C15-V]
+ - [A1, SF2A-C15-SQ]
+ - [B2, SF2A-C15-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c15-a/Strength_H
+ - srmag/m-sf2/c15-a/Strength_V
+ - srmag/m-sf2/c15-a/Strength_SQ
+ - srmag/m-sf2/c15-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C15
+ mapping:
+ - [B0, SD1B-C15-H]
+ - [A0, SD1B-C15-V]
+ - [A1, SD1B-C15-SQ]
+ - [B2, SD1B-C15-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c15-b/Strength_H
+ - srmag/m-sd1/c15-b/Strength_V
+ - srmag/m-sd1/c15-b/Strength_SQ
+ - srmag/m-sd1/c15-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C15
+ mapping:
+ - [B0, SH2B-C15-H]
+ - [A0, SH2B-C15-V]
+ - [A1, SH2B-C15-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c15-b-ch1/current
+ - srmag/ps-corr-sh2/c15-b-ch2/current
+ - srmag/ps-corr-sh2/c15-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C15
+ mapping:
+ - [B0, SD1D-C15-H]
+ - [A0, SD1D-C15-V]
+ - [A1, SD1D-C15-SQ]
+ - [B2, SD1D-C15-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c15-d/Strength_H
+ - srmag/m-sd1/c15-d/Strength_V
+ - srmag/m-sd1/c15-d/Strength_SQ
+ - srmag/m-sd1/c15-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C15
+ mapping:
+ - [B0, SF2E-C15-H]
+ - [A0, SF2E-C15-V]
+ - [A1, SF2E-C15-SQ]
+ - [B2, SF2E-C15-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c15-e/Strength_H
+ - srmag/m-sf2/c15-e/Strength_V
+ - srmag/m-sf2/c15-e/Strength_SQ
+ - srmag/m-sf2/c15-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C15
+ mapping:
+ - [B0, SD1E-C15-H]
+ - [A0, SD1E-C15-V]
+ - [A1, SD1E-C15-SQ]
+ - [B2, SD1E-C15-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c15-e/Strength_H
+ - srmag/m-sd1/c15-e/Strength_V
+ - srmag/m-sd1/c15-e/Strength_SQ
+ - srmag/m-sd1/c15-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C15
+ mapping:
+ - [B0, SH3E-C15-H]
+ - [A0, SH3E-C15-V]
+ - [A1, SH3E-C15-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c15-e-ch1/current
+ - srmag/ps-corr-sh3/c15-e-ch2/current
+ - srmag/ps-corr-sh3/c15-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C16
+ mapping:
+ - [B0, SH1A-C16-H]
+ - [A0, SH1A-C16-V]
+ - [A1, SH1A-C16-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c16-a-ch1/current
+ - srmag/ps-corr-sh1/c16-a-ch2/current
+ - srmag/ps-corr-sh1/c16-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C16
+ mapping:
+ - [B0, SD1A-C16-H]
+ - [A0, SD1A-C16-V]
+ - [A1, SD1A-C16-SQ]
+ - [B2, SD1A-C16-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c16-a/Strength_H
+ - srmag/m-sd1/c16-a/Strength_V
+ - srmag/m-sd1/c16-a/Strength_SQ
+ - srmag/m-sd1/c16-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C16
+ mapping:
+ - [B0, SF2A-C16-H]
+ - [A0, SF2A-C16-V]
+ - [A1, SF2A-C16-SQ]
+ - [B2, SF2A-C16-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c16-a/Strength_H
+ - srmag/m-sf2/c16-a/Strength_V
+ - srmag/m-sf2/c16-a/Strength_SQ
+ - srmag/m-sf2/c16-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C16
+ mapping:
+ - [B0, SD1B-C16-H]
+ - [A0, SD1B-C16-V]
+ - [A1, SD1B-C16-SQ]
+ - [B2, SD1B-C16-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c16-b/Strength_H
+ - srmag/m-sd1/c16-b/Strength_V
+ - srmag/m-sd1/c16-b/Strength_SQ
+ - srmag/m-sd1/c16-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C16
+ mapping:
+ - [B0, SH2B-C16-H]
+ - [A0, SH2B-C16-V]
+ - [A1, SH2B-C16-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c16-b-ch1/current
+ - srmag/ps-corr-sh2/c16-b-ch2/current
+ - srmag/ps-corr-sh2/c16-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C16
+ mapping:
+ - [B0, SD1D-C16-H]
+ - [A0, SD1D-C16-V]
+ - [A1, SD1D-C16-SQ]
+ - [B2, SD1D-C16-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c16-d/Strength_H
+ - srmag/m-sd1/c16-d/Strength_V
+ - srmag/m-sd1/c16-d/Strength_SQ
+ - srmag/m-sd1/c16-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C16
+ mapping:
+ - [B0, SF2E-C16-H]
+ - [A0, SF2E-C16-V]
+ - [A1, SF2E-C16-SQ]
+ - [B2, SF2E-C16-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c16-e/Strength_H
+ - srmag/m-sf2/c16-e/Strength_V
+ - srmag/m-sf2/c16-e/Strength_SQ
+ - srmag/m-sf2/c16-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C16
+ mapping:
+ - [B0, SD1E-C16-H]
+ - [A0, SD1E-C16-V]
+ - [A1, SD1E-C16-SQ]
+ - [B2, SD1E-C16-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c16-e/Strength_H
+ - srmag/m-sd1/c16-e/Strength_V
+ - srmag/m-sd1/c16-e/Strength_SQ
+ - srmag/m-sd1/c16-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C16
+ mapping:
+ - [B0, SH3E-C16-H]
+ - [A0, SH3E-C16-V]
+ - [A1, SH3E-C16-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c16-e-ch1/current
+ - srmag/ps-corr-sh3/c16-e-ch2/current
+ - srmag/ps-corr-sh3/c16-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C17
+ mapping:
+ - [B0, SH1A-C17-H]
+ - [A0, SH1A-C17-V]
+ - [A1, SH1A-C17-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c17-a-ch1/current
+ - srmag/ps-corr-sh1/c17-a-ch2/current
+ - srmag/ps-corr-sh1/c17-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C17
+ mapping:
+ - [B0, SD1A-C17-H]
+ - [A0, SD1A-C17-V]
+ - [A1, SD1A-C17-SQ]
+ - [B2, SD1A-C17-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c17-a/Strength_H
+ - srmag/m-sd1/c17-a/Strength_V
+ - srmag/m-sd1/c17-a/Strength_SQ
+ - srmag/m-sd1/c17-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C17
+ mapping:
+ - [B0, SF2A-C17-H]
+ - [A0, SF2A-C17-V]
+ - [A1, SF2A-C17-SQ]
+ - [B2, SF2A-C17-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c17-a/Strength_H
+ - srmag/m-sf2/c17-a/Strength_V
+ - srmag/m-sf2/c17-a/Strength_SQ
+ - srmag/m-sf2/c17-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C17
+ mapping:
+ - [B0, SD1B-C17-H]
+ - [A0, SD1B-C17-V]
+ - [A1, SD1B-C17-SQ]
+ - [B2, SD1B-C17-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c17-b/Strength_H
+ - srmag/m-sd1/c17-b/Strength_V
+ - srmag/m-sd1/c17-b/Strength_SQ
+ - srmag/m-sd1/c17-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C17
+ mapping:
+ - [B0, SH2B-C17-H]
+ - [A0, SH2B-C17-V]
+ - [A1, SH2B-C17-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c17-b-ch1/current
+ - srmag/ps-corr-sh2/c17-b-ch2/current
+ - srmag/ps-corr-sh2/c17-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C17
+ mapping:
+ - [B0, SD1D-C17-H]
+ - [A0, SD1D-C17-V]
+ - [A1, SD1D-C17-SQ]
+ - [B2, SD1D-C17-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c17-d/Strength_H
+ - srmag/m-sd1/c17-d/Strength_V
+ - srmag/m-sd1/c17-d/Strength_SQ
+ - srmag/m-sd1/c17-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C17
+ mapping:
+ - [B0, SF2E-C17-H]
+ - [A0, SF2E-C17-V]
+ - [A1, SF2E-C17-SQ]
+ - [B2, SF2E-C17-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c17-e/Strength_H
+ - srmag/m-sf2/c17-e/Strength_V
+ - srmag/m-sf2/c17-e/Strength_SQ
+ - srmag/m-sf2/c17-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C17
+ mapping:
+ - [B0, SD1E-C17-H]
+ - [A0, SD1E-C17-V]
+ - [A1, SD1E-C17-SQ]
+ - [B2, SD1E-C17-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c17-e/Strength_H
+ - srmag/m-sd1/c17-e/Strength_V
+ - srmag/m-sd1/c17-e/Strength_SQ
+ - srmag/m-sd1/c17-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C17
+ mapping:
+ - [B0, SH3E-C17-H]
+ - [A0, SH3E-C17-V]
+ - [A1, SH3E-C17-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c17-e-ch1/current
+ - srmag/ps-corr-sh3/c17-e-ch2/current
+ - srmag/ps-corr-sh3/c17-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C18
+ mapping:
+ - [B0, SH1A-C18-H]
+ - [A0, SH1A-C18-V]
+ - [A1, SH1A-C18-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c18-a-ch1/current
+ - srmag/ps-corr-sh1/c18-a-ch2/current
+ - srmag/ps-corr-sh1/c18-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C18
+ mapping:
+ - [B0, SD1A-C18-H]
+ - [A0, SD1A-C18-V]
+ - [A1, SD1A-C18-SQ]
+ - [B2, SD1A-C18-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c18-a/Strength_H
+ - srmag/m-sd1/c18-a/Strength_V
+ - srmag/m-sd1/c18-a/Strength_SQ
+ - srmag/m-sd1/c18-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C18
+ mapping:
+ - [B0, SF2A-C18-H]
+ - [A0, SF2A-C18-V]
+ - [A1, SF2A-C18-SQ]
+ - [B2, SF2A-C18-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c18-a/Strength_H
+ - srmag/m-sf2/c18-a/Strength_V
+ - srmag/m-sf2/c18-a/Strength_SQ
+ - srmag/m-sf2/c18-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C18
+ mapping:
+ - [B0, SD1B-C18-H]
+ - [A0, SD1B-C18-V]
+ - [A1, SD1B-C18-SQ]
+ - [B2, SD1B-C18-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c18-b/Strength_H
+ - srmag/m-sd1/c18-b/Strength_V
+ - srmag/m-sd1/c18-b/Strength_SQ
+ - srmag/m-sd1/c18-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C18
+ mapping:
+ - [B0, SH2B-C18-H]
+ - [A0, SH2B-C18-V]
+ - [A1, SH2B-C18-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c18-b-ch1/current
+ - srmag/ps-corr-sh2/c18-b-ch2/current
+ - srmag/ps-corr-sh2/c18-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C18
+ mapping:
+ - [B0, SD1D-C18-H]
+ - [A0, SD1D-C18-V]
+ - [A1, SD1D-C18-SQ]
+ - [B2, SD1D-C18-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c18-d/Strength_H
+ - srmag/m-sd1/c18-d/Strength_V
+ - srmag/m-sd1/c18-d/Strength_SQ
+ - srmag/m-sd1/c18-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C18
+ mapping:
+ - [B0, SF2E-C18-H]
+ - [A0, SF2E-C18-V]
+ - [A1, SF2E-C18-SQ]
+ - [B2, SF2E-C18-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c18-e/Strength_H
+ - srmag/m-sf2/c18-e/Strength_V
+ - srmag/m-sf2/c18-e/Strength_SQ
+ - srmag/m-sf2/c18-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C18
+ mapping:
+ - [B0, SD1E-C18-H]
+ - [A0, SD1E-C18-V]
+ - [A1, SD1E-C18-SQ]
+ - [B2, SD1E-C18-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c18-e/Strength_H
+ - srmag/m-sd1/c18-e/Strength_V
+ - srmag/m-sd1/c18-e/Strength_SQ
+ - srmag/m-sd1/c18-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C18
+ mapping:
+ - [B0, SH3E-C18-H]
+ - [A0, SH3E-C18-V]
+ - [A1, SH3E-C18-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c18-e-ch1/current
+ - srmag/ps-corr-sh3/c18-e-ch2/current
+ - srmag/ps-corr-sh3/c18-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C19
+ mapping:
+ - [B0, SH1A-C19-H]
+ - [A0, SH1A-C19-V]
+ - [A1, SH1A-C19-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c19-a-ch1/current
+ - srmag/ps-corr-sh1/c19-a-ch2/current
+ - srmag/ps-corr-sh1/c19-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C19
+ mapping:
+ - [B0, SD1A-C19-H]
+ - [A0, SD1A-C19-V]
+ - [A1, SD1A-C19-SQ]
+ - [B2, SD1A-C19-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c19-a/Strength_H
+ - srmag/m-sd1/c19-a/Strength_V
+ - srmag/m-sd1/c19-a/Strength_SQ
+ - srmag/m-sd1/c19-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C19
+ mapping:
+ - [B0, SF2A-C19-H]
+ - [A0, SF2A-C19-V]
+ - [A1, SF2A-C19-SQ]
+ - [B2, SF2A-C19-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c19-a/Strength_H
+ - srmag/m-sf2/c19-a/Strength_V
+ - srmag/m-sf2/c19-a/Strength_SQ
+ - srmag/m-sf2/c19-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C19
+ mapping:
+ - [B0, SD1B-C19-H]
+ - [A0, SD1B-C19-V]
+ - [A1, SD1B-C19-SQ]
+ - [B2, SD1B-C19-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c19-b/Strength_H
+ - srmag/m-sd1/c19-b/Strength_V
+ - srmag/m-sd1/c19-b/Strength_SQ
+ - srmag/m-sd1/c19-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C19
+ mapping:
+ - [B0, SH2B-C19-H]
+ - [A0, SH2B-C19-V]
+ - [A1, SH2B-C19-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c19-b-ch1/current
+ - srmag/ps-corr-sh2/c19-b-ch2/current
+ - srmag/ps-corr-sh2/c19-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C19
+ mapping:
+ - [B0, SD1D-C19-H]
+ - [A0, SD1D-C19-V]
+ - [A1, SD1D-C19-SQ]
+ - [B2, SD1D-C19-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c19-d/Strength_H
+ - srmag/m-sd1/c19-d/Strength_V
+ - srmag/m-sd1/c19-d/Strength_SQ
+ - srmag/m-sd1/c19-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C19
+ mapping:
+ - [B0, SF2E-C19-H]
+ - [A0, SF2E-C19-V]
+ - [A1, SF2E-C19-SQ]
+ - [B2, SF2E-C19-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c19-e/Strength_H
+ - srmag/m-sf2/c19-e/Strength_V
+ - srmag/m-sf2/c19-e/Strength_SQ
+ - srmag/m-sf2/c19-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C19
+ mapping:
+ - [B0, SD1E-C19-H]
+ - [A0, SD1E-C19-V]
+ - [A1, SD1E-C19-SQ]
+ - [B2, SD1E-C19-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c19-e/Strength_H
+ - srmag/m-sd1/c19-e/Strength_V
+ - srmag/m-sd1/c19-e/Strength_SQ
+ - srmag/m-sd1/c19-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C19
+ mapping:
+ - [B0, SH3E-C19-H]
+ - [A0, SH3E-C19-V]
+ - [A1, SH3E-C19-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c19-e-ch1/current
+ - srmag/ps-corr-sh3/c19-e-ch2/current
+ - srmag/ps-corr-sh3/c19-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C20
+ mapping:
+ - [B0, SH1A-C20-H]
+ - [A0, SH1A-C20-V]
+ - [A1, SH1A-C20-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c20-a-ch1/current
+ - srmag/ps-corr-sh1/c20-a-ch2/current
+ - srmag/ps-corr-sh1/c20-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C20
+ mapping:
+ - [B0, SD1A-C20-H]
+ - [A0, SD1A-C20-V]
+ - [A1, SD1A-C20-SQ]
+ - [B2, SD1A-C20-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c20-a/Strength_H
+ - srmag/m-sd1/c20-a/Strength_V
+ - srmag/m-sd1/c20-a/Strength_SQ
+ - srmag/m-sd1/c20-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C20
+ mapping:
+ - [B0, SF2A-C20-H]
+ - [A0, SF2A-C20-V]
+ - [A1, SF2A-C20-SQ]
+ - [B2, SF2A-C20-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c20-a/Strength_H
+ - srmag/m-sf2/c20-a/Strength_V
+ - srmag/m-sf2/c20-a/Strength_SQ
+ - srmag/m-sf2/c20-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C20
+ mapping:
+ - [B0, SD1B-C20-H]
+ - [A0, SD1B-C20-V]
+ - [A1, SD1B-C20-SQ]
+ - [B2, SD1B-C20-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c20-b/Strength_H
+ - srmag/m-sd1/c20-b/Strength_V
+ - srmag/m-sd1/c20-b/Strength_SQ
+ - srmag/m-sd1/c20-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C20
+ mapping:
+ - [B0, SH2B-C20-H]
+ - [A0, SH2B-C20-V]
+ - [A1, SH2B-C20-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c20-b-ch1/current
+ - srmag/ps-corr-sh2/c20-b-ch2/current
+ - srmag/ps-corr-sh2/c20-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C20
+ mapping:
+ - [B0, SD1D-C20-H]
+ - [A0, SD1D-C20-V]
+ - [A1, SD1D-C20-SQ]
+ - [B2, SD1D-C20-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c20-d/Strength_H
+ - srmag/m-sd1/c20-d/Strength_V
+ - srmag/m-sd1/c20-d/Strength_SQ
+ - srmag/m-sd1/c20-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C20
+ mapping:
+ - [B0, SF2E-C20-H]
+ - [A0, SF2E-C20-V]
+ - [A1, SF2E-C20-SQ]
+ - [B2, SF2E-C20-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c20-e/Strength_H
+ - srmag/m-sf2/c20-e/Strength_V
+ - srmag/m-sf2/c20-e/Strength_SQ
+ - srmag/m-sf2/c20-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C20
+ mapping:
+ - [B0, SD1E-C20-H]
+ - [A0, SD1E-C20-V]
+ - [A1, SD1E-C20-SQ]
+ - [B2, SD1E-C20-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c20-e/Strength_H
+ - srmag/m-sd1/c20-e/Strength_V
+ - srmag/m-sd1/c20-e/Strength_SQ
+ - srmag/m-sd1/c20-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C20
+ mapping:
+ - [B0, SH3E-C20-H]
+ - [A0, SH3E-C20-V]
+ - [A1, SH3E-C20-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c20-e-ch1/current
+ - srmag/ps-corr-sh3/c20-e-ch2/current
+ - srmag/ps-corr-sh3/c20-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C21
+ mapping:
+ - [B0, SH1A-C21-H]
+ - [A0, SH1A-C21-V]
+ - [A1, SH1A-C21-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c21-a-ch1/current
+ - srmag/ps-corr-sh1/c21-a-ch2/current
+ - srmag/ps-corr-sh1/c21-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C21
+ mapping:
+ - [B0, SD1A-C21-H]
+ - [A0, SD1A-C21-V]
+ - [A1, SD1A-C21-SQ]
+ - [B2, SD1A-C21-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c21-a/Strength_H
+ - srmag/m-sd1/c21-a/Strength_V
+ - srmag/m-sd1/c21-a/Strength_SQ
+ - srmag/m-sd1/c21-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C21
+ mapping:
+ - [B0, SF2A-C21-H]
+ - [A0, SF2A-C21-V]
+ - [A1, SF2A-C21-SQ]
+ - [B2, SF2A-C21-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c21-a/Strength_H
+ - srmag/m-sf2/c21-a/Strength_V
+ - srmag/m-sf2/c21-a/Strength_SQ
+ - srmag/m-sf2/c21-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C21
+ mapping:
+ - [B0, SD1B-C21-H]
+ - [A0, SD1B-C21-V]
+ - [A1, SD1B-C21-SQ]
+ - [B2, SD1B-C21-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c21-b/Strength_H
+ - srmag/m-sd1/c21-b/Strength_V
+ - srmag/m-sd1/c21-b/Strength_SQ
+ - srmag/m-sd1/c21-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C21
+ mapping:
+ - [B0, SH2B-C21-H]
+ - [A0, SH2B-C21-V]
+ - [A1, SH2B-C21-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c21-b-ch1/current
+ - srmag/ps-corr-sh2/c21-b-ch2/current
+ - srmag/ps-corr-sh2/c21-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C21
+ mapping:
+ - [B0, SD1D-C21-H]
+ - [A0, SD1D-C21-V]
+ - [A1, SD1D-C21-SQ]
+ - [B2, SD1D-C21-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c21-d/Strength_H
+ - srmag/m-sd1/c21-d/Strength_V
+ - srmag/m-sd1/c21-d/Strength_SQ
+ - srmag/m-sd1/c21-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C21
+ mapping:
+ - [B0, SF2E-C21-H]
+ - [A0, SF2E-C21-V]
+ - [A1, SF2E-C21-SQ]
+ - [B2, SF2E-C21-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c21-e/Strength_H
+ - srmag/m-sf2/c21-e/Strength_V
+ - srmag/m-sf2/c21-e/Strength_SQ
+ - srmag/m-sf2/c21-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C21
+ mapping:
+ - [B0, SD1E-C21-H]
+ - [A0, SD1E-C21-V]
+ - [A1, SD1E-C21-SQ]
+ - [B2, SD1E-C21-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c21-e/Strength_H
+ - srmag/m-sd1/c21-e/Strength_V
+ - srmag/m-sd1/c21-e/Strength_SQ
+ - srmag/m-sd1/c21-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C21
+ mapping:
+ - [B0, SH3E-C21-H]
+ - [A0, SH3E-C21-V]
+ - [A1, SH3E-C21-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c21-e-ch1/current
+ - srmag/ps-corr-sh3/c21-e-ch2/current
+ - srmag/ps-corr-sh3/c21-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C22
+ mapping:
+ - [B0, SH1A-C22-H]
+ - [A0, SH1A-C22-V]
+ - [A1, SH1A-C22-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c22-a-ch1/current
+ - srmag/ps-corr-sh1/c22-a-ch2/current
+ - srmag/ps-corr-sh1/c22-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C22
+ mapping:
+ - [B0, SD1A-C22-H]
+ - [A0, SD1A-C22-V]
+ - [A1, SD1A-C22-SQ]
+ - [B2, SD1A-C22-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c22-a/Strength_H
+ - srmag/m-sd1/c22-a/Strength_V
+ - srmag/m-sd1/c22-a/Strength_SQ
+ - srmag/m-sd1/c22-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C22
+ mapping:
+ - [B0, SF2A-C22-H]
+ - [A0, SF2A-C22-V]
+ - [A1, SF2A-C22-SQ]
+ - [B2, SF2A-C22-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c22-a/Strength_H
+ - srmag/m-sf2/c22-a/Strength_V
+ - srmag/m-sf2/c22-a/Strength_SQ
+ - srmag/m-sf2/c22-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C22
+ mapping:
+ - [B0, SD1B-C22-H]
+ - [A0, SD1B-C22-V]
+ - [A1, SD1B-C22-SQ]
+ - [B2, SD1B-C22-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c22-b/Strength_H
+ - srmag/m-sd1/c22-b/Strength_V
+ - srmag/m-sd1/c22-b/Strength_SQ
+ - srmag/m-sd1/c22-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C22
+ mapping:
+ - [B0, SH2B-C22-H]
+ - [A0, SH2B-C22-V]
+ - [A1, SH2B-C22-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c22-b-ch1/current
+ - srmag/ps-corr-sh2/c22-b-ch2/current
+ - srmag/ps-corr-sh2/c22-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C22
+ mapping:
+ - [B0, SD1D-C22-H]
+ - [A0, SD1D-C22-V]
+ - [A1, SD1D-C22-SQ]
+ - [B2, SD1D-C22-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c22-d/Strength_H
+ - srmag/m-sd1/c22-d/Strength_V
+ - srmag/m-sd1/c22-d/Strength_SQ
+ - srmag/m-sd1/c22-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C22
+ mapping:
+ - [B0, SF2E-C22-H]
+ - [A0, SF2E-C22-V]
+ - [A1, SF2E-C22-SQ]
+ - [B2, SF2E-C22-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c22-e/Strength_H
+ - srmag/m-sf2/c22-e/Strength_V
+ - srmag/m-sf2/c22-e/Strength_SQ
+ - srmag/m-sf2/c22-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C22
+ mapping:
+ - [B0, SD1E-C22-H]
+ - [A0, SD1E-C22-V]
+ - [A1, SD1E-C22-SQ]
+ - [B2, SD1E-C22-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c22-e/Strength_H
+ - srmag/m-sd1/c22-e/Strength_V
+ - srmag/m-sd1/c22-e/Strength_SQ
+ - srmag/m-sd1/c22-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C22
+ mapping:
+ - [B0, SH3E-C22-H]
+ - [A0, SH3E-C22-V]
+ - [A1, SH3E-C22-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c22-e-ch1/current
+ - srmag/ps-corr-sh3/c22-e-ch2/current
+ - srmag/ps-corr-sh3/c22-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C23
+ mapping:
+ - [B0, SH1A-C23-H]
+ - [A0, SH1A-C23-V]
+ - [A1, SH1A-C23-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c23-a-ch1/current
+ - srmag/ps-corr-sh1/c23-a-ch2/current
+ - srmag/ps-corr-sh1/c23-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C23
+ mapping:
+ - [B0, SD1A-C23-H]
+ - [A0, SD1A-C23-V]
+ - [A1, SD1A-C23-SQ]
+ - [B2, SD1A-C23-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c23-a/Strength_H
+ - srmag/m-sd1/c23-a/Strength_V
+ - srmag/m-sd1/c23-a/Strength_SQ
+ - srmag/m-sd1/c23-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C23
+ mapping:
+ - [B0, SF2A-C23-H]
+ - [A0, SF2A-C23-V]
+ - [A1, SF2A-C23-SQ]
+ - [B2, SF2A-C23-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c23-a/Strength_H
+ - srmag/m-sf2/c23-a/Strength_V
+ - srmag/m-sf2/c23-a/Strength_SQ
+ - srmag/m-sf2/c23-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C23
+ mapping:
+ - [B0, SD1B-C23-H]
+ - [A0, SD1B-C23-V]
+ - [A1, SD1B-C23-SQ]
+ - [B2, SD1B-C23-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c23-b/Strength_H
+ - srmag/m-sd1/c23-b/Strength_V
+ - srmag/m-sd1/c23-b/Strength_SQ
+ - srmag/m-sd1/c23-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C23
+ mapping:
+ - [B0, SH2B-C23-H]
+ - [A0, SH2B-C23-V]
+ - [A1, SH2B-C23-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c23-b-ch1/current
+ - srmag/ps-corr-sh2/c23-b-ch2/current
+ - srmag/ps-corr-sh2/c23-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C23
+ mapping:
+ - [B0, SD1D-C23-H]
+ - [A0, SD1D-C23-V]
+ - [A1, SD1D-C23-SQ]
+ - [B2, SD1D-C23-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c23-d/Strength_H
+ - srmag/m-sd1/c23-d/Strength_V
+ - srmag/m-sd1/c23-d/Strength_SQ
+ - srmag/m-sd1/c23-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C23
+ mapping:
+ - [B0, SF2E-C23-H]
+ - [A0, SF2E-C23-V]
+ - [A1, SF2E-C23-SQ]
+ - [B2, SF2E-C23-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c23-e/Strength_H
+ - srmag/m-sf2/c23-e/Strength_V
+ - srmag/m-sf2/c23-e/Strength_SQ
+ - srmag/m-sf2/c23-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C23
+ mapping:
+ - [B0, SD1E-C23-H]
+ - [A0, SD1E-C23-V]
+ - [A1, SD1E-C23-SQ]
+ - [B2, SD1E-C23-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c23-e/Strength_H
+ - srmag/m-sd1/c23-e/Strength_V
+ - srmag/m-sd1/c23-e/Strength_SQ
+ - srmag/m-sd1/c23-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C23
+ mapping:
+ - [B0, SH3E-C23-H]
+ - [A0, SH3E-C23-V]
+ - [A1, SH3E-C23-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c23-e-ch1/current
+ - srmag/ps-corr-sh3/c23-e-ch2/current
+ - srmag/ps-corr-sh3/c23-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C24
+ mapping:
+ - [B0, SH1A-C24-H]
+ - [A0, SH1A-C24-V]
+ - [A1, SH1A-C24-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c24-a-ch1/current
+ - srmag/ps-corr-sh1/c24-a-ch2/current
+ - srmag/ps-corr-sh1/c24-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C24
+ mapping:
+ - [B0, SD1A-C24-H]
+ - [A0, SD1A-C24-V]
+ - [A1, SD1A-C24-SQ]
+ - [B2, SD1A-C24-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c24-a/Strength_H
+ - srmag/m-sd1/c24-a/Strength_V
+ - srmag/m-sd1/c24-a/Strength_SQ
+ - srmag/m-sd1/c24-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C24
+ mapping:
+ - [B0, SF2A-C24-H]
+ - [A0, SF2A-C24-V]
+ - [A1, SF2A-C24-SQ]
+ - [B2, SF2A-C24-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c24-a/Strength_H
+ - srmag/m-sf2/c24-a/Strength_V
+ - srmag/m-sf2/c24-a/Strength_SQ
+ - srmag/m-sf2/c24-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C24
+ mapping:
+ - [B0, SD1B-C24-H]
+ - [A0, SD1B-C24-V]
+ - [A1, SD1B-C24-SQ]
+ - [B2, SD1B-C24-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c24-b/Strength_H
+ - srmag/m-sd1/c24-b/Strength_V
+ - srmag/m-sd1/c24-b/Strength_SQ
+ - srmag/m-sd1/c24-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C24
+ mapping:
+ - [B0, SH2B-C24-H]
+ - [A0, SH2B-C24-V]
+ - [A1, SH2B-C24-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c24-b-ch1/current
+ - srmag/ps-corr-sh2/c24-b-ch2/current
+ - srmag/ps-corr-sh2/c24-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C24
+ mapping:
+ - [B0, SD1D-C24-H]
+ - [A0, SD1D-C24-V]
+ - [A1, SD1D-C24-SQ]
+ - [B2, SD1D-C24-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c24-d/Strength_H
+ - srmag/m-sd1/c24-d/Strength_V
+ - srmag/m-sd1/c24-d/Strength_SQ
+ - srmag/m-sd1/c24-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C24
+ mapping:
+ - [B0, SF2E-C24-H]
+ - [A0, SF2E-C24-V]
+ - [A1, SF2E-C24-SQ]
+ - [B2, SF2E-C24-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c24-e/Strength_H
+ - srmag/m-sf2/c24-e/Strength_V
+ - srmag/m-sf2/c24-e/Strength_SQ
+ - srmag/m-sf2/c24-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C24
+ mapping:
+ - [B0, SD1E-C24-H]
+ - [A0, SD1E-C24-V]
+ - [A1, SD1E-C24-SQ]
+ - [B2, SD1E-C24-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c24-e/Strength_H
+ - srmag/m-sd1/c24-e/Strength_V
+ - srmag/m-sd1/c24-e/Strength_SQ
+ - srmag/m-sd1/c24-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C24
+ mapping:
+ - [B0, SH3E-C24-H]
+ - [A0, SH3E-C24-V]
+ - [A1, SH3E-C24-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c24-e-ch1/current
+ - srmag/ps-corr-sh3/c24-e-ch2/current
+ - srmag/ps-corr-sh3/c24-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C25
+ mapping:
+ - [B0, SH1A-C25-H]
+ - [A0, SH1A-C25-V]
+ - [A1, SH1A-C25-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c25-a-ch1/current
+ - srmag/ps-corr-sh1/c25-a-ch2/current
+ - srmag/ps-corr-sh1/c25-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C25
+ mapping:
+ - [B0, SD1A-C25-H]
+ - [A0, SD1A-C25-V]
+ - [A1, SD1A-C25-SQ]
+ - [B2, SD1A-C25-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c25-a/Strength_H
+ - srmag/m-sd1/c25-a/Strength_V
+ - srmag/m-sd1/c25-a/Strength_SQ
+ - srmag/m-sd1/c25-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C25
+ mapping:
+ - [B0, SF2A-C25-H]
+ - [A0, SF2A-C25-V]
+ - [A1, SF2A-C25-SQ]
+ - [B2, SF2A-C25-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c25-a/Strength_H
+ - srmag/m-sf2/c25-a/Strength_V
+ - srmag/m-sf2/c25-a/Strength_SQ
+ - srmag/m-sf2/c25-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C25
+ mapping:
+ - [B0, SD1B-C25-H]
+ - [A0, SD1B-C25-V]
+ - [A1, SD1B-C25-SQ]
+ - [B2, SD1B-C25-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c25-b/Strength_H
+ - srmag/m-sd1/c25-b/Strength_V
+ - srmag/m-sd1/c25-b/Strength_SQ
+ - srmag/m-sd1/c25-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C25
+ mapping:
+ - [B0, SH2B-C25-H]
+ - [A0, SH2B-C25-V]
+ - [A1, SH2B-C25-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c25-b-ch1/current
+ - srmag/ps-corr-sh2/c25-b-ch2/current
+ - srmag/ps-corr-sh2/c25-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C25
+ mapping:
+ - [B0, SD1D-C25-H]
+ - [A0, SD1D-C25-V]
+ - [A1, SD1D-C25-SQ]
+ - [B2, SD1D-C25-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c25-d/Strength_H
+ - srmag/m-sd1/c25-d/Strength_V
+ - srmag/m-sd1/c25-d/Strength_SQ
+ - srmag/m-sd1/c25-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C25
+ mapping:
+ - [B0, SF2E-C25-H]
+ - [A0, SF2E-C25-V]
+ - [A1, SF2E-C25-SQ]
+ - [B2, SF2E-C25-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c25-e/Strength_H
+ - srmag/m-sf2/c25-e/Strength_V
+ - srmag/m-sf2/c25-e/Strength_SQ
+ - srmag/m-sf2/c25-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C25
+ mapping:
+ - [B0, SD1E-C25-H]
+ - [A0, SD1E-C25-V]
+ - [A1, SD1E-C25-SQ]
+ - [B2, SD1E-C25-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c25-e/Strength_H
+ - srmag/m-sd1/c25-e/Strength_V
+ - srmag/m-sd1/c25-e/Strength_SQ
+ - srmag/m-sd1/c25-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C25
+ mapping:
+ - [B0, SH3E-C25-H]
+ - [A0, SH3E-C25-V]
+ - [A1, SH3E-C25-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c25-e-ch1/current
+ - srmag/ps-corr-sh3/c25-e-ch2/current
+ - srmag/ps-corr-sh3/c25-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C26
+ mapping:
+ - [B0, SH1A-C26-H]
+ - [A0, SH1A-C26-V]
+ - [A1, SH1A-C26-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c26-a-ch1/current
+ - srmag/ps-corr-sh1/c26-a-ch2/current
+ - srmag/ps-corr-sh1/c26-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C26
+ mapping:
+ - [B0, SD1A-C26-H]
+ - [A0, SD1A-C26-V]
+ - [A1, SD1A-C26-SQ]
+ - [B2, SD1A-C26-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c26-a/Strength_H
+ - srmag/m-sd1/c26-a/Strength_V
+ - srmag/m-sd1/c26-a/Strength_SQ
+ - srmag/m-sd1/c26-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C26
+ mapping:
+ - [B0, SF2A-C26-H]
+ - [A0, SF2A-C26-V]
+ - [A1, SF2A-C26-SQ]
+ - [B2, SF2A-C26-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c26-a/Strength_H
+ - srmag/m-sf2/c26-a/Strength_V
+ - srmag/m-sf2/c26-a/Strength_SQ
+ - srmag/m-sf2/c26-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C26
+ mapping:
+ - [B0, SD1B-C26-H]
+ - [A0, SD1B-C26-V]
+ - [A1, SD1B-C26-SQ]
+ - [B2, SD1B-C26-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c26-b/Strength_H
+ - srmag/m-sd1/c26-b/Strength_V
+ - srmag/m-sd1/c26-b/Strength_SQ
+ - srmag/m-sd1/c26-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C26
+ mapping:
+ - [B0, SH2B-C26-H]
+ - [A0, SH2B-C26-V]
+ - [A1, SH2B-C26-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c26-b-ch1/current
+ - srmag/ps-corr-sh2/c26-b-ch2/current
+ - srmag/ps-corr-sh2/c26-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C26
+ mapping:
+ - [B0, SD1D-C26-H]
+ - [A0, SD1D-C26-V]
+ - [A1, SD1D-C26-SQ]
+ - [B2, SD1D-C26-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c26-d/Strength_H
+ - srmag/m-sd1/c26-d/Strength_V
+ - srmag/m-sd1/c26-d/Strength_SQ
+ - srmag/m-sd1/c26-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C26
+ mapping:
+ - [B0, SF2E-C26-H]
+ - [A0, SF2E-C26-V]
+ - [A1, SF2E-C26-SQ]
+ - [B2, SF2E-C26-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c26-e/Strength_H
+ - srmag/m-sf2/c26-e/Strength_V
+ - srmag/m-sf2/c26-e/Strength_SQ
+ - srmag/m-sf2/c26-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C26
+ mapping:
+ - [B0, SD1E-C26-H]
+ - [A0, SD1E-C26-V]
+ - [A1, SD1E-C26-SQ]
+ - [B2, SD1E-C26-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c26-e/Strength_H
+ - srmag/m-sd1/c26-e/Strength_V
+ - srmag/m-sd1/c26-e/Strength_SQ
+ - srmag/m-sd1/c26-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C26
+ mapping:
+ - [B0, SH3E-C26-H]
+ - [A0, SH3E-C26-V]
+ - [A1, SH3E-C26-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c26-e-ch1/current
+ - srmag/ps-corr-sh3/c26-e-ch2/current
+ - srmag/ps-corr-sh3/c26-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C27
+ mapping:
+ - [B0, SH1A-C27-H]
+ - [A0, SH1A-C27-V]
+ - [A1, SH1A-C27-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c27-a-ch1/current
+ - srmag/ps-corr-sh1/c27-a-ch2/current
+ - srmag/ps-corr-sh1/c27-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C27
+ mapping:
+ - [B0, SD1A-C27-H]
+ - [A0, SD1A-C27-V]
+ - [A1, SD1A-C27-SQ]
+ - [B2, SD1A-C27-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c27-a/Strength_H
+ - srmag/m-sd1/c27-a/Strength_V
+ - srmag/m-sd1/c27-a/Strength_SQ
+ - srmag/m-sd1/c27-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C27
+ mapping:
+ - [B0, SF2A-C27-H]
+ - [A0, SF2A-C27-V]
+ - [A1, SF2A-C27-SQ]
+ - [B2, SF2A-C27-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c27-a/Strength_H
+ - srmag/m-sf2/c27-a/Strength_V
+ - srmag/m-sf2/c27-a/Strength_SQ
+ - srmag/m-sf2/c27-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C27
+ mapping:
+ - [B0, SD1B-C27-H]
+ - [A0, SD1B-C27-V]
+ - [A1, SD1B-C27-SQ]
+ - [B2, SD1B-C27-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c27-b/Strength_H
+ - srmag/m-sd1/c27-b/Strength_V
+ - srmag/m-sd1/c27-b/Strength_SQ
+ - srmag/m-sd1/c27-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C27
+ mapping:
+ - [B0, SH2B-C27-H]
+ - [A0, SH2B-C27-V]
+ - [A1, SH2B-C27-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c27-b-ch1/current
+ - srmag/ps-corr-sh2/c27-b-ch2/current
+ - srmag/ps-corr-sh2/c27-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C27
+ mapping:
+ - [B0, SD1D-C27-H]
+ - [A0, SD1D-C27-V]
+ - [A1, SD1D-C27-SQ]
+ - [B2, SD1D-C27-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c27-d/Strength_H
+ - srmag/m-sd1/c27-d/Strength_V
+ - srmag/m-sd1/c27-d/Strength_SQ
+ - srmag/m-sd1/c27-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C27
+ mapping:
+ - [B0, SF2E-C27-H]
+ - [A0, SF2E-C27-V]
+ - [A1, SF2E-C27-SQ]
+ - [B2, SF2E-C27-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c27-e/Strength_H
+ - srmag/m-sf2/c27-e/Strength_V
+ - srmag/m-sf2/c27-e/Strength_SQ
+ - srmag/m-sf2/c27-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C27
+ mapping:
+ - [B0, SD1E-C27-H]
+ - [A0, SD1E-C27-V]
+ - [A1, SD1E-C27-SQ]
+ - [B2, SD1E-C27-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c27-e/Strength_H
+ - srmag/m-sd1/c27-e/Strength_V
+ - srmag/m-sd1/c27-e/Strength_SQ
+ - srmag/m-sd1/c27-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C27
+ mapping:
+ - [B0, SH3E-C27-H]
+ - [A0, SH3E-C27-V]
+ - [A1, SH3E-C27-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c27-e-ch1/current
+ - srmag/ps-corr-sh3/c27-e-ch2/current
+ - srmag/ps-corr-sh3/c27-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C28
+ mapping:
+ - [B0, SH1A-C28-H]
+ - [A0, SH1A-C28-V]
+ - [A1, SH1A-C28-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c28-a-ch1/current
+ - srmag/ps-corr-sh1/c28-a-ch2/current
+ - srmag/ps-corr-sh1/c28-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C28
+ mapping:
+ - [B0, SD1A-C28-H]
+ - [A0, SD1A-C28-V]
+ - [A1, SD1A-C28-SQ]
+ - [B2, SD1A-C28-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c28-a/Strength_H
+ - srmag/m-sd1/c28-a/Strength_V
+ - srmag/m-sd1/c28-a/Strength_SQ
+ - srmag/m-sd1/c28-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C28
+ mapping:
+ - [B0, SF2A-C28-H]
+ - [A0, SF2A-C28-V]
+ - [A1, SF2A-C28-SQ]
+ - [B2, SF2A-C28-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c28-a/Strength_H
+ - srmag/m-sf2/c28-a/Strength_V
+ - srmag/m-sf2/c28-a/Strength_SQ
+ - srmag/m-sf2/c28-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C28
+ mapping:
+ - [B0, SD1B-C28-H]
+ - [A0, SD1B-C28-V]
+ - [A1, SD1B-C28-SQ]
+ - [B2, SD1B-C28-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c28-b/Strength_H
+ - srmag/m-sd1/c28-b/Strength_V
+ - srmag/m-sd1/c28-b/Strength_SQ
+ - srmag/m-sd1/c28-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C28
+ mapping:
+ - [B0, SH2B-C28-H]
+ - [A0, SH2B-C28-V]
+ - [A1, SH2B-C28-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c28-b-ch1/current
+ - srmag/ps-corr-sh2/c28-b-ch2/current
+ - srmag/ps-corr-sh2/c28-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C28
+ mapping:
+ - [B0, SD1D-C28-H]
+ - [A0, SD1D-C28-V]
+ - [A1, SD1D-C28-SQ]
+ - [B2, SD1D-C28-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c28-d/Strength_H
+ - srmag/m-sd1/c28-d/Strength_V
+ - srmag/m-sd1/c28-d/Strength_SQ
+ - srmag/m-sd1/c28-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C28
+ mapping:
+ - [B0, SF2E-C28-H]
+ - [A0, SF2E-C28-V]
+ - [A1, SF2E-C28-SQ]
+ - [B2, SF2E-C28-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c28-e/Strength_H
+ - srmag/m-sf2/c28-e/Strength_V
+ - srmag/m-sf2/c28-e/Strength_SQ
+ - srmag/m-sf2/c28-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C28
+ mapping:
+ - [B0, SD1E-C28-H]
+ - [A0, SD1E-C28-V]
+ - [A1, SD1E-C28-SQ]
+ - [B2, SD1E-C28-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c28-e/Strength_H
+ - srmag/m-sd1/c28-e/Strength_V
+ - srmag/m-sd1/c28-e/Strength_SQ
+ - srmag/m-sd1/c28-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C28
+ mapping:
+ - [B0, SH3E-C28-H]
+ - [A0, SH3E-C28-V]
+ - [A1, SH3E-C28-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c28-e-ch1/current
+ - srmag/ps-corr-sh3/c28-e-ch2/current
+ - srmag/ps-corr-sh3/c28-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C29
+ mapping:
+ - [B0, SH1A-C29-H]
+ - [A0, SH1A-C29-V]
+ - [A1, SH1A-C29-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c29-a-ch1/current
+ - srmag/ps-corr-sh1/c29-a-ch2/current
+ - srmag/ps-corr-sh1/c29-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C29
+ mapping:
+ - [B0, SD1A-C29-H]
+ - [A0, SD1A-C29-V]
+ - [A1, SD1A-C29-SQ]
+ - [B2, SD1A-C29-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c29-a/Strength_H
+ - srmag/m-sd1/c29-a/Strength_V
+ - srmag/m-sd1/c29-a/Strength_SQ
+ - srmag/m-sd1/c29-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C29
+ mapping:
+ - [B0, SF2A-C29-H]
+ - [A0, SF2A-C29-V]
+ - [A1, SF2A-C29-SQ]
+ - [B2, SF2A-C29-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c29-a/Strength_H
+ - srmag/m-sf2/c29-a/Strength_V
+ - srmag/m-sf2/c29-a/Strength_SQ
+ - srmag/m-sf2/c29-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C29
+ mapping:
+ - [B0, SD1B-C29-H]
+ - [A0, SD1B-C29-V]
+ - [A1, SD1B-C29-SQ]
+ - [B2, SD1B-C29-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c29-b/Strength_H
+ - srmag/m-sd1/c29-b/Strength_V
+ - srmag/m-sd1/c29-b/Strength_SQ
+ - srmag/m-sd1/c29-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C29
+ mapping:
+ - [B0, SH2B-C29-H]
+ - [A0, SH2B-C29-V]
+ - [A1, SH2B-C29-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c29-b-ch1/current
+ - srmag/ps-corr-sh2/c29-b-ch2/current
+ - srmag/ps-corr-sh2/c29-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C29
+ mapping:
+ - [B0, SD1D-C29-H]
+ - [A0, SD1D-C29-V]
+ - [A1, SD1D-C29-SQ]
+ - [B2, SD1D-C29-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c29-d/Strength_H
+ - srmag/m-sd1/c29-d/Strength_V
+ - srmag/m-sd1/c29-d/Strength_SQ
+ - srmag/m-sd1/c29-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C29
+ mapping:
+ - [B0, SF2E-C29-H]
+ - [A0, SF2E-C29-V]
+ - [A1, SF2E-C29-SQ]
+ - [B2, SF2E-C29-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c29-e/Strength_H
+ - srmag/m-sf2/c29-e/Strength_V
+ - srmag/m-sf2/c29-e/Strength_SQ
+ - srmag/m-sf2/c29-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C29
+ mapping:
+ - [B0, SD1E-C29-H]
+ - [A0, SD1E-C29-V]
+ - [A1, SD1E-C29-SQ]
+ - [B2, SD1E-C29-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c29-e/Strength_H
+ - srmag/m-sd1/c29-e/Strength_V
+ - srmag/m-sd1/c29-e/Strength_SQ
+ - srmag/m-sd1/c29-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C29
+ mapping:
+ - [B0, SH3E-C29-H]
+ - [A0, SH3E-C29-V]
+ - [A1, SH3E-C29-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c29-e-ch1/current
+ - srmag/ps-corr-sh3/c29-e-ch2/current
+ - srmag/ps-corr-sh3/c29-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C30
+ mapping:
+ - [B0, SH1A-C30-H]
+ - [A0, SH1A-C30-V]
+ - [A1, SH1A-C30-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c30-a-ch1/current
+ - srmag/ps-corr-sh1/c30-a-ch2/current
+ - srmag/ps-corr-sh1/c30-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C30
+ mapping:
+ - [B0, SD1A-C30-H]
+ - [A0, SD1A-C30-V]
+ - [A1, SD1A-C30-SQ]
+ - [B2, SD1A-C30-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c30-a/Strength_H
+ - srmag/m-sd1/c30-a/Strength_V
+ - srmag/m-sd1/c30-a/Strength_SQ
+ - srmag/m-sd1/c30-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C30
+ mapping:
+ - [B0, SF2A-C30-H]
+ - [A0, SF2A-C30-V]
+ - [A1, SF2A-C30-SQ]
+ - [B2, SF2A-C30-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c30-a/Strength_H
+ - srmag/m-sf2/c30-a/Strength_V
+ - srmag/m-sf2/c30-a/Strength_SQ
+ - srmag/m-sf2/c30-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C30
+ mapping:
+ - [B0, SD1B-C30-H]
+ - [A0, SD1B-C30-V]
+ - [A1, SD1B-C30-SQ]
+ - [B2, SD1B-C30-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c30-b/Strength_H
+ - srmag/m-sd1/c30-b/Strength_V
+ - srmag/m-sd1/c30-b/Strength_SQ
+ - srmag/m-sd1/c30-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C30
+ mapping:
+ - [B0, SH2B-C30-H]
+ - [A0, SH2B-C30-V]
+ - [A1, SH2B-C30-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c30-b-ch1/current
+ - srmag/ps-corr-sh2/c30-b-ch2/current
+ - srmag/ps-corr-sh2/c30-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C30
+ mapping:
+ - [B0, SD1D-C30-H]
+ - [A0, SD1D-C30-V]
+ - [A1, SD1D-C30-SQ]
+ - [B2, SD1D-C30-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c30-d/Strength_H
+ - srmag/m-sd1/c30-d/Strength_V
+ - srmag/m-sd1/c30-d/Strength_SQ
+ - srmag/m-sd1/c30-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C30
+ mapping:
+ - [B0, SF2E-C30-H]
+ - [A0, SF2E-C30-V]
+ - [A1, SF2E-C30-SQ]
+ - [B2, SF2E-C30-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c30-e/Strength_H
+ - srmag/m-sf2/c30-e/Strength_V
+ - srmag/m-sf2/c30-e/Strength_SQ
+ - srmag/m-sf2/c30-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C30
+ mapping:
+ - [B0, SD1E-C30-H]
+ - [A0, SD1E-C30-V]
+ - [A1, SD1E-C30-SQ]
+ - [B2, SD1E-C30-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c30-e/Strength_H
+ - srmag/m-sd1/c30-e/Strength_V
+ - srmag/m-sd1/c30-e/Strength_SQ
+ - srmag/m-sd1/c30-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C30
+ mapping:
+ - [B0, SH3E-C30-H]
+ - [A0, SH3E-C30-V]
+ - [A1, SH3E-C30-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c30-e-ch1/current
+ - srmag/ps-corr-sh3/c30-e-ch2/current
+ - srmag/ps-corr-sh3/c30-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C31
+ mapping:
+ - [B0, SH1A-C31-H]
+ - [A0, SH1A-C31-V]
+ - [A1, SH1A-C31-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c31-a-ch1/current
+ - srmag/ps-corr-sh1/c31-a-ch2/current
+ - srmag/ps-corr-sh1/c31-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C31
+ mapping:
+ - [B0, SD1A-C31-H]
+ - [A0, SD1A-C31-V]
+ - [A1, SD1A-C31-SQ]
+ - [B2, SD1A-C31-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c31-a/Strength_H
+ - srmag/m-sd1/c31-a/Strength_V
+ - srmag/m-sd1/c31-a/Strength_SQ
+ - srmag/m-sd1/c31-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C31
+ mapping:
+ - [B0, SF2A-C31-H]
+ - [A0, SF2A-C31-V]
+ - [A1, SF2A-C31-SQ]
+ - [B2, SF2A-C31-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c31-a/Strength_H
+ - srmag/m-sf2/c31-a/Strength_V
+ - srmag/m-sf2/c31-a/Strength_SQ
+ - srmag/m-sf2/c31-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C31
+ mapping:
+ - [B0, SD1B-C31-H]
+ - [A0, SD1B-C31-V]
+ - [A1, SD1B-C31-SQ]
+ - [B2, SD1B-C31-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c31-b/Strength_H
+ - srmag/m-sd1/c31-b/Strength_V
+ - srmag/m-sd1/c31-b/Strength_SQ
+ - srmag/m-sd1/c31-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C31
+ mapping:
+ - [B0, SH2B-C31-H]
+ - [A0, SH2B-C31-V]
+ - [A1, SH2B-C31-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c31-b-ch1/current
+ - srmag/ps-corr-sh2/c31-b-ch2/current
+ - srmag/ps-corr-sh2/c31-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C31
+ mapping:
+ - [B0, SD1D-C31-H]
+ - [A0, SD1D-C31-V]
+ - [A1, SD1D-C31-SQ]
+ - [B2, SD1D-C31-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c31-d/Strength_H
+ - srmag/m-sd1/c31-d/Strength_V
+ - srmag/m-sd1/c31-d/Strength_SQ
+ - srmag/m-sd1/c31-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C31
+ mapping:
+ - [B0, SF2E-C31-H]
+ - [A0, SF2E-C31-V]
+ - [A1, SF2E-C31-SQ]
+ - [B2, SF2E-C31-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c31-e/Strength_H
+ - srmag/m-sf2/c31-e/Strength_V
+ - srmag/m-sf2/c31-e/Strength_SQ
+ - srmag/m-sf2/c31-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C31
+ mapping:
+ - [B0, SD1E-C31-H]
+ - [A0, SD1E-C31-V]
+ - [A1, SD1E-C31-SQ]
+ - [B2, SD1E-C31-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c31-e/Strength_H
+ - srmag/m-sd1/c31-e/Strength_V
+ - srmag/m-sd1/c31-e/Strength_SQ
+ - srmag/m-sd1/c31-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C31
+ mapping:
+ - [B0, SH3E-C31-H]
+ - [A0, SH3E-C31-V]
+ - [A1, SH3E-C31-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c31-e-ch1/current
+ - srmag/ps-corr-sh3/c31-e-ch2/current
+ - srmag/ps-corr-sh3/c31-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C32
+ mapping:
+ - [B0, SH1A-C32-H]
+ - [A0, SH1A-C32-V]
+ - [A1, SH1A-C32-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c32-a-ch1/current
+ - srmag/ps-corr-sh1/c32-a-ch2/current
+ - srmag/ps-corr-sh1/c32-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C32
+ mapping:
+ - [B0, SD1A-C32-H]
+ - [A0, SD1A-C32-V]
+ - [A1, SD1A-C32-SQ]
+ - [B2, SD1A-C32-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c32-a/Strength_H
+ - srmag/m-sd1/c32-a/Strength_V
+ - srmag/m-sd1/c32-a/Strength_SQ
+ - srmag/m-sd1/c32-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C32
+ mapping:
+ - [B0, SF2A-C32-H]
+ - [A0, SF2A-C32-V]
+ - [A1, SF2A-C32-SQ]
+ - [B2, SF2A-C32-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c32-a/Strength_H
+ - srmag/m-sf2/c32-a/Strength_V
+ - srmag/m-sf2/c32-a/Strength_SQ
+ - srmag/m-sf2/c32-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C32
+ mapping:
+ - [B0, SD1B-C32-H]
+ - [A0, SD1B-C32-V]
+ - [A1, SD1B-C32-SQ]
+ - [B2, SD1B-C32-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c32-b/Strength_H
+ - srmag/m-sd1/c32-b/Strength_V
+ - srmag/m-sd1/c32-b/Strength_SQ
+ - srmag/m-sd1/c32-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C32
+ mapping:
+ - [B0, SH2B-C32-H]
+ - [A0, SH2B-C32-V]
+ - [A1, SH2B-C32-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c32-b-ch1/current
+ - srmag/ps-corr-sh2/c32-b-ch2/current
+ - srmag/ps-corr-sh2/c32-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C32
+ mapping:
+ - [B0, SD1D-C32-H]
+ - [A0, SD1D-C32-V]
+ - [A1, SD1D-C32-SQ]
+ - [B2, SD1D-C32-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c32-d/Strength_H
+ - srmag/m-sd1/c32-d/Strength_V
+ - srmag/m-sd1/c32-d/Strength_SQ
+ - srmag/m-sd1/c32-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C32
+ mapping:
+ - [B0, SF2E-C32-H]
+ - [A0, SF2E-C32-V]
+ - [A1, SF2E-C32-SQ]
+ - [B2, SF2E-C32-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c32-e/Strength_H
+ - srmag/m-sf2/c32-e/Strength_V
+ - srmag/m-sf2/c32-e/Strength_SQ
+ - srmag/m-sf2/c32-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C32
+ mapping:
+ - [B0, SD1E-C32-H]
+ - [A0, SD1E-C32-V]
+ - [A1, SD1E-C32-SQ]
+ - [B2, SD1E-C32-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c32-e/Strength_H
+ - srmag/m-sd1/c32-e/Strength_V
+ - srmag/m-sd1/c32-e/Strength_SQ
+ - srmag/m-sd1/c32-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C32
+ mapping:
+ - [B0, SH3E-C32-H]
+ - [A0, SH3E-C32-V]
+ - [A1, SH3E-C32-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c32-e-ch1/current
+ - srmag/ps-corr-sh3/c32-e-ch2/current
+ - srmag/ps-corr-sh3/c32-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C01
+ mapping:
+ - [B0, SH1A-C01-H]
+ - [A0, SH1A-C01-V]
+ - [A1, SH1A-C01-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c01-a-ch1/current
+ - srmag/ps-corr-sh1/c01-a-ch2/current
+ - srmag/ps-corr-sh1/c01-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C01
+ mapping:
+ - [B0, SD1A-C01-H]
+ - [A0, SD1A-C01-V]
+ - [A1, SD1A-C01-SQ]
+ - [B2, SD1A-C01-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c01-a/Strength_H
+ - srmag/m-sd1/c01-a/Strength_V
+ - srmag/m-sd1/c01-a/Strength_SQ
+ - srmag/m-sd1/c01-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C01
+ mapping:
+ - [B0, SF2A-C01-H]
+ - [A0, SF2A-C01-V]
+ - [A1, SF2A-C01-SQ]
+ - [B2, SF2A-C01-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c01-a/Strength_H
+ - srmag/m-sf2/c01-a/Strength_V
+ - srmag/m-sf2/c01-a/Strength_SQ
+ - srmag/m-sf2/c01-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C01
+ mapping:
+ - [B0, SD1B-C01-H]
+ - [A0, SD1B-C01-V]
+ - [A1, SD1B-C01-SQ]
+ - [B2, SD1B-C01-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c01-b/Strength_H
+ - srmag/m-sd1/c01-b/Strength_V
+ - srmag/m-sd1/c01-b/Strength_SQ
+ - srmag/m-sd1/c01-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C01
+ mapping:
+ - [B0, SH2B-C01-H]
+ - [A0, SH2B-C01-V]
+ - [A1, SH2B-C01-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c01-b-ch1/current
+ - srmag/ps-corr-sh2/c01-b-ch2/current
+ - srmag/ps-corr-sh2/c01-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C01
+ mapping:
+ - [B0, SD1D-C01-H]
+ - [A0, SD1D-C01-V]
+ - [A1, SD1D-C01-SQ]
+ - [B2, SD1D-C01-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c01-d/Strength_H
+ - srmag/m-sd1/c01-d/Strength_V
+ - srmag/m-sd1/c01-d/Strength_SQ
+ - srmag/m-sd1/c01-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C01
+ mapping:
+ - [B0, SF2E-C01-H]
+ - [A0, SF2E-C01-V]
+ - [A1, SF2E-C01-SQ]
+ - [B2, SF2E-C01-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c01-e/Strength_H
+ - srmag/m-sf2/c01-e/Strength_V
+ - srmag/m-sf2/c01-e/Strength_SQ
+ - srmag/m-sf2/c01-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C01
+ mapping:
+ - [B0, SD1E-C01-H]
+ - [A0, SD1E-C01-V]
+ - [A1, SD1E-C01-SQ]
+ - [B2, SD1E-C01-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c01-e/Strength_H
+ - srmag/m-sd1/c01-e/Strength_V
+ - srmag/m-sd1/c01-e/Strength_SQ
+ - srmag/m-sd1/c01-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C01
+ mapping:
+ - [B0, SH3E-C01-H]
+ - [A0, SH3E-C01-V]
+ - [A1, SH3E-C01-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c01-e-ch1/current
+ - srmag/ps-corr-sh3/c01-e-ch2/current
+ - srmag/ps-corr-sh3/c01-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C02
+ mapping:
+ - [B0, SH1A-C02-H]
+ - [A0, SH1A-C02-V]
+ - [A1, SH1A-C02-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c02-a-ch1/current
+ - srmag/ps-corr-sh1/c02-a-ch2/current
+ - srmag/ps-corr-sh1/c02-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1A-C02
+ mapping:
+ - [B0, SD1A-C02-H]
+ - [A0, SD1A-C02-V]
+ - [A1, SD1A-C02-SQ]
+ - [B2, SD1A-C02-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c02-a/Strength_H
+ - srmag/m-sd1/c02-a/Strength_V
+ - srmag/m-sd1/c02-a/Strength_SQ
+ - srmag/m-sd1/c02-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2A-C02
+ mapping:
+ - [B0, SF2A-C02-H]
+ - [A0, SF2A-C02-V]
+ - [A1, SF2A-C02-SQ]
+ - [B2, SF2A-C02-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c02-a/Strength_H
+ - srmag/m-sf2/c02-a/Strength_V
+ - srmag/m-sf2/c02-a/Strength_SQ
+ - srmag/m-sf2/c02-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1B-C02
+ mapping:
+ - [B0, SD1B-C02-H]
+ - [A0, SD1B-C02-V]
+ - [A1, SD1B-C02-SQ]
+ - [B2, SD1B-C02-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c02-b/Strength_H
+ - srmag/m-sd1/c02-b/Strength_V
+ - srmag/m-sd1/c02-b/Strength_SQ
+ - srmag/m-sd1/c02-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C02
+ mapping:
+ - [B0, SH2B-C02-H]
+ - [A0, SH2B-C02-V]
+ - [A1, SH2B-C02-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c02-b-ch1/current
+ - srmag/ps-corr-sh2/c02-b-ch2/current
+ - srmag/ps-corr-sh2/c02-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SD1D-C02
+ mapping:
+ - [B0, SD1D-C02-H]
+ - [A0, SD1D-C02-V]
+ - [A1, SD1D-C02-SQ]
+ - [B2, SD1D-C02-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c02-d/Strength_H
+ - srmag/m-sd1/c02-d/Strength_V
+ - srmag/m-sd1/c02-d/Strength_SQ
+ - srmag/m-sd1/c02-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SF2E-C02
+ mapping:
+ - [B0, SF2E-C02-H]
+ - [A0, SF2E-C02-V]
+ - [A1, SF2E-C02-SQ]
+ - [B2, SF2E-C02-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c02-e/Strength_H
+ - srmag/m-sf2/c02-e/Strength_V
+ - srmag/m-sf2/c02-e/Strength_SQ
+ - srmag/m-sf2/c02-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SD1E-C02
+ mapping:
+ - [B0, SD1E-C02-H]
+ - [A0, SD1E-C02-V]
+ - [A1, SD1E-C02-SQ]
+ - [B2, SD1E-C02-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c02-e/Strength_H
+ - srmag/m-sd1/c02-e/Strength_V
+ - srmag/m-sd1/c02-e/Strength_SQ
+ - srmag/m-sd1/c02-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C02
+ mapping:
+ - [B0, SH3E-C02-H]
+ - [A0, SH3E-C02-V]
+ - [A1, SH3E-C02-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c02-e-ch1/current
+ - srmag/ps-corr-sh3/c02-e-ch2/current
+ - srmag/ps-corr-sh3/c02-e-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SH1A-C03
+ mapping:
+ - [B0, SH1A-C03-H]
+ - [A0, SH1A-C03-V]
+ - [A1, SH1A-C03-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH1_SH3_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh1/c03-a-ch1/current
+ - srmag/ps-corr-sh1/c03-a-ch2/current
+ - srmag/ps-corr-sh1/c03-a-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SI1A-C03
+ mapping:
+ - [B0, SI1A-C03-H]
+ - [A0, SI1A-C03-V]
+ - [A1, SI1A-C03-SQ]
+ - [B2, SI1A-C03-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c03-a/Strength_H
+ - srmag/m-sd1/c03-a/Strength_V
+ - srmag/m-sd1/c03-a/Strength_SQ
+ - srmag/m-sd1/c03-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SI2A-C03
+ mapping:
+ - [B0, SI2A-C03-H]
+ - [A0, SI2A-C03-V]
+ - [A1, SI2A-C03-SQ]
+ - [B2, SI2A-C03-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c03-a/Strength_H
+ - srmag/m-sf2/c03-a/Strength_V
+ - srmag/m-sf2/c03-a/Strength_SQ
+ - srmag/m-sf2/c03-a/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SI1B-C03
+ mapping:
+ - [B0, SI1B-C03-H]
+ - [A0, SI1B-C03-V]
+ - [A1, SI1B-C03-SQ]
+ - [B2, SI1B-C03-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c03-b/Strength_H
+ - srmag/m-sd1/c03-b/Strength_V
+ - srmag/m-sd1/c03-b/Strength_SQ
+ - srmag/m-sd1/c03-b/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2B-C03
+ mapping:
+ - [B0, SH2B-C03-H]
+ - [A0, SH2B-C03-V]
+ - [A1, SH2B-C03-SQ]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1]
+ units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
+ pseudo_factors: [1.0,-1.0,-1.0]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SH2_sq_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SH_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh2/c03-b-ch1/current
+ - srmag/ps-corr-sh2/c03-b-ch2/current
+ - srmag/ps-corr-sh2/c03-b-ch3/current
+- type: pyaml.magnet.cfm_magnet
+ name: SI1D-C03
+ mapping:
+ - [B0, SI1D-C03-H]
+ - [A0, SI1D-C03-V]
+ - [A1, SI1D-C03-SQ]
+ - [B2, SI1D-C03-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c03-d/Strength_H
+ - srmag/m-sd1/c03-d/Strength_V
+ - srmag/m-sd1/c03-d/Strength_SQ
+ - srmag/m-sd1/c03-d/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SI2E-C03
+ mapping:
+ - [B0, SI2E-C03-H]
+ - [A0, SI2E-C03-V]
+ - [A1, SI2E-C03-SQ]
+ - [B2, SI2E-C03-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sf2/c03-e/Strength_H
+ - srmag/m-sf2/c03-e/Strength_V
+ - srmag/m-sf2/c03-e/Strength_SQ
+ - srmag/m-sf2/c03-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SI1E-C03
+ mapping:
+ - [B0, SI1E-C03-H]
+ - [A0, SI1E-C03-V]
+ - [A1, SI1E-C03-SQ]
+ - [B2, SI1E-C03-S]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ units: [rad,rad,m-1,m-2]
+ physics:
+ - srmag/m-sd1/c03-e/Strength_H
+ - srmag/m-sd1/c03-e/Strength_V
+ - srmag/m-sd1/c03-e/Strength_SQ
+ - srmag/m-sd1/c03-e/Strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3E-C03
+ mapping:
+ - [B0, SH3E-C03-H]
+ - [A0, SH3E-C03-V]
+ - [A1, SH3E-C03-SQ]
+ - [B2, SH3E-C03-S]
+ model:
+ type: pyaml.magnet.linear_cfm_model
+ multipoles: [B0,A0,A1,B2]
+ pseudo_factors: [1.0,-1.0,-1.0,-1.0]
+ units: [rad,rad,m-1,m-2]
+ hardware_units: ["A","A","A","A","A"]
+ curves:
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SHI_h_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SHI_v_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SHI_sq_strength.csv
+ - type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/SHI_sext_strength.csv
+ matrix:
+ type: pyaml.magnet.csvmatrix
+ file: sr/magnet_models/SHI_matrix.csv
+ powerconverters:
+ - srmag/ps-corr-sh3/c03-e-ch1/current
+ - srmag/ps-corr-sh3/c03-e-ch2/current
+ - srmag/ps-corr-sh3/c03-e-ch3/current
+ - srmag/ps-corr-sh3/c03-e-ch5/current
+ - srmag/ps-corr-sh3/c03-e-ch6/current
+- type: pyaml.bpm.bpm
+ name: BPM_C04-01
+ x_pos: srdiag/bpm/c04-01/SA_HPosition
+ y_pos: srdiag/bpm/c04-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C04-02
+ x_pos: srdiag/bpm/c04-02/SA_HPosition
+ y_pos: srdiag/bpm/c04-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C04-03
+ x_pos: srdiag/bpm/c04-03/SA_HPosition
+ y_pos: srdiag/bpm/c04-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C04-04
+ x_pos: srdiag/bpm/c04-04/SA_HPosition
+ y_pos: srdiag/bpm/c04-04/SA_VPosition
+ x_offset: srdiag/bpm/c04-04/HOffset
+ y_offset: srdiag/bpm/c04-04/VOffset
+- type: pyaml.bpm.bpm
+ name: BPM_C04-05
+ x_pos: srdiag/bpm/c04-05/SA_HPosition
+ y_pos: srdiag/bpm/c04-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C04-06
+ x_pos: srdiag/bpm/c04-06/SA_HPosition
+ y_pos: srdiag/bpm/c04-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C04-07
+ x_pos: srdiag/bpm/c04-07/SA_HPosition
+ y_pos: srdiag/bpm/c04-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C04-08
+ x_pos: srdiag/bpm/c04-08/SA_HPosition
+ y_pos: srdiag/bpm/c04-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C04-09
+ x_pos: srdiag/bpm/c04-09/SA_HPosition
+ y_pos: srdiag/bpm/c04-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C04-10
+ x_pos: srdiag/bpm/c04-10/SA_HPosition
+ y_pos: srdiag/bpm/c04-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-01
+ x_pos: srdiag/bpm/c05-01/SA_HPosition
+ y_pos: srdiag/bpm/c05-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-02
+ x_pos: srdiag/bpm/c05-02/SA_HPosition
+ y_pos: srdiag/bpm/c05-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-03
+ x_pos: srdiag/bpm/c05-03/SA_HPosition
+ y_pos: srdiag/bpm/c05-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-04
+ x_pos: srdiag/bpm/c05-04/SA_HPosition
+ y_pos: srdiag/bpm/c05-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-05
+ x_pos: srdiag/bpm/c05-05/SA_HPosition
+ y_pos: srdiag/bpm/c05-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-06
+ x_pos: srdiag/bpm/c05-06/SA_HPosition
+ y_pos: srdiag/bpm/c05-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-07
+ x_pos: srdiag/bpm/c05-07/SA_HPosition
+ y_pos: srdiag/bpm/c05-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-08
+ x_pos: srdiag/bpm/c05-08/SA_HPosition
+ y_pos: srdiag/bpm/c05-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-09
+ x_pos: srdiag/bpm/c05-09/SA_HPosition
+ y_pos: srdiag/bpm/c05-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C05-10
+ x_pos: srdiag/bpm/c05-10/SA_HPosition
+ y_pos: srdiag/bpm/c05-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-01
+ x_pos: srdiag/bpm/c06-01/SA_HPosition
+ y_pos: srdiag/bpm/c06-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-02
+ x_pos: srdiag/bpm/c06-02/SA_HPosition
+ y_pos: srdiag/bpm/c06-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-03
+ x_pos: srdiag/bpm/c06-03/SA_HPosition
+ y_pos: srdiag/bpm/c06-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-04
+ x_pos: srdiag/bpm/c06-04/SA_HPosition
+ y_pos: srdiag/bpm/c06-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-05
+ x_pos: srdiag/bpm/c06-05/SA_HPosition
+ y_pos: srdiag/bpm/c06-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-06
+ x_pos: srdiag/bpm/c06-06/SA_HPosition
+ y_pos: srdiag/bpm/c06-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-07
+ x_pos: srdiag/bpm/c06-07/SA_HPosition
+ y_pos: srdiag/bpm/c06-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-08
+ x_pos: srdiag/bpm/c06-08/SA_HPosition
+ y_pos: srdiag/bpm/c06-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-09
+ x_pos: srdiag/bpm/c06-09/SA_HPosition
+ y_pos: srdiag/bpm/c06-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C06-10
+ x_pos: srdiag/bpm/c06-10/SA_HPosition
+ y_pos: srdiag/bpm/c06-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-01
+ x_pos: srdiag/bpm/c07-01/SA_HPosition
+ y_pos: srdiag/bpm/c07-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-02
+ x_pos: srdiag/bpm/c07-02/SA_HPosition
+ y_pos: srdiag/bpm/c07-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-03
+ x_pos: srdiag/bpm/c07-03/SA_HPosition
+ y_pos: srdiag/bpm/c07-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-04
+ x_pos: srdiag/bpm/c07-04/SA_HPosition
+ y_pos: srdiag/bpm/c07-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-05
+ x_pos: srdiag/bpm/c07-05/SA_HPosition
+ y_pos: srdiag/bpm/c07-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-06
+ x_pos: srdiag/bpm/c07-06/SA_HPosition
+ y_pos: srdiag/bpm/c07-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-07
+ x_pos: srdiag/bpm/c07-07/SA_HPosition
+ y_pos: srdiag/bpm/c07-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-08
+ x_pos: srdiag/bpm/c07-08/SA_HPosition
+ y_pos: srdiag/bpm/c07-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-09
+ x_pos: srdiag/bpm/c07-09/SA_HPosition
+ y_pos: srdiag/bpm/c07-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C07-10
+ x_pos: srdiag/bpm/c07-10/SA_HPosition
+ y_pos: srdiag/bpm/c07-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-01
+ x_pos: srdiag/bpm/c08-01/SA_HPosition
+ y_pos: srdiag/bpm/c08-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-02
+ x_pos: srdiag/bpm/c08-02/SA_HPosition
+ y_pos: srdiag/bpm/c08-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-03
+ x_pos: srdiag/bpm/c08-03/SA_HPosition
+ y_pos: srdiag/bpm/c08-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-04
+ x_pos: srdiag/bpm/c08-04/SA_HPosition
+ y_pos: srdiag/bpm/c08-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-05
+ x_pos: srdiag/bpm/c08-05/SA_HPosition
+ y_pos: srdiag/bpm/c08-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-06
+ x_pos: srdiag/bpm/c08-06/SA_HPosition
+ y_pos: srdiag/bpm/c08-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-07
+ x_pos: srdiag/bpm/c08-07/SA_HPosition
+ y_pos: srdiag/bpm/c08-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-08
+ x_pos: srdiag/bpm/c08-08/SA_HPosition
+ y_pos: srdiag/bpm/c08-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-09
+ x_pos: srdiag/bpm/c08-09/SA_HPosition
+ y_pos: srdiag/bpm/c08-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C08-10
+ x_pos: srdiag/bpm/c08-10/SA_HPosition
+ y_pos: srdiag/bpm/c08-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-01
+ x_pos: srdiag/bpm/c09-01/SA_HPosition
+ y_pos: srdiag/bpm/c09-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-02
+ x_pos: srdiag/bpm/c09-02/SA_HPosition
+ y_pos: srdiag/bpm/c09-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-03
+ x_pos: srdiag/bpm/c09-03/SA_HPosition
+ y_pos: srdiag/bpm/c09-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-04
+ x_pos: srdiag/bpm/c09-04/SA_HPosition
+ y_pos: srdiag/bpm/c09-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-05
+ x_pos: srdiag/bpm/c09-05/SA_HPosition
+ y_pos: srdiag/bpm/c09-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-06
+ x_pos: srdiag/bpm/c09-06/SA_HPosition
+ y_pos: srdiag/bpm/c09-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-07
+ x_pos: srdiag/bpm/c09-07/SA_HPosition
+ y_pos: srdiag/bpm/c09-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-08
+ x_pos: srdiag/bpm/c09-08/SA_HPosition
+ y_pos: srdiag/bpm/c09-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-09
+ x_pos: srdiag/bpm/c09-09/SA_HPosition
+ y_pos: srdiag/bpm/c09-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C09-10
+ x_pos: srdiag/bpm/c09-10/SA_HPosition
+ y_pos: srdiag/bpm/c09-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-01
+ x_pos: srdiag/bpm/c10-01/SA_HPosition
+ y_pos: srdiag/bpm/c10-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-02
+ x_pos: srdiag/bpm/c10-02/SA_HPosition
+ y_pos: srdiag/bpm/c10-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-03
+ x_pos: srdiag/bpm/c10-03/SA_HPosition
+ y_pos: srdiag/bpm/c10-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-04
+ x_pos: srdiag/bpm/c10-04/SA_HPosition
+ y_pos: srdiag/bpm/c10-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-05
+ x_pos: srdiag/bpm/c10-05/SA_HPosition
+ y_pos: srdiag/bpm/c10-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-06
+ x_pos: srdiag/bpm/c10-06/SA_HPosition
+ y_pos: srdiag/bpm/c10-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-07
+ x_pos: srdiag/bpm/c10-07/SA_HPosition
+ y_pos: srdiag/bpm/c10-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-08
+ x_pos: srdiag/bpm/c10-08/SA_HPosition
+ y_pos: srdiag/bpm/c10-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-09
+ x_pos: srdiag/bpm/c10-09/SA_HPosition
+ y_pos: srdiag/bpm/c10-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C10-10
+ x_pos: srdiag/bpm/c10-10/SA_HPosition
+ y_pos: srdiag/bpm/c10-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-01
+ x_pos: srdiag/bpm/c11-01/SA_HPosition
+ y_pos: srdiag/bpm/c11-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-02
+ x_pos: srdiag/bpm/c11-02/SA_HPosition
+ y_pos: srdiag/bpm/c11-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-03
+ x_pos: srdiag/bpm/c11-03/SA_HPosition
+ y_pos: srdiag/bpm/c11-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-04
+ x_pos: srdiag/bpm/c11-04/SA_HPosition
+ y_pos: srdiag/bpm/c11-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-05
+ x_pos: srdiag/bpm/c11-05/SA_HPosition
+ y_pos: srdiag/bpm/c11-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-06
+ x_pos: srdiag/bpm/c11-06/SA_HPosition
+ y_pos: srdiag/bpm/c11-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-07
+ x_pos: srdiag/bpm/c11-07/SA_HPosition
+ y_pos: srdiag/bpm/c11-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-08
+ x_pos: srdiag/bpm/c11-08/SA_HPosition
+ y_pos: srdiag/bpm/c11-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-09
+ x_pos: srdiag/bpm/c11-09/SA_HPosition
+ y_pos: srdiag/bpm/c11-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C11-10
+ x_pos: srdiag/bpm/c11-10/SA_HPosition
+ y_pos: srdiag/bpm/c11-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-01
+ x_pos: srdiag/bpm/c12-01/SA_HPosition
+ y_pos: srdiag/bpm/c12-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-02
+ x_pos: srdiag/bpm/c12-02/SA_HPosition
+ y_pos: srdiag/bpm/c12-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-03
+ x_pos: srdiag/bpm/c12-03/SA_HPosition
+ y_pos: srdiag/bpm/c12-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-04
+ x_pos: srdiag/bpm/c12-04/SA_HPosition
+ y_pos: srdiag/bpm/c12-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-05
+ x_pos: srdiag/bpm/c12-05/SA_HPosition
+ y_pos: srdiag/bpm/c12-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-06
+ x_pos: srdiag/bpm/c12-06/SA_HPosition
+ y_pos: srdiag/bpm/c12-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-07
+ x_pos: srdiag/bpm/c12-07/SA_HPosition
+ y_pos: srdiag/bpm/c12-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-08
+ x_pos: srdiag/bpm/c12-08/SA_HPosition
+ y_pos: srdiag/bpm/c12-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-09
+ x_pos: srdiag/bpm/c12-09/SA_HPosition
+ y_pos: srdiag/bpm/c12-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C12-10
+ x_pos: srdiag/bpm/c12-10/SA_HPosition
+ y_pos: srdiag/bpm/c12-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-01
+ x_pos: srdiag/bpm/c13-01/SA_HPosition
+ y_pos: srdiag/bpm/c13-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-02
+ x_pos: srdiag/bpm/c13-02/SA_HPosition
+ y_pos: srdiag/bpm/c13-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-03
+ x_pos: srdiag/bpm/c13-03/SA_HPosition
+ y_pos: srdiag/bpm/c13-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-04
+ x_pos: srdiag/bpm/c13-04/SA_HPosition
+ y_pos: srdiag/bpm/c13-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-05
+ x_pos: srdiag/bpm/c13-05/SA_HPosition
+ y_pos: srdiag/bpm/c13-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-06
+ x_pos: srdiag/bpm/c13-06/SA_HPosition
+ y_pos: srdiag/bpm/c13-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-07
+ x_pos: srdiag/bpm/c13-07/SA_HPosition
+ y_pos: srdiag/bpm/c13-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-08
+ x_pos: srdiag/bpm/c13-08/SA_HPosition
+ y_pos: srdiag/bpm/c13-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-09
+ x_pos: srdiag/bpm/c13-09/SA_HPosition
+ y_pos: srdiag/bpm/c13-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C13-10
+ x_pos: srdiag/bpm/c13-10/SA_HPosition
+ y_pos: srdiag/bpm/c13-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-01
+ x_pos: srdiag/bpm/c14-01/SA_HPosition
+ y_pos: srdiag/bpm/c14-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-02
+ x_pos: srdiag/bpm/c14-02/SA_HPosition
+ y_pos: srdiag/bpm/c14-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-03
+ x_pos: srdiag/bpm/c14-03/SA_HPosition
+ y_pos: srdiag/bpm/c14-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-04
+ x_pos: srdiag/bpm/c14-04/SA_HPosition
+ y_pos: srdiag/bpm/c14-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-05
+ x_pos: srdiag/bpm/c14-05/SA_HPosition
+ y_pos: srdiag/bpm/c14-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-06
+ x_pos: srdiag/bpm/c14-06/SA_HPosition
+ y_pos: srdiag/bpm/c14-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-07
+ x_pos: srdiag/bpm/c14-07/SA_HPosition
+ y_pos: srdiag/bpm/c14-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-08
+ x_pos: srdiag/bpm/c14-08/SA_HPosition
+ y_pos: srdiag/bpm/c14-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-09
+ x_pos: srdiag/bpm/c14-09/SA_HPosition
+ y_pos: srdiag/bpm/c14-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C14-10
+ x_pos: srdiag/bpm/c14-10/SA_HPosition
+ y_pos: srdiag/bpm/c14-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-01
+ x_pos: srdiag/bpm/c15-01/SA_HPosition
+ y_pos: srdiag/bpm/c15-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-02
+ x_pos: srdiag/bpm/c15-02/SA_HPosition
+ y_pos: srdiag/bpm/c15-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-03
+ x_pos: srdiag/bpm/c15-03/SA_HPosition
+ y_pos: srdiag/bpm/c15-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-04
+ x_pos: srdiag/bpm/c15-04/SA_HPosition
+ y_pos: srdiag/bpm/c15-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-05
+ x_pos: srdiag/bpm/c15-05/SA_HPosition
+ y_pos: srdiag/bpm/c15-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-06
+ x_pos: srdiag/bpm/c15-06/SA_HPosition
+ y_pos: srdiag/bpm/c15-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-07
+ x_pos: srdiag/bpm/c15-07/SA_HPosition
+ y_pos: srdiag/bpm/c15-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-08
+ x_pos: srdiag/bpm/c15-08/SA_HPosition
+ y_pos: srdiag/bpm/c15-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-09
+ x_pos: srdiag/bpm/c15-09/SA_HPosition
+ y_pos: srdiag/bpm/c15-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C15-10
+ x_pos: srdiag/bpm/c15-10/SA_HPosition
+ y_pos: srdiag/bpm/c15-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-01
+ x_pos: srdiag/bpm/c16-01/SA_HPosition
+ y_pos: srdiag/bpm/c16-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-02
+ x_pos: srdiag/bpm/c16-02/SA_HPosition
+ y_pos: srdiag/bpm/c16-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-03
+ x_pos: srdiag/bpm/c16-03/SA_HPosition
+ y_pos: srdiag/bpm/c16-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-04
+ x_pos: srdiag/bpm/c16-04/SA_HPosition
+ y_pos: srdiag/bpm/c16-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-05
+ x_pos: srdiag/bpm/c16-05/SA_HPosition
+ y_pos: srdiag/bpm/c16-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-06
+ x_pos: srdiag/bpm/c16-06/SA_HPosition
+ y_pos: srdiag/bpm/c16-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-07
+ x_pos: srdiag/bpm/c16-07/SA_HPosition
+ y_pos: srdiag/bpm/c16-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-08
+ x_pos: srdiag/bpm/c16-08/SA_HPosition
+ y_pos: srdiag/bpm/c16-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-09
+ x_pos: srdiag/bpm/c16-09/SA_HPosition
+ y_pos: srdiag/bpm/c16-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C16-10
+ x_pos: srdiag/bpm/c16-10/SA_HPosition
+ y_pos: srdiag/bpm/c16-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-01
+ x_pos: srdiag/bpm/c17-01/SA_HPosition
+ y_pos: srdiag/bpm/c17-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-02
+ x_pos: srdiag/bpm/c17-02/SA_HPosition
+ y_pos: srdiag/bpm/c17-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-03
+ x_pos: srdiag/bpm/c17-03/SA_HPosition
+ y_pos: srdiag/bpm/c17-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-04
+ x_pos: srdiag/bpm/c17-04/SA_HPosition
+ y_pos: srdiag/bpm/c17-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-05
+ x_pos: srdiag/bpm/c17-05/SA_HPosition
+ y_pos: srdiag/bpm/c17-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-06
+ x_pos: srdiag/bpm/c17-06/SA_HPosition
+ y_pos: srdiag/bpm/c17-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-07
+ x_pos: srdiag/bpm/c17-07/SA_HPosition
+ y_pos: srdiag/bpm/c17-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-08
+ x_pos: srdiag/bpm/c17-08/SA_HPosition
+ y_pos: srdiag/bpm/c17-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-09
+ x_pos: srdiag/bpm/c17-09/SA_HPosition
+ y_pos: srdiag/bpm/c17-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C17-10
+ x_pos: srdiag/bpm/c17-10/SA_HPosition
+ y_pos: srdiag/bpm/c17-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-01
+ x_pos: srdiag/bpm/c18-01/SA_HPosition
+ y_pos: srdiag/bpm/c18-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-02
+ x_pos: srdiag/bpm/c18-02/SA_HPosition
+ y_pos: srdiag/bpm/c18-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-03
+ x_pos: srdiag/bpm/c18-03/SA_HPosition
+ y_pos: srdiag/bpm/c18-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-04
+ x_pos: srdiag/bpm/c18-04/SA_HPosition
+ y_pos: srdiag/bpm/c18-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-05
+ x_pos: srdiag/bpm/c18-05/SA_HPosition
+ y_pos: srdiag/bpm/c18-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-06
+ x_pos: srdiag/bpm/c18-06/SA_HPosition
+ y_pos: srdiag/bpm/c18-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-07
+ x_pos: srdiag/bpm/c18-07/SA_HPosition
+ y_pos: srdiag/bpm/c18-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-08
+ x_pos: srdiag/bpm/c18-08/SA_HPosition
+ y_pos: srdiag/bpm/c18-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-09
+ x_pos: srdiag/bpm/c18-09/SA_HPosition
+ y_pos: srdiag/bpm/c18-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C18-10
+ x_pos: srdiag/bpm/c18-10/SA_HPosition
+ y_pos: srdiag/bpm/c18-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-01
+ x_pos: srdiag/bpm/c19-01/SA_HPosition
+ y_pos: srdiag/bpm/c19-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-02
+ x_pos: srdiag/bpm/c19-02/SA_HPosition
+ y_pos: srdiag/bpm/c19-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-03
+ x_pos: srdiag/bpm/c19-03/SA_HPosition
+ y_pos: srdiag/bpm/c19-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-04
+ x_pos: srdiag/bpm/c19-04/SA_HPosition
+ y_pos: srdiag/bpm/c19-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-05
+ x_pos: srdiag/bpm/c19-05/SA_HPosition
+ y_pos: srdiag/bpm/c19-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-06
+ x_pos: srdiag/bpm/c19-06/SA_HPosition
+ y_pos: srdiag/bpm/c19-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-07
+ x_pos: srdiag/bpm/c19-07/SA_HPosition
+ y_pos: srdiag/bpm/c19-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-08
+ x_pos: srdiag/bpm/c19-08/SA_HPosition
+ y_pos: srdiag/bpm/c19-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-09
+ x_pos: srdiag/bpm/c19-09/SA_HPosition
+ y_pos: srdiag/bpm/c19-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C19-10
+ x_pos: srdiag/bpm/c19-10/SA_HPosition
+ y_pos: srdiag/bpm/c19-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-01
+ x_pos: srdiag/bpm/c20-01/SA_HPosition
+ y_pos: srdiag/bpm/c20-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-02
+ x_pos: srdiag/bpm/c20-02/SA_HPosition
+ y_pos: srdiag/bpm/c20-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-03
+ x_pos: srdiag/bpm/c20-03/SA_HPosition
+ y_pos: srdiag/bpm/c20-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-04
+ x_pos: srdiag/bpm/c20-04/SA_HPosition
+ y_pos: srdiag/bpm/c20-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-05
+ x_pos: srdiag/bpm/c20-05/SA_HPosition
+ y_pos: srdiag/bpm/c20-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-06
+ x_pos: srdiag/bpm/c20-06/SA_HPosition
+ y_pos: srdiag/bpm/c20-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-07
+ x_pos: srdiag/bpm/c20-07/SA_HPosition
+ y_pos: srdiag/bpm/c20-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-08
+ x_pos: srdiag/bpm/c20-08/SA_HPosition
+ y_pos: srdiag/bpm/c20-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-09
+ x_pos: srdiag/bpm/c20-09/SA_HPosition
+ y_pos: srdiag/bpm/c20-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C20-10
+ x_pos: srdiag/bpm/c20-10/SA_HPosition
+ y_pos: srdiag/bpm/c20-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-01
+ x_pos: srdiag/bpm/c21-01/SA_HPosition
+ y_pos: srdiag/bpm/c21-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-02
+ x_pos: srdiag/bpm/c21-02/SA_HPosition
+ y_pos: srdiag/bpm/c21-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-03
+ x_pos: srdiag/bpm/c21-03/SA_HPosition
+ y_pos: srdiag/bpm/c21-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-04
+ x_pos: srdiag/bpm/c21-04/SA_HPosition
+ y_pos: srdiag/bpm/c21-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-05
+ x_pos: srdiag/bpm/c21-05/SA_HPosition
+ y_pos: srdiag/bpm/c21-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-06
+ x_pos: srdiag/bpm/c21-06/SA_HPosition
+ y_pos: srdiag/bpm/c21-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-07
+ x_pos: srdiag/bpm/c21-07/SA_HPosition
+ y_pos: srdiag/bpm/c21-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-08
+ x_pos: srdiag/bpm/c21-08/SA_HPosition
+ y_pos: srdiag/bpm/c21-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-09
+ x_pos: srdiag/bpm/c21-09/SA_HPosition
+ y_pos: srdiag/bpm/c21-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C21-10
+ x_pos: srdiag/bpm/c21-10/SA_HPosition
+ y_pos: srdiag/bpm/c21-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-01
+ x_pos: srdiag/bpm/c22-01/SA_HPosition
+ y_pos: srdiag/bpm/c22-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-02
+ x_pos: srdiag/bpm/c22-02/SA_HPosition
+ y_pos: srdiag/bpm/c22-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-03
+ x_pos: srdiag/bpm/c22-03/SA_HPosition
+ y_pos: srdiag/bpm/c22-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-04
+ x_pos: srdiag/bpm/c22-04/SA_HPosition
+ y_pos: srdiag/bpm/c22-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-05
+ x_pos: srdiag/bpm/c22-05/SA_HPosition
+ y_pos: srdiag/bpm/c22-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-06
+ x_pos: srdiag/bpm/c22-06/SA_HPosition
+ y_pos: srdiag/bpm/c22-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-07
+ x_pos: srdiag/bpm/c22-07/SA_HPosition
+ y_pos: srdiag/bpm/c22-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-08
+ x_pos: srdiag/bpm/c22-08/SA_HPosition
+ y_pos: srdiag/bpm/c22-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-09
+ x_pos: srdiag/bpm/c22-09/SA_HPosition
+ y_pos: srdiag/bpm/c22-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C22-10
+ x_pos: srdiag/bpm/c22-10/SA_HPosition
+ y_pos: srdiag/bpm/c22-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-01
+ x_pos: srdiag/bpm/c23-01/SA_HPosition
+ y_pos: srdiag/bpm/c23-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-02
+ x_pos: srdiag/bpm/c23-02/SA_HPosition
+ y_pos: srdiag/bpm/c23-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-03
+ x_pos: srdiag/bpm/c23-03/SA_HPosition
+ y_pos: srdiag/bpm/c23-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-04
+ x_pos: srdiag/bpm/c23-04/SA_HPosition
+ y_pos: srdiag/bpm/c23-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-05
+ x_pos: srdiag/bpm/c23-05/SA_HPosition
+ y_pos: srdiag/bpm/c23-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-06
+ x_pos: srdiag/bpm/c23-06/SA_HPosition
+ y_pos: srdiag/bpm/c23-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-07
+ x_pos: srdiag/bpm/c23-07/SA_HPosition
+ y_pos: srdiag/bpm/c23-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-08
+ x_pos: srdiag/bpm/c23-08/SA_HPosition
+ y_pos: srdiag/bpm/c23-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-09
+ x_pos: srdiag/bpm/c23-09/SA_HPosition
+ y_pos: srdiag/bpm/c23-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C23-10
+ x_pos: srdiag/bpm/c23-10/SA_HPosition
+ y_pos: srdiag/bpm/c23-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-01
+ x_pos: srdiag/bpm/c24-01/SA_HPosition
+ y_pos: srdiag/bpm/c24-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-02
+ x_pos: srdiag/bpm/c24-02/SA_HPosition
+ y_pos: srdiag/bpm/c24-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-03
+ x_pos: srdiag/bpm/c24-03/SA_HPosition
+ y_pos: srdiag/bpm/c24-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-04
+ x_pos: srdiag/bpm/c24-04/SA_HPosition
+ y_pos: srdiag/bpm/c24-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-05
+ x_pos: srdiag/bpm/c24-05/SA_HPosition
+ y_pos: srdiag/bpm/c24-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-06
+ x_pos: srdiag/bpm/c24-06/SA_HPosition
+ y_pos: srdiag/bpm/c24-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-07
+ x_pos: srdiag/bpm/c24-07/SA_HPosition
+ y_pos: srdiag/bpm/c24-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-08
+ x_pos: srdiag/bpm/c24-08/SA_HPosition
+ y_pos: srdiag/bpm/c24-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-09
+ x_pos: srdiag/bpm/c24-09/SA_HPosition
+ y_pos: srdiag/bpm/c24-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C24-10
+ x_pos: srdiag/bpm/c24-10/SA_HPosition
+ y_pos: srdiag/bpm/c24-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-01
+ x_pos: srdiag/bpm/c25-01/SA_HPosition
+ y_pos: srdiag/bpm/c25-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-02
+ x_pos: srdiag/bpm/c25-02/SA_HPosition
+ y_pos: srdiag/bpm/c25-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-03
+ x_pos: srdiag/bpm/c25-03/SA_HPosition
+ y_pos: srdiag/bpm/c25-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-04
+ x_pos: srdiag/bpm/c25-04/SA_HPosition
+ y_pos: srdiag/bpm/c25-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-05
+ x_pos: srdiag/bpm/c25-05/SA_HPosition
+ y_pos: srdiag/bpm/c25-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-06
+ x_pos: srdiag/bpm/c25-06/SA_HPosition
+ y_pos: srdiag/bpm/c25-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-07
+ x_pos: srdiag/bpm/c25-07/SA_HPosition
+ y_pos: srdiag/bpm/c25-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-08
+ x_pos: srdiag/bpm/c25-08/SA_HPosition
+ y_pos: srdiag/bpm/c25-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-09
+ x_pos: srdiag/bpm/c25-09/SA_HPosition
+ y_pos: srdiag/bpm/c25-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C25-10
+ x_pos: srdiag/bpm/c25-10/SA_HPosition
+ y_pos: srdiag/bpm/c25-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-01
+ x_pos: srdiag/bpm/c26-01/SA_HPosition
+ y_pos: srdiag/bpm/c26-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-02
+ x_pos: srdiag/bpm/c26-02/SA_HPosition
+ y_pos: srdiag/bpm/c26-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-03
+ x_pos: srdiag/bpm/c26-03/SA_HPosition
+ y_pos: srdiag/bpm/c26-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-04
+ x_pos: srdiag/bpm/c26-04/SA_HPosition
+ y_pos: srdiag/bpm/c26-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-05
+ x_pos: srdiag/bpm/c26-05/SA_HPosition
+ y_pos: srdiag/bpm/c26-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-06
+ x_pos: srdiag/bpm/c26-06/SA_HPosition
+ y_pos: srdiag/bpm/c26-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-07
+ x_pos: srdiag/bpm/c26-07/SA_HPosition
+ y_pos: srdiag/bpm/c26-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-08
+ x_pos: srdiag/bpm/c26-08/SA_HPosition
+ y_pos: srdiag/bpm/c26-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-09
+ x_pos: srdiag/bpm/c26-09/SA_HPosition
+ y_pos: srdiag/bpm/c26-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C26-10
+ x_pos: srdiag/bpm/c26-10/SA_HPosition
+ y_pos: srdiag/bpm/c26-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-01
+ x_pos: srdiag/bpm/c27-01/SA_HPosition
+ y_pos: srdiag/bpm/c27-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-02
+ x_pos: srdiag/bpm/c27-02/SA_HPosition
+ y_pos: srdiag/bpm/c27-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-03
+ x_pos: srdiag/bpm/c27-03/SA_HPosition
+ y_pos: srdiag/bpm/c27-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-04
+ x_pos: srdiag/bpm/c27-04/SA_HPosition
+ y_pos: srdiag/bpm/c27-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-05
+ x_pos: srdiag/bpm/c27-05/SA_HPosition
+ y_pos: srdiag/bpm/c27-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-06
+ x_pos: srdiag/bpm/c27-06/SA_HPosition
+ y_pos: srdiag/bpm/c27-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-07
+ x_pos: srdiag/bpm/c27-07/SA_HPosition
+ y_pos: srdiag/bpm/c27-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-08
+ x_pos: srdiag/bpm/c27-08/SA_HPosition
+ y_pos: srdiag/bpm/c27-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-09
+ x_pos: srdiag/bpm/c27-09/SA_HPosition
+ y_pos: srdiag/bpm/c27-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C27-10
+ x_pos: srdiag/bpm/c27-10/SA_HPosition
+ y_pos: srdiag/bpm/c27-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-01
+ x_pos: srdiag/bpm/c28-01/SA_HPosition
+ y_pos: srdiag/bpm/c28-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-02
+ x_pos: srdiag/bpm/c28-02/SA_HPosition
+ y_pos: srdiag/bpm/c28-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-03
+ x_pos: srdiag/bpm/c28-03/SA_HPosition
+ y_pos: srdiag/bpm/c28-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-04
+ x_pos: srdiag/bpm/c28-04/SA_HPosition
+ y_pos: srdiag/bpm/c28-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-05
+ x_pos: srdiag/bpm/c28-05/SA_HPosition
+ y_pos: srdiag/bpm/c28-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-06
+ x_pos: srdiag/bpm/c28-06/SA_HPosition
+ y_pos: srdiag/bpm/c28-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-07
+ x_pos: srdiag/bpm/c28-07/SA_HPosition
+ y_pos: srdiag/bpm/c28-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-08
+ x_pos: srdiag/bpm/c28-08/SA_HPosition
+ y_pos: srdiag/bpm/c28-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-09
+ x_pos: srdiag/bpm/c28-09/SA_HPosition
+ y_pos: srdiag/bpm/c28-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C28-10
+ x_pos: srdiag/bpm/c28-10/SA_HPosition
+ y_pos: srdiag/bpm/c28-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-01
+ x_pos: srdiag/bpm/c29-01/SA_HPosition
+ y_pos: srdiag/bpm/c29-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-02
+ x_pos: srdiag/bpm/c29-02/SA_HPosition
+ y_pos: srdiag/bpm/c29-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-03
+ x_pos: srdiag/bpm/c29-03/SA_HPosition
+ y_pos: srdiag/bpm/c29-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-04
+ x_pos: srdiag/bpm/c29-04/SA_HPosition
+ y_pos: srdiag/bpm/c29-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-05
+ x_pos: srdiag/bpm/c29-05/SA_HPosition
+ y_pos: srdiag/bpm/c29-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-06
+ x_pos: srdiag/bpm/c29-06/SA_HPosition
+ y_pos: srdiag/bpm/c29-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-07
+ x_pos: srdiag/bpm/c29-07/SA_HPosition
+ y_pos: srdiag/bpm/c29-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-08
+ x_pos: srdiag/bpm/c29-08/SA_HPosition
+ y_pos: srdiag/bpm/c29-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-09
+ x_pos: srdiag/bpm/c29-09/SA_HPosition
+ y_pos: srdiag/bpm/c29-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C29-10
+ x_pos: srdiag/bpm/c29-10/SA_HPosition
+ y_pos: srdiag/bpm/c29-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-01
+ x_pos: srdiag/bpm/c30-01/SA_HPosition
+ y_pos: srdiag/bpm/c30-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-02
+ x_pos: srdiag/bpm/c30-02/SA_HPosition
+ y_pos: srdiag/bpm/c30-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-03
+ x_pos: srdiag/bpm/c30-03/SA_HPosition
+ y_pos: srdiag/bpm/c30-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-04
+ x_pos: srdiag/bpm/c30-04/SA_HPosition
+ y_pos: srdiag/bpm/c30-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-05
+ x_pos: srdiag/bpm/c30-05/SA_HPosition
+ y_pos: srdiag/bpm/c30-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-06
+ x_pos: srdiag/bpm/c30-06/SA_HPosition
+ y_pos: srdiag/bpm/c30-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-07
+ x_pos: srdiag/bpm/c30-07/SA_HPosition
+ y_pos: srdiag/bpm/c30-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-08
+ x_pos: srdiag/bpm/c30-08/SA_HPosition
+ y_pos: srdiag/bpm/c30-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-09
+ x_pos: srdiag/bpm/c30-09/SA_HPosition
+ y_pos: srdiag/bpm/c30-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C30-10
+ x_pos: srdiag/bpm/c30-10/SA_HPosition
+ y_pos: srdiag/bpm/c30-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-01
+ x_pos: srdiag/bpm/c31-01/SA_HPosition
+ y_pos: srdiag/bpm/c31-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-02
+ x_pos: srdiag/bpm/c31-02/SA_HPosition
+ y_pos: srdiag/bpm/c31-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-03
+ x_pos: srdiag/bpm/c31-03/SA_HPosition
+ y_pos: srdiag/bpm/c31-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-04
+ x_pos: srdiag/bpm/c31-04/SA_HPosition
+ y_pos: srdiag/bpm/c31-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-05
+ x_pos: srdiag/bpm/c31-05/SA_HPosition
+ y_pos: srdiag/bpm/c31-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-06
+ x_pos: srdiag/bpm/c31-06/SA_HPosition
+ y_pos: srdiag/bpm/c31-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-07
+ x_pos: srdiag/bpm/c31-07/SA_HPosition
+ y_pos: srdiag/bpm/c31-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-08
+ x_pos: srdiag/bpm/c31-08/SA_HPosition
+ y_pos: srdiag/bpm/c31-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-09
+ x_pos: srdiag/bpm/c31-09/SA_HPosition
+ y_pos: srdiag/bpm/c31-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C31-10
+ x_pos: srdiag/bpm/c31-10/SA_HPosition
+ y_pos: srdiag/bpm/c31-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-01
+ x_pos: srdiag/bpm/c32-01/SA_HPosition
+ y_pos: srdiag/bpm/c32-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-02
+ x_pos: srdiag/bpm/c32-02/SA_HPosition
+ y_pos: srdiag/bpm/c32-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-03
+ x_pos: srdiag/bpm/c32-03/SA_HPosition
+ y_pos: srdiag/bpm/c32-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-04
+ x_pos: srdiag/bpm/c32-04/SA_HPosition
+ y_pos: srdiag/bpm/c32-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-05
+ x_pos: srdiag/bpm/c32-05/SA_HPosition
+ y_pos: srdiag/bpm/c32-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-06
+ x_pos: srdiag/bpm/c32-06/SA_HPosition
+ y_pos: srdiag/bpm/c32-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-07
+ x_pos: srdiag/bpm/c32-07/SA_HPosition
+ y_pos: srdiag/bpm/c32-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-08
+ x_pos: srdiag/bpm/c32-08/SA_HPosition
+ y_pos: srdiag/bpm/c32-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-09
+ x_pos: srdiag/bpm/c32-09/SA_HPosition
+ y_pos: srdiag/bpm/c32-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C32-10
+ x_pos: srdiag/bpm/c32-10/SA_HPosition
+ y_pos: srdiag/bpm/c32-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-01
+ x_pos: srdiag/bpm/c01-01/SA_HPosition
+ y_pos: srdiag/bpm/c01-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-02
+ x_pos: srdiag/bpm/c01-02/SA_HPosition
+ y_pos: srdiag/bpm/c01-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-03
+ x_pos: srdiag/bpm/c01-03/SA_HPosition
+ y_pos: srdiag/bpm/c01-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-04
+ x_pos: srdiag/bpm/c01-04/SA_HPosition
+ y_pos: srdiag/bpm/c01-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-05
+ x_pos: srdiag/bpm/c01-05/SA_HPosition
+ y_pos: srdiag/bpm/c01-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-06
+ x_pos: srdiag/bpm/c01-06/SA_HPosition
+ y_pos: srdiag/bpm/c01-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-07
+ x_pos: srdiag/bpm/c01-07/SA_HPosition
+ y_pos: srdiag/bpm/c01-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-08
+ x_pos: srdiag/bpm/c01-08/SA_HPosition
+ y_pos: srdiag/bpm/c01-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-09
+ x_pos: srdiag/bpm/c01-09/SA_HPosition
+ y_pos: srdiag/bpm/c01-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C01-10
+ x_pos: srdiag/bpm/c01-10/SA_HPosition
+ y_pos: srdiag/bpm/c01-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-01
+ x_pos: srdiag/bpm/c02-01/SA_HPosition
+ y_pos: srdiag/bpm/c02-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-02
+ x_pos: srdiag/bpm/c02-02/SA_HPosition
+ y_pos: srdiag/bpm/c02-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-03
+ x_pos: srdiag/bpm/c02-03/SA_HPosition
+ y_pos: srdiag/bpm/c02-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-04
+ x_pos: srdiag/bpm/c02-04/SA_HPosition
+ y_pos: srdiag/bpm/c02-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-05
+ x_pos: srdiag/bpm/c02-05/SA_HPosition
+ y_pos: srdiag/bpm/c02-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-06
+ x_pos: srdiag/bpm/c02-06/SA_HPosition
+ y_pos: srdiag/bpm/c02-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-07
+ x_pos: srdiag/bpm/c02-07/SA_HPosition
+ y_pos: srdiag/bpm/c02-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-08
+ x_pos: srdiag/bpm/c02-08/SA_HPosition
+ y_pos: srdiag/bpm/c02-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-09
+ x_pos: srdiag/bpm/c02-09/SA_HPosition
+ y_pos: srdiag/bpm/c02-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C02-10
+ x_pos: srdiag/bpm/c02-10/SA_HPosition
+ y_pos: srdiag/bpm/c02-10/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-01
+ x_pos: srdiag/bpm/c03-01/SA_HPosition
+ y_pos: srdiag/bpm/c03-01/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-02
+ x_pos: srdiag/bpm/c03-02/SA_HPosition
+ y_pos: srdiag/bpm/c03-02/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-03
+ x_pos: srdiag/bpm/c03-03/SA_HPosition
+ y_pos: srdiag/bpm/c03-03/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-04
+ x_pos: srdiag/bpm/c03-04/SA_HPosition
+ y_pos: srdiag/bpm/c03-04/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-05
+ x_pos: srdiag/bpm/c03-05/SA_HPosition
+ y_pos: srdiag/bpm/c03-05/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-06
+ x_pos: srdiag/bpm/c03-06/SA_HPosition
+ y_pos: srdiag/bpm/c03-06/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-07
+ x_pos: srdiag/bpm/c03-07/SA_HPosition
+ y_pos: srdiag/bpm/c03-07/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-08
+ x_pos: srdiag/bpm/c03-08/SA_HPosition
+ y_pos: srdiag/bpm/c03-08/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-09
+ x_pos: srdiag/bpm/c03-09/SA_HPosition
+ y_pos: srdiag/bpm/c03-09/SA_VPosition
+- type: pyaml.bpm.bpm
+ name: BPM_C03-10
+ x_pos: srdiag/bpm/c03-10/SA_HPosition
+ y_pos: srdiag/bpm/c03-10/SA_VPosition
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C04
+ description: "QF1E-C04 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00054
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c04-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C05
+ description: "QF1A-C05 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996841
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C05
+ description: "QF1E-C05 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00191
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C06
+ description: "QF1A-C06 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0003
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c06-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C06
+ description: "QF1E-C06 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997615
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c06-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C07
+ description: "QF1A-C07 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998152
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c07-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C07
+ description: "QF1E-C07 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00262
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c07-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C08
+ description: "QF1A-C08 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00319
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c08-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C08
+ description: "QF1E-C08 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996180929
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c08-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C09
+ description: "QF1A-C09 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00206
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c09-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C09
+ description: "QF1E-C09 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999285
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c09-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C10
+ description: "QF1A-C10 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00232
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c10-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C10
+ description: "QF1E-C10 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998212
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c10-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C11
+ description: "QF1A-C11 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999225
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c11-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C11
+ description: "QF1E-C11 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998033
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c11-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C12
+ description: "QF1A-C12 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998748
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c12-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C12
+ description: "QF1E-C12 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0023
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c12-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C13
+ description: "QF1A-C13 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00337
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c13-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C13
+ description: "QF1E-C13 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00403
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c13-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C14
+ description: "QF1A-C14 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00182
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c14-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C14
+ description: "QF1E-C14 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998303
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c14-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C15
+ description: "QF1A-C15 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998748
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c15-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C15
+ description: "QF1E-C15 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.994098
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c15-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C16
+ description: "QF1A-C16 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00232
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c16-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C16
+ description: "QF1E-C16 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.99884
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c16-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C17
+ description: "QF1A-C17 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0079
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c17-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C17
+ description: "QF1E-C17 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999523
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c17-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C18
+ description: "QF1A-C18 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c18-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C18
+ description: "QF1E-C18 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999854
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c18-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C19
+ description: "QF1A-C19 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.99845
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c19-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C19
+ description: "QF1E-C19 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c19-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C20
+ description: "QF1A-C20 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00095
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c20-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C20
+ description: "QF1E-C20 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996753
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c20-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C21
+ description: "QF1A-C21 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00334
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c21-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C21
+ description: "QF1E-C21 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997707
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c21-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C22
+ description: "QF1A-C22 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00152
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c22-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C22
+ description: "QF1E-C22 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998124
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c22-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C23
+ description: "QF1A-C23 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996662
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c23-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C23
+ description: "QF1E-C23 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0017
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c23-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C24
+ description: "QF1A-C24 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999642
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c24-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C24
+ description: "QF1E-C24 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00042
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c24-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C25
+ description: "QF1A-C25 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00471
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c25-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C25
+ description: "QF1E-C25 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00393
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c25-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C26
+ description: "QF1A-C26 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.992906
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c26-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C26
+ description: "QF1E-C26 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00268
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c26-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C27
+ description: "QF1A-C27 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00248
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c27-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C27
+ description: "QF1E-C27 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00203
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c27-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C28
+ description: "QF1A-C28 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998030791
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c28-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C28
+ description: "QF1E-C28 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00232
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c28-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C29
+ description: "QF1A-C29 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.995052
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c29-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C29
+ description: "QF1E-C29 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00155
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c29-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C30
+ description: "QF1A-C30 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998271
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c30-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C30
+ description: "QF1E-C30 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999702
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c30-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C31
+ description: "QF1A-C31 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998005
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c31-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C31
+ description: "QF1E-C31 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999463
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c31-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C32
+ description: "QF1A-C32 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997794
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c32-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C32
+ description: "QF1E-C32 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00203
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c32-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C01
+ description: "QF1A-C01 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00504
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c01-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C01
+ description: "QF1E-C01 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998212
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c01-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C02
+ description: "QF1A-C02 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0037
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c02-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C02
+ description: "QF1E-C02 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00093
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c02-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C03
+ description: "QF1A-C03 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0025
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c03-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C04
+ description: "QD2E-C04 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999305341
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c04-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C05
+ description: "QD2A-C05 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997452918
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c05-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C05
+ description: "QD2E-C05 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997993208
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c05-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C06
+ description: "QD2A-C06 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.006031322
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c06-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C06
+ description: "QD2E-C06 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998547233
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c06-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C07
+ description: "QD2A-C07 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.002327856
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c07-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C07
+ description: "QD2E-C07 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000154369
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c07-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C08
+ description: "QD2A-C08 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.009580478
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c08-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C08
+ description: "QD2E-C08 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00447669
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c08-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C09
+ description: "QD2A-C09 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0015563
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c09-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C09
+ description: "QD2E-C09 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997221365
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c09-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C10
+ description: "QD2A-C10 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.005954167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c10-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C10
+ description: "QD2E-C10 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.006725723
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c10-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C11
+ description: "QD2A-C11 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.994535144
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c11-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C11
+ description: "QD2E-C11 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999550256
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c11-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C12
+ description: "QD2A-C12 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001479145
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c12-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C12
+ description: "QD2E-C12 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000321811
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c12-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C13
+ description: "QD2A-C13 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.006715036
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c13-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C13
+ description: "QD2E-C13 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0036395
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c13-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C14
+ description: "QD2A-C14 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997684471
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c14-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C14
+ description: "QD2E-C14 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000385922
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c14-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C15
+ description: "QD2A-C15 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999010167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c15-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C15
+ description: "QD2E-C15 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998392922
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c15-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C16
+ description: "QD2A-C16 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999318789
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c16-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C16
+ description: "QD2E-C16 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996926967
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c16-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C17
+ description: "QD2A-C17 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000849027
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c17-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C17
+ description: "QD2E-C17 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.003392444
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c17-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C18
+ description: "QD2A-C18 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001312133
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c18-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C18
+ description: "QD2E-C18 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.005402902
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c18-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C19
+ description: "QD2A-C19 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.995846789
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c19-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C19
+ description: "QD2E-C19 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.005877011
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c19-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C20
+ description: "QD2A-C20 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001016211
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c20-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C20
+ description: "QD2E-C20 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999010167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c20-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C21
+ description: "QD2A-C21 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.007265811
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c21-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C21
+ description: "QD2E-C21 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998238611
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c21-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C22
+ description: "QD2A-C22 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998161456
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c22-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C22
+ description: "QD2E-C22 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.004642522
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c22-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C23
+ description: "QD2A-C23 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001479145
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c23-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C23
+ description: "QD2E-C23 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001942078
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c23-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C24
+ description: "QD2A-C24 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999087322
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c24-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C24
+ description: "QD2E-C24 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998547233
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c24-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C25
+ description: "QD2A-C25 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001698055
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c25-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C25
+ description: "QD2E-C25 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999704567
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c25-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C26
+ description: "QD2A-C26 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999164478
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c26-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C26
+ description: "QD2E-C26 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000694659
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c26-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C27
+ description: "QD2A-C27 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.99945971
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c27-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C27
+ description: "QD2E-C27 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999922816
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c27-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C28
+ description: "QD2A-C28 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999922816
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c28-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C28
+ description: "QD2E-C28 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997838839
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c28-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C29
+ description: "QD2A-C29 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.003318926
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c29-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C29
+ description: "QD2E-C29 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.004179589
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c29-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C30
+ description: "QD2A-C30 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999010167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c30-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C30
+ description: "QD2E-C30 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.9987787
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c30-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C31
+ description: "QD2A-C31 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.004411056
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c31-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C31
+ description: "QD2E-C31 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0029451
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c31-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C32
+ description: "QD2A-C32 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.009426167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c32-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C32
+ description: "QD2E-C32 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0050283
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c32-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C01
+ description: "QD2A-C01 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998533498
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c01-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C01
+ description: "QD2E-C01 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.003485189
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c01-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C02
+ description: "QD2A-C02 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001389318
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c02-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C02
+ description: "QD2E-C02 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.006108478
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c02-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C03
+ description: "QD2A-C03 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.002096389
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c03-a/current
diff --git a/examples/use_cases/config/esrf/sr/lattices/ebs.mat b/examples/use_cases/config/esrf/sr/lattices/ebs.mat
new file mode 100644
index 000000000..157489629
Binary files /dev/null and b/examples/use_cases/config/esrf/sr/lattices/ebs.mat differ
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/QD2_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/QD2_strength.csv
new file mode 100644
index 000000000..f61fae5e1
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/QD2_strength.csv
@@ -0,0 +1,101 @@
+ 0, 0
+ 10, -1.5344273
+11.01010101, -1.680715587
+12.02020202, -1.827007776
+13.03030303, -1.973307772
+14.04040404, -2.119619478
+15.05050505, -2.265946797
+16.06060606, -2.412291425
+17.07070707, -2.558647463
+18.08080808, -2.705007376
+19.09090909, -2.851363629
+ 20.1010101, -2.997708688
+21.11111111, -3.144036412
+22.12121212, -3.290344791
+23.13131313, -3.43663258
+24.14141414, -3.582898535
+25.15151515, -3.729141416
+26.16161616, -3.87536206
+27.17171717, -4.021566648
+28.18181818, -4.167762209
+29.19191919, -4.313955769
+ 30.2020202, -4.460154343
+31.21212121, -4.606361877
+32.22222222, -4.752575486
+33.23232323, -4.898791356
+34.24242424, -5.045005674
+35.25252525, -5.191214622
+36.26262626, -5.337413784
+37.27272727, -5.483597583
+38.28282828, -5.629760306
+39.29292929, -5.775896242
+ 40.3030303, -5.921999679
+41.31313131, -6.068064943
+42.32323232, -6.214086418
+43.33333333, -6.360058494
+44.34343434, -6.505975561
+45.35353535, -6.651832154
+46.36363636, -6.797630411
+47.37373737, -6.943383754
+48.38383838, -7.089106516
+49.39393939, -7.234813029
+ 50.4040404, -7.380517037
+51.41414141, -7.526209349
+52.42424242, -7.671850983
+53.43434343, -7.817400967
+54.44444444, -7.962818328
+55.45454545, -8.108063155
+56.46464646, -8.253126863
+57.47474747, -8.398036557
+58.48484848, -8.542821284
+59.49494949, -8.68751009
+60.50505051, -8.832130415
+61.51515152, -8.97667274
+62.52525253, -9.121090587
+63.53535354, -9.265335872
+64.54545455, -9.40936051
+65.55555556, -9.553115717
+66.56565657, -9.696539842
+67.57575758, -9.839559945
+68.58585859, -9.982102699
+ 69.5959596, -10.12409478
+70.60606061, -10.26546199
+71.61616162, -10.40611704
+72.62626263, -10.54596258
+73.63636364, -10.68490099
+74.64646465, -10.82283465
+75.65656566, -10.95965535
+76.66666667, -11.09512379
+77.67676768, -11.22891228
+78.68686869, -11.3606915
+ 79.6969697, -11.49013209
+80.70707071, -11.61689792
+81.71717172, -11.7405827
+82.72727273, -11.86073871
+83.73737374, -11.97691773
+84.74747475, -12.08867152
+85.75757576, -12.19558747
+86.76767677, -12.29756288
+87.77777778, -12.39465464
+88.78787879, -12.48692099
+ 89.7979798, -12.57442012
+90.80808081, -12.65722858
+91.81818182, -12.73555837
+92.82828283, -12.80968223
+93.83838384, -12.87987315
+94.84848485, -12.94640414
+95.85858586, -13.00954739
+96.86868687, -13.06956985
+97.87878788, -13.12673645
+98.88888889, -13.18131211
+ 99.8989899, -13.23356177
+100.9090909, -13.28372212
+101.9191919, -13.33187732
+102.9292929, -13.37806014
+103.9393939, -13.42230334
+104.9494949, -13.46463965
+ 105.959596, -13.50515121
+ 106.969697, -13.54414964
+ 107.979798, -13.58201323
+ 108.989899, -13.61912026
+ 110, -13.655849
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/QF1_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/QF1_strength.csv
new file mode 100644
index 000000000..284c10f1e
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/QF1_strength.csv
@@ -0,0 +1,101 @@
+ 0, 0
+ 10, 2.0970197
+11.01010101, 2.297465587
+12.02020202, 2.497915516
+13.03030303, 2.698373526
+14.04040404, 2.898843661
+15.05050505, 3.099329961
+16.06060606, 3.299833932
+17.07070707, 3.500348352
+18.08080808, 3.70086412
+19.09090909, 3.901372136
+ 20.1010101, 4.1018633
+21.11111111, 4.302330326
+22.12121212, 4.502771317
+23.13131313, 4.70318537
+24.14141414, 4.903571582
+25.15151515, 5.103929061
+26.16161616, 5.30426057
+27.17171717, 5.504578277
+28.18181818, 5.704895843
+29.19191919, 5.905226924
+ 30.2020202, 6.105585116
+31.21212121, 6.305970273
+32.22222222, 6.506351592
+33.23232323, 6.706694124
+34.24242424, 6.906962918
+35.25252525, 7.107123235
+36.26262626, 7.307165539
+37.27272727, 7.507129258
+38.28282828, 7.70705944
+39.29292929, 7.907001137
+ 40.3030303, 8.106998973
+41.31313131, 8.307064641
+42.32323232, 8.507154017
+43.33333333, 8.707217565
+44.34343434, 8.907205753
+45.35353535, 9.107069553
+46.36363636, 9.306786923
+47.37373737, 9.506375833
+48.38383838, 9.705857492
+49.39393939, 9.905253108
+ 50.4040404, 10.10458349
+51.41414141, 10.30385385
+52.42424242, 10.50304916
+53.43434343, 10.70215303
+54.44444444, 10.90114908
+55.45454545, 11.10002054
+56.46464646, 11.2987401
+57.47474747, 11.49726834
+58.48484848, 11.69556519
+59.49494949, 11.89359061
+60.50505051, 12.09130538
+61.51515152, 12.28869029
+62.52525253, 12.48574609
+63.53535354, 12.68247439
+64.54545455, 12.8788768
+65.55555556, 13.07495227
+66.56565657, 13.27065053
+67.57575758, 13.46587812
+68.58585859, 13.66054012
+ 69.5959596, 13.85454161
+70.60606061, 14.04778558
+71.61616162, 14.24014379
+72.62626263, 14.43146399
+73.63636364, 14.62159329
+74.64646465, 14.81037882
+75.65656566, 14.99766542
+76.66666667, 15.18326973
+77.67676768, 15.36698943
+78.68686869, 15.5486218
+ 79.6969697, 15.72796415
+80.70707071, 15.90480056
+81.71717172, 16.07877865
+82.72727273, 16.24946554
+83.73737374, 16.4164273
+84.74747475, 16.57923002
+85.75757576, 16.73746097
+86.76767677, 16.89089196
+87.77777778, 17.03938981
+88.78787879, 17.18282213
+ 89.7979798, 17.32105652
+90.80808081, 17.4539818
+91.81818182, 17.58164348
+92.82828283, 17.70415732
+93.83838384, 17.82163941
+94.84848485, 17.93420584
+95.85858586, 18.04196937
+96.86868687, 18.14502185
+97.87878788, 18.24344699
+98.88888889, 18.33732845
+ 99.8989899, 18.42674993
+100.9090909, 18.51179774
+101.9191919, 18.59257245
+102.9292929, 18.66917941
+103.9393939, 18.74172401
+104.9494949, 18.8103116
+ 105.959596, 18.87514354
+ 106.969697, 18.93686731
+ 107.979798, 18.99625995
+ 108.989899, 19.05409849
+ 110, 19.11116
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/QF6_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/QF6_strength.csv
new file mode 100755
index 000000000..6331415ea
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/QF6_strength.csv
@@ -0,0 +1,101 @@
+ 0, 0
+ 10, 4.8381057
+11.01010101, 5.309790224
+12.02020202, 5.781444181
+13.03030303, 6.253037002
+14.04040404, 6.72453812
+15.05050505, 7.195916967
+16.06060606, 7.667150484
+17.07070707, 8.138241462
+18.08080808, 8.609198255
+19.09090909, 9.080029216
+ 20.1010101, 9.5507427
+21.11111111, 10.02134783
+22.12121212, 10.49185598
+23.13131313, 10.96227898
+24.14141414, 11.43262864
+25.15151515, 11.90291672
+26.16161616, 12.37313684
+27.17171717, 12.84323594
+28.18181818, 13.31315356
+29.19191919, 13.78282926
+ 30.2020202, 14.25220272
+31.21212121, 14.7212447
+32.22222222, 15.18999532
+33.23232323, 15.65850402
+34.24242424, 16.12682031
+35.25252525, 16.59499334
+36.26262626, 17.06303632
+37.27272727, 17.53089254
+38.28282828, 17.99849728
+39.29292929, 18.46578582
+ 40.3030303, 18.93269377
+41.31313131, 19.39918272
+42.32323232, 19.86525832
+43.33333333, 20.33093051
+44.34343434, 20.79620918
+45.35353535, 21.26110358
+46.36363636, 21.72558595
+47.37373737, 22.18957373
+48.38383838, 22.65297993
+49.39393939, 23.11571754
+ 50.4040404, 23.57770039
+51.41414141, 24.03887417
+52.42424242, 24.49922597
+53.43434343, 24.95874566
+54.44444444, 25.4174231
+55.45454545, 25.87522826
+56.46464646, 26.33154575
+57.47474747, 26.7850931
+58.48484848, 27.2345516
+59.49494949, 27.6786025
+60.50505051, 28.11592527
+61.51515152, 28.54515768
+62.52525253, 28.96489584
+63.53535354, 29.37373405
+64.54545455, 29.7702666
+65.55555556, 30.15310646
+66.56565657, 30.52120955
+67.57575758, 30.87383285
+68.58585859, 31.21024353
+ 69.5959596, 31.52970877
+70.60606061, 31.83155581
+71.61616162, 32.11601021
+72.62626263, 32.38398911
+73.63636364, 32.63642744
+74.64646465, 32.87426012
+75.65656566, 33.09843152
+76.66666667, 33.31000256
+77.67676768, 33.51011278
+78.68686869, 33.69990319
+ 79.6969697, 33.8805148
+80.70707071, 34.05306116
+81.71717172, 34.21837218
+82.72727273, 34.37711048
+83.73737374, 34.52993649
+84.74747475, 34.67751066
+85.75757576, 34.82045497
+86.76767677, 34.95905659
+87.77777778, 35.09343031
+88.78787879, 35.22368951
+ 89.7979798, 35.34994755
+90.80808081, 35.47232532
+91.81818182, 35.59099919
+92.82828283, 35.70617041
+93.83838384, 35.81804036
+94.84848485, 35.92681041
+95.85858586, 36.03267776
+96.86868687, 36.13581324
+97.87878788, 36.23637744
+98.88888889, 36.33453092
+ 99.8989899, 36.43043424
+100.9090909, 36.52421516
+101.9191919, 36.6158239
+102.9292929, 36.70515097
+103.9393939, 36.7920868
+104.9494949, 36.87652186
+ 105.959596, 36.95843775
+ 106.969697, 37.03823987
+ 107.979798, 37.11645666
+ 108.989899, 37.19361655
+ 110, 37.270248
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SH1_SH3_h_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SH1_SH3_h_strength.csv
new file mode 100644
index 000000000..71dfe85a0
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SH1_SH3_h_strength.csv
@@ -0,0 +1,19 @@
+-2.4,-0.016516378
+-2.1333,-0.0147084
+-1.8667,-0.012888188
+-1.6,-0.011055744
+-1.3333,-0.009203181
+-1.0667,-0.007349891
+-0.8,-0.005495871
+-0.53333,-0.003637018
+-0.26667,-0.001805061
+0.0,0.0
+0.26667,0.001805061
+0.53333,0.003637018
+0.8,0.005495871
+1.0667,0.007349891
+1.3333,0.009203181
+1.6,0.011055744
+1.8667,0.012888188
+2.1333,0.0147084
+2.4,0.016516378
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SH1_SH3_sq_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SH1_SH3_sq_strength.csv
new file mode 100644
index 000000000..0372cffb1
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SH1_SH3_sq_strength.csv
@@ -0,0 +1,17 @@
+-4.2667,-0.53024685
+-3.7333,-0.49480939
+-3.2,-0.45147696
+-2.6667,-0.39314961
+-2.1333,-0.31870389
+-1.6,-0.24073587
+-1.0667,-0.16134213
+-0.53333,-0.081016541
+0.0,0.0
+0.53333,0.081016541
+1.0667,0.16134213
+1.6,0.24073587
+2.1333,0.31870389
+2.6667,0.39314961
+3.2,0.45147696
+3.7333,0.49480939
+4.2667,0.53024685
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SH1_SH3_v_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SH1_SH3_v_strength.csv
new file mode 100644
index 000000000..c29ae483d
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SH1_SH3_v_strength.csv
@@ -0,0 +1,19 @@
+-4.8,-0.011256173
+-4.2667,-0.010400214
+-3.7333,-0.009291842
+-3.2,-0.008060268
+-2.6667,-0.006750694
+-2.1333,-0.005414052
+-1.6,-0.004067117
+-1.0667,-0.002715177
+-0.53333,-0.001360387
+0.0,0.0
+0.53333,0.001360387
+1.0667,0.002715177
+1.6,0.004067117
+2.1333,0.005414052
+2.6667,0.006750694
+3.2,0.008060268
+3.7333,0.009291842
+4.2667,0.010400214
+4.8,0.011256173
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SH2_h_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SH2_h_strength.csv
new file mode 100644
index 000000000..71dfe85a0
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SH2_h_strength.csv
@@ -0,0 +1,19 @@
+-2.4,-0.016516378
+-2.1333,-0.0147084
+-1.8667,-0.012888188
+-1.6,-0.011055744
+-1.3333,-0.009203181
+-1.0667,-0.007349891
+-0.8,-0.005495871
+-0.53333,-0.003637018
+-0.26667,-0.001805061
+0.0,0.0
+0.26667,0.001805061
+0.53333,0.003637018
+0.8,0.005495871
+1.0667,0.007349891
+1.3333,0.009203181
+1.6,0.011055744
+1.8667,0.012888188
+2.1333,0.0147084
+2.4,0.016516378
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SH2_sq_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SH2_sq_strength.csv
new file mode 100644
index 000000000..5a162df13
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SH2_sq_strength.csv
@@ -0,0 +1,17 @@
+-4.2667,-0.523618764
+-3.7333,-0.488624273
+-3.2,-0.445833498
+-2.6667,-0.38823524
+-2.1333,-0.314720091
+-1.6,-0.237726672
+-1.0667,-0.159325353
+-0.53333,-0.080003834
+0.0,0.0
+0.53333,0.080003834
+1.0667,0.159325353
+1.6,0.237726672
+2.1333,0.314720091
+2.6667,0.38823524
+3.2,0.445833498
+3.7333,0.488624273
+4.2667,0.523618764
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SH2_v_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SH2_v_strength.csv
new file mode 100644
index 000000000..ee54f295b
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SH2_v_strength.csv
@@ -0,0 +1,19 @@
+-4.8,-0.011115471
+-4.2667,-0.010270211
+-3.7333,-0.009175693
+-3.2,-0.007959515
+-2.6667,-0.00666631
+-2.1333,-0.005346376
+-1.6,-0.004016278
+-1.0667,-0.002681237
+-0.53333,-0.001343383
+0.0,0.0
+0.53333,0.001343383
+1.0667,0.002681237
+1.6,0.004016278
+2.1333,0.005346376
+2.6667,0.00666631
+3.2,0.007959515
+3.7333,0.009175693
+4.2667,0.010270211
+4.8,0.011115471
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SHI_h_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SHI_h_strength.csv
new file mode 100644
index 000000000..85f634b1f
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SHI_h_strength.csv
@@ -0,0 +1,17 @@
+-2.4,-0.0161824
+-2.1,-0.0141826
+-1.8,-0.0121738
+-1.5,-0.01014483
+-1.2,-0.00811586
+-0.9,-0.0060869
+-0.6,-0.004057933333
+-0.3,-0.002028966667
+0.0,0.0
+0.3,0.002028966667
+0.6,0.004057933333
+0.9,0.0060869
+1.2,0.00811586
+1.5,0.01014483
+1.8,0.0121738
+2.1,0.0141826
+2.4,0.0161824
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SHI_matrix.csv b/examples/use_cases/config/esrf/sr/magnet_models/SHI_matrix.csv
new file mode 100644
index 000000000..ca893a254
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SHI_matrix.csv
@@ -0,0 +1,4 @@
+1,-0.0886,0.0493,0.0886,-0.0493
+0,1,-1,1,-1
+0,1,1,1,1
+-0.35,-1.31,1,1.31,-1
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SHI_sext_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SHI_sext_strength.csv
new file mode 100644
index 000000000..8bce6bc23
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SHI_sext_strength.csv
@@ -0,0 +1,21 @@
+-10.0,-27.5725
+-9.0,-25.8065
+-8.0,-23.6602
+-7.0,-20.97822704
+-6.0,-17.98133746
+-5.0,-14.98444789
+-4.0,-11.987558
+-3.0,-8.990668
+-2.0,-5.993779154
+-1.0,-2.996889577
+0.0,0.0
+1.0,2.996889577
+2.0,5.993779154
+3.0,8.990668
+4.0,11.987558
+5.0,14.98444789
+6.0,17.98133746
+7.0,20.97822704
+8.0,23.6602
+9.0,25.8065
+10.0,27.5725
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SHI_sq_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SHI_sq_strength.csv
new file mode 100644
index 000000000..7370225b3
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SHI_sq_strength.csv
@@ -0,0 +1,19 @@
+-9.59999,-0.53335905
+-8.53333,-0.5026322
+-7.46666,-0.4659577
+-6.39999,-0.41839668
+-5.33333,-0.35644257
+-4.26666,-0.28783524
+-3.19999,-0.21716061
+-2.13333,-0.14531671
+-1.06666,-0.072921909
+0.0,0.0
+1.06666,0.072921909
+2.13333,0.14531671
+3.19999,0.21716061
+4.26666,0.28783524
+5.33333,0.35644257
+6.39999,0.41839668
+7.46666,0.4659577
+8.53333,0.5026322
+9.59999,0.53335905
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SHI_v_strength.csv b/examples/use_cases/config/esrf/sr/magnet_models/SHI_v_strength.csv
new file mode 100644
index 000000000..8d5d2eadf
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SHI_v_strength.csv
@@ -0,0 +1,19 @@
+-9.59999,-0.010499059
+-8.53333,-0.0095203075
+-7.46666,-0.0084496508
+-6.39999,-0.0072807183
+-5.33333,-0.0060823154
+-4.26666,-0.0048763485
+-3.19999,-0.0036616087
+-2.13333,-0.0024446759
+-1.06666,-0.0012244331
+0.0,0.0
+1.06666,0.0012244331
+2.13333,0.0024446759
+3.19999,0.0036616087
+4.26666,0.0048763485
+5.33333,0.0060823154
+6.39999,0.0072807183
+7.46666,0.0084496508
+8.53333,0.0095203075
+9.59999,0.010499059
diff --git a/examples/use_cases/config/esrf/sr/magnet_models/SH_matrix.csv b/examples/use_cases/config/esrf/sr/magnet_models/SH_matrix.csv
new file mode 100644
index 000000000..0d016b4a0
--- /dev/null
+++ b/examples/use_cases/config/esrf/sr/magnet_models/SH_matrix.csv
@@ -0,0 +1,3 @@
+1.0,0,0
+0,1.0,-1.0613636
+0,0.96181738,1.0
diff --git a/examples/use_cases/config/esrf/trm.json b/examples/use_cases/config/esrf/trm.json
new file mode 100644
index 000000000..269a38fa0
--- /dev/null
+++ b/examples/use_cases/config/esrf/trm.json
@@ -0,0 +1,387 @@
+{
+ "type": "pyaml.tuning_tools.response_matrix_data",
+ "matrix": [
+ [
+ 0.1785312775665071,
+ 0.17890918518254084,
+ 0.17917983711424057,
+ 0.1784306145899417,
+ 0.17932054383273943,
+ 0.17884878472013144,
+ 0.17868979674900975,
+ 0.17950221390589105,
+ 0.17836418103545082,
+ 0.17902879800274496,
+ 0.17907228791497198,
+ 0.1784534376253477,
+ 0.17936885137875835,
+ 0.1787317009097067,
+ 0.17880339380355048,
+ 0.17934220350290797,
+ 0.17843576159082275,
+ 0.17914061857193797,
+ 0.1789550646144611,
+ 0.17850485174275565,
+ 0.15843662941744663,
+ 0.15753129847057012,
+ 0.15237976934923125,
+ 0.15250702233238211,
+ 0.17830407720298425,
+ 0.17955648207695907,
+ 0.17845839986763146,
+ 0.1788046875300653,
+ 0.17936621410946652,
+ 0.17824945151401206,
+ 0.17941811039923206,
+ 0.179053720016642,
+ 0.17841113460537183,
+ 0.17957284018182973,
+ 0.17835112510161677,
+ 0.17897117554260822,
+ 0.1792322649588063,
+ 0.1782539868933064,
+ 0.17950825398710402,
+ 0.1787657276039467,
+ 0.17866201317662256,
+ 0.1795468408175016,
+ 0.1782791132018402,
+ 0.17925585255346155,
+ 0.17897151251833332,
+ 0.1783004122266063,
+ 0.17956082326409106,
+ 0.17873060988743417,
+ 0.1787168867781186,
+ 0.1794815161113017,
+ 0.1557743895247432,
+ 0.15662709150848775,
+ 0.17893299550625352,
+ 0.17847487988637,
+ 0.1793719829240592,
+ 0.17881762675503454,
+ 0.1787402055494769,
+ 0.1793163846461332,
+ 0.17843723260024813,
+ 0.17929549094519714,
+ 0.17880609438747364,
+ 0.1785348380697882,
+ 0.5908202260337947,
+ 0.591804326284251,
+ 0.5927433850580477,
+ 0.5907924113074392,
+ 0.5938799794077965,
+ 0.592651350724005,
+ 0.5920998835132196,
+ 0.5939144437447363,
+ 0.5907241307892552,
+ 0.5921955880411334,
+ 0.5923465450205501,
+ 0.5907349727388156,
+ 0.5939110630959199,
+ 0.5922519087026012,
+ 0.5925005553769624,
+ 0.5939036158975064,
+ 0.5907588135342645,
+ 0.5925942683560059,
+ 0.5919503994561426,
+ 0.5907780348426983,
+ 0.5241148481271996,
+ 0.5216304415095463,
+ 0.5024833537822793,
+ 0.5026608620767314,
+ 0.5911591919940951,
+ 0.5941944394646792,
+ 0.5903846474147878,
+ 0.5912864766008386,
+ 0.5932346430970181,
+ 0.5903265313270123,
+ 0.5943811615927164,
+ 0.5931317421159488,
+ 0.5916598821478769,
+ 0.5944256953097082,
+ 0.5901869888025324,
+ 0.5918016339520604,
+ 0.5927074763678597,
+ 0.5901599862537243,
+ 0.594511785559082,
+ 0.5925782043750272,
+ 0.5922183702236627,
+ 0.5945225115591701,
+ 0.5901240610672875,
+ 0.5923671162255673,
+ 0.5921394538524472,
+ 0.5901314847933659,
+ 0.5945044466607041,
+ 0.5920424841798777,
+ 0.5927530522539803,
+ 0.5944839213026243,
+ 0.5146725638374705,
+ 0.5168174053726826,
+ 0.5921905507622061,
+ 0.5907611382385825,
+ 0.5938737229152502,
+ 0.5921302946054752,
+ 0.5926197804212441,
+ 0.5938597887819586,
+ 0.5908095538947888,
+ 0.5927439945174751,
+ 0.5918047599753895,
+ 0.5908381917668626
+ ],
+ [
+ -1.2605596746839698,
+ -1.260314688052433,
+ -1.2598022979387613,
+ -1.2608315803008807,
+ -1.2598121601015144,
+ -1.2616063388576348,
+ -1.2614323082810186,
+ -1.2592055195276286,
+ -1.260011434582875,
+ -1.2610524334594198,
+ -1.260264548021417,
+ -1.261156005468167,
+ -1.2614583695325088,
+ -1.2597294629118627,
+ -1.260355682249359,
+ -1.2603501653951632,
+ -1.2597269089392737,
+ -1.2614586427656116,
+ -1.261151797385951,
+ -1.2602699245495286,
+ -1.2871885888787737,
+ -1.2858022703771121,
+ -1.295512068086313,
+ -1.2959131489942433,
+ -1.2602345472412235,
+ -1.2611911834869982,
+ -1.2611013020891182,
+ -1.26019174095382,
+ -1.2607701410655148,
+ -1.2600777222959714,
+ -1.259871215381625,
+ -1.2608570002270447,
+ -1.2609502039789833,
+ -1.260754558720656,
+ -1.2613492090024492,
+ -1.2596539671116957,
+ -1.2599698189208475,
+ -1.2607145508591877,
+ -1.2597697772198657,
+ -1.2610818268854462,
+ -1.260342724002106,
+ -1.2610777481203428,
+ -1.2611896741604456,
+ -1.2592259524440985,
+ -1.2595995109043745,
+ -1.2615755059258715,
+ -1.2607211342624547,
+ -1.260588792161843,
+ -1.2619319687812158,
+ -1.2593928849735647,
+ -1.2887869934308238,
+ -1.289137222220127,
+ -1.2603040800013288,
+ -1.2611660756733922,
+ -1.2609224119697338,
+ -1.2596076084958607,
+ -1.2599947981356552,
+ -1.2612842195808271,
+ -1.260556223423026,
+ -1.2601243935955742,
+ -1.2605216638339467,
+ -1.2609008985969838,
+ -0.49429912401421916,
+ -0.4942011848785288,
+ -0.49402884426397176,
+ -0.4944403242668205,
+ -0.49392715312179813,
+ -0.4946444167769348,
+ -0.494642475784568,
+ -0.49384803328222926,
+ -0.4940031027717007,
+ -0.49450349263457927,
+ -0.49410766421620345,
+ -0.49446404467967664,
+ -0.4946162529839704,
+ -0.4939250829982811,
+ -0.49424031875411334,
+ -0.49423811306070764,
+ -0.4939243690971207,
+ -0.49461666915995295,
+ -0.49446220468818414,
+ -0.4941096561139613,
+ -0.49580432387785756,
+ -0.49525990132137654,
+ -0.495847581273301,
+ -0.4960629050582144,
+ -0.49405329285656663,
+ -0.4945045490734046,
+ -0.4944593030919986,
+ -0.49409568533387294,
+ -0.4943868486234626,
+ -0.4941100382965802,
+ -0.49400608370830934,
+ -0.4944961134639714,
+ -0.49429209945439645,
+ -0.4942981255562362,
+ -0.4945974694420263,
+ -0.4939197575981602,
+ -0.4940787556634296,
+ -0.49437648356964736,
+ -0.4939864595138177,
+ -0.4945109812737325,
+ -0.4941389209023317,
+ -0.49443276362082234,
+ -0.4945754345897502,
+ -0.4938861760950264,
+ -0.4938234754592319,
+ -0.49469773213683954,
+ -0.4942676459879225,
+ -0.4943106724386581,
+ -0.4947356646151091,
+ -0.49380505579399436,
+ -0.49553591837780964,
+ -0.495742188148518,
+ -0.4940722391477692,
+ -0.4944901952558256,
+ -0.4944531012929243,
+ -0.4940232475564299,
+ -0.4939673852005777,
+ -0.4945672189560213,
+ -0.49428634374737435,
+ -0.4942095438964511,
+ -0.4941586272116938,
+ -0.49439460739097996
+ ]
+ ],
+ "variable_names": [
+ "QD2E-C04",
+ "QD2A-C05",
+ "QD2E-C05",
+ "QD2A-C06",
+ "QD2E-C06",
+ "QD2A-C07",
+ "QD2E-C07",
+ "QD2A-C08",
+ "QD2E-C08",
+ "QD2A-C09",
+ "QD2E-C09",
+ "QD2A-C10",
+ "QD2E-C10",
+ "QD2A-C11",
+ "QD2E-C11",
+ "QD2A-C12",
+ "QD2E-C12",
+ "QD2A-C13",
+ "QD2E-C13",
+ "QD2A-C14",
+ "QD2E-C14",
+ "QD2A-C15",
+ "QD2E-C15",
+ "QD2A-C16",
+ "QD2E-C16",
+ "QD2A-C17",
+ "QD2E-C17",
+ "QD2A-C18",
+ "QD2E-C18",
+ "QD2A-C19",
+ "QD2E-C19",
+ "QD2A-C20",
+ "QD2E-C20",
+ "QD2A-C21",
+ "QD2E-C21",
+ "QD2A-C22",
+ "QD2E-C22",
+ "QD2A-C23",
+ "QD2E-C23",
+ "QD2A-C24",
+ "QD2E-C24",
+ "QD2A-C25",
+ "QD2E-C25",
+ "QD2A-C26",
+ "QD2E-C26",
+ "QD2A-C27",
+ "QD2E-C27",
+ "QD2A-C28",
+ "QD2E-C28",
+ "QD2A-C29",
+ "QD2E-C29",
+ "QD2A-C30",
+ "QD2E-C30",
+ "QD2A-C31",
+ "QD2E-C31",
+ "QD2A-C32",
+ "QD2E-C32",
+ "QD2A-C01",
+ "QD2E-C01",
+ "QD2A-C02",
+ "QD2E-C02",
+ "QD2A-C03",
+ "QF1E-C04",
+ "QF1A-C05",
+ "QF1E-C05",
+ "QF1A-C06",
+ "QF1E-C06",
+ "QF1A-C07",
+ "QF1E-C07",
+ "QF1A-C08",
+ "QF1E-C08",
+ "QF1A-C09",
+ "QF1E-C09",
+ "QF1A-C10",
+ "QF1E-C10",
+ "QF1A-C11",
+ "QF1E-C11",
+ "QF1A-C12",
+ "QF1E-C12",
+ "QF1A-C13",
+ "QF1E-C13",
+ "QF1A-C14",
+ "QF1E-C14",
+ "QF1A-C15",
+ "QF1E-C15",
+ "QF1A-C16",
+ "QF1E-C16",
+ "QF1A-C17",
+ "QF1E-C17",
+ "QF1A-C18",
+ "QF1E-C18",
+ "QF1A-C19",
+ "QF1E-C19",
+ "QF1A-C20",
+ "QF1E-C20",
+ "QF1A-C21",
+ "QF1E-C21",
+ "QF1A-C22",
+ "QF1E-C22",
+ "QF1A-C23",
+ "QF1E-C23",
+ "QF1A-C24",
+ "QF1E-C24",
+ "QF1A-C25",
+ "QF1E-C25",
+ "QF1A-C26",
+ "QF1E-C26",
+ "QF1A-C27",
+ "QF1E-C27",
+ "QF1A-C28",
+ "QF1E-C28",
+ "QF1A-C29",
+ "QF1E-C29",
+ "QF1A-C30",
+ "QF1E-C30",
+ "QF1A-C31",
+ "QF1E-C31",
+ "QF1A-C32",
+ "QF1E-C32",
+ "QF1A-C01",
+ "QF1E-C01",
+ "QF1A-C02",
+ "QF1E-C02",
+ "QF1A-C03"
+ ],
+ "observable_names": [
+ "BETATRON_TUNE.x",
+ "BETATRON_TUNE.y"
+ ]
+}
diff --git a/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m b/examples/use_cases/config/soleil_ii/SOLEIL_II_V3631_sym1_V001_database_rf.m
similarity index 100%
rename from examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m
rename to examples/use_cases/config/soleil_ii/SOLEIL_II_V3631_sym1_V001_database_rf.m
diff --git a/examples/SOLEIL_examples/arrays.yaml b/examples/use_cases/config/soleil_ii/arrays.yaml
similarity index 90%
rename from examples/SOLEIL_examples/arrays.yaml
rename to examples/use_cases/config/soleil_ii/arrays.yaml
index 510d1579c..67c7f3273 100644
--- a/examples/SOLEIL_examples/arrays.yaml
+++ b/examples/use_cases/config/soleil_ii/arrays.yaml
@@ -1,369 +1,369 @@
- type: pyaml.arrays.magnet
name: HCORR
- elements:
- - SH1_COR_001.hcorrector
- - SH2_HCOR_001.hcorrector
- - SXF11_HCOR_001.hcorrector
- - SXF1_HCOR_001.hcorrector
- - SXF13_HCOR_001.hcorrector
- - SXF13_HCOR_002.hcorrector
- - SXF1_HCOR_002.hcorrector
- - SXF12_HCOR_001.hcorrector
- - SH6_COR_001.hcorrector
- - SH4_COR_001.hcorrector
- - SH4_COR_002.hcorrector
- - SH6_COR_002.hcorrector
- - SXF21_HCOR_001.hcorrector
- - SXF2_HCOR_001.hcorrector
- - SXF22_HCOR_001.hcorrector
- - SH9_COR_001.hcorrector
- - SH7_COR_001.hcorrector
- - SH7_COR_002.hcorrector
- - SH9_COR_002.hcorrector
- - SXF31_HCOR_001.hcorrector
- - SXF3_HCOR_001.hcorrector
- - SXF33_HCOR_001.hcorrector
- - SXF33_HCOR_002.hcorrector
- - SXF3_HCOR_002.hcorrector
- - SXF32_HCOR_001.hcorrector
- - SH9_COR_003.hcorrector
- - SH7_COR_003.hcorrector
- - SH7_COR_004.hcorrector
- - SH9_COR_004.hcorrector
- - SXF41_HCOR_001.hcorrector
- - SXF4_HCOR_001.hcorrector
- - SXF42_HCOR_001.hcorrector
- - SH12_COR_001.hcorrector
- - SH10_COR_001.hcorrector
- - SH10_COR_002.hcorrector
- - SH12_COR_002.hcorrector
- - SXF51_HCOR_001.hcorrector
- - SXF5_HCOR_001.hcorrector
- - SXF53_HCOR_001.hcorrector
- - SXF53_HCOR_002.hcorrector
- - SXF5_HCOR_002.hcorrector
- - SXF52_HCOR_001.hcorrector
- - SH14_HCOR_001.hcorrector
- - SH13_COR_001.hcorrector
- - SH16_COR_001.hcorrector
- - SH16_COR_002.hcorrector
- - SH13_COR_002.hcorrector
- - SH14_HCOR_002.hcorrector
- - SXF52_HCOR_002.hcorrector
- - SXF5_HCOR_003.hcorrector
- - SXF53_HCOR_003.hcorrector
- - SXF53_HCOR_004.hcorrector
- - SXF5_HCOR_004.hcorrector
- - SXF51_HCOR_002.hcorrector
- - SH12_COR_003.hcorrector
- - SH10_COR_003.hcorrector
- - SH10_COR_004.hcorrector
- - SH12_COR_004.hcorrector
- - SXF42_HCOR_002.hcorrector
- - SXF4_HCOR_002.hcorrector
- - SXF41_HCOR_002.hcorrector
- - SH9_COR_005.hcorrector
- - SH7_COR_005.hcorrector
- - SH7_COR_006.hcorrector
- - SH9_COR_006.hcorrector
- - SXF32_HCOR_002.hcorrector
- - SXF3_HCOR_003.hcorrector
- - SXF33_HCOR_003.hcorrector
- - SXF33_HCOR_004.hcorrector
- - SXF3_HCOR_004.hcorrector
- - SXF31_HCOR_002.hcorrector
- - SH9_COR_007.hcorrector
- - SH7_COR_007.hcorrector
- - SH7_COR_008.hcorrector
- - SH9_COR_008.hcorrector
- - SXF22_HCOR_002.hcorrector
- - SXF2_HCOR_002.hcorrector
- - SXF21_HCOR_002.hcorrector
- - SH6_COR_003.hcorrector
- - SH4_COR_003.hcorrector
- - SH4_COR_004.hcorrector
- - SH6_COR_004.hcorrector
- - SXF12_HCOR_002.hcorrector
- - SXF1_HCOR_003.hcorrector
- - SXF13_HCOR_003.hcorrector
- - SXF13_HCOR_004.hcorrector
- - SXF1_HCOR_004.hcorrector
- - SXF11_HCOR_002.hcorrector
- - SH2_HCOR_002.hcorrector
- - SH1_COR_002.hcorrector
- - SH1_COR_003.hcorrector
- - SH2_HCOR_003.hcorrector
- - SXF11_HCOR_003.hcorrector
- - SXF1_HCOR_005.hcorrector
- - SXF13_HCOR_005.hcorrector
- - SXF13_HCOR_006.hcorrector
- - SXF1_HCOR_006.hcorrector
- - SXF12_HCOR_003.hcorrector
- - SH6_COR_005.hcorrector
- - SH4_COR_005.hcorrector
- - SH4_COR_006.hcorrector
- - SH6_COR_006.hcorrector
- - SXF21_HCOR_003.hcorrector
- - SXF2_HCOR_003.hcorrector
- - SXF22_HCOR_003.hcorrector
- - SH9_COR_009.hcorrector
- - SH7_COR_009.hcorrector
- - SH7_COR_010.hcorrector
- - SH9_COR_010.hcorrector
- - SXF31_HCOR_003.hcorrector
- - SXF3_HCOR_005.hcorrector
- - SXF33_HCOR_005.hcorrector
- - SXF33_HCOR_006.hcorrector
- - SXF3_HCOR_006.hcorrector
- - SXF32_HCOR_003.hcorrector
- - SH9_COR_011.hcorrector
- - SH7_COR_011.hcorrector
- - SH7_COR_012.hcorrector
- - SH9_COR_012.hcorrector
- - SXF41_HCOR_003.hcorrector
- - SXF4_HCOR_003.hcorrector
- - SXF42_HCOR_003.hcorrector
- - SH12_COR_005.hcorrector
- - SH10_COR_005.hcorrector
- - SH10_COR_006.hcorrector
- - SH12_COR_006.hcorrector
- - SXF51_HCOR_003.hcorrector
- - SXF5_HCOR_005.hcorrector
- - SXF53_HCOR_005.hcorrector
- - SXF53_HCOR_006.hcorrector
- - SXF5_HCOR_006.hcorrector
- - SXF52_HCOR_003.hcorrector
- - SH14_HCOR_003.hcorrector
- - SH13_COR_003.hcorrector
- - SH16_COR_003.hcorrector
- - SH16_COR_004.hcorrector
- - SH13_COR_004.hcorrector
- - SH14_HCOR_004.hcorrector
- - SXF52_HCOR_004.hcorrector
- - SXF5_HCOR_007.hcorrector
- - SXF53_HCOR_007.hcorrector
- - SXF53_HCOR_008.hcorrector
- - SXF5_HCOR_008.hcorrector
- - SXF51_HCOR_004.hcorrector
- - SH12_COR_007.hcorrector
- - SH10_COR_007.hcorrector
- - SH10_COR_008.hcorrector
- - SH12_COR_008.hcorrector
- - SXF42_HCOR_004.hcorrector
- - SXF4_HCOR_004.hcorrector
- - SXF41_HCOR_004.hcorrector
- - SH9_COR_013.hcorrector
- - SH7_COR_013.hcorrector
- - SH7_COR_014.hcorrector
- - SH9_COR_014.hcorrector
- - SXF32_HCOR_004.hcorrector
- - SXF3_HCOR_007.hcorrector
- - SXF33_HCOR_007.hcorrector
- - SXF33_HCOR_008.hcorrector
- - SXF3_HCOR_008.hcorrector
- - SXF31_HCOR_004.hcorrector
- - SH9_COR_015.hcorrector
- - SH7_COR_015.hcorrector
- - SH7_COR_016.hcorrector
- - SH9_COR_016.hcorrector
- - SXF22_HCOR_004.hcorrector
- - SXF2_HCOR_004.hcorrector
- - SXF21_HCOR_004.hcorrector
- - SH6_COR_007.hcorrector
- - SH4_COR_007.hcorrector
- - SH4_COR_008.hcorrector
- - SH6_COR_008.hcorrector
- - SXF12_HCOR_004.hcorrector
- - SXF1_HCOR_007.hcorrector
- - SXF13_HCOR_007.hcorrector
- - SXF13_HCOR_008.hcorrector
- - SXF1_HCOR_008.hcorrector
- - SXF11_HCOR_004.hcorrector
- - SH2_HCOR_004.hcorrector
- - SH1_COR_004.hcorrector
+ elements: &id001
+ - SH1_COR_001.hcorrector
+ - SH2_HCOR_001.hcorrector
+ - SXF11_HCOR_001.hcorrector
+ - SXF1_HCOR_001.hcorrector
+ - SXF13_HCOR_001.hcorrector
+ - SXF13_HCOR_002.hcorrector
+ - SXF1_HCOR_002.hcorrector
+ - SXF12_HCOR_001.hcorrector
+ - SH6_COR_001.hcorrector
+ - SH4_COR_001.hcorrector
+ - SH4_COR_002.hcorrector
+ - SH6_COR_002.hcorrector
+ - SXF21_HCOR_001.hcorrector
+ - SXF2_HCOR_001.hcorrector
+ - SXF22_HCOR_001.hcorrector
+ - SH9_COR_001.hcorrector
+ - SH7_COR_001.hcorrector
+ - SH7_COR_002.hcorrector
+ - SH9_COR_002.hcorrector
+ - SXF31_HCOR_001.hcorrector
+ - SXF3_HCOR_001.hcorrector
+ - SXF33_HCOR_001.hcorrector
+ - SXF33_HCOR_002.hcorrector
+ - SXF3_HCOR_002.hcorrector
+ - SXF32_HCOR_001.hcorrector
+ - SH9_COR_003.hcorrector
+ - SH7_COR_003.hcorrector
+ - SH7_COR_004.hcorrector
+ - SH9_COR_004.hcorrector
+ - SXF41_HCOR_001.hcorrector
+ - SXF4_HCOR_001.hcorrector
+ - SXF42_HCOR_001.hcorrector
+ - SH12_COR_001.hcorrector
+ - SH10_COR_001.hcorrector
+ - SH10_COR_002.hcorrector
+ - SH12_COR_002.hcorrector
+ - SXF51_HCOR_001.hcorrector
+ - SXF5_HCOR_001.hcorrector
+ - SXF53_HCOR_001.hcorrector
+ - SXF53_HCOR_002.hcorrector
+ - SXF5_HCOR_002.hcorrector
+ - SXF52_HCOR_001.hcorrector
+ - SH14_HCOR_001.hcorrector
+ - SH13_COR_001.hcorrector
+ - SH16_COR_001.hcorrector
+ - SH16_COR_002.hcorrector
+ - SH13_COR_002.hcorrector
+ - SH14_HCOR_002.hcorrector
+ - SXF52_HCOR_002.hcorrector
+ - SXF5_HCOR_003.hcorrector
+ - SXF53_HCOR_003.hcorrector
+ - SXF53_HCOR_004.hcorrector
+ - SXF5_HCOR_004.hcorrector
+ - SXF51_HCOR_002.hcorrector
+ - SH12_COR_003.hcorrector
+ - SH10_COR_003.hcorrector
+ - SH10_COR_004.hcorrector
+ - SH12_COR_004.hcorrector
+ - SXF42_HCOR_002.hcorrector
+ - SXF4_HCOR_002.hcorrector
+ - SXF41_HCOR_002.hcorrector
+ - SH9_COR_005.hcorrector
+ - SH7_COR_005.hcorrector
+ - SH7_COR_006.hcorrector
+ - SH9_COR_006.hcorrector
+ - SXF32_HCOR_002.hcorrector
+ - SXF3_HCOR_003.hcorrector
+ - SXF33_HCOR_003.hcorrector
+ - SXF33_HCOR_004.hcorrector
+ - SXF3_HCOR_004.hcorrector
+ - SXF31_HCOR_002.hcorrector
+ - SH9_COR_007.hcorrector
+ - SH7_COR_007.hcorrector
+ - SH7_COR_008.hcorrector
+ - SH9_COR_008.hcorrector
+ - SXF22_HCOR_002.hcorrector
+ - SXF2_HCOR_002.hcorrector
+ - SXF21_HCOR_002.hcorrector
+ - SH6_COR_003.hcorrector
+ - SH4_COR_003.hcorrector
+ - SH4_COR_004.hcorrector
+ - SH6_COR_004.hcorrector
+ - SXF12_HCOR_002.hcorrector
+ - SXF1_HCOR_003.hcorrector
+ - SXF13_HCOR_003.hcorrector
+ - SXF13_HCOR_004.hcorrector
+ - SXF1_HCOR_004.hcorrector
+ - SXF11_HCOR_002.hcorrector
+ - SH2_HCOR_002.hcorrector
+ - SH1_COR_002.hcorrector
+ - SH1_COR_003.hcorrector
+ - SH2_HCOR_003.hcorrector
+ - SXF11_HCOR_003.hcorrector
+ - SXF1_HCOR_005.hcorrector
+ - SXF13_HCOR_005.hcorrector
+ - SXF13_HCOR_006.hcorrector
+ - SXF1_HCOR_006.hcorrector
+ - SXF12_HCOR_003.hcorrector
+ - SH6_COR_005.hcorrector
+ - SH4_COR_005.hcorrector
+ - SH4_COR_006.hcorrector
+ - SH6_COR_006.hcorrector
+ - SXF21_HCOR_003.hcorrector
+ - SXF2_HCOR_003.hcorrector
+ - SXF22_HCOR_003.hcorrector
+ - SH9_COR_009.hcorrector
+ - SH7_COR_009.hcorrector
+ - SH7_COR_010.hcorrector
+ - SH9_COR_010.hcorrector
+ - SXF31_HCOR_003.hcorrector
+ - SXF3_HCOR_005.hcorrector
+ - SXF33_HCOR_005.hcorrector
+ - SXF33_HCOR_006.hcorrector
+ - SXF3_HCOR_006.hcorrector
+ - SXF32_HCOR_003.hcorrector
+ - SH9_COR_011.hcorrector
+ - SH7_COR_011.hcorrector
+ - SH7_COR_012.hcorrector
+ - SH9_COR_012.hcorrector
+ - SXF41_HCOR_003.hcorrector
+ - SXF4_HCOR_003.hcorrector
+ - SXF42_HCOR_003.hcorrector
+ - SH12_COR_005.hcorrector
+ - SH10_COR_005.hcorrector
+ - SH10_COR_006.hcorrector
+ - SH12_COR_006.hcorrector
+ - SXF51_HCOR_003.hcorrector
+ - SXF5_HCOR_005.hcorrector
+ - SXF53_HCOR_005.hcorrector
+ - SXF53_HCOR_006.hcorrector
+ - SXF5_HCOR_006.hcorrector
+ - SXF52_HCOR_003.hcorrector
+ - SH14_HCOR_003.hcorrector
+ - SH13_COR_003.hcorrector
+ - SH16_COR_003.hcorrector
+ - SH16_COR_004.hcorrector
+ - SH13_COR_004.hcorrector
+ - SH14_HCOR_004.hcorrector
+ - SXF52_HCOR_004.hcorrector
+ - SXF5_HCOR_007.hcorrector
+ - SXF53_HCOR_007.hcorrector
+ - SXF53_HCOR_008.hcorrector
+ - SXF5_HCOR_008.hcorrector
+ - SXF51_HCOR_004.hcorrector
+ - SH12_COR_007.hcorrector
+ - SH10_COR_007.hcorrector
+ - SH10_COR_008.hcorrector
+ - SH12_COR_008.hcorrector
+ - SXF42_HCOR_004.hcorrector
+ - SXF4_HCOR_004.hcorrector
+ - SXF41_HCOR_004.hcorrector
+ - SH9_COR_013.hcorrector
+ - SH7_COR_013.hcorrector
+ - SH7_COR_014.hcorrector
+ - SH9_COR_014.hcorrector
+ - SXF32_HCOR_004.hcorrector
+ - SXF3_HCOR_007.hcorrector
+ - SXF33_HCOR_007.hcorrector
+ - SXF33_HCOR_008.hcorrector
+ - SXF3_HCOR_008.hcorrector
+ - SXF31_HCOR_004.hcorrector
+ - SH9_COR_015.hcorrector
+ - SH7_COR_015.hcorrector
+ - SH7_COR_016.hcorrector
+ - SH9_COR_016.hcorrector
+ - SXF22_HCOR_004.hcorrector
+ - SXF2_HCOR_004.hcorrector
+ - SXF21_HCOR_004.hcorrector
+ - SH6_COR_007.hcorrector
+ - SH4_COR_007.hcorrector
+ - SH4_COR_008.hcorrector
+ - SH6_COR_008.hcorrector
+ - SXF12_HCOR_004.hcorrector
+ - SXF1_HCOR_007.hcorrector
+ - SXF13_HCOR_007.hcorrector
+ - SXF13_HCOR_008.hcorrector
+ - SXF1_HCOR_008.hcorrector
+ - SXF11_HCOR_004.hcorrector
+ - SH2_HCOR_004.hcorrector
+ - SH1_COR_004.hcorrector
- type: pyaml.arrays.magnet
name: VCORR
- elements:
- - SH1_COR_001.vcorrector
- - SH3_VCOR_001.vcorrector
- - SXD11_VCOR_001.vcorrector
- - SXD1_VCOR_001.vcorrector
- - SXD13_VCOR_001.vcorrector
- - SXD1_VCOR_002.vcorrector
- - SXD1_VCOR_003.vcorrector
- - SXD12_VCOR_001.vcorrector
- - SH6_COR_001.vcorrector
- - SH4_COR_001.vcorrector
- - SH4_COR_002.vcorrector
- - SH6_COR_002.vcorrector
- - SXD21_VCOR_001.vcorrector
- - SXD2_VCOR_001.vcorrector
- - SXD22_VCOR_001.vcorrector
- - SH9_COR_001.vcorrector
- - SH7_COR_001.vcorrector
- - SH7_COR_002.vcorrector
- - SH9_COR_002.vcorrector
- - SXD31_VCOR_001.vcorrector
- - SXD3_VCOR_001.vcorrector
- - SXD33_VCOR_001.vcorrector
- - SXD3_VCOR_002.vcorrector
- - SXD3_VCOR_003.vcorrector
- - SXD32_VCOR_001.vcorrector
- - SH9_COR_003.vcorrector
- - SH7_COR_003.vcorrector
- - SH7_COR_004.vcorrector
- - SH9_COR_004.vcorrector
- - SXD41_VCOR_001.vcorrector
- - SXD4_VCOR_001.vcorrector
- - SXD42_VCOR_001.vcorrector
- - SH12_COR_001.vcorrector
- - SH10_COR_001.vcorrector
- - SH10_COR_002.vcorrector
- - SH12_COR_002.vcorrector
- - SXD51_VCOR_001.vcorrector
- - SXD5_VCOR_001.vcorrector
- - SXD53_VCOR_001.vcorrector
- - SXD5_VCOR_002.vcorrector
- - SXD5_VCOR_003.vcorrector
- - SXD52_VCOR_001.vcorrector
- - SH15_VCOR_001.vcorrector
- - SH13_COR_001.vcorrector
- - SH16_COR_001.vcorrector
- - SH16_COR_002.vcorrector
- - SH13_COR_002.vcorrector
- - SH15_VCOR_002.vcorrector
- - SXD52_VCOR_002.vcorrector
- - SXD5_VCOR_004.vcorrector
- - SXD53_VCOR_002.vcorrector
- - SXD5_VCOR_005.vcorrector
- - SXD5_VCOR_006.vcorrector
- - SXD51_VCOR_002.vcorrector
- - SH12_COR_003.vcorrector
- - SH10_COR_003.vcorrector
- - SH10_COR_004.vcorrector
- - SH12_COR_004.vcorrector
- - SXD42_VCOR_002.vcorrector
- - SXD4_VCOR_002.vcorrector
- - SXD41_VCOR_002.vcorrector
- - SH9_COR_005.vcorrector
- - SH7_COR_005.vcorrector
- - SH7_COR_006.vcorrector
- - SH9_COR_006.vcorrector
- - SXD32_VCOR_002.vcorrector
- - SXD3_VCOR_004.vcorrector
- - SXD33_VCOR_002.vcorrector
- - SXD3_VCOR_005.vcorrector
- - SXD3_VCOR_006.vcorrector
- - SXD31_VCOR_002.vcorrector
- - SH9_COR_007.vcorrector
- - SH7_COR_007.vcorrector
- - SH7_COR_008.vcorrector
- - SH9_COR_008.vcorrector
- - SXD22_VCOR_002.vcorrector
- - SXD2_VCOR_002.vcorrector
- - SXD21_VCOR_002.vcorrector
- - SH6_COR_003.vcorrector
- - SH4_COR_003.vcorrector
- - SH4_COR_004.vcorrector
- - SH6_COR_004.vcorrector
- - SXD12_VCOR_002.vcorrector
- - SXD1_VCOR_004.vcorrector
- - SXD13_VCOR_002.vcorrector
- - SXD1_VCOR_005.vcorrector
- - SXD1_VCOR_006.vcorrector
- - SXD11_VCOR_002.vcorrector
- - SH3_VCOR_002.vcorrector
- - SH1_COR_002.vcorrector
- - SH1_COR_003.vcorrector
- - SH3_VCOR_003.vcorrector
- - SXD11_VCOR_003.vcorrector
- - SXD1_VCOR_007.vcorrector
- - SXD13_VCOR_003.vcorrector
- - SXD1_VCOR_008.vcorrector
- - SXD1_VCOR_009.vcorrector
- - SXD12_VCOR_003.vcorrector
- - SH6_COR_005.vcorrector
- - SH4_COR_005.vcorrector
- - SH4_COR_006.vcorrector
- - SH6_COR_006.vcorrector
- - SXD21_VCOR_003.vcorrector
- - SXD2_VCOR_003.vcorrector
- - SXD22_VCOR_003.vcorrector
- - SH9_COR_009.vcorrector
- - SH7_COR_009.vcorrector
- - SH7_COR_010.vcorrector
- - SH9_COR_010.vcorrector
- - SXD31_VCOR_003.vcorrector
- - SXD3_VCOR_007.vcorrector
- - SXD33_VCOR_003.vcorrector
- - SXD3_VCOR_008.vcorrector
- - SXD3_VCOR_009.vcorrector
- - SXD32_VCOR_003.vcorrector
- - SH9_COR_011.vcorrector
- - SH7_COR_011.vcorrector
- - SH7_COR_012.vcorrector
- - SH9_COR_012.vcorrector
- - SXD41_VCOR_003.vcorrector
- - SXD4_VCOR_003.vcorrector
- - SXD42_VCOR_003.vcorrector
- - SH12_COR_005.vcorrector
- - SH10_COR_005.vcorrector
- - SH10_COR_006.vcorrector
- - SH12_COR_006.vcorrector
- - SXD51_VCOR_003.vcorrector
- - SXD5_VCOR_007.vcorrector
- - SXD53_VCOR_003.vcorrector
- - SXD5_VCOR_008.vcorrector
- - SXD5_VCOR_009.vcorrector
- - SXD52_VCOR_003.vcorrector
- - SH15_VCOR_003.vcorrector
- - SH13_COR_003.vcorrector
- - SH16_COR_003.vcorrector
- - SH16_COR_004.vcorrector
- - SH13_COR_004.vcorrector
- - SH15_VCOR_004.vcorrector
- - SXD52_VCOR_004.vcorrector
- - SXD5_VCOR_010.vcorrector
- - SXD53_VCOR_004.vcorrector
- - SXD5_VCOR_011.vcorrector
- - SXD5_VCOR_012.vcorrector
- - SXD51_VCOR_004.vcorrector
- - SH12_COR_007.vcorrector
- - SH10_COR_007.vcorrector
- - SH10_COR_008.vcorrector
- - SH12_COR_008.vcorrector
- - SXD42_VCOR_004.vcorrector
- - SXD4_VCOR_004.vcorrector
- - SXD41_VCOR_004.vcorrector
- - SH9_COR_013.vcorrector
- - SH7_COR_013.vcorrector
- - SH7_COR_014.vcorrector
- - SH9_COR_014.vcorrector
- - SXD32_VCOR_004.vcorrector
- - SXD3_VCOR_010.vcorrector
- - SXD33_VCOR_004.vcorrector
- - SXD3_VCOR_011.vcorrector
- - SXD3_VCOR_012.vcorrector
- - SXD31_VCOR_004.vcorrector
- - SH9_COR_015.vcorrector
- - SH7_COR_015.vcorrector
- - SH7_COR_016.vcorrector
- - SH9_COR_016.vcorrector
- - SXD22_VCOR_004.vcorrector
- - SXD2_VCOR_004.vcorrector
- - SXD21_VCOR_004.vcorrector
- - SH6_COR_007.vcorrector
- - SH4_COR_007.vcorrector
- - SH4_COR_008.vcorrector
- - SH6_COR_008.vcorrector
- - SXD12_VCOR_004.vcorrector
- - SXD1_VCOR_010.vcorrector
- - SXD13_VCOR_004.vcorrector
- - SXD1_VCOR_011.vcorrector
- - SXD1_VCOR_012.vcorrector
- - SXD11_VCOR_004.vcorrector
- - SH3_VCOR_004.vcorrector
- - SH1_COR_004.vcorrector
+ elements: &id002
+ - SH1_COR_001.vcorrector
+ - SH3_VCOR_001.vcorrector
+ - SXD11_VCOR_001.vcorrector
+ - SXD1_VCOR_001.vcorrector
+ - SXD13_VCOR_001.vcorrector
+ - SXD1_VCOR_002.vcorrector
+ - SXD1_VCOR_003.vcorrector
+ - SXD12_VCOR_001.vcorrector
+ - SH6_COR_001.vcorrector
+ - SH4_COR_001.vcorrector
+ - SH4_COR_002.vcorrector
+ - SH6_COR_002.vcorrector
+ - SXD21_VCOR_001.vcorrector
+ - SXD2_VCOR_001.vcorrector
+ - SXD22_VCOR_001.vcorrector
+ - SH9_COR_001.vcorrector
+ - SH7_COR_001.vcorrector
+ - SH7_COR_002.vcorrector
+ - SH9_COR_002.vcorrector
+ - SXD31_VCOR_001.vcorrector
+ - SXD3_VCOR_001.vcorrector
+ - SXD33_VCOR_001.vcorrector
+ - SXD3_VCOR_002.vcorrector
+ - SXD3_VCOR_003.vcorrector
+ - SXD32_VCOR_001.vcorrector
+ - SH9_COR_003.vcorrector
+ - SH7_COR_003.vcorrector
+ - SH7_COR_004.vcorrector
+ - SH9_COR_004.vcorrector
+ - SXD41_VCOR_001.vcorrector
+ - SXD4_VCOR_001.vcorrector
+ - SXD42_VCOR_001.vcorrector
+ - SH12_COR_001.vcorrector
+ - SH10_COR_001.vcorrector
+ - SH10_COR_002.vcorrector
+ - SH12_COR_002.vcorrector
+ - SXD51_VCOR_001.vcorrector
+ - SXD5_VCOR_001.vcorrector
+ - SXD53_VCOR_001.vcorrector
+ - SXD5_VCOR_002.vcorrector
+ - SXD5_VCOR_003.vcorrector
+ - SXD52_VCOR_001.vcorrector
+ - SH15_VCOR_001.vcorrector
+ - SH13_COR_001.vcorrector
+ - SH16_COR_001.vcorrector
+ - SH16_COR_002.vcorrector
+ - SH13_COR_002.vcorrector
+ - SH15_VCOR_002.vcorrector
+ - SXD52_VCOR_002.vcorrector
+ - SXD5_VCOR_004.vcorrector
+ - SXD53_VCOR_002.vcorrector
+ - SXD5_VCOR_005.vcorrector
+ - SXD5_VCOR_006.vcorrector
+ - SXD51_VCOR_002.vcorrector
+ - SH12_COR_003.vcorrector
+ - SH10_COR_003.vcorrector
+ - SH10_COR_004.vcorrector
+ - SH12_COR_004.vcorrector
+ - SXD42_VCOR_002.vcorrector
+ - SXD4_VCOR_002.vcorrector
+ - SXD41_VCOR_002.vcorrector
+ - SH9_COR_005.vcorrector
+ - SH7_COR_005.vcorrector
+ - SH7_COR_006.vcorrector
+ - SH9_COR_006.vcorrector
+ - SXD32_VCOR_002.vcorrector
+ - SXD3_VCOR_004.vcorrector
+ - SXD33_VCOR_002.vcorrector
+ - SXD3_VCOR_005.vcorrector
+ - SXD3_VCOR_006.vcorrector
+ - SXD31_VCOR_002.vcorrector
+ - SH9_COR_007.vcorrector
+ - SH7_COR_007.vcorrector
+ - SH7_COR_008.vcorrector
+ - SH9_COR_008.vcorrector
+ - SXD22_VCOR_002.vcorrector
+ - SXD2_VCOR_002.vcorrector
+ - SXD21_VCOR_002.vcorrector
+ - SH6_COR_003.vcorrector
+ - SH4_COR_003.vcorrector
+ - SH4_COR_004.vcorrector
+ - SH6_COR_004.vcorrector
+ - SXD12_VCOR_002.vcorrector
+ - SXD1_VCOR_004.vcorrector
+ - SXD13_VCOR_002.vcorrector
+ - SXD1_VCOR_005.vcorrector
+ - SXD1_VCOR_006.vcorrector
+ - SXD11_VCOR_002.vcorrector
+ - SH3_VCOR_002.vcorrector
+ - SH1_COR_002.vcorrector
+ - SH1_COR_003.vcorrector
+ - SH3_VCOR_003.vcorrector
+ - SXD11_VCOR_003.vcorrector
+ - SXD1_VCOR_007.vcorrector
+ - SXD13_VCOR_003.vcorrector
+ - SXD1_VCOR_008.vcorrector
+ - SXD1_VCOR_009.vcorrector
+ - SXD12_VCOR_003.vcorrector
+ - SH6_COR_005.vcorrector
+ - SH4_COR_005.vcorrector
+ - SH4_COR_006.vcorrector
+ - SH6_COR_006.vcorrector
+ - SXD21_VCOR_003.vcorrector
+ - SXD2_VCOR_003.vcorrector
+ - SXD22_VCOR_003.vcorrector
+ - SH9_COR_009.vcorrector
+ - SH7_COR_009.vcorrector
+ - SH7_COR_010.vcorrector
+ - SH9_COR_010.vcorrector
+ - SXD31_VCOR_003.vcorrector
+ - SXD3_VCOR_007.vcorrector
+ - SXD33_VCOR_003.vcorrector
+ - SXD3_VCOR_008.vcorrector
+ - SXD3_VCOR_009.vcorrector
+ - SXD32_VCOR_003.vcorrector
+ - SH9_COR_011.vcorrector
+ - SH7_COR_011.vcorrector
+ - SH7_COR_012.vcorrector
+ - SH9_COR_012.vcorrector
+ - SXD41_VCOR_003.vcorrector
+ - SXD4_VCOR_003.vcorrector
+ - SXD42_VCOR_003.vcorrector
+ - SH12_COR_005.vcorrector
+ - SH10_COR_005.vcorrector
+ - SH10_COR_006.vcorrector
+ - SH12_COR_006.vcorrector
+ - SXD51_VCOR_003.vcorrector
+ - SXD5_VCOR_007.vcorrector
+ - SXD53_VCOR_003.vcorrector
+ - SXD5_VCOR_008.vcorrector
+ - SXD5_VCOR_009.vcorrector
+ - SXD52_VCOR_003.vcorrector
+ - SH15_VCOR_003.vcorrector
+ - SH13_COR_003.vcorrector
+ - SH16_COR_003.vcorrector
+ - SH16_COR_004.vcorrector
+ - SH13_COR_004.vcorrector
+ - SH15_VCOR_004.vcorrector
+ - SXD52_VCOR_004.vcorrector
+ - SXD5_VCOR_010.vcorrector
+ - SXD53_VCOR_004.vcorrector
+ - SXD5_VCOR_011.vcorrector
+ - SXD5_VCOR_012.vcorrector
+ - SXD51_VCOR_004.vcorrector
+ - SH12_COR_007.vcorrector
+ - SH10_COR_007.vcorrector
+ - SH10_COR_008.vcorrector
+ - SH12_COR_008.vcorrector
+ - SXD42_VCOR_004.vcorrector
+ - SXD4_VCOR_004.vcorrector
+ - SXD41_VCOR_004.vcorrector
+ - SH9_COR_013.vcorrector
+ - SH7_COR_013.vcorrector
+ - SH7_COR_014.vcorrector
+ - SH9_COR_014.vcorrector
+ - SXD32_VCOR_004.vcorrector
+ - SXD3_VCOR_010.vcorrector
+ - SXD33_VCOR_004.vcorrector
+ - SXD3_VCOR_011.vcorrector
+ - SXD3_VCOR_012.vcorrector
+ - SXD31_VCOR_004.vcorrector
+ - SH9_COR_015.vcorrector
+ - SH7_COR_015.vcorrector
+ - SH7_COR_016.vcorrector
+ - SH9_COR_016.vcorrector
+ - SXD22_VCOR_004.vcorrector
+ - SXD2_VCOR_004.vcorrector
+ - SXD21_VCOR_004.vcorrector
+ - SH6_COR_007.vcorrector
+ - SH4_COR_007.vcorrector
+ - SH4_COR_008.vcorrector
+ - SH6_COR_008.vcorrector
+ - SXD12_VCOR_004.vcorrector
+ - SXD1_VCOR_010.vcorrector
+ - SXD13_VCOR_004.vcorrector
+ - SXD1_VCOR_011.vcorrector
+ - SXD1_VCOR_012.vcorrector
+ - SXD11_VCOR_004.vcorrector
+ - SH3_VCOR_004.vcorrector
+ - SH1_COR_004.vcorrector
- type: pyaml.arrays.bpm
name: BPM
elements:
@@ -721,7 +721,7 @@
- SH3_VCOR_004.vcorrector
- type: pyaml.arrays.magnet
name: QCORR
- elements:
+ elements: &id003
- QCORR_001
- QCORR_002
- QCORR_003
@@ -4824,3 +4824,12 @@
- OH1_QCORROCT_164_QT_001.octupole
- OH1_QCORROCT_164_QT_001.quadrupole
- OH1_QCORROCT_164_QT_001.skewquad
+- type: pyaml.arrays.magnet
+ name: HCorr
+ elements: *id001
+- type: pyaml.arrays.magnet
+ name: VCorr
+ elements: *id002
+- type: pyaml.arrays.magnet
+ name: QForTune
+ elements: *id003
diff --git a/examples/use_cases/config/soleil_ii/catalogs.yaml b/examples/use_cases/config/soleil_ii/catalogs.yaml
new file mode 100644
index 000000000..696587335
--- /dev/null
+++ b/examples/use_cases/config/soleil_ii/catalogs.yaml
@@ -0,0 +1,10836 @@
+type: tango.pyaml.static_catalog
+entries:
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN02-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN03-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN04-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN05-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-SD/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-SD/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-SD/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-SD/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.11/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.11/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.11/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.11/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.12/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.12/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/DG-EPOS/BPM.12/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN06-AR/DG-EPOS/BPM.12/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN07-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN08-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN09-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN10-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN11-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN12-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN13-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN14-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN15-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-SD/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-SD/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-SD/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-SD/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.11/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.11/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.11/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.11/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.12/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.12/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/DG-EPOS/BPM.12/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN16-AR/DG-EPOS/BPM.12/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN17-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN18-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN19-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-SD/DG-EPOS/BPM.02/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-SD/DG-EPOS/BPM.02/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-SD/DG-EPOS/BPM.02/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-SD/DG-EPOS/BPM.02/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.03/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.03/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.03/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.03/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.04/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.04/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.04/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.04/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.05/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.05/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.05/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.05/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.06/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.06/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.06/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.06/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.07/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.07/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.07/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.07/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.08/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.08/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.08/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.08/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.09/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.09/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.09/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.09/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.10/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.10/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/DG-EPOS/BPM.10/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN20-AR/DG-EPOS/BPM.10/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-SD/DG-EPOS/BPM.01/x_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-SD/DG-EPOS/BPM.01/x_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-SD/DG-EPOS/BPM.01/y_pos
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: AN01-SD/DG-EPOS/BPM.01/y_pos
+ unit: mm
+- type: tango.pyaml.static_catalog_entry
+ key: simulator/ringsimulator/ringsimulator/RfFrequency
+ device:
+ type: tango.pyaml.attribute
+ attribute: simulator/ringsimulator/ringsimulator/RfFrequency
+ unit: Hz
+- type: tango.pyaml.static_catalog_entry
+ key: simulator/ringsimulator/ringsimulator/RfVoltage
+ device:
+ type: tango.pyaml.attribute
+ attribute: simulator/ringsimulator/ringsimulator/RfVoltage
+ unit: V
+- type: tango.pyaml.static_catalog_entry
+ key: simulator/ringsimulator/ringsimulator/Tune_v
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: simulator/ringsimulator/ringsimulator/Tune_v
+- type: tango.pyaml.static_catalog_entry
+ key: simulator/ringsimulator/ringsimulator/Tune_h
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: simulator/ringsimulator/ringsimulator/Tune_h
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SHD.02-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SHD.02-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SHD.04-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SHD.04-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OH.03-CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OH.03-CQLN.21/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-OCT/OH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-OCT/OH.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OH.04-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OH.04-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN01-AR/EM-COR/OH.04-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN01-AR/EM-COR/OH.04-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SHD.04-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SHD.04-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SHD.04-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SHD.04-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SHF.06-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SHF.06-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/SHF.06-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/SHF.06-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OH.03-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OH.03-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN02-AR/EM-COR/OH.03-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN02-AR/EM-COR/OH.03-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.02/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SHD.04-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SHD.04-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/CQLN.21/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OH.02-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OH.02-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN03-AR/EM-COR/OH.02-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN03-AR/EM-COR/OH.02-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/CQLN.02/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SHD.04-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SHD.04-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SHD.04-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SHD.04-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OH.02-CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OH.02-CQLN.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SHF.06-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SHF.06-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/SHF.06-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/SHF.06-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OH.03-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OH.03-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN04-AR/EM-COR/OH.03-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN04-AR/EM-COR/OH.03-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SHD.05-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SHD.05-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OH.03-CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OH.03-CQLN.21/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-OCT/OH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-OCT/OH.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OH.04-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OH.04-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN05-AR/EM-COR/OH.04-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN05-AR/EM-COR/OH.04-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-SX/SHD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-SX/SHD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-COR/SHD.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-COR/SHD.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-COR/SHD.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-COR/SHD.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-COR/SHD.02-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-COR/SHD.02-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-COR/SHD.02-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-COR/SHD.02-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-SD/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-SD/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SHF.01-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SHF.01-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SHF.01-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SHF.01-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SHD.02-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SHD.02-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SHD.03-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SHD.03-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCF.02-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCF.02-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCD.03-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCD.03-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCF.05-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCF.05-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCD.06-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCD.06-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCF.08-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCF.08-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCD.09-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCD.09-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCF.11-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCF.11-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCD.12-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCD.12-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCF.14-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCF.14-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCD.15-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCD.15-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCF.17-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCF.17-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SCD.18-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SCD.18-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SHD.04-CDLH.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SHD.04-CDLH.11/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SHD.04-CDLV.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SHD.04-CDLV.11/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OH.03-CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OH.03-CQLN.21/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SHF.06-CDLH.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SHF.06-CDLH.12/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/SHF.06-CDLV.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/SHF.06-CDLV.12/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-OCT/OH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-OCT/OH.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OH.04-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OH.04-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN06-AR/EM-COR/OH.04-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN06-AR/EM-COR/OH.04-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SHD.04-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SHD.04-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SHD.04-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SHD.04-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SHF.06-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SHF.06-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/SHF.06-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/SHF.06-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OH.03-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OH.03-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN07-AR/EM-COR/OH.03-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN07-AR/EM-COR/OH.03-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.02/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SHD.04-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SHD.04-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/CQLN.21/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OH.02-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OH.02-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN08-AR/EM-COR/OH.02-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN08-AR/EM-COR/OH.02-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/CQLN.02/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SHD.04-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SHD.04-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SHD.04-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SHD.04-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OH.02-CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OH.02-CQLN.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SHF.06-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SHF.06-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/SHF.06-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/SHF.06-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OH.03-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OH.03-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN09-AR/EM-COR/OH.03-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN09-AR/EM-COR/OH.03-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OH.03-CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OH.03-CQLN.21/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SHD.05-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SHD.05-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-OCT/OH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-OCT/OH.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OH.04-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OH.04-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/OH.04-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/OH.04-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN10-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN10-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SHD.02-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SHD.02-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SHD.04-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SHD.04-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OH.03-CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OH.03-CQLN.21/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-OCT/OH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-OCT/OH.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OH.04-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OH.04-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN11-AR/EM-COR/OH.04-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN11-AR/EM-COR/OH.04-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SHD.04-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SHD.04-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SHD.04-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SHD.04-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SHF.06-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SHF.06-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/SHF.06-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/SHF.06-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OH.03-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OH.03-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN12-AR/EM-COR/OH.03-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN12-AR/EM-COR/OH.03-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.02/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SHD.04-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SHD.04-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/CQLN.21/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OH.02-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OH.02-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN13-AR/EM-COR/OH.02-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN13-AR/EM-COR/OH.02-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/CQLN.02/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SHD.04-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SHD.04-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SHD.04-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SHD.04-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OH.02-CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OH.02-CQLN.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SHF.06-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SHF.06-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/SHF.06-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/SHF.06-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OH.03-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OH.03-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN14-AR/EM-COR/OH.03-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN14-AR/EM-COR/OH.03-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SHD.05-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SHD.05-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OH.03-CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OH.03-CQLN.21/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-OCT/OH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-OCT/OH.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN15-AR/EM-COR/OH.04-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN15-AR/EM-COR/OH.04-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-SX/SHD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-SX/SHD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-COR/SHD.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-COR/SHD.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-COR/SHD.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-COR/SHD.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-COR/SHD.02-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-COR/SHD.02-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-COR/SHD.02-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-COR/SHD.02-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-SD/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-SD/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SHF.01-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SHF.01-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SHF.01-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SHF.01-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SHD.02-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SHD.02-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SHD.03-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SHD.03-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCF.02-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCF.02-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCD.03-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCD.03-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.02-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.02-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCF.05-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCF.05-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCD.06-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCD.06-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.03-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.03-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCF.08-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCF.08-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCD.09-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCD.09-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCF.11-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCF.11-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.04-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.04-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCD.12-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCD.12-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCF.14-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCF.14-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.05-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.05-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCD.15-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCD.15-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCF.17-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCF.17-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OC.06-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OC.06-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SCD.18-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SCD.18-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SHD.04-CDLH.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SHD.04-CDLH.11/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SHD.04-CDLV.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SHD.04-CDLV.11/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OH.03-CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OH.03-CQLN.21/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SHF.06-CDLH.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SHF.06-CDLH.12/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/SHF.06-CDLV.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/SHF.06-CDLV.12/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-OCT/OH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-OCT/OH.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OH.04-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OH.04-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN16-AR/EM-COR/OH.04-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN16-AR/EM-COR/OH.04-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SHD.04-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SHD.04-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SHD.04-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SHD.04-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SHF.06-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SHF.06-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/SHF.06-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/SHF.06-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OH.03-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OH.03-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN17-AR/EM-COR/OH.03-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN17-AR/EM-COR/OH.03-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.02/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SHD.04-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SHD.04-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/CQLN.21/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OH.02-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OH.02-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN18-AR/EM-COR/OH.02-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN18-AR/EM-COR/OH.02-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/CQLN.02/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SHD.04-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SHD.04-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SHD.04-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SHD.04-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OH.02-CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OH.02-CQLN.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SHF.06-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SHF.06-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/SHF.06-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/SHF.06-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OH.03-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OH.03-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN19-AR/EM-COR/OH.03-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN19-AR/EM-COR/OH.03-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OH.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OH.01-CQLN.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OH.01-CQLN.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OH.01-CQLT.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OH.01-CQLT.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SHF.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SHF.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SHF.01-CDLH.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SHF.01-CDLH.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SHF.01-CDLV.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SHF.01-CDLV.01/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OH.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OH.02-CQLN.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OH.02-CQLN.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SHD.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SHD.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.03/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SHD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SHD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SHD.03-CDLH.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SHD.03-CDLH.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SHD.03-CDLV.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SHD.03-CDLV.02/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.01/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OC.01/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OC.01/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.01-CQLN.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.01-CQLN.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.01-CQLT.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.01-CQLT.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCF.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCF.02/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCF.02-CDLH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCF.02-CDLH.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCD.03-CDLV.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCD.03-CDLV.03/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.05/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.06/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OC.02/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OC.02/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.02-CQLN.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.02-CQLN.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.02-CQLT.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.02-CQLT.03/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCF.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCF.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCF.05-CDLH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCF.05-CDLH.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCD.06-CDLV.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCD.06-CDLV.04/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.08/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.09/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OC.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OC.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.03-CQLN.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.03-CQLN.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.03-CQLT.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.03-CQLT.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCF.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCF.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCF.08-CDLH.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCF.08-CDLH.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.09/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCD.09-CDLV.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCD.09-CDLV.05/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.11/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.12/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.10/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCF.11/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCF.11/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCF.11-CDLH.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCF.11-CDLH.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OC.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OC.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.04-CQLN.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.04-CQLN.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.04-CQLT.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.04-CQLT.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.12/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.12/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCD.12-CDLV.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCD.12-CDLV.06/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.14/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.15/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.13/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.13/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCF.14/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCF.14/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCF.14-CDLH.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCF.14-CDLH.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OC.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OC.05/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.05-CQLN.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.05-CQLN.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.05-CQLT.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.05-CQLT.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.15/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.15/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCD.15-CDLV.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCD.15-CDLV.07/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.17/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.18/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.16/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.16/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCF.17/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCF.17/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCF.17-CDLH.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCF.17-CDLH.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OC.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OC.06/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.06-CQLN.19/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.06-CQLN.19/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OC.06-CQLT.07/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OC.06-CQLT.07/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SCD.18/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SCD.18/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SCD.18-CDLV.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SCD.18-CDLV.08/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/CQLN.20/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/CQLN.20/strength
+ unit: 1/m
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SHD.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SHD.04/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SHD.04-CDLV.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SHD.04-CDLV.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OH.03/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OH.03/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OH.03-CQLN.21/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OH.03-CQLN.21/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SHD.05/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SHD.05/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SHD.05-CDLH.09/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SHD.05-CDLH.09/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-OCT/OH.04/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-OCT/OH.04/strength
+ unit: 1/m**3
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OH.04-CQLN.22/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OH.04-CQLN.22/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/OH.04-CQLT.08/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/OH.04-CQLT.08/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-SX/SHF.06/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-SX/SHF.06/strength
+ unit: 1/m**2
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SHF.06-CDLH.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SHF.06-CDLH.10/strength
+ unit: '1'
+- type: tango.pyaml.static_catalog_entry
+ key: AN20-AR/EM-COR/SHF.06-CDLV.10/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: AN20-AR/EM-COR/SHF.06-CDLV.10/strength
+ unit: '1'
diff --git a/examples/use_cases/config/soleil_ii/devices.yaml b/examples/use_cases/config/soleil_ii/devices.yaml
new file mode 100644
index 000000000..e75b0954a
--- /dev/null
+++ b/examples/use_cases/config/soleil_ii/devices.yaml
@@ -0,0 +1,8542 @@
+- type: pyaml.bpm.bpm
+ name: BPM_001
+ x_pos: AN01-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN01-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH1_COR_001
+ mapping:
+ - [B2, SH1_COR_001.sextupole]
+ - [B0, SH1_COR_001.hcorrector]
+ - [A0, SH1_COR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN01-AR/EM-SX/SHF.01/strength
+ - AN01-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN01-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH1_QCORROCT_1_QT_001
+ mapping:
+ - [B3, OH1_QCORROCT_1_QT_001.octupole]
+ - [B1, OH1_QCORROCT_1_QT_001.quadrupole]
+ - [A1, OH1_QCORROCT_1_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OH.01/strength
+ - AN01-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN01-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2_HCOR_001
+ mapping:
+ - [B2, SH2_HCOR_001.sextupole]
+ - [B0, SH2_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SHD.02/strength
+ - AN01-AR/EM-COR/SHD.02-CDLH.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH2_QCORROCT_2_001
+ mapping:
+ - [B3, OH2_QCORROCT_2_001.octupole]
+ - [B1, OH2_QCORROCT_2_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OH.02/strength
+ - AN01-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.bpm.bpm
+ name: BPM_002
+ x_pos: AN01-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN01-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH3_VCOR_001
+ mapping:
+ - [B2, SH3_VCOR_001.sextupole]
+ - [A0, SH3_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SHD.03/strength
+ - AN01-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.sextupole
+ name: SXD11_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN01-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_3_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_3_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_3_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_3_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OC.01/strength
+ - AN01-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN01-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF11_HCOR_001
+ mapping:
+ - [B2, SXF11_HCOR_001.sextupole]
+ - [B0, SXF11_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCF.02/strength
+ - AN01-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_003
+ x_pos: AN01-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN01-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD11_VCOR_001
+ mapping:
+ - [B2, SXD11_VCOR_001.sextupole]
+ - [A0, SXD11_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCD.03/strength
+ - AN01-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN01-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_4_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_4_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_4_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_4_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OC.02/strength
+ - AN01-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN01-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF1_HCOR_001
+ mapping:
+ - [B2, SXF1_HCOR_001.sextupole]
+ - [B0, SXF1_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCF.05/strength
+ - AN01-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_004
+ x_pos: AN01-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN01-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_001
+ mapping:
+ - [B2, SXD1_VCOR_001.sextupole]
+ - [A0, SXD1_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCD.06/strength
+ - AN01-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_005
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN01-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_5_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_5_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_5_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_5_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OC.03/strength
+ - AN01-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN01-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF13_HCOR_001
+ mapping:
+ - [B2, SXF13_HCOR_001.sextupole]
+ - [B0, SXF13_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCF.08/strength
+ - AN01-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_005
+ x_pos: AN01-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN01-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD13_VCOR_001
+ mapping:
+ - [B2, SXD13_VCOR_001.sextupole]
+ - [A0, SXD13_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCD.09/strength
+ - AN01-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_006
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_007
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD13_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN01-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF13_HCOR_002
+ mapping:
+ - [B2, SXF13_HCOR_002.sextupole]
+ - [B0, SXF13_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCF.11/strength
+ - AN01-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_6_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_6_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_6_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_6_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OC.04/strength
+ - AN01-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN01-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_006
+ x_pos: AN01-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN01-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_002
+ mapping:
+ - [B2, SXD1_VCOR_002.sextupole]
+ - [A0, SXD1_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCD.12/strength
+ - AN01-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_008
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_009
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN01-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF1_HCOR_002
+ mapping:
+ - [B2, SXF1_HCOR_002.sextupole]
+ - [B0, SXF1_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCF.14/strength
+ - AN01-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_7_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_7_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_7_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_7_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OC.05/strength
+ - AN01-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN01-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_007
+ x_pos: AN01-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN01-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_003
+ mapping:
+ - [B2, SXD1_VCOR_003.sextupole]
+ - [A0, SXD1_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCD.15/strength
+ - AN01-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_010
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_011
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD12_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN01-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF12_HCOR_001
+ mapping:
+ - [B2, SXF12_HCOR_001.sextupole]
+ - [B0, SXF12_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCF.17/strength
+ - AN01-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_8_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_8_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_8_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_8_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OC.06/strength
+ - AN01-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN01-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD12_VCOR_001
+ mapping:
+ - [B2, SXD12_VCOR_001.sextupole]
+ - [A0, SXD12_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN01-AR/EM-SX/SCD.18/strength
+ - AN01-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_008
+ x_pos: AN01-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN01-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH6_COR_001
+ mapping:
+ - [B2, SH6_COR_001.sextupole]
+ - [B0, SH6_COR_001.hcorrector]
+ - [A0, SH6_COR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN01-AR/EM-SX/SHD.04/strength
+ - AN01-AR/EM-COR/SHD.04-CDLH.09/strength
+ - AN01-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_012
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN01-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.sextupole
+ name: SH5_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN01-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH5_QCORROCT_9_001
+ mapping:
+ - [B3, OH5_QCORROCT_9_001.octupole]
+ - [B1, OH5_QCORROCT_9_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OH.03/strength
+ - AN01-AR/EM-COR/OH.03-CQLN.21/strength
+- type: pyaml.bpm.bpm
+ name: BPM_009
+ x_pos: AN01-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN01-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH4_COR_001
+ mapping:
+ - [B2, SH4_COR_001.sextupole]
+ - [B0, SH4_COR_001.hcorrector]
+ - [A0, SH4_COR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN01-AR/EM-SX/SHF.06/strength
+ - AN01-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN01-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH4_QCORROCT_10_QT_001
+ mapping:
+ - [B3, OH4_QCORROCT_10_QT_001.octupole]
+ - [B1, OH4_QCORROCT_10_QT_001.quadrupole]
+ - [A1, OH4_QCORROCT_10_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN01-AR/EM-OCT/OH.04/strength
+ - AN01-AR/EM-COR/OH.04-CQLN.22/strength
+ - AN01-AR/EM-COR/OH.04-CQLT.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_010
+ x_pos: AN02-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN02-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_011
+ x_pos: AN02-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN02-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH4_QCORROCT_11_QT_001
+ mapping:
+ - [B3, OH4_QCORROCT_11_QT_001.octupole]
+ - [B1, OH4_QCORROCT_11_QT_001.quadrupole]
+ - [A1, OH4_QCORROCT_11_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN02-AR/EM-OCT/OH.01/strength
+ - AN02-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN02-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH4_COR_002
+ mapping:
+ - [B2, SH4_COR_002.sextupole]
+ - [B0, SH4_COR_002.hcorrector]
+ - [A0, SH4_COR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN02-AR/EM-SX/SHF.01/strength
+ - AN02-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN02-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_012
+ x_pos: AN02-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN02-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH5_QCORROCT_12_001
+ mapping:
+ - [B3, OH5_QCORROCT_12_001.octupole]
+ - [B1, OH5_QCORROCT_12_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN02-AR/EM-OCT/OH.02/strength
+ - AN02-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH5_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN02-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_013
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN02-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH6_COR_002
+ mapping:
+ - [B2, SH6_COR_002.sextupole]
+ - [B0, SH6_COR_002.hcorrector]
+ - [A0, SH6_COR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN02-AR/EM-SX/SHD.03/strength
+ - AN02-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN02-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD21_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN02-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_13_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_13_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_13_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_13_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN02-AR/EM-OCT/OC.01/strength
+ - AN02-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN02-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF21_HCOR_001
+ mapping:
+ - [B2, SXF21_HCOR_001.sextupole]
+ - [B0, SXF21_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN02-AR/EM-SX/SCF.02/strength
+ - AN02-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_013
+ x_pos: AN02-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN02-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD21_VCOR_001
+ mapping:
+ - [B2, SXD21_VCOR_001.sextupole]
+ - [A0, SXD21_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN02-AR/EM-SX/SCD.03/strength
+ - AN02-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_014
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN02-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_015
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN02-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD2_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN02-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_14_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_14_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_14_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_14_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN02-AR/EM-OCT/OC.02/strength
+ - AN02-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN02-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF2_HCOR_001
+ mapping:
+ - [B2, SXF2_HCOR_001.sextupole]
+ - [B0, SXF2_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN02-AR/EM-SX/SCF.05/strength
+ - AN02-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_014
+ x_pos: AN02-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN02-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD2_VCOR_001
+ mapping:
+ - [B2, SXD2_VCOR_001.sextupole]
+ - [A0, SXD2_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN02-AR/EM-SX/SCD.06/strength
+ - AN02-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_016
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN02-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_017
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN02-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD22_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN02-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF22_HCOR_001
+ mapping:
+ - [B2, SXF22_HCOR_001.sextupole]
+ - [B0, SXF22_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN02-AR/EM-SX/SCF.08/strength
+ - AN02-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_15_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_15_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_15_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_15_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN02-AR/EM-OCT/OC.03/strength
+ - AN02-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN02-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD22_VCOR_001
+ mapping:
+ - [B2, SXD22_VCOR_001.sextupole]
+ - [A0, SXD22_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN02-AR/EM-SX/SCD.09/strength
+ - AN02-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_015
+ x_pos: AN02-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN02-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_001
+ mapping:
+ - [B2, SH9_COR_001.sextupole]
+ - [B0, SH9_COR_001.hcorrector]
+ - [A0, SH9_COR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN02-AR/EM-SX/SHD.04/strength
+ - AN02-AR/EM-COR/SHD.04-CDLH.06/strength
+ - AN02-AR/EM-COR/SHD.04-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_018
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN02-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN02-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_019
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN02-AR/EM-COR/CQLN.12/strength
+- type: pyaml.bpm.bpm
+ name: BPM_016
+ x_pos: AN02-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN02-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_001
+ mapping:
+ - [B2, SH7_COR_001.sextupole]
+ - [B0, SH7_COR_001.hcorrector]
+ - [A0, SH7_COR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN02-AR/EM-SX/SHF.06/strength
+ - AN02-AR/EM-COR/SHF.06-CDLH.07/strength
+ - AN02-AR/EM-COR/SHF.06-CDLV.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_16_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_16_QT_001.octupole]
+ - [B1, OH7_QCORROCT_16_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_16_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN02-AR/EM-OCT/OH.03/strength
+ - AN02-AR/EM-COR/OH.03-CQLN.13/strength
+ - AN02-AR/EM-COR/OH.03-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_017
+ x_pos: AN03-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN03-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_018
+ x_pos: AN03-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN03-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_17_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_17_QT_001.octupole]
+ - [B1, OH7_QCORROCT_17_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_17_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN03-AR/EM-OCT/OH.01/strength
+ - AN03-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN03-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_002
+ mapping:
+ - [B2, SH7_COR_002.sextupole]
+ - [B0, SH7_COR_002.hcorrector]
+ - [A0, SH7_COR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN03-AR/EM-SX/SHF.01/strength
+ - AN03-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN03-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_019
+ x_pos: AN03-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN03-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_020
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN03-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_021
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_002
+ mapping:
+ - [B2, SH9_COR_002.sextupole]
+ - [B0, SH9_COR_002.hcorrector]
+ - [A0, SH9_COR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN03-AR/EM-SX/SHD.03/strength
+ - AN03-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN03-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD31_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN03-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_18_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_18_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_18_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_18_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN03-AR/EM-OCT/OC.01/strength
+ - AN03-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN03-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF31_HCOR_001
+ mapping:
+ - [B2, SXF31_HCOR_001.sextupole]
+ - [B0, SXF31_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCF.02/strength
+ - AN03-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_020
+ x_pos: AN03-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN03-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD31_VCOR_001
+ mapping:
+ - [B2, SXD31_VCOR_001.sextupole]
+ - [A0, SXD31_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCD.03/strength
+ - AN03-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_022
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_023
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN03-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_19_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_19_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_19_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_19_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN03-AR/EM-OCT/OC.02/strength
+ - AN03-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN03-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF3_HCOR_001
+ mapping:
+ - [B2, SXF3_HCOR_001.sextupole]
+ - [B0, SXF3_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCF.05/strength
+ - AN03-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_021
+ x_pos: AN03-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN03-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_001
+ mapping:
+ - [B2, SXD3_VCOR_001.sextupole]
+ - [A0, SXD3_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCD.06/strength
+ - AN03-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_024
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_025
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN03-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_20_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_20_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_20_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_20_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN03-AR/EM-OCT/OC.03/strength
+ - AN03-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN03-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF33_HCOR_001
+ mapping:
+ - [B2, SXF33_HCOR_001.sextupole]
+ - [B0, SXF33_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCF.08/strength
+ - AN03-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_022
+ x_pos: AN03-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN03-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD33_VCOR_001
+ mapping:
+ - [B2, SXD33_VCOR_001.sextupole]
+ - [A0, SXD33_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCD.09/strength
+ - AN03-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_026
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_027
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD33_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN03-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF33_HCOR_002
+ mapping:
+ - [B2, SXF33_HCOR_002.sextupole]
+ - [B0, SXF33_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCF.11/strength
+ - AN03-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_21_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_21_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_21_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_21_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN03-AR/EM-OCT/OC.04/strength
+ - AN03-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN03-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_023
+ x_pos: AN03-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN03-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_002
+ mapping:
+ - [B2, SXD3_VCOR_002.sextupole]
+ - [A0, SXD3_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCD.12/strength
+ - AN03-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_028
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_029
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN03-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF3_HCOR_002
+ mapping:
+ - [B2, SXF3_HCOR_002.sextupole]
+ - [B0, SXF3_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCF.14/strength
+ - AN03-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_22_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_22_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_22_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_22_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN03-AR/EM-OCT/OC.05/strength
+ - AN03-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN03-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_024
+ x_pos: AN03-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN03-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_003
+ mapping:
+ - [B2, SXD3_VCOR_003.sextupole]
+ - [A0, SXD3_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCD.15/strength
+ - AN03-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_030
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_031
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD32_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN03-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF32_HCOR_001
+ mapping:
+ - [B2, SXF32_HCOR_001.sextupole]
+ - [B0, SXF32_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCF.17/strength
+ - AN03-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_23_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_23_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_23_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_23_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN03-AR/EM-OCT/OC.06/strength
+ - AN03-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN03-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD32_VCOR_001
+ mapping:
+ - [B2, SXD32_VCOR_001.sextupole]
+ - [A0, SXD32_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN03-AR/EM-SX/SCD.18/strength
+ - AN03-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_025
+ x_pos: AN03-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN03-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_003
+ mapping:
+ - [B2, SH9_COR_003.sextupole]
+ - [B0, SH9_COR_003.hcorrector]
+ - [A0, SH9_COR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN03-AR/EM-SX/SHD.04/strength
+ - AN03-AR/EM-COR/SHD.04-CDLH.09/strength
+ - AN03-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_032
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN03-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_033
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN03-AR/EM-COR/CQLN.21/strength
+- type: pyaml.bpm.bpm
+ name: BPM_026
+ x_pos: AN03-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN03-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_003
+ mapping:
+ - [B2, SH7_COR_003.sextupole]
+ - [B0, SH7_COR_003.hcorrector]
+ - [A0, SH7_COR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN03-AR/EM-SX/SHF.06/strength
+ - AN03-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN03-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_24_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_24_QT_001.octupole]
+ - [B1, OH7_QCORROCT_24_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_24_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN03-AR/EM-OCT/OH.02/strength
+ - AN03-AR/EM-COR/OH.02-CQLN.22/strength
+ - AN03-AR/EM-COR/OH.02-CQLT.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_027
+ x_pos: AN04-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN04-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_028
+ x_pos: AN04-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN04-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_25_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_25_QT_001.octupole]
+ - [B1, OH7_QCORROCT_25_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_25_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN04-AR/EM-OCT/OH.01/strength
+ - AN04-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN04-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_004
+ mapping:
+ - [B2, SH7_COR_004.sextupole]
+ - [B0, SH7_COR_004.hcorrector]
+ - [A0, SH7_COR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN04-AR/EM-SX/SHF.01/strength
+ - AN04-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN04-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_029
+ x_pos: AN04-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN04-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_034
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN04-AR/EM-COR/CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN04-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_035
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN04-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_004
+ mapping:
+ - [B2, SH9_COR_004.sextupole]
+ - [B0, SH9_COR_004.hcorrector]
+ - [A0, SH9_COR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN04-AR/EM-SX/SHD.03/strength
+ - AN04-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN04-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD41_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN04-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_26_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_26_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_26_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_26_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN04-AR/EM-OCT/OC.01/strength
+ - AN04-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN04-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF41_HCOR_001
+ mapping:
+ - [B2, SXF41_HCOR_001.sextupole]
+ - [B0, SXF41_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN04-AR/EM-SX/SCF.02/strength
+ - AN04-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_030
+ x_pos: AN04-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN04-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD41_VCOR_001
+ mapping:
+ - [B2, SXD41_VCOR_001.sextupole]
+ - [A0, SXD41_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN04-AR/EM-SX/SCD.03/strength
+ - AN04-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_036
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN04-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_037
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN04-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD4_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN04-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF4_HCOR_001
+ mapping:
+ - [B2, SXF4_HCOR_001.sextupole]
+ - [B0, SXF4_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN04-AR/EM-SX/SCF.05/strength
+ - AN04-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_27_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_27_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_27_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_27_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN04-AR/EM-OCT/OC.02/strength
+ - AN04-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN04-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_031
+ x_pos: AN04-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN04-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD4_VCOR_001
+ mapping:
+ - [B2, SXD4_VCOR_001.sextupole]
+ - [A0, SXD4_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN04-AR/EM-SX/SCD.06/strength
+ - AN04-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_038
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN04-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_039
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN04-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD42_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN04-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF42_HCOR_001
+ mapping:
+ - [B2, SXF42_HCOR_001.sextupole]
+ - [B0, SXF42_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN04-AR/EM-SX/SCF.08/strength
+ - AN04-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_28_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_28_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_28_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_28_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN04-AR/EM-OCT/OC.03/strength
+ - AN04-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN04-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD42_VCOR_001
+ mapping:
+ - [B2, SXD42_VCOR_001.sextupole]
+ - [A0, SXD42_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN04-AR/EM-SX/SCD.09/strength
+ - AN04-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_032
+ x_pos: AN04-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN04-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH12_COR_001
+ mapping:
+ - [B2, SH12_COR_001.sextupole]
+ - [B0, SH12_COR_001.hcorrector]
+ - [A0, SH12_COR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN04-AR/EM-SX/SHD.04/strength
+ - AN04-AR/EM-COR/SHD.04-CDLH.06/strength
+ - AN04-AR/EM-COR/SHD.04-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_040
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN04-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.sextupole
+ name: SH11_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN04-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH11_QCORROCT_29_001
+ mapping:
+ - [B3, OH11_QCORROCT_29_001.octupole]
+ - [B1, OH11_QCORROCT_29_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN04-AR/EM-OCT/OH.02/strength
+ - AN04-AR/EM-COR/OH.02-CQLN.12/strength
+- type: pyaml.bpm.bpm
+ name: BPM_033
+ x_pos: AN04-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN04-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH10_COR_001
+ mapping:
+ - [B2, SH10_COR_001.sextupole]
+ - [B0, SH10_COR_001.hcorrector]
+ - [A0, SH10_COR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN04-AR/EM-SX/SHF.06/strength
+ - AN04-AR/EM-COR/SHF.06-CDLH.07/strength
+ - AN04-AR/EM-COR/SHF.06-CDLV.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH10_QCORROCT_30_QT_001
+ mapping:
+ - [B3, OH10_QCORROCT_30_QT_001.octupole]
+ - [B1, OH10_QCORROCT_30_QT_001.quadrupole]
+ - [A1, OH10_QCORROCT_30_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN04-AR/EM-OCT/OH.03/strength
+ - AN04-AR/EM-COR/OH.03-CQLN.13/strength
+ - AN04-AR/EM-COR/OH.03-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_034
+ x_pos: AN05-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN05-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_035
+ x_pos: AN05-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN05-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH10_QCORROCT_31_QT_001
+ mapping:
+ - [B3, OH10_QCORROCT_31_QT_001.octupole]
+ - [B1, OH10_QCORROCT_31_QT_001.quadrupole]
+ - [A1, OH10_QCORROCT_31_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OH.01/strength
+ - AN05-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN05-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH10_COR_002
+ mapping:
+ - [B2, SH10_COR_002.sextupole]
+ - [B0, SH10_COR_002.hcorrector]
+ - [A0, SH10_COR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN05-AR/EM-SX/SHF.01/strength
+ - AN05-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN05-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_036
+ x_pos: AN05-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN05-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH11_QCORROCT_32_001
+ mapping:
+ - [B3, OH11_QCORROCT_32_001.octupole]
+ - [B1, OH11_QCORROCT_32_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OH.02/strength
+ - AN05-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH11_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN05-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_041
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH12_COR_002
+ mapping:
+ - [B2, SH12_COR_002.sextupole]
+ - [B0, SH12_COR_002.hcorrector]
+ - [A0, SH12_COR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN05-AR/EM-SX/SHD.03/strength
+ - AN05-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN05-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD51_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN05-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_33_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_33_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_33_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_33_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OC.01/strength
+ - AN05-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN05-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF51_HCOR_001
+ mapping:
+ - [B2, SXF51_HCOR_001.sextupole]
+ - [B0, SXF51_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCF.02/strength
+ - AN05-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_037
+ x_pos: AN05-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN05-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD51_VCOR_001
+ mapping:
+ - [B2, SXD51_VCOR_001.sextupole]
+ - [A0, SXD51_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCD.03/strength
+ - AN05-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_042
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_043
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN05-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_34_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_34_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_34_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_34_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OC.02/strength
+ - AN05-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN05-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF5_HCOR_001
+ mapping:
+ - [B2, SXF5_HCOR_001.sextupole]
+ - [B0, SXF5_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCF.05/strength
+ - AN05-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_038
+ x_pos: AN05-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN05-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_001
+ mapping:
+ - [B2, SXD5_VCOR_001.sextupole]
+ - [A0, SXD5_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCD.06/strength
+ - AN05-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_044
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_045
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN05-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_35_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_35_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_35_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_35_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OC.03/strength
+ - AN05-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN05-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF53_HCOR_001
+ mapping:
+ - [B2, SXF53_HCOR_001.sextupole]
+ - [B0, SXF53_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCF.08/strength
+ - AN05-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_039
+ x_pos: AN05-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN05-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD53_VCOR_001
+ mapping:
+ - [B2, SXD53_VCOR_001.sextupole]
+ - [A0, SXD53_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCD.09/strength
+ - AN05-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_046
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_047
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD53_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN05-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF53_HCOR_002
+ mapping:
+ - [B2, SXF53_HCOR_002.sextupole]
+ - [B0, SXF53_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCF.11/strength
+ - AN05-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_36_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_36_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_36_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_36_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OC.04/strength
+ - AN05-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN05-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_040
+ x_pos: AN05-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN05-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_002
+ mapping:
+ - [B2, SXD5_VCOR_002.sextupole]
+ - [A0, SXD5_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCD.12/strength
+ - AN05-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_048
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_049
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN05-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF5_HCOR_002
+ mapping:
+ - [B2, SXF5_HCOR_002.sextupole]
+ - [B0, SXF5_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCF.14/strength
+ - AN05-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_37_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_37_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_37_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_37_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OC.05/strength
+ - AN05-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN05-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_041
+ x_pos: AN05-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN05-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_003
+ mapping:
+ - [B2, SXD5_VCOR_003.sextupole]
+ - [A0, SXD5_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCD.15/strength
+ - AN05-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_050
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_051
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD52_001
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN05-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF52_HCOR_001
+ mapping:
+ - [B2, SXF52_HCOR_001.sextupole]
+ - [B0, SXF52_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCF.17/strength
+ - AN05-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_38_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_38_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_38_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_38_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OC.06/strength
+ - AN05-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN05-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD52_VCOR_001
+ mapping:
+ - [B2, SXD52_VCOR_001.sextupole]
+ - [A0, SXD52_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SCD.18/strength
+ - AN05-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_042
+ x_pos: AN05-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN05-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_052
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN05-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH15_VCOR_001
+ mapping:
+ - [B2, SH15_VCOR_001.sextupole]
+ - [A0, SH15_VCOR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SHD.04/strength
+ - AN05-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.bpm.bpm
+ name: BPM_043
+ x_pos: AN05-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN05-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH14_HCOR_001
+ mapping:
+ - [B2, SH14_HCOR_001.sextupole]
+ - [B0, SH14_HCOR_001.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN05-AR/EM-SX/SHD.05/strength
+ - AN05-AR/EM-COR/SHD.05-CDLH.09/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH14_QCORROCT_39_001
+ mapping:
+ - [B3, OH14_QCORROCT_39_001.octupole]
+ - [B1, OH14_QCORROCT_39_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OH.03/strength
+ - AN05-AR/EM-COR/OH.03-CQLN.21/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH13_COR_001
+ mapping:
+ - [B2, SH13_COR_001.sextupole]
+ - [B0, SH13_COR_001.hcorrector]
+ - [A0, SH13_COR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN05-AR/EM-SX/SHF.06/strength
+ - AN05-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN05-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH13_QCORROCT_40_QT_001
+ mapping:
+ - [B3, OH13_QCORROCT_40_QT_001.octupole]
+ - [B1, OH13_QCORROCT_40_QT_001.quadrupole]
+ - [A1, OH13_QCORROCT_40_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN05-AR/EM-OCT/OH.04/strength
+ - AN05-AR/EM-COR/OH.04-CQLN.22/strength
+ - AN05-AR/EM-COR/OH.04-CQLT.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_044
+ x_pos: AN06-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN06-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_045
+ x_pos: AN06-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN06-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH16_QCORROCT_41_001
+ mapping:
+ - [B3, OH16_QCORROCT_41_001.octupole]
+ - [B1, OH16_QCORROCT_41_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN06-SD/EM-OCT/OH.01/strength
+ - AN06-SD/EM-COR/OH.01-CQLN.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH16_COR_001
+ mapping:
+ - [B2, SH16_COR_001.sextupole]
+ - [B0, SH16_COR_001.hcorrector]
+ - [A0, SH16_COR_001.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN06-SD/EM-SX/SHD.01/strength
+ - AN06-SD/EM-COR/SHD.01-CDLH.01/strength
+ - AN06-SD/EM-COR/SHD.01-CDLV.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH16_COR_002
+ mapping:
+ - [B2, SH16_COR_002.sextupole]
+ - [B0, SH16_COR_002.hcorrector]
+ - [A0, SH16_COR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN06-SD/EM-SX/SHD.02/strength
+ - AN06-SD/EM-COR/SHD.02-CDLH.02/strength
+ - AN06-SD/EM-COR/SHD.02-CDLV.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH16_QCORROCT_42_001
+ mapping:
+ - [B3, OH16_QCORROCT_42_001.octupole]
+ - [B1, OH16_QCORROCT_42_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN06-SD/EM-OCT/OH.02/strength
+ - AN06-SD/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.bpm.bpm
+ name: BPM_046
+ x_pos: AN06-SD/DG-EPOS/BPM.03/x_pos
+ y_pos: AN06-SD/DG-EPOS/BPM.03/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_047
+ x_pos: AN06-SD/DG-EPOS/BPM.04/x_pos
+ y_pos: AN06-SD/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH13_QCORROCT_43_QT_001
+ mapping:
+ - [B3, OH13_QCORROCT_43_QT_001.octupole]
+ - [B1, OH13_QCORROCT_43_QT_001.quadrupole]
+ - [A1, OH13_QCORROCT_43_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OH.01/strength
+ - AN06-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN06-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH13_COR_002
+ mapping:
+ - [B2, SH13_COR_002.sextupole]
+ - [B0, SH13_COR_002.hcorrector]
+ - [A0, SH13_COR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN06-AR/EM-SX/SHF.01/strength
+ - AN06-AR/EM-COR/SHF.01-CDLH.03/strength
+ - AN06-AR/EM-COR/SHF.01-CDLV.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH14_QCORROCT_44_001
+ mapping:
+ - [B3, OH14_QCORROCT_44_001.octupole]
+ - [B1, OH14_QCORROCT_44_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OH.02/strength
+ - AN06-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH14_HCOR_002
+ mapping:
+ - [B2, SH14_HCOR_002.sextupole]
+ - [B0, SH14_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SHD.02/strength
+ - AN06-AR/EM-COR/SHD.02-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_048
+ x_pos: AN06-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN06-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH15_VCOR_002
+ mapping:
+ - [B2, SH15_VCOR_002.sextupole]
+ - [A0, SH15_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SHD.03/strength
+ - AN06-AR/EM-COR/SHD.03-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_053
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.sextupole
+ name: SXD52_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN06-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_45_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_45_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_45_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_45_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OC.01/strength
+ - AN06-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN06-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF52_HCOR_002
+ mapping:
+ - [B2, SXF52_HCOR_002.sextupole]
+ - [B0, SXF52_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCF.02/strength
+ - AN06-AR/EM-COR/SCF.02-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_049
+ x_pos: AN06-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN06-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD52_VCOR_002
+ mapping:
+ - [B2, SXD52_VCOR_002.sextupole]
+ - [A0, SXD52_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCD.03/strength
+ - AN06-AR/EM-COR/SCD.03-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_054
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_055
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN06-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_46_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_46_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_46_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_46_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OC.02/strength
+ - AN06-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN06-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF5_HCOR_003
+ mapping:
+ - [B2, SXF5_HCOR_003.sextupole]
+ - [B0, SXF5_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCF.05/strength
+ - AN06-AR/EM-COR/SCF.05-CDLH.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_050
+ x_pos: AN06-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN06-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_004
+ mapping:
+ - [B2, SXD5_VCOR_004.sextupole]
+ - [A0, SXD5_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCD.06/strength
+ - AN06-AR/EM-COR/SCD.06-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_056
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_057
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_005
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN06-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_47_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_47_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_47_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_47_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OC.03/strength
+ - AN06-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN06-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF53_HCOR_003
+ mapping:
+ - [B2, SXF53_HCOR_003.sextupole]
+ - [B0, SXF53_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCF.08/strength
+ - AN06-AR/EM-COR/SCF.08-CDLH.07/strength
+- type: pyaml.bpm.bpm
+ name: BPM_051
+ x_pos: AN06-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN06-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD53_VCOR_002
+ mapping:
+ - [B2, SXD53_VCOR_002.sextupole]
+ - [A0, SXD53_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCD.09/strength
+ - AN06-AR/EM-COR/SCD.09-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_058
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_059
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD53_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN06-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF53_HCOR_004
+ mapping:
+ - [B2, SXF53_HCOR_004.sextupole]
+ - [B0, SXF53_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCF.11/strength
+ - AN06-AR/EM-COR/SCF.11-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_48_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_48_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_48_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_48_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OC.04/strength
+ - AN06-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN06-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_052
+ x_pos: AN06-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN06-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_005
+ mapping:
+ - [B2, SXD5_VCOR_005.sextupole]
+ - [A0, SXD5_VCOR_005.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCD.12/strength
+ - AN06-AR/EM-COR/SCD.12-CDLV.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_060
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_061
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_006
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN06-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF5_HCOR_004
+ mapping:
+ - [B2, SXF5_HCOR_004.sextupole]
+ - [B0, SXF5_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCF.14/strength
+ - AN06-AR/EM-COR/SCF.14-CDLH.09/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_49_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_49_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_49_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_49_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OC.05/strength
+ - AN06-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN06-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_053
+ x_pos: AN06-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN06-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_006
+ mapping:
+ - [B2, SXD5_VCOR_006.sextupole]
+ - [A0, SXD5_VCOR_006.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCD.15/strength
+ - AN06-AR/EM-COR/SCD.15-CDLV.09/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_062
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_063
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD51_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN06-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF51_HCOR_002
+ mapping:
+ - [B2, SXF51_HCOR_002.sextupole]
+ - [B0, SXF51_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCF.17/strength
+ - AN06-AR/EM-COR/SCF.17-CDLH.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_50_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_50_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_50_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_50_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OC.06/strength
+ - AN06-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN06-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD51_VCOR_002
+ mapping:
+ - [B2, SXD51_VCOR_002.sextupole]
+ - [A0, SXD51_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN06-AR/EM-SX/SCD.18/strength
+ - AN06-AR/EM-COR/SCD.18-CDLV.10/strength
+- type: pyaml.bpm.bpm
+ name: BPM_054
+ x_pos: AN06-AR/DG-EPOS/BPM.11/x_pos
+ y_pos: AN06-AR/DG-EPOS/BPM.11/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH12_COR_003
+ mapping:
+ - [B2, SH12_COR_003.sextupole]
+ - [B0, SH12_COR_003.hcorrector]
+ - [A0, SH12_COR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN06-AR/EM-SX/SHD.04/strength
+ - AN06-AR/EM-COR/SHD.04-CDLH.11/strength
+ - AN06-AR/EM-COR/SHD.04-CDLV.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_064
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN06-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.sextupole
+ name: SH11_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN06-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH11_QCORROCT_51_001
+ mapping:
+ - [B3, OH11_QCORROCT_51_001.octupole]
+ - [B1, OH11_QCORROCT_51_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OH.03/strength
+ - AN06-AR/EM-COR/OH.03-CQLN.21/strength
+- type: pyaml.bpm.bpm
+ name: BPM_055
+ x_pos: AN06-AR/DG-EPOS/BPM.12/x_pos
+ y_pos: AN06-AR/DG-EPOS/BPM.12/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH10_COR_003
+ mapping:
+ - [B2, SH10_COR_003.sextupole]
+ - [B0, SH10_COR_003.hcorrector]
+ - [A0, SH10_COR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN06-AR/EM-SX/SHF.06/strength
+ - AN06-AR/EM-COR/SHF.06-CDLH.12/strength
+ - AN06-AR/EM-COR/SHF.06-CDLV.12/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH10_QCORROCT_52_QT_001
+ mapping:
+ - [B3, OH10_QCORROCT_52_QT_001.octupole]
+ - [B1, OH10_QCORROCT_52_QT_001.quadrupole]
+ - [A1, OH10_QCORROCT_52_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN06-AR/EM-OCT/OH.04/strength
+ - AN06-AR/EM-COR/OH.04-CQLN.22/strength
+ - AN06-AR/EM-COR/OH.04-CQLT.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_056
+ x_pos: AN07-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN07-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_057
+ x_pos: AN07-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN07-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH10_QCORROCT_53_QT_001
+ mapping:
+ - [B3, OH10_QCORROCT_53_QT_001.octupole]
+ - [B1, OH10_QCORROCT_53_QT_001.quadrupole]
+ - [A1, OH10_QCORROCT_53_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN07-AR/EM-OCT/OH.01/strength
+ - AN07-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN07-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH10_COR_004
+ mapping:
+ - [B2, SH10_COR_004.sextupole]
+ - [B0, SH10_COR_004.hcorrector]
+ - [A0, SH10_COR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN07-AR/EM-SX/SHF.01/strength
+ - AN07-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN07-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_058
+ x_pos: AN07-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN07-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH11_QCORROCT_54_001
+ mapping:
+ - [B3, OH11_QCORROCT_54_001.octupole]
+ - [B1, OH11_QCORROCT_54_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN07-AR/EM-OCT/OH.02/strength
+ - AN07-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH11_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN07-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_065
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN07-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH12_COR_004
+ mapping:
+ - [B2, SH12_COR_004.sextupole]
+ - [B0, SH12_COR_004.hcorrector]
+ - [A0, SH12_COR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN07-AR/EM-SX/SHD.03/strength
+ - AN07-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN07-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD42_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN07-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_55_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_55_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_55_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_55_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN07-AR/EM-OCT/OC.01/strength
+ - AN07-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN07-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF42_HCOR_002
+ mapping:
+ - [B2, SXF42_HCOR_002.sextupole]
+ - [B0, SXF42_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN07-AR/EM-SX/SCF.02/strength
+ - AN07-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_059
+ x_pos: AN07-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN07-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD42_VCOR_002
+ mapping:
+ - [B2, SXD42_VCOR_002.sextupole]
+ - [A0, SXD42_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN07-AR/EM-SX/SCD.03/strength
+ - AN07-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_066
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN07-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_067
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN07-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD4_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN07-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_56_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_56_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_56_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_56_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN07-AR/EM-OCT/OC.02/strength
+ - AN07-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN07-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF4_HCOR_002
+ mapping:
+ - [B2, SXF4_HCOR_002.sextupole]
+ - [B0, SXF4_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN07-AR/EM-SX/SCF.05/strength
+ - AN07-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_060
+ x_pos: AN07-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN07-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD4_VCOR_002
+ mapping:
+ - [B2, SXD4_VCOR_002.sextupole]
+ - [A0, SXD4_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN07-AR/EM-SX/SCD.06/strength
+ - AN07-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_068
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN07-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_069
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN07-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD41_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN07-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF41_HCOR_002
+ mapping:
+ - [B2, SXF41_HCOR_002.sextupole]
+ - [B0, SXF41_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN07-AR/EM-SX/SCF.08/strength
+ - AN07-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_57_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_57_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_57_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_57_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN07-AR/EM-OCT/OC.03/strength
+ - AN07-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN07-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD41_VCOR_002
+ mapping:
+ - [B2, SXD41_VCOR_002.sextupole]
+ - [A0, SXD41_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN07-AR/EM-SX/SCD.09/strength
+ - AN07-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_061
+ x_pos: AN07-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN07-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_005
+ mapping:
+ - [B2, SH9_COR_005.sextupole]
+ - [B0, SH9_COR_005.hcorrector]
+ - [A0, SH9_COR_005.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN07-AR/EM-SX/SHD.04/strength
+ - AN07-AR/EM-COR/SHD.04-CDLH.06/strength
+ - AN07-AR/EM-COR/SHD.04-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_070
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN07-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_005
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN07-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_071
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN07-AR/EM-COR/CQLN.12/strength
+- type: pyaml.bpm.bpm
+ name: BPM_062
+ x_pos: AN07-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN07-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_005
+ mapping:
+ - [B2, SH7_COR_005.sextupole]
+ - [B0, SH7_COR_005.hcorrector]
+ - [A0, SH7_COR_005.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN07-AR/EM-SX/SHF.06/strength
+ - AN07-AR/EM-COR/SHF.06-CDLH.07/strength
+ - AN07-AR/EM-COR/SHF.06-CDLV.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_58_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_58_QT_001.octupole]
+ - [B1, OH7_QCORROCT_58_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_58_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN07-AR/EM-OCT/OH.03/strength
+ - AN07-AR/EM-COR/OH.03-CQLN.13/strength
+ - AN07-AR/EM-COR/OH.03-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_063
+ x_pos: AN08-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN08-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_064
+ x_pos: AN08-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN08-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_59_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_59_QT_001.octupole]
+ - [B1, OH7_QCORROCT_59_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_59_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN08-AR/EM-OCT/OH.01/strength
+ - AN08-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN08-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_006
+ mapping:
+ - [B2, SH7_COR_006.sextupole]
+ - [B0, SH7_COR_006.hcorrector]
+ - [A0, SH7_COR_006.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN08-AR/EM-SX/SHF.01/strength
+ - AN08-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN08-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_065
+ x_pos: AN08-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN08-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_072
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_006
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN08-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_073
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_006
+ mapping:
+ - [B2, SH9_COR_006.sextupole]
+ - [B0, SH9_COR_006.hcorrector]
+ - [A0, SH9_COR_006.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN08-AR/EM-SX/SHD.03/strength
+ - AN08-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN08-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD32_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN08-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_60_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_60_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_60_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_60_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN08-AR/EM-OCT/OC.01/strength
+ - AN08-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN08-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF32_HCOR_002
+ mapping:
+ - [B2, SXF32_HCOR_002.sextupole]
+ - [B0, SXF32_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCF.02/strength
+ - AN08-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_066
+ x_pos: AN08-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN08-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD32_VCOR_002
+ mapping:
+ - [B2, SXD32_VCOR_002.sextupole]
+ - [A0, SXD32_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCD.03/strength
+ - AN08-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_074
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_075
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN08-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_61_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_61_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_61_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_61_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN08-AR/EM-OCT/OC.02/strength
+ - AN08-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN08-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF3_HCOR_003
+ mapping:
+ - [B2, SXF3_HCOR_003.sextupole]
+ - [B0, SXF3_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCF.05/strength
+ - AN08-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_067
+ x_pos: AN08-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN08-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_004
+ mapping:
+ - [B2, SXD3_VCOR_004.sextupole]
+ - [A0, SXD3_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCD.06/strength
+ - AN08-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_076
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_077
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_005
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN08-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_62_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_62_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_62_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_62_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN08-AR/EM-OCT/OC.03/strength
+ - AN08-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN08-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF33_HCOR_003
+ mapping:
+ - [B2, SXF33_HCOR_003.sextupole]
+ - [B0, SXF33_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCF.08/strength
+ - AN08-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_068
+ x_pos: AN08-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN08-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD33_VCOR_002
+ mapping:
+ - [B2, SXD33_VCOR_002.sextupole]
+ - [A0, SXD33_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCD.09/strength
+ - AN08-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_078
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_079
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD33_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN08-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF33_HCOR_004
+ mapping:
+ - [B2, SXF33_HCOR_004.sextupole]
+ - [B0, SXF33_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCF.11/strength
+ - AN08-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_63_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_63_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_63_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_63_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN08-AR/EM-OCT/OC.04/strength
+ - AN08-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN08-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_069
+ x_pos: AN08-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN08-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_005
+ mapping:
+ - [B2, SXD3_VCOR_005.sextupole]
+ - [A0, SXD3_VCOR_005.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCD.12/strength
+ - AN08-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_080
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_081
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_006
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN08-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF3_HCOR_004
+ mapping:
+ - [B2, SXF3_HCOR_004.sextupole]
+ - [B0, SXF3_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCF.14/strength
+ - AN08-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_64_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_64_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_64_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_64_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN08-AR/EM-OCT/OC.05/strength
+ - AN08-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN08-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_070
+ x_pos: AN08-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN08-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_006
+ mapping:
+ - [B2, SXD3_VCOR_006.sextupole]
+ - [A0, SXD3_VCOR_006.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCD.15/strength
+ - AN08-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_082
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_083
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD31_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN08-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF31_HCOR_002
+ mapping:
+ - [B2, SXF31_HCOR_002.sextupole]
+ - [B0, SXF31_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCF.17/strength
+ - AN08-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_65_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_65_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_65_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_65_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN08-AR/EM-OCT/OC.06/strength
+ - AN08-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN08-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD31_VCOR_002
+ mapping:
+ - [B2, SXD31_VCOR_002.sextupole]
+ - [A0, SXD31_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN08-AR/EM-SX/SCD.18/strength
+ - AN08-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_071
+ x_pos: AN08-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN08-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_007
+ mapping:
+ - [B2, SH9_COR_007.sextupole]
+ - [B0, SH9_COR_007.hcorrector]
+ - [A0, SH9_COR_007.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN08-AR/EM-SX/SHD.04/strength
+ - AN08-AR/EM-COR/SHD.04-CDLH.09/strength
+ - AN08-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_084
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_007
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN08-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_085
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN08-AR/EM-COR/CQLN.21/strength
+- type: pyaml.bpm.bpm
+ name: BPM_072
+ x_pos: AN08-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN08-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_007
+ mapping:
+ - [B2, SH7_COR_007.sextupole]
+ - [B0, SH7_COR_007.hcorrector]
+ - [A0, SH7_COR_007.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN08-AR/EM-SX/SHF.06/strength
+ - AN08-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN08-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_66_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_66_QT_001.octupole]
+ - [B1, OH7_QCORROCT_66_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_66_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN08-AR/EM-OCT/OH.02/strength
+ - AN08-AR/EM-COR/OH.02-CQLN.22/strength
+ - AN08-AR/EM-COR/OH.02-CQLT.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_073
+ x_pos: AN09-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN09-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_074
+ x_pos: AN09-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN09-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_67_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_67_QT_001.octupole]
+ - [B1, OH7_QCORROCT_67_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_67_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN09-AR/EM-OCT/OH.01/strength
+ - AN09-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN09-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_008
+ mapping:
+ - [B2, SH7_COR_008.sextupole]
+ - [B0, SH7_COR_008.hcorrector]
+ - [A0, SH7_COR_008.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN09-AR/EM-SX/SHF.01/strength
+ - AN09-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN09-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_075
+ x_pos: AN09-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN09-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_086
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN09-AR/EM-COR/CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_008
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN09-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_087
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN09-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_008
+ mapping:
+ - [B2, SH9_COR_008.sextupole]
+ - [B0, SH9_COR_008.hcorrector]
+ - [A0, SH9_COR_008.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN09-AR/EM-SX/SHD.03/strength
+ - AN09-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN09-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD22_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN09-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_68_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_68_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_68_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_68_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN09-AR/EM-OCT/OC.01/strength
+ - AN09-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN09-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF22_HCOR_002
+ mapping:
+ - [B2, SXF22_HCOR_002.sextupole]
+ - [B0, SXF22_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN09-AR/EM-SX/SCF.02/strength
+ - AN09-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_076
+ x_pos: AN09-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN09-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD22_VCOR_002
+ mapping:
+ - [B2, SXD22_VCOR_002.sextupole]
+ - [A0, SXD22_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN09-AR/EM-SX/SCD.03/strength
+ - AN09-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_088
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN09-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_089
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN09-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD2_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN09-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF2_HCOR_002
+ mapping:
+ - [B2, SXF2_HCOR_002.sextupole]
+ - [B0, SXF2_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN09-AR/EM-SX/SCF.05/strength
+ - AN09-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_69_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_69_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_69_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_69_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN09-AR/EM-OCT/OC.02/strength
+ - AN09-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN09-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_077
+ x_pos: AN09-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN09-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD2_VCOR_002
+ mapping:
+ - [B2, SXD2_VCOR_002.sextupole]
+ - [A0, SXD2_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN09-AR/EM-SX/SCD.06/strength
+ - AN09-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_090
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN09-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_091
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN09-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD21_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN09-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF21_HCOR_002
+ mapping:
+ - [B2, SXF21_HCOR_002.sextupole]
+ - [B0, SXF21_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN09-AR/EM-SX/SCF.08/strength
+ - AN09-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_70_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_70_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_70_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_70_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN09-AR/EM-OCT/OC.03/strength
+ - AN09-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN09-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD21_VCOR_002
+ mapping:
+ - [B2, SXD21_VCOR_002.sextupole]
+ - [A0, SXD21_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN09-AR/EM-SX/SCD.09/strength
+ - AN09-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_078
+ x_pos: AN09-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN09-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH6_COR_003
+ mapping:
+ - [B2, SH6_COR_003.sextupole]
+ - [B0, SH6_COR_003.hcorrector]
+ - [A0, SH6_COR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN09-AR/EM-SX/SHD.04/strength
+ - AN09-AR/EM-COR/SHD.04-CDLH.06/strength
+ - AN09-AR/EM-COR/SHD.04-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_092
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN09-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.sextupole
+ name: SH5_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN09-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH5_QCORROCT_71_001
+ mapping:
+ - [B3, OH5_QCORROCT_71_001.octupole]
+ - [B1, OH5_QCORROCT_71_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN09-AR/EM-OCT/OH.02/strength
+ - AN09-AR/EM-COR/OH.02-CQLN.12/strength
+- type: pyaml.bpm.bpm
+ name: BPM_079
+ x_pos: AN09-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN09-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH4_COR_003
+ mapping:
+ - [B2, SH4_COR_003.sextupole]
+ - [B0, SH4_COR_003.hcorrector]
+ - [A0, SH4_COR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN09-AR/EM-SX/SHF.06/strength
+ - AN09-AR/EM-COR/SHF.06-CDLH.07/strength
+ - AN09-AR/EM-COR/SHF.06-CDLV.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH4_QCORROCT_72_QT_001
+ mapping:
+ - [B3, OH4_QCORROCT_72_QT_001.octupole]
+ - [B1, OH4_QCORROCT_72_QT_001.quadrupole]
+ - [A1, OH4_QCORROCT_72_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN09-AR/EM-OCT/OH.03/strength
+ - AN09-AR/EM-COR/OH.03-CQLN.13/strength
+ - AN09-AR/EM-COR/OH.03-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_080
+ x_pos: AN10-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN10-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_081
+ x_pos: AN10-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN10-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH4_QCORROCT_73_QT_001
+ mapping:
+ - [B3, OH4_QCORROCT_73_QT_001.octupole]
+ - [B1, OH4_QCORROCT_73_QT_001.quadrupole]
+ - [A1, OH4_QCORROCT_73_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OH.01/strength
+ - AN10-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN10-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH4_COR_004
+ mapping:
+ - [B2, SH4_COR_004.sextupole]
+ - [B0, SH4_COR_004.hcorrector]
+ - [A0, SH4_COR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN10-AR/EM-SX/SHF.01/strength
+ - AN10-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN10-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_082
+ x_pos: AN10-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN10-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH5_QCORROCT_74_001
+ mapping:
+ - [B3, OH5_QCORROCT_74_001.octupole]
+ - [B1, OH5_QCORROCT_74_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OH.02/strength
+ - AN10-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH5_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN10-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_093
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH6_COR_004
+ mapping:
+ - [B2, SH6_COR_004.sextupole]
+ - [B0, SH6_COR_004.hcorrector]
+ - [A0, SH6_COR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN10-AR/EM-SX/SHD.03/strength
+ - AN10-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN10-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD12_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN10-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_75_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_75_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_75_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_75_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OC.01/strength
+ - AN10-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN10-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF12_HCOR_002
+ mapping:
+ - [B2, SXF12_HCOR_002.sextupole]
+ - [B0, SXF12_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCF.02/strength
+ - AN10-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_083
+ x_pos: AN10-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN10-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD12_VCOR_002
+ mapping:
+ - [B2, SXD12_VCOR_002.sextupole]
+ - [A0, SXD12_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCD.03/strength
+ - AN10-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_094
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_095
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN10-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_76_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_76_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_76_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_76_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OC.02/strength
+ - AN10-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN10-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF1_HCOR_003
+ mapping:
+ - [B2, SXF1_HCOR_003.sextupole]
+ - [B0, SXF1_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCF.05/strength
+ - AN10-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_084
+ x_pos: AN10-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN10-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_004
+ mapping:
+ - [B2, SXD1_VCOR_004.sextupole]
+ - [A0, SXD1_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCD.06/strength
+ - AN10-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_096
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_097
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_005
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN10-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_77_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_77_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_77_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_77_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OC.03/strength
+ - AN10-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN10-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF13_HCOR_003
+ mapping:
+ - [B2, SXF13_HCOR_003.sextupole]
+ - [B0, SXF13_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCF.08/strength
+ - AN10-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_085
+ x_pos: AN10-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN10-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD13_VCOR_002
+ mapping:
+ - [B2, SXD13_VCOR_002.sextupole]
+ - [A0, SXD13_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCD.09/strength
+ - AN10-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_098
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_099
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD13_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN10-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF13_HCOR_004
+ mapping:
+ - [B2, SXF13_HCOR_004.sextupole]
+ - [B0, SXF13_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCF.11/strength
+ - AN10-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_78_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_78_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_78_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_78_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OC.04/strength
+ - AN10-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN10-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_086
+ x_pos: AN10-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN10-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_005
+ mapping:
+ - [B2, SXD1_VCOR_005.sextupole]
+ - [A0, SXD1_VCOR_005.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCD.12/strength
+ - AN10-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_100
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_101
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_006
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN10-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF1_HCOR_004
+ mapping:
+ - [B2, SXF1_HCOR_004.sextupole]
+ - [B0, SXF1_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCF.14/strength
+ - AN10-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_79_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_79_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_79_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_79_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OC.05/strength
+ - AN10-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN10-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_087
+ x_pos: AN10-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN10-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_006
+ mapping:
+ - [B2, SXD1_VCOR_006.sextupole]
+ - [A0, SXD1_VCOR_006.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCD.15/strength
+ - AN10-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_102
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_103
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD11_002
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN10-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF11_HCOR_002
+ mapping:
+ - [B2, SXF11_HCOR_002.sextupole]
+ - [B0, SXF11_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCF.17/strength
+ - AN10-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_80_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_80_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_80_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_80_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OC.06/strength
+ - AN10-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN10-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD11_VCOR_002
+ mapping:
+ - [B2, SXD11_VCOR_002.sextupole]
+ - [A0, SXD11_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SCD.18/strength
+ - AN10-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_088
+ x_pos: AN10-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN10-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_104
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN10-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3_VCOR_002
+ mapping:
+ - [B2, SH3_VCOR_002.sextupole]
+ - [A0, SH3_VCOR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SHD.04/strength
+ - AN10-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.bpm.bpm
+ name: BPM_089
+ x_pos: AN10-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN10-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH2_QCORROCT_81_001
+ mapping:
+ - [B3, OH2_QCORROCT_81_001.octupole]
+ - [B1, OH2_QCORROCT_81_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OH.03/strength
+ - AN10-AR/EM-COR/OH.03-CQLN.21/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2_HCOR_002
+ mapping:
+ - [B2, SH2_HCOR_002.sextupole]
+ - [B0, SH2_HCOR_002.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN10-AR/EM-SX/SHD.05/strength
+ - AN10-AR/EM-COR/SHD.05-CDLH.09/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH1_QCORROCT_82_QT_001
+ mapping:
+ - [B3, OH1_QCORROCT_82_QT_001.octupole]
+ - [B1, OH1_QCORROCT_82_QT_001.quadrupole]
+ - [A1, OH1_QCORROCT_82_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN10-AR/EM-OCT/OH.04/strength
+ - AN10-AR/EM-COR/OH.04-CQLN.22/strength
+ - AN10-AR/EM-COR/OH.04-CQLT.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH1_COR_002
+ mapping:
+ - [B2, SH1_COR_002.sextupole]
+ - [B0, SH1_COR_002.hcorrector]
+ - [A0, SH1_COR_002.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN10-AR/EM-SX/SHF.06/strength
+ - AN10-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN10-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.bpm.bpm
+ name: BPM_090
+ x_pos: AN11-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN11-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_091
+ x_pos: AN11-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN11-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH1_COR_003
+ mapping:
+ - [B2, SH1_COR_003.sextupole]
+ - [B0, SH1_COR_003.hcorrector]
+ - [A0, SH1_COR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN11-AR/EM-SX/SHF.01/strength
+ - AN11-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN11-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH1_QCORROCT_83_QT_001
+ mapping:
+ - [B3, OH1_QCORROCT_83_QT_001.octupole]
+ - [B1, OH1_QCORROCT_83_QT_001.quadrupole]
+ - [A1, OH1_QCORROCT_83_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OH.01/strength
+ - AN11-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN11-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2_HCOR_003
+ mapping:
+ - [B2, SH2_HCOR_003.sextupole]
+ - [B0, SH2_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SHD.02/strength
+ - AN11-AR/EM-COR/SHD.02-CDLH.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH2_QCORROCT_84_001
+ mapping:
+ - [B3, OH2_QCORROCT_84_001.octupole]
+ - [B1, OH2_QCORROCT_84_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OH.02/strength
+ - AN11-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.bpm.bpm
+ name: BPM_092
+ x_pos: AN11-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN11-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH3_VCOR_003
+ mapping:
+ - [B2, SH3_VCOR_003.sextupole]
+ - [A0, SH3_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SHD.03/strength
+ - AN11-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_105
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.sextupole
+ name: SXD11_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN11-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_85_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_85_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_85_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_85_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OC.01/strength
+ - AN11-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN11-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF11_HCOR_003
+ mapping:
+ - [B2, SXF11_HCOR_003.sextupole]
+ - [B0, SXF11_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCF.02/strength
+ - AN11-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_093
+ x_pos: AN11-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN11-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD11_VCOR_003
+ mapping:
+ - [B2, SXD11_VCOR_003.sextupole]
+ - [A0, SXD11_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCD.03/strength
+ - AN11-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_106
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_107
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_007
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN11-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_86_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_86_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_86_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_86_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OC.02/strength
+ - AN11-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN11-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF1_HCOR_005
+ mapping:
+ - [B2, SXF1_HCOR_005.sextupole]
+ - [B0, SXF1_HCOR_005.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCF.05/strength
+ - AN11-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_094
+ x_pos: AN11-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN11-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_007
+ mapping:
+ - [B2, SXD1_VCOR_007.sextupole]
+ - [A0, SXD1_VCOR_007.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCD.06/strength
+ - AN11-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_108
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_109
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_008
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN11-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_87_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_87_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_87_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_87_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OC.03/strength
+ - AN11-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN11-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF13_HCOR_005
+ mapping:
+ - [B2, SXF13_HCOR_005.sextupole]
+ - [B0, SXF13_HCOR_005.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCF.08/strength
+ - AN11-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_095
+ x_pos: AN11-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN11-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD13_VCOR_003
+ mapping:
+ - [B2, SXD13_VCOR_003.sextupole]
+ - [A0, SXD13_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCD.09/strength
+ - AN11-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_110
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_111
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD13_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN11-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF13_HCOR_006
+ mapping:
+ - [B2, SXF13_HCOR_006.sextupole]
+ - [B0, SXF13_HCOR_006.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCF.11/strength
+ - AN11-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_88_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_88_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_88_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_88_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OC.04/strength
+ - AN11-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN11-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_096
+ x_pos: AN11-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN11-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_008
+ mapping:
+ - [B2, SXD1_VCOR_008.sextupole]
+ - [A0, SXD1_VCOR_008.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCD.12/strength
+ - AN11-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_112
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_113
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_009
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN11-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF1_HCOR_006
+ mapping:
+ - [B2, SXF1_HCOR_006.sextupole]
+ - [B0, SXF1_HCOR_006.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCF.14/strength
+ - AN11-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_89_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_89_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_89_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_89_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OC.05/strength
+ - AN11-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN11-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_097
+ x_pos: AN11-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN11-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_009
+ mapping:
+ - [B2, SXD1_VCOR_009.sextupole]
+ - [A0, SXD1_VCOR_009.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCD.15/strength
+ - AN11-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_114
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_115
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD12_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN11-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF12_HCOR_003
+ mapping:
+ - [B2, SXF12_HCOR_003.sextupole]
+ - [B0, SXF12_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCF.17/strength
+ - AN11-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_90_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_90_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_90_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_90_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OC.06/strength
+ - AN11-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN11-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD12_VCOR_003
+ mapping:
+ - [B2, SXD12_VCOR_003.sextupole]
+ - [A0, SXD12_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN11-AR/EM-SX/SCD.18/strength
+ - AN11-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_098
+ x_pos: AN11-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN11-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH6_COR_005
+ mapping:
+ - [B2, SH6_COR_005.sextupole]
+ - [B0, SH6_COR_005.hcorrector]
+ - [A0, SH6_COR_005.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN11-AR/EM-SX/SHD.04/strength
+ - AN11-AR/EM-COR/SHD.04-CDLH.09/strength
+ - AN11-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_116
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN11-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.sextupole
+ name: SH5_005
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN11-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH5_QCORROCT_91_001
+ mapping:
+ - [B3, OH5_QCORROCT_91_001.octupole]
+ - [B1, OH5_QCORROCT_91_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OH.03/strength
+ - AN11-AR/EM-COR/OH.03-CQLN.21/strength
+- type: pyaml.bpm.bpm
+ name: BPM_099
+ x_pos: AN11-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN11-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH4_COR_005
+ mapping:
+ - [B2, SH4_COR_005.sextupole]
+ - [B0, SH4_COR_005.hcorrector]
+ - [A0, SH4_COR_005.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN11-AR/EM-SX/SHF.06/strength
+ - AN11-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN11-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH4_QCORROCT_92_QT_001
+ mapping:
+ - [B3, OH4_QCORROCT_92_QT_001.octupole]
+ - [B1, OH4_QCORROCT_92_QT_001.quadrupole]
+ - [A1, OH4_QCORROCT_92_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN11-AR/EM-OCT/OH.04/strength
+ - AN11-AR/EM-COR/OH.04-CQLN.22/strength
+ - AN11-AR/EM-COR/OH.04-CQLT.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_100
+ x_pos: AN12-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN12-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_101
+ x_pos: AN12-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN12-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH4_QCORROCT_93_QT_001
+ mapping:
+ - [B3, OH4_QCORROCT_93_QT_001.octupole]
+ - [B1, OH4_QCORROCT_93_QT_001.quadrupole]
+ - [A1, OH4_QCORROCT_93_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN12-AR/EM-OCT/OH.01/strength
+ - AN12-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN12-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH4_COR_006
+ mapping:
+ - [B2, SH4_COR_006.sextupole]
+ - [B0, SH4_COR_006.hcorrector]
+ - [A0, SH4_COR_006.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN12-AR/EM-SX/SHF.01/strength
+ - AN12-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN12-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_102
+ x_pos: AN12-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN12-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH5_QCORROCT_94_001
+ mapping:
+ - [B3, OH5_QCORROCT_94_001.octupole]
+ - [B1, OH5_QCORROCT_94_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN12-AR/EM-OCT/OH.02/strength
+ - AN12-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH5_006
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN12-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_117
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN12-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH6_COR_006
+ mapping:
+ - [B2, SH6_COR_006.sextupole]
+ - [B0, SH6_COR_006.hcorrector]
+ - [A0, SH6_COR_006.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN12-AR/EM-SX/SHD.03/strength
+ - AN12-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN12-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD21_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN12-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_95_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_95_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_95_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_95_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN12-AR/EM-OCT/OC.01/strength
+ - AN12-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN12-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF21_HCOR_003
+ mapping:
+ - [B2, SXF21_HCOR_003.sextupole]
+ - [B0, SXF21_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN12-AR/EM-SX/SCF.02/strength
+ - AN12-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_103
+ x_pos: AN12-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN12-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD21_VCOR_003
+ mapping:
+ - [B2, SXD21_VCOR_003.sextupole]
+ - [A0, SXD21_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN12-AR/EM-SX/SCD.03/strength
+ - AN12-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_118
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN12-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_119
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN12-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD2_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN12-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_96_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_96_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_96_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_96_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN12-AR/EM-OCT/OC.02/strength
+ - AN12-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN12-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF2_HCOR_003
+ mapping:
+ - [B2, SXF2_HCOR_003.sextupole]
+ - [B0, SXF2_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN12-AR/EM-SX/SCF.05/strength
+ - AN12-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_104
+ x_pos: AN12-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN12-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD2_VCOR_003
+ mapping:
+ - [B2, SXD2_VCOR_003.sextupole]
+ - [A0, SXD2_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN12-AR/EM-SX/SCD.06/strength
+ - AN12-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_120
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN12-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_121
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN12-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD22_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN12-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF22_HCOR_003
+ mapping:
+ - [B2, SXF22_HCOR_003.sextupole]
+ - [B0, SXF22_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN12-AR/EM-SX/SCF.08/strength
+ - AN12-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_97_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_97_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_97_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_97_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN12-AR/EM-OCT/OC.03/strength
+ - AN12-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN12-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD22_VCOR_003
+ mapping:
+ - [B2, SXD22_VCOR_003.sextupole]
+ - [A0, SXD22_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN12-AR/EM-SX/SCD.09/strength
+ - AN12-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_105
+ x_pos: AN12-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN12-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_009
+ mapping:
+ - [B2, SH9_COR_009.sextupole]
+ - [B0, SH9_COR_009.hcorrector]
+ - [A0, SH9_COR_009.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN12-AR/EM-SX/SHD.04/strength
+ - AN12-AR/EM-COR/SHD.04-CDLH.06/strength
+ - AN12-AR/EM-COR/SHD.04-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_122
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN12-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_009
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN12-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_123
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN12-AR/EM-COR/CQLN.12/strength
+- type: pyaml.bpm.bpm
+ name: BPM_106
+ x_pos: AN12-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN12-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_009
+ mapping:
+ - [B2, SH7_COR_009.sextupole]
+ - [B0, SH7_COR_009.hcorrector]
+ - [A0, SH7_COR_009.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN12-AR/EM-SX/SHF.06/strength
+ - AN12-AR/EM-COR/SHF.06-CDLH.07/strength
+ - AN12-AR/EM-COR/SHF.06-CDLV.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_98_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_98_QT_001.octupole]
+ - [B1, OH7_QCORROCT_98_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_98_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN12-AR/EM-OCT/OH.03/strength
+ - AN12-AR/EM-COR/OH.03-CQLN.13/strength
+ - AN12-AR/EM-COR/OH.03-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_107
+ x_pos: AN13-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN13-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_108
+ x_pos: AN13-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN13-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_99_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_99_QT_001.octupole]
+ - [B1, OH7_QCORROCT_99_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_99_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN13-AR/EM-OCT/OH.01/strength
+ - AN13-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN13-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_010
+ mapping:
+ - [B2, SH7_COR_010.sextupole]
+ - [B0, SH7_COR_010.hcorrector]
+ - [A0, SH7_COR_010.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN13-AR/EM-SX/SHF.01/strength
+ - AN13-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN13-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_109
+ x_pos: AN13-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN13-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_124
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_010
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN13-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_125
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_010
+ mapping:
+ - [B2, SH9_COR_010.sextupole]
+ - [B0, SH9_COR_010.hcorrector]
+ - [A0, SH9_COR_010.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN13-AR/EM-SX/SHD.03/strength
+ - AN13-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN13-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD31_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN13-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_100_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_100_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_100_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_100_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN13-AR/EM-OCT/OC.01/strength
+ - AN13-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN13-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF31_HCOR_003
+ mapping:
+ - [B2, SXF31_HCOR_003.sextupole]
+ - [B0, SXF31_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCF.02/strength
+ - AN13-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_110
+ x_pos: AN13-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN13-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD31_VCOR_003
+ mapping:
+ - [B2, SXD31_VCOR_003.sextupole]
+ - [A0, SXD31_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCD.03/strength
+ - AN13-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_126
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_127
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_007
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN13-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_101_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_101_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_101_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_101_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN13-AR/EM-OCT/OC.02/strength
+ - AN13-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN13-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF3_HCOR_005
+ mapping:
+ - [B2, SXF3_HCOR_005.sextupole]
+ - [B0, SXF3_HCOR_005.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCF.05/strength
+ - AN13-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_111
+ x_pos: AN13-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN13-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_007
+ mapping:
+ - [B2, SXD3_VCOR_007.sextupole]
+ - [A0, SXD3_VCOR_007.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCD.06/strength
+ - AN13-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_128
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_129
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_008
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN13-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_102_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_102_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_102_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_102_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN13-AR/EM-OCT/OC.03/strength
+ - AN13-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN13-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF33_HCOR_005
+ mapping:
+ - [B2, SXF33_HCOR_005.sextupole]
+ - [B0, SXF33_HCOR_005.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCF.08/strength
+ - AN13-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_112
+ x_pos: AN13-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN13-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD33_VCOR_003
+ mapping:
+ - [B2, SXD33_VCOR_003.sextupole]
+ - [A0, SXD33_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCD.09/strength
+ - AN13-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_130
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_131
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD33_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN13-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF33_HCOR_006
+ mapping:
+ - [B2, SXF33_HCOR_006.sextupole]
+ - [B0, SXF33_HCOR_006.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCF.11/strength
+ - AN13-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_103_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_103_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_103_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_103_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN13-AR/EM-OCT/OC.04/strength
+ - AN13-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN13-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_113
+ x_pos: AN13-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN13-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_008
+ mapping:
+ - [B2, SXD3_VCOR_008.sextupole]
+ - [A0, SXD3_VCOR_008.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCD.12/strength
+ - AN13-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_132
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_133
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_009
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN13-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF3_HCOR_006
+ mapping:
+ - [B2, SXF3_HCOR_006.sextupole]
+ - [B0, SXF3_HCOR_006.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCF.14/strength
+ - AN13-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_104_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_104_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_104_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_104_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN13-AR/EM-OCT/OC.05/strength
+ - AN13-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN13-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_114
+ x_pos: AN13-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN13-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_009
+ mapping:
+ - [B2, SXD3_VCOR_009.sextupole]
+ - [A0, SXD3_VCOR_009.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCD.15/strength
+ - AN13-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_134
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_135
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD32_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN13-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF32_HCOR_003
+ mapping:
+ - [B2, SXF32_HCOR_003.sextupole]
+ - [B0, SXF32_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCF.17/strength
+ - AN13-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_105_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_105_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_105_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_105_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN13-AR/EM-OCT/OC.06/strength
+ - AN13-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN13-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD32_VCOR_003
+ mapping:
+ - [B2, SXD32_VCOR_003.sextupole]
+ - [A0, SXD32_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN13-AR/EM-SX/SCD.18/strength
+ - AN13-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_115
+ x_pos: AN13-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN13-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_011
+ mapping:
+ - [B2, SH9_COR_011.sextupole]
+ - [B0, SH9_COR_011.hcorrector]
+ - [A0, SH9_COR_011.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN13-AR/EM-SX/SHD.04/strength
+ - AN13-AR/EM-COR/SHD.04-CDLH.09/strength
+ - AN13-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_136
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_011
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN13-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_137
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN13-AR/EM-COR/CQLN.21/strength
+- type: pyaml.bpm.bpm
+ name: BPM_116
+ x_pos: AN13-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN13-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_011
+ mapping:
+ - [B2, SH7_COR_011.sextupole]
+ - [B0, SH7_COR_011.hcorrector]
+ - [A0, SH7_COR_011.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN13-AR/EM-SX/SHF.06/strength
+ - AN13-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN13-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_106_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_106_QT_001.octupole]
+ - [B1, OH7_QCORROCT_106_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_106_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN13-AR/EM-OCT/OH.02/strength
+ - AN13-AR/EM-COR/OH.02-CQLN.22/strength
+ - AN13-AR/EM-COR/OH.02-CQLT.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_117
+ x_pos: AN14-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN14-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_118
+ x_pos: AN14-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN14-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_107_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_107_QT_001.octupole]
+ - [B1, OH7_QCORROCT_107_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_107_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN14-AR/EM-OCT/OH.01/strength
+ - AN14-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN14-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_012
+ mapping:
+ - [B2, SH7_COR_012.sextupole]
+ - [B0, SH7_COR_012.hcorrector]
+ - [A0, SH7_COR_012.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN14-AR/EM-SX/SHF.01/strength
+ - AN14-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN14-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_119
+ x_pos: AN14-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN14-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_138
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN14-AR/EM-COR/CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_012
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN14-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_139
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN14-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_012
+ mapping:
+ - [B2, SH9_COR_012.sextupole]
+ - [B0, SH9_COR_012.hcorrector]
+ - [A0, SH9_COR_012.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN14-AR/EM-SX/SHD.03/strength
+ - AN14-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN14-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD41_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN14-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_108_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_108_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_108_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_108_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN14-AR/EM-OCT/OC.01/strength
+ - AN14-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN14-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF41_HCOR_003
+ mapping:
+ - [B2, SXF41_HCOR_003.sextupole]
+ - [B0, SXF41_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN14-AR/EM-SX/SCF.02/strength
+ - AN14-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_120
+ x_pos: AN14-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN14-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD41_VCOR_003
+ mapping:
+ - [B2, SXD41_VCOR_003.sextupole]
+ - [A0, SXD41_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN14-AR/EM-SX/SCD.03/strength
+ - AN14-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_140
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN14-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_141
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN14-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD4_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN14-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF4_HCOR_003
+ mapping:
+ - [B2, SXF4_HCOR_003.sextupole]
+ - [B0, SXF4_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN14-AR/EM-SX/SCF.05/strength
+ - AN14-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_109_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_109_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_109_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_109_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN14-AR/EM-OCT/OC.02/strength
+ - AN14-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN14-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_121
+ x_pos: AN14-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN14-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD4_VCOR_003
+ mapping:
+ - [B2, SXD4_VCOR_003.sextupole]
+ - [A0, SXD4_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN14-AR/EM-SX/SCD.06/strength
+ - AN14-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_142
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN14-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_143
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN14-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD42_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN14-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF42_HCOR_003
+ mapping:
+ - [B2, SXF42_HCOR_003.sextupole]
+ - [B0, SXF42_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN14-AR/EM-SX/SCF.08/strength
+ - AN14-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_110_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_110_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_110_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_110_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN14-AR/EM-OCT/OC.03/strength
+ - AN14-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN14-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD42_VCOR_003
+ mapping:
+ - [B2, SXD42_VCOR_003.sextupole]
+ - [A0, SXD42_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN14-AR/EM-SX/SCD.09/strength
+ - AN14-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_122
+ x_pos: AN14-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN14-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH12_COR_005
+ mapping:
+ - [B2, SH12_COR_005.sextupole]
+ - [B0, SH12_COR_005.hcorrector]
+ - [A0, SH12_COR_005.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN14-AR/EM-SX/SHD.04/strength
+ - AN14-AR/EM-COR/SHD.04-CDLH.06/strength
+ - AN14-AR/EM-COR/SHD.04-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_144
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN14-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.sextupole
+ name: SH11_005
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN14-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH11_QCORROCT_111_001
+ mapping:
+ - [B3, OH11_QCORROCT_111_001.octupole]
+ - [B1, OH11_QCORROCT_111_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN14-AR/EM-OCT/OH.02/strength
+ - AN14-AR/EM-COR/OH.02-CQLN.12/strength
+- type: pyaml.bpm.bpm
+ name: BPM_123
+ x_pos: AN14-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN14-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH10_COR_005
+ mapping:
+ - [B2, SH10_COR_005.sextupole]
+ - [B0, SH10_COR_005.hcorrector]
+ - [A0, SH10_COR_005.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN14-AR/EM-SX/SHF.06/strength
+ - AN14-AR/EM-COR/SHF.06-CDLH.07/strength
+ - AN14-AR/EM-COR/SHF.06-CDLV.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH10_QCORROCT_112_QT_001
+ mapping:
+ - [B3, OH10_QCORROCT_112_QT_001.octupole]
+ - [B1, OH10_QCORROCT_112_QT_001.quadrupole]
+ - [A1, OH10_QCORROCT_112_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN14-AR/EM-OCT/OH.03/strength
+ - AN14-AR/EM-COR/OH.03-CQLN.13/strength
+ - AN14-AR/EM-COR/OH.03-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_124
+ x_pos: AN15-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN15-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_125
+ x_pos: AN15-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN15-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH10_QCORROCT_113_QT_001
+ mapping:
+ - [B3, OH10_QCORROCT_113_QT_001.octupole]
+ - [B1, OH10_QCORROCT_113_QT_001.quadrupole]
+ - [A1, OH10_QCORROCT_113_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OH.01/strength
+ - AN15-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN15-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH10_COR_006
+ mapping:
+ - [B2, SH10_COR_006.sextupole]
+ - [B0, SH10_COR_006.hcorrector]
+ - [A0, SH10_COR_006.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN15-AR/EM-SX/SHF.01/strength
+ - AN15-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN15-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_126
+ x_pos: AN15-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN15-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH11_QCORROCT_114_001
+ mapping:
+ - [B3, OH11_QCORROCT_114_001.octupole]
+ - [B1, OH11_QCORROCT_114_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OH.02/strength
+ - AN15-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH11_006
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN15-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_145
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH12_COR_006
+ mapping:
+ - [B2, SH12_COR_006.sextupole]
+ - [B0, SH12_COR_006.hcorrector]
+ - [A0, SH12_COR_006.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN15-AR/EM-SX/SHD.03/strength
+ - AN15-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN15-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD51_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN15-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_115_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_115_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_115_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_115_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OC.01/strength
+ - AN15-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN15-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF51_HCOR_003
+ mapping:
+ - [B2, SXF51_HCOR_003.sextupole]
+ - [B0, SXF51_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCF.02/strength
+ - AN15-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_127
+ x_pos: AN15-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN15-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD51_VCOR_003
+ mapping:
+ - [B2, SXD51_VCOR_003.sextupole]
+ - [A0, SXD51_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCD.03/strength
+ - AN15-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_146
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_147
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_007
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN15-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_116_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_116_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_116_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_116_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OC.02/strength
+ - AN15-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN15-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF5_HCOR_005
+ mapping:
+ - [B2, SXF5_HCOR_005.sextupole]
+ - [B0, SXF5_HCOR_005.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCF.05/strength
+ - AN15-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_128
+ x_pos: AN15-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN15-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_007
+ mapping:
+ - [B2, SXD5_VCOR_007.sextupole]
+ - [A0, SXD5_VCOR_007.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCD.06/strength
+ - AN15-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_148
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_149
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_008
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN15-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_117_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_117_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_117_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_117_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OC.03/strength
+ - AN15-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN15-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF53_HCOR_005
+ mapping:
+ - [B2, SXF53_HCOR_005.sextupole]
+ - [B0, SXF53_HCOR_005.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCF.08/strength
+ - AN15-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_129
+ x_pos: AN15-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN15-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD53_VCOR_003
+ mapping:
+ - [B2, SXD53_VCOR_003.sextupole]
+ - [A0, SXD53_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCD.09/strength
+ - AN15-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_150
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_151
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD53_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN15-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF53_HCOR_006
+ mapping:
+ - [B2, SXF53_HCOR_006.sextupole]
+ - [B0, SXF53_HCOR_006.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCF.11/strength
+ - AN15-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_118_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_118_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_118_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_118_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OC.04/strength
+ - AN15-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN15-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_130
+ x_pos: AN15-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN15-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_008
+ mapping:
+ - [B2, SXD5_VCOR_008.sextupole]
+ - [A0, SXD5_VCOR_008.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCD.12/strength
+ - AN15-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_152
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_153
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_009
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN15-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF5_HCOR_006
+ mapping:
+ - [B2, SXF5_HCOR_006.sextupole]
+ - [B0, SXF5_HCOR_006.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCF.14/strength
+ - AN15-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_119_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_119_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_119_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_119_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OC.05/strength
+ - AN15-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN15-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_131
+ x_pos: AN15-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN15-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_009
+ mapping:
+ - [B2, SXD5_VCOR_009.sextupole]
+ - [A0, SXD5_VCOR_009.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCD.15/strength
+ - AN15-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_154
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_155
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD52_003
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN15-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF52_HCOR_003
+ mapping:
+ - [B2, SXF52_HCOR_003.sextupole]
+ - [B0, SXF52_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCF.17/strength
+ - AN15-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_120_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_120_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_120_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_120_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OC.06/strength
+ - AN15-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN15-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD52_VCOR_003
+ mapping:
+ - [B2, SXD52_VCOR_003.sextupole]
+ - [A0, SXD52_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SCD.18/strength
+ - AN15-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_132
+ x_pos: AN15-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN15-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_156
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN15-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH15_VCOR_003
+ mapping:
+ - [B2, SH15_VCOR_003.sextupole]
+ - [A0, SH15_VCOR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SHD.04/strength
+ - AN15-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.bpm.bpm
+ name: BPM_133
+ x_pos: AN15-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN15-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH14_HCOR_003
+ mapping:
+ - [B2, SH14_HCOR_003.sextupole]
+ - [B0, SH14_HCOR_003.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN15-AR/EM-SX/SHD.05/strength
+ - AN15-AR/EM-COR/SHD.05-CDLH.09/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH141_QCORROCT_121_001
+ mapping:
+ - [B3, OH141_QCORROCT_121_001.octupole]
+ - [B1, OH141_QCORROCT_121_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OH.03/strength
+ - AN15-AR/EM-COR/OH.03-CQLN.21/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH13_COR_003
+ mapping:
+ - [B2, SH13_COR_003.sextupole]
+ - [B0, SH13_COR_003.hcorrector]
+ - [A0, SH13_COR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN15-AR/EM-SX/SHF.06/strength
+ - AN15-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN15-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH131_QCORROCT_122_001
+ mapping:
+ - [B3, OH131_QCORROCT_122_001.octupole]
+ - [B1, OH131_QCORROCT_122_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN15-AR/EM-OCT/OH.04/strength
+ - AN15-AR/EM-COR/OH.04-CQLN.22/strength
+- type: pyaml.bpm.bpm
+ name: BPM_134
+ x_pos: AN16-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN16-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_135
+ x_pos: AN16-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN16-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH16_QCORROCT_123_001
+ mapping:
+ - [B3, OH16_QCORROCT_123_001.octupole]
+ - [B1, OH16_QCORROCT_123_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN16-SD/EM-OCT/OH.01/strength
+ - AN16-SD/EM-COR/OH.01-CQLN.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH16_COR_003
+ mapping:
+ - [B2, SH16_COR_003.sextupole]
+ - [B0, SH16_COR_003.hcorrector]
+ - [A0, SH16_COR_003.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN16-SD/EM-SX/SHD.01/strength
+ - AN16-SD/EM-COR/SHD.01-CDLH.01/strength
+ - AN16-SD/EM-COR/SHD.01-CDLV.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH16_COR_004
+ mapping:
+ - [B2, SH16_COR_004.sextupole]
+ - [B0, SH16_COR_004.hcorrector]
+ - [A0, SH16_COR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN16-SD/EM-SX/SHD.02/strength
+ - AN16-SD/EM-COR/SHD.02-CDLH.02/strength
+ - AN16-SD/EM-COR/SHD.02-CDLV.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH16_QCORROCT_124_001
+ mapping:
+ - [B3, OH16_QCORROCT_124_001.octupole]
+ - [B1, OH16_QCORROCT_124_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN16-SD/EM-OCT/OH.02/strength
+ - AN16-SD/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.bpm.bpm
+ name: BPM_136
+ x_pos: AN16-SD/DG-EPOS/BPM.03/x_pos
+ y_pos: AN16-SD/DG-EPOS/BPM.03/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_137
+ x_pos: AN16-SD/DG-EPOS/BPM.04/x_pos
+ y_pos: AN16-SD/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH132_QCORROCT_125_001
+ mapping:
+ - [B3, OH132_QCORROCT_125_001.octupole]
+ - [B1, OH132_QCORROCT_125_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OH.01/strength
+ - AN16-AR/EM-COR/OH.01-CQLN.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH13_COR_004
+ mapping:
+ - [B2, SH13_COR_004.sextupole]
+ - [B0, SH13_COR_004.hcorrector]
+ - [A0, SH13_COR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN16-AR/EM-SX/SHF.01/strength
+ - AN16-AR/EM-COR/SHF.01-CDLH.03/strength
+ - AN16-AR/EM-COR/SHF.01-CDLV.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH142_QCORROCT_126_001
+ mapping:
+ - [B3, OH142_QCORROCT_126_001.octupole]
+ - [B1, OH142_QCORROCT_126_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OH.02/strength
+ - AN16-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH14_HCOR_004
+ mapping:
+ - [B2, SH14_HCOR_004.sextupole]
+ - [B0, SH14_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SHD.02/strength
+ - AN16-AR/EM-COR/SHD.02-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_138
+ x_pos: AN16-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN16-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH15_VCOR_004
+ mapping:
+ - [B2, SH15_VCOR_004.sextupole]
+ - [A0, SH15_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SHD.03/strength
+ - AN16-AR/EM-COR/SHD.03-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_157
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.sextupole
+ name: SXD52_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN16-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_127_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_127_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_127_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_127_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OC.01/strength
+ - AN16-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN16-AR/EM-COR/OC.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF52_HCOR_004
+ mapping:
+ - [B2, SXF52_HCOR_004.sextupole]
+ - [B0, SXF52_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCF.02/strength
+ - AN16-AR/EM-COR/SCF.02-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_139
+ x_pos: AN16-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN16-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD52_VCOR_004
+ mapping:
+ - [B2, SXD52_VCOR_004.sextupole]
+ - [A0, SXD52_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCD.03/strength
+ - AN16-AR/EM-COR/SCD.03-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_158
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_159
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_010
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN16-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_128_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_128_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_128_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_128_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OC.02/strength
+ - AN16-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN16-AR/EM-COR/OC.02-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF5_HCOR_007
+ mapping:
+ - [B2, SXF5_HCOR_007.sextupole]
+ - [B0, SXF5_HCOR_007.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCF.05/strength
+ - AN16-AR/EM-COR/SCF.05-CDLH.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_140
+ x_pos: AN16-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN16-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_010
+ mapping:
+ - [B2, SXD5_VCOR_010.sextupole]
+ - [A0, SXD5_VCOR_010.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCD.06/strength
+ - AN16-AR/EM-COR/SCD.06-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_160
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_161
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_011
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN16-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_129_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_129_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_129_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_129_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OC.03/strength
+ - AN16-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN16-AR/EM-COR/OC.03-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF53_HCOR_007
+ mapping:
+ - [B2, SXF53_HCOR_007.sextupole]
+ - [B0, SXF53_HCOR_007.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCF.08/strength
+ - AN16-AR/EM-COR/SCF.08-CDLH.07/strength
+- type: pyaml.bpm.bpm
+ name: BPM_141
+ x_pos: AN16-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN16-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD53_VCOR_004
+ mapping:
+ - [B2, SXD53_VCOR_004.sextupole]
+ - [A0, SXD53_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCD.09/strength
+ - AN16-AR/EM-COR/SCD.09-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_162
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_163
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD53_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN16-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF53_HCOR_008
+ mapping:
+ - [B2, SXF53_HCOR_008.sextupole]
+ - [B0, SXF53_HCOR_008.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCF.11/strength
+ - AN16-AR/EM-COR/SCF.11-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_130_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_130_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_130_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_130_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OC.04/strength
+ - AN16-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN16-AR/EM-COR/OC.04-CQLT.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_142
+ x_pos: AN16-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN16-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_011
+ mapping:
+ - [B2, SXD5_VCOR_011.sextupole]
+ - [A0, SXD5_VCOR_011.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCD.12/strength
+ - AN16-AR/EM-COR/SCD.12-CDLV.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_164
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_165
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD5_012
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN16-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF5_HCOR_008
+ mapping:
+ - [B2, SXF5_HCOR_008.sextupole]
+ - [B0, SXF5_HCOR_008.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCF.14/strength
+ - AN16-AR/EM-COR/SCF.14-CDLH.09/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_131_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_131_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_131_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_131_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OC.05/strength
+ - AN16-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN16-AR/EM-COR/OC.05-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_143
+ x_pos: AN16-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN16-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD5_VCOR_012
+ mapping:
+ - [B2, SXD5_VCOR_012.sextupole]
+ - [A0, SXD5_VCOR_012.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCD.15/strength
+ - AN16-AR/EM-COR/SCD.15-CDLV.09/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_166
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_167
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD51_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN16-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF51_HCOR_004
+ mapping:
+ - [B2, SXF51_HCOR_004.sextupole]
+ - [B0, SXF51_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCF.17/strength
+ - AN16-AR/EM-COR/SCF.17-CDLH.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF5_QCORROCT_132_QT_001
+ mapping:
+ - [B3, OCTF5_QCORROCT_132_QT_001.octupole]
+ - [B1, OCTF5_QCORROCT_132_QT_001.quadrupole]
+ - [A1, OCTF5_QCORROCT_132_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OC.06/strength
+ - AN16-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN16-AR/EM-COR/OC.06-CQLT.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD51_VCOR_004
+ mapping:
+ - [B2, SXD51_VCOR_004.sextupole]
+ - [A0, SXD51_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN16-AR/EM-SX/SCD.18/strength
+ - AN16-AR/EM-COR/SCD.18-CDLV.10/strength
+- type: pyaml.bpm.bpm
+ name: BPM_144
+ x_pos: AN16-AR/DG-EPOS/BPM.11/x_pos
+ y_pos: AN16-AR/DG-EPOS/BPM.11/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH12_COR_007
+ mapping:
+ - [B2, SH12_COR_007.sextupole]
+ - [B0, SH12_COR_007.hcorrector]
+ - [A0, SH12_COR_007.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN16-AR/EM-SX/SHD.04/strength
+ - AN16-AR/EM-COR/SHD.04-CDLH.11/strength
+ - AN16-AR/EM-COR/SHD.04-CDLV.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_168
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN16-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.sextupole
+ name: SH11_007
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN16-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH11_QCORROCT_133_001
+ mapping:
+ - [B3, OH11_QCORROCT_133_001.octupole]
+ - [B1, OH11_QCORROCT_133_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OH.03/strength
+ - AN16-AR/EM-COR/OH.03-CQLN.21/strength
+- type: pyaml.bpm.bpm
+ name: BPM_145
+ x_pos: AN16-AR/DG-EPOS/BPM.12/x_pos
+ y_pos: AN16-AR/DG-EPOS/BPM.12/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH10_COR_007
+ mapping:
+ - [B2, SH10_COR_007.sextupole]
+ - [B0, SH10_COR_007.hcorrector]
+ - [A0, SH10_COR_007.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN16-AR/EM-SX/SHF.06/strength
+ - AN16-AR/EM-COR/SHF.06-CDLH.12/strength
+ - AN16-AR/EM-COR/SHF.06-CDLV.12/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH10_QCORROCT_134_QT_001
+ mapping:
+ - [B3, OH10_QCORROCT_134_QT_001.octupole]
+ - [B1, OH10_QCORROCT_134_QT_001.quadrupole]
+ - [A1, OH10_QCORROCT_134_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN16-AR/EM-OCT/OH.04/strength
+ - AN16-AR/EM-COR/OH.04-CQLN.22/strength
+ - AN16-AR/EM-COR/OH.04-CQLT.07/strength
+- type: pyaml.bpm.bpm
+ name: BPM_146
+ x_pos: AN17-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN17-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_147
+ x_pos: AN17-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN17-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH10_QCORROCT_135_QT_001
+ mapping:
+ - [B3, OH10_QCORROCT_135_QT_001.octupole]
+ - [B1, OH10_QCORROCT_135_QT_001.quadrupole]
+ - [A1, OH10_QCORROCT_135_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN17-AR/EM-OCT/OH.01/strength
+ - AN17-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN17-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH10_COR_008
+ mapping:
+ - [B2, SH10_COR_008.sextupole]
+ - [B0, SH10_COR_008.hcorrector]
+ - [A0, SH10_COR_008.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN17-AR/EM-SX/SHF.01/strength
+ - AN17-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN17-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_148
+ x_pos: AN17-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN17-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH11_QCORROCT_136_001
+ mapping:
+ - [B3, OH11_QCORROCT_136_001.octupole]
+ - [B1, OH11_QCORROCT_136_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN17-AR/EM-OCT/OH.02/strength
+ - AN17-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH11_008
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN17-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_169
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN17-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH12_COR_008
+ mapping:
+ - [B2, SH12_COR_008.sextupole]
+ - [B0, SH12_COR_008.hcorrector]
+ - [A0, SH12_COR_008.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN17-AR/EM-SX/SHD.03/strength
+ - AN17-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN17-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD42_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN17-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_137_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_137_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_137_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_137_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN17-AR/EM-OCT/OC.01/strength
+ - AN17-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN17-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF42_HCOR_004
+ mapping:
+ - [B2, SXF42_HCOR_004.sextupole]
+ - [B0, SXF42_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN17-AR/EM-SX/SCF.02/strength
+ - AN17-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_149
+ x_pos: AN17-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN17-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD42_VCOR_004
+ mapping:
+ - [B2, SXD42_VCOR_004.sextupole]
+ - [A0, SXD42_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN17-AR/EM-SX/SCD.03/strength
+ - AN17-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_170
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN17-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_171
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN17-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD4_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN17-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_138_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_138_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_138_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_138_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN17-AR/EM-OCT/OC.02/strength
+ - AN17-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN17-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF4_HCOR_004
+ mapping:
+ - [B2, SXF4_HCOR_004.sextupole]
+ - [B0, SXF4_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN17-AR/EM-SX/SCF.05/strength
+ - AN17-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_150
+ x_pos: AN17-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN17-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD4_VCOR_004
+ mapping:
+ - [B2, SXD4_VCOR_004.sextupole]
+ - [A0, SXD4_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN17-AR/EM-SX/SCD.06/strength
+ - AN17-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_172
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN17-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_173
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN17-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD41_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN17-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF41_HCOR_004
+ mapping:
+ - [B2, SXF41_HCOR_004.sextupole]
+ - [B0, SXF41_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN17-AR/EM-SX/SCF.08/strength
+ - AN17-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF4_QCORROCT_139_QT_001
+ mapping:
+ - [B3, OCTF4_QCORROCT_139_QT_001.octupole]
+ - [B1, OCTF4_QCORROCT_139_QT_001.quadrupole]
+ - [A1, OCTF4_QCORROCT_139_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN17-AR/EM-OCT/OC.03/strength
+ - AN17-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN17-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD41_VCOR_004
+ mapping:
+ - [B2, SXD41_VCOR_004.sextupole]
+ - [A0, SXD41_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN17-AR/EM-SX/SCD.09/strength
+ - AN17-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_151
+ x_pos: AN17-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN17-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_013
+ mapping:
+ - [B2, SH9_COR_013.sextupole]
+ - [B0, SH9_COR_013.hcorrector]
+ - [A0, SH9_COR_013.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN17-AR/EM-SX/SHD.04/strength
+ - AN17-AR/EM-COR/SHD.04-CDLH.06/strength
+ - AN17-AR/EM-COR/SHD.04-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_174
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN17-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_013
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN17-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_175
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN17-AR/EM-COR/CQLN.12/strength
+- type: pyaml.bpm.bpm
+ name: BPM_152
+ x_pos: AN17-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN17-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_013
+ mapping:
+ - [B2, SH7_COR_013.sextupole]
+ - [B0, SH7_COR_013.hcorrector]
+ - [A0, SH7_COR_013.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN17-AR/EM-SX/SHF.06/strength
+ - AN17-AR/EM-COR/SHF.06-CDLH.07/strength
+ - AN17-AR/EM-COR/SHF.06-CDLV.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_140_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_140_QT_001.octupole]
+ - [B1, OH7_QCORROCT_140_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_140_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN17-AR/EM-OCT/OH.03/strength
+ - AN17-AR/EM-COR/OH.03-CQLN.13/strength
+ - AN17-AR/EM-COR/OH.03-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_153
+ x_pos: AN18-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN18-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_154
+ x_pos: AN18-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN18-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_141_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_141_QT_001.octupole]
+ - [B1, OH7_QCORROCT_141_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_141_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN18-AR/EM-OCT/OH.01/strength
+ - AN18-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN18-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_014
+ mapping:
+ - [B2, SH7_COR_014.sextupole]
+ - [B0, SH7_COR_014.hcorrector]
+ - [A0, SH7_COR_014.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN18-AR/EM-SX/SHF.01/strength
+ - AN18-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN18-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_155
+ x_pos: AN18-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN18-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_176
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_014
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN18-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_177
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_014
+ mapping:
+ - [B2, SH9_COR_014.sextupole]
+ - [B0, SH9_COR_014.hcorrector]
+ - [A0, SH9_COR_014.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN18-AR/EM-SX/SHD.03/strength
+ - AN18-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN18-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD32_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN18-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_142_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_142_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_142_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_142_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN18-AR/EM-OCT/OC.01/strength
+ - AN18-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN18-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF32_HCOR_004
+ mapping:
+ - [B2, SXF32_HCOR_004.sextupole]
+ - [B0, SXF32_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCF.02/strength
+ - AN18-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_156
+ x_pos: AN18-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN18-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD32_VCOR_004
+ mapping:
+ - [B2, SXD32_VCOR_004.sextupole]
+ - [A0, SXD32_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCD.03/strength
+ - AN18-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_178
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_179
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_010
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN18-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_143_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_143_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_143_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_143_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN18-AR/EM-OCT/OC.02/strength
+ - AN18-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN18-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF3_HCOR_007
+ mapping:
+ - [B2, SXF3_HCOR_007.sextupole]
+ - [B0, SXF3_HCOR_007.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCF.05/strength
+ - AN18-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_157
+ x_pos: AN18-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN18-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_010
+ mapping:
+ - [B2, SXD3_VCOR_010.sextupole]
+ - [A0, SXD3_VCOR_010.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCD.06/strength
+ - AN18-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_180
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_181
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_011
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN18-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_144_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_144_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_144_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_144_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN18-AR/EM-OCT/OC.03/strength
+ - AN18-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN18-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF33_HCOR_007
+ mapping:
+ - [B2, SXF33_HCOR_007.sextupole]
+ - [B0, SXF33_HCOR_007.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCF.08/strength
+ - AN18-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_158
+ x_pos: AN18-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN18-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD33_VCOR_004
+ mapping:
+ - [B2, SXD33_VCOR_004.sextupole]
+ - [A0, SXD33_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCD.09/strength
+ - AN18-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_182
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_183
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD33_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN18-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF33_HCOR_008
+ mapping:
+ - [B2, SXF33_HCOR_008.sextupole]
+ - [B0, SXF33_HCOR_008.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCF.11/strength
+ - AN18-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_145_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_145_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_145_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_145_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN18-AR/EM-OCT/OC.04/strength
+ - AN18-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN18-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_159
+ x_pos: AN18-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN18-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_011
+ mapping:
+ - [B2, SXD3_VCOR_011.sextupole]
+ - [A0, SXD3_VCOR_011.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCD.12/strength
+ - AN18-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_184
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_185
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD3_012
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN18-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF3_HCOR_008
+ mapping:
+ - [B2, SXF3_HCOR_008.sextupole]
+ - [B0, SXF3_HCOR_008.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCF.14/strength
+ - AN18-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_146_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_146_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_146_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_146_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN18-AR/EM-OCT/OC.05/strength
+ - AN18-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN18-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_160
+ x_pos: AN18-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN18-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD3_VCOR_012
+ mapping:
+ - [B2, SXD3_VCOR_012.sextupole]
+ - [A0, SXD3_VCOR_012.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCD.15/strength
+ - AN18-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_186
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_187
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD31_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN18-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF31_HCOR_004
+ mapping:
+ - [B2, SXF31_HCOR_004.sextupole]
+ - [B0, SXF31_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCF.17/strength
+ - AN18-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF3_QCORROCT_147_QT_001
+ mapping:
+ - [B3, OCTF3_QCORROCT_147_QT_001.octupole]
+ - [B1, OCTF3_QCORROCT_147_QT_001.quadrupole]
+ - [A1, OCTF3_QCORROCT_147_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN18-AR/EM-OCT/OC.06/strength
+ - AN18-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN18-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD31_VCOR_004
+ mapping:
+ - [B2, SXD31_VCOR_004.sextupole]
+ - [A0, SXD31_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN18-AR/EM-SX/SCD.18/strength
+ - AN18-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_161
+ x_pos: AN18-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN18-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_015
+ mapping:
+ - [B2, SH9_COR_015.sextupole]
+ - [B0, SH9_COR_015.hcorrector]
+ - [A0, SH9_COR_015.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN18-AR/EM-SX/SHD.04/strength
+ - AN18-AR/EM-COR/SHD.04-CDLH.09/strength
+ - AN18-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_188
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_015
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN18-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_189
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN18-AR/EM-COR/CQLN.21/strength
+- type: pyaml.bpm.bpm
+ name: BPM_162
+ x_pos: AN18-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN18-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_015
+ mapping:
+ - [B2, SH7_COR_015.sextupole]
+ - [B0, SH7_COR_015.hcorrector]
+ - [A0, SH7_COR_015.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN18-AR/EM-SX/SHF.06/strength
+ - AN18-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN18-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_148_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_148_QT_001.octupole]
+ - [B1, OH7_QCORROCT_148_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_148_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN18-AR/EM-OCT/OH.02/strength
+ - AN18-AR/EM-COR/OH.02-CQLN.22/strength
+ - AN18-AR/EM-COR/OH.02-CQLT.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_163
+ x_pos: AN19-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN19-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_164
+ x_pos: AN19-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN19-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH7_QCORROCT_149_QT_001
+ mapping:
+ - [B3, OH7_QCORROCT_149_QT_001.octupole]
+ - [B1, OH7_QCORROCT_149_QT_001.quadrupole]
+ - [A1, OH7_QCORROCT_149_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN19-AR/EM-OCT/OH.01/strength
+ - AN19-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN19-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH7_COR_016
+ mapping:
+ - [B2, SH7_COR_016.sextupole]
+ - [B0, SH7_COR_016.hcorrector]
+ - [A0, SH7_COR_016.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN19-AR/EM-SX/SHF.01/strength
+ - AN19-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN19-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_165
+ x_pos: AN19-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN19-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_190
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN19-AR/EM-COR/CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH8_016
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN19-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_191
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN19-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH9_COR_016
+ mapping:
+ - [B2, SH9_COR_016.sextupole]
+ - [B0, SH9_COR_016.hcorrector]
+ - [A0, SH9_COR_016.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN19-AR/EM-SX/SHD.03/strength
+ - AN19-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN19-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD22_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN19-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_150_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_150_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_150_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_150_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN19-AR/EM-OCT/OC.01/strength
+ - AN19-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN19-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF22_HCOR_004
+ mapping:
+ - [B2, SXF22_HCOR_004.sextupole]
+ - [B0, SXF22_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN19-AR/EM-SX/SCF.02/strength
+ - AN19-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_166
+ x_pos: AN19-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN19-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD22_VCOR_004
+ mapping:
+ - [B2, SXD22_VCOR_004.sextupole]
+ - [A0, SXD22_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN19-AR/EM-SX/SCD.03/strength
+ - AN19-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_192
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN19-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_193
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN19-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD2_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN19-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF2_HCOR_004
+ mapping:
+ - [B2, SXF2_HCOR_004.sextupole]
+ - [B0, SXF2_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN19-AR/EM-SX/SCF.05/strength
+ - AN19-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_151_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_151_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_151_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_151_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN19-AR/EM-OCT/OC.02/strength
+ - AN19-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN19-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_167
+ x_pos: AN19-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN19-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD2_VCOR_004
+ mapping:
+ - [B2, SXD2_VCOR_004.sextupole]
+ - [A0, SXD2_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN19-AR/EM-SX/SCD.06/strength
+ - AN19-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_194
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN19-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_195
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN19-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD21_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN19-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF21_HCOR_004
+ mapping:
+ - [B2, SXF21_HCOR_004.sextupole]
+ - [B0, SXF21_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN19-AR/EM-SX/SCF.08/strength
+ - AN19-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF2_QCORROCT_152_QT_001
+ mapping:
+ - [B3, OCTF2_QCORROCT_152_QT_001.octupole]
+ - [B1, OCTF2_QCORROCT_152_QT_001.quadrupole]
+ - [A1, OCTF2_QCORROCT_152_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN19-AR/EM-OCT/OC.03/strength
+ - AN19-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN19-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD21_VCOR_004
+ mapping:
+ - [B2, SXD21_VCOR_004.sextupole]
+ - [A0, SXD21_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN19-AR/EM-SX/SCD.09/strength
+ - AN19-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_168
+ x_pos: AN19-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN19-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH6_COR_007
+ mapping:
+ - [B2, SH6_COR_007.sextupole]
+ - [B0, SH6_COR_007.hcorrector]
+ - [A0, SH6_COR_007.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN19-AR/EM-SX/SHD.04/strength
+ - AN19-AR/EM-COR/SHD.04-CDLH.06/strength
+ - AN19-AR/EM-COR/SHD.04-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_196
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN19-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.sextupole
+ name: SH5_007
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN19-AR/EM-SX/SHD.05/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH5_QCORROCT_153_001
+ mapping:
+ - [B3, OH5_QCORROCT_153_001.octupole]
+ - [B1, OH5_QCORROCT_153_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN19-AR/EM-OCT/OH.02/strength
+ - AN19-AR/EM-COR/OH.02-CQLN.12/strength
+- type: pyaml.bpm.bpm
+ name: BPM_169
+ x_pos: AN19-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN19-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SH4_COR_007
+ mapping:
+ - [B2, SH4_COR_007.sextupole]
+ - [B0, SH4_COR_007.hcorrector]
+ - [A0, SH4_COR_007.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN19-AR/EM-SX/SHF.06/strength
+ - AN19-AR/EM-COR/SHF.06-CDLH.07/strength
+ - AN19-AR/EM-COR/SHF.06-CDLV.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH4_QCORROCT_154_QT_001
+ mapping:
+ - [B3, OH4_QCORROCT_154_QT_001.octupole]
+ - [B1, OH4_QCORROCT_154_QT_001.quadrupole]
+ - [A1, OH4_QCORROCT_154_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN19-AR/EM-OCT/OH.03/strength
+ - AN19-AR/EM-COR/OH.03-CQLN.13/strength
+ - AN19-AR/EM-COR/OH.03-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_170
+ x_pos: AN20-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN20-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.bpm.bpm
+ name: BPM_171
+ x_pos: AN20-SD/DG-EPOS/BPM.02/x_pos
+ y_pos: AN20-SD/DG-EPOS/BPM.02/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH4_QCORROCT_155_QT_001
+ mapping:
+ - [B3, OH4_QCORROCT_155_QT_001.octupole]
+ - [B1, OH4_QCORROCT_155_QT_001.quadrupole]
+ - [A1, OH4_QCORROCT_155_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OH.01/strength
+ - AN20-AR/EM-COR/OH.01-CQLN.01/strength
+ - AN20-AR/EM-COR/OH.01-CQLT.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH4_COR_008
+ mapping:
+ - [B2, SH4_COR_008.sextupole]
+ - [B0, SH4_COR_008.hcorrector]
+ - [A0, SH4_COR_008.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN20-AR/EM-SX/SHF.01/strength
+ - AN20-AR/EM-COR/SHF.01-CDLH.01/strength
+ - AN20-AR/EM-COR/SHF.01-CDLV.01/strength
+- type: pyaml.bpm.bpm
+ name: BPM_172
+ x_pos: AN20-AR/DG-EPOS/BPM.03/x_pos
+ y_pos: AN20-AR/DG-EPOS/BPM.03/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH5_QCORROCT_156_001
+ mapping:
+ - [B3, OH5_QCORROCT_156_001.octupole]
+ - [B1, OH5_QCORROCT_156_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OH.02/strength
+ - AN20-AR/EM-COR/OH.02-CQLN.02/strength
+- type: pyaml.magnet.sextupole
+ name: SH5_008
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN20-AR/EM-SX/SHD.02/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_197
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH6_COR_008
+ mapping:
+ - [B2, SH6_COR_008.sextupole]
+ - [B0, SH6_COR_008.hcorrector]
+ - [A0, SH6_COR_008.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN20-AR/EM-SX/SHD.03/strength
+ - AN20-AR/EM-COR/SHD.03-CDLH.02/strength
+ - AN20-AR/EM-COR/SHD.03-CDLV.02/strength
+- type: pyaml.magnet.sextupole
+ name: SXD12_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN20-AR/EM-SX/SCD.01/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_157_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_157_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_157_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_157_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OC.01/strength
+ - AN20-AR/EM-COR/OC.01-CQLN.04/strength
+ - AN20-AR/EM-COR/OC.01-CQLT.02/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF12_HCOR_004
+ mapping:
+ - [B2, SXF12_HCOR_004.sextupole]
+ - [B0, SXF12_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCF.02/strength
+ - AN20-AR/EM-COR/SCF.02-CDLH.03/strength
+- type: pyaml.bpm.bpm
+ name: BPM_173
+ x_pos: AN20-AR/DG-EPOS/BPM.04/x_pos
+ y_pos: AN20-AR/DG-EPOS/BPM.04/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD12_VCOR_004
+ mapping:
+ - [B2, SXD12_VCOR_004.sextupole]
+ - [A0, SXD12_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCD.03/strength
+ - AN20-AR/EM-COR/SCD.03-CDLV.03/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_198
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_199
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.06/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_010
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN20-AR/EM-SX/SCD.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_158_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_158_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_158_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_158_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OC.02/strength
+ - AN20-AR/EM-COR/OC.02-CQLN.07/strength
+ - AN20-AR/EM-COR/OC.02-CQLT.03/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF1_HCOR_007
+ mapping:
+ - [B2, SXF1_HCOR_007.sextupole]
+ - [B0, SXF1_HCOR_007.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCF.05/strength
+ - AN20-AR/EM-COR/SCF.05-CDLH.04/strength
+- type: pyaml.bpm.bpm
+ name: BPM_174
+ x_pos: AN20-AR/DG-EPOS/BPM.05/x_pos
+ y_pos: AN20-AR/DG-EPOS/BPM.05/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_010
+ mapping:
+ - [B2, SXD1_VCOR_010.sextupole]
+ - [A0, SXD1_VCOR_010.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCD.06/strength
+ - AN20-AR/EM-COR/SCD.06-CDLV.04/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_200
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.08/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_201
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.09/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_011
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN20-AR/EM-SX/SCD.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_159_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_159_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_159_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_159_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OC.03/strength
+ - AN20-AR/EM-COR/OC.03-CQLN.10/strength
+ - AN20-AR/EM-COR/OC.03-CQLT.04/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF13_HCOR_007
+ mapping:
+ - [B2, SXF13_HCOR_007.sextupole]
+ - [B0, SXF13_HCOR_007.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCF.08/strength
+ - AN20-AR/EM-COR/SCF.08-CDLH.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_175
+ x_pos: AN20-AR/DG-EPOS/BPM.06/x_pos
+ y_pos: AN20-AR/DG-EPOS/BPM.06/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD13_VCOR_004
+ mapping:
+ - [B2, SXD13_VCOR_004.sextupole]
+ - [A0, SXD13_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCD.09/strength
+ - AN20-AR/EM-COR/SCD.09-CDLV.05/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_202
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.11/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_203
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.12/strength
+- type: pyaml.magnet.sextupole
+ name: SXD13_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN20-AR/EM-SX/SCD.10/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF13_HCOR_008
+ mapping:
+ - [B2, SXF13_HCOR_008.sextupole]
+ - [B0, SXF13_HCOR_008.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCF.11/strength
+ - AN20-AR/EM-COR/SCF.11-CDLH.06/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_160_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_160_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_160_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_160_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OC.04/strength
+ - AN20-AR/EM-COR/OC.04-CQLN.13/strength
+ - AN20-AR/EM-COR/OC.04-CQLT.05/strength
+- type: pyaml.bpm.bpm
+ name: BPM_176
+ x_pos: AN20-AR/DG-EPOS/BPM.07/x_pos
+ y_pos: AN20-AR/DG-EPOS/BPM.07/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_011
+ mapping:
+ - [B2, SXD1_VCOR_011.sextupole]
+ - [A0, SXD1_VCOR_011.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCD.12/strength
+ - AN20-AR/EM-COR/SCD.12-CDLV.06/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_204
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.14/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_205
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.15/strength
+- type: pyaml.magnet.sextupole
+ name: SXD1_012
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN20-AR/EM-SX/SCD.13/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF1_HCOR_008
+ mapping:
+ - [B2, SXF1_HCOR_008.sextupole]
+ - [B0, SXF1_HCOR_008.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCF.14/strength
+ - AN20-AR/EM-COR/SCF.14-CDLH.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_161_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_161_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_161_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_161_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OC.05/strength
+ - AN20-AR/EM-COR/OC.05-CQLN.16/strength
+ - AN20-AR/EM-COR/OC.05-CQLT.06/strength
+- type: pyaml.bpm.bpm
+ name: BPM_177
+ x_pos: AN20-AR/DG-EPOS/BPM.08/x_pos
+ y_pos: AN20-AR/DG-EPOS/BPM.08/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: SXD1_VCOR_012
+ mapping:
+ - [B2, SXD1_VCOR_012.sextupole]
+ - [A0, SXD1_VCOR_012.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCD.15/strength
+ - AN20-AR/EM-COR/SCD.15-CDLV.07/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_206
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.17/strength
+- type: pyaml.magnet.quadrupole
+ name: QCORR_207
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.18/strength
+- type: pyaml.magnet.sextupole
+ name: SXD11_004
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m**2
+ physics: AN20-AR/EM-SX/SCD.16/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXF11_HCOR_004
+ mapping:
+ - [B2, SXF11_HCOR_004.sextupole]
+ - [B0, SXF11_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCF.17/strength
+ - AN20-AR/EM-COR/SCF.17-CDLH.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OCTF1_QCORROCT_162_QT_001
+ mapping:
+ - [B3, OCTF1_QCORROCT_162_QT_001.octupole]
+ - [B1, OCTF1_QCORROCT_162_QT_001.quadrupole]
+ - [A1, OCTF1_QCORROCT_162_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OC.06/strength
+ - AN20-AR/EM-COR/OC.06-CQLN.19/strength
+ - AN20-AR/EM-COR/OC.06-CQLT.07/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SXD11_VCOR_004
+ mapping:
+ - [B2, SXD11_VCOR_004.sextupole]
+ - [A0, SXD11_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SCD.18/strength
+ - AN20-AR/EM-COR/SCD.18-CDLV.08/strength
+- type: pyaml.bpm.bpm
+ name: BPM_178
+ x_pos: AN20-AR/DG-EPOS/BPM.09/x_pos
+ y_pos: AN20-AR/DG-EPOS/BPM.09/y_pos
+- type: pyaml.magnet.quadrupole
+ name: QCORR_208
+ model:
+ type: pyaml.magnet.identity_model
+ unit: 1/m
+ physics: AN20-AR/EM-COR/CQLN.20/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH3_VCOR_004
+ mapping:
+ - [B2, SH3_VCOR_004.sextupole]
+ - [A0, SH3_VCOR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, A0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SHD.04/strength
+ - AN20-AR/EM-COR/SHD.04-CDLV.09/strength
+- type: pyaml.bpm.bpm
+ name: BPM_179
+ x_pos: AN20-AR/DG-EPOS/BPM.10/x_pos
+ y_pos: AN20-AR/DG-EPOS/BPM.10/y_pos
+- type: pyaml.magnet.cfm_magnet
+ name: OH2_QCORROCT_163_001
+ mapping:
+ - [B3, OH2_QCORROCT_163_001.octupole]
+ - [B1, OH2_QCORROCT_163_001.quadrupole]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1]
+ units: [1/m**3, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OH.03/strength
+ - AN20-AR/EM-COR/OH.03-CQLN.21/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH2_HCOR_004
+ mapping:
+ - [B2, SH2_HCOR_004.sextupole]
+ - [B0, SH2_HCOR_004.hcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0]
+ units: [1/m**2, '1']
+ physics:
+ - AN20-AR/EM-SX/SHD.05/strength
+ - AN20-AR/EM-COR/SHD.05-CDLH.09/strength
+- type: pyaml.magnet.cfm_magnet
+ name: OH1_QCORROCT_164_QT_001
+ mapping:
+ - [B3, OH1_QCORROCT_164_QT_001.octupole]
+ - [B1, OH1_QCORROCT_164_QT_001.quadrupole]
+ - [A1, OH1_QCORROCT_164_QT_001.skewquad]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B3, B1, A1]
+ units: [1/m**3, 1/m**2, 1/m**2]
+ physics:
+ - AN20-AR/EM-OCT/OH.04/strength
+ - AN20-AR/EM-COR/OH.04-CQLN.22/strength
+ - AN20-AR/EM-COR/OH.04-CQLT.08/strength
+- type: pyaml.magnet.cfm_magnet
+ name: SH1_COR_004
+ mapping:
+ - [B2, SH1_COR_004.sextupole]
+ - [B0, SH1_COR_004.hcorrector]
+ - [A0, SH1_COR_004.vcorrector]
+ model:
+ type: pyaml.magnet.identity_cfm_model
+ multipoles: [B2, B0, A0]
+ units: [1/m**2, '1', '1']
+ physics:
+ - AN20-AR/EM-SX/SHF.06/strength
+ - AN20-AR/EM-COR/SHF.06-CDLH.10/strength
+ - AN20-AR/EM-COR/SHF.06-CDLV.10/strength
+- type: pyaml.bpm.bpm
+ name: BPM_180
+ x_pos: AN01-SD/DG-EPOS/BPM.01/x_pos
+ y_pos: AN01-SD/DG-EPOS/BPM.01/y_pos
+- type: pyaml.rf.rf_plant
+ name: RF
+ masterclock: simulator/ringsimulator/ringsimulator/RfFrequency
+ transmitters:
+ - type: pyaml.rf.rf_transmitter
+ name: RFTRA
+ cavities: [RF_002, RFHARMON_002]
+ harmonic: 1
+ distribution: 1
+ voltage: simulator/ringsimulator/ringsimulator/RfVoltage
diff --git a/examples/use_cases/config/soleil_ii/orm.json b/examples/use_cases/config/soleil_ii/orm.json
new file mode 100644
index 000000000..2982443cf
--- /dev/null
+++ b/examples/use_cases/config/soleil_ii/orm.json
@@ -0,0 +1,131774 @@
+{
+ "type": "pyaml.tuning_tools.orbit_response_matrix_data",
+ "matrix": [
+ [
+ 9.785136025743885,
+ 8.166997442718808,
+ -4.667136475492239,
+ 1.209631548494242,
+ 2.63414374219137,
+ -5.75007649374703,
+ 6.801355577643622,
+ -5.651153463901545,
+ 2.0998085447793233,
+ 5.138173391603675,
+ 5.6300201758107455,
+ 2.384084703554862,
+ -5.900579654982784,
+ 6.791300733021701,
+ -5.371972872084978,
+ 1.6205393024880723,
+ 4.0117219665576584,
+ 5.314676059627708,
+ 2.442989447146,
+ -6.123194115653844,
+ 6.747344656678406,
+ -5.188279859879225,
+ 1.7355346929734645,
+ 2.129620317707283,
+ -5.3105310181781915,
+ 4.383608795208916,
+ 7.429535281538629,
+ -4.299818126620348,
+ -3.019969457716797,
+ 1.4528807494970275,
+ 2.5773195906925612,
+ -5.595616681198574,
+ 4.440829078420237,
+ 8.232731865927772,
+ -4.171197168900242,
+ -2.779509198274058,
+ 0.983368875688298,
+ 2.849388787456939,
+ -5.755481322586247,
+ 6.794077282812312,
+ -5.5202331829840166,
+ 2.4562791577199863,
+ -0.09179698087829105,
+ -0.40538020258995877,
+ -5.332141699304326,
+ -5.578599303005041,
+ -11.480984162863011,
+ -11.506272923851117,
+ 6.799678303953825,
+ -5.595715868123708,
+ 2.583012995776884,
+ 1.4844631234993486,
+ -4.863023946525205,
+ 6.670731209512181,
+ -4.210477580926731,
+ -8.33785639902316,
+ 0.907532906709433,
+ 1.1712256467162145,
+ 1.7670374484987557,
+ -5.066078574385941,
+ 6.747804072418122,
+ -4.0620327171331185,
+ -7.56259663833561,
+ 0.283914770143909,
+ 0.8906843727759804,
+ 2.223177884768355,
+ -5.37163859200029,
+ 6.777893804045112,
+ -5.884089989873968,
+ 3.073013492609719,
+ 0.7370250148646503,
+ -2.65823562171691,
+ -3.5835973407749218,
+ 7.637190282815535,
+ 4.424383264018562,
+ -5.73323570703857,
+ 2.6401875293920907,
+ 1.2093445486088614,
+ -2.9773810197033677,
+ -4.5993123759159955,
+ 8.563689867752874,
+ 4.628107853558869,
+ -5.462309843302001,
+ 2.3641546002732783,
+ 1.4943169348204488,
+ -5.024409512376875,
+ 6.711619916591478,
+ -6.227425701651645,
+ 7.960060976843377,
+ 9.990964870912508,
+ 12.10276349521571,
+ 9.863941730054991,
+ -6.689392577114604,
+ 4.930155782669,
+ -1.5788388990523607,
+ -2.4937261324625664,
+ 5.540397882989603,
+ -6.79674110691394,
+ 4.154824588901308,
+ 8.435340306788772,
+ 0.47516518787387607,
+ -0.44448696580368696,
+ -2.7622091732115663,
+ 5.707477770735229,
+ -6.8000507165387996,
+ 3.7411306638749116,
+ 7.182323845061837,
+ 0.9239067687291497,
+ -0.2092254774820258,
+ -3.1911876572545546,
+ 5.952646172751691,
+ -6.785043882551569,
+ 5.285482041613812,
+ -2.097579552603907,
+ -1.7744474817676053,
+ 3.1739350405180105,
+ 4.610786973182935,
+ -7.3074396012413185,
+ -4.348880894535316,
+ 5.0979698183654385,
+ -1.6388705168645656,
+ -2.2305582719296075,
+ 3.3839853995945557,
+ 5.4810387319942,
+ -7.716802539678148,
+ -4.2984925023357805,
+ 4.769513740105125,
+ -1.3492188625620376,
+ -2.503124489886805,
+ 5.673284747119906,
+ -6.80227708785706,
+ 5.729164046160178,
+ -7.269402656195106,
+ -7.440634731643847,
+ -6.679107057613016,
+ -6.67155853298799,
+ -7.101246062036204,
+ -6.9196083087319105,
+ 5.598587187359839,
+ -6.805451248729096,
+ 5.808996004725231,
+ -2.730594518777958,
+ -1.110159252097648,
+ 4.596307202444593,
+ -4.2574235800374955,
+ -7.593345952455268,
+ 5.713553894068121,
+ 3.4885370955350243,
+ -2.461633493557112,
+ -1.4021925805381215,
+ 4.937249908296855,
+ -4.319962148288654,
+ -7.211787740895754,
+ 4.837018215684585,
+ 3.285271573647298,
+ -2.0104785117893975,
+ -1.8657051731997114,
+ 5.132777076380734,
+ -6.768883824228191,
+ 6.071877499590575,
+ -3.407394322980926,
+ -0.0505500743697746,
+ 1.2017301953744377,
+ 7.075277128302257,
+ 3.6568628292289382,
+ -6.794321187000156,
+ 5.841352743421126,
+ -2.9858403739544723,
+ -0.277898297252574,
+ 0.7940684693951453,
+ 8.335534857053066,
+ 4.07947140135681,
+ -6.808136850511566,
+ 5.683043306993048,
+ -2.7213245604392364,
+ -1.341640126417627,
+ 4.762841319995336,
+ -6.646236390642953,
+ 9.878385987094305,
+ 12.10617239854447,
+ -1.6245827230541462e-15,
+ -3.516841092330452e-15,
+ -7.295733002717703e-16,
+ -2.9149844786368695e-16,
+ 2.2888087549342276e-16,
+ 2.6974359775354232e-16,
+ 5.367574994856597e-16,
+ 7.219632386362825e-16,
+ 5.247633806036408e-16,
+ 2.9083670337364453e-16,
+ -1.9027222040251017e-16,
+ -1.3476426539713925e-15,
+ 1.859502017019206e-16,
+ -3.0837293235976867e-16,
+ 2.6883369907973396e-17,
+ 5.911032657303936e-16,
+ 1.8173158057790016e-16,
+ 2.2151896804170079e-16,
+ 4.56520980068016e-16,
+ -1.9289851884736603e-16,
+ 5.4180330122223307e-17,
+ 3.093655490948323e-16,
+ 3.2309674726321256e-16,
+ -6.028078713980189e-17,
+ -2.3657365519016588e-17,
+ 1.2013971216720174e-15,
+ -1.621274000603934e-16,
+ -8.106370003019671e-18,
+ -7.369352077234923e-16,
+ -6.607208540343877e-16,
+ 3.5866551360299275e-16,
+ 6.766337410683766e-17,
+ -6.526455033043387e-16,
+ -3.3169942563376405e-16,
+ 7.229558553713462e-17,
+ 1.087907941629742e-15,
+ 1.313562812734208e-16,
+ -2.811380106914603e-16,
+ 2.843846945957309e-16,
+ -1.1546614170627713e-15,
+ 5.072271516175166e-16,
+ -3.9092555749256083e-16,
+ -6.544653006519554e-16,
+ -2.177552962545845e-17,
+ -6.443736971788086e-17,
+ 3.8265375136703055e-16,
+ 2.4104043049795226e-16,
+ 4.979627287569226e-17,
+ -8.400019120475995e-17,
+ -4.632211430296955e-18,
+ 1.8197973476166606e-16,
+ -1.449634023499181e-16,
+ -2.5559880927888555e-16,
+ -1.908719263466111e-16,
+ -1.435985543392056e-16,
+ 3.490702184973777e-17,
+ -3.838118042246048e-16,
+ 3.0754575174721564e-16,
+ -1.4047594752681792e-16,
+ -3.2872157542857315e-16,
+ -2.4128858468171817e-16,
+ 4.764560328305439e-17,
+ -2.871971086784112e-16,
+ 1.5966653773804814e-16,
+ 4.840660944660318e-16,
+ 3.9825644567131204e-16,
+ -4.9299964508160443e-17,
+ 5.1202479917032407e-17,
+ -9.165161187087545e-17,
+ -1.5005056311711922e-16,
+ 3.141218376170122e-16,
+ 1.3809780326572797e-16,
+ -1.4388806755359916e-16,
+ 1.0654086289682995e-16,
+ 1.8363409598677212e-16,
+ -2.7958704704292335e-17,
+ -1.465764045443965e-16,
+ -2.7330047438752034e-16,
+ -2.2631661559450837e-16,
+ 2.0787048793457583e-16,
+ 3.596581303380564e-16,
+ 3.8480442095966843e-16,
+ 3.29217883796105e-17,
+ -3.374896899216353e-17,
+ 1.388422658170257e-16,
+ 2.069605892607675e-16,
+ 2.7718822326651957e-16,
+ 8.139457227521791e-17,
+ -5.111976185577711e-16,
+ 1.287093033132511e-16,
+ -4.294721740375319e-16,
+ -1.1626850690045357e-15,
+ -8.076591500967761e-16,
+ 1.0091603473146936e-16,
+ 2.319362738810405e-16,
+ -9.711100391372544e-17,
+ 4.413008567970402e-16,
+ 1.555099551599692e-17,
+ 7.477712737479369e-16,
+ 3.8844401565490175e-16,
+ -2.562812332842418e-16,
+ 5.290647197889165e-16,
+ -9.065899513581182e-17,
+ 2.6486323213947946e-16,
+ 1.8454399466058045e-16,
+ -1.6560155863311612e-16,
+ 4.1028158382630167e-17,
+ -1.6254099036666994e-17,
+ 3.226004388956808e-17,
+ 6.203854594147708e-17,
+ 1.9901965538025843e-16,
+ -1.6907571720583883e-16,
+ -2.2548943498195534e-16,
+ 2.3082474993292237e-16,
+ -2.6107888083704932e-18,
+ 8.42069863578982e-17,
+ 2.3161057151484772e-17,
+ 6.418921553411495e-17,
+ -3.5304068543763216e-16,
+ 2.3326493273995377e-17,
+ -2.3161057151484775e-18,
+ 1.9554549680753572e-16,
+ -5.515640324503589e-16,
+ -2.283018490646356e-17,
+ -5.275344356556934e-16,
+ 3.719004034038412e-16,
+ 2.2664748783952955e-17,
+ -3.520428988237401e-17,
+ 3.4112928461686856e-16,
+ 3.69044045351119e-16,
+ -1.1712877473750872e-16,
+ 6.038418471637102e-17,
+ 3.269017780809565e-16,
+ 8.313165156157927e-17,
+ 2.450108974382068e-16,
+ 6.782881022934826e-18,
+ 9.769003034251256e-17,
+ 4.579271871093561e-16,
+ 2.332649327399538e-16,
+ 2.845501307182415e-17,
+ 3.6065074707312e-16,
+ -2.2093994161291367e-16,
+ -6.337754455804729e-17,
+ 3.077111878697263e-17,
+ 1.654361225106055e-16,
+ -4.0655927106981304e-17,
+ -2.4385284458063256e-16,
+ -3.427836458419746e-16,
+ 2.4104043049795226e-16,
+ -1.2949253995576225e-16,
+ -4.587130086912815e-16,
+ -4.888223829882117e-16,
+ -1.8214517088417667e-16,
+ -7.080666043453917e-17,
+ -1.3301064249852685e-16,
+ -6.435465165662555e-17,
+ -1.1563984963491327e-16,
+ -5.577265280138789e-17,
+ 2.9712327602904754e-16,
+ -2.7718822326651957e-16,
+ -1.8743912680451605e-16,
+ 1.1530897738989206e-16,
+ -9.510509092828434e-17,
+ 9.363684534100272e-17,
+ 4.2690791413861753e-16,
+ 1.8495758496685696e-16,
+ 3.3203029787878526e-16,
+ -1.2904017555827232e-16,
+ 5.765448869494603e-16,
+ -3.3782056216665645e-16,
+ 5.479244377551255e-16,
+ -1.0733495628488087e-15,
+ 2.2135353191919018e-16,
+ -1.4095157637903592e-16,
+ 3.9539233280034717e-17,
+ 2.873625448009218e-16,
+ 2.1754850110144625e-16,
+ 2.6693118367086203e-16,
+ 1.7326952291148269e-15,
+ 5.624828165360588e-16
+ ],
+ [
+ 4.244921104448929,
+ 3.4034287962306062,
+ -1.4599659319293634,
+ 0.009198695967165006,
+ 1.4424570020571081,
+ -2.4626342919641666,
+ 2.613648731695737,
+ -1.9182933100824247,
+ 0.5245885137015258,
+ 1.4836315974381569,
+ 2.6383568440040004,
+ 1.1918161412538517,
+ -2.5036197518548655,
+ 2.589536257567768,
+ -1.784355459032272,
+ 0.34310347679311215,
+ 1.0894997045799337,
+ 2.4356763277062976,
+ 1.1928217065309443,
+ -2.56056192253595,
+ 2.540183951573781,
+ -1.6982191796434132,
+ 0.21973410495001633,
+ 1.261026095330032,
+ -2.3354455727799754,
+ 1.7303914736884647,
+ 3.0215178174435193,
+ -1.2128649496506865,
+ -0.9423510888203677,
+ 0.10617838823306142,
+ 1.4222081188230324,
+ -2.41913684276448,
+ 1.7335037140314846,
+ 3.3052352329013734,
+ -1.1040498584621115,
+ -0.833141631593096,
+ -0.08048418433668994,
+ 1.5189041117599285,
+ -2.464133207828054,
+ 2.594812692984106,
+ -1.855022281309852,
+ 0.5132681909096056,
+ 0.795752883540004,
+ 0.6655237842008116,
+ -1.7792480739777488,
+ -1.8980119492809526,
+ -4.671648241800606,
+ -4.704692600711536,
+ 2.6062889008038708,
+ -1.8914008234512363,
+ 0.5655659844520844,
+ 1.024659896297017,
+ -2.1975622107159825,
+ 2.6601652625389858,
+ -1.5226983189068328,
+ -3.1118989509558785,
+ -0.224660994504911,
+ 0.15793787362234196,
+ 1.1287844460141814,
+ -2.2609981258541696,
+ 2.657716099687944,
+ -1.4445009951660335,
+ -2.785143469951332,
+ -0.4218335005571251,
+ 0.047212625284531656,
+ 1.2949076580824022,
+ -2.3536920677124433,
+ 2.6495612830630106,
+ -2.0335149394188106,
+ 0.7695857763486855,
+ 0.7452499120723498,
+ -1.2653645617715612,
+ -1.8522440104810887,
+ 2.8365510932442746,
+ 1.6942261018259985,
+ -1.9584414880395105,
+ 0.58918162219903,
+ 0.9225227705450251,
+ -1.3917736338227535,
+ -2.2909740910107916,
+ 3.134324320269463,
+ 1.7429297065790539,
+ -1.8272929552249975,
+ 0.47543151354109375,
+ 1.0283073695253593,
+ -2.248049258523218,
+ 2.660502559877753,
+ -2.2118366877728013,
+ 2.6678098924052676,
+ 3.3821835110141247,
+ 4.663963389950989,
+ 3.82339227118037,
+ -2.492230014732031,
+ 1.5792249805847265,
+ -0.15673379428970607,
+ -1.3922757739410883,
+ 2.403291141712262,
+ -2.6372368946355307,
+ 1.4556655671900516,
+ 3.0564182814279786,
+ 0.7890279081241132,
+ 0.14558829690520866,
+ -1.4880507955161375,
+ 2.450908330359634,
+ -2.6059513100841256,
+ 1.2795186034911168,
+ 2.560461340425916,
+ 0.8836288578215344,
+ 0.22108395671469974,
+ -1.6390149451537168,
+ 2.5174078271000426,
+ -2.5803561809160627,
+ 1.7437246385312615,
+ -0.366471581230411,
+ -1.1314874905361916,
+ 1.43305334461218,
+ 2.2044026943572894,
+ -2.630269125174161,
+ -1.6186056648248774,
+ 1.6563271461930174,
+ -0.18082584095789853,
+ -1.2975904174163693,
+ 1.5009943940602741,
+ 2.5512757971721367,
+ -2.734934838120115,
+ -1.5761188700862605,
+ 1.5061951850613555,
+ -0.06482868317458379,
+ -1.3956393800825304,
+ 2.441239314769929,
+ -2.6237304303302897,
+ 1.9565213770343235,
+ -2.133094442029239,
+ -2.219316807757587,
+ -2.5660426874229962,
+ -2.592301421591752,
+ -3.399279085970603,
+ -3.3491465966298803,
+ 2.4206279514824716,
+ -2.6346443483743704,
+ 1.9960433004803926,
+ -0.6271651153738228,
+ -0.8851553196058328,
+ 2.1127418353143916,
+ -1.7300431223263222,
+ -3.181101732301147,
+ 1.7749903144730756,
+ 1.1549018406177634,
+ -0.5159602277612801,
+ -0.9939389581372695,
+ 2.221301131050926,
+ -1.7312141294917571,
+ -2.980183669036309,
+ 1.4468425067768995,
+ 1.0631354266050397,
+ -0.3314822356944525,
+ -1.1646740845803378,
+ 2.2819325083083055,
+ -2.6571960670442536,
+ 2.1293828887205852,
+ -0.9111948561235541,
+ -0.3212149378037901,
+ -0.06178075825692256,
+ 2.9488734504898995,
+ 1.5791308184321402,
+ -2.64723867502347,
+ 2.0121003355453264,
+ -0.7335062626915057,
+ -0.4244712844677229,
+ -0.2980524422380209,
+ 3.424109521309585,
+ 1.7261653101730936,
+ -2.620050862881492,
+ 1.9340028368315143,
+ -0.6233235799691327,
+ -0.9714322434019922,
+ 2.166131813187109,
+ -2.66091551059327,
+ 3.8055837211185257,
+ 4.6909794543581045,
+ -7.325511504769612e-16,
+ -1.5414924305231945e-15,
+ -2.8595633775958167e-16,
+ -1.491406644433109e-16,
+ 7.696915599805921e-17,
+ 1.155778110889718e-16,
+ 2.5237280488992874e-16,
+ 2.129162896711493e-16,
+ 2.1473608701876596e-16,
+ 7.916118462132474e-17,
+ -1.0270739774552951e-16,
+ -5.042906604429533e-16,
+ 1.402071138277382e-17,
+ -1.1934148287608807e-16,
+ 3.72282974437147e-17,
+ 3.048574147564183e-16,
+ 8.102234099956905e-17,
+ 5.349790611686706e-17,
+ 2.1548054957006368e-16,
+ -5.689968638599139e-17,
+ -3.3500814808397617e-18,
+ 7.287461196592174e-17,
+ 1.3962808739895107e-16,
+ -4.6983858793011966e-17,
+ -1.4475660719677984e-17,
+ 5.325388783616392e-16,
+ -4.9961708998202865e-17,
+ 3.30872245021211e-19,
+ -4.0614568076353654e-16,
+ -3.061395447058755e-16,
+ 9.90135193225974e-17,
+ 1.0174321534402239e-17,
+ -1.8576408606409617e-16,
+ -8.05053531167234e-17,
+ 1.8611563782443123e-17,
+ 4.496553809838258e-16,
+ 1.0223952371155421e-16,
+ -5.662051292925474e-17,
+ 1.1481266902236024e-16,
+ -4.880365614062863e-16,
+ 1.5865324148767068e-16,
+ -1.3727062265317494e-16,
+ -4.0275424025206913e-16,
+ -1.675040740419881e-17,
+ -3.05850031491482e-17,
+ 1.5451733842490555e-16,
+ 9.098986738083303e-17,
+ 1.8942436027464331e-16,
+ 6.452008777913615e-18,
+ -2.2871543937091212e-17,
+ 4.503998435351235e-17,
+ -2.812414082680294e-17,
+ -1.1762508310504054e-16,
+ -2.7214242152994607e-17,
+ -4.7811039405564993e-17,
+ 2.374008358027189e-17,
+ -7.277121438935261e-17,
+ 5.740633451118012e-17,
+ -3.8587975575598735e-17,
+ -1.1712877473750872e-16,
+ -9.330597309598151e-17,
+ -3.618915179919496e-17,
+ -1.2316719320914582e-16,
+ 6.028078713980189e-17,
+ 2.1936829844906291e-16,
+ 1.6998561587964716e-16,
+ -2.2457953630814698e-17,
+ 3.929107909626881e-19,
+ -1.4475660719677984e-17,
+ -5.070617154950059e-17,
+ 1.5054687148465104e-17,
+ 1.3069453678337836e-17,
+ -9.876536513883149e-17,
+ 4.619803721108659e-17,
+ 6.551270451419979e-17,
+ 4.340630264372012e-17,
+ -3.5403330217269584e-17,
+ -1.152676183592644e-16,
+ -7.734138727370808e-17,
+ 9.984069993515043e-17,
+ 9.028676386016296e-17,
+ 6.650532124926343e-17,
+ 5.331179047904263e-17,
+ -2.919947562312188e-17,
+ 6.493367808541267e-17,
+ 8.218039385714329e-17,
+ 7.829264497814406e-17,
+ 5.02305426972826e-17,
+ -1.1907264917700833e-16,
+ 1.3276248831476094e-16,
+ 9.512577044359817e-17,
+ -5.172360370294082e-16,
+ -2.505530075423121e-16,
+ 7.327786251454134e-17,
+ 8.670920771087111e-17,
+ 3.3004506440865804e-17,
+ 1.8574340654878234e-16,
+ 5.4428484305989215e-17,
+ 2.1771393722395686e-16,
+ 1.436812724004609e-16,
+ -1.0596183646804283e-16,
+ 1.0025429024142694e-16,
+ -1.3731198168380258e-17,
+ 1.079470699381701e-16,
+ 8.164272645898382e-17,
+ -3.498973991099307e-17,
+ 4.011825970882184e-18,
+ -3.7543660052250544e-17,
+ 7.031035206700734e-19,
+ 2.014184791566622e-17,
+ 7.965749298885655e-17,
+ -1.1506082320612615e-16,
+ -1.2631047953684733e-16,
+ 7.287461196592174e-17,
+ 2.885826362044375e-17,
+ 9.295442133564648e-18,
+ 4.673570460924606e-17,
+ 3.680953725860973e-17,
+ -1.5112589791343813e-16,
+ -1.1580528575742387e-18,
+ 1.6543612251060552e-18,
+ 3.6209831314508786e-17,
+ -1.1820410953382765e-16,
+ 3.345945577776997e-17,
+ -1.8020129644467705e-16,
+ 3.474158572722716e-18,
+ 4.9527439176612524e-18,
+ -4.503998435351235e-17,
+ 1.6766951016449869e-16,
+ 1.3338287377417571e-16,
+ -1.0670629901934055e-17,
+ 5.398387472674196e-17,
+ 7.0827339949853e-17,
+ 6.1335442420807e-17,
+ 1.0596183646804283e-16,
+ 1.6543612251060553e-17,
+ 6.373426619721078e-17,
+ 1.79498192924007e-17,
+ 8.1146418091452e-17,
+ -1.1208297300093523e-17,
+ 1.5443462036365024e-16,
+ -1.1158666463340343e-16,
+ -6.348611201344487e-18,
+ 5.848166930749906e-17,
+ 3.3087224502121103e-18,
+ 1.1745964698252991e-17,
+ -9.520848850485347e-17,
+ -1.7335637687580075e-16,
+ 1.019913695277883e-16,
+ -4.433688083284228e-17,
+ -1.887626157846009e-16,
+ -2.685028268347128e-16,
+ -8.569591146049365e-17,
+ 3.1432863277015048e-18,
+ 7.113753267956038e-17,
+ -3.9601271825976194e-17,
+ -8.726755462434441e-17,
+ 1.5556165394825377e-17,
+ 1.531111313835654e-16,
+ -9.355412727974742e-17,
+ -2.8868603378100666e-17,
+ 1.1514354126738145e-16,
+ -1.3172851254906964e-17,
+ 3.999418261693888e-17,
+ 1.3251433413099503e-16,
+ 1.2924697071141056e-17,
+ 1.4459117107426924e-16,
+ -4.524677950665061e-17,
+ 2.252826398288171e-16,
+ -1.709782326147108e-16,
+ 1.5526180097620327e-16,
+ -3.395576414530178e-16,
+ 6.915229920943311e-17,
+ -8.172544452023912e-17,
+ 1.170460566762534e-17,
+ 1.1847811311173585e-16,
+ 1.1433704017014225e-16,
+ 1.0236360080343716e-16,
+ 7.54636872832127e-16,
+ 2.447627432544409e-16
+ ],
+ [
+ -3.899230672445171,
+ -3.086518632493559,
+ 2.486686603224779,
+ -0.776341264016763,
+ -0.9201475767795303,
+ 2.300584178222203,
+ -2.9243450987526316,
+ 2.523693429700389,
+ -1.0442400453148977,
+ -2.4504351349544486,
+ -2.154310589012234,
+ -0.8731809630714477,
+ 2.3745908451855637,
+ -2.9297325969508994,
+ 2.419428228997819,
+ -0.8382554848259858,
+ -1.949309453144876,
+ -2.062417618959092,
+ -0.9096606273680699,
+ 2.483671207038192,
+ -2.928917629145276,
+ 2.3482297903151688,
+ -0.996362739484535,
+ -0.6983030362203826,
+ 2.0911100700939524,
+ -1.8470870480621202,
+ -3.0840106005396444,
+ 2.0656334222967185,
+ 1.4033731488728665,
+ -0.877366688801316,
+ -0.8941578774845308,
+ 2.227281737788079,
+ -1.8813999123029228,
+ -3.4399114012966208,
+ 2.04185082166149,
+ 1.3095385342430654,
+ -0.6811600941706542,
+ -1.0153381209355854,
+ 2.303196330903778,
+ -2.9296161807769034,
+ 2.4745690965511042,
+ -1.2953240779851156,
+ 0.4746477744368503,
+ 0.6034030516637795,
+ 2.4173505616401196,
+ 2.509943969915821,
+ 4.764464018749609,
+ 4.763041723513931,
+ -2.927118808507031,
+ 2.5029237644646156,
+ -1.3475356729405286,
+ -0.416839893163452,
+ 1.8822032051674942,
+ -2.8178809303738763,
+ 1.8471513852908241,
+ 3.6072503302907735,
+ -0.6878589589578608,
+ -0.6530195422190288,
+ -0.5388587898894979,
+ 1.9774576733671023,
+ -2.8666514618027925,
+ 1.7948755210387306,
+ 3.291451368360671,
+ -0.399419195662329,
+ -0.5348044362920608,
+ -0.7392917904899661,
+ 2.1199060097438407,
+ -2.8907636385137043,
+ 2.609646825153899,
+ -1.5484811240970127,
+ -0.0937018904796714,
+ 1.0068591774610263,
+ 1.28064136634851,
+ -3.3113900724112026,
+ -1.8916529742550565,
+ 2.5551541520650467,
+ -1.3701733108517071,
+ -0.29659375058646653,
+ 1.141112238379863,
+ 1.688827636852815,
+ -3.7374001030870962,
+ -1.994117367048443,
+ 2.452745182451788,
+ -1.2573049829813294,
+ -0.42111946311694437,
+ 1.9571643488868253,
+ -2.84343242872942,
+ 2.7318969380232243,
+ -3.6026522329559687,
+ -4.504159510101159,
+ -5.159156342521753,
+ -4.193158111995016,
+ 2.875181475961446,
+ -2.2908960175610886,
+ 0.8884878883658378,
+ 0.8158019801971946,
+ -2.2424377031802853,
+ 2.866632371678408,
+ -1.8473247853423558,
+ -3.6975932395688114,
+ 0.11493732049412243,
+ 0.3555134481766971,
+ 0.9352142007064653,
+ -2.321515421246978,
+ 2.8860390760844936,
+ -1.6797369935309256,
+ -3.170311720949648,
+ -0.11739656953879928,
+ 0.24727822332078753,
+ 1.1246652179197083,
+ -2.4416227253500473,
+ 2.8890868176711266,
+ -2.427880717626089,
+ 1.1044287987473922,
+ 0.5006043007187893,
+ -1.242972917204759,
+ -1.7414336076543064,
+ 3.2123148940490607,
+ 1.8838442860593487,
+ -2.354944819476611,
+ 0.9144779777835806,
+ 0.701029713877124,
+ -1.3393241572233165,
+ -2.106366827492329,
+ 3.414630781485884,
+ 1.8744505961145337,
+ -2.228206842848808,
+ 0.7923651518564435,
+ 0.8199453437034733,
+ -2.3060072040059434,
+ 2.8771525467818457,
+ -2.5952085998743133,
+ 3.4494794362435908,
+ 3.5118927166695104,
+ 2.858858873380768,
+ 2.842317501618004,
+ 2.6798751400351604,
+ 2.590820302392832,
+ -2.2696759743582393,
+ 2.8734286703448406,
+ -2.6245384601964976,
+ 1.3655179824914374,
+ 0.21234157998377295,
+ -1.801574794236509,
+ 1.767995709786857,
+ 3.1032890907528423,
+ -2.6591981352303025,
+ -1.5863528774608713,
+ 1.2557613936290406,
+ 0.33972977022493434,
+ -1.9579401458835777,
+ 1.8066712249198915,
+ 2.9688744402468927,
+ -2.2805071117039395,
+ -1.5067484388317312,
+ 1.068076873358192,
+ 0.5405124361917294,
+ -2.049935423534507,
+ 2.8386710074609693,
+ -2.719845335124313,
+ 1.6418594424902302,
+ -0.13656258017116957,
+ -0.787312454157579,
+ -2.899540408348093,
+ -1.4698055323727655,
+ 2.8608054905795295,
+ -2.6355463895001066,
+ 1.4710754842380727,
+ -0.047845216203046576,
+ -0.6550200829291408,
+ -3.442227332502379,
+ -1.6582479374590964,
+ 2.8827965355866803,
+ -2.577949336877547,
+ 1.3617048309372528,
+ 0.3125812084525087,
+ -1.8782531376528169,
+ 2.759679880362501,
+ -4.211562523840653,
+ -5.147139648811708,
+ 6.124445255342616e-16,
+ 1.6948930751211535e-15,
+ 2.3786612489728e-16,
+ 1.2937104780329353e-16,
+ -7.535615380358081e-17,
+ -1.633268119485953e-16,
+ -3.0754575174721564e-16,
+ -1.246767978270551e-16,
+ -5.67445900211377e-17,
+ -9.300612012393104e-17,
+ 9.562207881112999e-17,
+ 4.614013456820788e-16,
+ 1.937670584905467e-17,
+ 1.0443155233481973e-16,
+ -1.2029274058052405e-16,
+ -4.293067379150213e-16,
+ -1.0253679174419045e-16,
+ 5.959836313444564e-17,
+ -1.492233825045662e-16,
+ 1.3549218433618593e-16,
+ 2.1382618834495762e-17,
+ 3.9291079096268815e-18,
+ -2.655249766295219e-16,
+ 5.9557004103817985e-18,
+ -5.4138971091595655e-17,
+ -6.215435122723449e-16,
+ 4.6983858793011966e-17,
+ 3.970466940254532e-17,
+ 5.399835038746165e-16,
+ 3.5103477245219107e-16,
+ -1.2622776147559202e-16,
+ 3.8515597272000345e-17,
+ -1.6874484496081765e-17,
+ -1.7246715771730627e-17,
+ -8.658513061898816e-17,
+ -4.288104295474895e-16,
+ -1.750934561621621e-16,
+ 3.805030817743927e-18,
+ -2.7131524091739305e-17,
+ 5.239775590217154e-16,
+ -1.6328545291796764e-16,
+ 2.3491929396505983e-17,
+ 5.13348288150409e-16,
+ -3.1432863277015048e-18,
+ -1.2159555004529505e-17,
+ -1.799117832302835e-16,
+ -8.172544452023912e-17,
+ -1.8148342639413425e-16,
+ 6.150087854331761e-17,
+ 1.2242273065784808e-17,
+ -8.189088064274973e-17,
+ -4.7314731038033177e-17,
+ 1.6849669077705171e-16,
+ -2.1940965747969056e-17,
+ 1.505158522116803e-16,
+ -2.953034786814309e-17,
+ 3.623051082982261e-17,
+ 3.556876633978019e-17,
+ 6.050826180825397e-17,
+ 2.2052635130663715e-16,
+ 1.2771668657818747e-16,
+ 1.6394719740801006e-16,
+ 1.8661194619196302e-16,
+ -8.547877654969849e-17,
+ -2.7603017040894534e-16,
+ -2.0700194829139515e-16,
+ 1.493888186270768e-16,
+ -1.9025154088719637e-18,
+ 3.407984123718474e-17,
+ 3.730584562614155e-17,
+ 1.7073007843094489e-16,
+ -3.970466940254533e-18,
+ 1.7618947047379487e-16,
+ -5.575197328607407e-17,
+ -6.452008777913615e-18,
+ -7.353635645596416e-17,
+ 1.0381116687540496e-17,
+ 2.1145838384152459e-16,
+ 6.218330254867386e-17,
+ -8.400019120475995e-17,
+ -4.984280178514837e-17,
+ -1.522012327097571e-17,
+ -1.0608591355992579e-16,
+ -4.748016716054378e-17,
+ -7.692779696743156e-17,
+ -8.201495773463268e-17,
+ 6.865599084190129e-18,
+ -4.011825970882184e-18,
+ 5.057382265149211e-16,
+ -8.482737181731298e-17,
+ -4.1822251770681074e-16,
+ 7.219632386362825e-16,
+ 1.733150178451731e-16,
+ -1.0160879849448252e-16,
+ -7.066965864558507e-17,
+ -1.3251433413099503e-16,
+ -2.4641710447954694e-16,
+ -2.518764965223969e-17,
+ -1.419028340834719e-16,
+ -1.4277137372665258e-16,
+ 1.0323214044661784e-16,
+ -9.371956340225802e-17,
+ -9.272694666719439e-17,
+ -1.3507859402990942e-16,
+ -1.227536029028693e-16,
+ -1.1911400820763597e-17,
+ 2.0327963553490652e-17,
+ 3.842253945308813e-17,
+ 2.2457953630814698e-17,
+ 1.819797347616661e-18,
+ -1.1328238488913714e-16,
+ 1.8431651999212837e-16,
+ 2.0944213109842658e-16,
+ -1.148643678106448e-16,
+ 1.943874439499615e-18,
+ 4.6073960119203635e-17,
+ -3.8629334606226386e-17,
+ -2.192028623265523e-17,
+ 1.418201160222166e-16,
+ -4.5412215629161213e-17,
+ -2.5725317050399158e-17,
+ 5.806807900122254e-17,
+ 5.2608686958372554e-17,
+ -6.579187797093644e-17,
+ 2.3533288427133637e-16,
+ 2.400891727935163e-16,
+ 2.1175823681357505e-17,
+ 7.31641251803153e-17,
+ -1.134891800422754e-16,
+ -8.358660089848343e-17,
+ 6.354815055938635e-17,
+ -1.985233470127266e-17,
+ 6.319659879905131e-17,
+ -1.3937993321518516e-16,
+ -1.5613034061938395e-18,
+ 1.887005772386594e-17,
+ -1.5021599923962983e-16,
+ 2.9985297205047253e-17,
+ -1.1597072187993448e-16,
+ 4.823496946949842e-17,
+ -2.784289941853491e-16,
+ 1.9918509150276904e-16,
+ 1.7580172956166066e-17,
+ 2.4401828070314313e-17,
+ -1.0902240473448904e-16,
+ -6.766337410683766e-17,
+ 4.0738645168236607e-17,
+ 8.428970441915351e-17,
+ -1.1282743555223297e-16,
+ 1.3392054117233518e-16,
+ 3.604853109506094e-16,
+ 4.574308787418243e-16,
+ 1.4723814903443893e-16,
+ -8.189088064274974e-18,
+ -6.56781406367104e-17,
+ 2.5642598989143854e-18,
+ 2.2515856273693413e-16,
+ 3.9746028433172974e-17,
+ -1.833859418030062e-16,
+ 1.4260593760414197e-16,
+ -3.3583532869652924e-17,
+ -1.7238443965605094e-16,
+ 3.548604827852489e-17,
+ -4.284795573024683e-17,
+ -2.1241998130361748e-16,
+ -1.819797347616661e-18,
+ -2.0878038660838416e-16,
+ 3.821574429994987e-17,
+ -2.8496372102451803e-16,
+ 2.6784108234467036e-16,
+ -6.675347543302933e-17,
+ 2.515456242773757e-16,
+ -9.156889380962015e-17,
+ 1.2738581433316626e-16,
+ -3.7719435932418056e-17,
+ -2.0323827650427888e-16,
+ -1.2784076367007043e-16,
+ -1.1563984963491327e-16,
+ -6.5136854323371e-16,
+ -3.336846591038913e-16
+ ],
+ [
+ 1.412466043661834,
+ 1.0173761172739115,
+ -1.3182451448325707,
+ 2.4881158361024984,
+ -0.775090147326783,
+ -1.0137474636515527,
+ 2.3032971613428295,
+ -2.9267661293546783,
+ 1.803236990158661,
+ 3.6435241680275983,
+ 0.09842335619070453,
+ -0.2450834403314743,
+ -1.1290391260383705,
+ 2.3786366790834226,
+ -2.9328881115930523,
+ 1.6290962399505524,
+ 3.1095743291295643,
+ 0.304018859404573,
+ -0.14178115746027992,
+ -1.316035642905913,
+ 2.487469272006482,
+ -2.9308311478091396,
+ 2.291453435619234,
+ -0.9954190362886154,
+ -0.7030917638196672,
+ 1.3219280220976295,
+ 1.8991194013860635,
+ -3.159395495048767,
+ -1.8710269659142609,
+ 2.2147645998677485,
+ -0.7997124214543732,
+ -0.8990281718181495,
+ 1.4140718517737894,
+ 2.2695358881033334,
+ -3.343782505293057,
+ -1.8534601297373394,
+ 2.077347884755681,
+ -0.677452510705839,
+ -1.0178081917450026,
+ 2.362486339491848,
+ -2.9318834266243057,
+ 2.474093872786685,
+ -3.2267328645506734,
+ -3.296520108115807,
+ -2.859798599951443,
+ -2.8515411748535513,
+ -2.9253856874405466,
+ -2.8442862277434404,
+ 2.3285611058517466,
+ -2.9293463099840067,
+ 2.50357905922844,
+ -1.260327519865682,
+ -0.4191107065254426,
+ 1.8868008208910454,
+ -1.8055256250868426,
+ -3.2041678520210923,
+ 2.5149620379840623,
+ 1.5236047977096447,
+ -1.1456510648114007,
+ -0.543687504289095,
+ 2.0373667346263966,
+ -1.8361211897158989,
+ -3.0500767465651455,
+ 2.1385072693595903,
+ 1.4389391846830264,
+ -0.9554497075801963,
+ -0.7441438424260197,
+ 2.122522971796273,
+ -2.9075248233090103,
+ 2.610570589945638,
+ -1.5458384454463214,
+ 0.029095691814802527,
+ 0.6021014336079793,
+ 2.98810643719173,
+ 1.5351688660644665,
+ -2.9207852255710534,
+ 2.517716271949723,
+ -1.367209703930915,
+ -0.06549183924401139,
+ 0.4410914771510468,
+ 3.5287590108645936,
+ 1.7185419178385508,
+ -2.9330927289124147,
+ 2.4519638679285354,
+ -1.256423640156061,
+ -0.5185623317142327,
+ 1.9598125356607827,
+ -2.8465035939314185,
+ 4.224339797019216,
+ 5.172438358835456,
+ 4.08603126189629,
+ 3.244899666130795,
+ -2.6088567193007024,
+ 2.8762627706262203,
+ -2.2910598435900402,
+ 0.7951616372371032,
+ 0.8179734919022241,
+ -2.2466195182658018,
+ 1.9620158867462687,
+ 3.5947955851526894,
+ -2.169383883314255,
+ -1.3684888737454073,
+ 0.6758896510173169,
+ 0.9397825840045478,
+ -2.371988439136146,
+ 1.8866593828121498,
+ 3.2221184200343047,
+ -1.7167060409728223,
+ -1.2307506396159407,
+ 0.47495827788356154,
+ 1.1291852495722576,
+ -2.4440460005940663,
+ 2.8902809758869354,
+ -2.4284268644240252,
+ 1.1010536260851789,
+ 0.2643603453384718,
+ -0.08737747386363656,
+ -3.1813512242580924,
+ -1.6885584014192527,
+ 2.8861174127212994,
+ -2.3067449740910932,
+ 0.9108304438612586,
+ 0.3852859807662699,
+ 0.16218836176632592,
+ -3.523688246695351,
+ -1.7602504533025274,
+ 2.8648763181127355,
+ -2.2267171073335383,
+ 0.7910024135832726,
+ 0.9138293501478061,
+ -2.308660711814526,
+ 2.879182481674555,
+ -5.0232856844077505,
+ -5.003298019841482,
+ -2.2775219494600836,
+ -2.1608604963415616,
+ 0.15072965911888356,
+ 0.2872247015903929,
+ 0.8573877270897721,
+ -2.272464933885158,
+ 2.8725660209601322,
+ -2.5776953708172408,
+ 1.3624445279100608,
+ 0.21751131177966357,
+ -1.093680248314119,
+ -1.5835187784262457,
+ 3.5701174221649596,
+ 1.9062646124108247,
+ -2.5150088053128856,
+ 1.2503426044280541,
+ 0.4213246424314267,
+ -1.2029571998810915,
+ -1.661873351183241,
+ 3.237110431358127,
+ 1.8892923389020804,
+ -2.404461362301777,
+ 1.0625957533691566,
+ 0.5429943496481024,
+ -2.119192994171322,
+ 2.838102962333598,
+ -2.7169296468650344,
+ 1.1431262611685595,
+ 2.423948190003077,
+ 1.5338839237935988,
+ 0.5813086181972228,
+ -2.2028112981855985,
+ 2.870612608625035,
+ -2.6322675489489242,
+ 1.1265252768863228,
+ 2.590742229840917,
+ 1.9994184993668302,
+ 0.7848262943686541,
+ -2.3334341780648753,
+ 2.881962319837555,
+ -2.575613367739299,
+ 1.273067174482018,
+ 0.31515632008123695,
+ -1.8817367157134086,
+ 3.3396606329614684,
+ 3.9883677489115392,
+ 5.467663848975513e-16,
+ 4.8902917814135e-16,
+ -5.0003068028830517e-17,
+ 4.665815642681921e-17,
+ 0.0,
+ 5.841963076155758e-17,
+ 1.134891800422754e-16,
+ 9.043152046735974e-17,
+ -1.76292868050364e-16,
+ 1.4608009617686469e-16,
+ 9.524984753548112e-17,
+ -7.943001832040447e-17,
+ 6.615376948892839e-17,
+ -1.495542547495874e-16,
+ -3.8629334606226386e-17,
+ -1.0228088274218186e-16,
+ -3.58996385848014e-17,
+ -2.91374370771804e-17,
+ 1.1241384524595646e-16,
+ 1.9686898578762056e-17,
+ 9.90962373838527e-17,
+ 5.649643583737179e-17,
+ 3.037407209294717e-16,
+ 5.444916382130304e-17,
+ 5.0871607672011196e-17,
+ 1.710609506759661e-16,
+ -6.476824196290207e-17,
+ -3.077111878697263e-17,
+ -3.310790401743493e-17,
+ -1.5121895573235037e-17,
+ 2.603964568316931e-16,
+ 8.478601278668534e-18,
+ 1.8553661139564408e-16,
+ 7.902159789295641e-17,
+ 1.306686873892361e-16,
+ -5.1450634100798315e-17,
+ 8.69366823793232e-17,
+ -1.1745964698252991e-17,
+ -5.848166930749906e-17,
+ -1.6353360710173355e-16,
+ 2.367390913126765e-16,
+ 1.252351447405284e-16,
+ -5.4097612060968004e-17,
+ 4.177262093392789e-17,
+ -1.108422020821057e-17,
+ -2.6552497662952185e-17,
+ 6.989676176073084e-17,
+ -7.690711745211774e-17,
+ -1.922367743573236e-16,
+ 1.2490427249550718e-16,
+ 2.0232837783047054e-16,
+ 1.1398548840980721e-16,
+ -7.728968848542351e-17,
+ -1.2308447514789052e-16,
+ -3.5304068543763216e-16,
+ -2.5435803836005598e-17,
+ -1.7941547486275168e-16,
+ 2.1241998130361748e-16,
+ -1.1034589371457388e-16,
+ -2.814688829364815e-16,
+ -5.277412308088316e-17,
+ -7.82512859475164e-17,
+ -1.3367238698856927e-16,
+ 4.764560328305439e-17,
+ 2.84136540411965e-17,
+ 1.0774027478503184e-16,
+ -3.146595050151717e-16,
+ 6.174903272708352e-17,
+ -4.0035541647566533e-17,
+ 7.95334158969736e-17,
+ -1.1911400820763599e-16,
+ 8.42069863578982e-17,
+ -6.282436752340245e-17,
+ 1.819797347616661e-17,
+ -2.719769854074355e-16,
+ -5.957768361913182e-17,
+ -6.26175723702642e-17,
+ -1.6328545291796764e-16,
+ 9.429858983104514e-17,
+ -7.982292911136717e-18,
+ 1.2664135178186854e-16,
+ 1.9579365099130163e-16,
+ -2.5642598989143854e-18,
+ 1.0217748516561273e-16,
+ -7.113753267956038e-18,
+ 1.0339757656912844e-17,
+ -4.35510592509169e-17,
+ -6.121136532892405e-17,
+ -6.217089483948555e-16,
+ -2.4319110009059014e-16,
+ 2.187892720202758e-16,
+ -7.209706219012188e-16,
+ -1.9004474573405808e-16,
+ -4.6322114302969544e-17,
+ -7.312276614968765e-17,
+ 1.670904837357116e-17,
+ 2.95882505110218e-16,
+ -4.7893757466820296e-17,
+ 2.6453235989445825e-16,
+ 7.394994676224067e-17,
+ 1.9604180517506753e-17,
+ 3.0626362179775845e-16,
+ 7.81685678862611e-17,
+ 9.330597309598151e-17,
+ 3.614779276856731e-17,
+ -1.341686953561011e-16,
+ -4.939302232707266e-17,
+ 7.225939638533542e-17,
+ 1.2771668657818747e-16,
+ 1.952146245625145e-17,
+ 1.7015105200215777e-16,
+ -7.696915599805921e-17,
+ -1.6839329320048258e-16,
+ 1.1779051922755114e-16,
+ -1.3226617994722913e-16,
+ -1.9686898578762056e-16,
+ -9.516712947422582e-17,
+ -2.322309569742625e-17,
+ 3.29217883796105e-17,
+ 1.5054687148465104e-16,
+ 1.1903129014638068e-16,
+ -7.899574849881414e-18,
+ 7.528377549998243e-17,
+ 5.335314950967028e-17,
+ -3.2210413052814893e-16,
+ -2.9232562847624e-16,
+ -1.2796484076195338e-16,
+ -5.872982349126496e-18,
+ -2.895132143935597e-17,
+ 6.628818633846826e-17,
+ -7.140636637864011e-17,
+ -4.115223547451312e-17,
+ 1.8640515103882476e-16,
+ 7.285393245060791e-17,
+ -1.7237733107266182e-16,
+ -6.627784658081134e-17,
+ 1.1481266902236024e-16,
+ 5.717472393966527e-16,
+ 1.7784383169890093e-16,
+ 6.121136532892404e-18,
+ 3.983701830055381e-16,
+ -9.710066415606852e-17,
+ -8.983181452325879e-17,
+ -2.0613340864821447e-16,
+ 2.723078576524567e-16,
+ 4.768696231368204e-17,
+ -5.459392042849982e-18,
+ 9.628382330117241e-17,
+ 9.132073962585424e-17,
+ -1.4597669860029556e-16,
+ -2.4021324988539924e-16,
+ -2.627125625468416e-16,
+ -5.484207461226573e-17,
+ -7.138568686332629e-17,
+ -1.5763994523729322e-16,
+ 5.349790611686706e-17,
+ -2.2499312661442353e-16,
+ -2.4931223662348254e-16,
+ 1.163015941249557e-16,
+ -7.82512859475164e-17,
+ 6.715672598164893e-17,
+ 1.495439149919305e-16,
+ -3.350081480839762e-17,
+ -2.158941398763402e-17,
+ 5.823351512373315e-17,
+ 3.701633241174799e-17,
+ 6.385834328909374e-17,
+ -1.1729421086001932e-16,
+ 1.8197973476166606e-16,
+ -2.9616167856695465e-16,
+ 1.462455322993753e-16,
+ -1.3995895964397228e-16,
+ 2.1423977865123414e-16,
+ -1.1497810514487085e-16,
+ 1.1497810514487083e-17,
+ 4.8100552619958553e-17,
+ -7.080666043453917e-17,
+ 1.5054687148465104e-17,
+ -3.479121656398034e-16,
+ 2.1440521477374475e-16
+ ],
+ [
+ 1.5198719341866769,
+ 1.370913333415187,
+ -0.3511334624425186,
+ -1.3125028964092131,
+ 2.47175925792274,
+ -0.6738075785462969,
+ -1.011012208375291,
+ 2.293017168526686,
+ -1.967955653715744,
+ -3.638066548858761,
+ 1.976439016330777,
+ 1.2760630080969508,
+ -0.5517594110416445,
+ -1.1278288406763106,
+ 2.410237327328674,
+ -1.8823632054110264,
+ -3.2459959154579536,
+ 1.5424531267488455,
+ 1.140124801330626,
+ -0.351870225239325,
+ -1.3134646322786605,
+ 2.4741208447162477,
+ -2.906796090541897,
+ 2.2752160340357706,
+ -0.9834332835481073,
+ -0.3680461925707312,
+ -0.10109925592464357,
+ 3.2133959370338645,
+ 1.7240861003525194,
+ -2.8937897631367338,
+ 2.1470497067240926,
+ -0.7887530756276208,
+ -0.48752028433133365,
+ -0.36484914602972957,
+ 3.544333443266783,
+ 1.7880320376578962,
+ -2.8631091985963852,
+ 2.0602642197148713,
+ -0.6696248176157156,
+ -1.1043435568366535,
+ 2.3502273621202585,
+ -2.914141224997039,
+ 4.906388379080213,
+ 4.894742189775961,
+ 2.364575920457237,
+ 2.2588151414073643,
+ 0.14187854461477883,
+ 0.008130299876106105,
+ -1.0502758650749406,
+ 2.3178305846595255,
+ -2.911416920890645,
+ 2.4371883796615923,
+ -1.249294760928981,
+ -0.4225225255907074,
+ 1.1739746803149023,
+ 1.756313295762577,
+ -3.5082755609426317,
+ -1.8905793416133856,
+ 2.370712825562035,
+ -1.1328899558077954,
+ -0.6216093769541162,
+ 1.2769165531404254,
+ 1.8132595854419766,
+ -3.167450544458719,
+ -1.8669353111716844,
+ 2.2494395653532977,
+ -0.9437354314489299,
+ -0.7430007954745019,
+ 2.175536715405552,
+ -2.8902062744573818,
+ 2.59199374005349,
+ -1.0489163874752936,
+ -2.2759992578699237,
+ -1.6902220206677563,
+ -0.6791736207652647,
+ 2.2552117043081803,
+ -2.909172380867563,
+ 2.499262076597721,
+ -1.0246516183465586,
+ -2.413206036467568,
+ -2.168101412204157,
+ -0.8830096991061072,
+ 2.374054003078754,
+ -2.9151248141511714,
+ 2.434919547610905,
+ -1.1579031263003068,
+ -0.5189699530608364,
+ 1.9523929732532503,
+ -3.461291670239134,
+ -4.145849825847735,
+ -1.684377496628798,
+ -1.2421733512672661,
+ 1.4139371303109813,
+ -2.595393736070809,
+ 2.858150421384671,
+ -2.213420139475558,
+ 0.787009275460201,
+ 0.8186786330324478,
+ -1.4346543448659295,
+ -2.3177025788562893,
+ 3.5014558605236297,
+ 1.9276101823043847,
+ -2.129858710574426,
+ 0.665970026102498,
+ 1.0117620387174842,
+ -1.4755519605796925,
+ -2.2204022445980396,
+ 2.977812126771733,
+ 1.8055726617092431,
+ -1.9866109514488095,
+ 0.46620907027117325,
+ 1.125410309809433,
+ -2.4825136539912904,
+ 2.8724102935299327,
+ -2.4100701237862925,
+ 0.7943499178069716,
+ 1.8758228389489517,
+ 2.110663733911231,
+ 0.9425750533747075,
+ -2.5446092686112274,
+ 2.8617611181707034,
+ -2.288761951547492,
+ 0.6885439281279365,
+ 1.8224685881986906,
+ 2.4801975151253766,
+ 1.0713871209246912,
+ -2.6385273251458425,
+ 2.846290612951815,
+ -2.21062071413377,
+ 0.6905118504655617,
+ 0.9114968971929726,
+ -2.2981491391520974,
+ 4.946906684526328,
+ 4.851630919465411,
+ 0.9832723121940032,
+ 0.812435611002574,
+ -2.913721657289573,
+ -3.057193822801204,
+ 0.7492371925966868,
+ 0.8548827274600236,
+ -2.257579501469359,
+ 2.8618826837642626,
+ -2.559425803707785,
+ 1.3498783886899353,
+ 0.0661920148091885,
+ -0.4440999485475711,
+ -3.308171108419355,
+ -1.6009977585917077,
+ 2.869886467767077,
+ -2.495748659408813,
+ 1.1689508226301262,
+ 0.20990348017996704,
+ -0.17995076474059898,
+ -3.1294343773396713,
+ -1.6518132373917926,
+ 2.8687022185196627,
+ -2.385736191981386,
+ 1.0541501821891697,
+ 0.6340656979104264,
+ -2.105580048027447,
+ 2.819400026400781,
+ -1.7695569172705994,
+ -3.257730498713569,
+ 0.3243241540365086,
+ 0.4914712770040888,
+ 0.7548674592125717,
+ -2.2400885135406656,
+ 2.851381847781268,
+ -1.8300293615246817,
+ -3.6671625219507176,
+ 0.0875867055205993,
+ 0.33948989185297984,
+ 0.9473114571881908,
+ -2.319634789762187,
+ 2.8622045336329194,
+ -2.509948893122976,
+ 1.2631929336151608,
+ 0.3168005433106501,
+ -1.381810588286418,
+ -1.5335129937284755,
+ -4.432033722059122e-16,
+ -5.806807900122254e-17,
+ -9.181704799338606e-17,
+ -8.482737181731298e-17,
+ 7.734138727370809e-18,
+ 3.90429249125029e-17,
+ -1.435158362779503e-17,
+ 1.3369306650388308e-17,
+ 3.53536993805164e-16,
+ -1.378082900513344e-16,
+ -1.5451733842490555e-16,
+ -1.678142667716955e-17,
+ -8.000387487036313e-17,
+ -2.10103875588469e-17,
+ -1.2242273065784808e-17,
+ 4.566036981292712e-17,
+ -3.447275202814743e-17,
+ 1.7296346608483806e-16,
+ 1.6882756302207292e-16,
+ 3.4327995420950644e-16,
+ -1.2896779725467393e-16,
+ -2.072087434445334e-17,
+ -2.962133773552392e-16,
+ -1.0599285574101357e-16,
+ -1.8859717966209028e-17,
+ 2.132471619161705e-16,
+ 2.1982324778596707e-17,
+ 8.681260528744024e-17,
+ -1.522012327097571e-17,
+ 0.0,
+ -2.1151008262980915e-16,
+ 3.019209235818551e-17,
+ -2.367390913126765e-16,
+ -1.0967380946687454e-16,
+ -2.096075672209372e-16,
+ 1.6932387138960474e-16,
+ -6.5843576759221e-17,
+ 1.2159555004529505e-17,
+ 1.1812139147257235e-16,
+ 7.890269067990192e-17,
+ -2.489503451054906e-16,
+ -1.9372569945991906e-16,
+ -2.099384394659584e-16,
+ -7.585246217111263e-17,
+ -1.7825742200517746e-17,
+ 5.670323099051005e-17,
+ 3.7223127564886245e-18,
+ 3.87348001343269e-16,
+ 1.8793543517204786e-16,
+ -6.625716706549752e-17,
+ -1.435985543392056e-16,
+ -1.318525896409526e-16,
+ 9.229267684560405e-17,
+ 7.46116912522831e-17,
+ 2.33595804984975e-16,
+ 5.0928476339124216e-17,
+ 1.0517601488611746e-16,
+ 1.0592047743741518e-16,
+ 3.523789409475898e-17,
+ 2.863078895199167e-16,
+ 7.113753267956038e-17,
+ 8.453785860291942e-17,
+ 1.0273583207908602e-16,
+ -3.5403330217269584e-17,
+ 9.198248411589667e-17,
+ -1.0056448297113433e-16,
+ 3.1019272970738533e-16,
+ -5.160314552623778e-17,
+ 1.5501364679243736e-16,
+ 2.1217182711985157e-17,
+ 1.048037836104686e-16,
+ -5.062345348824529e-17,
+ 4.328222555183717e-17,
+ -1.8301371052735737e-17,
+ 2.4666525866331285e-16,
+ 1.0507261730954833e-16,
+ 1.427920532419664e-17,
+ 2.421157652942712e-16,
+ 7.32468432415706e-17,
+ 4.980661263334917e-17,
+ -6.509911420792328e-17,
+ -1.164670302474663e-16,
+ -4.6756384124559883e-17,
+ -1.6113478332532977e-16,
+ 3.4576149604716557e-17,
+ 1.3565762045869652e-17,
+ 1.0885696861197843e-16,
+ 1.5232530980164002e-16,
+ 8.645691762404244e-16,
+ 1.093946360101379e-16,
+ -1.0637542677431935e-16,
+ 3.515517603350367e-16,
+ 4.8803656140628625e-18,
+ 3.9079114064302095e-17,
+ 2.5456483351319424e-17,
+ 8.271806125530277e-18,
+ -1.0399728251322939e-16,
+ 2.2491040855316822e-16,
+ -1.0455562942670269e-16,
+ -1.0660290144277143e-16,
+ -3.879477072873699e-17,
+ -2.8942015657464747e-16,
+ -1.7031648812466837e-16,
+ 1.7267395287044453e-17,
+ 6.774609216809297e-17,
+ 1.8032537353656e-16,
+ -5.583469134732937e-19,
+ -9.140345768710955e-17,
+ 1.8611563782443123e-17,
+ -4.119359450514077e-17,
+ -1.1005638050018032e-16,
+ 2.2044363324538184e-17,
+ 3.106063200136619e-17,
+ -1.574538295994688e-16,
+ 1.0703717126436177e-16,
+ 1.6345088904047824e-16,
+ 1.5062958954590634e-16,
+ 7.955409541228742e-17,
+ 1.3420488450790028e-16,
+ -1.5253210495477828e-16,
+ -9.330597309598151e-17,
+ 9.934439156761861e-17,
+ 1.74038800881157e-16,
+ 6.581772736507872e-17,
+ 2.362427829451447e-16,
+ 2.567568621364598e-16,
+ 5.517294685728694e-17,
+ -3.316735762396218e-17,
+ 1.148643678106448e-16,
+ -5.025122221259642e-18,
+ 1.7652034271881608e-16,
+ 1.3036366453835716e-16,
+ 2.2813641294212503e-16,
+ -1.3044638259961246e-16,
+ 2.4689273333176494e-16,
+ 4.7811039405564993e-17,
+ -8.933550615572698e-17,
+ -2.79390591647442e-16,
+ -4.450231695535288e-17,
+ -2.5353085774750295e-17,
+ -2.845501307182415e-16,
+ 1.2875066234387876e-16,
+ 5.037529930447938e-17,
+ 2.569222982589704e-16,
+ -2.5543337315637495e-16,
+ -4.140038965827903e-17,
+ -7.681922951203398e-17,
+ -1.0978754680110059e-16,
+ -4.086272226011956e-17,
+ 1.8164886251664485e-16,
+ 3.616847228388113e-16,
+ 1.6857940883830702e-16,
+ 9.818633871004437e-17,
+ 1.0066788054770346e-16,
+ 2.5890753172909766e-16,
+ -9.362650558334581e-17,
+ 2.0497535579064023e-16,
+ 8.715381729011837e-17,
+ -5.376673981594679e-17,
+ 9.970628308561056e-17,
+ -3.258186884663949e-17,
+ -2.249931266144235e-17,
+ 1.0836066024444661e-16,
+ 3.350081480839762e-17,
+ -1.608452701109362e-16,
+ -1.0327349947724549e-16,
+ -1.0960660104210461e-16,
+ 9.347140921849213e-18,
+ -1.1282743555223297e-16,
+ 1.0511139140076175e-16,
+ -4.4181784467988585e-17,
+ 6.799424635185887e-17,
+ -4.619803721108659e-17,
+ 3.494838088036542e-17,
+ -4.7852398436192645e-17,
+ -1.6105206526407446e-16,
+ 3.639594695233322e-17,
+ -4.83797260766952e-17,
+ 3.093655490948323e-16,
+ 3.1391504246387395e-16
+ ],
+ [
+ -4.0006935640027566,
+ -3.349069825089031,
+ 1.8489074295650705,
+ -0.3731382830285914,
+ -1.2992897912294292,
+ 2.521728668556307,
+ -0.6965059527354505,
+ -0.9996816061290401,
+ 1.5072310538467129,
+ 2.472863806048581,
+ -3.4445579613814785,
+ -1.9118512877535188,
+ 2.0005255553315053,
+ -0.5715372285484455,
+ -1.1884300192008603,
+ 1.5384751493405433,
+ 2.3492785102228835,
+ -2.917970651366231,
+ -1.786250620693832,
+ 1.847866668357585,
+ -0.37086699890455527,
+ -1.3020883668423286,
+ 2.5241143620293314,
+ -2.922659786716099,
+ 2.2969518129970643,
+ -0.7138363655068981,
+ -1.7492908868823345,
+ -2.2437851016605443,
+ -1.0259708692874998,
+ 2.5831168372331583,
+ -2.9001747570245224,
+ 2.1690325037537246,
+ -0.6047994339287754,
+ -1.6774600764730647,
+ -2.617455948799924,
+ -1.1519694759979602,
+ 2.66671096491737,
+ -2.8803740493454404,
+ 2.08406235373185,
+ -0.5982954594583456,
+ -1.0914664876568718,
+ 2.3518931169770014,
+ -5.041087200210728,
+ -4.950867247716386,
+ -1.110161847045192,
+ -0.9395149429233869,
+ 2.717907016721961,
+ 2.862255828487945,
+ -0.6554940702142416,
+ -1.039189215053026,
+ 2.3174523790601236,
+ -2.92882112975868,
+ 2.459642528941852,
+ -1.2712217261743408,
+ -0.1611776554139981,
+ 0.26754282641580224,
+ 3.394505250410348,
+ 1.6590655537375203,
+ -2.9288044430392666,
+ 2.3920474058306764,
+ -1.0830866590722013,
+ -0.3044560751606419,
+ 0.015354872181937648,
+ 3.1983106311288094,
+ 1.7046511363948633,
+ -2.9193327383995085,
+ 2.2711631548159703,
+ -0.96720317233994,
+ -0.8203210609848641,
+ 2.1732311483212263,
+ -2.902099026295373,
+ 1.7458069783049968,
+ 3.2431535903926703,
+ -0.16098355711834872,
+ -0.40289443755890086,
+ -0.9382939390031229,
+ 2.3026928325953153,
+ -2.9223420696680567,
+ 1.8003907662521659,
+ 3.6381758543250684,
+ 0.10106490593694946,
+ -0.2433484849110358,
+ -1.1304357742142452,
+ 2.3758156525258416,
+ -2.928925837866128,
+ 2.4056399388272824,
+ -1.1819483421383825,
+ -0.5043466794820851,
+ 1.5863515806928372,
+ 1.7861492992784462,
+ -1.2811679324479361,
+ -1.178991059402414,
+ 0.16665080845596073,
+ 1.4056034258374344,
+ -2.5990140039551126,
+ 2.8636835379666317,
+ -2.237653910859657,
+ 0.8078029509789373,
+ 0.4440904624418971,
+ 0.287492744708515,
+ -3.732468100163052,
+ -1.8786172747166843,
+ 2.846315700447259,
+ -2.152519672543403,
+ 0.6112340947035578,
+ 0.5895234452654878,
+ 0.49970521641350646,
+ -3.3039684776515865,
+ -1.8113615361081623,
+ 2.8036035410993096,
+ -2.009404887488568,
+ 0.48829829078256826,
+ 1.2005053667527386,
+ -2.4843752464300066,
+ 2.887192572599634,
+ -1.6117530889159013,
+ -3.0864395204504165,
+ -0.35525992748991203,
+ 0.11218719403225351,
+ 1.3132795246045776,
+ -2.5859374056118374,
+ 2.877674936302221,
+ -1.5549513369836512,
+ -3.2484770105383642,
+ -0.6345336737264952,
+ -0.033337860099280366,
+ 1.4902778679778097,
+ -2.6441252546791456,
+ 2.86311940487191,
+ -2.1711383250124583,
+ 0.7133175883452207,
+ 0.8993053134236505,
+ -3.2909721044457,
+ -3.1498687538931467,
+ 0.6669827095213756,
+ 0.8453923794292718,
+ 4.778999351854515,
+ 4.879323315263354,
+ -2.2126902468776986,
+ 0.7725375174432202,
+ 0.8377413199015182,
+ -2.3155289743310266,
+ 2.875552586821791,
+ -2.582971967674572,
+ 0.9938890026296593,
+ 2.352828109869823,
+ 1.98887300080197,
+ 0.7820248571869883,
+ -2.388989869198019,
+ 2.884581315743773,
+ -2.479413720055008,
+ 0.8611712659084616,
+ 1.9850217610887286,
+ 2.0230875158410724,
+ 0.8851830462386823,
+ -2.502217047201041,
+ 2.8847809665226913,
+ -2.4116129134612194,
+ 0.9913871641051616,
+ 0.6152052971555139,
+ -2.102799752048926,
+ 1.838995007457619,
+ 3.0625076577819415,
+ -2.1000047855889292,
+ -1.4196390206742413,
+ 0.8749464919740473,
+ 0.813437608931714,
+ -2.2390927935933114,
+ 1.9581373335706953,
+ 3.5868026244039393,
+ -2.1701042070463266,
+ -1.3682233267379196,
+ 0.6778836000517757,
+ 0.9331406528520088,
+ -2.3181509635958912,
+ 2.8823065439707665,
+ -2.5351402573099566,
+ 1.288246583630604,
+ -1.038480269308594,
+ -1.4377302895095914,
+ 1.427548301144015e-15,
+ 2.1597272203453276e-15,
+ 3.250406217027122e-16,
+ 2.5882481366784236e-16,
+ -1.4277137372665258e-16,
+ -1.2456047555341483e-16,
+ -2.6511138632324537e-16,
+ -1.1950691899859867e-16,
+ -3.480414126105148e-16,
+ 1.1419228356294547e-16,
+ 2.2559283255852447e-16,
+ 5.217855303984499e-16,
+ 1.2374621963793294e-16,
+ 6.530590936106153e-17,
+ -5.016850415134112e-17,
+ -3.8095803111129685e-16,
+ -1.1431636065482842e-16,
+ -2.1390890640621293e-16,
+ -1.6564291766374377e-16,
+ -5.302227726464907e-17,
+ 1.5178764240348055e-16,
+ 1.7288074802358278e-17,
+ 2.1051746589474552e-16,
+ 9.479489819857696e-17,
+ 5.10370437945218e-17,
+ -4.553629272104417e-16,
+ -9.847585192443793e-17,
+ -7.730002824308042e-17,
+ 3.691707073824162e-16,
+ 2.6751021009964915e-16,
+ 1.919989599312146e-16,
+ 1.0763687720846271e-17,
+ 4.840247354354041e-16,
+ 8.366931895973874e-17,
+ 4.714929491552257e-18,
+ -5.010646560539965e-16,
+ -1.6106240502173138e-16,
+ -3.288042934898285e-17,
+ -1.4582160223544187e-16,
+ 3.540333021726958e-16,
+ 8.048467360140958e-17,
+ 3.360007648190398e-16,
+ 3.3951628242239016e-16,
+ 1.120416139703076e-16,
+ 5.815079706247785e-17,
+ -5.600012746983997e-17,
+ -7.869589552676366e-17,
+ -3.753021836729655e-16,
+ -1.7834014006643274e-16,
+ 1.7345977445236988e-16,
+ 2.101865936497243e-16,
+ 1.0927055891825494e-16,
+ -2.997495744739034e-17,
+ -3.9539233280034717e-17,
+ -4.377439801630622e-16,
+ -9.363684534100272e-17,
+ -3.46898869389426e-17,
+ -8.174612403555295e-17,
+ 1.7701665108634792e-17,
+ 8.933550615572699e-18,
+ 7.031035206700735e-17,
+ -1.9128551665288762e-17,
+ -2.0265925007549175e-17,
+ 8.271806125530277e-18,
+ -2.607273290767143e-16,
+ -1.8843174353957968e-16,
+ -2.131644438549152e-16,
+ 5.03132607585379e-17,
+ -7.370179257847477e-17,
+ 7.246102165964522e-17,
+ 1.0587911840678753e-17,
+ 2.357464745776129e-16,
+ -6.2865726554030096e-18,
+ -8.151864936710087e-17,
+ -2.041481751780872e-16,
+ -1.6642873924566914e-16,
+ -1.943874439499615e-18,
+ -1.386768296945151e-16,
+ 4.95067596612987e-17,
+ -1.0678901708059586e-16,
+ 2.7421037306132864e-17,
+ 5.591740940858467e-17,
+ 2.1837568171399928e-17,
+ 2.1188231390545801e-16,
+ -8.337980574534518e-17,
+ -1.0997366243892502e-16,
+ -1.6262370842792522e-16,
+ -1.7953955195463463e-16,
+ -7.030208026088181e-16,
+ -2.1374347028370233e-16,
+ -6.394106135034904e-17,
+ 1.2209185841282688e-16,
+ 1.6766951016449869e-16,
+ -6.86559908419013e-17,
+ -1.108422020821057e-16,
+ 5.7489052572435416e-18,
+ -1.3098404999777193e-16,
+ -1.9885421925774783e-16,
+ -2.225115847767644e-17,
+ -7.052748697780252e-17,
+ 9.363684534100272e-17,
+ 2.2010759112153218e-16,
+ 1.886798977233456e-16,
+ -2.3491929396505983e-17,
+ -3.407984123718474e-17,
+ -2.547716286663325e-17,
+ -9.041084095204591e-17,
+ 9.826905677129968e-17,
+ 1.4086885831778061e-16,
+ -7.651420666115506e-18,
+ 5.24846098664896e-17,
+ 1.0356301269163905e-16,
+ -2.3657365519016588e-17,
+ 8.784658105313153e-17,
+ -2.3427822899033126e-16,
+ -1.0285990917096898e-16,
+ -1.648570960818184e-16,
+ -7.643148859989974e-17,
+ 2.266474878395296e-16,
+ 9.496033432108756e-17,
+ 8.12291361527073e-17,
+ -7.601789829362323e-17,
+ -5.1202479917032407e-17,
+ -3.0026656235674905e-17,
+ -1.4579058296247113e-16,
+ -1.7900188455647516e-16,
+ -6.170767369645586e-17,
+ 1.9356026333740845e-17,
+ -2.842192584732203e-16,
+ -1.2490427249550718e-16,
+ -1.9686898578762056e-16,
+ -1.2432524606672006e-16,
+ -2.190374262040417e-16,
+ 1.0458923363908765e-16,
+ -3.180509455266391e-16,
+ -2.460655527192119e-16,
+ 9.905487835322505e-17,
+ 4.384057246531046e-17,
+ 1.1613615800244509e-16,
+ 3.3087224502121103e-18,
+ 1.5695752123193698e-16,
+ -2.7689871005212598e-17,
+ -4.359241828154455e-17,
+ -3.3997123175929433e-16,
+ 4.0928896709123804e-16,
+ -2.067951531382569e-17,
+ 1.8262079973639466e-16,
+ 4.868785085487121e-16,
+ -2.9778502051908996e-17,
+ -1.4608009617686469e-16,
+ -2.3151751369593553e-16,
+ 1.0240495983406481e-16,
+ -1.819797347616661e-17,
+ -1.0240495983406481e-16,
+ -5.32208006116618e-16,
+ 5.3068806174105176e-17,
+ -2.392206331503356e-16,
+ -2.747893994901158e-16,
+ -1.9968139987030086e-16,
+ -6.27002904315195e-17,
+ 9.206520217715197e-17,
+ 5.711682129678656e-17,
+ -4.313746894464039e-17,
+ -4.528813853727826e-17,
+ 2.2003004293910534e-16,
+ 5.190558343770248e-17,
+ -5.0062521635357766e-17,
+ -4.032505486196009e-17,
+ -1.2730309627191096e-16,
+ 6.782881022934827e-17,
+ -5.558653716356346e-17,
+ 3.963849495354108e-16,
+ 8.275942028593041e-17,
+ 3.623051082982261e-17,
+ 9.098986738083304e-19,
+ 1.2242273065784808e-17,
+ -1.8479214884434636e-16,
+ -6.799424635185887e-17,
+ -1.2043749718772083e-15,
+ 5.922613185879678e-17
+ ],
+ [
+ 5.145290505354718,
+ 4.209085287779495,
+ -2.8050210072971384,
+ 1.8496568029104756,
+ -0.3754158012991095,
+ -1.3840892390539183,
+ 2.5224332770639086,
+ -0.6960622519844469,
+ -0.5497032679645715,
+ -0.4945280069854582,
+ 3.76539467617391,
+ 1.9116960854301486,
+ -2.8543216358599217,
+ 1.9994587569156574,
+ -0.4952029889403582,
+ -0.686876456358078,
+ -0.6790445065301146,
+ 3.32096696412439,
+ 1.8379586823004008,
+ -2.802625127812722,
+ 1.8468450031685932,
+ -0.37304893879676154,
+ -1.3851238063041051,
+ 2.5217974281742763,
+ -2.921407241233095,
+ 1.5542946816114267,
+ 3.0118653946447718,
+ 0.5358681307474898,
+ -0.008531550765665178,
+ -1.4928312160334336,
+ 2.6153665667965327,
+ -2.898884591030817,
+ 1.4917517736681087,
+ 3.154860013299301,
+ 0.8283330415057047,
+ 0.13750425905416339,
+ -1.665883853409453,
+ 2.665384666876233,
+ -2.8794797573746083,
+ 2.0173273336248543,
+ -0.6003805755087485,
+ -1.091169407455075,
+ 3.5060593758792993,
+ 3.3674567769831762,
+ -0.5059313439214185,
+ -0.6846641710441833,
+ -4.664722322312606,
+ -4.771809394808771,
+ 2.058714171667462,
+ -0.655133668105853,
+ -1.0365756223635663,
+ 2.370921585016307,
+ -2.9276476074710605,
+ 2.4586347423965225,
+ -0.9002328848127658,
+ -2.193373794067038,
+ -2.1574331723656655,
+ -0.8793760364829885,
+ 2.440496394413505,
+ -2.927607987109239,
+ 2.3470841512931298,
+ -0.7642330700356014,
+ -1.8303217262453615,
+ -2.170168326973105,
+ -0.9787819136633444,
+ 2.5420321424581687,
+ -2.918114795207973,
+ 2.271620278560946,
+ -0.8776454643016861,
+ -0.8178008830977764,
+ 2.1724039405988105,
+ -1.8614471428070356,
+ -3.1320785615545588,
+ 1.9501668077929215,
+ 1.3464766376098407,
+ -0.7571917739135222,
+ -1.0109602676362348,
+ 2.3017993784404744,
+ -1.9764318819772222,
+ -3.6529310883013606,
+ 1.9896665753725153,
+ 1.283821102262202,
+ -0.5591122808543699,
+ -1.1301403629165065,
+ 2.3733840108328033,
+ -2.928625136323561,
+ 2.4059143979418516,
+ -1.1813927691660289,
+ 0.8048774152516739,
+ 1.1536775778979116,
+ 3.8086119755798076,
+ 3.198419482714004,
+ -1.7621640267562813,
+ 0.1662833766937204,
+ 1.4030653709078456,
+ -2.640320726750872,
+ 2.863006472690001,
+ -2.236731538290295,
+ 0.6888160566190376,
+ 1.8282974712328905,
+ 2.726609759102154,
+ 1.2078717374421195,
+ -2.69117212055624,
+ 2.8452037577885285,
+ -2.098362064231619,
+ 0.48750017482153735,
+ 1.378302132154544,
+ 2.5346778344219745,
+ 1.2174015784888574,
+ -2.7660727670615137,
+ 2.8024301396201956,
+ -2.0103055258198554,
+ 0.39537435510517305,
+ 1.1979736189572598,
+ -2.4837077143006168,
+ 1.8916817639733106,
+ 3.2694996688555156,
+ -1.5095281551956345,
+ -1.1248519685994394,
+ 0.2729183996118659,
+ 1.3810052107261617,
+ -2.5851979128653677,
+ 1.9024706051481814,
+ 3.5923098154518507,
+ -1.4125632886706345,
+ -1.0108806996733677,
+ 0.06842828484845594,
+ 1.4898348350803299,
+ -2.6421861413596517,
+ 2.848472505356626,
+ -2.1719889585628396,
+ 0.7127383541840622,
+ 0.5552061104801388,
+ 0.41530507311962606,
+ -2.0608668750284678,
+ -2.180585943801814,
+ -5.053309533181581,
+ -5.081860456362073,
+ 2.8599379429840113,
+ -2.214207569425569,
+ 0.775226674989569,
+ 0.9275413219281842,
+ -2.315782618012692,
+ 2.8775919517380424,
+ -1.7199419683072679,
+ -3.473703221860801,
+ -0.01732816345503953,
+ 0.2919998248174918,
+ 1.0452586523906018,
+ -2.3907748891219347,
+ 2.888724789781106,
+ -1.642096983365362,
+ -3.124461233450321,
+ -0.2521726895625812,
+ 0.170891648951995,
+ 1.2314694901950387,
+ -2.5040306009086306,
+ 2.886719986202489,
+ -2.358520448894199,
+ 0.9941742465003762,
+ 0.6158302727552555,
+ -1.2992541900559598,
+ -1.8542867094075013,
+ 3.172063122286984,
+ 1.8734152917274163,
+ -2.281553312541124,
+ 0.8015608254883103,
+ 0.8142295561275731,
+ -1.437334369255271,
+ -2.3193065023523123,
+ 3.5243321024291445,
+ 1.9391023013423372,
+ -2.148544048074253,
+ 0.6781078980057657,
+ 0.9316134406445726,
+ -2.3761438541077706,
+ 2.884097938454735,
+ -2.5367677767586954,
+ 3.1035435700644713,
+ 3.918993897752165,
+ -1.1937870600365295e-15,
+ -1.770290587955362e-15,
+ -3.223936437425425e-16,
+ -2.434806133049837e-16,
+ 1.5426918424113966e-17,
+ 6.170767369645586e-17,
+ 2.2420730503249815e-16,
+ 3.0556051827708837e-16,
+ 4.513097422089319e-16,
+ 8.519960309296185e-18,
+ -1.352233506371062e-16,
+ -5.776202217457792e-16,
+ 2.6304343479186277e-17,
+ -1.3454092663174995e-16,
+ -6.30673518283399e-17,
+ 2.2118809579667958e-16,
+ 7.295733002717704e-17,
+ 1.9959868180904555e-16,
+ 3.1383232440261865e-16,
+ 1.530284133223101e-18,
+ -1.7205356741102976e-17,
+ 1.3888362484765335e-16,
+ -4.933098378113118e-17,
+ -1.1692197958437046e-16,
+ -1.3979352352146168e-16,
+ 4.312919713851486e-16,
+ -1.7701665108634792e-17,
+ 4.830734777309681e-17,
+ -3.456787779859102e-16,
+ -3.0076287072428086e-16,
+ 3.1515581338270354e-17,
+ 4.4585035016608186e-17,
+ -5.1855952600949305e-16,
+ -1.9413928976619557e-16,
+ -6.063233890013693e-17,
+ 5.042493014123257e-16,
+ 6.038418471637102e-17,
+ -8.087758439237227e-17,
+ 2.289222345240504e-16,
+ -5.073925877400272e-16,
+ 1.1200025493967995e-16,
+ -3.207806415480641e-16,
+ -3.7090778666877756e-16,
+ -7.767225951872929e-17,
+ -1.0960143116327615e-16,
+ 1.1785255777349262e-16,
+ 9.928235302167713e-17,
+ 2.544407564213113e-16,
+ 1.5187036046473586e-16,
+ -1.0449359088076121e-16,
+ -5.153335216205362e-17,
+ -1.4541835168682227e-16,
+ -5.750973208774925e-17,
+ -4.8141911650586205e-17,
+ 1.7966362904651759e-16,
+ 3.259091613458929e-17,
+ -7.717595115119747e-17,
+ 1.2023070203458257e-16,
+ -1.8363409598677214e-17,
+ 3.010937429693021e-17,
+ -5.542110104105285e-17,
+ 1.0439019330419208e-16,
+ -3.192917164454687e-17,
+ 2.0348643068804478e-17,
+ 1.8131799027162364e-16,
+ 1.67752228225754e-16,
+ 1.7635490659630548e-16,
+ -3.4203918329067694e-17,
+ 5.794400190933959e-17,
+ -1.0008885411891634e-16,
+ 2.1101377426227734e-16,
+ -5.728225741929717e-17,
+ -1.5716431638507526e-17,
+ 5.765448869494603e-17,
+ 2.6205081805679917e-16,
+ 4.350970022028925e-17,
+ -3.9456515218779414e-17,
+ -8.147729033647323e-18,
+ -9.90135193225974e-17,
+ 1.3350695086605867e-16,
+ 1.019913695277883e-16,
+ 9.446402595355575e-17,
+ -8.850832554317396e-18,
+ -1.6609786700064793e-16,
+ 5.939156798130739e-17,
+ 7.775497757998459e-17,
+ 1.9848198798209897e-16,
+ 1.508674039720153e-16,
+ 5.927576269554996e-16,
+ 2.834747959219226e-16,
+ -1.8495758496685696e-16,
+ -2.567568621364598e-16,
+ -3.067185711346626e-16,
+ 6.203854594147708e-17,
+ 1.2043749718772083e-16,
+ -8.83299647235922e-17,
+ 9.326461406535386e-17,
+ 1.0405932105917087e-16,
+ 2.0927669497591598e-16,
+ 1.7697529205572025e-16,
+ -1.152676183592644e-16,
+ -6.617444900424221e-18,
+ -1.8057352772032592e-16,
+ 4.702521782363962e-17,
+ 2.402959679466545e-17,
+ -1.0910512279574434e-16,
+ 6.097355090281505e-17,
+ -6.55230442718567e-17,
+ -3.143286327701505e-17,
+ 5.436644576004774e-17,
+ 2.4484546131569616e-17,
+ -7.758954145747398e-17,
+ -8.106370003019671e-18,
+ -1.464109684218859e-17,
+ 1.390077019395363e-16,
+ 5.517294685728694e-17,
+ 1.166324663699769e-16,
+ 6.203854594147708e-17,
+ -2.597347123416507e-16,
+ -5.817147657779167e-17,
+ -4.020097777007714e-17,
+ 1.3830459841886623e-16,
+ -2.1208910905859627e-16,
+ 2.3161057151484775e-18,
+ -3.842253945308813e-17,
+ 3.034098486844505e-16,
+ 3.2673634195844593e-17,
+ -2.3243775212740075e-17,
+ 2.957997870489627e-16,
+ 1.9951596374779025e-16,
+ 1.2722037821065566e-16,
+ 1.1572256769616857e-16,
+ 2.298734922284864e-16,
+ -3.4576149604716557e-17,
+ 2.9464173419138846e-16,
+ 1.3334151474354806e-16,
+ -4.582580593543773e-17,
+ -2.3491929396505983e-17,
+ -3.2260043889568075e-18,
+ 1.894243602746433e-17,
+ -2.7710550520526424e-17,
+ -1.7572418137923382e-17,
+ 4.0076900678194185e-17,
+ 2.602310207091825e-16,
+ -1.6948930751211535e-16,
+ -1.9025154088719633e-17,
+ -1.8950707833589862e-16,
+ -3.7090778666877756e-16,
+ 6.782881022934827e-17,
+ 9.553936074987468e-17,
+ 7.336058057579664e-17,
+ -5.724089838866952e-17,
+ -6.291742534231466e-18,
+ 4.575342763183934e-17,
+ 1.99309168594652e-16,
+ -9.098986738083303e-17,
+ 1.369190708928399e-16,
+ 1.7594131629002896e-16,
+ 1.3946265127644047e-16,
+ -2.4070955825293102e-17,
+ -9.165161187087545e-17,
+ 7.957477492760125e-17,
+ 2.7669191489898773e-17,
+ 4.8183270681213856e-17,
+ -6.576085869796569e-18,
+ -1.9769616640017358e-17,
+ 8.366931895973874e-17,
+ -2.885826362044375e-17,
+ 1.5759858620666557e-16,
+ -5.6827308082393e-17,
+ 2.27309232329572e-16,
+ -4.1663019502764616e-16,
+ -2.657317717826601e-18,
+ -4.7314731038033177e-17,
+ -1.7246715771730627e-17,
+ 1.6543612251060553e-17,
+ 1.5348336265921426e-16,
+ 8.197359870400503e-17,
+ 1.1070985318409722e-15,
+ 2.919947562312188e-17
+ ],
+ [
+ -3.3296815472292813,
+ -2.6758015930599974,
+ 1.9719932703899714,
+ -1.9197076826014436,
+ 1.1921801462319237,
+ -0.06644933589546836,
+ -1.0803155943435592,
+ 1.8242609412927169,
+ -0.3239708213479686,
+ -0.9945104301205296,
+ -2.111369042279521,
+ -0.9693213049921403,
+ 1.9348341536885474,
+ -1.962751363418803,
+ 1.2608817395741847,
+ -0.1877270261491693,
+ -0.7069965506967524,
+ -1.937718203249923,
+ -0.9645776693832082,
+ 1.9698707351472946,
+ -1.9179199127807125,
+ 1.1912820327710183,
+ -0.06682754006654665,
+ -1.0788440382094264,
+ 1.8222037652623984,
+ -1.3171995340351859,
+ -2.322007064203154,
+ 0.8032809419886012,
+ 0.6554795496453887,
+ 0.020755151453547078,
+ -1.1970395138874488,
+ 1.8794214652130339,
+ -1.3147422966333246,
+ -2.5297083605223807,
+ 0.7060769700041107,
+ 0.5688074832884494,
+ 0.16252469264145877,
+ -1.2686445151459265,
+ 1.9085305556048124,
+ -1.9684348063237376,
+ 1.317006300788931,
+ -0.29250567425840274,
+ -0.8117777392564071,
+ -0.7110465767091763,
+ 1.273759396846005,
+ 1.3694823801971083,
+ 3.5906526465136626,
+ 3.621547756852626,
+ -1.9794585191134604,
+ 1.3463212882402642,
+ -0.33287858377535395,
+ -0.9034355136486263,
+ 1.726826787781256,
+ -2.04641901538832,
+ 1.124590452356286,
+ 2.3243858899283767,
+ 0.31536193387396944,
+ -0.04484271730238177,
+ -0.9802063899109031,
+ 1.771628263388339,
+ -2.03576780582934,
+ 1.0602134878942278,
+ 2.070529103532742,
+ 0.45332019591944817,
+ 0.039437649642943114,
+ -1.1038595783450011,
+ 1.8346145976531294,
+ -2.025257440643667,
+ 1.4615330006123894,
+ -0.4908256238417894,
+ -0.6946116265157867,
+ 1.016718319071819,
+ 1.5183322227482265,
+ -2.115112307515459,
+ -1.2767284325077248,
+ 1.401194755262598,
+ -0.3504786037105644,
+ -0.8266312964432512,
+ 1.113051766466481,
+ 1.8616588625222414,
+ -2.3249684332213825,
+ -1.3059524900636077,
+ 1.294713417590434,
+ -0.26335316620128857,
+ -0.9061462604350462,
+ 1.7620122663172475,
+ -2.042811828627027,
+ 1.6078785700241287,
+ -1.9133253016894796,
+ -2.4355193793893357,
+ -3.5222110763104473,
+ -2.8930281341543367,
+ 1.8456011986657708,
+ -1.1260982146528657,
+ -0.01103025439662427,
+ 1.1460372326591215,
+ -1.8977928401979836,
+ 1.981392869793805,
+ -1.0624081098676321,
+ -2.258923993550063,
+ -0.7495861700716068,
+ -0.19034003084912515,
+ 1.2170688515988488,
+ -1.9288550093194696,
+ 1.950164233692381,
+ -0.9251372741802859,
+ -1.8810483258673536,
+ -0.8011600475559041,
+ -0.2435078063221944,
+ 1.3267885367401382,
+ -1.9726393975972885,
+ 1.9251508480916444,
+ -1.2572876983569927,
+ 0.14983270415040467,
+ 0.9532597107094515,
+ -1.1354898261103066,
+ -1.773221502589837,
+ 1.939232534325168,
+ 1.2078217565463552,
+ -1.186792838080037,
+ 0.008035624077616996,
+ 1.0768984745279984,
+ -1.1834956791395055,
+ -2.0380877366061982,
+ 2.004808434262214,
+ 1.1698823432273937,
+ -1.068086840691861,
+ -0.08132707236333796,
+ 1.1485188966152928,
+ -1.9230819335145364,
+ 1.9672024616124626,
+ -1.4286736939734066,
+ 1.44175634518811,
+ 1.5120152086959238,
+ 1.9411712164324988,
+ 1.9697683414983658,
+ 2.7352417940727216,
+ 2.7015822085957226,
+ -1.9094442856107487,
+ 1.9779023523705095,
+ -1.460665949354495,
+ 0.3509789192409748,
+ 0.7696608961281366,
+ -1.6969537354801394,
+ 1.3291895814395411,
+ 2.4670017970451887,
+ -1.2321813849403989,
+ -0.8241059991049774,
+ 0.265731457977781,
+ 0.8515132446542731,
+ -1.7724960670179204,
+ 1.3242581906951947,
+ 2.3016023957898875,
+ -0.9868163135880569,
+ -0.7513993021056514,
+ 0.12306898008019493,
+ 0.9777965841631909,
+ -1.8152029988056109,
+ 2.00425287712332,
+ -1.5695126239338326,
+ 0.5713636301896516,
+ 0.3191252383906851,
+ 0.179810557738248,
+ -2.283371513354568,
+ -1.235650352878239,
+ 1.9923782190919797,
+ -1.4730627130034204,
+ 0.43395682986356315,
+ 0.4010738382119999,
+ 0.3783256158064194,
+ -2.6396332744354187,
+ -1.3426784708613202,
+ 1.9629401730670935,
+ -1.410392312711336,
+ 0.3480025279275313,
+ 0.8340969835471922,
+ -1.7345752314109406,
+ 2.020003816496042,
+ -2.873650185955383,
+ -3.5491338143340165,
+ 7.6022034196686e-16,
+ 1.6374867406099734e-15,
+ 2.0948801377302913e-16,
+ 8.478601278668532e-17,
+ -9.117598301865746e-17,
+ -1.5087774372967222e-16,
+ -2.2830184906463564e-16,
+ -1.5180832191879438e-16,
+ -1.8936232172870184e-16,
+ -4.5760536215228465e-17,
+ 9.953050720544304e-17,
+ 3.999004671387612e-16,
+ -6.720842476993349e-19,
+ 6.365154813595548e-17,
+ -5.0830248641383544e-17,
+ -3.456787779859102e-16,
+ -8.511688503170654e-17,
+ 8.737095220091355e-19,
+ -1.314389993346761e-16,
+ 1.3571965900463802e-16,
+ 2.99439381744196e-17,
+ -2.1134464650729854e-17,
+ -1.2176098616780567e-16,
+ 4.748016716054378e-17,
+ 2.148601641106489e-17,
+ -4.378266982243175e-16,
+ 2.0927669497591597e-17,
+ 2.2995621028974166e-17,
+ 4.2732150444489405e-16,
+ 2.952414401354894e-16,
+ -6.129408339017935e-17,
+ 2.225115847767644e-17,
+ 1.5300773380699627e-16,
+ 5.791944498490442e-17,
+ -2.3057659574915643e-17,
+ -3.844735487146472e-16,
+ -1.1034589371457388e-16,
+ 4.053185001509835e-17,
+ -8.139457227521791e-17,
+ 4.511443060864213e-16,
+ -1.0951871310202085e-16,
+ 1.1167972245231565e-16,
+ 3.654483946259276e-16,
+ 2.311969812085712e-17,
+ 1.429213002126778e-17,
+ -1.4988512699460861e-16,
+ -6.344475298281722e-17,
+ -1.6295458067294643e-16,
+ -3.176373552203626e-17,
+ 7.31641251803153e-17,
+ -1.2490427249550716e-17,
+ 2.99439381744196e-17,
+ 1.0943599504076555e-16,
+ -1.431022459716738e-17,
+ -1.555099551599692e-17,
+ -1.6874484496081765e-17,
+ 1.0350097414569757e-17,
+ 4.6652986547990755e-17,
+ 2.580803511165446e-17,
+ 8.205631676526033e-17,
+ 7.878895334567587e-17,
+ 4.6694345578618406e-17,
+ 1.0674765804996821e-16,
+ -5.422168915285096e-17,
+ -2.0464448354561902e-16,
+ -1.5013328117837452e-16,
+ -1.654361225106055e-19,
+ 1.1787323728880643e-17,
+ 3.680953725860973e-18,
+ 8.040195554015428e-17,
+ 1.0753347963189358e-17,
+ 5.872982349126496e-18,
+ 1.1075948402085039e-16,
+ -5.0106465605399645e-17,
+ -1.5062958954590634e-16,
+ -5.397353496908505e-17,
+ 2.39882377640378e-18,
+ 1.225054487191034e-16,
+ 9.690420876058718e-17,
+ -8.644037401179138e-17,
+ -3.6127113253253484e-17,
+ -1.654361225106055e-19,
+ -7.635911029630135e-17,
+ 2.0596797252570386e-17,
+ -5.709614178147274e-17,
+ -7.297800954249087e-17,
+ -5.608284553109528e-17,
+ -3.263227516521694e-17,
+ 8.983181452325879e-17,
+ -2.1175823681357506e-16,
+ -1.7079211697688636e-16,
+ 3.35504456451508e-16,
+ 1.6396787692332389e-16,
+ -9.202384314652432e-17,
+ -8.908735197196107e-17,
+ -5.343586757092558e-17,
+ -1.1005638050018032e-16,
+ -2.3946878733410148e-17,
+ -9.36161658256889e-17,
+ -1.3507859402990942e-16,
+ 1.0029564927205459e-16,
+ -2.2664748783952955e-17,
+ -1.1384073180261042e-17,
+ -6.873353902432814e-17,
+ -7.175791813897515e-17,
+ 1.2407709188295413e-18,
+ -1.923194924185789e-17,
+ 3.610643373793966e-17,
+ 7.097209655704977e-17,
+ -1.1663246636997689e-17,
+ -3.9048094791331357e-17,
+ 1.2424252800546476e-16,
+ 9.859992901632089e-17,
+ -5.1409275070170664e-17,
+ -5.235019301694973e-17,
+ -2.2302857265961006e-17,
+ -6.344475298281722e-17,
+ -2.1837568171399928e-17,
+ 1.9438744394996148e-16,
+ -2.8951321439355965e-18,
+ 3.1515581338270354e-17,
+ -1.943874439499615e-18,
+ 1.348304398461435e-16,
+ -1.8146274687882045e-17,
+ 9.45881030454387e-17,
+ 5.70754622661589e-18,
+ -3.265295468053077e-17,
+ 5.430440721410626e-17,
+ -1.4740358515694953e-16,
+ -8.87151206963122e-17,
+ 1.4889251025954498e-17,
+ -3.6023715676684355e-17,
+ 4.9382682569415746e-17,
+ -7.378451063973007e-17,
+ -9.485693674451844e-17,
+ -2.5497842381947075e-17,
+ -6.59262948204763e-17,
+ 1.2126467780027386e-16,
+ -5.1347236524229187e-17,
+ 3.21980053436266e-17,
+ -1.1464723289984964e-16,
+ 1.225054487191034e-16,
+ -1.8363409598677214e-17,
+ -7.856147867722379e-17,
+ -1.8363409598677214e-17,
+ -2.576667608102681e-17,
+ 6.692925131319685e-17,
+ 1.299914332627083e-16,
+ -7.0351711097635e-17,
+ 3.5155176033503676e-17,
+ 1.9976411793155616e-16,
+ 2.776845316340514e-16,
+ 8.867376166568455e-17,
+ -2.6366382025127754e-17,
+ -7.593518023236793e-17,
+ 3.490702184973777e-17,
+ 6.609173094298691e-17,
+ -6.822172102031096e-17,
+ -1.3259705219225034e-16,
+ 8.974909646200349e-17,
+ 1.522012327097571e-17,
+ -9.89308012613421e-17,
+ 2.0844951436336294e-17,
+ -4.68313473675725e-17,
+ -1.617965278153722e-16,
+ 4.549493369041652e-18,
+ -1.4847116513502578e-16,
+ 4.632211430296955e-18,
+ -1.9024120112953943e-16,
+ 1.1948623948328485e-16,
+ -5.81921560931055e-17,
+ 2.1905681324964842e-16,
+ -1.2387029672981588e-17,
+ 6.667075737177403e-17,
+ -2.3864160672154845e-17,
+ -1.419028340834719e-16,
+ -1.4893386929017263e-16,
+ -8.62956174045946e-17,
+ -7.45868758339065e-16,
+ -1.5395899151143225e-16
+ ],
+ [
+ 4.978004536454041,
+ 3.8521997030084187,
+ -3.5424045355333504,
+ 4.9906451945434736,
+ -4.822764705249744,
+ 2.959076593526024,
+ -0.19925964170998772,
+ -2.6290488773303533,
+ 3.05282241369145,
+ 5.544424771084937,
+ 2.15250908278934,
+ 0.6226278173049469,
+ -3.268959781406413,
+ 4.893587030969826,
+ -4.893339679834313,
+ 2.2321629894292574,
+ 4.595687270409792,
+ 2.2446241629179546,
+ 0.7481796030745479,
+ -3.5375889446211346,
+ 4.988130030525153,
+ -4.823331255866931,
+ 2.9627435947774217,
+ -0.20463721218625153,
+ -2.6237282860616755,
+ 2.930471233650707,
+ 4.622826244418904,
+ -4.7509331666430015,
+ -2.986270399012299,
+ 2.7814545574443086,
+ 0.1548543107118846,
+ -2.9260219448226183,
+ 3.0441627367544077,
+ 5.288914751391878,
+ -4.889765741342913,
+ -2.880871016075938,
+ 2.4727217842676588,
+ 0.37818774481922146,
+ -3.103042320238494,
+ 4.8792401011344015,
+ -4.94542510890192,
+ 3.409591471264593,
+ -3.2840478994091433,
+ -3.46871211582304,
+ -4.825620973810296,
+ -4.9071900092222345,
+ -7.1342596294811225,
+ -7.061766567225614,
+ 4.847109846668434,
+ -4.970403076956689,
+ 3.4855195259885168,
+ -0.7068310305059089,
+ -2.1744042870348212,
+ 4.355057122891887,
+ -3.3544816457382565,
+ -6.268771353559358,
+ 2.8645294356783717,
+ 1.9620174294099177,
+ -0.4891896250348181,
+ -2.374897637690859,
+ 4.533902050836646,
+ -3.331164664622649,
+ -5.830794505906271,
+ 2.2578523080840163,
+ 1.7744107162951483,
+ -0.13028036713911836,
+ -2.6873384038429196,
+ 4.631600324580792,
+ -5.0536232979145135,
+ 3.77204597870533,
+ -1.267052364632497,
+ -0.9401915504871131,
+ -0.7004419193042976,
+ 5.795587309735358,
+ 3.1601554887544046,
+ -5.0129056306198585,
+ 3.519705205108637,
+ -0.9157807918278553,
+ -1.1518757339973729,
+ -1.233082337198472,
+ 6.678143376803319,
+ 3.419185743866063,
+ -4.925554749023111,
+ 3.353734564623982,
+ -0.6993003380129945,
+ -2.3334763785038395,
+ 4.443542608632307,
+ -5.1173734889076545,
+ 7.158720728268956,
+ 8.85453288580854,
+ 8.530275548214194,
+ 6.866411988697344,
+ -5.046456392288317,
+ 4.717026522184071,
+ -2.8624031484290007,
+ -0.087091661537931,
+ 2.866128332392405,
+ -4.720699676500881,
+ 3.491840517043576,
+ 6.69785332756946,
+ -2.012081144849932,
+ -1.540691205388327,
+ -0.30610762124540036,
+ 3.048828325066471,
+ -4.849136426694222,
+ 3.26504329655041,
+ 5.865426262890744,
+ -1.3923907695558548,
+ -1.3161298937815382,
+ -0.6640376509528909,
+ 3.329981505778292,
+ -4.91531211298255,
+ 4.86071565319398,
+ -3.189944948372605,
+ 0.4833872454599941,
+ 1.42391400286345,
+ 1.5936278229293976,
+ -5.869973716288219,
+ -3.287131239304729,
+ 4.7871876541635485,
+ -2.901006780402442,
+ 0.12447250053237216,
+ 1.6223390162293592,
+ 2.162424280182925,
+ -6.364133268839272,
+ -3.34097188664426,
+ 4.646934235842434,
+ -2.713806321982476,
+ -0.09470314146100337,
+ 3.0111164805536568,
+ -4.785181785396265,
+ 5.011463443499812,
+ -7.712186900496258,
+ -7.754531689655499,
+ -4.737983223915651,
+ -4.619683691387655,
+ -2.4381123459696363,
+ -2.233130247933667,
+ 2.92680978486881,
+ -4.749877034502039,
+ 5.03380074236795,
+ -3.571213363827315,
+ 0.9890162294570047,
+ 1.9168704499824996,
+ -2.6545068876229085,
+ -4.364612272106044,
+ 5.680306282271972,
+ 3.1926650046396094,
+ -3.410912527509403,
+ 0.7686375805392542,
+ 2.2455935939891725,
+ -2.787401073267734,
+ -4.3043915282620855,
+ 5.025152793123191,
+ 3.101433962727333,
+ -3.134064888230606,
+ 0.41139529183512374,
+ 2.440414765358932,
+ -4.582166986818576,
+ 5.094993892506281,
+ -3.958321953711688,
+ 1.1331208212753427,
+ 2.8801295607034043,
+ 4.125685669403217,
+ 1.9193320353868903,
+ -4.6766208584324005,
+ 5.042730050273794,
+ -3.720227132342263,
+ 1.0334774061354544,
+ 2.8994744850461602,
+ 5.054291027346469,
+ 2.2784862915639637,
+ -4.812311304182118,
+ 4.997369781482115,
+ -3.565739399537976,
+ 0.8145254682284678,
+ 2.076000517723718,
+ -4.29822952390877,
+ 6.967140350844759,
+ 8.433130660490747,
+ -8.371067799036639e-17,
+ -1.130259588992457e-15,
+ -2.6767564622215976e-16,
+ 3.7119729988317117e-17,
+ 5.0757870337785155e-17,
+ 4.896909226313923e-17,
+ 3.1912628032295803e-16,
+ 3.185472538941709e-16,
+ -1.406207041340147e-17,
+ 2.359119107001235e-16,
+ -4.17726209339279e-18,
+ -4.842883992556554e-16,
+ 9.988205896577808e-17,
+ -2.4989126305226966e-16,
+ 2.9116757561866574e-17,
+ 2.914958629242727e-16,
+ 2.4401828070314313e-17,
+ -2.3905519702782497e-17,
+ 2.43563331366239e-16,
+ -1.207270104021144e-16,
+ 7.444625512977249e-17,
+ 7.974021105011186e-17,
+ 5.111976185577711e-16,
+ 4.3199507490581864e-17,
+ 1.0075059860895876e-16,
+ 7.497565072180642e-16,
+ -1.3284520637601624e-16,
+ -8.238718901028154e-17,
+ -5.063172529437082e-16,
+ -3.0842463114805323e-16,
+ 3.7984133728435026e-16,
+ -2.163077301826167e-17,
+ 2.4732700315335524e-17,
+ -1.7494869955496535e-17,
+ 1.381184827810418e-16,
+ 3.6065074707312e-16,
+ 1.9769127924909356e-16,
+ -9.256151054468378e-17,
+ -2.9116757561866574e-17,
+ -6.438567092959628e-16,
+ 3.7322389238392604e-16,
+ 2.1713491079516973e-17,
+ -4.1822251770681074e-16,
+ 5.591740940858467e-17,
+ 3.523789409475898e-17,
+ 1.3698110943878138e-16,
+ 1.6378176128549945e-16,
+ -1.0836066024444661e-17,
+ -2.862044919433476e-16,
+ 1.9686898578762056e-17,
+ 2.754511439801582e-16,
+ 5.4759356551010426e-17,
+ -1.9550413777690807e-16,
+ -1.3019822841584656e-16,
+ -4.480010197587198e-16,
+ -1.0132962503774587e-17,
+ -2.50801161726078e-16,
+ 2.3001824883568317e-16,
+ -2.0944213109842658e-16,
+ -3.8885760596117826e-16,
+ -1.3003279229333595e-16,
+ -1.3681567331627078e-16,
+ -2.6701390173211733e-16,
+ 1.1233112718470116e-16,
+ 2.7483075852074344e-16,
+ 2.476578753983765e-16,
+ -3.3434640359393374e-16,
+ 6.935909436257137e-17,
+ -1.0587911840678753e-17,
+ 1.5302841332231012e-17,
+ -8.222175288777094e-17,
+ 1.3350695086605867e-16,
+ -1.8470943078309106e-16,
+ 7.17165591083475e-17,
+ -9.926167350636331e-17,
+ -2.3781442610899543e-17,
+ -8.39588321741323e-17,
+ -3.0539508215457777e-16,
+ 2.69660879692287e-17,
+ 5.245359059351886e-17,
+ 1.8677738231447362e-16,
+ 2.785117122466044e-16,
+ 6.476824196290207e-17,
+ 1.4789989352448135e-16,
+ 4.2806596699619176e-17,
+ 7.634877053864444e-17,
+ -1.5096046179092753e-18,
+ -4.135903062765138e-17,
+ -8.566282423599154e-16,
+ -1.5418646617988433e-16,
+ 2.649045911701071e-16,
+ -1.1276126110322873e-15,
+ -4.2500539872974557e-16,
+ 1.406207041340147e-17,
+ -2.4815418376590826e-18,
+ 7.494256349730431e-17,
+ 4.294721740375319e-16,
+ -3.29217883796105e-17,
+ 3.752091258540533e-16,
+ 2.0514079191315084e-16,
+ -8.189088064274973e-17,
+ 4.307543039869891e-16,
+ 9.876536513883149e-17,
+ 2.2929446579969927e-16,
+ 1.7354249251362518e-16,
+ -5.872982349126496e-17,
+ -2.831025646462737e-17,
+ 4.4729791623804965e-17,
+ 6.253485430900889e-17,
+ 2.0514079191315083e-17,
+ 2.0835645654445073e-16,
+ -2.3194144375986896e-16,
+ -2.7983520122668926e-16,
+ 1.710609506759661e-16,
+ -1.255660169855496e-16,
+ -1.4574922393184348e-16,
+ -4.394397004187959e-17,
+ -6.038418471637101e-18,
+ -4.8803656140628627e-17,
+ 1.7635490659630548e-16,
+ 6.915229920943311e-17,
+ -5.012714512071347e-17,
+ -1.1818343001851383e-16,
+ 6.104592920641344e-17,
+ -4.585889315993985e-16,
+ -2.602310207091825e-16,
+ -1.316044354571867e-16,
+ -4.4915907261629397e-17,
+ 1.0273583207908602e-16,
+ 1.3833561769183697e-16,
+ -1.2018934300395492e-16,
+ -3.370760996153588e-17,
+ 2.5585730322030837e-16,
+ 1.435985543392056e-16,
+ -1.0430747524293678e-16,
+ -7.411538288475128e-17,
+ 2.074362181129855e-16,
+ 5.811770983797572e-16,
+ 3.394749233917625e-16,
+ -4.2517083485225616e-17,
+ 5.7538683409188605e-16,
+ -2.379385032008784e-16,
+ -9.694556779121483e-17,
+ -1.9356026333740845e-16,
+ 4.516406144539531e-16,
+ 7.349499742533651e-17,
+ -7.047578818951796e-17,
+ 4.268251960773622e-17,
+ 1.981924747677054e-16,
+ -2.0844951436336295e-16,
+ -5.227781471335135e-16,
+ -4.999479622270499e-16,
+ -1.495542547495874e-16,
+ -5.062345348824529e-17,
+ -1.842544814461869e-16,
+ 3.6354587921705566e-17,
+ -3.2872157542857315e-16,
+ -2.7669191489898776e-16,
+ 2.481541837659083e-16,
+ -2.1771393722395686e-16,
+ 2.808278179617529e-17,
+ 1.5162220628096995e-16,
+ -1.0244631886469247e-16,
+ 3.647866501358852e-17,
+ 3.5237894094758974e-16,
+ 4.359241828154455e-17,
+ 2.3508473008757047e-16,
+ -1.593149859777131e-16,
+ 4.01348033210729e-16,
+ -4.496217767714409e-16,
+ 2.456726419282492e-16,
+ -4.0300239443583503e-16,
+ 2.63374307036884e-16,
+ -1.9008610476468574e-16,
+ 6.352747104407253e-17,
+ 2.2259430283801975e-16,
+ 1.0273583207908602e-16,
+ 9.446402595355575e-17,
+ 2.873625448009218e-16,
+ 6.160841202294949e-16
+ ],
+ [
+ 4.095758353864241,
+ 3.197223046467971,
+ -2.807517245199776,
+ 3.7050945625874867,
+ -3.403100901231036,
+ 1.895239639566668,
+ 0.1715049500409805,
+ -2.185648496834549,
+ 2.3298571987938748,
+ 4.088353216445262,
+ 1.958961616059916,
+ 0.6669891971620939,
+ -2.6231384416388766,
+ 3.6556312501041135,
+ -3.466997697710376,
+ 1.471291068016038,
+ 3.118851106052621,
+ 1.968916015314369,
+ 0.7454619359946986,
+ -2.8038652466186647,
+ 3.7029956453430413,
+ -3.403206274500216,
+ 1.8976718031137976,
+ 0.16767966938073822,
+ -2.1816946702490596,
+ 2.231198616861821,
+ 3.5880343408943847,
+ -3.2444717662809266,
+ -2.081494973515813,
+ 1.7581188411298077,
+ 0.42942919911342137,
+ -2.389661728603573,
+ 2.3027734523148644,
+ 4.069520842876966,
+ -3.3055135958814015,
+ -1.9902500634281504,
+ 1.522034912443028,
+ 0.5912349288836604,
+ -2.510503931861451,
+ 3.6479271580533124,
+ -3.5159968213065294,
+ 2.244840370411948,
+ -1.8601771137714413,
+ -2.0057362985701657,
+ -3.4236002230154416,
+ -3.502231825775838,
+ -5.539310205396246,
+ -5.501880041115309,
+ 3.630590140785192,
+ -3.540076125260417,
+ 2.304397765416078,
+ -0.200594174836152,
+ -1.8694211866254318,
+ 3.336580090316934,
+ -2.4468027368245764,
+ -4.634863580041715,
+ 1.7324403386592244,
+ 1.2596034639790668,
+ -0.04059590606748528,
+ -2.0092092250102276,
+ 3.447455009906011,
+ -2.4139671893622787,
+ -4.2854477228348165,
+ 1.308231883300094,
+ 1.1167761647024013,
+ 0.2219469224283738,
+ -2.2256040442499376,
+ 3.506428010562811,
+ -3.6252046499443593,
+ 2.530706374442386,
+ -0.6151049310257195,
+ -0.8820967301726368,
+ -0.8700815340881018,
+ 4.275542871243687,
+ 2.3658604055528554,
+ -3.5822578418272624,
+ 2.3312268303393457,
+ -0.35471161544516333,
+ -1.0435997888592612,
+ -1.3047006045980136,
+ 4.895217748781947,
+ 2.538677065445358,
+ -3.497122215058286,
+ 2.2011727594265853,
+ -0.19504858338167683,
+ -1.980367271947683,
+ 3.39180593833427,
+ -3.706676286675567,
+ 5.0854778715495295,
+ 6.309457845318802,
+ 6.407453334014666,
+ 5.1738403803104775,
+ -3.7281237038724853,
+ 3.3091057545404534,
+ -1.8203992558912576,
+ -0.38019630324578113,
+ 2.348620746945465,
+ -3.5590714933538234,
+ 2.5167047420278585,
+ 4.88926353028144,
+ -1.0691216692577417,
+ -0.9260000432276094,
+ -0.5390968110247534,
+ 2.4736192876570495,
+ -3.631785267716797,
+ 2.334140334287871,
+ 4.254433079794314,
+ -0.6608153981896909,
+ -0.7683913389199156,
+ -0.7974816425541817,
+ 2.66439008142995,
+ -3.667029367581565,
+ 3.4371502126807427,
+ -2.073604203568615,
+ 0.036345945284354586,
+ 1.2227831857255749,
+ 1.5091091197704924,
+ -4.273608287644265,
+ -2.4272850586770693,
+ 3.3708714731896747,
+ -1.8500943988512908,
+ -0.22619602017065646,
+ 1.3623359679502094,
+ 1.944754269288691,
+ -4.606045883926582,
+ -2.450889940866058,
+ 3.2483267306105343,
+ -1.706285628612514,
+ -0.3857280593014634,
+ 2.4478582287501935,
+ -3.596091778449417,
+ 3.580902190331606,
+ -5.305198712645447,
+ -5.351765362093184,
+ -3.5531735608771413,
+ -3.4856022161451334,
+ -2.3150605653169625,
+ -2.1755928125220665,
+ 2.3904970208992884,
+ -3.5766468705566297,
+ 3.604074576713713,
+ -2.3722196755483846,
+ 0.40909399168977484,
+ 1.6890785339589598,
+ -2.0591523793708117,
+ -3.464490645364458,
+ 3.9551970261523115,
+ 2.259865189909847,
+ -2.246295681914373,
+ 0.24629913886523538,
+ 1.9193358026542247,
+ -2.142239365144924,
+ -3.379929306792983,
+ 3.4701220549443903,
+ 2.181532949529173,
+ -2.030591799280351,
+ -0.016284337933342666,
+ 2.054932022527332,
+ -3.477417680371079,
+ 3.673422120363195,
+ -2.6799353960775942,
+ 0.630908974772302,
+ 1.7802896863836772,
+ 3.2612392949147333,
+ 1.5656986648668623,
+ -3.5339473992674995,
+ 3.6133953165386896,
+ -2.489969852270212,
+ 0.5446444392439383,
+ 1.737035564992186,
+ 3.9511520939039495,
+ 1.8239261287352104,
+ -3.6121360946995815,
+ 3.5668446005243895,
+ -2.367907545439785,
+ 0.2801628508637921,
+ 1.8007422505233048,
+ -3.3013544281552867,
+ 5.232439945699639,
+ 6.353240993505808,
+ -1.8429584047681454e-16,
+ -9.787201007727423e-16,
+ -2.2991485125911404e-16,
+ 2.1093105620102206e-18,
+ 4.2837615972589915e-17,
+ 3.821574429994987e-17,
+ 2.547716286663325e-16,
+ 2.5841122336156585e-16,
+ 3.8050308177439267e-17,
+ 1.6163109169286158e-16,
+ -2.518764965223969e-17,
+ -4.072416950751693e-16,
+ 6.526455033043388e-17,
+ -1.94801034256238e-16,
+ 1.9438744394996147e-17,
+ 2.382693754458996e-16,
+ 2.2706107814580607e-17,
+ 1.8906246875665136e-17,
+ 1.982648530713038e-16,
+ -6.29484446152854e-17,
+ 3.838118042246048e-17,
+ 6.311388073779601e-17,
+ 3.4741585727227157e-16,
+ 2.1982324778596707e-17,
+ 7.146840492458159e-17,
+ 6.018566136935829e-16,
+ -8.867376166568455e-17,
+ -5.1781506345819526e-17,
+ -3.9167002004385855e-16,
+ -2.4294294590682423e-16,
+ 2.628779986693522e-16,
+ -1.377255719900791e-17,
+ -4.293067379150213e-17,
+ -2.787598664303703e-17,
+ 9.60356691174065e-17,
+ 3.123433993000232e-16,
+ 1.5380389514657856e-16,
+ -7.039307012826266e-17,
+ -1.819797347616661e-18,
+ -4.971458879020265e-16,
+ 2.7098436867237187e-16,
+ -2.3864160672154845e-17,
+ -3.3227845206255117e-16,
+ 2.6304343479186277e-17,
+ 2.134125980386811e-17,
+ 1.0257039595657542e-16,
+ 1.3019822841584656e-16,
+ 2.2912902967718864e-17,
+ -2.0042586242159858e-16,
+ 2.150669592637872e-18,
+ 1.833032237417509e-16,
+ 2.1837568171399928e-17,
+ -1.354986466847215e-16,
+ -9.769003034251256e-17,
+ -2.9166388398619756e-16,
+ 5.666187195988239e-18,
+ -1.936016223680361e-16,
+ 2.01087606911641e-16,
+ -1.5964585822273432e-16,
+ -2.8264761530936956e-16,
+ -1.048865016717239e-16,
+ -8.883919778819516e-17,
+ -1.890934880296221e-16,
+ 7.990564717262246e-17,
+ 2.2813641294212503e-16,
+ 1.967449086957376e-16,
+ -2.235869195730834e-16,
+ 4.754220570648526e-17,
+ 9.59529510561512e-18,
+ 6.948317145445432e-18,
+ -4.946540063067105e-17,
+ 7.709323308994217e-17,
+ -1.256487350468049e-16,
+ 6.112864726766875e-17,
+ -5.426304818347861e-17,
+ -5.4904113158207204e-18,
+ -6.621580803486987e-17,
+ -2.0265925007549176e-16,
+ 2.3657365519016588e-17,
+ 4.516535391510242e-17,
+ 1.3913177903141925e-16,
+ 2.1167551875231976e-16,
+ 3.498973991099307e-17,
+ 8.577862952174896e-17,
+ 4.006656092053727e-17,
+ 6.55954225754551e-17,
+ 2.3404041456422224e-17,
+ -1.141509245323178e-17,
+ -5.346895479542771e-16,
+ -9.959254575138452e-17,
+ 1.7333181995136558e-16,
+ -8.476946917443427e-16,
+ -3.393094872692519e-16,
+ 1.0091603473146936e-17,
+ 6.865599084190129e-18,
+ 4.863822001811802e-17,
+ 3.326093243075724e-16,
+ -3.639594695233322e-18,
+ 2.8008335541045517e-16,
+ 1.5799149699762826e-16,
+ -6.815968247436948e-17,
+ 3.010523839386744e-16,
+ 3.9787387463800625e-17,
+ 1.7834014006643274e-16,
+ 1.3387918214170753e-16,
+ -3.821574429994987e-17,
+ -1.2190574277500244e-17,
+ 2.3471249881192157e-17,
+ 4.015961873944949e-17,
+ 1.522012327097571e-17,
+ 1.4807566940464887e-16,
+ -1.7668577884132669e-16,
+ -2.013357610954069e-16,
+ 1.1539169545114736e-16,
+ -7.130296880207099e-17,
+ -9.578751493364059e-17,
+ -1.565439309256605e-17,
+ 4.4667753077863494e-18,
+ -4.417144471033167e-17,
+ 1.1762508310504054e-16,
+ 4.510202289945383e-17,
+ -2.2956846937760743e-17,
+ -7.947137735103212e-17,
+ 4.648755042548015e-17,
+ -3.2342761950823377e-16,
+ -1.5471896369921535e-16,
+ -9.582887396426824e-17,
+ -2.961306592939839e-17,
+ 1.0538281003925571e-16,
+ 1.1605343994118978e-16,
+ -6.452008777913616e-17,
+ -1.2449068218923065e-17,
+ 2.489606848631475e-16,
+ 8.362795992911109e-17,
+ -3.9787387463800625e-17,
+ -2.91374370771804e-17,
+ 1.3778761053602058e-16,
+ 4.493245087388046e-16,
+ 2.4120586662046287e-16,
+ -3.077111878697263e-17,
+ 4.0581480851851533e-16,
+ -1.6423671062240362e-16,
+ -6.973132563822023e-17,
+ -1.01908651466533e-16,
+ 2.934836813338142e-16,
+ 5.211237859084074e-17,
+ -7.775497757998459e-17,
+ -1.6874484496081765e-17,
+ 1.5071230760716162e-16,
+ -1.348304398461435e-16,
+ -3.4667139472097385e-16,
+ -3.603198748280988e-16,
+ -1.0075059860895876e-16,
+ -2.5063572560356735e-17,
+ -8.610950176677017e-17,
+ 2.2799165633492822e-17,
+ -2.0811864211834174e-16,
+ -1.8768728098828195e-16,
+ 2.0348643068804478e-16,
+ -1.492233825045662e-16,
+ 5.4800715581638076e-18,
+ 9.390567904008245e-17,
+ -6.927637630131607e-17,
+ 3.149490182295653e-17,
+ 2.2896359355467806e-16,
+ 2.7379678275505213e-17,
+ 1.6940658945086004e-16,
+ -1.1994118882018901e-16,
+ 3.0142461521432324e-16,
+ -3.368796442198774e-16,
+ 1.9852334701272662e-16,
+ -3.394749233917625e-16,
+ 1.9372569945991906e-16,
+ -1.3921449709267456e-16,
+ 4.408872664907637e-17,
+ 1.5197375804130498e-16,
+ 8.486873084794063e-17,
+ 6.8573272780646e-17,
+ 3.098618574623641e-16,
+ 4.681842267050137e-16
+ ],
+ [
+ 4.476115531749718,
+ 3.7806560999403374,
+ -1.962578981218122,
+ -0.09237626141886718,
+ 2.114602335861608,
+ -3.498842844365732,
+ 3.6514434552795656,
+ -2.6214221159071944,
+ 0.6676875869932525,
+ 1.9592675641398836,
+ 4.081648251992188,
+ 2.3265321530569647,
+ -2.1803924229026217,
+ 0.16747046473866603,
+ 1.9845707848462082,
+ -2.1639847050700984,
+ -3.4311973544350605,
+ 3.4126899036881286,
+ 2.15591308235315,
+ -1.9618065083828673,
+ -0.0949571901961765,
+ 2.118195262363059,
+ -3.502236520763178,
+ 3.653450907809681,
+ -2.6214785712040816,
+ 0.580610603665714,
+ 1.6959924672976687,
+ 3.3157102499311017,
+ 1.6030054126980953,
+ -3.5555530157213306,
+ 3.5881032962651664,
+ -2.427932418291695,
+ 0.43199430513317194,
+ 1.5349716747284392,
+ 3.7982290684487534,
+ 1.7494568275835958,
+ -3.6283838437022706,
+ 3.538307545811078,
+ -2.303854327051828,
+ 0.20137289261280056,
+ 1.8675556541424212,
+ -3.3343652508078336,
+ 6.660324697553292,
+ 6.567090883772829,
+ 1.9047559253540993,
+ 1.6998711257907761,
+ -2.640359119087257,
+ -2.82879629476656,
+ 0.2763955491793835,
+ 1.804796664248607,
+ -3.299369893122286,
+ 3.714806524338051,
+ -2.8731187331906165,
+ 1.0996270759421256,
+ 0.5598756860182214,
+ 0.3343925679919187,
+ -4.5546137784426755,
+ -2.28607546620022,
+ 3.6927294869270755,
+ -2.7659446662885894,
+ 0.8462156806962099,
+ 0.7367269603017879,
+ 0.6032988128359967,
+ -4.244280481928289,
+ -2.32310576736213,
+ 3.6413878558813906,
+ -2.582446650733492,
+ 0.6895659225337569,
+ 1.5397622465017289,
+ -3.1494932431310994,
+ 3.741181491199234,
+ -2.084796573504049,
+ -3.9845800035031855,
+ -0.4172772394644118,
+ 0.1668898205417733,
+ 1.684247405535706,
+ -3.283428239544366,
+ 3.730184579193328,
+ -2.130516913790732,
+ -4.422159321418596,
+ -0.8395040691819291,
+ -0.060466800132685586,
+ 1.9142589902677867,
+ -3.358405413880007,
+ 3.71414473491851,
+ -2.7885108671932866,
+ 0.978412724241862,
+ 1.151069694930198,
+ -2.749944925829565,
+ -3.181097412431018,
+ 0.6928986276640998,
+ 0.7426185907463189,
+ 0.30362330010285593,
+ -2.289564060247991,
+ 3.5321381312937827,
+ -3.6016314033252295,
+ 2.4681964390638185,
+ -0.5336651075235936,
+ -0.9286720172274261,
+ -1.0749566952575493,
+ 4.8866066489542535,
+ 2.515889652749293,
+ -3.555341720949822,
+ 2.3433055526756363,
+ -0.27275124130607464,
+ -1.0864894865876278,
+ -1.2517052246071325,
+ 4.284109501172478,
+ 2.4077310726917576,
+ -3.464837141948796,
+ 2.1329941622898616,
+ -0.11297744153654911,
+ -2.0481669524919472,
+ 3.4235830693279237,
+ -3.6919615647184476,
+ 1.8653505525285692,
+ 3.693056253439126,
+ 1.0713723715378143,
+ 0.21052472544408368,
+ -2.18030034265939,
+ 3.5210211322686433,
+ -3.6405640876459784,
+ 1.7730718152629303,
+ 3.835163950437453,
+ 1.4736866107513464,
+ 0.39841934410804086,
+ -2.3880348317030036,
+ 3.572702168249478,
+ -3.6001278270220376,
+ 2.3695201913223474,
+ -0.40855623175175115,
+ -1.6873980894354752,
+ 4.94328587760461,
+ 4.771238734707816,
+ -0.31947800070949345,
+ -0.5529666854055225,
+ -5.721465387003974,
+ -5.870422905734326,
+ 2.4307909448877174,
+ -0.486456507009844,
+ -1.6125819738917877,
+ 3.2529759482910463,
+ -3.7314080138172545,
+ 3.001823190623677,
+ -0.9606191099345204,
+ -2.479031430609853,
+ -3.0958920954465583,
+ -1.3197075982420508,
+ 3.328984809718331,
+ -3.71801310992564,
+ 2.838272320765406,
+ -0.7803082847626314,
+ -2.0250662960927444,
+ -3.0687615570776283,
+ -1.4390872757227184,
+ 3.4399858081685966,
+ -3.6812980655071654,
+ 2.7314320281867985,
+ -0.7782477604488207,
+ -1.3406109839470048,
+ 3.0280574097535697,
+ -2.4227840677170027,
+ -4.14073971836838,
+ 2.1880461381041907,
+ 1.5719932318119918,
+ -0.621253076566064,
+ -1.5819952667362278,
+ 3.174401782810425,
+ -2.5612680276935547,
+ -4.799040567257934,
+ 2.176651345526776,
+ 1.4692897912604865,
+ -0.36126697990202705,
+ -1.7281581347211261,
+ 3.2556944056811976,
+ -3.7211906914608486,
+ 2.9249133067143207,
+ -1.1801317335868626,
+ 0.5559808134083928,
+ 0.8992269200935019,
+ -1.8986483395082782e-15,
+ -2.4765787539837645e-15,
+ -3.6345799127697185e-16,
+ -4.0961983933625926e-16,
+ 6.8573272780646e-17,
+ 1.4636960939125825e-16,
+ 2.2565487110446595e-16,
+ 1.727566709316998e-16,
+ 6.731595824956538e-16,
+ -1.4022779334305202e-16,
+ -2.2143624998044548e-16,
+ -6.101284198191131e-16,
+ -9.041084095204591e-17,
+ -7.320548421094295e-18,
+ -4.078000419886426e-17,
+ 3.117643728712361e-16,
+ 1.533592855673313e-16,
+ 2.8471556684075213e-16,
+ 1.9968139987030086e-16,
+ -4.061456807635365e-17,
+ -1.2705494208814505e-16,
+ 8.677124625681259e-17,
+ -3.545296105402276e-16,
+ -1.979443205839395e-16,
+ -2.377006887747694e-16,
+ 2.0530622803566144e-16,
+ 1.1030453468394623e-16,
+ 9.054525780158578e-17,
+ -3.544468924789723e-16,
+ -3.3289883752196594e-16,
+ -2.072914615057887e-16,
+ 3.8008949146811615e-17,
+ -7.230385734326014e-16,
+ -1.816902215472725e-16,
+ -5.782250975687086e-17,
+ 5.336969312192135e-16,
+ 8.668852819555729e-17,
+ -3.7512640779279805e-17,
+ 3.366625093090822e-16,
+ -4.324500242427228e-16,
+ 4.963083675318166e-19,
+ -4.582580593543773e-16,
+ -2.843846945957309e-16,
+ -1.589841137326919e-16,
+ -1.5981129434524492e-16,
+ 5.2608686958372554e-17,
+ 6.493367808541267e-17,
+ 3.2921788379610497e-16,
+ 3.4377626257703825e-16,
+ -1.8065624578158122e-16,
+ -2.9067126725113392e-16,
+ -2.0522350997440614e-16,
+ 8.644037401179139e-18,
+ 1.2242273065784808e-17,
+ 5.604975830659316e-16,
+ 9.479489819857696e-17,
+ 3.93634573998672e-17,
+ 1.1022181662269092e-17,
+ 9.562207881112999e-17,
+ 1.197757526976784e-16,
+ -9.024540482953531e-17,
+ 1.8239332506794258e-16,
+ 9.90962373838527e-17,
+ -2.812414082680294e-17,
+ 1.6973746169588125e-16,
+ 2.0332099456553418e-16,
+ 3.3153398951125344e-16,
+ -6.070471720373532e-17,
+ 9.198248411589667e-17,
+ -1.859502017019206e-16,
+ 1.6580835378625437e-16,
+ -2.621748951486821e-16,
+ 8.288349737781336e-17,
+ 9.562207881112999e-17,
+ 3.2921788379610497e-16,
+ 1.2819231543040546e-16,
+ -8.561319339923836e-18,
+ 1.419855521447272e-16,
+ -2.018941080088802e-16,
+ 1.463282503606306e-16,
+ -1.6233419521353168e-17,
+ -5.5496064284065466e-17,
+ -4.092476080606104e-17,
+ -3.034098486844505e-16,
+ 8.428970441915351e-17,
+ 9.562207881112999e-17,
+ 2.585353004534488e-16,
+ 1.922367743573236e-16,
+ 1.229190390253799e-15,
+ 6.134371422693252e-16,
+ -1.9719985803264177e-16,
+ 8.768114493062092e-17,
+ -1.6427806965303127e-16,
+ 8.801201717564213e-17,
+ 1.890934880296221e-16,
+ -1.393385741845575e-16,
+ -9.471218013732165e-18,
+ 1.401243957664829e-16,
+ 3.159829939952566e-17,
+ 1.9256764660234482e-16,
+ -1.1853498177884887e-16,
+ -2.896786505160703e-16,
+ -2.916225249555699e-16,
+ -3.523789409475898e-17,
+ -9.30578189122156e-17,
+ -1.2655863372061323e-16,
+ 1.4285409178790788e-16,
+ -1.272152083318272e-16,
+ -1.8032537353656e-16,
+ 5.506954928071781e-17,
+ -7.974021105011186e-17,
+ -3.4245277359695346e-17,
+ 1.3044638259961246e-16,
+ -9.396771758602393e-17,
+ 3.240066459370209e-16,
+ 1.0571368228427692e-16,
+ 1.8727369068200544e-16,
+ 9.098986738083303e-17,
+ -4.642137597647591e-16,
+ -1.570609188085061e-16,
+ -8.801201717564213e-17,
+ 1.7354249251362518e-16,
+ -1.4740358515694953e-16,
+ -4.507100362648309e-17,
+ 1.9620724129757814e-16,
+ 4.2748694056740465e-16,
+ 1.2324991127040112e-16,
+ 1.5468277454741618e-17,
+ 4.049876279059623e-16,
+ 2.071260253832781e-16,
+ 2.455072058057386e-16,
+ 1.4525291556431166e-16,
+ 1.7834014006643274e-16,
+ -1.209751645858803e-16,
+ 4.533363347096868e-16,
+ 3.301484619852271e-16,
+ -1.7205356741102973e-16,
+ -2.4980854499101436e-16,
+ -2.5311726744122647e-16,
+ 3.426595687500917e-17,
+ -2.9414542582385664e-16,
+ 8.466193569480237e-17,
+ 1.1547441351240266e-16,
+ 5.386600148945316e-16,
+ -6.53803556161913e-16,
+ -3.556876633978019e-17,
+ -2.7404493693881807e-16,
+ -7.120370712856461e-16,
+ 1.2242273065784808e-17,
+ 2.3202416182112426e-16,
+ 3.268190600197012e-16,
+ 5.856438736875436e-17,
+ 6.187310981896647e-17,
+ 1.134891800422754e-16,
+ 5.608284553109528e-16,
+ -1.020740875890436e-16,
+ 3.927453548401775e-16,
+ 4.896909226313924e-16,
+ 1.8512302108936757e-16,
+ 1.1142122851089283e-16,
+ -1.4732086709569423e-16,
+ -5.641371777611649e-17,
+ 6.410649747285964e-17,
+ 4.566036981292712e-17,
+ -2.8153092148242297e-16,
+ -6.046690277762632e-17,
+ 1.5054687148465104e-17,
+ 8.668852819555729e-17,
+ 5.657915389862709e-17,
+ 9.016268676828e-17,
+ 1.3861479114857361e-16,
+ -4.0366413892587746e-16,
+ -1.862810739469418e-16,
+ 4.326154603652334e-17,
+ -3.879477072873699e-17,
+ -3.5734202462290796e-17,
+ 2.043136113005978e-16,
+ 7.031035206700735e-17,
+ 1.57098141936071e-15,
+ -4.638828875197379e-16
+ ],
+ [
+ 5.5339999738447245,
+ 4.705031107613189,
+ -2.3073340589340057,
+ -0.560239641720729,
+ 3.2426377502817108,
+ -4.925631011897525,
+ 4.887485716568732,
+ -3.266035150243225,
+ 0.623175275152399,
+ 2.152132531529871,
+ 5.535454942940753,
+ 3.0484366268781993,
+ -2.6217840246984982,
+ -0.2051750248824009,
+ 3.0753929091917582,
+ -3.0816366862793165,
+ -4.9787293014273075,
+ 4.355036922891242,
+ 2.809882311710551,
+ -2.306727040249502,
+ -0.5634618829641543,
+ 3.2474806388239967,
+ -4.930475310297568,
+ 4.890627552271703,
+ -3.266577249609755,
+ 0.5177530370794878,
+ 1.8571705554938598,
+ 4.83829601247239,
+ 2.3994830795013096,
+ -4.985706969341135,
+ 4.771993364654808,
+ -2.98196793943329,
+ 0.3095832375091947,
+ 1.584083161064111,
+ 5.493999815529062,
+ 2.585579206971048,
+ -5.055805847722373,
+ 4.686021976776543,
+ -2.800981558977265,
+ -0.15870219432649804,
+ 2.9238860907741118,
+ -4.745707902764254,
+ 9.170632563104007,
+ 9.062444595839633,
+ 2.9630101116393615,
+ 2.6968929389597744,
+ -2.8967810085060264,
+ -3.1544521802688275,
+ -0.05582845790670118,
+ 2.842371937965887,
+ -4.705684696219282,
+ 5.016435150833648,
+ -3.6415429791824256,
+ 1.085229031123673,
+ 1.0404767701831636,
+ 0.9949517500565713,
+ -6.325453049373726,
+ -3.2208143877914,
+ 4.96793449447661,
+ -3.4810458775644006,
+ 0.7315850326014735,
+ 1.2743062011547437,
+ 1.3152452434473993,
+ -5.858429401175276,
+ -3.2537742021143505,
+ 4.868027984472301,
+ -3.2089489645837026,
+ 0.5141008007163299,
+ 2.4961747781619876,
+ -4.53088454316489,
+ 5.10067258587423,
+ -2.6982159764729428,
+ -5.253003230246673,
+ -1.0640597299846293,
+ -0.05415173814610546,
+ 2.685314001347505,
+ -4.687417432511667,
+ 5.055244986905206,
+ -2.7406575433298155,
+ -5.789973804730311,
+ -1.7044828039067745,
+ -0.3800671592809105,
+ 2.984436367535546,
+ -4.772881353711966,
+ 5.014895510064633,
+ -3.514769928778782,
+ 0.9158124097638571,
+ 1.9833478838368888,
+ -4.294574089827952,
+ -5.018122002992597,
+ 0.17713549606056417,
+ 0.38915462371936543,
+ 0.8468738944641364,
+ -3.4667281203572373,
+ 4.961574730302488,
+ -4.795965968483408,
+ 3.040914980800658,
+ -0.2983683969152716,
+ -1.5443786583655876,
+ -2.0202375152218184,
+ 6.693601908415422,
+ 3.490431469321001,
+ -4.715049945745672,
+ 2.858345648269916,
+ 0.060867331437842606,
+ -1.7350029493267753,
+ -2.183074079754717,
+ 5.835769422490731,
+ 3.326512463637775,
+ -4.562998800324493,
+ 2.5532263948810545,
+ 0.2797571097376673,
+ -3.1573525168551293,
+ 4.8454724607747,
+ -4.966400848053844,
+ 2.3631776057768357,
+ 4.785981788638826,
+ 1.9429573943983443,
+ 0.5686395430730229,
+ -3.3271416838619907,
+ 4.950127005255923,
+ -4.866420284908629,
+ 2.2227267527631858,
+ 4.925707756903921,
+ 2.5228077231457964,
+ 0.8239545674092349,
+ -3.591919498263771,
+ 5.00266308916186,
+ -4.793299516663065,
+ 2.8966130464863533,
+ -0.1258602940495825,
+ -2.6893839482852395,
+ 7.268350538072197,
+ 7.042588343810441,
+ -0.011187528864563225,
+ -0.33295759957380905,
+ -7.417395992188722,
+ -7.634007837707489,
+ 2.9857155916845786,
+ -0.23284995624042876,
+ -2.59155683635636,
+ 4.651314242709222,
+ -5.06328776208332,
+ 3.835758446904701,
+ -1.0487469500205975,
+ -2.9241456650603856,
+ -4.626500599143468,
+ -2.0397133109396326,
+ 4.738654888178851,
+ -5.02612484154106,
+ 3.58883846126981,
+ -0.7966236386668104,
+ -2.3239506061709894,
+ -4.532944655241563,
+ -2.1909440351316265,
+ 4.862456151327782,
+ -4.94587476073327,
+ 3.4292800569200383,
+ -0.6367064768874441,
+ -2.2341821825559185,
+ 4.385236924891401,
+ -3.3305604217808833,
+ -5.774831079145139,
+ 2.5569708786680807,
+ 1.928533959315607,
+ -0.4190467820455575,
+ -2.5515460923564515,
+ 4.559571540398109,
+ -3.506534434942652,
+ -6.65452025337542,
+ 2.4604541293458997,
+ 1.760103818095494,
+ -0.060413616300733025,
+ -2.742515621387417,
+ 4.654466168160935,
+ -5.034379950517987,
+ 3.7192421737734787,
+ -1.197574898995101,
+ 0.13140923274159821,
+ 0.46082851680428255,
+ -2.500112042410898e-15,
+ -3.195564142414856e-15,
+ -4.614013456820788e-16,
+ -5.500751073477634e-16,
+ 9.899283980728357e-17,
+ 2.007567346666198e-16,
+ 2.7875986643037033e-16,
+ 2.0489263772938493e-16,
+ 8.984835813550987e-16,
+ -2.0464448354561902e-16,
+ -2.9584114607959035e-16,
+ -7.464477847678521e-16,
+ -1.4711407194255597e-16,
+ 9.140345768710956e-18,
+ -5.1781506345819526e-17,
+ 3.9770843851549566e-16,
+ 2.041481751780872e-16,
+ 3.6462121401337455e-16,
+ 2.4716156703084467e-16,
+ -4.6115319149831287e-17,
+ -1.773475233313691e-16,
+ 9.413315370853454e-17,
+ -5.062345348824529e-16,
+ -2.691645713247552e-16,
+ -3.2781684663359327e-16,
+ 2.0811864211834174e-16,
+ 1.6039032077403204e-16,
+ 1.2337398836228408e-16,
+ -4.450231695535289e-16,
+ -4.2256521592271414e-16,
+ -3.1151621868747017e-16,
+ 4.801783455870325e-17,
+ -9.25491028354955e-16,
+ -2.187996117779327e-16,
+ -8.454432095145499e-17,
+ 6.705126045354841e-16,
+ 1.1191753687842464e-16,
+ -3.259091613458929e-17,
+ 4.483732510343687e-16,
+ -5.280721030538529e-16,
+ -3.3914405114674135e-17,
+ -5.947428604256269e-16,
+ -3.6164336380818365e-16,
+ -2.127508535486387e-16,
+ -2.1672132048889323e-16,
+ 5.3270431448414976e-17,
+ 6.733250186181645e-17,
+ 4.886155878350734e-16,
+ 4.873748169162439e-16,
+ -2.4054412213042045e-16,
+ -4.1251497148019485e-16,
+ -2.6436692377194764e-16,
+ 2.2271837992990267e-17,
+ 4.0366413892587744e-17,
+ 7.848289651903126e-16,
+ 1.2970192004831474e-16,
+ 9.353344776443359e-17,
+ -2.1072426104788377e-17,
+ 1.5153948821971465e-16,
+ 1.8429584047681454e-16,
+ -1.0732668447875533e-16,
+ 2.413713027429735e-16,
+ 1.4789989352448135e-16,
+ -5.194694246833013e-17,
+ 1.9455288007247208e-16,
+ 2.5013941723603557e-16,
+ 4.575963148643349e-16,
+ -9.140345768710955e-17,
+ 1.2407709188295415e-16,
+ -2.420330472330159e-16,
+ 1.9298123690862133e-16,
+ -3.6445577789086394e-16,
+ 1.1386141131792426e-16,
+ 1.2457340025048597e-16,
+ 4.235164736271501e-16,
+ 1.8499894399748461e-16,
+ -1.3648480107124955e-18,
+ 2.0944213109842658e-16,
+ -2.7098436867237187e-16,
+ 1.9256764660234482e-16,
+ -4.9946199361717496e-17,
+ -1.257314531080602e-16,
+ -4.4295521802214626e-17,
+ -4.13921178521535e-16,
+ 1.1133851044963753e-16,
+ 1.225881667803587e-16,
+ 3.297969102248921e-16,
+ 2.546061925438219e-16,
+ 1.7020068283891095e-15,
+ 8.367759076586427e-16,
+ -2.10103875588469e-16,
+ 1.8264147925170849e-16,
+ -1.6626330312315854e-16,
+ 1.227536029028693e-16,
+ 2.448454613156962e-16,
+ -1.7585859822877366e-16,
+ -3.962195134129002e-17,
+ 1.9500782940937625e-16,
+ -8.313165156157928e-18,
+ 2.3773170804774015e-16,
+ -1.4856163801452377e-16,
+ -4.403082400619766e-16,
+ -3.831707392498762e-16,
+ -6.716706573930585e-17,
+ -1.3995895964397228e-16,
+ -1.5865324148767068e-16,
+ 1.8760456292702665e-16,
+ -1.754398380436687e-16,
+ -2.451763335607174e-16,
+ 7.078598091922534e-17,
+ -1.2015832373098418e-16,
+ -3.308722450212111e-17,
+ 1.8793543517204786e-16,
+ -1.3929721515392986e-16,
+ 4.4212803740959324e-16,
+ 1.431022459716738e-16,
+ 2.5526793703386434e-16,
+ 1.2341534739291173e-16,
+ -6.180693536996222e-16,
+ -2.1837568171399928e-16,
+ -1.2043749718772083e-16,
+ 2.2333876538931747e-16,
+ -1.5732975250758584e-16,
+ -5.738048511703784e-17,
+ 3.0241723194938687e-16,
+ 5.459392042849983e-16,
+ 1.7288074802358276e-16,
+ 1.6543612251060553e-17,
+ 5.366747814244044e-16,
+ 2.6089276519922493e-16,
+ 3.3484271196146555e-16,
+ 2.0282468619800236e-16,
+ 1.8413040435430394e-16,
+ -1.6345088904047824e-16,
+ 6.027665123673912e-16,
+ 4.450231695535289e-16,
+ -2.4070955825293105e-16,
+ -4.049876279059623e-16,
+ -3.629668527882685e-16,
+ 4.289965451853139e-17,
+ -4.253362709747668e-16,
+ 1.204064779147501e-16,
+ 1.654361225106055e-16,
+ 7.351981284371309e-16,
+ -9.17177863198797e-16,
+ -4.8803656140628627e-17,
+ -3.537024299276746e-16,
+ -9.496033432108758e-16,
+ 3.970466940254533e-18,
+ 3.242548001207868e-16,
+ 4.717411033389917e-16,
+ 8.70194004405785e-17,
+ 8.801201717564213e-17,
+ 1.5997673046775553e-16,
+ 7.85490709680355e-16,
+ -1.4202691117535485e-16,
+ 5.304709268302566e-16,
+ 6.7994246351858865e-16,
+ 2.397996595791227e-16,
+ 1.7383200572801874e-16,
+ -1.7990144347262658e-16,
+ -6.394106135034904e-17,
+ 9.89308012613421e-17,
+ 5.542110104105285e-17,
+ -4.1139827765324826e-16,
+ -9.553936074987468e-17,
+ 4.301339185275744e-18,
+ 1.2904017555827232e-16,
+ 4.0697286137608955e-17,
+ 1.4244050148163137e-16,
+ 1.4526842520079703e-16,
+ -4.804264997707985e-16,
+ -2.7048806030484005e-16,
+ 6.915229920943311e-17,
+ -5.724089838866952e-17,
+ -5.922613185879678e-17,
+ 2.7032262418232944e-16,
+ 8.536503921547244e-17,
+ 2.039496518310745e-15,
+ -6.736558908631856e-16
+ ],
+ [
+ -4.221582493712237,
+ -3.521330893701066,
+ 2.001796687029219,
+ -0.5741097124960547,
+ -1.111856032247779,
+ 2.417606655823709,
+ -2.928042903853755,
+ 2.416042407357187,
+ -0.9204319359410142,
+ -2.2360978569469037,
+ -2.368759566313193,
+ -0.9970632832957574,
+ 2.4841999471247096,
+ -0.769706958492596,
+ -0.9976258364937948,
+ 1.457200248769428,
+ 2.1775957988999144,
+ -3.023477880335853,
+ -1.8257474866653796,
+ 2.0005523679025083,
+ -0.571718417276876,
+ -1.11465455092991,
+ 2.419855221464437,
+ -2.928969193184283,
+ 2.415398857781322,
+ -0.8350912937010863,
+ -1.943900954234311,
+ -2.0653180616256273,
+ -0.9117413842479237,
+ 2.48638835013455,
+ -2.920821772183206,
+ 2.2988732755879235,
+ -0.7300290847532257,
+ -1.8983819451319053,
+ -2.4354101069927583,
+ -1.0426344427273602,
+ 2.582845307966919,
+ -2.909820577402111,
+ 2.220591860049687,
+ -0.7959921858265099,
+ -0.8980121919060369,
+ 2.2288030311445266,
+ -4.9362992093752105,
+ -4.838192852663762,
+ -0.9226619375063425,
+ -0.7478369544761877,
+ 3.018368560578025,
+ 3.1606016541979884,
+ -0.8522043725166242,
+ -0.8444599078642031,
+ 2.1911375500153683,
+ -2.9150355441959186,
+ 2.5609475524409597,
+ -1.4514935444975345,
+ -0.027583498930242527,
+ 0.520226195170302,
+ 3.297764669945331,
+ 1.589258694470111,
+ -2.9237894852609645,
+ 2.500985574458333,
+ -1.2695723798841911,
+ -0.17255973119822351,
+ 0.24913883382786553,
+ 3.1248394802941104,
+ 1.6426056530555406,
+ -2.928605855581818,
+ 2.39202360111853,
+ -1.1569434493031403,
+ -0.6210875206959078,
+ 2.0346687703361512,
+ -2.8657168504772645,
+ 1.7927849164116991,
+ 3.288495491187493,
+ -0.3941333293818764,
+ -0.5316992367775761,
+ -0.7413647251313455,
+ 2.174891066319533,
+ -2.9001939067882563,
+ 1.8561452474578128,
+ 3.70697704294581,
+ -0.16606773356692056,
+ -0.3816872190779806,
+ -0.9379898060309767,
+ 2.255104309168632,
+ -2.915444151869196,
+ 2.5130371287260806,
+ -1.3653065200742085,
+ -0.3008691299973279,
+ 1.3078951867604434,
+ 1.4407952658635166,
+ -1.6299319529679646,
+ -1.4604969196918565,
+ 0.3708645549967438,
+ 1.2250749909878242,
+ -2.4970760598874913,
+ 2.8834669066446166,
+ -2.363392058101299,
+ 1.0023721607037472,
+ 0.30650144720262174,
+ 0.020563756824312173,
+ -3.6716963554632556,
+ -1.8268664649007869,
+ 2.8747393786163684,
+ -2.28517856404638,
+ 0.8098626858615602,
+ 0.4618003485980337,
+ 0.2672787785678544,
+ -3.265751301287485,
+ -1.7682533303808865,
+ 2.846194169708728,
+ -2.1525316844873363,
+ 0.6889664751790637,
+ 1.013135918729914,
+ -2.3687010438028464,
+ 2.8842358050369072,
+ -1.6774070074588203,
+ -3.1667556651268645,
+ -0.12188059779220208,
+ 0.2445382798521684,
+ 1.12941185493625,
+ -2.4824273846673406,
+ 2.8890087840308367,
+ -1.628255616355291,
+ -3.352459409549626,
+ -0.38283720991248593,
+ 0.10039627454872803,
+ 1.3130206989448303,
+ -2.548383709698678,
+ 2.8832106001493,
+ -2.3023485430992037,
+ 0.9099684534753139,
+ 0.7042965507149651,
+ -2.9994472404077217,
+ -2.8559078849967605,
+ 0.8600676087897542,
+ 1.0345902593945357,
+ 4.902214258827878,
+ 4.994914590980366,
+ -2.340752103971207,
+ 0.9680919918249602,
+ 0.6415015957244365,
+ -2.1836732692451397,
+ 2.852268549134513,
+ -2.6725127074236474,
+ 1.1055802704783793,
+ 2.5403227650604534,
+ 1.771812426454805,
+ 0.6582284927521974,
+ -2.263995830361648,
+ 2.8701327799308864,
+ -2.581625910913273,
+ 0.9774817040477524,
+ 2.168134819875402,
+ 1.8324582792336284,
+ 0.7655909931339859,
+ -2.3888772038654755,
+ 2.884699742412057,
+ -2.521225812022085,
+ 1.1813836011574614,
+ 0.4153259657441656,
+ -1.954299792581814,
+ 1.8033681713564547,
+ 2.9633785073411136,
+ -2.276566934427839,
+ -1.5041265350030304,
+ 1.0680666452421965,
+ 0.6166723183648652,
+ -2.10091024128944,
+ 1.9271381832701868,
+ 3.489690167435093,
+ -2.384270304644064,
+ -1.4668333067681978,
+ 0.8754319944676741,
+ 0.7388835460160615,
+ -2.186536429733858,
+ 2.86605097484307,
+ -2.630807619110249,
+ 1.4684479320184458,
+ -1.323270034361404,
+ -1.783432605815915,
+ 1.5913300624295144e-15,
+ 2.544738436458134e-15,
+ 3.1885227674504984e-16,
+ 2.772709413277749e-16,
+ -1.5220123270975707e-16,
+ -2.5609511764641737e-16,
+ -3.0026656235674905e-16,
+ -1.5919090888583015e-16,
+ -5.134310062116643e-16,
+ 9.003860967639705e-17,
+ 2.3442298559752804e-16,
+ 5.161607022330893e-16,
+ 1.1013909856143562e-16,
+ 2.010048888503857e-17,
+ -5.715818032741421e-17,
+ -4.84396966711053e-16,
+ -1.6121750138658507e-16,
+ -1.0331485850787314e-16,
+ -1.464936864831412e-16,
+ 1.250800483756747e-16,
+ 1.341686953561011e-16,
+ 9.719372197498074e-18,
+ 1.5555131419059683e-16,
+ 1.533592855673313e-16,
+ 1.5049517269636647e-16,
+ -3.9084283943130553e-16,
+ -7.496324301261813e-17,
+ -2.3657365519016588e-17,
+ 5.163261383555999e-16,
+ 3.970983928137378e-16,
+ 1.508570642143584e-16,
+ 1.2583485068462932e-17,
+ 4.051530640284729e-16,
+ 7.448761416040014e-17,
+ 3.088485612119867e-17,
+ -5.414517494618981e-16,
+ -1.3381714359576605e-16,
+ 1.2407709188295413e-18,
+ -2.4898136437846133e-16,
+ 5.075580238625378e-16,
+ 1.5716431638507524e-18,
+ 3.0076287072428086e-16,
+ 4.485386871568793e-16,
+ 1.1227425851758814e-16,
+ 8.073282778517549e-17,
+ -1.4450845301301393e-16,
+ -3.643730598296087e-17,
+ -4.2963761016004253e-16,
+ -2.637051792819052e-16,
+ 1.6460894189805248e-16,
+ 2.084081553327353e-16,
+ 1.0472623542804175e-16,
+ 7.80858498250058e-17,
+ -9.065899513581182e-17,
+ -3.8579703769473206e-16,
+ -8.70194004405785e-17,
+ -1.2023070203458257e-16,
+ 1.4740358515694953e-16,
+ -8.437242248040881e-17,
+ -5.558653716356346e-17,
+ 9.715236294435309e-17,
+ -2.796904446194925e-17,
+ 9.429858983104514e-18,
+ -1.9686898578762056e-17,
+ -2.2830184906463564e-16,
+ -1.83055069557985e-16,
+ -2.156459856925743e-16,
+ 7.866487625379292e-17,
+ -5.624828165360588e-17,
+ 1.5799149699762826e-16,
+ 1.4475660719677984e-17,
+ 1.92071338234813e-16,
+ 5.790264287871194e-17,
+ -8.677124625681259e-17,
+ -2.840538223507097e-16,
+ -1.6522932735746725e-16,
+ -2.1672132048889322e-17,
+ -1.2573145310806019e-17,
+ 1.9653811354259935e-16,
+ -1.4574922393184348e-16,
+ 5.54624600716805e-17,
+ 1.773475233313691e-16,
+ -8.346252380660048e-17,
+ 1.8421312241555924e-16,
+ -9.818633871004437e-17,
+ -1.1080084305147804e-16,
+ -1.5087774372967222e-16,
+ -1.1216569106219055e-16,
+ -7.25933705576537e-16,
+ -5.747250896018436e-16,
+ -2.141984196206065e-16,
+ 1.2217457647408219e-16,
+ 9.605634863272033e-17,
+ -1.5170492434222525e-16,
+ -1.6642873924566914e-16,
+ -2.336785230462303e-17,
+ -3.3335378685887015e-17,
+ -1.1932080336077424e-16,
+ 5.062345348824529e-17,
+ -1.7925003874024107e-16,
+ 1.37203414228405e-16,
+ 2.7048806030484005e-16,
+ 1.1956895754454015e-16,
+ -2.5642598989143855e-17,
+ -4.963083675318166e-19,
+ -1.9025154088719637e-18,
+ -7.874759431504822e-17,
+ 1.2023070203458257e-16,
+ 1.7867101231145395e-16,
+ -2.0762233375080992e-17,
+ 4.5019304838198525e-17,
+ 1.0267379353314455e-16,
+ 3.970466940254533e-18,
+ 4.053185001509835e-17,
+ -2.410817895285799e-16,
+ -9.44226669229281e-17,
+ -1.7809198588266683e-16,
+ -6.319659879905131e-17,
+ 3.9506146055532597e-16,
+ 1.0726464593281385e-16,
+ 8.99145325845141e-17,
+ -6.795288732123122e-17,
+ 7.510799961981491e-17,
+ 2.522900868286734e-18,
+ -1.2043749718772083e-16,
+ -1.2457340025048597e-16,
+ -1.137373342260413e-16,
+ 5.657915389862709e-17,
+ -3.2921788379610497e-16,
+ -1.318525896409526e-16,
+ -1.402898318889935e-16,
+ -1.3936959345752825e-16,
+ 8.263534319404745e-17,
+ -5.872982349126496e-18,
+ -3.115575777180978e-16,
+ -1.9463559813372739e-16,
+ 5.955700410381799e-17,
+ 4.384057246531046e-16,
+ 1.43433118216695e-16,
+ 3.5056948335763004e-17,
+ 1.350579145145956e-16,
+ 6.964860757696493e-17,
+ -1.0439019330419208e-16,
+ -4.081309142336638e-16,
+ 4.3906746914314704e-16,
+ -4.79764755280756e-18,
+ 1.6667689342943505e-16,
+ 4.635520152747167e-16,
+ -3.7719435932418056e-17,
+ -1.2953648392580413e-16,
+ -4.946540063067105e-17,
+ 2.2855000324840155e-16,
+ 3.9311758611582634e-17,
+ -1.1423364259357312e-16,
+ -4.486627642487622e-16,
+ 9.355412727974742e-17,
+ -1.5081570518373075e-16,
+ -3.6429034176835334e-16,
+ -2.0296944280519914e-16,
+ -3.565148440103549e-17,
+ 3.7223127564886245e-17,
+ -7.088937849579447e-17,
+ -4.0697286137608955e-17,
+ -5.777856578682898e-17,
+ 6.551270451419979e-17,
+ 7.057918576608709e-17,
+ -1.1415092453231782e-16,
+ -7.444625512977249e-17,
+ -1.1613615800244509e-16,
+ 5.790264287871193e-18,
+ -7.237830359838991e-19,
+ 2.3409211335250683e-16,
+ 1.405379860727594e-16,
+ 3.7223127564886245e-18,
+ 2.7503755367388166e-18,
+ -9.009030846468161e-17,
+ -2.354156023325917e-16,
+ -8.12291361527073e-17,
+ -1.3638553939774318e-15,
+ 1.8528845721187817e-16
+ ],
+ [
+ 5.173118905672326,
+ 4.222030664498837,
+ -2.857015646972559,
+ 2.0025636849479187,
+ -0.576220556670155,
+ -1.1997400460983496,
+ 2.4184695487556613,
+ -2.9301969994854615,
+ 1.737624444157424,
+ 3.554386463601434,
+ 0.3626166943282751,
+ -0.10657565427625974,
+ -1.3115794051151266,
+ 2.48635806947704,
+ -0.6946373039746115,
+ -0.5613900645679896,
+ -0.44844480185427843,
+ 3.295727326010698,
+ 1.8019524991134444,
+ -2.8544899842782874,
+ 1.9997384422002027,
+ -0.5739614991778869,
+ -1.200569599339362,
+ 2.4176165601028523,
+ -2.928030166061576,
+ 1.6263290363876963,
+ 3.104360022207716,
+ 0.3037486579421191,
+ -0.14140423176981917,
+ -1.3123004476930897,
+ 2.523683742408073,
+ -2.9198491309272745,
+ 1.5712163860498054,
+ 3.2716570658380375,
+ 0.5789804451068924,
+ 0.0038197030454170575,
+ -1.4925835416201472,
+ 2.5817794880642424,
+ -2.9090644033602056,
+ 2.158924520822873,
+ -0.7981613864378396,
+ -0.8977757893787299,
+ 3.2272746056354786,
+ 3.0856615043388005,
+ -0.7020622064181691,
+ -0.8776863164469623,
+ -4.80681706837936,
+ -4.906647344622228,
+ 2.1973132043434638,
+ -0.8519572643809595,
+ -0.8418580201061694,
+ 2.250037687848328,
+ -2.913995607245158,
+ 2.5601946902303014,
+ -1.0158711344273363,
+ -2.390166908083012,
+ -1.9482408840618586,
+ -0.758671553039617,
+ 2.326687973481776,
+ -2.9229075448452417,
+ 2.4608270956162146,
+ -0.8839648756857982,
+ -2.02128817370949,
+ -1.9875512127601282,
+ -0.8626925240116327,
+ 2.440403349501623,
+ -2.927697970341028,
+ 2.3925773128564245,
+ -1.0697855058739418,
+ -0.6185630137398451,
+ 2.0340249532947583,
+ -1.8331188908736828,
+ -3.0450977050424237,
+ 2.1350404738352986,
+ 1.4365998343532105,
+ -0.9520699387013465,
+ -0.8156941847116513,
+ 2.1741980771533274,
+ -1.9532061080996164,
+ -3.570051657720605,
+ 2.2124131759154175,
+ 1.3878638715177298,
+ -0.7575625995992941,
+ -0.9377743048381914,
+ 2.2527422617733657,
+ -2.922035627248329,
+ 2.513425782525133,
+ -1.364915582128927,
+ 1.0937627790156288,
+ 1.5050139729497538,
+ 4.045294866950593,
+ 3.3839310447546653,
+ -1.9206047918897406,
+ 0.37052726971738953,
+ 1.2225711898412128,
+ -2.544412608795485,
+ 2.882896258503549,
+ -2.3627263627934494,
+ 0.8185587219622561,
+ 2.0580161727137147,
+ 2.533959822684174,
+ 1.0935615558610712,
+ -2.6031191989030487,
+ 2.8739126684915823,
+ -2.2353181036593464,
+ 0.6147252832762937,
+ 1.5878781669990314,
+ 2.3769065076046227,
+ 1.1127474551854446,
+ -2.6911528218863414,
+ 2.845305186069334,
+ -2.153527097926971,
+ 0.5973704029271568,
+ 1.0106130338993145,
+ -2.368268439884332,
+ 1.883788349046448,
+ 3.2171741946597,
+ -1.7143535256392093,
+ -1.2290083763175015,
+ 0.4762522586900222,
+ 1.1996157614304221,
+ -2.481943448181418,
+ 1.9030193463963556,
+ 3.5531690599154016,
+ -1.643087686062897,
+ -1.1217407109872384,
+ 0.2732315215852604,
+ 1.3126942097598282,
+ -2.5465532521790695,
+ 2.8753882316638664,
+ -2.3033028252525134,
+ 0.9094800918912221,
+ 0.19030708358440926,
+ 0.05380318791812405,
+ -2.1944470971336187,
+ -2.3043835388202654,
+ -4.971341607185944,
+ -4.989668278702112,
+ 2.8826587180372267,
+ -2.342354575261683,
+ 0.9706060405391187,
+ 0.7333803971255904,
+ -2.1841293877447394,
+ 2.8546034191440017,
+ -1.773420299537202,
+ -3.5372614838295466,
+ 0.23666249563820108,
+ 0.4233759456305027,
+ 0.8537984810296733,
+ -2.266127040246225,
+ 2.8799720566567304,
+ -1.7044406104049747,
+ -3.1985120505357596,
+ -0.01852994940114775,
+ 0.30277144092155706,
+ 1.0453351592590503,
+ -2.3910359132824945,
+ 2.8867372170459555,
+ -2.4737404677443378,
+ 1.1840203703064638,
+ 0.41617123244881427,
+ -1.1996718781941806,
+ -1.6558415345963873,
+ 3.2363475705312448,
+ 1.8883072165620407,
+ -2.4039009578132005,
+ 0.9963333096157778,
+ 0.6176983891765494,
+ -1.336984698747878,
+ -2.102451472602703,
+ 3.616739300062978,
+ 1.9675344835764066,
+ -2.2819532792091355,
+ 0.8755177833146672,
+ 0.7375494765684955,
+ -2.249996234740224,
+ 2.867967249371382,
+ -2.6326002339967935,
+ 3.2971269300234325,
+ 4.147177354601842,
+ -9.97745254861462e-16,
+ -1.4318496403292907e-15,
+ -3.299623463474027e-16,
+ -2.0625748574009743e-16,
+ 4.118325474748386e-17,
+ 5.959836313444564e-17,
+ 2.82063419001754e-16,
+ 2.4716156703084467e-16,
+ 3.843081125921366e-16,
+ -2.150669592637872e-18,
+ -1.0909478303808743e-16,
+ -6.884624238278848e-16,
+ -8.850832554317396e-18,
+ -1.692204738130356e-16,
+ -5.09543257332665e-17,
+ 2.4343925427435604e-16,
+ 5.426304818347861e-17,
+ 1.9107872149974937e-16,
+ 3.0262402710252513e-16,
+ 6.327931686030662e-17,
+ -4.9961708998202865e-17,
+ 8.309029253095162e-17,
+ -2.3905519702782497e-17,
+ -1.0984958534704206e-16,
+ -9.578751493364059e-17,
+ 5.030912485547514e-16,
+ -1.1580528575742386e-17,
+ 3.3335378685887015e-17,
+ -3.436521854851553e-16,
+ -2.7396221887756277e-16,
+ 4.135903062765138e-17,
+ 3.532061215601428e-17,
+ -4.0197875842780066e-16,
+ -1.1241384524595646e-16,
+ -3.585827955417375e-17,
+ 4.509788699639107e-16,
+ 1.0629270871306404e-16,
+ -5.374606030063297e-17,
+ 2.125854174261281e-16,
+ -4.897736406926477e-16,
+ 1.2986735617082534e-16,
+ -2.569222982589704e-16,
+ -3.9369661254461347e-16,
+ -6.829409932390935e-17,
+ -8.102234099956905e-17,
+ 8.76604654153071e-17,
+ 1.1704605667625342e-16,
+ 3.2140102700747885e-16,
+ 9.065899513581182e-17,
+ -7.206811086868254e-17,
+ -4.689080097409975e-17,
+ -1.0259107547188925e-16,
+ -7.806517030969197e-17,
+ -5.98878763488392e-17,
+ 9.89308012613421e-17,
+ 8.536503921547244e-17,
+ -6.183175078833882e-17,
+ 1.4136516668531243e-16,
+ -4.0697286137608955e-17,
+ -4.053185001509835e-17,
+ -7.17992771696028e-17,
+ 5.719695441862764e-17,
+ -2.7462396336760516e-17,
+ 3.135014521575975e-17,
+ 1.6742135598073278e-16,
+ 1.7527957179998654e-16,
+ 8.569591146049365e-17,
+ -3.1324295821617467e-17,
+ 1.0405932105917087e-16,
+ -5.153335216205362e-17,
+ 7.494256349730431e-17,
+ -8.929414712509933e-17,
+ -3.7223127564886245e-17,
+ 7.82512859475164e-17,
+ 1.4095157637903592e-16,
+ 8.449132969346331e-17,
+ -6.067369793076458e-17,
+ 7.444625512977248e-19,
+ -4.020097777007714e-17,
+ 1.0625134968243639e-16,
+ 6.964860757696493e-17,
+ 4.452299647066671e-17,
+ 2.8124140826802937e-18,
+ -1.2101652361650795e-16,
+ 7.142704589395394e-17,
+ 8.093962293831375e-17,
+ 1.7180541322726382e-16,
+ 1.3323811716697893e-16,
+ 5.401489399971271e-16,
+ 3.191676393535857e-16,
+ 4.946540063067105e-17,
+ -5.336969312192135e-16,
+ -2.8901690602602787e-16,
+ 5.060277397293146e-17,
+ 6.88214269644119e-17,
+ -4.2144852209576754e-17,
+ 1.989989758649446e-16,
+ 1.2705494208814505e-16,
+ 1.6675961149069035e-16,
+ 1.6113478332532977e-16,
+ -1.0859847467055561e-16,
+ -2.5146290621612038e-17,
+ -1.4831348383075786e-16,
+ 1.148540280529879e-16,
+ 5.074753058012824e-17,
+ -4.9961708998202865e-17,
+ 3.7264486595513897e-17,
+ -6.778745119872062e-17,
+ 9.512577044359817e-18,
+ 3.432799542095065e-17,
+ 5.026156197025334e-17,
+ -1.048865016717239e-16,
+ -5.550381910230815e-17,
+ -1.522012327097571e-17,
+ 1.1537101593583353e-16,
+ -1.9025154088719637e-18,
+ 1.1315830779725419e-16,
+ 6.617444900424221e-17,
+ -1.9438744394996148e-16,
+ -2.2085722355165836e-17,
+ 1.0918784085699964e-17,
+ 1.2316719320914582e-16,
+ -2.4815418376590827e-17,
+ 3.399712317592944e-17,
+ -6.292776509997158e-17,
+ 8.271806125530276e-17,
+ -3.399712317592944e-17,
+ -1.420682702059825e-17,
+ 3.0522964603206716e-16,
+ 1.7792654976015623e-16,
+ 1.4608009617686469e-16,
+ 9.487761625983226e-17,
+ 3.358353286965292e-16,
+ -3.2859749833669024e-17,
+ 2.40833635344814e-16,
+ 1.2995007423208065e-16,
+ -3.2384120981451033e-17,
+ 1.196103165751678e-16,
+ 5.480071558163808e-17,
+ -1.8322050568049563e-17,
+ 7.924390268258004e-17,
+ -4.0986799352002515e-17,
+ 2.5994150749478892e-17,
+ 2.9108485755741044e-16,
+ -1.9083056731598346e-16,
+ -1.9852334701272664e-18,
+ -2.0447904742310842e-16,
+ -3.35504456451508e-16,
+ 9.148617574836485e-17,
+ 1.1274471749097767e-16,
+ 1.8735640874326077e-17,
+ -1.588186776101813e-16,
+ -1.7195016983446063e-17,
+ 5.616556359235058e-17,
+ 2.749548356126264e-16,
+ -6.289674582700084e-17,
+ 6.716189586047739e-17,
+ 1.1046997080645683e-16,
+ 2.1829296365274398e-16,
+ 1.6543612251060552e-18,
+ -2.961306592939839e-17,
+ 7.016559545981057e-17,
+ 2.5559880927888552e-17,
+ 4.0883401775433387e-17,
+ -3.6065074707312007e-17,
+ -4.673570460924606e-17,
+ 8.118777712207965e-17,
+ -7.328820227219825e-17,
+ 1.5780538135980383e-16,
+ -1.492233825045662e-16,
+ 1.7668577884132669e-16,
+ -3.24585672365808e-16,
+ 4.359241828154455e-17,
+ -4.3344264097778644e-17,
+ -9.471218013732165e-18,
+ 1.2407709188295413e-18,
+ 1.4209928947895324e-16,
+ 2.808278179617529e-17,
+ 8.5927522032008505e-16,
+ 1.132410258585095e-16
+ ],
+ [
+ -3.222311259025669,
+ -2.582107666558774,
+ 1.937164239979153,
+ -1.9647057890212303,
+ 1.3047329853890586,
+ -0.20813457108177902,
+ -0.9557511574313858,
+ 1.7595893197769092,
+ -1.3955470034412265,
+ -2.6322802278955155,
+ 1.0787897557257335,
+ 0.7486891692923088,
+ -0.12073638654210427,
+ -1.0329610183861513,
+ 1.82585486529016,
+ -0.27919031653671944,
+ -0.8610207090487909,
+ -1.842631424297052,
+ -0.8987972125988316,
+ 1.935024757085138,
+ -1.9629791429105095,
+ 1.303955418457056,
+ -0.20865816435826517,
+ -0.9541659449613203,
+ 1.7574853388137002,
+ -1.3227540684328,
+ -2.3046586820991317,
+ 0.9547642068598419,
+ 0.7345973982994183,
+ -0.12134463058518713,
+ -1.0776435687232269,
+ 1.823731930862975,
+ -1.326239980612765,
+ -2.5234255615314005,
+ 0.8748943796412534,
+ 0.6519287072570982,
+ 0.02064694110081248,
+ -1.152790185171611,
+ 1.8585312876166464,
+ -2.0026457938626145,
+ 1.4223355625529148,
+ -0.43253098775018617,
+ -0.5608713031408783,
+ -0.46168189990193,
+ 1.3786590683252713,
+ 1.4682201348196462,
+ 3.5631018228351903,
+ 3.5870802887538265,
+ -2.010883278805925,
+ 1.4497604511901374,
+ -0.4723786418487769,
+ -0.7724232809322302,
+ 1.6498555561038364,
+ -2.0460949971245,
+ 1.1719353243876125,
+ 2.3890286507240535,
+ 0.13849598840347824,
+ -0.1380896647635385,
+ -0.8518178670632974,
+ 1.699926426396433,
+ -2.0454798520040716,
+ 1.1132786837714095,
+ 2.140438485189413,
+ 0.2920123044551575,
+ -0.053449053279692335,
+ -0.9802200918976413,
+ 1.771745313153937,
+ -2.041018131138343,
+ 1.5568121739530556,
+ -0.627750441142217,
+ -0.5579396548875153,
+ 0.9549557677801614,
+ 1.3909384317287783,
+ -2.1784954205716804,
+ -1.2980890612703144,
+ 1.500934566103466,
+ -0.48976264778801926,
+ -0.6933510318077138,
+ 1.051564478746044,
+ 1.7241622995192785,
+ -2.4100103587710073,
+ -1.33713233013733,
+ 1.401434176237048,
+ -0.4037023026860835,
+ -0.7752201547882176,
+ 1.6892306360723979,
+ -2.047305347584519,
+ 1.69069456570745,
+ -2.0663969629789154,
+ -2.617472959514184,
+ -3.57175441779766,
+ -2.9267191296707105,
+ 1.8994502204135977,
+ -1.2423015032428293,
+ 0.13224659956662285,
+ 1.0268807079925546,
+ -1.8389636969227185,
+ 2.004437697872514,
+ -1.1232666789527146,
+ -2.3520157282322534,
+ -0.5688793498156683,
+ -0.09299474029785867,
+ 1.1013007762525249,
+ -1.8757947997554458,
+ 1.98301058972524,
+ -0.9893437088225416,
+ -1.9729562703426984,
+ -0.6458992807234499,
+ -0.1516972127466845,
+ 1.2171312148782134,
+ -1.9289903311899426,
+ 1.9639357696023982,
+ -1.3666336038401514,
+ 0.2922701841869852,
+ 0.8262170313472773,
+ -1.0851973217516175,
+ -1.6632032042619065,
+ 2.025144092478268,
+ 1.2428996754813406,
+ -1.2999637684254048,
+ 0.1512425092290202,
+ 0.9546085806720096,
+ -1.137983481862081,
+ -1.928162752450324,
+ 2.1083996295031966,
+ 1.2117085624801562,
+ -1.1869865503877928,
+ 0.06204119276318689,
+ 1.0294816862488907,
+ -1.8687983035014963,
+ 1.9949854279037693,
+ -1.5272283778580868,
+ 1.6729308503371971,
+ 1.7377912144201475,
+ 1.9706473527347592,
+ 1.9903607337537983,
+ 2.564539632234864,
+ 2.524184807338926,
+ -1.8523971667520052,
+ 2.002777408952545,
+ -1.5569104323918588,
+ 0.4909581150730008,
+ 0.6369874339873421,
+ -1.612175904486479,
+ 1.3196742067302947,
+ 2.421247942323033,
+ -1.3842304331899227,
+ -0.8955012664518198,
+ 0.4068585530843502,
+ 0.7211391477723028,
+ -1.6960238443550406,
+ 1.321910917076574,
+ 2.2705276138850796,
+ -1.132374680451736,
+ -0.8260128832672786,
+ 0.26557888622129106,
+ 0.8517260499496275,
+ -1.7439386845410578,
+ 2.0179301991642618,
+ -1.657175893085602,
+ 0.7071146495832611,
+ 0.2283706092404961,
+ 0.016664097538215194,
+ -2.245317522532389,
+ -1.1994007709969665,
+ 2.0120891510203154,
+ -1.5683845281854125,
+ 0.5725452669939031,
+ 0.30653386070502203,
+ 0.19298451584071993,
+ -2.609880600692881,
+ -1.3129293190565459,
+ 1.9925364139543604,
+ -1.5101881227436862,
+ 0.4880219638334091,
+ 0.7032529423524815,
+ -1.65372977422967,
+ 2.0178106895175874,
+ -2.914446444258119,
+ -3.590942827298063,
+ 7.789973418718137e-16,
+ 1.5499296727712354e-15,
+ 2.2012310075801755e-16,
+ 9.10415661691176e-17,
+ -5.223645568272369e-17,
+ -1.0922919988762729e-16,
+ -2.1311274506663064e-16,
+ -1.571436368697614e-16,
+ -1.6559768122399477e-16,
+ -4.0986799352002515e-17,
+ 9.599431008677885e-17,
+ 4.450231695535289e-16,
+ -8.494110915153902e-17,
+ 8.741231123154119e-17,
+ -3.750230102162289e-17,
+ -2.826889743399972e-16,
+ -7.765158000341546e-17,
+ -7.262645778215583e-17,
+ -1.0213370275428424e-16,
+ 1.338585026263937e-16,
+ 3.4348674936264474e-17,
+ -5.724089838866952e-17,
+ -8.255262513279215e-17,
+ 3.3624891900280575e-17,
+ 2.4195032917176056e-17,
+ -3.9456515218779415e-16,
+ 1.7288074802358278e-17,
+ 1.2159555004529505e-17,
+ 3.510554519675049e-16,
+ 2.6173545544826333e-16,
+ -8.246990707153685e-17,
+ 3.4327995420950645e-18,
+ 2.749548356126264e-16,
+ 9.165161187087545e-17,
+ -3.781766363015873e-17,
+ -3.8827857953239114e-16,
+ -9.661469554619362e-17,
+ 5.82748741543608e-17,
+ -8.39588321741323e-17,
+ 4.435342444509334e-16,
+ -1.4459117107426924e-16,
+ 1.4355719530857795e-16,
+ 2.427775097843136e-16,
+ 2.0441700887716693e-17,
+ 1.3959965306539456e-17,
+ -1.217816656831195e-16,
+ -8.91080314872749e-17,
+ 6.2969124130599224e-18,
+ 7.610061635487855e-18,
+ 5.488343364289338e-17,
+ -4.218621124020441e-18,
+ 5.593744268904494e-17,
+ 8.266119258818973e-17,
+ 4.6652986547990755e-17,
+ -1.075334796318936e-18,
+ -6.005331247134981e-17,
+ 8.176680355086677e-17,
+ -1.6286410779344846e-17,
+ 5.612420456172293e-17,
+ 1.254832989242943e-16,
+ 8.929414712509933e-17,
+ 7.411021300592282e-18,
+ 5.979481852992699e-17,
+ -5.877118252189262e-17,
+ -1.74038800881157e-16,
+ -1.738733647586464e-16,
+ -6.276232897746097e-18,
+ -1.651776285691827e-18,
+ -4.135903062765138e-20,
+ 8.586134758300426e-17,
+ -5.463527945912747e-17,
+ 3.955991279534854e-17,
+ 6.088049308390284e-17,
+ -5.939156798130739e-17,
+ -1.558408274049904e-16,
+ -3.081247781760028e-17,
+ 2.9695783990653694e-17,
+ 1.0410068008979852e-16,
+ 8.081554584643079e-17,
+ -6.026010762448807e-17,
+ -7.345363839470886e-17,
+ -8.581998855237661e-17,
+ -2.1465336895751065e-17,
+ 1.406207041340147e-17,
+ -6.526455033043388e-17,
+ -5.939156798130739e-17,
+ -1.0567878560218484e-16,
+ -3.830880211886209e-17,
+ 4.963083675318165e-18,
+ -2.0735866993055864e-16,
+ 3.987010552505593e-17,
+ 4.2120036791200164e-16,
+ 2.1548054957006368e-16,
+ -5.033394027385173e-17,
+ -7.64728476305274e-17,
+ 2.7462396336760516e-17,
+ -1.2683522223793565e-16,
+ -9.098986738083304e-19,
+ -1.4459117107426924e-16,
+ -1.2742717336379391e-16,
+ 9.403621848050098e-17,
+ -1.018259334052777e-16,
+ 4.404736761844872e-17,
+ -8.735027268559971e-17,
+ -5.1698788284564224e-17,
+ 2.845501307182415e-17,
+ -3.8618994848569473e-17,
+ 2.5353085774750295e-17,
+ 4.5164061445395305e-17,
+ -1.6957202557337067e-17,
+ -4.206213414832145e-17,
+ 9.380228146351333e-17,
+ 5.136791603954301e-17,
+ -5.54624600716805e-17,
+ -5.1523012404396705e-17,
+ -5.407693254565418e-18,
+ -4.1855338995183194e-17,
+ -2.547716286663325e-17,
+ 1.9165774792853649e-16,
+ -6.1624955635200554e-18,
+ -1.0918784085699964e-17,
+ -4.7521526191171434e-17,
+ 1.7358385154425283e-16,
+ 8.850832554317396e-18,
+ 1.018259334052777e-16,
+ -7.113753267956038e-17,
+ 9.719372197498074e-18,
+ 2.5642598989143854e-18,
+ -1.6146565557035098e-16,
+ -1.0443155233481973e-16,
+ -1.6626330312315856e-17,
+ -1.19941188820189e-18,
+ -1.0453494991138886e-16,
+ -3.5444689247897236e-17,
+ -1.1075948402085039e-16,
+ -6.675347543302933e-17,
+ -2.3161057151484772e-17,
+ -1.1572256769616857e-16,
+ -6.919365824006077e-17,
+ 1.4392942658422682e-17,
+ -9.181704799338606e-17,
+ 8.048467360140958e-17,
+ -1.3855275260263212e-17,
+ -1.112351128730684e-16,
+ -5.9557004103817985e-18,
+ -1.1580528575742386e-17,
+ 1.0381116687540496e-16,
+ 1.5857052342641538e-16,
+ -6.057030035419545e-17,
+ -1.170460566762534e-17,
+ 1.6200332296851045e-16,
+ 1.9031357943313782e-16,
+ 7.059986528140091e-17,
+ -7.982292911136717e-18,
+ -7.051714722014561e-17,
+ 3.45347905740889e-18,
+ -1.2407709188295414e-17,
+ -6.480960099352972e-17,
+ -1.282957130069746e-16,
+ 8.300757446969631e-17,
+ 5.867683223327329e-17,
+ -1.416288305055637e-17,
+ 4.241368590865649e-17,
+ -3.914632248907203e-17,
+ -1.4301952791041848e-16,
+ -3.788487205492866e-17,
+ -1.2659999275124089e-16,
+ 2.115514416604368e-17,
+ -1.9134497025941487e-16,
+ 1.048865016717239e-16,
+ -1.2713766014940035e-16,
+ 2.8603905582083697e-16,
+ -3.236344146613721e-17,
+ 2.2003004293910533e-17,
+ -3.215406137358472e-17,
+ -1.1715979401047946e-16,
+ -1.2976395859425622e-16,
+ -6.675864531185779e-17,
+ -7.050060360789454e-16,
+ -5.687383699184911e-17
+ ],
+ [
+ 3.833641814499361,
+ 2.931029294471988,
+ -2.8656290996699165,
+ 4.3585838151112135,
+ -4.4397559241463505,
+ 2.9716909077673432,
+ -0.5843020449558547,
+ -1.9957497636693078,
+ 2.5847312627083734,
+ 4.366201289124314,
+ -5.1342530299429185,
+ -2.904585797126129,
+ 2.8195877059049934,
+ -0.38515772063087883,
+ -2.280745903912666,
+ 2.599566676933304,
+ 4.389997012468831,
+ 1.5718160496619487,
+ 0.409378647629576,
+ -2.861521538595922,
+ 4.3566811327435335,
+ -4.440652575880897,
+ 2.9752645867340104,
+ -0.5892116498847311,
+ -1.9911086316193736,
+ 2.4879249303833317,
+ 3.8369462306999385,
+ -4.512269260518152,
+ -2.7821439172051097,
+ 2.823310291301459,
+ -0.26864780909786395,
+ -2.276254933268358,
+ 2.603697257026761,
+ 4.4353920248298175,
+ -4.68749784537791,
+ -2.7067846888320926,
+ 2.5625139039242444,
+ -0.06846531538787384,
+ -2.4444404121090173,
+ 4.228476521919374,
+ -4.518840497434042,
+ 3.3457116072147794,
+ -3.6103710777858593,
+ -3.7607849516779757,
+ -4.418648803828552,
+ -4.466672360440943,
+ -5.918777368105747,
+ -5.834416082328407,
+ 4.192045494953603,
+ -4.5335428595565475,
+ 3.4079270484063264,
+ -1.0336546505423652,
+ -1.5713250943237498,
+ 3.6707394362023344,
+ -2.985628229128446,
+ -5.49937113733713,
+ 3.0080510478221836,
+ 1.9665747796833597,
+ -0.8415486875879294,
+ -1.7580620588745808,
+ 3.8550633447340825,
+ -2.9852046676714923,
+ -5.148030140704122,
+ 2.444567315039632,
+ 1.8072826457070976,
+ -0.5230699787400729,
+ -2.0509194016912895,
+ 3.9578046703111935,
+ -4.576238676765358,
+ 3.6407113350845037,
+ -1.5247265994678771,
+ -0.5846720458630017,
+ -0.16210309617140753,
+ 5.096430949746243,
+ 2.734576153541325,
+ -4.557011494426078,
+ 3.4359253450425413,
+ -1.2174399480004294,
+ -0.7639631703140631,
+ -0.5769542083673185,
+ 5.912854827698143,
+ 2.9858327586903792,
+ -4.506781726782659,
+ 3.2997578583246616,
+ -1.0270238290113824,
+ -1.719434773113888,
+ 3.761461426353521,
+ -4.588061122616726,
+ 6.546459963337566,
+ 8.072431655009343,
+ 7.354131281435963,
+ 5.898917717573057,
+ -4.430954955813648,
+ 4.3673199589883005,
+ -2.891187016180403,
+ 0.32922018715445817,
+ 2.219551848951994,
+ -4.052958808957075,
+ 3.146788780281579,
+ 5.956516126354229,
+ -2.302675986038282,
+ -1.6253307565142219,
+ 0.13319147936024409,
+ 2.3927783049072535,
+ -4.194206742948938,
+ 2.966939563390392,
+ 5.25114288152352,
+ -1.6949988958355646,
+ -1.4175132365074214,
+ -0.18884152785230743,
+ 2.6613913343818316,
+ -4.269834274304057,
+ 4.465368461555556,
+ -3.164362426324096,
+ 0.8364163650859647,
+ 1.0308055151718853,
+ 0.9730925084504471,
+ -5.234821314609242,
+ -2.887654580780509,
+ 4.416172158345349,
+ -2.923574209614844,
+ 0.5179232995478374,
+ 1.2140657118877884,
+ 1.452675191957466,
+ -5.7106207202869665,
+ -2.95569867697764,
+ 4.317342638377665,
+ -2.766285685803417,
+ 0.32241411699241823,
+ 2.356969629579917,
+ -4.123213752431015,
+ 4.556140991385678,
+ -7.275372812390559,
+ -7.292935992142502,
+ -4.092115814895013,
+ -3.9627823317410527,
+ -1.4806867825990135,
+ -1.285344049195369,
+ 2.2766244441331462,
+ -4.0836871029361115,
+ 4.5671829304753135,
+ -3.4773614796040273,
+ 1.2813916145074256,
+ 1.3324742019126588,
+ -2.204742196550661,
+ -3.5238862884317075,
+ 5.297296733716899,
+ 2.930112272298031,
+ -3.3462421560521824,
+ 1.0878740935648141,
+ 1.6372740436348556,
+ -2.3408097736051565,
+ -3.5224865687697386,
+ 4.723427035938109,
+ 2.864052006519544,
+ -3.1175203440306967,
+ 0.7724929802121678,
+ 1.8190324069349235,
+ -3.904748169348273,
+ 4.589903472822334,
+ -3.789341320481549,
+ 1.259757676567202,
+ 2.9750973735755246,
+ 3.3484550943499527,
+ 1.4954429961793614,
+ -4.004699816960624,
+ 4.571523253043936,
+ -3.598356217117524,
+ 1.1885161869733893,
+ 3.0659856847102502,
+ 4.158787897064394,
+ 1.8199141032343575,
+ -4.152168578932795,
+ 4.548445277327476,
+ -3.472897537776112,
+ 1.1282116008978436,
+ 1.479770410413346,
+ -3.612159674705573,
+ 6.007678338783779,
+ 7.246292450927141,
+ -1.985233470127266e-17,
+ -8.594406564425957e-16,
+ -1.132410258585095e-16,
+ 2.3425754947501744e-16,
+ -5.277412308088316e-17,
+ 7.543887186483611e-17,
+ 2.693300074472658e-16,
+ 8.3876114112877e-17,
+ -2.8885146990351726e-16,
+ 1.4823076576950256e-16,
+ 7.4859845436049e-18,
+ -4.566036981292713e-16,
+ 1.6857940883830702e-16,
+ -3.211115137930853e-16,
+ 5.608284553109528e-17,
+ 2.765678378071048e-16,
+ -4.714929491552257e-18,
+ -9.615974620928945e-18,
+ 1.6071085326139634e-16,
+ -1.390077019395363e-16,
+ 4.384057246531046e-17,
+ 1.952146245625145e-16,
+ 3.8488713902092373e-16,
+ 3.542400973258341e-17,
+ 1.2912289361952762e-16,
+ 7.6663099171414595e-16,
+ -2.1109649232353264e-16,
+ -8.337980574534518e-17,
+ -4.404736761844872e-16,
+ -2.665899716681839e-16,
+ 3.7653261483413815e-16,
+ 3.5072457972248373e-17,
+ -1.1613615800244509e-16,
+ -2.268129239620402e-16,
+ -6.633988512675282e-17,
+ 4.599124205794834e-16,
+ -3.937379715752411e-17,
+ -1.8992066864217513e-16,
+ -2.729696021424991e-17,
+ -5.434163034167115e-16,
+ 2.9216019235372937e-16,
+ -2.134125980386811e-17,
+ -2.875279809234324e-16,
+ 5.730293693461099e-17,
+ 1.1299287167474358e-16,
+ 3.748782536090321e-16,
+ 1.4847891995326847e-16,
+ -3.9770843851549566e-16,
+ -2.57087734381481e-16,
+ 7.543887186483611e-17,
+ 3.284320622141796e-16,
+ -2.4732700315335524e-17,
+ -1.826621587670223e-16,
+ -1.3334151474354806e-16,
+ -5.280721030538529e-16,
+ 1.2593824826119845e-17,
+ -2.506357256035674e-16,
+ 6.832511859688009e-17,
+ -1.8462671272183575e-16,
+ -1.223400125965928e-16,
+ -8.867376166568455e-17,
+ -7.46116912522831e-17,
+ -1.729221070542104e-16,
+ 1.8826630741706907e-16,
+ 2.2499312661442353e-16,
+ 6.683619349428464e-17,
+ -1.0041972636393755e-16,
+ 6.017738956323276e-17,
+ -1.3234889800848441e-17,
+ -7.436353706851719e-17,
+ 3.179682274653838e-16,
+ 3.240893639982762e-16,
+ -1.840270067777348e-16,
+ -2.5973471234165066e-17,
+ 4.0697286137608957e-16,
+ -1.2639319759810263e-16,
+ -4.433688083284228e-17,
+ -3.325266062463171e-16,
+ -3.705769144237564e-17,
+ 1.3524403015242001e-17,
+ 2.448454613156962e-16,
+ 3.6131249156316244e-16,
+ 5.343586757092558e-17,
+ 2.192028623265523e-16,
+ 4.350970022028925e-17,
+ 3.0936554909483235e-17,
+ 1.0066788054770346e-16,
+ -4.896909226313923e-17,
+ -8.410772468439184e-16,
+ -1.0257039595657542e-17,
+ -3.897675046349866e-16,
+ -7.011182871999462e-16,
+ -3.8281918748954116e-16,
+ 7.254373972090053e-17,
+ 4.8472783895607416e-17,
+ 1.046124980938157e-17,
+ 6.915229920943311e-17,
+ -1.257314531080602e-16,
+ 3.2028433318053227e-16,
+ 1.0935327697951025e-16,
+ -1.469693153353592e-16,
+ 5.143409048854726e-16,
+ 9.231335636091788e-17,
+ 2.567568621364598e-16,
+ 3.265709058359353e-16,
+ 9.082443125832243e-17,
+ -6.501639614666798e-17,
+ 4.8658899533431847e-17,
+ 1.9620724129757814e-16,
+ -3.5692843431663144e-17,
+ 1.3085997290588898e-16,
+ -1.0422475718168147e-16,
+ -2.1101377426227734e-16,
+ 2.006740166053645e-16,
+ -2.1821024559148868e-16,
+ 5.823351512373315e-17,
+ -2.762783245927112e-17,
+ -1.0112282988460762e-17,
+ 1.3615392882622836e-16,
+ 7.28074035411518e-17,
+ 5.004442705945817e-17,
+ 6.460280584039146e-17,
+ -4.345179757741054e-16,
+ 0.0,
+ -3.654587343835845e-16,
+ 2.5262095907369465e-16,
+ -7.876504265609426e-17,
+ -2.6924728938601048e-17,
+ -5.7065122508502e-17,
+ 2.0183206946293872e-17,
+ -1.9571093293004632e-16,
+ -1.1603276042587596e-16,
+ 1.3899219230305093e-16,
+ 1.6345088904047824e-16,
+ -4.532949756790591e-17,
+ -3.0208635970436566e-16,
+ 1.8439923805338367e-16,
+ 2.395515053953568e-16,
+ 4.016789054557502e-16,
+ -3.2756352257099896e-17,
+ 2.901749588836021e-16,
+ -1.8905212899899445e-16,
+ -4.532949756790591e-17,
+ -1.7767839557639032e-16,
+ 7.318894059869188e-16,
+ -1.2076836943274203e-17,
+ 2.0348643068804478e-17,
+ 4.109433283163441e-16,
+ 7.543887186483611e-17,
+ -1.1828682759508296e-16,
+ -5.848166930749906e-16,
+ -2.9166388398619756e-16,
+ -1.6047303883528734e-16,
+ -6.154223757394526e-17,
+ -5.939156798130739e-16,
+ 2.134125980386811e-17,
+ -2.68833699079734e-16,
+ -4.054839362734941e-16,
+ -6.617444900424221e-17,
+ -3.3695202252347577e-16,
+ -8.036059650952663e-17,
+ 1.0288575856511126e-16,
+ -1.1849362274822121e-16,
+ 9.669741360744892e-17,
+ 6.761374327008447e-16,
+ 1.4227506535912076e-16,
+ 2.486504921334401e-16,
+ -1.8859717966209029e-16,
+ 2.752857078576476e-16,
+ -1.2688950596563445e-16,
+ 2.4104043049795226e-16,
+ -1.3995895964397228e-16,
+ 2.3773170804774015e-16,
+ -3.474158572722716e-17,
+ 6.778745119872062e-17,
+ 2.5295183131871586e-16,
+ 7.543887186483611e-17,
+ 6.154223757394526e-17,
+ 2.785944303078597e-16,
+ 8.32474568473367e-16
+ ],
+ [
+ 3.2626531690765965,
+ 2.5321104663780747,
+ -2.2935477624303613,
+ 3.1652812051741632,
+ -3.012054121470335,
+ 1.7972819141624372,
+ -0.04218383857653014,
+ -1.7290744405734284,
+ 1.952944994205236,
+ 3.3862835902583552,
+ -3.3414212482838455,
+ -1.9342915210602003,
+ 1.6808802586618574,
+ 0.09885282571391595,
+ -1.9163825807550607,
+ 1.937190958186814,
+ 3.1234796017493176,
+ 1.5033534675616373,
+ 0.5246061616435301,
+ -2.2904723471072614,
+ 3.163621836931218,
+ -3.0123275304910395,
+ 1.7995304096811269,
+ -0.0455499309653598,
+ -1.7256992792907662,
+ 1.8732822705794347,
+ 2.973099388224771,
+ -2.938739693058656,
+ -1.8582985704414532,
+ 1.6832421696345923,
+ 0.18110053870962484,
+ -1.9130890241941614,
+ 1.9420085535697014,
+ 3.392122282116828,
+ -3.015714530081967,
+ -1.7880246629046095,
+ 1.485618969097834,
+ 0.32169283761530415,
+ -2.0225725715278617,
+ 3.10134902277794,
+ -3.0956042623136875,
+ 2.087009115560901,
+ -1.930532841208327,
+ -2.0498906095177034,
+ -3.0187114534750665,
+ -3.0752094364110807,
+ -4.588772962855214,
+ -4.547116972540795,
+ 3.0826879467151085,
+ -3.1129032339328337,
+ 2.136004541635449,
+ -0.36285867287439355,
+ -1.446336120575051,
+ 2.7893965596086763,
+ -2.1160675970768135,
+ -3.970866663243935,
+ 1.7129016420573435,
+ 1.1924710404409347,
+ -0.2252384696280069,
+ -1.5711098026843686,
+ 2.8970555512176763,
+ -2.0971873629412396,
+ -3.686695038508815,
+ 1.3350260544899368,
+ 1.0725476101864941,
+ 0.0013636573472105976,
+ -1.7651688486807187,
+ 2.9554474276263307,
+ -3.171838422005492,
+ 2.3213131324762677,
+ -0.7178063928520557,
+ -0.644829400478496,
+ -0.5365129821693215,
+ 3.6686431996612043,
+ 2.009507705247542,
+ -3.142661155038791,
+ 2.158070479182627,
+ -0.4951199717830358,
+ -0.7802343668906165,
+ -0.8846609152216742,
+ 4.219026506238258,
+ 2.168659350915249,
+ -3.0819146739703234,
+ 2.051004654717182,
+ -0.358096961787828,
+ -1.5453425576932311,
+ 2.842760906756066,
+ -3.221270725793205,
+ 4.479941523356019,
+ 5.546252844352152,
+ 5.429847967869341,
+ 4.375017063210359,
+ -3.1958213622038425,
+ 2.9409124602563166,
+ -1.7351486661763056,
+ -0.13839785906319063,
+ 1.8760050590449766,
+ -3.0083961165754514,
+ 2.1947338078039977,
+ 4.22610502148936,
+ -1.1642128357180814,
+ -0.919761445518793,
+ -0.2763325816468581,
+ 1.9890776693626446,
+ -3.0838902495248743,
+ 2.0471501874487186,
+ 3.6937148103713637,
+ -0.7848247834370353,
+ -0.7797359810351809,
+ -0.5014115640174477,
+ 2.1626646499269486,
+ -3.1222007999901447,
+ 3.037679212699986,
+ -1.9455381845830455,
+ 0.22157985380207915,
+ 0.9467682121859009,
+ 1.0966610397043361,
+ -3.7007627300903865,
+ -2.0813856829224475,
+ 2.9879656883022028,
+ -1.7599074670488553,
+ -0.005026913010996671,
+ 1.070572205446856,
+ 1.4609336421405106,
+ -4.005106691652765,
+ -2.1112205708484577,
+ 2.8941581917315093,
+ -1.6399038314643961,
+ -0.14319844735250256,
+ 1.9657491758582044,
+ -3.0464341644168464,
+ 3.1416850370407143,
+ -4.7805789937322904,
+ -4.811431920142279,
+ -3.01442538351103,
+ -2.944732815341071,
+ -1.6794307084437943,
+ -1.5527770123120608,
+ 1.913656250790912,
+ -3.0258235498719586,
+ 3.15758679513376,
+ -2.191456945988544,
+ 0.5415765141134516,
+ 1.28586081812291,
+ -1.7069076875531997,
+ -2.827288457364861,
+ 3.53366375676172,
+ 1.9958319802134183,
+ -2.0879630137036997,
+ 0.4020169514818383,
+ 1.4907156444217926,
+ -1.7870900764041886,
+ -2.778593935522327,
+ 3.118485222660342,
+ 1.9351751909405297,
+ -1.90969457680523,
+ 0.17613491099044007,
+ 1.6118963823694754,
+ -2.9261177730334587,
+ 3.2027000677654387,
+ -2.4423348134876717,
+ 0.6632391969387542,
+ 1.7323572267044551,
+ 2.6689367623822156,
+ 1.25442379132993,
+ -2.982442629396814,
+ 3.1639582388474796,
+ -2.2878439730982745,
+ 0.5968015866355896,
+ 1.7294349967652405,
+ 3.2580255837990735,
+ 1.4799978026684848,
+ -3.062560671354031,
+ 3.1317954052048718,
+ -2.187917485829105,
+ 0.4310669561924877,
+ 1.3850832479395807,
+ -2.755188195581685,
+ 4.434641423282315,
+ 5.372957641027573,
+ -1.3689839137752608e-16,
+ -7.551331811996589e-16,
+ -1.0422475718168147e-16,
+ 1.682485365932858e-16,
+ -2.3491929396505983e-17,
+ 7.386722870098537e-17,
+ 2.3475385784254925e-16,
+ 6.749793798432706e-17,
+ -1.8082168190409183e-16,
+ 8.271806125530276e-17,
+ -1.6005944852901086e-17,
+ -4.0366413892587746e-16,
+ 7.411538288475128e-17,
+ -2.6684846560960673e-16,
+ 4.586716496606538e-17,
+ 2.4699613090833406e-16,
+ 5.045801736573468e-18,
+ 1.2697222402688973e-17,
+ 1.4001065843225685e-16,
+ -6.828375956625243e-17,
+ 2.9778502051908992e-18,
+ 1.3565762045869654e-16,
+ 2.515456242773757e-16,
+ 9.326461406535387e-18,
+ 9.330597309598151e-17,
+ 6.440428249337872e-16,
+ -1.5402103005737373e-16,
+ -5.434576624473391e-17,
+ -3.541987382952064e-16,
+ -2.1700049394562987e-16,
+ 2.418676111105053e-16,
+ 2.4815418376590827e-17,
+ -1.252351447405284e-16,
+ -1.9405657170494027e-16,
+ -8.031923747889897e-17,
+ 3.927453548401775e-16,
+ -3.821574429994987e-17,
+ -1.444774337400432e-16,
+ 1.0670629901934055e-17,
+ -4.161132071448005e-16,
+ 1.7800926782141153e-16,
+ -5.757177063369073e-17,
+ -2.658558488745431e-16,
+ 2.508425207567056e-17,
+ 8.900463391070577e-17,
+ 3.068840072571732e-16,
+ 1.1013909856143562e-16,
+ -2.31817366667986e-16,
+ -1.647743780205631e-16,
+ 4.5494933690416516e-17,
+ 2.2189119931734965e-16,
+ -3.532061215601428e-17,
+ -1.352957289407046e-16,
+ -7.618333441613384e-17,
+ -3.518826325800579e-16,
+ 1.7189847104617606e-17,
+ -1.6882756302207292e-16,
+ 4.940336208472957e-17,
+ -1.2713766014940035e-16,
+ -4.35510592509169e-17,
+ -6.741521992307176e-17,
+ -4.946540063067105e-17,
+ -1.2482155443425188e-16,
+ 1.403725499502488e-16,
+ 1.9025154088719634e-16,
+ 3.490702184973777e-17,
+ -2.93390623514902e-17,
+ 3.382134729576192e-17,
+ 1.3234889800848441e-17,
+ -6.137680145143465e-17,
+ 2.547716286663325e-16,
+ 2.393860692728462e-16,
+ -1.4051730655744558e-16,
+ -2.249931266144235e-17,
+ 3.6156064574692835e-16,
+ -6.964860757696493e-17,
+ -2.605618929542037e-17,
+ -2.2590302528823186e-16,
+ -2.862044919433476e-17,
+ 2.304731981725873e-17,
+ 1.743696731261782e-16,
+ 2.481541837659083e-16,
+ 4.1276312566396075e-17,
+ 1.4264729663476962e-16,
+ 3.714040950363094e-17,
+ 3.010937429693021e-17,
+ 9.58702329948959e-17,
+ -1.5137405209720406e-17,
+ -5.315462616265756e-16,
+ 1.852884572118782e-17,
+ -2.9381455357883543e-16,
+ -4.896909226313924e-16,
+ -2.896786505160703e-16,
+ 7.246102165964522e-17,
+ 5.2939559203393765e-17,
+ 2.10103875588469e-17,
+ 3.73472046567692e-17,
+ -6.063233890013693e-17,
+ 2.2118809579667958e-16,
+ 8.834288942066334e-17,
+ -1.2491978213199255e-16,
+ 3.422873374744428e-16,
+ 4.888637420188393e-17,
+ 2.0778776987332053e-16,
+ 2.7942161092041275e-16,
+ 1.0281855014034133e-16,
+ -4.6404832364224846e-17,
+ 1.8895907118008223e-17,
+ 1.5137405209720404e-16,
+ -3.817438526932222e-17,
+ 7.924390268258004e-17,
+ -7.990564717262246e-17,
+ -1.6138293750909567e-16,
+ 1.3565762045869654e-16,
+ -1.4798261158573665e-16,
+ 7.328820227219825e-17,
+ 8.602678370551488e-18,
+ -2.522900868286734e-18,
+ 1.1001502146955267e-16,
+ 2.9488988837515437e-17,
+ 9.760731228125725e-18,
+ 6.193514836490795e-17,
+ -3.124261173612785e-16,
+ 5.045801736573468e-18,
+ -2.4240527850866476e-16,
+ 2.4302566396807953e-16,
+ -4.344766167434777e-17,
+ -3.087451636354176e-17,
+ -1.9097532392318023e-17,
+ 1.2242273065784808e-17,
+ -1.3334151474354806e-16,
+ -6.440635044491012e-17,
+ 1.2133705610387225e-16,
+ 1.0740940254001063e-16,
+ 8.602678370551488e-18,
+ -2.3194144375986896e-16,
+ 1.282129949457193e-16,
+ 1.0273583207908602e-16,
+ 2.838883862281991e-16,
+ -3.0936554909483235e-17,
+ 1.7842285812768804e-16,
+ -1.3937993321518516e-16,
+ -2.5642598989143855e-17,
+ -8.40415502353876e-17,
+ 5.174841912131741e-16,
+ -1.522012327097571e-17,
+ 4.0531850015098356e-18,
+ 2.93152809088793e-16,
+ 6.021874859386041e-17,
+ -7.17165591083475e-17,
+ -4.0711761798328635e-16,
+ -2.1899606717341405e-16,
+ -1.1398548840980721e-16,
+ -2.8785885316845363e-17,
+ -4.0349870280336685e-16,
+ 2.8951321439355965e-18,
+ -1.8413040435430394e-16,
+ -2.929046549050271e-16,
+ -4.4006008587821066e-17,
+ -2.4488682034632384e-16,
+ -6.491299857009885e-17,
+ 7.894921958935802e-17,
+ -7.465305028291075e-17,
+ 8.569591146049365e-17,
+ 4.922965415609344e-16,
+ 9.392635855539628e-17,
+ 1.8404768629304863e-16,
+ -1.407861402565253e-16,
+ 1.9951596374779025e-16,
+ -7.701051502868686e-17,
+ 1.6411263353052067e-16,
+ -1.0058516248644815e-16,
+ 1.6692504761320096e-16,
+ -2.3036980059601818e-17,
+ 4.599124205794833e-17,
+ 1.7978770613840054e-16,
+ 6.336203492156192e-17,
+ 3.987010552505593e-17,
+ 2.9712327602904754e-16,
+ 6.865599084190129e-16
+ ],
+ [
+ 4.197064972647805,
+ 3.5262548733532246,
+ -1.912252735329304,
+ 0.1832522678104962,
+ 1.6025983905560635,
+ -2.9177187558200184,
+ 3.1980177739855193,
+ -2.4427864141629794,
+ 0.7484508765854921,
+ 2.0005897932083996,
+ 3.0490209543310693,
+ 1.3542245105815343,
+ -2.974224885674684,
+ 3.176156189483138,
+ -2.2889655594064227,
+ 0.5253744439613156,
+ 1.5037308952404862,
+ 3.1177075287627303,
+ 1.9340681299878322,
+ -1.9113103597018757,
+ 0.18084108683525874,
+ 1.6057346141874858,
+ -2.9205008633974625,
+ 3.1994936534241707,
+ -2.4425521557561907,
+ 0.665449635697957,
+ 1.7352347417047254,
+ 2.661852784837174,
+ 1.2503652446019433,
+ -2.9769518823320866,
+ 3.1611209691002324,
+ -2.288502997678698,
+ 0.5408798326905898,
+ 1.6290330188413233,
+ 3.078488582698666,
+ 1.3846375666599682,
+ -3.05730429530601,
+ 3.1291964142600737,
+ -2.188852273926459,
+ 0.4354565228181658,
+ 1.3790197273767777,
+ -2.7493102970948935,
+ 5.678534547297419,
+ 5.586820199925385,
+ 1.4180649469424484,
+ 1.2337074281103555,
+ -2.698186165029726,
+ -2.8599573565342338,
+ 0.4996726129560127,
+ 1.3225550226117802,
+ -2.7145381154437356,
+ 3.226800179726292,
+ -2.639865338023954,
+ 1.196991651940131,
+ 0.3142409391008251,
+ -0.038314496844106934,
+ -3.8504369962018647,
+ -1.9048553536590984,
+ 3.2189331840459636,
+ -2.556316630426386,
+ 0.9837942736230246,
+ 0.47087835332753075,
+ 0.2211884948955769,
+ -3.6098822280382175,
+ -1.9473328952770412,
+ 3.1928328388637466,
+ -2.4116237913973997,
+ 0.8513235907899287,
+ 1.0852488844409085,
+ -2.5676615825086677,
+ 3.2202949870779265,
+ -1.8817503923033234,
+ -3.538416698991854,
+ -0.05959125432614258,
+ 0.31407641347935256,
+ 1.2143647061950655,
+ -2.6987280563045157,
+ 3.2292437528178524,
+ -1.9331427828523242,
+ -3.9511533750473107,
+ -0.3838320236880776,
+ 0.12802154556469442,
+ 1.4211154125802987,
+ -2.77340991022093,
+ 3.2266193241415766,
+ -2.5739546171046706,
+ 1.0951921448156052,
+ 0.7403121927368846,
+ -2.0371372234026897,
+ -2.3261290728591306,
+ 1.0609197299804383,
+ 1.0163925253410795,
+ -0.0006008300783142588,
+ -1.7619530748891323,
+ 2.9520811633683635,
+ -3.1694188257885485,
+ 2.320682257763085,
+ -0.7190735399729828,
+ -0.6310350961771879,
+ -0.5896846308412883,
+ 4.187332941164634,
+ 2.1291190510833355,
+ -3.140347675878193,
+ 2.2206264449495583,
+ -0.4966166743735512,
+ -0.7817304108707508,
+ -0.7891206044436642,
+ 3.6907392359840117,
+ 2.0459764670109477,
+ -3.0797863632523996,
+ 2.050729709122054,
+ -0.3597216714228437,
+ -1.5422371123326537,
+ 2.8393442977597854,
+ -3.2185693234862005,
+ 1.7145511815374694,
+ 3.3295851021566474,
+ 0.6304176518954441,
+ 0.010828530887202523,
+ -1.6622420791839858,
+ 2.9402683068428432,
+ -3.1924230057332506,
+ 1.6439768013884468,
+ 3.4845995041279005,
+ 0.9577545030683475,
+ 0.17308181106606457,
+ -1.852214827693228,
+ 2.9956016951121764,
+ -3.1685075906744515,
+ 2.241674981964441,
+ -0.6125534432280118,
+ -1.217239367952983,
+ 3.935150611228742,
+ 3.781743479583626,
+ -0.5317711559116999,
+ -0.7306741806800221,
+ -5.156772611080638,
+ -5.276802612965027,
+ 2.291046503009089,
+ -0.6791394790721395,
+ -1.150309787020494,
+ 2.669225111668169,
+ -3.2264420341997306,
+ 2.7393070357394063,
+ -0.9847554394604672,
+ -2.4096478834586375,
+ -2.419470653830847,
+ -0.9904989623577175,
+ 2.7445075387160323,
+ -3.2263479535984647,
+ 2.6130109268518584,
+ -0.8333541370185005,
+ -2.007539040960464,
+ -2.430332525925718,
+ -1.1002310337407033,
+ 2.8567160767691684,
+ -3.213014725667766,
+ 2.529450005803526,
+ -0.9266543298497802,
+ -0.9080769766187686,
+ 2.4510802970242955,
+ -2.0688985044733887,
+ -3.485939249351948,
+ 2.1412832571376716,
+ 1.4830216061860741,
+ -0.7937115714015811,
+ -1.1229684683629968,
+ 2.5922942349561895,
+ -2.195864997650054,
+ -4.063373838924962,
+ 2.180490669044184,
+ 1.4118050930878647,
+ -0.5724379140109414,
+ -1.2538170687130992,
+ 2.671913892087115,
+ -3.226708717694603,
+ 2.6801640845591232,
+ -1.2647573878249385,
+ 0.857722037057087,
+ 1.237071389858687,
+ -1.0477896819209202e-15,
+ -1.2084074773634041e-15,
+ -2.450108974382068e-16,
+ -1.2149215246872594e-16,
+ 1.5211851464850176e-16,
+ 1.4603873714623704e-16,
+ 3.262813926215417e-16,
+ 1.56006263527501e-16,
+ 3.839772403471154e-16,
+ -1.6270642648918052e-16,
+ -1.807467186610792e-16,
+ -6.246661190847326e-16,
+ -2.922429104149847e-16,
+ -1.8648786910008006e-16,
+ -8.602678370551488e-18,
+ 2.93152809088793e-16,
+ 6.894550405629486e-17,
+ 1.5005056311711922e-16,
+ 2.1320580288554286e-16,
+ 2.3806258029276136e-16,
+ -2.0250415371063806e-16,
+ -1.0697513271842029e-16,
+ -1.8164886251664485e-16,
+ -1.2035477912646553e-16,
+ -3.441071348220595e-17,
+ 6.3808712452340545e-16,
+ 3.101927297073854e-17,
+ 6.220398206398768e-17,
+ -3.2028433318053227e-16,
+ -2.102693117109796e-16,
+ -2.4947767274599315e-16,
+ -2.072087434445334e-17,
+ -2.7611288847020064e-16,
+ -1.1444043774671138e-16,
+ -1.4409486270673742e-16,
+ 4.403909581232319e-16,
+ 1.0339757656912844e-17,
+ -4.218621124020441e-18,
+ 2.425913941464892e-16,
+ -2.3893111993594204e-16,
+ -2.008394527278751e-16,
+ -2.8537731133079455e-16,
+ -4.932891582959981e-16,
+ -1.1569154842319783e-16,
+ 1.41654679899706e-17,
+ 1.5180832191879438e-16,
+ 2.3946878733410148e-17,
+ 6.169113008420479e-16,
+ 1.861156378244312e-16,
+ -8.544775727672775e-17,
+ -1.8446127659932515e-16,
+ -1.0957041189030542e-16,
+ -2.808278179617529e-17,
+ 1.4591466005435408e-16,
+ 2.9149844786368695e-16,
+ 8.735027268559971e-17,
+ 1.16384312186211e-16,
+ 2.3905519702782497e-17,
+ 4.9299964508160443e-17,
+ 2.1490152314127657e-16,
+ -3.898088636656142e-17,
+ 9.926167350636332e-19,
+ -5.6248281653605874e-18,
+ 1.141509245323178e-17,
+ 2.1969917069408413e-16,
+ -6.410649747285964e-18,
+ 2.5584696346265146e-16,
+ -9.942710962887391e-17,
+ 1.7891916649521986e-16,
+ -2.6640385603035944e-17,
+ 1.108422020821057e-17,
+ -8.987317355388644e-17,
+ -6.154223757394526e-17,
+ 3.230140292019573e-17,
+ 3.0001840817298314e-16,
+ 2.199266453625362e-16,
+ 1.2986735617082533e-17,
+ 1.3325879668229276e-16,
+ -1.861156378244312e-19,
+ 1.1353053907290305e-16,
+ -6.840783665813539e-17,
+ -1.9091328537723876e-16,
+ 3.5403330217269584e-17,
+ -1.6622194409253089e-16,
+ 7.02689930363797e-17,
+ 9.628382330117241e-17,
+ 1.4558378780933287e-16,
+ 1.6965474363462595e-16,
+ 6.692718336166546e-16,
+ 2.5510250091135373e-16,
+ 2.3516744814882577e-16,
+ -7.841672207002701e-17,
+ -9.396771758602393e-17,
+ 1.3245229558505356e-16,
+ 1.050519377942345e-16,
+ 1.2738581433316626e-16,
+ 5.0209863181968774e-17,
+ 2.6742749203839385e-16,
+ -8.519960309296184e-17,
+ 8.488941036325445e-17,
+ -1.1753202528612832e-16,
+ -3.0415431123574823e-16,
+ -1.3985556206740315e-16,
+ 1.473725658839788e-16,
+ 2.261925385026254e-16,
+ 2.0770505181206522e-16,
+ -1.1580528575742387e-18,
+ -1.316044354571867e-16,
+ 1.0050244442519285e-17,
+ -5.0292581243224076e-17,
+ -7.788939442952446e-17,
+ -8.203563724994651e-17,
+ -7.105481461830508e-17,
+ -9.380228146351333e-17,
+ 1.3847003454137683e-16,
+ 1.3383782311107988e-16,
+ 2.1821024559148868e-16,
+ 5.219509665209604e-17,
+ -4.359241828154455e-17,
+ -1.4839620189201316e-16,
+ -1.5435190230239494e-16,
+ 7.473576834416605e-17,
+ 1.748453019783962e-16,
+ 6.143367011854767e-17,
+ 1.5269754107728888e-16,
+ 1.6394719740801006e-16,
+ 6.716706573930585e-17,
+ -8.590270661363191e-17,
+ 2.753684259189029e-16,
+ 4.119359450514077e-17,
+ 1.4690727678941772e-16,
+ 1.8044945062844296e-16,
+ 1.9774786518845815e-16,
+ -8.705041971354924e-17,
+ 2.965442496002604e-16,
+ 3.875341169810934e-17,
+ -5.430440721410626e-17,
+ -3.8877488789992296e-16,
+ -9.330597309598151e-17,
+ -7.758954145747398e-17,
+ -1.3869750920982892e-16,
+ -4.173126190330024e-17,
+ 5.543144079870976e-17,
+ 3.899329407574972e-16,
+ -2.6188538193428856e-16,
+ -9.429858983104514e-18,
+ -1.3091167169417354e-16,
+ -2.0532690755097527e-16,
+ 8.205631676526033e-17,
+ 1.050519377942345e-16,
+ 1.7039920618592368e-16,
+ -1.6081425083796547e-16,
+ 1.5385559393486315e-17,
+ 1.2755125045567687e-16,
+ 4.3890203302063643e-16,
+ -9.363684534100272e-17,
+ 7.146840492458159e-17,
+ 1.0674765804996821e-16,
+ 1.6063847495779795e-16,
+ 5.939156798130739e-17,
+ 1.4227506535912076e-17,
+ 4.954811869192635e-17,
+ 9.405043564727923e-17,
+ 8.408290926601525e-17,
+ -1.315217173959314e-16,
+ -1.1310660900896962e-16,
+ 3.099859345542471e-17,
+ -1.493061005658215e-17,
+ 3.962195134129002e-17,
+ -2.3946878733410148e-17,
+ -8.342116477597283e-17,
+ -5.906069573628618e-17,
+ -3.7181768534258594e-17,
+ -3.470022669659951e-17,
+ -2.3802122126213368e-17,
+ -4.648755042548015e-17,
+ 1.0670629901934056e-16,
+ -4.030437534664627e-17,
+ 7.284979654754514e-16,
+ 3.793036698861908e-16
+ ],
+ [
+ 5.282864643260694,
+ 4.472889353805485,
+ -2.2742670654197825,
+ -0.266348392713563,
+ 2.717265328906313,
+ -4.340971547155264,
+ 4.441047567203941,
+ -3.102671642102199,
+ 0.7166390943924098,
+ 2.2170817271555596,
+ 4.776909044412098,
+ 2.195688060433443,
+ -4.400180067638137,
+ 4.387545732076875,
+ -2.8585980867973437,
+ 0.4099302440096571,
+ 1.5713887118434697,
+ 4.382057664139972,
+ 2.5953631710177176,
+ -2.2734678094974905,
+ -0.2694187603245396,
+ 2.721660178704298,
+ -4.345195283342942,
+ 4.443640296202512,
+ -3.1029027632066493,
+ 0.6146550039976522,
+ 1.9171014384314717,
+ 4.173882934138181,
+ 2.039190769643771,
+ -4.404343277339252,
+ 4.353173010757634,
+ -2.8585012668283296,
+ 0.43063691496463574,
+ 1.7009559577833155,
+ 4.764208552081897,
+ 2.2138070069308085,
+ -4.483258922805473,
+ 4.285793199351654,
+ -2.7023347277590597,
+ 0.09384881662299013,
+ 2.4210070625808706,
+ -4.155099292234704,
+ 8.19078737822813,
+ 8.083237466087398,
+ 2.462501905658859,
+ 2.2161767677442157,
+ -2.9866108487859164,
+ -3.2177570832198064,
+ 0.1859538918397064,
+ 2.3455640080764444,
+ -4.114944718576188,
+ 4.5336708187520465,
+ -3.4224120258801505,
+ 1.2010216548679316,
+ 0.7836209527443418,
+ 0.5997605448138383,
+ -5.620318178900765,
+ -2.8371750533688673,
+ 4.500139153256795,
+ -3.2860565120502536,
+ 0.8877183325414253,
+ 0.9976969366713137,
+ 0.9128425678927119,
+ -5.224658947026316,
+ -2.8763535914012506,
+ 4.426692238057466,
+ -3.053530558115902,
+ 0.6944442331785428,
+ 2.026224082355133,
+ -3.941768981651727,
+ 4.5830129010496785,
+ -2.5030549672003484,
+ -4.817858959969952,
+ -0.6858171860582865,
+ 0.10507193625838578,
+ 2.200448781978759,
+ -4.096653222496228,
+ 4.5588074116424435,
+ -2.552048693116337,
+ -5.332885997595334,
+ -1.2258755397205825,
+ -0.1790636915781699,
+ 2.4771234549777716,
+ -4.182596750382682,
+ 4.532640250436698,
+ -3.314748054137777,
+ 1.051100354939968,
+ 1.5560916531207438,
+ -3.561106358025745,
+ -4.1371188185098955,
+ 0.5782156231594,
+ 0.6899116084848546,
+ 0.524618967146638,
+ -2.9265152550846842,
+ 4.37840144789597,
+ -4.371695312551781,
+ 2.909216391759048,
+ -0.5023713022735015,
+ -1.2357949876811858,
+ -1.5124563655722043,
+ 5.997227068775867,
+ 3.103285485955393,
+ -4.308709763614306,
+ 2.7518963681455464,
+ -0.18151851630060445,
+ -1.4204707986423475,
+ -1.701442222889408,
+ 5.246314334911713,
+ 2.964984315396734,
+ -4.18773467082685,
+ 2.48779041949086,
+ 0.014587498329020475,
+ -2.637785716937104,
+ 4.256679507517614,
+ -4.499032079753462,
+ 2.221589055731097,
+ 4.436220431931711,
+ 1.4825569877366938,
+ 0.3572321749395738,
+ -2.795999125332724,
+ 4.366092424328433,
+ -4.4255213510779745,
+ 2.1033808805073075,
+ 4.591260166332734,
+ 1.9864528446519456,
+ 0.5871043168367653,
+ -3.0439747303311853,
+ 4.423083545286698,
+ -4.369647930132261,
+ 2.7849182165623443,
+ -0.3484249796812373,
+ -2.20426965587564,
+ 6.242150417774223,
+ 6.034516506692149,
+ -0.24168211735754155,
+ -0.5289232333440308,
+ -6.873850771878952,
+ -7.061090944560902,
+ 2.8619391160809324,
+ -0.44413699021961484,
+ -2.1140861219760105,
+ 4.06123668901189,
+ -4.562558803630679,
+ 3.58668166518178,
+ -1.0847324903182796,
+ -2.8761628070139404,
+ -3.9356285467282874,
+ -1.7014934625233973,
+ 4.148603949834187,
+ -4.539483043789872,
+ 3.3778866571582684,
+ -0.8616284515753361,
+ -2.326635724318275,
+ -3.8824272820210504,
+ -1.8436655719959267,
+ 4.274872749510806,
+ -4.483859106238634,
+ 3.2421014670069748,
+ -0.8037133692853405,
+ -1.7856454021713704,
+ 3.800027297192188,
+ -2.9776095249864487,
+ -5.118142125527156,
+ 2.530104105101404,
+ 1.8499842349250781,
+ -0.6101253708486435,
+ -2.0772262368026633,
+ 3.9704232632196272,
+ -3.1427270876891766,
+ -5.9182858553362045,
+ 2.4876074344796137,
+ 1.7141523847086306,
+ -0.29015292233773693,
+ -2.2533623328573746,
+ 4.064388711825677,
+ -4.544758131950882,
+ 3.4883601134762743,
+ -1.3006027154871886,
+ 0.4601083129035973,
+ 0.8318053683593418,
+ -1.4957079836183844e-15,
+ -1.6806655685852414e-15,
+ -3.235930556307444e-16,
+ -2.1188231390545801e-16,
+ 2.162250121213614e-16,
+ 2.0894582273089477e-16,
+ 4.108606102550888e-16,
+ 1.9670354966510996e-16,
+ 5.747250896018436e-16,
+ -2.365736551901659e-16,
+ -2.556194887941994e-16,
+ -7.603444190587429e-16,
+ -4.082136322949191e-16,
+ -2.065573387121479e-16,
+ -1.919059021123024e-17,
+ 3.664410113609912e-16,
+ 8.652309207304668e-17,
+ 1.9269172369422777e-16,
+ 2.7057077836609535e-16,
+ 2.9397998970134604e-16,
+ -2.718115492849249e-16,
+ -1.647743780205631e-16,
+ -2.9029903597548506e-16,
+ -1.7834014006643274e-16,
+ -8.70194004405785e-17,
+ 7.343709478245779e-16,
+ 7.097209655704977e-17,
+ 9.173432993213076e-17,
+ -4.1292856178647137e-16,
+ -2.7975248316543396e-16,
+ -3.7727707738543587e-16,
+ -3.325266062463171e-17,
+ -3.685089628923738e-16,
+ -1.2738581433316626e-16,
+ -1.8413040435430394e-16,
+ 5.530529575529543e-16,
+ 2.278882587583591e-17,
+ 1.6378176128549948e-17,
+ 3.4795352467043104e-16,
+ -2.901749588836021e-16,
+ -2.936904764869525e-16,
+ -3.871205266748169e-16,
+ -6.418301167952079e-16,
+ -1.6427806965303127e-16,
+ -1.0836066024444661e-17,
+ 1.6522932735746725e-16,
+ 1.1063540692896744e-17,
+ 8.907080835971002e-16,
+ 3.067185711346626e-16,
+ -1.3350695086605867e-16,
+ -2.966269676615157e-16,
+ -1.4522189629134092e-16,
+ -2.5063572560356735e-17,
+ 2.1771393722395686e-16,
+ 4.708312046651834e-16,
+ 1.1266199942972237e-16,
+ 2.008394527278751e-16,
+ -9.26442286059391e-18,
+ 1.0819522412193601e-16,
+ 3.06553135012152e-16,
+ -4.455401574363745e-17,
+ 1.5633713577252223e-17,
+ 1.2076836943274203e-17,
+ -7.940933880509066e-18,
+ 2.623816903018204e-16,
+ -5.2112378590840736e-18,
+ 3.6147792768567304e-16,
+ -1.433504001554397e-16,
+ 2.335130869237197e-16,
+ -4.12969920817099e-17,
+ -2.3574647457761286e-17,
+ -1.6758679210324338e-16,
+ -6.609173094298691e-17,
+ 4.9010451293766884e-17,
+ 3.6407320685755817e-16,
+ 3.1432863277015047e-16,
+ 2.779326858178173e-17,
+ 1.9951596374779025e-16,
+ -2.374008358027189e-17,
+ 1.6278914455043582e-16,
+ -1.252351447405284e-16,
+ -3.153212495052141e-16,
+ 5.5338382979797545e-17,
+ -2.582044282084276e-16,
+ 9.041084095204591e-17,
+ 1.2738581433316626e-16,
+ 1.8694281843698423e-16,
+ 2.302870825347629e-16,
+ 1.0280200652809028e-15,
+ 4.07634605866132e-16,
+ 3.7951046503932905e-16,
+ -9.92616735063633e-18,
+ -7.47771273747937e-17,
+ 1.8115255414911304e-16,
+ 1.4608009617686469e-16,
+ 1.6675961149069035e-16,
+ 4.2765237668991525e-17,
+ 3.6855032192300143e-16,
+ -1.5848780536516008e-16,
+ 1.1890721305449773e-16,
+ -1.4564582635527435e-16,
+ -4.835697860985e-16,
+ -1.960107859020968e-16,
+ 1.5476549260867145e-16,
+ 2.4753379830649353e-16,
+ 2.4563128289762157e-16,
+ 1.2738581433316625e-17,
+ -1.890107699683668e-16,
+ -2.5166970136925864e-17,
+ -5.69100261436483e-17,
+ -1.209751645858803e-16,
+ -9.897216029196975e-17,
+ -6.435465165662555e-17,
+ -1.4459117107426924e-16,
+ 2.21849840286722e-16,
+ 1.6907571720583883e-16,
+ 3.012591790918127e-16,
+ 7.080666043453917e-17,
+ -1.2291903902537991e-16,
+ -2.0878038660838416e-16,
+ -2.2069178742914776e-16,
+ 9.148617574836485e-17,
+ 2.5890753172909766e-16,
+ 7.641080908458592e-17,
+ 2.5278639519620526e-16,
+ 1.9025154088719634e-16,
+ 1.135718981035307e-16,
+ -1.1836954565633826e-16,
+ 3.925799187176669e-16,
+ 6.534726839168919e-17,
+ 2.2284245702178566e-16,
+ 2.62547126424331e-16,
+ 2.006740166053645e-16,
+ -1.2102686337416486e-16,
+ 4.1330079306212023e-16,
+ 9.889978198837136e-17,
+ -9.644925942368301e-17,
+ -6.091358030840495e-16,
+ -1.8942436027464331e-16,
+ -1.0047142515222211e-16,
+ -2.275573865133379e-16,
+ -4.168990287267259e-17,
+ 9.016268676828e-17,
+ 5.69100261436483e-16,
+ -4.645446320097803e-16,
+ -1.1911400820763597e-17,
+ -1.8111119511848538e-16,
+ -3.568457162553761e-16,
+ 9.859992901632089e-17,
+ 1.5766062475260705e-16,
+ 2.844674126569862e-16,
+ -1.956437245052764e-16,
+ 3.2425480012078685e-17,
+ 1.833032237417509e-16,
+ 6.736558908631856e-16,
+ -1.3540946627493063e-16,
+ 1.3358966892731397e-16,
+ 2.3305813758681555e-16,
+ 2.3227231600489017e-16,
+ 1.2291903902537991e-16,
+ 3.110199103199384e-17,
+ 7.568702604860202e-17,
+ 1.407861402565253e-16,
+ 1.0083331667021406e-16,
+ -2.567568621364598e-16,
+ -1.72260362564168e-16,
+ 1.732943383298593e-17,
+ 1.406207041340147e-17,
+ 2.895132143935597e-17,
+ -4.714929491552257e-18,
+ -1.4249220026991593e-16,
+ -6.650532124926343e-17,
+ -9.719372197498074e-17,
+ -3.879477072873699e-17,
+ -4.0738645168236607e-17,
+ -7.717595115119747e-17,
+ 1.4872707413703438e-16,
+ -4.954811869192635e-17,
+ 1.0180938979302665e-15,
+ 3.4427257094457007e-16
+ ],
+ [
+ -4.421299341296818,
+ -3.675923411093601,
+ 2.1426608179167848,
+ -0.7741316437336917,
+ -0.9208685833785862,
+ 2.299442333193378,
+ -2.9218685731758676,
+ 2.5206108372347984,
+ -1.0423765032785082,
+ -2.446606605340293,
+ -2.154109383512866,
+ -0.8733695556355986,
+ 2.3733251949181824,
+ -2.9271770830539516,
+ 2.416343708507278,
+ -0.836578635749804,
+ -1.9460587976986936,
+ -2.062000875287534,
+ -0.9097435650307526,
+ 2.4822067268308468,
+ -0.7716289839969995,
+ -0.9236533471879055,
+ 2.3015398076784828,
+ -2.922578188727303,
+ 2.519752268130533,
+ -0.9521312159446739,
+ -2.1287314178625865,
+ -1.8765560683858404,
+ -0.7929772375803213,
+ 2.375354863880166,
+ -2.928718909033454,
+ 2.415289030185862,
+ -0.8515682938901009,
+ -2.1097469298066036,
+ -2.2412170379018876,
+ -0.9281081457243142,
+ 2.4841016136559153,
+ -2.9266557774099704,
+ 2.343998781980519,
+ -0.9916209131399359,
+ -0.7020779852384896,
+ 2.092618295779608,
+ -4.8068258124643135,
+ -4.70132657235989,
+ -0.7305897724341296,
+ -0.5524627582696371,
+ 3.303664437327456,
+ 3.4430779062536057,
+ -1.0465638533825607,
+ -0.6475206466685921,
+ 2.05191746234096,
+ -2.888623544976653,
+ 2.6474317008900323,
+ -1.6264170285536077,
+ 0.1061135310572819,
+ 0.7702501263360643,
+ 3.18453685415625,
+ 1.5115123015823018,
+ -2.9060145534494133,
+ 2.5954885002887047,
+ -1.4515342730741998,
+ -0.03983390818356272,
+ 0.4816228703708555,
+ 3.035739815721754,
+ 1.572351025892175,
+ -2.9251767840349414,
+ 2.49890359664692,
+ -1.3428114677835155,
+ -0.42075852107519357,
+ 1.883985149243047,
+ -2.816960720527384,
+ 1.8307707856411644,
+ 3.3173545272792424,
+ -0.6252592919938232,
+ -0.6578068546683709,
+ -0.5426504895539077,
+ 2.034350722617286,
+ -2.865408070261556,
+ 1.902588523998692,
+ 3.7571943737689266,
+ -0.4323190041727931,
+ -0.5180787258492476,
+ -0.7428613833959976,
+ 2.1211648928898086,
+ -2.8893321998954686,
+ 2.605856413164998,
+ -1.5437570008173245,
+ -0.09789814963975073,
+ 1.0229481268542473,
+ 1.0882826143526105,
+ -1.970502122927182,
+ -1.7346431203207944,
+ 0.5712102439424086,
+ 1.0364866220212012,
+ -2.3846300209593263,
+ 2.8868363011667966,
+ -2.479228625720689,
+ 1.1899117074639722,
+ 0.16741366631448007,
+ -0.24641889625564356,
+ -3.592556781202412,
+ -1.765982216414222,
+ 2.886877300636085,
+ -2.4082414966294863,
+ 1.002513090160271,
+ 0.3317993079962344,
+ 0.033564367549977624,
+ -3.21119196505317,
+ -1.7163028620336065,
+ 2.872552441982222,
+ -2.2868141886980027,
+ 0.8841731407803116,
+ 0.818774545494914,
+ -2.2431687820320785,
+ 2.86486905385891,
+ -1.7346427218762526,
+ -3.231192781819797,
+ 0.11205740509796668,
+ 0.3756305773949092,
+ 0.9380563766251178,
+ -2.368399548100026,
+ 2.883991576458695,
+ -1.6933852453878415,
+ -3.4396260553522655,
+ -0.12927743979590037,
+ 0.23359287225645928,
+ 1.127269269335669,
+ -2.441878683018024,
+ 2.8868905261255966,
+ -2.4239629799688993,
+ 1.1000490242910603,
+ 0.5038331493738253,
+ -2.6929226696839526,
+ -2.5476652163387667,
+ 1.0495069995822872,
+ 1.2194512868022591,
+ 5.000854123116966,
+ 5.0853584089622474,
+ -2.459006702774179,
+ 1.1567851905952937,
+ 0.44013161573220355,
+ -2.042887028729582,
+ 2.812737791494979,
+ -2.7506121529166867,
+ 1.2117060798175847,
+ 2.715056371446746,
+ 1.5459355388236344,
+ 0.5311701073813941,
+ -2.129580705227022,
+ 2.8394323621600095,
+ -2.672763054408665,
+ 1.0888671841378403,
+ 2.340350099015849,
+ 1.632702819526408,
+ 0.642197766724538,
+ -2.265574692794453,
+ 2.8682022938485554,
+ -2.620151454914871,
+ 1.3634551911739357,
+ 0.2114456930544045,
+ -1.7980221764952782,
+ 1.7587202818739476,
+ 2.849438378731088,
+ -2.4416909380645353,
+ -1.581058604246889,
+ 1.253916883117118,
+ 0.414987120219498,
+ -1.954127655277704,
+ 1.8864970743161134,
+ 3.37513121089398,
+ -2.5864586058130348,
+ -1.5580719062133175,
+ 1.0665857441831792,
+ 0.5390096820923425,
+ -2.045978316232532,
+ 2.8334810521254417,
+ -2.715248299008816,
+ 1.6392905782501532,
+ -1.6013870044300353,
+ -2.120173304550774,
+ 1.6982017975713656e-15,
+ 2.5953618899463792e-15,
+ 3.225487401073962e-16,
+ 2.602310207091825e-16,
+ -1.6121750138658507e-16,
+ -2.603964568316931e-16,
+ -3.100272935848747e-16,
+ -1.709782326147108e-16,
+ -5.08716076720112e-16,
+ 1.0751280011657976e-16,
+ 2.299562102897417e-16,
+ 5.302227726464907e-16,
+ 1.191967262688913e-16,
+ 7.086869898048065e-17,
+ -4.979627287569226e-17,
+ -4.384057246531046e-16,
+ -7.304004808843234e-17,
+ -2.374008358027189e-17,
+ -1.4070342219527e-16,
+ 1.4969901135678418e-16,
+ 1.4111701250154652e-16,
+ 4.475047113911879e-17,
+ 1.3040502356898481e-16,
+ 1.4277137372665258e-16,
+ 1.570971079603053e-16,
+ -3.9522689667783657e-16,
+ -6.89041450256672e-17,
+ -3.3583532869652924e-17,
+ 5.351858563218089e-16,
+ 4.106227958289798e-16,
+ 1.6345088904047824e-16,
+ 4.04904909844707e-17,
+ 4.795450354305467e-16,
+ 1.3966944642957872e-16,
+ 2.812414082680294e-17,
+ -5.683144398545577e-16,
+ -9.793818452627846e-17,
+ 3.226004388956808e-17,
+ -2.809105360230082e-16,
+ 5.262523057062362e-16,
+ 2.903403950061127e-17,
+ 3.4030210400431554e-16,
+ 4.3699951761176447e-16,
+ 1.0833998072913279e-16,
+ 7.196471329211341e-17,
+ -1.5460005648616085e-16,
+ -4.268251960773622e-17,
+ -3.7041147830124574e-16,
+ -2.3988237764037803e-16,
+ 1.5029871730088513e-16,
+ 1.9951596374779025e-16,
+ 1.2324991127040112e-16,
+ 7.717595115119747e-17,
+ -1.01908651466533e-16,
+ -3.6462121401337455e-16,
+ -7.709323308994217e-17,
+ -9.351276824911977e-17,
+ 1.3813916229635562e-16,
+ -1.01908651466533e-16,
+ -5.1119761855777104e-17,
+ 9.529120656610878e-17,
+ -4.830734777309681e-17,
+ 1.670904837357116e-17,
+ -1.5054687148465104e-17,
+ -2.0613340864821447e-16,
+ -1.7031648812466837e-16,
+ -2.188719900815311e-16,
+ 6.129408339017935e-17,
+ -5.376673981594679e-17,
+ 1.467418406669071e-16,
+ -3.614779276856731e-17,
+ 1.9145095277539823e-16,
+ 5.5007510734776334e-17,
+ -7.796177273312285e-17,
+ -3.0804206011474746e-16,
+ -1.7883644843396456e-16,
+ -2.5559880927888552e-17,
+ 3.780215399367336e-17,
+ 1.8131799027162364e-16,
+ -1.593149859777131e-16,
+ 3.360421238496675e-17,
+ 1.2324991127040112e-16,
+ -6.26175723702642e-17,
+ 1.8214517088417667e-16,
+ -8.834288942066334e-17,
+ -9.665605457682127e-17,
+ -1.7618947047379487e-16,
+ -1.2109924167776325e-16,
+ -6.346129659506827e-16,
+ -5.816734067472891e-16,
+ -1.1605343994118978e-16,
+ 1.370017889540952e-16,
+ 1.303223055077295e-16,
+ -1.5220123270975707e-16,
+ -1.7039920618592368e-16,
+ -1.1818343001851381e-17,
+ -1.6957202557337067e-17,
+ -1.22433070415505e-16,
+ 1.3937993321518516e-17,
+ -2.1423977865123414e-16,
+ 1.4144788474656773e-16,
+ 2.240005098793599e-16,
+ 1.3460296517769143e-16,
+ -5.078888961075589e-17,
+ -3.995282358631123e-17,
+ 2.2747466845208258e-17,
+ -8.945958324760993e-17,
+ 1.3574033851995184e-16,
+ 1.7370792863613579e-16,
+ -1.5943906306959608e-17,
+ 6.911611005763392e-17,
+ 9.301645988158795e-17,
+ -6.452008777913615e-18,
+ 6.121136532892404e-18,
+ -2.278055406971038e-16,
+ -8.056739166266488e-17,
+ -1.7767839557639032e-16,
+ -3.937379715752411e-17,
+ 4.3112653526263797e-16,
+ 1.044108728195059e-16,
+ 1.341686953561011e-16,
+ -7.531479477295317e-17,
+ 1.4397078561485447e-16,
+ 1.890107699683668e-17,
+ -1.0575504131490458e-16,
+ -2.1639044824387202e-16,
+ -1.2126467780027386e-16,
+ 5.2939559203393765e-17,
+ -3.5568766339780185e-16,
+ -1.463282503606306e-16,
+ -1.167979024924875e-16,
+ -1.3545082530555828e-16,
+ 4.2765237668991525e-17,
+ -5.2112378590840736e-18,
+ -3.225590798650531e-16,
+ -1.822485684607458e-16,
+ 6.319659879905131e-17,
+ 4.165681564817047e-16,
+ 1.7602403435128426e-16,
+ 4.841074534966594e-17,
+ 1.3851139357200448e-16,
+ 6.228670012524298e-17,
+ -9.098986738083303e-17,
+ -4.465120946561243e-16,
+ 3.752091258540533e-16,
+ -9.92616735063633e-18,
+ 1.7197084934977443e-16,
+ 4.3377351322280766e-16,
+ -6.27002904315195e-17,
+ -1.0058516248644815e-16,
+ -1.8073896384283655e-17,
+ 2.1082248874562445e-16,
+ 5.539008176808211e-17,
+ -9.545664268861938e-17,
+ -4.582580593543773e-16,
+ 7.659692472241035e-17,
+ -1.5832236924264947e-16,
+ -3.934070993302199e-16,
+ -2.2867925021911296e-16,
+ -2.6469779601696883e-17,
+ 5.715818032741421e-17,
+ -6.733250186181645e-17,
+ -3.399712317592944e-17,
+ -6.145951951268996e-17,
+ 5.757177063369073e-17,
+ 4.5453574659788865e-17,
+ -8.784658105313153e-17,
+ -8.222175288777094e-17,
+ -1.7519685373873124e-16,
+ -1.6874484496081765e-17,
+ -1.1870041790135946e-17,
+ 2.8885146990351726e-16,
+ 1.3367238698856927e-16,
+ -8.602678370551488e-18,
+ -4.081619335066346e-18,
+ -9.82070182253582e-17,
+ -1.950491884400039e-16,
+ -8.966637840074819e-17,
+ -1.1831991481958508e-15,
+ 2.299562102897417e-16
+ ],
+ [
+ 5.1750751120474945,
+ 4.213860433037044,
+ -2.89668392319796,
+ 2.1434564727432686,
+ -0.7760661064891663,
+ -1.0114054389290716,
+ 2.300464260889335,
+ -2.9242984290778096,
+ 1.8022606452304204,
+ 3.641178747632472,
+ 0.09622502607923086,
+ -0.24600957955098082,
+ -1.1266260584713064,
+ 2.375795009828886,
+ -2.930523512087639,
+ 1.6283229663986114,
+ 3.1077178407352624,
+ 0.3019162728157852,
+ -0.14273807836941574,
+ -1.3135153177461967,
+ 2.4846252557975217,
+ -0.7739246750221858,
+ -1.0120286897751298,
+ 2.2994035223827294,
+ -2.9219808144275095,
+ 1.690214536031527,
+ 3.1813141807349945,
+ 0.07016716352738427,
+ -0.27353650124906154,
+ -1.127137341306656,
+ 2.417521239338575,
+ -2.9280930687623163,
+ 1.6428059885427577,
+ 3.3720733271107957,
+ 0.3267941381420021,
+ -0.12985028570042775,
+ -1.313834600048069,
+ 2.4833152014361692,
+ -2.9260660136753818,
+ 2.287729310897248,
+ -0.9938762732224544,
+ -0.7019122445214844,
+ 2.9324188718422084,
+ 2.7885076605493135,
+ -0.8946380011590851,
+ -1.0662766734213989,
+ -4.924859943240649,
+ -5.0169387555591,
+ 2.3229280616311723,
+ -1.0464462388563307,
+ -0.64494984314243,
+ 2.1159673780899833,
+ -2.8877493853865657,
+ 2.6469642780272618,
+ -1.1264029816130035,
+ -2.5749732630245363,
+ -1.7293632006745445,
+ -0.6342064037967589,
+ 2.199393633890859,
+ -2.905479581581327,
+ 2.5603608574619336,
+ -0.9992483355789734,
+ -2.202110733828367,
+ -1.7950453666120656,
+ -0.7423213907251903,
+ 2.324630593055893,
+ -2.9246125112817833,
+ 2.4995788804702546,
+ -1.2585011476924004,
+ -0.41825415881442435,
+ 1.8835439042512507,
+ -1.7956340557426853,
+ -2.9429137478274714,
+ 2.3092017453074845,
+ 1.5195185702932072,
+ -1.1440246722434961,
+ -0.6182847797986283,
+ 2.0338767780700637,
+ -1.920221857100782,
+ -3.4693410164507337,
+ 2.4240561305630286,
+ 1.4849425418607625,
+ -0.9541462773861069,
+ -0.7427407169571209,
+ 2.118898713942284,
+ -2.902807558154634,
+ 2.606378643611163,
+ -1.5435414091634398,
+ 1.3771180836897656,
+ 1.8487632795406392,
+ 4.261728053353518,
+ 3.552493991770776,
+ -2.0713778747322538,
+ 0.5708992085064218,
+ 1.0340417321387962,
+ -2.4377732048292886,
+ 2.8863949497371433,
+ -2.4788502421661045,
+ 0.9441765241680842,
+ 2.2774013642551867,
+ 2.3286845474006665,
+ 0.9738126025465297,
+ -2.5039525602407746,
+ 2.886360795801066,
+ -2.362952060093317,
+ 0.7388449052567259,
+ 1.7894705625712586,
+ 2.2072867878031794,
+ 1.002555936361715,
+ -2.6047620273634795,
+ 2.87197419079073,
+ -2.287920202044933,
+ 0.7943637127074332,
+ 0.8162764416802911,
+ -2.242983366738802,
+ 1.8664773744993026,
+ 3.148771265221524,
+ -1.9105659627252785,
+ -1.326995718290597,
+ 0.6752744824674707,
+ 1.0103901081009925,
+ -2.368185468763897,
+ 1.8940523730868097,
+ 3.496266255274542,
+ -1.8653513323573363,
+ -1.2269664510013465,
+ 0.47465034987848376,
+ 1.127064033165298,
+ -2.4401773885724216,
+ 2.8859526497537575,
+ -2.4250451818671657,
+ 1.0996500437748447,
+ -0.1754128579915036,
+ -0.30783377438379717,
+ -2.316323066452969,
+ -2.4157476560857623,
+ -4.864514921099501,
+ -4.872643893528285,
+ 2.889011101741698,
+ -2.4607351290308843,
+ 1.1591194323223262,
+ 0.5336342402599078,
+ -2.04355880841903,
+ 2.8153772900143217,
+ -1.8180203123318182,
+ -3.5831228173305187,
+ 0.4894084851279012,
+ 0.5526018982266667,
+ 0.6562364763626417,
+ -2.1320633381791105,
+ 2.854938729730068,
+ -1.7582485137495023,
+ -3.2565573803795003,
+ 0.21514716014232269,
+ 0.43310359484501154,
+ 0.8520538058301915,
+ -2.2680834378261805,
+ 2.8703521726317884,
+ -2.5785374896240505,
+ 1.365932971519134,
+ 0.21251380716001636,
+ -1.094117617980014,
+ -1.449168053384236,
+ 3.2844376382034652,
+ 1.8937538170449952,
+ -2.5160869170860938,
+ 1.1841946452719303,
+ 0.41624675291750474,
+ -1.2299764556557955,
+ -1.8751376173387784,
+ 3.691047711619739,
+ 1.9861221454929758,
+ -2.4058937733741206,
+ 1.0665325495648195,
+ 0.5378782002773518,
+ -2.1145979645271913,
+ 2.835530378359311,
+ -2.717219613935491,
+ 3.474194670314915,
+ 4.354603836568784,
+ -1.058832543098503e-15,
+ -1.48627812463528e-15,
+ -2.2598574334948716e-16,
+ -6.253485430900889e-17,
+ 1.737079286361358e-17,
+ 1.56006263527501e-16,
+ 3.028308222556634e-16,
+ 9.644925942368301e-17,
+ 2.2879815743216745e-16,
+ -6.385834328909374e-17,
+ -1.0960143116327615e-16,
+ -5.533114514943771e-16,
+ -1.1125579238838222e-16,
+ -2.779326858178173e-16,
+ 4.301339185275744e-18,
+ 3.278943948160201e-16,
+ 1.8073896384283655e-17,
+ 3.101927297073854e-17,
+ 3.212769499155959e-16,
+ 5.7489052572435416e-18,
+ -5.893661864440322e-17,
+ 1.1696333861499811e-16,
+ 1.468245587281624e-18,
+ -1.3251433413099503e-16,
+ -1.0885696861197843e-16,
+ 6.147606312494101e-16,
+ -6.782881022934827e-17,
+ 1.9604180517506753e-17,
+ -4.822462971184151e-16,
+ -3.338294157110881e-16,
+ 2.779326858178173e-17,
+ 3.8050308177439267e-17,
+ -4.203731872994486e-16,
+ -2.654422585682666e-16,
+ -1.7486598149371003e-16,
+ 5.489170544901892e-16,
+ -4.714929491552257e-17,
+ -1.3316573886338054e-16,
+ 2.774363774502855e-16,
+ -5.149199313142597e-16,
+ 6.716706573930585e-17,
+ -2.933182452113036e-16,
+ -4.384057246531046e-16,
+ -7.643148859989974e-17,
+ -8.964569888543437e-18,
+ 3.115989367487255e-16,
+ 9.029193373899141e-17,
+ 1.829723514967297e-16,
+ 1.164670302474663e-16,
+ -2.283018490646356e-17,
+ 1.670904837357116e-17,
+ -1.2647591565935793e-16,
+ -1.2957784295643179e-16,
+ 3.523789409475898e-17,
+ -8.271806125530276e-19,
+ 4.0945440321374864e-17,
+ -2.562191947383003e-17,
+ -2.2416594600187047e-17,
+ 2.4153673886548405e-17,
+ 1.7213628547228503e-16,
+ -4.714929491552257e-17,
+ 7.47771273747937e-17,
+ -6.435465165662555e-17,
+ 9.032812289079061e-17,
+ 1.3276248831476094e-16,
+ 5.633099971486118e-17,
+ 1.887626157846009e-16,
+ -1.6915843526709416e-17,
+ 8.923210857915785e-17,
+ -1.0937395649482407e-16,
+ 3.05725954399599e-16,
+ 9.446402595355575e-17,
+ -9.814497967941672e-17,
+ -1.1787323728880643e-17,
+ 5.015196053909007e-16,
+ 4.5164061445395305e-17,
+ 1.406207041340147e-17,
+ -1.3839765623777844e-16,
+ -1.0386286566368953e-16,
+ 1.3681567331627078e-16,
+ 1.0041972636393755e-16,
+ 1.0153642019088413e-16,
+ 4.651339981962243e-17,
+ -6.832511859688009e-17,
+ 4.9961708998202865e-17,
+ 4.5494933690416516e-17,
+ 2.1498424120253187e-16,
+ 1.0410068008979852e-16,
+ 3.7421650911898967e-16,
+ 5.075580238625378e-16,
+ -2.385588886602932e-16,
+ -2.666830294870961e-16,
+ -2.659385669357984e-16,
+ 1.4603873714623704e-16,
+ 1.4599737811560938e-16,
+ -1.6295458067294645e-17,
+ -5.591740940858467e-17,
+ 6.667075737177403e-17,
+ 1.270135830575174e-16,
+ 2.0505807385189554e-16,
+ -1.7039920618592368e-16,
+ 5.2112378590840736e-18,
+ -1.0405932105917087e-16,
+ 1.5122929549000726e-16,
+ 2.069605892607675e-16,
+ -2.2582030722697652e-17,
+ 1.6874484496081765e-17,
+ -9.589091251020972e-17,
+ 2.134125980386811e-17,
+ -1.9852334701272664e-18,
+ -1.919059021123024e-17,
+ -6.468552390164676e-17,
+ -7.543887186483611e-17,
+ 3.374896899216353e-17,
+ 2.1837568171399928e-17,
+ 8.569591146049365e-17,
+ 1.4459117107426924e-16,
+ 3.2094607767057474e-17,
+ -1.652706863880949e-16,
+ -5.66618719598824e-17,
+ -1.0174321534402239e-16,
+ 1.5170492434222525e-16,
+ -2.8682487740276235e-16,
+ 3.4327995420950645e-18,
+ -5.2029660529585435e-17,
+ 3.990319274955805e-16,
+ 6.088049308390284e-17,
+ -5.715818032741421e-17,
+ 2.3442298559752804e-16,
+ 1.0918784085699964e-16,
+ 2.613890735667567e-17,
+ 9.351276824911977e-17,
+ 1.0383184639071879e-16,
+ 4.913452838564984e-17,
+ 2.564259898914386e-16,
+ -8.271806125530276e-17,
+ 4.714929491552257e-18,
+ -3.1424591470889516e-16,
+ 3.867069363685404e-17,
+ -4.615667818045894e-17,
+ -4.293067379150213e-17,
+ -7.535615380358081e-17,
+ 7.043442915889031e-17,
+ 3.270672142034671e-16,
+ 9.082443125832243e-17,
+ -3.874307194045243e-17,
+ -1.203340996111517e-16,
+ -7.16338410470922e-17,
+ 8.759842686936562e-17,
+ 6.892482454098103e-17,
+ -1.56006263527501e-16,
+ -1.5902547276331955e-16,
+ -7.0351711097635e-17,
+ 7.82512859475164e-17,
+ -1.5137405209720406e-17,
+ -9.543596317330556e-17,
+ -7.444625512977248e-19,
+ 5.564857570950494e-17,
+ 6.071505696139223e-17,
+ -9.651129796962449e-17,
+ -7.17992771696028e-17,
+ 1.7056464230843428e-16,
+ 3.234276195082338e-17,
+ 9.016268676828e-17,
+ 2.1504627974847335e-16,
+ -8.768114493062093e-18,
+ 1.104389515334861e-16,
+ -6.179039175771117e-17,
+ 1.1398548840980721e-16,
+ 3.7895211812585574e-17,
+ 1.3962808739895107e-16,
+ -1.3878022727108422e-16,
+ 1.2449068218923065e-17,
+ 1.2335330884697024e-17,
+ -9.843449289381028e-18,
+ 9.955118672075687e-17,
+ 1.0563096422302162e-16,
+ 5.1491993131425967e-17,
+ 8.769768854287198e-16,
+ 3.1135078256495957e-16
+ ],
+ [
+ -4.232484680627635,
+ -3.37098332382509,
+ 2.6214648391669857,
+ -2.8810777279331203,
+ 2.130877227356137,
+ -0.676581877560802,
+ -1.008739111464891,
+ 2.291945655581856,
+ -1.968181147818951,
+ -3.637947509727382,
+ 1.97990111691408,
+ 1.2777932844940658,
+ -0.5545307370307241,
+ -1.1256149189683775,
+ 2.409337669978714,
+ -1.8827434748732579,
+ -3.246129961289205,
+ 1.5455433226764033,
+ 1.1418018057316723,
+ -0.35462632766834323,
+ -1.311353021170011,
+ 2.4733464559865688,
+ -0.6777080453003298,
+ -1.0061997585667684,
+ 2.288867261650428,
+ -1.8710778279528921,
+ -3.187240633154734,
+ 1.7476471880324589,
+ 1.2438378474205793,
+ -0.5557770805878066,
+ -1.1935548068878103,
+ 2.4062628452078796,
+ -1.8919742237773778,
+ -3.5240268776399595,
+ 1.6822449105143267,
+ 1.138614045815084,
+ -0.35606360554347777,
+ -1.3086744109739048,
+ 2.470290224474765,
+ -2.9052938014152576,
+ 2.2764503659280066,
+ -0.9869841479742412,
+ -0.11138013586993517,
+ 0.023648400690738782,
+ 2.217021671947812,
+ 2.326103569502322,
+ 4.925667763064279,
+ 4.940649322955851,
+ -2.9093574868400074,
+ 2.3098533734229867,
+ -1.0414869479465119,
+ -0.7341098220887984,
+ 2.104839255519281,
+ -2.8732764744243635,
+ 1.7719621540345694,
+ 3.5264004529840727,
+ -0.2819109476313902,
+ -0.4448518466982929,
+ -0.8524523305287138,
+ 2.1894170898011245,
+ -2.8992999198360847,
+ 1.7050570214074858,
+ 3.1917513809700635,
+ -0.02459684864681396,
+ -0.3251121984217583,
+ -1.0455518273670437,
+ 2.313854444814247,
+ -2.909451451944202,
+ 2.4380939658521705,
+ -1.2525805872068068,
+ -0.417904640800325,
+ 1.1737092255600887,
+ 1.6087683493179334,
+ -3.227580779894328,
+ -1.87902601682376,
+ 2.371826919225882,
+ -1.0651775893865263,
+ -0.6169200993920333,
+ 1.3100121326641074,
+ 2.0491491871452783,
+ -3.6107555525688664,
+ -1.9602490226377753,
+ 2.2508780165498683,
+ -0.9474187551867561,
+ -0.7382736302776448,
+ 2.1713678495396156,
+ -2.8879185993659826,
+ 2.592392560827026,
+ -3.3118035265434793,
+ -4.162857588383004,
+ -5.14533314665799,
+ -4.19754759438233,
+ 2.8073167684591436,
+ -2.0591244315398614,
+ 0.5683661075661162,
+ 1.1170951761033103,
+ -2.4251025895189664,
+ 2.8717011667524774,
+ -1.7400627388600864,
+ -3.551046581376194,
+ -0.3116731954556415,
+ 0.1316242923131426,
+ 1.230778630871239,
+ -2.492175995370741,
+ 2.868148367563168,
+ -1.5611557390936621,
+ -3.015966866095477,
+ -0.4882752528875368,
+ 0.03434788065356642,
+ 1.409633129626816,
+ -2.5922790401867424,
+ 2.8572486312299126,
+ -2.2151363606952086,
+ 0.7906522601742603,
+ 0.8142795803772286,
+ -1.38735498651656,
+ -2.0376044208894455,
+ 3.0730489641411873,
+ 1.8385087114581513,
+ -2.131750436822296,
+ 0.5949607525501514,
+ 1.0073679647069025,
+ -1.4742988577742702,
+ -2.4096573845896914,
+ 3.237476807777181,
+ 1.8129106231065537,
+ -1.9887771876395235,
+ 0.47009540988629084,
+ 1.1210556337137103,
+ -2.4791797375694986,
+ 2.8711898776415294,
+ -2.4114427362818813,
+ 2.9700874414810214,
+ 3.046577369690023,
+ 2.8456904236111544,
+ 2.8497093995631633,
+ 3.138976338261292,
+ 3.064134796006541,
+ -2.4486982482773727,
+ 2.874293814649123,
+ -2.4468543786511816,
+ 1.0628356882648915,
+ 0.5335814111001815,
+ -2.036976123622208,
+ 1.8261660461964415,
+ 3.2743310072565923,
+ -2.3518181520552686,
+ -1.4488316098568461,
+ 0.9480494347868843,
+ 0.6579868329618802,
+ -2.1768634551868176,
+ 1.8486064127224748,
+ 3.1023681362355724,
+ -1.9809218313881842,
+ -1.3599880366724317,
+ 0.7533960946918425,
+ 0.8526878518574389,
+ -2.2582535331146283,
+ 2.865408133878461,
+ -2.5644437078316704,
+ 1.3547697386283686,
+ 0.07608532841972941,
+ -0.4159242944495114,
+ -3.048202300728587,
+ -1.5854207590555731,
+ 2.8735826021463446,
+ -2.4603547411885454,
+ 1.1737158555407727,
+ 0.17557299863218398,
+ -0.22827560258005375,
+ -3.582103115236137,
+ -1.7622275686963347,
+ 2.8726417147998755,
+ -2.390882123556653,
+ 1.0588337396968157,
+ 0.6314940946951103,
+ -2.1058602794591144,
+ 2.8224997861489136,
+ -4.199458294268816,
+ -5.151430679836025,
+ 7.867728396298122e-16,
+ 1.6676374739375312e-15,
+ 2.540478456303486e-16,
+ 4.2217230513175144e-17,
+ -1.1937767202788726e-16,
+ -1.3259705219225034e-16,
+ -2.920619646559887e-16,
+ -2.4207440626364355e-16,
+ -1.403725499502488e-16,
+ -5.939156798130739e-17,
+ 9.074171319706712e-17,
+ 6.15008785433176e-16,
+ -1.3077725484463368e-16,
+ 1.4996784505586392e-16,
+ -7.940933880509066e-18,
+ -3.1432863277015047e-16,
+ -5.469731800506895e-17,
+ -6.807696441311418e-17,
+ -1.228363209641246e-16,
+ 2.9149844786368695e-16,
+ 6.104592920641344e-17,
+ 3.805030817743927e-18,
+ -2.1192367293608567e-16,
+ -1.1580528575742386e-17,
+ -1.6626330312315856e-17,
+ -6.21295358088579e-16,
+ 3.7223127564886245e-17,
+ 2.3657365519016588e-17,
+ 5.450293056111899e-16,
+ 3.1453025804446027e-16,
+ -1.3036366453835716e-16,
+ 4.9382682569415746e-17,
+ 1.7494869955496533e-16,
+ 5.459392042849982e-17,
+ -9.696624730652866e-17,
+ -4.347661299578713e-16,
+ -1.2196778132094393e-16,
+ 5.6827308082393e-17,
+ -8.437242248040881e-17,
+ 5.649643583737179e-16,
+ -1.7536228986124184e-16,
+ 1.1593970260696374e-16,
+ 4.3393894934531827e-16,
+ -1.0174321534402239e-17,
+ -4.5743087874182424e-17,
+ -1.6882756302207292e-16,
+ -1.0877425055072313e-16,
+ -6.625716706549752e-17,
+ 8.466193569480237e-17,
+ 2.98612201131643e-17,
+ -6.609173094298691e-17,
+ 2.5146290621612038e-17,
+ 1.3946265127644047e-16,
+ 1.6192060490725517e-17,
+ 7.796177273312285e-17,
+ -8.826017135940804e-17,
+ 7.630741150801679e-17,
+ -2.6552497662952185e-17,
+ 9.570479687238529e-17,
+ 2.127508535486387e-16,
+ 1.3880090678639804e-16,
+ 7.213014941462401e-17,
+ 1.4169603893033364e-16,
+ -9.14913456271933e-17,
+ -2.772709413277749e-16,
+ -2.2085722355165836e-16,
+ 8.362795992911109e-17,
+ -1.0960143116327617e-18,
+ -1.5054687148465104e-17,
+ 5.2691405019627857e-17,
+ 5.285684114213846e-17,
+ 4.350970022028925e-17,
+ 1.4541835168682227e-16,
+ -8.362795992911109e-17,
+ -1.134891800422754e-16,
+ -8.671954746852803e-17,
+ 2.4226052190146795e-17,
+ 1.8334458277237856e-16,
+ 2.4070955825293102e-17,
+ -6.749793798432706e-17,
+ -7.113753267956038e-17,
+ -8.381407556693552e-17,
+ -5.078888961075589e-17,
+ -2.671793378546279e-17,
+ -8.900463391070577e-17,
+ -5.870914397595114e-17,
+ -1.2262952581098635e-16,
+ -4.648755042548015e-17,
+ 2.973300711821858e-16,
+ -2.510493159098439e-16,
+ -2.0353812947632935e-16,
+ 7.601789829362323e-16,
+ 2.6403605152692643e-16,
+ -7.915084486366782e-17,
+ -4.241368590865649e-17,
+ -8.205631676526033e-17,
+ -2.0377594390243834e-16,
+ -1.8446127659932517e-17,
+ -1.3640208300999426e-16,
+ -1.6278914455043582e-16,
+ 1.1770780116629584e-16,
+ -1.1765610237801127e-16,
+ -1.2490427249550716e-17,
+ -1.7751295945387971e-16,
+ -1.2655863372061323e-16,
+ -5.012714512071347e-17,
+ -1.356834698528388e-17,
+ 3.937379715752411e-17,
+ 2.533240625943647e-17,
+ -1.737079286361358e-17,
+ -7.805483055203506e-17,
+ 1.7296346608483806e-16,
+ 1.3276248831476094e-16,
+ -9.650095821196758e-17,
+ -1.3979352352146168e-17,
+ 4.350970022028925e-17,
+ -5.4180330122223307e-17,
+ -4.0118259708821836e-17,
+ 1.949664703787486e-16,
+ 1.4062070413401469e-18,
+ 3.924972006564116e-17,
+ 1.2293971854069372e-17,
+ 9.183772750869989e-17,
+ -1.377255719900791e-17,
+ 1.7238443965605094e-16,
+ 9.247879248342848e-17,
+ 3.98494260097421e-17,
+ 1.981097567064501e-17,
+ -2.161422940601061e-16,
+ -8.987317355388644e-17,
+ -8.271806125530277e-18,
+ -2.2085722355165836e-17,
+ -1.22670884841614e-16,
+ -7.543887186483611e-17,
+ -1.0397660299791557e-16,
+ -4.466775307786349e-17,
+ -6.12527243595517e-17,
+ -1.7853659546191409e-16,
+ -1.0041972636393755e-16,
+ 4.239300639334266e-17,
+ -2.1390890640621293e-16,
+ 1.5323520847544835e-16,
+ 7.196471329211341e-18,
+ -1.020740875890436e-16,
+ -1.9314667303113194e-16,
+ -5.4759356551010426e-17,
+ 1.0120554794586292e-16,
+ 7.006219788324144e-17,
+ -1.2002390688144432e-16,
+ 3.2756352257099896e-17,
+ 2.9761958439657936e-16,
+ 3.628014166657579e-16,
+ 1.2473883637299657e-16,
+ 3.201188970580217e-17,
+ -6.542998645294449e-17,
+ -6.121136532892404e-18,
+ 1.3334151474354806e-16,
+ 1.4062070413401469e-18,
+ -2.1688675661140383e-16,
+ 1.1142122851089283e-16,
+ 1.9769616640017358e-17,
+ -5.558653716356346e-17,
+ 2.8248217918685895e-17,
+ -5.1915923195359393e-17,
+ -2.1126192844604324e-16,
+ -2.6480119359353795e-17,
+ -1.8644651006945241e-16,
+ 6.501639614666798e-17,
+ -3.034098486844505e-16,
+ 2.0844951436336295e-16,
+ -9.89308012613421e-17,
+ 2.6411876958818174e-16,
+ -1.0381116687540496e-16,
+ 7.692779696743156e-17,
+ -5.39321759384574e-17,
+ -1.6874484496081762e-16,
+ -1.1030453468394623e-16,
+ -7.337092033345355e-17,
+ -5.313187869581235e-16,
+ -1.3582305658120714e-16
+ ],
+ [
+ 1.9302301147850451,
+ 1.4441685009915533,
+ -1.5859956538548696,
+ 2.6301047729199256,
+ -2.900051436832404,
+ 2.0893893067054976,
+ -0.6974812869474415,
+ -1.0003903285067564,
+ 1.508603302787578,
+ 2.475076841695202,
+ -3.4482224011344966,
+ -1.9138473468517203,
+ 2.002787404697334,
+ -0.5724007194064282,
+ -1.1893266520883203,
+ 1.5399013765941774,
+ 2.35140388123575,
+ -2.9210945780634496,
+ -1.788124676505624,
+ 1.849993979691339,
+ -0.37155033495538303,
+ -1.3031168940641689,
+ 2.5265122225119283,
+ -0.7006211950611235,
+ -0.9975902372703712,
+ 1.4575791493426136,
+ 2.1773498927501023,
+ -3.0286968816719266,
+ -1.8285017166145727,
+ 2.005320782449265,
+ -0.49952407581599634,
+ -1.1866430246787047,
+ 1.5408916009921487,
+ 2.5544722815076635,
+ -3.177502276841485,
+ -1.7957138166544235,
+ 1.8526554997297244,
+ -0.3746688473156086,
+ -1.3005132389997685,
+ 2.5253467758709465,
+ -2.9262507858871345,
+ 2.301695129769171,
+ -2.7766060748686847,
+ -2.859615065875509,
+ -2.847547644263846,
+ -2.8586096608596687,
+ -3.3566538035603,
+ -3.2888694163201624,
+ 2.4966437423981107,
+ -2.9296349188918698,
+ 2.336336682757495,
+ -0.9755310986870919,
+ -0.7208635987193209,
+ 2.1079340580632575,
+ -1.8599480527037644,
+ -3.3645070037172187,
+ 2.225694886806266,
+ 1.394126523077301,
+ -0.8561469120868352,
+ -0.8426228397259703,
+ 2.242983105068771,
+ -1.8752789470954299,
+ -3.1751391662474866,
+ 1.8566154763715192,
+ 1.30078785048315,
+ -0.6594158526098411,
+ -1.037333953381799,
+ 2.3181611014419063,
+ -2.9321309531598425,
+ 2.464259326903458,
+ -1.2756528731808436,
+ -0.17078461067432252,
+ 0.25294341371417706,
+ 3.1274328236658864,
+ 1.6436280681074882,
+ -2.9322712487623304,
+ 2.352814269436244,
+ -1.0874023931174215,
+ -0.27548045813430105,
+ 0.03993731542924256,
+ 3.6597543048178554,
+ 1.816037609002549,
+ -2.9230210914377173,
+ 2.275916390333995,
+ -0.9714470693719028,
+ -0.8181085264178861,
+ 2.173590649558713,
+ -2.90502982030443,
+ 4.212410388041377,
+ 5.175815931391121,
+ 4.398707532691103,
+ 3.511833769529029,
+ -2.7350479585171237,
+ 2.8290940469894044,
+ -2.085900775154908,
+ 0.4959524299222192,
+ 1.1071961856103785,
+ -2.432009185634017,
+ 1.9901842085931118,
+ 3.7069878516220514,
+ -1.8272159708459175,
+ -1.2074521617216782,
+ 0.37392711776225546,
+ 1.2241869774150682,
+ -2.539733397791074,
+ 1.8950338910835882,
+ 3.294813930995998,
+ -1.4055876835951482,
+ -1.071891663149728,
+ 0.16972539174332738,
+ 1.4046856525505862,
+ -2.600618712270612,
+ 2.867310827866884,
+ -2.2420292545553573,
+ 0.8115001515221256,
+ 0.4606679191135438,
+ 0.2645429937708151,
+ -3.269034749724037,
+ -1.7697333082508016,
+ 2.8500618199302,
+ -2.1036613715098835,
+ 0.6147555970182744,
+ 0.5799412413355032,
+ 0.5428591733179392,
+ -3.593049011779612,
+ -1.8275642732418833,
+ 2.8075119568900235,
+ -2.013764652821788,
+ 0.49168897566166514,
+ 1.1992564004854727,
+ -2.485677543564942,
+ 2.8904481471489607,
+ -4.847300926603712,
+ -4.8427677862488805,
+ -2.4458363680212765,
+ -2.3448615605572547,
+ -0.3935456773228197,
+ -0.26315724140396923,
+ 1.145338899444051,
+ -2.4548399529322626,
+ 2.890659058548195,
+ -2.4167772723626273,
+ 1.0847975141566404,
+ 0.522227594459112,
+ -1.2523484880655595,
+ -1.9184760251510282,
+ 3.4853934588132263,
+ 1.8932634684795675,
+ -2.3430248801571425,
+ 0.9671934527177193,
+ 0.7224166754755139,
+ -1.3507580649922224,
+ -1.957641426204065,
+ 3.134979754561743,
+ 1.863723624454191,
+ -2.2150374653471516,
+ 0.7717630466409237,
+ 0.8411232388130044,
+ -2.3205692552421184,
+ 2.8804274690890472,
+ -2.5861388872818414,
+ 0.9775447014186671,
+ 2.1692311936471222,
+ 1.8377183728472997,
+ 0.7683018000930439,
+ -2.3940868251843566,
+ 2.8914988526767185,
+ -2.482288694705441,
+ 0.9465518907664807,
+ 2.2823829056418408,
+ 2.3301293664755534,
+ 0.9741226560599308,
+ -2.5073716615674453,
+ 2.889458595903173,
+ -2.414306366434088,
+ 0.9910352927006733,
+ 0.6182880986488722,
+ -2.1076978521648067,
+ 3.5942434397877343,
+ 4.315120766248375,
+ 6.518183226917858e-17,
+ -1.852884572118782e-17,
+ -1.292676502267244e-16,
+ -3.7207617928400876e-17,
+ -1.0604455452929814e-16,
+ -1.9678626772636526e-16,
+ -2.8124140826802937e-18,
+ 2.2492074831082514e-16,
+ -3.987010552505593e-17,
+ 1.5153948821971465e-16,
+ 8.478601278668532e-17,
+ -3.427836458419746e-16,
+ 3.0457824129968165e-16,
+ -4.034573437727392e-17,
+ -4.3923290526565763e-17,
+ 5.6827308082393e-17,
+ 7.543887186483611e-17,
+ -4.1607184811417286e-17,
+ 1.2159555004529507e-16,
+ -3.3796531877385323e-16,
+ 1.7354249251362518e-16,
+ 1.6659417536817975e-16,
+ 1.7813334491329449e-16,
+ 8.437242248040881e-17,
+ -4.623939624171424e-17,
+ 5.98878763488392e-17,
+ -8.172544452023912e-17,
+ 9.905487835322505e-18,
+ 3.6561383074843823e-17,
+ 1.8756320389639903e-17,
+ 3.161070710871395e-16,
+ 2.1382618834495762e-17,
+ -3.5014555329369657e-16,
+ -1.1406820647106252e-16,
+ 1.753209308306142e-16,
+ 2.6883369907973396e-17,
+ 8.416562732727055e-17,
+ -8.39588321741323e-17,
+ -5.509022879603164e-17,
+ -3.0018384429549374e-16,
+ 3.330229146138489e-16,
+ -3.4245277359695346e-17,
+ 1.0852609636695722e-16,
+ 3.416255929844004e-17,
+ -1.406207041340147e-17,
+ -9.388499952476863e-17,
+ 1.466591226056518e-16,
+ -3.7090778666877756e-16,
+ -2.03817302933066e-16,
+ 7.088937849579447e-17,
+ 1.9653811354259935e-16,
+ -4.1276312566396075e-17,
+ -1.985233470127266e-17,
+ -3.0473333766453535e-16,
+ -2.388897609053144e-16,
+ 5.3849457877202095e-17,
+ -3.067185711346626e-16,
+ 3.153212495052141e-16,
+ -1.8396496823179333e-16,
+ -3.148249411376823e-16,
+ -6.452008777913616e-17,
+ 9.210656120777962e-17,
+ -4.913452838564984e-17,
+ 2.1506695926378716e-17,
+ 4.7852398436192645e-17,
+ 1.844199175686975e-16,
+ -2.2566521086212286e-16,
+ 8.70194004405785e-17,
+ -9.26442286059391e-18,
+ 2.6221625417930974e-17,
+ 1.499471655405501e-16,
+ 1.6326477340265384e-17,
+ 4.863822001811802e-17,
+ 7.624537296207531e-17,
+ -1.7073007843094489e-16,
+ -1.286265852519958e-16,
+ -8.023651941764367e-17,
+ -9.264422860593909e-17,
+ 3.010937429693021e-17,
+ -2.3243775212740075e-17,
+ 2.246622543694023e-16,
+ 4.526332311890167e-16,
+ -1.401243957664829e-16,
+ 5.668255147519622e-17,
+ 1.1787323728880643e-17,
+ -1.848748669056017e-17,
+ 1.1398548840980721e-16,
+ 2.283018490646356e-17,
+ -8.073282778517549e-17,
+ -2.7363134663254155e-16,
+ -4.413835748582955e-16,
+ -7.140223047557734e-16,
+ -3.689225531986503e-16,
+ -1.6907571720583883e-16,
+ -7.754818242684633e-17,
+ -1.9711713997138647e-16,
+ 2.8554274745330515e-16,
+ -1.5385559393486312e-16,
+ 4.0366413892587746e-16,
+ 8.867376166568455e-17,
+ -1.1539169545114735e-17,
+ 3.90429249125029e-16,
+ -8.321436962283457e-17,
+ 1.0745076157063828e-16,
+ -5.459392042849982e-17,
+ -1.8743912680451605e-16,
+ 3.114335006262149e-17,
+ 7.095141704173595e-17,
+ 1.4031051140430732e-16,
+ 7.138568686332629e-17,
+ 1.283784310682299e-16,
+ -2.0017770823783267e-17,
+ -4.963083675318166e-19,
+ 1.0339757656912845e-16,
+ -6.319659879905131e-17,
+ -1.5997673046775553e-16,
+ -1.139027703485519e-16,
+ 5.4531881882558343e-17,
+ -7.326752275688443e-17,
+ 1.13654616164786e-16,
+ 1.4554242877870522e-16,
+ 1.1249656330721176e-16,
+ -1.651052502655843e-16,
+ -3.970466940254533e-18,
+ -2.632088709143734e-16,
+ -9.098986738083304e-18,
+ -1.890934880296221e-16,
+ 1.4177875699158894e-16,
+ 1.2746853239442156e-16,
+ 1.5258380374306284e-16,
+ 1.7205356741102976e-17,
+ -1.3946265127644047e-16,
+ 4.8869830589632875e-16,
+ -4.1276312566396075e-17,
+ -1.579914969976283e-17,
+ 8.883919778819516e-17,
+ 3.929107909626881e-17,
+ 8.963329117624608e-16,
+ 1.5865324148767068e-16,
+ 6.509911420792328e-17,
+ 2.8804496880627806e-16,
+ 4.119359450514077e-17,
+ -1.0257039595657542e-16,
+ -1.0538281003925571e-16,
+ 2.80579663777987e-16,
+ 1.2872998282856492e-17,
+ -1.4186147505284425e-16,
+ -3.316994256337641e-17,
+ 7.535615380358081e-17,
+ -5.542110104105285e-18,
+ -1.406207041340147e-16,
+ 5.525566491854224e-17,
+ -7.403266482349598e-18,
+ -9.628382330117241e-17,
+ -1.5170492434222525e-16,
+ 7.014491594449675e-17,
+ 3.7295505868484635e-17,
+ -1.3937993321518516e-16,
+ 7.891303043755883e-17,
+ -5.1409275070170664e-17,
+ -9.644925942368301e-17,
+ -6.716706573930585e-17,
+ -1.0339757656912845e-16,
+ -3.841736957425967e-17,
+ 1.4086885831778061e-16,
+ 1.1845226371759356e-16,
+ 2.99439381744196e-17,
+ -1.4169603893033364e-16,
+ 2.284259261565186e-16,
+ -1.9990887453875294e-16,
+ 3.656138307484382e-16,
+ -4.2153124015702285e-16,
+ 2.1783801431583981e-16,
+ -2.5642598989143855e-17,
+ 2.924083465374953e-17,
+ 3.556876633978019e-18,
+ -3.3583532869652924e-17,
+ 2.3161057151484772e-17,
+ -1.7470054537119942e-16,
+ -1.6448486480616953e-16
+ ],
+ [
+ 1.0001451886650108,
+ 0.9516327627123878,
+ -0.04720571867762939,
+ -1.5872355683631092,
+ 2.627958133371103,
+ -2.8813604452890846,
+ 2.0870929969853274,
+ -0.6938216128186858,
+ -0.5517608643801809,
+ -0.4983097769628877,
+ 3.7680047602761904,
+ 1.9132901602607597,
+ -2.8552986282867803,
+ 1.9986705937730114,
+ -0.4928227076843087,
+ -0.6888713721288523,
+ -0.6824386467719632,
+ 3.3230550768443035,
+ 1.8394027696715323,
+ -2.803390081220921,
+ 1.84586243739203,
+ -0.3705746786665532,
+ -1.3882341543195478,
+ 2.5245565410184834,
+ -0.6954812731748904,
+ -0.5634776427190523,
+ -0.45136986191649753,
+ 3.301068817892378,
+ 1.8050933505127558,
+ -2.858356883535317,
+ 1.945096439300998,
+ -0.49428666724588816,
+ -0.6813236508331216,
+ -0.7437739548762208,
+ 3.613805716985256,
+ 1.855250515502591,
+ -2.8064664280758564,
+ 1.848471002078777,
+ -0.3719196649177303,
+ -1.3886755962942805,
+ 2.526600333201037,
+ -2.92581012885423,
+ 4.731847525624667,
+ 4.735576239083302,
+ 2.5323805356104265,
+ 2.4422178478629637,
+ 0.683653746188696,
+ 0.5559385758415512,
+ -1.3368559366664903,
+ 2.498987999690899,
+ -2.9292220294719673,
+ 2.276687640405654,
+ -0.9729739704392536,
+ -0.7258481922843769,
+ 1.331757690535683,
+ 2.089486828779028,
+ -3.4235879110877354,
+ -1.8774415242414302,
+ 2.1992081657063287,
+ -0.8511031981594459,
+ -0.9212998708118804,
+ 1.4238735531458795,
+ 2.1074233906139663,
+ -3.065475472937011,
+ -1.8412925746004623,
+ 2.0605843356346973,
+ -0.6543203610461634,
+ -1.0397292681439074,
+ 2.3756139074441442,
+ -2.932130541063193,
+ 2.461451452098846,
+ -0.8840224080131179,
+ -2.0222726866064344,
+ -1.992424246160201,
+ -0.865200267276866,
+ 2.4452324875145073,
+ -2.9297542992155674,
+ 2.349637540786086,
+ -0.8454396389496266,
+ -2.106091003709393,
+ -2.4969953415491615,
+ -1.0713055068800692,
+ 2.546805114442324,
+ -2.9223850389522763,
+ 2.27402351217371,
+ -0.8772351132652386,
+ -0.8206873178750481,
+ 2.176954480402258,
+ -3.7143040612928147,
+ -4.470619249072748,
+ -2.199440643593797,
+ -1.666771699893703,
+ 1.6801349762003108,
+ -2.7365334934441843,
+ 2.828231821807796,
+ -2.014803167826759,
+ 0.4934221837756183,
+ 1.1117063648350813,
+ -1.5802871924130788,
+ -2.6350248566146974,
+ 3.3511286156152167,
+ 1.8784931721728562,
+ -1.9214567236642641,
+ 0.36888800361237645,
+ 1.297934261350798,
+ -1.5999875856162105,
+ -2.4816018468868064,
+ 2.8251983272529873,
+ 1.7496973245468133,
+ -1.7630366920713212,
+ 0.16470915850159315,
+ 1.406691726989947,
+ -2.6447181070381554,
+ 2.866693125799494,
+ -2.2385493648088572,
+ 0.6141658060735002,
+ 1.5877487330186746,
+ 2.3818243736896396,
+ 1.1153882573701621,
+ -2.6955799947876833,
+ 2.834611904365384,
+ -2.099898761961478,
+ 0.5022093567976043,
+ 1.4948792022310986,
+ 2.757384007559646,
+ 1.2371026209920322,
+ -2.7704692533981823,
+ 2.805866806948388,
+ -2.011660609494841,
+ 0.39413938408937266,
+ 1.2014016110992154,
+ -2.4882249255521054,
+ 5.112872129237988,
+ 5.0292583834645335,
+ 1.2659313626936881,
+ 1.1010476132670421,
+ -2.4691611533953313,
+ -2.616125696632048,
+ 0.45428479162557966,
+ 1.1470008755398275,
+ -2.4529266858082965,
+ 2.886708360892294,
+ -2.414111302244437,
+ 1.0807594660012572,
+ 0.26660436116608766,
+ -0.06618018267422238,
+ -3.459764750285768,
+ -1.7088276381022278,
+ 2.88164163298271,
+ -2.3388034478228676,
+ 0.890232014663671,
+ 0.40805522429072444,
+ 0.17016664607284554,
+ -3.2457753482354943,
+ -1.7481036139116963,
+ 2.8589693294516794,
+ -2.2107570734264756,
+ 0.7702663885944462,
+ 0.9324928043223978,
+ -2.318988489523762,
+ 2.878020491057516,
+ -1.7026208978324877,
+ -3.1961916114692164,
+ -0.0245550175540275,
+ 0.299325006790632,
+ 1.05013316309375,
+ -2.4375890362255626,
+ 2.8887945234795085,
+ -1.7500563131611677,
+ -3.571267047628072,
+ -0.31267434755346535,
+ 0.1327547414397521,
+ 1.236192066340573,
+ -2.50674476774386,
+ 2.8865804250451297,
+ -2.3554121436205846,
+ 0.9893252782977137,
+ 0.6209466582154753,
+ -1.8020084665785392,
+ -2.0542411638901066,
+ -9.628382330117241e-17,
+ 5.023467860034537e-16,
+ 5.790264287871193e-18,
+ 1.3648480107124955e-17,
+ 7.15511229858369e-17,
+ 4.181397996455554e-17,
+ 1.2740649384848009e-16,
+ -2.2995621028974166e-17,
+ 1.647743780205631e-16,
+ -1.8119391317974069e-16,
+ -6.385834328909374e-17,
+ -1.507743461531031e-16,
+ -3.364970731865716e-16,
+ -1.4428097834456185e-16,
+ -7.159248201646455e-17,
+ -9.355412727974742e-17,
+ 6.865599084190129e-18,
+ 1.828069153742191e-16,
+ 1.4344733538347325e-16,
+ 1.9476226016502457e-16,
+ -2.5642598989143855e-17,
+ 2.4732700315335524e-17,
+ -1.9784383106421138e-16,
+ -7.378451063973007e-17,
+ 2.99439381744196e-17,
+ 3.093655490948323e-16,
+ 4.681842267050136e-17,
+ 4.5034814474683894e-17,
+ -6.61744490042422e-19,
+ 4.615667818045894e-17,
+ -3.0787662399223685e-16,
+ 7.325718299922751e-18,
+ 1.8032537353656e-16,
+ 2.8537731133079455e-17,
+ -1.9041697700970695e-16,
+ 4.119359450514077e-17,
+ -9.395737782836702e-17,
+ 5.0540735426989985e-17,
+ 1.240357328523265e-16,
+ 2.0150119721791752e-16,
+ -3.380893958657362e-16,
+ -9.043152046735974e-17,
+ -2.655249766295219e-16,
+ -7.549057065312068e-17,
+ 4.252742324288253e-17,
+ 5.616556359235058e-17,
+ -7.0351711097635e-17,
+ 6.352747104407252e-16,
+ 1.5385559393486312e-16,
+ -3.8298462361205175e-17,
+ -1.743696731261782e-16,
+ -2.6904049423287222e-17,
+ 5.39321759384574e-17,
+ 2.294599019222099e-16,
+ 2.0232837783047054e-16,
+ -1.3069453678337836e-17,
+ 2.1754850110144625e-16,
+ 5.591740940858467e-17,
+ 8.950094227823758e-17,
+ 3.2115287282371295e-16,
+ 7.328820227219825e-17,
+ -5.0871607672011196e-17,
+ 4.615667818045894e-17,
+ -2.895132143935597e-17,
+ 5.169878828456422e-18,
+ -1.7932241704383946e-16,
+ 2.366563732514212e-16,
+ -1.0439019330419208e-16,
+ 1.7825742200517744e-16,
+ 9.876536513883149e-17,
+ -9.992341799640573e-17,
+ -2.8000063734919987e-17,
+ -2.613890735667567e-17,
+ -2.580803511165446e-17,
+ 1.5203579658724646e-16,
+ 1.8967251445840922e-16,
+ 9.760731228125725e-18,
+ 2.2540671692070004e-16,
+ 5.335314950967028e-17,
+ 6.266927115854876e-17,
+ -1.528629771997995e-16,
+ -3.3715881767661403e-16,
+ 4.830734777309681e-17,
+ -1.285438671907405e-16,
+ -2.9778502051908992e-18,
+ 3.334571844354393e-17,
+ 1.5054687148465104e-17,
+ 1.0819522412193601e-16,
+ 4.903113080908072e-16,
+ 4.648755042548015e-17,
+ 3.785178483042654e-16,
+ 2.4286022784556893e-16,
+ 1.4136516668531243e-16,
+ 7.947137735103212e-17,
+ 1.881835893558138e-17,
+ 1.8967251445840922e-16,
+ -7.610061635487853e-17,
+ 2.6478051407822416e-16,
+ -2.579872932976324e-16,
+ -8.056739166266488e-17,
+ -3.3087224502121103e-18,
+ -4.02175213823282e-16,
+ -5.786128384808429e-17,
+ 5.847132954984214e-17,
+ 1.9910237344151374e-16,
+ 2.3442298559752804e-16,
+ -5.2898200172766114e-17,
+ -9.173432993213076e-17,
+ 1.1431636065482842e-16,
+ -7.146840492458159e-17,
+ -8.768114493062092e-17,
+ -1.2738581433316625e-17,
+ -6.35429806805579e-17,
+ -1.3110812708965489e-16,
+ 3.441071348220595e-17,
+ 1.0257039595657542e-16,
+ 1.725085167479339e-16,
+ 1.8963115542778156e-17,
+ 2.448454613156962e-16,
+ -1.3913177903141925e-16,
+ -1.2047885621834848e-16,
+ 1.4868571510640672e-17,
+ 4.3071294495636146e-16,
+ 1.1617751703307274e-16,
+ 2.1663860242763792e-16,
+ 5.889525961377557e-17,
+ 7.495290325496122e-17,
+ -1.154950930277165e-16,
+ 2.5890753172909763e-17,
+ -9.719372197498074e-17,
+ 1.2353942448479468e-16,
+ 1.5567022140365133e-16,
+ 5.703410323553126e-17,
+ -8.304893350032397e-17,
+ 1.3309336055978215e-16,
+ -6.356883007470018e-17,
+ -6.830443908156626e-17,
+ -5.33159263821054e-16,
+ -7.585246217111263e-17,
+ -8.462057666417472e-17,
+ -1.665528163375521e-16,
+ -3.80347985409539e-17,
+ 3.106063200136619e-17,
+ 2.2573758916572125e-16,
+ -2.3161057151484775e-16,
+ -1.5385559393486315e-17,
+ 2.274746684520826e-18,
+ -7.77549775799846e-18,
+ 1.464109684218859e-17,
+ 8.271806125530276e-17,
+ 2.803315095942211e-16,
+ -6.11700062982964e-17,
+ 5.0292581243224076e-17,
+ 1.0902240473448904e-16,
+ 3.0738031562470503e-16,
+ -1.1588800381867918e-16,
+ -8.933550615572699e-18,
+ -4.824530922715533e-17,
+ 6.494401784306959e-17,
+ 1.1820410953382765e-16,
+ 1.3929721515392986e-16,
+ 8.222175288777094e-17,
+ 1.3516131209116472e-16,
+ 4.6797743155187535e-17,
+ -2.658558488745431e-16,
+ -1.623755542441593e-16,
+ -6.704298864742289e-17,
+ -6.90695811481778e-18,
+ -2.3161057151484775e-16,
+ 4.9775593360378434e-17,
+ -1.9653811354259935e-16,
+ 3.1623114817902243e-16,
+ -4.748016716054378e-17,
+ -3.399712317592944e-17,
+ -4.7604244252426737e-17,
+ -1.67276599373536e-16,
+ -5.045801736573468e-18,
+ -1.198584707589337e-16,
+ 3.044024654195142e-17,
+ 5.287338475438953e-16
+ ],
+ [
+ -2.351732430737377,
+ -1.9906319940276875,
+ 0.9996659949386971,
+ 0.09609019665036857,
+ -1.2136588146209508,
+ 1.9073440165640323,
+ -1.9853966327284487,
+ 1.36596452869962,
+ -0.3224960964889432,
+ -0.9916075006980868,
+ -2.1120591241238245,
+ -0.9698811365877752,
+ 1.9345373987781143,
+ -1.961333875987855,
+ 1.2587444726816919,
+ -0.18635748674570016,
+ -0.7044775802726094,
+ -1.9381498803932222,
+ -0.9650439921292796,
+ 1.969419068685676,
+ -1.916391982456476,
+ 1.1891212182549928,
+ -0.06480134495130786,
+ -1.0801105704072722,
+ 1.822244392776502,
+ -0.27705256333638295,
+ -0.8575187481154727,
+ -1.845381791513489,
+ -0.9006029206656732,
+ 1.9363777808272375,
+ -1.9462640831693716,
+ 1.2586716551055575,
+ -0.19555295896157976,
+ -0.7625621908905091,
+ -2.1071669588811,
+ -0.9782507889198991,
+ 1.9712029541587532,
+ -1.9173373547272659,
+ 1.1889656028939135,
+ -0.0635667554385906,
+ -1.0820157598893991,
+ 1.824203495021996,
+ -3.6302016259898404,
+ -3.582226048824485,
+ -1.0857873776693172,
+ -0.9763528702931462,
+ 1.3357469148101941,
+ 1.4382313033127248,
+ -0.10439197696398754,
+ -1.048496645356107,
+ 1.8062683995637083,
+ -2.0257542357568554,
+ 1.5071642827849865,
+ -0.5541432017991208,
+ -0.3428653362464025,
+ -0.25703358875788024,
+ 2.4900460216934537,
+ 1.256232618363941,
+ -2.0105288156341845,
+ 1.4475925546494108,
+ -0.4147175412598178,
+ -0.4379011660719071,
+ -0.3966052654422773,
+ 2.3153338463267916,
+ 1.2738914488837771,
+ -1.9791082606119441,
+ 1.344203323004842,
+ -0.32974447725984657,
+ -0.9066365374918625,
+ 1.7289692443352147,
+ -2.0468235394955765,
+ 1.1121891692339532,
+ 2.1391102491187786,
+ 0.2958954263157877,
+ -0.051244474290912896,
+ -0.9833612296484656,
+ 1.7987253261051293,
+ -2.035941228468317,
+ 1.134241739179214,
+ 2.368444890696034,
+ 0.5342753140215657,
+ 0.0744700844374593,
+ -1.1069230667557304,
+ 1.8364560699876868,
+ -2.0252945688179795,
+ 1.4596381101102527,
+ -0.4877699434268658,
+ -0.6979032423756734,
+ 1.5699148811512265,
+ 1.823074543437039,
+ -0.26904662159289044,
+ -0.3161954610976398,
+ -0.2402533238998079,
+ 1.277037110418441,
+ -1.9536983574376932,
+ 1.9254208196207943,
+ -1.3100679037858973,
+ 0.21503465199490107,
+ 0.5433255104801663,
+ 0.661425105666776,
+ -2.658550921915924,
+ -1.374944914739752,
+ 1.8984388249960567,
+ -1.2398680740246992,
+ 0.07348382671203531,
+ 0.6256151969669325,
+ 0.7465104545804879,
+ -2.326207355770585,
+ -1.3138971160179056,
+ 1.844622588075503,
+ -1.1237272488690204,
+ -0.014102962076034302,
+ 1.1487137094863926,
+ -1.8992253351344688,
+ 1.981098763014451,
+ -0.9879878491553101,
+ -1.9710492095417622,
+ -0.6493763859575875,
+ -0.15373632384368602,
+ 1.219688205141725,
+ -1.9475510276381862,
+ 1.9496515556021983,
+ -0.9358161468662433,
+ -2.0406717257739966,
+ -0.8722823378099342,
+ -0.25567331992102166,
+ 1.32929221723531,
+ -1.9737639046202524,
+ 1.9245145142733588,
+ -1.2550935064002264,
+ 0.1467879517888148,
+ 0.9560292609721166,
+ -2.758589022465829,
+ -2.666365989560598,
+ 0.11947695790053335,
+ 0.24814479031183237,
+ 3.0540301557872316,
+ 3.13600221861364,
+ -1.2890025183626357,
+ 0.18920737629257742,
+ 0.9160524548817153,
+ -1.811922503651221,
+ 2.00853709756925,
+ -1.609302275365357,
+ 0.48526266568640375,
+ 1.28274865384505,
+ 1.7382924261024557,
+ 0.7504367895440365,
+ -1.850270604155779,
+ 1.999268947478217,
+ -1.5164757956574197,
+ 0.38644841083436565,
+ 1.0388001113731953,
+ 1.7156342145682244,
+ 0.8136628371699344,
+ -1.9073590097391262,
+ 1.9744471941952746,
+ -1.4571595346059052,
+ 0.3485633310809738,
+ 0.7701825869984129,
+ -1.6954264132903547,
+ 1.3197666124383713,
+ 2.267152627182095,
+ -1.128847227375105,
+ -0.823800203764463,
+ 0.26344152330496023,
+ 0.9003098603904224,
+ -1.7707397686425095,
+ 1.3931912734406395,
+ 2.622219044962503,
+ -1.1113500167690438,
+ -0.7640478334662265,
+ 0.12098891658506272,
+ 0.977890771848924,
+ -1.8133158144339268,
+ 2.000917848363839,
+ -1.5659439402915176,
+ 0.5686657321685653,
+ -0.21436428915674788,
+ -0.3814542016805009,
+ 9.808294113347526e-16,
+ 1.3972734907245742e-15,
+ 1.8855582063146263e-16,
+ 1.4074478122589766e-16,
+ -1.2076836943274204e-16,
+ -1.603489617434044e-16,
+ -1.8082168190409183e-16,
+ -8.882885803053825e-17,
+ -3.0997123271132865e-16,
+ 7.711262013554888e-17,
+ 1.435985543392056e-16,
+ 2.9488988837515437e-16,
+ 1.2364023712194958e-16,
+ 4.2434365423970314e-17,
+ -1.7163997710475324e-17,
+ -2.1366075222244702e-16,
+ -5.513158782665929e-17,
+ -6.690857179788303e-17,
+ -7.949205686634595e-17,
+ 8.027787844827132e-17,
+ 1.072232869021862e-16,
+ 2.8723846770903886e-17,
+ 8.635765595053608e-17,
+ 6.385834328909374e-17,
+ 6.528522984574771e-17,
+ -3.026860656484666e-16,
+ -7.127194952910025e-17,
+ -2.336785230462303e-17,
+ 2.928219368437718e-16,
+ 1.9380841752117436e-16,
+ 1.8245536361388405e-16,
+ 4.3778533919368984e-17,
+ 1.9732393512452473e-16,
+ 4.9051810324394535e-17,
+ 3.563080488572167e-17,
+ -3.129198407893961e-16,
+ -5.71840297215565e-17,
+ -8.147729033647323e-18,
+ -1.481066886776196e-16,
+ 2.158941398763402e-16,
+ 1.1524693884395058e-16,
+ 1.859036727924645e-16,
+ 2.6639351627270256e-16,
+ 7.37690010032447e-17,
+ 3.3004506440865804e-17,
+ -6.617444900424221e-17,
+ -3.184645358329156e-18,
+ -3.181336635878944e-16,
+ -1.4740358515694953e-16,
+ 9.992341799640573e-17,
+ 1.6241691327478696e-16,
+ 6.985540273010319e-17,
+ 2.283018490646356e-17,
+ -1.2639319759810263e-16,
+ -2.815722805130506e-16,
+ -4.888637420188393e-17,
+ -1.0728532544812768e-16,
+ 4.954811869192635e-17,
+ -4.8472783895607416e-17,
+ -5.897797767503087e-17,
+ 3.0316169450068464e-17,
+ 2.320758606094088e-17,
+ 5.37667398159468e-19,
+ 1.6212740006039342e-17,
+ -1.313562812734208e-16,
+ -6.162495563520056e-17,
+ -1.593977040389684e-16,
+ 5.153335216205362e-17,
+ -7.014491594449675e-17,
+ 8.532368018484479e-17,
+ 4.830734777309681e-17,
+ 1.5153948821971465e-16,
+ 3.135014521575975e-17,
+ -4.209315342129219e-17,
+ -1.403725499502488e-16,
+ -1.7767839557639032e-16,
+ -3.7223127564886245e-18,
+ -5.2691405019627857e-17,
+ 7.328820227219825e-17,
+ -1.0132962503774588e-16,
+ 7.353635645596416e-17,
+ 1.6576699475562672e-16,
+ -2.9695783990653694e-17,
+ 1.43433118216695e-16,
+ -5.3187713387159673e-17,
+ -6.275198921980406e-17,
+ -9.065899513581182e-17,
+ -7.990564717262246e-17,
+ -4.221929846470653e-16,
+ -3.0440246541951414e-16,
+ -1.857020475181547e-16,
+ 7.725866921245277e-17,
+ 2.4236391947803708e-17,
+ -8.784658105313153e-17,
+ -7.965749298885655e-17,
+ -5.822834524490469e-17,
+ -1.141509245323178e-17,
+ -1.3021890793116038e-16,
+ 1.0087467570084171e-16,
+ -9.177568896275841e-17,
+ 6.188603451603761e-17,
+ 2.3483657590380456e-16,
+ 9.793818452627846e-17,
+ -3.2094607767057474e-17,
+ -5.4469843336616866e-17,
+ -4.702521782363962e-17,
+ -4.35510592509169e-17,
+ 8.391747314350465e-17,
+ 9.438130789230045e-17,
+ 5.3559944662808534e-18,
+ 5.66618719598824e-17,
+ 6.346543249813105e-17,
+ 1.6295458067294645e-17,
+ 3.383168705341883e-17,
+ -1.5042279439276808e-16,
+ -6.59262948204763e-17,
+ -1.2167826810655037e-16,
+ -2.0265925007549175e-17,
+ 1.9736529415515238e-16,
+ 8.724687510903058e-17,
+ 8.55718343686107e-17,
+ -3.443139299751978e-17,
+ -8.681260528744024e-17,
+ -2.134125980386811e-17,
+ -1.3019822841584656e-16,
+ -1.1514354126738145e-16,
+ -8.193223967337738e-17,
+ 4.946540063067105e-17,
+ -1.923194924185789e-16,
+ -5.2029660529585435e-17,
+ -1.0219816468092656e-16,
+ -1.0141234309900118e-16,
+ 9.843449289381028e-18,
+ 4.7604244252426737e-17,
+ -2.0137712012603456e-16,
+ -1.3689839137752608e-16,
+ 5.703410323553126e-17,
+ 2.746239633676052e-16,
+ 1.2771668657818747e-16,
+ 5.492479267352103e-17,
+ 1.0453494991138886e-16,
+ 4.623939624171424e-17,
+ -3.9456515218779414e-17,
+ -2.845501307182415e-16,
+ 2.785944303078597e-16,
+ -1.646089418980525e-17,
+ 8.896327488007811e-17,
+ 2.568395801977151e-16,
+ -5.39321759384574e-17,
+ -6.418921553411495e-17,
+ -9.061763610518417e-17,
+ 1.593977040389684e-16,
+ 1.5902547276331957e-17,
+ -7.213014941462401e-17,
+ -3.720658395263518e-16,
+ 6.460280584039146e-17,
+ -8.954230130886523e-17,
+ -2.1936829844906291e-16,
+ -1.8018061692936323e-16,
+ -6.005331247134981e-17,
+ -1.406207041340147e-17,
+ -2.0844951436336294e-17,
+ -4.375785440405516e-17,
+ -3.866552375802558e-17,
+ 1.3226617994722913e-16,
+ 6.048758229294015e-17,
+ -4.293067379150213e-17,
+ -6.129408339017935e-17,
+ -5.96397221650733e-17,
+ 2.8951321439355965e-18,
+ 5.854370785344053e-17,
+ 8.99972506457694e-17,
+ 9.29751008509603e-17,
+ 3.192917164454687e-17,
+ -7.506664058918726e-18,
+ -1.0960143116327617e-18,
+ -1.1522625932863676e-16,
+ -1.555099551599692e-17,
+ -6.101284198191131e-16,
+ 4.450231695535288e-17
+ ],
+ [
+ 7.900242723891397,
+ 6.494077333976889,
+ -4.153378144755333,
+ 2.4196463638357697,
+ 0.09427386069386429,
+ -2.70184258373624,
+ 4.284536347724914,
+ -4.481538469714229,
+ 2.3498998175980805,
+ 5.022516845391371,
+ 1.8191524754713646,
+ 0.49897441951228566,
+ -2.8579496748432356,
+ 4.351843659047881,
+ -4.402619269953146,
+ 2.038204430752831,
+ 4.171992671719308,
+ 1.9169860870101216,
+ 0.6147776059433043,
+ -3.1022360461868184,
+ 4.442210717474432,
+ -4.343482384156439,
+ 2.720230252439299,
+ -0.26882115100874243,
+ -2.273152766529758,
+ 2.594629812503045,
+ 4.381043138730463,
+ 1.5733052866949302,
+ 0.411046723441201,
+ -2.859992336558365,
+ 4.388004430383569,
+ -4.399743650072319,
+ 2.0624262035624774,
+ 4.525392346598961,
+ 2.082429050414308,
+ 0.6403840876892867,
+ -3.1040043880982844,
+ 4.441440676080794,
+ -4.340485825978015,
+ 2.715944253988298,
+ -0.26463162985815103,
+ -2.2758241585187653,
+ 6.334177752587629,
+ 6.128529991602913,
+ -0.15919945757250012,
+ -0.446636575354016,
+ -6.788766323372746,
+ -6.9783603046914315,
+ 2.7897519554670476,
+ -0.35266129190266127,
+ -2.195300103999532,
+ 4.103239394093598,
+ -4.553300143277121,
+ 3.5289921586711257,
+ -1.0285096582112232,
+ -2.777054984606455,
+ -4.0177940197714275,
+ -1.750800795391375,
+ 4.187091219811675,
+ -4.526251177644199,
+ 3.3153224063261053,
+ -0.8042800549177622,
+ -2.232001255593553,
+ -3.9526895059760205,
+ -1.8904034583380211,
+ 4.307412608775799,
+ -4.464283243546929,
+ 3.176721397894465,
+ -0.713189748121211,
+ -1.8700147414412562,
+ 3.8508561277689455,
+ -2.9806612890486313,
+ -5.140814941458125,
+ 2.4375728999288095,
+ 1.8028424232111708,
+ -0.5190127645162269,
+ -2.158835324112824,
+ 4.015767443012574,
+ -3.1429140145587833,
+ -5.9364638501872795,
+ 2.3779835343508418,
+ 1.6611256496382523,
+ -0.19845623594524758,
+ -2.333049352487826,
+ 4.106275016120776,
+ -4.53235365198068,
+ 3.4283072447209912,
+ -1.2123652696100824,
+ 0.32708493810307454,
+ 0.6691197373728962,
+ 5.157662381759106,
+ 4.373653493882696,
+ -2.1942355228288237,
+ -0.35802246527872295,
+ 2.79084967223696,
+ -4.369867253350003,
+ 4.4177161033315295,
+ -3.034667020775933,
+ 0.6552125886569973,
+ 2.1051887007543155,
+ 4.848811650064291,
+ 2.2404669064329883,
+ -4.4253288266506345,
+ 4.360367239836545,
+ -2.786433334290506,
+ 0.35066322062450833,
+ 1.4707960747409157,
+ 4.439396070504129,
+ 2.2244309605172106,
+ -4.498126726405803,
+ 4.250349654928178,
+ -2.6280860788770704,
+ 0.004744012990162401,
+ 2.494388134176504,
+ -4.189096207509054,
+ 2.962386853252079,
+ 5.2436178992372104,
+ -1.6896904737267175,
+ -1.4139457686072723,
+ -0.19123632206746125,
+ 2.757921269872794,
+ -4.3093586944821105,
+ 2.9521696649642784,
+ 5.7027227564655165,
+ -1.4570628975287456,
+ -1.2155769611783371,
+ -0.5118526562862463,
+ 2.91492178774496,
+ -4.371943174720103,
+ 4.372750378602679,
+ -2.9170990225619846,
+ 0.5144854839553712,
+ 2.0266220660424765,
+ 1.7985205071545598,
+ -2.7861837874134374,
+ -3.0066302520036174,
+ -8.108137912692724,
+ -8.183083204640734,
+ 4.4035927990506964,
+ -2.992767203453435,
+ 0.6156724312281715,
+ 2.0961403149862,
+ -3.980083096500758,
+ 4.577320631971142,
+ -2.499758397897951,
+ -5.190609005183383,
+ -0.83805747175987,
+ 0.03385674682159646,
+ 2.268719161083794,
+ -4.07574287284359,
+ 4.547570037171261,
+ -2.3505822113470147,
+ -4.614823082742017,
+ -1.137660302436753,
+ -0.15578027395855576,
+ 2.542420303712193,
+ -4.212796838070484,
+ 4.518029750047641,
+ -3.2581776250142225,
+ 0.9733556222369076,
+ 1.6297259734938088,
+ -2.3352997740842576,
+ -3.512822595872812,
+ 4.71995358268601,
+ 2.8612577229097966,
+ -3.1175243404767516,
+ 0.6569208812322169,
+ 1.9262319675966137,
+ -2.552150173379038,
+ -4.293677796956894,
+ 5.177142595857336,
+ 2.9200215382476586,
+ -2.874061649518238,
+ 0.45835780776401824,
+ 2.1022096165564617,
+ -4.056287073882694,
+ 4.5656333333078924,
+ -3.5968897897379164,
+ 4.200558755317202,
+ 5.356200690872129,
+ -2.282253348579745e-15,
+ -3.225011772221744e-15,
+ -4.57348160680569e-16,
+ -2.1440521477374475e-16,
+ 1.2027206106521022e-16,
+ 3.3236117012380647e-16,
+ 4.902699490601795e-16,
+ 1.8801815323330317e-16,
+ 4.966392397768378e-16,
+ -1.6030760271277674e-16,
+ -2.658558488745431e-16,
+ -9.09236929318288e-16,
+ -1.9281580078611073e-16,
+ -3.096964213398535e-16,
+ 8.3876114112877e-17,
+ 6.76106413427874e-16,
+ 8.174612403555295e-17,
+ 5.744769354180777e-17,
+ 3.39888513698039e-16,
+ -1.1539169545114736e-16,
+ -1.50670948576534e-16,
+ 2.8124140826802937e-18,
+ 6.088049308390284e-17,
+ -4.322018700589569e-17,
+ -1.4583194199309878e-16,
+ 9.62507360766703e-16,
+ 8.768114493062093e-18,
+ 4.284795573024683e-17,
+ -8.228792733677518e-16,
+ -5.62937765872963e-16,
+ -1.5550995515996918e-16,
+ -2.1837568171399928e-17,
+ -7.590209300786581e-16,
+ -3.897675046349866e-16,
+ -2.067124350770016e-16,
+ 9.254496693243274e-16,
+ 1.5385559393486315e-17,
+ -1.29761373654842e-16,
+ 4.0366413892587746e-16,
+ -8.10637000301967e-16,
+ 5.6248281653605874e-18,
+ -5.624828165360588e-16,
+ -6.620753622874433e-16,
+ -1.4459117107426924e-16,
+ -4.79764755280756e-17,
+ 4.23413076050581e-16,
+ 1.458888106602118e-16,
+ 3.397230775755284e-16,
+ 2.3690452743518713e-16,
+ -1.2666203129718236e-16,
+ -1.1745964698252993e-16,
+ -2.5791491499403403e-16,
+ -1.7221900353354034e-16,
+ 1.1745964698252993e-16,
+ 2.871971086784112e-16,
+ 1.0819522412193601e-16,
+ 1.6450554432148338e-17,
+ -4.301339185275743e-17,
+ 2.6469779601696883e-17,
+ 1.771820872088585e-16,
+ -7.916118462132474e-17,
+ 5.955700410381799e-17,
+ -6.849055471939069e-17,
+ 7.593518023236793e-17,
+ 2.689991352022446e-16,
+ 1.6659417536817975e-16,
+ 3.8298462361205176e-16,
+ -2.7958704704292335e-17,
+ 1.345822856623776e-16,
+ -2.069605892607675e-16,
+ 3.2638479019811085e-16,
+ -6.485096002415737e-17,
+ -1.0711988932561707e-16,
+ 1.3937993321518516e-17,
+ 6.739040450469515e-16,
+ 1.828896334354744e-16,
+ 3.391440511467413e-18,
+ -8.970773743137584e-17,
+ -1.9662083160385465e-16,
+ 2.6403605152692643e-16,
+ 3.672681919735443e-17,
+ 8.530300066953097e-17,
+ 9.347140921849213e-18,
+ -2.1721762885642504e-16,
+ 1.27179019180028e-16,
+ 1.2986735617082534e-16,
+ 3.208633596093194e-16,
+ 1.9322939109238724e-16,
+ 8.086517668318398e-16,
+ 8.2784235704307e-16,
+ -2.484850560109295e-16,
+ -4.681842267050137e-16,
+ -3.667718836060124e-16,
+ 2.0613340864821447e-16,
+ 2.387243247828038e-16,
+ -1.6626330312315856e-17,
+ -1.8285861416250368e-17,
+ 1.681658185320305e-16,
+ 6.700162961679524e-17,
+ 3.3611450215326583e-16,
+ -2.71563395101159e-16,
+ -1.513326930665764e-16,
+ -2.669725427014897e-16,
+ 1.800772193527941e-16,
+ 2.1281289209458017e-16,
+ -9.864128804694853e-18,
+ 9.773138937314021e-17,
+ -1.7735883244130636e-16,
+ -1.4558378780933287e-17,
+ 1.708127964922002e-17,
+ -7.262645778215583e-17,
+ -1.1315830779725419e-16,
+ -8.668852819555729e-17,
+ 3.805030817743927e-18,
+ 1.654361225106055e-16,
+ 1.5517908291494797e-16,
+ 2.7991791928794457e-16,
+ 7.246102165964522e-17,
+ -4.618976540496107e-16,
+ -1.3061181872212307e-16,
+ -1.3962808739895107e-16,
+ 2.474924392758659e-16,
+ -2.4674797672456816e-16,
+ 9.657333651556597e-18,
+ 6.253485430900889e-17,
+ 6.028492304286465e-16,
+ 1.282129949457193e-16,
+ -6.716706573930585e-17,
+ 4.355933105704243e-16,
+ 1.7408015991178465e-16,
+ 9.396771758602393e-17,
+ 1.7503141761622063e-16,
+ 1.5083121482021612e-16,
+ -3.28390703183552e-17,
+ 4.744707993604167e-16,
+ 6.28657265540301e-17,
+ -5.806807900122254e-17,
+ -4.0697286137608957e-16,
+ -6.460280584039146e-17,
+ -7.378451063973007e-17,
+ -1.8896941093773915e-16,
+ -1.019913695277883e-16,
+ 8.99145325845141e-17,
+ 6.078123141039646e-16,
+ -1.0989094437766971e-16,
+ -3.2094607767057474e-17,
+ -2.416401364420532e-16,
+ -3.834809319795836e-16,
+ 1.530284133223101e-16,
+ 1.593977040389684e-16,
+ -4.582580593543773e-17,
+ -3.1664473848529894e-16,
+ -7.560430798734672e-17,
+ 1.491406644433109e-16,
+ 3.1060632001366184e-16,
+ -1.4524257580665475e-16,
+ 1.4252321954288667e-16,
+ 2.984467650091324e-16,
+ 2.3756627192522955e-16,
+ -5.765448869494603e-17,
+ -1.0637542677431935e-16,
+ 1.493888186270768e-16,
+ 4.615667818045894e-17,
+ 1.2308447514789052e-16,
+ 1.2182302471374715e-16,
+ -3.2094607767057474e-17,
+ 1.7221900353354034e-16,
+ 4.446095792472524e-18,
+ 2.361600648838894e-16,
+ 5.839895124624375e-17,
+ 1.492233825045662e-16,
+ -3.1738920103659667e-16,
+ -5.920545234348296e-17,
+ 2.5973471234165066e-17,
+ 1.3400325923359047e-17,
+ 9.58702329948959e-17,
+ 2.3210687988237957e-16,
+ 1.0620999065180874e-16,
+ 1.5366534239397593e-15,
+ 2.780154038790726e-16
+ ],
+ [
+ 5.361260921391872,
+ 4.425272188829066,
+ -2.7480817225044105,
+ 1.3779842866665117,
+ 0.43589129166900714,
+ -2.1886338896628996,
+ 3.128400507041572,
+ -3.0561056416835823,
+ 1.4749263525284435,
+ 3.248444146070556,
+ 1.7334145623460813,
+ 0.5995252401124371,
+ -2.2882408143217723,
+ 3.1602752799453984,
+ -2.9757460975922694,
+ 1.2496319410289107,
+ 2.6604779980631172,
+ 1.7353103724460932,
+ 0.6656243018280507,
+ -2.442205805426233,
+ 3.19857190610853,
+ -2.919297076542021,
+ 1.604658701424109,
+ 0.18139203013717312,
+ -1.9112197459567857,
+ 1.9336216288850563,
+ 3.11712814503213,
+ 1.5051166150748456,
+ 0.5261656233364052,
+ -2.2900235442369707,
+ 3.176613913813841,
+ -2.974047078998344,
+ 1.26670035180736,
+ 2.8853365609504267,
+ 1.885634437704514,
+ 0.6847779315484741,
+ -2.443810540959511,
+ 3.198427677691227,
+ -2.9175005992353786,
+ 1.6017630013285287,
+ 0.1844468920973418,
+ -1.9134070159030165,
+ 4.852721369648049,
+ 4.717370618670483,
+ 0.25193173983275446,
+ 0.04928768722745802,
+ -4.389363134384537,
+ -4.532654340749578,
+ 1.6578398116132347,
+ 0.12238487426669817,
+ -1.860679014651929,
+ 3.0353446230050776,
+ -3.142883783094515,
+ 2.2324704533025894,
+ -0.4917962409928385,
+ -1.5403179061636063,
+ -3.1376341764033513,
+ -1.4216346183755884,
+ 3.079689747650233,
+ -3.1079548658934275,
+ 2.06359068013463,
+ -0.33064262288191404,
+ -1.1776363403807157,
+ -3.0441103843820394,
+ -1.5087811073044615,
+ 3.1397767966362977,
+ -3.039125387439473,
+ 1.955439464649286,
+ -0.13324282353299155,
+ -1.6461447831699183,
+ 2.8946315400854825,
+ -2.0941897349261773,
+ -3.682065525016238,
+ 1.3296909429275479,
+ 1.0692458705349117,
+ 0.004748376486990572,
+ -1.8367851964662645,
+ 2.9876987621867377,
+ -2.195959927141868,
+ -4.219621890379656,
+ 1.2191614586612374,
+ 0.9465391380456274,
+ 0.2310173944255811,
+ -1.9507291417718111,
+ 3.0369709077608187,
+ -3.1155457321901188,
+ 2.1525733479739952,
+ -0.4910978250256253,
+ -0.30767363084222554,
+ -0.18832557156894383,
+ 3.0978437040722144,
+ 2.6549143524050605,
+ -1.209948421338446,
+ -0.6194866400122288,
+ 2.2459397530777796,
+ -3.168604001357361,
+ 2.991659393316243,
+ -1.845439159499996,
+ 0.21008684238020994,
+ 1.019442424165482,
+ 3.6765191229002,
+ 1.7453370809389692,
+ -3.1922184287618,
+ 2.936071604849407,
+ -1.6552839954504657,
+ 0.006071875177178939,
+ 0.621891583315903,
+ 3.3318221556299137,
+ 1.7165779389334714,
+ -3.217847927119085,
+ 2.8347145818312223,
+ -1.5351835480221934,
+ -0.36683868994252294,
+ 2.0554773496359586,
+ -3.0807095598540277,
+ 2.0440581836180107,
+ 3.688713748397837,
+ -0.7805986061652361,
+ -0.7769931760710337,
+ -0.5036415884945102,
+ 2.2249548530215777,
+ -3.1407539299603635,
+ 2.021518046298223,
+ 3.9789744668370712,
+ -0.573922202999383,
+ -0.6287527378865835,
+ -0.7259245868193008,
+ 2.3247724345833998,
+ -3.1695290202179423,
+ 2.9479408505140574,
+ -1.7551007485894967,
+ -0.007934366754565401,
+ 2.0600918455966957,
+ 1.8975771348985937,
+ -1.6635660872047833,
+ -1.8327586012139112,
+ -5.705774865987144,
+ -5.775857728639744,
+ 2.9767718610003553,
+ -1.8127703305654013,
+ 0.06388903868885805,
+ 1.7951497136423191,
+ -2.9673563978369124,
+ 3.179941373633507,
+ -1.6141602473423167,
+ -3.439109847705795,
+ -1.041670284546314,
+ -0.21861301523029253,
+ 1.9083354257987293,
+ -3.0200764097467276,
+ 3.1332842400806205,
+ -1.4956421940381728,
+ -3.0253224596431516,
+ -1.2094593729880445,
+ -0.34945752531390817,
+ 2.0861217088362,
+ -3.092445793958082,
+ 3.0969810547168244,
+ -2.0184006721598733,
+ 0.31912799092543026,
+ 1.485730382721177,
+ -1.7831982033708196,
+ -2.771893281737177,
+ 3.1153260173075217,
+ 1.9328362962031762,
+ -1.9090035775233816,
+ 0.09318107725137822,
+ 1.6830384555188913,
+ -1.9331757002288694,
+ -3.3407499991920204,
+ 3.3767924217722727,
+ 1.9481761814304304,
+ -1.7217611303392109,
+ -0.047643491633670466,
+ 1.7991374305049164,
+ -3.0094369225159916,
+ 3.1593350229597026,
+ -2.2861467257866868,
+ 2.5214690142206493,
+ 3.2495100955633216,
+ -1.552121701394501e-15,
+ -2.1155971346656236e-15,
+ -2.902576769448574e-16,
+ -1.1634295315558334e-16,
+ 8.631629691990843e-17,
+ 2.477405934596318e-16,
+ 3.537024299276746e-16,
+ 9.60356691174065e-17,
+ 3.206152054255535e-16,
+ -1.4277137372665258e-16,
+ -1.9347754527615315e-16,
+ -6.217503074254832e-16,
+ -1.9637267742008875e-16,
+ -2.3748355386397425e-16,
+ 7.014491594449675e-17,
+ 4.711258877584054e-16,
+ 4.972389457209387e-17,
+ 5.4180330122223307e-17,
+ 2.307833909022947e-16,
+ -1.1001502146955267e-17,
+ -1.1528829787457823e-16,
+ -5.70754622661589e-18,
+ 2.5311726744122644e-17,
+ -2.729696021424991e-17,
+ -7.519071768107022e-17,
+ 7.082320404679022e-16,
+ 7.279189390466644e-18,
+ 3.1515581338270354e-17,
+ -5.600012746983997e-16,
+ -3.7864192539614837e-16,
+ -1.6312001679545703e-16,
+ -3.1432863277015048e-18,
+ -4.895254865088818e-16,
+ -2.747066814288605e-16,
+ -1.9000338670343043e-16,
+ 6.561196618770615e-16,
+ -2.580803511165446e-17,
+ -8.770182444593475e-17,
+ 2.9125029367992104e-16,
+ -5.115284908027923e-16,
+ -5.2939559203393765e-17,
+ -4.0068628872068656e-16,
+ -4.746362354829273e-16,
+ -1.0984958534704206e-16,
+ -1.3896634290890865e-17,
+ 3.3389662413585803e-16,
+ 8.799133766032831e-17,
+ 2.839711042894544e-16,
+ 1.7569316210626305e-16,
+ -8.46826152101162e-17,
+ -1.01908651466533e-16,
+ -1.8446127659932515e-16,
+ -1.1468859193047729e-16,
+ 1.3698110943878138e-16,
+ 2.0017770823783267e-16,
+ 6.964860757696493e-17,
+ 4.308577015635582e-17,
+ -4.599124205794833e-17,
+ 2.8289576949313546e-17,
+ 1.9372569945991906e-16,
+ -4.317882797526804e-17,
+ 3.110199103199384e-17,
+ -3.871205266748169e-17,
+ 5.872982349126496e-17,
+ 1.9322939109238724e-16,
+ 7.262645778215583e-17,
+ 3.1432863277015047e-16,
+ -3.0357528480696116e-17,
+ 1.1113171529649927e-16,
+ -1.3226617994722913e-16,
+ 2.403373269772822e-16,
+ -2.0844951436336294e-17,
+ -8.073282778517549e-17,
+ -1.1042861177582918e-17,
+ 5.342888823450717e-16,
+ 1.3210074382471852e-16,
+ 1.3276248831476093e-17,
+ -3.685089628923738e-17,
+ -1.301568693852189e-16,
+ 1.83055069557985e-16,
+ 6.1624955635200554e-18,
+ 1.8446127659932517e-17,
+ 1.7784383169890095e-17,
+ -1.494715366883321e-16,
+ 8.486873084794063e-17,
+ 9.165161187087545e-17,
+ 2.1754850110144625e-16,
+ 1.404552680115041e-16,
+ 5.810116622572466e-16,
+ 5.735670367442694e-16,
+ -1.6692504761320096e-16,
+ -2.187065539590205e-16,
+ -2.1730034691768035e-16,
+ 1.6005944852901083e-16,
+ 1.7705801011697555e-16,
+ 1.4144788474656773e-17,
+ -5.397353496908505e-17,
+ 1.43433118216695e-16,
+ -9.719372197498075e-19,
+ 2.0967994552453558e-16,
+ -1.9554549680753572e-16,
+ -1.4815838746590417e-16,
+ -1.8319982616518178e-16,
+ 1.2858522622136815e-16,
+ 1.8942436027464331e-16,
+ 4.317882797526804e-17,
+ 5.506954928071781e-17,
+ -1.3461330493534834e-16,
+ 8.933550615572699e-18,
+ -8.35452418678558e-18,
+ -7.072394237328387e-17,
+ -6.55954225754551e-17,
+ -6.435465165662555e-17,
+ -1.2986735617082533e-17,
+ 1.0405932105917087e-16,
+ 1.4095157637903592e-16,
+ 2.1738306497893565e-16,
+ 4.79764755280756e-17,
+ -2.565914260139492e-16,
+ -1.135718981035307e-16,
+ -1.1464723289984964e-16,
+ 1.7271531190107215e-16,
+ -1.4614213472280616e-16,
+ 1.6067983398842563e-17,
+ 7.643148859989974e-17,
+ 4.589198038444198e-16,
+ 1.0910512279574434e-16,
+ -6.840783665813539e-17,
+ 2.7396221887756277e-16,
+ 8.54891163073554e-17,
+ 6.452008777913616e-17,
+ 1.3561626142806889e-16,
+ 8.151864936710087e-17,
+ -2.613890735667567e-17,
+ 3.394749233917625e-16,
+ -1.819797347616661e-18,
+ -4.5412215629161213e-17,
+ -4.025060860683032e-16,
+ -4.739744909928848e-17,
+ -6.088049308390284e-17,
+ -1.8235196603731493e-16,
+ -7.506664058918726e-17,
+ 7.299868905780469e-17,
+ 4.376612621018069e-16,
+ -7.554226944140524e-17,
+ -3.197053067517452e-17,
+ -1.4639028890657207e-16,
+ -2.2044363324538185e-16,
+ 9.376092243288567e-17,
+ 1.138200522872966e-16,
+ -3.9291079096268815e-18,
+ -2.1415706058997884e-16,
+ -4.673570460924606e-17,
+ 1.2377723891090368e-16,
+ 2.0439632936185311e-16,
+ -1.14130245017004e-16,
+ 9.223063829966257e-17,
+ 1.787123713420816e-16,
+ 1.2953648392580413e-16,
+ -4.067660662229513e-17,
+ -6.849055471939069e-17,
+ 1.0753347963189359e-16,
+ 4.8720938079373324e-17,
+ 9.553936074987468e-17,
+ 8.290417689312719e-17,
+ -3.565148440103549e-17,
+ 1.1286879458286063e-16,
+ 5.004442705945817e-18,
+ 1.1315830779725419e-16,
+ 7.920254365195239e-17,
+ 6.389970231972139e-17,
+ -1.5029871730088513e-16,
+ -5.211237859084074e-17,
+ 2.6552497662952185e-17,
+ 2.853773113307945e-18,
+ 5.600012746983997e-17,
+ 1.5699888026256463e-16,
+ 6.200752666850634e-17,
+ 1.0700408403985966e-15,
+ 3.274808045097436e-16
+ ],
+ [
+ -2.8388532256100256,
+ -2.179548084483584,
+ 2.0868764205664423,
+ -3.096068588922576,
+ 3.102427175898957,
+ -2.0237191933565373,
+ 0.32266825054780396,
+ 1.4852237675807445,
+ -1.8543556381515993,
+ -3.153532808050978,
+ 3.5534715421791647,
+ 2.0209238878462097,
+ -1.914239361295914,
+ 0.18208297631876208,
+ 1.6829104703824729,
+ -1.8584837783084522,
+ -2.938831402426504,
+ 2.9744358861157685,
+ 1.874008869207057,
+ -1.726839392703943,
+ -0.04460666179086658,
+ 1.7992523451353373,
+ -3.0127055508173948,
+ 3.1646332724055823,
+ -2.291625305729509,
+ 0.5253059449676925,
+ 1.5046560425589817,
+ 3.1235108926591373,
+ 1.9370729274997291,
+ -1.9168206189224652,
+ 0.09990657803455824,
+ 1.6797243180382577,
+ -1.8618593554661071,
+ -3.191970457757471,
+ 3.2358394523386917,
+ 1.879786840933713,
+ -1.72958606086352,
+ -0.04113657741916002,
+ 1.7961435215483197,
+ -3.0110397863793104,
+ 3.1649137659934192,
+ -2.29379819936098,
+ 2.397529168598107,
+ 2.5068504333110866,
+ 3.0927603659408653,
+ 3.132097918603635,
+ 4.274581699453693,
+ 4.219386070487963,
+ -2.987046851241109,
+ 3.1769536569161936,
+ -2.3389077981204673,
+ 0.64052847690453,
+ 1.189895867703416,
+ -2.637357668582868,
+ 2.108194274545307,
+ 3.9008759307635743,
+ -2.022789252490935,
+ -1.3399824831333917,
+ 0.5045150370193812,
+ 1.3199282241937738,
+ -2.761955295314664,
+ 2.103405485205474,
+ 3.6442877384955894,
+ -1.6300936517183497,
+ -1.2258065884063196,
+ 0.2794212188776571,
+ 1.5234575614876176,
+ -2.8310133533463087,
+ 3.214033743857877,
+ -2.5081818929534676,
+ 0.9889397790304933,
+ 0.46852136203387507,
+ 0.21633379294214866,
+ -3.6123290327044133,
+ -1.9481693331449121,
+ 3.1966996264498166,
+ -2.359206745095188,
+ 0.7707741273826244,
+ 0.597135839861153,
+ 0.52235381152503,
+ -4.181988990958327,
+ -2.1210116329812547,
+ 3.155154184939403,
+ -2.2605059836751744,
+ 0.6358153416714856,
+ 1.2930388887303528,
+ -2.6987719531328787,
+ 3.2323032763246657,
+ -4.583909887822776,
+ -5.6577364998271085,
+ -5.245467704190935,
+ -4.2122407747575945,
+ 3.142126315476258,
+ -3.046528064652966,
+ 1.9656173618496995,
+ -0.1426631982479956,
+ -1.640475682291307,
+ 2.894665346495765,
+ -2.21339980711108,
+ -4.2070493762620975,
+ 1.5129001314110386,
+ 1.0915610359523775,
+ -0.004483288177147054,
+ -1.7604482758707998,
+ 2.988454256140699,
+ -2.0815452748934176,
+ -3.7011306058280984,
+ 1.096206692277554,
+ 0.9465729789524253,
+ 0.22214645850209117,
+ -1.9460602120573844,
+ 3.0381617269387373,
+ -3.1223487818140487,
+ 2.162566409859492,
+ -0.5009197646070782,
+ -0.7801084727514757,
+ -0.7854777469672505,
+ 3.6941040868451767,
+ 2.0474120133905265,
+ -3.0840252861677935,
+ 1.9889252704957774,
+ -0.27581719102933305,
+ -0.9080424164668796,
+ -1.1300204947116548,
+ 4.022128137891993,
+ 2.0910147748794983,
+ -3.0085010913566874,
+ 1.875796569273653,
+ -0.13784949541392202,
+ -1.7356664764992422,
+ 2.941429754374694,
+ -3.1960333177505884,
+ 5.046424439597075,
+ 5.063281233547219,
+ 2.9170872444299283,
+ 2.8310749072632944,
+ 1.1978727429180027,
+ 1.0627555952045937,
+ -1.6801112438891654,
+ 2.915314433635008,
+ -3.205780763895031,
+ 2.3894073662269775,
+ -0.8162453861040917,
+ -1.0234294120690253,
+ 1.5916653386505348,
+ 2.567967064581195,
+ -3.68714355925711,
+ -2.0494487330822304,
+ 2.294263223027382,
+ -0.6790176029443592,
+ -1.2359483043027764,
+ 1.6838160473783346,
+ 2.555439701328435,
+ -3.279886491198015,
+ -1.9994600748465592,
+ 2.1288519430627844,
+ -0.4557460889363752,
+ -1.3624373168173038,
+ 2.795511872774881,
+ -3.22883292826967,
+ 2.6168826246608337,
+ -0.834053975823799,
+ -2.0098420657329226,
+ -2.435860883890884,
+ -1.1029599616476589,
+ 2.862583174613804,
+ -3.209637571067455,
+ 2.4773983020894406,
+ -0.7798972509384711,
+ -2.057742315032172,
+ -3.011614549133612,
+ -1.3310099318131565,
+ 2.96081575701124,
+ -3.1895205842842693,
+ 2.3861458971732064,
+ -0.7076176153858971,
+ -1.1261662714516716,
+ 2.5977157822076378,
+ -4.284811788805195,
+ -5.1740328059228995,
+ 8.615086079739782e-16,
+ 1.832618647111233e-15,
+ 2.8190315275807183e-16,
+ 2.354156023325917e-16,
+ 5.360130369343619e-17,
+ 3.0316169450068464e-17,
+ -4.8183270681213854e-18,
+ -2.334303688624644e-16,
+ -1.862810739469418e-16,
+ -1.8421312241555924e-16,
+ -9.59529510561512e-18,
+ 2.833920778606673e-16,
+ -4.107778921938335e-16,
+ -5.631032019954736e-17,
+ -1.4475660719677984e-17,
+ -2.990257914379195e-16,
+ -6.468552390164676e-17,
+ 1.6758679210324338e-16,
+ -1.1398548840980721e-16,
+ 4.653511331070195e-16,
+ -4.8472783895607416e-17,
+ -6.315523976842366e-17,
+ -1.9008610476468574e-16,
+ 1.9893693731900312e-17,
+ 1.4049662704213175e-16,
+ -1.4111701250154652e-16,
+ 3.532061215601428e-17,
+ 9.884808320008679e-18,
+ 2.7321775632626504e-16,
+ 2.3533288427133637e-16,
+ -3.7541592100719156e-16,
+ 4.044913195384305e-17,
+ 6.655081618295383e-16,
+ 1.861156378244312e-16,
+ -2.2234614865425384e-16,
+ -2.2019547906161594e-16,
+ -2.0244211516469659e-16,
+ 9.89308012613421e-17,
+ -1.5385559393486315e-17,
+ 6.010294330810299e-16,
+ -4.6102911440643e-16,
+ 1.3383782311107988e-16,
+ -3.5403330217269584e-17,
+ -3.461750863534421e-17,
+ 1.3698110943878138e-16,
+ 7.965749298885655e-17,
+ -1.696961026652536e-16,
+ 5.102050018227075e-16,
+ 5.914341379754148e-17,
+ 3.5403330217269584e-17,
+ -1.6742135598073278e-16,
+ 7.192335426148576e-17,
+ 9.59529510561512e-17,
+ 3.7475417651714914e-16,
+ 2.804142276554764e-17,
+ -5.509022879603164e-17,
+ 3.0473333766453535e-16,
+ -8.586134758300426e-17,
+ 1.0240495983406481e-16,
+ 4.1574097586915166e-16,
+ 8.966637840074819e-17,
+ -1.4004167770522759e-16,
+ 7.419810094600658e-17,
+ 7.444625512977248e-19,
+ -2.0844951436336294e-17,
+ -3.1639658430153304e-16,
+ 1.8770796050359578e-16,
+ -1.1787323728880644e-16,
+ 1.133237439197648e-16,
+ 1.651052502655843e-16,
+ -1.9236085144920656e-16,
+ 3.6861236046894296e-17,
+ -5.699274420490361e-17,
+ -1.0348029463038375e-16,
+ 1.31687153518442e-16,
+ 1.1940352142202954e-16,
+ 5.39321759384574e-17,
+ 2.413713027429735e-16,
+ 1.227536029028693e-16,
+ -6.327931686030662e-17,
+ -2.244968182468917e-16,
+ -5.07888896107559e-16,
+ 1.2093380555525265e-16,
+ 3.1267427154504446e-17,
+ -5.1119761855777104e-17,
+ -1.3896634290890865e-17,
+ -1.5550995515996918e-16,
+ 6.782881022934826e-18,
+ -8.577862952174896e-17,
+ -2.0265925007549176e-16,
+ 5.052419181473893e-16,
+ 7.636531415089551e-16,
+ 4.3311176873276524e-16,
+ 7.783769564123989e-17,
+ -2.4649982254080222e-17,
+ 2.9480717031389906e-16,
+ -2.1093105620102203e-16,
+ 2.3723539968020834e-16,
+ -4.435342444509334e-16,
+ -2.7032262418232944e-16,
+ 6.054962083888163e-17,
+ -4.13921178521535e-16,
+ 1.2904017555827232e-16,
+ -2.216844041642114e-17,
+ 2.514629062161204e-16,
+ 3.9175273810511386e-16,
+ -1.3308302080212524e-16,
+ -5.1202479917032407e-17,
+ 1.1911400820763599e-16,
+ -1.593149859777131e-16,
+ -1.1233112718470116e-16,
+ 5.343586757092558e-17,
+ -5.2650045989000205e-17,
+ -1.3880090678639804e-16,
+ -8.08982639076861e-17,
+ 1.0356301269163905e-16,
+ 9.340937067255064e-17,
+ -3.556876633978019e-17,
+ 5.39321759384574e-16,
+ -1.3830459841886623e-16,
+ -1.3913177903141925e-16,
+ -1.3565762045869654e-16,
+ 4.643791958872697e-16,
+ 1.0769891575440419e-16,
+ 2.553920141257473e-16,
+ -1.3069453678337837e-16,
+ 1.0620999065180874e-16,
+ -1.7142284219395805e-16,
+ -2.569222982589704e-16,
+ -3.0051471654051495e-16,
+ 3.1267427154504446e-17,
+ 1.0257039595657542e-16,
+ -2.236696376343387e-16,
+ -4.963083675318165e-18,
+ -5.1450634100798315e-17,
+ -2.594038400966295e-16,
+ -3.325266062463171e-17,
+ -7.889648682530777e-16,
+ -3.73472046567692e-17,
+ -7.357771548659181e-17,
+ -2.289222345240504e-16,
+ -4.2765237668991525e-17,
+ 4.4585035016608186e-17,
+ -3.1903322250404586e-17,
+ -9.338869115723681e-17,
+ -4.756288522179908e-18,
+ 2.0948349012905423e-16,
+ 3.507245797224837e-16,
+ -1.0668561950402673e-16,
+ -2.2003004293910533e-17,
+ 2.508838797873333e-16,
+ 9.760731228125725e-18,
+ 5.1450634100798315e-17,
+ 9.413315370853454e-17,
+ 4.681842267050136e-17,
+ -7.064122431202856e-17,
+ -1.4086885831778061e-16,
+ -2.3450570365878335e-16,
+ -1.6489845511244604e-16,
+ 8.875647972693986e-17,
+ 1.7552772598375245e-16,
+ 2.5642598989143855e-17,
+ 1.4268865566539727e-16,
+ 3.6282209618107176e-17,
+ -2.3831073447652727e-16,
+ -1.5120861597469343e-16,
+ -9.628382330117241e-17,
+ 1.6874484496081765e-17,
+ -4.283141211799577e-16,
+ 1.6080391108030856e-16,
+ -4.109433283163441e-16,
+ 6.461107764651698e-16,
+ -7.4859845436049e-17,
+ -4.301339185275743e-17,
+ -4.9630836753181654e-17,
+ -1.2622776147559202e-16,
+ -8.25939841634198e-17,
+ -1.5005056311711922e-16,
+ -4.3410438546782887e-16,
+ 7.950860047859701e-16
+ ],
+ [
+ -4.817602333172189,
+ -3.7495721426558006,
+ 3.3453248987731277,
+ -4.519315881663059,
+ 4.229899964261174,
+ -2.446062955819026,
+ -0.06698230744265524,
+ 2.561766614781783,
+ -2.8135989620303365,
+ -4.90652842658977,
+ 4.6419354376465005,
+ 2.7034711769936,
+ -2.277891183369652,
+ -0.2671465585478748,
+ 2.8226505817855427,
+ -2.7822794706395264,
+ -4.512167023765349,
+ 3.838783172927235,
+ 2.4889029110729357,
+ -1.992744877699272,
+ -0.5877519478809635,
+ 2.9746793054620917,
+ -4.440997398694739,
+ 4.357990208918687,
+ -2.8631331442290695,
+ 0.41042216636698453,
+ 1.5737157532871655,
+ 4.389809052812108,
+ 2.599272231783536,
+ -2.281177773690506,
+ -0.38377180599410227,
+ 2.8179539337328743,
+ -2.789765761721269,
+ -4.900116931889081,
+ 4.176508507376473,
+ 2.4937654449851543,
+ -1.9962886779595854,
+ -0.5829167721854577,
+ 2.9700733247290616,
+ -4.438212060530222,
+ 4.357879551651425,
+ -2.8657858408076615,
+ 2.526328676545864,
+ 2.700156902103458,
+ 4.246740154729354,
+ 4.334600875115552,
+ 6.648460670708087,
+ 6.595497058136785,
+ -4.414164214616774,
+ 4.3847761651178665,
+ -2.9370007790172226,
+ 0.38903620596104926,
+ 2.1665576924728063,
+ -4.023794440026901,
+ 3.003907255391196,
+ 5.6618848498172225,
+ -2.2887405856207446,
+ -1.6241634580027022,
+ 0.19316019882617053,
+ 2.341107413066906,
+ -4.168785017599435,
+ 2.970770799801741,
+ 5.246489513095468,
+ -1.759640885713115,
+ -1.4515286319784428,
+ -0.12881531752867434,
+ 2.611985994820202,
+ -4.246753918804446,
+ 4.478219752656078,
+ -3.206975360261227,
+ 0.8952489833049804,
+ 0.9939356193558532,
+ 0.9053488905817102,
+ -5.227179216886558,
+ -2.8769713817463605,
+ 4.431498708791508,
+ -2.9690712541229423,
+ 0.5774567505279252,
+ 1.1889947414162532,
+ 1.418034067637569,
+ -5.998851726952727,
+ -3.0964454693767913,
+ 4.336689808287993,
+ -2.8134846456869855,
+ 0.3822331238111916,
+ 2.305073651498161,
+ -4.095816455746472,
+ 4.5623910785866135,
+ -6.305072636745888,
+ -7.813574904168125,
+ -7.782272692647551,
+ -6.276856603429378,
+ 4.555551999152059,
+ -4.122206092467913,
+ 2.3560864128057597,
+ 0.32317200274537494,
+ -2.7664251693387785,
+ 4.316927043383188,
+ -3.103456483412327,
+ -6.00076028244543,
+ 1.4931694748079445,
+ 1.2265010501473887,
+ 0.5186430907588618,
+ -2.923631180972257,
+ 4.4157040761910515,
+ -2.8870933949887787,
+ -5.233927572524073,
+ 0.9720931696064691,
+ 1.0302011427843276,
+ 0.8370827781728046,
+ -3.1643227253749098,
+ 4.464876314696469,
+ -4.268867807371446,
+ 2.660472289193612,
+ -0.18800744998812433,
+ -1.4177138211720062,
+ -1.6955693781575163,
+ 5.250279496431466,
+ 2.9665233268936246,
+ -4.193237461494458,
+ 2.3918526173722454,
+ 0.133972976106393,
+ -1.5913900396702354,
+ -2.221006750321845,
+ 5.671107544195996,
+ 3.002605737474699,
+ -4.051973290643299,
+ 2.2185853507935596,
+ 0.32999851206488023,
+ -2.8912250284595444,
+ 4.366912832414115,
+ -4.430041142186817,
+ 6.658216116068956,
+ 6.70830171272535,
+ 4.318110918814804,
+ 4.22667189029246,
+ 2.5990014233394936,
+ 2.4231829182434503,
+ -2.818936981128665,
+ 4.34018698403321,
+ -4.455366855673084,
+ 3.017794429490631,
+ -0.643848333717781,
+ -1.9418413332624997,
+ 2.4722686733473718,
+ 4.125983056479231,
+ -4.9410050674492565,
+ -2.80564782158627,
+ 2.8672666010877523,
+ -0.4449121523515714,
+ -2.2288309734090013,
+ 2.5805504294550676,
+ 4.040578339556798,
+ -4.348752605749051,
+ -2.7148250494741504,
+ 2.608688663490293,
+ -0.12344378963548587,
+ -2.398240768907893,
+ 4.207887348813497,
+ -4.529297211689195,
+ 3.384066296753762,
+ -0.8632378926791672,
+ -2.330923127636941,
+ -3.889578509209077,
+ -1.8470654465535015,
+ 4.282897963618848,
+ -4.465528714150127,
+ 3.1582269657351305,
+ -0.7634898900670141,
+ -2.3038068697909124,
+ -4.730861552474083,
+ -2.165782834326445,
+ 4.388310709119544,
+ -4.414479498445379,
+ 3.0126150334781037,
+ -0.48631593380312865,
+ -2.0809013241229852,
+ 3.977663449799165,
+ -6.355534919318491,
+ -7.708160525139128,
+ 1.3835422925561939e-15,
+ 2.772295822971472e-15,
+ 4.324500242427228e-16,
+ 3.243375181820421e-16,
+ 5.856438736875436e-17,
+ 1.555099551599692e-17,
+ -6.9343584726086e-17,
+ -3.459269321696761e-16,
+ -2.7991791928794457e-16,
+ -2.2476565194597144e-16,
+ 1.3400325923359047e-17,
+ 5.329524686679157e-16,
+ -5.193039885607908e-16,
+ -2.738484815433367e-17,
+ -3.250819807333399e-17,
+ -4.918415922240303e-16,
+ -1.0323214044661784e-16,
+ 2.0911125885340537e-16,
+ -1.9356026333740845e-16,
+ 6.489748893361347e-16,
+ -5.922613185879678e-17,
+ -9.892046150368518e-17,
+ -2.607273290767143e-16,
+ 2.5394444805377947e-17,
+ 2.1279221257926634e-16,
+ -2.9770230245783466e-16,
+ 4.433688083284228e-17,
+ 6.658803931051872e-18,
+ 4.473392752686774e-16,
+ 3.664410113609912e-16,
+ -4.892359732944882e-16,
+ 5.575197328607407e-17,
+ 9.863301624082302e-16,
+ 3.0076287072428086e-16,
+ -2.7379678275505216e-16,
+ -4.0347802328805302e-16,
+ -2.6974359775354232e-16,
+ 1.4988512699460861e-16,
+ -5.426304818347861e-17,
+ 8.978218368650562e-16,
+ -6.140988867593676e-16,
+ 2.4889864631720603e-16,
+ 2.9778502051908996e-17,
+ -3.0605682664462024e-17,
+ 1.7370792863613579e-16,
+ 5.434576624473391e-17,
+ -2.509665978485886e-16,
+ 6.4751698350651e-16,
+ 7.088937849579447e-17,
+ 5.777856578682898e-17,
+ -2.1986460681659473e-16,
+ 1.3036366453835716e-16,
+ 1.401243957664829e-16,
+ 4.9519167370487e-16,
+ 1.2118195973901854e-17,
+ -8.751570880811032e-17,
+ 4.2417821811719254e-16,
+ -1.4260593760414197e-16,
+ 1.5224259174038472e-16,
+ 5.346895479542771e-16,
+ 1.346650037236329e-16,
+ -1.9016882282594104e-16,
+ 1.1067676595959509e-16,
+ -1.348304398461435e-17,
+ -6.88214269644119e-17,
+ -4.414662929195508e-16,
+ 2.1035202977223491e-16,
+ -1.5418646617988433e-16,
+ 1.2391165576044355e-16,
+ 2.33595804984975e-16,
+ -3.030789764394293e-16,
+ 5.0644133003559113e-17,
+ -6.650532124926343e-17,
+ -1.4442573495175863e-16,
+ 8.602678370551487e-17,
+ 1.4194419311409955e-16,
+ 7.576974410985732e-17,
+ 3.209460776705747e-16,
+ 1.6940658945086004e-16,
+ -1.1249656330721176e-16,
+ -3.087038046047899e-16,
+ -7.08728348835434e-16,
+ 1.7321162026860397e-16,
+ 5.790264287871194e-17,
+ -8.817745329815274e-17,
+ -3.523789409475898e-17,
+ -2.5592968152390676e-16,
+ -2.1837568171399928e-17,
+ -2.013357610954069e-16,
+ -3.1350145215759744e-16,
+ 7.365216174172157e-16,
+ 1.1090837653110995e-15,
+ 6.42884772076213e-16,
+ 9.198248411589667e-17,
+ -5.2939559203393765e-17,
+ 3.937379715752411e-16,
+ -2.9497260643640967e-16,
+ 2.957997870489627e-16,
+ -6.147606312494101e-16,
+ -3.8894032402243356e-16,
+ 1.1539169545114736e-16,
+ -5.512331602053376e-16,
+ 2.0894582273089477e-16,
+ -7.17165591083475e-17,
+ 2.8686623643339e-16,
+ 5.055727903924105e-16,
+ -1.865912666766492e-16,
+ -5.194694246833013e-17,
+ 1.3896634290890865e-16,
+ -2.0911125885340537e-16,
+ -1.4260593760414197e-16,
+ 8.569591146049365e-17,
+ -5.5338382979797545e-17,
+ -1.8528845721187817e-16,
+ -1.163015941249557e-16,
+ 1.2473883637299657e-16,
+ 8.974909646200349e-17,
+ -6.154223757394526e-17,
+ 7.398303398674279e-16,
+ -1.710609506759661e-16,
+ -1.7370792863613579e-16,
+ -2.1754850110144625e-16,
+ 6.316351157454918e-16,
+ 1.3516131209116472e-16,
+ 3.427009277807193e-16,
+ -2.5609511764641737e-16,
+ 1.401243957664829e-16,
+ -2.275832359074802e-16,
+ -3.9208361035013507e-16,
+ -4.141693327053009e-16,
+ 3.110199103199384e-17,
+ 1.2490427249550718e-16,
+ -3.656138307484382e-16,
+ 9.057627707455653e-18,
+ -1.2300175708663522e-16,
+ -3.4377626257703825e-16,
+ -4.0945440321374864e-17,
+ -1.0559787699851951e-15,
+ -6.05289413235678e-17,
+ -8.917007003321637e-17,
+ -2.928426163590856e-16,
+ -4.493658677694322e-17,
+ 5.97224402263286e-17,
+ -1.036767500258651e-16,
+ -1.4483932525803515e-16,
+ -2.4815418376590826e-18,
+ 3.1255019445316146e-16,
+ 4.920070283465409e-16,
+ -1.6303729873420173e-16,
+ -4.863822001811802e-17,
+ 3.4063297624933675e-16,
+ 4.417144471033167e-17,
+ 7.304004808843234e-17,
+ 1.0852609636695722e-16,
+ 3.5734202462290796e-17,
+ -8.40415502353876e-17,
+ -2.0464448354561902e-16,
+ -3.12012527055002e-16,
+ -2.479887476433977e-16,
+ 1.3065317775275072e-16,
+ 2.5245552295118405e-16,
+ 2.7462396336760516e-17,
+ 1.8950707833589862e-16,
+ 3.221868485894043e-17,
+ -3.424527735969534e-16,
+ -2.0613340864821447e-16,
+ -1.5046415342339573e-16,
+ 3.987010552505593e-17,
+ -6.051653361437949e-16,
+ 2.2069178742914776e-16,
+ -5.786955565420982e-16,
+ 9.085751848282456e-16,
+ -1.1158666463340343e-16,
+ -5.69100261436483e-17,
+ -7.014491594449675e-17,
+ -1.7205356741102973e-16,
+ -1.315217173959314e-16,
+ -2.0249381395298115e-16,
+ -7.438008068076824e-16,
+ 9.62507360766703e-16
+ ],
+ [
+ 1.5887365783372902,
+ 1.1625027826042678,
+ -1.409173634473548,
+ 2.540154771230351,
+ -2.9225059430854725,
+ 2.2255673492945047,
+ -0.893220079229834,
+ -0.8049522712524542,
+ 1.4132380644099292,
+ 2.2662695322273794,
+ -3.552774157736442,
+ -1.9489649411242156,
+ 2.1453426985524127,
+ -0.7703754221263679,
+ -0.9987312040463513,
+ 1.4587257050102374,
+ 2.1799220826093935,
+ -3.0265201909128305,
+ -1.8275990167390532,
+ 2.00253668933687,
+ -0.5721986056885968,
+ -1.1158870348847592,
+ 2.4223896753873095,
+ -2.931976941019763,
+ 2.4178283871022908,
+ -0.8358911969637987,
+ -1.9457750932741606,
+ -2.067532485436845,
+ -0.9127169882115131,
+ 2.48898995748756,
+ -0.6986425813839996,
+ -0.9961619497889795,
+ 1.458636208580743,
+ 2.368496138408679,
+ -3.2920744980188177,
+ -1.8363895142852833,
+ 2.005312280596273,
+ -0.5753058094111072,
+ -1.1134050898181804,
+ 2.4214082523318154,
+ -2.932781029848159,
+ 2.4201922612237974,
+ -3.0792499788916956,
+ -3.1536092310516683,
+ -2.859359712861465,
+ -2.857601587997258,
+ -3.0745204353201516,
+ -2.9977774153825023,
+ 2.389203480229745,
+ -2.932235381762937,
+ 2.451448653320504,
+ -1.1650073602882685,
+ -0.520341962351271,
+ 1.964749555882178,
+ -1.8261911998728901,
+ -3.262336205054702,
+ 2.420754994273629,
+ 1.4819447283948286,
+ -1.0486309222876111,
+ -0.6441747088454184,
+ 2.110234027555913,
+ -1.8516825809306565,
+ -3.09615658465956,
+ 2.0462895279527444,
+ 1.3942460768149185,
+ -0.8559420994170697,
+ -0.8429147041859364,
+ 2.192176197233198,
+ -2.918580343305509,
+ 2.565626994659613,
+ -1.4558037825485173,
+ -0.038218547004406224,
+ 0.48522853243603825,
+ 3.0389128205198643,
+ 1.5737000192603285,
+ -2.927476189555191,
+ 2.466352562764996,
+ -1.273743855630075,
+ -0.13633427891516445,
+ 0.3064880217666524,
+ 3.577450668069164,
+ 1.7536136820788872,
+ -2.9324981090434807,
+ 2.396806741148202,
+ -1.161027608176602,
+ -0.6191772070509276,
+ 2.0353593235561034,
+ -2.868905900711807,
+ 4.22578868082129,
+ 5.180271241703128,
+ 4.196657736146685,
+ 3.3390377399382065,
+ -2.653751922068079,
+ 2.8650645109847592,
+ -2.223891280045958,
+ 0.6963468594125529,
+ 0.9174894335871893,
+ -2.3109997883542333,
+ 1.9740407310342933,
+ 3.6372372949644642,
+ -2.0568762544202577,
+ -1.3159844829871779,
+ 0.5759474380624642,
+ 1.0377844589365528,
+ -2.4306224178326192,
+ 1.891918584964649,
+ 3.2507764535604196,
+ -1.61407230419847,
+ -1.1788020818412723,
+ 0.37369633662520846,
+ 1.2244660530076485,
+ -2.4989691133682883,
+ 2.887264196710789,
+ -2.367764991096761,
+ 1.0058830416720028,
+ 0.3308574190047118,
+ 0.031111119658489617,
+ -3.2150061780850705,
+ -1.7180878437561116,
+ 2.8786472949721875,
+ -2.240341336137408,
+ 0.8131758384839206,
+ 0.45138303183317113,
+ 0.290693299716041,
+ -3.5516156521830933,
+ -1.7852015982975176,
+ 2.850245080124545,
+ -2.156839394426776,
+ 0.6921372104656366,
+ 1.0121822060957266,
+ -2.3702973057727577,
+ 2.8877004757093006,
+ -4.9705417966935395,
+ -4.955761657961265,
+ -2.3375268965469957,
+ -2.226091384371723,
+ -0.03252916767729823,
+ 0.10216625275181626,
+ 0.9565140011172456,
+ -2.33586058054755,
+ 2.883366330336855,
+ -2.5258196954847256,
+ 1.271630198446991,
+ 0.321473205948433,
+ -1.1485550422790356,
+ -1.6984310961558116,
+ 3.5462019578612405,
+ 1.904348486499888,
+ -2.4593579096861578,
+ 1.157484903743828,
+ 0.524280166787342,
+ -1.254310928299968,
+ -1.7636790884206464,
+ 3.2068892169908008,
+ 1.8831183432044118,
+ -2.342748452146955,
+ 0.9669448329902272,
+ 0.6451458132673004,
+ -2.1887931461170624,
+ 2.857019602911977,
+ -2.675380387407535,
+ 1.088805621086076,
+ 2.341248165239086,
+ 1.6382431181025752,
+ 0.6450736269313176,
+ -2.2691555087912376,
+ 2.8823118563539167,
+ -2.5841839801865865,
+ 1.0673334409207493,
+ 2.490178121416612,
+ 2.1134245708538337,
+ 0.8496278490125813,
+ -2.3940676901196585,
+ 2.889211625861581,
+ -2.5235934851926998,
+ 1.1806612234999443,
+ 0.41869063447861593,
+ -1.9593107120361124,
+ 3.4297594724031377,
+ 4.103609085607584,
+ 1.7834014006643274e-16,
+ 5.09543257332665e-17,
+ -6.43132926259979e-17,
+ 2.1093105620102203e-17,
+ -9.678013166870423e-17,
+ -1.565025718950328e-16,
+ -2.1175823681357505e-17,
+ 1.39400612730499e-16,
+ -1.5981129434524492e-16,
+ 1.0381116687540496e-16,
+ 1.0439019330419208e-16,
+ -2.476578753983765e-16,
+ 2.40006454732261e-16,
+ -6.088049308390284e-17,
+ -2.5559880927888552e-17,
+ 7.428081900726189e-17,
+ 2.216844041642114e-17,
+ -6.683619349428464e-17,
+ 1.0542416906988336e-16,
+ -2.430773627563641e-16,
+ 1.4095157637903592e-16,
+ 1.1026317565331858e-16,
+ 1.6326477340265381e-16,
+ 4.359241828154455e-17,
+ -1.148281786588456e-16,
+ -8.923210857915785e-17,
+ -3.415221954078313e-17,
+ 7.858215819253763e-18,
+ 3.639594695233322e-18,
+ 1.5819829215076652e-18,
+ 3.3839958859544357e-16,
+ 5.872982349126496e-18,
+ -2.6784108234467036e-16,
+ -1.346650037236329e-16,
+ 1.0873289152009548e-16,
+ -2.99439381744196e-17,
+ 5.699274420490361e-17,
+ -8.41242682966429e-17,
+ -7.70958180293564e-17,
+ -2.7580269574049325e-16,
+ 2.954689148039415e-16,
+ -1.4806532964699195e-17,
+ 4.946540063067105e-17,
+ 5.649643583737179e-17,
+ 6.782881022934826e-18,
+ -2.936491174563248e-17,
+ 1.3230753897785678e-16,
+ -3.8281918748954116e-16,
+ -1.6444350577554188e-16,
+ 5.69100261436483e-17,
+ 2.4922951856222724e-16,
+ -2.754511439801582e-17,
+ -3.6313228891077915e-17,
+ -2.989430733766642e-16,
+ -2.2036091518412655e-16,
+ -9.564275832644381e-18,
+ -2.8239946112560365e-16,
+ 2.1953373457157352e-16,
+ -1.5799149699762826e-16,
+ -2.2058838985257863e-16,
+ -6.154223757394526e-17,
+ 7.956443516994434e-17,
+ -7.746546436559103e-17,
+ 4.566036981292712e-17,
+ -2.3161057151484772e-17,
+ 1.2970192004831474e-16,
+ -1.9906618428971454e-16,
+ 8.519960309296184e-17,
+ -2.9116757561866574e-17,
+ 2.0472720160687432e-17,
+ 1.7482462246308237e-16,
+ 9.562207881112999e-17,
+ 2.311969812085712e-17,
+ 4.4254162771586974e-17,
+ -5.244325083586195e-17,
+ -1.5517908291494797e-16,
+ -5.525566491854224e-17,
+ -1.2755125045567687e-16,
+ 4.830734777309681e-17,
+ -6.452008777913615e-18,
+ 1.8379953210928272e-16,
+ 4.532949756790592e-16,
+ -1.1828682759508296e-16,
+ 8.569591146049365e-17,
+ 1.9759276882360446e-17,
+ -1.0381116687540496e-17,
+ 9.363684534100272e-17,
+ 1.1580528575742387e-18,
+ -1.8661194619196302e-16,
+ -1.8992066864217513e-16,
+ -4.2748694056740465e-16,
+ -6.081431863489858e-16,
+ -3.36331637064061e-16,
+ -1.0389388493666026e-16,
+ -5.24018918052343e-17,
+ -1.5886003664080894e-16,
+ 1.7296346608483806e-16,
+ -1.4707271291192832e-16,
+ 3.6759906421856545e-16,
+ 7.907846656006943e-17,
+ -2.609754832604802e-17,
+ 3.9473058831030476e-16,
+ -2.9778502051908996e-17,
+ 1.1522625932863676e-16,
+ -2.6759292816090442e-17,
+ -1.592322679164578e-16,
+ 2.3657365519016588e-17,
+ 7.955926529111588e-17,
+ 1.3822188035761092e-16,
+ 5.790264287871194e-17,
+ 1.020740875890436e-16,
+ -2.762783245927112e-17,
+ -3.29217883796105e-17,
+ 1.080297879994254e-16,
+ -1.0596183646804283e-16,
+ -1.133237439197648e-16,
+ -7.045510867420413e-17,
+ 4.320984724823878e-17,
+ -2.9488988837515437e-17,
+ 1.2300175708663522e-16,
+ 1.0265311401783072e-16,
+ 9.239607442217318e-17,
+ -2.067951531382569e-16,
+ -1.9025154088719633e-17,
+ -2.6614536208893665e-16,
+ 4.566036981292712e-17,
+ -1.5691616220130933e-16,
+ 1.2746853239442156e-16,
+ 4.446095792472523e-17,
+ 9.504305238234287e-17,
+ -8.602678370551487e-17,
+ -1.0910512279574434e-16,
+ 3.5006283523244126e-16,
+ -4.0531850015098356e-18,
+ -7.113753267956038e-17,
+ -1.579914969976283e-17,
+ 8.002972426450542e-17,
+ 7.270917584341112e-16,
+ 1.8528845721187817e-16,
+ 5.434576624473391e-17,
+ 2.5351017823218916e-16,
+ 2.4815418376590827e-17,
+ -7.837536303939936e-17,
+ -1.3201802576346322e-16,
+ 3.927453548401775e-16,
+ -9.057627707455653e-18,
+ -9.89308012613421e-17,
+ 2.3822801641527194e-17,
+ 5.98878763488392e-17,
+ -3.970466940254533e-18,
+ -2.1481880508002126e-16,
+ 4.2517083485225616e-17,
+ -2.0307284038176826e-17,
+ -8.883919778819516e-17,
+ -2.898440866385809e-16,
+ 6.915229920943311e-17,
+ -2.7214242152994607e-17,
+ -1.7809198588266683e-16,
+ 2.225115847767644e-17,
+ -1.1158666463340343e-16,
+ -9.330597309598151e-17,
+ -8.933550615572699e-18,
+ -1.018259334052777e-16,
+ -1.699856158796472e-17,
+ 2.60644611015459e-16,
+ 1.13654616164786e-16,
+ 5.1119761855777104e-17,
+ -1.4392942658422682e-16,
+ 2.232146882974345e-16,
+ -1.552824804915171e-16,
+ 3.1317057991257623e-16,
+ -2.8289576949313546e-16,
+ 1.9959868180904555e-16,
+ 2.010048888503857e-17,
+ 2.1093105620102203e-17,
+ 2.7379678275505213e-17,
+ -4.268251960773622e-17,
+ 3.532061215601428e-17,
+ -1.2382893769918824e-16,
+ -3.5734202462290796e-17
+ ],
+ [
+ 1.3538488749830817,
+ 1.23771355649042,
+ -0.25029234154887475,
+ -1.4103411907643535,
+ 2.5378708888704726,
+ -2.910454259128087,
+ 2.223307382205538,
+ -0.8897482677994911,
+ -0.41587051421233345,
+ -0.2324714510395204,
+ 3.7216906441118582,
+ 1.8688143318140376,
+ -2.8930460476936575,
+ 2.141394470709513,
+ -0.6921223131144035,
+ -0.5634101442177043,
+ -0.45191721135532253,
+ 3.2976385490927647,
+ 1.8033097352918377,
+ -2.8550623221836022,
+ 1.9985740108685361,
+ -0.5713618426924318,
+ -1.2036937662993248,
+ 2.4202813697352576,
+ -2.929276996239843,
+ 1.6260908381145216,
+ 3.1045066658949447,
+ 0.3071737004339421,
+ -0.13961861372217466,
+ -1.3154241304864178,
+ 2.5262203677272885,
+ -0.6933902508268881,
+ -0.5549403127286954,
+ -0.49360380385980734,
+ 3.586054629038235,
+ 1.819849270056464,
+ -2.858113691259213,
+ 2.001049956032958,
+ -0.5725081271041532,
+ -1.2043340688276203,
+ 2.4224616057661494,
+ -2.93227886044217,
+ 4.873516428254272,
+ 4.8669609607457085,
+ 2.4330682829317536,
+ 2.331977926406001,
+ 0.32399301546244647,
+ 0.19153525703641258,
+ -1.1507428093657035,
+ 2.3915032636775044,
+ -2.9315946739334438,
+ 2.397114743088218,
+ -1.1623609544796765,
+ -0.5253223257713837,
+ 1.2329068857285037,
+ 1.8769946856276587,
+ -3.4982045353420737,
+ -1.8960327928302225,
+ 2.3265627851671593,
+ -1.0435633821689876,
+ -0.7242671530126896,
+ 1.3327609659930009,
+ 1.9211763861171365,
+ -3.14981603081394,
+ -1.8680792436743416,
+ 2.198889736026546,
+ -0.8508216969905009,
+ -0.8452512843089375,
+ 2.2547942969603354,
+ -2.918346125074709,
+ 2.5627487991617524,
+ -0.9991851212834684,
+ -2.202919565976036,
+ -1.800186372718932,
+ -0.7449859222011784,
+ 2.331475361007506,
+ -2.9303103449427943,
+ 2.463101805632103,
+ -0.9700024253946373,
+ -2.3229697369972797,
+ -2.289479984048346,
+ -0.9506413031011633,
+ 2.4452015992793963,
+ -2.9317931896381526,
+ 2.3946911729135945,
+ -1.0690455655962796,
+ -0.6217085105526563,
+ 2.0386782756950113,
+ -3.5640216774884883,
+ -4.276157130608056,
+ -1.8655226605412618,
+ -1.3907610633659202,
+ 1.5113475145896258,
+ -2.6552050524839443,
+ 2.8639786048057103,
+ -2.1575080784902947,
+ 0.6937689214616287,
+ 0.9219725977250438,
+ -1.490879549022175,
+ -2.43598254131453,
+ 3.4693685220566177,
+ 1.9212116096989553,
+ -2.0702780979894677,
+ 0.5708947193617757,
+ 1.1137187552760273,
+ -1.5248962494716805,
+ -2.3193993494760003,
+ 2.9422310091776183,
+ 1.7962754892943091,
+ -1.9211660094209877,
+ 0.36866774654081164,
+ 1.22637030285223,
+ -2.548798347289611,
+ 2.886416763669215,
+ -2.364255314883684,
+ 0.7381711550326665,
+ 1.7891589442532456,
+ 2.2124235463215234,
+ 1.0053308106959995,
+ -2.607498778147454,
+ 2.868494585726016,
+ -2.236555287036557,
+ 0.6297535184693139,
+ 1.7222935035459186,
+ 2.5858965863364882,
+ 1.1324380348155534,
+ -2.6954952312771843,
+ 2.8485412157596857,
+ -2.1545838680110285,
+ 0.5958491429722811,
+ 1.014228817243914,
+ -2.372796481444174,
+ 5.028213634339914,
+ 4.936350985914677,
+ 1.0826634335870675,
+ 0.9128412265369333,
+ -2.780063673640343,
+ -2.9254146921266613,
+ 0.6553422482147715,
+ 0.9580629104057833,
+ -2.333783720441191,
+ 2.886057429648573,
+ -2.5231618669433242,
+ 1.2677671904015233,
+ 0.13361853672437154,
+ -0.31991982040466277,
+ -3.3761591772914636,
+ -1.6454376104461175,
+ 2.8896845402194686,
+ -2.45530315289731,
+ 1.0826453158367433,
+ 0.27732208165463285,
+ -0.06369974516445975,
+ -3.1846863502454155,
+ -1.6926538727962495,
+ 2.881342753299286,
+ -2.338635020604107,
+ 0.9655628523675611,
+ 0.7382024305049317,
+ -2.187035094458234,
+ 2.8546664712907095,
+ -1.7563698903847604,
+ -3.2541005183961884,
+ 0.20924075230145964,
+ 0.4297108034737535,
+ 0.8585289681789707,
+ -2.3169708106475047,
+ 2.8796749564201742,
+ -1.8127937896273993,
+ -3.6541622405132355,
+ -0.04591432885127641,
+ 0.2720565784658076,
+ 1.049887667660659,
+ -2.393417889374254,
+ 2.886232127725881,
+ -2.4703454979366306,
+ 1.179062047807643,
+ 0.4211927205763916,
+ -1.529650444418233,
+ -1.7157615153553811,
+ -6.006985608360087e-16,
+ -3.4410713482205946e-16,
+ -3.7553999809907456e-17,
+ -5.509022879603164e-17,
+ 2.754511439801582e-17,
+ 1.6684232955194566e-16,
+ 1.3549218433618593e-16,
+ -1.079470699381701e-16,
+ 2.2333876538931747e-16,
+ -1.6063847495779795e-16,
+ -1.1435771968545608e-16,
+ -5.575197328607407e-17,
+ -3.279771128772754e-16,
+ -1.0993230340829737e-16,
+ -7.072394237328387e-18,
+ 3.835016114948974e-17,
+ -3.0026656235674905e-17,
+ 7.031035206700735e-17,
+ 1.3598849270371775e-16,
+ 3.1011001164613003e-16,
+ -9.520848850485347e-17,
+ -4.217587148254749e-17,
+ -1.0819522412193601e-16,
+ -6.348094213461642e-17,
+ 2.613890735667567e-17,
+ 3.5932725809303517e-16,
+ -9.429858983104514e-18,
+ 1.0174321534402239e-17,
+ -9.681115094167496e-17,
+ -1.0137098406837353e-16,
+ -2.987776372541536e-16,
+ 5.4759356551010426e-17,
+ -3.0605682664462024e-17,
+ -8.226311191839859e-17,
+ -2.6453235989445825e-16,
+ 2.569222982589704e-16,
+ -1.3110812708965489e-16,
+ 2.3161057151484775e-18,
+ 2.3860024769092083e-16,
+ 5.715818032741421e-17,
+ -2.3324425322464e-16,
+ -1.9389113558242966e-16,
+ -2.2921174773844397e-16,
+ -9.735915809749135e-17,
+ -1.79498192924007e-17,
+ 2.0009499017657737e-16,
+ -4.848312365326433e-17,
+ 4.415490109808061e-16,
+ 2.332649327399538e-16,
+ -3.416255929844004e-17,
+ -2.1771393722395686e-16,
+ -7.419810094600658e-17,
+ -3.407984123718474e-17,
+ 2.683373907122022e-16,
+ 1.74038800881157e-16,
+ 1.5096046179092755e-17,
+ 2.187892720202758e-16,
+ -1.3234889800848443e-16,
+ 1.6295458067294643e-16,
+ 3.6790925694827283e-16,
+ 9.628382330117241e-17,
+ 2.4153673886548405e-17,
+ 7.16338410470922e-17,
+ -1.8363409598677214e-17,
+ -7.77549775799846e-18,
+ -1.6014216659026613e-16,
+ 3.545296105402276e-16,
+ -6.989676176073084e-17,
+ 9.247879248342848e-17,
+ -4.648755042548015e-17,
+ 9.89308012613421e-17,
+ 2.99439381744196e-17,
+ -2.5725317050399158e-17,
+ -9.696624730652866e-17,
+ 3.1697561073032016e-16,
+ 1.0029564927205459e-16,
+ 5.037529930447938e-17,
+ 6.964860757696493e-17,
+ -8.70194004405785e-17,
+ 9.529120656610878e-17,
+ -8.073282778517549e-17,
+ -2.663521572420749e-16,
+ 9.280966472844969e-17,
+ -1.3977284400614785e-16,
+ -2.0927669497591597e-17,
+ 2.2333876538931744e-17,
+ 2.067951531382569e-17,
+ 7.47771273747937e-17,
+ 6.299807545203858e-16,
+ 4.132594340314926e-16,
+ 1.2796484076195338e-16,
+ 4.868785085487121e-16,
+ 1.3239025703911208e-16,
+ 1.2970192004831474e-16,
+ 1.0587911840678753e-16,
+ 7.312276614968765e-17,
+ -2.2606846141074246e-16,
+ 1.5757790669135175e-16,
+ -2.4683069478582346e-16,
+ 1.7784383169890095e-17,
+ -6.948317145445432e-17,
+ -3.3782056216665645e-16,
+ -1.1067676595959509e-16,
+ -3.1515581338270354e-17,
+ 9.61183871786618e-17,
+ 7.80858498250058e-17,
+ -1.1565018939257017e-17,
+ -1.191346877229498e-16,
+ -5.2112378590840736e-18,
+ -5.575197328607407e-17,
+ -1.0304602480879341e-16,
+ 4.350970022028925e-17,
+ 1.654361225106055e-19,
+ -1.1836954565633826e-16,
+ 7.097209655704977e-17,
+ 1.6642873924566914e-16,
+ 1.6444350577554188e-16,
+ 1.6543612251060552e-18,
+ -1.7743024139262444e-17,
+ -1.6146565557035098e-16,
+ -1.0265311401783072e-16,
+ 7.557328871437598e-17,
+ 7.783769564123989e-17,
+ 3.763671787116276e-17,
+ 2.269783600845508e-16,
+ 2.7991791928794457e-16,
+ 1.6758679210324338e-16,
+ -1.3962808739895107e-16,
+ 7.339159984876738e-17,
+ -4.126597280873916e-17,
+ 1.2151283198403977e-16,
+ 1.5180832191879438e-16,
+ -1.738733647586464e-16,
+ -1.5592354546624572e-17,
+ 1.9451152104184443e-16,
+ -7.345363839470886e-17,
+ -8.288349737781336e-17,
+ -8.141111588746897e-16,
+ -1.4177875699158894e-16,
+ -4.7811039405564993e-17,
+ -3.12839707667555e-16,
+ -2.4484546131569616e-17,
+ 9.60356691174065e-17,
+ 3.272326503259777e-16,
+ -2.933182452113036e-16,
+ -6.379630474315226e-17,
+ 1.431022459716738e-17,
+ -5.070617154950059e-17,
+ -8.437242248040882e-18,
+ 9.148617574836485e-17,
+ 2.3764898998648485e-16,
+ -1.7267395287044453e-17,
+ 2.8537731133079455e-17,
+ 1.4293680984916318e-16,
+ 2.0290740425925766e-16,
+ -1.3921449709267456e-16,
+ 6.352747104407253e-17,
+ 1.5096046179092753e-16,
+ -2.938559126094631e-17,
+ 7.424979973429115e-17,
+ 4.441959889409758e-17,
+ 1.3516131209116472e-16,
+ 1.2705494208814505e-16,
+ 5.649643583737179e-17,
+ -1.4570786490121582e-16,
+ -1.3301064249852685e-16,
+ -3.7967590116183964e-17,
+ 7.535615380358081e-17,
+ -2.275573865133379e-16,
+ 2.2220139204705706e-16,
+ -1.4459117107426924e-16,
+ 2.5841122336156585e-16,
+ -1.490682861397125e-16,
+ 4.8472783895607416e-17,
+ -5.1119761855777104e-17,
+ -5.91640933128553e-17,
+ 5.012714512071347e-17,
+ -8.230447094902625e-18,
+ 4.3575874669293493e-16,
+ 3.3935084629987955e-16
+ ],
+ [
+ -2.5387962041015935,
+ -2.1384916498038957,
+ 1.1214883118239238,
+ -0.04603780600512825,
+ -1.0948339497854103,
+ 1.8569946859065962,
+ -2.0147022794470097,
+ 1.4679337728779551,
+ -0.41691503049127604,
+ -1.1623158354539578,
+ -1.9935970747815848,
+ -0.8972271191429245,
+ 1.8899079659111422,
+ -1.9967334325838368,
+ 1.3674950593365667,
+ -0.27785462362045976,
+ -0.8585398367634445,
+ -1.8428924138014167,
+ -0.8991747009902159,
+ 1.9344313375063318,
+ -1.9613623567258052,
+ 1.3017800381411013,
+ -0.20670211140182865,
+ -0.955302650415151,
+ 1.75737657733369,
+ -1.321981710234905,
+ -2.3036556733358444,
+ 0.9522673160128073,
+ 0.7331828054265275,
+ -0.11943154955785337,
+ -1.0786440083254456,
+ 1.8234710964139083,
+ -0.28741854674778905,
+ -0.9298300513023833,
+ -2.0035085380972495,
+ -0.912413758170913,
+ 1.9361280178858133,
+ -1.9621674321351614,
+ 1.3014726373757777,
+ -0.20535756390377863,
+ -0.9572426535170769,
+ 1.7592788566255624,
+ -3.600739364403858,
+ -3.546532349351027,
+ -0.9654755756114947,
+ -0.8516906147807274,
+ 1.566927133726259,
+ 1.6691652371023018,
+ -0.24599202703423054,
+ -0.9223915486521568,
+ 1.7388161532382165,
+ -2.041074186248124,
+ 1.5985080944219638,
+ -0.689624948459224,
+ -0.25176456502378053,
+ -0.0798325011288726,
+ 2.452090519335968,
+ 1.2220937174021096,
+ -2.031926634299208,
+ 1.5436309298840878,
+ -0.5528987221820164,
+ -0.3492003395674022,
+ -0.23463831127936025,
+ 2.291817989114527,
+ 1.2455170192190235,
+ -2.0103087008169305,
+ 1.447470875884224,
+ -0.4691787872399101,
+ -0.7755471527459916,
+ 1.6518033591593997,
+ -2.04626864326075,
+ 1.1596421543302422,
+ 2.198233689711575,
+ 0.1331250931545531,
+ -0.1438576196808058,
+ -0.8548873662508555,
+ 1.7300998816259727,
+ -2.0454192723802795,
+ 1.188235976121302,
+ 2.4471801573955494,
+ 0.35022626624848163,
+ -0.023377224473331428,
+ -0.9831790962121549,
+ 1.7733667750671176,
+ -2.0408189958579697,
+ 1.5547322433049462,
+ -0.6246078681679383,
+ -0.5611826886236143,
+ 1.3906803255530453,
+ 1.5992277160484474,
+ -0.5213803298795915,
+ -0.5211276188868865,
+ -0.0972904974085824,
+ 1.1642636458301079,
+ -1.9051692527865243,
+ 1.9637877706424687,
+ -1.416063648915213,
+ 0.3568065376909914,
+ 0.4518727899078502,
+ 0.4791055306610061,
+ -2.6483842706492995,
+ -1.3551841736359396,
+ 1.9426313015081067,
+ -1.3499303663010522,
+ 0.2163723528979223,
+ 0.5422334868382404,
+ 0.5898781530081136,
+ -2.3279962611815312,
+ -1.2995438180393377,
+ 1.8982652496766612,
+ -1.2397978428898624,
+ 0.1291575592450647,
+ 1.0294357200488655,
+ -1.840197941257927,
+ 2.003925656090641,
+ -1.047219187640224,
+ -2.0530335728805764,
+ -0.49085027972301915,
+ -0.06115890228068945,
+ 1.1037868970461413,
+ -1.8978276298208239,
+ 1.982282489649627,
+ -0.999857661152938,
+ -2.1404175570608093,
+ -0.7034564997208322,
+ -0.16338219207553561,
+ 1.2194854176299408,
+ -1.9299056756769977,
+ 1.9630880474264052,
+ -1.3642952730720463,
+ 0.2891962060499222,
+ 0.8288835047854501,
+ -2.584836088420839,
+ -2.4897008048259894,
+ 0.2587712826942834,
+ 0.3862552479678083,
+ 3.1801424982723527,
+ 3.257712709612851,
+ -1.3963818847370455,
+ 0.3313561800185205,
+ 0.7875321292813617,
+ -1.7402516889994435,
+ 2.0171918398637447,
+ -1.6931842827510735,
+ 0.5710771208839324,
+ 1.4326316388801734,
+ 1.6049959440687716,
+ 0.6714169296289273,
+ -1.783989122201556,
+ 2.0141109351399598,
+ -1.6082512162881508,
+ 0.4743261668202712,
+ 1.18251449655025,
+ 1.600942813261527,
+ 0.7384374587239115,
+ -1.8501030359062265,
+ 1.9992425079338731,
+ -1.5534716618506719,
+ 0.488737851866189,
+ 0.6372475335110117,
+ -1.610411199568921,
+ 1.3108293299922336,
+ 2.2247009661864263,
+ -1.2690101384397112,
+ -0.8944266372563744,
+ 0.40476986511336654,
+ 0.7712050629575011,
+ -1.6940373630007801,
+ 1.3884772915086845,
+ 2.5856436257806843,
+ -1.2781335392246738,
+ -0.8440102782124083,
+ 0.26371317842145875,
+ 0.8515460310927732,
+ -1.741827113444944,
+ 2.0144979668150818,
+ -1.653657390300259,
+ 0.7045946480640025,
+ -0.42037751994184575,
+ -0.6330166254183979,
+ 9.349622463686872e-16,
+ 1.3517785570341576e-15,
+ 1.8958979639715392e-16,
+ 1.102838551686324e-16,
+ -1.0397660299791557e-16,
+ -1.7635490659630548e-16,
+ -2.2102265967416897e-16,
+ -8.333844671471753e-17,
+ -2.9898443240729185e-16,
+ 7.71966306665113e-17,
+ 1.4301952791041848e-16,
+ 3.7090778666877756e-16,
+ 1.4500476138054575e-16,
+ 8.89529351224212e-17,
+ -2.1548054957006368e-17,
+ -2.1548054957006368e-16,
+ -5.124383894766006e-17,
+ -9.851721095506558e-17,
+ -7.601789829362323e-17,
+ 2.3802122126213368e-17,
+ 1.2494563152613483e-16,
+ 3.513449651818985e-17,
+ 5.426304818347861e-17,
+ 2.725560118362226e-17,
+ 5.57002744977895e-17,
+ -3.3819796332113377e-16,
+ -3.714040950363094e-17,
+ -1.1828682759508294e-17,
+ 2.301216464122523e-16,
+ 1.549722877618097e-16,
+ 1.8011857838342175e-16,
+ 2.2003004293910533e-17,
+ 1.1803867341131705e-16,
+ 4.9589477722554e-17,
+ 7.787905467186754e-17,
+ -3.5237894094758974e-16,
+ -1.3358966892731395e-17,
+ -8.437242248040882e-18,
+ -1.535247216898419e-16,
+ 2.0514079191315084e-16,
+ 1.3873886824045657e-16,
+ 1.8747014607748679e-16,
+ 3.0465061960328004e-16,
+ 7.145806516692468e-17,
+ -2.7710550520526423e-18,
+ -1.312735632121655e-16,
+ -5.790264287871194e-19,
+ -3.206152054255535e-16,
+ -1.2010662494269962e-16,
+ 7.758954145747398e-17,
+ 1.529456952610548e-16,
+ 6.837681738516465e-17,
+ 4.987899093694756e-17,
+ -1.6725591985822217e-16,
+ -2.0646428089323568e-16,
+ -6.361018910532783e-17,
+ -1.1497810514487085e-16,
+ 6.154223757394526e-17,
+ -5.67445900211377e-17,
+ -8.197359870400503e-17,
+ 3.759535884053511e-17,
+ 3.548604827852489e-17,
+ 2.5311726744122644e-17,
+ -8.519960309296185e-18,
+ -1.167979024924875e-16,
+ -5.910205476691383e-17,
+ -1.8020129644467705e-16,
+ 5.566925522481876e-17,
+ -5.0292581243224076e-17,
+ 6.315523976842366e-17,
+ 3.552740730915254e-17,
+ 1.418201160222166e-16,
+ 6.89041450256672e-17,
+ -1.7427661530726602e-17,
+ -2.0811864211834174e-16,
+ -2.0234905734578437e-16,
+ 7.279189390466644e-18,
+ 4.714929491552257e-18,
+ 7.734138727370808e-17,
+ -9.496033432108756e-17,
+ 5.939156798130739e-17,
+ 2.162250121213614e-16,
+ -6.766337410683766e-17,
+ 1.0800910848411158e-16,
+ -4.645911609192364e-17,
+ -5.564857570950494e-17,
+ -6.815968247436948e-17,
+ -7.246102165964522e-17,
+ -3.4410713482205946e-16,
+ -3.2855613930606254e-16,
+ -2.6387061540441583e-16,
+ 8.172544452023912e-17,
+ 2.096902852821925e-17,
+ -9.777274840376786e-17,
+ -8.743299074685501e-17,
+ -9.161800765849049e-17,
+ 6.948317145445432e-18,
+ -1.3106676805902724e-16,
+ 1.2519378570990074e-16,
+ -6.898686308692251e-17,
+ 7.186131571554428e-17,
+ 2.383934525377826e-16,
+ 9.367820437163037e-17,
+ -5.161607022330892e-17,
+ -1.1042344189700073e-16,
+ -9.397030252543816e-17,
+ -2.2706107814580607e-17,
+ 9.585989323723898e-17,
+ 7.275053487403878e-17,
+ 3.7181768534258594e-17,
+ 5.455256139787217e-17,
+ 7.417742143069276e-17,
+ 5.0540735426989985e-17,
+ 5.3270431448414976e-17,
+ -1.0348029463038375e-16,
+ -6.121136532892405e-17,
+ -1.2324991127040112e-16,
+ -2.605618929542037e-17,
+ 1.709782326147108e-16,
+ 1.1361325713415835e-16,
+ 8.586134758300426e-17,
+ -1.4775513691728457e-17,
+ -8.288349737781336e-17,
+ -3.705769144237564e-17,
+ -1.2262952581098635e-16,
+ -1.0612727259055344e-16,
+ -9.349467367322017e-17,
+ 9.00799687070247e-17,
+ -1.6948930751211535e-16,
+ -2.837229501056885e-17,
+ -1.3259705219225034e-16,
+ -9.910657714150962e-17,
+ 2.9695783990653694e-17,
+ 8.602678370551488e-18,
+ -2.0737417956704401e-16,
+ -7.238864335604683e-17,
+ 3.730584562614155e-17,
+ 3.5883094972550336e-16,
+ 8.271806125530276e-17,
+ 7.097209655704977e-17,
+ 1.139027703485519e-16,
+ 9.318189600409856e-17,
+ -3.941515618815176e-17,
+ -2.656904127520325e-16,
+ 2.0778776987332053e-16,
+ -2.9116757561866574e-17,
+ 5.722021887335569e-17,
+ 1.6940658945086004e-16,
+ -4.714929491552257e-17,
+ -5.161607022330892e-17,
+ -6.840783665813539e-17,
+ 2.1039338880286256e-16,
+ 2.988965444672081e-17,
+ -8.031923747889897e-17,
+ -2.8769341704594303e-16,
+ 7.17992771696028e-17,
+ -4.7893757466820296e-17,
+ -1.6692504761320096e-16,
+ -1.6052990750240036e-16,
+ -4.466775307786349e-17,
+ -3.6065074707312007e-17,
+ -7.552158992609141e-17,
+ -5.773720675620133e-17,
+ -5.263970623134329e-17,
+ 1.1257928136846707e-16,
+ 6.27002904315195e-17,
+ -6.017738956323276e-17,
+ -4.779035989025117e-17,
+ -2.1594583866462476e-17,
+ -1.94801034256238e-17,
+ 6.582289724390718e-17,
+ 1.9107872149974936e-17,
+ 9.330597309598151e-17,
+ 3.2756352257099896e-17,
+ -1.0918784085699964e-17,
+ -2.94579695645447e-17,
+ -1.0075059860895876e-16,
+ -1.2986735617082533e-17,
+ -6.369290716658312e-16,
+ -1.2924697071141057e-16
+ ],
+ [
+ 8.50131027188521,
+ 6.973614917415247,
+ -4.52555056470651,
+ 2.8141790486104146,
+ -0.19494873663219747,
+ -2.6243715459231036,
+ 4.434528888022718,
+ -4.8106792262442095,
+ 2.6241391726865197,
+ 5.53211508471055,
+ 1.5599159331466075,
+ 0.32900445188365973,
+ -2.7974068038172053,
+ 4.5179586261300875,
+ -4.747115409070919,
+ 2.2997060521732604,
+ 4.625480873040591,
+ 1.7166121501271077,
+ 0.46357021474702714,
+ -3.0697011301923522,
+ 4.633555663503377,
+ -4.6964819079545626,
+ 3.119557482925838,
+ -0.5792311578767757,
+ -2.15231385363881,
+ 2.6542861818579637,
+ 4.103992840927739,
+ -4.757062184418878,
+ -2.938846421950306,
+ 2.9572158102290578,
+ -0.23905999527005184,
+ -2.4531394440673027,
+ 2.775516995462231,
+ 5.017699811242045,
+ 1.8643075852156468,
+ 0.48970986673517697,
+ -3.071273994026472,
+ 4.632426241869514,
+ -4.693068933696026,
+ 3.1149312550068897,
+ -0.5748829726150123,
+ -2.154882572499363,
+ 6.374320250374288,
+ 6.149663090604007,
+ -0.45819979329284927,
+ -0.7614614809749138,
+ -7.478738000909508,
+ -7.671080033473102,
+ 3.189585138509498,
+ -0.6677593306609501,
+ -2.0667052707007523,
+ 4.215550143112217,
+ -4.8575542595727965,
+ 3.9269164396857894,
+ -1.271069170457908,
+ -3.262700062971873,
+ -3.9958317955129283,
+ -1.6979096631486923,
+ 4.315791989993161,
+ -4.841653589008573,
+ 3.7160177543649358,
+ -1.0369419257212273,
+ -2.6704376919541235,
+ -3.965116226120603,
+ -1.8541858055128952,
+ 4.46245559299268,
+ -4.796313854469401,
+ 3.57810208813875,
+ -1.0469751590771563,
+ -1.7117227040106298,
+ 3.9196065400141884,
+ -3.1505009085775386,
+ -5.3778102020283605,
+ 2.881646539162939,
+ 2.0629044616357572,
+ -0.8429746401549183,
+ -2.0267766385119153,
+ 4.11208160261341,
+ -3.331742826475392,
+ -6.235893980827911,
+ 2.8733800205432627,
+ 1.9315505820602437,
+ -0.5049993547121024,
+ -2.217648840617849,
+ 4.219156382961974,
+ -4.845468569934398,
+ 3.8277712837330147,
+ -1.568894655018658,
+ 0.7741270741936653,
+ 1.2320771854475558,
+ 5.8706555965285645,
+ 4.955982818576138,
+ -2.583601190814193,
+ -0.08517499795768238,
+ 2.7226487636011556,
+ -4.540452529449198,
+ 4.758865552381188,
+ -3.436056159906253,
+ 0.8919970179917335,
+ 2.591468142992963,
+ 4.910056527528941,
+ 2.231686225066094,
+ -4.611312877819348,
+ 4.710434026776963,
+ -3.1862226067154373,
+ 0.5621604443989994,
+ 1.8825485259373524,
+ 4.52279060947704,
+ 2.2286771662653524,
+ -4.708598434982826,
+ 4.613315670699582,
+ -3.0259065500695033,
+ 0.3000570792127835,
+ 2.3950731992200054,
+ -4.318211320571195,
+ 3.160904464783335,
+ 5.538738041421283,
+ -2.1099990556472945,
+ -1.6669976409505811,
+ 0.09220563881225939,
+ 2.6861265624191626,
+ -4.464814790383771,
+ 3.162347810638276,
+ 6.04974367244447,
+ -1.8985844983367937,
+ -1.4643938853889358,
+ -0.249048528857641,
+ 2.8604310832792565,
+ -4.543076147269922,
+ 4.720988407710766,
+ -3.317957828106847,
+ 0.838243519220351,
+ 1.6349274072588125,
+ 1.3955939293496231,
+ -3.1792342571796004,
+ -3.400837478541284,
+ -8.562884744155884,
+ -8.628209226824318,
+ 4.7478817686384795,
+ -3.394338556492452,
+ 0.9446070868516773,
+ 1.9586101588915397,
+ -4.070587611302249,
+ 4.866868950313468,
+ -2.7554796074078203,
+ -5.651940896624483,
+ -0.5248389500356849,
+ 0.22897918495759667,
+ 2.147458404904922,
+ -4.1832494698503035,
+ 4.855947328457042,
+ -2.608728564062594,
+ -5.050720083462598,
+ -0.8755726170401618,
+ 0.026627271395096727,
+ 2.4483186951483376,
+ -4.347178183592259,
+ 4.83711597071391,
+ -3.6596096890348795,
+ 1.3195255070661462,
+ 1.4510527092636405,
+ -2.354847111841256,
+ -3.470823637797093,
+ 5.148978127044767,
+ 3.086026380600401,
+ -3.51936390360684,
+ 0.9879615470427972,
+ 1.7732285224496946,
+ -2.5859509941536825,
+ -4.280036432484788,
+ 5.679833658941334,
+ 3.168816884969966,
+ -3.274937573220325,
+ 0.7791420016570861,
+ 1.9652431617930048,
+ -4.16026930283587,
+ 4.864389984778377,
+ -3.993892787297748,
+ 4.782463657253328,
+ 6.07081723255505,
+ -2.296584252692226e-15,
+ -3.555884017242955e-15,
+ -6.93425507503203e-16,
+ -4.1772620933927893e-16,
+ 1.1055268886771214e-16,
+ 1.5272856035025962e-16,
+ 4.578961678363854e-16,
+ 5.333660589741922e-16,
+ 8.252987766594694e-16,
+ -3.763671787116276e-17,
+ -2.356637565163576e-16,
+ -1.2104961084101005e-15,
+ -1.2076836943274203e-17,
+ -2.285913622790292e-16,
+ -2.391585946043941e-17,
+ 6.452008777913615e-16,
+ 2.388070428440591e-16,
+ 1.7834014006643274e-16,
+ 3.7702892320166996e-16,
+ -5.973071203245413e-16,
+ -7.378451063973007e-17,
+ 1.6278914455043582e-16,
+ 1.7536228986124187e-17,
+ -1.0670629901934056e-16,
+ -4.145829230115774e-16,
+ 6.733250186181644e-16,
+ 3.0605682664462024e-17,
+ 2.3161057151484772e-17,
+ -7.351981284371309e-16,
+ -5.589672989327085e-16,
+ 4.963083675318165e-18,
+ -5.252596889711725e-17,
+ -9.115530350334365e-16,
+ -2.8289576949313546e-16,
+ 3.399712317592944e-17,
+ 7.838363484552489e-16,
+ 1.9248492854108952e-16,
+ -7.318480469562912e-17,
+ 2.7474804045948814e-16,
+ -7.962440576435443e-16,
+ 1.1166938269465872e-17,
+ -5.380809884657445e-16,
+ -5.525566491854225e-16,
+ -1.3139764030404845e-16,
+ -8.12291361527073e-17,
+ 2.9406270776260134e-17,
+ 1.8799747371798934e-16,
+ 3.6792993646358666e-16,
+ 1.0769891575440419e-16,
+ -1.446325301048969e-16,
+ -1.7296346608483806e-16,
+ -2.4335653621310074e-16,
+ -8.437242248040881e-17,
+ -4.1524466750161983e-17,
+ 4.923379005915621e-16,
+ 1.713918229209873e-16,
+ -1.3334151474354806e-16,
+ 3.0473333766453535e-16,
+ -1.3681567331627078e-16,
+ -1.6907571720583883e-16,
+ -1.4128244862405713e-16,
+ 8.937686518635463e-17,
+ -8.189088064274973e-17,
+ -1.1745964698252991e-17,
+ 2.216844041642114e-16,
+ 3.8017220952937147e-16,
+ 2.241659460018705e-16,
+ -6.90695811481778e-18,
+ 1.519117194953635e-16,
+ -1.315217173959314e-16,
+ 1.1282743555223297e-16,
+ -3.1135078256495957e-16,
+ 5.6248281653605874e-18,
+ 2.01563235763859e-16,
+ 2.388897609053144e-16,
+ 3.2301402920195726e-16,
+ -6.832511859688009e-17,
+ -1.6543612251060553e-17,
+ -1.2308447514789052e-16,
+ 2.551438599419814e-16,
+ 1.34416849539867e-16,
+ 1.7180541322726382e-16,
+ -7.328820227219825e-17,
+ -2.745412453063499e-16,
+ 1.3210074382471852e-16,
+ 1.1878313596261477e-16,
+ 3.4146015686188977e-16,
+ 2.6081004713796963e-16,
+ 1.1320793863400737e-15,
+ 4.082963503561744e-16,
+ 3.2425480012078685e-17,
+ -1.0763274130539996e-15,
+ -5.8432038470745875e-16,
+ -2.1465336895751065e-17,
+ 9.959254575138452e-17,
+ -1.0306670432410724e-16,
+ 3.4636120199126646e-16,
+ 9.661469554619362e-17,
+ 2.355810384551023e-16,
+ 2.74293091122584e-16,
+ -1.6022488465152144e-16,
+ -1.8363409598677212e-16,
+ -4.2384734587217133e-16,
+ 2.638292563737882e-16,
+ 1.401243957664829e-16,
+ -1.0885696861197843e-16,
+ 1.402898318889935e-16,
+ -1.1779051922755114e-16,
+ -2.779326858178173e-17,
+ 2.7958704704292335e-17,
+ 7.604245521805841e-18,
+ -1.829723514967297e-16,
+ -6.336203492156192e-17,
+ -4.764560328305439e-17,
+ 2.242951929725819e-16,
+ -4.849346341092124e-17,
+ 1.8479214884434636e-16,
+ 1.5815693312013887e-16,
+ -5.836586402174163e-16,
+ -1.2515242667927309e-16,
+ 2.0844951436336294e-17,
+ 2.071260253832781e-16,
+ 1.287093033132511e-16,
+ 7.444625512977249e-17,
+ 2.096902852821925e-17,
+ 3.689225531986503e-16,
+ -1.985233470127266e-17,
+ 4.833836704606755e-17,
+ 6.316351157454918e-16,
+ 3.2326218338572317e-16,
+ 3.7984133728435026e-16,
+ 6.203854594147708e-17,
+ 6.051653361437949e-16,
+ -2.2110537773542427e-16,
+ 5.152921625899086e-16,
+ 4.1179118844421095e-16,
+ -7.605925732425088e-17,
+ 4.403909581232319e-16,
+ -4.350970022028925e-17,
+ -9.303713939690178e-17,
+ 4.863822001811802e-17,
+ -7.643148859989974e-17,
+ -5.628964068423353e-17,
+ 5.839895124624375e-16,
+ -3.2888701155108375e-16,
+ 7.46116912522831e-17,
+ -3.9535097376971953e-16,
+ -6.675347543302932e-16,
+ 2.0613340864821447e-16,
+ 1.530284133223101e-16,
+ 1.2643455662873028e-16,
+ -3.1664473848529894e-16,
+ -3.58996385848014e-17,
+ 8.495144890919593e-17,
+ 7.08728348835434e-16,
+ -1.0910512279574434e-16,
+ 2.6436692377194764e-16,
+ 3.099445755236194e-16,
+ 5.561135258194005e-16,
+ 1.0058516248644815e-16,
+ -7.754818242684633e-17,
+ 8.007108329513307e-17,
+ -3.639594695233322e-18,
+ 6.199718691084942e-17,
+ -1.8462671272183575e-16,
+ -5.724089838866952e-17,
+ 1.5104317985218283e-16,
+ -7.672617169312176e-17,
+ 3.4683683084348445e-16,
+ -2.0265925007549176e-16,
+ 3.416255929844004e-16,
+ -7.170001549609643e-16,
+ -2.793802518897851e-17,
+ -8.238718901028154e-17,
+ 4.3933630284222676e-17,
+ -3.1267427154504446e-17,
+ 2.0218362122327376e-16,
+ 7.444625512977248e-19,
+ 1.4187801866509529e-15,
+ -1.5021599923962983e-16
+ ],
+ [
+ 6.026377498778718,
+ 4.959581042540335,
+ -3.1457266127320125,
+ 1.7614140564322254,
+ 0.19069443400837593,
+ -2.174382517530466,
+ 3.338815444199103,
+ -3.423304739698519,
+ 1.7542828878524104,
+ 3.780151067877212,
+ 1.546970738810102,
+ 0.4639503743576817,
+ -2.291445226669017,
+ 3.385752254814506,
+ -3.3545430053897767,
+ 1.5121214639956517,
+ 3.127923995224038,
+ 1.6010148781224207,
+ 0.5482981950021792,
+ -2.4740225809113507,
+ 3.447332162562902,
+ -3.3042200794186343,
+ 1.997956738805473,
+ -0.08887378501004614,
+ -1.8516930674482703,
+ 2.034418313264051,
+ 3.2205464454925994,
+ -3.2369209997366353,
+ -2.04156450358831,
+ 1.8718548643722281,
+ 0.15872774429340936,
+ -2.057905349040604,
+ 2.1108856674479255,
+ 3.6787698931078565,
+ 1.7393618957709878,
+ 0.5683990946712474,
+ -2.4754953551400813,
+ 3.4468661333186064,
+ -3.302010390698842,
+ 1.9946885953019444,
+ -0.0856037934585134,
+ -1.8538450518250593,
+ 5.008712772724096,
+ 4.853177314895242,
+ -0.006483287974531064,
+ -0.22816439218776885,
+ -5.109044822677786,
+ -5.258327896983817,
+ 2.052905669333824,
+ -0.15349619169573175,
+ -1.7930337202593027,
+ 3.2100946225900664,
+ -3.4902076472747376,
+ 2.640108648822342,
+ -0.7187113461632078,
+ -2.0084274309547014,
+ -3.1960732991438476,
+ -1.4101005170837613,
+ 3.270048212851331,
+ -3.4642801974815125,
+ 2.4694906331452127,
+ -0.5447968346578841,
+ -1.5949566578829417,
+ -3.1306659065565547,
+ -1.5141685726593934,
+ 3.354944066369786,
+ -3.4084607341535547,
+ 2.3592620068052885,
+ -0.4320103066760273,
+ -1.5468871832389801,
+ 3.0273307440865067,
+ -2.2965035896560897,
+ -3.98323602210063,
+ 1.7557752470547825,
+ 1.3259842913203168,
+ -0.2818997433241927,
+ -1.7654821843311692,
+ 3.1471071170819003,
+ -2.4176085520475636,
+ -4.589401275712418,
+ 1.6879324182323594,
+ 1.209405409036856,
+ -0.03459484328191853,
+ -1.8970009279592626,
+ 3.212267242741164,
+ -3.4700350325271994,
+ 2.559594541955716,
+ -0.8188807774678424,
+ 0.08039389057996182,
+ 0.3053049661987378,
+ 3.8058487781748447,
+ 3.2362676782747855,
+ -1.584638281138203,
+ -0.3933444770984224,
+ 2.241311386961098,
+ -3.3982469439974103,
+ 3.367885023639013,
+ -2.246542915500815,
+ 0.42489723147083414,
+ 1.4751855535559586,
+ 3.821985628782561,
+ 1.7808819693067235,
+ -3.436077628941005,
+ 3.3188115866459986,
+ -2.0502530098342717,
+ 0.19343475600081808,
+ 1.0017977002878826,
+ 3.4883372727113113,
+ 1.762940214925718,
+ -3.4840187442370905,
+ 3.226357875158458,
+ -1.9254285434175966,
+ -0.11454299933949764,
+ 2.0185821337199723,
+ -3.271462090244167,
+ 2.270513044440966,
+ 4.041499501320765,
+ -1.172017309126524,
+ -1.0202739984860691,
+ -0.26525001899008643,
+ 2.216625027036301,
+ -3.3563129932772684,
+ 2.2577350874188276,
+ 4.384906140424849,
+ -0.9789869480541612,
+ -0.8646056774810998,
+ -0.5113186417141456,
+ 2.334237451335951,
+ -3.3996791127841592,
+ 3.3293578805408917,
+ -2.153492423770663,
+ 0.27844643443497336,
+ 1.7645216314538066,
+ 1.5880357641437117,
+ -2.052772952813454,
+ -2.2271886798825564,
+ -6.249927899659066,
+ -6.313234974769851,
+ 3.355408768469474,
+ -2.2132252387881883,
+ 0.3566355700215654,
+ 1.7179660181347067,
+ -3.1211189141548514,
+ 3.51516580551889,
+ -1.8805813193016998,
+ -3.9328272991311426,
+ -0.7902776355549709,
+ -0.051321672670854544,
+ 1.84836114849964,
+ -3.19019679886455,
+ 3.4840177245272965,
+ -1.7612683681451065,
+ -3.4862547723929334,
+ -1.0074875776248038,
+ -0.19666816427911327,
+ 2.0546011612713646,
+ -3.2881514599871515,
+ 3.4562926360403137,
+ -2.4238352567381583,
+ 0.6334670151914737,
+ 1.364447773459196,
+ -1.8447585445197512,
+ -2.803517213547456,
+ 3.572408954075195,
+ 2.179767521904011,
+ -2.312084697775226,
+ 0.388518337807334,
+ 1.589375817877595,
+ -2.0110751781817475,
+ -3.411596011055546,
+ 3.905572446225966,
+ 2.2167560688495307,
+ -2.1193409532324456,
+ 0.23511858103839572,
+ 1.7225520198345152,
+ -3.1761737424842944,
+ 3.5021996173666547,
+ -2.6943067533268863,
+ 3.099133181417585,
+ 3.9627143592347025,
+ -1.6884410663432399e-15,
+ -2.5546646038087703e-15,
+ -4.966392397768378e-16,
+ -3.01341897153068e-16,
+ 7.94506978357183e-17,
+ 1.1733556989064698e-16,
+ 3.251155849457248e-16,
+ 3.69667015749948e-16,
+ 6.072332876751775e-16,
+ -4.4585035016608186e-17,
+ -1.7904324358710282e-16,
+ -8.556356256248517e-16,
+ -4.2475724454597965e-17,
+ -1.6214807957570723e-16,
+ -9.688352924527335e-18,
+ 4.769937002287034e-16,
+ 1.7552772598375245e-16,
+ 1.2883338040513406e-16,
+ 2.69660879692287e-16,
+ -4.0429486414294914e-16,
+ -5.707546226615891e-17,
+ 1.2126467780027386e-16,
+ -8.271806125530276e-19,
+ -8.528232115421714e-17,
+ -2.838056681669438e-16,
+ 5.262523057062362e-16,
+ 2.067951531382569e-17,
+ 1.7867101231145398e-17,
+ -5.461046404075089e-16,
+ -4.26380586498115e-16,
+ -3.5072457972248373e-17,
+ -3.1846453583291565e-17,
+ -6.597178975416671e-16,
+ -2.1527375441692543e-16,
+ 2.729696021424991e-18,
+ 5.770411953169921e-16,
+ 1.270135830575174e-16,
+ -5.572095401310333e-17,
+ 2.0685137557051636e-16,
+ -5.371710897919362e-16,
+ -2.1423977865123414e-17,
+ -4.0655927106981305e-16,
+ -3.9100827555381613e-16,
+ -1.0604455452929814e-16,
+ -6.038418471637102e-17,
+ 2.547716286663325e-17,
+ 1.3083929339057515e-16,
+ 2.846328487794968e-16,
+ 9.198248411589667e-17,
+ -1.0683037611122351e-16,
+ -1.5336962532498822e-16,
+ -1.845026356299528e-16,
+ -5.0209863181968774e-17,
+ -1.1580528575742386e-17,
+ 3.8579703769473206e-16,
+ 1.2937104780329353e-16,
+ -8.234582997965389e-17,
+ 2.2102265967416897e-16,
+ -8.883919778819516e-17,
+ -8.751570880811032e-17,
+ -8.205631676526033e-17,
+ 7.194403377679958e-17,
+ -3.672681919735443e-17,
+ -1.290401755582723e-17,
+ 1.5120861597469343e-16,
+ 2.5013941723603557e-16,
+ 2.0232837783047054e-16,
+ -7.4859845436049e-18,
+ 1.2430456655140623e-16,
+ -9.628382330117241e-17,
+ 1.0530009197800041e-16,
+ -2.1064154298662847e-16,
+ 2.2333876538931744e-17,
+ 1.3783930932430515e-16,
+ 1.9620724129757814e-16,
+ 2.2356624005776955e-16,
+ -3.399712317592944e-17,
+ 2.0017770823783267e-17,
+ -8.933550615572698e-17,
+ 1.8770796050359578e-16,
+ 9.516712947422582e-17,
+ 1.2271224387224166e-16,
+ -5.434576624473391e-17,
+ -2.1076562007851143e-16,
+ 9.173432993213076e-17,
+ 8.288349737781336e-17,
+ 2.4643778399486077e-16,
+ 1.968276267569929e-16,
+ 8.953402950273972e-16,
+ 2.8765205801531537e-16,
+ -2.216844041642114e-17,
+ -6.941699700545007e-16,
+ -4.111087644388547e-16,
+ -1.6005944852901086e-17,
+ 8.08982639076861e-17,
+ -7.883031237630353e-17,
+ 2.27309232329572e-16,
+ 8.007108329513307e-17,
+ 1.4988512699460861e-16,
+ 1.9083056731598346e-16,
+ -1.178318782581788e-16,
+ -1.6047303883528734e-16,
+ -3.2508198073333983e-16,
+ 1.8376851283631199e-16,
+ 1.0728532544812768e-16,
+ -6.402377941160434e-17,
+ 1.0654086289682995e-16,
+ -9.496033432108756e-17,
+ -2.3657365519016588e-17,
+ 1.1745964698252991e-17,
+ -8.297655519672559e-18,
+ -1.1431636065482842e-16,
+ -2.9778502051908996e-17,
+ -4.566036981292712e-17,
+ 1.7118502776784905e-16,
+ -8.809473523689745e-18,
+ 1.5087774372967222e-16,
+ 1.108422020821057e-16,
+ -4.106124560713229e-16,
+ -1.0422475718168147e-16,
+ 1.0422475718168147e-17,
+ 1.6593243087813733e-16,
+ 9.992341799640573e-17,
+ 5.062345348824529e-17,
+ 4.619803721108659e-17,
+ 3.2028433318053227e-16,
+ 3.805030817743927e-18,
+ 3.6168472283881135e-17,
+ 4.541221562916122e-16,
+ 2.2267702089927505e-16,
+ 2.9381455357883543e-16,
+ 4.317882797526804e-17,
+ 4.3608961893795614e-16,
+ -1.8074930360049344e-16,
+ 3.8459762580653017e-16,
+ 2.9505532449766497e-16,
+ -6.86559908419013e-17,
+ 2.6478051407822416e-16,
+ -4.681842267050136e-17,
+ -6.609173094298691e-17,
+ -5.7489052572435416e-18,
+ -3.875341169810934e-17,
+ -3.871205266748169e-17,
+ 4.435342444509334e-16,
+ -2.7694006908275367e-16,
+ 3.8546616544971083e-17,
+ -2.843019765344756e-16,
+ -4.810882442608409e-16,
+ 1.3863547066388744e-16,
+ 1.2424252800546476e-16,
+ 1.3389986165702135e-16,
+ -1.98357910890216e-16,
+ -1.6378176128549948e-17,
+ 7.634877053864444e-17,
+ 5.408106844871695e-16,
+ -8.342116477597283e-17,
+ 2.1126192844604324e-16,
+ 2.324377521274008e-16,
+ 3.825296742751476e-16,
+ 7.717595115119747e-17,
+ -6.87387089031566e-17,
+ 4.4254162771586974e-17,
+ 4.4667753077863494e-18,
+ 4.714929491552257e-17,
+ -1.5244938689352298e-16,
+ -4.9630836753181654e-17,
+ 9.454674401481105e-17,
+ -4.6926990125898945e-17,
+ 2.1940965747969057e-16,
+ -1.1828682759508296e-16,
+ 2.4087499437544166e-16,
+ -5.1558167580430215e-16,
+ -3.7838343145472554e-17,
+ -4.863822001811802e-17,
+ 2.5642598989143855e-17,
+ -3.7719435932418056e-17,
+ 1.489131897748588e-16,
+ -6.2865726554030096e-18,
+ 1.0366227436514543e-15,
+ -7.378451063973007e-17
+ ],
+ [
+ -2.7760354206600115,
+ -2.1111646106016737,
+ 2.118547984892223,
+ -3.3191041071961456,
+ 3.4444024170749383,
+ -2.3710084513688536,
+ 0.5593411574558763,
+ 1.435991811701177,
+ -1.9455678665243519,
+ -3.2603725467481413,
+ 4.025670699382367,
+ 2.2642698355722852,
+ -2.2569603953452666,
+ 0.40662430085592993,
+ 1.6589032436481657,
+ -1.9648071359351575,
+ -3.062322493044503,
+ 3.388234195263907,
+ 2.1068176289837806,
+ -2.060663016968527,
+ 0.15951864281037148,
+ 1.790684578972557,
+ -3.212527825498121,
+ 3.4962947344884143,
+ -2.647891869487583,
+ 0.704514125377265,
+ 1.8600522244706321,
+ 2.943676971159231,
+ 1.3884855574013837,
+ -3.272811937201466,
+ 3.451639651879656,
+ -2.4773271719987573,
+ 0.56758280967809,
+ 1.7389407361726732,
+ 3.6858698775888534,
+ 2.1144298165053668,
+ -2.063793421525358,
+ 0.16333122400796116,
+ 1.7873734356778355,
+ -3.2108783768293874,
+ 3.4968053332361744,
+ -2.6504301858398023,
+ 2.9564393871509944,
+ 3.0679774750686137,
+ 3.421763340878739,
+ 3.4518591423346083,
+ 4.420268090003885,
+ 4.350154870012274,
+ -3.180800567493086,
+ 3.5060117049429196,
+ -2.69665956830906,
+ 0.9032487307068247,
+ 1.1051547593341255,
+ -2.75828965041934,
+ 2.2891823425871873,
+ 4.194652038438108,
+ -2.431895727133608,
+ -1.5681321900807865,
+ 0.7563828986598252,
+ 1.2506079660438953,
+ -2.906497297802403,
+ 2.29442071566329,
+ 3.9357903931462674,
+ -1.9934052573486116,
+ -1.4481007520769584,
+ 0.5124599996067354,
+ 1.47919529418435,
+ -2.989592091170274,
+ 3.5301690651924043,
+ -2.8690462526588973,
+ 1.2776959149161946,
+ 0.37928204325091486,
+ -0.00198207294767126,
+ -3.8906844955151154,
+ -2.0753216239610204,
+ 3.520081739904496,
+ -2.71745137670301,
+ 1.0435542593202125,
+ 0.5142571804549432,
+ 0.2998927216487706,
+ -4.525128339016874,
+ -2.2736358227800073,
+ 3.4890952237650583,
+ -2.616209169324666,
+ 0.898171025255939,
+ 1.2205074823161803,
+ -2.8311294782448364,
+ 3.5269435582788677,
+ -5.067258717503095,
+ -6.241835642303142,
+ -5.5735589462513895,
+ -4.464791747486373,
+ 3.3807702604869942,
+ -3.394835231344253,
+ 2.31076461000757,
+ -0.36376672293069545,
+ -1.6111334325568891,
+ 3.066850410259098,
+ -2.4233943737733665,
+ -4.565751003729201,
+ 1.9056326608941092,
+ 1.3157173299565905,
+ -0.21316100638726368,
+ -1.7468598673607434,
+ 3.1825231740922844,
+ -2.291520417515002,
+ -4.0346298150807405,
+ 1.4243318753711505,
+ 1.154200192038058,
+ 0.03470312749792674,
+ -1.9578467364151344,
+ 3.2450862880940323,
+ -3.46184055414679,
+ 2.515195999175199,
+ -0.7524956310670962,
+ -0.7256284061614372,
+ -0.6242499201768701,
+ 4.016542044830462,
+ 2.2036571287181985,
+ -3.4285671216648925,
+ 2.3350596027912043,
+ -0.5085581094925729,
+ -0.8679617822031394,
+ -0.9846747062225593,
+ 4.391199990586603,
+ 2.2613351439067904,
+ -3.359908084580111,
+ 2.2170092350550896,
+ -0.3585241071479565,
+ -1.718801434499617,
+ 3.1242352672258225,
+ -3.519563948631553,
+ 5.690842038581027,
+ 5.698803865193844,
+ 3.103404538593851,
+ 2.9976639152610187,
+ 0.9466891321613842,
+ 0.7933470094037515,
+ -1.6557487378070477,
+ 3.0917165348842284,
+ -3.5256121622848795,
+ 2.747982043174379,
+ -1.0922960986246455,
+ -0.919443692226256,
+ 1.6472484544516997,
+ 2.6031805506971115,
+ -4.127734277839939,
+ -2.2708347361281334,
+ 2.650603333231263,
+ -0.9446370232067142,
+ -1.1564863609664582,
+ 1.7564428120049445,
+ 2.6163815056741004,
+ -3.69025828877549,
+ -2.2243278130270805,
+ 2.4800718803755126,
+ -0.7035228131101335,
+ -1.2981290433909052,
+ 2.946396741029354,
+ -3.5343446111182746,
+ 2.978261890160014,
+ -1.0346551851792092,
+ -2.393776925112087,
+ -2.4788461498163787,
+ -1.0883641034152771,
+ 3.027382190472988,
+ -3.5279442782102617,
+ 2.8375515422779145,
+ -0.9848076392038576,
+ -2.4836344766367953,
+ -3.095737108773536,
+ -1.3384622474294494,
+ 3.14775309465185,
+ -3.514978101354756,
+ 2.7446503877698003,
+ -0.975433129605251,
+ -1.0339157982572977,
+ 2.711146759338815,
+ -4.55340414694952,
+ -5.4850160968344195,
+ -6.551270451419979e-17,
+ 5.280721030538529e-16,
+ 2.3381810977459864e-16,
+ 6.658803931051873e-17,
+ 3.899381106363257e-18,
+ 1.849524150880285e-16,
+ -1.0703717126436177e-16,
+ -3.934898173914752e-16,
+ -2.4815418376590827e-17,
+ -1.613312387208111e-16,
+ -8.09809819689414e-17,
+ 5.234398916235559e-16,
+ -3.439830577301765e-16,
+ 6.605037191235926e-17,
+ 7.213014941462401e-17,
+ -8.685396431806789e-17,
+ -9.471218013732166e-17,
+ -6.981404369947554e-17,
+ -1.0554824616176632e-16,
+ 5.646334861286967e-16,
+ -1.3251433413099503e-16,
+ -1.4905794638205559e-16,
+ -1.4227506535912076e-16,
+ -4.6363473333597195e-17,
+ 3.0159005133683384e-16,
+ 2.9100213949615514e-16,
+ -3.28390703183552e-17,
+ 7.031035206700735e-18,
+ 4.5494933690416516e-17,
+ 3.8546616544971083e-17,
+ -4.646687091016633e-16,
+ 8.362795992911109e-17,
+ 6.615790539199114e-16,
+ 2.067951531382569e-20,
+ -2.8376430913631614e-16,
+ 4.896909226313923e-17,
+ -1.8189701670041076e-16,
+ -5.85230283381267e-18,
+ 1.4689176715293235e-16,
+ 4.257498612810433e-16,
+ -2.482369018271636e-16,
+ -3.8298462361205175e-17,
+ 7.858215819253762e-17,
+ -9.247879248342848e-17,
+ -4.0945440321374864e-17,
+ 1.861983558856865e-16,
+ -1.4124108959342948e-16,
+ 2.187065539590205e-16,
+ 2.511320339710992e-16,
+ -2.671793378546279e-17,
+ -2.6221625417930977e-16,
+ 5.9557004103817985e-18,
+ 3.2094607767057474e-17,
+ 3.0241723194938687e-16,
+ 9.727644003623604e-17,
+ -1.573711115382135e-17,
+ 3.2326218338572317e-16,
+ -3.3103768114372163e-16,
+ 2.665175933645855e-16,
+ 4.3981193169444477e-16,
+ 2.10103875588469e-16,
+ 2.4153673886548405e-17,
+ 1.8644651006945241e-16,
+ -3.730584562614155e-17,
+ -1.377255719900791e-16,
+ -3.306240908374451e-16,
+ 3.7074235054626695e-16,
+ -4.020097777007714e-17,
+ 2.0183206946293872e-17,
+ -7.527343574232552e-17,
+ 1.4591466005435408e-16,
+ 1.8462671272183575e-16,
+ 5.790264287871194e-17,
+ -1.8516438011999522e-16,
+ 2.663521572420749e-16,
+ -1.0538281003925571e-16,
+ 1.2424252800546476e-16,
+ 1.4856163801452377e-16,
+ -6.915229920943311e-17,
+ -2.2333876538931747e-18,
+ -1.4608009617686469e-16,
+ -2.933182452113036e-16,
+ 8.801201717564213e-17,
+ -7.86441967384791e-17,
+ -7.659692472241035e-17,
+ -3.780215399367336e-17,
+ -1.1448179677733903e-16,
+ -6.849055471939069e-17,
+ 3.90429249125029e-16,
+ 3.2293131114070195e-16,
+ -2.0820136017959704e-16,
+ 1.1619199269379241e-15,
+ 3.6213967217571547e-16,
+ 1.5062958954590634e-16,
+ 1.2229865356596514e-16,
+ 5.939156798130739e-17,
+ -4.4026688103134893e-16,
+ 1.2308447514789052e-16,
+ -3.7421650911898967e-16,
+ -6.485096002415737e-17,
+ -1.9025154088719633e-17,
+ -2.6817195458969157e-16,
+ -2.3657365519016588e-17,
+ -2.1390890640621293e-16,
+ -2.6635215724207488e-17,
+ 1.0554824616176632e-16,
+ 3.3087224502121103e-18,
+ -1.3216278237066e-16,
+ -1.2639319759810263e-16,
+ -7.16338410470922e-17,
+ -1.4210962923661015e-16,
+ 1.7784383169890093e-16,
+ 1.1472995096110494e-16,
+ -1.0132962503774588e-16,
+ 6.253485430900889e-17,
+ 2.7958704704292335e-16,
+ 1.3218346188597382e-16,
+ -9.844483265146719e-17,
+ 8.501348745513741e-17,
+ -1.2010662494269962e-16,
+ -1.2680678790437914e-16,
+ 6.997947982198614e-17,
+ -1.647743780205631e-16,
+ -6.650532124926343e-17,
+ 3.121779631775126e-16,
+ 3.3120311726623223e-16,
+ 2.6879234004910634e-16,
+ -1.1216569106219055e-16,
+ -1.6560155863311612e-16,
+ -1.6287186261169112e-16,
+ -7.444625512977248e-19,
+ 8.271806125530276e-17,
+ -4.996170899820287e-16,
+ 3.494838088036542e-17,
+ 2.1858247686713753e-17,
+ -1.7172269516600852e-16,
+ -1.1208297300093525e-16,
+ -1.1434944787933055e-15,
+ -2.1126192844604324e-16,
+ 8.726755462434442e-18,
+ -4.618976540496107e-16,
+ 9.851721095506558e-17,
+ 1.346650037236329e-16,
+ 1.649398141430737e-16,
+ -3.632977250332897e-16,
+ -1.4401214464548212e-16,
+ 1.56006263527501e-16,
+ 1.3267977025350564e-16,
+ -1.3069453678337837e-16,
+ 7.990564717262246e-17,
+ 2.6269188303152776e-16,
+ 2.201541200309883e-16,
+ 5.848166930749906e-17,
+ 1.3590577464246245e-16,
+ 6.551270451419979e-17,
+ -5.765448869494603e-17,
+ 6.878006793378425e-17,
+ 1.8975523251966452e-16,
+ -3.1559008320429383e-16,
+ 1.2324991127040111e-17,
+ -2.2333876538931744e-17,
+ 8.933550615572699e-18,
+ 1.1075948402085039e-16,
+ 3.027481041944081e-17,
+ -8.950094227823758e-17,
+ -9.132073962585424e-17,
+ -1.3880090678639804e-16,
+ 2.069605892607675e-16,
+ -3.833361753723868e-16,
+ 4.0085172484319716e-16,
+ -2.569222982589704e-16,
+ 4.354278744479137e-16,
+ -2.397169415178674e-16,
+ 1.2672406984312384e-16,
+ -8.470329472543002e-17,
+ -2.6345702509813928e-17,
+ 1.7701665108634792e-17,
+ 2.6883369907973396e-17,
+ 3.474158572722716e-18,
+ 2.359946287613788e-16
+ ],
+ [
+ -4.539694228012991,
+ -3.501878559769377,
+ 3.2736019418545212,
+ -4.712733640268194,
+ 4.625501911609881,
+ -2.9156683838531956,
+ 0.31665705359996305,
+ 2.3884892888509923,
+ -2.8572813915789443,
+ -4.898595870658005,
+ 5.23216149296771,
+ 2.9962220930441794,
+ -2.7463085003349876,
+ 0.10429784653812013,
+ 2.680427631187912,
+ -2.8514493846182987,
+ -4.545521725782848,
+ 4.364414126867469,
+ 2.7725547360776863,
+ -2.4572928271932573,
+ -0.23742632336625144,
+ 2.8517458506369184,
+ -4.599903444407179,
+ 4.73228296277765,
+ -3.331896647457707,
+ 0.6839983991470716,
+ 2.0883793808556033,
+ 4.399645894541963,
+ 2.1428574729482315,
+ -4.664731720939562,
+ 4.6394706257426455,
+ -3.074519329854271,
+ 0.4890731210571886,
+ 1.8646702386000424,
+ 5.027215768146454,
+ 2.780192715167515,
+ -2.4613249620159596,
+ -0.23221744592705876,
+ 2.846985056095714,
+ -4.597247840862844,
+ 4.732545475278405,
+ -3.3350403109371616,
+ 3.3338115461724174,
+ 3.5048347531234088,
+ 4.620831667420798,
+ 4.690584169840147,
+ 6.63920353657959,
+ 6.5641522575802815,
+ -4.5642831487792614,
+ 4.753892586751561,
+ -3.4054460044020898,
+ 0.797900332028302,
+ 1.9505888669394198,
+ -4.070948180438968,
+ 3.1852010984986143,
+ 5.927322691193603,
+ -2.8636781465585086,
+ -1.9320364973508606,
+ 0.5917308349605244,
+ 2.143571333055143,
+ -4.248644693059495,
+ 3.1694301292859337,
+ 5.523504321303421,
+ -2.280232902515362,
+ -1.7563042060620069,
+ 0.2512411436212043,
+ 2.4448714195202275,
+ -4.346359407234961,
+ 4.823093312532261,
+ -3.670529468844066,
+ 1.3274744056734018,
+ 0.8137410769366393,
+ 0.5205185212408338,
+ -5.483727324993601,
+ -2.9762145740472135,
+ 4.7897580990965105,
+ -3.437134485326382,
+ 0.9956094288080751,
+ 1.0118883701350303,
+ 1.0077212732057854,
+ -6.331429267017503,
+ -3.228661591213307,
+ 4.715434730530031,
+ -3.2831628394976855,
+ 0.790757953801188,
+ 2.1036868208919044,
+ -4.158725374836409,
+ 4.869555977387206,
+ -6.8522405193509215,
+ -8.467667640419743,
+ -8.02518427598714,
+ -6.453334531075731,
+ 4.772778671726007,
+ -4.531957347711258,
+ 2.8255425888419925,
+ -0.044791336230864544,
+ -2.617678068734185,
+ 4.435870184985442,
+ -3.327816767448763,
+ -6.358331744801652,
+ 2.0709191381012633,
+ 1.542531151412469,
+ 0.16352150563206413,
+ -2.7944883442757065,
+ 4.566268134200479,
+ -3.1193605225365872,
+ -5.5790422131848585,
+ 1.4649047356261489,
+ 1.3268111759803505,
+ 0.5044783504133398,
+ -3.0672161937835867,
+ 4.63434255973644,
+ -4.659041793037071,
+ 3.130813079391725,
+ -0.5862963446452137,
+ -1.2779558015710977,
+ -1.373694448056414,
+ 5.576978816067657,
+ 3.109337096325571,
+ -4.5943200653457446,
+ 2.8615866112699857,
+ -0.24579327592863234,
+ -1.4684522596871457,
+ -1.905436831336818,
+ 6.057476630353871,
+ 3.166765493786912,
+ -4.469296032133035,
+ 2.686749016336498,
+ -0.037525120344856604,
+ -2.7579922654191784,
+ 4.501127011626652,
+ -4.788595236800839,
+ 7.451845353604078,
+ 7.485769022468009,
+ 4.459772064327075,
+ 4.339913254155317,
+ 2.099118545958607,
+ 1.9003954156405527,
+ -2.676281732689119,
+ 4.465068632044073,
+ -4.80703322718096,
+ 3.484601340516214,
+ -1.06483338604405,
+ -1.703124053754191,
+ 2.4710884212218414,
+ 4.031327440859343,
+ -5.469351549744451,
+ -3.059281687882546,
+ 3.335996863136788,
+ -0.8563950663779493,
+ -2.0190820290906606,
+ 2.602848131789468,
+ 3.9904927480997383,
+ -4.850155956586668,
+ -2.977398580206868,
+ 3.0786588716024332,
+ -0.5179823154765139,
+ -2.206682487582197,
+ 4.296523959899736,
+ -4.855187635012807,
+ 3.8419534670680093,
+ -1.1546573423103983,
+ -2.863772790732634,
+ -3.816112043401099,
+ -1.7557930382031075,
+ 4.391192126421776,
+ -4.814368276495552,
+ 3.6224248346130494,
+ -1.0655091264148135,
+ -2.9052252683205952,
+ -4.69278546843729,
+ -2.0983280483965876,
+ 4.528395048843458,
+ -4.776710259839079,
+ 3.479499287941089,
+ -0.8998172147227641,
+ -1.8559796863220501,
+ 4.014422617070634,
+ -6.554962250344358,
+ -7.926236596519957,
+ 1.495542547495874e-16,
+ 1.0733495628488087e-15,
+ 3.7155919140116307e-16,
+ 1.1770780116629584e-16,
+ 2.667657475483514e-18,
+ 2.2718515523768905e-16,
+ -1.8512302108936757e-16,
+ -5.630618429648459e-16,
+ -9.29751008509603e-17,
+ -2.035071102033586e-16,
+ -8.470329472543002e-17,
+ 8.225484011227306e-16,
+ -4.466775307786349e-16,
+ 1.1460587386922198e-16,
+ 8.743299074685501e-17,
+ -2.0613340864821447e-16,
+ -1.492233825045662e-16,
+ -1.0306670432410724e-16,
+ -1.8231060700668727e-16,
+ 7.949205686634595e-16,
+ -1.7006833394090247e-16,
+ -2.1341259803868112e-16,
+ -1.9562821486879102e-16,
+ -5.2898200172766114e-17,
+ 4.2186211240204406e-16,
+ 2.845501307182415e-16,
+ -4.2925503912673674e-17,
+ 7.361907451721946e-18,
+ 1.3896634290890865e-16,
+ 1.1497810514487085e-16,
+ -6.209644858435578e-16,
+ 1.1836954565633826e-16,
+ 9.722680919948287e-16,
+ 1.5096046179092755e-17,
+ -3.676404232491931e-16,
+ -2.928219368437718e-17,
+ -2.5022213529729087e-16,
+ 9.181704799338607e-18,
+ 1.6720163613052338e-16,
+ 6.442909791175532e-16,
+ -3.326920423688277e-16,
+ 1.819797347616661e-17,
+ 1.4392942658422682e-16,
+ -1.0298398626285193e-16,
+ -5.4759356551010426e-17,
+ 2.220152764092326e-16,
+ -2.1262677645675574e-16,
+ 2.9182932010870816e-16,
+ 3.2524741685585043e-16,
+ -2.5973471234165066e-17,
+ -3.3517358420648676e-16,
+ 3.6065074707312007e-17,
+ 5.1781506345819526e-17,
+ 4.132594340314926e-16,
+ 8.602678370551487e-17,
+ -3.548604827852489e-17,
+ 4.53791284046591e-16,
+ -4.757942883405015e-16,
+ 3.7289302013890483e-16,
+ 5.851475653200118e-16,
+ 2.895132143935597e-16,
+ 1.0587911840678753e-17,
+ 2.5212465070616284e-16,
+ -5.3518585632180884e-17,
+ -2.071260253832781e-16,
+ -4.630557069071849e-16,
+ 4.509788699639107e-16,
+ -6.303116267654071e-17,
+ 1.0587911840678753e-17,
+ -8.321436962283457e-17,
+ 1.464109684218859e-16,
+ 2.5311726744122647e-16,
+ 6.716706573930585e-17,
+ -2.557228863707685e-16,
+ 2.9414542582385664e-16,
+ -1.4872707413703438e-16,
+ 1.6725591985822217e-16,
+ 2.0348643068804478e-16,
+ -7.80858498250058e-17,
+ -2.754511439801582e-17,
+ -2.190374262040417e-16,
+ -4.4270706383838036e-16,
+ 1.343341314786117e-16,
+ -8.313165156157927e-17,
+ -1.13654616164786e-16,
+ -6.253485430900889e-17,
+ -1.947183161949827e-16,
+ -1.1613615800244509e-16,
+ 3.8513529320468964e-16,
+ 4.016789054557502e-16,
+ -1.981924747677054e-16,
+ 1.6201159477463598e-15,
+ 5.505714157152952e-16,
+ 2.013357610954069e-16,
+ 1.451288384724287e-16,
+ 9.793818452627846e-17,
+ -6.033041797655506e-16,
+ 1.6742135598073278e-16,
+ -5.31380825504065e-16,
+ -1.1547441351240266e-16,
+ 1.5716431638507524e-18,
+ -3.626359805432473e-16,
+ 2.0844951436336294e-17,
+ -3.151558133827035e-16,
+ -5.558653716356346e-17,
+ 1.5153948821971465e-16,
+ -1.1166938269465872e-17,
+ -1.6568427669437142e-16,
+ -1.7213628547228503e-16,
+ -9.098986738083303e-17,
+ -1.8706689552886718e-16,
+ 2.4302566396807953e-16,
+ 1.5393831199611843e-16,
+ -1.3234889800848443e-16,
+ 7.262645778215583e-17,
+ 3.5270981319261095e-16,
+ 1.5170492434222525e-16,
+ -1.4727950806506658e-16,
+ 1.558408274049904e-16,
+ -1.4426029882924803e-16,
+ -1.6891028108332823e-16,
+ 5.757177063369073e-17,
+ -1.9422200782745087e-16,
+ -9.330597309598151e-17,
+ 4.109433283163441e-16,
+ 3.5142768324315376e-16,
+ 3.578383329904397e-16,
+ -1.5997673046775553e-16,
+ -2.7032262418232944e-16,
+ -2.4368740845812195e-16,
+ -2.192028623265523e-17,
+ 1.1051132983708449e-16,
+ -7.285806835367067e-16,
+ 7.304004808843234e-17,
+ -2.388484018746867e-17,
+ -2.4914680050097194e-16,
+ -1.4177875699158894e-16,
+ -1.5594008907849676e-15,
+ -2.8471556684075213e-16,
+ 1.5302841332231012e-17,
+ -6.000368163459663e-16,
+ 1.282957130069746e-16,
+ 1.8255876119045318e-16,
+ 1.6022488465152144e-16,
+ -4.73478182625353e-16,
+ -1.8735640874326074e-16,
+ 2.4649982254080225e-16,
+ 2.2565487110446595e-16,
+ -1.8983795058091983e-16,
+ 8.801201717564213e-17,
+ 3.3596974554606905e-16,
+ 3.0051471654051495e-16,
+ 7.899574849881413e-17,
+ 1.6667689342943505e-16,
+ 4.421280374095932e-17,
+ -6.87387089031566e-17,
+ 5.542110104105285e-17,
+ 2.3434026753627274e-16,
+ -4.476287884830709e-16,
+ 1.8859717966209028e-17,
+ -4.963083675318165e-18,
+ 1.0422475718168147e-17,
+ 1.528629771997995e-16,
+ 3.0936554909483235e-17,
+ -1.4277137372665258e-16,
+ -1.252351447405284e-16,
+ -1.9653811354259935e-16,
+ 2.8306120561564607e-16,
+ -5.359716779037343e-16,
+ 5.358476008118513e-16,
+ -3.8811314340988054e-16,
+ 6.604210010623372e-16,
+ -3.1920899838421333e-16,
+ 1.591495498552025e-16,
+ -1.1175210075591404e-16,
+ -3.0688400725717327e-17,
+ 4.632211430296955e-18,
+ 2.837229501056885e-17,
+ -1.4756902127946014e-16,
+ 2.8343343689129493e-16
+ ],
+ [
+ 1.239301080582757,
+ 0.8750433334126112,
+ -1.2273067400541573,
+ 2.4355355447119553,
+ -2.932285266423067,
+ 2.3486028748141194,
+ -1.086433087960513,
+ -0.6074942948185892,
+ 1.3108190457414195,
+ 2.0461550129109973,
+ -3.639513224033301,
+ -1.9743129551463479,
+ 2.2752429474249443,
+ -0.9663483121543623,
+ -0.8050628277255385,
+ 1.370264826511697,
+ 1.9975609560363918,
+ -3.1167700749848875,
+ -1.8579112079940474,
+ 2.1430504220488373,
+ -0.7719164562135319,
+ -0.9250799463574474,
+ 2.304190510428461,
+ -2.9255976869806064,
+ 2.5220704272506547,
+ -0.9528151670967631,
+ -2.130418264671246,
+ -1.8789575066503623,
+ -0.7940744154402903,
+ 2.3780695736623265,
+ -2.931706539768911,
+ 2.4174703415014265,
+ -0.852137742315656,
+ -2.11132664021229,
+ -2.244019380991202,
+ -0.9293337324878486,
+ 2.4869021098647477,
+ -0.774994593505087,
+ -0.9227234477287524,
+ 2.303394380564729,
+ -2.9265903723994886,
+ 2.524559644228727,
+ -3.366430030972685,
+ -3.4317463862993565,
+ -2.856848159469014,
+ -2.842282101521267,
+ -2.7769828659491473,
+ -2.6916752318202137,
+ 2.267848209429591,
+ -2.92212022154716,
+ 2.55227843394806,
+ -1.3505705569847541,
+ -0.3192321281687015,
+ 1.8097823914733306,
+ -1.783297323660351,
+ -3.143844868232074,
+ 2.603637343590306,
+ 1.5623126670452678,
+ -1.2377046591987706,
+ -0.4444289820125939,
+ 1.9650599559484987,
+ -1.818818599687564,
+ -3.001684003856607,
+ 2.225664812183837,
+ 1.4806919212061995,
+ -1.0501079280375873,
+ -0.6462865176764794,
+ 2.0532707897644302,
+ -2.8923830531240533,
+ 2.6521454083421734,
+ -1.6305914866015254,
+ 0.09450141998250522,
+ 0.7150338754332087,
+ 2.9351900496242602,
+ 1.495907572233134,
+ -2.9099016918192473,
+ 2.5656210325440623,
+ -1.4555491317253646,
+ 0.0034565933192567686,
+ 0.5714605202281323,
+ 3.4772448963310927,
+ 1.682422326479873,
+ -2.9292522549131608,
+ 2.5036873947515788,
+ -1.3467250724905542,
+ -0.419159256454389,
+ 1.884993663995338,
+ -2.820389770994874,
+ 4.217993223642566,
+ 5.158773170221366,
+ 3.9736114870139088,
+ 3.149544773829665,
+ -2.561153259363207,
+ 2.8847030328287793,
+ -2.352682767197546,
+ 0.891242548155033,
+ 0.7212484635980914,
+ -2.1804130546007796,
+ 1.9480133498411973,
+ 3.5492833399391386,
+ -2.2762032625116726,
+ -1.417900163477823,
+ 0.773159952694206,
+ 0.8443326395104107,
+ -2.311247554549282,
+ 1.8793271405595717,
+ 3.1904659103953796,
+ -1.8144419804386525,
+ -1.2797838235675913,
+ 0.5737869381154883,
+ 1.0361780590415552,
+ -2.3867966778677405,
+ 2.890781051565807,
+ -2.4835834725114254,
+ 1.193219876007423,
+ 0.19941845945443185,
+ -0.20244753396082774,
+ -3.144887835126419,
+ -1.6578517301899656,
+ 2.890921808008511,
+ -2.3676547057426216,
+ 1.0055996704820087,
+ 0.3205920157242686,
+ 0.03709240912414541,
+ -3.4924020998224825,
+ -1.733909863199636,
+ 2.8767179369380123,
+ -2.291053796702552,
+ 0.8871155575013212,
+ 0.8181007177609478,
+ -2.2450464740857736,
+ 2.8685071401652436,
+ -5.068799168203171,
+ -5.043837002001467,
+ -2.216831493960249,
+ -2.0953136606911933,
+ 0.32869463024976486,
+ 0.4668908402487441,
+ 0.7609762008143011,
+ -2.2071807779571717,
+ 2.8596625722927134,
+ -2.6241483824154357,
+ 1.4500803167530616,
+ 0.11716823872291295,
+ -1.039037317748701,
+ -1.4699122494670955,
+ 3.5892260026690215,
+ 1.90589051129624,
+ -2.5652266835759123,
+ 1.3400521072872122,
+ 0.32166669247415675,
+ -1.1516081986686095,
+ -1.5609199703648886,
+ 3.2627120337764826,
+ 1.8930737826073338,
+ -2.4606642303460022,
+ 1.1552743556127405,
+ 0.44400397199984604,
+ -2.0480556525678653,
+ 2.8173353683480493,
+ -2.7531676983666924,
+ 1.194582586774508,
+ 2.5015018025971147,
+ 1.4305985930079494,
+ 0.5186436276639981,
+ -2.1347723492501394,
+ 2.8568040228702545,
+ -2.6749959501637504,
+ 1.1827364814526975,
+ 2.685466038319735,
+ 1.886174160116729,
+ 0.7209079623583783,
+ -2.270768713692152,
+ 2.8725206213162546,
+ -2.6221884629504832,
+ 1.362360075946719,
+ 0.21506702434410754,
+ -1.8031160233255,
+ 3.2481263995997605,
+ 3.8715739432196794,
+ 3.364970731865716e-16,
+ 1.5153948821971465e-16,
+ -8.672988722618494e-17,
+ -5.273276405025551e-18,
+ -1.1415092453231782e-16,
+ -2.1796209140772277e-16,
+ -6.021874859386041e-17,
+ 2.0777226023683516e-16,
+ -1.1224840912344586e-16,
+ 1.296605610176871e-16,
+ 1.2424252800546476e-16,
+ -2.041481751780872e-16,
+ 2.898259920626813e-16,
+ -1.4806532964699195e-17,
+ -7.312276614968765e-17,
+ 4.896909226313923e-17,
+ 3.7719435932418056e-17,
+ -4.475047113911879e-17,
+ 1.1915536723826364e-16,
+ -3.513656446972123e-16,
+ 1.6973746169588125e-16,
+ 1.4401214464548212e-16,
+ 1.4115837153217417e-16,
+ 1.8735640874326077e-17,
+ -1.38924983878281e-16,
+ -2.3831073447652727e-16,
+ -2.6239719993830572e-17,
+ -1.9604180517506753e-17,
+ 1.2407709188295414e-17,
+ -3.039888751132377e-17,
+ 4.3182963878330805e-16,
+ -2.7524434882701993e-17,
+ -3.9167002004385855e-16,
+ 7.349499742533651e-17,
+ 8.135321324459026e-17,
+ -1.34416849539867e-16,
+ 9.427791031573132e-17,
+ -3.697497338112034e-17,
+ -1.1572256769616857e-16,
+ -2.357464745776129e-16,
+ 2.905058311286233e-16,
+ 1.261450434143367e-17,
+ 1.5840508730390478e-16,
+ 5.732361644992482e-17,
+ 7.444625512977249e-18,
+ -1.431849640329291e-16,
+ 1.464936864831412e-16,
+ -4.453540417985501e-16,
+ -2.1754850110144625e-16,
+ 6.56781406367104e-17,
+ 2.514629062161204e-16,
+ -5.583469134732936e-18,
+ -6.2865726554030096e-18,
+ -3.3848230665669888e-16,
+ -1.4525291556431166e-16,
+ -2.7539944519187362e-17,
+ -3.450997515571231e-16,
+ 2.9480717031389906e-16,
+ -2.2085722355165836e-16,
+ -2.756786186486103e-16,
+ -9.454674401481105e-17,
+ 9.967526381263982e-17,
+ -7.312276614968765e-17,
+ 1.8363409598677214e-17,
+ 2.4153673886548405e-17,
+ 1.7020275079044233e-16,
+ -2.4068887873761723e-16,
+ 8.70194004405785e-17,
+ -3.192917164454687e-17,
+ 4.3344264097778644e-17,
+ 8.850832554317395e-17,
+ 1.7412151894241233e-17,
+ 5.852302833812671e-17,
+ 9.082443125832243e-17,
+ -1.7949819292400698e-16,
+ -1.282129949457193e-16,
+ -6.633988512675282e-17,
+ -1.1712877473750872e-16,
+ 6.981404369947554e-17,
+ -1.8859717966209028e-17,
+ 1.9670354966510996e-16,
+ 5.01602323452156e-16,
+ -1.4508747944180105e-16,
+ 7.312276614968765e-17,
+ 1.7122638679847673e-17,
+ -5.190558343770248e-18,
+ 1.2176098616780567e-16,
+ 3.407984123718474e-17,
+ -1.680831004707752e-16,
+ -3.368279454315928e-16,
+ -3.2260043889568074e-16,
+ -6.849055471939068e-16,
+ -3.331883507363595e-16,
+ -1.6386447934675476e-16,
+ -9.295442133564647e-17,
+ -1.7900188455647516e-16,
+ 2.451763335607174e-16,
+ -2.192028623265523e-16,
+ 4.1259768954145015e-16,
+ 4.748016716054378e-17,
+ 1.2407709188295415e-19,
+ 3.77856103814223e-16,
+ -2.9778502051908996e-17,
+ 1.2473883637299657e-16,
+ -6.327931686030662e-17,
+ -2.2582030722697656e-16,
+ 1.2324991127040111e-17,
+ 1.3333117498589115e-16,
+ 1.4545971071744992e-16,
+ 8.08982639076861e-17,
+ 1.0902240473448904e-16,
+ -2.6469779601696883e-17,
+ -1.8859717966209028e-17,
+ 8.875647972693986e-17,
+ -1.1274471749097767e-16,
+ -1.654361225106055e-16,
+ -1.4119973056280182e-16,
+ 6.317591928373749e-17,
+ -8.127049518333497e-18,
+ 1.3797372617384502e-16,
+ 1.4872707413703438e-16,
+ 4.7314731038033177e-17,
+ -7.907846656006943e-17,
+ 1.985233470127266e-17,
+ -2.7685735102149836e-16,
+ -4.119359450514077e-17,
+ -2.4029596794665454e-16,
+ 1.684139727157964e-16,
+ 5.463527945912747e-17,
+ 1.3431345196329787e-16,
+ -9.247879248342848e-17,
+ -1.2722037821065566e-16,
+ 3.9704669402545323e-16,
+ -5.719953935804186e-17,
+ -7.725866921245277e-17,
+ 6.542998645294449e-17,
+ 7.957477492760125e-17,
+ 9.800435897528272e-16,
+ 1.8098711802660243e-16,
+ 5.645507680674414e-17,
+ 2.865353641883688e-16,
+ 4.9630836753181654e-17,
+ -1.0149506116025648e-16,
+ -1.7470054537119942e-16,
+ 3.545296105402276e-16,
+ 2.4649982254080222e-17,
+ -1.2391165576044355e-16,
+ -4.1524466750161983e-17,
+ 6.137680145143465e-17,
+ -5.128519797828771e-17,
+ -1.6675961149069035e-16,
+ 6.915229920943311e-17,
+ -4.4667753077863494e-18,
+ -1.078643518769148e-16,
+ -2.0861495048587355e-16,
+ 6.948317145445432e-17,
+ 1.8285861416250368e-17,
+ -1.859502017019206e-16,
+ 6.89041450256672e-17,
+ -6.005331247134981e-17,
+ -8.007108329513307e-17,
+ -3.044024654195142e-17,
+ -1.2391165576044355e-16,
+ -4.075156986530775e-17,
+ 2.3773170804774015e-16,
+ 1.1481266902236024e-16,
+ 3.374896899216353e-17,
+ -1.6584971281688202e-16,
+ 2.327065858264805e-16,
+ -2.1051746589474552e-16,
+ 3.1068903807491715e-16,
+ -3.7024604217873514e-16,
+ 2.1006251655784135e-16,
+ -1.2407709188295413e-18,
+ 3.474158572722716e-17,
+ -3.2094607767057474e-17,
+ -5.459392042849982e-17,
+ 6.245213624775358e-18,
+ -2.0352778971867243e-16,
+ -2.1730034691768035e-16
+ ],
+ [
+ 1.7007666568631878,
+ 1.5175762494948455,
+ -0.45404947514374905,
+ -1.2284072191432036,
+ 2.433135844257564,
+ -2.9269715693176166,
+ 2.346428493696462,
+ -1.083154640620633,
+ -0.27793513077740056,
+ 0.034475800836141414,
+ 3.656773754241445,
+ 1.8150029049628722,
+ -2.918213723064406,
+ 2.271515646426063,
+ -0.8897986623551096,
+ -0.43516438850237943,
+ -0.21918898630578834,
+ 3.255738160153588,
+ 1.7582072836762168,
+ -2.8944252620244844,
+ 2.139302812670674,
+ -0.7712180248802442,
+ -1.0151467518752053,
+ 2.301953745701663,
+ -2.923047604778337,
+ 1.6898552722866904,
+ 3.181256645812372,
+ 0.07365693385881698,
+ -0.27168992803210434,
+ -1.1302495755996664,
+ 2.4199292703825956,
+ -2.928950956876944,
+ 1.642317973343362,
+ 3.371731534843994,
+ 0.33066296170677084,
+ -0.12793108340603385,
+ -1.3169176661666468,
+ 2.485632253277997,
+ -0.7721687490579865,
+ -1.0159757333125699,
+ 2.3042564159241756,
+ -2.9260608073349212,
+ 4.9908452949018764,
+ 4.974037465343503,
+ 2.321607307564467,
+ 2.210096692295039,
+ -0.03727859306249846,
+ -0.1738161743560552,
+ -0.9608810590772897,
+ 2.270106543061451,
+ -2.9212837505564364,
+ 2.503572723524125,
+ -1.3478716966154705,
+ -0.32417736193086544,
+ 1.1279128894325456,
+ 1.6551447297288662,
+ -3.555336139006919,
+ -1.9051448419099382,
+ 2.440390039206106,
+ -1.232654882881494,
+ -0.5255344816462009,
+ 1.235004772205707,
+ 1.7253534299137328,
+ -3.2184066927864876,
+ -1.885523799229357,
+ 2.3242190223076724,
+ -1.0450034996399633,
+ -0.6485569869313356,
+ 2.120751743999376,
+ -2.8919494744042673,
+ 2.6492584912199204,
+ -1.1093273155722763,
+ -2.3725353711920625,
+ -1.5989801292148151,
+ -0.6210770079339372,
+ 2.204193108437713,
+ -2.918113647196562,
+ 2.562364238279837,
+ -1.0896884952570205,
+ -2.528220749325914,
+ -2.0705428002066304,
+ -0.8252538709954162,
+ 2.3294208185081033,
+ -2.928532294983914,
+ 2.5014126703936426,
+ -1.2574426078965872,
+ -0.4216283268236766,
+ 1.888260351358839,
+ -3.3959392112841065,
+ -4.060311809897885,
+ -1.5223039253310935,
+ -1.1078394851619988,
+ 1.3330659325363516,
+ -2.5625843090504286,
+ 2.8834319882186406,
+ -2.2913787049719234,
+ 0.8886419660630921,
+ 0.7257011729341694,
+ -1.3940409696171774,
+ -2.2247893251086324,
+ 3.5702686786767437,
+ 1.954318109809856,
+ -2.210612383814839,
+ 0.7681275593293829,
+ 0.9220903500143305,
+ -1.4422021375493093,
+ -2.145632779204133,
+ 3.044552586945511,
+ 1.8338661291086622,
+ -2.071636092065622,
+ 0.5687749393240126,
+ 1.0379845735552127,
+ -2.4421282688434673,
+ 2.889741577406364,
+ -2.480094522004752,
+ 0.8584601774752944,
+ 1.9816032395785723,
+ 2.0319944316029614,
+ 0.890272319626365,
+ -2.508289430174153,
+ 2.886147846748005,
+ -2.3638922427250115,
+ 0.7541229209688182,
+ 1.9410804129932402,
+ 2.4015142999176518,
+ 1.0221357201106758,
+ -2.6090398416803833,
+ 2.8750008720884765,
+ -2.288684375721927,
+ 0.7925805324244972,
+ 0.820056678986231,
+ -2.2475197483853133,
+ 4.918475457435311,
+ 4.81884614196689,
+ 0.8947269209781346,
+ 0.7209975526892299,
+ -3.077103512937809,
+ -3.2202192212412677,
+ 0.8511459585513196,
+ 0.7623997663051914,
+ -2.2049738925617937,
+ 2.8690122377675493,
+ -2.621556756662079,
+ 1.4464456666881738,
+ -4.330573657610917e-06,
+ -0.5720270910597564,
+ -3.2757015579166735,
+ -1.5738413554653132,
+ 2.8813980030670625,
+ -2.5613962236270678,
+ 1.2677373185631082,
+ 0.1452338891457547,
+ -0.29720811351070053,
+ -3.107694240005338,
+ -1.6287590796777056,
+ 2.8873438195681387,
+ -2.4567777270244346,
+ 1.1540322552675708,
+ 0.5382951085719918,
+ -2.0461487205242515,
+ 2.815079600199822,
+ -1.8013304332319586,
+ -3.2957481726159505,
+ 0.441949703435388,
+ 0.5579189515783542,
+ 0.6607892937175117,
+ -2.1866862401677394,
+ 2.854284161376765,
+ -1.8664579352003108,
+ -3.7187972408534757,
+ 0.22102985650508197,
+ 0.40996571493249456,
+ 0.8564053650244305,
+ -2.2701306202720968,
+ 2.869492574432609,
+ -2.574879089864728,
+ 1.360899697141226,
+ 0.21740782449720064,
+ -1.2496941074791827,
+ -1.368745833855528,
+ -6.205922545679089e-16,
+ -3.5601853564282306e-16,
+ -1.1563984963491327e-16,
+ -1.2176615604663413e-16,
+ 3.8546616544971083e-17,
+ 1.1197957542436612e-16,
+ 1.3813916229635562e-16,
+ -7.940933880509066e-18,
+ 3.153212495052141e-16,
+ -1.3098404999777193e-16,
+ -9.900834944376894e-17,
+ -1.2043749718772083e-16,
+ -2.740862959694457e-16,
+ -1.1692197958437046e-16,
+ -9.197214435823976e-18,
+ 4.0366413892587744e-17,
+ 3.29217883796105e-17,
+ 8.41242682966429e-17,
+ 1.157432472114824e-16,
+ 1.635749661323612e-16,
+ -6.377562522783843e-17,
+ 3.2714993226472245e-17,
+ -1.0885696861197843e-16,
+ -8.3876114112877e-17,
+ -7.833400400877171e-17,
+ 3.0556051827708837e-16,
+ -7.113753267956038e-18,
+ 3.813302623869457e-17,
+ -1.7776111363764562e-16,
+ -1.5695752123193698e-16,
+ -2.725560118362226e-16,
+ 3.697497338112034e-17,
+ -7.545955138014994e-17,
+ -1.3452024711643613e-16,
+ -1.4277137372665258e-16,
+ 3.9506146055532597e-16,
+ -7.572838507922967e-17,
+ -1.8404768629304866e-17,
+ 1.9830621210193145e-16,
+ 4.648755042548015e-17,
+ -2.1543919053943603e-16,
+ -1.9976411793155616e-16,
+ -2.491881595315996e-16,
+ -9.090714931957773e-17,
+ -6.361018910532783e-17,
+ 6.878006793378425e-17,
+ -4.9920349967575214e-17,
+ 5.254251250936832e-16,
+ 2.1969917069408413e-16,
+ -4.801783455870325e-17,
+ -2.1473608701876596e-16,
+ -9.657333651556597e-17,
+ 4.921724644690514e-18,
+ 2.067951531382569e-16,
+ 2.3161057151484775e-16,
+ 4.524677950665061e-17,
+ 1.9736529415515238e-16,
+ -3.077111878697263e-17,
+ 1.2672406984312384e-16,
+ 2.5175241943051397e-16,
+ 1.0645814483557465e-16,
+ 3.639594695233322e-18,
+ 7.080666043453917e-17,
+ -3.110199103199384e-17,
+ -6.633988512675282e-17,
+ -9.620110523991711e-17,
+ 2.8587361969832636e-16,
+ -6.989676176073084e-17,
+ 1.4475660719677984e-16,
+ 7.031035206700734e-19,
+ 6.619512851955604e-17,
+ 1.064995038662023e-17,
+ 1.766030607800714e-17,
+ -3.402297257007172e-17,
+ 1.9864742410460957e-16,
+ 1.2587620971525699e-16,
+ 2.249931266144235e-17,
+ 1.5253210495477828e-16,
+ -5.600012746983997e-17,
+ 1.0244631886469247e-16,
+ -6.89041450256672e-17,
+ -2.240005098793599e-16,
+ 6.162495563520056e-17,
+ -1.590668317939472e-16,
+ -1.5633713577252223e-17,
+ 1.819797347616661e-17,
+ 1.1911400820763597e-17,
+ 8.172544452023912e-17,
+ 6.941699700545007e-16,
+ 2.8289576949313546e-16,
+ 1.0608591355992579e-16,
+ 2.426947917230583e-16,
+ 2.4153673886548405e-17,
+ 6.112864726766875e-17,
+ 6.964860757696493e-17,
+ 2.0927669497591597e-17,
+ -8.400019120475995e-17,
+ 2.0361050777992774e-16,
+ -2.2548943498195534e-16,
+ 3.3004506440865804e-17,
+ -3.048160557257907e-17,
+ -3.3715881767661403e-16,
+ -1.7647898368818843e-16,
+ -4.714929491552257e-18,
+ 8.081554584643079e-17,
+ 9.065899513581182e-17,
+ 1.1580528575742386e-17,
+ -1.2176098616780567e-16,
+ 8.768114493062093e-18,
+ -4.7232012976777874e-17,
+ -6.176971224239734e-17,
+ 3.192917164454687e-17,
+ 1.890107699683668e-17,
+ -1.0439019330419208e-16,
+ 1.2639319759810263e-16,
+ 9.711100391372544e-17,
+ 1.7668577884132669e-16,
+ 1.6957202557337067e-17,
+ -6.997947982198614e-17,
+ -1.678349462870093e-16,
+ -7.246102165964522e-17,
+ 7.65555656917827e-17,
+ 1.7147454098224261e-16,
+ 2.456726419282492e-17,
+ 2.132471619161705e-16,
+ 2.0547166415817205e-16,
+ 1.4289545081853553e-16,
+ -9.644925942368301e-17,
+ 1.4876843316766203e-16,
+ 5.045801736573468e-18,
+ 2.385588886602932e-16,
+ 1.1750100601315758e-16,
+ 2.4774059345963176e-17,
+ -9.356963691623279e-17,
+ 2.2921174773844397e-16,
+ 2.633665522186413e-17,
+ -9.839313386318263e-17,
+ -5.446157153049134e-16,
+ -1.4823076576950256e-16,
+ -3.9598686886561966e-17,
+ -2.1060018395600082e-16,
+ 4.342698215903395e-18,
+ 4.028369583133244e-17,
+ 3.364970731865716e-16,
+ -3.596581303380564e-16,
+ -3.441071348220595e-17,
+ -4.1524466750161983e-17,
+ -1.2738581433316626e-16,
+ 2.216844041642114e-17,
+ 1.3052910066086777e-16,
+ 2.7685735102149836e-16,
+ 5.2112378590840736e-18,
+ 3.879477072873699e-17,
+ 1.163015941249557e-16,
+ 3.537024299276746e-16,
+ -1.1200025493967995e-16,
+ 7.610061635487853e-17,
+ 1.5563403225185213e-16,
+ 7.014491594449675e-17,
+ 1.0893968667323373e-16,
+ 2.2582030722697652e-17,
+ 7.891303043755883e-17,
+ 1.2457340025048597e-16,
+ 4.6694345578618406e-17,
+ -3.260332384377758e-16,
+ -1.5550995515996918e-16,
+ -4.561901078229947e-17,
+ 3.0460926057265244e-17,
+ -1.7426627554960908e-16,
+ 1.3623664688748366e-16,
+ -6.538862742231684e-17,
+ 1.020740875890436e-16,
+ -1.363607239793666e-16,
+ 1.6957202557337065e-18,
+ -5.350049105628129e-17,
+ -9.578751493364059e-17,
+ 4.3344264097778644e-17,
+ -6.605037191235926e-17,
+ 3.7678076901790406e-16,
+ 2.1849975880588224e-16
+ ],
+ [
+ -4.0662298946718245,
+ -3.3989376297344576,
+ 1.8987161710054412,
+ -0.45031575012711605,
+ -1.219337427974291,
+ 2.4672334111484844,
+ -2.90902908465564,
+ 2.3313955911405033,
+ -0.8392621597582627,
+ -2.0906597727333125,
+ -2.4785276961504037,
+ -1.0633789955758148,
+ 2.528946678232316,
+ -2.9000801198390302,
+ 2.2088442123216945,
+ -0.6362596767005909,
+ -1.6195615792063245,
+ -2.329528676081525,
+ -1.0843830022337757,
+ 2.6172419802385267,
+ -2.876333827037255,
+ 2.1270319835050637,
+ -0.6751425939394488,
+ -1.0074538124506216,
+ 2.288340396958097,
+ -1.8697959418467585,
+ -3.185455887808111,
+ 1.7442179450457782,
+ 1.2418507655751791,
+ -0.5532838647875082,
+ -1.1946031412603366,
+ 2.405524001360154,
+ -1.8905911035998189,
+ -3.5218683478480246,
+ 1.6785817738070163,
+ 1.1366335685013829,
+ -0.35370308976252807,
+ -1.3095986538789368,
+ 2.4694311953910364,
+ -0.6729722140041957,
+ -1.010255858750783,
+ 2.2908390154357283,
+ -4.973327421902265,
+ -4.880465074126186,
+ -1.0308214053600313,
+ -0.8594394802122312,
+ 2.8213542845334447,
+ 2.964153931972474,
+ -0.7294762385330706,
+ -0.9577688745864801,
+ 2.255322346422107,
+ -2.9083249186383933,
+ 2.485998458680929,
+ -1.3355189470237454,
+ -0.10797337924011015,
+ 0.36515335677883515,
+ 3.338631892401131,
+ 1.6229438488789043,
+ -2.9117348217478196,
+ 2.42177417937358,
+ -1.1507984152955077,
+ -0.2511603713834308,
+ 0.10689122899450328,
+ 3.1526071329981358,
+ 1.6713310366994372,
+ -2.907925818935944,
+ 2.306175517071178,
+ -1.0368238869011586,
+ -0.7382800954049871,
+ 2.107072127892573,
+ -2.8728857753733146,
+ 1.7549993152179042,
+ 3.2437936687856643,
+ -0.2515054150578023,
+ -0.4512393624520846,
+ -0.8565176355742208,
+ 2.2400808458272397,
+ -2.8985825177387112,
+ 1.8127374310520996,
+ 3.6459345481020535,
+ -0.0041750195658872445,
+ -0.296274834074634,
+ -1.0494207553927262,
+ 2.3155789114105185,
+ -2.9085441556187237,
+ 2.434679291480336,
+ -1.2479562062899248,
+ -0.42230403956571416,
+ 1.4688369840547202,
+ 1.6413362555110014,
+ -1.4111679685597396,
+ -1.2831198557233383,
+ 0.24545035611889843,
+ 1.3270508301511896,
+ -2.5457162657422594,
+ 2.8559326829568534,
+ -2.2754764445103914,
+ 0.8794339310687712,
+ 0.3878287949479137,
+ 0.181339438326263,
+ -3.6889312976117137,
+ -1.8484211588632598,
+ 2.8420642413877713,
+ -2.193498316841839,
+ 0.6855177273817644,
+ 0.536361654026537,
+ 0.4059686558359285,
+ -3.2715421382448686,
+ -1.7849076259111791,
+ 2.8051224354260755,
+ -2.0552719439566354,
+ 0.5640047070021182,
+ 1.1203680267491687,
+ -2.426295469592715,
+ 2.870414641123457,
+ -1.6289763474249672,
+ -3.1016390480498726,
+ -0.2619126591658593,
+ 0.16346426426195648,
+ 1.2339297516834407,
+ -2.5320737285942037,
+ 2.866568920098208,
+ -1.5754704269231152,
+ -3.272098656667161,
+ -0.5325212874636659,
+ 0.019250030855621277,
+ 1.4125647776622914,
+ -2.5930184983569378,
+ 2.855515095810511,
+ -2.2114813179410815,
+ 0.7862633366762019,
+ 0.8177554014556487,
+ -3.1592576085284683,
+ -3.0179403238783546,
+ 0.7392747311736861,
+ 0.9152545228209708,
+ 4.802131732305827,
+ 4.8989145607028695,
+ -2.2515760731124748,
+ 0.8447399410791507,
+ 0.7560371972033629,
+ -2.2519888824217147,
+ 2.8508626551966625,
+ -2.6048085740589944,
+ 1.032418970043516,
+ 2.413926278468775,
+ 1.8932903160947379,
+ 0.7293839149402133,
+ -2.327743181978998,
+ 2.863327990022625,
+ -2.5067463574810938,
+ 0.9022109427210316,
+ 2.0463292891102305,
+ 1.9376831580285763,
+ 0.8336430029678735,
+ -2.4449574181579203,
+ 2.8691422231407238,
+ -2.442216977361045,
+ 1.06025957509062,
+ 0.5332515893731902,
+ -2.0338716073773857,
+ 1.8153205180009164,
+ 3.0074740221307095,
+ -2.1581392347226545,
+ -1.445254271563401,
+ 0.9456810229649518,
+ 0.7316870431868292,
+ -2.1734780848528237,
+ 1.9356475140263238,
+ 3.5297865579212413,
+ -2.2426277660236487,
+ -1.3996466570107942,
+ 0.7513672441088136,
+ 0.8517346198514517,
+ -2.2547128238240495,
+ 2.860339134413547,
+ -2.5596416872828893,
+ 1.3517229351214792,
+ -1.1446380850666467,
+ -1.5657105900077792,
+ 1.6123404499883613e-15,
+ 2.3141204816783502e-15,
+ 2.6945408453914877e-16,
+ 2.0435497033122546e-16,
+ -1.3528538918304768e-16,
+ -3.1681017460780955e-16,
+ -3.239239278757656e-16,
+ -7.572838507922967e-17,
+ -4.831148367615958e-16,
+ 9.946846865950157e-17,
+ 2.3533288427133637e-16,
+ 5.206274775408756e-16,
+ 1.7187262165203376e-16,
+ 1.4572854441652965e-16,
+ -8.588202709831809e-17,
+ -3.905946852475396e-16,
+ -7.974021105011186e-17,
+ -4.9847971663976824e-17,
+ -8.486873084794063e-17,
+ 2.6149247114332584e-17,
+ 1.9554549680753572e-16,
+ 6.580221772859335e-17,
+ 3.407984123718474e-17,
+ 3.1846453583291565e-17,
+ 5.587605037795702e-17,
+ -5.982273587560065e-16,
+ -3.474158572722716e-17,
+ -3.192917164454687e-17,
+ 3.8827857953239114e-16,
+ 1.979443205839395e-16,
+ 2.5832850530031054e-16,
+ 3.197053067517452e-17,
+ -5.6248281653605874e-18,
+ 1.242735472784355e-16,
+ -1.2531786280178368e-17,
+ -4.914693609483814e-16,
+ 8.036059650952663e-17,
+ 4.582580593543773e-17,
+ -2.603964568316931e-16,
+ 4.195460066868956e-16,
+ 9.864128804694854e-17,
+ 3.1904356226170272e-16,
+ 4.782137916322191e-16,
+ 1.1004087086369495e-16,
+ 6.071505696139223e-17,
+ -2.716461131624143e-16,
+ 9.512577044359817e-18,
+ -3.090346768498111e-16,
+ -2.862044919433476e-16,
+ 1.256487350468049e-16,
+ 1.950491884400039e-16,
+ 1.188038154779286e-16,
+ 1.0091603473146936e-16,
+ -2.246622543694023e-16,
+ -2.4616895029578104e-16,
+ -1.0174321534402239e-16,
+ -1.8255876119045318e-16,
+ 2.0646428089323568e-16,
+ -1.1911400820763599e-16,
+ -9.429858983104514e-17,
+ 2.352294866947672e-17,
+ 3.90429249125029e-17,
+ 6.27002904315195e-17,
+ -1.0918784085699964e-17,
+ -1.67752228225754e-16,
+ -1.0906376376511669e-16,
+ -2.750375536738817e-16,
+ 6.104592920641344e-17,
+ -5.67445900211377e-17,
+ 1.6436078771428657e-16,
+ -5.223645568272369e-17,
+ 1.1898993111575303e-16,
+ 8.859104360442925e-17,
+ 8.788794008375919e-18,
+ -3.662755752384806e-16,
+ -2.2071246694446158e-16,
+ 4.4915907261629397e-17,
+ 8.850832554317395e-17,
+ 1.948837523174933e-16,
+ -1.495542547495874e-16,
+ 7.407402385412363e-17,
+ 2.807450999004976e-16,
+ -1.2738581433316626e-16,
+ 1.4541835168682227e-16,
+ -5.238121228992047e-17,
+ -8.280077931655806e-17,
+ -8.536503921547244e-17,
+ -1.2738581433316625e-17,
+ -4.0631111688604714e-16,
+ -6.878833973990977e-16,
+ -1.4417758076799272e-16,
+ 8.768114493062092e-17,
+ 8.417596708492747e-17,
+ -1.7023377006341307e-16,
+ -1.6915843526709413e-16,
+ -3.056432363383437e-17,
+ 6.898686308692251e-17,
+ -1.3904906097016395e-16,
+ 2.0927669497591598e-16,
+ -1.7569316210626305e-16,
+ 1.282233347033762e-16,
+ 2.455072058057386e-16,
+ 1.463282503606306e-16,
+ -3.3914405114674135e-17,
+ -7.239898311370375e-17,
+ -5.494547218883486e-17,
+ -5.434576624473391e-17,
+ 1.6812445950140285e-16,
+ 1.6427806965303127e-16,
+ 2.957170689877074e-17,
+ 5.92274243285039e-17,
+ 7.427564912843343e-17,
+ 5.806807900122254e-17,
+ 4.301339185275743e-17,
+ -1.7594131629002896e-16,
+ -1.0604455452929814e-16,
+ -2.0894582273089477e-16,
+ -1.9356026333740845e-17,
+ 3.7603630646660633e-16,
+ 1.742869550649229e-16,
+ 1.2904017555827232e-16,
+ -5.796468142465341e-17,
+ 1.1150394657214813e-16,
+ 5.459392042849982e-18,
+ -1.531938494448207e-16,
+ -2.7114980479488247e-16,
+ -1.8134900954459438e-16,
+ 1.283784310682299e-16,
+ -2.7660919683773245e-16,
+ -8.859104360442925e-17,
+ -1.62292836182904e-16,
+ -1.5453801794021937e-16,
+ 5.012714512071347e-17,
+ -3.159829939952566e-17,
+ -3.3031195940317706e-16,
+ -9.303713939690178e-17,
+ 6.435465165662555e-17,
+ 5.872982349126496e-16,
+ 1.4194419311409955e-16,
+ 7.46116912522831e-17,
+ 1.771717474512016e-16,
+ 9.471218013732166e-17,
+ -8.164272645898382e-17,
+ -4.3327720485527585e-16,
+ 3.0539508215457777e-16,
+ -1.7701665108634792e-17,
+ 8.213903482651564e-17,
+ 2.7313503826500974e-16,
+ -7.295733002717704e-17,
+ -9.537392462736408e-17,
+ -5.1450634100798315e-17,
+ 2.782635580628385e-16,
+ 5.2029660529585435e-17,
+ -1.132410258585095e-16,
+ -3.5039370747746247e-16,
+ 8.586134758300426e-17,
+ -7.34122793640812e-17,
+ -3.3244388818506177e-16,
+ -1.8814223032518612e-16,
+ -4.284795573024683e-17,
+ 8.271806125530277e-18,
+ -1.2804755882320868e-16,
+ -6.766337410683766e-17,
+ -9.417451273916219e-17,
+ 6.815968247436948e-17,
+ 6.8573272780646e-17,
+ -1.1704605667625342e-16,
+ -1.0620999065180874e-16,
+ -6.774609216809297e-17,
+ -8.147729033647321e-17,
+ 7.940933880509064e-17,
+ 4.4006008587821066e-17,
+ 1.5435190230239494e-16,
+ -4.135903062765138e-18,
+ 7.372247209378859e-18,
+ -1.3718790459191964e-16,
+ -1.5815693312013887e-16,
+ -1.0554824616176632e-16,
+ -1.0498576334523027e-15,
+ -6.187310981896647e-17
+ ],
+ [
+ 5.1619503933364435,
+ 4.217872551488591,
+ -2.832670563420011,
+ 1.9256553721458602,
+ -0.4750124176914126,
+ -1.294449112716427,
+ 2.472241994236629,
+ -2.9288456480054994,
+ 1.7013739388424585,
+ 3.5033129405491565,
+ 0.49719717552686093,
+ -0.035543546785995125,
+ -1.4042918507386608,
+ 2.5362798710442926,
+ -2.913490996061999,
+ 1.5168023521672787,
+ 2.9625379378277663,
+ 0.6505200598723625,
+ 0.057425436931897424,
+ -1.5812144499963985,
+ 2.626303917865592,
+ -2.8983978669776986,
+ 2.0906441419245945,
+ -0.7010770402480905,
+ -0.9956341336275729,
+ 1.4557799375894436,
+ 2.1744206156037635,
+ -3.0264148162134417,
+ -1.8270042758531535,
+ 2.0042471671475504,
+ -0.5001836866810663,
+ -1.1845396224424931,
+ 1.5390518871555883,
+ 2.551210310911726,
+ -3.1752044785459272,
+ -1.7943005579084124,
+ 1.851777838039435,
+ -0.3754453247975857,
+ -1.298343346168174,
+ 2.5225014925329994,
+ -0.6986152945728723,
+ -0.9968720529079963,
+ 3.3706374920535938,
+ 3.230421202196264,
+ -0.6028744843228724,
+ -0.7801753590809761,
+ -4.737374451793306,
+ -4.8409724873443905,
+ 2.1277522198185705,
+ -0.7529120641280895,
+ -0.9416034811522351,
+ 2.312290718020985,
+ -2.923016226315126,
+ 2.5096529683994784,
+ -0.9577310292423721,
+ -2.2915871275000144,
+ -2.055538016526049,
+ -0.8203871509098791,
+ 2.3854207662919142,
+ -2.9273750485011956,
+ 2.404062387405162,
+ -0.8236717865765302,
+ -1.9254654246468637,
+ -2.0813975152927155,
+ -0.9221267586160076,
+ 2.4929921467333567,
+ -2.9249251120919397,
+ 2.332096398404996,
+ -0.973252303845984,
+ -0.7204899193257726,
+ 2.1050387154676624,
+ -1.8485496763851519,
+ -3.090998721652359,
+ 2.0423765893690486,
+ 1.3916536139188707,
+ -0.8540557511181273,
+ -0.9156891792619275,
+ 2.2398352877950267,
+ -1.966117183889141,
+ -3.6141787773387772,
+ 2.100571382950277,
+ 1.3358234874416264,
+ -0.6576454915274205,
+ -1.0363800705948925,
+ 2.3148718312022174,
+ -2.9274822568386245,
+ 2.4598528529138255,
+ -1.2729264242951792,
+ 0.9477236878591625,
+ 1.3275167537196684,
+ 3.9274217403813934,
+ 3.291656195302676,
+ -1.8416755793457122,
+ 0.26662293351939026,
+ 1.3145168141516221,
+ -2.59497515932384,
+ 2.8740092134086197,
+ -2.3005198474870303,
+ 0.7531461591181876,
+ 1.9425609632034202,
+ 2.6332390552645877,
+ 1.1522386892561431,
+ -2.6497145866595315,
+ 2.860568668011444,
+ -2.1674604510727007,
+ 0.5504754938194975,
+ 1.4823810542169726,
+ 2.458389754190876,
+ 1.166532023746659,
+ -2.7311578124476923,
+ 2.8247420359831126,
+ -2.082453811606854,
+ 0.494735259161435,
+ 1.1059084111847255,
+ -2.4286630579695117,
+ 1.8888779659212176,
+ 3.2456050929371805,
+ -1.611340073988234,
+ -1.1768230877218928,
+ 0.3728974616030686,
+ 1.2920142283389109,
+ -2.5362008043660937,
+ 1.9038309409982883,
+ 3.575096456361734,
+ -1.5270020823943888,
+ -1.0660915156365542,
+ 0.16900212207017964,
+ 1.4029860853568277,
+ -2.5970093111707757,
+ 2.8629512238056813,
+ -2.2383648104202023,
+ 0.809703051477603,
+ 0.3756009839006278,
+ 0.2372645967980079,
+ -2.127722869402948,
+ -2.2426501108457657,
+ -5.015886365741068,
+ -5.039429464620936,
+ 2.8723623912044163,
+ -2.2790426664444055,
+ 0.8715523702309745,
+ 0.8319546804207197,
+ -2.2526428303846235,
+ 2.867503431978041,
+ -1.7472811304198346,
+ -3.507019853104192,
+ 0.10787023270636448,
+ 0.35691333572665274,
+ 0.9511060716590606,
+ -2.3311187566246967,
+ 2.885671436756082,
+ -1.6737595375164065,
+ -3.1627398316198816,
+ -0.1371474052913014,
+ 0.2359849634968566,
+ 1.1400308724544528,
+ -2.45020275346865,
+ 2.887961513653493,
+ -2.4170696075474742,
+ 1.0878874509723218,
+ 0.5173704815293809,
+ -1.2509201887770078,
+ -1.75754328611542,
+ 3.2055572350982704,
+ 1.8818243852209902,
+ -2.3435568163017138,
+ 0.8976044264494982,
+ 0.7174510465847569,
+ -1.3887021887192204,
+ -2.2137627444614276,
+ 3.5718893788447024,
+ 1.9542214919817609,
+ -2.2159361401613134,
+ 0.7753560401282531,
+ 0.8361051476499913,
+ -2.315753732741775,
+ 2.8773919811572743,
+ -2.58587006476972,
+ 3.2007095103047756,
+ 4.033685525105407,
+ -8.96663784007482e-16,
+ -1.244245077402264e-15,
+ -2.4956039080724845e-16,
+ -7.833400400877171e-17,
+ 3.7078370957689466e-17,
+ 1.1142122851089283e-16,
+ 3.7822833508987186e-16,
+ 1.9289851884736603e-16,
+ 2.534481396862477e-16,
+ -7.543887186483611e-17,
+ -7.829264497814406e-17,
+ -6.662112653502084e-16,
+ -1.0902240473448904e-16,
+ -2.721424215299461e-16,
+ -3.817438526932222e-17,
+ 2.0778776987332053e-16,
+ 5.735463572289556e-17,
+ 1.3349661110840175e-16,
+ 2.49022723409089e-16,
+ -7.957477492760125e-17,
+ -2.689370966563031e-17,
+ 8.41242682966429e-17,
+ 4.6983858793011966e-17,
+ 1.8575374630643928e-17,
+ -2.1771393722395686e-16,
+ 2.894304963323044e-16,
+ 2.043136113005978e-17,
+ 3.5734202462290796e-17,
+ -1.6295458067294643e-16,
+ -1.0538281003925571e-16,
+ 5.219509665209604e-17,
+ -5.976379925695625e-17,
+ -4.0358142086462215e-16,
+ -1.3317607862103744e-17,
+ 1.2341534739291173e-16,
+ 2.867008003108794e-16,
+ 7.055850625077326e-17,
+ 3.722312756488624e-19,
+ 1.9058241313221755e-16,
+ -4.549493369041652e-16,
+ -2.5973471234165066e-17,
+ -2.564259898914386e-16,
+ -5.008578609008583e-16,
+ -6.702230913210907e-17,
+ 2.7958704704292335e-17,
+ 2.422812014167818e-16,
+ 5.3518585632180884e-17,
+ 3.087038046047899e-16,
+ 1.0819522412193601e-16,
+ -2.1672132048889322e-17,
+ 3.532061215601428e-17,
+ -7.93783195321199e-17,
+ -1.0889832764260608e-16,
+ 7.676236084492096e-17,
+ 2.2995621028974166e-17,
+ 6.154223757394526e-17,
+ 3.5837600038859924e-17,
+ 4.648755042548015e-17,
+ 1.654361225106055e-19,
+ 6.443736971788086e-17,
+ -9.980451078335123e-17,
+ 1.3234889800848441e-17,
+ -1.4599737811560938e-16,
+ 5.492479267352103e-17,
+ 1.343341314786117e-16,
+ 1.2000839724495895e-16,
+ 1.2755125045567687e-16,
+ -5.4428484305989215e-17,
+ 9.979934090452278e-17,
+ 2.9737143021281345e-17,
+ 7.874759431504822e-17,
+ -1.1248622354955485e-16,
+ -1.1779051922755114e-16,
+ 1.1745964698252991e-17,
+ 3.1834045874103265e-16,
+ 2.2499312661442353e-16,
+ -1.2461475928111362e-16,
+ -1.0922919988762729e-16,
+ -5.906069573628618e-17,
+ 1.3131492224279314e-16,
+ 1.0339757656912846e-18,
+ -1.2333262933165643e-16,
+ 9.232369611857479e-17,
+ -4.5412215629161213e-17,
+ 4.892773323251158e-17,
+ 7.254373972090053e-17,
+ 1.311908451509102e-16,
+ 8.826017135940804e-17,
+ 2.564259898914386e-16,
+ 3.8054444080502033e-16,
+ 1.4628689133000294e-16,
+ -5.381637065269998e-16,
+ -2.2342148345057277e-16,
+ 7.014491594449675e-17,
+ 5.901933670565852e-17,
+ 4.768696231368204e-17,
+ 7.221286747587932e-17,
+ 1.2722037821065566e-16,
+ -3.639594695233322e-17,
+ 1.5534451903745857e-16,
+ -1.156605291502271e-16,
+ -8.817745329815274e-17,
+ -8.70194004405785e-17,
+ 1.726739528704445e-16,
+ 2.1490152314127657e-16,
+ 5.242257132054812e-17,
+ -2.4799908740105458e-17,
+ -4.954811869192635e-17,
+ 1.3753945635225468e-16,
+ -3.321130159400406e-17,
+ 2.1961645263282882e-17,
+ -1.1216569106219055e-16,
+ -1.528629771997995e-16,
+ -1.3152171739593138e-17,
+ 1.1580528575742386e-17,
+ 2.646977960169688e-18,
+ 1.5699888026256463e-16,
+ 8.180816258149442e-17,
+ -1.0426611621230913e-16,
+ -1.561716996500116e-16,
+ -7.907846656006943e-17,
+ 6.571949966733805e-17,
+ 9.59529510561512e-17,
+ 7.138568686332629e-17,
+ -1.823933250679426e-17,
+ 1.5104317985218283e-16,
+ 1.1725285182939166e-17,
+ -1.465764045443965e-16,
+ 2.130817257936599e-16,
+ 7.109617364893273e-17,
+ 1.0670629901934056e-16,
+ 1.176044035897267e-16,
+ 2.7321775632626504e-16,
+ 4.342698215903395e-18,
+ 2.585353004534488e-16,
+ -4.582580593543773e-17,
+ 1.3069453678337836e-17,
+ -1.122897681540735e-16,
+ 6.497503711604032e-17,
+ -8.528232115421714e-17,
+ 5.40148939997127e-17,
+ -1.565025718950328e-16,
+ 1.2335330884697024e-17,
+ 3.0353392577633346e-16,
+ 8.87151206963122e-17,
+ 2.456726419282492e-17,
+ -8.586134758300426e-17,
+ -9.926167350636331e-17,
+ 1.2304311611726287e-16,
+ 8.12291361527073e-17,
+ -4.0118259708821836e-17,
+ -2.9141572980243165e-16,
+ -4.2765237668991525e-17,
+ 5.89159391290894e-17,
+ 8.652309207304668e-17,
+ -8.337980574534518e-17,
+ -6.03635052010572e-17,
+ -1.3389986165702134e-17,
+ 2.4649982254080225e-16,
+ 4.226892930145971e-17,
+ 5.815079706247785e-17,
+ 2.1680403855014853e-16,
+ 6.220398206398768e-17,
+ 8.41242682966429e-17,
+ 8.271806125530276e-17,
+ -6.283470728105936e-17,
+ 1.2639319759810263e-16,
+ -1.1266199942972237e-16,
+ 8.834288942066334e-17,
+ -6.267961091620567e-17,
+ 7.750682339621868e-17,
+ -4.884501517125628e-17,
+ 5.67445900211377e-17,
+ -1.6957202557337067e-17,
+ -2.4257071463117533e-17,
+ 5.568993474013259e-17,
+ 6.218330254867386e-17,
+ -1.2738581433316625e-17,
+ 6.230324373749403e-16,
+ 4.661989932348864e-16
+ ],
+ [
+ -4.54367499339407,
+ -3.63663517287054,
+ 2.7469755223057652,
+ -2.8343011005071963,
+ 1.92666377665278,
+ -0.37898982196989034,
+ -1.2966327156631978,
+ 2.476347903857862,
+ -1.996235864718167,
+ -3.7496453849296962,
+ 1.6394733367518357,
+ 1.1175701963184468,
+ -0.2541884070810717,
+ -1.408718242454601,
+ 2.576196562856644,
+ -1.891100014228631,
+ -3.3185149848461166,
+ 1.2359910434260857,
+ 0.9837419014420624,
+ -0.05102616916775602,
+ -1.5856115072116381,
+ 2.629081949359271,
+ -2.8849671022409127,
+ 2.091879304916647,
+ -0.6982178266275714,
+ -0.5617518796049357,
+ -0.44823966207935817,
+ 3.3006871443056958,
+ 1.8045797848300813,
+ -2.8590490669688906,
+ 1.9472325944428817,
+ -0.4970601190805759,
+ -0.6796303012395304,
+ -0.7404472853666161,
+ 3.6136337559940954,
+ 1.854871183623835,
+ -2.80735063037178,
+ 1.85067751480227,
+ -0.3746862285160542,
+ -1.3862517680370128,
+ 2.5253051496612917,
+ -0.6987250963856778,
+ -0.6593445109687311,
+ -0.5184348316195341,
+ 2.029370205463329,
+ 2.1538593351915245,
+ 5.075863568330313,
+ 5.106196397158567,
+ -2.8926079169365235,
+ 2.128738315615358,
+ -0.7553592600632447,
+ -1.0309897854556542,
+ 2.3125812484281663,
+ -2.9249608147273705,
+ 1.7014061962270728,
+ 3.4503385791639856,
+ 0.0977587025131668,
+ -0.2500953364984538,
+ -1.1458757573643035,
+ 2.3871761912986016,
+ -2.9296969569622027,
+ 1.6208271125770306,
+ 3.0981040425972184,
+ 0.3259536427418615,
+ -0.12894242131449488,
+ -1.3320984827278648,
+ 2.494739426724692,
+ -2.926803475386488,
+ 2.2770971633156267,
+ -0.975906152972572,
+ -0.7213091474893861,
+ 1.329620757466724,
+ 1.9154508221124207,
+ -3.1487929162176673,
+ -1.8669770688889584,
+ 2.199827755033382,
+ -0.7800210942796101,
+ -0.9166595475542716,
+ 1.4678252620462644,
+ 2.3858866171222144,
+ -3.491860729691545,
+ -1.9283218196932097,
+ 2.0615470540263554,
+ -0.6577202541872621,
+ -1.035039455168156,
+ 2.3712196009127005,
+ -2.9294044344354497,
+ 2.4613465541821498,
+ -3.039387892540306,
+ -3.8431795486850318,
+ -5.131828453260058,
+ -4.201158698533083,
+ 2.743259510552498,
+ -1.8423209580525468,
+ 0.26863990388854686,
+ 1.3985113503711575,
+ -2.5958773173116114,
+ 2.8758567594569757,
+ -1.6395152913107096,
+ -3.4135542664000367,
+ -0.7106176922522025,
+ -0.07780854464936408,
+ 1.5068381427471207,
+ -2.65170925808097,
+ 2.8508417520974345,
+ -1.4500450918914074,
+ -2.8712446794219066,
+ -0.8350903753622594,
+ -0.16482255097713533,
+ 1.675756719577403,
+ -2.7331051681203946,
+ 2.8268859963820776,
+ -2.0161172809274395,
+ 0.4968440830093563,
+ 1.1073253883414238,
+ -1.5222288040972831,
+ -2.314367795559787,
+ 2.9424237353662406,
+ 1.7958712982661231,
+ -1.9229640634104501,
+ 0.2958104109845442,
+ 1.2935395410769601,
+ -1.6003616992576613,
+ -2.6930327877228444,
+ 3.07140599066261,
+ 1.7551198005759892,
+ -1.7648366308253123,
+ 0.16837544128852558,
+ 1.4023208393885152,
+ -2.641080777572545,
+ 2.8650311593972106,
+ -2.2395139905452353,
+ 2.521463023878747,
+ 2.6111382447559683,
+ 2.8331077870361288,
+ 2.8563783281504125,
+ 3.5679862797703055,
+ 3.50642261665715,
+ -2.6160722811252803,
+ 2.8745147787771037,
+ -2.2806049278479756,
+ 0.7793784444034958,
+ 0.8337297429432408,
+ -2.257134704212269,
+ 1.8803466066932493,
+ 3.4339176542380314,
+ -2.064065587761793,
+ -1.3200228193960453,
+ 0.659898005400981,
+ 0.9553450846966883,
+ -2.3815815368526008,
+ 1.8875987245243695,
+ 3.2268532592395656,
+ -1.7004877158486003,
+ -1.2225477450647897,
+ 0.45874222453709396,
+ 1.1443242077589058,
+ -2.4530500074669352,
+ 2.889835626711446,
+ -2.419010251555167,
+ 1.085844516927887,
+ 0.27496966769845693,
+ -0.06853043541132615,
+ -3.186881244522874,
+ -1.6933612257328834,
+ 2.8849602376587122,
+ -2.296413713931879,
+ 0.8952175216119759,
+ 0.3845184905444424,
+ 0.1708566036417245,
+ -3.7125074462990812,
+ -1.8592630429082493,
+ 2.86255775568905,
+ -2.2158511184828167,
+ 0.7751843031792907,
+ 0.9294557031670045,
+ -2.3187221705094787,
+ 2.880681612681095,
+ -4.187648436524257,
+ -5.1548795324765475,
+ 7.884685598855459e-16,
+ 1.6940658945086005e-15,
+ 3.3033457762305155e-16,
+ 1.2018934300395492e-16,
+ -1.1439907871608373e-16,
+ -2.1423977865123414e-17,
+ -3.360007648190398e-16,
+ -3.990319274955805e-16,
+ -2.717288312236696e-16,
+ -4.044913195384305e-17,
+ 6.669143688708786e-17,
+ 8.121259254045625e-16,
+ -1.0869153248946782e-16,
+ 1.4421893979862038e-16,
+ -7.610061635487855e-18,
+ -2.694954435697764e-16,
+ -1.297432790789424e-16,
+ -1.5377287587360782e-16,
+ -1.0124690697649058e-16,
+ 4.501516893513577e-16,
+ 7.610061635487855e-18,
+ -9.016268676828e-17,
+ -5.98878763488392e-17,
+ -5.136791603954301e-17,
+ 3.0440246541951414e-16,
+ -4.384057246531046e-17,
+ -7.124093025612951e-17,
+ -2.7379678275505213e-17,
+ 2.3094882702480533e-16,
+ 1.4442573495175863e-16,
+ -2.0931805400654363e-16,
+ 1.1121443335775457e-16,
+ 6.878006793378424e-16,
+ 9.351276824911977e-17,
+ -3.0746303368596034e-16,
+ -2.5609511764641737e-16,
+ -1.3826323938823858e-16,
+ 6.27830084927748e-17,
+ -1.0571368228427692e-16,
+ 5.463424548336179e-16,
+ -7.81685678862611e-17,
+ 1.0108147085397997e-16,
+ 4.051530640284729e-16,
+ -3.077111878697263e-17,
+ -4.772832134430969e-17,
+ -2.3243775212740075e-17,
+ -9.628382330117241e-17,
+ -1.10924920143361e-16,
+ 9.591159202552355e-17,
+ 3.962195134129002e-17,
+ -7.601789829362323e-17,
+ 2.953034786814309e-17,
+ 7.010097197445487e-17,
+ 6.977268466884788e-17,
+ -8.652309207304668e-17,
+ -9.264422860593909e-17,
+ 1.1135918996495135e-16,
+ -1.7052328327780663e-16,
+ 1.5716431638507523e-16,
+ 3.125088354225338e-16,
+ 2.1539783150880838e-16,
+ 7.345363839470886e-17,
+ 2.271437962070614e-16,
+ -6.023425823034578e-17,
+ -2.7594745234769003e-16,
+ -3.236757736919997e-16,
+ 1.6709048373571157e-16,
+ 3.6602742105471475e-17,
+ -4.086272226011956e-17,
+ -4.350970022028925e-17,
+ 1.6014216659026613e-16,
+ 2.8306120561564607e-16,
+ 1.4153060280782304e-16,
+ -1.563371357725222e-16,
+ -1.0918784085699964e-17,
+ -3.12012527055002e-16,
+ 1.450461204111734e-16,
+ 1.2109924167776325e-16,
+ -7.610061635487855e-18,
+ -7.181995668491663e-17,
+ -4.0883401775433387e-17,
+ 6.340339395218957e-17,
+ -2.928219368437718e-17,
+ 2.791734567366468e-18,
+ -1.163015941249557e-16,
+ -7.899574849881413e-17,
+ -1.494715366883321e-16,
+ -1.0025429024142694e-16,
+ 2.0613340864821447e-16,
+ -2.5973471234165066e-17,
+ -4.450231695535289e-16,
+ 1.0604455452929815e-15,
+ 2.8909962408728317e-16,
+ 1.2159555004529505e-17,
+ 8.644037401179139e-18,
+ -8.156000839772852e-17,
+ -3.808339540194139e-16,
+ -3.6892255319865034e-17,
+ -1.2341534739291173e-16,
+ -1.3532674821367533e-16,
+ 5.10370437945218e-17,
+ 8.708660886534844e-18,
+ 6.782881022934826e-18,
+ -2.455072058057386e-16,
+ -1.8669466425321832e-16,
+ -6.253485430900889e-17,
+ 7.816856788626112e-18,
+ -2.5890753172909763e-17,
+ -2.967510447533987e-17,
+ -2.646977960169688e-18,
+ -7.113753267956038e-17,
+ 2.330167785561879e-16,
+ 1.5042279439276808e-16,
+ -4.916037777979212e-17,
+ -2.249931266144235e-17,
+ 1.3979352352146168e-16,
+ -3.1701696976094786e-17,
+ -1.0265311401783072e-16,
+ 2.0162527430980047e-16,
+ 2.862044919433476e-17,
+ -4.280659669961918e-18,
+ 6.27830084927748e-17,
+ -2.6122363744424614e-16,
+ -7.394994676224067e-17,
+ 1.3871818872514274e-16,
+ 2.1201673075499788e-16,
+ 1.2424252800546476e-16,
+ 4.239300639334266e-17,
+ -2.6684846560960673e-16,
+ -1.5104317985218283e-16,
+ -1.2382893769918824e-16,
+ 7.858215819253762e-19,
+ -4.048221917834517e-16,
+ 3.0011146599189535e-17,
+ -1.5542723709871388e-16,
+ -1.6361632516298885e-16,
+ -7.374315160910242e-17,
+ -6.053307722663056e-16,
+ -1.1874177693198712e-16,
+ 7.175791813897515e-17,
+ -3.1019272970738533e-16,
+ 1.942530271004216e-16,
+ 6.629852609612517e-17,
+ -1.0236360080343716e-16,
+ -1.4831348383075786e-16,
+ -1.4177875699158894e-16,
+ 1.467418406669071e-16,
+ 1.9571093293004632e-16,
+ -1.545121685460771e-16,
+ 2.8785885316845363e-17,
+ 2.0836679630210765e-16,
+ 3.9456515218779415e-16,
+ 7.494256349730431e-17,
+ 4.616701793811585e-17,
+ -1.621274000603934e-16,
+ -1.522012327097571e-17,
+ 5.943292701193504e-17,
+ 6.43132926259979e-17,
+ -4.40142803939466e-16,
+ -3.6561383074843823e-17,
+ -5.711682129678656e-17,
+ -5.2562158048916446e-17,
+ 4.005622116288036e-17,
+ -2.779326858178173e-17,
+ 2.5146290621612038e-17,
+ -2.547716286663325e-17,
+ -1.8512302108936757e-16,
+ 1.256487350468049e-16,
+ -3.4989739910993066e-16,
+ 3.034098486844505e-16,
+ -1.2308447514789052e-16,
+ 3.5039370747746247e-16,
+ -1.0753347963189359e-16,
+ 1.5832236924264947e-16,
+ -7.527343574232552e-17,
+ -9.37816019481995e-17,
+ -7.990564717262246e-17,
+ 3.556876633978019e-17,
+ -6.255139792125994e-16,
+ -5.802671997059489e-17
+ ],
+ [
+ 1.9148216614971008,
+ 1.478202976776873,
+ -1.3912737548982952,
+ 1.9567758303184395,
+ -1.9429737926539519,
+ 1.1932064569958818,
+ -0.13481434786108493,
+ -1.0231822102982038,
+ 1.1978358376241394,
+ 2.056386507882839,
+ -2.1762834945693994,
+ -1.2477649548760288,
+ 1.1228077455928198,
+ -0.04543631219448451,
+ -1.1440231082909025,
+ 1.1945323052058425,
+ 1.906805333342823,
+ -1.8142209383679218,
+ -1.1541909328402118,
+ 1.0009712819448282,
+ 0.09663683405918509,
+ -1.2159333801364383,
+ 1.9106057899358073,
+ -1.98854318533716,
+ 1.3679369879192709,
+ -0.2778811659423783,
+ -0.8592378556524127,
+ -1.8463791269729082,
+ -0.9009605462682827,
+ 1.9378434053637041,
+ -1.9482888010049546,
+ 1.2605127399458094,
+ -0.19631874965452117,
+ -0.7642925462854411,
+ -2.1084115508157146,
+ -0.978707772701363,
+ 1.9727661342206357,
+ -1.9193696920956904,
+ 1.1907553971548621,
+ -0.06452606160175237,
+ -1.0821915796827735,
+ 1.8254355133661109,
+ -1.3721570936849579,
+ -1.4440521878486792,
+ -1.9269404882195367,
+ -1.956828250522015,
+ -2.7870496483372054,
+ -2.756285087731282,
+ 1.8959480336162762,
+ -1.9977714062926606,
+ 1.3988105435841416,
+ -0.33592249705364935,
+ -0.8408527060836729,
+ 1.6923485088792423,
+ -1.3308390630145872,
+ -2.4789825281085225,
+ 1.1826264195615421,
+ 0.8005680245664831,
+ -0.24907833734887438,
+ -0.9205810329587985,
+ 1.7664809766671357,
+ -1.3236325514271927,
+ -2.3090948852638125,
+ 0.9395478353427033,
+ 0.7269068858909162,
+ -0.1074370505728592,
+ -1.0466742508592763,
+ 1.8061777146179123,
+ -2.02761281662188,
+ 1.5102168342132538,
+ -0.557418801360862,
+ -0.34764408467317026,
+ -0.23146995972922552,
+ 2.2930766270999285,
+ 1.2458861831123866,
+ -2.012510943695315,
+ 1.4127619602552157,
+ -0.4179491003008311,
+ -0.4307088109667836,
+ -0.4368252753795513,
+ 2.646320459024495,
+ 1.3507327216538862,
+ -1.9812821165986556,
+ 1.347435427183641,
+ -0.3329429443321215,
+ -0.9045990013522589,
+ 1.7286254597929276,
+ -2.048376577089423,
+ 2.8577264757557903,
+ 3.53219222656437,
+ 3.3602691957682076,
+ 2.7027523810542893,
+ -2.0107888763849817,
+ 1.8736007431443722,
+ -1.1849637223014329,
+ -0.008406273894994768,
+ 1.0889336316494063,
+ -1.8726941003581365,
+ 1.3892462974216606,
+ 2.65677744810761,
+ -0.8497885982962003,
+ -0.6368047316155917,
+ -0.0947602145234494,
+ 1.1631363172748175,
+ -1.925707617768308,
+ 1.301486881389777,
+ 2.3301104278659435,
+ -0.5982777057299673,
+ -0.5469154389427655,
+ -0.2377667046850958,
+ 1.2758760615670868,
+ -1.9542979371330522,
+ 1.9276393603925897,
+ -1.3131018332315048,
+ 0.21786084960278232,
+ 0.5411173296555498,
+ 0.5874379598190037,
+ -2.329876081860052,
+ -1.300293072218125,
+ 1.9007639612200025,
+ -1.1994577309815468,
+ 0.07621076356820503,
+ 0.6205102456291349,
+ 0.810417885824201,
+ -2.5295617672181625,
+ -1.3236804840613876,
+ 1.847093172940149,
+ -1.1267769922684767,
+ -0.011449064953022565,
+ 1.147321615294479,
+ -1.899597732994087,
+ 1.9830162994719571,
+ -3.100805069788782,
+ -3.11559667954558,
+ -1.861856530299171,
+ -1.8111367937748077,
+ -0.8978966925686322,
+ -0.8161075644422442,
+ 1.1134858520231523,
+ -1.8847699922611219,
+ 1.991060457574918,
+ -1.46170259778166,
+ 0.41793861118984926,
+ 0.7081120563156873,
+ -1.0372527661655189,
+ -1.6952925989547805,
+ 2.277928982582464,
+ 1.275553710659967,
+ -1.3986025418872674,
+ 0.3314170937449534,
+ 0.8404046753082585,
+ -1.0917646002662167,
+ -1.6766514456035932,
+ 2.018917159827195,
+ 1.2408795330896423,
+ -1.2911986513311404,
+ 0.18929272398648034,
+ 0.9178823131443572,
+ -1.8152292770094582,
+ 2.0121100353173627,
+ -1.611992803204901,
+ 0.47482809062010767,
+ 1.1840866427947505,
+ 1.6042344176710066,
+ 0.7400493807087533,
+ -1.8536455333615385,
+ 1.9948640174942642,
+ -1.5189868543762188,
+ 0.4370522527470623,
+ 1.1991796368893683,
+ 1.9710089799580475,
+ 0.8830192897308994,
+ -1.9108181369092785,
+ 1.9779601935934843,
+ -1.4595571832349201,
+ 0.3489458706293678,
+ 0.7717817793860909,
+ -1.6985641161011364,
+ 2.7446448526481344,
+ 3.31958682916576,
+ 1.0587911840678753e-17,
+ -2.2036091518412655e-16,
+ -1.3373442553451075e-16,
+ -3.794691060087014e-17,
+ -4.6073960119203635e-17,
+ -1.3946265127644047e-16,
+ 3.647866501358852e-17,
+ 2.376696695017987e-16,
+ 5.2060679802556173e-17,
+ 8.005040377981924e-17,
+ 4.9341323538788095e-17,
+ -3.4675411278222915e-16,
+ 1.6278914455043582e-16,
+ -5.90632806757004e-17,
+ -6.401860953277589e-17,
+ 1.0312874287004871e-16,
+ 4.9299964508160443e-17,
+ 2.605618929542037e-17,
+ 1.258141711693155e-16,
+ -3.0700808434905617e-16,
+ 9.2892382789705e-17,
+ 1.2614504341433672e-16,
+ 7.936797977446299e-17,
+ 1.0507778718837678e-17,
+ -1.87087575044181e-16,
+ -1.409308968637221e-16,
+ 3.805030817743927e-18,
+ 2.005912985441092e-18,
+ -4.925860547753279e-17,
+ -6.766337410683766e-17,
+ 2.8144820342116767e-16,
+ -3.705769144237564e-17,
+ -4.376612621018069e-16,
+ -4.115223547451313e-18,
+ 1.0059550224410507e-16,
+ 1.2490427249550716e-17,
+ 7.711391260525599e-17,
+ -2.5063572560356735e-17,
+ -7.816856788626112e-18,
+ -2.714806770399037e-16,
+ 1.6626330312315854e-16,
+ -3.4219427965553064e-17,
+ 3.5258573610072805e-18,
+ 3.7315539148944904e-17,
+ -4.963083675318165e-18,
+ -9.16929709015031e-17,
+ 9.407111516259306e-17,
+ -1.7288074802358276e-16,
+ -1.3913177903141925e-16,
+ 3.250819807333399e-17,
+ 1.6022488465152144e-16,
+ -1.8068726505455198e-17,
+ 4.0531850015098356e-18,
+ -2.0811864211834174e-16,
+ -1.9686898578762056e-17,
+ 1.646089418980525e-17,
+ -2.1854111783650989e-16,
+ 2.5526793703386434e-16,
+ -1.5675072607879872e-16,
+ -2.096075672209372e-16,
+ -8.726755462434441e-17,
+ 4.690114073175666e-17,
+ -8.499280793982358e-17,
+ 2.5146290621612038e-17,
+ 6.046690277762632e-17,
+ 1.6460894189805248e-16,
+ -1.630993372801432e-16,
+ 3.2177325828312777e-17,
+ 2.1506695926378716e-17,
+ 5.724089838866952e-17,
+ 3.234276195082338e-17,
+ -2.5270367713494992e-17,
+ 1.9381875727883127e-17,
+ 8.983181452325879e-17,
+ -1.164670302474663e-16,
+ 7.938348941094837e-18,
+ -6.650532124926343e-17,
+ -7.444625512977249e-17,
+ 5.3270431448414976e-17,
+ 1.5426918424113966e-17,
+ 1.2217457647408219e-16,
+ 2.637051792819052e-16,
+ -7.576974410985732e-17,
+ 1.4051730655744558e-17,
+ 3.89602068512476e-17,
+ 1.2645523614404409e-17,
+ 1.2515242667927309e-16,
+ 7.031035206700735e-17,
+ -7.411538288475128e-17,
+ -1.9322939109238724e-16,
+ -8.12291361527073e-17,
+ -6.7696461331339775e-16,
+ -2.6701390173211733e-16,
+ -1.0166049728276709e-16,
+ -6.24159470959544e-17,
+ -9.462946207606635e-17,
+ 2.384761705990379e-16,
+ -1.1282743555223297e-16,
+ 2.815722805130506e-16,
+ 7.16338410470922e-17,
+ 6.97933641841617e-19,
+ 1.8346865986426151e-16,
+ -5.67445900211377e-17,
+ 1.4301952791041848e-16,
+ 5.459392042849982e-18,
+ -1.2440796412797536e-16,
+ -1.303778817051354e-18,
+ 7.984360862668098e-17,
+ 1.0087467570084171e-16,
+ 3.8050308177439267e-17,
+ 6.846987520407687e-17,
+ -4.6322114302969544e-17,
+ -2.4070955825293102e-17,
+ 5.033394027385173e-17,
+ -4.9299964508160443e-17,
+ -1.3863547066388744e-16,
+ -6.492333832775576e-17,
+ 6.918848836123231e-17,
+ -5.176599670933416e-17,
+ 6.55954225754551e-17,
+ 8.945958324760993e-17,
+ 2.4815418376590827e-17,
+ 5.4428484305989215e-17,
+ 4.226892930145971e-17,
+ -1.797463471077729e-16,
+ -8.346252380660048e-17,
+ -1.7221900353354034e-16,
+ 9.082443125832243e-17,
+ 1.196930346364231e-16,
+ 1.167979024924875e-16,
+ 1.3648480107124955e-17,
+ -6.27830084927748e-17,
+ 3.5337155768265337e-16,
+ -7.084801946516682e-17,
+ -4.859686098749037e-18,
+ 7.94506978357183e-17,
+ 5.852302833812671e-17,
+ 7.409883927250021e-16,
+ 1.1836954565633826e-16,
+ 6.782881022934826e-18,
+ 2.231319702361792e-16,
+ -8.023651941764368e-18,
+ -6.981404369947554e-17,
+ -4.748016716054378e-17,
+ 1.9405657170494027e-16,
+ 3.120538860856297e-17,
+ -1.2101652361650795e-16,
+ -9.065899513581182e-17,
+ 7.514935865044256e-17,
+ -3.239187579969372e-17,
+ -1.1096627917398865e-16,
+ -2.7958704704292335e-17,
+ -1.966621906344823e-17,
+ -6.352747104407253e-17,
+ -3.867069363685404e-17,
+ 2.4153673886548405e-17,
+ 1.56957521231937e-17,
+ -1.282129949457193e-16,
+ 1.5873595954892599e-16,
+ 7.444625512977248e-19,
+ -1.4475660719677984e-17,
+ -7.940933880509066e-18,
+ -7.196471329211341e-17,
+ -1.1539169545114735e-17,
+ 8.513756454702036e-17,
+ 6.129408339017935e-17,
+ 4.615667818045894e-17,
+ -1.4070342219527e-16,
+ 2.0997979849658605e-16,
+ -1.9149231180602588e-16,
+ 2.0861495048587355e-16,
+ -3.0010112623423844e-16,
+ 1.358644156118348e-16,
+ -4.408872664907637e-17,
+ 3.0042165872160274e-17,
+ -3.383168705341883e-17,
+ -1.670904837357116e-17,
+ -2.6883369907973396e-17,
+ 1.522012327097571e-17,
+ -1.2746853239442156e-16
+ ],
+ [
+ 0.2585693687783592,
+ 0.41977153824180263,
+ 0.6639363342335741,
+ -2.916898013040619,
+ 4.223242830163198,
+ -4.117868775578048,
+ 2.6460471584432246,
+ -0.315054454243152,
+ -1.2820823079988701,
+ -1.6505186171854809,
+ 5.72059104339786,
+ 2.976909740933409,
+ -4.0511459710016595,
+ 2.4916241631059584,
+ -0.008305921207733852,
+ -1.4485454139971063,
+ -1.8006960888395807,
+ 4.991964532151459,
+ 2.83900562552997,
+ -3.925097721672799,
+ 2.233243944103548,
+ 0.17877115308975577,
+ -2.649550293298787,
+ 4.119496937844452,
+ -4.257050992291019,
+ 2.0462953300525513,
+ 4.128107812730135,
+ 1.5945242916420794,
+ 0.4470671859638996,
+ -2.7962161936704315,
+ 4.212935648199768,
+ -4.175715153292337,
+ 1.9282086086036494,
+ 4.255131608301719,
+ 2.0860937646749065,
+ 0.6655543497188927,
+ -3.025252610274723,
+ 4.260366553876066,
+ -4.115676193918782,
+ 2.5240103994616216,
+ -0.16778523574198803,
+ -2.2459766147465796,
+ 6.496078403409633,
+ 6.536994912748383,
+ 4.079376722164949,
+ 3.9839235058015916,
+ 2.247143484334824,
+ 2.0750017641995497,
+ -2.5791336044883377,
+ 4.092800151751289,
+ -4.280479111158802,
+ 2.980154201904969,
+ -0.7494911451874211,
+ -1.7269717690431616,
+ 2.3057968226190715,
+ 3.8153308140327464,
+ -4.795973080528534,
+ -2.706884374044326,
+ 2.8404270864659584,
+ -0.5605577070990466,
+ -2.0049356300149554,
+ 2.415108534721863,
+ 3.7514476847147615,
+ -4.23396367265347,
+ -2.6253207572828514,
+ 2.5996587679536707,
+ -0.2547009803346561,
+ -2.1694117828991892,
+ 3.9565779792080544,
+ -4.340327050259501,
+ 3.3186772544567456,
+ -0.9082990988793384,
+ -2.3628165023193564,
+ -3.6023216865159977,
+ -1.6907278949617708,
+ 4.033496848472878,
+ -4.288963921583136,
+ 3.1102524888830865,
+ -0.8189994782639354,
+ -2.361803286475724,
+ -4.399608087907305,
+ -1.9964616457631352,
+ 4.143071692630179,
+ -4.246086733916486,
+ 2.9753798182901616,
+ -0.5998888811446772,
+ -1.8615970952782268,
+ 3.7234712189792765,
+ -5.9991490834205115,
+ -7.267487431221256,
+ -4.395627746168772,
+ -3.4100693504722868,
+ 3.0952542002302743,
+ -4.284170294299776,
+ 4.085657729382959,
+ -2.4478679304195037,
+ 0.07321907787631092,
+ 2.328409884850913,
+ -2.6400656789199157,
+ -4.574151802455756,
+ 4.538903862786742,
+ 2.62540341174789,
+ -2.2905684399323145,
+ -0.11782289692174854,
+ 2.582761319058976,
+ -2.619862970231111,
+ -4.220890567572239,
+ 3.766845339456183,
+ 2.4220310893832453,
+ -2.023201665404927,
+ -0.42437943520612315,
+ 2.7313908867064263,
+ -4.198912608669813,
+ 4.1976140884967315,
+ -2.836611625691331,
+ 0.4796000968764642,
+ 1.6500627027650152,
+ 4.098434975870741,
+ 2.0250328336430203,
+ -4.24851285426771,
+ 4.100017591249725,
+ -2.5958036290665505,
+ 0.3021796726736046,
+ 1.4234680634392725,
+ 4.659900763964431,
+ 2.1861087250457785,
+ -4.3123988644660765,
+ 4.028845027385608,
+ -2.442469252109946,
+ -0.07808592102742115,
+ 2.4520278499229096,
+ -4.034906254924465,
+ 7.836534576883311,
+ 7.741443050593975,
+ 2.4868496137456564,
+ 2.257309787453487,
+ -2.574026165412744,
+ -2.7945259708707346,
+ 0.012592229156769585,
+ 2.3778270780441195,
+ -3.995790509316731,
+ 4.297251955761427,
+ -3.153003872754209,
+ 0.9859044998837114,
+ 0.8512494657263462,
+ 0.7758100742207462,
+ -5.393961568659473,
+ -2.7402191384978827,
+ 4.258324561055587,
+ -3.0177387843038375,
+ 0.6845810778581922,
+ 1.0522566289286837,
+ 1.0562029683919663,
+ -5.000639509850603,
+ -2.7708535397433445,
+ 4.177045072104298,
+ -2.7880629685896663,
+ 0.4991275202302123,
+ 2.079607010022869,
+ -3.8421648609933503,
+ 4.362556002667854,
+ -2.3278596198244945,
+ -4.517863554379117,
+ -0.8410255292493597,
+ -0.007031947510562705,
+ 2.2424696534972868,
+ -3.979685318015367,
+ 4.327938534510658,
+ -2.3669352989772614,
+ -4.985438481321358,
+ -1.3797318569512576,
+ -0.2835568486804503,
+ 2.500331202719509,
+ -4.055118593489759,
+ 4.296000477026547,
+ -3.0461776257387156,
+ 0.8416238510027443,
+ 1.6385995581814057,
+ -3.597074763685582,
+ -4.197007282862003,
+ -7.110444545505825e-16,
+ -3.685916809536291e-16,
+ -2.5394444805377947e-17,
+ -8.697804140995085e-17,
+ 1.1200025493967995e-16,
+ 2.706948554579783e-16,
+ 1.6444350577554188e-16,
+ -2.4732700315335527e-16,
+ 2.3756627192522955e-16,
+ -2.3136241733108184e-16,
+ -1.535247216898419e-16,
+ 1.4558378780933287e-16,
+ -4.451472466454118e-16,
+ -7.01862749751244e-17,
+ 9.388499952476863e-17,
+ 2.4887796680189217e-17,
+ 3.805030817743927e-18,
+ 5.492479267352103e-17,
+ -1.0753347963189358e-17,
+ 4.1813979964555544e-16,
+ -1.6047303883528734e-16,
+ -5.3808098846574444e-17,
+ -1.74038800881157e-16,
+ -7.763090048810163e-17,
+ 1.1497810514487085e-16,
+ 5.097086934551757e-16,
+ 1.819797347616661e-17,
+ 2.547716286663325e-17,
+ -1.6551884057186081e-16,
+ -1.3565762045869654e-16,
+ -5.46683666836296e-16,
+ 9.082443125832243e-17,
+ 2.3884840187468674e-16,
+ -1.2752023118270613e-16,
+ -2.220152764092326e-16,
+ 4.403082400619766e-16,
+ -1.3793236714321736e-16,
+ 9.931337229464787e-18,
+ 2.860804148514646e-16,
+ 8.271806125530276e-17,
+ -2.1502560023315952e-16,
+ -2.0613340864821447e-16,
+ -2.644910008638306e-16,
+ -1.2622776147559202e-16,
+ -3.308722450212111e-17,
+ 1.7519685373873124e-16,
+ -1.4486000477334897e-16,
+ 7.163384104709219e-16,
+ 3.212769499155959e-16,
+ -8.735027268559971e-17,
+ -3.6826080870860787e-16,
+ -1.1444043774671138e-16,
+ 1.6543612251060552e-18,
+ 4.284795573024683e-16,
+ 3.1432863277015047e-16,
+ 1.6212740006039342e-17,
+ 3.876168350423487e-16,
+ -2.719769854074355e-16,
+ 2.4616895029578104e-16,
+ 4.173281286694878e-16,
+ 1.679176643482646e-16,
+ -2.5973471234165066e-17,
+ 1.2755125045567687e-16,
+ -5.757177063369073e-17,
+ -6.886278599503955e-17,
+ -2.4736836218398293e-16,
+ 4.698385879301197e-16,
+ -8.668852819555729e-17,
+ 1.1216569106219055e-16,
+ -6.59262948204763e-17,
+ 3.867069363685404e-17,
+ 4.259980154648092e-17,
+ -7.237830359838992e-18,
+ -1.0357852232812442e-16,
+ 3.8910576014494417e-16,
+ 1.1531931714754897e-16,
+ 9.678013166870423e-17,
+ 2.3094882702480533e-16,
+ -6.981404369947554e-17,
+ 1.2085108749399734e-16,
+ -1.9322939109238724e-16,
+ -4.572654426193137e-16,
+ 1.2953648392580413e-16,
+ -1.6613922603127558e-16,
+ -5.558653716356346e-17,
+ 1.819797347616661e-17,
+ -7.543887186483611e-17,
+ 1.952146245625145e-17,
+ 8.424007358240033e-16,
+ 4.453540417985501e-16,
+ 1.67752228225754e-16,
+ 7.351981284371309e-16,
+ 2.3434026753627274e-16,
+ 1.3292792443727155e-16,
+ 1.493061005658215e-16,
+ 8.652309207304668e-17,
+ -3.1697561073032016e-16,
+ 3.3815143441167766e-16,
+ -5.336969312192135e-16,
+ -1.6212740006039342e-17,
+ -4.6322114302969544e-17,
+ -5.254251250936832e-16,
+ -1.3102540902839958e-16,
+ -1.196103165751678e-16,
+ 1.2680678790437914e-16,
+ 2.478233115208871e-16,
+ 1.8032537353656003e-17,
+ -1.8561932945689939e-16,
+ -7.771361854935694e-17,
+ -8.3876114112877e-17,
+ -1.3003279229333595e-16,
+ 6.352747104407253e-17,
+ 4.963083675318166e-19,
+ -1.5699888026256463e-16,
+ 1.5997673046775553e-16,
+ 2.537790119312689e-16,
+ 2.6138907356675675e-16,
+ -5.2029660529585435e-17,
+ -5.033394027385173e-17,
+ -2.479887476433977e-16,
+ -1.6584971281688202e-16,
+ 3.43693544515783e-17,
+ 1.3631936494873896e-16,
+ -2.547716286663325e-17,
+ 3.995282358631123e-16,
+ 3.7653261483413815e-16,
+ 3.0475401717984917e-16,
+ -1.7800926782141153e-16,
+ 2.8785885316845363e-17,
+ -1.0362505123758053e-16,
+ 2.0346575117273096e-16,
+ 1.8197973476166606e-16,
+ -2.481541837659083e-16,
+ -3.958059231066237e-17,
+ 2.549991033347846e-16,
+ -6.048192773797152e-17,
+ -1.741215189424123e-16,
+ -1.2328299849490322e-15,
+ -2.244968182468917e-16,
+ -4.7345750311003915e-17,
+ -4.3393894934531827e-16,
+ -2.2912902967718864e-17,
+ 1.0116418891523527e-16,
+ 3.899329407574972e-16,
+ -5.045801736573469e-16,
+ -7.32468432415706e-17,
+ 6.633988512675282e-17,
+ -3.705769144237564e-17,
+ -3.8546616544971083e-17,
+ 1.7511413567747593e-16,
+ 3.7764930866108474e-16,
+ 5.2898200172766114e-17,
+ 5.724089838866952e-17,
+ 1.9140959374477058e-16,
+ 4.1193594505140773e-16,
+ -1.346650037236329e-16,
+ 6.385834328909374e-17,
+ 2.478233115208871e-16,
+ -8.313165156157927e-17,
+ 1.0023361072611312e-16,
+ -6.61744490042422e-19,
+ 1.737079286361358e-17,
+ 2.0613340864821447e-16,
+ 7.779633661061224e-17,
+ -3.839669005894585e-16,
+ -1.7536228986124184e-16,
+ -7.626605247738914e-17,
+ 1.9074784925472816e-16,
+ -3.7893143861054193e-16,
+ 3.2302436895961417e-16,
+ -2.5295183131871586e-16,
+ 2.6205081805679917e-16,
+ -2.59817430402906e-16,
+ 7.105481461830508e-17,
+ -6.871802938784277e-17,
+ -6.201786642616325e-17,
+ 6.021874859386041e-17,
+ -5.839895124624375e-17,
+ 4.541221562916122e-16,
+ 4.715653274588242e-16
+ ],
+ [
+ -0.5668248614613007,
+ -0.1965597096639967,
+ 1.337769487925697,
+ -4.068306014043869,
+ 5.4791187541098845,
+ -5.044133096270435,
+ 2.9499656938963,
+ 0.10266196246701098,
+ -1.9351901903396345,
+ -2.7195939198092476,
+ 7.22843617656722,
+ 3.8127277271067337,
+ -4.939552994955051,
+ 2.741532817250406,
+ 0.49239239599206164,
+ -2.11595566485963,
+ -2.8176060960038316,
+ 6.270085546783792,
+ 3.6202268542379463,
+ -4.747775094455885,
+ 2.395328339613021,
+ 0.7288188415130381,
+ -3.755130216177139,
+ 5.385762981252042,
+ -5.274050183711422,
+ 2.3634772126248076,
+ 4.900530189921126,
+ 2.5650785311548705,
+ 0.8893035668130532,
+ -3.9274911374775643,
+ 5.4704748314507805,
+ -5.137041330052667,
+ 2.198003665067638,
+ 4.99744552391359,
+ 3.219516730404624,
+ 1.162995345691479,
+ -4.194014357105195,
+ 5.5092733006192685,
+ -5.040639949591866,
+ 2.785178590310789,
+ 0.29006228440958426,
+ -3.2755243433424153,
+ 8.337424067831455,
+ 8.103381078620115,
+ 5.3210810749367266,
+ 5.229850342946913,
+ 3.6970230453088506,
+ 3.4949187467665546,
+ -3.67153486311143,
+ 5.360634424388755,
+ -5.313410888644596,
+ 3.4050007011681647,
+ -0.45387097217231037,
+ -2.6482793338763972,
+ 3.114912143037649,
+ 5.277037330312827,
+ -5.775221812937963,
+ -3.3186461375529364,
+ 3.213780520907457,
+ -0.21136292520144792,
+ -2.985189941138366,
+ 3.231381739941833,
+ 5.131702134346815,
+ -5.052081148712387,
+ -3.1966621012644802,
+ 2.887049610167342,
+ 0.1791447616513807,
+ -3.183156407667251,
+ 5.2247623893714605,
+ -5.428383033186463,
+ 3.873904302856214,
+ -0.8400495947194944,
+ -2.4839261853461365,
+ -4.961344329956405,
+ -2.4038735226041,
+ 5.302553361726719,
+ -5.328613796901572,
+ 3.5841213639853193,
+ -0.7054218682514278,
+ -2.3916703041828877,
+ -5.9909441665488385,
+ -2.785106464594148,
+ 5.408361530501999,
+ -5.252971326678233,
+ 3.398452778422678,
+ -0.26179300736072164,
+ -2.8117686444680023,
+ 4.978788484427935,
+ -7.835851163131682,
+ -9.523694226588173,
+ -6.303469237720343,
+ -4.932714753375709,
+ 4.2743768256023165,
+ -5.528186997622977,
+ 4.992066187932507,
+ -2.6826056778377487,
+ -0.4097416708222726,
+ 3.3735962657300145,
+ -3.5067756011745237,
+ -6.18666630162867,
+ 5.346058450052776,
+ 3.156755162728625,
+ -2.47178665165771,
+ -0.651526957315542,
+ 3.6758607069071663,
+ -3.4457074404496035,
+ -5.654952237502886,
+ 4.389228067863992,
+ 2.894219746012946,
+ -2.1159062930270442,
+ -1.037452350242989,
+ 3.8509701270640315,
+ -5.458830393161697,
+ 5.171495467890182,
+ -3.208600232322064,
+ 0.284861146183395,
+ 1.545643197756994,
+ 5.520787251374321,
+ 2.793994136605397,
+ -5.500913580192226,
+ 5.014500482606281,
+ -2.8818202600346363,
+ 0.05539600763346252,
+ 1.1986154255456765,
+ 6.224071828864305,
+ 2.9807089724326663,
+ -5.54732055997298,
+ 4.904037702250701,
+ -2.675340831843883,
+ -0.6012859038862177,
+ 3.520855868893488,
+ -5.303903711522241,
+ 9.955352729065606,
+ 9.857836310928036,
+ 3.551161739055463,
+ 3.2779723568910804,
+ -2.4193284731691658,
+ -2.6973970038940625,
+ -0.48693615877329993,
+ 3.4330429909687203,
+ -5.26461601604848,
+ 5.346537046777948,
+ -3.643778771783486,
+ 0.7584387529624841,
+ 1.3922662394849137,
+ 1.6017443125374824,
+ -6.915996874242327,
+ -3.5659555761359423,
+ 5.276202581990048,
+ -3.4570074117451455,
+ 0.370141943865907,
+ 1.6365108017311911,
+ 1.90042711760909,
+ -6.370452555619726,
+ -3.58410262544742,
+ 5.139265403467678,
+ -3.1427821153499966,
+ 0.13244271024428997,
+ 3.0757174836932655,
+ -5.1057869649351515,
+ 5.484732398602024,
+ -2.7591357789614066,
+ -5.471407968426899,
+ -1.6327287490856432,
+ -0.33616507626599096,
+ 3.27134814968351,
+ -5.248392860067833,
+ 5.4058436927421365,
+ -2.78514570469722,
+ -5.989974328168075,
+ -2.385259821911464,
+ -0.7023429647695422,
+ 3.578725189322073,
+ -5.3237592233227575,
+ 5.344212363233502,
+ -3.496200134536409,
+ 0.5722201366120536,
+ 2.5411525619380524,
+ -5.156031153048507,
+ -6.0679803345267604,
+ -6.97809564749734e-16,
+ -1.4756902127946014e-16,
+ 2.067951531382569e-17,
+ -8.499280793982358e-17,
+ 1.284611491294852e-16,
+ 3.1755463715910728e-16,
+ 1.3896634290890865e-16,
+ -3.568457162553761e-16,
+ 2.388897609053144e-16,
+ -2.8603905582083697e-16,
+ -1.7660306078007138e-16,
+ 3.0142461521432324e-16,
+ -5.588018628101978e-16,
+ -5.316703387184585e-17,
+ 1.180800324419447e-16,
+ -1.5344200362858663e-17,
+ -1.3731198168380258e-17,
+ 4.913452838564984e-17,
+ -4.582580593543773e-17,
+ 5.702583142940573e-16,
+ -1.9306395496987663e-16,
+ -7.924390268258004e-17,
+ -2.288395164627951e-16,
+ -1.019913695277883e-16,
+ 1.8992066864217513e-16,
+ 5.995405079784345e-16,
+ 1.3731198168380258e-17,
+ 2.8206858888058244e-17,
+ -1.65022532204329e-16,
+ -1.4558378780933287e-16,
+ -7.025244942412863e-16,
+ 1.2771668657818747e-16,
+ 3.698324518724586e-16,
+ -1.5000920408649157e-16,
+ -3.0965506230922586e-16,
+ 4.972182662056249e-16,
+ -1.8371681404802742e-16,
+ 1.9447791682945946e-17,
+ 3.285147802754349e-16,
+ 1.9405657170494027e-16,
+ -2.6701390173211733e-16,
+ -2.274746684520826e-16,
+ -2.5286911325746056e-16,
+ -1.530284133223101e-16,
+ -3.9539233280034717e-17,
+ 1.887626157846009e-16,
+ -1.939118150977435e-16,
+ 8.6523092073046685e-16,
+ 3.894366323899654e-16,
+ -1.0422475718168147e-16,
+ -4.698385879301197e-16,
+ -1.3267977025350564e-16,
+ 1.8363409598677214e-17,
+ 5.409761206096801e-16,
+ 3.7653261483413815e-16,
+ 5.583469134732936e-18,
+ 4.858858918136485e-16,
+ -3.566802801328655e-16,
+ 3.159829939952565e-16,
+ 5.405211712727759e-16,
+ 2.4070955825293105e-16,
+ -2.9116757561866574e-17,
+ 1.9356026333740845e-16,
+ -8.321436962283457e-17,
+ -1.1979643221299223e-16,
+ -3.5006283523244126e-16,
+ 5.874636710351603e-16,
+ -9.496033432108756e-17,
+ 1.3995895964397228e-16,
+ -8.337980574534518e-17,
+ 4.9630836753181654e-17,
+ 8.139457227521791e-17,
+ 1.3441684953986698e-17,
+ -1.4226472560146385e-16,
+ 4.506479977188895e-16,
+ 9.976573669213781e-17,
+ 1.4442573495175863e-16,
+ 3.0804206011474746e-16,
+ -6.815968247436948e-17,
+ 1.3102540902839958e-16,
+ -2.4385284458063256e-16,
+ -5.641371777611649e-16,
+ 1.5021599923962983e-16,
+ -1.9893693731900313e-16,
+ -8.553047533798305e-17,
+ 9.347140921849213e-18,
+ -1.197757526976784e-16,
+ 1.1249656330721175e-17,
+ 1.0422475718168149e-15,
+ 4.996170899820287e-16,
+ 1.5964585822273432e-16,
+ 1.064416012233236e-15,
+ 3.3798599828916706e-16,
+ 1.4988512699460861e-16,
+ 1.7722344623948615e-16,
+ 1.0273583207908602e-16,
+ -4.3079566301761676e-16,
+ 4.1193594505140773e-16,
+ -6.660458292276978e-16,
+ -5.39321759384574e-17,
+ -4.053185001509835e-17,
+ -6.448700055463403e-16,
+ -1.5766062475260705e-16,
+ -1.7916732067898577e-16,
+ 1.344995676011223e-16,
+ 2.9679240378402633e-16,
+ 2.3243775212740075e-17,
+ -2.256962301350936e-16,
+ -1.0178457437465004e-16,
+ -9.826905677129968e-17,
+ -1.7073007843094489e-16,
+ 1.0902240473448904e-16,
+ 2.7958704704292335e-17,
+ -2.008394527278751e-16,
+ 1.862810739469418e-16,
+ 3.209460776705747e-16,
+ 3.0812477817600276e-16,
+ -7.829264497814406e-17,
+ -2.072087434445334e-17,
+ -2.9977025398921723e-16,
+ -2.011703249728963e-16,
+ 4.020097777007714e-17,
+ 1.5501364679243736e-16,
+ -3.490702184973777e-17,
+ 5.116939269253029e-16,
+ 4.660335571123758e-16,
+ 3.87823630195487e-16,
+ -2.041481751780872e-16,
+ -1.2324991127040111e-17,
+ -1.5468277454741615e-16,
+ 2.3594292997309423e-16,
+ 2.1051746589474552e-16,
+ -3.5899638584801396e-16,
+ -5.215373762146839e-17,
+ 2.8016607347171047e-16,
+ -8.86685917868561e-17,
+ -2.248276904919129e-16,
+ -1.5676726969104979e-15,
+ -2.895132143935597e-16,
+ -4.491332232221517e-17,
+ -5.684385169464406e-16,
+ 1.323488980084844e-18,
+ 1.256487350468049e-16,
+ 4.446922973085077e-16,
+ -6.495022169766372e-16,
+ -1.0397660299791557e-16,
+ 1.078643518769148e-16,
+ -7.279189390466644e-18,
+ -7.725866921245277e-17,
+ 2.1117921038478794e-16,
+ 4.918829512546579e-16,
+ 1.2995007423208065e-16,
+ 8.660581013430199e-17,
+ 2.4104043049795226e-16,
+ 4.835697860985e-16,
+ -1.5997673046775553e-16,
+ 8.685396431806789e-17,
+ 2.985294830703877e-16,
+ -1.6167245072348923e-16,
+ 1.1804901316897396e-16,
+ -8.768114493062093e-18,
+ -1.1911400820763597e-17,
+ 2.5278639519620526e-16,
+ 8.610950176677017e-17,
+ -4.865269567883771e-16,
+ -2.2234614865425384e-16,
+ -1.25400580863039e-16,
+ 2.5319998550248177e-16,
+ -5.117559654712444e-16,
+ 4.31478087022973e-16,
+ -3.3484271196146555e-16,
+ 3.626359805432473e-16,
+ -3.3314699170573185e-16,
+ 9.380228146351333e-17,
+ -9.14448167177372e-17,
+ -9.520848850485347e-17,
+ 5.657915389862709e-17,
+ -7.734138727370808e-17,
+ 4.3658592730548796e-16,
+ 5.6790084954828115e-16
+ ],
+ [
+ -4.247406441748432,
+ -3.3594406694126726,
+ 2.7423817190655235,
+ -3.2089879734032443,
+ 2.6369445043553883,
+ -1.113610167935194,
+ -0.7076619545727948,
+ 2.3021698784050777,
+ -2.1288693081137153,
+ -3.8561052298033425,
+ 2.627264021354758,
+ 1.6172046175410268,
+ -0.9839321805467054,
+ -0.8435982621746272,
+ 2.453452812607595,
+ -2.0608087005514264,
+ -3.4767507955746866,
+ 2.1085884129787784,
+ 1.4647056138925159,
+ -0.7672267889596864,
+ -1.058620076091895,
+ 2.539566080303299,
+ -3.206593349310013,
+ 2.7736574615344733,
+ -1.4416576297121737,
+ -0.14583916311269746,
+ 0.3534758604499547,
+ 3.421090492847105,
+ 1.7904373090129513,
+ -3.21058807436174,
+ 2.6535992533781836,
+ -1.2370240156636285,
+ -0.2795314799521054,
+ 0.10110658477248384,
+ 3.8095479465825908,
+ 1.8791300067925933,
+ -3.2039503501262554,
+ 2.572122190706831,
+ -1.1091346627111751,
+ -0.8153980913417199,
+ 2.376224674413494,
+ -3.169477525180125,
+ 5.632777348856713,
+ 5.599592210344332,
+ 2.686898319971558,
+ 2.786634548551599,
+ 5.222465833056538,
+ 5.21871996130068,
+ -3.20057010406514,
+ 2.8034733273006998,
+ -1.5000613098322493,
+ -0.3936373097644914,
+ 2.0655728290983872,
+ -3.0707104610162674,
+ 2.042863997338493,
+ 3.9807456457626245,
+ -0.8105301713494253,
+ -0.746125181799723,
+ -0.5294526097175392,
+ 2.170791258729248,
+ -3.128404272389074,
+ 1.9872535335963384,
+ 3.6356636197935654,
+ -0.4889618233739421,
+ -0.6162147745944889,
+ -0.7499841148428681,
+ 2.3309698765939975,
+ -3.155748822697337,
+ 2.918066415489901,
+ -1.7198382322312955,
+ -0.037094207256370006,
+ 1.0861699580430229,
+ 1.3662354850600014,
+ -3.6554977959647412,
+ -2.0836001850996455,
+ 2.8586071995035844,
+ -1.5258331700493866,
+ -0.26192733663366996,
+ 1.2336555560963076,
+ 1.8112285546227387,
+ -4.129978962323122,
+ -2.199163975891499,
+ 2.749371048081205,
+ -1.401236917265186,
+ -0.39836792769223206,
+ 2.1491503883812366,
+ -3.10021543449413,
+ 3.048385527581174,
+ -4.003299068459099,
+ -5.0020781737618485,
+ -5.679833684723784,
+ -4.6143186702272105,
+ 3.196653065911414,
+ -2.528482362660247,
+ 1.0433467668424576,
+ 0.8814976422566104,
+ -2.4205702853448634,
+ 3.1776436449276755,
+ -2.0472713765151,
+ -4.088794292090442,
+ 0.18270633307381579,
+ 0.42076337519534873,
+ 1.012651573060919,
+ -2.51020909031053,
+ 3.200997038299379,
+ -1.8643224583172144,
+ -3.5095247957273954,
+ -0.08034108720044304,
+ 0.30020008611304255,
+ 1.2235840913152023,
+ -2.64400156346249,
+ 3.20721879616954,
+ -2.6767884021543917,
+ 1.2802202546005224,
+ 0.5329706258886044,
+ -1.3489841139987697,
+ -1.877573290212001,
+ 3.5537852626332755,
+ 2.079314741886356,
+ -2.5989293452881492,
+ 1.0708844957857144,
+ 0.7534968728293369,
+ -1.4562693410678504,
+ -2.2782767906186705,
+ 3.781449810765515,
+ 2.0711135730838164,
+ -2.460562081930995,
+ 0.9378766841540903,
+ 0.8861009081529414,
+ -2.4918169842037825,
+ 3.1907141061793296,
+ -2.857024558138943,
+ 3.85899248921167,
+ 3.9258380491484055,
+ 3.1397964290800378,
+ 3.1167265814179563,
+ 2.888883323376994,
+ 2.7903129766030568,
+ -2.451292079165122,
+ 3.185712897725546,
+ -2.8886205057141288,
+ 1.566088658097003,
+ 0.21474304667475438,
+ -1.928452986253342,
+ 1.9381809892333415,
+ 3.3929057640099822,
+ -2.967179950150232,
+ -1.7640453185029243,
+ 1.4449124885923128,
+ 0.35431424735491823,
+ -2.10373757287495,
+ 1.9828831002629632,
+ 3.249916564979976,
+ -2.549359717829305,
+ -1.677646578264803,
+ 1.2402942911080217,
+ 0.5771242858797495,
+ -2.2053487129387626,
+ 3.144016212505326,
+ -2.9905356077554064,
+ 1.8681578249492463,
+ -0.1783103891176166,
+ -0.9154243246939572,
+ -3.171591532476889,
+ -1.6024216732591023,
+ 3.1691848369423474,
+ -2.901398233416559,
+ 1.6805207149484098,
+ -0.08208981739028681,
+ -0.7771163297345488,
+ -3.7700025465880236,
+ -1.8113476495761467,
+ 3.1974394742377017,
+ -2.838548171620824,
+ 1.5619003755852958,
+ 0.3253363678940875,
+ -2.013815015993968,
+ 3.0523190612803823,
+ -4.636751430116726,
+ -5.664227319266178,
+ 3.599890025830776e-16,
+ 1.0296744265060088e-15,
+ 2.8537731133079455e-16,
+ 3.6602742105471475e-17,
+ -1.973859736704662e-17,
+ 1.0099875279272467e-16,
+ -2.8239946112560365e-16,
+ -4.0895809484621683e-16,
+ -1.1580528575742387e-16,
+ -5.765448869494603e-17,
+ -1.8280691537421912e-17,
+ 7.606752913037642e-16,
+ -1.432676820941844e-16,
+ 1.5670936704817107e-16,
+ 3.7553999809907456e-17,
+ -2.6436692377194764e-16,
+ -1.3110812708965489e-16,
+ -1.4450845301301393e-16,
+ -1.7023377006341307e-16,
+ 4.769523411980758e-16,
+ -9.016268676828e-17,
+ -1.889280519071115e-16,
+ -9.413315370853454e-17,
+ -5.67445900211377e-17,
+ 3.2921788379610497e-16,
+ 7.783769564123989e-17,
+ -4.95067596612987e-17,
+ -1.493061005658215e-17,
+ 1.4608009617686469e-16,
+ 1.5054687148465104e-16,
+ -3.658619849322041e-16,
+ 1.0397660299791557e-16,
+ 8.725101101209335e-16,
+ 2.9447629806887785e-17,
+ -2.639119744350435e-16,
+ -1.742042370036676e-16,
+ -1.8073896384283652e-16,
+ 2.2302857265961006e-17,
+ -3.052296460320672e-17,
+ 5.493306447964657e-16,
+ -1.9587636905255693e-16,
+ 1.4248186051225902e-16,
+ 1.2060293331023143e-16,
+ -4.450231695535288e-17,
+ -7.113753267956038e-17,
+ 1.290401755582723e-17,
+ -1.3205938479409087e-16,
+ 1.0472106554921329e-16,
+ 2.6138907356675675e-16,
+ -1.8363409598677214e-17,
+ -2.01087606911641e-16,
+ 2.5932112203537415e-17,
+ 1.5468277454741618e-17,
+ 1.9571093293004632e-16,
+ -3.2425480012078685e-17,
+ -6.305184219185453e-17,
+ 2.1481880508002126e-16,
+ -3.4344539033201704e-16,
+ 2.360773468226341e-16,
+ 2.9745414827406875e-16,
+ 2.0828407824085234e-16,
+ 8.271806125530276e-19,
+ 2.0646428089323568e-16,
+ -5.823351512373315e-17,
+ -2.3152785345359245e-16,
+ -2.9075398531238923e-16,
+ 1.9546277874628041e-16,
+ 5.045801736573468e-18,
+ -2.812414082680294e-17,
+ -1.1150394657214813e-16,
+ 4.615667818045894e-17,
+ 1.6444350577554188e-16,
+ 6.700162961679524e-17,
+ -1.5402103005737373e-16,
+ -9.760731228125725e-18,
+ -1.8634311249288328e-16,
+ 1.2482155443425188e-16,
+ 8.238718901028154e-17,
+ -9.694556779121483e-17,
+ -3.9456515218779414e-17,
+ -1.163015941249557e-16,
+ -2.102693117109796e-16,
+ 7.097209655704977e-17,
+ -3.1774075279693176e-17,
+ -1.0168117679808091e-16,
+ -5.635167923017501e-17,
+ -2.1370211125307468e-16,
+ -1.1613615800244509e-16,
+ 2.4352197233561135e-16,
+ 2.666830294870961e-16,
+ -1.8967251445840922e-16,
+ 1.2225729453533747e-15,
+ 3.930762270851987e-16,
+ 8.486873084794063e-17,
+ 5.485241436992264e-17,
+ 1.4558378780933287e-17,
+ -4.0397433165558484e-16,
+ 2.3822801641527194e-17,
+ -2.6205081805679917e-16,
+ -9.529120656610878e-17,
+ 3.1846453583291565e-17,
+ -1.4409486270673742e-16,
+ 1.6212740006039342e-17,
+ -2.7594745234769003e-16,
+ -1.936843404292914e-16,
+ -2.9447629806887785e-17,
+ 2.4236391947803708e-17,
+ -9.504305238234287e-17,
+ -1.7585859822877366e-16,
+ 2.0596797252570386e-17,
+ -8.840751290601905e-17,
+ 1.6328545291796764e-16,
+ 1.3605053124965923e-16,
+ -6.112864726766875e-17,
+ 6.203854594147708e-17,
+ 2.1142736456855385e-16,
+ 1.5426918424113966e-17,
+ -1.1805935292663087e-16,
+ 4.9010451293766884e-17,
+ -3.3087224502121103e-18,
+ -5.790264287871194e-17,
+ 5.6248281653605874e-18,
+ -2.2879815743216745e-16,
+ -8.735027268559971e-17,
+ 2.0605069058695917e-16,
+ 1.4690727678941772e-16,
+ 2.21849840286722e-16,
+ -3.341809674714232e-17,
+ -1.9273308272485542e-16,
+ -1.3507859402990942e-16,
+ -5.98051582875839e-17,
+ 4.475047113911879e-17,
+ -5.714163671516315e-16,
+ 1.0381116687540496e-16,
+ -8.615086079739782e-17,
+ -9.055559755924269e-17,
+ -9.950982769012922e-17,
+ -9.429858983104515e-16,
+ -2.0844951436336295e-16,
+ 5.4387125275361563e-17,
+ -3.3426368553267843e-16,
+ 1.6154837363160628e-16,
+ 9.851721095506558e-17,
+ -3.838118042246048e-17,
+ -3.5634940788784427e-16,
+ -1.0372844881414966e-16,
+ 1.7205356741102973e-16,
+ 1.227536029028693e-16,
+ -1.493888186270768e-16,
+ 3.58169205235461e-17,
+ 1.8768728098828195e-16,
+ 2.56136476677045e-16,
+ 4.3054750883385084e-17,
+ 7.676236084492096e-17,
+ 8.271806125530276e-20,
+ -2.2416594600187047e-17,
+ 4.642551187953867e-17,
+ 2.3185872569861366e-16,
+ -3.5337155768265337e-16,
+ -9.843449289381028e-18,
+ -1.7205356741102976e-17,
+ -1.4558378780933287e-17,
+ 6.402377941160434e-17,
+ -2.388484018746867e-17,
+ -1.1580528575742387e-16,
+ -8.362795992911109e-17,
+ -1.318525896409526e-16,
+ 2.4087499437544166e-16,
+ -3.277289586935095e-16,
+ 3.148249411376823e-16,
+ -2.4931223662348254e-16,
+ 3.725621478938836e-16,
+ -2.036518668105554e-16,
+ 9.859992901632089e-17,
+ -6.11700062982964e-17,
+ -1.0174321534402239e-17,
+ -1.852884572118782e-17,
+ 7.494256349730431e-17,
+ -3.329401965525936e-16,
+ -2.1241998130361748e-16
+ ],
+ [
+ -5.001271287793617,
+ -4.002424474182913,
+ 3.048776787111662,
+ -3.1030227423362913,
+ 2.153462148109935,
+ -0.4027515709215632,
+ -1.398244782455758,
+ 2.7487416601703933,
+ -2.200309403426249,
+ -4.131316473222137,
+ 1.8171851247971056,
+ 1.2367245875202588,
+ -0.2662536403751527,
+ -1.5229937860564253,
+ 2.8582959765406426,
+ -2.084936755164943,
+ -3.657046839813223,
+ 1.3714560027529634,
+ 1.0891063459089323,
+ -0.04130881813194265,
+ -1.7172560028570654,
+ 2.917949958103768,
+ -3.1582630065483195,
+ 2.3351508732748685,
+ -0.7544799951470061,
+ -0.6139502649581914,
+ -0.4844733470728153,
+ 3.636993107794627,
+ 1.987523883214407,
+ -3.1310789200980955,
+ 2.1750895356434103,
+ -0.5338844728719713,
+ -0.7439738204998559,
+ -0.8058709592371975,
+ 3.9825670216561564,
+ 2.0433632979033147,
+ -3.0736372721786225,
+ 2.0699331570914983,
+ -0.3980191305426619,
+ -1.4971897903089584,
+ 2.802996570067535,
+ -3.2026456974571564,
+ 5.224770385461203,
+ 5.228307143639771,
+ 2.7862660568382247,
+ 2.686245084883339,
+ 5.592638000155875,
+ 5.625641064479087,
+ -3.166535187390419,
+ 2.3756604793194684,
+ -0.8173915047493476,
+ -1.1051527646267525,
+ 2.567573323443168,
+ -3.200306807938625,
+ 1.8779761478921304,
+ 3.8065551756275684,
+ 0.09730323958149856,
+ -0.28115731491992935,
+ -1.2329506299759787,
+ 2.6490679512692403,
+ -3.2071455044723414,
+ 1.7895037789277521,
+ 3.4186501391581787,
+ 0.34970961460512917,
+ -0.14760978387808527,
+ -1.4374508142774112,
+ 2.769172901926336,
+ -3.2032819500176966,
+ 2.5386456665430597,
+ -1.0602827107299522,
+ -0.7635164974374338,
+ 1.4617490754616786,
+ 2.103529980123248,
+ -3.4741108930867175,
+ -2.0589060713943237,
+ 2.452724109328446,
+ -0.8455544791502639,
+ -0.9800451307021443,
+ 1.6140800359328336,
+ 2.6214039587534117,
+ -3.853484622623206,
+ -2.1270938661682393,
+ 2.3017585797486606,
+ -0.7097958395985682,
+ -1.1096250100208283,
+ 2.6324089373865953,
+ -3.205438905338662,
+ 2.740970269160566,
+ -3.358805024479791,
+ -4.246361317594402,
+ -5.658805700133949,
+ -4.632170522140581,
+ 3.0499503929083764,
+ -2.0139569725686117,
+ 0.3279396731070469,
+ 1.5576227641562488,
+ -2.8341011662747673,
+ 3.194263241453591,
+ -1.8105528524902395,
+ -3.7676480283508873,
+ -0.7724629626642647,
+ -0.07996656983636524,
+ 1.6761793205311204,
+ -2.8969992520307586,
+ 3.1662456685620195,
+ -1.6019347637147343,
+ -3.1698943526437087,
+ -0.9111441194547766,
+ -0.17619293890575083,
+ 1.8637295219318863,
+ -2.9862317283874225,
+ 3.1412289616132942,
+ -2.205129757632001,
+ 0.5794233298120277,
+ 1.236218821769455,
+ -1.6746865630130134,
+ -2.5441613481075915,
+ 3.2480050501479747,
+ 1.9813552290293859,
+ -2.1037135680661976,
+ 0.3568836648354979,
+ 1.44070356985495,
+ -1.7610865095705082,
+ -2.961507380677032,
+ 3.3912000758377894,
+ 1.9368447693495083,
+ -1.9287487164347112,
+ 0.2174741481086165,
+ 1.5618088507244536,
+ -2.884210996532977,
+ 3.182648793789537,
+ -2.450570779424022,
+ 2.7919743716836276,
+ 2.8904368483965843,
+ 3.1158086234200466,
+ 3.1387713306799907,
+ 3.922151884052348,
+ 3.8552492668019354,
+ -2.8567108080127532,
+ 3.1929323973698938,
+ -2.495848156733794,
+ 0.8906256111322585,
+ 0.9343888389810837,
+ -2.4592421393895605,
+ 2.071809465657399,
+ 3.7818836347019236,
+ -2.283833056844341,
+ -1.4590604713725985,
+ 0.7579937179446535,
+ 1.0675278589108264,
+ -2.597918594093745,
+ 2.0802258229713333,
+ 3.5545446343524576,
+ -1.8827490855137676,
+ -1.351819481007124,
+ 0.5374034272215431,
+ 1.2770882051801533,
+ -2.6759687549153464,
+ 3.209114898049405,
+ -2.6478515554076547,
+ 1.228143256241996,
+ 0.2976664487075698,
+ -0.0851880300105149,
+ -3.510057534250314,
+ -1.8641328077318091,
+ 3.2030688204779283,
+ -2.5142209386420538,
+ 1.0171959061129447,
+ 0.4181749729236442,
+ 0.1773289882740954,
+ -4.089844928355632,
+ -2.0473596129899168,
+ 3.179995003165659,
+ -2.424672679213608,
+ 0.8860216415664217,
+ 1.0399624660219,
+ -2.5273105158008904,
+ 3.198076263152335,
+ -4.617697311146519,
+ -5.6837449527024155,
+ 5.525566491854225e-16,
+ 1.265255464961111e-15,
+ 3.396403595142731e-16,
+ 5.932952943536591e-17,
+ -4.750084667585761e-17,
+ 6.317591928373749e-17,
+ -3.6462121401337455e-16,
+ -4.255017070972774e-16,
+ -1.8413040435430394e-16,
+ -1.4227506535912076e-17,
+ 1.1580528575742386e-17,
+ 8.473638194993215e-16,
+ -6.931773533194372e-17,
+ 1.9844062895147131e-16,
+ 2.2912902967718864e-17,
+ -3.186299719554262e-16,
+ -1.565025718950328e-16,
+ -1.8123527221036834e-16,
+ -2.0265925007549176e-16,
+ 4.643791958872697e-16,
+ -6.948317145445432e-17,
+ -2.1357803416119172e-16,
+ -7.109617364893273e-17,
+ -4.987899093694756e-17,
+ 3.6106433737939653e-16,
+ -1.8363409598677214e-17,
+ -6.27830084927748e-17,
+ -2.192028623265523e-17,
+ 2.041481751780872e-16,
+ 2.043136113005978e-16,
+ -3.092001129723217e-16,
+ 1.0306670432410724e-16,
+ 9.800435897528272e-16,
+ 6.410649747285964e-17,
+ -2.602413604668394e-16,
+ -3.030789764394293e-16,
+ -1.828896334354744e-16,
+ 2.313520775734249e-17,
+ -9.578751493364059e-17,
+ 6.264652369170354e-16,
+ -1.8115255414911304e-16,
+ 2.1217182711985157e-16,
+ 1.9140959374477058e-16,
+ -2.5849394142282112e-17,
+ -7.510799961981491e-17,
+ -1.5054687148465104e-17,
+ -1.213060368309015e-16,
+ -3.3914405114674135e-17,
+ 2.416194569267394e-16,
+ -3.970466940254533e-18,
+ -1.5195307852599116e-16,
+ 5.81094380318502e-17,
+ 1.9025154088719633e-17,
+ 1.3011551035459125e-16,
+ -1.197757526976784e-16,
+ -7.688643793680391e-17,
+ 1.6866212689956232e-16,
+ -3.4907021849737763e-16,
+ 2.27309232329572e-16,
+ 2.581217101471723e-16,
+ 2.0050858048285388e-16,
+ 6.534726839168918e-18,
+ 2.1204775002796862e-16,
+ -5.244325083586195e-17,
+ -2.572531705039916e-16,
+ -2.8612177388209227e-16,
+ 1.25400580863039e-16,
+ 2.192028623265523e-17,
+ -5.856438736875436e-17,
+ -1.1770780116629584e-16,
+ 4.648755042548015e-17,
+ 1.8446127659932515e-16,
+ 7.924390268258004e-17,
+ -1.5848780536516008e-16,
+ -1.0075059860895876e-16,
+ -2.423639194780371e-16,
+ 1.2453204121985832e-16,
+ 4.6983858793011966e-17,
+ -1.1878313596261477e-16,
+ -7.204743135336871e-17,
+ -9.58702329948959e-17,
+ -1.4608009617686469e-16,
+ 5.724089838866952e-17,
+ -1.0960143116327617e-18,
+ -1.0608591355992579e-16,
+ -6.904890163286399e-17,
+ -2.356844360316714e-16,
+ -1.4574922393184348e-16,
+ 9.727644003623604e-17,
+ 2.33595804984975e-16,
+ -2.5535065509511964e-16,
+ 1.274023579454173e-15,
+ 4.0680742525357896e-16,
+ 7.593518023236793e-17,
+ 3.294246789492433e-17,
+ -3.805030817743927e-18,
+ -4.058348417989756e-16,
+ -5.161607022330892e-17,
+ -1.9256764660234482e-16,
+ -9.644925942368301e-17,
+ 4.6032601088575984e-17,
+ -5.161607022330892e-17,
+ 4.8472783895607416e-17,
+ -3.034098486844505e-16,
+ -2.5729452953461926e-16,
+ -9.198248411589667e-17,
+ 2.4836097891904653e-17,
+ -7.15511229858369e-17,
+ -2.0050858048285388e-16,
+ 4.293067379150213e-17,
+ -7.468923943470994e-17,
+ 1.7470054537119942e-16,
+ 1.5814659336248195e-16,
+ -3.5982356646056704e-17,
+ 4.0366413892587744e-17,
+ 1.9422200782745087e-16,
+ -3.871205266748169e-17,
+ -1.268481469350068e-16,
+ 6.071505696139223e-17,
+ 5.09543257332665e-17,
+ -3.2094607767057474e-17,
+ -3.30872245021211e-19,
+ -3.0043199847925965e-16,
+ -1.0323214044661784e-16,
+ 1.5253210495477828e-16,
+ 9.678013166870423e-17,
+ 1.9438744394996148e-16,
+ -4.632211430296955e-18,
+ -2.302870825347629e-16,
+ -1.344995676011223e-16,
+ -1.134891800422754e-16,
+ 2.067951531382569e-17,
+ -6.107901643091555e-16,
+ 1.3536810724430298e-16,
+ -1.5618203940766851e-16,
+ -9.2416753937487e-17,
+ -7.858215819253762e-17,
+ -8.371067799036639e-16,
+ -1.9901965538025843e-16,
+ 7.394994676224067e-17,
+ -2.9761958439657936e-16,
+ 1.9256764660234482e-16,
+ 9.818633871004437e-17,
+ -1.2680678790437914e-16,
+ -3.03823438990727e-16,
+ -1.0778163381565949e-16,
+ 1.9107872149974937e-16,
+ 1.493888186270768e-16,
+ -1.6717320179696687e-16,
+ 6.038418471637101e-18,
+ 1.341686953561011e-16,
+ 2.8401246332008205e-16,
+ 3.4927701365051594e-17,
+ 4.79764755280756e-17,
+ -8.99972506457694e-17,
+ 2.6056189295420368e-18,
+ 4.0655927106981304e-17,
+ 2.238350737568493e-16,
+ -3.935725354527305e-16,
+ -3.226004388956808e-17,
+ -2.039000209943213e-17,
+ -1.5137405209720406e-17,
+ 3.0357528480696116e-17,
+ -4.448163744003906e-17,
+ -5.078888961075589e-17,
+ -5.699274420490361e-17,
+ -1.3383782311107988e-16,
+ 2.4004781376288863e-16,
+ -2.9397998970134604e-16,
+ 2.974955073046964e-16,
+ -2.4021324988539924e-16,
+ 3.7917959279430784e-16,
+ -1.8727369068200544e-16,
+ 9.644925942368301e-17,
+ -5.624828165360588e-17,
+ 5.790264287871193e-18,
+ -3.0936554909483235e-17,
+ 1.0612727259055344e-16,
+ -4.815845526283727e-16,
+ -3.596581303380564e-16
+ ],
+ [
+ -9.51283527380354,
+ -7.826760053097222,
+ 4.973717596124127,
+ -2.8108312084011975,
+ -0.2582998269402428,
+ 3.3915280306033577,
+ -5.245085667560537,
+ 5.402067846157611,
+ -2.7829599711494657,
+ -5.985487881387864,
+ -2.384658512361798,
+ -0.7023764204732884,
+ 3.5770394257483895,
+ -5.320760346266914,
+ 5.2966105262381005,
+ -2.4022799692557406,
+ -4.9571544568845045,
+ -2.477363216071807,
+ -0.8369579573629445,
+ 3.8665934872741836,
+ -5.420613551000122,
+ 5.21904828140108,
+ -3.1816006897265074,
+ 0.18206566640036045,
+ 2.8805921534699466,
+ -3.1915328048204423,
+ -5.043297646131576,
+ 5.127165170144773,
+ 3.2281028278797064,
+ -2.9839669516722243,
+ -0.20793410994503256,
+ 3.207018803124252,
+ -3.3134696769623115,
+ -5.7655321332916465,
+ 5.272710288039839,
+ 3.1119292134277274,
+ -2.6476070085565313,
+ -0.4501348181050084,
+ 3.398070194177537,
+ -5.30554968590197,
+ 5.354505652381991,
+ -3.6691264906051644,
+ 3.4956616457426257,
+ 3.6973923398351127,
+ 5.223943160794663,
+ 5.314863565773581,
+ 8.089805161417297,
+ 8.323795419269553,
+ -3.2676471792685513,
+ 0.28383821823532046,
+ 2.7877377500273406,
+ -5.038455268635062,
+ 5.50329977752943,
+ -4.186181334446786,
+ 1.1582107214760198,
+ 3.20994298798691,
+ 4.997912294663545,
+ 2.1990635525050184,
+ -5.134533613576701,
+ 5.464280738902156,
+ -3.919601300348996,
+ 0.8847126074109734,
+ 2.556433004414423,
+ 4.900317293156548,
+ 2.364208826777495,
+ -5.271023018816977,
+ 5.379239737719194,
+ -3.7472254882744327,
+ 0.7222285419758476,
+ 2.398471559752952,
+ -4.746448965197433,
+ 3.6168960929178153,
+ 6.265446015015465,
+ -2.8088508990704786,
+ -2.110831872817457,
+ 0.4859945696967986,
+ 2.7441597860084284,
+ -4.937683620508668,
+ 3.8090230730190684,
+ 7.22256962611761,
+ -2.7098238769608685,
+ -1.9298603893720025,
+ 0.0966059625486406,
+ 2.95226476470472,
+ -5.04193711730356,
+ 5.472969684546456,
+ -4.060441083954582,
+ 1.3307339170503538,
+ -0.18772901904779268,
+ -0.5557062648522126,
+ -6.053933037443252,
+ -5.144560223869927,
+ 2.533476391746589,
+ 0.5776149953298795,
+ -3.497571323941394,
+ 5.3408780763817925,
+ -5.31705571756179,
+ 3.570818731201314,
+ -0.6976694492419466,
+ -2.375667772768711,
+ -5.988804018391846,
+ -2.785338174806186,
+ 5.4022057654947995,
+ -5.241512565221977,
+ 3.2634709816534735,
+ -0.3319887695852705,
+ -1.6246044781003082,
+ -5.469797059922307,
+ -2.759070705554171,
+ 5.4806113681828865,
+ -5.0986506103102,
+ 3.0678778367985804,
+ 0.1382778547771495,
+ -3.1447651589175054,
+ 5.136749243629858,
+ -3.580204988374303,
+ -6.364665476078369,
+ 1.8921355223973602,
+ 1.6315220746277392,
+ 0.3757438944787546,
+ -3.4584490704446766,
+ 5.273166990098054,
+ -3.5618273842017665,
+ -6.909187930064224,
+ 1.593031919301958,
+ 1.3873595532864893,
+ 0.7636354258953868,
+ -3.644880001253933,
+ 5.343192325551816,
+ -5.2577716470586955,
+ 3.425145910771332,
+ -0.48057267813806814,
+ -2.7068042633647025,
+ -2.4291271009992044,
+ 3.266501749226428,
+ 3.5395743636505435,
+ 9.842327200136102,
+ 9.940055239114264,
+ -5.297984398067871,
+ 3.518715805538745,
+ -0.6036406047373063,
+ -2.6690899692290375,
+ 4.8961587602972445,
+ -5.5403630464866485,
+ 2.9780169824335383,
+ 6.217691183552491,
+ 1.1931866354402965,
+ 0.053257634705092594,
+ -2.875367886737136,
+ 5.006600319451305,
+ -5.494236224107208,
+ 2.7916634997769574,
+ 5.515406522122619,
+ 1.54012400569648,
+ 0.2824426925067384,
+ -3.201843664515328,
+ 5.16359335221821,
+ -5.452340584408754,
+ 3.8482346309785345,
+ -1.0392024861536864,
+ -2.1102323429972616,
+ 2.889215837122,
+ 4.380891765736772,
+ -5.649258243075488,
+ -3.4418551011398,
+ 3.673444722083038,
+ -0.6538131983849227,
+ -2.4657404804943184,
+ 3.151427706592822,
+ 5.336296801124929,
+ -6.180785361896648,
+ -3.503064459069461,
+ 3.3717140511404993,
+ -0.41235572052293856,
+ -2.6763475409818946,
+ 4.984169412214324,
+ -5.52136029051443,
+ 4.270833219607445,
+ -4.929918544928497,
+ -6.299593405260407,
+ 1.7258296300306367e-15,
+ 2.6476397046597306e-15,
+ 6.547961728969766e-16,
+ 1.88571330267948e-16,
+ -2.0150119721791752e-16,
+ -1.3565762045869654e-16,
+ -8.39588321741323e-16,
+ -5.373365259144468e-16,
+ -5.489170544901892e-16,
+ 2.1192367293608567e-16,
+ 1.6915843526709413e-16,
+ 1.422088909101165e-15,
+ 3.206152054255535e-16,
+ 4.3964649557193416e-16,
+ -5.078888961075589e-17,
+ -6.078123141039646e-16,
+ -2.9843642525147547e-16,
+ -3.995282358631123e-16,
+ -3.692534254436715e-16,
+ 4.496553809838258e-16,
+ 2.9116757561866574e-17,
+ -3.4973196298742005e-16,
+ 4.6322114302969544e-17,
+ -1.5468277454741618e-17,
+ 5.637856260008298e-16,
+ -5.338520275840671e-16,
+ -1.344995676011223e-16,
+ -6.402377941160434e-17,
+ 5.426304818347862e-16,
+ 5.464355126525301e-16,
+ -2.9778502051908996e-17,
+ 9.727644003623604e-17,
+ 1.6295458067294643e-15,
+ 2.5857665948407645e-16,
+ -2.6155450968926735e-16,
+ -1.0005576689441423e-15,
+ -2.1936829844906291e-16,
+ 2.953034786814309e-17,
+ -4.73478182625353e-16,
+ 1.083275730199445e-15,
+ -1.3929721515392986e-16,
+ 6.144297590043889e-16,
+ 5.859747459325648e-16,
+ 7.990564717262246e-17,
+ -1.0538281003925571e-16,
+ -1.768512149638373e-16,
+ -8.39588321741323e-17,
+ -7.711804850831876e-16,
+ 1.5385559393486312e-16,
+ 8.007108329513307e-17,
+ 8.12291361527073e-17,
+ 2.248276904919129e-16,
+ 2.874452628621771e-17,
+ -1.8231060700668727e-16,
+ -5.385772968332763e-16,
+ -1.5840508730390478e-16,
+ -6.891965466215257e-17,
+ -4.082963503561744e-16,
+ 1.977788844614289e-16,
+ 6.948317145445432e-17,
+ 2.1796209140772277e-16,
+ 4.4543675985980534e-17,
+ 2.718942673461802e-16,
+ -3.9208361035013506e-17,
+ -4.1838795382932135e-16,
+ -2.773536593890302e-16,
+ -2.4095771243669696e-16,
+ 1.239530147910712e-16,
+ -2.4054412213042045e-16,
+ -1.5782606087511766e-16,
+ 4.0697286137608955e-17,
+ 3.039061570519823e-16,
+ 1.4574922393184348e-16,
+ -1.9455288007247208e-16,
+ -5.900486104493885e-16,
+ -5.666807581447654e-16,
+ 1.2308447514789052e-16,
+ -1.5269754107728888e-16,
+ -2.1639044824387202e-16,
+ -2.455072058057386e-16,
+ 1.4248186051225902e-17,
+ 1.708955145534555e-16,
+ -2.5642598989143855e-17,
+ 1.6386447934675476e-16,
+ -1.435158362779503e-16,
+ -1.4616281423812e-16,
+ -3.6792993646358666e-16,
+ -2.9232562847624e-16,
+ -6.452008777913615e-16,
+ 4.9630836753181654e-17,
+ -6.36474122328927e-16,
+ 1.662798467354096e-15,
+ 5.178150634581953e-16,
+ 1.7205356741102976e-17,
+ -8.164272645898382e-17,
+ -8.883919778819516e-17,
+ -4.506479977188895e-16,
+ -4.516406144539531e-16,
+ 1.7933275680149638e-16,
+ -1.4756902127946014e-16,
+ 1.2515242667927309e-16,
+ 4.331531277633929e-16,
+ 2.0894582273089477e-16,
+ -4.612359095595682e-16,
+ -6.263411598251525e-16,
+ -4.258532588576124e-16,
+ 3.1515581338270354e-17,
+ 4.0697286137608955e-17,
+ -3.189608442004474e-16,
+ 1.6419535159177597e-16,
+ -7.031035206700735e-18,
+ 2.746239633676052e-16,
+ 2.929046549050271e-16,
+ 1.0517601488611746e-16,
+ -7.312276614968765e-17,
+ 1.2738581433316626e-16,
+ -3.361662009415504e-16,
+ -1.8793543517204786e-16,
+ 1.3367238698856927e-16,
+ 3.6213967217571547e-16,
+ 1.0240495983406481e-16,
+ -4.764560328305439e-17,
+ -7.2676088618909e-16,
+ -1.5716431638507523e-16,
+ -1.1675654346185986e-16,
+ -1.7966362904651759e-16,
+ 7.113753267956038e-17,
+ 1.5410374811862903e-16,
+ -4.478355836362092e-16,
+ -1.4591466005435408e-16,
+ -4.3377351322280766e-16,
+ -1.318525896409526e-16,
+ -9.052664623780335e-16,
+ 3.1118534644244896e-16,
+ -5.439003333220258e-16,
+ -1.0720260738687237e-16,
+ 3.1556940368898006e-17,
+ -3.513863242125261e-16,
+ -1.5226327125569854e-16,
+ 1.8487486690560166e-16,
+ -1.1514354126738145e-16,
+ 3.8331549585707298e-16,
+ 8.321436962283457e-17,
+ -6.199718691084941e-16,
+ -8.007108329513307e-17,
+ -1.3052910066086777e-16,
+ 2.996048178667066e-16,
+ 3.06553135012152e-16,
+ -2.7114980479488247e-16,
+ -1.743696731261782e-16,
+ -1.402071138277382e-16,
+ 4.613186276208235e-16,
+ 1.4475660719677982e-18,
+ -1.1009773953080797e-16,
+ -5.793573010321406e-16,
+ 1.356989794893242e-16,
+ 1.0257039595657542e-17,
+ 2.0952484915968189e-16,
+ -6.493367808541266e-16,
+ -1.6576699475562672e-16,
+ -3.101927297073854e-17,
+ -1.2738581433316625e-17,
+ -1.435158362779503e-16,
+ -1.6254099036666991e-16,
+ 3.0539508215457777e-16,
+ 7.386722870098537e-17,
+ -1.4856163801452377e-16,
+ 2.623816903018204e-16,
+ -1.5054687148465104e-16,
+ 2.3247911115802843e-16,
+ -1.8661194619196302e-16,
+ 4.800956275257773e-16,
+ -9.89308012613421e-17,
+ 1.3532674821367533e-16,
+ -3.3335378685887015e-17,
+ 9.396771758602393e-17,
+ -1.1200025493967995e-16,
+ 2.726387298974779e-16,
+ -1.318525896409526e-15,
+ -1.1941179322815508e-15
+ ],
+ [
+ -7.258344303841989,
+ -5.991529279754994,
+ 3.7190671612228896,
+ -1.8603043721594967,
+ -0.5976566733901895,
+ 2.9702262500055334,
+ -4.239868101647584,
+ 4.137800746185177,
+ -1.9944259687550427,
+ -4.394708935616174,
+ -2.3568505073039594,
+ -0.8169326359979752,
+ 3.1049544821741106,
+ -4.282746084053879,
+ 4.028470192446632,
+ -1.6891315355149508,
+ -3.598468296558629,
+ -2.358118661626005,
+ -0.906169555316101,
+ 3.313164001928966,
+ -4.334135982649676,
+ 3.951712819563574,
+ -2.167641716897702,
+ -0.25293518945885735,
+ 2.594924340375103,
+ -2.6213314611616223,
+ -4.227239204491561,
+ 3.747335961465992,
+ 2.4122577598660517,
+ -2.003421968452231,
+ -0.5583781716601108,
+ 2.8354213123447862,
+ -2.7028349592930914,
+ -4.788503744607999,
+ 3.8113124981999134,
+ 2.303159049775617,
+ -1.72588480213754,
+ -0.7470596948829825,
+ 2.974995364367971,
+ -4.274260256085578,
+ 4.0876434955383765,
+ -2.5767112562554346,
+ 2.074578276333483,
+ 2.246437149424405,
+ 3.978937352836345,
+ 4.074175065386578,
+ 6.526604516344204,
+ 6.485674717880851,
+ -2.2397565097689984,
+ -0.17300808806757959,
+ 2.526547296860705,
+ -4.114505028970587,
+ 4.25605516425565,
+ -3.0191929397938053,
+ 0.6616653932248175,
+ 2.0784319139242426,
+ 4.256196219084588,
+ 1.9293993045947262,
+ -4.17428380295393,
+ 4.2084325928881965,
+ -2.79007277135618,
+ 0.44330525886602123,
+ 1.5875593854153236,
+ 4.1285848114207555,
+ 2.0472306853852085,
+ -4.255198871732991,
+ 4.114704298929733,
+ -2.643371168511141,
+ 0.17329749414379678,
+ 2.2362223210309873,
+ -3.924613107539333,
+ 2.836675157652433,
+ 4.988882882747122,
+ -1.7936723213051045,
+ -1.4444974920197537,
+ -0.013648559578580096,
+ 2.494212519414884,
+ -4.050227813437122,
+ 2.974288995241624,
+ 5.716600563951947,
+ -1.6426237641288206,
+ -1.2778359888695547,
+ -0.32016037065740555,
+ 2.648386251600303,
+ -4.11668853786313,
+ 4.21877901067323,
+ -2.910794486896381,
+ 0.6581678869326986,
+ 0.42721056456924544,
+ 0.2678929125729051,
+ -4.185945487263563,
+ -3.5880686798836985,
+ 1.6324508843869183,
+ 0.8462612983255529,
+ -3.0478055108318687,
+ 4.293898202505477,
+ -4.050165267146889,
+ 2.494126952453394,
+ -0.27970005963169253,
+ -1.371942611233662,
+ -4.985252131354617,
+ -2.367471383044088,
+ 4.3255878004581,
+ -3.9745724158551865,
+ 2.2362489503200425,
+ -0.003546399482257853,
+ -0.8343762236281038,
+ -4.517235187176089,
+ -2.3281744901295562,
+ 4.359807409934343,
+ -3.8368163589918325,
+ 2.0733918184899043,
+ 0.5040782610991779,
+ -2.7901607572187532,
+ 4.175606894086573,
+ -2.7680390057472732,
+ -4.996601186426972,
+ 1.049448111855345,
+ 1.0482586043491267,
+ 0.6893665532175376,
+ -3.0194209954937423,
+ 4.256465617412385,
+ -2.737207272790022,
+ -5.38913254941071,
+ 0.7686594079732907,
+ 0.8472880497916022,
+ 0.9903994083083678,
+ -3.1544233062635834,
+ 4.295141106918858,
+ -3.9907101426786906,
+ 2.3716112206498523,
+ 0.017906810801602495,
+ -2.8028598323316882,
+ -2.5826758353112447,
+ 2.2476630536614923,
+ 2.477121748744885,
+ 7.728828050785146,
+ 7.824110326055195,
+ -4.0299001801731436,
+ 2.4498099639704014,
+ -0.07939382515414248,
+ -2.437916462431879,
+ 4.022718847748132,
+ -4.306681191581763,
+ 2.183685311679605,
+ 4.654369474449318,
+ 1.4197986615188232,
+ 0.3008397490511454,
+ -2.5910736855322805,
+ 4.093850308949792,
+ -4.242980605349575,
+ 2.022880722263732,
+ 4.093701620676383,
+ 1.646249439235305,
+ 0.4780284440112854,
+ -2.8316104004226696,
+ 4.191405860707052,
+ -4.193507251869457,
+ 2.7287202760000193,
+ -0.4252021408111153,
+ -2.019148191203359,
+ 2.4181960756681087,
+ 3.7605659283887465,
+ -4.215929013784948,
+ -2.616602411463605,
+ 2.580333149592296,
+ -0.11907564766193984,
+ -2.286194123750282,
+ 2.621301344913723,
+ 4.5314985904268825,
+ -4.568939786518759,
+ -2.636877216415949,
+ 2.3263891656664386,
+ 0.07170189734646816,
+ -2.443308825663457,
+ 4.079498173544904,
+ -4.27853850354778,
+ 3.091975405135361,
+ -3.4070874221752128,
+ -4.3916295625198805,
+ 1.324812469064929e-15,
+ 2.0037623158484542e-15,
+ 5.085506405976014e-16,
+ 1.4570641087279532e-16,
+ -1.6427806965303127e-16,
+ -1.094773540713932e-16,
+ -6.576085869796569e-16,
+ -4.0399501117089867e-16,
+ -4.258325793422986e-16,
+ 1.8346865986426151e-16,
+ 1.3607121076497305e-16,
+ 1.092540153060039e-15,
+ 2.961306592939839e-16,
+ 3.4121200267812387e-16,
+ -4.748016716054378e-17,
+ -4.73478182625353e-16,
+ -2.362065937933455e-16,
+ -3.190849212923304e-16,
+ -2.8239946112560365e-16,
+ 3.1962258869048984e-16,
+ 2.845501307182415e-17,
+ -2.7660919683773245e-16,
+ 5.600012746983997e-17,
+ -3.805030817743927e-18,
+ 4.300925594969467e-16,
+ -4.425829867464974e-16,
+ -1.1597072187993448e-16,
+ -4.450231695535288e-17,
+ 4.3046479077259555e-16,
+ 4.513097422089319e-16,
+ 2.3161057151484772e-17,
+ 6.617444900424221e-17,
+ 1.2947030947679987e-15,
+ 2.1854111783650989e-16,
+ -1.788778074645922e-16,
+ -8.165927007123488e-16,
+ -1.7006833394090247e-16,
+ 2.0296944280519913e-17,
+ -3.9175273810511386e-16,
+ 8.304066169419844e-16,
+ -1.0687173514185116e-16,
+ 5.019331956971772e-16,
+ 4.344352577128501e-16,
+ 7.02689930363797e-17,
+ -6.733250186181645e-17,
+ -1.6907571720583883e-16,
+ -5.488343364289338e-17,
+ -6.598006156029224e-16,
+ 1.1224840912344586e-16,
+ 6.633988512675282e-17,
+ 9.578751493364059e-17,
+ 1.876459219576543e-16,
+ 7.961613395822891e-18,
+ -1.7321162026860397e-16,
+ -4.577617509868455e-16,
+ -1.2192642229031628e-16,
+ -7.386722870098537e-17,
+ -3.1970530675174515e-16,
+ 1.4698999485067302e-16,
+ 2.4980854499101433e-17,
+ 1.5236666883226767e-16,
+ 3.7512640779279805e-17,
+ 1.923194924185789e-16,
+ -2.7048806030484002e-17,
+ -3.146595050151717e-16,
+ -1.8843174353957968e-16,
+ -2.271437962070614e-16,
+ 9.89308012613421e-17,
+ -2.0762233375080992e-16,
+ -1.2973293932128548e-16,
+ 2.580803511165446e-17,
+ 2.270610781458061e-16,
+ 1.0223952371155421e-16,
+ -1.4723814903443893e-16,
+ -4.806332949239367e-16,
+ -4.416730880726891e-16,
+ 7.837536303939936e-17,
+ -1.6270642648918052e-16,
+ -1.919059021123024e-16,
+ -1.9856470604335427e-16,
+ 2.2871543937091212e-17,
+ 1.492233825045662e-16,
+ -2.3657365519016588e-17,
+ 1.3979352352146168e-16,
+ -1.0397660299791557e-16,
+ -1.11876177847797e-16,
+ -2.8206858888058244e-16,
+ -2.420330472330159e-16,
+ -5.810116622572466e-16,
+ 6.815968247436948e-17,
+ -4.920794066501393e-16,
+ 1.2292731083150542e-15,
+ 3.8496985708217903e-16,
+ 1.9769616640017358e-17,
+ -6.768405362215149e-17,
+ -7.287461196592174e-17,
+ -3.3459455777769965e-16,
+ -3.77856103814223e-16,
+ 1.9653811354259935e-16,
+ -9.89308012613421e-17,
+ 9.254083102936996e-17,
+ 3.884853746855294e-16,
+ 1.8264147925170849e-16,
+ -3.548604827852488e-16,
+ -5.089642309038779e-16,
+ -3.623361275711968e-16,
+ 2.249931266144235e-17,
+ 4.1028158382630167e-17,
+ -2.57087734381481e-16,
+ 1.3623664688748366e-16,
+ 7.672100181429332e-18,
+ 2.041481751780872e-16,
+ 2.221393535011156e-16,
+ 9.88480832000868e-17,
+ -6.518183226917858e-17,
+ 7.924390268258004e-17,
+ -2.7892530255288093e-16,
+ -1.4508747944180105e-16,
+ 8.317301059220692e-17,
+ 3.0440246541951414e-16,
+ 8.983181452325879e-17,
+ -4.0035541647566533e-17,
+ -6.006985608360087e-16,
+ -1.1994118882018901e-16,
+ -1.2635183856747498e-16,
+ -1.7337705639111458e-16,
+ 3.738856368739685e-17,
+ 1.2076836943274204e-16,
+ -3.4030210400431554e-16,
+ -9.793818452627846e-17,
+ -3.5816920523546093e-16,
+ -1.050519377942345e-16,
+ -7.113753267956037e-16,
+ 2.6453235989445825e-16,
+ -4.376974512536061e-16,
+ -7.870623528442057e-17,
+ 4.231028833208736e-17,
+ -2.1374347028370233e-16,
+ -1.0699581223373412e-16,
+ 1.446325301048969e-16,
+ -5.643439729143031e-17,
+ 2.934836813338142e-16,
+ 6.27002904315195e-17,
+ -5.030912485547514e-16,
+ -2.1837568171399928e-17,
+ -9.165161187087545e-17,
+ 2.2251158477676444e-16,
+ 2.246622543694023e-16,
+ -2.0332099456553418e-16,
+ -1.4426029882924803e-16,
+ -1.531111313835654e-16,
+ 3.268190600197012e-16,
+ -1.0753347963189358e-17,
+ -1.0323214044661784e-16,
+ -4.863822001811803e-16,
+ 1.1539169545114736e-16,
+ -4.301339185275744e-18,
+ 1.7015105200215777e-16,
+ -4.905181032439454e-16,
+ -1.3880090678639804e-16,
+ -1.1870041790135946e-17,
+ 1.5426918424113966e-17,
+ -1.2738581433316626e-16,
+ -1.300741513239636e-16,
+ 2.809105360230082e-16,
+ 7.196471329211341e-17,
+ -9.562207881112999e-17,
+ 1.9356026333740845e-16,
+ -7.543887186483611e-17,
+ 1.5704023929319228e-16,
+ -1.315217173959314e-16,
+ 3.7686348707915936e-16,
+ -6.220398206398768e-17,
+ 1.0166049728276709e-16,
+ -1.8859717966209028e-17,
+ 9.727644003623604e-17,
+ -8.743299074685501e-17,
+ 2.3723539968020834e-16,
+ -1.03000529875103e-15,
+ -9.989033077190362e-16
+ ],
+ [
+ 5.165036992986327,
+ 4.219361389673006,
+ -2.838277354371913,
+ 1.9415805292926391,
+ -0.49608875812233266,
+ -1.275342653964492,
+ 2.461361973244846,
+ -2.9297330496932963,
+ 1.7090831914135993,
+ 3.514340782037404,
+ 0.46960912275495237,
+ -0.050170498979317565,
+ -1.3856008441246541,
+ 2.526206710716872,
+ -2.9158696540136844,
+ 1.525172722399145,
+ 2.973844549901052,
+ 0.6266109845004382,
+ 0.04355144616177819,
+ -1.563282533892056,
+ 2.6175711725451216,
+ -2.9016822446570845,
+ 2.105397191789736,
+ -0.7218282379321879,
+ -0.9755890546761029,
+ 1.4469591945787799,
+ 2.15600473493719,
+ -3.0367649056558412,
+ -1.8307239455276487,
+ 2.019640535445512,
+ -0.5212287715000512,
+ -1.1650508678435005,
+ 1.5308803926562766,
+ 2.53249080919253,
+ -3.188082550573271,
+ -1.7990639137346929,
+ 1.868163199962685,
+ -0.39661945967523526,
+ -1.2792361513065111,
+ 2.5122542591763146,
+ -2.9252389268931993,
+ 2.313159053617966,
+ -2.808032457791902,
+ -2.8900210566178344,
+ -2.847063181270443,
+ -2.8567107545564423,
+ -3.3237717253426267,
+ -3.2550127860975553,
+ 2.4831889621539673,
+ -0.7735817775200892,
+ -0.9214062696217071,
+ 2.299633819697875,
+ -2.921766853305144,
+ 2.52024196255593,
+ -0.9698403085654383,
+ -2.312209306056642,
+ -2.0337788036631212,
+ -0.8078039830030469,
+ 2.373508098654578,
+ -2.927057247809016,
+ 2.4159243096763072,
+ -0.8362041214784095,
+ -1.945463382157202,
+ -2.0623976529039436,
+ -0.9100264479167364,
+ 2.4823517215110913,
+ -2.9261053869138935,
+ 2.344703400907276,
+ -0.9934386104602261,
+ -0.699812126238814,
+ 2.090552580214835,
+ -1.8456393864066651,
+ -3.082004940945336,
+ 2.0617433173463664,
+ 1.4011075326708617,
+ -0.8745246207590115,
+ -0.8954352958149128,
+ 2.2264853493133643,
+ -1.9637431617250387,
+ -3.605632683059841,
+ 2.1238893006531296,
+ 1.346729989301296,
+ -0.6784796036836096,
+ -1.0164419580492836,
+ 2.302248072127659,
+ -2.9269706583219812,
+ 2.4710642940311742,
+ -1.2922276516795264,
+ 0.9778657278797173,
+ 1.364150218767969,
+ 3.952256077656042,
+ 3.311128800254496,
+ -1.8583743046421897,
+ 0.2878567666675506,
+ 1.2956078874274923,
+ -2.5851308997490596,
+ 2.876078230042851,
+ -2.3138428931668065,
+ 0.7667183161387813,
+ 1.9665929505713067,
+ 2.613213882837366,
+ 1.1403274608041176,
+ -2.6406855329179284,
+ 2.8635621851481745,
+ -2.181920541164946,
+ 0.5637775627478201,
+ 1.5042948507265983,
+ 2.441989959819827,
+ 1.155629948905445,
+ -2.7235035006388952,
+ 2.829209734522594,
+ -2.09757004131812,
+ 0.5157319835527826,
+ 1.086286621979282,
+ -2.416769102304977,
+ 1.8881051693920354,
+ 3.2402338196246734,
+ -1.6327626440618623,
+ -1.1877380564297764,
+ 0.39402940317981716,
+ 1.2730181976527282,
+ -2.5255761958615897,
+ 1.9039414736583682,
+ 3.5711185652933612,
+ -1.5510919189053365,
+ -1.0777029141062915,
+ 0.1902741833402912,
+ 1.3844331458845782,
+ -2.587185695319999,
+ 2.865754913824858,
+ -2.252238166086107,
+ 0.8301527663176387,
+ 0.3376537874311412,
+ 0.19968772226565126,
+ -2.1417025360909068,
+ -2.255604007914,
+ -5.007501442359287,
+ -5.029979099511471,
+ 2.874729554396364,
+ -2.2925932311871264,
+ 0.8918665549591703,
+ 0.8116182386653564,
+ -2.2390541947668017,
+ 2.865091399431527,
+ -1.7529174522269753,
+ -3.513772121392503,
+ 0.13434773942346392,
+ 0.37064080666633864,
+ 0.9310519632777975,
+ -2.318256297909265,
+ 2.88475201512323,
+ -1.6803197252486717,
+ -3.1705736033132093,
+ -0.11278338424224997,
+ 0.24976279165894072,
+ 1.1205352688712311,
+ -2.4385664665786346,
+ 2.887954086400977,
+ -2.4292704955272644,
+ 1.1076382580687545,
+ 0.49644856433273443,
+ -1.24055270701154,
+ -1.73688872866907,
+ 3.212371724695683,
+ 1.8834327639624455,
+ -2.3564977699631298,
+ 0.9178626762859513,
+ 0.6968658594206465,
+ -1.3782576575246215,
+ -2.191206348702074,
+ 3.5816532447032103,
+ 1.9572464299612091,
+ -2.2300303644341004,
+ 0.7958790718847534,
+ 0.8157763423572515,
+ -2.3027386577976534,
+ 2.875692643856099,
+ -2.5960515278754475,
+ 3.2210131081150295,
+ 4.057626183587749,
+ -3.4741585727227157e-16,
+ -6.273337765602161e-16,
+ -3.2028433318053227e-16,
+ -9.719372197498074e-18,
+ 5.39321759384574e-17,
+ -7.084801946516682e-17,
+ 4.65537248744844e-16,
+ 3.3484271196146555e-16,
+ 1.4723814903443893e-16,
+ -1.1034589371457388e-16,
+ 1.3152171739593138e-17,
+ -8.013725774413731e-16,
+ -1.8049080965907061e-16,
+ -2.8008335541045517e-16,
+ -4.0035541647566533e-17,
+ 1.9074784925472816e-16,
+ 1.5257346398540593e-16,
+ 2.8262693579405573e-16,
+ 2.602310207091825e-16,
+ -2.4666525866331285e-16,
+ 8.958366033949288e-17,
+ 2.812414082680294e-16,
+ -1.0029564927205459e-17,
+ 2.6511138632324534e-17,
+ -3.9125642973758204e-16,
+ 7.080666043453917e-17,
+ 7.436353706851719e-17,
+ 4.466775307786349e-17,
+ -1.6626330312315854e-16,
+ -2.392206331503356e-16,
+ 1.7751295945387971e-16,
+ -5.2939559203393765e-17,
+ -1.172611236355172e-15,
+ -1.0075059860895876e-16,
+ 1.9978479744686998e-16,
+ 4.109433283163441e-16,
+ 2.03817302933066e-16,
+ 1.3731198168380258e-17,
+ 2.1423977865123414e-16,
+ -5.950944121859619e-16,
+ 1.9124415762225997e-16,
+ -2.957997870489627e-16,
+ -1.535247216898419e-16,
+ 1.9025154088719633e-17,
+ -7.692779696743157e-18,
+ 1.431022459716738e-17,
+ 8.032957723655589e-17,
+ 4.488902389172143e-16,
+ -2.1151008262980915e-16,
+ 7.610061635487855e-18,
+ 5.616556359235058e-17,
+ -8.735027268559971e-17,
+ 1.5633713577252223e-17,
+ 4.9961708998202865e-17,
+ 2.0927669497591598e-16,
+ 6.063233890013693e-17,
+ -3.004733575098873e-17,
+ 3.7421650911898967e-16,
+ -1.575365476607241e-16,
+ -3.6892255319865034e-17,
+ -1.6448486480616953e-16,
+ -1.631613758260847e-17,
+ -1.651879683268396e-16,
+ 4.174160166095715e-17,
+ 1.981924747677054e-16,
+ 1.4060002461870088e-16,
+ 4.5122702414767654e-17,
+ -6.55954225754551e-17,
+ 1.712263867984767e-16,
+ 2.212087753119934e-16,
+ -4.6073960119203635e-17,
+ -1.6618058506190324e-16,
+ -9.074171319706712e-17,
+ 1.282129949457193e-16,
+ 2.6486323213947946e-16,
+ 3.139486466762589e-16,
+ -9.823803749832894e-17,
+ 1.495542547495874e-16,
+ 2.537790119312689e-16,
+ 9.843449289381028e-17,
+ 2.635604226747084e-17,
+ -2.4360469039686662e-17,
+ -2.067951531382569e-17,
+ -2.2664748783952955e-17,
+ 5.939156798130739e-17,
+ 6.445804923319468e-17,
+ 2.1043474783349022e-16,
+ 2.1837568171399928e-16,
+ 2.7330047438752034e-16,
+ -3.576728968679291e-16,
+ 3.8886794571883517e-16,
+ -1.087659787445976e-15,
+ -3.278943948160201e-16,
+ -1.0885696861197843e-16,
+ -3.519653506413133e-17,
+ 8.726755462434441e-17,
+ 3.344704806858167e-16,
+ 2.8206858888058244e-16,
+ -3.341809674714232e-17,
+ 1.3069453678337836e-17,
+ -3.927039958095498e-17,
+ -2.0346575117273096e-16,
+ -6.220398206398768e-17,
+ 3.214423860381065e-16,
+ 4.516406144539531e-16,
+ 2.8810700735221954e-16,
+ -6.685687300959846e-17,
+ 5.922613185879678e-17,
+ 3.6693731972852303e-16,
+ -1.0323214044661784e-16,
+ 4.768696231368204e-17,
+ -1.6378176128549945e-16,
+ -2.111378513541603e-16,
+ -4.301339185275743e-17,
+ -5.459392042849982e-17,
+ -1.1894857208512538e-16,
+ 1.4566650587058817e-16,
+ 1.3470636275426056e-16,
+ 1.4161332086907834e-16,
+ -1.981924747677054e-16,
+ -3.234276195082338e-17,
+ 1.555099551599692e-17,
+ 5.714163671516315e-16,
+ 1.3019822841584656e-16,
+ -1.7148488073989955e-17,
+ -3.474158572722716e-18,
+ -1.317698715796973e-16,
+ -8.983181452325879e-17,
+ 1.6249963133604226e-16,
+ 5.107840282514945e-17,
+ 2.326031882499114e-16,
+ 3.871205266748169e-17,
+ 6.815968247436947e-16,
+ -2.1986460681659473e-16,
+ 2.3706996355769773e-16,
+ -2.4195032917176056e-17,
+ 2.1672132048889322e-17,
+ 4.8902917814135e-16,
+ 2.0811864211834174e-16,
+ -1.0960143116327615e-16,
+ 1.888453338458562e-16,
+ -2.636224612206499e-16,
+ -8.652309207304668e-17,
+ 2.4190897014113294e-16,
+ 2.4736836218398293e-16,
+ 9.371956340225802e-17,
+ -1.3400325923359048e-16,
+ -3.176373552203626e-17,
+ 1.546414155167885e-16,
+ 8.271806125530276e-17,
+ 5.277412308088316e-17,
+ -2.348779349344322e-16,
+ 2.2747466845208258e-17,
+ 2.3719404064958065e-17,
+ 1.771820872088585e-16,
+ -7.093073752642212e-17,
+ -9.644925942368301e-17,
+ -3.446034431895913e-16,
+ 3.6065074707312e-16,
+ 1.0439019330419208e-16,
+ 4.889671395954084e-17,
+ 1.4558378780933287e-17,
+ 8.495144890919593e-17,
+ 7.703119454400069e-17,
+ -1.432676820941844e-16,
+ -4.9382682569415746e-17,
+ 5.343586757092558e-17,
+ -2.756165801026688e-16,
+ 5.757177063369073e-17,
+ -1.9604180517506753e-16,
+ 1.6642873924566914e-16,
+ -2.415367388654841e-16,
+ 1.594804221002237e-16,
+ -9.553936074987468e-17,
+ 9.512577044359817e-18,
+ -1.2316719320914582e-16,
+ -9.926167350636332e-19,
+ -2.4368740845812195e-16,
+ 4.3410438546782887e-16,
+ 9.562207881113e-16
+ ],
+ [
+ -4.525584055778612,
+ -3.6209907354299675,
+ 2.74037346671495,
+ -2.839753306273855,
+ 1.942394856087458,
+ -0.3999913707597324,
+ -1.2776023871374447,
+ 2.4654378681638422,
+ -1.9958350887176004,
+ -3.744783688656163,
+ 1.664436748487212,
+ 1.1296045949466285,
+ -0.27528770330719377,
+ -1.3901038858454398,
+ 2.5665816430622326,
+ -1.8919898077516724,
+ -3.316054024068581,
+ 1.258502368407046,
+ 0.9955217585543439,
+ -0.0721985332745905,
+ -1.5677438769130527,
+ 2.620287146017635,
+ -2.8887862403908655,
+ 2.1064352607522023,
+ -0.7188073259734209,
+ -0.5485791229981619,
+ -0.4242098205397546,
+ 3.297174531698607,
+ 1.8003535894648368,
+ -2.8637519713293966,
+ 1.9628338437364674,
+ -0.5179466525042159,
+ -0.6666652591392422,
+ -0.7146640220325484,
+ 3.611628022016775,
+ 1.8516444438344928,
+ -2.813487781791042,
+ 1.8668898366271385,
+ -0.3957050250321688,
+ -1.36754165064383,
+ 2.515012039958734,
+ -2.9275468118051933,
+ 4.749924544117941,
+ 4.752437972640919,
+ 2.521463342154224,
+ 2.4299897418107634,
+ 0.6418657296733965,
+ 0.5135072155824149,
+ -1.3155062303328366,
+ 2.4870126683188687,
+ -0.7758610212926745,
+ -1.0111083354380588,
+ 2.2999163923881922,
+ -2.9236398111166153,
+ 1.7076486423667725,
+ 3.458329917769949,
+ 0.07141323776264111,
+ -0.2638579846812084,
+ -1.1263280838946532,
+ 2.375265834537465,
+ -2.9298607057326946,
+ 1.6279588786004655,
+ 3.107039884800242,
+ 0.3018019509153677,
+ -0.14271063667556624,
+ -1.3131750443957755,
+ 2.4840910247430004,
+ -2.927869488257578,
+ 2.2900899932600987,
+ -0.9959214877777758,
+ -0.7007374273986424,
+ 1.3197909839841664,
+ 1.8955894025550977,
+ -3.1567342228758912,
+ -1.8692707558448851,
+ 2.2135298501506777,
+ -0.800469079294929,
+ -0.8964999377848498,
+ 1.4579709105787437,
+ 2.3643092734564,
+ -3.5028591528241213,
+ -1.9320480387767045,
+ 2.0763449941771377,
+ -0.6783843077838758,
+ -1.0151819009204461,
+ 2.359149702523429,
+ -2.928794136544384,
+ 2.472400853565897,
+ -3.060695958595078,
+ -3.8683806546857173,
+ -5.136768486076303,
+ -4.20418206694944,
+ 2.749864926181955,
+ -1.858845565883971,
+ 0.28972988125310534,
+ 1.3800137122790674,
+ -2.586008739393212,
+ 2.8778129908173122,
+ -1.6477960225478514,
+ -3.425779190106576,
+ -0.6834162081715871,
+ -0.06327861088594271,
+ 1.488795978800867,
+ -2.642665339730219,
+ 2.8542723066670295,
+ -1.458913286835065,
+ -2.883549808741641,
+ -0.8116037275658933,
+ -0.1510756103293989,
+ 1.6585356229757664,
+ -2.7254237757211106,
+ 2.8312092468564725,
+ -2.0315314934927255,
+ 0.5176939731160867,
+ 1.0877871184058487,
+ -1.5140197247796459,
+ -2.296908632053843,
+ 2.9538026655950422,
+ 1.8002407236570481,
+ -1.938983555048733,
+ 0.31688002342062666,
+ 1.274622338949843,
+ -1.5928284464552827,
+ -2.6754202684179926,
+ 3.085345321482376,
+ 1.7605127800590676,
+ -1.781786698443766,
+ 0.1895226904127705,
+ 1.3838340625062044,
+ -2.6318657540933175,
+ 2.8676934342830225,
+ -2.2532108195004734,
+ 2.554579670107251,
+ 2.643395249238598,
+ 2.836186826590513,
+ 2.8581350200637,
+ 3.540979739169943,
+ 3.4784302507026936,
+ -2.6064594517117574,
+ 2.876747575870319,
+ -2.293940772950751,
+ 0.799728940368842,
+ 0.813484411268751,
+ -2.2435653662518438,
+ 1.878035422061528,
+ 3.4254928254515513,
+ -2.085684458158302,
+ -1.3300212074286397,
+ 0.6804852187451371,
+ 0.935386001338105,
+ -2.3691831475063667,
+ 1.8863509486187862,
+ 3.220703915904414,
+ -1.721326329243964,
+ -1.2330726111470265,
+ 0.47962395513510414,
+ 1.1249156796554611,
+ -2.4413949178426457,
+ 2.890389401739026,
+ -2.4310095611786147,
+ 1.1054224951919953,
+ 0.26132813967363805,
+ -0.0927603723475639,
+ -3.179712233499661,
+ -1.6871612498100474,
+ 2.886420234998983,
+ -2.3096037751525613,
+ 0.9153107434573917,
+ 0.37026095902549905,
+ 0.1432224868136274,
+ -3.706321592009759,
+ -1.8539508789186223,
+ 2.8654950563729606,
+ -2.2297486579159007,
+ 0.7955414015704817,
+ 0.909433338589405,
+ -2.3056962117200364,
+ 2.878876285795448,
+ -4.191725918619843,
+ -5.158644551003514,
+ 8.185779341824761e-16,
+ 1.7926658235249216e-15,
+ 3.675577051879378e-16,
+ 1.3102540902839958e-16,
+ -1.048865016717239e-16,
+ 6.327931686030661e-18,
+ -3.2872157542857315e-16,
+ -3.929935090239434e-16,
+ -3.3273340139945533e-16,
+ -2.8000063734919987e-17,
+ 5.761312966431838e-17,
+ 8.068319694842231e-16,
+ -1.2358078351542233e-16,
+ 1.357816975505795e-16,
+ -1.919059021123024e-17,
+ -2.9695783990653694e-16,
+ -1.6167245072348923e-16,
+ -1.4872707413703438e-16,
+ -1.258968892305708e-16,
+ 4.948194424292212e-16,
+ -1.0339757656912844e-17,
+ -1.3665023719376017e-16,
+ -6.650532124926343e-17,
+ -4.475047113911879e-17,
+ 3.479121656398034e-16,
+ -2.431911000905901e-17,
+ -7.510799961981491e-17,
+ -2.804142276554764e-17,
+ 3.0142461521432324e-16,
+ 1.9091328537723876e-16,
+ -2.4641710447954694e-16,
+ 1.021568056502989e-16,
+ 7.8276101365893e-16,
+ 1.2639319759810263e-16,
+ -2.8765205801531537e-16,
+ -2.838883862281991e-16,
+ -1.4806532964699195e-16,
+ 7.986428814199481e-17,
+ -1.2324991127040112e-16,
+ 5.877118252189262e-16,
+ -5.790264287871194e-17,
+ 1.8179361912384163e-16,
+ 2.571497729274225e-16,
+ 2.6883369907973396e-17,
+ -9.446402595355575e-17,
+ 3.6065074707312007e-17,
+ -1.108422020821057e-16,
+ 2.307833909022947e-16,
+ 1.7197084934977443e-16,
+ 6.038418471637102e-17,
+ -8.900463391070577e-17,
+ 3.9539233280034717e-17,
+ 3.3004506440865804e-17,
+ 1.0984958534704206e-16,
+ -1.8065624578158122e-16,
+ -8.917007003321637e-17,
+ 1.168806205537428e-16,
+ -2.3210687988237957e-16,
+ 1.8193837573103841e-16,
+ 3.4907021849737763e-16,
+ 2.0166663334042812e-16,
+ 4.384057246531046e-17,
+ 2.26482051717019e-16,
+ -2.069244001089683e-17,
+ -2.7611288847020064e-16,
+ -3.487393462523564e-16,
+ 1.678349462870093e-16,
+ 3.3335378685887015e-17,
+ -2.150669592637872e-18,
+ -4.301339185275743e-17,
+ 1.5749518863009644e-16,
+ 2.693300074472658e-16,
+ 1.1448179677733903e-16,
+ -1.7941547486275168e-16,
+ -7.113753267956038e-18,
+ -2.9977025398921723e-16,
+ 1.33170908742209e-16,
+ 7.361907451721946e-17,
+ -5.0292581243224076e-17,
+ -6.658803931051873e-17,
+ -6.29484446152854e-17,
+ -3.54136699749265e-17,
+ 2.605618929542037e-17,
+ 1.5158084725034232e-17,
+ -1.282957130069746e-16,
+ -7.560430798734672e-17,
+ -2.0185274897825255e-16,
+ -1.0554824616176632e-16,
+ 2.4683069478582346e-16,
+ 8.271806125530276e-17,
+ -4.538946816231601e-16,
+ 1.263104795368473e-15,
+ 3.513863242125261e-16,
+ 2.99439381744196e-17,
+ 1.7453510924868884e-17,
+ -3.143286327701505e-17,
+ -4.237232687802884e-16,
+ -8.304893350032397e-17,
+ -1.108422020821057e-16,
+ -8.503416697045123e-17,
+ 2.6469779601696883e-17,
+ 2.8124140826802937e-18,
+ -8.768114493062093e-18,
+ -2.503875714198015e-16,
+ -1.741215189424123e-16,
+ -7.874759431504822e-17,
+ 1.1580528575742387e-18,
+ -4.297203282212978e-17,
+ -4.278591718430535e-17,
+ 1.737079286361358e-17,
+ -6.642260318800812e-17,
+ 2.192028623265523e-16,
+ 1.3789100811258971e-16,
+ -3.846906836254424e-17,
+ -1.6378176128549948e-17,
+ 2.03817302933066e-16,
+ -1.852884572118782e-17,
+ -1.1200025493967995e-16,
+ 2.2325604732806217e-16,
+ 6.782881022934826e-18,
+ -3.0388547753666854e-17,
+ 4.772832134430969e-17,
+ -2.60644611015459e-16,
+ -7.312276614968765e-17,
+ 1.2391165576044355e-16,
+ 2.203195561534989e-16,
+ 1.5406238908800138e-16,
+ -4.135903062765138e-18,
+ -2.862044919433476e-16,
+ -1.8661194619196302e-16,
+ -1.7908460261773047e-16,
+ 1.4558378780933287e-17,
+ -4.4303793608340157e-16,
+ 9.103122641146068e-17,
+ -1.6030760271277674e-16,
+ -1.9984683599281146e-16,
+ -5.761312966431838e-17,
+ -7.472749653804051e-16,
+ -1.237875786685606e-16,
+ 5.153335216205362e-17,
+ -3.1714104685283076e-16,
+ 2.0121168400352396e-16,
+ 8.921142906384402e-17,
+ -1.2229865356596514e-16,
+ -1.393385741845575e-16,
+ -1.3036366453835716e-16,
+ 2.1531511344755308e-16,
+ 2.6097548326048023e-16,
+ -1.7759567751513502e-16,
+ 3.6561383074843823e-17,
+ 1.680831004707752e-16,
+ 3.7154885164350616e-16,
+ 5.897797767503087e-17,
+ 6.256587358197963e-17,
+ -1.6146565557035098e-16,
+ -1.471347514578698e-17,
+ 3.326817026111708e-17,
+ 5.4759356551010426e-17,
+ -4.606155241001535e-16,
+ -9.016268676828e-17,
+ -2.651630851115299e-17,
+ -5.0871607672011194e-18,
+ 4.2144852209576754e-17,
+ -1.823933250679426e-17,
+ 5.39321759384574e-17,
+ -5.748905257243542e-17,
+ -1.531938494448207e-16,
+ 1.5145677015845934e-16,
+ -3.5585309952031246e-16,
+ 3.1408047858638456e-16,
+ -1.3962808739895107e-16,
+ 3.6991516993371393e-16,
+ -1.0455562942670269e-16,
+ 1.5104317985218283e-16,
+ -8.139457227521791e-17,
+ -5.215373762146839e-17,
+ -6.675347543302933e-17,
+ 6.265893140089185e-17,
+ -7.126988157756885e-16,
+ -8.271806125530277e-18
+ ],
+ [
+ 2.4106570748256795,
+ 1.8426161284495821,
+ -1.8247409189341965,
+ 2.726075974526688,
+ -2.822010005955614,
+ 1.8562848914350336,
+ -0.3939628525764643,
+ -1.2756586049534748,
+ 1.6282345979573214,
+ 2.749421396202942,
+ -3.240762125577362,
+ -1.8328559476625763,
+ 1.761414309414352,
+ -0.26747910518355916,
+ -1.4545919234912963,
+ 1.6379071944977854,
+ 2.571936518957119,
+ -2.7201993367502695,
+ -1.7025149769353358,
+ 1.596066339233405,
+ -0.06560956397725436,
+ -1.5616203684096275,
+ 2.6451689284240505,
+ -2.8712455893127276,
+ 2.0898232809569963,
+ -0.5234316549554836,
+ -1.4352591888772939,
+ -2.4780137860205858,
+ -1.1815932013921755,
+ 2.692081250332854,
+ -2.827802405243371,
+ 1.9467057055790764,
+ -0.40999529554532965,
+ -1.3252303695364211,
+ -2.851779483991572,
+ -1.2985453838503742,
+ 2.755415773373134,
+ -2.7951253388746458,
+ 1.8530019395888173,
+ -0.2945290780100261,
+ -1.362879405645841,
+ 2.5033655858962596,
+ -5.126609875701689,
+ -5.049380202533675,
+ -1.3736582463558242,
+ -1.2116144139569074,
+ 2.2327263496626917,
+ 2.378341819658922,
+ -0.35237433249547184,
+ -1.3132578442562126,
+ 2.474207676681762,
+ -0.6772551143476205,
+ -1.007884272269552,
+ 2.291106874400434,
+ -1.88245857061069,
+ -3.4665318712794306,
+ 1.9016421949859914,
+ 1.2423530735622639,
+ -0.5552017574986546,
+ -1.1247913110273744,
+ 2.408520859601034,
+ -1.8824114022115994,
+ -3.2454197215667757,
+ 1.54608504698963,
+ 1.1419987452765223,
+ -0.35533814646952105,
+ -1.310533599956071,
+ 2.472536750657852,
+ -2.9072937970847015,
+ 2.2774695262438946,
+ -0.9867841130758728,
+ -0.3658841778932215,
+ -0.0971736498495071,
+ 3.212650180910738,
+ 1.7233116588970747,
+ -2.8944221465075266,
+ 2.1495046100846356,
+ -0.7921657610669648,
+ -0.4788286515863522,
+ -0.35810884950773186,
+ 3.727737444663179,
+ 1.8819522786194556,
+ -2.863983672534,
+ 2.0628517197145677,
+ -0.6730568066667134,
+ -1.10131102130447,
+ 2.348390409219676,
+ -2.914250178115237,
+ 4.129481276526511,
+ 5.091788073994339,
+ 4.634238843044001,
+ 3.7169885726044964,
+ -2.81416924272881,
+ 2.7343441041963437,
+ -1.8477628714718397,
+ 0.1909323175403281,
+ 1.3747127552996088,
+ -2.574883878904315,
+ 1.9844886457009525,
+ 3.755551866332064,
+ -1.4574568898961477,
+ -1.0275615705861159,
+ 0.06824803275358902,
+ 1.4849755282751196,
+ -2.6633052561555477,
+ 1.8713381987698658,
+ 3.311207542486179,
+ -1.0736933326561526,
+ -0.896445501913142,
+ -0.13576524965656606,
+ 1.653603770671874,
+ -2.712104933577785,
+ 2.795873471289614,
+ -2.019842402656018,
+ 0.5107163368945079,
+ 0.6473440618453856,
+ 0.6086957151451085,
+ -3.3007099447907273,
+ -1.820267836990094,
+ 2.7659698150162093,
+ -1.8672696492207195,
+ 0.31084162888112704,
+ 0.762967274136752,
+ 0.9108098975024919,
+ -3.601106804921779,
+ -1.8633925438853718,
+ 2.7030205141595927,
+ -1.7691232983071288,
+ 0.1866184930295863,
+ 1.4614829540899366,
+ -2.61935274613048,
+ 2.8525297533035907,
+ -4.591196716332914,
+ -4.602047592486058,
+ -2.5711791847693775,
+ -2.4874232377942884,
+ -0.9261772786250158,
+ -0.8040370167971742,
+ 1.4109788564272094,
+ -2.5943466057720372,
+ 2.8595027431875852,
+ -2.21688808730058,
+ 0.7912016990346413,
+ 0.8149862435785221,
+ -1.3883788533014958,
+ -2.2179354676484326,
+ 3.3426446484685335,
+ 1.848425589108578,
+ -2.1333989449580253,
+ 0.6701411962494799,
+ 1.0082191651712928,
+ -1.474361949985226,
+ -2.2176029041461534,
+ 2.9809070585828157,
+ 1.806937750618239,
+ -1.99030781442428,
+ 0.4703793570273061,
+ 1.1219706426949203,
+ -2.4811667109283717,
+ 2.8734417630844753,
+ -2.413217766108358,
+ 0.7970389874232328,
+ 1.8803280957398305,
+ 2.1076954120530904,
+ 0.9405573473414344,
+ -2.5434281722011205,
+ 2.863092615616481,
+ -2.2920978796683547,
+ 0.752314326924464,
+ 1.9384381966731214,
+ 2.6184310721427018,
+ 1.145185798421099,
+ -2.637628763912519,
+ 2.84780329573829,
+ -2.2140523165180466,
+ 0.6946788486397919,
+ 0.9078549609092581,
+ -2.2962445758213867,
+ 3.785765418913003,
+ 4.566007053376606,
+ -1.6866212689956232e-16,
+ -4.859272508442761e-16,
+ -9.065899513581182e-17,
+ -9.548766196159012e-18,
+ -8.180816258149442e-17,
+ -7.006219788324144e-17,
+ 4.3054750883385084e-17,
+ 1.4144788474656773e-16,
+ 6.88214269644119e-17,
+ 9.30578189122156e-17,
+ 4.79764755280756e-17,
+ -3.21855976344383e-16,
+ 2.6025170022449633e-16,
+ -8.209767579588798e-17,
+ -1.0685105562653734e-16,
+ 4.6322114302969544e-17,
+ -6.782881022934826e-18,
+ -9.098986738083304e-18,
+ 1.9018950234125486e-16,
+ -2.160595759988508e-16,
+ 7.783769564123989e-17,
+ 5.608284553109528e-17,
+ 1.6777290774106781e-16,
+ 3.8546616544971083e-17,
+ -1.3317607862103746e-16,
+ -8.99972506457694e-17,
+ -3.2094607767057474e-17,
+ 3.474158572722716e-18,
+ -4.702521782363962e-17,
+ 8.809473523689744e-17,
+ 3.5850007748048214e-16,
+ -7.064122431202856e-17,
+ -1.0720260738687237e-16,
+ 1.041265294839408e-16,
+ 1.31687153518442e-16,
+ -2.0522350997440614e-16,
+ 7.725866921245277e-17,
+ -1.518651905859074e-18,
+ -9.562207881112999e-17,
+ -2.3483657590380456e-16,
+ 3.600303616137053e-17,
+ 1.3540946627493063e-16,
+ -1.5997673046775553e-16,
+ 6.853191375001834e-17,
+ 1.256487350468049e-16,
+ -6.472688293227442e-17,
+ 9.905487835322505e-17,
+ -9.355412727974742e-17,
+ -1.829723514967297e-16,
+ 3.7967590116183964e-17,
+ 2.8537731133079455e-16,
+ 4.013893922413566e-17,
+ -8.507552600107888e-17,
+ -2.505530075423121e-16,
+ -1.8958979639715392e-16,
+ 1.1332374391976478e-17,
+ -1.917404659897918e-16,
+ 1.228363209641246e-16,
+ -8.428970441915351e-17,
+ -1.493061005658215e-16,
+ -1.1555713157365797e-16,
+ 6.538862742231684e-17,
+ -1.3615392882622836e-16,
+ 3.072975975634498e-17,
+ 5.0209863181968774e-17,
+ 2.0540962561223057e-16,
+ -1.669664066438286e-16,
+ 3.101927297073854e-17,
+ -1.0281855014034133e-16,
+ -1.49719690872098e-17,
+ 8.54063982461001e-17,
+ -5.066481251887294e-18,
+ -5.154886179853899e-17,
+ 2.4474206373912703e-17,
+ -1.919059021123024e-17,
+ -3.1184709093249143e-17,
+ -1.2465611831174127e-16,
+ -2.575013246877575e-16,
+ -7.229558553713462e-17,
+ 8.892191584945048e-19,
+ 1.252351447405284e-16,
+ 2.7412765500007337e-16,
+ -2.7958704704292335e-17,
+ 6.940045339319902e-17,
+ 3.966331037191767e-17,
+ 2.0327963553490652e-17,
+ 1.1034589371457388e-16,
+ -1.8446127659932517e-17,
+ -3.8257103330577525e-16,
+ 1.467418406669071e-16,
+ -1.8462671272183575e-16,
+ -6.127753977792828e-16,
+ -2.782635580628385e-16,
+ 1.0887764812729225e-17,
+ -1.8135934930225132e-17,
+ -8.304893350032397e-17,
+ 1.2895745749701701e-16,
+ -1.2912289361952762e-16,
+ 2.627125625468416e-16,
+ 8.354524186785578e-17,
+ -6.449940826382233e-17,
+ 3.7636717871162754e-16,
+ 6.468552390164676e-17,
+ 9.797954355690612e-17,
+ -9.967526381263982e-17,
+ -2.3425754947501744e-16,
+ -5.045801736573468e-18,
+ 7.051714722014561e-17,
+ 8.900463391070577e-17,
+ 3.763671787116276e-17,
+ 9.181704799338606e-17,
+ -3.705769144237564e-17,
+ -5.5048869765403986e-17,
+ 1.060600641657835e-16,
+ -1.1415092453231782e-16,
+ -2.0249381395298115e-16,
+ -7.703119454400069e-17,
+ 5.897797767503087e-17,
+ -9.810362064878907e-17,
+ 1.197757526976784e-16,
+ 5.1740147315191875e-17,
+ 4.177262093392789e-17,
+ -2.072914615057887e-16,
+ 2.7710550520526424e-17,
+ -2.49022723409089e-16,
+ -5.10370437945218e-17,
+ -1.4519087701837018e-16,
+ 3.6892255319865034e-17,
+ 9.719372197498074e-17,
+ 1.502676980279144e-16,
+ -7.080666043453917e-17,
+ -1.108422020821057e-17,
+ 1.344995676011223e-16,
+ 7.002083885261379e-17,
+ -4.21034931789491e-17,
+ -2.150669592637872e-18,
+ 9.640790039305536e-17,
+ 5.301193750699216e-16,
+ 1.2308447514789052e-16,
+ -5.293955920339376e-18,
+ 2.2590302528823186e-16,
+ -3.135014521575975e-17,
+ -3.56980133104916e-17,
+ -3.027481041944081e-17,
+ 3.4907021849737763e-16,
+ 1.783608195817466e-17,
+ -1.3259705219225034e-16,
+ -9.062797586284108e-17,
+ 8.238718901028154e-17,
+ -5.194694246833013e-17,
+ -2.43801145792348e-16,
+ -1.423784629356899e-16,
+ -6.906958114817781e-17,
+ -1.0306670432410724e-16,
+ -2.924083465374953e-16,
+ 2.7214242152994607e-17,
+ -5.624828165360588e-17,
+ -2.0234905734578436e-17,
+ 9.769003034251256e-17,
+ -1.0660290144277143e-17,
+ 3.4824303788482465e-17,
+ 1.6266506745855287e-16,
+ -8.697804140995085e-17,
+ 2.1196503196671334e-18,
+ 3.2494756388379996e-16,
+ 1.0008885411891634e-16,
+ 1.0331485850787314e-16,
+ -1.5178764240348055e-16,
+ 2.5761506202198356e-16,
+ -1.69055037690525e-16,
+ 1.530284133223101e-16,
+ -8.503416697045123e-17,
+ 1.4856163801452377e-16,
+ -1.0422475718168147e-17,
+ 1.9076852877004198e-17,
+ 7.694330660391693e-17,
+ -1.4227506535912076e-17,
+ 1.1183481881716934e-16,
+ 2.216844041642114e-17,
+ -2.6684846560960673e-16
+ ],
+ [
+ 0.49598670684609947,
+ 0.5427090007273285,
+ 0.23900243823864084,
+ -1.8208860386741343,
+ 2.733653723537096,
+ -2.815567591111459,
+ 1.8800223844224402,
+ -0.4122933640623111,
+ -0.7376637151960432,
+ -0.8668157680765455,
+ 3.8017379665783073,
+ 1.9598017074159055,
+ -2.777645766751805,
+ 1.7831635891508466,
+ -0.20828602733890397,
+ -0.8590207049835037,
+ -0.9999074566785363,
+ 3.3311773110337595,
+ 1.874774400940286,
+ -2.706603767397109,
+ 1.6176816243082797,
+ -0.08490621298591204,
+ -1.6342486456824217,
+ 2.6509830935733607,
+ -2.8884522837940088,
+ 1.440528621214033,
+ 2.8579412033183265,
+ 0.8599790369027491,
+ 0.17937974336286286,
+ -1.7354891546205822,
+ 2.726117296475535,
+ -2.845890711941186,
+ 1.3679532801810592,
+ 2.965418789650068,
+ 1.1745700946733242,
+ 0.3254421078886772,
+ -1.8969372783428702,
+ 2.7643756892699876,
+ -2.814374377680981,
+ 1.8028010243715218,
+ -0.31493602713506996,
+ -1.3550330711467606,
+ 3.873524591717193,
+ 3.740229105099232,
+ -0.2247368865175055,
+ -0.4064919645774474,
+ -4.4277251644747935,
+ -4.544358441003758,
+ 1.848090851928166,
+ -0.3705989449322226,
+ -1.3027329592809176,
+ 2.5248882475749137,
+ -0.6983029143163494,
+ -0.9997598898065704,
+ 1.4592955857005507,
+ 2.370056308782176,
+ -3.2906761768649067,
+ -1.8358526679238154,
+ 2.0036005032159356,
+ -0.5731792223696857,
+ -1.188748956175963,
+ 1.5398029288406814,
+ 2.35105082873128,
+ -2.921897083216746,
+ -1.7885166252541045,
+ 1.850825584535914,
+ -0.37230910556632946,
+ -1.302564406620012,
+ 2.5264708889518523,
+ -2.9260321164373395,
+ 2.3002509211662576,
+ -0.7152941698681035,
+ -1.7523228579152264,
+ -2.245401077004997,
+ -1.0265377200554424,
+ 2.5855662220720697,
+ -2.9036175714201553,
+ 2.172250957851877,
+ -0.6638533097738697,
+ -1.7846419008437495,
+ -2.767217258737158,
+ -1.2315687603696388,
+ 2.669306711567102,
+ -2.883843316504735,
+ 2.087212119429315,
+ -0.5999567643137812,
+ -1.091653303287185,
+ 2.3539263168234315,
+ -3.8942127818943653,
+ -4.706210577253848,
+ -2.6493378308005964,
+ -2.0398772014612736,
+ 1.9039820387497841,
+ -2.826734875197935,
+ 2.755884333157975,
+ -1.7969397764395303,
+ 0.20966689527442836,
+ 1.3696120093239508,
+ -1.6925278059195805,
+ -2.892222481569102,
+ 3.157638052167082,
+ 1.8030724424979239,
+ -1.695843105331334,
+ 0.08378406325681263,
+ 1.5465169853116758,
+ -1.6919974530645956,
+ -2.6884223838898262,
+ 2.637756304597632,
+ 1.6699308578381922,
+ -1.5256363276549763,
+ -0.12139050119883184,
+ 1.6489683385097675,
+ -2.7561181109011232,
+ 2.8164828925433625,
+ -2.0426638198437437,
+ 0.43526619326983174,
+ 1.2922649926819263,
+ 2.5995602746527706,
+ 1.2604231525546967,
+ -2.795620465381956,
+ 2.7647741983593703,
+ -1.8898642012753994,
+ 0.319274854343267,
+ 1.163692939159761,
+ 2.9749329948749823,
+ 1.3735710061278736,
+ -2.8514648382871557,
+ 2.723988797527719,
+ -1.793509678674976,
+ 0.10927907482864611,
+ 1.4549729310997375,
+ -2.628250114825354,
+ 5.189196894108796,
+ 5.117819216915039,
+ 1.511925494894544,
+ 1.3552230210528795,
+ -2.012765470098854,
+ -2.1607372426478775,
+ 0.16982577352814343,
+ 1.4035075144626614,
+ -2.5984615801865263,
+ 2.8648991792014167,
+ -2.240121615527293,
+ 0.8108211135746523,
+ 0.4507992798404866,
+ 0.29007191213640177,
+ -3.5483110884147515,
+ -1.7835342572411486,
+ 2.8476345089013018,
+ -2.1550475252929715,
+ 0.6142455297496725,
+ 0.5879212142466491,
+ 0.49658863604401254,
+ -3.304539270928534,
+ -1.81135763460752,
+ 2.8051085667838773,
+ -2.0120512465726885,
+ 0.49128945810409896,
+ 1.198270395275018,
+ -2.483589285428163,
+ 2.888096489343168,
+ -1.6131969030383548,
+ -3.088562665246452,
+ -0.3520827035355984,
+ 0.11408989333471625,
+ 1.3111243508876653,
+ -2.585361346729174,
+ 2.8787728363329648,
+ -1.647642271415609,
+ -3.425504140648771,
+ -0.6840248998695511,
+ -0.06359747151772495,
+ 1.4882598855833216,
+ -2.6436671820620687,
+ 2.8643306668368105,
+ -2.1736697666417717,
+ 0.7163376585790681,
+ 0.8969595452324302,
+ -2.1688610493969733,
+ -2.5117140706979573,
+ -4.235164736271501e-17,
+ 3.8844401565490175e-16,
+ -1.1034589371457388e-16,
+ -7.950756650283132e-17,
+ 3.999418261693888e-17,
+ -2.2995621028974166e-17,
+ 9.553936074987468e-17,
+ 3.432799542095065e-17,
+ 1.0852609636695722e-16,
+ -1.3712586604597816e-16,
+ -1.6626330312315856e-17,
+ -2.7462396336760516e-17,
+ -3.337673771651466e-16,
+ -6.156808696808754e-17,
+ 1.5633713577252223e-17,
+ 8.553047533798305e-17,
+ 7.667964278366565e-17,
+ 8.883919778819516e-17,
+ 3.8877488789992295e-17,
+ 6.385834328909374e-17,
+ 2.0514079191315083e-17,
+ 1.6130021944784037e-16,
+ -1.6134157847846802e-16,
+ -8.615086079739782e-17,
+ -9.115530350334364e-17,
+ 1.8197973476166606e-16,
+ 3.6892255319865034e-17,
+ 1.2324991127040111e-17,
+ -1.2068565137148674e-16,
+ -3.0092830684679147e-16,
+ -2.4649982254080225e-16,
+ 1.1580528575742387e-16,
+ -5.009405789621136e-16,
+ -1.8607427879380355e-16,
+ -1.8065624578158122e-16,
+ 5.002788344720711e-16,
+ -4.0366413892587744e-17,
+ -5.6506775595028695e-18,
+ 2.749548356126264e-16,
+ -1.2163690907592272e-16,
+ 1.43433118216695e-16,
+ -3.247511084883186e-16,
+ 7.378451063973007e-17,
+ -7.386722870098537e-17,
+ -1.3036366453835716e-16,
+ 3.1441135083140577e-16,
+ -7.357771548659181e-17,
+ 5.254044455783694e-16,
+ 1.2920561168078292e-16,
+ 1.761894704737949e-17,
+ -2.4319110009059014e-16,
+ -1.6924115332834944e-16,
+ 1.3342423280480336e-16,
+ 1.908719263466111e-16,
+ 3.576728968679291e-16,
+ -3.1019272970738534e-18,
+ 7.383103954918618e-17,
+ 1.9893693731900313e-16,
+ -1.2159555004529505e-17,
+ 1.6010080755963848e-16,
+ 1.2060293331023143e-16,
+ 5.459392042849982e-17,
+ 1.255660169855496e-16,
+ -5.310499532590437e-17,
+ -7.256441923621435e-17,
+ -1.6300110958240254e-16,
+ 2.7627832459271124e-16,
+ 3.30872245021211e-19,
+ 2.3202416182112426e-16,
+ 9.545664268861938e-17,
+ 7.870623528442057e-17,
+ 9.024540482953531e-17,
+ 1.376428539288238e-16,
+ 2.9985297205047253e-17,
+ 1.2358078351542233e-16,
+ 4.373717488874133e-17,
+ 1.175113457708145e-16,
+ 3.596581303380564e-16,
+ 1.7056464230843428e-16,
+ 9.520848850485347e-17,
+ -4.313746894464039e-17,
+ -3.1184709093249143e-17,
+ -4.3096109914012736e-17,
+ -1.680831004707752e-16,
+ -3.6644101136099126e-17,
+ -1.2035477912646551e-17,
+ 7.237830359838992e-17,
+ 1.7006833394090247e-16,
+ 8.801201717564213e-16,
+ -3.0804206011474746e-16,
+ -5.542110104105285e-18,
+ 2.9778502051908996e-17,
+ 5.790264287871193e-18,
+ -1.254832989242943e-16,
+ 7.093073752642212e-18,
+ -5.227781471335134e-17,
+ 1.381391622963556e-17,
+ 1.9107872149974937e-16,
+ -1.5517908291494797e-16,
+ -1.981097567064501e-17,
+ 5.128519797828771e-17,
+ -4.3625505506046675e-16,
+ -2.754511439801582e-16,
+ 4.241368590865649e-17,
+ 1.9000338670343043e-16,
+ 1.8082168190409183e-16,
+ 1.7825742200517746e-17,
+ -4.532949756790591e-17,
+ 1.0869153248946782e-16,
+ -5.2608686958372554e-17,
+ -8.015380135638837e-17,
+ 8.358660089848343e-17,
+ 4.1607184811417286e-17,
+ -1.5406238908800138e-16,
+ 9.711100391372544e-17,
+ 9.545664268861938e-17,
+ 1.6154837363160628e-16,
+ 2.1672132048889322e-17,
+ 7.287461196592174e-17,
+ -1.7585859822877366e-16,
+ 3.970466940254533e-18,
+ 7.16338410470922e-17,
+ 3.866242183072851e-16,
+ 3.6602742105471475e-17,
+ 2.4418371682565377e-16,
+ 2.511320339710992e-16,
+ 6.551270451419979e-17,
+ 2.7214242152994607e-17,
+ 6.435465165662555e-17,
+ -4.9051810324394535e-17,
+ 2.3425754947501744e-16,
+ 4.235164736271501e-17,
+ 3.48077601762314e-16,
+ -2.809105360230082e-16,
+ 1.843371995074422e-16,
+ 4.5179571081880674e-17,
+ -1.4161332086907834e-16,
+ -1.222572945353375e-16,
+ -6.352747104407253e-17,
+ -7.051714722014561e-18,
+ -1.7470054537119942e-16,
+ 2.9447629806887785e-17,
+ -1.6378176128549948e-17,
+ 2.2317332926680687e-16,
+ -3.1747191909785197e-16,
+ -5.831623318498845e-17,
+ -2.1754850110144625e-17,
+ -4.384057246531046e-17,
+ -6.948317145445432e-18,
+ 1.2763396851693217e-16,
+ 3.80585799835648e-16,
+ 2.807450999004976e-16,
+ 1.1894857208512538e-16,
+ 1.3598849270371775e-16,
+ 4.618149359883554e-16,
+ -9.498101383640139e-17,
+ 1.2473883637299657e-16,
+ -9.632518233180006e-17,
+ 4.466775307786349e-17,
+ 8.172544452023912e-17,
+ -9.156889380962015e-17,
+ -2.1076562007851143e-16,
+ 1.2560737601617725e-16,
+ 2.5270367713494992e-17,
+ -4.113569186226206e-16,
+ -1.0893968667323373e-16,
+ -1.407861402565253e-16,
+ 9.760731228125725e-18,
+ -2.4997398111352496e-16,
+ 1.1383039204495352e-16,
+ 6.497503711604032e-17,
+ -1.5443462036365024e-16,
+ -7.593518023236793e-17,
+ 1.3441684953986698e-17,
+ -5.604148650046762e-17,
+ -2.455072058057386e-16,
+ -1.0081263715490023e-17,
+ -2.3933437048456164e-16,
+ 1.0405932105917087e-16,
+ 4.932529691441989e-16
+ ],
+ [
+ -3.2251026093767052,
+ -2.737415965737933,
+ 1.341015717641726,
+ 0.23932486976745326,
+ -1.81816230979064,
+ 2.760678183980407,
+ -2.8144329733474085,
+ 1.8784163111424894,
+ -0.3930562135547203,
+ -1.2941519123273588,
+ -3.101444023051338,
+ -1.437293510219728,
+ 2.795412517361477,
+ -2.7757201225306747,
+ 1.7204020214640277,
+ -0.2006994818261689,
+ -0.8959603677311626,
+ -2.836449836062536,
+ -1.4255287091084656,
+ 2.8383550561638584,
+ -2.7046649354753245,
+ 1.6181747048197161,
+ 0.009352371367951171,
+ -1.6316861655933497,
+ 2.6495242433023996,
+ -1.8764607883345992,
+ -3.3278563640837553,
+ 1.0352953109658916,
+ 0.8775919966524305,
+ 0.1345741696301994,
+ -1.7965595997810104,
+ 2.724555008922,
+ -1.8685775129980005,
+ -3.6162313532473287,
+ 0.8837444788828918,
+ 0.7509050449120088,
+ 0.3368269465423721,
+ -1.896164470014686,
+ 2.7619368887897036,
+ -2.784765746015415,
+ 1.8030799834500104,
+ -0.31417764060605136,
+ -1.3438454261064832,
+ -1.1988924883797236,
+ 1.7413051626570366,
+ 1.8825035426801415,
+ 5.14654241855418,
+ 5.195767502168741,
+ -2.8025508299259076,
+ 1.8463196161011128,
+ -0.3722028914260553,
+ -1.3859251736439515,
+ 2.522379674272568,
+ -0.6941752053993092,
+ -0.5549187287203161,
+ -0.49393572250453316,
+ 3.583732109553028,
+ 1.818732012827736,
+ -2.8560120206965482,
+ 1.9992362358236027,
+ -0.49311378732398214,
+ -0.6889424779082876,
+ -0.682385799322806,
+ 3.3238600814691504,
+ 1.8398302198214742,
+ -2.8041034698603173,
+ 1.8464076602602648,
+ -0.37083126958467894,
+ -1.3884131065688663,
+ 2.525098411374079,
+ -2.9235469712802695,
+ 1.5546027047084863,
+ 3.0130186143474544,
+ 0.5391172933162273,
+ -0.0069161426460169866,
+ -1.4961466808024895,
+ 2.618599792262019,
+ -2.900837766010639,
+ 1.581418345631149,
+ 3.3265390771623498,
+ 0.8948270154208106,
+ 0.17639090148179745,
+ -1.6692259453338982,
+ 2.668541773895157,
+ -2.8812863195057186,
+ 2.017130527469354,
+ -0.5983891373964125,
+ -1.0943106649542085,
+ 2.3705714642243687,
+ 2.7640701868431936,
+ -0.2036892023469383,
+ -0.3049643158057716,
+ -0.4451118380851766,
+ 1.9050820740719308,
+ -2.824865662598625,
+ 2.723018640700337,
+ -1.7949748197115922,
+ 0.206038032500648,
+ 0.8414878851605965,
+ 1.0751967148151227,
+ -3.8045187679865773,
+ -1.9780006870917968,
+ 2.6802953650608177,
+ -1.6918097135730399,
+ 0.0030399201507701193,
+ 0.9532464959336401,
+ 1.1783391459044168,
+ -3.3212764023980386,
+ -1.8869349827406248,
+ 2.596681618142751,
+ -1.5216033486382339,
+ -0.12230983156994635,
+ 1.7264393685080563,
+ -2.754568771265258,
+ 2.8136668431879115,
+ -1.3687709654458742,
+ -2.756604014462546,
+ -1.040956464242013,
+ -0.2858395891081198,
+ 1.8253792728430693,
+ -2.8169548798957766,
+ 2.7617176594434776,
+ -1.290810644461437,
+ -2.8433293451706385,
+ -1.366701175958572,
+ -0.4312326652449392,
+ 1.9775815808388821,
+ -2.8501801073718536,
+ 2.721573135975836,
+ -1.714149049197248,
+ 0.10810702979946375,
+ 1.4568542125671176,
+ -4.06442605921338,
+ -3.93477552761753,
+ 0.07083170817683355,
+ 0.2554224952642602,
+ 4.271820761295629,
+ 4.3920791794956715,
+ -1.7638900016518895,
+ 0.16887647902553596,
+ 1.4007394848740045,
+ -2.638923183804168,
+ 2.8629998807083608,
+ -2.238194280653347,
+ 0.6316935212713317,
+ 1.7248880221287053,
+ 2.578197407505311,
+ 1.1284084778764598,
+ -2.689856978153299,
+ 2.845318698648753,
+ -2.099974675959618,
+ 0.48907906025267966,
+ 1.3808733048152564,
+ 2.53253153184444,
+ 1.2160013208245677,
+ -2.7649210423854256,
+ 2.8027559560620148,
+ -2.0119904493479437,
+ 0.3979002707620062,
+ 1.1955546926446903,
+ -2.4820766422697593,
+ 1.891443696198421,
+ 3.268584534992476,
+ -1.512030151997657,
+ -1.1261039743471015,
+ 0.2754747050187364,
+ 1.378652005315003,
+ -2.5837126650458413,
+ 1.9932953806563534,
+ 3.771522152148564,
+ -1.4679833745347575,
+ -1.0340769731289852,
+ 0.07103015956046095,
+ 1.4874973480196463,
+ -2.640776497707785,
+ 2.8485927455487143,
+ -2.1735214140218884,
+ 0.7153124078483446,
+ -0.1587501503422573,
+ -0.3648001411341295,
+ 1.093367333672592e-15,
+ 1.4647714287089012e-15,
+ 2.7065349642735066e-16,
+ 1.059217699071223e-16,
+ -1.45211556533684e-16,
+ -1.6164918626876118e-16,
+ -3.3926812823862425e-16,
+ -1.3400325923359048e-16,
+ -2.623816903018204e-16,
+ 1.5807421505888356e-16,
+ 1.481066886776196e-16,
+ 4.870439446712227e-16,
+ 2.814895624517953e-16,
+ 1.311908451509102e-16,
+ -1.2283373602471038e-16,
+ -3.8120618529506275e-16,
+ -1.4177875699158894e-16,
+ -1.36195287856856e-16,
+ -2.4887796680189217e-17,
+ 9.376092243288567e-17,
+ 1.0629270871306404e-16,
+ -9.132073962585424e-17,
+ 9.868264707757619e-17,
+ 2.1961645263282882e-17,
+ 1.1315830779725419e-16,
+ -4.3360807710029706e-16,
+ -7.328820227219825e-17,
+ -2.1423977865123414e-17,
+ 3.1408047858638456e-16,
+ 3.4013666788180493e-16,
+ 2.450108974382068e-16,
+ 2.4484546131569616e-17,
+ 5.50240543470274e-16,
+ 1.772648052701138e-16,
+ 2.671793378546279e-17,
+ -6.713397851480372e-16,
+ -2.374008358027189e-17,
+ 1.2025138154989638e-17,
+ -2.6792380040592566e-16,
+ 3.747128174865215e-16,
+ 1.819797347616661e-17,
+ 3.568457162553761e-16,
+ 2.6089276519922493e-16,
+ 8.123689097094999e-17,
+ -3.966331037191767e-17,
+ -2.663521572420749e-16,
+ 2.2747466845208258e-17,
+ -5.258800744305873e-16,
+ 1.0157777922151179e-16,
+ 5.3187713387159673e-17,
+ 1.87563203896399e-16,
+ 1.6125886041721272e-16,
+ -2.3254114970396987e-17,
+ -2.1440521477374475e-16,
+ -4.2665975995485163e-16,
+ -7.072394237328387e-17,
+ -1.2705494208814505e-16,
+ -4.417144471033167e-17,
+ 5.39321759384574e-17,
+ -7.820992691688875e-17,
+ 3.614779276856731e-17,
+ 8.106370003019671e-18,
+ 2.2003004293910533e-17,
+ 7.940933880509066e-18,
+ -1.684139727157964e-16,
+ -2.6366382025127754e-17,
+ -2.8818972541347484e-16,
+ 3.879477072873699e-17,
+ -1.5615102013469777e-16,
+ -4.756288522179909e-19,
+ -3.441071348220595e-17,
+ 8.306961301563779e-17,
+ 1.2407709188295413e-18,
+ -3.3004506440865804e-17,
+ -3.785178483042654e-16,
+ -2.138882268908991e-16,
+ -1.919059021123024e-17,
+ -1.7215696498759886e-16,
+ -5.823351512373315e-17,
+ -1.2068565137148674e-16,
+ 7.097209655704977e-17,
+ 1.5766062475260705e-16,
+ -5.0830248641383544e-17,
+ 1.5269754107728888e-16,
+ -5.868846446063731e-17,
+ -6.005331247134981e-17,
+ -1.3665023719376017e-16,
+ -1.0544484858519719e-16,
+ -4.538740021078463e-16,
+ -3.3624891900280575e-17,
+ -1.8123527221036834e-16,
+ 2.649666297160486e-16,
+ 1.22670884841614e-16,
+ -2.249931266144235e-17,
+ -1.1865905887073182e-16,
+ -2.5146290621612038e-17,
+ -6.840783665813539e-17,
+ -1.9918509150276904e-16,
+ 2.296253380447205e-16,
+ -4.100747886731634e-17,
+ 5.595876843921232e-17,
+ 3.720658395263518e-16,
+ 1.9637267742008875e-16,
+ -1.185556612941627e-16,
+ -2.7090165061111656e-16,
+ -2.661867211195643e-16,
+ -2.6469779601696883e-17,
+ 8.933550615572698e-17,
+ -1.0670629901934055e-17,
+ 1.1241384524595646e-16,
+ 7.279706378349489e-17,
+ 6.613308997361456e-17,
+ 5.568993474013259e-17,
+ 9.859992901632089e-17,
+ -1.110076382046163e-16,
+ -8.586134758300426e-17,
+ -2.3756627192522955e-16,
+ -4.623939624171424e-17,
+ 1.0153642019088413e-16,
+ 2.297907741672311e-16,
+ 9.098986738083303e-17,
+ -1.952146245625145e-17,
+ -2.8529459326953925e-16,
+ -4.4874548231001745e-17,
+ -2.096075672209372e-16,
+ -2.605618929542037e-16,
+ -7.626605247738914e-17,
+ 5.201932077192852e-17,
+ -1.5598558401218717e-16,
+ 6.121136532892404e-18,
+ -2.0547166415817205e-16,
+ -7.138568686332629e-17,
+ -3.5254437707010035e-16,
+ 1.5807421505888356e-16,
+ -2.996306672608489e-16,
+ -5.672391050582387e-17,
+ 9.618042572460328e-17,
+ 2.1072426104788378e-16,
+ 5.360130369343619e-17,
+ 7.678304036023478e-17,
+ 1.6692504761320096e-16,
+ 1.1059404789833979e-16,
+ 1.8404768629304866e-18,
+ -3.5833464135797154e-16,
+ 1.7155725904349792e-16,
+ 2.9778502051908992e-18,
+ 7.241966262901757e-17,
+ 1.468245587281624e-16,
+ -6.758065604558236e-17,
+ -1.0356301269163905e-16,
+ -2.0974198407047706e-16,
+ 1.2953648392580413e-16,
+ -1.9356026333740845e-17,
+ -1.3499587596865412e-16,
+ -4.3327720485527585e-16,
+ 7.353635645596416e-17,
+ -8.933550615572698e-17,
+ -1.7722344623948618e-17,
+ -2.1043474783349022e-16,
+ -3.3583532869652924e-17,
+ 6.352747104407253e-17,
+ 1.1408888598637634e-16,
+ -8.164272645898382e-17,
+ -9.206520217715197e-17,
+ 2.545234744825666e-16,
+ 5.699274420490361e-17,
+ -1.94801034256238e-17,
+ -1.0174321534402239e-17,
+ 2.0183206946293872e-17,
+ -2.9302873199691005e-17,
+ -2.8868603378100666e-17,
+ 2.0539928585457366e-16,
+ 6.361018910532783e-17,
+ 5.99705944100945e-18,
+ -1.1461621362687888e-17,
+ 5.566925522481876e-17,
+ -8.09809819689414e-17,
+ 1.2949512489517648e-16,
+ -7.284979654754514e-16,
+ -6.046276687456355e-16
+ ],
+ [
+ 3.3530660210707337,
+ 2.7694240605923066,
+ -1.7267306811235021,
+ 0.8216753676418586,
+ 0.2934961377655037,
+ -1.4176774057873378,
+ 1.9629583102602461,
+ -1.927567912485247,
+ 0.9109579730750452,
+ 2.0162953468531533,
+ 1.1319587283067931,
+ 0.39998033636249364,
+ -1.4787150390519952,
+ 1.982215322334081,
+ -1.87408232692716,
+ 0.768736087723588,
+ 1.647539847870406,
+ 1.126960300597581,
+ 0.4401210750954667,
+ -1.574523888822946,
+ 2.0032990054951276,
+ -1.8378684758824584,
+ 0.9656502383704173,
+ 0.13352637848868726,
+ -1.2454664249909007,
+ 1.2259070638956902,
+ 1.9832888558886783,
+ -1.7178623400814892,
+ -1.110267969481783,
+ 0.8893603870948018,
+ 0.2759126602220339,
+ -1.3552246220872761,
+ 1.2626339578838082,
+ 2.243401496353483,
+ -1.7436304865057155,
+ -1.0582251076622164,
+ 0.7588207630878414,
+ 0.36273471778123784,
+ -1.4198559252815564,
+ 1.9779081940476377,
+ -1.9033050674113812,
+ 1.1576065684693735,
+ -0.9107167606718015,
+ -0.991558394038716,
+ -1.8375432536393355,
+ -1.8836195605016444,
+ -3.0623112047329806,
+ -3.0448070861204397,
+ 1.9696254509585913,
+ -1.9174211202788085,
+ 1.1906322364098794,
+ -0.06635010137252072,
+ -1.0790942823800471,
+ 1.8220896195634797,
+ -0.2878033198779411,
+ -0.9303478632087141,
+ -2.001795586724275,
+ -0.9115288704662591,
+ 1.9348360106735512,
+ -1.9614421596456508,
+ 1.2586217829816955,
+ -0.18614984137398893,
+ -0.7041990612056337,
+ -1.9385743021587512,
+ -0.965305818907721,
+ 1.9696989816453685,
+ -1.916480736734644,
+ 1.1889720803550965,
+ -0.06447646693631791,
+ -1.0805333366036676,
+ 1.8225832554229537,
+ -1.3166148000011217,
+ -2.321426116379781,
+ 0.800490229067725,
+ 0.6539367512459299,
+ 0.02307544291842228,
+ -1.1985997000942863,
+ 1.8796344001679586,
+ -1.3794627603846215,
+ -2.6574038056417764,
+ 0.7246334107626166,
+ 0.5746440997619937,
+ 0.16477702935788646,
+ -1.270104020053781,
+ 1.90863513418443,
+ -1.9671460721670457,
+ 1.3147702103714907,
+ -0.2901158641313986,
+ -0.24324030651380452,
+ -0.17940776601479078,
+ 1.8988792773677867,
+ 1.6304058927159435,
+ -0.7447383549157579,
+ -0.4383780142601057,
+ 1.423641649946091,
+ -2.016004668327715,
+ 1.8556538905007163,
+ -1.1484421053808387,
+ 0.10888585023987568,
+ 0.5983197228330885,
+ 2.3364208344537363,
+ 1.1131504315537393,
+ -2.02877702443966,
+ 1.8199351394192493,
+ -1.02677953698931,
+ -0.018452306585227004,
+ 0.35284763315754597,
+ 2.114423630147872,
+ 1.0934480674216125,
+ -2.0431741778289063,
+ 1.7533242329176608,
+ -0.9511090562497091,
+ -0.2797210943587418,
+ 1.3055286022593833,
+ -1.964366377562145,
+ 1.2816356060619671,
+ 2.3195168318977157,
+ -0.4530923143232617,
+ -0.46843634116261507,
+ -0.3649944338539025,
+ 1.4112769973266464,
+ -1.9991981483599097,
+ 1.266043916455386,
+ 2.499022327554669,
+ -0.31915191442885404,
+ -0.3744178180326733,
+ -0.5051164797260961,
+ 1.472411383760814,
+ -2.0165369061861327,
+ 1.8270604146380192,
+ -1.0909515394043698,
+ -0.05408718174243264,
+ 1.3544772021940414,
+ 1.252114209586089,
+ -1.0133336779966442,
+ -1.1196643072721546,
+ -3.5880948515168756,
+ -3.634599916712364,
+ 1.84599802729852,
+ -1.1276298678764136,
+ -0.008785871527426764,
+ 1.1436815818841233,
+ -1.8962235149805278,
+ 1.9811036189352684,
+ -1.001643907206715,
+ -2.1429224869444576,
+ -0.696853720360963,
+ -0.15990392170045972,
+ 1.214748037051817,
+ -1.927374046034236,
+ 1.950029973987713,
+ -0.9258599538529375,
+ -1.8819097120564325,
+ -0.7983899283649674,
+ -0.24194541569526032,
+ 1.3245291813187134,
+ -1.9713118848111506,
+ 1.9251090587890252,
+ -1.2586581752804584,
+ 0.15202418586291247,
+ 0.9508496936107741,
+ -1.1342906829963337,
+ -1.7708413553685978,
+ 1.9399787005279245,
+ 1.2079875267788018,
+ -1.188247007915998,
+ 0.010291464537505915,
+ 1.074526517078909,
+ -1.228358350945786,
+ -2.1303556733939724,
+ 2.0988171328152307,
+ 1.2152235822262067,
+ -1.0696819210634725,
+ -0.07901465161594445,
+ 1.1461676632713607,
+ -1.9215915737911664,
+ 1.966956848638562,
+ -1.429741283919075,
+ 1.5454081776607758,
+ 1.9953505371969458,
+ -3.48077601762314e-16,
+ -4.976318565119014e-16,
+ -2.0166663334042812e-16,
+ -2.3243775212740075e-17,
+ 4.231028833208736e-17,
+ -3.45347905740889e-18,
+ 3.157348398114906e-16,
+ 1.8264147925170849e-16,
+ 1.1315830779725419e-16,
+ -9.173432993213076e-17,
+ -1.6626330312315856e-17,
+ -4.484973281262516e-16,
+ -1.801599374140494e-16,
+ -1.8309642858861265e-16,
+ -5.9557004103817985e-18,
+ 1.435158362779503e-16,
+ 8.739163171622736e-17,
+ 1.7916732067898577e-16,
+ 1.546414155167885e-16,
+ -9.773138937314021e-17,
+ 2.907539853123892e-17,
+ 1.6411263353052067e-16,
+ -2.920981538077879e-17,
+ -1.861156378244312e-19,
+ -2.2710243717643375e-16,
+ 1.1183481881716934e-16,
+ 4.21034931789491e-17,
+ 2.39882377640378e-17,
+ -1.0844337830570192e-16,
+ -1.784642171583157e-16,
+ 2.2664748783952955e-17,
+ -4.301339185275744e-18,
+ -6.921847365843735e-16,
+ -6.220398206398768e-17,
+ 7.767225951872929e-17,
+ 3.278943948160201e-16,
+ 1.0041972636393755e-16,
+ 2.0803592405708643e-17,
+ 1.829723514967297e-16,
+ -3.5883094972550336e-16,
+ 9.165161187087545e-17,
+ -2.297907741672311e-16,
+ -1.3019822841584656e-16,
+ -5.045801736573468e-18,
+ 4.135903062765138e-20,
+ 6.758065604558236e-17,
+ 2.7193562637680782e-17,
+ 4.541221562916122e-16,
+ -1.45687185385902e-16,
+ -1.2407709188295414e-17,
+ -5.310499532590437e-17,
+ -1.348304398461435e-16,
+ 5.573129377076023e-18,
+ 9.977866138920895e-17,
+ 1.4666946236330872e-16,
+ 3.0605682664462024e-17,
+ 2.740682013935461e-17,
+ 2.039827390555766e-16,
+ -7.809618958266271e-17,
+ 4.7128615400208746e-17,
+ -8.156000839772852e-17,
+ 2.4112314855920754e-17,
+ -7.287461196592174e-17,
+ 2.6593856693579837e-17,
+ 1.0402313190737167e-16,
+ 4.323311170296683e-17,
+ 1.2047885621834848e-16,
+ -4.3819892949996635e-17,
+ 1.493888186270768e-16,
+ 1.2978463810957004e-16,
+ 2.4525905162197267e-17,
+ -8.735027268559971e-17,
+ -3.8339821391832827e-17,
+ 5.657915389862709e-17,
+ 2.338439591687409e-16,
+ 1.8565034872987012e-16,
+ -5.3808098846574444e-17,
+ 1.22670884841614e-16,
+ 1.4591466005435408e-16,
+ 7.916118462132474e-17,
+ -3.515517603350368e-18,
+ -4.80591935893309e-17,
+ 1.3441684953986698e-17,
+ -5.641371777611649e-17,
+ 2.192028623265523e-17,
+ 3.9167002004385854e-17,
+ 1.341686953561011e-16,
+ 1.318525896409526e-16,
+ 3.146595050151717e-16,
+ -1.3036366453835716e-16,
+ 2.100211575272137e-16,
+ -5.368815765775426e-16,
+ -2.0315555844302357e-16,
+ -5.881254155252027e-17,
+ -1.2200914035157156e-18,
+ 4.1374540264136747e-17,
+ 1.556133527365383e-16,
+ 2.0547166415817205e-16,
+ -9.363684534100272e-17,
+ 1.290401755582723e-17,
+ -3.280417363626312e-17,
+ -1.8754252438108517e-16,
+ -9.31405369734709e-17,
+ 1.7834014006643274e-16,
+ 3.087865226660452e-16,
+ 1.768512149638373e-16,
+ -4.148310771953433e-17,
+ 5.790264287871193e-18,
+ 2.1837568171399928e-16,
+ -7.841672207002701e-17,
+ 1.3648480107124955e-17,
+ -8.987317355388644e-17,
+ -1.1331857404093634e-16,
+ -5.69100261436483e-17,
+ -8.68539643180679e-18,
+ -2.1672132048889322e-17,
+ 1.4732086709569423e-16,
+ 8.29145166507841e-17,
+ 6.8573272780646e-17,
+ -1.617965278153722e-16,
+ -4.284795573024683e-17,
+ 2.431911000905901e-17,
+ 3.5312340349888747e-16,
+ 8.39588321741323e-17,
+ 3.5692843431663144e-17,
+ 7.891303043755883e-17,
+ -4.9051810324394535e-17,
+ -7.130296880207099e-17,
+ 1.0337689705381462e-16,
+ 9.471218013732165e-18,
+ 1.5823965118139417e-16,
+ 4.971355481443696e-17,
+ 4.4287249996089097e-16,
+ -1.4918202347393854e-16,
+ 1.8870057723865941e-16,
+ -3.207392825174365e-17,
+ -1.7867101231145398e-17,
+ 1.192794443301466e-16,
+ 9.405043564727923e-17,
+ -7.068258334265621e-17,
+ 3.4782944757854814e-17,
+ -1.4074478122589766e-16,
+ -4.384057246531046e-17,
+ 2.1385591514822125e-16,
+ 1.2320855223977347e-16,
+ 2.460862322345257e-17,
+ -8.065010972392019e-17,
+ -3.2756352257099896e-17,
+ 9.179636847807223e-17,
+ 7.543887186483611e-17,
+ 1.0058516248644815e-16,
+ -1.287920213745064e-16,
+ 2.7421037306132864e-17,
+ 4.7314731038033177e-17,
+ 1.5038143536214043e-16,
+ -6.458212632507764e-17,
+ -2.9116757561866574e-17,
+ -1.7370792863613579e-16,
+ 2.0811864211834174e-16,
+ 4.5494933690416516e-17,
+ 1.6295458067294645e-17,
+ 1.0381116687540496e-17,
+ 7.51849015673882e-17,
+ 6.483028050884354e-17,
+ -1.404552680115041e-16,
+ -5.074753058012824e-17,
+ 2.0844951436336294e-17,
+ -1.4409486270673742e-16,
+ -7.77549775799846e-18,
+ -6.058064011185236e-17,
+ 1.0405932105917087e-16,
+ -1.3516131209116472e-16,
+ 8.222175288777094e-17,
+ -2.442250758562814e-17,
+ 2.088631046696395e-18,
+ -9.239607442217318e-17,
+ 4.4667753077863494e-18,
+ -1.498024089333533e-16,
+ 3.4079841237184735e-16,
+ 6.562850979995721e-16
+ ],
+ [
+ -8.46301575943611,
+ -6.848142609942422,
+ 4.86816848269475,
+ -4.161263382562279,
+ 2.1093236496454764,
+ 0.783838177500178,
+ -3.277326192904432,
+ 4.712573384424602,
+ -3.229075409424153,
+ -6.330872753384725,
+ 1.0162789246293824,
+ 1.0160976028072484,
+ 0.9886928358932362,
+ -3.431465264393576,
+ 4.787345502154012,
+ -2.9770185811972385,
+ -5.4838333159798,
+ 0.5281658846767812,
+ 0.8178310560148078,
+ 1.3205912641040596,
+ -3.665152593968424,
+ 4.820960341191737,
+ -4.3483799830706875,
+ 2.450172913996663,
+ 0.24437138783006573,
+ -1.7521825441375554,
+ -2.2725508420012033,
+ 5.523263642920054,
+ 3.168550697058273,
+ -4.250946490605758,
+ 2.1491716855936307,
+ 0.5848192473938743,
+ -1.9280138250562298,
+ -2.8555022255333866,
+ 5.927658574162932,
+ 3.1846599205545103,
+ -4.073701710034026,
+ 1.9563609454038766,
+ 0.7909803822100242,
+ -3.399741205524751,
+ 4.7512453054598005,
+ -4.565555047856687,
+ 6.570596094384741,
+ 6.645302003591929,
+ 4.688125620108362,
+ 4.617972798300714,
+ 3.4929438930991896,
+ 3.32171602087138,
+ -3.3292575892592553,
+ 4.72977542950716,
+ -4.598382727690814,
+ 2.8518236413145686,
+ -0.23897081008348764,
+ -2.454841354914571,
+ 2.7773273934936022,
+ 5.020783650748187,
+ 1.8609486292645128,
+ 0.4877854520112694,
+ -3.069473394377579,
+ 4.632657527239212,
+ -4.658433443498587,
+ 2.1402855326496515,
+ 4.394105344514129,
+ 2.084456122858144,
+ 0.6824470921013496,
+ -3.326531295202972,
+ 4.72540162883634,
+ -4.5937339365742105,
+ 2.848482662621899,
+ -0.23801729867692326,
+ -2.4530343610479903,
+ 2.768359885767725,
+ 4.357610322877312,
+ -4.539738621184413,
+ -2.8476994529562965,
+ 2.67742815972454,
+ 0.10322494289768129,
+ -2.741677950195331,
+ 2.99172375658452,
+ 5.224106103159633,
+ -4.892474813126685,
+ -2.8535888076051292,
+ 2.3859346059214968,
+ 0.3152870452935035,
+ -2.910822469165731,
+ 4.618700308972997,
+ -4.706335293322888,
+ 3.2696800907979426,
+ -3.498116726906132,
+ -4.534707673112672,
+ -7.91574610129441,
+ -6.54623874746264,
+ 4.009296925834221,
+ -1.8542232952060052,
+ -0.897640531617313,
+ 3.4739533757293577,
+ -4.769803771911977,
+ 4.522363045017242,
+ -2.0958687636596767,
+ -4.686999007080823,
+ -2.900058146970146,
+ -1.063407497354494,
+ 3.6167067268405235,
+ -4.807448539131214,
+ 4.38541266453225,
+ -1.7538235844886587,
+ -3.811514531092364,
+ -2.8588316483476555,
+ -1.1524708637370489,
+ 3.835976278158895,
+ -4.8482748076930795,
+ 4.290912958923942,
+ -2.204402162784124,
+ -0.5163321669443316,
+ 3.07360785158051,
+ -2.9730003858198963,
+ -4.842804711120789,
+ 3.9856172743635,
+ 2.5995287146623665,
+ -2.0170830887003754,
+ -0.8542778470246808,
+ 3.3306264086856965,
+ -3.054803470264587,
+ -5.461155629120635,
+ 4.026513966204709,
+ 2.4679937429400285,
+ -1.7015946431412765,
+ -1.0624309778371794,
+ 3.479049500729193,
+ -4.800115385704562,
+ 4.459154502048356,
+ -2.67330180067111,
+ 1.8987766315152577,
+ 2.0972521046751047,
+ 4.334933150364166,
+ 4.454639972182404,
+ 7.47653632497122,
+ 7.442629344093098,
+ -4.7861884698253245,
+ 4.502639308534504,
+ -2.76294111050615,
+ -0.030698733098046792,
+ 2.6804082238551663,
+ -4.465495130109884,
+ 3.16652773470791,
+ 6.055670990166606,
+ -1.9130274694026632,
+ -1.4720578288920982,
+ -0.23892432537873196,
+ 2.8553724028651044,
+ -4.590933828570385,
+ 3.109446570159558,
+ 5.575858238449569,
+ -1.3809282096835818,
+ -1.2817052893958285,
+ -0.5793856136670686,
+ 3.124827666477164,
+ -4.655916922631358,
+ 4.635315789130085,
+ -3.071766837052968,
+ 0.5111366061836478,
+ 1.3224587211021155,
+ 1.4570140331586265,
+ -5.577579660021645,
+ -3.1178089704165473,
+ 4.567533484858764,
+ -2.799393312152044,
+ 0.17029580059764668,
+ 1.5380087002730596,
+ 2.061984068140175,
+ -6.357332456212558,
+ -3.326598916236828,
+ 4.437609319190342,
+ -2.622791085359912,
+ -0.03796310711649039,
+ 2.819301307471688,
+ -4.528353870591436,
+ 4.772983881662789,
+ -6.455801109249792,
+ -8.027814497453122,
+ 1.0230569816055846e-15,
+ 2.1215528350760054e-15,
+ 5.869673626676284e-16,
+ 1.402071138277382e-16,
+ -1.4732086709569423e-16,
+ 3.8877488789992295e-17,
+ -7.019454678124992e-16,
+ -5.959009132832011e-16,
+ -4.1491379525659863e-16,
+ 5.1119761855777104e-17,
+ 6.452008777913616e-17,
+ 1.3129010682441653e-15,
+ 4.7314731038033177e-17,
+ 3.573342698046652e-16,
+ 5.459392042849982e-18,
+ -4.738090548703743e-16,
+ -2.3202416182112426e-16,
+ -3.7314117432267073e-16,
+ -3.2624003359091407e-16,
+ 5.793573010321406e-16,
+ -7.229558553713462e-17,
+ -3.35504456451508e-16,
+ -5.4428484305989215e-17,
+ -5.277412308088316e-17,
+ 6.612481816748902e-16,
+ -4.4833189200374094e-17,
+ -1.1266199942972237e-16,
+ -6.402377941160434e-17,
+ 3.603198748280988e-16,
+ 3.366625093090822e-16,
+ -3.3815143441167766e-16,
+ 6.915229920943311e-17,
+ 1.6080391108030856e-15,
+ 1.25400580863039e-16,
+ -4.506479977188895e-16,
+ -5.118593630478135e-16,
+ -2.9067126725113392e-16,
+ 5.535906249511137e-17,
+ -3.242548001207868e-16,
+ 9.918722725123355e-16,
+ -1.4558378780933287e-16,
+ 4.255017070972774e-16,
+ 3.8546616544971085e-16,
+ 2.5973471234165066e-17,
+ -1.0521737391674511e-16,
+ 6.832511859688009e-17,
+ -1.4823076576950256e-16,
+ -2.2052635130663715e-16,
+ 3.7926231085556314e-16,
+ 6.518183226917858e-17,
+ -1.217816656831195e-16,
+ 2.5295183131871586e-16,
+ 1.3094269096714428e-16,
+ 1.9686898578762056e-17,
+ -2.539444480537795e-16,
+ -1.0563096422302162e-16,
+ 9.367820437163037e-17,
+ -4.987899093694757e-16,
+ 2.785117122466044e-16,
+ 3.2872157542857315e-16,
+ 3.2624003359091407e-16,
+ 9.098986738083304e-18,
+ 3.417083110456557e-16,
+ -8.463220889153875e-17,
+ -4.140866146440456e-16,
+ -4.0300239443583503e-16,
+ 7.974021105011186e-17,
+ 9.694556779121483e-17,
+ -1.435985543392056e-16,
+ -2.1432249671248945e-16,
+ 1.4177875699158894e-16,
+ 4.2153124015702285e-16,
+ 2.0795320599583113e-16,
+ -2.6502866826199007e-16,
+ -2.4716156703084467e-16,
+ -5.361784730568725e-16,
+ 2.3605666730732027e-16,
+ -4.2186211240204405e-17,
+ -2.4385284458063256e-16,
+ -1.348304398461435e-16,
+ -8.64610535271052e-17,
+ 3.143286327701505e-17,
+ 2.4815418376590826e-18,
+ 5.509022879603164e-17,
+ -1.296437589114946e-16,
+ -1.2506970861801778e-16,
+ -3.4625780441469734e-16,
+ -2.488159282559507e-16,
+ -3.176373552203626e-17,
+ 1.8661194619196302e-16,
+ -7.958718263678955e-16,
+ 2.0464448354561905e-15,
+ 6.187310981896646e-16,
+ 1.0620999065180874e-16,
+ 4.7387109341631567e-17,
+ -9.578751493364059e-17,
+ -6.562850979995721e-16,
+ -3.5304068543763216e-16,
+ -3.374896899216353e-17,
+ -8.503416697045123e-17,
+ 5.781992481745663e-17,
+ 1.5135337258189021e-16,
+ 4.3344264097778644e-17,
+ -4.741399271153955e-16,
+ -5.541696513799009e-16,
+ -2.6502866826199007e-16,
+ 6.782881022934827e-17,
+ -7.858215819253762e-17,
+ -2.966269676615157e-16,
+ 1.0753347963189359e-16,
+ -1.2143011392278446e-16,
+ 3.8827857953239114e-16,
+ 2.907953443430169e-16,
+ 1.2986735617082533e-17,
+ 1.95628214868791e-17,
+ 2.332649327399538e-16,
+ -1.7172269516600852e-16,
+ -2.2515856273693413e-16,
+ 1.4831348383075786e-16,
+ 1.7817470394392214e-16,
+ -6.989676176073084e-18,
+ 4.301339185275743e-17,
+ -7.029380845475628e-16,
+ -1.8760456292702665e-16,
+ 1.377255719900791e-16,
+ 1.164670302474663e-16,
+ 2.5882481366784236e-16,
+ 9.529120656610878e-17,
+ -3.750436897315427e-16,
+ -2.0464448354561902e-16,
+ -3.604853109506094e-16,
+ -2.812414082680294e-17,
+ -9.810362064878908e-16,
+ 2.393033512115909e-16,
+ -3.58045128143578e-16,
+ -1.3931789466924369e-16,
+ -6.245213624775359e-17,
+ -1.0068442415995453e-15,
+ -2.4426643488690907e-16,
+ 1.2995007423208065e-16,
+ -4.116050728063865e-16,
+ 3.656138307484382e-16,
+ 1.5104317985218283e-16,
+ -3.167688155771819e-16,
+ -4.2239202498196085e-16,
+ -1.7618947047379487e-16,
+ 3.148249411376823e-16,
+ 2.8256489724811425e-16,
+ -3.121779631775126e-16,
+ -1.290401755582723e-17,
+ 9.413315370853454e-17,
+ 5.585743881417458e-16,
+ 2.8641128709648583e-17,
+ 2.8827244347473014e-17,
+ -2.6469779601696886e-16,
+ 5.579333231670172e-17,
+ 1.0025429024142694e-16,
+ 3.060568266446202e-16,
+ -7.335437672120248e-16,
+ -1.3995895964397228e-16,
+ -7.845808110065466e-17,
+ -8.048467360140958e-17,
+ -3.647866501358852e-17,
+ -9.562207881112999e-17,
+ 2.1043474783349022e-16,
+ 1.141509245323178e-17,
+ -1.9753073027766298e-16,
+ 3.6495208625839576e-16,
+ -3.937379715752411e-16,
+ 4.116877908676418e-16,
+ -2.7296960214249913e-16,
+ 4.221929846470653e-16,
+ -2.2863272130965685e-16,
+ 2.0282468619800236e-16,
+ -9.132073962585424e-17,
+ 5.66618719598824e-17,
+ -5.1450634100798315e-17,
+ 2.4931223662348254e-16,
+ -9.904660654709953e-16,
+ -7.318894059869188e-16
+ ],
+ [
+ -6.237699488499979,
+ -5.063674777777217,
+ 3.5254796895504272,
+ -2.8325238557785406,
+ 1.2243049037574973,
+ 0.89317800129507,
+ -2.6117407439686495,
+ 3.48659956534342,
+ -2.273612664829711,
+ -4.524111149225446,
+ 0.3058725460212749,
+ 0.5171477657593291,
+ 1.03854338093218,
+ -2.7130867556788143,
+ 3.5178975398946566,
+ -2.0756004251136613,
+ -3.8902211688520336,
+ 0.0033989934501211755,
+ 0.38210738038070297,
+ 1.2726762090723354,
+ -2.864866370774241,
+ 3.528180208309745,
+ -2.990600490092679,
+ 1.4827210141963665,
+ 0.5075555011286771,
+ -1.4450004951107918,
+ -1.9877244906843154,
+ 3.9350769022793624,
+ 2.293484730345945,
+ -2.907715061672151,
+ 1.2543755691034366,
+ 0.7514152443998151,
+ -1.565084985319344,
+ -2.4258068386342213,
+ 4.194308447899513,
+ 2.288485084961404,
+ -2.75984575517925,
+ 1.109063298145662,
+ 0.8982548843350424,
+ -2.692272778991274,
+ 3.503664314748806,
+ -3.1812557594826347,
+ 4.3540875121626845,
+ 4.423948018575622,
+ 3.449652044407044,
+ 3.4192787333249375,
+ 3.059186814795408,
+ 2.9475201650176994,
+ -2.645994961733902,
+ 3.494372829365797,
+ -3.2112329950553735,
+ 1.7905308389684595,
+ 0.15855688122259465,
+ -2.058946154268526,
+ 2.112121418049496,
+ 3.680834567368331,
+ 1.7367820136786525,
+ 0.5669487800560321,
+ -2.474005640182155,
+ 3.4468020058125517,
+ -3.2680679558072887,
+ 1.3863762941038729,
+ 2.9392895039223927,
+ 1.8576879526819354,
+ 0.7036817684216693,
+ -2.6443147520581642,
+ 3.491375069238055,
+ -3.207858700515596,
+ 1.7879122398362381,
+ 0.15956149254863708,
+ -2.057959139589125,
+ 2.103899761363684,
+ 3.3835974231220085,
+ -3.0577767308381656,
+ -1.9619290562850318,
+ 1.6563122149701002,
+ 0.4063151431451603,
+ -2.253966563912318,
+ 2.261124166935535,
+ 4.020134037054724,
+ -3.255497917769308,
+ -1.942698071192464,
+ 1.4337087447552288,
+ 0.5588137794403755,
+ -2.36784526368254,
+ 3.4395772813277135,
+ -3.3143036419678897,
+ 2.1153272578386746,
+ -2.107813667661341,
+ -2.771667303468861,
+ -5.477000659652249,
+ -4.546765218987237,
+ 2.70712827744531,
+ -1.0321914392533138,
+ -0.9743085341464514,
+ 2.7409270876910266,
+ -3.5100207967127957,
+ 3.143165678376724,
+ -1.33640973261945,
+ -3.0910842061844668,
+ -2.4804087900246694,
+ -0.9835796480818891,
+ 2.833687493743385,
+ -3.5229568699227096,
+ 3.0229489269693754,
+ -1.0866659114964676,
+ -2.4750860629705587,
+ -2.390630515423089,
+ -1.033344278067424,
+ 2.9741827762946262,
+ -3.529329152546127,
+ 2.942068560189066,
+ -1.296037193870602,
+ -0.702788814626451,
+ 2.4767462522509063,
+ -2.2212175587321243,
+ -3.685151147739748,
+ 2.612434778619428,
+ 1.7538382125666143,
+ -1.1545914646621345,
+ -0.9435567116674743,
+ 2.647022112259882,
+ -2.267647831720157,
+ -4.121995458563416,
+ 2.5992178932781864,
+ 1.6447880663889942,
+ -0.9178794711104864,
+ -1.091003091772869,
+ 2.74425390618019,
+ -3.5206304022307515,
+ 3.0872005294207274,
+ -1.6531736791199063,
+ 0.7912005127026881,
+ 0.944345867162675,
+ 2.993255314831595,
+ 3.0988908481897615,
+ 5.691354030949182,
+ 5.683428723682778,
+ -3.5173861611943082,
+ 3.1248673979502044,
+ -1.722045893351253,
+ -0.3536714120342609,
+ 2.2122412808675014,
+ -3.356769210491491,
+ 2.260855223152438,
+ 4.389322396047441,
+ -0.9898794558995542,
+ -0.8703787202618307,
+ -0.5036547324313944,
+ 2.33036440298221,
+ -3.4257105153939555,
+ 2.2034294994450523,
+ 4.015198269906253,
+ -0.6292533965037319,
+ -0.7281662855296993,
+ -0.7475291354143784,
+ 2.510636870024725,
+ -3.4591632427113836,
+ 3.245322418911527,
+ -1.9607779728791224,
+ 0.03938315811893795,
+ 1.1509781827160395,
+ 1.4185829920671245,
+ -4.0330429247089015,
+ -2.2901119202950024,
+ 3.1829735007809736,
+ -1.7500695816378258,
+ -0.20836506528740895,
+ 1.3123533799539961,
+ 1.899082423314744,
+ -4.564416638867155,
+ -2.4222024419923818,
+ 3.0676500951068837,
+ -1.6145082974068075,
+ -0.358912012156162,
+ 2.3060537070371736,
+ -3.3918304276056044,
+ 3.3804472521786795,
+ -4.465909997197658,
+ -5.574639022482998,
+ 8.470329472543002e-16,
+ 1.6153183001935522e-15,
+ 4.614013456820788e-16,
+ 1.378082900513344e-16,
+ -1.2366350157667764e-16,
+ 2.0183206946293872e-17,
+ -5.083852044750908e-16,
+ -4.38240288530594e-16,
+ -3.6098161931814123e-16,
+ 4.49986253228847e-17,
+ 5.848166930749906e-17,
+ 9.681321889320636e-16,
+ 4.979627287569226e-17,
+ 2.5735656808056074e-16,
+ -8.271806125530276e-19,
+ -3.5601853564282306e-16,
+ -1.792707182555549e-16,
+ -2.711084457642548e-16,
+ -2.3508473008757047e-16,
+ 4.3360807710029706e-16,
+ -4.6073960119203635e-17,
+ -2.455072058057386e-16,
+ -2.340921133525068e-17,
+ -2.4649982254080222e-17,
+ 5.027603763097302e-16,
+ -5.492479267352103e-17,
+ -8.883919778819516e-17,
+ -5.1781506345819526e-17,
+ 3.0175548745934445e-16,
+ 2.842192584732203e-16,
+ -2.0878038660838416e-16,
+ 3.90429249125029e-17,
+ 1.1800558618681493e-15,
+ 1.3317607862103746e-16,
+ -3.0658415428512275e-16,
+ -4.37413107918041e-16,
+ -1.9091328537723876e-16,
+ 5.858506688406819e-17,
+ -2.785944303078597e-16,
+ 7.394167495611513e-16,
+ -1.0587911840678753e-16,
+ 3.4625780441469734e-16,
+ 2.987776372541536e-16,
+ 4.086272226011956e-17,
+ -6.460280584039146e-17,
+ 1.6626330312315856e-17,
+ -9.61183871786618e-17,
+ -1.7039920618592368e-16,
+ 2.508218412413918e-16,
+ 4.896909226313923e-17,
+ -6.628818633846826e-17,
+ 1.976961664001736e-16,
+ 9.496033432108756e-17,
+ -2.9571706898770736e-18,
+ -2.363255010064e-16,
+ -7.841672207002701e-17,
+ 5.2071019560213086e-17,
+ -3.635458792170556e-16,
+ 2.022870187998429e-16,
+ 2.487332101946954e-16,
+ 2.1787937334646746e-16,
+ 4.632211430296955e-18,
+ 2.3851752962966553e-16,
+ -4.7997155043389425e-17,
+ -2.961306592939839e-16,
+ -2.929873729662824e-16,
+ 3.716108901894477e-17,
+ 7.126160977144333e-17,
+ -1.222572945353375e-16,
+ -1.4285409178790788e-16,
+ 1.0439019330419208e-16,
+ 3.034098486844505e-16,
+ 1.4111701250154652e-16,
+ -1.9959868180904555e-16,
+ -1.6692504761320096e-16,
+ -4.0391229310964336e-16,
+ 1.6061779544248412e-16,
+ -5.608284553109528e-17,
+ -1.684139727157964e-16,
+ -1.1286879458286063e-16,
+ -5.795757284126429e-17,
+ 3.7471281748652154e-17,
+ -9.926167350636332e-19,
+ 7.275053487403878e-17,
+ -9.922031447573566e-17,
+ -8.954230130886523e-17,
+ -2.57087734381481e-16,
+ -1.862810739469418e-16,
+ -9.330597309598151e-17,
+ 1.2440796412797536e-16,
+ -6.117414220135915e-16,
+ 1.5165529350547207e-15,
+ 4.441959889409759e-16,
+ 7.47771273747937e-17,
+ 2.3616006488388937e-17,
+ -5.757177063369073e-17,
+ -4.887810239575841e-16,
+ -2.693300074472658e-16,
+ 1.6543612251060552e-18,
+ -6.650532124926343e-17,
+ 3.374896899216353e-17,
+ 1.638954986197255e-16,
+ 6.452008777913616e-17,
+ -3.389786150242307e-16,
+ -3.888162469305506e-16,
+ -1.9107872149974937e-16,
+ 3.705769144237564e-17,
+ -4.028369583133244e-17,
+ -1.8942436027464331e-16,
+ 7.752750291153251e-17,
+ -7.841672207002701e-17,
+ 2.8306120561564607e-16,
+ 1.989162578036893e-16,
+ 2.5435803836005598e-17,
+ -1.2056157427960377e-17,
+ 1.7064736036968958e-16,
+ -1.3582305658120714e-16,
+ -1.589841137326919e-16,
+ 1.5395899151143225e-16,
+ 1.3797372617384502e-16,
+ -1.2200914035157157e-17,
+ 2.787598664303703e-17,
+ -5.416378650997225e-16,
+ -1.3251433413099503e-16,
+ 6.799424635185887e-17,
+ 7.080666043453917e-17,
+ 1.7867101231145395e-16,
+ 5.707546226615891e-17,
+ -3.0489877378704595e-16,
+ -1.649398141430737e-16,
+ -2.962960954164945e-16,
+ -3.2094607767057474e-17,
+ -7.328820227219824e-16,
+ 1.8987930961154748e-16,
+ -2.8740390383154947e-16,
+ -1.3991760061334463e-16,
+ -2.4401828070314313e-17,
+ -7.312276614968764e-16,
+ -1.4885115122891733e-16,
+ 8.869444118099838e-17,
+ -2.8537731133079455e-16,
+ 2.5824578723905524e-16,
+ 1.0869153248946782e-16,
+ -2.6430488522600617e-16,
+ -2.270610781458061e-16,
+ -1.283784310682299e-16,
+ 2.426947917230583e-16,
+ 2.5328270356373707e-16,
+ -2.295426199834652e-16,
+ -1.7205356741102976e-17,
+ 3.110199103199384e-17,
+ 3.9046026839799975e-16,
+ 1.3379646408045221e-17,
+ 7.692779696743157e-18,
+ -2.756165801026688e-16,
+ 5.02305426972826e-17,
+ 4.8803656140628627e-17,
+ 1.8810087129455847e-16,
+ -5.621519442910376e-16,
+ -1.1415092453231782e-16,
+ -4.925860547753279e-17,
+ -4.044913195384305e-17,
+ -3.513449651818985e-17,
+ -6.878006793378425e-17,
+ 2.243313821243811e-16,
+ 1.9025154088719633e-17,
+ -1.2788212270069808e-16,
+ 2.421984833555265e-16,
+ -2.7942161092041275e-16,
+ 2.95882505110218e-16,
+ -1.9852334701272662e-16,
+ 3.4146015686188977e-16,
+ -1.4177875699158894e-16,
+ 1.593149859777131e-16,
+ -6.5843576759221e-17,
+ 5.376673981594679e-17,
+ -4.1028158382630167e-17,
+ 1.951319065012592e-16,
+ -7.892130224368436e-16,
+ -4.764560328305439e-16
+ ],
+ [
+ 0.31240509384439585,
+ 0.08603536318496467,
+ -0.8233648172290469,
+ 2.5645838556538316,
+ -3.4739150330700976,
+ 3.2136249719401153,
+ -1.8955050116483096,
+ -0.038464056170726055,
+ 1.212793969766899,
+ 1.6941514142682674,
+ -4.59308492989575,
+ -2.4199415242398827,
+ 3.1482570680956306,
+ -1.7637785912982464,
+ -0.2859838880552956,
+ 1.3292395662078542,
+ 1.7613448431152747,
+ -3.9861442176197297,
+ -2.2985993687816455,
+ 3.0281352535980255,
+ -1.544856783251368,
+ -0.43621530149259036,
+ 2.3642796133524664,
+ -3.4125807374925494,
+ 3.356830866033274,
+ -1.5136796203435545,
+ -3.130757622063887,
+ -1.6004584520929073,
+ -0.5477227012207959,
+ 2.4744971751231692,
+ -3.468189071257943,
+ 3.2716042898442455,
+ -1.4094032802359404,
+ -3.1957298264052736,
+ -2.0145164962645765,
+ -0.7217584997439153,
+ 2.645076475889638,
+ -3.4939752172511,
+ 3.2114451337008845,
+ -1.7913730454379269,
+ -0.15747113819938324,
+ 2.0579100347379558,
+ -5.266961892081644,
+ -5.117647295071607,
+ -0.23213408647920375,
+ -0.010257825111416485,
+ 4.8533447579589275,
+ 5.009116746194572,
+ -1.8522797956458934,
+ -0.08951891184030301,
+ 1.9996836294518638,
+ -3.3063921497854247,
+ 3.449204698416533,
+ -2.475030633568288,
+ 0.5664849494435361,
+ 1.7365722793858056,
+ 3.684913467492812,
+ 2.1141716978378184,
+ -2.062178524668375,
+ 0.16087039069645032,
+ 1.872668871368343,
+ -2.0436652873328516,
+ -3.239839113628763,
+ 3.2261123407942183,
+ 2.037672833159882,
+ -1.855770856291042,
+ -0.08705464376688474,
+ 1.9989817281010662,
+ -3.3078741313235485,
+ 3.4522718941934945,
+ -2.478649606595663,
+ 0.5502412419654079,
+ 1.6051516296428445,
+ 3.1306226849384307,
+ 1.513156697793657,
+ -3.358341073458022,
+ 3.3907426659664544,
+ -2.295924516582555,
+ 0.46586229628874487,
+ 1.5513858928653759,
+ 3.7836574468254067,
+ 1.755669595352368,
+ -3.42732348750767,
+ 3.3438246572506105,
+ -2.1787605699068697,
+ 0.19287807087959422,
+ 1.7620470228861556,
+ -3.148975205415126,
+ 4.965386485370149,
+ 6.033314713881241,
+ 3.9652402806701312,
+ 3.100962020419312,
+ -2.696590546776552,
+ 3.5065529443116006,
+ -3.1811854228612835,
+ 1.726502034040511,
+ 0.2334947979154651,
+ -2.1205728841407683,
+ 2.2191312061565673,
+ 3.9093471190916724,
+ -3.4177771725769537,
+ -2.0144526355493424,
+ 1.5931899824802214,
+ 0.38710322061037733,
+ -2.3136548096219447,
+ 2.1822296952595455,
+ 3.5760578697695475,
+ -2.8087928111364167,
+ -1.8479296717788078,
+ 1.3680236263337626,
+ 0.6323929890816216,
+ -2.4256076629390853,
+ 3.4604345999741275,
+ -3.293169544484441,
+ 2.0588710686307286,
+ -0.19818176583881444,
+ -1.0109571297158584,
+ -3.4897059533789694,
+ -1.7627701111638583,
+ 3.488277404495043,
+ -3.1952109762464587,
+ 1.8524357006582892,
+ -0.05265663174908445,
+ -0.793684900361586,
+ -3.9369143188232245,
+ -1.882311682921389,
+ 3.5196010492580236,
+ -3.1261179666833936,
+ 1.7219113334484204,
+ 0.3551769118583204,
+ -2.2146205554903227,
+ 3.359191512809008,
+ -6.322975318238593,
+ -6.259805335091957,
+ -2.234590798942117,
+ -2.0600984695931537,
+ 1.5817491310712017,
+ 1.7584830930514301,
+ 0.2825089173647043,
+ -2.1585080355212467,
+ 3.3336841840257923,
+ -3.401768177984638,
+ 2.33350071992122,
+ -0.5079908138183236,
+ -0.8677287489256496,
+ -0.9845401060509638,
+ 4.389194878414176,
+ 2.2603409738726783,
+ -3.3582051472522014,
+ 2.215672426919953,
+ -0.2616666994867294,
+ -1.0234472891097384,
+ -1.1772988916701386,
+ 4.045140124846941,
+ 2.2729714222495225,
+ -3.2730235415750606,
+ 2.017286419638078,
+ -0.11081279034565777,
+ -1.9304106962983671,
+ 3.230872196989296,
+ -3.486602683202437,
+ 1.7629568066003596,
+ 3.4893172318041277,
+ 1.006974778455949,
+ 0.19610063765542415,
+ -2.055257358652835,
+ 3.323161003760662,
+ -3.438353557832847,
+ 1.780733735643803,
+ 3.8226793375380144,
+ 1.4812937964330106,
+ 0.4278775458950829,
+ -2.2515632152871214,
+ 3.372120795265767,
+ -3.40032938860062,
+ 2.24040345890206,
+ -0.3898916589287558,
+ -1.5895207929758501,
+ 3.243551570508456,
+ 3.8147707718320283,
+ 8.734200087947418e-16,
+ 4.1507923137910924e-16,
+ 1.373119816838026e-16,
+ 1.8189701670041076e-16,
+ -8.740197147388427e-17,
+ -1.4880979219828968e-16,
+ 8.519960309296184e-17,
+ 1.2353942448479468e-16,
+ -3.2276587501819135e-16,
+ 1.329692834678992e-16,
+ 1.1580528575742387e-16,
+ -5.161607022330892e-17,
+ 2.312383402391989e-16,
+ -2.8682487740276235e-17,
+ -7.46116912522831e-17,
+ -1.4690727678941772e-16,
+ -5.69100261436483e-17,
+ 6.220398206398768e-17,
+ 7.804449079437815e-17,
+ -1.0058516248644815e-16,
+ 9.950982769012922e-17,
+ 3.2756352257099896e-17,
+ 1.4301952791041848e-16,
+ 9.930303253699096e-17,
+ -7.213014941462401e-17,
+ -4.605741650695258e-16,
+ -1.670904837357116e-17,
+ -7.444625512977249e-18,
+ 3.293419608879879e-16,
+ 3.146595050151717e-16,
+ 4.638828875197379e-16,
+ -8.03399169942128e-17,
+ -1.5013328117837452e-16,
+ 2.4860913310281247e-16,
+ 3.7289302013890483e-16,
+ -6.200545871697494e-16,
+ 2.0472720160687432e-16,
+ 7.345363839470886e-17,
+ -2.3355444595434736e-16,
+ 7.4859845436049e-18,
+ 6.352747104407253e-17,
+ 2.5728418977696235e-16,
+ 1.7544500792249715e-16,
+ 1.3307268104446833e-16,
+ 6.352747104407253e-17,
+ -4.949021604904765e-16,
+ 1.2597960729182611e-16,
+ -4.931650812041151e-16,
+ -2.012530430341516e-16,
+ -2.067951531382569e-17,
+ 2.5762540177964047e-16,
+ 7.366043354784711e-17,
+ -7.915601474249628e-17,
+ -3.270672142034671e-16,
+ -2.815722805130506e-16,
+ -2.8124140826802937e-18,
+ -1.4500476138054575e-16,
+ 9.711100391372544e-17,
+ -5.98878763488392e-17,
+ -1.6675961149069035e-16,
+ -1.9968139987030086e-16,
+ -6.915229920943311e-17,
+ -1.890934880296221e-16,
+ 1.078643518769148e-16,
+ 8.900463391070577e-17,
+ 1.5025735827025748e-16,
+ -3.9506146055532597e-16,
+ -3.010420441810175e-17,
+ -1.7850557618894335e-16,
+ 1.292314610749252e-16,
+ -1.9356026333740845e-16,
+ -2.3425754947501744e-16,
+ -1.8818358935581377e-16,
+ 6.476824196290207e-17,
+ -1.5402103005737373e-16,
+ 1.0695445320310647e-16,
+ -1.7526923204232963e-16,
+ -2.2888087549342276e-16,
+ 1.134064619810201e-16,
+ -1.267654288737515e-16,
+ 6.356883007470018e-17,
+ -3.908428394313056e-18,
+ -2.1961645263282882e-17,
+ 2.549267250311862e-16,
+ 1.1787323728880642e-18,
+ 2.0844951436336294e-17,
+ -3.6023715676684355e-17,
+ -9.429858983104514e-18,
+ -7.394994676224066e-16,
+ -1.462455322993753e-16,
+ 3.154866856277247e-16,
+ -4.764560328305439e-16,
+ -1.2271224387224166e-16,
+ -5.558653716356346e-17,
+ -1.8379953210928272e-16,
+ 1.5766062475260705e-16,
+ 1.9455288007247208e-16,
+ -2.729696021424991e-18,
+ 2.3467113978129395e-16,
+ -1.819797347616661e-17,
+ -1.9356026333740845e-17,
+ 4.0101716096570777e-16,
+ 3.500214762018136e-16,
+ 1.2126467780027386e-16,
+ 1.3844160020782032e-16,
+ 3.259091613458929e-17,
+ -1.1547441351240266e-16,
+ 1.728393889929551e-16,
+ 2.0265925007549176e-16,
+ 2.283018490646356e-17,
+ 1.6026624368214909e-16,
+ -1.7751295945387971e-16,
+ -1.6167245072348923e-16,
+ 1.464109684218859e-16,
+ -1.7221900353354034e-16,
+ -1.5071230760716162e-16,
+ -1.4475660719677984e-16,
+ 7.597653926299558e-17,
+ 2.0894582273089477e-16,
+ 1.3052910066086777e-16,
+ 2.779326858178173e-17,
+ -1.1762508310504054e-16,
+ 1.348304398461435e-17,
+ 7.17165591083475e-17,
+ -3.513863242125261e-16,
+ -3.8248831524451995e-16,
+ -2.0150119721791752e-16,
+ -1.1307558973599888e-16,
+ -1.1257928136846707e-16,
+ -2.2664748783952955e-17,
+ -1.2664135178186854e-16,
+ -9.082443125832243e-17,
+ -2.5725317050399158e-17,
+ 1.3214210285534617e-16,
+ -1.9068581070878668e-16,
+ -1.7932241704383946e-16,
+ 2.1409502204403736e-16,
+ 4.294721740375319e-16,
+ 2.484850560109295e-16,
+ -4.369581585811368e-17,
+ 3.664410113609912e-16,
+ -1.5244938689352298e-16,
+ -6.236941818649829e-17,
+ -3.2855613930606254e-16,
+ 6.485096002415736e-16,
+ 1.0683037611122351e-16,
+ 4.235164736271501e-17,
+ 2.2532399885944474e-16,
+ 6.815968247436948e-17,
+ -1.2262952581098635e-16,
+ -3.963849495354108e-16,
+ -3.1912628032295803e-16,
+ -7.16338410470922e-17,
+ -1.8760456292702665e-16,
+ -5.761312966431838e-16,
+ 9.260286957531144e-17,
+ -2.6205081805679917e-16,
+ -2.959652231714733e-16,
+ 7.833400400877171e-17,
+ -2.2333876538931744e-17,
+ 1.5373151684298017e-16,
+ 2.2540671692070004e-16,
+ -7.705187405931452e-17,
+ -2.862044919433476e-17,
+ 3.515517603350367e-16,
+ 5.5338382979797545e-17,
+ 1.7205356741102973e-16,
+ -2.365736551901659e-16,
+ 2.3177600763735835e-16,
+ -2.1117921038478794e-16,
+ 1.2076836943274203e-17,
+ 1.981924747677054e-16,
+ 2.1680403855014853e-16,
+ -5.405625303034035e-17,
+ 3.970466940254532e-17,
+ 1.0976686728578676e-16,
+ -3.788487205492866e-17,
+ 4.284795573024683e-17,
+ -4.738090548703743e-16,
+ 1.2722037821065566e-16
+ ],
+ [
+ 1.2411203314949908,
+ 0.7812733104724684,
+ -1.5747566194719658,
+ 3.834690878484998,
+ -4.851206047906904,
+ 4.221645386078715,
+ -2.216216012154388,
+ -0.5098956712503854,
+ 1.936122693727617,
+ 2.881643151681402,
+ -6.24165302416508,
+ -3.3352724253911883,
+ 4.114292413825719,
+ -2.0250497747395286,
+ -0.8482020625326592,
+ 2.0673362784644462,
+ 2.8891056226066762,
+ -5.382443592448247,
+ -3.153701686633776,
+ 3.9213521025877096,
+ -1.7095303266221205,
+ -1.0523914082623333,
+ 3.5850091942728306,
+ -4.802339705907058,
+ 4.465647305799682,
+ -1.8539328510801758,
+ -3.9659862228097476,
+ -2.6777723777074334,
+ -1.0407694185263547,
+ 3.7229374318605735,
+ -4.847426138209754,
+ 4.318545458241603,
+ -1.6973685201886712,
+ -3.9961678179849613,
+ -3.2708762665321207,
+ -1.2750917795356425,
+ 3.9338282915057,
+ -4.8631545380826156,
+ 4.218029500059436,
+ -2.065039270397233,
+ -0.6728178860662896,
+ 3.196401720515177,
+ -7.683254080636553,
+ -7.4908363291720885,
+ -0.7665313681261916,
+ -0.4629697324536913,
+ 6.151043815168713,
+ 6.376037211818187,
+ -2.1533517663736683,
+ -0.5798495642366684,
+ 3.1217220228669755,
+ -4.699399825853644,
+ 4.636210822864074,
+ -3.0712832252377593,
+ 0.4874286404887522,
+ 1.8612024965083886,
+ 5.026278304290957,
+ 2.7800370033054946,
+ -2.459345271333694,
+ -0.23553162459601046,
+ 2.9576917402501763,
+ -2.941405799324765,
+ -4.76042586221308,
+ 4.111818345087255,
+ 2.658789692436988,
+ -2.1582894462314295,
+ -0.5761288009275968,
+ 3.120328109147665,
+ -4.701051387391685,
+ 4.640219545419941,
+ -3.0763035965115706,
+ 0.4665769310475375,
+ 1.7228065399805974,
+ 4.628527491302541,
+ 2.3007257651159643,
+ -4.751903143581623,
+ 4.52473718418254,
+ -2.8038478921280245,
+ 0.3319990650323445,
+ 1.5666044208836205,
+ 5.536209030636233,
+ 2.6256345253517943,
+ -4.8158053751355325,
+ 4.441361503179987,
+ -2.6306981942772096,
+ -0.19136666553506892,
+ 2.8144031256615585,
+ -4.529513701219917,
+ 6.981013169368754,
+ 8.510103019927374,
+ 6.07317484720523,
+ 4.784060890627322,
+ -3.9964484915246143,
+ 4.870041247006805,
+ -4.167183672641118,
+ 1.9710654293798053,
+ 0.7762984667549652,
+ -3.275998345079492,
+ 3.1717541435189744,
+ 5.6843189837124894,
+ -4.288805789429788,
+ -2.590672448919008,
+ 1.77888585642138,
+ 0.9853957955714479,
+ -3.520901529435637,
+ 3.0891276950430466,
+ 5.153410932554482,
+ -3.478359910792456,
+ -2.3593008771299044,
+ 1.4564165279716055,
+ 1.3174166062941164,
+ -3.6614342504174195,
+ 4.842433592000015,
+ -4.354049912286515,
+ 2.4545206384775855,
+ 0.02417511435028989,
+ -0.880927940073461,
+ -5.054861403196442,
+ -2.610414070086704,
+ 4.861449768177338,
+ -4.190161399773789,
+ 2.1534301507716784,
+ 0.22675815819046913,
+ -0.5301931433027446,
+ -5.656938633378781,
+ -2.7574927344948654,
+ 4.872651871037256,
+ -4.077507057501385,
+ 1.9644267035419616,
+ 0.9419832900674664,
+ -3.395629313175879,
+ 4.752650926305848,
+ -8.64107852740937,
+ -8.575913381909542,
+ -3.4102525624446023,
+ -3.188532130670407,
+ 1.388084382772214,
+ 1.627748010000945,
+ 0.8434425293853324,
+ -3.3248128182659884,
+ 4.727255839655287,
+ -4.546534157502349,
+ 2.8600626283097377,
+ -0.24496766426557373,
+ -1.4685475408481314,
+ -1.905835609598417,
+ 6.056217893951029,
+ 3.1661836858944588,
+ -4.468013593855386,
+ 2.6854570913409423,
+ 0.09666853695269853,
+ -1.6712522402722172,
+ -2.1169536145592156,
+ 5.544310742034598,
+ 3.1645570605846403,
+ -4.3209719080627105,
+ 2.3939225924113403,
+ 0.3047418553535241,
+ -3.0326643523676244,
+ 4.6197958162726325,
+ -4.712701941594072,
+ 2.229122775392762,
+ 4.52486884151616,
+ 1.8893300477352697,
+ 0.5655748476858032,
+ -3.19303850447155,
+ 4.716728115068847,
+ -4.61501574764926,
+ 2.231927934398614,
+ 4.911853530864872,
+ 2.5995400670146283,
+ 0.8958644060893375,
+ -3.4429394907473476,
+ 4.765027901464501,
+ -4.543901884615309,
+ 2.7220416681866966,
+ -0.08090776445988353,
+ -2.5901510107196026,
+ 4.965964250299016,
+ 5.8828437361473425,
+ 9.88728986184634e-16,
+ 2.7098436867237187e-16,
+ 1.2373587988027603e-16,
+ 2.131644438549152e-16,
+ -1.0252903692594777e-16,
+ -1.9091328537723876e-16,
+ 1.6758679210324338e-16,
+ 2.0621612670946977e-16,
+ -3.604853109506094e-16,
+ 1.7759567751513502e-16,
+ 1.3863547066388744e-16,
+ -1.8462671272183575e-16,
+ 3.2218684858940423e-16,
+ -6.768405362215149e-17,
+ -1.0025429024142694e-16,
+ -1.5683344414005402e-16,
+ -6.02445979880027e-17,
+ 1.0265311401783072e-16,
+ 1.3813916229635562e-16,
+ -1.8561932945689939e-16,
+ 1.316044354571867e-16,
+ 5.616556359235058e-17,
+ 2.03817302933066e-16,
+ 1.3495451693802647e-16,
+ -1.5253210495477828e-16,
+ -6.048344638987737e-16,
+ -1.2738581433316625e-17,
+ -4.4667753077863494e-18,
+ 3.95888641167879e-16,
+ 4.0035541647566535e-16,
+ 6.405686663610645e-16,
+ -1.1996186833550284e-16,
+ -2.7925617479790214e-16,
+ 3.1920899838421333e-16,
+ 5.33035186729171e-16,
+ -7.921081545807792e-16,
+ 2.8521187520828394e-16,
+ 8.263534319404745e-17,
+ -2.765678378071048e-16,
+ -7.390858773161302e-17,
+ 7.560430798734672e-17,
+ 3.1759599618973493e-16,
+ 1.5501364679243736e-16,
+ 1.7087483503814167e-16,
+ 1.0290126820159663e-16,
+ -6.744003534144834e-16,
+ 1.8011857838342175e-16,
+ -6.539689922844236e-16,
+ -3.060568266446202e-16,
+ -3.374896899216353e-17,
+ 3.6420762370709804e-16,
+ 8.689532334869554e-17,
+ -1.2498699055676248e-16,
+ -4.403909581232319e-16,
+ -3.4907021849737763e-16,
+ 6.121136532892404e-18,
+ -1.9165774792853649e-16,
+ 1.4409486270673742e-16,
+ -9.363684534100272e-17,
+ -2.5824578723905524e-16,
+ -2.9397998970134604e-16,
+ -8.801201717564213e-17,
+ -2.8818972541347484e-16,
+ 1.4459117107426924e-16,
+ 1.5501364679243736e-16,
+ 2.4697545139302024e-16,
+ -5.370056536694256e-16,
+ -4.7531865948828347e-17,
+ -2.3723539968020834e-16,
+ 1.7358385154425283e-16,
+ -2.7363134663254155e-16,
+ -3.5502591890775943e-16,
+ -2.746239633676052e-16,
+ 1.0447291136544738e-16,
+ -1.859502017019206e-16,
+ 1.91595709382595e-16,
+ -2.6041713634700694e-16,
+ -3.267363419584459e-16,
+ 1.465764045443965e-16,
+ -1.531111313835654e-16,
+ 9.036948192141826e-17,
+ -2.2850864421777386e-17,
+ -1.8611563782443123e-17,
+ 3.2839070318355194e-16,
+ 1.598526533758726e-17,
+ 3.8877488789992295e-17,
+ -2.0974198407047705e-17,
+ -9.760731228125725e-18,
+ -1.0025429024142695e-15,
+ -1.343341314786117e-16,
+ 5.105358740677287e-16,
+ -7.894611766206095e-16,
+ -2.126681354873834e-16,
+ -5.947428604256269e-17,
+ -2.365736551901659e-16,
+ 2.1093105620102203e-16,
+ 3.0853836848227927e-16,
+ 1.522012327097571e-17,
+ 3.1730648297534137e-16,
+ -3.970466940254533e-18,
+ -3.7719435932418056e-17,
+ 5.302641316771184e-16,
+ 4.712447949714599e-16,
+ 1.892589241521327e-16,
+ 2.0094285030444422e-16,
+ 4.0697286137608955e-17,
+ -1.546414155167885e-16,
+ 2.2830184906463564e-16,
+ 2.7098436867237187e-16,
+ 2.6304343479186277e-17,
+ 2.2606846141074246e-16,
+ -2.7402425742350424e-16,
+ -2.384761705990379e-16,
+ 1.9703442191013117e-16,
+ -2.2598574334948716e-16,
+ -2.3094882702480533e-16,
+ -1.797463471077729e-16,
+ 1.1803867341131705e-16,
+ 2.248276904919129e-16,
+ 1.6709048373571157e-16,
+ 3.8050308177439267e-17,
+ -1.6080391108030856e-16,
+ 5.1119761855777104e-17,
+ 1.0790571090754245e-16,
+ -4.830734777309682e-16,
+ -5.221164026434711e-16,
+ -2.8769341704594303e-16,
+ -1.5873595954892599e-16,
+ -1.0368708978352201e-16,
+ 2.39882377640378e-18,
+ -1.3507859402990942e-16,
+ -1.1398548840980721e-16,
+ 2.4649982254080222e-17,
+ 1.797463471077729e-16,
+ -2.1874791298964814e-16,
+ -2.141984196206065e-16,
+ 2.8947185536293203e-16,
+ 6.306424990104282e-16,
+ 3.41791029106911e-16,
+ -6.778745119872062e-17,
+ 5.254251250936832e-16,
+ -2.336785230462303e-16,
+ -8.644037401179138e-17,
+ -4.016789054557502e-16,
+ 8.81112788491485e-16,
+ 1.5790877893637296e-16,
+ 2.431911000905901e-17,
+ 2.5013941723603557e-16,
+ 1.2440796412797536e-16,
+ -1.6363183479947422e-16,
+ -5.469318210200619e-16,
+ -4.883674336513075e-16,
+ -1.0405932105917087e-16,
+ -2.509665978485886e-16,
+ -7.408126168448346e-16,
+ 1.1828682759508296e-16,
+ -3.570111523778867e-16,
+ -3.8000677340686086e-16,
+ 1.7652034271881608e-16,
+ -1.555099551599692e-17,
+ 2.1746578304019095e-16,
+ 3.2905244767359436e-16,
+ -1.0265311401783072e-16,
+ -3.0605682664462024e-17,
+ 4.54618464659144e-16,
+ 7.150976395520924e-17,
+ 2.546061925438219e-16,
+ -3.3500814808397616e-16,
+ 3.5916182197052457e-16,
+ -3.2301402920195726e-16,
+ 3.705769144237564e-17,
+ 2.392206331503356e-16,
+ 2.9977025398921723e-16,
+ -9.380228146351333e-17,
+ 6.402377941160434e-17,
+ 1.5683344414005402e-16,
+ -4.235164736271501e-17,
+ 4.7811039405564993e-17,
+ -5.059036626374317e-16,
+ 1.5782606087511766e-16
+ ],
+ [
+ 0.8562741305237708,
+ 0.8350742984539232,
+ 0.03597855503132694,
+ -1.6550326491485619,
+ 2.662000668652618,
+ -2.8644156323935803,
+ 2.0306790417169274,
+ -0.612639786482091,
+ -0.6057572565154601,
+ -0.6047257189160613,
+ 3.7815530775627306,
+ 1.9286153231954184,
+ -2.8349621209113387,
+ 1.9397010337461014,
+ -0.4106158755888878,
+ -0.7384804389049554,
+ -0.7743785516327037,
+ 3.3287870633948606,
+ 1.8514504079316425,
+ -2.7774600909171094,
+ 1.7831401643747575,
+ -0.28787234433939446,
+ -1.4593862205151316,
+ 2.5644502157154725,
+ -2.914960901427442,
+ 1.5231033878366431,
+ 2.970962660808945,
+ 0.6319501882643411,
+ 0.04669337232384339,
+ -1.5653915931060054,
+ 2.65269152014106,
+ -2.886562542173542,
+ 1.457517832067895,
+ 3.1037021330953434,
+ 0.9313488561641259,
+ 0.19294856107586084,
+ -1.7352397529700792,
+ 2.699366778591902,
+ -2.863519581054687,
+ 1.9581642557011423,
+ -0.5163290785741453,
+ -1.1693352072318866,
+ 3.6192796168371038,
+ 3.4820374760039448,
+ -0.4239903784426146,
+ -0.603870522312195,
+ -4.601699916401249,
+ -4.711784651528589,
+ 2.00075173233224,
+ -0.5714228556548933,
+ -1.1153362438254415,
+ 2.4206421091285577,
+ -2.9296307719446837,
+ 2.4157548195411933,
+ -0.8514585558706228,
+ -2.109746153576698,
+ -2.242698310093862,
+ -0.9288381492176003,
+ 2.4871571682192024,
+ -0.7711595255306354,
+ -0.99818230138397,
+ 1.458650815656921,
+ 2.179603935146381,
+ -3.0273400601134925,
+ -1.8280039922695432,
+ 2.0033744559126494,
+ -0.5729562054429367,
+ -1.115362231838999,
+ 2.422379373213744,
+ -2.932396484569843,
+ 2.4186077187576656,
+ -0.8364286455834076,
+ -1.9467485002043803,
+ -2.067173579467671,
+ -0.9124573077764715,
+ 2.489002823176757,
+ -2.924297137008879,
+ 2.3019824146654093,
+ -0.7941110752176148,
+ -2.0158512801785338,
+ -2.5772146300916985,
+ -1.118463801643801,
+ 2.585594134194032,
+ -2.9133089474220357,
+ 2.223624029476632,
+ -0.7974631067144444,
+ -0.8984321155764817,
+ 2.2310218727510005,
+ -3.769806697461423,
+ -4.542900679008694,
+ -2.330983789082409,
+ -1.7757067749459308,
+ 1.7471643659770706,
+ -2.7642805590844604,
+ 2.811306651871604,
+ -1.9532637694036405,
+ 0.41334065329786746,
+ 1.187942855728619,
+ -1.614162122485396,
+ -2.711638155724199,
+ 3.2989377916086204,
+ 1.8587346561216513,
+ -1.8576381862905682,
+ 0.2882500087151197,
+ 1.371638867344329,
+ -1.6280675888795715,
+ -2.5435801702718206,
+ 2.7742067482324795,
+ 1.728557411543075,
+ -1.69562749577444,
+ 0.08362136236173118,
+ 1.4787401231455561,
+ -2.678462648775855,
+ 2.8561674281522587,
+ -2.183558195230634,
+ 0.5633712962854369,
+ 1.504440138975763,
+ 2.4468382875807895,
+ 1.1582152830586288,
+ -2.7261516056097674,
+ 2.818371398055531,
+ -2.0407438576547823,
+ 0.45013998015489415,
+ 1.4012105734551576,
+ 2.8227232411261176,
+ 1.2775913684536964,
+ -2.7955984412528667,
+ 2.7861780437117236,
+ -1.9500387422693053,
+ 0.31363712552545564,
+ 1.276484138740064,
+ -2.530025911298345,
+ 5.1400038552678975,
+ 5.059810109132794,
+ 1.3375788152365595,
+ 1.174788392667565,
+ -2.3405000180854683,
+ -2.487857327177402,
+ 0.3739487244929153,
+ 1.2228753619888637,
+ -2.496283132693701,
+ 2.884365827700516,
+ -2.3655917438971423,
+ 1.0052469219156759,
+ 0.31981915530707555,
+ 0.03614874727129056,
+ -3.4887427081361158,
+ -1.7320441678710436,
+ 2.8757460390548437,
+ -2.287444422561311,
+ 0.8127442288021626,
+ 0.46017011007054187,
+ 0.26416272059511836,
+ -3.265976742200218,
+ -1.7680685804662706,
+ 2.847385093275799,
+ -2.15492463230909,
+ 0.6918408478403085,
+ 1.010809391181088,
+ -2.3676883859272255,
+ 2.8848321503540557,
+ -1.6786563381239477,
+ -3.168518329640623,
+ -0.11871922038654253,
+ 0.24638800651613157,
+ 1.1271510649698202,
+ -2.481614880308899,
+ 2.8897979130826488,
+ -1.722407348846646,
+ -3.5330188751937595,
+ -0.4197218067329722,
+ 0.0764534089688219,
+ 1.310877680796386,
+ -2.547679463818274,
+ 2.8841104167492904,
+ -2.304608573482411,
+ 0.9128512835569302,
+ 0.7018842838967204,
+ -1.9092798297902238,
+ -2.1878042431578466,
+ -2.269783600845508e-16,
+ 2.474924392758659e-16,
+ -1.1448179677733903e-16,
+ -4.5784446904810076e-17,
+ 4.350970022028925e-17,
+ 3.135014521575975e-17,
+ 1.1870041790135947e-16,
+ 2.2333876538931744e-17,
+ 1.1894857208512538e-16,
+ -1.5290433623042714e-16,
+ -1.2573145310806019e-17,
+ -6.931773533194372e-17,
+ -3.24585672365808e-16,
+ -9.29751008509603e-17,
+ 9.760731228125725e-18,
+ 5.732361644992482e-17,
+ 6.610465564005805e-17,
+ 1.0943599504076555e-16,
+ 2.936491174563248e-17,
+ 9.438130789230045e-17,
+ -4.549493369041652e-18,
+ 1.1779051922755114e-16,
+ -1.349028181497419e-16,
+ -6.413751674583038e-17,
+ -7.097209655704977e-17,
+ 2.6171994581177796e-16,
+ 2.845501307182415e-17,
+ 2.2995621028974166e-17,
+ -1.3915762842556154e-16,
+ -2.718115492849249e-16,
+ -2.506357256035674e-16,
+ 6.88214269644119e-17,
+ -3.570111523778867e-16,
+ -1.5766062475260705e-16,
+ -1.952146245625145e-16,
+ 5.03256684677262e-16,
+ -5.39321759384574e-17,
+ 5.583469134732937e-19,
+ 2.1957509360220117e-16,
+ -1.1967235512110928e-16,
+ 1.0124690697649058e-16,
+ -3.067185711346626e-16,
+ 3.010937429693021e-17,
+ -6.493367808541267e-17,
+ -1.0393524396728792e-16,
+ 3.2615731552965876e-16,
+ -7.934730025914917e-17,
+ 6.786189745385038e-16,
+ 8.139457227521791e-17,
+ 2.216844041642114e-17,
+ -2.3748355386397425e-16,
+ -1.5137405209720404e-16,
+ 1.0844337830570192e-16,
+ 2.6081004713796963e-16,
+ 2.3508473008757047e-16,
+ 1.4062070413401469e-18,
+ 4.408872664907637e-17,
+ 1.2614504341433672e-16,
+ 3.556876633978019e-18,
+ 2.235869195730834e-16,
+ 1.0141234309900118e-16,
+ 5.525566491854224e-17,
+ 1.2060293331023143e-16,
+ -2.3905519702782497e-17,
+ -7.101345558767743e-17,
+ -1.6427806965303127e-16,
+ 3.2624003359091407e-16,
+ -1.675040740419881e-17,
+ 2.842192584732203e-16,
+ 5.897797767503087e-17,
+ 1.5985265337587257e-16,
+ 1.4558378780933287e-16,
+ 1.160741194565036e-16,
+ -1.3276248831476093e-17,
+ 2.008394527278751e-16,
+ 7.01035569138691e-18,
+ 1.0341567114502804e-16,
+ 3.2145789567459187e-16,
+ 9.727644003623604e-17,
+ 1.0240495983406481e-16,
+ -4.7232012976777874e-17,
+ -1.3855275260263212e-17,
+ 2.274746684520826e-19,
+ -1.5848780536516008e-16,
+ -1.7205356741102976e-17,
+ -6.203854594147707e-18,
+ 6.638124415738047e-17,
+ 1.1844192395993665e-16,
+ 6.984713092397765e-16,
+ -2.467066176939405e-16,
+ -1.2895745749701701e-16,
+ 8.99972506457694e-17,
+ 2.067951531382569e-18,
+ -7.622469344676149e-17,
+ 5.4645619216784385e-17,
+ -2.845501307182415e-17,
+ -5.3187713387159673e-17,
+ 1.7478326343245472e-16,
+ -2.450936154994621e-16,
+ -4.7780020132594255e-17,
+ 1.952146245625145e-17,
+ -3.9229040550327333e-16,
+ -2.784289941853491e-16,
+ 3.4493431543461254e-17,
+ 1.8561932945689939e-16,
+ 1.4541835168682227e-16,
+ 1.0774027478503184e-17,
+ -7.46944093135384e-17,
+ 1.0720260738687237e-16,
+ -5.806807900122254e-17,
+ -9.043152046735974e-17,
+ 8.590270661363191e-17,
+ 2.928219368437718e-17,
+ -1.411893908051449e-16,
+ 6.220398206398768e-17,
+ 1.3830459841886623e-16,
+ 1.6907571720583883e-16,
+ -6.968996660759258e-18,
+ 1.0091603473146936e-16,
+ -1.9935052762527964e-16,
+ -5.078888961075589e-17,
+ 8.172544452023912e-17,
+ 3.0423702929700353e-16,
+ 1.5592354546624572e-17,
+ 2.534481396862477e-16,
+ 2.5295183131871586e-16,
+ 8.586134758300426e-17,
+ 1.654361225106055e-19,
+ 3.0605682664462024e-17,
+ -5.485241436992264e-17,
+ 1.4459117107426924e-16,
+ 8.99972506457694e-17,
+ 2.957997870489627e-16,
+ -2.276401045745932e-16,
+ 1.8567102824518395e-16,
+ 5.293955920339376e-18,
+ -1.5575810934373509e-16,
+ -2.3508473008757047e-16,
+ -3.89602068512476e-17,
+ -8.809473523689745e-18,
+ -2.2830184906463564e-16,
+ 2.10103875588469e-17,
+ -7.444625512977249e-18,
+ 2.6163722775052265e-16,
+ -2.8587361969832636e-16,
+ -6.06116593848231e-17,
+ -8.54063982461001e-18,
+ -2.4732700315335524e-17,
+ -3.250819807333399e-17,
+ 1.3292792443727155e-16,
+ 3.5527407309152534e-16,
+ 2.1374347028370233e-16,
+ 9.942710962887391e-17,
+ 1.3069453678337837e-16,
+ 3.8629334606226387e-16,
+ -1.0296330674753811e-16,
+ 1.0836066024444661e-16,
+ -5.506954928071781e-17,
+ -1.1663246636997689e-17,
+ 3.091587539416941e-17,
+ -7.550091041077759e-17,
+ -1.6882756302207292e-16,
+ 1.193725021490588e-16,
+ 5.509022879603164e-17,
+ -3.1904356226170272e-16,
+ -8.536503921547244e-17,
+ -1.533592855673313e-16,
+ 1.9769616640017358e-17,
+ -2.746239633676052e-16,
+ 1.4072410171058383e-16,
+ 3.101927297073854e-17,
+ -1.7368724912082196e-16,
+ -5.5379742010425197e-17,
+ 3.4824303788482465e-17,
+ -4.839006583435211e-17,
+ -1.831377876192403e-16,
+ -1.9935052762527964e-17,
+ -1.55530634675283e-16,
+ 2.125854174261281e-16,
+ 5.704237504165679e-16
+ ],
+ [
+ -3.501329412159747,
+ -2.9562011473515786,
+ 1.519036899788132,
+ 0.036238368987048304,
+ -1.6522979925611048,
+ 2.6954300145005257,
+ -2.863392675679651,
+ 2.0293125196256163,
+ -0.5293767942416184,
+ -1.5420904630155239,
+ -2.9393585349190787,
+ -1.3367218854820189,
+ 2.738445015674477,
+ -2.833319121871027,
+ 1.8806236493120512,
+ -0.3323520008104531,
+ -1.1190351556230589,
+ -2.7069639911517003,
+ -1.334653837335707,
+ 2.7953136121943403,
+ -2.7758015118638504,
+ 1.7837491119442863,
+ -0.19397568867348763,
+ -1.4567885244721646,
+ 2.5631833497572627,
+ -1.888981347945032,
+ -3.311054159286637,
+ 1.2550644534799327,
+ 0.9931837553817743,
+ -0.068837257246403,
+ -1.6296371010945945,
+ 2.6513396658423285,
+ -1.8896033044338392,
+ -3.6160081343093986,
+ 1.1280077288238264,
+ 0.8719301937399736,
+ 0.13422776299778033,
+ -1.734563107059744,
+ 2.6969816107426947,
+ -2.8405450752367685,
+ 1.9585657721096799,
+ -0.5157000942357735,
+ -0.9872233013721615,
+ -0.84413566409057,
+ 1.8959751487219645,
+ 2.028679572708176,
+ 5.119543473759477,
+ 5.158940857415038,
+ -2.854381143041535,
+ 1.999206003274772,
+ -0.573114205856154,
+ -1.2013433968355784,
+ 2.4181566451278784,
+ -2.9281058921922614,
+ 1.642429315644293,
+ 3.37154008217996,
+ 0.32822635704071756,
+ -0.12910436593567817,
+ -1.3130566880670826,
+ 2.4859249535591252,
+ -0.6923660596003538,
+ -0.5635074476797011,
+ -0.45190884384677643,
+ 3.29841138396675,
+ 1.803728997324667,
+ -2.8557451395856606,
+ 1.9990857400152282,
+ -0.571573150041743,
+ -1.2039018343025194,
+ 2.420820441114828,
+ -2.9299659697608624,
+ 1.6264856694049052,
+ 3.1052590731804277,
+ 0.30713069994581804,
+ -0.1396869443784591,
+ -1.3156528271176255,
+ 2.5267976325680404,
+ -2.9215862580265077,
+ 1.6627455339671318,
+ 3.4476793508357884,
+ 0.6332174279318146,
+ 0.03657197376813722,
+ -1.495944495541182,
+ 2.584804861869088,
+ -2.9106525014709836,
+ 2.158518222468694,
+ -0.795984524669941,
+ -0.9009905818367177,
+ 2.1195571685703083,
+ 2.4500844512059476,
+ -0.5659549133366346,
+ -0.5995049815881708,
+ -0.24122613232479032,
+ 1.7482180585645157,
+ -2.76227181185647,
+ 2.7848379841460953,
+ -1.9513250680369345,
+ 0.40983423922496437,
+ 0.7124901602995461,
+ 0.8165176380655406,
+ -3.7994106857314094,
+ -1.954592171202451,
+ 2.7503572090988624,
+ -1.8537378676048473,
+ 0.2079319499872593,
+ 0.8360972377719667,
+ 0.9567471808550454,
+ -3.3321026597289225,
+ -1.87105167386916,
+ 2.6800855328950384,
+ -1.6917220269045903,
+ 0.08280379133436652,
+ 1.5598167141515094,
+ -2.676755167039919,
+ 2.8534355837368706,
+ -1.4570795390878002,
+ -2.8809893966614863,
+ -0.8163076386168939,
+ -0.15384496059228978,
+ 1.6638413098590352,
+ -2.7526320472864634,
+ 2.815408519373734,
+ -1.3858205937897359,
+ -2.9933985072479246,
+ -1.128100012568419,
+ -0.3000101200202735,
+ 1.825161178272439,
+ -2.7943470167578277,
+ 2.7836894748931313,
+ -1.8749033074105244,
+ 0.31256970426512515,
+ 1.2782850137522888,
+ -3.8254951404333246,
+ -3.691357303891933,
+ 0.27066443608827867,
+ 0.4540134118294851,
+ 4.463281482622171,
+ 4.57752299894857,
+ -1.9221572216212865,
+ 0.37312297498957175,
+ 1.2200580704106048,
+ -2.5426955625275953,
+ 2.8825751057994804,
+ -2.363955239457674,
+ 0.7562757219982366,
+ 1.9440536086585574,
+ 2.3935513492610268,
+ 1.0179479737103223,
+ -2.6014834140094005,
+ 2.8737164990449244,
+ -2.2367089112991936,
+ 0.6162637325447474,
+ 1.5903310207020307,
+ 2.3744334009986368,
+ 1.1111963552133284,
+ -2.68967078463048,
+ 2.845320823930775,
+ -2.1550044689807595,
+ 0.5998843771277043,
+ 1.008031212595767,
+ -2.366334175812386,
+ 1.8833333777415882,
+ 3.215863923596072,
+ -1.7167230575692978,
+ -1.2301426452393909,
+ 0.47880919849959713,
+ 1.1970792465074445,
+ -2.4801441250116665,
+ 1.9914915030733742,
+ 3.7284771097692926,
+ -1.7107351772416761,
+ -1.1512698168347095,
+ 0.27585515971251073,
+ 1.3101589513392637,
+ -2.5448225842301766,
+ 2.8751908561321833,
+ -2.30461094038883,
+ 0.9120027637374245,
+ -0.4544706643384057,
+ -0.7263552377918041,
+ 9.899697571034635e-16,
+ 1.396942618479553e-15,
+ 3.5320612156014277e-16,
+ 1.4008303673585524e-16,
+ -1.7900188455647516e-16,
+ -1.0844337830570192e-16,
+ -3.6147792768567304e-16,
+ -2.278055406971038e-16,
+ -3.934070993302199e-16,
+ 1.4467388913552454e-16,
+ 1.1266199942972237e-16,
+ 5.960663494057117e-16,
+ 2.328513424336773e-16,
+ 1.4370195191577473e-16,
+ -8.867376166568455e-17,
+ -3.6826080870860787e-16,
+ -1.7317026123797632e-16,
+ -2.0280400668268854e-16,
+ -1.6378176128549948e-17,
+ 2.1905810571935553e-16,
+ 6.997947982198614e-17,
+ -1.194448804526572e-16,
+ 9.727644003623604e-17,
+ 2.812414082680294e-17,
+ 2.6196809999554386e-16,
+ -2.9464173419138846e-16,
+ -9.446402595355575e-17,
+ -4.8472783895607416e-17,
+ 3.626359805432473e-16,
+ 4.155341807160134e-16,
+ 1.6560155863311612e-16,
+ 2.3161057151484775e-18,
+ 7.239484721064097e-16,
+ 2.3508473008757047e-16,
+ -5.997059441009451e-17,
+ -7.388377231323642e-16,
+ -2.69660879692287e-17,
+ 7.345363839470886e-17,
+ -3.1978802481300045e-16,
+ 4.66364429357397e-16,
+ -3.937379715752411e-17,
+ 4.377439801630622e-16,
+ 1.831377876192403e-16,
+ 1.2260884629567253e-16,
+ 1.1580528575742387e-18,
+ -2.506357256035674e-16,
+ 3.6313228891077915e-17,
+ -3.667718836060124e-16,
+ 4.524677950665061e-17,
+ 5.1450634100798315e-17,
+ 1.8247604312919788e-16,
+ 2.1883063105090345e-16,
+ -2.5311726744122644e-17,
+ -2.0026042629908798e-16,
+ -4.657854029286099e-16,
+ -7.014491594449675e-17,
+ -8.395883217413231e-18,
+ -4.566036981292712e-17,
+ 9.363684534100272e-17,
+ 6.344475298281722e-17,
+ 3.259091613458929e-17,
+ 3.263227516521694e-17,
+ 5.1450634100798315e-17,
+ 1.4062070413401469e-18,
+ -1.7304618414609336e-16,
+ -7.80031317637505e-17,
+ -2.2821913100338034e-16,
+ 5.606216601578145e-17,
+ -2.2941854289158223e-16,
+ -3.3873046084046483e-17,
+ -9.59529510561512e-18,
+ 1.0538281003925571e-16,
+ 1.0918784085699964e-17,
+ -9.967526381263982e-17,
+ -2.312486799968558e-16,
+ -2.6411876958818174e-16,
+ -1.3400325923359047e-17,
+ -2.51628342338631e-16,
+ -9.942710962887391e-17,
+ -1.3921449709267456e-16,
+ 4.1524466750161983e-17,
+ 1.3284520637601624e-16,
+ -2.493949546847378e-17,
+ 1.7337705639111458e-16,
+ -9.119666253397129e-17,
+ -6.123204484423787e-17,
+ -1.5476549260867145e-16,
+ -1.4277137372665258e-16,
+ -4.595815483344622e-16,
+ 2.0861495048587355e-16,
+ -3.2365509417668585e-16,
+ 6.96155203524628e-16,
+ 1.8098711802660243e-16,
+ 1.9438744394996147e-17,
+ -8.234582997965389e-17,
+ -5.879186203720644e-17,
+ -2.2871543937091215e-16,
+ -2.537790119312689e-16,
+ 2.544407564213113e-16,
+ -1.2407709188295413e-18,
+ 1.1208297300093523e-17,
+ 4.265770418935963e-16,
+ 2.1812752753023337e-16,
+ -1.6618058506190324e-16,
+ -2.952311003778325e-16,
+ -2.2929446579969927e-16,
+ -2.0514079191315083e-17,
+ 8.41242682966429e-17,
+ 2.456726419282492e-17,
+ 9.984069993515043e-17,
+ 4.65289094561078e-17,
+ 1.2784076367007043e-16,
+ 6.586425627453483e-17,
+ 1.2012730445801344e-16,
+ -1.0174321534402239e-16,
+ -4.384057246531046e-17,
+ -1.9744801221640768e-16,
+ -4.566036981292712e-17,
+ 8.900463391070577e-17,
+ 1.9662083160385465e-16,
+ 5.368402175469149e-17,
+ 2.283018490646356e-17,
+ -4.622285262946319e-16,
+ -5.4097612060968004e-17,
+ -2.1221318615047923e-16,
+ -1.3863547066388744e-16,
+ -1.464109684218859e-17,
+ 3.135014521575975e-17,
+ -1.8899009045305297e-16,
+ -4.6322114302969544e-17,
+ -2.6436692377194764e-16,
+ -7.907846656006943e-17,
+ -4.635520152747167e-16,
+ 2.3086610896355e-16,
+ -3.1755463715910728e-16,
+ -1.5538587806808622e-16,
+ 1.258968892305708e-16,
+ -1.5766062475260705e-16,
+ 5.128519797828771e-18,
+ 4.197941608706615e-17,
+ 8.486873084794063e-17,
+ 1.2126467780027386e-16,
+ 4.6983858793011966e-17,
+ -3.510554519675049e-16,
+ 2.2896359355467806e-16,
+ -5.39321759384574e-17,
+ 1.1770780116629584e-16,
+ 2.360773468226341e-16,
+ -7.378451063973007e-17,
+ -8.08982639076861e-17,
+ -2.190374262040417e-16,
+ 1.373946997450579e-16,
+ -3.8877488789992295e-17,
+ -9.181704799338606e-17,
+ -5.495787989802316e-16,
+ 7.711391260525599e-17,
+ -1.0372844881414966e-16,
+ 1.646089418980525e-17,
+ -3.109216826221977e-16,
+ -7.932662074383534e-17,
+ 4.6260075757028067e-17,
+ 1.7470054537119942e-16,
+ -7.750682339621868e-17,
+ -7.708289333228525e-17,
+ 4.0035541647566535e-16,
+ 5.517294685728694e-17,
+ 1.2821299494571927e-17,
+ 6.121136532892404e-18,
+ -2.522900868286734e-17,
+ 7.32468432415706e-17,
+ -4.921724644690514e-17,
+ 3.4634052247595264e-16,
+ 3.7553999809907456e-17,
+ 1.0025429024142694e-16,
+ -1.2407709188295414e-17,
+ 8.892191584945046e-17,
+ -4.1855338995183194e-17,
+ 1.81333499908109e-16,
+ -8.763564999693051e-16,
+ -4.681842267050137e-16
+ ],
+ [
+ 3.440233428236855,
+ 2.8340640913955095,
+ -1.7989759834267587,
+ 0.9504067952013542,
+ 0.15238474768152216,
+ -1.3104827225505649,
+ 1.9260863221770805,
+ -1.970669737004988,
+ 0.9828714605014547,
+ 2.133127918743732,
+ 0.9604574375673737,
+ 0.30530757441989337,
+ -1.3757030085049082,
+ 1.9513590207087839,
+ -1.9266351058433628,
+ 0.8424976971283237,
+ 1.7591264071933455,
+ 0.9813081416291299,
+ 0.3515207251927625,
+ -1.478716137298093,
+ 1.9823138403327778,
+ -1.8960034016399154,
+ 1.0889830410015917,
+ -0.008483751941209667,
+ -1.1283597104339533,
+ 1.188167764077229,
+ 1.8930654864467253,
+ -1.824116445599254,
+ -1.1581303031735017,
+ 1.0156855650641343,
+ 0.13461649785867036,
+ -1.244222102817351,
+ 1.2301615320566095,
+ 2.1561213151951746,
+ -1.8681605323193788,
+ -1.1123837863432904,
+ 0.8896106445181581,
+ 0.22229024029717748,
+ -1.3128069296225255,
+ 1.9458203395992564,
+ -1.9509604882915346,
+ 1.2720670186009457,
+ -1.156010470102264,
+ -1.2322487671265367,
+ -1.8879198956003662,
+ -1.9255225977420516,
+ -2.9221448381985047,
+ -2.8975932412458216,
+ 1.9347505583199798,
+ -1.9624805873710152,
+ 1.303328842192265,
+ -0.20822171041155618,
+ -0.9543733779806898,
+ 1.7573367200452155,
+ -1.3307035932885598,
+ -2.503890569904681,
+ 1.0384951579096027,
+ 0.731322944922438,
+ -0.12092034440384146,
+ -1.0315160287543221,
+ 1.8235382945175296,
+ -0.27763490422861037,
+ -0.8582378737067552,
+ -1.843287682505666,
+ -0.8994224313982228,
+ 1.9346770541024128,
+ -1.9614135911147201,
+ 1.3015989317751357,
+ -0.2063669427223766,
+ -0.9557127732907312,
+ 1.7576860394888711,
+ -1.3220699813524628,
+ -2.303886676311205,
+ 0.9519789083969485,
+ 0.7330351945575819,
+ -0.11908830954964401,
+ -1.079049749973373,
+ 1.823762798351089,
+ -1.389909576344054,
+ -2.649556828882181,
+ 0.9023792090213438,
+ 0.662367290227718,
+ 0.022823580089247154,
+ -1.1540895784695124,
+ 1.8584543855025009,
+ -2.001226589383405,
+ 1.4200355202250028,
+ -0.43017801537846956,
+ -0.036254470965902105,
+ 0.07466042629379441,
+ 2.1102417962163686,
+ 1.79889828944721,
+ -0.8754642489662287,
+ -0.29710411258227104,
+ 1.3199222980992562,
+ -1.9855761733858273,
+ 1.9074629534760184,
+ -1.2634244581226919,
+ 0.20617460612434393,
+ 0.778662239954321,
+ 2.2416890500112006,
+ 1.0515144115206034,
+ -2.0043740723155574,
+ 1.87748388692421,
+ -1.1473826045441624,
+ 0.07445552611295234,
+ 0.5135339163977926,
+ 2.0408521694472275,
+ 1.038499050534831,
+ -2.0286750015019517,
+ 1.819939297426802,
+ -1.0747895423957556,
+ -0.13692637577818034,
+ 1.1944200911490503,
+ -1.9185893818600004,
+ 1.301374024236551,
+ 2.327343416695913,
+ -0.61229186491405,
+ -0.5541244540731249,
+ -0.22292768594650778,
+ 1.306643524591526,
+ -1.9630595831804925,
+ 1.2916613482608794,
+ 2.520087742405564,
+ -0.4945302513291888,
+ -0.4631480990267258,
+ -0.3647504480621082,
+ 1.372120290260087,
+ -1.9863172121281543,
+ 1.883440756429392,
+ -1.208689254023564,
+ 0.08935221881972512,
+ 1.11384420583274,
+ 1.0119251918340126,
+ -1.1315431668239089,
+ -1.2328429672225107,
+ -3.5994181479273917,
+ -3.639338017725083,
+ 1.8996776894965617,
+ -1.2437730872129726,
+ 0.1345533007262484,
+ 1.0243664049807462,
+ -1.8372010831279766,
+ 2.003964232222608,
+ -1.060797985286719,
+ -2.232191150005258,
+ -0.5244925127136107,
+ -0.06676905645485383,
+ 1.0988173222832414,
+ -1.8741198646599617,
+ 1.982697318832436,
+ -0.9900044646573679,
+ -1.973676700600112,
+ -0.6429798973748508,
+ -0.15007652817178394,
+ 1.2146993237476613,
+ -1.9274638149398282,
+ 1.9637226144930606,
+ -1.3679348943230025,
+ 0.29450674816219413,
+ 0.8236614245700454,
+ -1.0838741742546978,
+ -1.6606039541973214,
+ 2.0257416196675813,
+ 1.2429645545211092,
+ -1.3013551234581673,
+ 0.1535591409136681,
+ 0.9520802595916298,
+ -1.1792526638352587,
+ -2.0137716144052376,
+ 2.208361678738402,
+ 1.2602714457746726,
+ -1.1885318633972297,
+ 0.06442464849954635,
+ 1.0269671528632842,
+ -1.8671117173978569,
+ 1.9945619768674836,
+ -1.5282088303465111,
+ 1.718129953894873,
+ 2.2024073652599045,
+ -4.999479622270499e-16,
+ -6.495022169766372e-16,
+ -2.0050858048285388e-16,
+ -2.5435803836005598e-17,
+ 2.9052780311364426e-17,
+ 3.4751925484884075e-17,
+ 3.0353392577633346e-16,
+ 1.530284133223101e-16,
+ 1.467418406669071e-16,
+ -9.719372197498074e-17,
+ -2.5849394142282112e-17,
+ -4.412181387357849e-16,
+ -1.4095157637903592e-16,
+ -1.7503141761622063e-16,
+ -2.8289576949313546e-17,
+ 2.0795320599583113e-16,
+ 8.184952161212208e-17,
+ 1.5997673046775553e-16,
+ 1.4289545081853553e-16,
+ -1.0241529959172173e-16,
+ 1.5302841332231012e-17,
+ 1.3929721515392986e-16,
+ 2.9571706898770736e-18,
+ 1.1425432210888693e-17,
+ -1.9575229196067397e-16,
+ 1.3590577464246245e-16,
+ 2.7379678275505213e-17,
+ 1.708127964922002e-17,
+ -1.4330904112481204e-16,
+ -2.0206988388904772e-16,
+ 2.2995621028974166e-17,
+ -2.613890735667567e-17,
+ -5.302227726464907e-16,
+ -3.052296460320672e-17,
+ 6.048758229294015e-17,
+ 3.4443800706708067e-16,
+ 7.146840492458159e-17,
+ 6.1624955635200554e-18,
+ 1.4690727678941772e-16,
+ -3.4701260672365197e-16,
+ 6.137680145143465e-17,
+ -2.0588525446444856e-16,
+ -2.008394527278751e-16,
+ 8.644037401179139e-18,
+ 4.19380570564385e-17,
+ 1.3011551035459125e-16,
+ 3.056432363383437e-17,
+ 5.013541692683901e-16,
+ -1.4438437592113098e-16,
+ 2.3161057151484775e-18,
+ -2.1511865805207173e-17,
+ -9.897216029196975e-17,
+ 4.549493369041652e-18,
+ 1.478585344938537e-16,
+ 6.145951951268996e-17,
+ 2.8206858888058244e-17,
+ 3.7471281748652154e-17,
+ 1.2631047953684733e-16,
+ -3.6561383074843823e-17,
+ 6.780813071403444e-17,
+ -8.180816258149442e-17,
+ 4.549493369041652e-18,
+ -7.560430798734672e-17,
+ 3.106063200136619e-17,
+ 9.784512670736625e-17,
+ 5.0871607672011196e-17,
+ 1.770993691476032e-16,
+ -2.7338319244877562e-17,
+ 1.373119816838026e-16,
+ 7.957477492760125e-17,
+ 9.649029533688389e-17,
+ 3.184645358329156e-18,
+ -2.0059129854410918e-17,
+ 2.6304343479186277e-17,
+ 2.806623818392423e-16,
+ 1.1795595535006175e-16,
+ -4.9268945235189705e-17,
+ 6.832511859688009e-17,
+ 7.957477492760125e-17,
+ 8.94389037322961e-17,
+ 4.79764755280756e-18,
+ 1.8135934930225132e-17,
+ 1.1456451483859432e-17,
+ -4.917588741627749e-17,
+ 2.8206858888058244e-17,
+ 5.575197328607407e-17,
+ 1.5170492434222525e-16,
+ 1.0128826600711823e-16,
+ 2.9513804255892027e-16,
+ -8.073282778517549e-17,
+ 2.1423977865123414e-17,
+ -4.865476363036909e-16,
+ -2.1663860242763792e-16,
+ -1.7701665108634792e-17,
+ 3.4534790574088905e-17,
+ 2.92201551384357e-17,
+ 9.399356698016621e-17,
+ 1.593977040389684e-16,
+ -8.172544452023912e-17,
+ 1.8776999904953728e-17,
+ -4.822462971184151e-17,
+ -1.2444932315860301e-16,
+ -1.0472106554921329e-16,
+ 1.6733863791947747e-16,
+ 2.575840427490128e-16,
+ 7.643148859989974e-17,
+ -2.92563442902349e-17,
+ -1.1580528575742386e-17,
+ 1.4525291556431166e-16,
+ -7.229558553713462e-17,
+ 5.500751073477633e-18,
+ -5.906069573628618e-17,
+ -9.637688112008462e-17,
+ -4.3385623128406295e-17,
+ -2.895132143935597e-17,
+ -7.113753267956038e-18,
+ 1.4070342219527e-16,
+ 6.894550405629486e-17,
+ 3.924972006564116e-17,
+ -1.2597960729182611e-16,
+ -4.5743087874182424e-17,
+ 3.383168705341883e-17,
+ 2.0861495048587355e-16,
+ 6.741521992307176e-17,
+ 4.350970022028925e-17,
+ 1.1233112718470116e-16,
+ -2.870316725559006e-17,
+ -6.518183226917858e-17,
+ 7.584212241345571e-17,
+ 3.004733575098873e-17,
+ 1.0670629901934056e-16,
+ 5.583469134732937e-17,
+ 3.755399980990745e-16,
+ -1.2358078351542233e-16,
+ 1.7809198588266683e-16,
+ -2.4236391947803708e-17,
+ -3.8587975575598735e-17,
+ 1.133237439197648e-16,
+ 9.822769774067202e-17,
+ -5.244325083586195e-17,
+ -3.94461754611225e-17,
+ -9.409179467790689e-17,
+ -3.3666250930908226e-17,
+ 2.4706850921193245e-16,
+ 9.622178475523093e-17,
+ -1.6005944852901086e-17,
+ -8.156000839772852e-17,
+ -5.641371777611649e-17,
+ 6.846987520407687e-17,
+ 7.651420666115505e-17,
+ 7.350533718299342e-17,
+ -1.162188760637004e-16,
+ 1.155984906042856e-17,
+ 3.2425480012078685e-17,
+ 1.288747394357617e-16,
+ -6.694993082851068e-17,
+ 1.108422020821057e-17,
+ -1.051346558554898e-16,
+ 1.3896634290890865e-16,
+ 1.8983795058091982e-17,
+ 7.157697237997918e-18,
+ 7.444625512977248e-19,
+ 4.655475885025008e-17,
+ 7.65555656917827e-17,
+ -2.225115847767644e-17,
+ -2.4484546131569616e-17,
+ 2.0348643068804478e-17,
+ -1.1249656330721176e-16,
+ 3.1267427154504446e-17,
+ -3.553774706680945e-17,
+ 9.876536513883149e-17,
+ -1.3036366453835716e-16,
+ 7.692779696743156e-17,
+ 2.212708138579349e-18,
+ -2.5652938746800768e-17,
+ -6.112864726766875e-17,
+ -1.5178764240348058e-17,
+ -1.0331485850787314e-16,
+ 4.046567556609411e-16,
+ 5.876291071576709e-16
+ ],
+ [
+ -7.810061641409982,
+ -6.301911967441107,
+ 4.561596859288926,
+ -4.098683528376889,
+ 2.3106692823232824,
+ 0.375729046787846,
+ -2.808281773462441,
+ 4.3344753620807195,
+ -3.0971890023074917,
+ -5.999007140522637,
+ 1.4262925913345883,
+ 1.1931126854077545,
+ 0.570977866461221,
+ -2.964044484150722,
+ 4.429719652507119,
+ -2.878059168600096,
+ -5.227873761383051,
+ 0.9126878119386861,
+ 0.9979185544405043,
+ 0.8888378622657721,
+ -3.202252247561339,
+ 4.4767106083832875,
+ -4.249148568896101,
+ 2.6172992378157756,
+ -0.13533017458187288,
+ -1.4477936845737067,
+ -1.7525720533300018,
+ 5.246858245693162,
+ 2.9702763642170025,
+ -4.171436905398335,
+ 2.34667262956187,
+ 0.18664236452809121,
+ -1.6205418038361956,
+ -2.28126462306303,
+ 5.662846372756883,
+ 3.0037366431565635,
+ -4.026857277867015,
+ 2.1722655582568855,
+ 0.38253273500577206,
+ -2.931936711321387,
+ 4.382769767499824,
+ -4.415869506253179,
+ 6.602344237419636,
+ 6.654987139953271,
+ 4.332767323714498,
+ 4.244517827588679,
+ 2.6892125221645955,
+ 2.515170831546976,
+ -2.860639945642693,
+ 4.355753935898564,
+ -4.439790446626977,
+ 2.974989270570029,
+ -0.5893731117927203,
+ -1.9903807551647366,
+ 2.4913377208912353,
+ 4.170897156911055,
+ -4.9041954221605435,
+ -2.791301306717909,
+ 2.82304871531462,
+ -0.3902620603693972,
+ -2.2754775524356994,
+ 2.5971341111040216,
+ 4.385030726238427,
+ 1.5695139578942896,
+ 0.40864777029987664,
+ -2.85776580965164,
+ 4.351471981793165,
+ -4.435438124527827,
+ 2.9720725705982454,
+ -0.5888246394271757,
+ -1.9883357490739504,
+ 2.4848399947673045,
+ 3.8320877556599027,
+ -4.507142272410112,
+ -2.7789446567788083,
+ 2.820301614171726,
+ -0.2686675260889041,
+ -2.2731559918680007,
+ 2.699132724515007,
+ 4.63406010639129,
+ -4.901279739201286,
+ -2.810354524004608,
+ 2.5598500316711674,
+ -0.06877829957510466,
+ -2.4411407223692487,
+ 4.223415927710342,
+ -4.513504293660772,
+ 3.342069431084773,
+ -3.7467380194812505,
+ -4.8137643197792555,
+ -7.69879150368595,
+ -6.34771491399837,
+ 3.973198311463904,
+ -2.07975416780566,
+ -0.48377845836381883,
+ 3.007095512347208,
+ -4.407959091786738,
+ 4.382899979949012,
+ -2.1637776492731526,
+ -4.725949110383485,
+ -2.2983961493227447,
+ -0.7611966323086871,
+ 3.1525637765210694,
+ -4.459018494507488,
+ 4.27775555178412,
+ -1.8455196982665927,
+ -3.8857451152065408,
+ -2.325817163635957,
+ -0.8608887896397663,
+ 3.3781905830505785,
+ -4.522829894357162,
+ 4.2029214333270835,
+ -2.3965895080534816,
+ -0.12138943970132367,
+ 2.603589580782372,
+ -2.7106213192406234,
+ -4.341625671124572,
+ 4.036468324983605,
+ 2.5776612283994385,
+ -2.227450903385909,
+ -0.44242904853755693,
+ 2.861894942410862,
+ -2.8013897089772506,
+ -4.933108647782288,
+ 4.121998216005036,
+ 2.4696104952094533,
+ -1.940911542147282,
+ -0.6411047972790472,
+ 3.012269955152218,
+ -4.4488537024664385,
+ 4.334902091074806,
+ -2.8166042797961883,
+ 2.4227401744245682,
+ 2.5983459313788195,
+ 4.222889628640195,
+ 4.314180031200441,
+ 6.700492076578005,
+ 6.6503953571707655,
+ -4.428265178604746,
+ 4.36884022026878,
+ -2.896236331411387,
+ 0.3364952333421694,
+ 2.2128378165117595,
+ -4.048837446179477,
+ 3.00272207335591,
+ 5.670043758084549,
+ -2.228441605879427,
+ -1.5949825492036214,
+ 0.1404876926673329,
+ 2.3862445426391146,
+ -4.190510040118673,
+ 2.966964117073127,
+ 5.249816078867547,
+ -1.7026067849573159,
+ -1.4214227602697416,
+ -0.18148979965444634,
+ 2.6551112492064024,
+ -4.266396291653411,
+ 4.466304766624469,
+ -3.168988277222302,
+ 0.8434780531483387,
+ 1.02619991575834,
+ 0.9647373721257063,
+ -5.233138694189068,
+ -2.885953482129478,
+ 4.417403329135289,
+ -2.9286046532883785,
+ 0.5251119753522641,
+ 1.2223612829504937,
+ 1.4848846888712424,
+ -6.0004969466160265,
+ -3.1026569146532523,
+ 4.319063371751818,
+ -2.7715776404411,
+ 0.3296697054231498,
+ 2.3504486701285083,
+ -4.11926503701825,
+ 4.556264032832217,
+ -6.279904162230991,
+ -7.7856463703355745,
+ 9.07582568093182e-16,
+ 1.8735640874326077e-15,
+ 2.719769854074355e-16,
+ -1.3301064249852685e-16,
+ -4.5164061445395305e-17,
+ -9.496033432108756e-17,
+ -8.724687510903058e-16,
+ -3.0738031562470503e-16,
+ -1.3896634290890865e-17,
+ 1.3267977025350564e-16,
+ 1.0356301269163905e-16,
+ 9.13869140748585e-16,
+ 1.287093033132511e-16,
+ 4.1888426219685317e-16,
+ 2.067951531382569e-17,
+ -2.7296960214249913e-16,
+ -6.675347543302933e-17,
+ -4.192978525031297e-16,
+ -2.714186384939622e-16,
+ 1.6642873924566914e-16,
+ -1.464109684218859e-17,
+ -1.7916732067898577e-16,
+ -1.3040502356898481e-16,
+ -1.4918202347393854e-16,
+ 3.54364174417717e-16,
+ 6.5843576759221e-17,
+ -7.361907451721946e-17,
+ -3.532061215601428e-17,
+ -7.4859845436049e-17,
+ -7.279189390466644e-18,
+ -2.6242304933244803e-16,
+ 2.785944303078597e-16,
+ 8.384302688837488e-16,
+ -1.976961664001736e-16,
+ -5.466009487750407e-16,
+ -2.0996945873892914e-16,
+ -3.326093243075724e-16,
+ -9.975798187389513e-17,
+ -1.2606232535308142e-16,
+ 5.767103230719709e-16,
+ 1.290401755582723e-17,
+ 8.222175288777094e-17,
+ 6.263411598251525e-16,
+ -1.435158362779503e-16,
+ -1.887626157846009e-16,
+ 4.109433283163441e-16,
+ -1.7205356741102973e-16,
+ -6.792807190285462e-16,
+ 6.473515473839994e-16,
+ 8.478601278668532e-17,
+ -1.2457340025048597e-16,
+ 8.321436962283457e-17,
+ -3.565148440103549e-17,
+ -4.9051810324394535e-17,
+ -2.2195323786329113e-16,
+ -8.354524186785578e-17,
+ 6.5843576759221e-17,
+ -5.014368873296454e-16,
+ 2.32768624372422e-16,
+ 2.776018135727961e-16,
+ 4.3866421859452744e-16,
+ 1.4268865566539727e-16,
+ 3.8674829539916804e-16,
+ -1.679176643482646e-16,
+ -3.987010552505593e-16,
+ -2.3239639309677313e-16,
+ -8.213903482651564e-17,
+ 1.4144788474656773e-16,
+ -6.551270451419979e-17,
+ -2.1949237554094587e-16,
+ 1.0761619769314889e-16,
+ 3.8530072932720024e-16,
+ 3.7951046503932905e-16,
+ -3.0605682664462024e-17,
+ -6.850709833164174e-16,
+ -5.151680854980256e-16,
+ 3.189608442004474e-16,
+ 1.7987042419965584e-16,
+ -8.069146875454784e-17,
+ -6.452008777913616e-17,
+ 3.534129167132811e-17,
+ 4.48331892003741e-16,
+ -2.223875076848815e-16,
+ -2.0851155290930443e-16,
+ -7.229558553713462e-17,
+ -1.4434301689050333e-16,
+ -1.3929721515392986e-16,
+ -1.3110812708965487e-17,
+ 4.2603937449543685e-16,
+ -3.0010112623423844e-16,
+ -7.699397141643581e-16,
+ 9.85999290163209e-16,
+ 3.682194496779802e-16,
+ -1.493061005658215e-16,
+ -5.9557004103817985e-18,
+ -3.924144825951563e-16,
+ -2.511320339710992e-16,
+ -4.2748694056740465e-16,
+ 2.772709413277749e-16,
+ -5.1781506345819526e-17,
+ 2.3409211335250683e-16,
+ -7.841672207002701e-17,
+ -3.3612484191092275e-16,
+ -4.253362709747668e-16,
+ -7.125333796531779e-16,
+ -3.302105005311686e-16,
+ 1.9219541532669596e-16,
+ -6.435465165662555e-17,
+ -3.7653261483413815e-16,
+ 1.713918229209873e-16,
+ -1.5325588799076218e-16,
+ 4.063731554319886e-16,
+ 4.223584207695759e-16,
+ -7.130296880207099e-17,
+ 1.976961664001736e-16,
+ 6.435465165662555e-17,
+ -2.4087499437544166e-16,
+ -1.8669466425321832e-16,
+ -1.8561932945689939e-16,
+ 2.127508535486387e-16,
+ 2.0952484915968189e-16,
+ 1.3408597729484579e-16,
+ -4.3311176873276524e-16,
+ -1.8247604312919788e-16,
+ 1.7064736036968958e-16,
+ 2.336785230462303e-16,
+ 1.346650037236329e-16,
+ 4.1782960691584805e-16,
+ 1.6440214674491423e-18,
+ 4.503998435351235e-17,
+ -4.2765237668991525e-17,
+ -1.0910512279574434e-16,
+ -4.412181387357849e-16,
+ -1.0927055891825494e-16,
+ -2.810759721455188e-16,
+ 3.517171964575473e-16,
+ -1.5513772388432032e-16,
+ 1.2904017555827232e-16,
+ -3.808339540194139e-16,
+ 2.305352367185288e-16,
+ -1.1514354126738145e-16,
+ 4.976318565119014e-16,
+ 3.6892255319865034e-17,
+ -2.957997870489627e-16,
+ -7.441316790527036e-16,
+ -1.183281866257106e-16,
+ 2.249931266144235e-17,
+ -1.588186776101813e-16,
+ -2.1374347028370233e-16,
+ -7.345363839470886e-17,
+ 2.607273290767143e-16,
+ 9.472872374957273e-16,
+ 9.694556779121483e-17,
+ 8.875647972693986e-17,
+ 4.198768789319168e-16,
+ 4.6983858793011966e-17,
+ 2.80579663777987e-16,
+ 2.93152809088793e-16,
+ -3.692534254436715e-16,
+ 4.0035541647566533e-17,
+ -2.57087734381481e-16,
+ -4.3046479077259555e-16,
+ -8.246990707153685e-17,
+ -1.8189701670041076e-16,
+ -1.654361225106055e-16,
+ 5.211237859084074e-17,
+ -2.8595633775958167e-16,
+ 3.6528295850341697e-16,
+ -2.6999175193730823e-16,
+ 2.0464448354561902e-16,
+ -1.3731198168380258e-17,
+ -1.492233825045662e-16,
+ -2.871971086784112e-16,
+ 5.773720675620133e-17,
+ -3.970466940254532e-17,
+ -1.5137405209720404e-16,
+ 1.5716431638507526e-17,
+ 8.437242248040881e-17,
+ -7.715940753894641e-16,
+ -1.4902485915755345e-15
+ ],
+ [
+ -5.654387315069723,
+ -4.580979855380039,
+ 3.231225854720289,
+ -2.7003053394818006,
+ 1.2966832743310255,
+ 0.6312285733188241,
+ -2.2565495694591657,
+ 3.1531106169959586,
+ -2.121176254913539,
+ -4.181410294233795,
+ 0.5279598009287017,
+ 0.5998759443426581,
+ 0.7661825958293649,
+ -2.355355511522033,
+ 3.194949305911479,
+ -1.9485995531624407,
+ -3.612215319118348,
+ 0.22135618778796443,
+ 0.4711895120446838,
+ 0.9843591802817614,
+ -2.5045155051639876,
+ 3.212466587336673,
+ -2.8321994718796035,
+ 1.5268695604492033,
+ 0.27488547099071325,
+ -1.223031513190345,
+ -1.6249546470532785,
+ 3.6439442327462275,
+ 2.1027198005262253,
+ -2.7633300321225005,
+ 1.3235472522236535,
+ 0.499940327217113,
+ -1.3372667600246924,
+ -2.0173052485802327,
+ 3.9008989080197622,
+ 2.107730982064899,
+ -2.639036067199145,
+ 1.1936345292460118,
+ 0.6359413590703028,
+ -2.33503417991003,
+ 3.1750498879169906,
+ -2.9877323014375343,
+ 4.22341325405779,
+ 4.278378797634184,
+ 3.130320638803979,
+ 3.0907215986170775,
+ 2.498896726078994,
+ 2.3894462988260186,
+ -2.2898755852842494,
+ 3.162929797216823,
+ -3.0116338254028965,
+ 1.7992369926677363,
+ -0.04557943650581765,
+ -1.725230800668795,
+ 1.8778054395284616,
+ 3.231441558515147,
+ -3.194257896699221,
+ -1.8626123201913867,
+ 1.6829601368879128,
+ 0.0954172164356447,
+ -1.9125777924422038,
+ 1.9352817197132766,
+ 3.1197055154933397,
+ 1.5022145291740965,
+ 0.5243754910423666,
+ -2.288169216703526,
+ 3.1600875237712023,
+ -3.008541933992611,
+ 1.7969469714631814,
+ -0.04483848185453084,
+ -1.7241423994848097,
+ 1.8712654653611525,
+ 2.970018919134061,
+ -2.93487093907904,
+ -1.8559393981320869,
+ 1.68077684189642,
+ 0.1815302524529387,
+ -1.9112884157307846,
+ 2.0179763137364706,
+ 3.5482260636595497,
+ -3.149319374344326,
+ -1.8518379911378577,
+ 1.4833805530110291,
+ 0.3219172791575902,
+ -2.0206207379106518,
+ 3.0979469101816974,
+ -3.0917648078868063,
+ 2.084143598684416,
+ -2.176837730532423,
+ -2.835285696994675,
+ -5.1669270488954195,
+ -4.278911931986827,
+ 2.594209135766878,
+ -1.124846321093878,
+ -0.7063267988381802,
+ 2.3825647052779737,
+ -3.1849515068352847,
+ 2.95673732212063,
+ -1.3292850372478882,
+ -3.007616215630766,
+ -2.0544886137901734,
+ -0.7786025157879407,
+ 2.4736973474206985,
+ -3.205052711838605,
+ 2.8586625791838163,
+ -1.101560053968638,
+ -2.432662553603538,
+ -2.006709617989957,
+ -0.8326956053381686,
+ 2.613000353676551,
+ -3.2242413923221602,
+ 2.7916973273701147,
+ -1.3607736676907205,
+ -0.4548079085000391,
+ 2.1256126205893797,
+ -1.9965663146361061,
+ -3.275080960119936,
+ 2.5520618612176413,
+ 1.6815443741882716,
+ -1.2344691041102362,
+ -0.6777666691337196,
+ 2.290803611753292,
+ -2.0464954803538804,
+ -3.6817705560909793,
+ 2.564609675486378,
+ 1.5895365169043925,
+ -1.022258680194603,
+ -0.8148030603544564,
+ 2.3858220588952674,
+ -3.201198623386531,
+ 2.911309489325185,
+ -1.6779911871328763,
+ 1.0613494860308696,
+ 1.196296385356966,
+ 2.827496189223492,
+ 2.9134088980760615,
+ 5.056892818731734,
+ 5.040055524278389,
+ -3.194287635515183,
+ 2.9422757116249594,
+ -1.738835573697719,
+ -0.13334946811904203,
+ 1.8715278799206307,
+ -3.0058465660621816,
+ 2.0907520552001007,
+ 4.020735377203722,
+ -1.1349591852114542,
+ -0.9103694172175895,
+ -0.27128214616287016,
+ 1.984734153022082,
+ -3.081639850732414,
+ 2.047380052311681,
+ 3.693178889193149,
+ -0.7901990168033179,
+ -0.7825366938798324,
+ -0.49634578750076447,
+ 2.1585170589388114,
+ -3.120133422191116,
+ 3.038647966267254,
+ -1.948956526262718,
+ 0.2265175384188072,
+ 0.9436601837988104,
+ 1.090957475955966,
+ -3.699979956699136,
+ -2.0804183224273616,
+ 2.9891352833662537,
+ -1.7635872475828756,
+ -2.4317256995067538e-05,
+ 1.0885289866532686,
+ 1.5069423587391988,
+ -4.206177952102885,
+ -2.2124857924622874,
+ 2.8956629888861545,
+ -1.6437576940017107,
+ -0.13816170779399756,
+ 1.9614096065746949,
+ -3.044001535663014,
+ 3.142101769394464,
+ -4.213650357814949,
+ -5.246932582162288,
+ 7.098864016930083e-16,
+ 1.3766766934720038e-15,
+ 2.1374347028370233e-16,
+ -7.576974410985732e-17,
+ -4.9382682569415746e-17,
+ -6.964860757696493e-17,
+ -6.430295286834098e-16,
+ -2.2267702089927505e-16,
+ -6.154223757394526e-17,
+ 1.0472106554921329e-16,
+ 8.842560748191865e-17,
+ 6.422230275861706e-16,
+ 1.2076836943274204e-16,
+ 3.090346768498111e-16,
+ 6.782881022934826e-18,
+ -1.8363409598677212e-16,
+ -5.0871607672011196e-17,
+ -3.1602435302588417e-16,
+ -1.879948887785751e-16,
+ 1.1282743555223297e-16,
+ -7.444625512977249e-18,
+ -1.2490427249550718e-16,
+ -7.47771273747937e-17,
+ -9.643181108263697e-17,
+ 2.694954435697764e-16,
+ 4.301339185275743e-17,
+ -6.160427611988674e-17,
+ -3.474158572722716e-17,
+ -3.788487205492866e-17,
+ 1.4558378780933287e-17,
+ -1.5021599923962983e-16,
+ 1.9935052762527964e-16,
+ 6.005331247134981e-16,
+ -1.0703717126436177e-16,
+ -3.843081125921366e-16,
+ -2.0852189266696134e-16,
+ -2.266474878395296e-16,
+ -6.121136532892405e-17,
+ -1.285438671907405e-16,
+ 4.162372842366835e-16,
+ 1.8115255414911306e-17,
+ 9.115530350334364e-17,
+ 4.516406144539531e-16,
+ -8.544775727672775e-17,
+ -1.165497483087216e-16,
+ 2.957997870489627e-16,
+ -1.0989094437766971e-16,
+ -5.161607022330893e-16,
+ 4.482491739424857e-16,
+ 6.501639614666798e-17,
+ -5.161607022330892e-17,
+ 7.783769564123989e-17,
+ -3.9208361035013506e-17,
+ -5.13575762818861e-17,
+ -2.3161057151484775e-16,
+ -6.104592920641344e-17,
+ 5.360130369343619e-17,
+ -3.6834352676986317e-16,
+ 1.810207222389874e-16,
+ 2.337612411074856e-16,
+ 3.007835502395947e-16,
+ 9.777274840376786e-17,
+ 2.6684846560960673e-16,
+ -1.1363393664947218e-16,
+ -2.7950432898166805e-16,
+ -1.5325588799076218e-16,
+ -7.883031237630353e-17,
+ 1.134891800422754e-16,
+ -7.312276614968765e-17,
+ -1.56006263527501e-16,
+ 8.792929911438683e-17,
+ 2.899268046998362e-16,
+ 2.74293091122584e-16,
+ -2.2664748783952955e-17,
+ -4.894427684476265e-16,
+ -3.9820474688302747e-16,
+ 2.2284245702178566e-16,
+ 9.74832351893743e-17,
+ -5.976379925695625e-17,
+ -5.889525961377557e-17,
+ 3.7553999809907456e-17,
+ 3.8480442095966843e-16,
+ -1.770166510863479e-16,
+ -1.2955716344111796e-16,
+ -5.67445900211377e-17,
+ -1.0161913825213944e-16,
+ -9.198248411589667e-17,
+ -9.802090258753376e-18,
+ 2.434806133049837e-16,
+ -2.247449724306576e-16,
+ -6.399069218710221e-16,
+ 6.954934590345856e-16,
+ 2.4569332144356305e-16,
+ -1.1787323728880644e-16,
+ -1.3234889800848441e-17,
+ -2.932355271500483e-16,
+ -1.828069153742191e-16,
+ -3.349667890533485e-16,
+ 2.4319110009059014e-16,
+ -3.441071348220595e-17,
+ 1.6709048373571157e-16,
+ 1.9852334701272664e-18,
+ -2.273919503908273e-16,
+ -3.0175548745934445e-16,
+ -5.221164026434711e-16,
+ -2.6138907356675675e-16,
+ 1.3760149489819615e-16,
+ -2.957170689877074e-17,
+ -2.6155450968926735e-16,
+ 1.288747394357617e-16,
+ -1.0409551021097006e-16,
+ 3.017141284287168e-16,
+ 3.062222627671308e-16,
+ -3.4824303788482465e-17,
+ 1.1878313596261477e-16,
+ 3.970466940254532e-17,
+ -1.923194924185789e-16,
+ -1.2746853239442156e-16,
+ -1.2010662494269962e-16,
+ 1.739560828199017e-16,
+ 1.5637849480314986e-16,
+ 1.0579640034553223e-16,
+ -3.7653261483413815e-16,
+ -1.2993973447442373e-16,
+ 8.801201717564213e-17,
+ 1.742869550649229e-16,
+ 8.437242248040881e-17,
+ 3.096964213398535e-16,
+ -1.2288801975240916e-17,
+ 3.6295618991318485e-17,
+ -5.3270431448414976e-17,
+ -9.777274840376786e-17,
+ -3.30045064408658e-16,
+ -7.072394237328387e-17,
+ -2.325204701886561e-16,
+ 2.3917927411970795e-16,
+ -9.628382330117241e-17,
+ 1.49719690872098e-16,
+ -2.602310207091825e-16,
+ 1.684139727157964e-16,
+ -7.841672207002701e-17,
+ 3.6710275585103363e-16,
+ 2.4070955825293102e-17,
+ -2.3740083580271894e-16,
+ -4.721546936452682e-16,
+ -9.231335636091788e-17,
+ 1.8776999904953728e-17,
+ -1.0008885411891634e-16,
+ -1.4823076576950256e-16,
+ -6.038418471637102e-17,
+ 1.4889251025954498e-16,
+ 6.974786925047128e-16,
+ 6.964860757696493e-17,
+ 5.3518585632180884e-17,
+ 2.476578753983765e-16,
+ 4.417144471033167e-17,
+ 1.9860606507398192e-16,
+ 1.9008610476468574e-16,
+ -2.957997870489627e-16,
+ 1.141509245323178e-17,
+ -1.887626157846009e-16,
+ -3.096964213398535e-16,
+ -7.883031237630353e-17,
+ -1.3114948612028254e-16,
+ -2.547716286663325e-17,
+ 5.566925522481876e-17,
+ -1.8752184486577135e-16,
+ 2.455072058057386e-16,
+ -1.7337705639111458e-16,
+ 1.403725499502488e-16,
+ -1.5716431638507524e-18,
+ -9.810362064878907e-17,
+ -1.917404659897918e-16,
+ 5.451120236724452e-17,
+ -3.0605682664462024e-17,
+ -9.644925942368301e-17,
+ 8.023651941764368e-18,
+ 7.924390268258004e-17,
+ -6.035109749186889e-16,
+ -1.0819522412193602e-15
+ ],
+ [
+ -0.18145047960392927,
+ -0.3021885987684864,
+ -0.4953530401394887,
+ 2.157080129121229,
+ -3.1188459930223447,
+ 3.037849545721779,
+ -1.9490095071567748,
+ 0.22725270388301064,
+ 0.9496731057550399,
+ 1.2249867131682224,
+ -4.22257615091104,
+ -2.1978985375842406,
+ 2.988384000039771,
+ -1.8348814353262672,
+ 0.0008085071117205776,
+ 1.0722338683603172,
+ 1.334874136780119,
+ -3.684348113747919,
+ -2.0959140095736495,
+ 2.89499681424612,
+ -1.6439528865426694,
+ -0.13727968999643933,
+ 1.960001473452615,
+ -3.042667933868991,
+ 3.1411511881778704,
+ -1.5080954458865694,
+ -3.0437669494940254,
+ -1.1827757292723857,
+ -0.3334177137755174,
+ 2.0681266619747056,
+ -3.1112840425093147,
+ 3.0807536802391238,
+ -1.4207604200029313,
+ -3.1368576677333406,
+ -1.5459722252557893,
+ -0.49466544482478386,
+ 2.236945133526552,
+ -3.1460717188952567,
+ 3.0362165619576422,
+ -1.8588132755047082,
+ 0.11853365016129336,
+ 1.6624312502730691,
+ -4.540338586599082,
+ -4.39703723367203,
+ 0.04545189350399069,
+ 0.24825541747785396,
+ 4.716862700986688,
+ 4.852422468832455,
+ -1.9116258121620582,
+ 0.18064451904762827,
+ 1.6063534146165785,
+ -2.9213128577267757,
+ 3.2002294709371797,
+ -2.44301558207844,
+ 0.6828345841528985,
+ 1.8826762127442933,
+ 2.8908525818330966,
+ 1.2696899914208812,
+ -2.9777466046787078,
+ 3.178229819141054,
+ -2.2889134619992855,
+ 0.5240647665544894,
+ 1.5020884745124643,
+ 3.122094719880301,
+ 1.9365671988695825,
+ -1.9147194028379613,
+ 0.18270265461728383,
+ 1.605958128416795,
+ -2.9228836864791887,
+ 3.2031411629743207,
+ -2.4462789626454846,
+ 0.6672004156007779,
+ 1.7387846110101408,
+ 2.6633152387458643,
+ 1.250805818354086,
+ -2.9794521617673886,
+ 3.1648648387102205,
+ -2.2921555558989084,
+ 0.6010554194221923,
+ 1.737078311937367,
+ 3.2520527511036144,
+ 1.4764244838509524,
+ -3.059992470699791,
+ 3.13299099030969,
+ -2.192442290546529,
+ 0.4375460232822043,
+ 1.3789312087988745,
+ -2.7513273432159444,
+ 4.430891036287018,
+ 5.368002600454529,
+ 3.252449272893132,
+ 2.5236600406792946,
+ -2.288560660359852,
+ 3.163488985084492,
+ -3.0139846868762077,
+ 1.80250788966801,
+ -0.048770683518739935,
+ -1.7232456865355232,
+ 1.95052635425701,
+ 3.3806322637599484,
+ -3.346220321952855,
+ -1.9362050882032051,
+ 1.686272743101312,
+ 0.09224900427621366,
+ -1.9107890834654664,
+ 1.9352402121180292,
+ 3.1189823103973917,
+ -2.7765325537151226,
+ -1.7860306195076618,
+ 1.4887281952220306,
+ 0.3185132726651249,
+ -2.0203652726098325,
+ 3.1009673561444524,
+ -3.0970289063129086,
+ 2.089817877926608,
+ -0.35062216954198666,
+ -1.2122814344664672,
+ -3.028810065030136,
+ -1.497226656443403,
+ 3.137364499103872,
+ -3.024629812538855,
+ 1.9118317564381389,
+ -0.2196067447190005,
+ -1.0443871003562049,
+ -3.443186367011729,
+ -1.6159451620352359,
+ 3.1841589821269882,
+ -2.971879787042902,
+ 1.7985155122711443,
+ 0.06291626191893508,
+ -1.8144005178834948,
+ 2.980462475909419,
+ -5.785022662159085,
+ -5.715081479370759,
+ -1.8399333687460744,
+ -1.67067740818351,
+ 1.8912039109773193,
+ 2.0539506810177848,
+ -0.004014920688084018,
+ -1.7596893107935907,
+ 2.951695303125382,
+ -3.1710943081394403,
+ 2.3237320246445496,
+ -0.7226118202302672,
+ -0.6316757450306111,
+ -0.5791969469662602,
+ 3.982546431919587,
+ 2.0237446135760533,
+ -3.142133375108064,
+ 2.2237203871239095,
+ -0.5001139443099238,
+ -0.7799435819572381,
+ -0.7855820210427976,
+ 3.6917018258942953,
+ 2.0461392912112557,
+ -3.0817785531150297,
+ 2.053935950881597,
+ -0.3631888038546171,
+ -1.5397710285632795,
+ 2.838666451219099,
+ -3.219883638298555,
+ 1.7163504164793528,
+ 3.3322946570828202,
+ 0.626796726552226,
+ 0.008642274897034915,
+ -1.65987585394603,
+ 2.9398500287865432,
+ -3.1939606865070775,
+ 1.7449465061080511,
+ 3.6766666320750194,
+ 1.0251892625814727,
+ 0.2129315617161312,
+ -1.8500194050115821,
+ 2.995320303324581,
+ -3.1701629789405508,
+ 2.2447454069871275,
+ -0.6160684787512613,
+ -1.2144859628055404,
+ 2.661562911914105,
+ 3.1060093416678805,
+ 2.569222982589704e-16,
+ 1.1249656330721175e-17,
+ 1.9273308272485542e-16,
+ 1.74038800881157e-16,
+ -1.495542547495874e-16,
+ 2.0183206946293872e-17,
+ -8.530300066953097e-17,
+ -1.0273583207908602e-16,
+ -3.996936719856229e-16,
+ 1.0319078141599019e-16,
+ 4.7232012976777874e-17,
+ -2.3574647457761285e-18,
+ 2.5328270356373707e-16,
+ 3.6065074707312007e-17,
+ -6.555406354482744e-17,
+ 1.613002194478404e-17,
+ -9.814497967941672e-17,
+ -1.148540280529879e-16,
+ 6.104592920641344e-17,
+ 4.177262093392789e-17,
+ 2.8951321439355965e-18,
+ -5.657915389862709e-17,
+ 1.8710825455949484e-16,
+ 1.048865016717239e-16,
+ 1.565025718950328e-16,
+ -1.1828682759508296e-16,
+ -7.014491594449675e-17,
+ -6.898686308692251e-17,
+ 2.33595804984975e-16,
+ 3.149903772601929e-16,
+ 2.895132143935597e-16,
+ -9.876536513883149e-17,
+ 3.5494320084650413e-16,
+ 3.3097564259778015e-16,
+ 1.3962808739895107e-16,
+ -5.671150279663558e-16,
+ 8.519960309296184e-17,
+ 9.388499952476863e-17,
+ -3.2905244767359436e-16,
+ 1.437639904617162e-16,
+ -6.667075737177403e-17,
+ 3.9489602443281536e-16,
+ -1.7767839557639032e-16,
+ 1.7185194213671993e-16,
+ 1.635853058900181e-16,
+ -2.1680403855014853e-16,
+ 1.208097284633697e-16,
+ -2.0878038660838416e-16,
+ -2.192028623265523e-16,
+ 1.406207041340147e-17,
+ 3.240893639982762e-16,
+ 2.135573546458779e-16,
+ -9.041084095204591e-17,
+ -1.5865324148767068e-16,
+ -5.14175468762962e-16,
+ -1.9686898578762056e-17,
+ 4.293067379150213e-17,
+ 3.970466940254533e-18,
+ 4.6322114302969544e-17,
+ 1.3549218433618593e-16,
+ -1.9773752543080124e-16,
+ -8.321436962283457e-17,
+ -1.194448804526572e-16,
+ 5.922613185879678e-17,
+ 6.27002904315195e-17,
+ 1.0927055891825494e-16,
+ -1.8479214884434636e-16,
+ 5.728225741929717e-17,
+ -2.8769341704594303e-16,
+ -1.9438744394996147e-17,
+ 2.0348643068804478e-17,
+ 1.9107872149974936e-17,
+ -8.027787844827132e-17,
+ -6.973132563822023e-17,
+ 7.177859765428898e-17,
+ -1.4798261158573665e-16,
+ -1.1398548840980721e-16,
+ -3.6486936819714046e-16,
+ -1.2750989142504922e-16,
+ -1.2490427249550718e-16,
+ 5.872982349126496e-17,
+ 1.9273308272485542e-16,
+ -1.283163925222884e-17,
+ 2.3417483141376213e-16,
+ -3.8836129759364643e-17,
+ 1.6957202557337067e-17,
+ -2.456726419282492e-17,
+ -1.3148035836530375e-16,
+ -6.968169480146704e-16,
+ 3.6888119416802264e-16,
+ -3.8836129759364644e-16,
+ 1.1075948402085039e-16,
+ -5.1119761855777104e-17,
+ 7.46944093135384e-17,
+ -3.623051082982261e-17,
+ -8.478601278668533e-19,
+ -1.018259334052777e-16,
+ -2.0468584257624667e-16,
+ 2.599001484641613e-16,
+ 7.051714722014561e-17,
+ -8.244922755622302e-17,
+ 5.504886976540399e-16,
+ 2.8512915714702864e-16,
+ -2.1299900773240463e-18,
+ -1.1480232926470333e-16,
+ -2.100211575272137e-16,
+ -3.498973991099307e-17,
+ 1.0364573075289436e-16,
+ 3.0357528480696116e-17,
+ 4.599124205794833e-17,
+ 7.907846656006943e-17,
+ 2.3719404064958065e-17,
+ -2.3574647457761286e-17,
+ 1.8247604312919788e-16,
+ -1.831377876192403e-16,
+ -5.620692262297823e-17,
+ -1.34892478392085e-16,
+ 3.714040950363094e-17,
+ 4.9299964508160443e-17,
+ 1.6733863791947747e-16,
+ -1.3400325923359047e-17,
+ 3.2673634195844593e-17,
+ -5.623173804135482e-16,
+ 4.518474096070914e-18,
+ -3.0601546761399254e-16,
+ -7.548023089546376e-17,
+ -7.676236084492096e-17,
+ -3.527925312538663e-17,
+ -1.5025735827025748e-16,
+ 1.1745964698252991e-17,
+ -2.359946287613788e-16,
+ -1.1216569106219055e-16,
+ -3.1747191909785197e-16,
+ 2.536135758087583e-16,
+ -2.418676111105053e-16,
+ -1.980270386451948e-16,
+ 1.7006833394090247e-16,
+ 8.84669665125463e-17,
+ 1.0389388493666026e-16,
+ -5.6248281653605874e-18,
+ 4.6983858793011966e-17,
+ -9.26442286059391e-18,
+ 1.919059021123024e-17,
+ -2.0745689762829932e-16,
+ 5.290647197889165e-16,
+ -3.5734202462290796e-17,
+ 7.024831352106588e-17,
+ 1.698511990301073e-16,
+ 4.268251960773622e-17,
+ -6.898686308692251e-17,
+ -3.7041147830124574e-16,
+ -1.3267977025350564e-16,
+ -5.1450634100798315e-17,
+ -1.0058516248644815e-16,
+ -6.187310981896646e-16,
+ 8.474465375605767e-17,
+ -1.0257039595657542e-16,
+ -3.594099761542905e-17,
+ -2.483196198884189e-16,
+ -1.617965278153722e-16,
+ 5.784060433277046e-17,
+ 2.33595804984975e-16,
+ -1.3717756483426273e-16,
+ 5.004442705945817e-18,
+ 7.346191020083438e-16,
+ 1.167979024924875e-16,
+ 1.8735640874326074e-16,
+ -1.1989982978956136e-16,
+ 2.0491331724469876e-16,
+ -3.8629334606226386e-17,
+ -1.7856761473488485e-17,
+ 2.569222982589704e-16,
+ 1.1114205505415618e-16,
+ 9.88480832000868e-17,
+ 1.6957202557337067e-17,
+ 2.0034314436034328e-16,
+ -1.919059021123024e-17,
+ 2.0141847915666221e-16,
+ -3.540333021726958e-16,
+ -1.4508747944180105e-16
+ ],
+ [
+ 0.6781014899997486,
+ 0.3342082704619836,
+ -1.2180880461097026,
+ 3.4348080786354562,
+ -4.537528727054715,
+ 4.108247415238332,
+ -2.3313155602277833,
+ -0.20334004031034922,
+ 1.665498014548532,
+ 2.385965192162159,
+ -5.941481725975608,
+ -3.146052453771024,
+ 4.017472472880493,
+ -2.156828942799033,
+ -0.5241876731420153,
+ 1.8070560699199605,
+ 2.4447407898344444,
+ -5.144805579081955,
+ -2.9834907192710918,
+ 3.8521157239186787,
+ -1.8675784611680468,
+ -0.7185292597244445,
+ 3.1832417167804423,
+ -4.46975605578774,
+ 4.310063987021047,
+ -1.8899090534698644,
+ -3.953058282264554,
+ -2.2390706323016762,
+ -0.8080150243169075,
+ 3.321837660586521,
+ -4.531462178092156,
+ 4.189318541977503,
+ -1.7500352230674059,
+ -4.017619059466826,
+ -2.784898587257848,
+ -1.0324116828765408,
+ 3.535472349713598,
+ -4.55833498368431,
+ 4.105202553391384,
+ -2.193350126339412,
+ -0.3576880655305005,
+ 2.79623077672511,
+ -6.989676837276611,
+ -6.800030991937483,
+ -0.4516627490307304,
+ -0.1639615272258805,
+ 6.1291335180961015,
+ 6.3350923107810395,
+ -2.2739994472589466,
+ -0.2695774786407171,
+ 2.7224066193624314,
+ -4.346280228795682,
+ 4.444669381392837,
+ -3.103618257059527,
+ 0.638015384032071,
+ 2.0790505263285244,
+ 4.533416528801997,
+ 2.0666951967648473,
+ -4.405405140252341,
+ 4.390983040021033,
+ -2.859150793368017,
+ 0.40842835872327,
+ 1.5697323993078902,
+ 4.3883308274251815,
+ 2.5988668852643615,
+ -2.2785733533061623,
+ -0.26625654375677743,
+ 2.7213473542609288,
+ -4.348076244631773,
+ 4.448584184501979,
+ -3.1083269979263037,
+ 0.6174139818822527,
+ 1.9225294192062914,
+ 4.17527537861112,
+ 2.0394136881606864,
+ -4.407406986097759,
+ 4.358298051985475,
+ -2.8638627415893767,
+ 0.5015806756333303,
+ 1.8250947967209241,
+ 5.026827470097732,
+ 2.3515630541435533,
+ -4.486624575785829,
+ 4.291024626396944,
+ -2.707632464747696,
+ 0.09730481110422685,
+ 2.4202516672764665,
+ -4.157428931635141,
+ 6.501422350805032,
+ 7.9090036370575225,
+ 5.3591076077490705,
+ 4.20262661267034,
+ -3.599660200982617,
+ 4.571175841965724,
+ -4.0628048623882345,
+ 2.1074716288940176,
+ 0.456043695679294,
+ -2.8754494471048857,
+ 2.922996489457594,
+ 5.181809210785311,
+ -4.30179746699719,
+ -2.5565633457741344,
+ 1.9313248670633485,
+ 0.6548747115586521,
+ -3.119355363276137,
+ 2.8643606254080605,
+ 4.724497242302265,
+ -3.5197700646252983,
+ -2.339450306210491,
+ 1.6345208069270944,
+ 0.9717483741475496,
+ -3.2602744022728514,
+ 4.5232832913315955,
+ -4.219305674471554,
+ 2.5480777061920876,
+ -0.15787085904635326,
+ -1.1423632527504783,
+ -4.619103346465991,
+ -2.35240559142624,
+ 4.552984190775895,
+ -4.082261927334916,
+ 2.274135697978353,
+ 0.031993355956465803,
+ -0.842707796315104,
+ -5.195709185032837,
+ -2.5018831966879977,
+ 4.582975945447862,
+ -3.9865920050584682,
+ 2.1013965271098027,
+ 0.61357027297506,
+ -2.9943690095309243,
+ 4.408361338503663,
+ -8.195559352446795,
+ -8.120782627129893,
+ -3.015989772243073,
+ -2.7954389661385455,
+ 1.7907343087822056,
+ 2.019154379658194,
+ 0.5196328308831533,
+ -2.923600230122006,
+ 4.37847704672199,
+ -4.374853365997392,
+ 2.914181092547795,
+ -0.5076959061507914,
+ -1.219586559933987,
+ -1.4641474088067798,
+ 5.708487380654114,
+ 2.9556394454102315,
+ -4.312016971358638,
+ 2.7568987597068695,
+ -0.18673739770358924,
+ -1.4180312979317473,
+ -1.6964479348978039,
+ 5.248537194291544,
+ 2.9656715918963874,
+ -4.191330440150727,
+ 2.49291674917585,
+ 0.009440393356187524,
+ -2.6345266444956827,
+ 4.256305192153757,
+ -4.501667975310724,
+ 2.2245944139228713,
+ 4.440914277173157,
+ 1.4774079388491657,
+ 0.3540418295268575,
+ -2.7929119897318615,
+ 4.366122203911344,
+ -4.428477655092039,
+ 2.2404238923671764,
+ 4.849995754527573,
+ 2.113013494238201,
+ 0.6590065567649386,
+ -3.0411816396415987,
+ 4.423331660150214,
+ -4.372768955899857,
+ 2.7898855219518697,
+ -0.3536985366397346,
+ -2.200522858470698,
+ 4.383103595298632,
+ 5.16922501590781,
+ 2.4021324988539924e-16,
+ -2.2036091518412655e-16,
+ 2.190374262040417e-16,
+ 2.358291926388682e-16,
+ -1.8859717966209029e-16,
+ 2.812414082680294e-17,
+ -1.823933250679426e-17,
+ -9.446402595355575e-17,
+ -5.099154886083139e-16,
+ 1.3267977025350564e-16,
+ 4.8472783895607416e-17,
+ -1.1481266902236024e-16,
+ 3.4120166292046695e-16,
+ 1.1580528575742387e-18,
+ -9.37816019481995e-17,
+ 2.9447629806887785e-17,
+ -1.2486291346487953e-16,
+ -1.0339757656912845e-16,
+ 1.1613615800244509e-16,
+ 2.4815418376590827e-17,
+ 1.0670629901934055e-17,
+ -5.897797767503087e-17,
+ 2.6742749203839385e-16,
+ 1.5104317985218283e-16,
+ 1.435985543392056e-16,
+ -2.0547166415817205e-16,
+ -8.519960309296184e-17,
+ -8.784658105313153e-17,
+ 3.216078221606171e-16,
+ 4.342698215903395e-16,
+ 4.261634515873198e-16,
+ -1.6560155863311612e-16,
+ 3.907601213700502e-16,
+ 4.586871592971392e-16,
+ 2.714806770399037e-16,
+ -7.623296525288702e-16,
+ 1.4988512699460861e-16,
+ 1.2647591565935793e-16,
+ -4.106124560713229e-16,
+ 1.2308447514789052e-16,
+ -9.429858983104514e-17,
+ 5.252596889711726e-16,
+ -3.097791394011088e-16,
+ 2.3868296575217614e-16,
+ 2.3578783360824054e-16,
+ -3.7115594085254347e-16,
+ 1.8206245282292137e-16,
+ -2.6999175193730823e-16,
+ -3.6462121401337455e-16,
+ 6.369290716658312e-18,
+ 4.584234954768879e-16,
+ 2.7611288847020064e-16,
+ -1.3011551035459125e-16,
+ -2.415367388654841e-16,
+ -6.415612830961282e-16,
+ -1.4806532964699195e-17,
+ 3.970466940254532e-17,
+ 4.8472783895607416e-17,
+ 2.8785885316845363e-17,
+ 1.3085997290588898e-16,
+ -3.2533013491710574e-16,
+ -1.2639319759810263e-16,
+ -2.0629884477072508e-16,
+ 9.396771758602393e-17,
+ 1.3052910066086777e-16,
+ 1.8942436027464331e-16,
+ -2.6519410438450067e-16,
+ 5.583469134732937e-17,
+ -3.9224904647264567e-16,
+ -1.4475660719677982e-18,
+ -9.26442286059391e-18,
+ -4.954811869192635e-17,
+ -1.6731795840416365e-16,
+ -7.926458219789386e-17,
+ 1.4128244862405713e-16,
+ -1.2043749718772083e-16,
+ -2.0224565976921524e-16,
+ -5.184974874635516e-16,
+ -1.6312001679545703e-16,
+ -1.6163109169286158e-16,
+ 7.725866921245277e-17,
+ 1.8826630741706907e-16,
+ 1.3286588589133005e-17,
+ 3.366625093090822e-16,
+ -4.0573209045726e-17,
+ 3.73472046567692e-17,
+ -2.5146290621612038e-17,
+ -1.8037707232484457e-16,
+ -1.0071751138445665e-15,
+ 5.505300566846676e-16,
+ -3.6197423605320486e-16,
+ -1.108422020821057e-17,
+ -1.081125060606807e-16,
+ 1.2159555004529507e-16,
+ -5.426304818347861e-17,
+ 5.1450634100798315e-17,
+ -8.295587568141175e-17,
+ -2.220566354398603e-16,
+ 3.187126900166815e-16,
+ 1.0571368228427692e-16,
+ -1.3292792443727155e-16,
+ 7.457860402778097e-16,
+ 4.3761990307117924e-16,
+ 4.3344264097778644e-17,
+ -8.528232115421714e-17,
+ -2.500980582054079e-16,
+ -7.130296880207099e-17,
+ 1.4789989352448135e-16,
+ 6.815968247436948e-17,
+ 4.5494933690416516e-17,
+ 1.3350695086605867e-16,
+ -3.3728289476849703e-17,
+ -8.371067799036639e-17,
+ 2.5485434672758783e-16,
+ -2.6469779601696886e-16,
+ -1.0331485850787314e-16,
+ -1.6278914455043582e-16,
+ 7.18819952308581e-17,
+ 6.402377941160434e-17,
+ 2.129162896711493e-16,
+ -3.1805094552663914e-17,
+ 1.6378176128549948e-17,
+ -6.847401110713962e-16,
+ 2.903403950061127e-17,
+ -4.3956377751067886e-16,
+ -1.6758679210324338e-16,
+ -1.2440796412797536e-16,
+ -9.793818452627846e-17,
+ -1.8632243297756946e-16,
+ 1.952146245625145e-17,
+ -2.978884180956591e-16,
+ -1.378082900513344e-16,
+ -3.8182657075447753e-16,
+ 3.628014166657579e-16,
+ -2.9100213949615514e-16,
+ -2.8785885316845363e-16,
+ 2.5030485335854617e-16,
+ 1.3765319368648072e-16,
+ 1.8032537353656e-16,
+ -3.143286327701505e-17,
+ 9.992341799640573e-17,
+ -7.957477492760125e-17,
+ 1.9211269726544065e-17,
+ -2.517937784611416e-16,
+ 7.828437317201853e-16,
+ -1.8363409598677214e-17,
+ 8.768114493062092e-17,
+ 2.244141001856364e-16,
+ 9.032812289079061e-17,
+ -8.71848365630891e-17,
+ -5.365920633631491e-16,
+ -3.126742715450444e-16,
+ -8.271806125530276e-17,
+ -1.5253210495477828e-16,
+ -8.735027268559971e-16,
+ 1.112454526307253e-16,
+ -1.773475233313691e-16,
+ -7.17992771696028e-17,
+ -2.6138907356675675e-16,
+ -2.0989708043533075e-16,
+ 1.2039613815709318e-16,
+ 3.775252315692018e-16,
+ -1.7494869955496533e-16,
+ 2.148601641106489e-17,
+ 9.656506470944045e-16,
+ 1.4628689133000294e-16,
+ 2.907953443430169e-16,
+ -2.0199750558544933e-16,
+ 3.23758491753255e-16,
+ -9.843449289381028e-17,
+ -2.580803511165446e-17,
+ 3.6726819197354424e-16,
+ 1.7771975460701797e-16,
+ 1.0381116687540496e-16,
+ 3.114335006262149e-17,
+ 2.9166388398619756e-16,
+ -2.7710550520526424e-17,
+ 2.5559880927888555e-16,
+ -3.7289302013890483e-16,
+ -9.330597309598151e-17
+ ],
+ [
+ 1.2121411771295727,
+ 1.1231644800139882,
+ -0.169113577204593,
+ -1.4829267311374725,
+ 2.575072189643042,
+ -2.9008756828934406,
+ 2.169163380653201,
+ -0.8118181922603779,
+ -0.4708597632629891,
+ -0.33971342874820754,
+ 3.7424279891138204,
+ 1.8877773390331318,
+ -2.87994768012579,
+ 2.0846018365869727,
+ -0.6126956802201924,
+ -0.6142788558314627,
+ -0.5450544278094662,
+ 3.3097173147885735,
+ 1.8188577353745563,
+ -2.836354320938745,
+ 1.9376509841642635,
+ -0.49129173034084794,
+ -1.2792383104350982,
+ 2.463129986364224,
+ -2.928830208705081,
+ 1.5980231871486108,
+ 3.0690658042551227,
+ 0.40083726851681867,
+ -0.08618239257434467,
+ -1.38938897211293,
+ 2.564120817073325,
+ -2.9146478279835444,
+ 1.5397546476073196,
+ 3.2263949385840203,
+ 0.6835535419083272,
+ 0.059533257952621245,
+ -1.5668689382751793,
+ 2.6188857893290503,
+ -2.9002719291107057,
+ 2.101704734328952,
+ -0.7170405873083735,
+ -0.9798048862858753,
+ 3.347029927014362,
+ 3.2065194375728345,
+ -0.6210566630319047,
+ -0.7981622220189665,
+ -4.752557100451177,
+ -4.85555546597917,
+ 2.14137549371325,
+ -0.7712848619688453,
+ -0.9243806431748262,
+ 2.3023456184608686,
+ -2.9232388846115067,
+ 2.5200782784700326,
+ -0.9687582790056655,
+ -2.3106433069496153,
+ -2.037527540955044,
+ -0.8097760163515589,
+ 2.376142437593424,
+ -2.9284099315603265,
+ 2.4155553535284557,
+ -0.835007306016727,
+ -1.9438184979448105,
+ -2.0657895504978607,
+ -0.9119837073816801,
+ 2.484876341520945,
+ -0.77264250678223,
+ -0.9245979561315721,
+ 2.3042232885482625,
+ -2.9260482740897555,
+ 2.5228567600299,
+ -0.9533394925070108,
+ -2.1313795725641493,
+ -1.8786505315963495,
+ -0.7938414553087225,
+ 2.3781222297083837,
+ -2.932219374524641,
+ 2.4182775221377018,
+ -0.9203525893691366,
+ -2.2369087098878233,
+ -2.37437329437632,
+ -0.9997934825541157,
+ 2.4869908826707947,
+ -2.930160010454457,
+ 2.346905517540698,
+ -0.9928726403679391,
+ -0.7027479685160544,
+ 2.0950192154799283,
+ -3.626565704511717,
+ -4.356899495034735,
+ -2.0010978397696335,
+ -1.502742948806136,
+ 1.5796912266201906,
+ -2.689976079881241,
+ 2.8506610572058637,
+ -2.101739091200433,
+ 0.6129306663796562,
+ 0.9984252015003207,
+ -1.5277386682779284,
+ -2.5175477814212974,
+ 3.423685280063859,
+ 1.9050711845481618,
+ -2.011972678581946,
+ 0.4893374730311641,
+ 1.188081677165685,
+ -1.5560056122353223,
+ -2.3860568107807905,
+ 2.8967327772202194,
+ 1.778510074658358,
+ -1.8590480119295045,
+ 0.2861819012925715,
+ 1.2992027756720896,
+ -2.589387812793576,
+ 2.8795675847954745,
+ -2.3154478556935865,
+ 0.6886177751979912,
+ 1.7090218944305033,
+ 2.28192147586535,
+ 1.0502414953039225,
+ -2.6449398282043273,
+ 2.8559523892278142,
+ -2.1832406083566487,
+ 0.5787143347614767,
+ 1.631650076858242,
+ 2.6564437813950748,
+ 1.1752464405961998,
+ -2.7277254842388463,
+ 2.8324237459301145,
+ -2.0987217275623404,
+ 0.5143995718374044,
+ 1.0897028067611292,
+ -2.4211511015600884,
+ 5.065153946446011,
+ 4.976565946067033,
+ 1.1573016401533527,
+ 0.9894215996434512,
+ -2.6564316754741313,
+ -2.80253827969019,
+ 0.5741965876292957,
+ 1.034213944424678,
+ -2.3836116598715287,
+ 2.8874184580822697,
+ -2.4811543015060336,
+ 1.192622190189929,
+ 0.18728146487305292,
+ -0.21786964784622134,
+ -3.4117334242489705,
+ -1.6718989671217692,
+ 2.887565133951875,
+ -2.4102326893827035,
+ 1.0052391086064398,
+ 0.3301580199441302,
+ 0.030493064310552515,
+ -3.2110791679223,
+ -1.7159419493717452,
+ 2.8734223140001802,
+ -2.2889398864965167,
+ 0.8869047872064496,
+ 0.8163912774774966,
+ -2.241941435649326,
+ 2.865153537871542,
+ -1.7356935559089106,
+ -3.232592982104532,
+ 0.11515789619424324,
+ 0.37741345268177345,
+ 0.9357260250799394,
+ -2.3673559364602155,
+ 2.8844644132788937,
+ -1.7885273023050037,
+ -3.6228190132391997,
+ -0.15342171742685712,
+ 0.2160777114855877,
+ 1.125030013284874,
+ -2.4409280307947454,
+ 2.8874697348313316,
+ -2.425935943346555,
+ 1.1027567816417094,
+ 0.5014057269811936,
+ -1.6402413903572355,
+ -1.8530945606133529,
+ -4.0961983933625926e-16,
+ -1.985233470127266e-17,
+ -1.6328545291796764e-16,
+ -8.966637840074819e-17,
+ 4.2827276214933e-17,
+ 3.937379715752411e-17,
+ 9.853789047037941e-17,
+ 3.6065074707312007e-17,
+ 2.7379678275505216e-16,
+ -1.2986735617082534e-16,
+ -2.4815418376590827e-17,
+ -7.138568686332629e-17,
+ -2.664348753033302e-16,
+ -9.107258544208833e-17,
+ 1.1249656330721175e-17,
+ 1.2738581433316626e-16,
+ 7.659692472241035e-17,
+ 6.658803931051873e-17,
+ 7.394994676224067e-17,
+ -1.1580528575742387e-18,
+ -9.59529510561512e-18,
+ 9.835177483255498e-17,
+ -1.1183481881716934e-16,
+ -6.110279787352646e-17,
+ -3.871205266748169e-17,
+ 3.302105005311686e-16,
+ 3.7223127564886245e-17,
+ 3.4576149604716557e-17,
+ -2.321275593976934e-16,
+ -3.360007648190398e-16,
+ -2.3194144375986896e-16,
+ 8.12291361527073e-17,
+ -3.335192229813807e-16,
+ -1.9418064879682322e-16,
+ -2.6171994581177796e-16,
+ 5.97224402263286e-16,
+ -7.213014941462401e-17,
+ -1.4894420904782955e-17,
+ 1.8811121105221538e-16,
+ -1.638127805584702e-16,
+ 6.038418471637102e-17,
+ -3.278943948160201e-16,
+ 4.79764755280756e-18,
+ -6.621580803486987e-17,
+ -5.649643583737179e-17,
+ 4.0870994066245092e-16,
+ -7.313827578617302e-17,
+ 6.771300494359084e-16,
+ 1.2813027688446399e-16,
+ 3.474158572722716e-17,
+ -2.362427829451447e-16,
+ -1.433504001554397e-16,
+ 8.486873084794063e-17,
+ 3.3707609961535873e-16,
+ 1.3807712375041414e-16,
+ 1.7784383169890095e-18,
+ 8.792929911438683e-17,
+ 4.8720938079373324e-17,
+ 2.1548054957006368e-17,
+ 1.3148035836530375e-16,
+ 1.5096046179092753e-16,
+ 8.668852819555729e-17,
+ 5.66618719598824e-17,
+ 8.395883217413231e-18,
+ -6.869734987252895e-17,
+ -1.224227306578481e-16,
+ 3.54364174417717e-16,
+ -6.452008777913615e-18,
+ 2.7379678275505216e-16,
+ 1.0877425055072312e-17,
+ 2.0605069058695917e-16,
+ 2.248276904919129e-16,
+ 1.7623082950442252e-16,
+ -2.797938421960616e-17,
+ 1.9058241313221755e-16,
+ -3.0647041695089675e-17,
+ 1.3255569316162268e-16,
+ 2.74293091122584e-16,
+ 8.652309207304668e-17,
+ 1.38924983878281e-16,
+ -4.834870680372446e-17,
+ 6.017738956323276e-17,
+ -1.555099551599692e-17,
+ -1.9571093293004632e-16,
+ 1.2821299494571927e-17,
+ 3.7223127564886245e-18,
+ 1.2679644814672223e-16,
+ 1.4107565347091887e-16,
+ 7.762262868197611e-16,
+ -2.644082828025753e-16,
+ -2.3194144375986896e-16,
+ -8.602678370551488e-18,
+ -5.2939559203393765e-17,
+ -5.40148939997127e-17,
+ 9.096918786551921e-17,
+ -9.479489819857696e-17,
+ -8.42069863578982e-17,
+ 1.0935327697951025e-16,
+ -1.5120861597469343e-16,
+ -3.2032569221115997e-17,
+ 2.8785885316845363e-17,
+ -3.4915293655863293e-16,
+ -3.4998011717118596e-16,
+ 3.736271429325457e-17,
+ 1.2912289361952762e-16,
+ 7.444625512977249e-17,
+ 4.844176462263668e-17,
+ -9.529120656610878e-17,
+ 8.346252380660048e-17,
+ -4.979627287569226e-17,
+ -1.0579640034553223e-16,
+ 1.0563096422302162e-16,
+ 3.28390703183552e-17,
+ -1.4397078561485447e-16,
+ 1.0075059860895876e-16,
+ 9.462946207606635e-17,
+ 1.773475233313691e-16,
+ -1.1187617784779698e-17,
+ 2.4257071463117533e-17,
+ -1.8098711802660243e-16,
+ -2.9447629806887785e-17,
+ 1.1497810514487085e-16,
+ 2.359119107001235e-16,
+ 2.646977960169688e-18,
+ 2.514629062161204e-16,
+ 3.338500952264019e-16,
+ 7.295733002717704e-17,
+ 5.215373762146839e-17,
+ 7.426013949194806e-17,
+ 1.530284133223101e-18,
+ 1.1779051922755114e-16,
+ 1.0108147085397997e-16,
+ 3.546950466627382e-16,
+ -2.444318710094197e-16,
+ 2.022870187998429e-16,
+ 7.552158992609141e-17,
+ -1.6233419521353166e-16,
+ -1.5046415342339573e-16,
+ -6.088049308390284e-17,
+ 8.313165156157928e-18,
+ -1.5848780536516008e-16,
+ 7.990564717262246e-17,
+ -5.190558343770248e-18,
+ 2.776018135727961e-16,
+ -3.1978802481300045e-16,
+ -1.003783673333099e-16,
+ -8.527198139656023e-17,
+ -8.09809819689414e-17,
+ -5.426304818347861e-17,
+ 1.0348029463038375e-16,
+ 3.5006283523244126e-16,
+ 2.4616895029578104e-16,
+ 4.714929491552257e-17,
+ 1.3962808739895107e-16,
+ 4.514958578467563e-16,
+ -1.1018045759206327e-16,
+ 1.493888186270768e-16,
+ 1.3865615017920125e-17,
+ 3.879477072873699e-17,
+ 7.65555656917827e-17,
+ -1.257314531080602e-16,
+ -1.978616025226842e-16,
+ 9.604600887506341e-17,
+ 4.475047113911879e-17,
+ -2.5890753172909766e-16,
+ -5.748905257243542e-17,
+ -1.6684232955194566e-16,
+ 5.604148650046762e-17,
+ -2.099384394659584e-16,
+ 1.4702359906305798e-16,
+ 1.0960143116327615e-16,
+ -2.3306847734447246e-16,
+ -3.9601271825976194e-17,
+ 7.688643793680391e-17,
+ -6.005331247134981e-17,
+ -2.013357610954069e-16,
+ -8.313165156157928e-18,
+ -1.356550355192823e-16,
+ 2.9116757561866574e-16,
+ 4.470497620542838e-16
+ ],
+ [
+ -3.75992799825942,
+ -3.1601324128231236,
+ 1.6874320879059475,
+ -0.16893281108439243,
+ -1.480194012992974,
+ 2.614776914536814,
+ -2.9000150259926043,
+ 2.1680464794713967,
+ -0.6630147672153859,
+ -1.7822260543047177,
+ -2.7626520080438275,
+ -1.2294963827356804,
+ 2.6659401552724002,
+ -2.8786356564843008,
+ 2.029503907170798,
+ -0.4623091131436803,
+ -1.3364409973214897,
+ -2.5639997418570126,
+ -1.2371324699298916,
+ 2.736356753463846,
+ -2.8350171303913627,
+ 1.9383818419960057,
+ -0.3982434134547345,
+ -1.2766338150017245,
+ 2.4620995234470855,
+ -1.892058154325654,
+ -3.277718424345782,
+ 1.468484478807822,
+ 1.1037765521540983,
+ -0.27372560374326904,
+ -1.4565055465016803,
+ 2.563022467827097,
+ -1.9011805865404603,
+ -3.5977256897430503,
+ 1.3665420148677914,
+ 0.9885604635013937,
+ -0.07094983131431273,
+ -1.5663114236767284,
+ 2.6166026375467033,
+ -2.8840811492147296,
+ 2.1022379101073403,
+ -0.716552725378969,
+ -0.6258341737867771,
+ -0.48532284037366763,
+ 2.041116472386164,
+ 2.1646664314800526,
+ 5.0670006051512475,
+ 5.0963826382188335,
+ -2.8939004151882317,
+ 2.1400756562319456,
+ -0.7730681610644907,
+ -1.0127868765402634,
+ 2.299919654558835,
+ -2.9220256385301444,
+ 1.7059040796313862,
+ 3.4553134509311305,
+ 0.07442216679289052,
+ -0.2621356314727355,
+ -1.1278776471042313,
+ 2.3751310081925388,
+ -2.9280774190563186,
+ 1.6261628692687073,
+ 3.104134563240128,
+ 0.30439285509056857,
+ -0.14106330414906798,
+ -1.3145435079989465,
+ 2.4837467939836704,
+ -0.7713716107512344,
+ -1.0153939588066185,
+ 2.30251208556712,
+ -2.9237129299331803,
+ 1.6902164374401447,
+ 3.1819507955307302,
+ 0.07367248518435056,
+ -0.27172627482963546,
+ -1.1305133337586886,
+ 2.4205241335116017,
+ -2.929617434232751,
+ 1.7357357180287851,
+ 3.5515476453805173,
+ 0.36852181538371903,
+ -0.10339386659930316,
+ -1.317203721459301,
+ 2.4862220505781525,
+ -2.9274421362165817,
+ 2.2870947751206616,
+ -0.9915150249641547,
+ -0.705188537136652,
+ 1.8580449601580928,
+ 2.123989237698738,
+ -0.9252520794459609,
+ -0.8909529013036098,
+ -0.038164210311187385,
+ 1.5806960980012796,
+ -2.687861158878375,
+ 2.8307595009565634,
+ -2.0998597935693617,
+ 0.6095515911593898,
+ 0.5799655921295769,
+ 0.5538442387780781,
+ -3.7753375045882134,
+ -1.9214225026328446,
+ 2.804776086904934,
+ -2.00824556755588,
+ 0.40983769075480475,
+ 0.7148009850207893,
+ 0.7304460841382123,
+ -3.3262890647157506,
+ -1.8458235820908364,
+ 2.748103290060739,
+ -1.8553072340108157,
+ 0.2854739122446414,
+ 1.3834853443680142,
+ -2.587565839875612,
+ 2.8769677076791944,
+ -1.5380840784653556,
+ -2.9909429675677512,
+ -0.5876540485064706,
+ -0.02111713688780183,
+ 1.4921642074427484,
+ -2.6764597273649824,
+ 2.853130171781747,
+ -1.473881995912906,
+ -3.128470291888261,
+ -0.8839504338963265,
+ -0.16732443319560053,
+ 1.6617090951616744,
+ -2.7265417563309615,
+ 2.8299066319203954,
+ -2.028213527823076,
+ 0.5134325172134304,
+ 1.0914131874625823,
+ -3.5675470068393875,
+ -3.4296011961038477,
+ 0.46978903220787505,
+ 0.6511622512609264,
+ 4.632388240409442,
+ 4.739913217706781,
+ -2.0727297657062076,
+ 0.5734739514888271,
+ 1.0313733362379818,
+ -2.4357644344367015,
+ 2.8857722672603163,
+ -2.479841570625118,
+ 0.8770416301363929,
+ 2.153431407228317,
+ 2.1970222807577664,
+ 0.9024319550634722,
+ -2.5020206192025563,
+ 2.8858607633279365,
+ -2.3641119341281343,
+ 0.7403313471057675,
+ 1.7917726885279253,
+ 2.20453150451918,
+ 1.0008679904984366,
+ -2.6029755360366953,
+ 2.8716871052043578,
+ -2.2891770393831803,
+ 0.7968369192458727,
+ 0.8135578478601146,
+ -2.240773387825047,
+ 1.8658145380919273,
+ 3.14710559984666,
+ -1.9127701743666434,
+ -1.3280066884762836,
+ 0.677803533698452,
+ 1.0076960706006755,
+ -2.3660996997587054,
+ 1.9797360131637933,
+ 3.666835469963084,
+ -1.9448467221590737,
+ -1.2626769401835398,
+ 0.47727078866973,
+ 1.1243563374106569,
+ -2.438154454351718,
+ 2.8854427696167724,
+ -2.4261064083188106,
+ 1.102099508847837,
+ -0.747815324631892,
+ -1.0841243889635375,
+ 1.1044515538808026e-15,
+ 1.5608070978263077e-15,
+ 2.6403605152692643e-16,
+ 2.5394444805377947e-17,
+ -1.56006263527501e-16,
+ -1.7511413567747593e-16,
+ -4.751532233657729e-16,
+ -1.1166938269465874e-16,
+ -2.875279809234324e-16,
+ 1.649398141430737e-16,
+ 1.5486889018524058e-16,
+ 4.297616872519255e-16,
+ 2.686682629572234e-16,
+ 2.1151008262980915e-16,
+ -1.1894857208512538e-16,
+ -2.6105820132173553e-16,
+ -8.751570880811032e-17,
+ -2.0853223242461825e-16,
+ -4.9010451293766884e-17,
+ 6.834579811219391e-17,
+ 9.704896536778396e-17,
+ -4.259980154648092e-17,
+ 5.575197328607407e-17,
+ -2.924083465374953e-17,
+ 9.330597309598151e-17,
+ -3.2768759966288186e-16,
+ -1.0356301269163905e-16,
+ -5.037529930447938e-17,
+ 2.043136113005978e-16,
+ 2.4410099876439847e-16,
+ 1.7867101231145395e-16,
+ 1.1911400820763599e-16,
+ 4.0978527545876986e-16,
+ 1.1018045759206327e-16,
+ -5.881254155252027e-17,
+ -6.619099261649326e-16,
+ -6.394106135034904e-17,
+ -1.2200914035157157e-17,
+ -2.0480991966812963e-16,
+ 3.249165446108292e-16,
+ 9.529120656610878e-17,
+ 2.8686623643339e-16,
+ 3.6180879993069426e-16,
+ 3.023345138881316e-17,
+ -5.3994214484398875e-17,
+ -7.974021105011186e-17,
+ 9.233403587623171e-18,
+ -6.48344164119063e-16,
+ 1.6353360710173355e-16,
+ 4.832285740958218e-17,
+ 1.787123713420816e-16,
+ 1.3950401030706812e-16,
+ -9.384364049414098e-17,
+ -2.9811589276411117e-16,
+ -3.907601213700502e-16,
+ -6.551270451419979e-17,
+ -3.110199103199384e-17,
+ -1.8743912680451605e-16,
+ 1.3863547066388744e-16,
+ 1.8181429863915546e-16,
+ 1.1601208091056213e-16,
+ 4.9630836753181654e-17,
+ 1.0891900715791991e-16,
+ -8.776386299187622e-17,
+ -2.0580253640319326e-16,
+ -4.152705168957621e-17,
+ -3.395576414530178e-16,
+ 7.403266482349598e-17,
+ -1.8986896985389057e-16,
+ -2.014184791566622e-17,
+ -1.1363393664947216e-17,
+ 9.230301660326096e-17,
+ 6.57608586979657e-17,
+ 1.9273308272485542e-17,
+ -4.652063764998228e-16,
+ -2.8457081023355535e-16,
+ -4.135903062765138e-19,
+ -1.404552680115041e-16,
+ -1.5716431638507524e-18,
+ -1.2349806545416703e-16,
+ 9.851721095506558e-17,
+ 3.4907021849737763e-16,
+ -1.4670048163627946e-16,
+ 4.95067596612987e-17,
+ -8.246990707153685e-17,
+ -7.064122431202856e-17,
+ -7.378451063973007e-17,
+ -4.441959889409758e-17,
+ -2.5857665948407645e-16,
+ -1.288747394357617e-16,
+ -3.505591435999731e-16,
+ 2.5874209560658706e-16,
+ 9.897216029196975e-17,
+ -1.330520015291545e-16,
+ -1.3286588589133007e-16,
+ -1.7780247266827327e-16,
+ -2.0844951436336294e-17,
+ -2.725560118362226e-16,
+ 3.2930060185736027e-16,
+ -6.514047323855092e-18,
+ 1.110076382046163e-16,
+ 3.0787662399223685e-16,
+ 6.550236475654288e-17,
+ -1.770993691476032e-16,
+ -3.903465310637737e-16,
+ -2.989430733766642e-16,
+ 8.395883217413231e-18,
+ 1.0149506116025648e-16,
+ -6.369290716658313e-17,
+ 1.285438671907405e-16,
+ 5.1711712981635365e-17,
+ 1.3919381757736073e-16,
+ 1.4558378780933287e-16,
+ 6.693442119202531e-17,
+ -6.27002904315195e-17,
+ -1.2407709188295415e-16,
+ -2.514629062161204e-16,
+ -4.020097777007714e-17,
+ -8.768114493062093e-18,
+ 2.5510250091135373e-16,
+ 1.560889815887563e-16,
+ 1.0670629901934055e-17,
+ -3.660274210547147e-16,
+ -3.9456515218779414e-17,
+ -1.682485365932858e-16,
+ -1.0554824616176632e-16,
+ -5.637235874548884e-17,
+ 1.6717320179696687e-16,
+ -4.5815466177780814e-17,
+ 3.821574429994987e-17,
+ -9.032812289079061e-17,
+ -1.627788047927789e-16,
+ -2.720597034686908e-16,
+ 5.476969630866734e-17,
+ -2.9625473638586686e-16,
+ 6.220398206398768e-17,
+ 5.81094380318502e-17,
+ 4.0060357065943125e-16,
+ -1.8983795058091982e-17,
+ 1.2494563152613483e-16,
+ 1.0839167951741735e-16,
+ 2.1322648240085668e-16,
+ -5.542110104105285e-18,
+ -3.3008642343928564e-16,
+ 4.177262093392789e-17,
+ -4.4667753077863494e-18,
+ 4.561901078229947e-17,
+ 2.1093105620102203e-17,
+ -3.2714993226472245e-17,
+ -7.246102165964522e-17,
+ -1.2118195973901855e-16,
+ 3.618501589613219e-16,
+ 4.446095792472523e-17,
+ -8.660581013430199e-17,
+ -2.4683069478582346e-16,
+ 7.618333441613384e-17,
+ -3.1805094552663914e-17,
+ -2.8000063734919987e-17,
+ -2.265647697782743e-16,
+ -2.5146290621612038e-17,
+ 2.6635215724207488e-17,
+ -1.3069453678337836e-17,
+ -9.429858983104514e-17,
+ -1.2858522622136815e-16,
+ 1.6047303883528734e-16,
+ 5.194694246833013e-17,
+ -2.5050647863285594e-17,
+ 5.790264287871194e-19,
+ 6.782881022934826e-18,
+ -3.3955764145301786e-17,
+ 1.7960159050057613e-17,
+ 1.255660169855496e-16,
+ -2.043136113005978e-17,
+ -1.4475660719677984e-17,
+ -2.7503755367388167e-17,
+ -1.4517019750305636e-17,
+ -4.557765175167182e-17,
+ 9.024540482953531e-17,
+ -7.987255994812034e-16,
+ -8.773077576737411e-16
+ ],
+ [
+ 5.062070567624425,
+ 4.150841128072106,
+ -2.7218812063110094,
+ 1.6772234713849958,
+ -0.1691146188006085,
+ -1.5532993334247667,
+ 2.6004347752995827,
+ -2.884335690293525,
+ 1.5728121465040907,
+ 3.30780386402751,
+ 0.8860065786329634,
+ 0.17350266668503128,
+ -1.6559436794804263,
+ 2.6522257233256497,
+ -2.8478609214808643,
+ 1.3808132862150997,
+ 2.768877401927756,
+ 0.984842164075847,
+ 0.2546989083677842,
+ -1.8200185609930908,
+ 2.7221072523811474,
+ -2.820040718702458,
+ 1.8571435300163537,
+ -0.39726678302562446,
+ -1.271047040831622,
+ 1.5656415222097706,
+ 2.4134654911987754,
+ -2.8457174824044054,
+ -1.7539820070478644,
+ 1.7624749577938592,
+ -0.19441362447800456,
+ -1.4499305517056227,
+ 1.6387493961670236,
+ 2.7905156287518578,
+ -2.9567200721570623,
+ -1.70674285459822,
+ 1.597449207788316,
+ -0.06922898603743213,
+ -1.556938481913884,
+ 2.641006415905408,
+ -2.86894510108243,
+ 2.0901546623952414,
+ -2.282481676050125,
+ -2.377053951513082,
+ -2.7848043569956378,
+ -2.8147541007720625,
+ -3.7230615783350443,
+ -3.669659779107447,
+ 2.6179661914665004,
+ -2.878120718483919,
+ 2.1292761933454507,
+ -0.67716035182415,
+ -1.0064142845950699,
+ 2.2885724296408094,
+ -1.8806282421748752,
+ -3.4630696315706047,
+ 1.9003443051912459,
+ 1.2414392817139757,
+ -0.5552470900531552,
+ -1.1232113080840858,
+ 2.4059119277826606,
+ -1.8806090125200703,
+ -3.2422192394286244,
+ 1.5451350829824735,
+ 1.1411959914636949,
+ -0.3555790670406001,
+ -1.3087968454566485,
+ 2.4698895901368916,
+ -0.6746208166733124,
+ -1.008027570800273,
+ 2.288690590445744,
+ -1.8698440618236343,
+ -3.185643681738166,
+ 1.7437131835071358,
+ 1.2415837442671356,
+ -0.5527568404914192,
+ -1.1951650054445888,
+ 2.405844485430717,
+ -1.9784771945037087,
+ -3.6967890983205356,
+ 1.7448031624040645,
+ 1.1656433427701578,
+ -0.353181213256424,
+ -1.3101199187135846,
+ 2.469713991672196,
+ -2.9029259103271214,
+ 2.2730409245507572,
+ -0.9837590332956387,
+ 0.5063745050643219,
+ 0.7887376358423369,
+ 3.530180689135075,
+ 2.97789159453206,
+ -1.5834555616713526,
+ -0.03954320877838397,
+ 1.5698780812323962,
+ -2.7072852509403336,
+ 2.813069636173379,
+ -2.0854565182042375,
+ 0.5512580921330307,
+ 1.5781853295315769,
+ 2.8905477816308,
+ 1.3095492710691918,
+ -2.749750601216412,
+ 2.786589157860904,
+ -1.9376286385883719,
+ 0.35463039019320947,
+ 1.1532304691609119,
+ 2.6656871577316514,
+ 1.3092902607434755,
+ -2.8106431990722016,
+ 2.730121906457117,
+ -1.8441828152839521,
+ 0.18931191677873274,
+ 1.3738820774310387,
+ -2.5719586220667487,
+ 1.8792570767641579,
+ 3.286839246906473,
+ -1.287809558066995,
+ -1.0082787323651565,
+ 0.06679871444382214,
+ 1.5489156287731847,
+ -2.6601767702757835,
+ 1.8814581085228812,
+ 3.5929459859429222,
+ -1.1661105251796209,
+ -0.8888096341544053,
+ -0.1369263543022338,
+ 1.6523533190629722,
+ -2.7088767153233686,
+ 2.7916759276119754,
+ -2.0160726706426693,
+ 0.5085422497868693,
+ 0.9153076128538862,
+ 0.7735130704827466,
+ -1.9050048781675084,
+ -2.0333282973319515,
+ -5.081238472951131,
+ -5.119703502296415,
+ 2.8072163867221627,
+ -2.061014880033303,
+ 0.571721184123139,
+ 1.1131702233032905,
+ -2.422099597090829,
+ 2.8705428789902494,
+ -1.6478082031594048,
+ -3.372605391230113,
+ -0.27195539403929614,
+ 0.15706920434756982,
+ 1.2268788036885285,
+ -2.4892994947242113,
+ 2.867238503368038,
+ -1.5619060297604141,
+ -3.0165818165450338,
+ -0.48384295666010074,
+ 0.036762309444588116,
+ 1.4057834451645832,
+ -2.5896095937416996,
+ 2.856491838895853,
+ -2.2167462863650442,
+ 0.7938684412492758,
+ 0.8103355078584177,
+ -1.3851704123534305,
+ -2.033412707484734,
+ 3.073471774722,
+ 1.83832731938755,
+ -2.133506207692558,
+ 0.5983271683381222,
+ 1.0034346114644273,
+ -1.522536081084751,
+ -2.511905396448485,
+ 3.39375403553675,
+ 1.8897283214601457,
+ -1.9907789195206265,
+ 0.47357828059980345,
+ 1.1171226190787331,
+ -2.4762945318979455,
+ 2.870121551896192,
+ -2.4125416453030493,
+ 2.8759368070779066,
+ 3.6479069183713015,
+ -3.666064474835018e-16,
+ -5.426304818347862e-16,
+ -2.8256489724811425e-16,
+ 1.5716431638507526e-17,
+ 6.654668027989108e-17,
+ -2.6180266387303323e-17,
+ 5.231090193785347e-16,
+ 3.159829939952565e-16,
+ 1.373119816838026e-16,
+ -1.3995895964397228e-16,
+ 5.078888961075589e-17,
+ -6.511565782017433e-16,
+ -2.0795320599583113e-16,
+ -3.0465061960328004e-16,
+ -4.628075527234189e-17,
+ 1.978616025226842e-16,
+ 1.147816497493895e-16,
+ 2.9232562847624e-16,
+ 2.4980854499101436e-16,
+ -1.8826630741706907e-16,
+ 7.519071768107022e-17,
+ 2.418676111105053e-16,
+ 1.2407709188295413e-18,
+ 2.7679531247555685e-17,
+ -3.37045080342388e-16,
+ -3.319062207869023e-18,
+ 6.551270451419979e-17,
+ 5.434576624473391e-17,
+ -1.0720260738687237e-16,
+ -2.8785885316845363e-16,
+ 1.1150394657214813e-16,
+ -1.670904837357116e-17,
+ -1.011145580784821e-15,
+ -4.2517083485225616e-17,
+ 1.8057352772032592e-16,
+ 4.221929846470653e-16,
+ 1.6328545291796764e-16,
+ 2.779326858178173e-17,
+ 1.98357910890216e-16,
+ -5.131828520278984e-16,
+ 1.8429584047681454e-16,
+ -3.326920423688277e-16,
+ -1.591495498552025e-16,
+ 1.7246715771730627e-17,
+ 2.3657365519016588e-17,
+ 3.3914405114674135e-17,
+ 4.855550195686272e-17,
+ 6.690236794328887e-16,
+ -2.1787937334646746e-16,
+ -1.2407709188295414e-17,
+ -6.195582788022177e-17,
+ -2.0199750558544933e-16,
+ 3.023345138881316e-17,
+ 1.682485365932858e-16,
+ 1.4293680984916318e-16,
+ 3.821574429994987e-17,
+ -2.158941398763402e-17,
+ 2.6540089953763893e-16,
+ -6.760133556089619e-17,
+ -1.0474174506452711e-17,
+ -1.0281855014034133e-16,
+ 1.952146245625145e-17,
+ -1.6177584830005836e-16,
+ 7.022763400575205e-17,
+ 1.2515242667927309e-16,
+ 1.7254987577856155e-16,
+ 1.7825742200517744e-16,
+ -8.644037401179138e-17,
+ 2.236696376343387e-16,
+ 1.8719097262075014e-16,
+ 2.5890753172909763e-17,
+ -9.634586184711389e-17,
+ -9.479489819857696e-17,
+ 9.59529510561512e-17,
+ 3.8215744299949874e-16,
+ 2.737554237244245e-16,
+ -8.744333050451193e-17,
+ 1.0108147085397997e-16,
+ 2.240005098793599e-16,
+ 1.4111701250154652e-16,
+ -2.0989708043533074e-17,
+ -7.643148859989974e-17,
+ 3.101927297073854e-17,
+ -3.7223127564886245e-17,
+ 4.739744909928848e-17,
+ 6.87387089031566e-17,
+ 2.1407434252872354e-16,
+ 1.7941547486275168e-16,
+ 3.427836458419746e-16,
+ -3.570111523778867e-16,
+ 2.8409518138133735e-16,
+ -9.307849842752944e-16,
+ -3.2260043889568074e-16,
+ -1.1051132983708449e-16,
+ -4.119359450514077e-17,
+ 1.5000920408649157e-16,
+ 2.483196198884189e-16,
+ 3.459269321696761e-16,
+ -1.624582723054146e-16,
+ -1.6874484496081765e-17,
+ -5.204000028724235e-17,
+ -1.8336526228769239e-16,
+ -6.915229920943311e-17,
+ 2.934836813338142e-16,
+ 5.193039885607908e-16,
+ 2.602310207091825e-16,
+ -6.061424432423733e-17,
+ 2.2664748783952955e-17,
+ 3.4410713482205946e-16,
+ -1.0703717126436177e-16,
+ 3.46898869389426e-17,
+ -1.7776111363764562e-16,
+ -2.246415748540885e-16,
+ -8.867376166568455e-17,
+ -5.39321759384574e-17,
+ -3.639594695233322e-18,
+ 1.9306395496987663e-16,
+ 1.1933114311843115e-16,
+ 1.591495498552025e-16,
+ -2.0299012232051297e-16,
+ -4.6404832364224846e-17,
+ -2.7710550520526424e-17,
+ 5.006924247783477e-16,
+ 1.2705494208814505e-16,
+ -5.790264287871193e-18,
+ -2.646977960169688e-18,
+ -9.471218013732166e-17,
+ -1.5981129434524492e-16,
+ 1.0281855014034133e-16,
+ 1.9583501002192927e-17,
+ 1.6659417536817975e-16,
+ 1.1299287167474358e-16,
+ 5.97224402263286e-16,
+ -2.067124350770016e-16,
+ 2.331822146786985e-16,
+ -8.218039385714329e-17,
+ -1.050519377942345e-17,
+ 2.299562102897417e-16,
+ 1.9695170384887586e-16,
+ -1.2978463810957004e-16,
+ 1.282129949457193e-16,
+ -2.1159280069106445e-16,
+ -8.933550615572698e-17,
+ 2.4079227631418636e-16,
+ 2.7114980479488247e-16,
+ 1.6874484496081765e-17,
+ -9.89308012613421e-17,
+ 1.819797347616661e-17,
+ 1.2134739586152916e-16,
+ 7.974021105011186e-17,
+ 6.625716706549752e-17,
+ -2.7143931800927603e-16,
+ -1.2490427249550716e-17,
+ 4.549493369041652e-18,
+ 1.3665023719376017e-16,
+ -8.131185421396261e-17,
+ -1.8694281843698425e-17,
+ -3.027481041944081e-16,
+ 2.953034786814309e-16,
+ 7.750682339621868e-17,
+ 8.139457227521791e-17,
+ 3.821574429994987e-17,
+ 1.1672552418888912e-16,
+ 1.0616863162118109e-16,
+ -1.3681567331627078e-16,
+ -6.311388073779601e-17,
+ 3.8050308177439267e-17,
+ -2.5278639519620526e-16,
+ 5.360130369343619e-17,
+ -1.1361325713415835e-16,
+ 1.4789989352448135e-16,
+ -1.3367238698856927e-16,
+ 1.828069153742191e-16,
+ -2.043136113005978e-17,
+ -7.237830359838992e-18,
+ -1.3284520637601624e-16,
+ -2.845501307182415e-17,
+ -1.9455288007247208e-16,
+ 4.168990287267259e-16,
+ 1.0889005583648056e-15
+ ],
+ [
+ -4.765624303693826,
+ -3.8298482559833973,
+ 2.8220807399082726,
+ -2.746400425250949,
+ 1.70454330620401,
+ -0.09347995920859213,
+ -1.5472784968999052,
+ 2.611034134498711,
+ -1.9915622176871906,
+ -3.7963400724493748,
+ 1.293931829759596,
+ 0.9495700652104541,
+ 0.03196681484512416,
+ -1.653112905017321,
+ 2.692846389496162,
+ -1.869542408032751,
+ -3.3349501610010206,
+ 0.9257741054125574,
+ 0.8198604155461178,
+ 0.23501956880044197,
+ -1.8189584273448893,
+ 2.7344371830060705,
+ -2.8189059747506415,
+ 1.884734612038485,
+ -0.4167834784942146,
+ -0.7366457108357914,
+ -0.7704534164503627,
+ 3.3314216339109057,
+ 1.8524751461807822,
+ -2.781134129099238,
+ 1.726742665484433,
+ -0.21263182651669216,
+ -0.8511444415521441,
+ -1.085001497425329,
+ 3.6223629265298185,
+ 1.889018795934902,
+ -2.7103142059319825,
+ 1.6224504640533297,
+ -0.08915662770739198,
+ -1.631965797086516,
+ 2.6514029290365735,
+ -2.891394460224163,
+ 4.495846241569944,
+ 4.513814109169584,
+ 2.6492738677288115,
+ 2.5750329891213495,
+ 1.1775496508643064,
+ 1.057473327253002,
+ -1.5830354315666386,
+ 2.6286716924087483,
+ -2.9004663589647786,
+ 2.0917609708601352,
+ -0.7007911772860892,
+ -0.9971056108003741,
+ 1.4579604818375527,
+ 2.367240416732657,
+ -3.2915721412785497,
+ -1.8360564690702044,
+ 2.0052555776546037,
+ -0.5757140853296079,
+ -1.1861381967862294,
+ 1.5385678262299523,
+ 2.348568910436118,
+ -2.922943919882711,
+ -1.7888315524024836,
+ 1.8526265948442773,
+ -0.37489658303052353,
+ -1.299985121914729,
+ 2.524831987604781,
+ -0.700768736467809,
+ -0.9955163784367275,
+ 1.4555257525956642,
+ 2.174029634149189,
+ -3.025748173249146,
+ -1.8266120135860522,
+ 2.0037648484093826,
+ -0.4999246391869289,
+ -1.1843799146783665,
+ 1.593365701545594,
+ 2.6654066430838412,
+ -3.325773309141793,
+ -1.868315018294301,
+ 1.8513227352831214,
+ -0.37525019385825864,
+ -1.2981303989880768,
+ 2.522059371199509,
+ -2.9230150717561596,
+ 2.2997035077176524,
+ -2.73596945337115,
+ -3.482810838868611,
+ -5.039287531521686,
+ -4.139198930455539,
+ 2.6401976245950487,
+ -1.6100073713775647,
+ -0.017470613933942728,
+ 1.6411911992282353,
+ -2.716237699445032,
+ 2.834858751748523,
+ -1.519486898846008,
+ -3.231181876133451,
+ -1.074652545731068,
+ -0.27348021298449365,
+ 1.7427946893139679,
+ -2.760618244199122,
+ 2.790061262627537,
+ -1.3230294305304557,
+ -2.6905036780143368,
+ -1.1481595999490122,
+ -0.34949339127247836,
+ 1.8997238016781932,
+ -2.823163223583966,
+ 2.7541972025398684,
+ -1.7978055669855162,
+ 0.21272045214328544,
+ 1.3654441136230195,
+ -1.6253440860048776,
+ -2.5385558613641606,
+ 2.7738283256243723,
+ 1.7278557204473906,
+ -1.6968940365944092,
+ 0.00981469980049749,
+ 1.542305117192398,
+ -1.6939793621415673,
+ -2.917545654574076,
+ 2.8674579558037334,
+ 1.6734910570487567,
+ -1.526977353158219,
+ -0.11805684720040398,
+ 1.6447499675906794,
+ -2.7523737431919657,
+ 2.8144993242236565,
+ -2.0431711651156887,
+ 2.0603183357008135,
+ 2.1609255540472083,
+ 2.7772699698531893,
+ 2.818294774045721,
+ 3.9157892017830696,
+ 3.8676989717242423,
+ -2.7328927588507916,
+ 2.829840965397244,
+ -2.088971879345135,
+ 0.5005693171595409,
+ 1.1027960679426105,
+ -2.4291628444042583,
+ 1.9020363585095055,
+ 3.5305332751146508,
+ -1.7613624722856234,
+ -1.1783835324603733,
+ 0.37857321609764394,
+ 1.2198948630815745,
+ -2.5371568225743037,
+ 1.8948969523414012,
+ 3.2936942463467425,
+ -1.4103477089981022,
+ -1.0743111796470652,
+ 0.17442304855003257,
+ 1.4005413625701681,
+ -2.598204885958871,
+ 2.8676762149373443,
+ -2.2448157220766483,
+ 0.8159595667155181,
+ 0.4576784579972577,
+ 0.25916501448379736,
+ -3.267688855070524,
+ -1.7684995431876454,
+ 2.8506173228436524,
+ -2.1067172326249026,
+ 0.6193130294163898,
+ 0.5749818406425344,
+ 0.5434732371182374,
+ -3.777363680030044,
+ -1.9215704809872398,
+ 2.8083790183371926,
+ -2.016991999798242,
+ 0.49630298293523256,
+ 1.1949770064604683,
+ -2.4829493589100413,
+ 2.890401202303018,
+ -4.111391373889545,
+ -5.0779071702286265,
+ 1.2068565137148672e-15,
+ 1.929067906534916e-15,
+ 3.352149432371144e-16,
+ 6.375494571252461e-17,
+ -1.0963762031507535e-16,
+ -1.345822856623776e-16,
+ -3.383375500495021e-16,
+ -2.0836679630210765e-16,
+ -3.0804206011474746e-16,
+ 1.49719690872098e-17,
+ 8.850832554317395e-17,
+ 7.421464455825763e-16,
+ -6.778745119872062e-17,
+ 1.3396190020296283e-16,
+ -8.35452418678558e-18,
+ -4.2086949566698043e-16,
+ -1.0571368228427692e-16,
+ -1.3524403015242002e-16,
+ -1.464109684218859e-16,
+ 3.358353286965292e-16,
+ 6.799424635185887e-17,
+ -3.58996385848014e-17,
+ -1.1415092453231782e-16,
+ -3.1226068123876795e-17,
+ 2.2904631161593336e-16,
+ -9.744187615874665e-17,
+ -4.1607184811417286e-17,
+ -4.0531850015098356e-18,
+ 3.1341873409634214e-16,
+ 2.2317332926680687e-16,
+ -1.198584707589337e-16,
+ 9.792784476862155e-17,
+ 3.731825333532984e-16,
+ 2.8124140826802937e-18,
+ -2.1556326763131899e-16,
+ -2.928219368437718e-16,
+ -5.913307403988457e-17,
+ 2.5394444805377947e-17,
+ -7.320548421094295e-17,
+ 4.908903345195943e-16,
+ 8.280077931655806e-17,
+ 1.2763396851693217e-16,
+ 4.260807335260645e-16,
+ 7.113753267956038e-18,
+ -1.9331210915364254e-16,
+ -1.8446127659932517e-17,
+ -9.380228146351333e-17,
+ -4.375785440405516e-17,
+ 2.6717933785462794e-16,
+ 4.855550195686272e-17,
+ -1.678349462870093e-16,
+ 4.599124205794833e-17,
+ 1.7668577884132669e-16,
+ -5.889525961377557e-17,
+ -3.7553999809907456e-17,
+ -7.135983746918401e-17,
+ -6.774609216809297e-17,
+ 2.547716286663325e-17,
+ 6.667075737177403e-17,
+ -7.59972187783094e-17,
+ 3.1953987062923454e-16,
+ 4.6073960119203635e-17,
+ 2.220152764092326e-16,
+ -1.3979352352146168e-16,
+ -3.1093719225868305e-16,
+ -2.0034314436034328e-16,
+ -2.269783600845508e-16,
+ 1.6264438794323907e-17,
+ 1.0455562942670269e-16,
+ 2.8951321439355965e-18,
+ 1.0257039595657542e-17,
+ 1.798290651690282e-16,
+ 1.5021599923962983e-16,
+ -6.59262948204763e-17,
+ -2.6999175193730823e-16,
+ -1.709058543111124e-16,
+ 1.2877134185919258e-16,
+ 1.6758679210324338e-16,
+ 6.203854594147708e-17,
+ -5.132655700891536e-17,
+ -7.610061635487855e-18,
+ 5.128519797828771e-18,
+ -2.2127081385793487e-17,
+ 1.6791766434826462e-17,
+ -1.2922629119609675e-16,
+ -9.249947199874231e-17,
+ -2.10103875588469e-16,
+ -4.6404832364224846e-17,
+ 1.7300482511546571e-16,
+ -2.0191478752419403e-16,
+ -1.5195307852599116e-16,
+ 9.558071978050235e-16,
+ 3.178027913428732e-16,
+ -9.778825804025323e-17,
+ -1.0372844881414966e-16,
+ -7.055850625077326e-17,
+ -2.308454294482362e-16,
+ -5.624828165360588e-17,
+ -8.371067799036639e-17,
+ -1.4070342219527e-16,
+ 8.925278809447167e-17,
+ -9.107258544208833e-17,
+ -4.317882797526804e-17,
+ -1.873977677738884e-16,
+ -1.0745076157063828e-16,
+ 9.198248411589667e-17,
+ -9.7400517128119e-18,
+ 3.551189767266717e-17,
+ 6.807696441311418e-17,
+ 7.378451063973007e-17,
+ -4.31478087022973e-17,
+ 1.8702553649823953e-16,
+ 1.3301064249852685e-16,
+ -6.5843576759221e-17,
+ 3.0543644118520547e-17,
+ 1.2761328900161834e-16,
+ -9.876536513883149e-17,
+ -1.0910512279574434e-16,
+ 2.0464448354561902e-16,
+ 1.1249656330721175e-17,
+ -3.7223127564886245e-18,
+ 3.4782944757854814e-17,
+ 9.843449289381028e-18,
+ -7.502528155855961e-17,
+ 1.0211544661967125e-16,
+ 3.407984123718474e-17,
+ 7.6638283753038e-17,
+ 5.589672989327085e-17,
+ -1.5699888026256463e-16,
+ -1.6551884057186081e-16,
+ -8.619221982802547e-17,
+ -4.259980154648092e-17,
+ -2.8686623643339e-16,
+ -9.26442286059391e-18,
+ -1.4446709398238628e-16,
+ -1.1315830779725419e-16,
+ -3.970466940254532e-17,
+ -4.886776263810149e-16,
+ -3.370760996153588e-17,
+ 9.198248411589667e-17,
+ -1.191967262688913e-16,
+ 1.5900479324800572e-16,
+ 6.240043745946903e-17,
+ -2.080152445417726e-16,
+ -1.5402103005737373e-16,
+ -5.600012746983997e-17,
+ 1.3028094647710186e-16,
+ 2.4809214521996683e-16,
+ -1.668836885825733e-16,
+ 1.819797347616661e-18,
+ 1.6551884057186081e-16,
+ 3.963849495354108e-16,
+ 8.371067799036639e-17,
+ 4.776968037493734e-17,
+ -1.0439019330419208e-16,
+ 4.324603640003798e-18,
+ -5.376673981594679e-17,
+ -6.245213624775359e-17,
+ -2.425293556005477e-16,
+ -2.4732700315335524e-17,
+ -2.9695783990653694e-17,
+ -7.885099189161735e-17,
+ 6.396174086566286e-17,
+ -6.989159188190238e-17,
+ -8.751570880811032e-17,
+ -5.24846098664896e-17,
+ -2.0348643068804478e-16,
+ 1.01908651466533e-16,
+ -3.2226956665065953e-16,
+ 1.9901965538025843e-16,
+ -1.162188760637004e-16,
+ 2.127508535486387e-16,
+ -4.566036981292712e-17,
+ 6.27002904315195e-17,
+ -3.474158572722716e-17,
+ -9.340937067255064e-17,
+ -4.582580593543773e-17,
+ 2.4815418376590826e-18,
+ -8.05177608259117e-16,
+ 7.816856788626112e-18
+ ],
+ [
+ 2.892511615618827,
+ 2.242179069929899,
+ -2.064907283707807,
+ 2.8235650585706926,
+ -2.7459847334537812,
+ 1.624105845624728,
+ -0.09096332239087086,
+ -1.5519893298786092,
+ 1.7489141912298634,
+ 3.025528819985307,
+ -3.0353498048535483,
+ -1.7530219989968643,
+ 1.5209162576523094,
+ 0.03702781079256641,
+ -1.721036764289157,
+ 1.7369646225499478,
+ 2.794121041627887,
+ -2.521030161212526,
+ -1.6179818559777395,
+ 1.3428938655603435,
+ 0.24005864815250266,
+ -1.8213660139242325,
+ 2.7652860858766286,
+ -2.818903853290403,
+ 1.8812321658211508,
+ -0.33243227437964196,
+ -1.1200772362217846,
+ -2.71182571235071,
+ -1.3371384680154563,
+ 2.8000786320520556,
+ -2.7544555205610766,
+ 1.7229284541179337,
+ -0.21463797337759302,
+ -0.971879998656325,
+ -3.085557560943529,
+ -1.4449847267338098,
+ 2.8430760579965026,
+ -2.708906414225993,
+ 1.6205274198723634,
+ 0.009693746115465288,
+ -1.6346226801041985,
+ 2.6540222219557124,
+ -5.210392859616341,
+ -5.146203982545786,
+ -1.6372125203330923,
+ -1.483845975607136,
+ 1.7460030353802436,
+ 1.8926836176246136,
+ -0.048802756921559574,
+ -1.5876497900640605,
+ 2.630168912952549,
+ -2.8847511321532098,
+ 2.0903768467927177,
+ -0.6960695702892076,
+ -0.554520608870674,
+ -0.4927061042989848,
+ 3.586471186151413,
+ 1.819973306867526,
+ -2.85870742639068,
+ 2.001881003675584,
+ -0.4948607054838728,
+ -0.6886826252033854,
+ -0.6814486291741181,
+ 3.326515779350315,
+ 1.8411464897727976,
+ -2.806846930196657,
+ 1.8489844493475258,
+ -0.3724874627052078,
+ -1.3883756327957604,
+ 2.5265330125475822,
+ -0.6987385756115692,
+ -0.5612496381954237,
+ -0.44739619630287725,
+ 3.2999193570649483,
+ 1.8040982901472502,
+ -2.8586408129924794,
+ 1.947286156473243,
+ -0.4976280979243069,
+ -0.682511449755262,
+ -0.7563943526517831,
+ 3.7981072361249897,
+ 1.949070901100591,
+ -2.8069970911903557,
+ 1.8508092664839038,
+ -0.3753098831614357,
+ -1.385466430750188,
+ 2.5244560608606395,
+ -2.9255634747572516,
+ 4.04917519718272,
+ 5.011016360973675,
+ 4.87270599515062,
+ 3.9245029766997965,
+ -2.8953244146620247,
+ 2.6410833112220446,
+ -1.6110136152542236,
+ -0.11423321031091536,
+ 1.6428585881405813,
+ -2.7196406761805787,
+ 1.9800533890089569,
+ 3.8065179080217995,
+ -1.0886086909249624,
+ -0.8483081816820458,
+ -0.23763677862089083,
+ 1.746474472146396,
+ -2.788807999247467,
+ 1.8488265001297384,
+ 3.3297099018991547,
+ -0.7424761633745919,
+ -0.7215554082286018,
+ -0.44159247233134175,
+ 1.903336747983832,
+ -2.8255584057544247,
+ 2.7259686950608746,
+ -1.7991398165493213,
+ 0.2099965221878358,
+ 0.8344361421610438,
+ 0.953196892789593,
+ -3.3344895197147113,
+ -1.8719668876323163,
+ 2.68338801462131,
+ -1.632260294799519,
+ 0.006874285862983761,
+ 0.9464801824694171,
+ 1.2792622085099312,
+ -3.611452145740003,
+ -1.900411088762474,
+ 2.5999777569665063,
+ -1.5258218059913113,
+ -0.1185606857604812,
+ 1.7243789980498536,
+ -2.7549431953483916,
+ 2.8161706256011976,
+ -4.337903024188433,
+ -4.364110536390777,
+ -2.698086924346498,
+ -2.6314743491488652,
+ -1.4591094520703942,
+ -1.3452296997673034,
+ 1.6772463231672443,
+ -2.735743110369061,
+ 2.829918384599817,
+ -2.018586426229995,
+ 0.4978300005931926,
+ 1.1079919738423702,
+ -1.5253071557014326,
+ -2.518763215297069,
+ 3.201969591627524,
+ 1.8047494370989279,
+ -1.9253186674832723,
+ 0.3732516531148744,
+ 1.2944110397086108,
+ -1.5989186574573349,
+ -2.4789607372726747,
+ 2.8286807993157446,
+ 1.751284465591187,
+ -1.7670433671299954,
+ 0.16904198962299546,
+ 1.403287021232109,
+ -2.643588379618345,
+ 2.8680496997762788,
+ -2.242036009950753,
+ 0.6170065996815695,
+ 1.5925733073660822,
+ 2.3789980014124787,
+ 1.1134200974704211,
+ -2.6946236732158413,
+ 2.836280836333904,
+ -2.1035700049773056,
+ 0.5585197326648735,
+ 1.5956885162659833,
+ 2.9083914348468736,
+ 1.3169903143061494,
+ -2.7698081975314657,
+ 2.8077241185078425,
+ -2.015430839336269,
+ 0.3984789139721314,
+ 1.197776020455632,
+ -2.486502979083863,
+ 3.9797036568717816,
+ 4.8197997778272645,
+ -3.4741585727227157e-16,
+ -5.092123850876438e-16,
+ -4.703555758129653e-17,
+ 1.020740875890436e-16,
+ -1.2920561168078292e-16,
+ 6.981404369947554e-17,
+ 1.3524403015242002e-16,
+ 1.4475660719677984e-17,
+ -1.709782326147108e-16,
+ 1.8859717966209028e-17,
+ 3.2673634195844593e-17,
+ -2.8442605362635857e-16,
+ 1.3669159622438782e-16,
+ -1.4608009617686469e-16,
+ -1.1547441351240266e-16,
+ 1.6835193416985493e-16,
+ -4.5784446904810076e-17,
+ -1.156631140896413e-17,
+ 2.3525016621008107e-16,
+ -3.842253945308813e-17,
+ -3.0398887511323763e-18,
+ 4.2635990698280114e-17,
+ 1.604316798046597e-16,
+ 7.79204137024952e-17,
+ 1.8611563782443123e-18,
+ -1.3234889800848441e-17,
+ -6.26175723702642e-17,
+ -3.1267427154504446e-17,
+ -1.654361225106055e-19,
+ 1.3301064249852685e-16,
+ 2.5187649652239693e-16,
+ -1.0339757656912845e-16,
+ 7.01862749751244e-17,
+ 2.842192584732203e-16,
+ 1.1125579238838222e-16,
+ -2.597347123416507e-16,
+ 6.046690277762632e-17,
+ 9.098986738083303e-17,
+ -1.7006833394090247e-16,
+ -1.436812724004609e-16,
+ -7.502528155855961e-17,
+ 2.011703249728963e-16,
+ -4.220689075551823e-16,
+ 1.6317688546257005e-16,
+ 2.0464448354561902e-16,
+ -8.819813281346656e-17,
+ 1.4405350367610977e-16,
+ 2.5510250091135373e-16,
+ -2.9182932010870816e-16,
+ 2.129990077324046e-17,
+ 3.0473333766453535e-16,
+ 1.720328878957159e-16,
+ -1.049692197329792e-16,
+ 2.6469779601696883e-17,
+ -4.711620769102046e-16,
+ 1.4392942658422682e-17,
+ 1.196103165751678e-16,
+ 8.007108329513307e-17,
+ 1.1249656330721175e-17,
+ 2.3690452743518713e-16,
+ -2.765678378071048e-16,
+ -4.599124205794833e-17,
+ -1.7767839557639032e-16,
+ 1.406207041340147e-16,
+ 1.2771668657818747e-16,
+ 1.6883790277972984e-16,
+ -1.9662083160385465e-16,
+ -8.635765595053608e-17,
+ -1.8859717966209029e-16,
+ 2.0152187673323134e-17,
+ 1.4153060280782304e-16,
+ 6.766337410683766e-17,
+ -5.074753058012824e-17,
+ -7.845808110065466e-17,
+ 3.508900158449943e-16,
+ -4.235164736271501e-17,
+ -1.5236666883226767e-16,
+ -3.1536260853584175e-16,
+ -7.992632668793629e-17,
+ -3.9456515218779414e-17,
+ 3.077111878697263e-17,
+ 1.6345088904047824e-16,
+ 6.410649747285964e-18,
+ 1.681658185320305e-16,
+ 1.8280691537421912e-17,
+ 6.609173094298691e-17,
+ 1.0530009197800041e-16,
+ -4.9367172932930377e-17,
+ -3.265709058359353e-16,
+ 3.387614801134355e-16,
+ -4.0978527545876986e-16,
+ -4.2417821811719254e-16,
+ -2.2362827860371103e-16,
+ 1.1216569106219055e-16,
+ 6.26175723702642e-17,
+ -8.778454250719006e-18,
+ -5.736497548055247e-17,
+ -1.1894857208512538e-16,
+ 2.278055406971038e-16,
+ 1.0099875279272467e-16,
+ -1.250903881333316e-16,
+ 4.0416044729340927e-16,
+ 1.6328545291796764e-16,
+ 9.810362064878907e-17,
+ -4.011825970882184e-18,
+ -1.861156378244312e-16,
+ -3.374896899216353e-17,
+ 3.5072457972248373e-17,
+ 8.01021025681038e-17,
+ -6.7389370528929466e-18,
+ 7.262645778215583e-17,
+ 2.4815418376590826e-18,
+ -9.9178955445108e-17,
+ 1.6469165995930779e-16,
+ -1.8148342639413425e-16,
+ -1.1042861177582918e-16,
+ 3.805030817743927e-18,
+ 8.023651941764367e-17,
+ -5.157471119268127e-17,
+ 6.735318137713028e-17,
+ -3.201188970580217e-17,
+ 6.174903272708352e-17,
+ -3.8658285927665743e-16,
+ 6.046690277762632e-17,
+ -2.408129558295002e-16,
+ 7.610061635487855e-18,
+ -7.688126805797545e-17,
+ -7.899574849881413e-17,
+ -6.27002904315195e-17,
+ 8.817745329815274e-17,
+ -1.2126467780027386e-16,
+ -2.853773113307945e-18,
+ 3.7719435932418056e-17,
+ 1.6700776567445626e-16,
+ -7.444625512977249e-17,
+ -1.7900188455647516e-16,
+ 1.2043749718772083e-16,
+ 1.7666509932601286e-16,
+ 1.464109684218859e-16,
+ -3.044024654195142e-17,
+ 1.0174321534402239e-17,
+ -7.676236084492096e-17,
+ -5.521430588791459e-18,
+ 2.150669592637872e-18,
+ 5.025949401872196e-16,
+ -7.80031317637505e-17,
+ -7.196471329211341e-18,
+ 4.892773323251158e-17,
+ 9.082443125832243e-17,
+ 1.6212740006039342e-17,
+ -2.7055009885078153e-16,
+ -2.039827390555766e-16,
+ -6.121136532892405e-17,
+ -6.385834328909374e-17,
+ -4.567691342517819e-16,
+ 5.0871607672011194e-18,
+ -4.714929491552257e-17,
+ -5.368402175469149e-17,
+ -1.3301064249852685e-16,
+ -1.360298517343454e-16,
+ 4.4068047133762543e-17,
+ 2.510493159098439e-16,
+ -9.054525780158578e-17,
+ 7.055850625077326e-17,
+ 7.073635008247215e-16,
+ 8.321436962283457e-17,
+ 1.8905212899899445e-16,
+ -1.7875373037270926e-16,
+ 2.6420148764943704e-16,
+ -4.503998435351235e-17,
+ 9.959254575138452e-17,
+ 1.5418646617988433e-16,
+ 1.5021599923962983e-16,
+ 1.2471815685768275e-16,
+ -1.3979352352146168e-17,
+ 1.2631047953684733e-16,
+ -3.4245277359695346e-17,
+ 1.2449068218923067e-16,
+ -6.28657265540301e-17,
+ 2.455072058057386e-16
+ ],
+ [
+ -0.2879959686414253,
+ -0.13783747860430107,
+ 0.5183203699671957,
+ -1.532810454910843,
+ 1.9957195136173984,
+ -1.8392434996713416,
+ 1.0248451959886056,
+ 0.068213498348653,
+ -0.7341984149289413,
+ -1.0491971284417005,
+ 2.635268495524696,
+ 1.394660244225348,
+ -1.7986214065582011,
+ 0.9482955896058208,
+ 0.21114180457083154,
+ -0.7974061735115273,
+ -1.0765730832319849,
+ 2.282454432004144,
+ 1.3228187368514523,
+ -1.7263972733647923,
+ 0.8196309005167808,
+ 0.2966853474717241,
+ -1.4208575392113556,
+ 1.9650937716033792,
+ -1.9279829801044692,
+ 0.8414314957096096,
+ 1.7578582907037066,
+ 0.985225334300475,
+ 0.3537338430446972,
+ -1.481860370606672,
+ 1.9935934769776154,
+ -1.874267182780679,
+ 0.7796273753501347,
+ 1.7874139316520041,
+ 1.2268403310038924,
+ 0.45329478643213583,
+ -1.5775914284920556,
+ 2.005167476339624,
+ -1.8379150893546254,
+ 0.9638307358998279,
+ 0.1366314594620639,
+ -1.2487636712433388,
+ 3.091918180167847,
+ 3.007629851802282,
+ 0.19324896472850145,
+ 0.0656743800902579,
+ -2.7255267787690602,
+ -2.8166427215785053,
+ 0.9995197073264547,
+ 0.0975573063949893,
+ -1.2159521055816442,
+ 1.9096900580247496,
+ -1.9869955955664993,
+ 1.3663634067319195,
+ -0.2874155768371038,
+ -0.9299707154943121,
+ -2.004350097364564,
+ -0.9128131933148473,
+ 1.9368518192417037,
+ -1.9628452640281344,
+ 1.2589584387951571,
+ -0.1856679380179537,
+ -0.7037013834711978,
+ -1.9409358025085035,
+ -0.9666051170264502,
+ 1.971677200729707,
+ -1.9177730317348431,
+ 1.1892270957688635,
+ -0.06348778187800264,
+ -1.082320305715851,
+ 1.824649860540108,
+ -0.27826543056397735,
+ -0.859916093113266,
+ -1.8460421431562188,
+ -0.9007259821890564,
+ 1.9377669527833186,
+ -1.948545186569645,
+ 1.2610461868427065,
+ -0.2272008754328878,
+ -0.8180045363848781,
+ -2.223430580125635,
+ -1.0392522752528381,
+ 1.9727162752805008,
+ -1.9196606569566448,
+ 1.1913182132517603,
+ -0.06508360812319477,
+ -1.0817175366773455,
+ 1.8252647291992636,
+ -2.87999026576866,
+ -3.5031029181014235,
+ -2.366277226375458,
+ -1.8551119862636463,
+ 1.5765862825601156,
+ -2.040678777409569,
+ 1.7896632146515623,
+ -0.9554294974868835,
+ -0.20990132349792218,
+ 1.2543900494665043,
+ -1.294018362387136,
+ -2.2925202526809265,
+ 1.9135879056973812,
+ 1.1362414143707538,
+ -0.8768244865076458,
+ -0.2974325861556318,
+ 1.3634968372450722,
+ -1.2685170661291059,
+ -2.0908961825512486,
+ 1.566460799934523,
+ 1.0400209399493392,
+ -0.7460925800855944,
+ -0.4386500386773506,
+ 1.425530079231479,
+ -2.018858157523333,
+ 1.8585008177849285,
+ -1.1503605963232246,
+ 0.07462558208132197,
+ 0.5144125809030078,
+ 2.0438437186439917,
+ 1.0400110551234782,
+ -2.0316677610800835,
+ 1.7988567840121885,
+ -1.0285309015226987,
+ -0.009509752790287755,
+ 0.38237606721481093,
+ 2.299670365180593,
+ 1.1065492878659282,
+ -2.046108120883904,
+ 1.7560673656463532,
+ -0.9527564609244564,
+ -0.27973953550889624,
+ 1.3072376661256306,
+ -1.9672025829347344,
+ 3.6346278100256897,
+ 3.6011319252477896,
+ 1.3371561165299546,
+ 1.2404593408546434,
+ -0.8061921406729537,
+ -0.9083550071196526,
+ -0.23792659367411803,
+ 1.2757673962972487,
+ -1.9537284872399356,
+ 1.9268009098216332,
+ -1.312251659319819,
+ 0.21737061203650002,
+ 0.5363910715302678,
+ 0.6404939705048959,
+ -2.530483469070387,
+ -1.3094549989489839,
+ 1.899895267829925,
+ -1.2420702156775274,
+ 0.07576964088092646,
+ 0.6245504222057333,
+ 0.7443284242060345,
+ -2.3271829477182324,
+ -1.314201510536602,
+ 1.8462051072153287,
+ -1.1259808339057178,
+ -0.011849775021437333,
+ 1.147291871582577,
+ -1.8990640337197442,
+ 1.9822592662704872,
+ -0.9893084448038125,
+ -1.9731179854744287,
+ -0.6471262322016227,
+ -0.1523409949193344,
+ 1.2183413494246473,
+ -1.9475647452299936,
+ 1.9509524887805703,
+ -0.9966636977175027,
+ -2.155598222638599,
+ -0.928020516448597,
+ -0.28736687748201467,
+ 1.3280722376900604,
+ -1.973876294372008,
+ 1.925898335439269,
+ -1.2572823314917458,
+ 0.1490953413494487,
+ 0.9544720210262811,
+ -1.9353422734882169,
+ -2.2818273195427765,
+ 9.92616735063633e-18,
+ 4.0631111688604714e-16,
+ -4.946540063067105e-17,
+ -7.775497757998459e-17,
+ 1.9221609484200978e-17,
+ -3.0605682664462024e-17,
+ -1.852884572118782e-17,
+ 2.1465336895751065e-17,
+ 2.2027819712287125e-16,
+ -4.8720938079373324e-17,
+ -5.9557004103817985e-18,
+ 3.685089628923738e-17,
+ -1.6264438794323904e-16,
+ -3.157761988421183e-17,
+ 1.761894704737949e-17,
+ 1.3400325923359047e-17,
+ 4.619803721108659e-17,
+ 2.7669191489898773e-17,
+ -1.2097516458588028e-17,
+ 1.5137405209720406e-17,
+ 2.2333876538931747e-18,
+ 4.8183270681213856e-17,
+ -8.974909646200349e-17,
+ -7.184063620023045e-17,
+ -1.852884572118782e-17,
+ 1.2506970861801778e-16,
+ 2.249931266144235e-17,
+ 2.6883369907973396e-17,
+ -1.3342423280480336e-16,
+ -2.1117921038478794e-16,
+ -1.6411263353052067e-16,
+ 9.198248411589667e-17,
+ -2.3723539968020834e-16,
+ -1.937670584905467e-16,
+ -1.9083056731598346e-16,
+ 3.5634940788784427e-16,
+ -4.954811869192635e-17,
+ -3.8918847820619946e-17,
+ 1.426266171194558e-16,
+ -5.22829845921798e-17,
+ 1.1018045759206327e-16,
+ -2.158114218150849e-16,
+ 1.833032237417509e-16,
+ -8.327640816877605e-17,
+ -1.0521737391674511e-16,
+ 2.636224612206499e-16,
+ -7.968851226182729e-17,
+ 2.833920778606673e-16,
+ 1.7536228986124184e-16,
+ 2.7131524091739305e-17,
+ -1.9083056731598346e-16,
+ -1.3629868543342514e-16,
+ 7.849944013128231e-17,
+ 1.6320273485671234e-16,
+ 1.6766951016449869e-16,
+ -1.6760747161855723e-17,
+ 1.394833307917543e-17,
+ -8.97490964620035e-18,
+ 2.812414082680294e-17,
+ 5.768550796791677e-17,
+ 1.8553661139564408e-16,
+ 8.238718901028154e-17,
+ 7.568702604860202e-17,
+ -2.9488988837515437e-17,
+ -1.350682542722525e-16,
+ -1.1561917011959944e-16,
+ 2.0042586242159858e-16,
+ -1.9935052762527964e-17,
+ 2.448454613156962e-16,
+ 1.943874439499615e-18,
+ 8.173578427789603e-17,
+ 1.0687173514185116e-16,
+ 1.3090133193651663e-16,
+ 1.4940949814239062e-17,
+ -5.868846446063731e-17,
+ -2.7028126515170176e-17,
+ 9.674911239573349e-17,
+ 2.264200131710775e-16,
+ 3.90429249125029e-17,
+ 9.057627707455652e-17,
+ -2.4070955825293102e-17,
+ 5.172980755753496e-17,
+ -3.6354587921705566e-17,
+ -1.6982017975713656e-16,
+ -1.050519377942345e-17,
+ -1.2118195973901854e-17,
+ 3.7822833508987184e-17,
+ 1.1158666463340343e-16,
+ 5.413069928547013e-16,
+ -2.506357256035674e-16,
+ -7.560430798734672e-17,
+ 6.385834328909374e-17,
+ 3.110199103199384e-17,
+ -1.0283922965565515e-16,
+ 1.5178764240348058e-17,
+ -6.956588951570963e-17,
+ -2.39882377640378e-17,
+ 1.1005638050018032e-16,
+ -1.0017157218017164e-16,
+ -2.522900868286734e-17,
+ 6.749793798432706e-17,
+ -2.934009632725589e-16,
+ -2.4141266177360113e-16,
+ -7.84787606159685e-18,
+ 1.952146245625145e-17,
+ 1.4103429444029122e-17,
+ 3.5072457972248373e-17,
+ -3.738856368739685e-17,
+ 6.452008777913616e-17,
+ -1.0670629901934055e-17,
+ -8.457921763354707e-17,
+ 9.355412727974742e-17,
+ 6.096321114515814e-17,
+ -1.3404461826421813e-16,
+ 8.416562732727055e-17,
+ 5.492479267352103e-17,
+ 7.870623528442057e-17,
+ -1.8280691537421912e-17,
+ 3.9938606419532975e-17,
+ -8.40415502353876e-17,
+ 2.134125980386811e-17,
+ 3.987010552505593e-17,
+ 2.157287037538296e-16,
+ -7.982292911136717e-18,
+ 1.857020475181547e-16,
+ 1.7594131629002896e-16,
+ 5.583469134732937e-17,
+ 7.15511229858369e-17,
+ 6.735318137713028e-17,
+ -8.97490964620035e-18,
+ 9.429858983104514e-17,
+ 3.28390703183552e-17,
+ 2.216844041642114e-16,
+ -2.097730033434478e-16,
+ 1.0724396641750003e-16,
+ 1.019913695277883e-16,
+ -1.2519378570990074e-16,
+ -5.83575922156161e-17,
+ -6.997947982198614e-17,
+ 3.7822833508987184e-17,
+ -7.16338410470922e-17,
+ 8.784658105313153e-17,
+ -9.326461406535387e-18,
+ 1.3863547066388744e-16,
+ -3.338500952264019e-16,
+ -3.250819807333399e-17,
+ -6.060972068026243e-17,
+ -6.457178656742072e-17,
+ -5.012714512071347e-17,
+ 5.16781087692504e-17,
+ 2.5295183131871586e-16,
+ 2.574186066265022e-16,
+ 4.1855338995183194e-17,
+ 8.561319339923835e-17,
+ 3.4940109074239884e-16,
+ -5.649643583737179e-17,
+ 9.247879248342848e-17,
+ 1.0008885411891633e-17,
+ 3.809166720806692e-17,
+ 1.110076382046163e-16,
+ -6.981404369947554e-17,
+ -1.9289851884736603e-16,
+ 6.983472321478936e-17,
+ -6.203854594147708e-20,
+ -3.326920423688277e-16,
+ -4.7232012976777874e-17,
+ -1.5582014788967656e-16,
+ 6.179039175771117e-17,
+ -2.1821347676575646e-16,
+ 9.185840702401371e-17,
+ 5.511090831134546e-17,
+ -1.8268542322175037e-16,
+ -4.8591691108661913e-17,
+ 3.577556149291845e-18,
+ -3.548604827852489e-17,
+ -1.6675961149069035e-16,
+ -5.790264287871193e-18,
+ -1.2192642229031628e-16,
+ 8.71021185018338e-17,
+ 6.600901288173161e-17
+ ],
+ [
+ -4.125547190038162,
+ -3.551697264243263,
+ 1.5496127767089098,
+ 1.0561266659335973,
+ -3.3166981752533875,
+ 4.5306773023124,
+ -4.177561915144405,
+ 2.4706431088266423,
+ -0.17494960238360754,
+ -1.2176212740687387,
+ -5.333023183557732,
+ -2.5527828294582906,
+ 4.556580334928272,
+ -4.091442223156239,
+ 2.193933413472048,
+ 0.10880685425059454,
+ -0.6787480532592302,
+ -4.817490699117796,
+ -2.5035493944713836,
+ 4.580361757597293,
+ -3.936296201761768,
+ 2.019703601198731,
+ 0.6997833859863875,
+ -3.0559669862297576,
+ 4.425432959204789,
+ -2.873524135401803,
+ -5.220668683643247,
+ 0.905674804478508,
+ 0.9934833022984032,
+ 0.8928929418821094,
+ -3.2880630346465054,
+ 4.498434375991514,
+ -2.8341320402878316,
+ -5.615507042071517,
+ 0.5921497419793286,
+ 0.7794330139074515,
+ 1.2059051748552774,
+ -3.4241459380152555,
+ 4.5316985690009135,
+ -4.109769650100394,
+ 2.3390628949904575,
+ 0.19167639031257788,
+ -3.225357929101883,
+ -2.994355967875643,
+ 2.2097832747303388,
+ 2.4561440430793278,
+ 8.077093766878312,
+ 8.184836903745515,
+ -4.150004624000771,
+ 2.4145168121553766,
+ 0.09963266321962169,
+ -2.705353567938528,
+ 4.285174150116357,
+ -4.479197544421182,
+ 2.2098259198975807,
+ 4.757200172609493,
+ 1.7068261005424432,
+ 0.4341525430506501,
+ -2.8612703321550503,
+ 4.352271308273132,
+ -4.399934024161581,
+ 2.035127771789059,
+ 4.167186886482755,
+ 1.9221247171181373,
+ 0.6179893648721652,
+ -3.1052510758930727,
+ 4.442288112094211,
+ -4.340584944073314,
+ 2.715240296386272,
+ -0.2634148806380919,
+ -2.277110604508275,
+ 2.595606104098072,
+ 4.383712168627782,
+ 1.5779337980199009,
+ 0.4132598834029808,
+ -2.8650612314009853,
+ 4.393356759042327,
+ -4.403434907769243,
+ 2.195728908718299,
+ 4.77825055950671,
+ 2.2248408584138843,
+ 0.720387738355911,
+ -3.1091792926154134,
+ 4.446723790038495,
+ -4.343981725299288,
+ 2.7164222489469307,
+ -0.2621173440459259,
+ -2.2805204180267795,
+ 4.482328350722599,
+ 5.294406476576012,
+ 0.8406465976342832,
+ 0.4671128247562823,
+ -1.3062653941934532,
+ 3.4948688851637226,
+ -4.5500061651438575,
+ 4.066476829096779,
+ -2.2517467615743794,
+ -0.2949544827217116,
+ 1.7185061630109975,
+ 2.495530850425722,
+ -5.9234310020806955,
+ -3.145924449617655,
+ 3.9722455168558417,
+ -2.0753366566386475,
+ -0.6152245264192344,
+ 1.8541874516960741,
+ 2.537230885642365,
+ -5.12224959028769,
+ -2.980497540881463,
+ 3.8014061514320256,
+ -1.7833231911935634,
+ -0.8089813040991292,
+ 3.248620017968618,
+ -4.489396890097941,
+ 4.277634803103682,
+ -1.8432503185044211,
+ -3.8829354300174868,
+ -2.3336581996491046,
+ -0.8653247189079581,
+ 3.3844053686433155,
+ -4.544766069433995,
+ 4.150945259379814,
+ -1.7008068495436939,
+ -3.935605270258907,
+ -2.883965609311989,
+ -1.0886010839736662,
+ 3.593173923438471,
+ -4.567669982557149,
+ 4.063315652295072,
+ -2.1122533009972795,
+ -0.4490845506073011,
+ 2.868372233942158,
+ -7.074418133565037,
+ -6.887485861781904,
+ -0.5410560974392659,
+ -0.2537990996194029,
+ 6.021536241727336,
+ 6.229496783999774,
+ -2.1977851450342736,
+ -0.35403340959237534,
+ 2.787807143273843,
+ -4.368670636241213,
+ 4.4187504966334705,
+ -3.037684625298832,
+ 0.5829814749073249,
+ 1.9783824428655343,
+ 4.5926884778273385,
+ 2.104786948739874,
+ -4.424269370798505,
+ 4.361550880111479,
+ -2.789603877918284,
+ 0.35323075435682083,
+ 1.4752004073997036,
+ 4.437010389294469,
+ 2.2227294532392725,
+ -4.497334650841355,
+ 4.251821286998257,
+ -2.6313423053084026,
+ 0.008733637531633597,
+ 2.4911328464582185,
+ -4.187480415814939,
+ 2.962678255333608,
+ 5.243348939154794,
+ -1.6940364834653268,
+ -1.4162303936916711,
+ -0.18724458305813904,
+ 2.7548383286994125,
+ -4.307999388491174,
+ 3.100677653678983,
+ 5.993337055661477,
+ -1.5041069852427904,
+ -1.2313307294214584,
+ -0.5078644152182776,
+ 2.911901689914111,
+ -4.370708554303079,
+ 4.373902587855024,
+ -2.9201708171713707,
+ 0.5184819088566858,
+ 0.6979118026219989,
+ 0.588224169735295,
+ 1.306779931711273e-15,
+ 1.3221654911047592e-15,
+ 3.59823566460567e-16,
+ 1.2304311611726287e-16,
+ -1.768512149638373e-16,
+ -1.8493690545154314e-16,
+ -4.3409404571017196e-16,
+ -1.462455322993753e-16,
+ -6.395760496260009e-16,
+ 2.0522350997440614e-16,
+ 1.863637920081971e-16,
+ 5.19634860805812e-16,
+ 4.255017070972774e-16,
+ 2.8239946112560365e-16,
+ -1.167979024924875e-16,
+ -3.348737312344363e-16,
+ -1.1191753687842464e-16,
+ -2.2573758916572125e-16,
+ -8.87151206963122e-17,
+ 5.699274420490361e-17,
+ 7.213014941462401e-17,
+ -9.330597309598151e-17,
+ 1.137373342260413e-16,
+ 3.0647041695089675e-17,
+ 1.7453510924868881e-16,
+ -4.738090548703743e-16,
+ -1.1282743555223297e-16,
+ -9.115530350334364e-17,
+ 4.0416044729340927e-16,
+ 4.910971296727325e-16,
+ 3.3517358420648676e-16,
+ 1.4723814903443893e-17,
+ 5.929230630780102e-16,
+ 3.3757240798289054e-16,
+ 1.559235454662457e-16,
+ -1.0766582852990208e-15,
+ 3.3087224502121103e-18,
+ 3.3118243775091846e-17,
+ -3.5304068543763216e-16,
+ 4.2475724454597966e-16,
+ 2.249931266144235e-17,
+ 4.948194424292212e-16,
+ 2.1771393722395686e-16,
+ 1.2519378570990074e-16,
+ 7.279189390466644e-18,
+ -3.963022314741555e-16,
+ 8.027787844827132e-17,
+ -1.0199550543085108e-15,
+ 2.2003004293910533e-17,
+ 6.2865726554030096e-18,
+ 3.0812477817600276e-16,
+ 2.804969457167317e-16,
+ -1.4835484286138551e-16,
+ -4.776140856881182e-16,
+ -5.391563232620634e-16,
+ -4.979627287569226e-17,
+ -8.180816258149442e-17,
+ -1.8549525236501643e-16,
+ 9.744187615874665e-17,
+ 2.961306592939839e-17,
+ -4.7562885221799085e-17,
+ -4.135903062765138e-17,
+ 7.4859845436049e-17,
+ -6.824240053562478e-17,
+ -5.045801736573468e-17,
+ 7.738274630433573e-17,
+ -5.935848075680527e-16,
+ 1.560166032851579e-16,
+ -6.217089483948555e-16,
+ -2.450108974382068e-16,
+ -1.0434883427356443e-16,
+ -6.27830084927748e-17,
+ -6.799424635185887e-17,
+ 3.192917164454687e-17,
+ -4.3344264097778645e-16,
+ -2.4360469039686665e-16,
+ -1.0745076157063828e-16,
+ -3.2301402920195726e-16,
+ -2.402959679466545e-17,
+ -2.3288236170664803e-16,
+ 1.2970192004831474e-16,
+ 2.0844951436336295e-16,
+ -8.979045549263114e-17,
+ 2.4004781376288863e-16,
+ -9.140345768710955e-17,
+ -6.534726839168919e-17,
+ -1.4442573495175863e-16,
+ -1.1712877473750872e-16,
+ -7.952514409084807e-16,
+ -8.151864936710087e-17,
+ -1.496369728108427e-16,
+ 3.720658395263518e-16,
+ 9.89308012613421e-17,
+ -5.1636749738622746e-17,
+ -2.0737417956704401e-16,
+ -7.79204137024952e-17,
+ 2.4195032917176056e-17,
+ -3.654483946259276e-16,
+ 3.273980864484883e-16,
+ -2.4458696737427334e-17,
+ 6.948317145445432e-17,
+ 5.724089838866952e-16,
+ 3.397230775755284e-16,
+ -1.908719263466111e-16,
+ -3.145767869539164e-16,
+ -1.861156378244312e-16,
+ -4.144174868890668e-17,
+ 1.5236666883226767e-16,
+ -1.375601358675685e-16,
+ 1.346650037236329e-16,
+ 1.4708305266958523e-16,
+ 1.7122638679847673e-17,
+ 9.125870107991277e-17,
+ 1.878940761414202e-16,
+ -1.257314531080602e-16,
+ -1.3698110943878138e-16,
+ -3.4030210400431554e-16,
+ -4.7562885221799085e-17,
+ 3.7192108291915507e-17,
+ 3.1945715256797924e-16,
+ 1.2093380555525265e-16,
+ -5.889525961377557e-17,
+ -5.183113718257271e-16,
+ -3.4493431543461254e-17,
+ -3.4691954890473976e-16,
+ -3.1631386624027773e-16,
+ -1.134891800422754e-16,
+ 9.885842295774371e-17,
+ -1.2475434600948194e-16,
+ -8.437242248040882e-18,
+ -1.5484821066992676e-16,
+ -2.3227231600489017e-16,
+ -5.482553100001467e-16,
+ 2.474924392758659e-16,
+ -4.442011588198043e-16,
+ -5.132655700891536e-17,
+ 1.8502996327045535e-16,
+ 4.017512837593486e-16,
+ 6.170767369645586e-17,
+ 8.759842686936562e-17,
+ 1.5683344414005402e-16,
+ 1.0778163381565949e-16,
+ 5.500751073477633e-18,
+ -5.3353149509670285e-16,
+ 4.566036981292713e-16,
+ 3.89602068512476e-17,
+ 1.3789100811258971e-16,
+ 1.6063847495779795e-16,
+ 1.952146245625145e-17,
+ -1.4558378780933287e-16,
+ -3.5086352021599845e-16,
+ 1.462455322993753e-16,
+ 8.602678370551488e-18,
+ -1.771820872088585e-16,
+ -6.071505696139222e-16,
+ 1.452942745949393e-16,
+ -1.770166510863479e-16,
+ -1.035216536610114e-16,
+ -2.3942742830347386e-16,
+ -1.6183788684599984e-16,
+ 1.119588959090523e-16,
+ 1.1456451483859433e-16,
+ -1.6121750138658507e-16,
+ -1.2631047953684733e-16,
+ 4.584234954768879e-16,
+ 1.0399728251322939e-16,
+ 1.0536213052394189e-16,
+ -6.948317145445432e-17,
+ 2.504702894810568e-16,
+ -1.4152026305016612e-16,
+ -8.714347753246145e-17,
+ 3.675577051879378e-16,
+ 1.19941188820189e-17,
+ -3.7553999809907456e-17,
+ 4.206213414832145e-17,
+ 1.5369015781235252e-16,
+ -3.8877488789992295e-17,
+ 2.1787937334646746e-16,
+ -9.411661009628349e-16,
+ -8.329708768408988e-16
+ ],
+ [
+ -2.318102055222782,
+ -2.030635510690466,
+ 0.7357206668861828,
+ 1.0990430630190844,
+ -2.575820424215464,
+ 3.225747516387915,
+ -2.7702219768126786,
+ 1.4166405855329747,
+ 0.13104063393128804,
+ -0.3778855151693101,
+ -3.951936715624716,
+ -1.9340119581509156,
+ 3.2281799884529265,
+ -2.695398888641411,
+ 1.2098286060042658,
+ 0.31685147563114285,
+ -0.054451982686106626,
+ -3.5387604584186536,
+ -1.8824360568379244,
+ 3.2189207657798034,
+ -2.5641190630580475,
+ 1.0806867247746992,
+ 0.8553602258329435,
+ -2.413815769200434,
+ 3.1924677720573533,
+ -1.9456086012067138,
+ -3.6075998995453324,
+ 0.21600533637432062,
+ 0.46789035265602097,
+ 0.9877339494426003,
+ -2.5582204662490384,
+ 3.2182481203508284,
+ -1.9029681472070346,
+ -3.8475983238432416,
+ -0.04386528068212375,
+ 0.31124456065895384,
+ 1.2007561483110654,
+ -2.6415850318493517,
+ 3.2259216479909147,
+ -2.7112378638071766,
+ 1.3180480116527282,
+ 0.5039276517578217,
+ -2.865988953845477,
+ -2.7042948679213827,
+ 1.2292634548447798,
+ 1.4136788212069684,
+ 5.583311153945913,
+ 5.675182132419715,
+ -2.7460746215097913,
+ 1.3745304030922885,
+ 0.43974514134984544,
+ -2.191429978500989,
+ 3.1292867290071067,
+ -3.0548745900941574,
+ 1.3819770333975672,
+ 3.073915816610364,
+ 1.6335909563122344,
+ 0.5435343804649747,
+ -2.290915985630574,
+ 3.161010914259328,
+ -2.9742548888134865,
+ 1.247621817229213,
+ 2.657435477493547,
+ 1.7391941316655173,
+ 0.6679936834377449,
+ -2.4446852738436675,
+ 3.1990620823879965,
+ -2.9176476395707467,
+ 1.6013357781875892,
+ 0.18524595576310307,
+ -1.9142945766723236,
+ 1.9345796392823846,
+ 3.11945201717211,
+ 1.5080192437774114,
+ 0.5274914683579677,
+ -2.293416861674398,
+ 3.1804595826489512,
+ -2.9769572464415286,
+ 1.3546135950530542,
+ 3.0506382689411504,
+ 2.0057322993144466,
+ 0.75087659886136,
+ -2.4473055545026376,
+ 3.202247058680972,
+ -2.920290743456261,
+ 1.6025299554566335,
+ 0.18581191799844032,
+ -1.9164780643346015,
+ 3.532805146204195,
+ 4.205043643819413,
+ 1.2426501227372106,
+ 0.8621088725191215,
+ -1.268457807005761,
+ 2.6847478509999663,
+ -3.230691695947185,
+ 2.6738725992716414,
+ -1.2531963437282765,
+ -0.5754409105557952,
+ 1.4147685717373037,
+ 2.185779145421648,
+ -4.067521090729241,
+ -2.198353592161583,
+ 2.5940737370489817,
+ -1.122149926231092,
+ -0.7969507435178546,
+ 1.4859149453153673,
+ 2.146088532127465,
+ -3.4893152862018755,
+ -2.0711693525225017,
+ 2.4525586814767295,
+ -0.9069438779511931,
+ -0.9300294626907234,
+ 2.533998992332856,
+ -3.217165916306895,
+ 2.859124392276781,
+ -1.1002810800854317,
+ -2.431288745588152,
+ -2.0122463904136936,
+ -0.8357716624090773,
+ 2.61758250180188,
+ -3.2303515714566697,
+ 2.746636007057765,
+ -0.9903584497666231,
+ -2.420108665536396,
+ -2.414926542358187,
+ -0.9873159972158634,
+ 2.743896926472612,
+ -3.2303437144156257,
+ 2.671177670760016,
+ -1.1495322940608403,
+ -0.6822578581015063,
+ 2.2954775323411907,
+ -5.286346147446728,
+ -5.166519791996984,
+ -0.7390825335438876,
+ -0.5401554153432251,
+ 3.773059998770918,
+ 3.9267028374924493,
+ -1.212725156198327,
+ -0.6167449072602257,
+ 2.2441672187160213,
+ -3.1683437395207807,
+ 2.992963414422015,
+ -1.8479531512366965,
+ 0.17010843362121986,
+ 0.9520412372825953,
+ 3.486242707261929,
+ 1.6452854329438333,
+ -3.1920631795961985,
+ 2.9374685826404754,
+ -1.6578709569882542,
+ 0.00791553641932171,
+ 0.6251677477620483,
+ 3.330736466582417,
+ 1.7156784882906486,
+ -3.217889522633355,
+ 2.8362964400764694,
+ -1.5378101566010307,
+ -0.3640481932164558,
+ 2.0535192759551046,
+ -3.0801338441059523,
+ 2.044650506105603,
+ 3.689217443212745,
+ -0.7838623511647127,
+ -0.778776684552801,
+ -0.5008737867340326,
+ 2.2231536586493172,
+ -3.140373371109288,
+ 2.1275876472778017,
+ 4.185223505527207,
+ -0.5837044630375445,
+ -0.6278922326041899,
+ -0.7231994293506978,
+ 2.3230398053570713,
+ -3.169248228275486,
+ 2.949314588120421,
+ -1.7576362071035339,
+ -0.005071530552200586,
+ 1.0223961952825826,
+ 1.0683941533445673,
+ 8.039368373402875e-16,
+ 7.660519652853588e-16,
+ 2.1837568171399928e-16,
+ 8.849798578551704e-17,
+ -1.2945376586454883e-16,
+ -1.225808158588995e-16,
+ -2.714806770399037e-16,
+ -7.17992771696028e-17,
+ -4.402255220007213e-16,
+ 1.406207041340147e-16,
+ 1.3201802576346322e-16,
+ 2.6863724368425265e-16,
+ 3.040715931744929e-16,
+ 1.7426627554960908e-16,
+ -8.908735197196107e-17,
+ -1.522219122250709e-16,
+ -5.910205476691383e-17,
+ -1.528629771997995e-16,
+ -3.5982356646056704e-17,
+ -1.323488980084844e-18,
+ 4.011115112543271e-17,
+ -4.4585035016608186e-17,
+ 9.388499952476863e-17,
+ 2.3574647457761286e-17,
+ 1.1051132983708449e-16,
+ -2.9464173419138846e-16,
+ -7.957477492760125e-17,
+ -6.633988512675282e-17,
+ 2.2821913100338034e-16,
+ 2.9985297205047253e-16,
+ 2.5212465070616284e-16,
+ 6.617444900424221e-18,
+ 3.3418096747142313e-16,
+ 2.451763335607174e-16,
+ 1.1051132983708449e-16,
+ -7.140223047557734e-16,
+ 1.2490427249550716e-17,
+ 2.938559126094631e-17,
+ -2.5824578723905524e-16,
+ 2.276401045745932e-16,
+ 2.8289576949313546e-17,
+ 3.2557828910087164e-16,
+ 1.163015941249557e-16,
+ 9.82070182253582e-17,
+ 3.298124198613775e-17,
+ -2.349606529956875e-16,
+ 7.198539280742723e-17,
+ -6.641846728494535e-16,
+ -1.0836066024444661e-17,
+ 2.067951531382569e-18,
+ 2.388070428440591e-16,
+ 1.9265036466360012e-16,
+ -1.2117161998136164e-16,
+ -3.1035816582989593e-16,
+ -4.2120036791200164e-16,
+ -3.176373552203626e-17,
+ -3.594099761542905e-17,
+ -1.3889913448413872e-16,
+ 7.560430798734672e-17,
+ 7.874759431504822e-17,
+ -6.485096002415737e-17,
+ -3.192917164454687e-17,
+ 2.7379678275505213e-17,
+ -2.1093105620102203e-17,
+ -8.602678370551488e-18,
+ 8.294553592375484e-17,
+ -4.0920624902998274e-16,
+ 9.624246427054476e-17,
+ -4.511856651170489e-16,
+ -1.9579365099130163e-16,
+ -3.399712317592944e-17,
+ -3.58169205235461e-17,
+ -3.784351302430101e-17,
+ 2.8000063734919987e-17,
+ -2.4674797672456816e-16,
+ -1.8141104809053586e-16,
+ -8.768114493062092e-17,
+ -2.44514589070675e-16,
+ -2.2912902967718864e-17,
+ -1.5512932283122407e-16,
+ 9.347140921849211e-17,
+ 2.0894582273089477e-16,
+ -7.858215819253762e-17,
+ 1.6593243087813733e-16,
+ -5.40148939997127e-17,
+ -3.250819807333399e-17,
+ -5.773720675620133e-17,
+ -5.310499532590437e-17,
+ -5.309672351977885e-16,
+ -9.454674401481105e-17,
+ -1.8847310257020733e-16,
+ 1.5646121286440516e-16,
+ 1.1580528575742386e-17,
+ -4.689726332263532e-17,
+ -1.341686953561011e-16,
+ -6.898686308692251e-17,
+ 3.1267427154504446e-17,
+ -2.5824578723905524e-16,
+ 2.615131506586397e-16,
+ -1.261450434143367e-18,
+ 4.1276312566396075e-17,
+ 4.1896698025810847e-16,
+ 2.1801379019600733e-16,
+ -1.0784367236160097e-16,
+ -2.101865936497243e-16,
+ -1.5567539128247978e-16,
+ -2.2871543937091212e-17,
+ 1.0695445320310647e-16,
+ -8.553047533798305e-17,
+ 8.553047533798305e-17,
+ 9.719372197498074e-17,
+ 1.7867101231145398e-17,
+ 5.860574639938201e-17,
+ 1.3751877683694085e-16,
+ -1.0141234309900118e-16,
+ -9.843449289381028e-17,
+ -2.238350737568493e-16,
+ -1.6047303883528737e-17,
+ 2.1118955014244485e-17,
+ 2.244968182468917e-16,
+ 8.875647972693986e-17,
+ -3.697497338112034e-17,
+ -3.9857697815867634e-16,
+ -1.2521446522521455e-17,
+ -2.536135758087583e-16,
+ -1.8561932945689939e-16,
+ -8.958366033949288e-17,
+ 7.965749298885655e-17,
+ -7.561981762383209e-17,
+ 1.4144788474656773e-17,
+ -1.0893968667323373e-16,
+ -1.6998561587964716e-16,
+ -3.1875404904730917e-16,
+ 1.4628689133000294e-16,
+ -3.0595342906805106e-16,
+ -3.0052505629817187e-17,
+ 1.2981048750371232e-16,
+ 3.7316185383798456e-16,
+ 5.67445900211377e-17,
+ 6.190412909193721e-17,
+ 1.134891800422754e-16,
+ 7.632809102333062e-17,
+ -7.423945997663423e-18,
+ -3.4923565461988824e-16,
+ 3.541987382952064e-16,
+ 1.431022459716738e-17,
+ 7.613939044609196e-17,
+ 9.551868123456086e-17,
+ 2.779326858178173e-17,
+ -9.487761625983226e-17,
+ -2.578942354787202e-16,
+ 1.2052021524897613e-16,
+ -1.4889251025954496e-18,
+ -1.1779051922755114e-16,
+ -4.3063022689510616e-16,
+ 9.847585192443793e-17,
+ -1.0405932105917087e-16,
+ -9.086579028895008e-17,
+ -1.7004765442558864e-16,
+ -1.1803867341131705e-16,
+ 6.700162961679524e-17,
+ 6.245213624775359e-17,
+ -1.2920561168078292e-16,
+ -7.494256349730431e-17,
+ 3.938620486671241e-16,
+ 9.268558763656674e-17,
+ 8.877715924225368e-17,
+ -7.450829367571397e-17,
+ 2.0902854079215007e-16,
+ -1.0981856607407132e-16,
+ -2.8925472045213687e-17,
+ 2.1721762885642504e-16,
+ 2.3616006488388937e-17,
+ -1.2262952581098634e-17,
+ 2.86152793155063e-17,
+ 9.950982769012922e-17,
+ -2.5146290621612038e-17,
+ 1.527905988962011e-16,
+ -6.035109749186889e-16,
+ -5.350824587452398e-16
+ ],
+ [
+ 5.543564327240324,
+ 4.477542951639875,
+ -3.2205855732013533,
+ 2.8446648976182325,
+ -1.549215977777496,
+ -0.35350994013483744,
+ 2.047265867920901,
+ -3.08023645382978,
+ 2.1690968105799047,
+ 4.218969754686648,
+ -0.8904325234633693,
+ -0.7830989653638801,
+ -0.4905452682791453,
+ 2.1544512889240526,
+ -3.141286658631345,
+ 2.010193466224403,
+ 3.668987170038315,
+ -0.5416517518308782,
+ -0.6476044005845596,
+ -0.713270563772741,
+ 2.3179010012391963,
+ -3.1706525565662944,
+ 2.95701482069126,
+ -1.7688350707399776,
+ 0.005944135093952585,
+ 1.069879414261342,
+ 1.3300035304208135,
+ -3.686809213858402,
+ -2.096757224791827,
+ 2.898806086592871,
+ -1.5749608418007455,
+ -0.2206469660287395,
+ 1.1898777849569504,
+ 1.7075780156477758,
+ -3.971386422423866,
+ -2.1158643935307975,
+ 2.791440261271259,
+ -1.4502923570294908,
+ -0.35827185741591727,
+ 2.1323600146895534,
+ -3.1113700803673803,
+ 3.083765621116081,
+ -4.551752117060099,
+ -4.593180915632682,
+ -3.0737992857825245,
+ -3.0170301822647696,
+ -2.0421152018146063,
+ -1.922611983312541,
+ 2.083308994087391,
+ -3.0939879822180627,
+ 3.102336738574704,
+ -2.025949324160237,
+ 0.32621957192985906,
+ 1.4814067383354488,
+ -1.7862474047348622,
+ -3.01165059659131,
+ 3.3948563253880675,
+ 1.943011777011308,
+ -1.9165958523666975,
+ 0.18565666611413648,
+ 1.679168181223488,
+ -1.8567221640750577,
+ -2.935264465672755,
+ 2.975936618632639,
+ 1.8744561406030134,
+ -1.729405074453416,
+ -0.040965192981498824,
+ 1.7955509214072196,
+ -3.01037623074224,
+ 3.1642516026755727,
+ -2.293482227553004,
+ 0.5274421407667607,
+ 1.5080018252160248,
+ 3.119835099447164,
+ 1.9347925032479436,
+ -1.9146106530646372,
+ 0.09979986570073487,
+ 1.6776346098726915,
+ -1.9312588470255903,
+ -3.3359416370820525,
+ 3.382458190946996,
+ 1.950601338566657,
+ -1.72760392980811,
+ -0.04104182085376096,
+ 1.7939005989049952,
+ -3.0075035214208317,
+ 3.1611329153376833,
+ -2.291146198225971,
+ 2.5299396535528205,
+ 3.2597382875568894,
+ 5.366229524082204,
+ 4.42903321237672,
+ -2.751952647354782,
+ 1.3841507851926182,
+ 0.42939784224898964,
+ -2.1840999710931523,
+ 3.1272038771499906,
+ -3.0586812079961714,
+ 1.4785085224085093,
+ 3.2544319846467187,
+ 1.7257547780867595,
+ 0.5952621471127931,
+ -2.2839206797765694,
+ 3.1593683483361206,
+ -2.978744818038596,
+ 1.2532587659285874,
+ 2.6661135948234853,
+ 1.7288693344756638,
+ 0.6616545181728638,
+ -2.438254038968232,
+ 3.1981315164575457,
+ -2.9225399794272464,
+ 1.6106112088444653,
+ 0.17480946717556317,
+ -1.906184529962209,
+ 1.932227564528597,
+ 3.113512126671333,
+ -2.7755794085366823,
+ -1.7849958567400603,
+ 1.4896200485776308,
+ 0.4003865752197654,
+ -2.084253930417368,
+ 1.9928408904443222,
+ 3.5281419475017017,
+ -2.8243457827653113,
+ -1.7049715474585658,
+ 1.2850805840454378,
+ 0.5397605930779878,
+ -2.1876357297299154,
+ 3.1529959862914967,
+ -3.022029134583611,
+ 1.9118960364567616,
+ -1.5521994467661067,
+ -1.6786985865972452,
+ -2.941846623995171,
+ -3.011432582987635,
+ -4.805711539771563,
+ -4.774858060068018,
+ 3.1403135853650554,
+ -3.047669439263903,
+ 1.969195259342,
+ -0.1477606105164495,
+ -1.6357982611003326,
+ 2.8918395342029255,
+ -2.11121931458794,
+ -4.004201177127811,
+ 1.466103512027248,
+ 1.0730559485313536,
+ -0.009607146031907713,
+ -1.755895235980819,
+ 2.98593049892586,
+ -2.0816137203359224,
+ -3.700291298664304,
+ 1.1015658104803432,
+ 0.9493386889975204,
+ 0.2169886534479966,
+ -1.9416923462481481,
+ 3.035821974784563,
+ -3.1230822884566907,
+ 2.165859886012159,
+ -0.505888263470915,
+ -0.776892067914831,
+ -0.7796221302279427,
+ 3.693014823717778,
+ 2.046268188402668,
+ -3.0849636580853432,
+ 1.9924962053452002,
+ -0.28086987396888063,
+ -0.9168146155545067,
+ -1.1583421073138487,
+ 4.22575358288172,
+ 2.194085295504423,
+ -3.0097797910549975,
+ 1.879553879106138,
+ -0.1429608299735342,
+ -1.7311165337346806,
+ 2.9387288792669857,
+ -3.1961962569277538,
+ 4.376987621890554,
+ 5.432006285612401,
+ -1.455672441970818e-15,
+ -1.8421312241555926e-15,
+ -3.0820749623725806e-16,
+ -1.4558378780933287e-17,
+ -1.7701665108634792e-17,
+ 1.7155208916466946e-16,
+ 3.105029224370927e-16,
+ 1.6857940883830702e-16,
+ 2.2846728518714624e-16,
+ -4.4833189200374094e-17,
+ -8.52513018812464e-17,
+ -7.552158992609142e-16,
+ -3.970466940254533e-18,
+ -2.4666525866331285e-16,
+ -3.0936554909483235e-17,
+ 6.461107764651698e-16,
+ 9.074171319706712e-17,
+ 5.2980918234021416e-17,
+ 2.4070955825293105e-16,
+ -2.5754268371838517e-16,
+ -1.0041972636393755e-16,
+ 1.018259334052777e-16,
+ 1.2143011392278446e-16,
+ 3.0605682664462024e-17,
+ -9.446402595355575e-17,
+ 3.5634940788784427e-16,
+ 1.4392942658422682e-17,
+ -6.61744490042422e-19,
+ -4.542875924141228e-16,
+ -2.95406876258e-16,
+ 2.5973471234165066e-17,
+ -9.421587176978984e-17,
+ -3.225590798650531e-16,
+ 6.212126400273238e-17,
+ 1.1735624940596079e-17,
+ 4.539567201691016e-16,
+ 3.86396743638833e-17,
+ 3.709905047300329e-17,
+ -2.210640187047966e-17,
+ -5.332006228516816e-16,
+ -7.957477492760125e-17,
+ -1.2348772569651012e-16,
+ -5.259007539459012e-16,
+ 6.948317145445432e-17,
+ 2.835575139831779e-16,
+ 2.5874209560658706e-16,
+ 1.2609334462605216e-16,
+ 6.02683794306136e-16,
+ -2.8785885316845363e-16,
+ -1.9025154088719633e-17,
+ 2.0009499017657737e-16,
+ 1.3689839137752606e-17,
+ -1.1779051922755114e-16,
+ 2.756165801026688e-16,
+ -2.514629062161204e-16,
+ 4.748016716054378e-17,
+ 2.2118809579667958e-16,
+ -1.3400325923359047e-17,
+ 1.9852334701272664e-18,
+ 3.957232050453684e-16,
+ -3.4547198283277196e-16,
+ -3.672681919735443e-17,
+ -2.4997398111352496e-16,
+ 2.4898136437846133e-16,
+ 2.4947767274599315e-16,
+ 1.8950707833589862e-16,
+ 1.804080915978153e-16,
+ -1.402898318889935e-16,
+ 3.6065074707312007e-17,
+ 2.928219368437718e-17,
+ 1.9848198798209897e-16,
+ 3.310790401743493e-17,
+ 3.316994256337641e-17,
+ -4.3923290526565763e-17,
+ 5.823041319643607e-16,
+ -8.768114493062093e-18,
+ -9.876536513883149e-17,
+ -1.8148342639413425e-16,
+ -1.283784310682299e-16,
+ 6.869734987252895e-17,
+ -1.5716431638507526e-17,
+ 2.9447629806887785e-16,
+ -1.9356026333740845e-17,
+ -1.2076836943274203e-17,
+ 1.2200914035157158e-16,
+ 1.13654616164786e-16,
+ 3.095309852173429e-16,
+ 1.2622776147559202e-16,
+ 1.402071138277382e-16,
+ 1.888453338458562e-16,
+ -5.406452483646589e-16,
+ -7.338746394570461e-16,
+ -4.025060860683032e-16,
+ 1.067838472017674e-16,
+ 2.0725010247516106e-16,
+ -5.831623318498845e-17,
+ 7.527343574232552e-18,
+ 1.4889251025954496e-18,
+ 1.8363409598677212e-16,
+ 1.8131799027162364e-16,
+ -1.3052910066086777e-16,
+ 1.2109924167776325e-16,
+ -1.3516131209116472e-16,
+ 2.067951531382569e-16,
+ 3.1184709093249143e-17,
+ -2.50801161726078e-16,
+ 4.6322114302969544e-17,
+ -8.222175288777094e-17,
+ 3.908945382195901e-17,
+ -8.983181452325879e-17,
+ -4.830734777309681e-17,
+ 2.067951531382569e-17,
+ -8.280077931655806e-17,
+ 8.162204694366999e-17,
+ -9.661469554619362e-17,
+ -2.6469779601696883e-17,
+ 1.7073007843094489e-16,
+ 1.283784310682299e-16,
+ -1.621274000603934e-16,
+ -3.498973991099307e-17,
+ -5.128519797828771e-17,
+ 7.130296880207099e-17,
+ -2.9977025398921723e-16,
+ 8.1146418091452e-17,
+ -5.707546226615891e-17,
+ 2.871971086784112e-16,
+ -3.341809674714232e-17,
+ -2.5280707471151904e-18,
+ 7.080666043453917e-17,
+ 1.7370792863613579e-16,
+ -2.283018490646356e-17,
+ 6.799424635185887e-17,
+ 3.996936719856229e-16,
+ -7.275053487403878e-17,
+ 1.2771668657818747e-16,
+ 9.926167350636332e-19,
+ -7.320548421094295e-18,
+ 3.8065559319983215e-16,
+ 5.831623318498845e-17,
+ -3.325266062463171e-17,
+ -5.1409275070170664e-17,
+ -9.589091251020972e-17,
+ -3.9079114064302095e-17,
+ 3.248338265495739e-16,
+ 1.8710825455949484e-16,
+ -1.0668561950402673e-16,
+ -1.4252321954288667e-16,
+ -1.977788844614289e-16,
+ 1.1795595535006175e-16,
+ 8.5654552429866e-17,
+ -8.751570880811032e-17,
+ -9.31405369734709e-17,
+ -8.54891163073554e-17,
+ 6.054962083888163e-17,
+ -4.1855338995183194e-17,
+ -5.550381910230815e-17,
+ 1.5414510714925668e-16,
+ 4.817293092355694e-17,
+ -2.150669592637872e-18,
+ -4.508134338414e-17,
+ -1.0356301269163905e-16,
+ 1.985233470127266e-17,
+ -1.1459553411156507e-16,
+ 1.3805644423510032e-16,
+ 5.781992481745663e-16,
+ 1.134891800422754e-16,
+ 1.534420036285866e-16,
+ -1.401243957664829e-16,
+ 2.5295183131871586e-16,
+ -2.4820588255419284e-17,
+ 2.0861495048587355e-16,
+ -2.756165801026688e-16,
+ 1.0025429024142694e-16,
+ 1.2753057094036304e-16,
+ -1.1911400820763597e-17,
+ 3.0605682664462024e-17,
+ 2.7214242152994607e-17,
+ 2.5642598989143855e-17,
+ 6.825894414787583e-16,
+ 3.3517358420648676e-16
+ ],
+ [
+ 8.067384166394485,
+ 6.5420652858648625,
+ -4.586356208786401,
+ 3.763468163912545,
+ -1.7244985467370086,
+ -1.020520495543311,
+ 3.294049799890591,
+ -4.503719096652692,
+ 2.98594290884972,
+ 5.911798415666236,
+ -0.5848278359662622,
+ -0.7677920716007678,
+ -1.210922134348399,
+ 3.43035989415109,
+ -4.5543599121926075,
+ 2.7350707016743963,
+ 5.0960628778733374,
+ -0.16917156562252467,
+ -0.5884068923933681,
+ -1.5182116449082141,
+ 3.6353979056474692,
+ -4.573844344833164,
+ 3.9593141845997915,
+ -2.055642278138588,
+ -0.5166590464688466,
+ 1.8032996399615375,
+ 2.437228241451342,
+ -5.147336237746784,
+ -2.984116990531147,
+ 3.856842735119526,
+ -1.763088557482579,
+ -0.8350698554447687,
+ 1.9626688926087734,
+ 3.0002030085598976,
+ -5.4991791438929765,
+ -2.9848538237186593,
+ 3.6729541112877113,
+ -1.5765277290679582,
+ -1.0271505085635568,
+ 3.4023312317067953,
+ -4.530676086426569,
+ 4.19284010930608,
+ -5.839851044835862,
+ -5.923884672264333,
+ -4.463986494021117,
+ -4.4155965352515665,
+ -3.74942725098056,
+ -3.5988374767301954,
+ 3.340049319671441,
+ -4.51586136398155,
+ 4.229140880458436,
+ -2.448698512354206,
+ -0.06220377413089259,
+ 2.556274084620103,
+ -2.7038830532042524,
+ -4.681111286481181,
+ 4.4384334134836445,
+ 2.60465178885175,
+ -2.2807204647220347,
+ -0.2623125710421553,
+ 2.8172182022196313,
+ -2.779507136962537,
+ -4.506724515287719,
+ 3.840229095990884,
+ 2.4891342337448563,
+ -1.9958960505287677,
+ -0.5827838744755823,
+ 2.9692778384185994,
+ -4.4372238153775685,
+ 4.356830071012514,
+ -2.865204123709964,
+ 0.4132266784934491,
+ 1.577974246006043,
+ 4.38423876323486,
+ 2.595893098112164,
+ -2.2775572196109253,
+ -0.3845521913129462,
+ 2.815536811492257,
+ -2.900444920711473,
+ -5.1269213757423024,
+ 4.360051796090538,
+ 2.5810829115989917,
+ -1.9929678451302066,
+ -0.5834139900366089,
+ 2.9674255427719824,
+ -4.433435197581634,
+ 4.352411306701663,
+ -2.8616045716873275,
+ 2.926942445417785,
+ 3.828288455510396,
+ 7.236046585039675,
+ 5.999181187518251,
+ -3.6070651259270194,
+ 1.4777238876858818,
+ 1.1265522230618263,
+ -3.4679265115179736,
+ 4.541976966124196,
+ -4.1462958919430255,
+ 1.8173619424138632,
+ 4.152935811821092,
+ 3.0615648713442924,
+ 1.1867908985306914,
+ -3.5932090669241528,
+ 4.565024700003655,
+ -3.999040172573899,
+ 1.4933519515491702,
+ 3.3437506643530646,
+ 2.9708164267316435,
+ 1.2579338613230997,
+ -3.7839263184645544,
+ 4.583382807327998,
+ -3.8992325669558263,
+ 1.8165025575270142,
+ 0.7713377628548601,
+ -3.1130495673727236,
+ 2.859973298385077,
+ 4.716688965422924,
+ -3.5175329087757814,
+ -2.337508621281645,
+ 1.6350033318743735,
+ 1.086271819087548,
+ -3.341449399353394,
+ 2.925941966775123,
+ 5.289745525011191,
+ -3.5189383269710515,
+ -2.2016367078210775,
+ 1.3306377332402017,
+ 1.2795153179778505,
+ -3.472384324163812,
+ 4.560689864388768,
+ -4.077913369200077,
+ 2.2734553449842236,
+ -1.2829741319512014,
+ -1.4780690747248466,
+ -3.9573980580366905,
+ -4.0865877500933845,
+ -7.283576778582302,
+ -7.266051602790689,
+ 4.553497210424152,
+ -4.124237311836865,
+ 2.361337906993483,
+ 0.3160616682316177,
+ -2.7601594596750676,
+ 4.313427070308654,
+ -2.9552080520113537,
+ -5.708425810135647,
+ 1.45957313000353,
+ 1.2172943005366905,
+ 0.5115135731482378,
+ -2.9175508571823543,
+ 4.412631632263182,
+ -2.8874918041562676,
+ -5.233304466616257,
+ 0.9797037434074596,
+ 1.0341841728205035,
+ 0.8299388199334456,
+ -3.1585289743406784,
+ 4.4620654941728,
+ -4.270345101328871,
+ 2.665362913598755,
+ -0.19499141283656557,
+ -1.4133520919023517,
+ -1.6875351165760264,
+ 5.2493077662338985,
+ 2.9652310068260403,
+ -4.194995077895417,
+ 2.397102638493677,
+ 0.12690467054054078,
+ -1.620993139008525,
+ -2.2941892939194153,
+ 5.955045578641137,
+ 3.1453728599474022,
+ -4.054198914228564,
+ 2.2240847263862715,
+ 0.32286549925262553,
+ -2.8851415235884974,
+ 4.3635826121219985,
+ -4.43073967348904,
+ 5.900662795809746,
+ 7.355894844765831,
+ -2.1423977865123417e-15,
+ -2.675598409364023e-15,
+ -4.70996640787694e-16,
+ -4.921724644690514e-17,
+ 1.4889251025954498e-17,
+ 2.483816584343604e-16,
+ 4.755668136720494e-16,
+ 2.564259898914386e-16,
+ 4.0928896709123804e-16,
+ -8.205631676526033e-17,
+ -1.3880090678639804e-16,
+ -1.0915475363249753e-15,
+ -4.7314731038033177e-17,
+ -3.596581303380564e-16,
+ -2.6469779601696883e-17,
+ 8.850832554317395e-16,
+ 1.3913177903141925e-16,
+ 1.0920852037231347e-16,
+ 3.391440511467413e-16,
+ -3.664410113609912e-16,
+ -1.3880090678639804e-16,
+ 1.4591466005435408e-16,
+ 1.5087774372967222e-16,
+ 3.176373552203626e-17,
+ -1.7850557618894335e-16,
+ 5.075580238625378e-16,
+ 3.788487205492866e-17,
+ 1.2490427249550716e-17,
+ -6.536381200394024e-16,
+ -4.606982421614088e-16,
+ 1.1580528575742387e-18,
+ -1.2932968877266588e-16,
+ -5.085092815669738e-16,
+ 3.176373552203626e-17,
+ 1.5282161816917186e-17,
+ 7.388377231323642e-16,
+ 4.87829766253148e-17,
+ 3.552740730915254e-17,
+ 3.1660337945467134e-17,
+ -7.783769564123989e-16,
+ -1.0951871310202085e-16,
+ -2.3136241733108184e-16,
+ -7.329233817526101e-16,
+ 6.898686308692251e-17,
+ 3.7322389238392604e-16,
+ 3.714040950363094e-16,
+ 1.5854984391110155e-16,
+ 8.877302333919092e-16,
+ -3.9142186586009265e-16,
+ -3.0936554909483235e-17,
+ 2.383934525377826e-16,
+ -2.1258541742612808e-17,
+ -1.5435190230239494e-16,
+ 4.1259768954145015e-16,
+ -2.3690452743518713e-16,
+ 7.221286747587932e-17,
+ 2.956343509264521e-16,
+ -2.3161057151484775e-18,
+ -1.4227506535912076e-17,
+ 5.085506405976014e-16,
+ -4.687632531338008e-16,
+ -4.350970022028925e-17,
+ -3.4741585727227157e-16,
+ 3.3815143441167766e-16,
+ 3.510554519675049e-16,
+ 2.491054414703443e-16,
+ 3.3401553134891253e-16,
+ -2.0034314436034328e-16,
+ 1.1249656330721176e-16,
+ 7.552158992609141e-17,
+ 2.8635958830820127e-16,
+ 6.319659879905131e-17,
+ 6.389970231972139e-17,
+ -5.1698788284564224e-17,
+ 8.09334190837196e-16,
+ 3.490702184973777e-17,
+ -1.2622776147559202e-16,
+ -2.066297170157463e-16,
+ -1.67752228225754e-16,
+ 1.212233187696462e-16,
+ -3.7719435932418056e-17,
+ 3.4642324053720794e-16,
+ -1.0422475718168147e-17,
+ -5.1119761855777104e-17,
+ 1.799117832302835e-16,
+ 1.6146565557035098e-16,
+ 4.3071294495636146e-16,
+ 1.8148342639413425e-16,
+ 2.75120271735137e-16,
+ 2.780981219403279e-16,
+ -6.359364549307676e-16,
+ -1.0852609636695723e-15,
+ -5.525566491854225e-16,
+ 1.5405204933034447e-16,
+ 2.965442496002604e-16,
+ -5.823351512373315e-17,
+ 3.465886766597186e-17,
+ 5.194694246833013e-17,
+ 2.0613340864821447e-16,
+ 2.5245552295118405e-16,
+ -1.8131799027162364e-16,
+ 9.562207881112999e-17,
+ -2.1093105620102203e-16,
+ 3.036580028682164e-16,
+ 7.734138727370808e-17,
+ -3.1912628032295803e-16,
+ 6.5843576759221e-17,
+ -1.3255569316162268e-16,
+ 6.152898975944734e-17,
+ -1.3689839137752608e-16,
+ -7.080666043453917e-17,
+ 1.323488980084844e-18,
+ -1.2970192004831474e-16,
+ 8.606814273614252e-17,
+ -1.0587911840678753e-16,
+ -3.2756352257099896e-17,
+ 2.693300074472658e-16,
+ 1.8197973476166606e-16,
+ -2.3442298559752804e-16,
+ -7.891303043755883e-17,
+ -7.80858498250058e-17,
+ 9.694556779121483e-17,
+ -3.096964213398535e-16,
+ 1.1696333861499811e-16,
+ -4.0366413892587744e-17,
+ 3.8182657075447753e-16,
+ -3.705769144237564e-17,
+ -1.9469763667966886e-17,
+ 1.2672406984312384e-16,
+ 2.455072058057386e-16,
+ 9.26442286059391e-18,
+ 1.227536029028693e-16,
+ 6.025183581836254e-16,
+ -1.222572945353375e-16,
+ 2.3177600763735835e-16,
+ 2.283018490646356e-17,
+ -3.101927297073854e-17,
+ 4.929660408692195e-16,
+ 6.55954225754551e-17,
+ -6.319659879905131e-17,
+ -6.28657265540301e-17,
+ -1.5292501574574097e-16,
+ -5.587605037795702e-17,
+ 5.054900723311552e-16,
+ 1.8131799027162364e-16,
+ -1.338481628687368e-16,
+ -2.126681354873834e-16,
+ -3.0948962618671526e-16,
+ 1.653534044493502e-16,
+ 1.2891609846638936e-16,
+ -8.056739166266488e-17,
+ -1.7370792863613579e-16,
+ -1.1737692892127463e-16,
+ 9.512577044359817e-17,
+ 3.8877488789992295e-17,
+ -9.231335636091788e-17,
+ 2.2525162055584635e-16,
+ 8.695736189463702e-17,
+ 6.319659879905131e-17,
+ -3.039888751132377e-17,
+ -1.375601358675685e-16,
+ 2.6635215724207488e-17,
+ -1.3203870527877704e-16,
+ 1.9686898578762056e-16,
+ 6.698508600454417e-16,
+ 1.3284520637601624e-16,
+ 2.0050858048285388e-16,
+ -1.8082168190409183e-16,
+ 3.2210413052814893e-16,
+ -3.8918847820619946e-17,
+ 2.8868603378100666e-16,
+ -4.200423150544274e-16,
+ 1.2697222402688975e-16,
+ 1.5180832191879438e-16,
+ -1.6543612251060553e-17,
+ 2.6635215724207488e-17,
+ 4.164854384204494e-17,
+ 8.271806125530276e-20,
+ 1.0630925232531512e-15,
+ 4.999479622270499e-16
+ ],
+ [
+ -4.612305383512531,
+ -3.6960303712809766,
+ 2.7724317932651767,
+ -2.8109740643916385,
+ 1.8657414478859302,
+ -0.2962466285526515,
+ -1.3691114678708345,
+ 2.518666115498846,
+ -1.9969672890219112,
+ -3.766992226745567,
+ 1.541758278010838,
+ 1.0703985135795056,
+ -0.17117636561934205,
+ -1.4795601958659372,
+ 2.613388678026812,
+ -1.8868628946721473,
+ -3.3266989343766213,
+ 1.148028451214664,
+ 0.9376171874361139,
+ 0.03220567453900646,
+ -1.6534218574236577,
+ 2.6631192053623374,
+ -2.867976122466502,
+ 2.035432754226687,
+ -0.6169858692455326,
+ -0.6126518513730325,
+ -0.5414015721273812,
+ 3.312968812471271,
+ 1.8202402003514466,
+ -2.838658475922774,
+ 1.8867559137086636,
+ -0.41479737578591624,
+ -0.7296798359090034,
+ -0.8403333517382809,
+ 3.6199063538278056,
+ 1.8666282019839908,
+ -2.781357625769712,
+ 1.7879218978948463,
+ -0.29194922379159016,
+ -1.4574037500247816,
+ 2.565207071457119,
+ -2.9181494877421876,
+ 4.670429343439916,
+ 4.678140284464279,
+ 2.5677861239940913,
+ 2.4820007875396,
+ 0.8230821933497541,
+ 0.6973820545282694,
+ -1.4063411770891048,
+ 2.5389415556998403,
+ -2.923156067382875,
+ 2.2281046939676683,
+ -0.8965878263572463,
+ -0.8017446530740241,
+ 1.3685399709604196,
+ 2.169612390746063,
+ -3.390027301848451,
+ -1.8677460783856088,
+ 2.1479753933860106,
+ -0.7737371139276827,
+ -0.9956400920939528,
+ 1.4575199641437615,
+ 2.1772821591819547,
+ -3.0286064464357842,
+ -1.8284531587832626,
+ 2.005320995399211,
+ -0.575574624430737,
+ -1.1128620929075075,
+ 2.420920035726467,
+ -2.9323619364286992,
+ 2.4200864897085625,
+ -0.8380001803046845,
+ -1.9492317841718305,
+ -2.0647675042379006,
+ -0.9109128495717901,
+ 2.487641734540483,
+ -0.6992781341215935,
+ -0.9937187715554776,
+ 1.5054788888189272,
+ 2.4688213326814537,
+ -3.447711858859632,
+ -1.9130613809382424,
+ 2.004186183258291,
+ -0.5761165279745402,
+ -1.1108461231285218,
+ 2.418076316206679,
+ -2.9296373035652317,
+ 2.4183858262019426,
+ -2.9552309667497734,
+ -3.743476691971904,
+ -5.110549780204672,
+ -4.1877033395146155,
+ 2.7174442478902896,
+ -1.7764111797313153,
+ 0.1875847943632118,
+ 1.4707894598155213,
+ -2.6322299305065107,
+ 2.8680343400305155,
+ -1.6066826864999069,
+ -3.3646302700197626,
+ -0.816112875913595,
+ -0.1341867980514129,
+ 1.577246887331174,
+ -2.6848675148499006,
+ 2.8372601876304633,
+ -1.4150027321057799,
+ -2.8222180325827857,
+ -0.9260422630057048,
+ -0.2181262984289606,
+ 1.7429289785275102,
+ -2.7608823586083444,
+ 2.8098950941720795,
+ -1.954407545544115,
+ 0.4165853377347018,
+ 1.183732669187554,
+ -1.5534791730351876,
+ -2.3812789086749624,
+ 2.896966535626805,
+ 1.7781707916874732,
+ -1.8589594228983883,
+ 0.21476908965492697,
+ 1.3674060304840103,
+ -1.6289607237479913,
+ -2.760430303686118,
+ 3.0159009748490475,
+ 1.7334594497606755,
+ -1.6972267095483282,
+ 0.08712064990932153,
+ 1.4745097450427105,
+ -2.6748694482264215,
+ 2.85445373380316,
+ -2.184339107277165,
+ 2.391308226068314,
+ 2.484183431340832,
+ 2.8196389613647574,
+ 2.8479526142622587,
+ 3.6717607804347017,
+ 3.6140873172334325,
+ -2.6514316452561557,
+ 2.8656369675035323,
+ -2.2268397159490316,
+ 0.7009324954322821,
+ 0.9130104708450815,
+ -2.307994997117111,
+ 1.8885453287998344,
+ 3.4652954475019464,
+ -1.9790774297074993,
+ -1.2806334233111252,
+ 0.5805748948758268,
+ 1.033405537662435,
+ -2.4278839008420303,
+ 1.8916638241916421,
+ 3.249448562461962,
+ -1.618749466579367,
+ -1.181159613808082,
+ 0.3783890600794542,
+ 1.220223765268644,
+ -2.49639051213017,
+ 2.8874490341589842,
+ -2.3704157794717693,
+ 1.0102961155907786,
+ 0.3278328770478488,
+ 0.02570468600855739,
+ -3.2134532546487553,
+ -1.7167419535210005,
+ 2.879022146938036,
+ -2.2432690585878485,
+ 0.8176989229639693,
+ 0.4397264599495543,
+ 0.2782651004669433,
+ -3.7350422468111706,
+ -1.8791254744545112,
+ 2.850928474779018,
+ -2.1599415696503472,
+ 0.6967306093356243,
+ 1.0078144066667223,
+ -2.367412121147386,
+ 2.887460784084388,
+ -4.17005981210778,
+ -5.138097981183204,
+ 1.1453969942021774e-15,
+ 1.8304059389726535e-15,
+ 2.560537586157897e-16,
+ 5.666187195988239e-18,
+ -8.284213834718571e-17,
+ -1.3582305658120714e-16,
+ -3.3727772488966853e-16,
+ -2.0629884477072508e-16,
+ -1.465764045443965e-16,
+ 1.761894704737949e-17,
+ 7.79204137024952e-17,
+ 6.715052212705478e-16,
+ -5.285684114213846e-17,
+ 1.5550995515996918e-16,
+ -1.3152171739593138e-17,
+ -3.9175273810511386e-16,
+ -7.980224959605333e-17,
+ -1.1853498177884887e-16,
+ -1.540830686033152e-16,
+ 2.416194569267394e-16,
+ 5.657915389862709e-17,
+ -5.219509665209604e-17,
+ -1.0538281003925571e-16,
+ -5.893661864440322e-17,
+ 1.9620724129757814e-16,
+ -1.0298398626285193e-16,
+ -3.443139299751978e-17,
+ -5.666187195988239e-18,
+ 2.332649327399538e-16,
+ 1.5857052342641538e-16,
+ -9.547732220393321e-17,
+ 1.2774253597232976e-16,
+ 2.8289576949313546e-16,
+ -5.922613185879678e-17,
+ -2.132471619161705e-16,
+ -2.299768898050555e-16,
+ -7.620401393144766e-17,
+ -1.1311694876662652e-17,
+ -9.429858983104514e-18,
+ 4.3393894934531827e-16,
+ 1.0918784085699964e-16,
+ 7.520105743872713e-17,
+ 4.33256525339962e-16,
+ -4.3923290526565763e-17,
+ -2.0878038660838416e-16,
+ 6.083913405327519e-17,
+ -1.1071812499022274e-16,
+ -1.37146545561292e-16,
+ 3.0522964603206716e-16,
+ 7.146840492458159e-17,
+ -1.8512302108936757e-16,
+ 1.3441684953986698e-18,
+ 1.3114948612028254e-16,
+ -3.937379715752411e-17,
+ -1.3565762045869652e-17,
+ -6.550236475654288e-17,
+ -6.137680145143465e-17,
+ -3.072975975634498e-17,
+ 6.5843576759221e-17,
+ -6.635022488440973e-17,
+ 3.4538926477151666e-16,
+ 8.337980574534518e-17,
+ 2.2151896804170079e-16,
+ -1.5054687148465104e-16,
+ -3.156521217502353e-16,
+ -2.1467404847282448e-16,
+ -1.3243161606973973e-16,
+ 7.190267474617193e-17,
+ 1.1166938269465874e-16,
+ -5.3270431448414976e-17,
+ -1.1768712165098201e-16,
+ 1.74457561066262e-17,
+ -5.455256139787217e-17,
+ -1.4910964517034015e-16,
+ -3.835636500408389e-16,
+ -1.6514660929621195e-16,
+ 1.4074478122589766e-16,
+ 1.9331210915364254e-16,
+ 4.863822001811802e-17,
+ -1.9686898578762056e-17,
+ 1.7122638679847673e-17,
+ 7.372247209378859e-18,
+ -2.903403950061127e-17,
+ -5.897797767503087e-17,
+ -1.0653052313917304e-16,
+ -8.84669665125463e-17,
+ -1.741215189424123e-16,
+ -2.950966835282926e-17,
+ 2.441423577950261e-16,
+ -2.277228226358485e-16,
+ -9.132073962585424e-17,
+ 8.649000484854456e-16,
+ 2.872798267396665e-16,
+ -1.2259850653801561e-16,
+ -9.245811296811466e-17,
+ -8.850832554317395e-17,
+ -1.7023377006341307e-16,
+ -5.724089838866952e-17,
+ -6.749793798432706e-17,
+ -1.1803867341131705e-16,
+ 1.1568120866554092e-16,
+ -1.6177584830005836e-16,
+ -7.552158992609141e-17,
+ -1.9008610476468574e-16,
+ -1.331812484998659e-16,
+ 4.119359450514077e-17,
+ 5.790264287871194e-19,
+ 4.7521526191171434e-17,
+ 1.4623002266288992e-17,
+ 8.342116477597283e-17,
+ -5.699274420490361e-17,
+ 1.8098711802660243e-16,
+ 1.4508747944180105e-16,
+ -9.05749846048494e-17,
+ 5.748905257243542e-17,
+ 4.317882797526804e-17,
+ -1.0422475718168147e-16,
+ -1.1845226371759356e-16,
+ 1.2597960729182611e-16,
+ 9.347140921849213e-18,
+ 5.219509665209604e-17,
+ 4.090408129074721e-17,
+ 5.502819025009016e-17,
+ -7.82512859475164e-17,
+ 1.1218637057750438e-16,
+ 5.740633451118012e-17,
+ 7.923356292492313e-17,
+ 9.388499952476863e-17,
+ -8.180816258149442e-17,
+ -1.2504902910270396e-16,
+ -3.838118042246048e-17,
+ -6.574017918265187e-17,
+ -1.8247604312919788e-16,
+ -4.082136322949191e-17,
+ -1.0761619769314889e-16,
+ 1.703992061859237e-17,
+ -5.252596889711725e-17,
+ -3.281839080304137e-16,
+ -7.80858498250058e-17,
+ 1.1894857208512538e-16,
+ -1.0587911840678753e-16,
+ 1.9988819502343911e-16,
+ 3.927039958095498e-17,
+ -1.890107699683668e-16,
+ -2.4434915294816438e-16,
+ -2.580803511165446e-17,
+ 8.065010972392019e-17,
+ 1.560889815887563e-16,
+ -1.3888362484765335e-16,
+ -2.4153673886548405e-17,
+ 1.9438744394996148e-16,
+ 4.2475724454597966e-16,
+ 8.826017135940804e-17,
+ 1.7205356741102976e-17,
+ 8.366931895973874e-17,
+ 7.754818242684634e-18,
+ -3.8298462361205175e-17,
+ -9.636654136242771e-18,
+ -1.7006833394090247e-16,
+ 2.9116757561866574e-17,
+ -2.6552497662952185e-17,
+ -1.1051132983708449e-16,
+ 7.231626505244844e-17,
+ -9.117598301865746e-17,
+ -2.9166388398619756e-16,
+ -5.922613185879678e-17,
+ -2.115514416604368e-16,
+ 1.3110812708965489e-16,
+ -3.1416319664763986e-16,
+ 1.6142429653972333e-16,
+ -7.593518023236793e-17,
+ 1.3665023719376017e-16,
+ -7.568702604860202e-17,
+ 1.761894704737949e-17,
+ -4.6177357695772764e-17,
+ -1.1878313596261477e-16,
+ -4.5784446904810076e-17,
+ -1.588186776101813e-17,
+ -6.550443270807425e-16,
+ -2.7925617479790214e-16
+ ],
+ [
+ 2.5844859892960637,
+ 1.9859494309208825,
+ -1.913691705586095,
+ 2.773872360648417,
+ -2.8103120592876176,
+ 1.7891956152897697,
+ -0.2936584942078293,
+ -1.3738526527760184,
+ 1.6771182459209752,
+ 2.856176122697869,
+ -3.1888998663568975,
+ -1.8156847362445563,
+ 1.6910034334172004,
+ -0.16604865520698295,
+ -1.5504546857829633,
+ 1.6796043469019404,
+ 2.6597207848250446,
+ -2.667716086658451,
+ -1.6830928773551217,
+ 1.5205907061216664,
+ 0.03731131128145637,
+ -1.6557523458299381,
+ 2.700122277948962,
+ -2.8677372322761943,
+ 2.0318424236087345,
+ -0.4622292194516724,
+ -1.3372504960572884,
+ -2.5691999549740983,
+ -1.2398189660138348,
+ 2.743183130770691,
+ -2.817073243531225,
+ 1.882849348544376,
+ -0.34674492819015146,
+ -1.2138869650058501,
+ -2.944909049220434,
+ -1.3543332304276652,
+ 2.800083266323026,
+ -2.7798786975125664,
+ 1.7857946244109963,
+ -0.19329550544220211,
+ -1.4599966342608097,
+ 2.5678083477559506,
+ -5.181397321930038,
+ -5.108143928103264,
+ -1.4690383533397566,
+ -1.3090532285180378,
+ 2.081511753368112,
+ 2.2282088895350984,
+ -0.2516662404149568,
+ -1.4109927604369443,
+ 2.5402715863027616,
+ -2.913903524757218,
+ 2.226512774969642,
+ -0.8918014331785483,
+ -0.42544267383707535,
+ -0.24016026922706185,
+ 3.5411865339082564,
+ 1.7756717964601307,
+ -2.8964993585118526,
+ 2.1445152474993017,
+ -0.6939537715830655,
+ -0.5633807903974597,
+ -0.4512031115869808,
+ 3.3012368004429757,
+ 1.805151181335341,
+ -2.8585470349440003,
+ 2.001590922145497,
+ -0.5730621337649547,
+ -1.2040792501312718,
+ 2.422458626215227,
+ -2.932615722764483,
+ 1.6282855921494657,
+ 3.10847209157861,
+ 0.3062894257999999,
+ -0.14046965796069869,
+ -1.3159457216040444,
+ 2.5285988731123576,
+ -0.6967925811564363,
+ -0.5495068076280771,
+ -0.49329174926487945,
+ 3.7707275753736473,
+ 1.9142293119312832,
+ -2.8588846804378716,
+ 2.0035700239856693,
+ -0.575949306781698,
+ -1.201210736622442,
+ 2.420513591147411,
+ -2.9322725421360336,
+ 4.12413361405028,
+ 5.091309347366173,
+ 4.738219517618433,
+ 3.805828486110548,
+ -2.855046179397632,
+ 2.7183267191068374,
+ -1.7771949244523204,
+ 0.09072386971253577,
+ 1.472587787521413,
+ -2.6358057766558183,
+ 1.9933476825276555,
+ 3.7921892440756917,
+ -1.3415924572064581,
+ -0.9729160297879852,
+ -0.032879007866795484,
+ 1.581155201432439,
+ -2.7182827597465313,
+ 1.8735564657477006,
+ 3.3346620503849844,
+ -0.9684279852251512,
+ -0.8425777757822925,
+ -0.23788958175574962,
+ 1.7467635638037087,
+ -2.7632635931886607,
+ 2.788000844258737,
+ -1.9555371586513401,
+ 0.41366823365129957,
+ 0.7133397432869618,
+ 0.7271627859827573,
+ -3.3292234628428257,
+ -1.8470595463626158,
+ 2.7536511951925906,
+ -1.7974233905240908,
+ 0.21162323049931808,
+ 0.8283675884346833,
+ 1.0388590764178525,
+ -3.6233381734582117,
+ -1.8854944541999343,
+ 2.6835634168504794,
+ -1.695952612068176,
+ 0.0864013479094886,
+ 1.5580382701048399,
+ -2.6774385251845803,
+ 2.856182265184453,
+ -4.530340257393997,
+ -4.546381998090883,
+ -2.627402850832163,
+ -2.5490360180090903,
+ -1.1092951840998981,
+ -0.9892522872801885,
+ 1.5083859352043627,
+ -2.6542416936892423,
+ 2.8654558192229733,
+ -2.16109864895908,
+ 0.698069481656184,
+ 0.9182453623174832,
+ -1.441448338490748,
+ -2.3301706985762274,
+ 3.3129705852658176,
+ 1.843438115228544,
+ -2.073951769283756,
+ 0.5751611810634688,
+ 1.1101668788793841,
+ -1.5237393345071981,
+ -2.3166369902305375,
+ 2.945478679449955,
+ 1.7977235028100975,
+ -1.924992254081104,
+ 0.3729178132048153,
+ 1.2229285754717514,
+ -2.5475133448601333,
+ 2.8875694390722537,
+ -2.3675406546997784,
+ 0.7409248165580521,
+ 1.7938018662611772,
+ 2.209485473334086,
+ 1.003321451985555,
+ -2.606380259080488,
+ 2.8699598039060055,
+ -2.2400312565018545,
+ 0.6913599251616537,
+ 1.833810274777057,
+ 2.7291295300245264,
+ 1.2086631608119511,
+ -2.694668007379149,
+ 2.85019652045454,
+ -2.1581625503331265,
+ 0.6000935031938296,
+ 1.0105795599352694,
+ -2.3709426554343325,
+ 3.870424447432352,
+ 4.674767533035329,
+ -8.544775727672775e-17,
+ -2.6188538193428856e-16,
+ -5.4614599943813646e-17,
+ 3.922904055032733e-17,
+ -5.3559944662808536e-17,
+ -5.550381910230815e-17,
+ 1.2358078351542233e-16,
+ 1.5579946837436274e-16,
+ -1.435158362779503e-16,
+ 6.088049308390284e-17,
+ 8.193223967337738e-17,
+ -3.1664473848529894e-16,
+ 1.7614811144316722e-16,
+ -7.473576834416605e-17,
+ -1.254832989242943e-16,
+ 2.6304343479186277e-17,
+ 1.19941188820189e-18,
+ 5.1161120886404756e-17,
+ 2.1448793283500005e-16,
+ -1.3028094647710186e-16,
+ 6.489231905478502e-17,
+ 8.519960309296184e-17,
+ 1.284611491294852e-16,
+ 3.316994256337641e-17,
+ -2.0183206946293873e-16,
+ -2.6502866826199007e-16,
+ -3.987010552505593e-17,
+ -1.5519976243026182e-17,
+ 4.373717488874133e-17,
+ 6.981404369947554e-17,
+ 2.774363774502855e-16,
+ -5.676526953645152e-17,
+ -1.4541835168682227e-16,
+ 1.878940761414202e-16,
+ 2.036518668105554e-16,
+ -3.148249411376823e-16,
+ 6.526455033043388e-17,
+ 3.072975975634498e-17,
+ -7.636945005395827e-17,
+ -1.9877150119649253e-16,
+ 1.703992061859237e-17,
+ 1.0339757656912845e-16,
+ -2.1836534195634237e-16,
+ 1.0478310409515477e-16,
+ 1.0306670432410724e-16,
+ -2.2244954623082297e-16,
+ 1.2107339228362097e-16,
+ -1.2312583417851817e-16,
+ -2.2879815743216745e-16,
+ -3.850525751434343e-17,
+ 2.8777613510719833e-16,
+ 7.996768571856394e-17,
+ -1.4820233143594605e-16,
+ -1.829723514967297e-16,
+ -2.478233115208871e-16,
+ 9.59529510561512e-18,
+ -7.858215819253763e-18,
+ 4.326154603652334e-17,
+ -9.92616735063633e-18,
+ 9.620110523991711e-17,
+ -2.4214678456724194e-16,
+ -2.779326858178173e-17,
+ -1.3052910066086777e-16,
+ 6.402377941160434e-17,
+ 1.4277137372665258e-16,
+ 1.8785271711079256e-16,
+ -1.4144788474656773e-16,
+ -1.708127964922002e-17,
+ -3.062222627671308e-16,
+ -2.6180266387303323e-17,
+ 1.2052021524897613e-16,
+ -5.666187195988239e-18,
+ 4.623939624171424e-17,
+ 1.2054089476428996e-16,
+ 1.8878329529991472e-16,
+ 5.670323099051005e-17,
+ -1.87563203896399e-16,
+ -2.361600648838894e-16,
+ -1.5716431638507524e-18,
+ -4.4254162771586974e-17,
+ 5.2691405019627857e-17,
+ 7.072394237328387e-17,
+ -2.2995621028974166e-17,
+ 1.2399437382169885e-16,
+ 3.608575422262583e-18,
+ 2.620094590261715e-17,
+ 9.520848850485347e-17,
+ 1.2821299494571927e-17,
+ -2.810759721455188e-16,
+ 8.536503921547244e-17,
+ 9.326461406535386e-17,
+ -7.158421021033901e-16,
+ -2.1994732487785003e-16,
+ 8.147729033647323e-18,
+ -7.039307012826266e-17,
+ 2.5725317050399158e-17,
+ 1.8975523251966452e-16,
+ -3.647866501358852e-17,
+ 1.888453338458562e-16,
+ 6.815968247436948e-17,
+ -3.1805094552663914e-17,
+ 3.6429034176835334e-16,
+ 1.7544500792249715e-16,
+ 9.727644003623604e-17,
+ 3.5444689247897236e-17,
+ -1.108422020821057e-16,
+ -4.5494933690416516e-17,
+ 4.927928499284662e-17,
+ 7.202675183805488e-17,
+ 7.444625512977248e-19,
+ 1.5571675031310744e-16,
+ -1.4219234729786546e-16,
+ -1.1398548840980721e-16,
+ 1.134891800422754e-16,
+ -1.2064429234085909e-16,
+ -1.3524403015242002e-16,
+ -4.928962475050353e-17,
+ 9.938575059824626e-17,
+ -1.3141831981936226e-17,
+ 1.0951871310202085e-16,
+ 3.2932128137267414e-17,
+ -5.1233499190003145e-17,
+ -1.198016020918207e-16,
+ 8.437242248040881e-17,
+ -2.4658254060205755e-16,
+ -2.328513424336773e-16,
+ -1.6901367865989736e-16,
+ -5.5441780556366674e-17,
+ 5.24846098664896e-17,
+ 1.113178309343237e-16,
+ -5.6248281653605874e-18,
+ -7.77549775799846e-18,
+ 6.281402776574554e-17,
+ 8.573727049112131e-17,
+ -8.462057666417472e-17,
+ -8.127049518333496e-17,
+ 1.0747144108595211e-16,
+ 4.661162751736311e-16,
+ 1.437639904617162e-16,
+ -8.664716916492964e-17,
+ 2.2813641294212503e-16,
+ -1.0765755672377654e-16,
+ -4.3426982159033947e-17,
+ -3.738856368739685e-17,
+ 4.102815838263017e-16,
+ 3.2526292649233585e-17,
+ -3.308722450212111e-17,
+ -3.6065074707312007e-17,
+ 1.2473883637299657e-16,
+ 7.915084486366784e-18,
+ -2.3152785345359245e-16,
+ -2.4707884896958937e-16,
+ -3.5072457972248373e-17,
+ -9.678013166870423e-17,
+ -3.216905402218724e-16,
+ 1.4961629329552888e-17,
+ -6.5843576759221e-17,
+ -1.3052910066086777e-16,
+ 7.626605247738914e-17,
+ -3.490702184973777e-17,
+ 1.1127647190369605e-16,
+ 1.5588218643561804e-16,
+ -7.181995668491663e-17,
+ 1.6192060490725517e-17,
+ 3.541987382952064e-16,
+ 3.91256429737582e-17,
+ 1.6891028108332823e-16,
+ -2.0480991966812963e-16,
+ 3.059741085833649e-16,
+ -2.0290740425925766e-16,
+ 8.3876114112877e-17,
+ 8.966637840074819e-17,
+ 1.1464723289984964e-16,
+ -2.8289576949313546e-17,
+ 3.763671787116276e-17,
+ 7.241966262901757e-17,
+ -2.216844041642114e-17,
+ 3.490702184973777e-17,
+ -2.5311726744122644e-17,
+ 6.766337410683766e-17
+ ],
+ [
+ -0.03439467207001075,
+ 0.0691617228712512,
+ 0.3800001294282049,
+ -1.4333732478347048,
+ 1.969666813361846,
+ -1.8969517555874629,
+ 1.145381456901189,
+ -0.07381347287226432,
+ -0.6491929441127033,
+ -0.8751724386951903,
+ 2.6537967851081157,
+ 1.3898297254961487,
+ -1.8618754670110755,
+ 1.0720687691669095,
+ 0.06947337979127605,
+ -0.7213078143872025,
+ -0.9289978721351013,
+ 2.309282122488114,
+ 1.3227047609504297,
+ -1.7984084859695397,
+ 0.9481765486808929,
+ 0.15564141757524844,
+ -1.3135966081194372,
+ 1.9280383418036455,
+ -1.9708510442518996,
+ 0.910911758316262,
+ 1.860527232377198,
+ 0.8347252347935215,
+ 0.26341363200566836,
+ -1.3787742084807273,
+ 1.9662439301667372,
+ -1.926583456103499,
+ 0.8533245243602647,
+ 1.9084794911673786,
+ 1.0685112578628277,
+ 0.36435671424280236,
+ -1.4816946129806892,
+ 1.9839805896449756,
+ -1.8958153656756382,
+ 1.0869690682178488,
+ -0.005287484944938216,
+ -1.1316214679924006,
+ 2.948989030717221,
+ 2.8608463751254893,
+ 0.053398853123692906,
+ -0.07443105936810944,
+ -2.88376712105059,
+ -2.971357013268338,
+ 1.1211739935777985,
+ -0.044444272229702,
+ -1.097183977558034,
+ 1.8592933599910961,
+ -2.016179192873041,
+ 1.4681652909185392,
+ -0.3778365853768034,
+ -1.0926133204512753,
+ -1.8908786474136705,
+ -0.8425114770363,
+ 1.8921647567982343,
+ -1.9981162810458781,
+ 1.367538719451929,
+ -0.27706727250828206,
+ -0.8575770594222065,
+ -1.8456740639354878,
+ -0.900751213840828,
+ 1.936621194473603,
+ -1.962607492679774,
+ 1.3017149554320182,
+ -0.20524881372713225,
+ -0.9575821948983555,
+ 1.7597493389297143,
+ -1.3231237071034025,
+ -2.3059559866572816,
+ 0.9514186985068118,
+ 0.7329520843931809,
+ -0.11790164970763126,
+ -1.0809857026409735,
+ 1.8257996643375078,
+ -0.3230489627678117,
+ -0.9932964763039428,
+ -2.1155360733732573,
+ -0.9714847814168566,
+ 1.9377663963834837,
+ -1.9645407022344787,
+ 1.303772938608845,
+ -0.20675147519402937,
+ -0.9571047238487607,
+ 1.7604813564394917,
+ -2.827143146766881,
+ -3.4302331390066785,
+ -2.1685061598284867,
+ -1.6896658403663392,
+ 1.4844777203789725,
+ -2.021424642190143,
+ 1.8517760589763728,
+ -1.0788191604942108,
+ -0.06694968302997781,
+ 1.1405151677299958,
+ -1.254241301723399,
+ -2.192212513276695,
+ 2.0383909041233137,
+ 1.1901929758411582,
+ -1.0031446987313575,
+ -0.15501267498881585,
+ 1.2558223116868827,
+ -1.2387304161968227,
+ -2.0136007561200726,
+ 1.6834648269241166,
+ 1.0948861002621089,
+ -0.8766229700609275,
+ -0.29759124801729,
+ 1.3219608782172492,
+ -1.9884816461936514,
+ 1.9102414358521649,
+ -1.2651733558980924,
+ 0.16702556105739863,
+ 0.6723207018881251,
+ 1.9603337836784929,
+ 0.9800317347859934,
+ -2.0073072671843994,
+ 1.8597765271777853,
+ -1.1489570036938561,
+ 0.08380802669490078,
+ 0.5567170080069178,
+ 2.219721050065225,
+ 1.051849024629288,
+ -2.0316369043223013,
+ 1.822593582512942,
+ -1.076256621633494,
+ -0.13716606664509676,
+ 1.1962929266073403,
+ -1.9214953539185105,
+ 3.6449177249490172,
+ 3.604717724945514,
+ 1.2293181340788244,
+ 1.127051184884509,
+ -1.050183907934837,
+ -1.1531870247625806,
+ -0.09500251588920118,
+ 1.162900227850376,
+ -1.9050272892500346,
+ 1.9649599467046626,
+ -1.418077776658923,
+ 0.3590618602943213,
+ 0.4495721750213911,
+ 0.4672050462553322,
+ -2.5195867689859313,
+ -1.2890642812414574,
+ 1.9438816353104993,
+ -1.3519712470893395,
+ 0.21859326119973832,
+ 0.5411390106206908,
+ 0.5876812087966599,
+ -2.328745400418603,
+ -1.2997258039508544,
+ 1.899643192275603,
+ -1.2418993454607443,
+ 0.13135382546634441,
+ 1.027942199305362,
+ -1.839878367274533,
+ 2.004880619316162,
+ -1.0484202922393093,
+ -2.0548786232657608,
+ -0.4885956614515505,
+ -0.059784255294113,
+ 1.102359560933992,
+ -1.8976773931424855,
+ 1.9833775520045918,
+ -1.0625114780111529,
+ -2.2593101016201644,
+ -0.7509035160624429,
+ -0.19096131343676054,
+ 1.2181787204600372,
+ -1.929853999921305,
+ 1.9642670840206193,
+ -1.366326521791697,
+ 0.2914358208000057,
+ 0.8272745334371784,
+ -1.7741728635404113,
+ -2.079035584359897,
+ 5.509022879603164e-17,
+ 3.477467295172928e-16,
+ -6.518183226917858e-17,
+ -5.814304224423516e-17,
+ 2.1160314044872136e-17,
+ -1.7205356741102976e-17,
+ 4.2434365423970314e-17,
+ 7.196471329211341e-18,
+ 1.9753073027766298e-16,
+ -8.02210097811583e-17,
+ -5.9557004103817985e-18,
+ 9.926167350636332e-19,
+ -1.8851446160083498e-16,
+ -6.069954732490686e-17,
+ 1.6212740006039342e-17,
+ 2.9116757561866574e-17,
+ 6.013603053260511e-17,
+ 4.594988302732068e-17,
+ 1.7784383169890095e-18,
+ 1.7701665108634792e-17,
+ -6.203854594147707e-18,
+ 6.964860757696493e-17,
+ -8.893225560710738e-17,
+ -4.7955796012761773e-17,
+ -6.121136532892404e-18,
+ 1.7006833394090247e-16,
+ 3.29217883796105e-17,
+ 3.288042934898285e-17,
+ -1.16146497760102e-16,
+ -2.1936829844906291e-16,
+ -1.3648480107124957e-16,
+ 8.263534319404745e-17,
+ -3.208633596093194e-16,
+ -1.7015105200215777e-16,
+ -1.8801815323330317e-16,
+ 3.219386944056383e-16,
+ -2.903403950061127e-17,
+ -1.7450925985454656e-17,
+ 1.4184079553753042e-16,
+ -7.302970833077543e-17,
+ 1.4260593760414197e-16,
+ -2.3533288427133637e-16,
+ 1.4591466005435408e-16,
+ -7.122025074081568e-17,
+ -1.0575504131490458e-16,
+ 2.6784108234467036e-16,
+ -8.256813476927752e-17,
+ 3.774270038714611e-16,
+ 1.4434301689050333e-16,
+ 5.484207461226573e-17,
+ -2.1357803416119172e-16,
+ -1.4517019750305636e-16,
+ 8.707109922886306e-17,
+ 2.0898718176152242e-16,
+ 1.5857052342641538e-16,
+ -7.113753267956038e-18,
+ 2.322309569742625e-17,
+ 2.7234921668308433e-17,
+ 5.099568476389415e-17,
+ 5.126968834180234e-17,
+ 2.009221707891304e-16,
+ 6.733250186181645e-17,
+ 5.897797767503087e-17,
+ -2.489813643784613e-17,
+ -1.2510331283040275e-16,
+ -9.810362064878907e-17,
+ 1.863637920081971e-16,
+ -3.1887812613919217e-17,
+ 2.607273290767143e-16,
+ -2.274746684520826e-18,
+ 8.33177671994037e-17,
+ 8.255262513279215e-17,
+ 4.212417269426293e-17,
+ -1.828896334354744e-16,
+ -5.699274420490361e-17,
+ -1.4508747944180105e-16,
+ 1.0246699838000629e-16,
+ 2.2507584467567883e-16,
+ 3.027481041944081e-17,
+ 1.0852609636695722e-16,
+ -2.903403950061127e-17,
+ 3.8587975575598735e-17,
+ -1.3565762045869652e-17,
+ -1.5823965118139417e-16,
+ 3.3500814808397617e-18,
+ 6.61744490042422e-19,
+ 4.6332454060626456e-17,
+ 1.0447291136544738e-16,
+ 6.058270806338374e-16,
+ -3.0150733327557854e-16,
+ -1.051346558554898e-16,
+ 8.271806125530276e-17,
+ -8.189088064274974e-18,
+ -1.1369597519541365e-16,
+ 2.39882377640378e-17,
+ -5.4759356551010426e-17,
+ -3.9208361035013506e-17,
+ 1.2358078351542233e-16,
+ -1.4285409178790788e-16,
+ -2.87341865285608e-17,
+ 3.9208361035013506e-17,
+ -3.360007648190398e-16,
+ -2.2011276100036064e-16,
+ 1.4703135388130067e-17,
+ 7.630741150801679e-17,
+ 4.2517083485225616e-17,
+ 2.5745996565712983e-17,
+ -2.6552497662952185e-17,
+ 1.0314942238536254e-16,
+ -1.8032537353656003e-17,
+ -1.1524176896512212e-16,
+ 1.0865017345884017e-16,
+ 4.8472783895607416e-17,
+ -1.4176066241568935e-16,
+ 5.616556359235058e-17,
+ 5.426304818347861e-17,
+ 9.16929709015031e-17,
+ -2.1692811564203148e-17,
+ 7.548023089546376e-17,
+ -1.0902240473448904e-16,
+ 6.452008777913615e-18,
+ 4.7893757466820296e-17,
+ 1.9753073027766298e-16,
+ -7.982292911136717e-18,
+ 1.7197084934977443e-16,
+ 2.1175823681357506e-16,
+ 7.221286747587932e-17,
+ 5.4387125275361563e-17,
+ 5.0871607672011196e-17,
+ -1.4475660719677984e-17,
+ 1.0257039595657542e-16,
+ 3.1267427154504446e-17,
+ 2.933182452113036e-16,
+ -2.072087434445334e-16,
+ 1.319146281868941e-16,
+ 8.153415900358623e-17,
+ -1.0265311401783072e-16,
+ -7.593518023236793e-17,
+ -4.946540063067105e-17,
+ 6.044557702745894e-17,
+ -8.519960309296184e-17,
+ 9.429858983104514e-17,
+ -6.90695811481778e-18,
+ 1.2804755882320868e-16,
+ -2.744585272450946e-16,
+ -4.898977177845306e-17,
+ -5.4314746971763174e-17,
+ -1.852884572118782e-17,
+ -5.10370437945218e-17,
+ 4.628075527234189e-17,
+ 2.5005669917478027e-16,
+ 2.4997398111352496e-16,
+ 3.5734202462290796e-17,
+ 8.073282778517549e-17,
+ 3.297141921636368e-16,
+ -5.227781471335134e-17,
+ 7.709323308994217e-17,
+ -2.5787355596340635e-17,
+ 3.279771128772755e-17,
+ 9.094850835020538e-17,
+ -6.989676176073084e-17,
+ -1.7205356741102973e-16,
+ 8.687464383338172e-17,
+ 8.97490964620035e-18,
+ -2.9745414827406875e-16,
+ -3.383168705341883e-17,
+ -1.5699888026256463e-16,
+ 4.690631061058512e-17,
+ -2.431497410599625e-16,
+ 1.0815451132616191e-16,
+ 7.529411525763934e-17,
+ -1.7002697491027481e-16,
+ -2.105174658947455e-17,
+ 2.3946878733410148e-17,
+ -5.281548211151081e-17,
+ -1.7776111363764562e-16,
+ -2.0017770823783267e-17,
+ -1.1458519435390816e-16,
+ 8.077418681580314e-17,
+ 2.2993553077442787e-16
+ ],
+ [
+ -5.005169616428646,
+ -4.284024253616497,
+ 1.976165116132671,
+ 0.9211790101627693,
+ -3.5165872575422834,
+ 5.012349407548896,
+ -4.767028698217776,
+ 2.9771680847395463,
+ -0.3755797591355469,
+ -1.695400771486422,
+ -5.789637041711938,
+ -2.7412229362704923,
+ 5.052409454479181,
+ -4.681381122355677,
+ 2.678032846089158,
+ -0.0501022785803864,
+ -1.0563147772757775,
+ -5.252164172820834,
+ -2.6985253398332856,
+ 5.097373969942736,
+ -4.524577805324631,
+ 2.4889039506997945,
+ 0.5198399335899816,
+ -3.2113186902023947,
+ 4.86625624185514,
+ -3.250437243083149,
+ -5.853616982207908,
+ 1.3073724050983826,
+ 1.2696360538072844,
+ 0.7371277757437962,
+ -3.4829271884466153,
+ 4.965671894975274,
+ -3.217248909304552,
+ -6.319712475702804,
+ 0.9866259451301691,
+ 1.0358540442827484,
+ 1.0904269139496603,
+ -3.643115622011351,
+ 5.013878796575427,
+ -4.699685709646781,
+ 2.83509299728902,
+ -0.04962630969004944,
+ -3.1624189359154222,
+ -2.9049257785140696,
+ 2.6897427746838587,
+ 2.9558762292478367,
+ 9.055031295096569,
+ 9.163419439879208,
+ -4.739792653586279,
+ 2.916612126966624,
+ -0.1524250167511,
+ -2.804016214178424,
+ 4.68495884073258,
+ -5.050983678658683,
+ 2.581051003442131,
+ 5.485949263175743,
+ 1.5903076901382562,
+ 0.3133647413812163,
+ -2.9847169112028844,
+ 4.770616903767298,
+ -4.9805139110934205,
+ 2.394881759180161,
+ 4.830638674791077,
+ 1.8624550484847449,
+ 0.5213207795742434,
+ -3.2688467112173694,
+ 4.88875328379657,
+ -4.92506910045499,
+ 3.240255759424579,
+ -0.5569125211360425,
+ -2.310478843104238,
+ 2.8099099646925447,
+ 4.3564637578034615,
+ -4.97122373098604,
+ -3.07777245078017,
+ 3.068135612282964,
+ -0.19886446023819956,
+ -2.625089378192571,
+ 3.048225411648684,
+ 5.53646741795461,
+ 2.1609884784695237,
+ 0.6274956640281223,
+ -3.273315910010099,
+ 4.893631584472472,
+ -4.928655827342827,
+ 3.241326200472289,
+ -0.5552362087988173,
+ -2.3144138112364554,
+ 4.715594641167756,
+ 5.546938833572117,
+ 0.4711197977928,
+ 0.13958592390556682,
+ -1.2040755572298922,
+ 3.7264788101011246,
+ -5.040010423376925,
+ 4.656440275640682,
+ -2.740351245152111,
+ -0.0660216450422089,
+ 1.7650175400257828,
+ 2.4694712335411735,
+ -6.6598678702454155,
+ -3.509920676695438,
+ 4.561244313537385,
+ -2.549080455742238,
+ -0.42496679013917243,
+ 1.9332547192877982,
+ 2.565046810588928,
+ -5.779053721268877,
+ -3.333602647262578,
+ 4.386408736094386,
+ -2.2312424744146413,
+ -0.6428019010152984,
+ 3.436557184958559,
+ -4.95185289195639,
+ 4.865197313808871,
+ -2.1902384567795474,
+ -4.533083521180131,
+ -2.331927946215979,
+ -0.8008653840999336,
+ 3.5960997456201196,
+ -5.0317970675104835,
+ 4.740916538503322,
+ -2.0387056576290528,
+ -4.626008782098746,
+ -2.932975099119773,
+ -1.0531648592359397,
+ 3.8429640177217697,
+ -5.068755344790587,
+ 4.653277926961496,
+ -2.5891534966139025,
+ -0.2386113760884479,
+ 2.992938991991314,
+ -7.648713421038668,
+ -7.432452724126425,
+ -0.3465435277164862,
+ -0.024766098011371154,
+ 7.0278308867903005,
+ 7.253952475272907,
+ -2.682137126688013,
+ -0.13192355805529396,
+ 2.8994989575685097,
+ -4.791839432286623,
+ 4.997551188902125,
+ -3.584806354608718,
+ 0.8194205098034391,
+ 2.51385625422643,
+ 4.926841814381077,
+ 2.2240632843544774,
+ -4.8646565901588,
+ 4.944793690654021,
+ -3.31993684453579,
+ 0.5642583771333608,
+ 1.934827525102573,
+ 4.7864362022175735,
+ 2.3642146370172115,
+ -4.96414636141203,
+ 4.839804972587148,
+ -3.150109729701209,
+ 0.2733940396891664,
+ 2.556632164192721,
+ -4.562341075294017,
+ 3.323736258335134,
+ 5.8320688829118055,
+ -2.174870852079653,
+ -1.7302652061808546,
+ 0.05466103827703717,
+ 2.8612922201236857,
+ -4.713885517970747,
+ 3.4873146983248327,
+ 6.6888280739863015,
+ -2.0110260549775685,
+ -1.5394144588076986,
+ -0.3042923383026491,
+ 3.043568334810642,
+ -4.794495435743338,
+ 4.956286670194853,
+ -3.459566628696179,
+ 0.8401566134043584,
+ 0.39778589462301694,
+ 0.18795920263165944,
+ 2.026592500754918e-15,
+ 1.9442053117446362e-15,
+ 6.23197873497451e-16,
+ 3.6089890125688593e-16,
+ -2.1630773018261671e-16,
+ -2.1374347028370233e-16,
+ -2.341334723831345e-16,
+ -2.265647697782743e-16,
+ -1.1748859830396929e-15,
+ 1.5145677015845934e-16,
+ 2.329340604949326e-16,
+ 7.25106524963984e-16,
+ 2.8471556684075213e-16,
+ 1.8210381185354902e-16,
+ -1.0240495983406481e-16,
+ -7.037652651601158e-16,
+ -2.773536593890302e-16,
+ -1.1410956550169017e-16,
+ -1.1762508310504054e-16,
+ 3.7322389238392604e-16,
+ 1.833032237417509e-16,
+ -1.4475660719677984e-16,
+ 7.80858498250058e-17,
+ 1.9099600343849407e-16,
+ 1.5782606087511766e-16,
+ -7.795350092699732e-16,
+ -1.2970192004831474e-16,
+ -6.220398206398768e-17,
+ 9.395117397377288e-16,
+ 9.158543742187122e-16,
+ 4.20207751176938e-16,
+ -9.132073962585424e-17,
+ 6.600487697866883e-16,
+ 5.518509607253382e-16,
+ 3.957232050453684e-16,
+ -1.4247358870613347e-15,
+ 1.407861402565253e-16,
+ 1.738733647586464e-16,
+ -4.2070405954446983e-16,
+ 7.275053487403877e-16,
+ -5.98878763488392e-17,
+ 6.308079351329388e-16,
+ 1.1137986948026518e-16,
+ 2.717288312236696e-16,
+ -2.3161057151484772e-17,
+ -8.715174933858699e-16,
+ 7.527343574232552e-17,
+ -8.2784235704307e-16,
+ -1.6849669077705171e-16,
+ -6.253485430900889e-17,
+ 2.455899238669939e-16,
+ 3.2822526706104133e-16,
+ 6.745657895369941e-17,
+ -6.691891155553993e-16,
+ -4.676879183374818e-16,
+ -6.400826977511897e-17,
+ -2.8730050625498034e-16,
+ 2.879829302603366e-16,
+ -1.0945667455607937e-16,
+ -4.1555486023132723e-16,
+ 3.965297061426076e-17,
+ -1.7197084934977443e-16,
+ 1.1073880450553657e-16,
+ -1.528629771997995e-16,
+ -3.9208361035013506e-17,
+ 1.0449359088076121e-16,
+ -9.228026913641577e-16,
+ 7.378451063973007e-17,
+ -5.684385169464406e-16,
+ -6.869734987252895e-17,
+ -3.81412980448201e-16,
+ -3.7355476462894725e-16,
+ -2.0580253640319326e-16,
+ 4.0680742525357896e-16,
+ -5.660396931700368e-16,
+ 1.0836066024444661e-16,
+ -2.0257653201423645e-16,
+ -3.0829021429851337e-16,
+ 1.492233825045662e-16,
+ -2.9133301174117635e-16,
+ 9.243743345280083e-17,
+ -1.980270386451948e-16,
+ 9.926167350636332e-19,
+ 5.119420811090688e-16,
+ -2.0439632936185311e-16,
+ -1.437639904617162e-16,
+ -3.734306875370643e-16,
+ -3.2226956665065953e-16,
+ -1.4839620189201315e-15,
+ 1.6055575689654265e-16,
+ 3.368279454315928e-16,
+ 7.583591855886157e-16,
+ 3.35504456451508e-16,
+ -1.1042861177582918e-17,
+ -3.1714104685283076e-16,
+ 2.3094882702480533e-16,
+ -5.3270431448414976e-17,
+ -2.0216294170795994e-16,
+ 1.2440796412797536e-16,
+ -2.271334564494045e-16,
+ -1.7536228986124187e-17,
+ 7.441316790527036e-16,
+ 6.940045339319901e-16,
+ -1.654361225106055e-16,
+ 1.0257039595657542e-16,
+ 3.508900158449943e-16,
+ -1.623755542441593e-16,
+ 2.5328270356373707e-16,
+ 6.989676176073084e-17,
+ 1.0844337830570192e-16,
+ 3.2983826925551974e-16,
+ -1.862810739469418e-16,
+ -1.0248767789532012e-16,
+ 2.2267702089927505e-16,
+ -2.0811864211834174e-16,
+ 4.8472783895607416e-17,
+ -3.720658395263518e-16,
+ -4.4006008587821066e-17,
+ 3.302105005311686e-16,
+ 1.8437855853806984e-16,
+ -2.1837568171399928e-17,
+ -1.4889251025954498e-16,
+ -2.1539783150880838e-16,
+ -1.5054687148465104e-17,
+ -4.0068628872068656e-16,
+ -5.889525961377557e-16,
+ -1.6973746169588125e-16,
+ -2.0402409808620425e-16,
+ -3.4725042114976097e-16,
+ -2.547716286663325e-16,
+ -3.5601853564282306e-16,
+ -1.465764045443965e-16,
+ -9.330597309598152e-16,
+ 4.860513279361591e-16,
+ -4.719892575227576e-16,
+ -4.863408411505526e-16,
+ 3.002252033261214e-16,
+ -3.7305845626141543e-16,
+ 3.2226956665065953e-16,
+ -1.301568693852189e-16,
+ 1.773475233313691e-16,
+ -1.0554824616176632e-16,
+ 7.366043354784711e-17,
+ -7.037652651601158e-16,
+ 9.76734867302615e-16,
+ 6.683619349428464e-17,
+ 3.258425991559765e-16,
+ 6.369290716658312e-16,
+ -9.562207881112999e-17,
+ -1.344995676011223e-16,
+ -4.963083675318166e-16,
+ -3.6065074707312e-16,
+ 3.5072457972248373e-17,
+ -2.301216464122523e-16,
+ -1.1074294040859935e-15,
+ 1.3499587596865412e-16,
+ -4.354278744479137e-16,
+ -3.477467295172928e-16,
+ -2.8306120561564607e-16,
+ -2.722044600758876e-16,
+ 2.5576424540139616e-16,
+ 4.01348033210729e-16,
+ -2.1925456111483687e-17,
+ -9.785546646502316e-17,
+ 5.507368518378058e-16,
+ -3.159829939952566e-17,
+ 1.743696731261782e-16,
+ -1.4988512699460861e-16,
+ 2.1473608701876596e-16,
+ -8.983181452325879e-17,
+ -3.2326218338572317e-16,
+ 8.564873631618399e-16,
+ 1.4595601908498173e-16,
+ 7.055850625077326e-17,
+ 6.915229920943311e-17,
+ 3.3815143441167766e-16,
+ -4.5164061445395305e-17,
+ 2.7975248316543396e-16,
+ -1.2791520992520018e-15,
+ 3.662755752384806e-16
+ ],
+ [
+ -3.1716866295741992,
+ -2.7423012892728393,
+ 1.1457677564794586,
+ 0.982623400365348,
+ -2.7902699699818534,
+ 3.71271366359769,
+ -3.354413530283517,
+ 1.9089955747289942,
+ -0.0570651117795331,
+ -0.832716651740249,
+ -4.422503068971386,
+ -2.1312354661126305,
+ 3.7285357479096555,
+ -3.279286645141977,
+ 1.6789430190465644,
+ 0.16998955930971418,
+ -0.41144858462270373,
+ -3.9844827345905234,
+ -2.085314370651312,
+ 3.739182269350138,
+ -3.1451280102248176,
+ 1.534446112409938,
+ 0.6940205116401287,
+ -2.5845975601626656,
+ 3.6405353346334004,
+ -2.320885117484711,
+ -4.241199172305802,
+ 0.5973982143991391,
+ 0.7332781201881686,
+ 0.8505422713325945,
+ -2.7677493222351917,
+ 3.6915109498066516,
+ -2.2836761494992968,
+ -4.550869281067543,
+ 0.3281113013338028,
+ 0.5564388962555714,
+ 1.1037259698863628,
+ -2.874703363582068,
+ 3.7133677741613633,
+ -3.295258829767131,
+ 1.799510300857837,
+ 0.28114592317638215,
+ -2.8352337094429245,
+ -2.6469062340296747,
+ 1.6946683972241825,
+ 1.8995933560014473,
+ 6.562348208194548,
+ 6.655746792637673,
+ -3.3303225545547788,
+ 1.8622815857722381,
+ 0.20617010479508588,
+ -2.306472722558038,
+ 3.537979511220176,
+ -3.6252116156469794,
+ 1.746253192367752,
+ 3.7926267316185442,
+ 1.539909733515686,
+ 0.4349263784979997,
+ -2.4303505526614724,
+ 3.5875439341802586,
+ -3.55208910260527,
+ 1.5997263580226349,
+ 3.3103412828194867,
+ 1.7002380383658793,
+ 0.5834003967581992,
+ -2.6235585668525827,
+ 3.6525221339323855,
+ -3.4986034258410093,
+ 2.1129924959569233,
+ -0.08999332890175231,
+ -1.9649234614438207,
+ 2.1562264555123027,
+ 3.414236893671818,
+ -3.425959383268197,
+ -2.161341819421742,
+ 1.9793252601056246,
+ 0.17228845622034447,
+ -2.1831997669280794,
+ 2.3266871572796974,
+ 4.082971099106417,
+ 1.9654969423542639,
+ 0.6706773244622629,
+ -2.6267162968191053,
+ 3.656158370019277,
+ -3.501454345692926,
+ 2.1140909573550197,
+ -0.08906186207515285,
+ -1.9676267234692217,
+ 3.7883334915657367,
+ 4.485492856950417,
+ 0.9062303337573625,
+ 0.5615181119784256,
+ -1.1846602449971613,
+ 2.9302300262313423,
+ -3.7255745076317934,
+ 3.2575650136907934,
+ -1.7270130716198724,
+ -0.365061355917639,
+ 1.4728115135257365,
+ 2.1830251857375473,
+ -4.803420368361295,
+ -2.5639597943392674,
+ 3.176057913448347,
+ -1.5806246960668275,
+ -0.625299557314833,
+ 1.5754040842107213,
+ 2.193795499268686,
+ -4.144258197367731,
+ -2.4252231809914995,
+ 3.0293550802497844,
+ -1.3388836114610274,
+ -0.7824378381872579,
+ 2.7367426260288514,
+ -3.685906446968869,
+ 3.442398440900207,
+ -1.4388637237312125,
+ -3.0693786909339553,
+ -2.0307221574701204,
+ -0.7832649405285694,
+ 2.843590625485017,
+ -3.722424154594589,
+ 3.3310593176644496,
+ -1.319262582062387,
+ -3.0960941191699303,
+ -2.4853320599321367,
+ -0.963723849166496,
+ 3.0071323677148207,
+ -3.735685137992849,
+ 3.2548391591941033,
+ -1.6112581014155045,
+ -0.49037439325371385,
+ 2.436012315245043,
+ -5.88136296177399,
+ -5.732652080314167,
+ -0.5628310011761231,
+ -0.3293257605802405,
+ 4.760790615298933,
+ 4.9331066950377345,
+ -1.6821190569142208,
+ -0.41321899443663446,
+ 2.372034489539689,
+ -3.599506549166906,
+ 3.569302226854284,
+ -2.3829535512680944,
+ 0.3950280336810344,
+ 1.4670844302270558,
+ 3.8365457805662033,
+ 1.7743278684257848,
+ -3.6397175701062485,
+ 3.517445940364257,
+ -2.175121220934455,
+ 0.207224112664434,
+ 1.0653399456658221,
+ 3.6939023524944568,
+ 1.8663915332362588,
+ -3.6907490660298117,
+ 3.419740739219364,
+ -2.042941088465452,
+ -0.11782794139211203,
+ 2.1358714184779024,
+ -3.4648071881294946,
+ 2.405948004576416,
+ 4.281878468561653,
+ -1.2456415203010218,
+ -1.0830367186151457,
+ -0.27750428131758326,
+ 2.3458623761772217,
+ -3.5549390088563624,
+ 2.513862466786829,
+ 4.883641749143752,
+ -1.0681028750527088,
+ -0.9250257654803634,
+ -0.5382389712316155,
+ 2.4705473821244555,
+ -3.601002376292081,
+ 3.5285988480858426,
+ -2.2844326925432634,
+ 0.29856013692583955,
+ 0.7492780767641775,
+ 0.7012174047654528,
+ 1.428375481756568e-15,
+ 1.285769544152426e-15,
+ 4.385711607756152e-16,
+ 2.7363134663254155e-16,
+ -1.57546887418381e-16,
+ -1.5385559393486312e-16,
+ -1.2722554808948411e-16,
+ -1.4064138364932853e-16,
+ -8.673021034361172e-16,
+ 1.0426611621230913e-16,
+ 1.6717320179696687e-16,
+ 4.609463963451747e-16,
+ 2.0685719168419837e-16,
+ 1.080297879994254e-16,
+ -8.08982639076861e-17,
+ -4.850587112010954e-16,
+ -1.9347754527615315e-16,
+ -6.474756244758824e-17,
+ -6.253485430900889e-17,
+ 2.517937784611416e-16,
+ 1.3962808739895107e-16,
+ -8.743299074685501e-17,
+ 6.832511859688009e-17,
+ 1.5071230760716162e-16,
+ 9.727644003623604e-17,
+ -5.684385169464406e-16,
+ -8.569591146049365e-17,
+ -4.135903062765138e-17,
+ 6.772127674971637e-16,
+ 6.604210010623372e-16,
+ 3.24585672365808e-16,
+ -8.015380135638837e-17,
+ 4.208383148352963e-16,
+ 4.2040420657241935e-16,
+ 3.148249411376823e-16,
+ -1.036291871406433e-15,
+ 1.1795595535006175e-16,
+ 1.3400325923359048e-16,
+ -3.120952451162573e-16,
+ 4.86175405028042e-16,
+ -4.20207751176938e-17,
+ 4.484146100649963e-16,
+ 4.35510592509169e-17,
+ 2.1440521477374475e-16,
+ -6.61744490042422e-19,
+ -6.318005518680024e-16,
+ 6.650532124926343e-17,
+ -5.656261028637603e-16,
+ -1.5919090888583015e-16,
+ -5.227781471335134e-17,
+ 1.9562821486879102e-16,
+ 2.3740083580271894e-16,
+ 4.3633777312172204e-17,
+ -4.849320491697982e-16,
+ -3.5519135503027003e-16,
+ -4.160201493258883e-17,
+ -2.0797388551114496e-16,
+ 2.334303688624644e-16,
+ -8.518926333530493e-17,
+ -2.9524661001431786e-16,
+ 6.400309989629051e-18,
+ -1.3243161606973973e-16,
+ 5.990855586415303e-17,
+ -9.82897362866135e-17,
+ -1.075334796318936e-18,
+ 1.0218782492326964e-16,
+ -6.784948974466209e-16,
+ 3.875341169810934e-17,
+ -4.195460066868956e-16,
+ -5.0499376396362333e-17,
+ -2.605618929542037e-16,
+ -2.8190315275807183e-16,
+ -1.4492204331929045e-16,
+ 3.0440246541951414e-16,
+ -3.843908306533919e-16,
+ 8.503416697045123e-17,
+ -1.6853804980767936e-16,
+ -2.388897609053144e-16,
+ 1.0902240473448904e-16,
+ -2.0867698903181503e-16,
+ 6.751861749964088e-17,
+ -1.3971080546020637e-16,
+ 1.654361225106055e-19,
+ 3.871825652207584e-16,
+ -1.4355719530857795e-16,
+ -9.876536513883149e-17,
+ -2.5197989409896606e-16,
+ -2.2855000324840155e-16,
+ -1.1047824261258238e-15,
+ 1.0514628808285383e-16,
+ 2.385588886602932e-16,
+ 4.652063764998228e-16,
+ 2.0828407824085234e-16,
+ -1.1022181662269092e-17,
+ -2.2896359355467806e-16,
+ 1.8131799027162364e-16,
+ -2.0762233375080992e-17,
+ -1.318525896409526e-16,
+ 9.098986738083303e-17,
+ -1.6289254212700495e-16,
+ -2.431911000905901e-17,
+ 5.6281368878108e-16,
+ 5.151680854980256e-16,
+ -9.462946207606635e-17,
+ 1.080297879994254e-16,
+ 2.6734477397713854e-16,
+ -1.2209185841282688e-16,
+ 1.9083056731598346e-16,
+ 7.436353706851719e-17,
+ 6.944181242382667e-17,
+ 2.505530075423121e-16,
+ -1.4723814903443893e-16,
+ -9.529120656610878e-17,
+ 1.6444350577554188e-16,
+ -1.684139727157964e-16,
+ 3.044024654195142e-17,
+ -2.605618929542037e-16,
+ -1.7784383169890095e-17,
+ 2.474924392758659e-16,
+ 1.2986735617082534e-16,
+ -1.8859717966209028e-17,
+ -1.1448179677733903e-16,
+ -1.651052502655843e-16,
+ 2.3161057151484775e-18,
+ -3.062222627671308e-16,
+ -4.48331892003741e-16,
+ -1.3698110943878138e-16,
+ -1.6214807957570723e-16,
+ -2.483196198884189e-16,
+ -1.7784383169890093e-16,
+ -2.607273290767143e-16,
+ -1.0753347963189359e-16,
+ -6.392451773809797e-16,
+ 3.5254437707010035e-16,
+ -3.376137670135182e-16,
+ -3.712800179444264e-16,
+ 2.2966669707534813e-16,
+ -2.3773170804774015e-16,
+ 2.6403605152692643e-16,
+ -1.0827794218319131e-16,
+ 1.4392942658422682e-16,
+ -9.959254575138452e-17,
+ 4.7604244252426737e-17,
+ -5.088815128426226e-16,
+ 7.636531415089551e-16,
+ 4.714929491552257e-17,
+ 2.329237207372757e-16,
+ 4.736436187478636e-16,
+ -5.69100261436483e-17,
+ -9.496033432108756e-17,
+ -3.8513529320468964e-16,
+ -3.05725954399599e-16,
+ 2.0514079191315083e-17,
+ -1.6973746169588125e-16,
+ -8.344598019434942e-16,
+ 9.686284972995953e-17,
+ -3.2855613930606254e-16,
+ -2.785944303078597e-16,
+ -1.9753073027766298e-16,
+ -2.0611272913290065e-16,
+ 1.952146245625145e-16,
+ 2.9480717031389906e-16,
+ -1.7753363896919356e-17,
+ -6.112864726766875e-17,
+ 4.458503501660819e-16,
+ -1.9356026333740845e-17,
+ 1.4823076576950256e-16,
+ -1.3673295525501547e-16,
+ 1.83055069557985e-16,
+ -7.924390268258004e-17,
+ -2.273919503908273e-16,
+ 6.193101246184517e-16,
+ 1.2614504341433672e-16,
+ 5.98878763488392e-17,
+ 5.285684114213846e-17,
+ 2.478233115208871e-16,
+ -3.2673634195844593e-17,
+ 2.0265925007549176e-16,
+ -9.04604717887991e-16,
+ 3.6726819197354424e-16
+ ],
+ [
+ 6.306875453795129,
+ 5.083128508367814,
+ -3.70619389757667,
+ 3.3942928033445874,
+ -1.9850145869350666,
+ -0.1897578104523394,
+ 2.1970313487197926,
+ -3.4954733226712773,
+ 2.539395745174074,
+ 4.89556189409073,
+ -1.3114875319297028,
+ -1.0470014634892784,
+ -0.34944846001188795,
+ 2.3272346730809224,
+ -3.5809674775074187,
+ 2.3668519017636402,
+ 4.276298792907649,
+ -0.8760998776558688,
+ -0.8853812181839642,
+ -0.6099085496544491,
+ 2.5269704685423737,
+ -3.62413613851947,
+ 3.50853503756908,
+ -2.230032175904223,
+ 0.2272650548255934,
+ 1.1137826121742826,
+ 1.3025304397276105,
+ -4.285938615026489,
+ -2.413671630602325,
+ 3.449768995402016,
+ -2.013833062816074,
+ -0.03528699954537055,
+ 1.2567085784265526,
+ 1.7264260639576492,
+ -4.635852971120704,
+ -2.4467724849053147,
+ 3.3392239832790773,
+ -1.874155032265886,
+ -0.19530409554745257,
+ 2.300374047326457,
+ -3.5385986841410006,
+ 3.632140957303707,
+ -5.5077035315056335,
+ -5.544873992974713,
+ -3.5008935132867443,
+ -3.4219416462814825,
+ -1.9969082426605265,
+ -1.8511685327818608,
+ 2.2407473549400794,
+ -3.5144212003325768,
+ 3.649375351543027,
+ -2.514621005712029,
+ 0.5965218062342701,
+ 1.5172888746855713,
+ -1.9883604304372233,
+ -3.3010884523849993,
+ 4.073024830449194,
+ 2.30412696929297,
+ -2.3939191679215153,
+ 0.43473653471867263,
+ 1.7535525089548352,
+ -2.0798453620106443,
+ -3.2407226281845136,
+ 3.5916173883900075,
+ 2.2327435743962027,
+ -2.1861648985392965,
+ 0.1729981778915122,
+ 1.893226482192271,
+ -3.4012335765938126,
+ 3.70403427995067,
+ -2.8075823942681075,
+ 0.7488055415403835,
+ 1.9744589730782462,
+ 3.11489560287656,
+ 1.468639282516843,
+ -3.465237868086327,
+ 3.6570330113072425,
+ -2.627113201749567,
+ 0.6705538085242101,
+ 1.9654654786757688,
+ 4.084245678852211,
+ 2.3272906452475723,
+ -2.1842449799664783,
+ 0.1731290597918242,
+ 1.8911176497575148,
+ -3.3977971478090367,
+ 3.700432080437143,
+ -2.8050073457075255,
+ 3.1951427790753963,
+ 4.092908687118682,
+ 6.3457775247583665,
+ 5.226200572816175,
+ -3.2978354323534655,
+ 1.7999708459904844,
+ 0.2779408551509804,
+ -2.3633190543497826,
+ 3.5615312422745466,
+ -3.6078178165841184,
+ 1.8223933502233907,
+ 3.9473250230194,
+ 1.7324561635350426,
+ 0.5426768547403916,
+ -2.4852703309851467,
+ 3.6080975163811018,
+ -3.52985732013454,
+ 1.5645393019681844,
+ 3.258277602465581,
+ 1.7759878728035041,
+ 0.6289036444175441,
+ -2.675072944630077,
+ 3.668170916225388,
+ -3.473476993052616,
+ 2.053746765333888,
+ -0.01811703296948587,
+ -2.026330940089567,
+ 2.1780909598266582,
+ 3.464254705798955,
+ -3.3767376337129815,
+ -2.139963220779297,
+ 1.9183732546295116,
+ 0.24412090946672854,
+ -2.241821950232233,
+ 2.256385652113015,
+ 3.9487115446667165,
+ -3.4614222206132417,
+ -2.057070512640084,
+ 1.6884851340295384,
+ 0.4067063475740661,
+ -2.367627273648681,
+ 3.598772857580209,
+ -3.572435765816449,
+ 2.3887494304157015,
+ -2.1755775452087933,
+ -2.3148791603253813,
+ -3.482815943033641,
+ -3.550260732067711,
+ -5.345691717145327,
+ -5.299108213662599,
+ 3.579613932572517,
+ -3.597822065175454,
+ 2.452050274203825,
+ -0.3910387506222263,
+ -1.7016784023881921,
+ 3.2459160471411908,
+ -2.4510936839279815,
+ -4.60538385246227,
+ 1.9508986335921252,
+ 1.3653236947854643,
+ -0.23151425286060429,
+ -1.845607199738513,
+ 3.3687990125868787,
+ -2.4277521159519218,
+ -4.273420654129385,
+ 1.5149102599153548,
+ 1.2258595751139119,
+ 0.031037014725370418,
+ -2.0693282442529655,
+ 3.4352891792228535,
+ -3.6683562610594844,
+ 2.66831001770355,
+ -0.802727916439996,
+ -0.7651653031619039,
+ -0.6548513128889037,
+ 4.253979392478314,
+ 2.3333152984309384,
+ -3.633331251737335,
+ 2.477781614169633,
+ -0.544391559810532,
+ -0.9226681281680051,
+ -1.0624188043052176,
+ 4.889266240719367,
+ 2.516165128869575,
+ -3.560970367113564,
+ 2.3529233498232704,
+ -0.3855074608491979,
+ -1.8158865449578527,
+ 3.306856421230612,
+ -3.7288695729822057,
+ 5.176553464568273,
+ 6.410486918944068,
+ -1.364186266222453e-15,
+ -2.0563710028068268e-15,
+ -4.341871035290842e-16,
+ -1.3971080546020637e-16,
+ 1.3628317579693977e-16,
+ 7.601789829362323e-17,
+ 3.563080488572166e-16,
+ 3.8199200687698813e-16,
+ 4.805919358933091e-16,
+ -2.2582030722697652e-17,
+ -1.0036802757565298e-16,
+ -8.792929911438683e-16,
+ 9.868264707757619e-17,
+ -1.770993691476032e-16,
+ -4.681842267050136e-17,
+ 3.9506146055532597e-16,
+ 1.5865324148767068e-16,
+ 1.681658185320305e-16,
+ 2.810759721455188e-16,
+ -4.0101716096570777e-16,
+ -1.5468277454741618e-17,
+ 1.771820872088585e-16,
+ 1.2457340025048597e-16,
+ -1.3317607862103744e-17,
+ -3.37282894768497e-16,
+ 1.1030453468394623e-16,
+ 8.511688503170654e-17,
+ 2.580803511165446e-17,
+ -4.288104295474895e-16,
+ -3.5841735941922684e-16,
+ 1.1423364259357312e-16,
+ -1.0484514264109625e-16,
+ -4.977972926344121e-16,
+ -4.297203282212978e-17,
+ 2.1643180727449967e-16,
+ 4.142520507665562e-16,
+ 4.106951741325782e-17,
+ -7.229558553713462e-17,
+ 1.1795595535006175e-16,
+ -6.753102520882917e-16,
+ -3.738856368739685e-17,
+ -1.8295684186024433e-16,
+ -3.8273646942828586e-16,
+ -8.271806125530276e-19,
+ 1.6113478332532977e-16,
+ 1.283784310682299e-16,
+ 1.1051132983708449e-16,
+ 7.262645778215583e-17,
+ -2.68833699079734e-16,
+ -6.931773533194372e-17,
+ 2.326031882499114e-16,
+ -8.751570880811032e-17,
+ -2.4054412213042045e-16,
+ 5.128519797828771e-17,
+ 6.683619349428464e-17,
+ 7.2605778266842e-17,
+ 1.1127647190369605e-16,
+ -7.345363839470886e-17,
+ -1.9025154088719633e-17,
+ 1.8470943078309106e-16,
+ -3.9400680527432086e-16,
+ 1.4227506535912076e-17,
+ -2.574186066265022e-16,
+ 1.5716431638507523e-16,
+ 3.148249411376823e-16,
+ 2.4021324988539924e-16,
+ 3.1681017460780955e-16,
+ -6.402377941160434e-17,
+ -9.926167350636331e-17,
+ 2.674895305843353e-17,
+ 3.0514692797081186e-16,
+ 1.14368059443113e-16,
+ 1.6903435817521118e-16,
+ 4.2475724454597965e-17,
+ 5.435197009932807e-16,
+ 8.288349737781336e-17,
+ -1.4823076576950256e-16,
+ -2.3322357370932615e-16,
+ -2.0827373848319543e-16,
+ 9.23340358762317e-17,
+ -1.5633713577252223e-17,
+ 5.773720675620133e-17,
+ -2.9778502051908992e-18,
+ -5.550381910230815e-17,
+ 1.1994118882018901e-16,
+ 1.120416139703076e-16,
+ 2.8072442038518377e-16,
+ 1.288747394357617e-16,
+ 9.562207881112999e-17,
+ 8.784658105313153e-17,
+ 1.798290651690282e-16,
+ -1.4680801511591133e-15,
+ -4.47504711391188e-16,
+ 7.169587959303367e-17,
+ 8.09809819689414e-17,
+ 1.4889251025954496e-18,
+ 3.4788114636683265e-16,
+ 1.3847003454137683e-16,
+ 1.0521737391674511e-16,
+ 1.976961664001736e-16,
+ -4.3499360462632337e-17,
+ 7.80858498250058e-17,
+ -6.253485430900889e-17,
+ 2.5013941723603557e-16,
+ 5.517294685728694e-17,
+ -2.1126192844604324e-16,
+ 6.782881022934826e-18,
+ -5.930884992005208e-17,
+ 2.9592386414084565e-17,
+ -9.810362064878907e-17,
+ 3.9932144070997405e-17,
+ -1.7867101231145395e-16,
+ -1.5038143536214043e-16,
+ 1.7577588016751838e-17,
+ -3.3521494323711447e-17,
+ -2.5175241943051397e-16,
+ 1.6584971281688202e-16,
+ 1.6990289781839186e-16,
+ -2.4699613090833406e-16,
+ 3.2756352257099896e-17,
+ 5.765448869494603e-17,
+ -4.8141911650586205e-17,
+ -3.176373552203626e-17,
+ 1.227536029028693e-16,
+ -1.0889832764260608e-16,
+ -1.9322939109238724e-16,
+ -1.2771668657818747e-16,
+ -1.261450434143367e-17,
+ 2.7296960214249913e-16,
+ 2.6717933785462794e-16,
+ 1.861156378244312e-16,
+ 4.590852399669303e-17,
+ 5.332006228516816e-16,
+ -7.408436361178054e-17,
+ 1.5418646617988433e-16,
+ 1.3805644423510032e-16,
+ 2.2127081385793487e-17,
+ 7.631568331414232e-16,
+ 6.644328270332195e-17,
+ -7.535615380358081e-17,
+ 2.444318710094197e-16,
+ -1.998054769621838e-16,
+ -9.906521811088196e-17,
+ 2.7098436867237187e-16,
+ -3.3294019655259364e-17,
+ 5.97224402263286e-17,
+ -1.9281580078611073e-16,
+ -4.033953052267977e-16,
+ 2.2840524664120477e-16,
+ 3.9787387463800625e-17,
+ -1.5071230760716162e-16,
+ -4.1371438336839674e-16,
+ -8.346252380660048e-17,
+ -2.3016300544287992e-17,
+ 1.5865324148767068e-16,
+ -2.816549985743059e-17,
+ 6.050826180825397e-17,
+ 3.0543644118520547e-17,
+ 3.2342761950823377e-16,
+ 7.510799961981491e-17,
+ 6.015671004791894e-17,
+ -1.9645539548134404e-17,
+ -7.412572264240819e-17,
+ 7.471508882885222e-17,
+ 9.926167350636331e-17,
+ 5.1202479917032407e-17,
+ 2.0497535579064023e-16,
+ -1.8454399466058045e-16,
+ 3.744646633027556e-16,
+ -2.900922408223468e-16,
+ 1.92071338234813e-16,
+ -3.5221350482507913e-16,
+ 6.203854594147708e-17,
+ -1.1183481881716934e-16,
+ 5.761312966431838e-17,
+ -4.4254162771586974e-17,
+ 2.98612201131643e-17,
+ -9.024540482953531e-17,
+ 8.05177608259117e-16,
+ -4.917588741627749e-17
+ ],
+ [
+ 8.849954423878131,
+ 7.154663455926924,
+ -5.11610110881222,
+ 4.446389436131532,
+ -2.3395154723479585,
+ -0.6920209151758928,
+ 3.347698520721625,
+ -4.922719084691003,
+ 3.4197513011715217,
+ 6.677807047589709,
+ -1.2421637342313014,
+ -1.156363125687234,
+ -0.9085128593170696,
+ 3.5138521482279654,
+ -5.010547021704661,
+ 3.1611232614520044,
+ 5.795917273684731,
+ -0.7085422287812616,
+ -0.9445450703195354,
+ -1.2598329420188277,
+ 3.766511019225715,
+ -5.051561479857414,
+ 4.633907940255762,
+ -2.6930368093639703,
+ -0.12303227499999984,
+ 1.770125911671456,
+ 2.249826708082883,
+ -5.830759794150678,
+ -3.330361501056956,
+ 4.536502896055189,
+ -2.380899826037351,
+ -0.4819108548237137,
+ 1.9578442064693513,
+ 2.856005317966398,
+ -6.2693618434356635,
+ -3.354036482504268,
+ 4.358128176900479,
+ -2.1805802283125004,
+ -0.6995516465106243,
+ 3.479627652887,
+ -4.967795160398291,
+ 4.848635097179763,
+ -7.068835836957154,
+ -7.140966965509786,
+ -4.904778925177116,
+ -4.8227841702932865,
+ -3.456288700908907,
+ -3.271401257501428,
+ 3.403614501913713,
+ -4.942686670906831,
+ 4.8806219041827035,
+ -3.108267629828698,
+ 0.3853320967344051,
+ 2.4659695817046687,
+ -2.8779542263628133,
+ -4.883158819784987,
+ 5.293043035858854,
+ 3.045636813987198,
+ -2.931459476879089,
+ 0.16205338427864036,
+ 2.7749095565081863,
+ -2.983667329987833,
+ -4.745262287199134,
+ 4.627142285098155,
+ 2.932219358511611,
+ -2.6294916130206145,
+ -0.19737963867816613,
+ 2.956341326169971,
+ -4.820067528901307,
+ 4.988941754071859,
+ -3.5422180573046065,
+ 0.7526366412349894,
+ 2.2518920100835897,
+ 4.589754441551095,
+ 2.2282878342963763,
+ -4.8903570208663645,
+ 4.894903978532295,
+ -3.2739715799495315,
+ 0.6274005343481384,
+ 2.1610948045487937,
+ 5.538170925195931,
+ 3.0490209912705857,
+ -2.6265393862365967,
+ -0.19763171811633998,
+ 2.9538438705004992,
+ -4.815576102520961,
+ 4.983988581056328,
+ -3.5384370376283623,
+ 3.8485001422705616,
+ 4.973070806443404,
+ 8.42227525386466,
+ 6.958102700662944,
+ -4.2929668864307,
+ 2.0743379637094637,
+ 0.8120549982651577,
+ -3.559792454274802,
+ 4.990093656330953,
+ -4.806060802940031,
+ 2.2760116860203072,
+ 5.048397147929684,
+ 2.8938350962062453,
+ 1.0311497202100137,
+ -3.7141057194504623,
+ 5.035448306076451,
+ -4.670647402469417,
+ 1.9173723616508977,
+ 4.121028379339579,
+ 2.8747618869495275,
+ 1.1307126664076206,
+ -3.951939374659417,
+ 5.0877327988381165,
+ -4.576377407350095,
+ 2.43819669375247,
+ 0.40947448490789096,
+ -3.1286221017955507,
+ 3.0967814961201183,
+ 5.0173395051257215,
+ -4.299436133802263,
+ -2.783993868279768,
+ 2.243673943116323,
+ 0.7662291381976163,
+ -3.405143836026893,
+ 3.187936002927773,
+ 5.671613328695765,
+ -4.35974664756859,
+ -2.651343370021466,
+ 1.915448021540948,
+ 0.9863105634676336,
+ -3.5652603043745907,
+ 5.026519237314939,
+ -4.743756044728589,
+ 2.9238464278646146,
+ -2.2318221258824464,
+ -2.4365518864613245,
+ -4.614777812389757,
+ -4.732909242456452,
+ -7.7451387334465425,
+ -7.702802972301779,
+ 5.0091106338395,
+ -4.786958537827987,
+ 3.016454801447862,
+ -0.10191401239975283,
+ -2.707213884906176,
+ 4.6430961295467394,
+ -3.34084656881033,
+ -6.362466385043633,
+ 2.170519882742819,
+ 1.6262067903549902,
+ 0.11722498279825984,
+ -2.8945550389948322,
+ 4.783792618369816,
+ -3.2873705004586466,
+ -5.8690115101640155,
+ 1.6013251667925679,
+ 1.4279262540229316,
+ 0.4761091530717433,
+ -3.183745671946407,
+ 4.857599286159747,
+ -4.916524599079307,
+ 3.3349113749311345,
+ -0.6710923495049356,
+ -1.311584127778734,
+ -1.384112243519576,
+ 5.864102790019796,
+ 3.263528033547574,
+ -4.850654843375816,
+ 3.054121700208201,
+ -0.31327134820447583,
+ -1.5359744033938558,
+ -2.002723303604594,
+ 6.697050270017425,
+ 3.4906860997547824,
+ -4.722713484320237,
+ 2.871634482821088,
+ -0.09430408064956056,
+ -2.8559213472323957,
+ 4.713399387995206,
+ -5.046862928265549,
+ 6.869274641520652,
+ 8.533373644285664,
+ -2.059679725257039e-15,
+ -2.964946187635072e-15,
+ -6.301461906428964e-16,
+ -2.2300789314429626e-16,
+ 2.0047497627046892e-16,
+ 1.3284520637601624e-16,
+ 4.838179402822659e-16,
+ 5.136791603954302e-16,
+ 7.588554939561475e-16,
+ -3.7223127564886245e-17,
+ -1.654619719047478e-16,
+ -1.218271606168099e-15,
+ 1.1572256769616857e-16,
+ -2.496637883838176e-16,
+ -5.227781471335134e-17,
+ 5.712509310291209e-16,
+ 2.2044363324538185e-16,
+ 2.273919503908273e-16,
+ 3.8563160157222145e-16,
+ -5.509022879603164e-16,
+ -3.937379715752411e-17,
+ 2.307833909022947e-16,
+ 1.6361632516298885e-16,
+ -3.345945577776997e-17,
+ -4.596229073650898e-16,
+ 2.120270705126548e-16,
+ 1.2308447514789052e-16,
+ 4.0035541647566533e-17,
+ -6.432156443212342e-16,
+ -5.312153893815544e-16,
+ 1.0405932105917087e-16,
+ -1.3660887816313252e-16,
+ -6.420162324330323e-16,
+ -1.0066788054770346e-16,
+ 2.594038400966295e-16,
+ 6.720015296380796e-16,
+ 3.0977913940110886e-17,
+ -1.1704605667625342e-16,
+ 1.9620724129757814e-16,
+ -9.438544379536322e-16,
+ -8.007108329513307e-17,
+ -2.7474804045948814e-16,
+ -5.493306447964657e-16,
+ -2.5311726744122644e-17,
+ 2.241659460018705e-16,
+ 2.2251158477676444e-16,
+ 1.431022459716738e-16,
+ 1.6460894189805248e-16,
+ -3.508900158449943e-16,
+ -8.950094227823758e-17,
+ 3.058913905221096e-16,
+ -1.2622776147559202e-16,
+ -3.2930060185736027e-16,
+ 1.2093380555525265e-16,
+ 1.3267977025350564e-16,
+ 1.0019225169548546e-16,
+ 1.8069760481220887e-16,
+ -1.2482155443425188e-16,
+ -2.283018490646356e-17,
+ 2.7636104265396655e-16,
+ -5.444089201517752e-16,
+ 3.176373552203626e-17,
+ -3.5568766339780185e-16,
+ 2.2548943498195534e-16,
+ 4.20207751176938e-16,
+ 2.993566636829407e-16,
+ 5.07888896107559e-16,
+ -9.119666253397129e-17,
+ -7.907846656006943e-17,
+ 6.344475298281722e-17,
+ 4.1816047916086927e-16,
+ 1.8367545501739977e-16,
+ 2.3572579506229906e-16,
+ 4.284795573024683e-17,
+ 7.639323149656917e-16,
+ 1.2928832974203823e-16,
+ -1.7920867970961342e-16,
+ -2.821099479112101e-16,
+ -2.90128429974146e-16,
+ 1.5484821066992676e-16,
+ -3.259091613458929e-17,
+ 7.676236084492096e-17,
+ 9.760731228125725e-18,
+ -1.1307558973599888e-16,
+ 1.8098711802660243e-16,
+ 1.6055575689654265e-16,
+ 3.9328302223833696e-16,
+ 1.804080915978153e-16,
+ 2.276401045745932e-16,
+ 1.8148342639413425e-16,
+ 2.240005098793599e-16,
+ -1.9905274260476058e-15,
+ -6.078123141039646e-16,
+ 1.2657931323592706e-16,
+ 1.4756902127946014e-16,
+ -1.3896634290890865e-17,
+ 4.498130622880938e-16,
+ 1.9686898578762056e-16,
+ 1.3995895964397228e-16,
+ 2.926565007212612e-16,
+ -6.501122626783952e-17,
+ 4.466775307786349e-17,
+ -1.341686953561011e-16,
+ 3.4055025818808144e-16,
+ 4.135903062765138e-17,
+ -3.30872245021211e-16,
+ 2.283018490646356e-17,
+ -1.1191753687842464e-16,
+ 1.2986735617082533e-17,
+ -1.378082900513344e-16,
+ 2.7462396336760516e-17,
+ -2.271437962070614e-16,
+ -1.8826630741706907e-16,
+ 1.5054687148465104e-17,
+ -2.4649982254080222e-17,
+ -3.427009277807193e-16,
+ 2.5626055376892797e-16,
+ 2.266474878395296e-16,
+ -3.8612790993975327e-16,
+ 3.110199103199384e-17,
+ 7.394994676224067e-17,
+ -4.4006008587821066e-17,
+ -3.3583532869652924e-17,
+ 1.621274000603934e-16,
+ -1.1088356111273335e-16,
+ -2.1043474783349022e-16,
+ -1.5104317985218283e-16,
+ -1.374153792603717e-17,
+ 3.8480442095966843e-16,
+ 3.816611346319669e-16,
+ 2.716461131624143e-16,
+ 8.238718901028154e-17,
+ 7.507491239531278e-16,
+ -1.1270335846035002e-16,
+ 2.475751573371212e-16,
+ 2.2242886671550914e-16,
+ -1.654361225106055e-19,
+ 9.999269437270706e-16,
+ 4.385608210179583e-17,
+ -9.065899513581182e-17,
+ 3.0010112623423844e-16,
+ -2.699710724219944e-16,
+ -1.3030162599241568e-16,
+ 4.327395374571164e-16,
+ -1.4252321954288667e-16,
+ 7.47771273747937e-17,
+ -2.7975248316543396e-16,
+ -6.034075773421198e-16,
+ 3.161897891483948e-16,
+ 6.28657265540301e-17,
+ -1.66800970521318e-16,
+ -5.473454113263384e-16,
+ -1.1890721305449773e-16,
+ -1.1621887606370037e-17,
+ 2.933182452113036e-16,
+ -5.2029660529585435e-17,
+ 1.1845226371759356e-16,
+ 1.035216536610114e-16,
+ 4.504825615963789e-16,
+ 1.2143011392278446e-16,
+ 6.158359660457291e-17,
+ -2.5146290621612038e-17,
+ -9.991307823874882e-17,
+ 1.0827794218319131e-16,
+ 8.685396431806789e-17,
+ 7.014491594449675e-17,
+ 2.653595405070113e-16,
+ -2.2209799447048793e-16,
+ 4.845624028335636e-16,
+ -3.7355476462894725e-16,
+ 2.7032262418232944e-16,
+ -5.181459357032165e-16,
+ 6.336203492156192e-17,
+ -1.5749518863009644e-16,
+ 7.09927760723636e-17,
+ -7.4859845436049e-17,
+ 4.714929491552257e-17,
+ -1.358644156118348e-16,
+ 1.1941179322815508e-15,
+ -1.5364879878172487e-16
+ ],
+ [
+ -4.435945955252486,
+ -3.543752482542198,
+ 2.7069449004517714,
+ -2.863424399264937,
+ 2.0155757430046326,
+ -0.49944162090412847,
+ -1.1861144472960603,
+ 2.4117474775980723,
+ -1.9923729675060904,
+ -3.7187928680401257,
+ 1.7817941088995743,
+ 1.1858295798951448,
+ -0.3752850454504174,
+ -1.3005372074685109,
+ 2.518987319381134,
+ -1.8947329907992132,
+ -3.3017986149423346,
+ 1.3644688864459429,
+ 1.0506427876099271,
+ -0.17267524460594566,
+ -1.481628963853713,
+ 2.576519039736821,
+ -2.904646789771088,
+ 2.1739264645502896,
+ -0.8160070516553303,
+ -0.4856289064999942,
+ -0.3097142151505733,
+ 3.2779375837423403,
+ 1.7788993679234177,
+ -2.8838460043858816,
+ 2.0353875947889186,
+ -0.6167051118263097,
+ -0.6045989334985274,
+ -0.591538503106873,
+ 3.5993353290252803,
+ 1.8348966397886424,
+ -2.8404368834357423,
+ 1.9424186933721805,
+ -0.49518171528908567,
+ -1.2775667424235604,
+ 2.464224667578455,
+ -2.9322684834618133,
+ 4.821609407778611,
+ 4.819049928806752,
+ 2.473465409480542,
+ 2.376568375254074,
+ 0.464622359133505,
+ 0.3339277648747264,
+ -1.224628101804269,
+ 2.4345529940705593,
+ -2.933181951681055,
+ 2.3512888547588267,
+ -1.0898104881782866,
+ -0.6043988578147266,
+ 1.2722934191874014,
+ 1.9611833075123166,
+ -3.4715009499884126,
+ -1.8900791040084812,
+ 2.2780150516825817,
+ -0.969711008625962,
+ -0.8020981041198352,
+ 1.3691983613480125,
+ 1.9951476295035586,
+ -3.119087089214997,
+ -1.858912023060394,
+ 2.145962352088007,
+ -0.7752815116880963,
+ -0.9221933942181717,
+ 2.302951231684378,
+ -2.926228708851219,
+ 2.5245019544872753,
+ -0.9549673169795457,
+ -2.1339838848661783,
+ -1.8764124904051767,
+ -0.7923696374135414,
+ 2.376953013719915,
+ -2.9325850944407588,
+ 2.420063579276156,
+ -0.9220986460930302,
+ -2.2399765735523713,
+ -2.372015837472379,
+ -0.9983418480804346,
+ 2.485993319586719,
+ -0.7760214924757295,
+ -0.9200227277428651,
+ 2.3000452814022823,
+ -2.923553363593737,
+ 2.5229492018348383,
+ -3.159645316028868,
+ -3.985335874504666,
+ -5.156201390801076,
+ -4.2152303357926,
+ 2.7790856915519377,
+ -1.9358395527550214,
+ 0.389668531138634,
+ 1.2911088407426496,
+ -2.5370465836948504,
+ 2.884868425933475,
+ -1.685809966398442,
+ -3.481191215338567,
+ -0.5535674553694014,
+ 0.005736777968971974,
+ 1.4019724235055027,
+ -2.5975850828618907,
+ 2.868349871902799,
+ -1.4998671960437373,
+ -2.939766897066404,
+ -0.6993564866893591,
+ -0.08570597025354779,
+ 1.5754883921166436,
+ -2.6867667276818668,
+ 2.8495343616843303,
+ -2.1031539979649936,
+ 0.6163354927852661,
+ 0.9941829409056036,
+ -1.4738571267011342,
+ -2.2121279808878898,
+ 3.005566305757391,
+ 1.8195650184783725,
+ -2.0135611615764537,
+ 0.41670130006187484,
+ 1.1838336657589885,
+ -1.5558052417560426,
+ -2.5895434040098397,
+ 3.149204951924137,
+ 1.7847279787368426,
+ -1.8609080689636717,
+ 0.2898298894059261,
+ 1.2949713535608467,
+ -2.585962075426599,
+ 2.8781309408176967,
+ -2.316519896277496,
+ 2.7102955326644684,
+ 2.7949953888316426,
+ 2.848581007319473,
+ 2.864226720713942,
+ 3.409432285803053,
+ 3.3423554288052584,
+ -2.5586668536689015,
+ 2.8850973868665326,
+ -2.355494891212138,
+ 0.8957593357247097,
+ 0.716741571438962,
+ -2.177275558599443,
+ 1.8655991858948722,
+ 3.382718828931802,
+ -2.186836541330204,
+ -1.3764456813854455,
+ 0.77772711706654,
+ 0.8399164365510641,
+ -2.308369083438094,
+ 1.878957621901384,
+ 3.188942247087125,
+ -1.8189944023274207,
+ -1.282065985895867,
+ 0.5784332431621468,
+ 1.0318818692899228,
+ -2.3840767649138126,
+ 2.8907864516830286,
+ -2.4860865631178677,
+ 1.1975517092095305,
+ 0.19638323158807483,
+ -0.20781929368445717,
+ -3.1431417931898538,
+ -1.6564044268587093,
+ 2.8911136657494083,
+ -2.3704464205110574,
+ 1.010055032612407,
+ 0.3023093010485212,
+ 0.011742137807586341,
+ -3.6740276493855535,
+ -1.8272845004072866,
+ 2.8772195573704,
+ -2.294023610607711,
+ 0.8916470384169005,
+ 0.8136971888504185,
+ -2.242024718204725,
+ 2.8680887350727486,
+ -4.2078405106983094,
+ -5.172550278922898,
+ 1.4857818162677481e-15,
+ 2.1936829844906294e-15,
+ 3.0514692797081186e-16,
+ 1.0050244442519285e-16,
+ -1.0667527974636982e-16,
+ -1.6444350577554188e-16,
+ -1.7031648812466837e-16,
+ -1.860329197631759e-16,
+ -3.774425135079465e-16,
+ -3.759535884053511e-17,
+ 1.437639904617162e-16,
+ 5.759245014900455e-16,
+ -1.8142138784819277e-16,
+ 6.406513844223199e-17,
+ -5.335314950967028e-18,
+ -3.419564652294216e-16,
+ -4.892773323251158e-17,
+ -4.830734777309681e-17,
+ -1.4889251025954498e-16,
+ 2.716461131624143e-16,
+ 6.830443908156626e-17,
+ 4.890705371719775e-18,
+ -1.401243957664829e-16,
+ -3.1019272970738534e-18,
+ 1.5195307852599116e-16,
+ -1.2937104780329353e-16,
+ -5.17608268305057e-17,
+ 0.0,
+ 3.269017780809565e-16,
+ 1.1696333861499811e-16,
+ -2.783462761240938e-17,
+ 1.346650037236329e-16,
+ -1.5832236924264947e-16,
+ -3.0171412842871684e-17,
+ -2.072087434445334e-16,
+ -2.8562546551456046e-16,
+ 1.1166938269465872e-17,
+ 7.610061635487853e-17,
+ -9.016268676828002e-18,
+ 3.979152336686339e-16,
+ 2.588454931831562e-16,
+ -5.194694246833013e-17,
+ 4.572654426193137e-16,
+ -1.2159555004529505e-17,
+ -2.24579536308147e-16,
+ 2.1713491079516976e-18,
+ -1.288747394357617e-16,
+ 1.1787323728880644e-16,
+ 2.63374307036884e-16,
+ 8.993521209982792e-17,
+ -3.1681017460780955e-16,
+ -7.82512859475164e-17,
+ 2.1754850110144625e-16,
+ 6.782881022934826e-18,
+ -1.9852334701272664e-18,
+ -5.75510911183769e-17,
+ -1.3443752905518082e-16,
+ 1.3689839137752608e-16,
+ 5.889525961377557e-17,
+ -1.3652099022304876e-16,
+ 4.516406144539531e-16,
+ 4.135903062765138e-17,
+ 2.2863272130965685e-16,
+ -1.6047303883528734e-16,
+ -3.0028724187206287e-16,
+ -1.5811557408951122e-16,
+ -2.236696376343387e-16,
+ 2.4195032917176056e-17,
+ 1.197757526976784e-16,
+ -8.867376166568455e-17,
+ -7.320548421094295e-17,
+ -4.6983858793011966e-17,
+ -6.427193359537025e-17,
+ -1.5038143536214043e-16,
+ -4.635520152747167e-16,
+ -2.5985878943353364e-16,
+ 1.2304311611726287e-16,
+ 2.4434915294816438e-16,
+ 1.5364879878172487e-16,
+ -4.0842042744805735e-17,
+ 3.2528877588647813e-17,
+ 1.1963099609048161e-17,
+ -4.627300045409921e-17,
+ -2.928219368437718e-17,
+ -1.2300175708663522e-16,
+ -9.183772750869989e-17,
+ -1.5257346398540593e-16,
+ 1.2490427249550716e-17,
+ 2.957997870489627e-16,
+ -4.925033367140727e-16,
+ -9.16929709015031e-17,
+ 8.763978589999327e-16,
+ 2.475751573371212e-16,
+ -2.3516744814882577e-16,
+ -1.464109684218859e-16,
+ -7.279189390466644e-18,
+ -1.5646121286440516e-16,
+ 4.8803656140628625e-18,
+ -1.8897975069539606e-16,
+ -2.0005363114594972e-16,
+ 9.218927926903492e-17,
+ -1.966621906344823e-16,
+ -2.3057659574915643e-17,
+ -1.3371374601919692e-16,
+ 1.3019822841584656e-16,
+ 2.6999175193730823e-16,
+ -2.0762233375080992e-17,
+ 1.1051132983708449e-16,
+ 1.6460894189805248e-16,
+ 6.5843576759221e-17,
+ -4.826598874246916e-17,
+ 1.5220123270975707e-16,
+ 9.694556779121483e-17,
+ -1.2432524606672006e-16,
+ 2.1506695926378716e-17,
+ 1.9041697700970695e-16,
+ -9.992341799640573e-17,
+ -1.0951871310202085e-16,
+ 3.570111523778867e-16,
+ -6.948317145445432e-17,
+ -1.3524403015242001e-17,
+ 8.302825398501015e-18,
+ 2.3041115962664586e-16,
+ -6.228670012524298e-17,
+ 1.153503364205197e-16,
+ 1.6345088904047824e-16,
+ 6.54403262106014e-17,
+ 6.129408339017935e-17,
+ -1.3863547066388744e-16,
+ -2.1076562007851143e-16,
+ -4.20207751176938e-17,
+ -3.5692843431663144e-17,
+ -9.090714931957773e-17,
+ -1.1994118882018901e-16,
+ -6.758065604558236e-17,
+ -9.198248411589667e-17,
+ -2.0596797252570386e-17,
+ -3.7636717871162754e-16,
+ 4.128665232405299e-17,
+ 6.72911428311888e-17,
+ -1.050519377942345e-16,
+ 2.1829296365274398e-16,
+ 3.4493431543461254e-17,
+ -2.1206842954328245e-16,
+ 2.1672132048889322e-17,
+ -5.914341379754148e-17,
+ 1.1149877669331967e-16,
+ 3.722312756488624e-16,
+ -1.9828553258661762e-16,
+ -1.1580528575742387e-18,
+ 2.422812014167818e-16,
+ 4.508134338414001e-16,
+ 9.545664268861938e-17,
+ 2.5601239958516203e-17,
+ 1.2738581433316625e-17,
+ -3.0398887511323763e-18,
+ -5.062345348824529e-17,
+ -2.129990077324046e-16,
+ -1.6088662914156386e-16,
+ 9.678013166870422e-18,
+ -4.375785440405516e-17,
+ -1.316044354571867e-16,
+ 1.3640208300999426e-16,
+ -6.081069971971868e-17,
+ -2.481541837659083e-16,
+ -6.510945396558019e-17,
+ -2.2878781767451054e-16,
+ 5.889525961377557e-17,
+ -3.8563160157222145e-16,
+ 2.0307284038176827e-16,
+ -6.179039175771117e-17,
+ 1.575365476607241e-16,
+ 4.03250548619601e-18,
+ 8.238718901028154e-17,
+ -6.348611201344487e-17,
+ -1.1890721305449773e-16,
+ -6.582289724390718e-17,
+ -3.8587975575598735e-17,
+ -6.696854239229311e-16,
+ 4.501516893513577e-16
+ ],
+ [
+ 2.263636934860039,
+ 1.7198651269710576,
+ -1.7549176847664232,
+ 2.7083543426246135,
+ -2.8625387528540958,
+ 1.9433272683787137,
+ -0.49680460548129834,
+ -1.1908628561912558,
+ 1.5969557927220457,
+ 2.6725938056252483,
+ -3.32646177692427,
+ -1.8692542405360382,
+ 1.8507096876634979,
+ -0.3701274009831258,
+ -1.3740486269872947,
+ 1.6138614002642593,
+ 2.5120611999190103,
+ -2.8010253396211557,
+ -1.7397733946810705,
+ 1.6886712891376714,
+ -0.16754120969922434,
+ -1.4838737550951524,
+ 2.6195091717839047,
+ -2.9041890587101418,
+ 2.1702863038301268,
+ -0.5896839696150783,
+ -1.54768448430894,
+ -2.413771265912521,
+ -1.1363265550804522,
+ 2.6707065799515117,
+ -2.8674728568414354,
+ 2.0314327370731844,
+ -0.47708627048052643,
+ -1.4497651595913046,
+ -2.7895795537435446,
+ -1.2569348443558785,
+ 2.7411339842052924,
+ -2.8389037465990468,
+ 1.9401233232845136,
+ -0.3972353549893019,
+ -1.2800894569213124,
+ 2.466812095360677,
+ -5.126498995764615,
+ -5.044548254883804,
+ -1.2935666963735526,
+ -1.1277642915170683,
+ 2.406526025096936,
+ 2.552501021215039,
+ -0.4551893856238724,
+ -1.2292997076962096,
+ 2.4357309576773574,
+ -2.9304448952572586,
+ 2.349508435464849,
+ -1.0849946500638274,
+ -0.2942709812891303,
+ 0.013519361095740715,
+ 3.478207176024611,
+ 1.722503723047464,
+ -2.921679821073847,
+ 2.274504551371793,
+ -0.8914092334977367,
+ -0.4352946021936309,
+ -0.21876328787142088,
+ 3.2594569218262053,
+ 1.7601394790708969,
+ -2.897908130191247,
+ 2.14217905087594,
+ -0.7726886663270338,
+ -1.0157804773471606,
+ 2.304331680538413,
+ -2.9264461355656604,
+ 1.6920040843934077,
+ 3.185178183129631,
+ 0.07305943712683985,
+ -0.272390782977016,
+ -1.1310131233398435,
+ 2.4225021472301784,
+ -2.9323973437721245,
+ 1.7375931930976258,
+ 3.5551889847003832,
+ 0.3681151327617598,
+ -0.10392473781373637,
+ -1.3179053270958099,
+ 2.488290817640151,
+ -0.7756224613971853,
+ -1.0129677677557232,
+ 2.3025293688739414,
+ -2.926286886455907,
+ 4.1784413128863935,
+ 5.146109154940579,
+ 4.5800904556427335,
+ 3.6681628583064905,
+ -2.802472677684418,
+ 2.7799857035218434,
+ -1.936414940204568,
+ 0.29320428381298974,
+ 1.2930309017588426,
+ -2.540783987428713,
+ 1.996671103035359,
+ 3.7589024465784986,
+ -1.5878000392858944,
+ -1.0926280912358999,
+ 0.17010744421329546,
+ 1.4060923053177832,
+ -2.6360682616878677,
+ 1.8889113905759303,
+ 3.32293718250925,
+ -1.1894789536990629,
+ -0.9593571760900267,
+ -0.035018435611392895,
+ 1.5795301212110369,
+ -2.689138940976308,
+ 2.834105638535618,
+ -2.104084649215751,
+ 0.6132508482466179,
+ 0.5887075035530696,
+ 0.4975521426684313,
+ -3.3073122073596246,
+ -1.8129244255077124,
+ 2.808242004392448,
+ -1.9554398662211623,
+ 0.41337947616511495,
+ 0.7061436672319978,
+ 0.7933267087193425,
+ -3.617101732123284,
+ -1.8611552912324243,
+ 2.751736349561184,
+ -1.8595296758126352,
+ 0.28891094672203144,
+ 1.3819858735142456,
+ -2.5885397575322195,
+ 2.879919837368503,
+ -4.699998842034199,
+ -4.705789998403174,
+ -2.5428975936437523,
+ -2.4529900824911124,
+ -0.754031233892757,
+ -0.6285412633978191,
+ 1.330081530931444,
+ -2.5614642272826518,
+ 2.8846854708114207,
+ -2.2947329398422514,
+ 0.8927950174470467,
+ 0.7219903539670405,
+ -1.3504054647274737,
+ -2.129984759593059,
+ 3.407367117670466,
+ 1.8728982049543397,
+ -2.214056386007316,
+ 0.7722581012201581,
+ 0.9185404916407618,
+ -1.440962024938247,
+ -2.142778820046733,
+ 3.047511028844076,
+ 1.835160457156032,
+ -2.075241338237845,
+ 0.5729052257235908,
+ 1.0345371000113044,
+ -2.4406966228195004,
+ 2.890674097210535,
+ -2.483140301931781,
+ 0.8611058266548354,
+ 1.9860043304486186,
+ 2.0289745476624725,
+ 0.8882348432317083,
+ -2.5070122772472767,
+ 2.8873934245975637,
+ -2.3671362311585953,
+ 0.8207087194699663,
+ 2.062695685000972,
+ 2.536276245541265,
+ 1.0943209688929232,
+ -2.6080440866725105,
+ 2.8764330123523836,
+ -2.2920328268330876,
+ 0.7966867881220585,
+ 0.8164100484347876,
+ -2.245528637020934,
+ 3.741827017738066,
+ 4.506412165283807,
+ 1.5302841332231012e-17,
+ -1.9703442191013117e-16,
+ 3.1846453583291565e-17,
+ 9.371956340225802e-17,
+ -8.772250396124857e-17,
+ -5.277412308088316e-17,
+ 1.3375510504982458e-16,
+ 1.1282743555223297e-16,
+ -2.5212465070616284e-16,
+ 4.9382682569415746e-17,
+ 8.238718901028154e-17,
+ -1.7271531190107215e-16,
+ 1.530284133223101e-16,
+ -1.0141234309900118e-16,
+ -1.2688950596563445e-16,
+ -8.189088064274973e-17,
+ -5.950530531553343e-17,
+ 7.415674191537893e-17,
+ 2.1736238546362182e-16,
+ -4.053185001509835e-17,
+ 8.33177671994037e-17,
+ 8.1146418091452e-17,
+ 1.3689839137752608e-16,
+ 7.940933880509064e-17,
+ -1.282129949457193e-16,
+ -2.7694006908275367e-16,
+ -3.135014521575975e-17,
+ -2.481541837659083e-19,
+ 1.9169910695916414e-16,
+ 2.307833909022947e-16,
+ 2.749548356126264e-16,
+ -1.0968414922453146e-16,
+ 1.1539169545114735e-17,
+ 2.7280416601998853e-16,
+ 2.5907296785160827e-16,
+ -3.8496985708217903e-16,
+ 9.194112508526901e-17,
+ 4.3675136342799855e-17,
+ -1.1553645205834414e-16,
+ -1.0290126820159663e-16,
+ -8.850832554317396e-18,
+ 1.9116143956100467e-16,
+ -2.306179547797841e-16,
+ 1.5136371233954713e-16,
+ 1.047314053068702e-16,
+ -2.744585272450946e-16,
+ 1.252351447405284e-16,
+ -6.005331247134981e-17,
+ -2.6751021009964915e-16,
+ -6.265893140089185e-17,
+ 3.029135403169187e-16,
+ 1.1786289753114953e-16,
+ -9.115530350334364e-17,
+ -2.1126192844604324e-16,
+ -2.8471556684075213e-16,
+ -5.066481251887294e-18,
+ -2.489813643784613e-17,
+ 1.6684232955194566e-16,
+ -4.615667818045894e-17,
+ 3.6271869860450264e-17,
+ -2.1687641685374692e-16,
+ -4.259980154648092e-17,
+ -1.0174321534402239e-16,
+ 5.930884992005208e-17,
+ 1.1779051922755114e-16,
+ 1.904583360403346e-16,
+ -2.446800251931856e-16,
+ -5.2980918234021416e-17,
+ -2.591841202464201e-16,
+ 6.576085869796569e-18,
+ 2.158941398763402e-17,
+ -1.0869153248946782e-16,
+ -8.189088064274974e-18,
+ 1.8065624578158122e-16,
+ 9.218927926903492e-17,
+ 1.3251433413099503e-16,
+ -2.158114218150849e-16,
+ -2.5737724759587456e-16,
+ 2.8124140826802937e-18,
+ -5.963455228624484e-17,
+ 5.161607022330892e-17,
+ -2.3491929396505983e-17,
+ 7.754818242684634e-18,
+ 2.2333876538931747e-16,
+ -3.3004506440865804e-17,
+ 1.9748937124703536e-18,
+ 3.550672779383871e-17,
+ -5.0582094457617636e-17,
+ -4.3447661674347774e-16,
+ 2.326031882499114e-16,
+ 6.861463181127365e-17,
+ -5.538801381655073e-16,
+ -1.512706545206349e-16,
+ 5.376673981594679e-18,
+ -8.040195554015428e-17,
+ 7.626605247738914e-17,
+ 1.1642567121683865e-16,
+ 5.608284553109528e-17,
+ 1.360298517343454e-16,
+ 2.3574647457761286e-17,
+ -5.823351512373315e-17,
+ 3.9176307786277077e-16,
+ 2.4174353401862234e-16,
+ 1.0339757656912845e-16,
+ 9.816565919473055e-17,
+ 1.943874439499615e-18,
+ -6.613308997361456e-17,
+ 6.501639614666798e-17,
+ 1.225881667803587e-16,
+ -3.1432863277015048e-18,
+ 1.7941547486275168e-16,
+ -1.5081570518373075e-16,
+ -1.5509636485369266e-16,
+ 1.3069453678337837e-16,
+ -1.7334603711814384e-16,
+ -1.1257928136846707e-16,
+ -3.995282358631123e-17,
+ 1.0689241465716499e-16,
+ 2.7710550520526424e-17,
+ 7.568702604860202e-17,
+ 2.5415124320691772e-17,
+ -2.8868603378100666e-17,
+ -1.5724703444633054e-16,
+ 8.573727049112131e-17,
+ -2.4592079611201513e-16,
+ -2.9542755577331383e-16,
+ -1.6270642648918052e-16,
+ -1.398142030367755e-16,
+ -3.9167002004385854e-17,
+ 5.872982349126496e-17,
+ -7.047578818951796e-17,
+ -2.431911000905901e-17,
+ -5.426304818347861e-17,
+ 1.591495498552025e-16,
+ -1.0687173514185116e-16,
+ -1.8967251445840922e-16,
+ 1.3693975040815373e-16,
+ 2.4368740845812195e-16,
+ 2.187065539590205e-16,
+ -1.0323214044661784e-16,
+ 1.9604180517506753e-16,
+ -1.7925003874024107e-16,
+ -1.5675072607879874e-17,
+ -1.1183481881716934e-16,
+ 4.873748169162439e-16,
+ 2.5104931590984387e-17,
+ 1.2076836943274203e-17,
+ 7.394994676224067e-17,
+ 1.01908651466533e-16,
+ -1.5096046179092753e-18,
+ -2.955516328651968e-16,
+ -3.6429034176835334e-16,
+ -1.6212740006039342e-17,
+ -1.0554824616176632e-16,
+ -4.739331319622572e-16,
+ 2.2044363324538184e-17,
+ -1.621274000603934e-16,
+ -1.8065624578158122e-16,
+ 3.805030817743927e-18,
+ -7.974021105011186e-17,
+ 1.624582723054146e-16,
+ 2.2598574334948716e-16,
+ -5.764673387670334e-17,
+ 2.2912902967718864e-17,
+ 4.289758656700001e-16,
+ 2.3905519702782497e-17,
+ 1.710609506759661e-16,
+ -2.27309232329572e-16,
+ 3.0092830684679147e-16,
+ -1.5402103005737373e-16,
+ 3.110199103199384e-17,
+ 2.4947767274599315e-16,
+ 1.6113478332532977e-16,
+ 3.542400973258341e-17,
+ 2.5270367713494992e-17,
+ 9.338869115723681e-17,
+ -2.4401828070314313e-17,
+ 8.519960309296184e-17,
+ -1.8958979639715392e-16,
+ 3.4046754012682614e-16
+ ],
+ [
+ 0.6345578724001444,
+ 0.6544088486466575,
+ 0.15780063900791608,
+ -1.746635085645231,
+ 2.6907425795821505,
+ -2.8202277627717045,
+ 1.9287756794939588,
+ -0.4889967487095392,
+ -0.682081696484461,
+ -0.7595248466579685,
+ 3.773752036689147,
+ 1.9372318511304254,
+ -2.7858080900160744,
+ 1.834747613526854,
+ -0.28682967424637196,
+ -0.8072548621571027,
+ -0.9062539659100111,
+ 3.3126611839713243,
+ 1.8557378787794225,
+ -2.7204618224887396,
+ 1.673615059273126,
+ -0.1643680958718637,
+ -1.5574751087147796,
+ 2.6026914379039203,
+ -2.8839664349510197,
+ 1.4652886781845191,
+ 2.887167129804223,
+ 0.7660875313206547,
+ 0.12643700745805642,
+ -1.6600381958120773,
+ 2.6825723199707308,
+ -2.8471595334526696,
+ 1.3958362633328587,
+ 3.00398970669832,
+ 1.0730676128494778,
+ 0.2718041609161338,
+ -1.823945068841611,
+ 2.7239170821174974,
+ -2.819151157770559,
+ 1.8538119101571977,
+ -0.39255637772456065,
+ -1.2755060418042063,
+ 3.753358940638896,
+ 3.6192678839991066,
+ -0.30162687697957946,
+ -0.4816891332882698,
+ -4.472619987572543,
+ -4.586043008092466,
+ 1.8978103171469345,
+ -0.4477172672434564,
+ -1.2228094853385882,
+ 2.470315643558826,
+ -2.910731994892851,
+ 2.331259215243738,
+ -0.7736544223035421,
+ -1.9711088679130784,
+ -2.3478164827006305,
+ -0.9929360173012884,
+ 2.5319486769176835,
+ -2.9016458750657352,
+ 2.208444717330215,
+ -0.6348873454202363,
+ -1.61769935989814,
+ -2.333414978770805,
+ -1.0866375546336344,
+ 2.620124084489703,
+ -2.8776975436390626,
+ 2.126473203849756,
+ -0.6727172810644044,
+ -1.010852228087181,
+ 2.291581407550743,
+ -1.8711992097104395,
+ -3.1883976549506476,
+ 1.742510703992389,
+ 1.2412288247083993,
+ -0.5507669988471676,
+ -1.198065856953214,
+ 2.4086761364068283,
+ -1.9798314366039718,
+ -3.6997646182242883,
+ 1.7431383323713965,
+ 1.1650854941152258,
+ -0.3510282229248148,
+ -1.3130585660066731,
+ 2.472502298590013,
+ -0.6745677682722973,
+ -1.0105311661520178,
+ 2.292934204830852,
+ -3.8248585803211035,
+ -4.617267439302132,
+ -2.5105179157616706,
+ -1.9255617820219215,
+ 1.8320724978220901,
+ -2.7876883480908305,
+ 2.7626876561448124,
+ -1.8490768516438034,
+ 0.28797415418461775,
+ 1.2908007638552503,
+ -1.6528806491622101,
+ -2.8061353745737154,
+ 3.1963588637519136,
+ 1.815370959767987,
+ -1.7506450314138098,
+ 0.16309335674047637,
+ 1.4694377064509412,
+ -1.6580125357989888,
+ -2.6174403237453743,
+ 2.677318724890376,
+ 1.684094226384113,
+ -1.5845708498889888,
+ -0.04078666996198151,
+ 1.5731606342198328,
+ -2.7115025980024865,
+ 2.816796024130218,
+ -2.0874699825413354,
+ 0.4831692758225169,
+ 1.3686001984057663,
+ 2.5259604849885333,
+ 1.2137103231426165,
+ -2.753985681085264,
+ 2.7708298437423187,
+ -1.9393739509942867,
+ 0.36886964409531614,
+ 1.2506353855779682,
+ 2.8995368019729275,
+ 1.3287003179350065,
+ -2.8148828879229963,
+ 2.7336161202860323,
+ -1.8457667549466372,
+ 0.1884122749339399,
+ 1.3769561630279248,
+ -2.5762475961599005,
+ 5.1424546557977475,
+ 5.06799985550681,
+ 1.43574344862551,
+ 1.2775184524018224,
+ -2.130626236190334,
+ -2.277592349315344,
+ 0.2485523576508671,
+ 1.3249207537460754,
+ -2.54506333946785,
+ 2.857019049418894,
+ -2.2778366053531363,
+ 0.8823619530859085,
+ 0.39708844529556614,
+ 0.18901792390609082,
+ -3.506213881346042,
+ -1.7539405800823427,
+ 2.8432595234138947,
+ -2.195912524338379,
+ 0.6884329157449635,
+ 0.534752453445725,
+ 0.4028788303822253,
+ -3.2719639415130497,
+ -1.7848287096283213,
+ 2.806498547750947,
+ -2.057794529191165,
+ 0.5669074756057788,
+ 1.1180948054461546,
+ -2.4254204546541294,
+ 2.87119585073848,
+ -1.6303309607125025,
+ -3.1035975389867643,
+ -0.25876915057950317,
+ 0.16532744656900764,
+ 1.2317259637225906,
+ -2.5314175484259955,
+ 2.867547113428785,
+ -1.6682409080091585,
+ -3.4495664153773005,
+ -0.576822195368564,
+ -0.008382751306772272,
+ 1.4105009396450279,
+ -2.5924842711843534,
+ 2.8566005386680637,
+ -2.2138773408243972,
+ 0.7891983171541604,
+ 0.8153859747154458,
+ -2.055662849740457,
+ -2.371452541007906,
+ -4.532949756790592e-16,
+ -7.444625512977248e-19,
+ -1.196103165751678e-16,
+ -8.704007995589232e-17,
+ -5.914341379754147e-18,
+ 7.982292911136716e-17,
+ 2.2085722355165836e-17,
+ -1.0877425055072313e-16,
+ 3.89602068512476e-16,
+ -7.510799961981491e-17,
+ -9.301645988158795e-17,
+ -1.0339757656912844e-17,
+ -2.5102863639453007e-16,
+ -1.1394412937917956e-16,
+ 3.6561383074843823e-17,
+ 1.2738581433316626e-16,
+ 3.865001412154021e-17,
+ -7.527343574232552e-18,
+ 2.158941398763402e-17,
+ 6.650532124926343e-17,
+ -4.19380570564385e-17,
+ 4.2434365423970314e-17,
+ -5.922613185879678e-17,
+ -7.59145007170541e-17,
+ 2.895132143935597e-17,
+ 3.335192229813807e-16,
+ 3.192917164454687e-17,
+ 1.2986735617082533e-17,
+ -2.4046140406916515e-16,
+ -2.716461131624143e-16,
+ -2.637051792819052e-16,
+ 7.734138727370808e-17,
+ -8.937686518635463e-17,
+ -2.1038304904520565e-16,
+ -3.1350145215759744e-16,
+ 5.429613540798074e-16,
+ -1.0174321534402239e-16,
+ -2.3533288427133634e-17,
+ 1.8537117527313348e-16,
+ -5.2939559203393765e-17,
+ -2.812414082680294e-17,
+ -2.2267702089927505e-16,
+ -7.196471329211341e-18,
+ -9.043152046735974e-17,
+ -4.954811869192635e-17,
+ 3.685916809536291e-16,
+ -6.698095010148142e-17,
+ 7.189853884310916e-16,
+ 1.285438671907405e-16,
+ 1.0430747524293678e-16,
+ -2.3185872569861366e-16,
+ -1.1097661893164556e-16,
+ 1.0257039595657542e-16,
+ 3.8476306192904077e-16,
+ 1.0312874287004871e-16,
+ -4.79764755280756e-18,
+ 1.282129949457193e-16,
+ -1.2324991127040111e-17,
+ 5.98051582875839e-17,
+ 1.7544500792249715e-16,
+ 1.5184968094942203e-16,
+ 8.375203702099404e-17,
+ -1.6957202557337065e-18,
+ 4.0697286137608955e-17,
+ -1.6270642648918052e-16,
+ -1.7904324358710282e-16,
+ 3.361662009415504e-16,
+ -6.356883007470018e-17,
+ 4.2996848240506374e-16,
+ 1.1338578246570627e-16,
+ 4.8720938079373324e-17,
+ 1.3090133193651663e-16,
+ 4.632211430296955e-18,
+ -2.1366075222244702e-16,
+ 2.10103875588469e-17,
+ -6.39927601386336e-17,
+ 1.2128535731558768e-16,
+ 3.0440246541951414e-16,
+ 1.0124690697649058e-16,
+ 1.482721248001302e-16,
+ -5.992923537946686e-17,
+ -1.3123220418153784e-16,
+ 5.889525961377557e-17,
+ -2.4931223662348254e-16,
+ 4.863822001811802e-17,
+ 1.2407709188295414e-17,
+ 8.156000839772852e-17,
+ 8.519960309296184e-17,
+ 7.098450426623806e-16,
+ 1.9686898578762056e-17,
+ -3.7603630646660633e-16,
+ 3.6065074707312e-16,
+ -1.9025154088719637e-18,
+ -2.067951531382569e-19,
+ 1.482721248001302e-16,
+ -7.709323308994217e-17,
+ -1.8760456292702665e-16,
+ 4.0531850015098356e-18,
+ -1.2380825818387442e-16,
+ 4.524677950665061e-17,
+ -7.444625512977249e-18,
+ -4.105297380100676e-16,
+ -3.2621935407560024e-16,
+ -6.203854594147707e-18,
+ -5.24018918052343e-17,
+ -1.4210962923661015e-16,
+ 6.874387878198506e-17,
+ -1.0174321534402239e-16,
+ 3.8991226124218336e-17,
+ -2.7462396336760516e-17,
+ -1.774302413926244e-16,
+ 2.3210687988237957e-16,
+ 1.0544484858519719e-16,
+ -1.2415980994420945e-16,
+ 6.005331247134981e-17,
+ 8.437242248040881e-17,
+ 1.4194419311409955e-16,
+ -2.812414082680294e-17,
+ -1.7453510924868884e-17,
+ -1.3665023719376017e-16,
+ -7.626605247738914e-17,
+ 1.4426029882924803e-16,
+ 1.2473883637299657e-16,
+ -2.912709731952349e-17,
+ 2.564259898914386e-16,
+ 4.314574075076592e-16,
+ 1.6924115332834944e-16,
+ 7.124093025612951e-17,
+ 5.1450634100798315e-17,
+ 2.0886310466963946e-17,
+ 6.220398206398768e-17,
+ 1.1729421086001932e-16,
+ 3.184645358329156e-16,
+ -1.7329433832985927e-16,
+ 2.0981436237407545e-16,
+ 1.1191753687842464e-16,
+ -1.597078967686758e-16,
+ -2.98612201131643e-16,
+ -1.5550995515996918e-16,
+ 9.003860967639705e-17,
+ -2.694954435697764e-16,
+ 1.1456451483859433e-16,
+ 4.299271233744361e-17,
+ 3.0506420990955656e-16,
+ -4.453540417985501e-16,
+ -1.241184509135818e-16,
+ -6.224534109461533e-17,
+ -1.3549218433618593e-16,
+ -4.135903062765138e-17,
+ 1.036767500258651e-16,
+ 3.325266062463171e-16,
+ 3.446034431895913e-16,
+ -2.4815418376590826e-18,
+ 1.3888362484765335e-16,
+ 3.9624019292821403e-16,
+ -9.396771758602393e-17,
+ 1.8727369068200544e-16,
+ 1.6200332296851045e-16,
+ -1.4558378780933287e-17,
+ 7.527343574232552e-17,
+ -1.5096046179092753e-16,
+ -7.891303043755883e-17,
+ 7.866487625379292e-17,
+ 4.111087644388547e-17,
+ -2.3227231600489017e-16,
+ -4.896909226313923e-17,
+ -1.611554628406436e-16,
+ 1.619619639378828e-16,
+ -3.3188037139276e-16,
+ 2.358395323965251e-16,
+ 7.363975403253329e-17,
+ -2.6122363744424614e-16,
+ -5.1781506345819526e-17,
+ 6.774609216809297e-17,
+ -1.0753347963189359e-16,
+ -1.8661194619196302e-16,
+ -2.249931266144235e-17,
+ -8.817745329815274e-17,
+ 2.2912902967718867e-16,
+ 4.772832134430969e-17
+ ],
+ [
+ -3.3631219180196785,
+ -2.846813717301559,
+ 1.4291179289851732,
+ 0.13894295446564303,
+ -1.7378596634415782,
+ 2.7296932543638266,
+ -2.8405827686695306,
+ 1.9534440397954163,
+ -0.4604589940725131,
+ -1.4171103851863163,
+ -3.0233398394810296,
+ -1.3885525987625653,
+ 2.7685451500879434,
+ -2.8060902382069592,
+ 1.799960884548614,
+ -0.26568758007775756,
+ -1.0064149820348907,
+ -2.774265173221188,
+ -1.3815620057328197,
+ 2.818354624665275,
+ -2.741689341720982,
+ 1.7002919669211618,
+ -0.09125537315371555,
+ -1.5468420903517912,
+ 2.608076770922819,
+ -1.8837059978035322,
+ -3.3214859138427304,
+ 1.1441980282812758,
+ 0.935061485596547,
+ 0.0340239792341923,
+ -1.715711896613839,
+ 2.6896347338988154,
+ -1.880008914462466,
+ -3.618196657295867,
+ 1.0046305608737984,
+ 0.810979356943825,
+ 0.23678057945534525,
+ -1.8180182843889037,
+ 2.7310872178858308,
+ -2.8142692734261883,
+ 1.8803212022906672,
+ -0.41406299086817394,
+ -1.1688108473920202,
+ -1.0247445263147257,
+ 1.8185275768513143,
+ 1.9556212882623742,
+ 5.136195541686413,
+ 5.180603940437614,
+ -2.830119780943151,
+ 1.922314695043196,
+ -0.47182895189039115,
+ -1.2961653850185961,
+ 2.472047172801305,
+ -2.9268604771740048,
+ 1.6069604831746864,
+ 3.3223707214662905,
+ 0.45650697178826205,
+ -0.061273536850078865,
+ -1.4058708814580902,
+ 2.535959774569662,
+ -2.9113182644290934,
+ 1.5147119344970983,
+ 2.9591412469199296,
+ 0.6533122938740986,
+ 0.05925097011236379,
+ -1.582583057615927,
+ 2.6257710089148762,
+ -2.8961027332488687,
+ 2.0873362958882278,
+ -0.6978180856431997,
+ -0.9976724678798089,
+ 1.4560163841052574,
+ 2.1754571128681097,
+ -3.02310555723653,
+ -1.8253396174987553,
+ 2.000914920398736,
+ -0.4970017368596138,
+ -1.186385947259238,
+ 1.5937844251353575,
+ 2.666797493078892,
+ -3.3225702741922665,
+ -1.866836215975936,
+ 1.8483989426890253,
+ -0.3723535635516972,
+ -1.3000393487200583,
+ 2.5222395800351842,
+ -0.6965436508847634,
+ -1.0000575623397474,
+ 2.2482002754386454,
+ 2.610841824129062,
+ -0.3824315393316304,
+ -0.45032498428017154,
+ -0.3452743662085402,
+ 1.8284347424786211,
+ -2.7960524949871095,
+ 2.754619656406006,
+ -1.8734419688485193,
+ 0.30619134990280716,
+ 0.7783990776170243,
+ 0.9482857704167074,
+ -3.8041848366987883,
+ -1.9675983230219012,
+ 2.7159538836687975,
+ -1.7729599892223087,
+ 0.10364777894014478,
+ 0.8960638762523193,
+ 1.0697893729170416,
+ -3.3285160319618687,
+ -1.8801890905142133,
+ 2.6388531587969344,
+ -1.606728163872344,
+ -0.02169162778166838,
+ 1.6448996798679179,
+ -2.7182203364366946,
+ 2.834460206787069,
+ -1.4130703115016932,
+ -2.8194815048862365,
+ -0.9308222237615755,
+ -0.22094970647550194,
+ 1.746422325474321,
+ -2.7872692054356527,
+ 2.789362573786903,
+ -1.3383653320545907,
+ -2.9189073837139783,
+ -1.2498690099634078,
+ -0.3668059881788185,
+ 1.9031902243071592,
+ -2.824717968866763,
+ 2.7533285336790945,
+ -1.7947649194833828,
+ 0.20853323171439417,
+ 1.369273152037448,
+ -3.9489617626328144,
+ -3.817042364429791,
+ 0.16951551203798074,
+ 0.35363803024907114,
+ 4.3686326381844465,
+ 4.485986587936678,
+ -1.8433017056231238,
+ 0.2692313828975015,
+ 1.3120830112916138,
+ -2.593427254254887,
+ 2.873868952270357,
+ -2.301860476564208,
+ 0.6934551871528147,
+ 1.833904412559468,
+ 2.4886806283841447,
+ 1.0746241109658052,
+ -2.6482437237906633,
+ 2.860545289164532,
+ -2.1689524837943575,
+ 0.5520411833987563,
+ 1.4849009305889684,
+ 2.4560683170167485,
+ 1.1650518968886416,
+ -2.7298409578528666,
+ 2.8249184783920662,
+ -2.0840309740608447,
+ 0.4972724098632907,
+ 1.1034040317742795,
+ -2.4268782268637845,
+ 1.8885302142889204,
+ 3.2444815052332205,
+ -1.613784774186274,
+ -1.178014763998091,
+ 0.3754703633704519,
+ 1.289575017830088,
+ -2.534558067216518,
+ 1.993547834413088,
+ 3.7524744852547234,
+ -1.588491342284728,
+ -1.092420443600038,
+ 0.17161356449862136,
+ 1.4005629858413107,
+ -2.5954266344771644,
+ 2.862916753000211,
+ -2.239797015540983,
+ 0.8122652408865692,
+ -0.3046086927181031,
+ -0.5432821219569438,
+ 1.339039975600841e-15,
+ 1.7314130991653697e-15,
+ 3.3194757981752996e-16,
+ 1.6737999695010513e-16,
+ -2.0340371262678948e-16,
+ -1.8568136800284086e-16,
+ -2.908780624042722e-16,
+ -1.0836066024444661e-16,
+ -6.178211995158563e-16,
+ 1.1427500162420077e-16,
+ 1.9463559813372739e-16,
+ 4.56520980068016e-16,
+ 1.7784383169890093e-16,
+ 1.5025735827025748e-16,
+ -1.2469747734236892e-16,
+ -3.1689289266906485e-16,
+ -1.1158666463340343e-16,
+ -1.1241384524595646e-16,
+ -2.754511439801582e-17,
+ 1.2011696470035653e-16,
+ 9.113462398802981e-17,
+ -4.20207751176938e-17,
+ 4.1855338995183194e-17,
+ 3.027481041944081e-17,
+ 1.6998561587964716e-16,
+ -3.7289302013890483e-16,
+ -1.0223952371155421e-16,
+ -3.937379715752411e-17,
+ 3.5866551360299275e-16,
+ 3.684469243464323e-16,
+ 2.418676111105053e-16,
+ 4.0945440321374864e-17,
+ 2.5756077829428476e-16,
+ 2.6325022994500106e-16,
+ -3.970466940254533e-18,
+ -6.796115912735674e-16,
+ 3.8587975575598735e-17,
+ 5.773720675620133e-17,
+ -2.4401828070314316e-16,
+ 3.695842976886927e-16,
+ 1.8181429863915546e-16,
+ 2.993566636829407e-16,
+ 2.204488031242103e-16,
+ 1.316044354571867e-16,
+ -4.038709340790157e-17,
+ -1.7953955195463463e-16,
+ 5.037529930447938e-17,
+ -3.604853109506094e-16,
+ 5.227781471335134e-17,
+ 5.7489052572435416e-18,
+ 1.5873595954892599e-16,
+ 1.6973746169588125e-16,
+ 1.708127964922002e-17,
+ -2.983640469478771e-16,
+ -4.3964649557193416e-16,
+ -6.410649747285964e-17,
+ -9.344038994552138e-17,
+ 4.3675136342799855e-17,
+ 4.946540063067105e-17,
+ 4.135903062765138e-17,
+ 8.065010972392019e-17,
+ -1.1683926152311516e-18,
+ 1.3958672836832342e-16,
+ -9.057627707455652e-17,
+ -1.2010662494269962e-16,
+ 3.2714993226472245e-17,
+ -4.975904974812738e-16,
+ 7.763090048810163e-17,
+ -3.4898750043612233e-16,
+ -1.2010662494269962e-16,
+ -7.742410533496338e-17,
+ -1.1026317565331858e-16,
+ -7.287461196592174e-17,
+ -1.857020475181547e-17,
+ -1.7354249251362518e-16,
+ -8.077418681580314e-17,
+ -9.523433789899576e-17,
+ -2.1060018395600082e-16,
+ 1.2672406984312384e-16,
+ -2.5808035111654463e-16,
+ 7.535615380358081e-17,
+ -2.5104931590984387e-17,
+ 3.96012718259762e-18,
+ 3.2020161511927696e-16,
+ -1.3564728070103963e-16,
+ -5.943292701193504e-17,
+ -8.735027268559971e-17,
+ -4.9299964508160443e-17,
+ -3.0489877378704595e-16,
+ -2.4947767274599315e-16,
+ -2.325411497039699e-16,
+ 4.1317671597023727e-16,
+ 1.3937993321518516e-16,
+ -9.260286957531144e-17,
+ -1.8231060700668727e-16,
+ -9.765901106954182e-17,
+ -2.7214242152994607e-17,
+ -1.505882305152787e-16,
+ 2.2412458697124285e-16,
+ -9.880672416945914e-17,
+ 6.768405362215149e-17,
+ 4.0664198913106836e-16,
+ 1.565646104409743e-16,
+ -1.2817163591509164e-16,
+ -9.278898521313587e-17,
+ 3.9208361035013506e-17,
+ -4.226892930145971e-17,
+ 1.4628689133000294e-16,
+ 6.046690277762632e-17,
+ 1.0319078141599019e-16,
+ 1.2635183856747498e-16,
+ 4.0573209045726e-17,
+ 1.6295458067294645e-17,
+ 9.984069993515043e-17,
+ -1.0240495983406481e-16,
+ -1.6791766434826462e-17,
+ -2.3467113978129395e-16,
+ -4.3344264097778644e-17,
+ 1.9852334701272662e-16,
+ 1.3896634290890865e-16,
+ 8.040195554015428e-17,
+ 1.0091603473146936e-17,
+ -2.9043345282502493e-16,
+ -2.1392958592152675e-17,
+ -1.9339482721489785e-16,
+ -1.5782606087511766e-16,
+ -7.874759431504822e-17,
+ 5.67445900211377e-17,
+ -1.8437855853806984e-16,
+ -8.354524186785578e-17,
+ -1.8810087129455847e-16,
+ -1.4897522832080028e-16,
+ -3.8476306192904077e-16,
+ 1.0656154241214378e-16,
+ -3.264468287440523e-16,
+ -1.6893096059864205e-16,
+ 1.2341534739291173e-16,
+ 1.110076382046163e-16,
+ 1.5716431638507523e-16,
+ 2.4577603950481832e-17,
+ 1.2817163591509164e-16,
+ 1.2931934901500896e-16,
+ -1.0381116687540496e-17,
+ -3.573420246229079e-16,
+ 4.880365614062863e-16,
+ 8.602678370551488e-18,
+ 9.66767340921351e-17,
+ 3.0713216144093913e-16,
+ -7.17992771696028e-17,
+ -4.4833189200374094e-17,
+ -1.4186147505284425e-16,
+ 2.1940965747969057e-16,
+ 5.579333231670172e-17,
+ -7.891303043755883e-17,
+ -4.835697860985e-16,
+ 8.751570880811032e-17,
+ -1.5683344414005402e-16,
+ -2.087390275777565e-16,
+ -2.715013565552175e-16,
+ -1.0281855014034133e-16,
+ 6.906958114817781e-17,
+ 2.936491174563248e-17,
+ -6.600901288173161e-17,
+ -7.452897319102779e-17,
+ 3.838118042246048e-16,
+ 3.8153705754008395e-17,
+ -6.452008777913615e-18,
+ -1.1367529568009983e-16,
+ 6.792186804826048e-17,
+ -8.189088064274974e-18,
+ -7.020695449043822e-18,
+ 3.5924454003177987e-16,
+ 5.462493970147056e-17,
+ 8.577862952174896e-17,
+ -1.4889251025954498e-17,
+ 7.254373972090053e-17,
+ -4.623939624171424e-17,
+ 1.0314942238536254e-16,
+ -9.102295460533517e-16,
+ -1.0108147085397997e-16
+ ],
+ [
+ 4.965150514963039,
+ 4.0862357826290445,
+ -2.6129034462378673,
+ 1.4295173252450295,
+ 0.13649777071224556,
+ -1.8133531968679533,
+ 2.729976968917769,
+ -2.841741177853517,
+ 1.445145596669598,
+ 3.1142073474919596,
+ 1.275401864318917,
+ 0.3826978818580312,
+ -1.9088510671465229,
+ 2.76955947175504,
+ -2.784113648157436,
+ 1.2456032694992554,
+ 2.576807002654863,
+ 1.3198198082033137,
+ 0.4521703457238631,
+ -2.060184392984788,
+ 2.819323960800903,
+ -2.743558462586008,
+ 1.6244602591975066,
+ -0.09386759010528295,
+ -1.5474980046466582,
+ 1.6764613151926127,
+ 2.654016097671688,
+ -2.666655567128932,
+ -1.6819776915905134,
+ 1.5214680093807935,
+ 0.11107020165193467,
+ -1.716450134308603,
+ 1.739446279099914,
+ 3.031562124362531,
+ -2.7399251047884143,
+ -1.6201710960660314,
+ 1.3437728227223205,
+ 0.23677141560050077,
+ -1.8167414471148753,
+ 2.7608941786724035,
+ -2.816155457822782,
+ 1.8810368797239132,
+ -1.7906365624515954,
+ -1.8969233542234676,
+ -2.72621699577768,
+ -2.775154915190209,
+ -4.096215415642336,
+ -4.0571706539978605,
+ 2.743495928327352,
+ -2.831152721197799,
+ 1.924719107009938,
+ -0.3791966359040975,
+ -1.2945811000525178,
+ 2.4730802992760004,
+ -1.9043012556572187,
+ -3.5672937409038132,
+ 1.5770319757556024,
+ 1.0902316037693052,
+ -0.25454817487210774,
+ -1.4065731931721663,
+ 2.572849834566717,
+ -1.8888863008932868,
+ -3.31453148974203,
+ 1.2351683785732979,
+ 0.9829073551052031,
+ -0.05162607669220545,
+ -1.5833010365610158,
+ 2.6256855887052915,
+ -2.881714997203286,
+ 2.0897350405560156,
+ -0.6980334455005905,
+ -0.5607144384011943,
+ -0.44701408637698953,
+ 3.2966975883233727,
+ 1.8023336720895713,
+ -2.8558467322766448,
+ 1.9452936633766322,
+ -0.4971154319892774,
+ -0.6818566951373282,
+ -0.7557229155292211,
+ 3.794390613510823,
+ 1.9471620486312902,
+ -2.804243956444631,
+ 1.8489017933790937,
+ -0.3749162081824872,
+ -1.3841495442047835,
+ 2.5219850798143355,
+ -0.6953599399511512,
+ 0.06530902937225978,
+ 0.25047104817804766,
+ 3.135008856832369,
+ 2.6658368769791965,
+ -1.3263647032050618,
+ -0.3459993875174523,
+ 1.8260060389456545,
+ -2.8214405332388033,
+ 2.753521001887255,
+ -1.8718134102308923,
+ 0.3496533507086884,
+ 1.2147213689347913,
+ 3.1496381917409977,
+ 1.4676754751334926,
+ -2.8516466686601136,
+ 2.7140009465072876,
+ -1.709128653482337,
+ 0.1589531647912917,
+ 0.8247312788159892,
+ 2.874620878755051,
+ 1.4528605412960551,
+ -2.8920341580538294,
+ 2.636857293068918,
+ -1.6071939555231678,
+ -0.11627163296572347,
+ 1.6424999871949444,
+ -2.7170382435596396,
+ 1.8707421968266,
+ 3.330030789319481,
+ -0.9650093732611821,
+ -0.8402957995208591,
+ -0.23951959101459,
+ 1.8065785430642147,
+ -2.7859760155641946,
+ 1.8601876508384285,
+ 3.6129251368159703,
+ -0.8058888405741946,
+ -0.7120177173766215,
+ -0.44320587930535543,
+ 1.9025359740341485,
+ -2.8226116184495686,
+ 2.72180194408906,
+ -1.7951632191428808,
+ 0.2074134280258306,
+ 1.4555285176589294,
+ 1.3101782338074044,
+ -1.6832918721484602,
+ -1.8250666574295118,
+ -5.149649131351562,
+ -5.203075617244117,
+ 2.7434830317118526,
+ -1.844394345200425,
+ 0.27196144295140573,
+ 1.3948639235912892,
+ -2.5932537533215423,
+ 2.8750507451495957,
+ -1.5492861386643562,
+ -3.2401561295285495,
+ -0.6519746503435553,
+ -0.042723366256978396,
+ 1.503219216750366,
+ -2.6492087256942556,
+ 2.8502753325249577,
+ -1.4509501871021528,
+ -2.8721741311168376,
+ -0.8308676674543982,
+ -0.16247914366366972,
+ 1.6722021507144318,
+ -2.730810366339738,
+ 2.8264689279956134,
+ -2.01792715967808,
+ 0.500045713066818,
+ 1.1036120653284753,
+ -1.5202687884361628,
+ -2.3105455470547867,
+ 2.943172981165474,
+ 1.7959011964579183,
+ -1.924903595002537,
+ 0.29912933975819134,
+ 1.2898591635535477,
+ -1.657299747460382,
+ -2.8116051392447274,
+ 3.2175903684969853,
+ 1.8263317636381495,
+ -1.7669855496206457,
+ 0.1717875815508197,
+ 1.398640833878661,
+ -2.638563766381362,
+ 2.864324321832145,
+ -2.240837175946174,
+ 2.55281746887648,
+ 3.264265417134419,
+ -1.1226495273569692e-15,
+ -1.3360621253956501e-15,
+ -4.0697286137608957e-16,
+ -2.1465336895751066e-16,
+ 1.3950401030706812e-16,
+ 2.7059145788140915e-17,
+ 2.9431086194636725e-16,
+ 3.067185711346626e-16,
+ 6.286572655403009e-16,
+ -7.01035569138691e-17,
+ -1.078643518769148e-16,
+ -6.678656265753144e-16,
+ -2.895132143935597e-17,
+ -1.933534681842702e-16,
+ -4.917588741627749e-17,
+ 2.569222982589704e-16,
+ 1.5071230760716162e-16,
+ 1.467418406669071e-16,
+ 2.3988237764037803e-16,
+ -2.701985470904465e-16,
+ 2.8951321439355965e-18,
+ 1.682485365932858e-16,
+ 1.4723814903443893e-17,
+ -8.42069863578982e-17,
+ -3.6611013911597e-16,
+ 1.7039920618592368e-16,
+ 7.16338410470922e-17,
+ 4.20207751176938e-17,
+ -3.9406884382026234e-16,
+ -4.480010197587198e-16,
+ -1.0753347963189358e-17,
+ -1.819797347616661e-17,
+ -5.868019265451178e-16,
+ -2.1990596584722238e-16,
+ 3.680953725860973e-17,
+ 5.479244377551255e-16,
+ -1.2821299494571927e-17,
+ -7.270917584341113e-17,
+ 2.423639194780371e-16,
+ -5.665566810528825e-16,
+ -2.216844041642114e-17,
+ -3.170169697609478e-16,
+ -1.9411861025088174e-16,
+ -9.31405369734709e-17,
+ -1.9852334701272664e-18,
+ 1.98357910890216e-16,
+ -7.940933880509066e-18,
+ 2.9728871215155815e-16,
+ -6.207990497210473e-17,
+ 1.2076836943274203e-17,
+ 4.8803656140628625e-18,
+ -1.7759567751513502e-16,
+ -1.3491315790739881e-16,
+ 1.687241654455038e-16,
+ 2.4335653621310074e-16,
+ 4.448163744003906e-17,
+ 1.0472106554921329e-16,
+ -7.15511229858369e-17,
+ 9.59529510561512e-18,
+ 1.4299884839510466e-16,
+ -1.701820712751285e-16,
+ 1.0476242457984094e-16,
+ -1.7776111363764562e-16,
+ 1.080297879994254e-16,
+ 9.082443125832243e-17,
+ 6.88214269644119e-17,
+ 4.2120036791200164e-16,
+ -5.335314950967028e-17,
+ 1.4210962923661015e-16,
+ 7.540785259186537e-17,
+ 3.1953987062923454e-16,
+ 2.0143915867197604e-16,
+ 1.6448486480616953e-16,
+ -6.038418471637102e-17,
+ 3.7355476462894725e-16,
+ -4.433688083284228e-17,
+ -1.2536956159006824e-17,
+ 2.667657475483514e-18,
+ -1.917869948992479e-16,
+ 1.9653811354259935e-16,
+ -1.919059021123024e-17,
+ 1.1725026688997744e-16,
+ 5.206843462079886e-17,
+ -2.0059129854410919e-16,
+ 1.4748630321820483e-16,
+ 7.701051502868686e-17,
+ 2.319828027904966e-16,
+ 1.5840508730390478e-16,
+ 5.452774597949558e-16,
+ -4.979627287569226e-17,
+ 2.956343509264521e-16,
+ -1.12016798551931e-15,
+ -3.48904782374867e-16,
+ 1.8115255414911306e-17,
+ 8.536503921547244e-17,
+ -1.8694281843698425e-17,
+ 2.36563315432509e-16,
+ 1.7321162026860397e-16,
+ -1.3234889800848441e-17,
+ 1.6899299914458353e-16,
+ 1.075334796318936e-18,
+ -2.1630773018261671e-16,
+ -2.1175823681357506e-16,
+ 1.8975523251966452e-16,
+ 5.889525961377557e-17,
+ -2.1457065089625535e-16,
+ 2.4980854499101433e-17,
+ -8.561319339923835e-17,
+ 8.34366744124582e-17,
+ -8.052603263203723e-17,
+ -5.0003068028830517e-17,
+ -6.021874859386041e-17,
+ -4.58051264201239e-17,
+ -1.1737692892127463e-16,
+ 3.3149263048062584e-17,
+ -1.7586893798643057e-16,
+ 1.859502017019206e-16,
+ 1.10924920143361e-16,
+ -2.5229008682867344e-16,
+ -4.1028158382630167e-17,
+ 7.891303043755883e-17,
+ 7.444625512977249e-18,
+ 2.248276904919129e-16,
+ 9.206520217715197e-17,
+ 3.168101746078096e-17,
+ 1.0257039595657542e-17,
+ -4.648755042548015e-17,
+ 3.085383684822793e-17,
+ 3.3732425379912464e-16,
+ 2.21849840286722e-16,
+ 2.6800651846718097e-16,
+ 1.1117307432712692e-16,
+ 6.140988867593676e-16,
+ -1.87563203896399e-16,
+ 2.5175241943051397e-16,
+ 2.208430063848801e-16,
+ -5.815079706247785e-17,
+ 4.613186276208235e-16,
+ -6.468552390164676e-17,
+ -2.63431175703997e-17,
+ 1.2813027688446399e-16,
+ -9.239607442217318e-17,
+ -7.068258334265621e-17,
+ 3.1978802481300045e-16,
+ -3.95888641167879e-16,
+ 1.290401755582723e-17,
+ -1.7933275680149638e-16,
+ -3.850112161128067e-16,
+ 1.5393831199611843e-16,
+ 8.10637000301967e-17,
+ 8.285247810484262e-17,
+ -1.6675961149069035e-16,
+ -4.7273372007405525e-17,
+ 4.078000419886426e-17,
+ 4.542875924141228e-16,
+ -9.028676386016296e-17,
+ 1.1249656330721176e-16,
+ 6.236941818649829e-17,
+ 3.370347405847311e-16,
+ 1.83055069557985e-16,
+ 2.1093105620102203e-17,
+ -9.016268676828e-17,
+ 2.6609366330065206e-17,
+ 3.795725035852705e-17,
+ -2.599001484641613e-16,
+ 2.3574647457761286e-17,
+ 1.985233470127266e-17,
+ -9.330597309598151e-17,
+ 9.882740368477297e-17,
+ -1.6609786700064793e-16,
+ 1.8148342639413425e-16,
+ -4.111087644388547e-16,
+ 1.919059021123024e-17,
+ -1.3234889800848443e-16,
+ 2.707982530345474e-17,
+ -1.8810087129455847e-16,
+ 1.2324991127040111e-17,
+ -1.5571675031310744e-16,
+ 7.798658815149944e-16,
+ -2.1423977865123414e-17
+ ],
+ [
+ -3.5263773832317185,
+ -2.852374898128982,
+ 2.0178984647778364,
+ -1.7645483114003735,
+ 0.8864257439562826,
+ 0.29051744331973955,
+ -1.3671322197189255,
+ 1.9479415927826211,
+ -1.3526583712028801,
+ -2.64753806789785,
+ 0.4533892775081627,
+ 0.43902663266424596,
+ 0.3769060054029127,
+ -1.4315405925433455,
+ 1.9813608900112176,
+ -1.2484542349838215,
+ -2.2952272083577956,
+ 0.24612914395414406,
+ 0.35566329121731316,
+ 0.5152591002790243,
+ -1.5309535565900765,
+ 1.9956892933186838,
+ -1.8411204606239302,
+ 1.027934114872411,
+ 0.06492708152034316,
+ -0.7197265288155051,
+ -0.9257990137892806,
+ 2.310578942367295,
+ 1.3230843733649285,
+ -1.800613891405422,
+ 0.903607770808131,
+ 0.20791121699116652,
+ -0.7936301350348143,
+ -1.1681211319839067,
+ 2.4817003693585584,
+ 1.3309339056892078,
+ -1.7285697870367434,
+ 0.8228344474844281,
+ 0.2935001997539961,
+ -1.418781359514074,
+ 1.9648039876481271,
+ -1.9295374672566392,
+ 2.7708273505362704,
+ 2.800931531427277,
+ 1.9538085033544936,
+ 1.9231375347028203,
+ 1.4226289178850144,
+ 1.35032015648575,
+ -1.3890252299350305,
+ 1.9554169271503268,
+ -1.9428306228755692,
+ 1.1945131835878346,
+ -0.13697733351902663,
+ -1.020798642368327,
+ 1.1528493363078645,
+ 1.963176562686864,
+ -2.079716950990957,
+ -1.2005254508883736,
+ 1.12419988144279,
+ -0.047619840929418046,
+ -1.141677731823225,
+ 1.1933981509487952,
+ 1.9045334703496897,
+ -1.8150586035487233,
+ -1.1544157850064944,
+ 1.0024978499247326,
+ 0.0944042651024114,
+ -1.2136093512478963,
+ 1.909092365242407,
+ -1.988216012912038,
+ 1.3690135136131572,
+ -0.2791822768928183,
+ -0.8612491433819323,
+ -1.844043999988587,
+ -0.8995192179406157,
+ 1.9364018586712828,
+ -1.9481327680847988,
+ 1.2617325630918386,
+ -0.2282082018176345,
+ -0.8196425174828027,
+ -2.2212303553939376,
+ -1.0380125710141441,
+ 1.9714430595086057,
+ -1.9193248159247494,
+ 1.1920773644735758,
+ -0.06669217286730202,
+ -1.0798223139250498,
+ 1.8237148881189922,
+ -1.4893912600370247,
+ -1.9281234863946066,
+ -3.322487000254578,
+ -2.7464628533552724,
+ 1.672541058553464,
+ -0.8100172657921726,
+ -0.36768907284591174,
+ 1.4205338361387223,
+ -2.0026266309505587,
+ 1.882407248108733,
+ -0.8873672653519887,
+ -1.9775348507757955,
+ -1.1852208055031856,
+ -0.42960328784009605,
+ 1.4815073315145688,
+ -2.018666588993839,
+ 1.8273011836327608,
+ -0.7446826130050399,
+ -1.610747298855155,
+ -1.1720556826520916,
+ -0.46778743637272757,
+ 1.5736478635812403,
+ -2.0379392993003558,
+ 1.788027824125917,
+ -0.9555086647743879,
+ -0.2081923090780882,
+ 1.251634618726206,
+ -1.2367485839205399,
+ -2.010055677527644,
+ 1.682670218976686,
+ 1.0941057552974516,
+ -0.8770302133469093,
+ -0.34891329203982124,
+ 1.3606730791116328,
+ -1.271766911567418,
+ -2.2689746009172187,
+ 1.702639852457051,
+ 1.040114219322159,
+ -0.7465027591307017,
+ -0.4366982016578498,
+ 1.4226793579137842,
+ -2.0160347914410277,
+ 1.8566805658436587,
+ -1.150178614707086,
+ 0.8326653566998689,
+ 0.9149014383547789,
+ 1.8251901820781582,
+ 1.8752592851406393,
+ 3.103069903589892,
+ 3.0869651040538972,
+ -2.0096094250962406,
+ 1.8744187827360637,
+ -1.1872649956267591,
+ -0.005230378363891238,
+ 1.0860717431395566,
+ -1.8710120200954807,
+ 1.3243413801153845,
+ 2.5282392460120566,
+ -0.82548493466583,
+ -0.6278564009637825,
+ -0.09157074045493246,
+ 1.1603568649735854,
+ -1.9242210794855954,
+ 1.3015954896895932,
+ 2.3296997930308985,
+ -0.6016442768084124,
+ -0.5486729751865194,
+ -0.2345602008209487,
+ 1.273214058606839,
+ -1.9529298451203534,
+ 1.9281952685260975,
+ -1.3152201424687335,
+ 0.22097162987502375,
+ 0.5391332030601316,
+ 0.5838173366894648,
+ -2.3293092091514827,
+ -1.2996421124975164,
+ 1.9014443171934794,
+ -1.2017428964123618,
+ 0.07936838499550786,
+ 0.6287798171177449,
+ 0.8335517751137856,
+ -2.6571573033705427,
+ -1.3881154743009965,
+ 1.8479737420646885,
+ -1.1291682939474503,
+ -0.008256952960889114,
+ 1.1445475592386454,
+ -1.8980097976560617,
+ 1.983292260414863,
+ -2.7097407486079077,
+ -3.3681694528155584,
+ 1.1760853949278947e-15,
+ 1.7053155508393217e-15,
+ 2.9560333165348135e-16,
+ 1.407861402565253e-16,
+ -1.2788212270069808e-16,
+ -1.1080084305147804e-16,
+ -1.5172560385753908e-16,
+ -2.0215260195030303e-16,
+ -4.189256212274808e-16,
+ -1.2180234519843331e-17,
+ 1.2978463810957004e-16,
+ 5.159228878069803e-16,
+ -1.0949803358670703e-16,
+ 6.586425627453483e-17,
+ -1.0753347963189358e-17,
+ -3.12012527055002e-16,
+ -7.922322316726621e-17,
+ -4.4833189200374094e-17,
+ -9.992341799640573e-17,
+ 2.4724428509209997e-16,
+ 5.96397221650733e-17,
+ -2.7048806030484002e-17,
+ -4.6322114302969544e-17,
+ 3.8008949146811615e-17,
+ 1.732322997839178e-16,
+ -1.595424606461652e-16,
+ -4.495726629225705e-17,
+ -7.527343574232552e-18,
+ 3.3757240798289054e-16,
+ 2.2904631161593336e-16,
+ 1.2407709188295414e-17,
+ 6.605037191235926e-17,
+ 8.453785860291942e-17,
+ 8.185986136977899e-17,
+ -1.2176098616780567e-16,
+ -3.8315005973456237e-16,
+ 1.8611563782443123e-17,
+ 8.801201717564213e-17,
+ -6.303116267654071e-17,
+ 3.7990337583029174e-16,
+ 1.7230172159479564e-16,
+ 8.040195554015428e-17,
+ 2.777672496953067e-16,
+ 3.821574429994987e-17,
+ -1.2002390688144432e-16,
+ -8.515824406233419e-17,
+ -4.79764755280756e-17,
+ 2.8785885316845363e-17,
+ 1.191967262688913e-16,
+ 6.121136532892405e-17,
+ -1.6072119301905325e-16,
+ 3.680953725860973e-17,
+ 1.5071230760716162e-16,
+ -5.4759356551010426e-17,
+ -1.3615392882622836e-16,
+ -5.0347511205776426e-17,
+ -9.887910247305753e-17,
+ 1.4095157637903592e-16,
+ 2.762783245927112e-17,
+ -1.0763687720846271e-16,
+ 2.9108485755741044e-16,
+ -4.79764755280756e-18,
+ 1.6948930751211535e-16,
+ -1.162188760637004e-16,
+ -2.0497535579064023e-16,
+ -1.0527941246268658e-16,
+ -2.8868603378100666e-16,
+ 1.6543612251060552e-18,
+ 3.399712317592944e-17,
+ -4.7418128614602305e-17,
+ -1.386768296945151e-16,
+ -1.0075059860895876e-16,
+ -7.514935865044256e-17,
+ -5.552449861762198e-17,
+ -3.7185904437321354e-16,
+ -1.0703717126436177e-16,
+ 4.743880812991613e-17,
+ 1.2689984572329136e-16,
+ 1.663046621537862e-16,
+ -7.595585974768175e-17,
+ 3.0533304360863634e-17,
+ -5.686866711302065e-17,
+ -4.6549588971421626e-17,
+ 1.4186147505284425e-17,
+ -9.746255567406047e-17,
+ -3.101927297073854e-17,
+ -1.5089842324498605e-16,
+ -4.0065914685683715e-17,
+ -4.226892930145971e-17,
+ -1.9906101441088609e-16,
+ -1.5815693312013887e-16,
+ 7.452897319102778e-16,
+ 2.1738306497893565e-16,
+ -1.3065317775275072e-16,
+ -1.0530009197800041e-16,
+ 1.7701665108634792e-17,
+ -1.6250997109369917e-16,
+ -3.2425480012078685e-17,
+ -7.634877053864444e-17,
+ -1.6845533174642406e-16,
+ 4.264116057710857e-17,
+ -2.1465336895751065e-17,
+ 7.399130579286833e-17,
+ -1.0865017345884017e-16,
+ 8.817745329815274e-17,
+ 1.9984683599281146e-16,
+ -3.461750863534421e-17,
+ 8.920108930618711e-17,
+ 1.0976686728578676e-16,
+ 5.914341379754148e-17,
+ 8.814643402518201e-18,
+ 8.528232115421714e-17,
+ 5.484207461226573e-17,
+ -2.192028623265523e-17,
+ -3.2714993226472245e-17,
+ 1.4765173934071544e-16,
+ -9.785546646502316e-17,
+ -7.510799961981491e-17,
+ 3.0159005133683384e-16,
+ -2.613890735667567e-17,
+ -5.211237859084074e-17,
+ -4.17726209339279e-18,
+ 4.417144471033167e-17,
+ -4.586716496606538e-17,
+ 4.059388856103983e-17,
+ 4.582580593543773e-17,
+ 3.465886766597186e-17,
+ -7.4859845436049e-18,
+ -1.8462671272183575e-16,
+ -1.8479214884434636e-16,
+ -1.1472995096110494e-16,
+ -3.3914405114674135e-17,
+ -1.9997091308469442e-16,
+ 2.2333876538931747e-18,
+ -1.0938429625248098e-16,
+ -1.637869311643279e-16,
+ 9.347140921849213e-18,
+ -3.5792105105169503e-16,
+ 7.312276614968765e-17,
+ 4.1927717298781584e-17,
+ -9.165161187087545e-17,
+ 1.253178628017837e-16,
+ 3.503109894162072e-17,
+ -1.9943324568653495e-16,
+ 2.1407434252872354e-16,
+ -4.80591935893309e-17,
+ 1.0511397634017598e-16,
+ 3.517171964575473e-16,
+ -1.4831348383075786e-16,
+ -2.249931266144235e-17,
+ 8.966637840074819e-17,
+ 2.6499312534504443e-16,
+ 6.791152829060357e-17,
+ -1.7050260376249283e-17,
+ -2.0017770823783267e-16,
+ 1.1451281605030975e-17,
+ -8.25939841634198e-17,
+ -1.6295458067294643e-16,
+ -1.913475551988291e-16,
+ -6.154223757394526e-17,
+ -8.147729033647323e-18,
+ 1.9154401059431047e-18,
+ 6.836647762750774e-17,
+ -3.010161947868752e-17,
+ -2.812414082680294e-17,
+ -4.19380570564385e-17,
+ -1.323282184931706e-16,
+ 3.972534891785915e-17,
+ -2.302043644735076e-16,
+ 1.6709048373571157e-16,
+ -8.007108329513307e-17,
+ 2.373594767720913e-16,
+ 2.4112314855920754e-17,
+ 1.1200025493967995e-16,
+ -5.796468142465341e-17,
+ -1.747419044018271e-17,
+ -5.484207461226573e-17,
+ 2.4236391947803708e-17,
+ -6.849055471939068e-16,
+ 3.780215399367336e-16
+ ],
+ [
+ 3.3833398196219586,
+ 2.6685742377107995,
+ -2.2131630499607127,
+ 2.6635476869125125,
+ -2.251825676493303,
+ 1.0315308772589178,
+ 0.4738079858036937,
+ -1.8277976796055635,
+ 1.7444942555626919,
+ 3.1366897375051535,
+ -2.2957920079640726,
+ -1.3943595581670656,
+ 0.9256588916336473,
+ 0.5877085859071647,
+ -1.9592078745896033,
+ 1.6958853900030506,
+ 2.838901905797119,
+ -1.8563903662378944,
+ -1.2678062653018642,
+ 0.7482299164015705,
+ 0.7683606515090179,
+ -2.03443897973713,
+ 2.6524192485119094,
+ -2.3574391677175703,
+ 1.2983314179955676,
+ 0.04583080182067328,
+ -0.4248250152443543,
+ -2.7873329023699758,
+ -1.445376420508839,
+ 2.660677609895468,
+ -2.2647725447933116,
+ 1.1320871246593838,
+ 0.15668050463229208,
+ -0.2276618401572071,
+ -3.1145536397200995,
+ -1.5237540963151472,
+ 2.6632843993775484,
+ -2.2013440455775477,
+ 1.0278805081937044,
+ 0.5640614853014607,
+ -1.8920317561614106,
+ 2.608853558398852,
+ -4.710751143717477,
+ -4.6775609983399455,
+ -1.8987132153338164,
+ -1.7797144868796462,
+ 0.6701647738332202,
+ 0.8005708048979031,
+ 0.5116941773759329,
+ -1.8555812109033107,
+ 2.5973207927267756,
+ -2.4678108972862955,
+ 1.5224705000427627,
+ -0.08278413665607942,
+ -0.8328339219430436,
+ -1.102733991973709,
+ 3.3092142389722747,
+ 1.7353617264401913,
+ -2.422849185642045,
+ 1.4257162262433467,
+ 0.10409454265525084,
+ -0.9422335884434135,
+ -1.211945133555306,
+ 3.0253346975720006,
+ 1.7323377670710443,
+ -2.339199658858595,
+ 1.2644262186733006,
+ 0.21778724750363437,
+ -1.6984801811923393,
+ 2.5424600016955132,
+ -2.5641182503821716,
+ 1.1952403998938441,
+ 2.4400079143095588,
+ 1.0883956150104703,
+ 0.3420911337153481,
+ -1.7847775842662865,
+ 2.592018627498526,
+ -2.5072578676589576,
+ 1.1943385995826372,
+ 2.643285106603471,
+ 1.482732602308894,
+ 0.5237439919598552,
+ -1.9189779769487736,
+ 2.6162531389742183,
+ -2.4663132175981617,
+ 1.445977661570869,
+ 0.007001273751464038,
+ -1.4598055358642021,
+ 3.4043904773834464,
+ 4.245881449219229,
+ 4.6879939735831355,
+ 3.802988397358622,
+ -2.6598921187385343,
+ 2.1672622206377565,
+ -0.974347781889505,
+ -0.6195530439743105,
+ 1.9306740288154263,
+ -2.618242731970353,
+ 1.7262049252070382,
+ 3.4234505020474217,
+ -0.3026027545565108,
+ -0.426680146515558,
+ -0.7297258678221351,
+ 2.0088529901277608,
+ -2.645667918261135,
+ 1.5793948520378505,
+ 2.948619349475498,
+ -0.06586859181069163,
+ -0.3233708414190391,
+ -0.9074136950782963,
+ 2.1262796883393853,
+ -2.6557739726741145,
+ 2.2827737763044564,
+ -1.167389813880143,
+ -0.3277692792037107,
+ 1.0608166813209459,
+ 1.4425771455029874,
+ -2.9797406610851023,
+ -1.7305608029421722,
+ 2.2222993788855634,
+ -0.9968326541722669,
+ -0.5122054680961078,
+ 1.1526264178476344,
+ 1.7704259919218979,
+ -3.1809462919202365,
+ -1.7295710238887751,
+ 2.1139934172258155,
+ -0.888152396211283,
+ -0.62339419277144,
+ 1.9927786091715978,
+ -2.632949304005204,
+ 2.4210510610476863,
+ -3.352563833974262,
+ -3.402658159282937,
+ -2.59345796919654,
+ -2.567106826753538,
+ -2.218374988509032,
+ -2.1320564505372803,
+ 1.9572812133619015,
+ -2.626392154313601,
+ 2.4449363918296174,
+ -1.399130455013857,
+ -0.06269640812404398,
+ 1.5061141386660855,
+ -1.5773227865257042,
+ -2.7365439026523184,
+ 2.5559730546579824,
+ 1.5034614535985131,
+ -1.3010161536885378,
+ -0.17883177617572246,
+ 1.6565114904665785,
+ -1.619963909628413,
+ -2.632028925935705,
+ 2.208693870078531,
+ 1.4355145480801756,
+ -1.1347921074395364,
+ -0.36470781803325714,
+ 1.744070359712181,
+ -2.582796771390017,
+ 2.5210297584175594,
+ -1.642646572987662,
+ 0.22276422964751572,
+ 0.8870690616149445,
+ 2.5620462806407827,
+ 1.2800277943478955,
+ -2.608513399165042,
+ 2.4545981190367367,
+ -1.4915992915488157,
+ 0.14726556833368828,
+ 0.792750933963378,
+ 3.0585675196818936,
+ 1.4564334648308521,
+ -2.639987771831326,
+ 2.407013798949657,
+ -1.3957647592146145,
+ -0.15471077441002812,
+ 1.579271593757146,
+ -2.4943339835177185,
+ 3.8273616948355387,
+ 4.6686751273446925,
+ -7.203915954724317e-16,
+ -1.2224075092308641e-15,
+ -1.6935489066257548e-16,
+ -2.7203902395337695e-17,
+ 4.1524466750161983e-17,
+ 4.582580593543773e-17,
+ 1.5277379679000862e-16,
+ 1.973032556092109e-16,
+ 1.1751651564964295e-16,
+ 4.8431424864979764e-17,
+ -2.9447629806887785e-17,
+ -4.3865387883687053e-16,
+ 1.730772034190641e-16,
+ -8.354524186785578e-17,
+ -6.265893140089185e-17,
+ 1.9885421925774783e-16,
+ 2.0307284038176826e-17,
+ 6.030146665511572e-17,
+ 1.7585859822877366e-16,
+ -1.9380841752117436e-16,
+ 4.115223547451313e-18,
+ 6.551270451419979e-17,
+ 9.669741360744892e-17,
+ 2.3274794485710813e-17,
+ -1.6295458067294643e-16,
+ -3.6065074707312007e-17,
+ 9.512577044359818e-19,
+ 6.121136532892404e-18,
+ -1.292676502267244e-16,
+ -2.779326858178173e-17,
+ 1.5013328117837452e-16,
+ -1.0050244442519285e-16,
+ -4.388193149593811e-17,
+ 1.0000613605766103e-16,
+ 2.1225454518110688e-16,
+ 5.0209863181968774e-17,
+ 4.404736761844872e-17,
+ -3.561012537040784e-17,
+ -4.4915907261629397e-17,
+ -3.027687837097219e-16,
+ -1.2201431023040004e-16,
+ 5.955700410381799e-17,
+ -3.0183820552059975e-16,
+ 6.427193359537025e-17,
+ 1.4314360500230144e-16,
+ -7.184063620023045e-17,
+ 1.0095739376209702e-16,
+ -6.218330254867386e-17,
+ -2.1936829844906291e-16,
+ -8.311097204626544e-17,
+ 2.8802428929096424e-16,
+ 4.475047113911879e-17,
+ -1.5354540120515574e-16,
+ -6.849055471939069e-17,
+ -7.543887186483611e-17,
+ 2.917879610780805e-17,
+ 6.203854594147708e-17,
+ -2.2623389753325304e-17,
+ -2.2995621028974166e-17,
+ 1.1431636065482842e-16,
+ -3.145354279232887e-16,
+ -1.8115255414911306e-17,
+ -1.680831004707752e-16,
+ 1.1448179677733903e-16,
+ 2.03817302933066e-16,
+ 1.7979804589605745e-16,
+ 4.9299964508160443e-17,
+ -1.1073880450553656e-17,
+ -2.066297170157463e-16,
+ 1.5995605095244173e-17,
+ 1.1660661697583462e-16,
+ 3.722312756488624e-19,
+ 4.466775307786349e-17,
+ 1.1849362274822121e-16,
+ 3.306240908374451e-16,
+ 1.342979423268125e-16,
+ -1.5582014788967656e-16,
+ -2.404407245538513e-16,
+ -9.262354909062526e-17,
+ -1.0264794413900226e-17,
+ 1.7412151894241233e-17,
+ 1.431022459716738e-17,
+ 5.980774322699813e-17,
+ 1.3743605877568555e-16,
+ 6.228670012524298e-17,
+ 2.3657365519016588e-17,
+ 1.376428539288238e-16,
+ 1.0546552810051101e-17,
+ -1.9691034481824821e-16,
+ 2.027006091061194e-16,
+ 8.197359870400503e-17,
+ -7.467786570128733e-16,
+ -2.285086442177739e-16,
+ 9.395737782836702e-17,
+ 3.1226068123876795e-17,
+ -5.9557004103817985e-18,
+ 1.7652034271881608e-16,
+ 3.044024654195142e-17,
+ 1.375601358675685e-16,
+ 1.2953648392580413e-16,
+ -5.488343364289338e-17,
+ 2.565087079526939e-16,
+ 6.588493578984865e-17,
+ 1.2473883637299657e-16,
+ -2.6883369907973396e-17,
+ -1.593149859777131e-16,
+ -3.0398887511323763e-18,
+ -1.1477130999173257e-17,
+ 1.555099551599692e-17,
+ -3.4493431543461254e-17,
+ 8.757774735405179e-17,
+ -1.10924920143361e-16,
+ -1.080297879994254e-16,
+ 8.011244232576072e-17,
+ -7.399130579286833e-17,
+ -1.4864435607577907e-16,
+ 2.2664748783952955e-17,
+ 9.826905677129968e-17,
+ -2.041481751780872e-16,
+ 8.321436962283457e-17,
+ 6.669143688708786e-17,
+ 3.2260043889568075e-18,
+ -1.3045672235726938e-16,
+ 6.89041450256672e-17,
+ -1.639058383773824e-16,
+ -1.6072119301905325e-16,
+ -1.1317381743373956e-16,
+ -4.685978170112901e-17,
+ 1.1489538708361554e-16,
+ 1.5420714569519816e-16,
+ 2.69660879692287e-17,
+ -1.9459423910309973e-17,
+ 9.942710962887391e-17,
+ 8.366931895973874e-17,
+ -8.230447094902625e-18,
+ 7.113753267956038e-18,
+ 7.568702604860202e-17,
+ 4.092682875759242e-16,
+ 8.08982639076861e-17,
+ -7.610061635487853e-17,
+ 1.8975523251966452e-16,
+ -1.5732975250758584e-16,
+ -4.34683411896616e-17,
+ 6.435465165662555e-17,
+ 1.108422020821057e-16,
+ 4.322018700589569e-17,
+ -6.56781406367104e-17,
+ -1.6685266930960257e-16,
+ 1.401243957664829e-16,
+ 1.819797347616661e-17,
+ -2.156459856925743e-16,
+ -3.2839070318355194e-16,
+ -5.864710543000966e-17,
+ -4.384057246531046e-17,
+ -1.1623955557901421e-16,
+ 1.87834622534893e-17,
+ -2.39882377640378e-17,
+ -2.5506889669896873e-18,
+ 1.0530009197800041e-16,
+ -2.3161057151484775e-18,
+ 8.497212842450976e-17,
+ 8.561319339923835e-17,
+ -9.70799846407547e-17,
+ 3.101410309191008e-17,
+ 2.8504643908577334e-16,
+ 4.638415284891102e-17,
+ 1.8003586032216645e-16,
+ -1.5799149699762826e-16,
+ 3.3039661616899303e-16,
+ -2.0166663334042812e-16,
+ 7.841672207002701e-17,
+ -3.110199103199384e-17,
+ 6.549202499888597e-17,
+ -3.995282358631123e-17,
+ 4.867957904874567e-17,
+ 6.245213624775359e-17,
+ 2.431911000905901e-17,
+ 4.177262093392789e-17,
+ 3.359180467577845e-16,
+ -1.0711988932561707e-16
+ ],
+ [
+ 9.99091964178305,
+ 7.95956198713959,
+ -6.229184619405501,
+ 6.7182829351962825,
+ -5.033814216521384,
+ 1.5033114415500268,
+ 2.358546131699225,
+ -5.461909104317406,
+ 4.6311229631535795,
+ 8.567706247235705,
+ -4.61193733592478,
+ -2.9839811461740062,
+ 1.2181797958393117,
+ 2.63492758100732,
+ -5.733513267910469,
+ 4.427748388939249,
+ 7.641484084882114,
+ -3.5945920686275947,
+ -2.6645206074073844,
+ 0.7455630158563644,
+ 3.06833526222079,
+ -5.884780505953834,
+ 6.78398150012052,
+ -5.3808365058961,
+ 2.2325111236784894,
+ 0.8862988515593673,
+ 0.27498959613837115,
+ -7.566440025194161,
+ -4.06321029764603,
+ 6.754207690067378,
+ -5.075462913963737,
+ 1.776171232061999,
+ 1.1671102751327143,
+ 0.8983644318441162,
+ -8.342804340090227,
+ -4.212135967597155,
+ 6.677626625006951,
+ -4.872500419194129,
+ 1.4934525382418324,
+ 2.5776798971263353,
+ -5.595641177169622,
+ 6.8048929146469375,
+ -11.520168943247448,
+ -11.49445838341674,
+ -5.5787381834117555,
+ -5.331672888531479,
+ -0.39154617204028724,
+ -0.07754948081555345,
+ 2.450784813930485,
+ -5.519972217484166,
+ 6.799126951330449,
+ -5.7643416005773105,
+ 2.858926220900759,
+ 0.9762421747649496,
+ -2.7776394873594152,
+ -4.165871165024164,
+ 8.241623999459483,
+ 4.444774869616235,
+ -5.604634636393168,
+ 2.586779204406701,
+ 1.446229259075647,
+ -3.018577780451563,
+ -4.295616187173041,
+ 7.438227123499598,
+ 4.387834907526796,
+ -5.319770804472869,
+ 2.1389162076708392,
+ 1.7291896199580292,
+ -5.1872547132793105,
+ 6.75172591223171,
+ -6.131569177123769,
+ 2.4492809698081444,
+ 5.3256184290078545,
+ 4.007076034028757,
+ 1.6169914666942053,
+ -5.371359642561836,
+ 6.796275552867455,
+ -5.909273009348476,
+ 2.390702781279031,
+ 5.642613978781018,
+ 5.1337428724832,
+ 2.096590069045306,
+ -5.6512183286037,
+ 6.806687008465632,
+ -5.758942283185545,
+ 2.643620682313619,
+ 1.2027290807350026,
+ -4.665048316273081,
+ 8.16700904886542,
+ 9.78458367736835,
+ 12.095970196790287,
+ 9.86969871065563,
+ -6.642037681160705,
+ 4.764077241346106,
+ -1.3479033853448965,
+ -2.7119722892748825,
+ 5.673864769796085,
+ -6.802105405312666,
+ 4.078415134110757,
+ 8.331691145532934,
+ 0.783481689457146,
+ -0.2828509681930355,
+ -2.9763913181684813,
+ 5.832315199159494,
+ -6.788834187498177,
+ 3.6564364573884736,
+ 7.072709872238979,
+ 1.1920822257708956,
+ -0.05544601540600473,
+ -3.397825044037535,
+ 6.063103368512854,
+ -6.763742574295559,
+ 5.13325058045056,
+ -1.8713661003645858,
+ -2.0014571184468117,
+ 3.279067296329326,
+ 4.8259443782165174,
+ -7.2087518798314285,
+ -4.317260072323764,
+ 4.938135909859327,
+ -1.4083891087430105,
+ -2.452390106303794,
+ 3.482374363992865,
+ 5.7015528472050905,
+ -7.590857797554726,
+ -4.255151835095629,
+ 4.597865998440492,
+ -1.1166732532529617,
+ -2.7212387481445015,
+ 5.799927966403254,
+ -6.799678056798713,
+ 5.597984392876004,
+ -6.925036011863925,
+ -7.106491901138823,
+ -6.671365065572857,
+ -6.678673396247269,
+ -7.434700478874889,
+ -7.263303185487391,
+ 5.72943280552098,
+ -6.807777335090142,
+ 5.68223065697613,
+ -2.512559426620973,
+ -1.342460431707791,
+ 4.767624336262506,
+ -4.300557572078776,
+ -7.718880313381736,
+ 5.493002306304527,
+ 3.3900940142075227,
+ -2.239894721809865,
+ -1.6324197221213326,
+ 5.096749822645731,
+ -4.35138389326068,
+ -7.310103699795952,
+ 4.621853582935056,
+ 3.180099089286456,
+ -1.7835843545883454,
+ -2.091649604907115,
+ 5.284673301430742,
+ -6.789897562612592,
+ 5.961273788079804,
+ -3.20079926104012,
+ -0.2041951428056656,
+ 0.9337379004304109,
+ 7.184515340901716,
+ 3.741338658459166,
+ -6.80525779654716,
+ 5.716390362670897,
+ -2.771723845592081,
+ -0.43938408470684703,
+ 0.4859860200202984,
+ 8.438763302275825,
+ 4.155652798824456,
+ -6.802506354276833,
+ 5.549465203611912,
+ -2.503158059904006,
+ -1.572323383065926,
+ 4.928587403020208,
+ -6.693286174167477,
+ 9.872241132116788,
+ 12.112478561788038,
+ -1.8439510215032093e-15,
+ -3.2607459746840347e-15,
+ -3.8877488789992296e-16,
+ 1.0339757656912845e-16,
+ 9.454674401481105e-17,
+ 1.6080391108030856e-16,
+ 7.07073987610328e-16,
+ 4.777795218106288e-16,
+ 1.0554824616176632e-16,
+ 1.0918784085699964e-17,
+ -7.378451063973007e-17,
+ -1.3062836233437411e-15,
+ 1.5716431638507523e-16,
+ -4.284795573024683e-16,
+ -1.10924920143361e-16,
+ 6.511565782017433e-16,
+ 8.147729033647321e-17,
+ 2.979090976109729e-16,
+ 5.041252243204427e-16,
+ -4.134248701540032e-16,
+ -1.654361225106055e-19,
+ 3.2044976930304287e-16,
+ 2.80579663777987e-16,
+ 1.828896334354744e-16,
+ -3.836463681020942e-16,
+ 1.0091603473146936e-16,
+ 4.22224003920036e-17,
+ 3.58996385848014e-17,
+ -2.772709413277749e-16,
+ -1.2639319759810263e-16,
+ 3.5326816010608424e-16,
+ -3.073389565940774e-16,
+ -6.19392842679707e-16,
+ 3.154866856277247e-16,
+ 5.338623673417241e-16,
+ 2.6043781586232076e-16,
+ 2.440415451578712e-16,
+ 6.452008777913616e-17,
+ -7.279189390466644e-17,
+ -8.7292370042721e-16,
+ -2.3127969926982654e-16,
+ -2.855841064839328e-17,
+ -8.695322599157426e-16,
+ 2.488572872865784e-16,
+ 3.781869760592442e-16,
+ -7.767225951872929e-17,
+ 2.517110603998863e-16,
+ 4.903526671214348e-16,
+ -6.809350802536523e-16,
+ -1.976961664001736e-16,
+ 5.601667108209103e-16,
+ 2.8031083007890725e-17,
+ -2.634570250981393e-16,
+ 8.040195554015428e-17,
+ -1.7205356741102973e-16,
+ 9.181704799338606e-17,
+ 1.6262370842792522e-16,
+ 2.547716286663325e-16,
+ -6.5843576759221e-17,
+ 2.718115492849249e-16,
+ -6.66376701472719e-16,
+ -9.214792023840727e-17,
+ -4.589198038444198e-16,
+ 3.331883507363595e-16,
+ 5.419687373447437e-16,
+ 4.977145745731568e-16,
+ 6.931773533194372e-17,
+ -1.7337705639111458e-16,
+ -3.2243500277317014e-16,
+ 5.0499376396362333e-17,
+ 3.2888701155108375e-16,
+ -1.3549218433618593e-16,
+ 8.950094227823758e-17,
+ 2.731143587496959e-16,
+ 8.347906741885154e-16,
+ 3.446034431895913e-16,
+ -4.435342444509334e-16,
+ -4.1226681729642894e-16,
+ -5.310499532590437e-17,
+ 4.677706363987371e-17,
+ 4.20207751176938e-17,
+ -1.4823076576950256e-16,
+ 1.8843174353957968e-16,
+ 2.6155450968926735e-16,
+ 2.286740803402845e-16,
+ 1.3336219425886189e-16,
+ 4.1226681729642894e-16,
+ 9.165161187087545e-17,
+ -4.556110813942076e-16,
+ 4.132594340314926e-16,
+ -5.98878763488392e-17,
+ -1.7606952928497469e-15,
+ -6.840783665813538e-16,
+ 1.2664135178186854e-16,
+ 1.3863547066388744e-16,
+ 8.205631676526033e-17,
+ 3.7740115447731883e-16,
+ 2.4683069478582346e-16,
+ 1.2970192004831474e-16,
+ 2.1936829844906291e-16,
+ -2.241659460018705e-16,
+ 5.039184291673045e-16,
+ 1.565025718950328e-16,
+ 4.729818742578212e-16,
+ 3.0713216144093913e-16,
+ -1.316044354571867e-16,
+ -1.613002194478404e-17,
+ 2.043136113005978e-17,
+ 3.5237894094758974e-16,
+ -1.531111313835654e-16,
+ 1.887626157846009e-16,
+ -2.4037868600790984e-16,
+ -3.3765512604414585e-16,
+ 1.2937104780329353e-16,
+ -2.9182932010870816e-16,
+ -1.558408274049904e-16,
+ 1.7652034271881608e-16,
+ 2.99439381744196e-16,
+ -3.079179830228645e-16,
+ 5.914341379754148e-17,
+ 3.0936554909483235e-17,
+ 3.226004388956808e-17,
+ -1.8776999904953726e-16,
+ 2.0861495048587355e-16,
+ -2.8885146990351726e-16,
+ -1.952146245625145e-16,
+ -2.488159282559507e-16,
+ -2.24522667641034e-16,
+ 2.2598574334948716e-16,
+ 2.6597992596642605e-16,
+ 1.3565762045869652e-17,
+ 1.3565762045869652e-17,
+ 5.32683634968836e-16,
+ 1.1530897738989206e-16,
+ 1.133237439197648e-16,
+ -1.8528845721187817e-16,
+ 2.0241109589172585e-16,
+ 7.712632031444429e-16,
+ 4.1557553974664105e-16,
+ -2.307833909022947e-16,
+ 3.388131789017201e-16,
+ -4.637174513972273e-16,
+ -1.0993230340829737e-16,
+ 2.4352197233561135e-16,
+ 4.71823821400247e-16,
+ 2.024524549223535e-17,
+ -1.588186776101813e-16,
+ -1.0620999065180874e-16,
+ 3.126742715450444e-16,
+ 1.1018045759206327e-16,
+ -4.630557069071849e-16,
+ -8.519960309296184e-16,
+ -1.5137405209720404e-16,
+ -9.032812289079061e-17,
+ -3.806064793509618e-16,
+ 1.0825726266787748e-17,
+ -7.775497757998459e-17,
+ -2.802487915329658e-16,
+ 2.385588886602932e-16,
+ -7.246102165964522e-17,
+ 1.8094575899597478e-16,
+ 1.6270642648918052e-16,
+ -1.7021309054809925e-16,
+ 1.833859418030062e-16,
+ 8.538158282772351e-16,
+ 1.0993230340829737e-16,
+ 4.08461786478685e-16,
+ -4.652063764998228e-16,
+ 7.563739521184884e-16,
+ -3.646625730440022e-16,
+ 1.9157502986728118e-16,
+ -1.3102540902839958e-16,
+ 3.121779631775126e-16,
+ 1.0091603473146936e-16,
+ 4.7562885221799085e-17,
+ 7.926458219789386e-17,
+ 1.8032537353656003e-17,
+ 1.3234889800848443e-16,
+ 9.05928206868076e-16,
+ 9.85999290163209e-16
+ ],
+ [
+ 12.102724979360946,
+ 9.863506350203236,
+ -6.690929507500702,
+ 4.935977637489068,
+ -1.587056314923941,
+ -2.4858672352482754,
+ 5.535497725764878,
+ -6.79639106658689,
+ 4.157459021373367,
+ 8.438849419825232,
+ 0.46413410543584277,
+ -0.45025391094513795,
+ -2.7544893828773778,
+ 5.7028821645167,
+ -6.800293331800261,
+ 3.7440708863168655,
+ 7.186075262984828,
+ 0.914300127878272,
+ -0.21471708303773168,
+ -3.1837276593881367,
+ 5.948558961495285,
+ -6.785647297435557,
+ 5.290800911768677,
+ -2.1056160539443236,
+ -1.7662925387916895,
+ 3.170103186078064,
+ 4.602988866680106,
+ -7.310797587216299,
+ -4.349909839809035,
+ 5.103564729046885,
+ -1.6470700940086986,
+ -2.222577589694217,
+ 3.380389614551632,
+ 5.473028198720576,
+ -7.721125465700849,
+ -4.299941545155726,
+ 4.775538418045449,
+ -1.357499126222451,
+ -2.4952698978421206,
+ 5.668625217075051,
+ -6.8022117259798565,
+ 5.733717303194604,
+ -7.2816906468143285,
+ -7.452548402174359,
+ -6.679464586269652,
+ -6.671443372130325,
+ -7.092109396263283,
+ -6.910204126548002,
+ 5.592360095275721,
+ -6.799758787805621,
+ 5.805676931192514,
+ -2.730929121341482,
+ -1.1064577378593425,
+ 4.590433000353853,
+ -4.253364161711484,
+ -7.5855241904753425,
+ 5.711436303776337,
+ 3.486810685275638,
+ -2.462236129003594,
+ -1.3982728484300055,
+ 4.931233036339887,
+ -4.315990702652851,
+ -7.204608961666029,
+ 4.8355654848356195,
+ 3.2837947948158868,
+ -2.0115181983835497,
+ -1.8614507447955488,
+ 5.126688271804107,
+ -6.762998347612452,
+ 6.068146331470518,
+ -3.4070288221142055,
+ -0.04867090471725747,
+ 1.203934492523858,
+ 7.068081359928098,
+ 3.652808937906888,
+ -6.788535079890481,
+ 5.8379852772965455,
+ -2.9859155933926895,
+ -0.27573615655895345,
+ 0.7970913959109645,
+ 8.327361951045,
+ 4.075164957262242,
+ -6.802537488281133,
+ 5.679910649015824,
+ -2.721668335467167,
+ -1.337765306122883,
+ 4.756895009191369,
+ -6.640141817719796,
+ 9.870236995015604,
+ 12.096019752540961,
+ 9.774112349457047,
+ 8.158063116490618,
+ -4.66085136120137,
+ 1.2044199082788267,
+ 2.6365971702490807,
+ -5.74877489558851,
+ 6.7969126026507105,
+ -5.645003642888894,
+ 2.095697331832903,
+ 5.130053471838061,
+ 5.630949403671408,
+ 2.385202016605546,
+ -5.899016335375353,
+ 6.786667960129191,
+ -5.365746756056682,
+ 1.6167672842789955,
+ 4.00471395721527,
+ 5.315020617179875,
+ 2.4438583900566884,
+ -6.121207936292803,
+ 6.742425666672701,
+ -5.182022766429655,
+ 1.7300615374067816,
+ 2.132523898128699,
+ -5.309921462562853,
+ 4.381190166427246,
+ 7.42629745990287,
+ -4.292744641845843,
+ -3.015879697754808,
+ 1.447544454757953,
+ 2.5798253816129386,
+ -5.5945700546274955,
+ 4.438189867295051,
+ 8.228727264424913,
+ -4.163631616368109,
+ -2.7754134775301584,
+ 0.9782788585618237,
+ 2.851640750983014,
+ -5.754170827422512,
+ 6.789483452892916,
+ -5.514043085720257,
+ 2.4505050618214335,
+ -0.08353325427488911,
+ -0.3970090023205485,
+ -5.325978021675589,
+ -5.572467581135708,
+ -11.473833840508213,
+ -11.499245183005659,
+ 6.799934580595863,
+ -5.600521821948638,
+ 2.590829381292832,
+ 1.4762193704186524,
+ -4.857118722551001,
+ 6.669080651086508,
+ -4.212281961057875,
+ -8.339672167505102,
+ 0.917985799353181,
+ 1.176563065876257,
+ 1.758879790867348,
+ -5.060442350766237,
+ 6.746738478714856,
+ -4.064219732312942,
+ -7.5649245824392715,
+ 0.2935840945342441,
+ 0.8960702585239797,
+ 2.2151946394061017,
+ -5.366457625824676,
+ 6.77718754106491,
+ -5.888330865096152,
+ 3.080551682797126,
+ 0.7286270001168542,
+ -2.653840346021528,
+ -3.575007611029244,
+ 7.6391054168759105,
+ 4.424565112503112,
+ -5.73778535781924,
+ 2.647974838960512,
+ 1.2010311566989889,
+ -2.972922383368495,
+ -4.589857981728066,
+ 8.56668087529102,
+ 4.628831574136084,
+ -5.467347181383656,
+ 2.372077163425606,
+ 1.4860758835240309,
+ -5.018716672691578,
+ 6.710249618427102,
+ -6.230827695414758,
+ 7.967312026488373,
+ 9.9994523842457,
+ -2.740945677755712e-15,
+ -4.146490974605817e-15,
+ -7.365216174172157e-16,
+ -1.4130312813937095e-16,
+ 2.977048873972489e-16,
+ 2.26482051717019e-16,
+ 8.960020395174396e-16,
+ 6.435465165662554e-16,
+ 9.009651231927577e-16,
+ -1.0455562942670269e-16,
+ -2.715840746164728e-16,
+ -1.6457585467355037e-15,
+ -8.99972506457694e-17,
+ -5.866364904226072e-16,
+ -2.8496372102451803e-17,
+ 8.329708768408988e-16,
+ 2.511320339710992e-16,
+ 4.289551861546863e-16,
+ 5.098741295776863e-16,
+ -4.880365614062863e-16,
+ -6.452008777913616e-17,
+ 4.0366413892587746e-16,
+ 1.8677738231447362e-16,
+ 4.983763190631991e-17,
+ -5.927214378037004e-16,
+ 4.628489117540466e-16,
+ 1.591495498552025e-16,
+ 6.385834328909374e-17,
+ -6.746485075982493e-16,
+ -6.911921198493098e-16,
+ 4.135903062765138e-17,
+ -2.4087499437544166e-16,
+ -1.1681444610473857e-15,
+ -1.0918784085699964e-16,
+ 3.635251997017418e-16,
+ 1.050188505697324e-15,
+ 1.7585859822877366e-16,
+ 6.871285950901432e-17,
+ 3.0109374296930207e-16,
+ -1.2116748407829886e-15,
+ -2.276401045745932e-16,
+ -5.629791249035906e-16,
+ -8.478601278668533e-16,
+ -5.9557004103817985e-18,
+ 2.266474878395296e-16,
+ 2.627125625468416e-16,
+ 9.810362064878907e-17,
+ 9.348381692768042e-16,
+ -5.269140501962786e-16,
+ -1.0174321534402239e-16,
+ 1.831377876192403e-16,
+ -2.1769325770864303e-16,
+ -2.5614940137411616e-16,
+ 4.1574097586915166e-16,
+ 3.7719435932418057e-16,
+ 1.3681567331627078e-16,
+ 2.6684846560960673e-16,
+ 1.4943017765770445e-16,
+ -5.955700410381799e-17,
+ 2.593314617930311e-16,
+ -5.19634860805812e-16,
+ -1.8363409598677214e-17,
+ -4.705003324201621e-16,
+ 3.5585309952031246e-16,
+ 5.219509665209605e-16,
+ 3.5568766339780185e-16,
+ 6.610827455523796e-16,
+ -1.9701374239481734e-16,
+ 2.041481751780872e-16,
+ 1.5857052342641538e-16,
+ 4.958120591642848e-16,
+ 1.1125579238838222e-16,
+ 2.1909946474998318e-16,
+ 1.1109035626587162e-16,
+ 9.033639469691615e-16,
+ 2.357464745776129e-16,
+ -2.248276904919129e-16,
+ -4.764560328305439e-17,
+ -2.1043474783349022e-16,
+ 3.5060050263060073e-16,
+ -6.385834328909374e-17,
+ 5.624828165360588e-17,
+ 1.432676820941844e-16,
+ -2.097730033434478e-16,
+ 3.536197118664193e-16,
+ 1.9901965538025843e-16,
+ 5.37667398159468e-16,
+ 2.4931223662348254e-16,
+ 4.585889315993985e-16,
+ 3.126742715450444e-16,
+ 2.299562102897417e-16,
+ -2.091112588534054e-15,
+ -7.950860047859701e-16,
+ 1.0827794218319131e-16,
+ 3.19250357414841e-16,
+ 8.69366823793232e-17,
+ 4.068487842842066e-16,
+ 3.957232050453684e-16,
+ -1.7337705639111458e-16,
+ 2.6999175193730823e-16,
+ -2.0137712012603456e-16,
+ -1.435985543392056e-16,
+ -1.9753073027766298e-16,
+ 6.016911775710723e-16,
+ 4.160304890835452e-16,
+ -1.8495758496685696e-16,
+ 5.98878763488392e-17,
+ -1.313562812734208e-16,
+ 2.8587361969832636e-16,
+ -2.099384394659584e-16,
+ 1.737079286361358e-18,
+ -1.9058241313221755e-16,
+ -2.4980854499101436e-16,
+ -8.457921763354707e-17,
+ -9.90962373838527e-17,
+ -8.503416697045123e-17,
+ 4.52964103434038e-16,
+ 2.8554274745330515e-16,
+ -4.815018345671174e-16,
+ -9.602532935974959e-17,
+ -1.2573145310806019e-17,
+ 2.6304343479186277e-17,
+ 2.5626055376892797e-16,
+ 2.2218071253174323e-16,
+ 2.8827244347473014e-17,
+ 2.646977960169688e-18,
+ -1.1117307432712692e-16,
+ -1.5912887033988867e-16,
+ 4.3989464975570007e-16,
+ 3.8902304208368887e-16,
+ 3.2557828910087164e-16,
+ 2.1159280069106445e-16,
+ 1.1170246991916086e-15,
+ -1.8059420723563974e-16,
+ 5.04332019473581e-16,
+ 1.197757526976784e-16,
+ 4.549493369041652e-19,
+ 7.042615735276477e-16,
+ 1.8243468409857023e-16,
+ -1.435985543392056e-16,
+ 1.5071230760716162e-16,
+ -4.3294633261025464e-16,
+ -1.2928832974203823e-16,
+ 6.212746785732652e-16,
+ -2.6428420571069234e-16,
+ 2.249931266144235e-17,
+ -2.867008003108794e-16,
+ -5.513985963278482e-16,
+ 2.936387776986679e-16,
+ 1.917404659897918e-16,
+ -9.777274840376786e-17,
+ -7.425600358888528e-16,
+ -1.6742135598073278e-16,
+ 1.303326452653864e-17,
+ 3.6395946952333213e-16,
+ -1.2698256378454666e-16,
+ 1.164670302474663e-16,
+ -5.96397221650733e-17,
+ 5.952391687931587e-16,
+ 1.167979024924875e-16,
+ 5.97224402263286e-17,
+ -4.413008567970402e-17,
+ -1.5302841332231012e-17,
+ 1.8801815323330317e-16,
+ 5.39321759384574e-17,
+ 6.749793798432706e-17,
+ 2.4600351417327043e-16,
+ -3.096964213398535e-16,
+ 4.2682519607736223e-16,
+ -2.897613685773256e-16,
+ 3.0142461521432324e-16,
+ -6.481787279965524e-16,
+ 1.6262370842792522e-16,
+ -2.7131524091739305e-17,
+ 3.881545024405082e-17,
+ -1.7023377006341307e-16,
+ 4.135903062765138e-18,
+ -6.27002904315195e-17,
+ 1.5981129434524493e-15,
+ 9.089060570732668e-16
+ ],
+ [
+ 4.664973999959727,
+ 3.8240603136255413,
+ -2.493388938863075,
+ 1.5818857007650116,
+ -0.16003348057785985,
+ -1.3894592672111488,
+ 2.401872722027801,
+ -2.6376779309717473,
+ 1.457032590139624,
+ 3.058484977296745,
+ 0.7848182385583174,
+ 0.14332880123037778,
+ -1.4853106293536829,
+ 2.4496213966148215,
+ -2.606620959700105,
+ 1.2809683879555596,
+ 2.562515239123644,
+ 0.8800059930277192,
+ 0.21895047314067648,
+ -1.6364112120141838,
+ 2.516337533648492,
+ -2.5811635734019287,
+ 1.7462217054844844,
+ -0.36974553196538024,
+ -1.1284959783243904,
+ 1.431845973296652,
+ 2.201788981867263,
+ -2.6321820581018063,
+ -1.6193705814890706,
+ 1.6589146767916474,
+ -0.18412373964214465,
+ -1.2947046998505451,
+ 1.4998957738163678,
+ 2.5486539905682,
+ -2.7372542140299614,
+ -1.577041367637162,
+ 1.5089204588605545,
+ -0.0681331350359145,
+ -1.3928253280094112,
+ 2.439924861907182,
+ -2.6242816288191877,
+ 1.9587602705412495,
+ -2.13844705772738,
+ -2.224539906320491,
+ -2.566730177007887,
+ -2.5928050350623395,
+ -3.39633676015127,
+ -3.3460874626820423,
+ 2.418286020050579,
+ -2.632269267762412,
+ 1.9944004533408617,
+ -0.6268659615966495,
+ -0.8840756341142029,
+ 2.1106310947019478,
+ -1.7284329332714188,
+ -3.1780846700513785,
+ 1.7736608879464375,
+ 1.1539818634452277,
+ -0.5157656948585303,
+ -0.9927638635173103,
+ 2.2191069662974527,
+ -1.7296171316152544,
+ -2.9773805808511455,
+ 1.4458019226845495,
+ 1.0623062663472678,
+ -0.33146004345070934,
+ -1.163350451634626,
+ 2.27969297337266,
+ -2.6547779356217127,
+ 2.127600333985363,
+ -0.9106260780956545,
+ -0.3207387191113792,
+ -0.06139884094424747,
+ 2.9460852573794485,
+ 1.5776061789165308,
+ -2.6448418049359943,
+ 2.010440891702286,
+ -0.7331065767788623,
+ -0.4238925571259076,
+ -0.29740901764245714,
+ 3.4209007554560635,
+ 1.7245183901092231,
+ -2.6176986842489454,
+ 1.9324241924938292,
+ -0.6230280006841191,
+ -0.9702768592703719,
+ 2.1639797444282594,
+ -2.658462404446336,
+ 3.8021646399331663,
+ 4.686747867586458,
+ 4.240802698892143,
+ 3.4001117223884014,
+ -1.4575375836229116,
+ 0.006951090194726127,
+ 1.4437969306107374,
+ -2.4625521832253434,
+ 2.6122401613611514,
+ -1.9160126180736892,
+ 0.5229162377094622,
+ 1.480415955280324,
+ 2.6392718256768846,
+ 1.192530551942466,
+ -2.5034326510074574,
+ 2.5880410829759004,
+ -1.7820157692298015,
+ 0.34154224717027704,
+ 1.0866871867927823,
+ 2.436299469363714,
+ 1.1934291109228374,
+ -2.5602033955875485,
+ 2.5385556594992753,
+ -1.6958493341665881,
+ 0.2174146126485058,
+ 1.2625249767315423,
+ -2.3356373807189734,
+ 1.7296846202137994,
+ 3.020708855098131,
+ -1.2100482000794492,
+ -0.9407694597136358,
+ 0.10389584426950305,
+ 1.4235666955594852,
+ -2.419156305241963,
+ 1.7327022605513376,
+ 3.3041505778879947,
+ -1.1009995230555836,
+ -0.83153615515013,
+ -0.08269679632895734,
+ 1.520171963562185,
+ -2.4640475585837067,
+ 2.5933353899114295,
+ -1.8527118908509703,
+ 0.5108760960482774,
+ 0.799464333226886,
+ 0.6692567496882197,
+ -1.7769587525272978,
+ -1.8957644158567524,
+ -4.669710853628429,
+ -4.7028212538798115,
+ 2.606965545189646,
+ -1.893726581392935,
+ 0.5687962872989262,
+ 1.0216096361519267,
+ -2.195699143376352,
+ 2.6600945756862933,
+ -1.5237502568267305,
+ -3.113304989858659,
+ -0.22055691320090076,
+ 0.16009347099886564,
+ 1.1257912907546832,
+ -2.2592559006537964,
+ 2.657877322138125,
+ -1.4456877763512692,
+ -2.786681168939065,
+ -0.41808415456671194,
+ 0.049363120014309224,
+ 1.2920203456420507,
+ -2.35215113139087,
+ 2.6498635035893763,
+ -2.0356474099106996,
+ 0.7727504022880713,
+ 0.7420768716375162,
+ -1.2638964333101994,
+ -1.8492382924101398,
+ 2.837936061694039,
+ 1.6946710590719145,
+ -1.960680122949188,
+ 0.5924055618950146,
+ 0.9194223466100127,
+ -1.3903081357987992,
+ -2.2877213018376663,
+ 3.1362022657089392,
+ 1.7436006887287439,
+ -1.8296965278978126,
+ 0.4786841784998496,
+ 1.025258959407005,
+ -2.2462816844824203,
+ 2.6605433035840327,
+ -2.2136750268553853,
+ 2.671277987435148,
+ 3.3863000380909383,
+ -1.3814743410248113e-15,
+ -1.5798322519150274e-15,
+ -3.0159005133683384e-16,
+ -9.446402595355575e-17,
+ 1.3348627135074484e-16,
+ 1.464109684218859e-16,
+ 3.30872245021211e-16,
+ 1.6659417536817975e-16,
+ 4.1177050892889713e-16,
+ -3.970466940254532e-17,
+ -1.3805644423510032e-16,
+ -5.517294685728695e-16,
+ -5.881254155252027e-17,
+ -2.2420730503249815e-16,
+ 1.5716431638507524e-18,
+ 2.6527682244575598e-16,
+ 5.638269850314575e-17,
+ 1.3314505934806672e-16,
+ 1.860329197631759e-16,
+ -1.2391165576044355e-16,
+ -3.0936554909483235e-17,
+ 1.2035477912646553e-16,
+ 7.287461196592174e-17,
+ 4.218621124020441e-18,
+ -2.1618365309073376e-16,
+ 2.0564744003833957e-16,
+ 6.29484446152854e-17,
+ 2.638706154044158e-17,
+ -2.689991352022446e-16,
+ -2.3210687988237957e-16,
+ -8.271806125530276e-17,
+ -8.164272645898382e-17,
+ -1.747625839171409e-16,
+ -9.363684534100272e-17,
+ 1.2800619979258103e-16,
+ 4.627248346621637e-16,
+ -2.7090165061111653e-18,
+ -2.192028623265523e-17,
+ 1.5972857628398962e-16,
+ -4.1243225341893955e-16,
+ -2.2052635130663715e-16,
+ -1.2215389695876836e-16,
+ -3.796138626158982e-16,
+ -5.252596889711725e-18,
+ 1.0463834748795799e-16,
+ 6.675347543302933e-17,
+ 3.6065074707312007e-17,
+ 3.936552535139858e-16,
+ -1.8776999904953726e-16,
+ -3.676817822798208e-17,
+ 8.751570880811032e-17,
+ -7.204743135336871e-17,
+ -9.445368619589884e-17,
+ 1.9413928976619557e-16,
+ 1.9149231180602588e-16,
+ 5.091296670263885e-17,
+ 1.3350695086605867e-16,
+ 3.538265070195576e-17,
+ -3.2177325828312777e-17,
+ 9.173432993213076e-17,
+ -2.2805369488086973e-16,
+ 2.4980854499101433e-17,
+ -2.10103875588469e-16,
+ 1.4517019750305636e-16,
+ 1.7461782730994412e-16,
+ 4.5350177083219736e-17,
+ 3.5841735941922684e-16,
+ -7.459876655521196e-17,
+ 1.742042370036676e-16,
+ 1.2746853239442156e-16,
+ 1.182454685644553e-16,
+ 4.0035541647566533e-17,
+ 6.092185211453049e-17,
+ 9.078307222769477e-17,
+ 2.75120271735137e-16,
+ 1.7246715771730625e-16,
+ -4.264116057710857e-17,
+ 3.192917164454687e-17,
+ -9.549800171924703e-17,
+ 1.7614811144316722e-16,
+ -3.6065074707312007e-17,
+ 3.391440511467413e-18,
+ 4.140038965827903e-17,
+ -1.4144788474656773e-16,
+ 1.3830459841886623e-16,
+ 3.124674763919062e-17,
+ 1.8597088121723442e-16,
+ 1.241184509135818e-16,
+ 2.954689148039415e-16,
+ -3.3335378685887015e-17,
+ 9.012132773765235e-17,
+ -6.118241400748468e-16,
+ -2.445973071319303e-16,
+ 1.3929721515392986e-16,
+ 1.663873802150415e-16,
+ 4.2517083485225616e-17,
+ 8.358660089848343e-17,
+ 1.3028094647710186e-16,
+ -1.0902240473448904e-16,
+ 1.4608009617686469e-16,
+ -1.152676183592644e-16,
+ -1.2184370422906098e-16,
+ -9.429858983104514e-17,
+ 1.5501364679243736e-16,
+ 5.57002744977895e-17,
+ -1.2238137162722044e-16,
+ 3.1846453583291565e-17,
+ -9.024540482953531e-17,
+ 5.922613185879678e-17,
+ -9.331631285363842e-17,
+ -3.639594695233322e-18,
+ -5.492479267352103e-17,
+ -7.924390268258004e-17,
+ -1.6791766434826462e-17,
+ -8.933550615572699e-18,
+ -4.2517083485225616e-17,
+ 1.9753073027766298e-16,
+ 9.148617574836485e-17,
+ -2.1738306497893565e-16,
+ -6.281402776574554e-17,
+ -4.863822001811802e-17,
+ 3.730584562614155e-17,
+ 9.895148077665592e-17,
+ 6.979336418416171e-17,
+ 5.107840282514945e-17,
+ -5.293955920339376e-18,
+ 1.654361225106055e-19,
+ -8.672988722618494e-17,
+ 1.6262370842792522e-16,
+ 1.6312001679545703e-16,
+ 1.222572945353375e-16,
+ 1.3971080546020637e-16,
+ 3.31347873873429e-16,
+ 2.9778502051908992e-18,
+ 2.3014232592756612e-16,
+ 6.290708558465775e-17,
+ -3.647866501358852e-17,
+ 8.776386299187622e-17,
+ -2.5104931590984387e-17,
+ -4.090408129074721e-17,
+ -1.3731198168380258e-17,
+ -1.9918509150276904e-16,
+ -8.375203702099405e-18,
+ 3.0924147200294935e-16,
+ -2.5406852514566245e-16,
+ 5.459392042849982e-18,
+ -1.0403864154385704e-16,
+ -1.8702553649823953e-16,
+ 1.3230753897785678e-16,
+ 8.69366823793232e-17,
+ 3.1432863277015048e-18,
+ -3.3136855338874284e-16,
+ -7.18819952308581e-17,
+ 1.6192060490725517e-17,
+ 1.493888186270768e-16,
+ -7.345363839470886e-17,
+ 5.420100963753713e-17,
+ 9.979934090452278e-17,
+ 2.397169415178674e-16,
+ 4.0035541647566533e-17,
+ 1.0257039595657542e-17,
+ 8.337980574534518e-17,
+ -1.2573145310806019e-17,
+ 7.16338410470922e-17,
+ -1.0463834748795799e-16,
+ -2.225115847767644e-17,
+ 8.836356893597717e-17,
+ -6.079777502264753e-17,
+ 1.493888186270768e-16,
+ -7.47771273747937e-17,
+ 8.929414712509933e-17,
+ -2.1060018395600082e-16,
+ 3.594099761542905e-17,
+ -2.7131524091739305e-17,
+ 2.005912985441092e-18,
+ -3.008869478161638e-17,
+ 1.6502253220432902e-17,
+ -4.164854384204494e-17,
+ 8.258984826035704e-16,
+ 1.5184968094942203e-16
+ ],
+ [
+ -5.1586026079407965,
+ -4.192534573937667,
+ 2.8755397012109607,
+ -2.2931591129005717,
+ 0.8919210725743292,
+ 0.8123408595199173,
+ -2.2401026828646216,
+ 2.8661813787177186,
+ -1.8482634268064946,
+ -3.698714722746944,
+ 0.11966123738983622,
+ 0.3579522925419355,
+ 0.9318004613647493,
+ -2.3193028143914116,
+ 2.8858405896656656,
+ -1.6808243658739404,
+ -3.1715921287571174,
+ -0.11326001083284343,
+ 0.24961012827111784,
+ 1.121343184400044,
+ -2.4396159643116366,
+ 2.88904281414289,
+ -2.4299135942998658,
+ 1.1077618048343743,
+ 0.49704888902962774,
+ -1.24119839805335,
+ -1.7379043865150183,
+ 3.21342201211628,
+ 1.884089857862378,
+ -2.3571036946293367,
+ 0.9179008846064565,
+ 0.6975283353208286,
+ -1.337640953688188,
+ -2.1027083983150106,
+ 3.416131091845495,
+ 1.874877500884256,
+ -2.230563520095267,
+ 0.7958353172775398,
+ 0.8164856110977955,
+ -2.3037688395205667,
+ 2.8768226608692,
+ -2.596782179058692,
+ 3.4538431471994984,
+ 3.516059924464046,
+ 2.851105888020215,
+ 2.8324039970838504,
+ 2.6756252758965697,
+ 2.58768223040265,
+ -2.2671962722187353,
+ 2.871097183759928,
+ -2.623314260401383,
+ 1.3658849341382266,
+ 0.21058202151409253,
+ -1.7989906038818835,
+ 1.7662893056175017,
+ 3.099956347200802,
+ -2.658564482411466,
+ -1.58575041265003,
+ 1.256241895107741,
+ 0.3378831257747923,
+ -1.9553100464529716,
+ 1.8050131739194515,
+ 2.9658335079497546,
+ -2.280139766775955,
+ -1.5062552043519484,
+ 1.0687416312038294,
+ 0.5385333626650957,
+ -2.047283911768468,
+ 2.836240834054251,
+ -2.7184354501313157,
+ 1.6419278653206082,
+ -0.13749354819623882,
+ -0.7884970866053127,
+ -2.896480999856091,
+ -1.4680577700027773,
+ 2.8584265979404773,
+ -2.634300477353806,
+ 1.4713321634001888,
+ -0.04890023121194515,
+ -0.6565819440423879,
+ -3.4387744640412645,
+ -1.6564055966360043,
+ 2.8805115396447856,
+ -2.5768085939634364,
+ 1.3620756636267328,
+ 0.31075245062630874,
+ -1.8756453159646516,
+ 2.757136678927403,
+ -4.208234883574123,
+ -5.142979047077223,
+ -3.8944635586157466,
+ -3.082644172482248,
+ 2.4840107330046317,
+ -0.7742450426738858,
+ -0.920986714256883,
+ 2.2998095357833286,
+ -2.9222920837046753,
+ 2.5210251714700704,
+ -1.0425336395978133,
+ -2.4470191706300857,
+ -2.154414907361135,
+ -0.8735085177006642,
+ 2.3737068057505835,
+ -2.9276057310492174,
+ 2.4167429591133733,
+ -0.8367039740199974,
+ -1.946380757291981,
+ -2.0623075668663873,
+ -0.9098882270389961,
+ 2.4826113543907753,
+ -2.9266807122471254,
+ 2.3455408634042376,
+ -0.9941398954459869,
+ -0.699341664653348,
+ 2.0906266454941362,
+ -1.8459380504545129,
+ -3.0824004985065723,
+ 2.062665813426436,
+ 1.401632720661648,
+ -0.8752104660669867,
+ -0.8950201353674619,
+ 2.226614052747929,
+ -1.8801619144917008,
+ -3.4379640753730323,
+ 2.038696498636426,
+ 1.3078068582459057,
+ -0.6791219409789828,
+ -1.0160884689933218,
+ 2.302417972275861,
+ -2.92750442368653,
+ 2.4718910957670386,
+ -1.2930638378597463,
+ 0.47195216803647866,
+ 0.6006804162803433,
+ 2.422295460568295,
+ 2.516846969626054,
+ 4.761039310248143,
+ 4.758440758999906,
+ -2.926720233456967,
+ 2.5047241832650875,
+ -1.3507532601365657,
+ -0.41325947452452816,
+ 1.8794697831571419,
+ -2.816881107907409,
+ 1.8477336899456802,
+ 3.6076542618672427,
+ -0.6922749396173251,
+ -0.6552429848032608,
+ -0.5353025259361263,
+ 1.9748299115156525,
+ -2.865897591781941,
+ 1.7956275393120065,
+ 3.2921080496223207,
+ -0.40352882917169985,
+ -0.5370610009420892,
+ -0.735789638228878,
+ 2.1174587765719752,
+ -2.890161612834669,
+ 2.611193538125515,
+ -1.551558380944036,
+ -0.09008890168581433,
+ 1.0048673581118635,
+ 1.2768202817410976,
+ -3.3118674560158263,
+ -1.8915340623190358,
+ 2.556839211435276,
+ -1.3733759801561658,
+ -0.2929958723702889,
+ 1.1390792355340424,
+ 1.6845928292995611,
+ -3.738295026847582,
+ -1.994220421837394,
+ 2.454650180771147,
+ -1.2605775662105703,
+ -0.4175397741952927,
+ 1.9545143056320897,
+ -2.842550255807851,
+ 2.7330707892351325,
+ -3.605390087415917,
+ -4.507334334866973,
+ 1.9860606507398194e-15,
+ 2.1407434252872356e-15,
+ 3.0619124349416006e-16,
+ 7.260060838801355e-17,
+ -1.508105353049023e-16,
+ -2.7578201622517943e-16,
+ -3.398057956367837e-16,
+ -5.480071558163808e-17,
+ -3.271499322647224e-16,
+ 4.632211430296955e-18,
+ 1.9107872149974937e-16,
+ 5.810116622572466e-16,
+ 5.790264287871194e-19,
+ 1.9256764660234482e-16,
+ -4.326154603652334e-17,
+ -3.6726819197354424e-16,
+ -3.494838088036542e-18,
+ -7.138568686332629e-17,
+ -1.559235454662457e-16,
+ 1.2043749718772083e-16,
+ 8.416562732727055e-17,
+ -6.989676176073084e-17,
+ -9.992341799640573e-17,
+ -4.0190638012420226e-17,
+ 1.3350695086605867e-16,
+ -2.8289576949313546e-16,
+ -6.325863734499279e-17,
+ -1.4889251025954498e-17,
+ 3.1027544776864063e-16,
+ 1.2035477912646553e-16,
+ 1.3210074382471852e-16,
+ 1.3516131209116472e-16,
+ -2.357464745776129e-16,
+ 4.3933630284222676e-17,
+ -2.0935941303717128e-16,
+ -4.859686098749038e-16,
+ 4.971355481443696e-17,
+ 9.388499952476863e-17,
+ -8.139457227521791e-17,
+ 3.8521801126594494e-16,
+ 4.4398919378783756e-16,
+ -1.0364573075289436e-16,
+ 5.598358385758891e-16,
+ -7.064122431202856e-17,
+ -2.418404692466559e-16,
+ 2.2540671692070004e-18,
+ -1.0869153248946782e-16,
+ -3.279564333619616e-16,
+ 2.9083670337364453e-16,
+ 9.266490812125291e-17,
+ -2.3706996355769773e-16,
+ -7.444625512977248e-19,
+ 1.1624989533667113e-16,
+ -1.9728257609389708e-16,
+ -1.3532674821367533e-16,
+ -6.443736971788086e-17,
+ -1.725085167479339e-16,
+ -3.3087224502121103e-18,
+ 6.724978380056115e-17,
+ -1.163015941249557e-16,
+ 3.9820474688302747e-16,
+ -2.99439381744196e-17,
+ 2.9778502051908996e-16,
+ -1.9877150119649253e-16,
+ -2.7412765500007337e-16,
+ -2.5146290621612038e-17,
+ -3.8480442095966843e-16,
+ 8.402087072007377e-17,
+ -1.2308447514789052e-16,
+ -1.738733647586464e-16,
+ -1.952146245625145e-17,
+ 4.1855338995183194e-17,
+ -2.4815418376590826e-18,
+ -2.0621612670946977e-16,
+ -3.3451183971644434e-16,
+ -3.534542757439087e-16,
+ 7.254373972090053e-17,
+ 4.408872664907637e-17,
+ 8.213903482651564e-17,
+ -1.4281273275728023e-16,
+ 5.136791603954301e-17,
+ 1.0314942238536254e-16,
+ -6.758065604558236e-17,
+ 5.4097612060968004e-17,
+ -1.4856163801452377e-16,
+ 1.7453510924868884e-17,
+ -1.6014216659026613e-16,
+ -1.1907264917700833e-16,
+ -5.61862431076644e-17,
+ 1.3392054117233518e-16,
+ 5.368402175469149e-17,
+ 4.713275130327152e-16,
+ 2.1609059527182154e-16,
+ -2.934836813338142e-16,
+ -2.244968182468917e-16,
+ -6.083913405327519e-17,
+ -2.5311726744122644e-17,
+ -6.629852609612517e-17,
+ 8.486873084794063e-17,
+ -2.1945101651031822e-16,
+ 1.9873014216586487e-16,
+ 8.271806125530276e-20,
+ 3.3335378685887015e-17,
+ -7.394994676224067e-17,
+ 8.300757446969631e-17,
+ 1.5848780536516008e-16,
+ -4.178554563099903e-17,
+ 1.121243320315629e-16,
+ 2.216844041642114e-17,
+ 1.2763396851693217e-16,
+ -1.6005944852901086e-17,
+ 8.416562732727055e-17,
+ 8.867376166568455e-17,
+ -8.065010972392019e-17,
+ 2.816549985743059e-17,
+ 8.428970441915351e-17,
+ -1.9901965538025843e-16,
+ -1.0108147085397997e-16,
+ 2.74293091122584e-16,
+ 7.080666043453917e-17,
+ 8.635765595053608e-17,
+ -7.369145282081785e-17,
+ 8.685396431806789e-17,
+ -6.236941818649829e-17,
+ -1.761894704737949e-17,
+ 1.852884572118782e-17,
+ -2.254067169207e-17,
+ 1.401243957664829e-16,
+ -1.192794443301466e-16,
+ -1.6361632516298885e-16,
+ -1.588186776101813e-17,
+ -1.3942129224581281e-16,
+ -9.89308012613421e-17,
+ -1.7370792863613579e-16,
+ -2.072914615057887e-16,
+ -3.101927297073854e-17,
+ 2.134125980386811e-17,
+ 4.268251960773622e-17,
+ 7.101345558767743e-17,
+ 7.982292911136716e-17,
+ 6.460280584039146e-17,
+ 2.9414542582385664e-16,
+ -3.90429249125029e-17,
+ -3.4224597844381515e-16,
+ 2.5751166444541443e-16,
+ -6.452008777913615e-18,
+ 7.680371987554861e-17,
+ 8.437242248040881e-17,
+ -2.000329516306359e-16,
+ -6.906958114817781e-17,
+ 1.0124690697649058e-16,
+ 5.045801736573469e-16,
+ 1.1423364259357312e-16,
+ -2.2912902967718864e-17,
+ 6.61744490042422e-19,
+ 4.7314731038033177e-17,
+ -4.748016716054378e-17,
+ -2.098557214047031e-16,
+ -1.769339330250926e-16,
+ 4.168990287267259e-17,
+ -9.926167350636332e-19,
+ -2.1721762885642504e-16,
+ 9.694556779121483e-17,
+ -1.0066788054770346e-16,
+ -8.768114493062092e-17,
+ 2.9406270776260134e-17,
+ -1.9008610476468574e-16,
+ 3.3076884744464194e-17,
+ -3.182060418914928e-16,
+ 8.081554584643079e-17,
+ -2.2799165633492822e-17,
+ 1.196103165751678e-16,
+ -4.9155207900963663e-17,
+ 4.963083675318165e-18,
+ -8.768114493062093e-18,
+ -1.122070500928182e-16,
+ -7.775497757998459e-17,
+ -1.2242273065784808e-17,
+ -1.1739347253352569e-15,
+ 7.899574849881414e-18
+ ],
+ [
+ 4.082075317412974,
+ 3.2415388771711973,
+ -2.6071967953670563,
+ 2.8766241429267194,
+ -2.2933228195913826,
+ 0.798630270081957,
+ 0.8145122045206387,
+ -2.244286832651092,
+ 1.961552592305009,
+ 3.5932333371944707,
+ -2.1732670357654205,
+ -1.3702931597479675,
+ 0.6793987245716162,
+ 0.9363698249729818,
+ -2.36985498316201,
+ 1.8864342157771483,
+ 3.2210462424691038,
+ -1.720253924301643,
+ -1.232538511955434,
+ 0.4785192751093859,
+ 1.1258644695396767,
+ -2.442039334921349,
+ 2.890356541731717,
+ -2.4304596964777163,
+ 1.1043879294132428,
+ 0.26203119547326265,
+ -0.09151521874429315,
+ -3.1801052843949877,
+ -1.6874892669212986,
+ 2.886347384713886,
+ -2.3089823986243974,
+ 0.9142544758211953,
+ 0.3829681725286984,
+ 0.1576952662298374,
+ -3.5226351001686256,
+ -1.7593397243569604,
+ 2.86535856634092,
+ -2.2290761329269286,
+ 0.7944725887775872,
+ 0.9104061378642693,
+ -2.3064224063032097,
+ 2.878971500982292,
+ -5.025611860339259,
+ -5.005470467823807,
+ -2.28314886942936,
+ -2.1682950251857322,
+ 0.1559872563325189,
+ 0.2937389074325476,
+ 0.8548581579221741,
+ -2.271240614013498,
+ 2.8728443150780296,
+ -2.579454419192699,
+ 1.3650274848328883,
+ 0.21493992189888222,
+ -1.092485976533895,
+ -1.5808889932719024,
+ 3.5713765154711994,
+ 1.9066610161650417,
+ -2.5168532276623505,
+ 1.2529557252753287,
+ 0.4188144606420101,
+ -1.2018722623750488,
+ -1.6595906255717685,
+ 3.238468525864364,
+ 1.8897937204093267,
+ -2.406438276830462,
+ 1.0652466794742028,
+ 0.5405277545469575,
+ -2.1177830431773357,
+ 2.8381687074613375,
+ -2.71845166820957,
+ 1.144714075013687,
+ 2.4264901253418425,
+ 1.5315130056579398,
+ 0.5797954273575658,
+ -2.201500404045735,
+ 2.8708666552843676,
+ -2.633941237760639,
+ 1.1282337683718426,
+ 2.593768061524069,
+ 1.9968869973465033,
+ 0.7833238018311732,
+ -2.3322911722310087,
+ 2.882332866027618,
+ -2.577375368821834,
+ 1.2756743698853423,
+ 0.31261271230043036,
+ -1.8800808363791726,
+ 3.3379813284162108,
+ 3.9861673650346985,
+ 1.4082455840375168,
+ 1.0138756878790371,
+ -1.3161473857570933,
+ 2.4872761828509957,
+ -0.7757785737585265,
+ -1.0116950273634844,
+ 2.3006297327455263,
+ -2.9243467438129596,
+ 1.8021871917496728,
+ 3.641115491513601,
+ 0.09659576962255799,
+ -0.2457975961442991,
+ -1.1269142305397504,
+ 2.3759569807133425,
+ -2.930556808360354,
+ 1.6282365771556586,
+ 3.1076385477965585,
+ 0.3022496857616107,
+ -0.14253574610222505,
+ -1.3138005706555143,
+ 2.4847807514401303,
+ -2.9285594023493933,
+ 2.290414366827891,
+ -0.9958996551769126,
+ -0.7012452160477174,
+ 1.320245531306038,
+ 1.896339096439148,
+ -3.15735684208787,
+ -1.8696676679488766,
+ 2.2138324536750678,
+ -0.8003772893466957,
+ -0.8970491060690822,
+ 1.4123517735340885,
+ 2.266420532295657,
+ -3.341746779803407,
+ -1.8521816836418958,
+ 2.076594912775889,
+ -0.6782303441218929,
+ -1.0157532071972728,
+ 2.359808815612594,
+ -2.9295049772533344,
+ 2.4726728085466623,
+ -3.225417833934285,
+ -3.2950630490923722,
+ -2.8497673360384264,
+ -2.8394467926744618,
+ -2.919773984327587,
+ -2.8398627596670445,
+ 2.3266307067920984,
+ -2.929147431529825,
+ 2.505379231747937,
+ -1.2635974852009575,
+ -0.4155305246031584,
+ 1.88406962986324,
+ -1.8047636711736812,
+ -3.2020650257086736,
+ 2.5181992929518615,
+ 1.5250271396983188,
+ -1.1489839634638523,
+ -0.5401320914329611,
+ 2.034808108866179,
+ -1.8355369115328304,
+ -3.0483995437171227,
+ 2.141682875966924,
+ 1.4404693187369333,
+ -0.9588722713550314,
+ -0.7406427229932409,
+ 2.120075969493422,
+ -2.9070410384914482,
+ 2.6121171015227276,
+ -1.5489170017601925,
+ 0.031447278824916866,
+ 0.6061721672747036,
+ 2.986265438877355,
+ 1.5337888182772295,
+ -2.9204549901721024,
+ 2.519487994715781,
+ -1.3704135280704588,
+ -0.06301486246912721,
+ 0.4457853606943184,
+ 3.526979874378121,
+ 1.717278653919578,
+ -2.9330155996574474,
+ 2.45387123616329,
+ -1.2596958533731952,
+ -0.5150013569569841,
+ 1.957162785626623,
+ -2.8456245053924323,
+ 4.224197017468964,
+ 5.172051813460624,
+ -7.922735907032898e-16,
+ -7.160075382259007e-16,
+ -9.024540482953531e-17,
+ 1.0769891575440419e-16,
+ -3.676817822798208e-17,
+ 7.924390268258004e-17,
+ 2.47120208000217e-16,
+ -6.518183226917858e-17,
+ -1.2490427249550718e-16,
+ 5.128519797828771e-17,
+ 5.012714512071347e-17,
+ -3.6098161931814123e-16,
+ 5.839895124624375e-17,
+ -2.2565487110446595e-16,
+ -9.276830569782204e-17,
+ 8.503416697045123e-17,
+ -6.15823041348658e-17,
+ 1.0353716329749677e-16,
+ 2.783462761240938e-16,
+ -3.805030817743927e-18,
+ 3.498973991099307e-17,
+ 1.8504030302811227e-16,
+ 1.2566941456211873e-16,
+ 1.2018934300395492e-16,
+ -1.25400580863039e-16,
+ -6.021874859386041e-17,
+ -2.067951531382569e-18,
+ 8.395883217413231e-18,
+ 6.220398206398768e-17,
+ 1.5153948821971465e-16,
+ 2.1423977865123414e-16,
+ -1.266827108124962e-16,
+ 1.4051730655744558e-16,
+ 2.187892720202758e-16,
+ 2.2151896804170079e-16,
+ -9.429858983104514e-17,
+ 3.697497338112034e-17,
+ 1.4475660719677984e-17,
+ -4.24240256663134e-17,
+ -2.1268881500269722e-16,
+ -1.8894873142242532e-16,
+ 1.6055575689654265e-16,
+ -3.964676675966661e-16,
+ 2.0578185688787944e-16,
+ 1.6475369850524926e-16,
+ -1.89817271065606e-16,
+ 1.519117194953635e-16,
+ 4.0052085259817595e-16,
+ -3.4112928461686856e-16,
+ -7.124093025612951e-17,
+ 3.0423702929700353e-16,
+ 3.69439541081496e-17,
+ -7.891303043755883e-17,
+ 2.5146290621612038e-17,
+ -2.0315555844302357e-16,
+ 1.2573145310806019e-17,
+ 7.006219788324144e-17,
+ 2.448454613156962e-16,
+ -3.523789409475898e-17,
+ 1.350579145145956e-16,
+ -2.8876875184226196e-16,
+ 8.437242248040881e-17,
+ -2.3458842172003865e-16,
+ 1.258141711693155e-16,
+ 1.4639028890657207e-16,
+ 1.205822537949176e-16,
+ -6.319659879905131e-17,
+ -1.0918784085699964e-16,
+ -8.933550615572698e-17,
+ 9.520848850485347e-17,
+ 4.863822001811802e-17,
+ -1.312011849085671e-16,
+ -1.8611563782443123e-17,
+ 2.1386754737558528e-16,
+ 2.395515053953568e-16,
+ 2.772089027818334e-16,
+ -2.0811864211834174e-16,
+ -1.407861402565253e-16,
+ 6.394106135034904e-17,
+ 8.83015303900357e-18,
+ 1.2407709188295414e-17,
+ -2.2036091518412655e-16,
+ 8.553047533798305e-17,
+ 1.3019822841584656e-16,
+ 2.961306592939839e-17,
+ -3.135014521575975e-17,
+ 7.79204137024952e-17,
+ 5.302227726464907e-17,
+ -1.9728257609389708e-16,
+ -3.970466940254533e-18,
+ 1.197757526976784e-16,
+ -1.0012194134341847e-15,
+ -2.3691486719284404e-16,
+ 1.0059550224410507e-16,
+ 6.054962083888163e-17,
+ 5.781992481745663e-17,
+ 4.284795573024683e-17,
+ 9.988205896577808e-17,
+ -1.2635183856747496e-17,
+ 8.627493788928077e-17,
+ -1.5513772388432032e-16,
+ 2.5220736876741814e-16,
+ 1.496369728108427e-16,
+ 8.511688503170654e-17,
+ 8.048467360140958e-17,
+ -4.450231695535288e-17,
+ -3.432799542095065e-17,
+ 4.524677950665061e-17,
+ 3.296521536176953e-16,
+ -3.6127113253253484e-17,
+ 1.312735632121655e-16,
+ -9.897216029196975e-17,
+ -1.5832236924264947e-16,
+ 1.3106676805902724e-16,
+ -1.6758679210324338e-16,
+ -6.791152829060357e-17,
+ 8.569591146049365e-17,
+ 1.0860881442821252e-16,
+ -5.5379742010425197e-17,
+ -2.781394809709555e-18,
+ -2.6469779601696883e-17,
+ 6.518183226917858e-17,
+ -1.2349806545416703e-16,
+ 1.3363102795794162e-16,
+ -1.3110812708965489e-16,
+ -1.282129949457193e-16,
+ -8.788794008375918e-17,
+ -2.2557215304321065e-16,
+ -1.1787323728880643e-17,
+ 7.80858498250058e-17,
+ -1.0091603473146936e-16,
+ 3.2756352257099896e-17,
+ 1.7453510924868881e-16,
+ 2.294599019222099e-16,
+ 2.3822801641527194e-17,
+ -2.101865936497243e-16,
+ 7.601789829362323e-17,
+ -6.73738608924441e-17,
+ 2.1374347028370233e-16,
+ -1.108422020821057e-16,
+ 7.841672207002701e-17,
+ -3.0076287072428086e-16,
+ 6.410649747285964e-17,
+ 1.2076836943274204e-16,
+ 2.686682629572234e-16,
+ -2.6035509780106543e-17,
+ -2.3905519702782497e-17,
+ 1.3325879668229276e-16,
+ 1.197757526976784e-16,
+ 6.232805915587064e-17,
+ -1.8164886251664485e-16,
+ -4.106124560713229e-16,
+ -4.119359450514077e-17,
+ -6.27002904315195e-17,
+ -4.1780892740053423e-16,
+ -8.97490964620035e-18,
+ -9.694556779121483e-17,
+ -1.468245587281624e-16,
+ -9.098986738083304e-18,
+ -1.0008885411891634e-16,
+ 1.3193530770220791e-16,
+ 2.8190315275807183e-16,
+ -3.321130159400406e-17,
+ 9.400907661665158e-17,
+ 3.992800816793464e-16,
+ -1.1311694876662652e-17,
+ 1.7145386146692879e-16,
+ -1.621274000603934e-16,
+ 4.111087644388547e-16,
+ -7.543887186483611e-17,
+ 3.556876633978019e-17,
+ 1.922367743573236e-16,
+ 1.887626157846009e-16,
+ 9.964424453966908e-17,
+ -3.5589445855094016e-17,
+ 7.634877053864444e-17,
+ 3.813302623869457e-17,
+ 6.56781406367104e-17,
+ 8.337980574534518e-17,
+ 6.332894769705979e-16
+ ],
+ [
+ -1.6783343896443499,
+ -1.2371915730946281,
+ 1.4108146104613108,
+ -2.5937474193596683,
+ 2.8585109250228475,
+ -2.2157622776107258,
+ 0.7904580118629938,
+ 0.8152388971381948,
+ -1.432949555254489,
+ -2.3139844736502924,
+ 3.503234280575729,
+ 1.9281941673383074,
+ -2.132315351009643,
+ 0.6694595601521758,
+ 1.0084034266888713,
+ -1.4740962789048777,
+ -2.2173430455880365,
+ 2.979615354335658,
+ 1.806235546396437,
+ -1.9892452882169487,
+ 0.46974989081947566,
+ 1.1221095554394247,
+ -2.4806197728853205,
+ 2.872486721924446,
+ -2.4120947664351,
+ 0.7964687495504945,
+ 1.8792126468947798,
+ 2.1074871217920292,
+ 0.9405491325281219,
+ -2.5428475254569705,
+ 2.8620892151665442,
+ -2.2909898210800232,
+ 0.6907345796635339,
+ 1.8263222857678536,
+ 2.476951528706957,
+ 1.0694450379808764,
+ -2.6369895088187607,
+ 2.8467744479740142,
+ -2.212966931588827,
+ 0.6939933209148893,
+ 0.9080941174958302,
+ -2.2958186231706352,
+ 4.944433895777944,
+ 4.84899034765545,
+ 0.9725039949795758,
+ 0.7996609724425637,
+ -2.9184519487018203,
+ -3.0606675386031696,
+ 0.7502398915426358,
+ 0.8551586377596624,
+ -2.2592596594960286,
+ 2.8644498402234615,
+ -2.5619825723599337,
+ 1.3515965776400738,
+ 0.06589699070704953,
+ -0.4451717541206767,
+ -3.3108991948328876,
+ -1.6022570452511435,
+ 2.8724831034150973,
+ -2.498269164794017,
+ 1.1705213711677525,
+ 0.20974264168769602,
+ -0.1807340189068914,
+ -3.1320628791193066,
+ -1.6531389603211224,
+ 2.871336611776743,
+ -2.3881881504695786,
+ 1.0556267927079988,
+ 0.6341303261561506,
+ -2.1070904488873037,
+ 2.8218687602482184,
+ -1.7712783227652609,
+ -3.260790116213264,
+ 0.32523603014449515,
+ 0.49225676097422016,
+ 0.755046229100741,
+ -2.241749844653219,
+ 2.853916315064369,
+ -1.831828639086007,
+ -3.670653808833906,
+ 0.08837529311354568,
+ 0.3401635672459802,
+ 0.9476767512372208,
+ -2.3213858036275625,
+ 2.864772762819813,
+ -2.5124772539925,
+ 1.2648412560556923,
+ 0.3165675983074255,
+ -1.3823178972994525,
+ -1.5339793416847154,
+ 1.5221698205340557,
+ 1.3728980007163865,
+ -0.35197105059820005,
+ -1.3131862266851544,
+ 2.47374038654692,
+ -0.6764586824819002,
+ -1.008606212377775,
+ 2.2916358919437783,
+ -1.96790142732313,
+ -3.6374459689767544,
+ 1.9795886124650284,
+ 1.277578726538732,
+ -0.5544225801534405,
+ -1.1254757594229423,
+ 2.4090197533933075,
+ -1.882471979535521,
+ -3.245679420350869,
+ 1.5452923707112283,
+ 1.1416085900472694,
+ -0.3545423352849066,
+ -1.311206161597906,
+ 2.4730061871761575,
+ -2.9072728608092615,
+ 2.277049050638119,
+ -0.9860305660842869,
+ -0.3663836373607689,
+ -0.09806515552320348,
+ 3.212946648652172,
+ 1.7235498232252058,
+ -2.894378565136222,
+ 2.1490145668211156,
+ -0.7913881503530651,
+ -0.4858835158960085,
+ -0.36159171399379975,
+ 3.544074543747845,
+ 1.787621822187048,
+ -2.863879322014968,
+ 2.0623061424614257,
+ -0.672276417428852,
+ -1.1019791334711613,
+ 2.348923992825056,
+ -2.9144338384124016,
+ 4.908889028939925,
+ 4.897139763499143,
+ 2.370793342104896,
+ 2.2668140834705706,
+ 0.13611818781627524,
+ 0.0010635885046399824,
+ -1.0467049791722574,
+ 2.315710295580546,
+ -2.911220220447915,
+ 2.4390808539252733,
+ -1.2525458783941916,
+ -0.41896396587660156,
+ 1.172126169040062,
+ 1.7524073049121198,
+ -3.5092832342240006,
+ -1.8907407059857384,
+ 2.372734246018337,
+ -1.1362048089312653,
+ -0.6180940350607231,
+ 1.2751955424436638,
+ 1.8098118039496212,
+ -3.1686599062731475,
+ -1.8672434248097787,
+ 2.251664168913876,
+ -0.9471391209428637,
+ -0.739520601651338,
+ 2.1731936090274107,
+ -2.8897263056282285,
+ 2.593534856694782,
+ -1.0508566590302026,
+ -2.27898722153961,
+ -1.6866793767898662,
+ -0.6769916873388192,
+ 2.25298705806161,
+ -2.90894315643476,
+ 2.501027003708308,
+ -1.0267599707426291,
+ -2.416821579160974,
+ -2.164246976255268,
+ -0.8808018524884884,
+ 2.372032682234856,
+ -2.915052211105065,
+ 2.436816544213817,
+ -1.1612051198404387,
+ -0.5154301179062405,
+ 1.9497614815288347,
+ -3.4583334551598193,
+ -4.1420511872604715,
+ 4.377439801630622e-16,
+ 9.754113783225302e-16,
+ 2.0596797252570386e-17,
+ -2.6449100086383057e-17,
+ -3.709905047300329e-17,
+ -3.7719435932418056e-17,
+ -5.506954928071781e-17,
+ -1.348304398461435e-16,
+ 1.0339757656912845e-16,
+ -6.782881022934827e-17,
+ -2.2582030722697652e-17,
+ 2.751926500387354e-16,
+ -2.352088071794534e-16,
+ -4.0883401775433387e-17,
+ 3.9456515218779414e-17,
+ -1.0273583207908602e-16,
+ -1.0422475718168147e-17,
+ -8.768114493062093e-18,
+ -5.914341379754148e-17,
+ 1.5683344414005402e-16,
+ 3.163965843015331e-17,
+ -1.6584971281688205e-17,
+ -5.591740940858467e-17,
+ -6.520251178449241e-17,
+ -1.5054687148465104e-17,
+ 8.768114493062092e-17,
+ 6.61744490042422e-19,
+ 2.938559126094631e-17,
+ -6.095287138750122e-18,
+ -1.1580528575742387e-16,
+ -2.488159282559507e-16,
+ 1.373119816838026e-16,
+ -2.036518668105554e-16,
+ -1.9386011630945892e-16,
+ -2.4401828070314316e-16,
+ 2.0547166415817205e-16,
+ -4.681842267050136e-17,
+ 4.997592616498112e-17,
+ 1.7280836971998437e-16,
+ 1.154950930277165e-16,
+ 1.3309336055978215e-16,
+ -2.1804480946897807e-16,
+ 2.721424215299461e-16,
+ -9.462946207606635e-17,
+ -1.3625732640279748e-16,
+ 2.1270949451801104e-16,
+ -1.1830750711039678e-16,
+ 3.93158945146454e-16,
+ 2.067951531382569e-16,
+ 1.167151844312322e-16,
+ -3.239239278757656e-16,
+ -1.283784310682299e-16,
+ 1.3126322345450858e-16,
+ 2.0596797252570387e-16,
+ 1.1547441351240266e-16,
+ -3.048160557257907e-17,
+ 3.184645358329156e-18,
+ 3.6747498712668254e-17,
+ 6.352747104407253e-17,
+ -4.293067379150213e-17,
+ 3.12839707667555e-16,
+ 5.707546226615891e-17,
+ 8.99145325845141e-17,
+ -3.2673634195844593e-17,
+ -2.2027819712287125e-16,
+ -1.6771086919512634e-16,
+ 1.0852609636695722e-16,
+ -3.3449116020113057e-17,
+ 3.5777629444449825e-16,
+ 3.273567274178607e-17,
+ -2.803883782613341e-17,
+ 9.992341799640573e-17,
+ 7.527343574232552e-18,
+ -2.0836679630210765e-16,
+ -2.986949191928983e-16,
+ -1.7800926782141153e-16,
+ 1.9792881094745413e-16,
+ 3.049401328176736e-16,
+ 5.608284553109528e-17,
+ 1.0309772359707797e-16,
+ -2.271644757223752e-17,
+ -7.113753267956038e-18,
+ -1.8590884267129297e-17,
+ -2.627952806080969e-16,
+ 1.381391622963556e-17,
+ -2.307833909022947e-17,
+ -1.1158666463340343e-16,
+ 2.0441700887716693e-17,
+ 3.960540772903896e-16,
+ -2.340921133525068e-17,
+ 5.525566491854225e-16,
+ 6.534726839168919e-17,
+ 2.3491929396505983e-17,
+ -1.0153642019088413e-16,
+ 1.4248186051225902e-17,
+ -1.3565762045869652e-17,
+ -1.6580835378625437e-16,
+ 2.6469779601696883e-17,
+ -1.529456952610548e-16,
+ -8.751570880811032e-17,
+ 5.5007510734776334e-17,
+ -3.685735863777295e-16,
+ -2.1386366996646394e-16,
+ -2.7090165061111653e-17,
+ 5.97224402263286e-17,
+ 9.280966472844969e-17,
+ 2.053475870662891e-17,
+ -3.5734202462290796e-17,
+ 7.428081900726189e-17,
+ 4.350970022028925e-17,
+ -1.4370195191577473e-16,
+ 1.9703442191013117e-16,
+ 6.807696441311418e-17,
+ -1.5043830402925345e-16,
+ 1.0670629901934056e-16,
+ 1.2722037821065566e-16,
+ 3.6457985498274695e-17,
+ -9.252015151405613e-17,
+ 1.3106676805902724e-16,
+ -1.4872707413703438e-16,
+ -6.063233890013693e-17,
+ 4.739744909928848e-17,
+ 2.5584696346265146e-16,
+ -7.07549616462546e-17,
+ 2.2333876538931747e-16,
+ 2.4906408243971663e-16,
+ 1.0927055891825494e-16,
+ 7.605925732425088e-17,
+ -4.177262093392789e-17,
+ -5.129553773594462e-17,
+ 1.2200914035157158e-16,
+ 1.1795595535006175e-16,
+ 8.354524186785578e-17,
+ -2.0290740425925766e-16,
+ 1.436812724004609e-16,
+ 5.955700410381799e-17,
+ -1.2928832974203823e-16,
+ -3.2743944547911596e-16,
+ -9.446402595355575e-17,
+ 8.726755462434441e-17,
+ -1.6725591985822217e-16,
+ 1.9008610476468574e-16,
+ 3.567216391634932e-17,
+ 1.2606232535308142e-16,
+ -3.628014166657579e-16,
+ -7.473576834416605e-17,
+ -1.908719263466111e-17,
+ -2.21374211434504e-17,
+ -1.3069453678337837e-16,
+ 6.516115275386476e-17,
+ 2.6982631581479763e-16,
+ 3.3748968992163524e-16,
+ 3.556876633978019e-17,
+ 9.107258544208833e-17,
+ 3.2624003359091407e-16,
+ -9.634586184711389e-17,
+ 6.981404369947554e-17,
+ 2.4215712432489882e-17,
+ -2.729696021424991e-18,
+ 1.1857634080947652e-16,
+ -1.329692834678992e-16,
+ -1.2134739586152916e-16,
+ 1.151849002980091e-16,
+ -5.231917374397899e-18,
+ -4.283141211799577e-16,
+ -9.235471539154553e-17,
+ -2.239384713334184e-16,
+ 1.4670048163627946e-16,
+ -3.2597119989183433e-16,
+ 2.26357974625136e-16,
+ 4.413008567970402e-17,
+ -1.3532674821367533e-16,
+ -6.916263896709003e-17,
+ 2.547716286663325e-17,
+ -6.86559908419013e-17,
+ -1.739560828199017e-16,
+ -6.038418471637102e-17,
+ -1.4293680984916318e-16,
+ -2.9650289056963277e-16,
+ 2.100211575272137e-16
+ ],
+ [
+ -1.287395271698851,
+ -1.1840241042297956,
+ 0.17025698684095483,
+ 1.4024517999919555,
+ -2.597335882569624,
+ 2.864140157300793,
+ -2.2399908968002635,
+ 0.8112657768810522,
+ 0.44167366351712345,
+ 0.2827798690828699,
+ -3.731551401181079,
+ -1.877781200334203,
+ 2.8469252088850823,
+ -2.1549747426683457,
+ 0.6147610407697893,
+ 0.5872874536267098,
+ 0.49561189028248465,
+ -3.3034327883731174,
+ -1.8106755875346348,
+ 2.804461274105872,
+ -2.0120397254973095,
+ 0.4918555363575137,
+ 1.1972236684985598,
+ -2.482449032842752,
+ 2.8872476362654176,
+ -1.612983951684579,
+ -3.0879926459652727,
+ -0.3511435689173332,
+ 0.11453487326508668,
+ 1.3100653230702382,
+ -2.5842302724218476,
+ 2.877983249639048,
+ -1.5563152240975322,
+ -3.2504559361726226,
+ -0.630104978309076,
+ -0.030971900568074362,
+ 1.487187554185336,
+ -2.6425587247662676,
+ 2.8635813194341107,
+ -2.1735691219372075,
+ 0.7168133125177238,
+ 0.8959942002657986,
+ -3.286470513818411,
+ -3.145346521435811,
+ 0.6627488620248269,
+ 0.8391394054197461,
+ 4.781496808512303,
+ 4.882927010389411,
+ -2.2125870693808025,
+ 0.7708325727514975,
+ 0.8403035060027425,
+ -2.318095143978011,
+ 2.8772679444679934,
+ -2.5832797676681603,
+ 0.9931807271046676,
+ 2.351982945488123,
+ 1.992217051209062,
+ 0.7837553101144816,
+ -2.391519576610408,
+ 2.886204801620205,
+ -2.4795335508671026,
+ 0.8603464444146219,
+ 1.984039189206097,
+ 2.0261628993330483,
+ 0.8869197879991424,
+ -2.504676681328209,
+ 2.8862501931519975,
+ -2.4116178540698123,
+ 0.9898521410967163,
+ 0.6176950794582822,
+ -2.105438990102281,
+ 1.8403028570351057,
+ 3.0651155842192335,
+ -2.0991507194279895,
+ -1.419438318190884,
+ 0.8733184520047665,
+ 0.8159924329541327,
+ -2.241689906274743,
+ 1.9594549565470667,
+ 3.5896518246117575,
+ -2.1688791577741933,
+ -1.3678442218470215,
+ 0.6761096246839065,
+ 0.935729458007219,
+ -2.320715910787258,
+ 2.88394934782229,
+ -2.5353580043277613,
+ 1.2869665290230476,
+ -1.0359236767703717,
+ -1.4347162056122893,
+ -4.000315129011116,
+ -3.3488892714399823,
+ 1.848203893860256,
+ -0.3711328080903043,
+ -1.3019466639009332,
+ 2.5241401320828207,
+ -0.6978806671095762,
+ -0.9997903307593895,
+ 1.5082008058308494,
+ 2.474249162000677,
+ -3.448040541981574,
+ -1.9136944376438894,
+ 2.002884177556072,
+ -0.5728099892263301,
+ -1.188726719224258,
+ 1.539528512325256,
+ 2.350700307474414,
+ -2.920987043179923,
+ -1.7879988513488174,
+ 1.850129022877216,
+ -0.37197072051255814,
+ -1.302499028149952,
+ 2.5259719531036144,
+ -2.92527611144871,
+ 2.299480395900084,
+ -0.7149488755764035,
+ -1.7516145931959268,
+ -2.245086195241984,
+ -1.026437734462225,
+ 2.5850559232213954,
+ -2.90282789920312,
+ 2.17149103637162,
+ -0.6058302908928634,
+ -1.6798229512160445,
+ -2.619076313560784,
+ -1.152567936768895,
+ 2.668775750540713,
+ -2.883043404348873,
+ 2.0864721039792498,
+ -0.5995896680837659,
+ -1.0916656643745941,
+ 2.353405503738845,
+ -5.044613499452457,
+ -4.95425485370536,
+ -1.1026796705773858,
+ -0.9298916081864186,
+ 2.722173538311705,
+ 2.8654314650064614,
+ -0.6588280294613972,
+ -1.0358017866104894,
+ 2.31529921334947,
+ -2.928717652650308,
+ 2.461524784673031,
+ -1.2744827666036527,
+ -0.15881962173011904,
+ 0.2720271652569616,
+ 3.3929373130351492,
+ 1.6579004465358385,
+ -2.9288555240857783,
+ 2.394062549048568,
+ -1.0864490299348286,
+ -0.30213417006209264,
+ 0.019494103078641925,
+ 3.1971463848624833,
+ 1.703625404856991,
+ -2.9196370490743777,
+ 2.27338356226933,
+ -0.9706189200508974,
+ -0.8168446809355644,
+ 2.1708550433115468,
+ -2.9015943822339145,
+ 1.7467129965090853,
+ 3.2440944847710393,
+ -0.1651177012115778,
+ -0.40519181035881585,
+ -0.9348627946386887,
+ 2.3005133429758677,
+ -2.9220895307046972,
+ 1.8014544538221828,
+ 3.6395487563482782,
+ 0.09634059396802362,
+ -0.24580778890946448,
+ -1.1270927849176404,
+ 2.3737640514909764,
+ -2.928827653649072,
+ 2.4076276648011175,
+ -1.1852599435933362,
+ -0.50078197612724,
+ 1.5814893599225228,
+ 1.7801113038741225,
+ 7.356117187434074e-16,
+ 6.002022524684769e-16,
+ 2.0638156283198038e-16,
+ 1.2151283198403977e-16,
+ -2.534481396862477e-16,
+ -1.0159845873682561e-16,
+ -2.6284697939638146e-16,
+ -1.1613615800244509e-16,
+ -4.974664203893908e-16,
+ 1.528629771997995e-16,
+ 1.0757483866252124e-16,
+ 1.760188644724558e-16,
+ 2.6138907356675675e-16,
+ 1.648570960818184e-16,
+ -1.0314942238536254e-16,
+ 2.1837568171399928e-17,
+ -1.312735632121655e-16,
+ -1.8652922813070772e-16,
+ 3.9787387463800625e-17,
+ -4.288931476087448e-17,
+ 3.813302623869457e-17,
+ -3.383168705341883e-17,
+ 5.1202479917032407e-17,
+ 1.4227506535912076e-17,
+ 1.2316719320914582e-16,
+ -2.3508473008757047e-16,
+ -9.9178955445108e-17,
+ -4.532949756790591e-17,
+ 1.0124690697649058e-16,
+ 3.080834191453751e-16,
+ 2.0588525446444856e-16,
+ -1.9356026333740845e-17,
+ 3.7413379105773437e-16,
+ 2.8062102280861464e-16,
+ 1.2242273065784808e-17,
+ -3.7338932850643664e-16,
+ 6.452008777913615e-18,
+ -6.29484446152854e-17,
+ -2.903403950061127e-16,
+ 1.8760456292702665e-16,
+ 8.486873084794063e-17,
+ 3.332710687976148e-16,
+ -8.437242248040882e-18,
+ 1.8349709419781802e-16,
+ 1.544759793942779e-16,
+ -6.410649747285964e-18,
+ 1.4450845301301393e-16,
+ -2.099384394659584e-16,
+ -8.966637840074819e-17,
+ -2.32644547280539e-17,
+ 3.028308222556634e-16,
+ 1.7596199580534279e-16,
+ -2.8785885316845363e-17,
+ -1.7883644843396456e-16,
+ -5.69100261436483e-16,
+ -6.600901288173161e-17,
+ -2.3574647457761285e-18,
+ -3.5403330217269584e-17,
+ 3.29217883796105e-17,
+ 2.51628342338631e-16,
+ -1.1134885020729444e-16,
+ -3.399712317592944e-17,
+ 5.757177063369073e-17,
+ 4.135903062765138e-17,
+ -4.20207751176938e-17,
+ 9.168263114384619e-17,
+ -3.809166720806692e-16,
+ -6.782881022934826e-18,
+ -4.1429340979718386e-16,
+ -5.0871607672011196e-17,
+ 1.377255719900791e-17,
+ -6.063233890013693e-17,
+ -7.225422650650697e-17,
+ -7.253339996324361e-17,
+ 1.5369015781235252e-16,
+ -3.1432863277015048e-18,
+ -1.8500411387631307e-16,
+ -3.407570533412197e-16,
+ 1.7527957179998654e-16,
+ -2.6205081805679917e-16,
+ 7.055850625077326e-17,
+ -2.067124350770016e-16,
+ 1.6014216659026613e-16,
+ 4.4006008587821067e-16,
+ -1.196826948787662e-16,
+ -3.2177325828312777e-17,
+ -1.682485365932858e-16,
+ -2.0522350997440614e-16,
+ -8.6523092073046685e-16,
+ 6.261757237026419e-16,
+ -3.9431699800402824e-16,
+ 1.814420673635066e-16,
+ 7.804449079437815e-17,
+ 1.0091603473146936e-17,
+ -1.1754236504378523e-16,
+ -1.0944633479842246e-16,
+ -1.985233470127266e-17,
+ -2.1601821696822315e-16,
+ 4.086168828435387e-16,
+ 4.2765237668991525e-17,
+ 6.598833336641778e-17,
+ 5.320425699941074e-16,
+ 1.0625134968243639e-16,
+ -1.0968414922453146e-16,
+ -2.599208279794751e-16,
+ -1.559235454662457e-16,
+ -2.1175823681357505e-17,
+ 7.394994676224067e-17,
+ -1.5716431638507524e-18,
+ 5.872982349126496e-17,
+ 1.8694281843698425e-17,
+ 7.411538288475128e-17,
+ 7.627639223504605e-17,
+ 1.4260593760414197e-16,
+ -1.3995895964397228e-16,
+ -2.776018135727961e-16,
+ -2.1792073237709512e-16,
+ 3.546536876321106e-17,
+ 7.796177273312285e-17,
+ 9.959254575138452e-17,
+ 1.7155725904349792e-16,
+ 1.0119520818820601e-16,
+ -4.499448941982194e-16,
+ -2.7214242152994607e-17,
+ -2.5630191279955563e-16,
+ 5.745803329946468e-17,
+ -1.0700098211256257e-16,
+ 1.0788503139222862e-16,
+ -9.910140726268116e-17,
+ -4.7232012976777874e-17,
+ -1.902101818565687e-16,
+ -1.9608316420569519e-16,
+ -4.571413655274307e-16,
+ 7.849944013128231e-17,
+ -2.93152809088793e-16,
+ -1.021568056502989e-16,
+ 1.3591611440011936e-16,
+ 3.2807017069618764e-16,
+ 1.2043749718772083e-16,
+ -6.981404369947554e-17,
+ 1.6882756302207292e-16,
+ 1.5203579658724646e-16,
+ -2.9116757561866574e-17,
+ -1.980270386451948e-16,
+ 3.5502591890775943e-16,
+ -5.757177063369073e-17,
+ 5.612420456172293e-17,
+ 1.6743686561721815e-16,
+ 6.700162961679524e-17,
+ -8.056739166266488e-17,
+ -2.69660879692287e-16,
+ 1.2546261940898047e-16,
+ -1.3152171739593138e-17,
+ 1.5716431638507526e-17,
+ -2.7363134663254155e-16,
+ 1.0968414922453146e-16,
+ -4.532949756790591e-17,
+ -8.330742744174679e-17,
+ -3.5858279554173745e-16,
+ -4.053185001509835e-17,
+ 7.527343574232552e-18,
+ 1.0918784085699964e-16,
+ -1.4814804770824726e-16,
+ -6.452008777913615e-18,
+ 8.695322599157426e-16,
+ 4.801783455870325e-17,
+ 1.0486582215641007e-16,
+ -1.1490831178068669e-16,
+ 2.3773170804774015e-16,
+ -4.6032601088575984e-17,
+ 1.0153642019088413e-17,
+ 2.4352197233561135e-16,
+ 8.578896927940587e-17,
+ 7.829264497814406e-17,
+ -2.8289576949313546e-17,
+ 7.841672207002701e-17,
+ -2.613890735667567e-17,
+ 1.2713766014940035e-16,
+ -4.812536803833515e-16,
+ -2.248276904919129e-16
+ ],
+ [
+ 3.8129610892435557,
+ 3.201837256033917,
+ -1.765057745687237,
+ 0.1698899155267605,
+ 1.3999137538760782,
+ -2.6387494127852897,
+ 2.863463080036648,
+ -2.2390709026995066,
+ 0.6911413931470752,
+ 1.8324402628717023,
+ 2.723314057426334,
+ 1.2058990367407105,
+ -2.689741276478522,
+ 2.845816277654821,
+ -2.100888900545138,
+ 0.4897725404177595,
+ 1.3820696043341556,
+ 2.531991517571006,
+ 1.2156001961987422,
+ -2.764878149881591,
+ 2.8032907874606914,
+ -2.012940386401893,
+ 0.3989509051938705,
+ 1.1946918962506348,
+ -2.481784123106255,
+ 1.891621259494062,
+ 3.2687103824476322,
+ -1.5132170931978066,
+ -1.1267426415545105,
+ 0.27651413054118595,
+ 1.3778375866069763,
+ -2.583493498161244,
+ 1.9025600020775444,
+ 3.591767418778268,
+ -1.4167030010132189,
+ -1.0128852445162062,
+ 0.07204071274647986,
+ 1.4867462042680368,
+ -2.640619560476653,
+ 2.8490526412890116,
+ -2.1744198359705478,
+ 0.7163444553555716,
+ 0.548162279108664,
+ 0.40828719069186586,
+ -2.070941718206366,
+ -2.192466428183791,
+ -5.052947284226503,
+ -5.080135930875798,
+ 2.858018823718017,
+ -2.2116446084871773,
+ 0.772634816934919,
+ 0.9292568361847852,
+ -2.3160925778333867,
+ 2.876394012803724,
+ -1.7184695424150864,
+ -3.471229693483081,
+ -0.020178170157794096,
+ 0.2903733077340667,
+ 1.046884149355954,
+ -2.390968041150198,
+ 2.8873609652931345,
+ -1.6405641542808456,
+ -3.1220462500403765,
+ -0.25467466874901645,
+ 0.16932079569875338,
+ 1.2329407955740836,
+ -2.504035257229792,
+ 2.885258444991181,
+ -2.356029986065092,
+ 0.9915339390181473,
+ 0.6177653800404213,
+ -1.2997174102566698,
+ -1.855581614857381,
+ 3.1697339971607996,
+ 1.8722994373557609,
+ -2.2790216679195896,
+ 0.7989624921535862,
+ 0.8160291441643309,
+ -1.4377363467944317,
+ -2.3205733133329467,
+ 3.5215082060642007,
+ 1.9378008201060017,
+ -2.1459551930266034,
+ 0.6755422735800523,
+ 0.9333259018918661,
+ -2.376361353512553,
+ 2.8828196375982844,
+ -2.5344054646466305,
+ 3.0997934591200638,
+ 3.9144414191994286,
+ 5.142373132727239,
+ 4.206809197932154,
+ -2.803016354247594,
+ 1.8469992769380945,
+ -0.3729660020987651,
+ -1.3854638203500975,
+ 2.52232642525742,
+ -0.69450649146292,
+ -0.5513711472130114,
+ -0.4974512759436803,
+ 3.768055651050649,
+ 1.9132549149201175,
+ -2.8555962581168,
+ 1.9992348797403259,
+ -0.49349730134321285,
+ -0.6885212407678828,
+ -0.6817257408542524,
+ 3.323160988287591,
+ 1.8393913187146957,
+ -2.8037306322509905,
+ 1.8464339473641864,
+ -0.37125604315427413,
+ -1.3877407599800826,
+ 2.524327153307105,
+ -2.923030305429489,
+ 1.55449138234047,
+ 3.01271266970536,
+ 0.5384806337906265,
+ -0.0072207907273553855,
+ -1.4954722721582576,
+ 2.6178263573967837,
+ -2.900353467555563,
+ 1.491838256420914,
+ 3.1555502145078402,
+ 0.8312873892488833,
+ 0.13890855537703625,
+ -1.668553632753649,
+ 2.667794732534135,
+ -2.880851010206034,
+ 2.0171278409874764,
+ -0.5987518267755724,
+ -1.093810325900803,
+ 3.511452360433296,
+ 3.372828174096254,
+ -0.4967328701647643,
+ -0.6736393886985171,
+ -4.665899574527709,
+ -4.7743248656788655,
+ 2.0614578447759984,
+ -0.6586608407428777,
+ -1.033188002689685,
+ 2.3688657060966514,
+ -2.927544119240338,
+ 2.460519942158171,
+ -0.9023173813951794,
+ -2.1969492196514993,
+ -2.153820809196008,
+ -0.8772763976352134,
+ 2.4385693934299506,
+ -2.9276622237134693,
+ 2.349181015334796,
+ -0.7663843440040298,
+ -1.8337788438442375,
+ -2.1670270228973063,
+ -0.9767681596634016,
+ 2.5403243346404034,
+ -2.9184222378107263,
+ 2.273840953457988,
+ -0.8810989306709829,
+ -0.8143241600389518,
+ 2.170030173307926,
+ -1.8610237283924187,
+ -3.130670337887512,
+ 1.953521032332828,
+ 1.3481282874936096,
+ -0.7606878699373608,
+ -1.0075612143767767,
+ 2.2996224084268406,
+ -1.9761035689423552,
+ -3.651617142516169,
+ 1.9936927160566498,
+ 1.2857164614574512,
+ -0.5626640124901894,
+ -1.1267982742024754,
+ 2.371332471490134,
+ -2.9286465563129433,
+ 2.4079024109109337,
+ -1.184706212131549,
+ 0.8100250766445877,
+ 1.1599456837437883,
+ -7.91777282335758e-16,
+ -8.040195554015428e-16,
+ -3.2640546971342467e-16,
+ -1.7474190440182707e-16,
+ 1.6874484496081762e-16,
+ 3.760957600731336e-17,
+ 3.273980864484883e-16,
+ 3.2309674726321256e-16,
+ 6.761374327008447e-16,
+ -1.2056157427960378e-16,
+ -1.0893968667323373e-16,
+ -4.987899093694757e-16,
+ -1.8843174353957968e-16,
+ -2.484643764956157e-16,
+ -4.144174868890668e-17,
+ 4.9299964508160443e-17,
+ 1.526251627736905e-16,
+ 2.181482070455472e-16,
+ 2.0141847915666221e-16,
+ -1.005438034558205e-16,
+ 4.0366413892587744e-17,
+ 1.3251433413099503e-16,
+ 3.970466940254533e-18,
+ -5.823351512373315e-17,
+ -3.3484271196146555e-16,
+ 1.743696731261782e-16,
+ 7.46116912522831e-17,
+ 4.830734777309681e-17,
+ -1.8694281843698423e-16,
+ -4.004174550216068e-16,
+ -1.3334151474354806e-16,
+ -2.812414082680294e-17,
+ -6.125272435955169e-16,
+ -2.4286022784556893e-16,
+ 1.8652922813070774e-17,
+ 4.853895834461166e-16,
+ 6.948317145445432e-18,
+ 3.8546616544971083e-17,
+ 3.090346768498111e-16,
+ -4.199595969931721e-16,
+ -1.1580528575742387e-18,
+ -4.1805708158430014e-16,
+ -1.4426029882924803e-16,
+ -1.498024089333533e-16,
+ -9.653197748493832e-17,
+ 1.3995895964397228e-16,
+ -9.148617574836485e-17,
+ 4.1590641199166227e-16,
+ -2.6469779601696883e-17,
+ 2.3905519702782497e-17,
+ -1.6903435817521118e-16,
+ -1.4488326922807703e-16,
+ -7.403266482349598e-17,
+ 1.8702553649823953e-16,
+ 3.875341169810934e-16,
+ 1.8859717966209028e-17,
+ 7.344329863705194e-17,
+ 2.2582030722697652e-17,
+ 8.023651941764368e-18,
+ -1.7453510924868884e-17,
+ -1.937670584905467e-17,
+ 2.1258541742612808e-17,
+ -1.1754236504378523e-16,
+ 5.5193626372600765e-17,
+ 2.6262984448558626e-17,
+ 2.1754850110144625e-17,
+ 4.529356691004814e-16,
+ -3.7967590116183964e-17,
+ 3.1722376491408606e-16,
+ 1.3623664688748366e-16,
+ 1.9620724129757814e-16,
+ 1.6564291766374377e-16,
+ 1.4748630321820483e-16,
+ -1.2986735617082533e-17,
+ 6.627784658081134e-17,
+ -3.672681919735443e-17,
+ 7.181995668491663e-17,
+ 1.8664296546493376e-16,
+ -1.7205356741102973e-16,
+ 2.6081004713796963e-16,
+ -5.6827308082393e-17,
+ 2.088941239426102e-16,
+ -4.8922563353683124e-17,
+ -3.4923565461988824e-16,
+ 1.0980822631641441e-16,
+ 8.445514054166411e-17,
+ 2.47120208000217e-16,
+ 1.6957202557337065e-16,
+ 7.474404015029157e-16,
+ -9.185840702401371e-17,
+ 2.659385669357984e-16,
+ -5.192626295301631e-16,
+ -1.546414155167885e-16,
+ 1.9331210915364254e-16,
+ 2.5117339300172685e-16,
+ 5.078888961075589e-17,
+ 1.2577281213868786e-16,
+ 2.21849840286722e-16,
+ -1.9719985803264177e-16,
+ 5.699274420490361e-17,
+ -1.1022181662269092e-17,
+ -3.970053349948256e-16,
+ -1.9728257609389708e-16,
+ 2.467893357551958e-16,
+ 1.8388742004936648e-16,
+ -7.378451063973007e-17,
+ 1.431022459716738e-17,
+ -8.569591146049365e-17,
+ 7.46944093135384e-17,
+ -7.237830359838992e-17,
+ -1.8156614445538957e-17,
+ -4.528813853727826e-17,
+ -6.623648755018369e-17,
+ -1.375601358675685e-16,
+ 5.67445900211377e-17,
+ 7.17992771696028e-17,
+ 2.2234614865425384e-16,
+ 5.153335216205362e-17,
+ -2.2060906936789246e-16,
+ -5.54624600716805e-17,
+ -2.928219368437718e-17,
+ -2.5311726744122644e-17,
+ 3.808339540194139e-16,
+ 8.127049518333496e-17,
+ 1.607625520496809e-16,
+ 4.632211430296955e-18,
+ 8.271806125530277e-18,
+ -2.9571706898770736e-18,
+ 2.5882481366784236e-16,
+ 1.7916732067898577e-16,
+ 2.775190955115408e-16,
+ 1.7933275680149638e-16,
+ 6.299807545203858e-16,
+ -2.0778776987332053e-16,
+ 2.9191203816996347e-16,
+ 1.5083638469904457e-16,
+ -1.0089535521615554e-16,
+ 1.2775804560881512e-16,
+ -6.518183226917858e-17,
+ 2.5704637535085332e-17,
+ 1.4103429444029122e-17,
+ -8.081554584643079e-17,
+ -3.370760996153588e-17,
+ 2.802487915329658e-16,
+ -3.7620174258911694e-16,
+ 3.325266062463171e-17,
+ -1.20892446524625e-16,
+ -3.739890344505376e-16,
+ 4.020097777007714e-17,
+ 1.194448804526572e-16,
+ 2.1471540750345213e-16,
+ -1.1894857208512538e-16,
+ -2.99439381744196e-17,
+ -3.970466940254533e-18,
+ 3.748782536090321e-16,
+ -1.470520333966145e-16,
+ 5.459392042849982e-17,
+ 3.55791060974371e-17,
+ 4.104676994641261e-16,
+ 1.6138293750909567e-16,
+ 2.1858247686713753e-17,
+ -7.651420666115505e-17,
+ 9.479489819857696e-17,
+ 2.5761506202198353e-17,
+ -5.67445900211377e-16,
+ -2.605618929542037e-17,
+ -6.617444900424221e-17,
+ -5.281548211151081e-17,
+ -1.804080915978153e-16,
+ -6.26175723702642e-17,
+ 1.4765173934071544e-16,
+ -3.632977250332897e-16,
+ -2.9488988837515437e-17,
+ -9.90135193225974e-17,
+ 6.245213624775358e-18,
+ -1.7254987577856155e-16,
+ -4.786273819384956e-17,
+ -1.3030162599241568e-16,
+ 5.752213979693754e-16,
+ 1.2027206106521022e-16
+ ],
+ [
+ -3.5232343684686924,
+ -2.8937446443457855,
+ 1.8466201498547798,
+ -1.1282134255289733,
+ -0.008504601732856248,
+ 1.1439640448991688,
+ -1.8968408876266094,
+ 1.9818720400830594,
+ -1.0635297150291863,
+ -2.2606659513332716,
+ -0.7464175094926332,
+ -0.18862426406711302,
+ 1.2150590832981298,
+ -1.9280059373851541,
+ 1.9508161053729542,
+ -0.9263124784548651,
+ -1.882753686012968,
+ -0.7984441717358455,
+ -0.2418922562995466,
+ 1.32489101616523,
+ -1.971959185067998,
+ 1.9259064099760597,
+ -1.2592869468663657,
+ 0.15235005326581827,
+ 0.9510388901164119,
+ -1.134646363865615,
+ -1.7713469624665683,
+ 1.9408341298790979,
+ 1.2084928736461,
+ -1.1888563542035036,
+ 0.010561205959358463,
+ 1.0747673437236016,
+ -1.1827388543901438,
+ -2.036225794524964,
+ 2.0067257314153717,
+ 1.170671368396608,
+ -1.0702473087127153,
+ -0.07880276737662743,
+ 1.1464477421613843,
+ -1.9222113397202472,
+ 1.9677649297269135,
+ -1.430408043811555,
+ 1.4455708820783633,
+ 1.515715259411792,
+ 1.9365155819840592,
+ 1.9636060568360805,
+ 2.7331303398789495,
+ 2.7002292243425225,
+ -1.907833379143497,
+ 1.9760627149618117,
+ -1.4593329800349375,
+ 0.35064437998102055,
+ 0.7689334999283709,
+ -1.6953985291528262,
+ 1.327961951834807,
+ 2.4647226122384,
+ -1.2310471506229652,
+ -0.8233466330962069,
+ 0.2654762565330816,
+ 0.8507109272524672,
+ -1.7708706419666922,
+ 1.3230352688994669,
+ 2.2994762316825943,
+ -0.9859084828188784,
+ -0.7507071510165932,
+ 0.12294492706350961,
+ 0.9768771347125481,
+ -1.8135388284314735,
+ 2.002388667865746,
+ -1.568078974438838,
+ 0.5708255112172897,
+ 0.3188285068353881,
+ 0.1796407622698803,
+ -2.281262038894754,
+ -1.2345085057768388,
+ 1.990525734253092,
+ -1.4717177282528249,
+ 0.43354621653707925,
+ 0.4007013517663582,
+ 0.37797203008498953,
+ -2.637195000904311,
+ -1.3414379444552136,
+ 1.9611145332465758,
+ -1.4091058988361043,
+ 0.3476706886160228,
+ 0.8333101489769841,
+ -1.732985340354363,
+ 2.018124753251089,
+ -2.8709974045136586,
+ -3.545857150309094,
+ -3.3266042321312383,
+ -2.6733285047817152,
+ 1.9701578163453763,
+ -1.9179496114985632,
+ 1.191068156356588,
+ -0.06640492252774738,
+ -1.0793288956140608,
+ 1.8225612561635585,
+ -0.3226856313478784,
+ -0.9920600939284204,
+ -2.1122013357728924,
+ -0.9699328305686895,
+ 1.9347982563753459,
+ -1.9616958460059883,
+ 1.2591299785954033,
+ -0.18652070654393893,
+ -0.704844205141012,
+ -1.9383132184176162,
+ -0.9651055210802886,
+ 1.9697032223273945,
+ -1.9167580538712343,
+ 1.1895028889374015,
+ -0.06502253673129105,
+ -1.0800723742734886,
+ 1.8224568873090268,
+ -1.316722864990752,
+ -2.3215074768383075,
+ 0.8011307374156653,
+ 0.654283710857977,
+ 0.022536255974122767,
+ -1.1981651919180885,
+ 1.8795434421769592,
+ -1.3141917559397016,
+ -2.5290056131344807,
+ 0.7037392123587729,
+ 0.5675881677335948,
+ 0.1642593219055051,
+ -1.269703479028721,
+ 1.9085722833665881,
+ -1.967393490635084,
+ 1.3152805786291266,
+ -0.29073610313107634,
+ -0.8143298957384506,
+ -0.7135895636246467,
+ 1.2773667134794293,
+ 1.3744961147517598,
+ 3.5894333730458894,
+ 3.6195328398925795,
+ -1.9799730687822108,
+ 1.3481978094533467,
+ -0.33537341554193645,
+ -0.9011640701921715,
+ 1.7255245088404367,
+ -2.046509070564862,
+ 1.1254753297118747,
+ 2.325626885699686,
+ 0.3122432946188825,
+ -0.04649564325759475,
+ -0.9779841493506395,
+ 1.7704216033596147,
+ -2.036034636948035,
+ 1.061196996606656,
+ 2.0718528497872524,
+ 0.45048283516552784,
+ 0.03779460621108133,
+ -1.10172707664536,
+ 1.8335665116024673,
+ -2.0256313846752687,
+ 1.4632697784282724,
+ -0.4932814113568306,
+ -0.6922314108075195,
+ 1.0156668574487826,
+ 1.5161395733295855,
+ -2.1163223306102465,
+ -1.2771595622417469,
+ 1.403008464013463,
+ -0.3529698609736612,
+ -0.8243160806221532,
+ 1.112009154888781,
+ 1.8593014925846845,
+ -2.326570623741967,
+ -1.3065586757196888,
+ 1.296645842689815,
+ -0.26586017116277394,
+ -0.9038764552788222,
+ 1.7607855813590325,
+ -2.0429869107254315,
+ 1.609400629685081,
+ -1.9161152693566745,
+ -2.4388426423562537,
+ 1.3282866276376516e-15,
+ 1.5378941948585889e-15,
+ 2.522694073133596e-16,
+ 1.1915536723826364e-16,
+ -1.4982308844866714e-16,
+ -1.8065624578158122e-16,
+ -2.447627432544409e-16,
+ -1.770993691476032e-16,
+ -4.1977348135534767e-16,
+ 3.813302623869457e-17,
+ 1.6771086919512634e-16,
+ 4.516819734845808e-16,
+ 2.91374370771804e-17,
+ 1.2034960924763707e-16,
+ -3.341809674714232e-17,
+ -2.6221625417930977e-16,
+ -6.866633059955821e-17,
+ -7.535615380358081e-17,
+ -9.934439156761861e-17,
+ 1.3052910066086777e-16,
+ 5.1352406403057643e-17,
+ -3.422459784438152e-17,
+ -4.8141911650586205e-17,
+ 8.602678370551488e-18,
+ 1.4538216253502307e-16,
+ -2.495397112919346e-16,
+ -6.555406354482744e-17,
+ -1.49719690872098e-17,
+ 2.332649327399538e-16,
+ 2.1556326763131899e-16,
+ 1.4570786490121582e-16,
+ 8.63783354658499e-17,
+ 4.1028158382630167e-17,
+ 1.1240092054888532e-16,
+ -1.0579640034553223e-16,
+ -4.667780196636735e-16,
+ 3.6561383074843823e-17,
+ 6.021874859386041e-17,
+ -1.2291903902537991e-16,
+ 3.3732425379912464e-16,
+ 2.397996595791227e-16,
+ 9.218927926903492e-17,
+ 3.070494433796838e-16,
+ 2.928219368437718e-17,
+ -1.0840201927507426e-16,
+ -6.72084247699335e-17,
+ -1.588186776101813e-17,
+ -1.8454399466058045e-16,
+ 1.454390312021361e-16,
+ 5.4180330122223307e-17,
+ -5.947428604256269e-17,
+ 4.119359450514077e-17,
+ 1.0298398626285193e-16,
+ -1.4167535941501982e-16,
+ -2.203195561534989e-16,
+ -5.40148939997127e-17,
+ -1.0645814483557465e-16,
+ 6.915229920943311e-17,
+ 4.1896698025810846e-17,
+ -5.368402175469149e-17,
+ 2.1531511344755308e-16,
+ 8.850832554317396e-18,
+ 1.7817470394392214e-16,
+ -1.1470927144579111e-16,
+ -1.7618947047379487e-16,
+ -9.471218013732165e-18,
+ -3.8538344738845554e-16,
+ 3.672681919735443e-17,
+ -1.344995676011223e-16,
+ -1.133237439197648e-16,
+ -6.468552390164676e-17,
+ -4.111087644388547e-17,
+ -4.954811869192635e-17,
+ -9.283292918317775e-17,
+ -2.5328270356373707e-16,
+ -1.5411408787628594e-16,
+ -1.9826485307130382e-18,
+ -1.3689839137752606e-17,
+ 1.1834886614102443e-16,
+ -1.4603873714623704e-16,
+ 5.69100261436483e-17,
+ -3.8829021175975516e-17,
+ -1.435158362779503e-17,
+ 1.1307558973599888e-16,
+ -1.1989982978956136e-16,
+ -3.312858353274876e-17,
+ -1.58022516270599e-16,
+ -9.929269277933405e-17,
+ -1.9918509150276904e-16,
+ 7.610061635487853e-17,
+ 8.507552600107888e-17,
+ 2.2565487110446595e-16,
+ 1.3139247042522e-16,
+ -1.6233419521353166e-16,
+ -1.5666800801754342e-16,
+ -1.3276248831476094e-16,
+ -7.473576834416605e-17,
+ -6.232805915587064e-17,
+ 8.577862952174896e-17,
+ -1.4596151208123697e-16,
+ 9.013166749530927e-17,
+ 1.179145963194341e-16,
+ 9.885842295774371e-17,
+ -1.0753347963189359e-16,
+ 4.1276312566396075e-17,
+ 1.227536029028693e-16,
+ -2.9737143021281345e-17,
+ 9.373507303874339e-17,
+ 8.875647972693986e-17,
+ 1.0356301269163905e-16,
+ 1.7078694709805793e-17,
+ 5.98051582875839e-17,
+ 2.7958704704292335e-17,
+ -8.35452418678558e-18,
+ -2.620094590261715e-17,
+ 3.234276195082338e-17,
+ -1.6014216659026613e-16,
+ -7.047578818951796e-17,
+ 2.628779986693522e-16,
+ 4.673570460924606e-17,
+ 3.9208361035013506e-17,
+ -2.1672132048889322e-17,
+ -4.270319912305005e-17,
+ -3.4837228485553606e-17,
+ -6.686721276725537e-17,
+ -3.30872245021211e-19,
+ -2.2809505391149735e-17,
+ 2.4484546131569616e-17,
+ -1.4889251025954498e-16,
+ -1.43433118216695e-16,
+ -9.024540482953531e-17,
+ -1.2502834958739013e-16,
+ -1.816902215472725e-16,
+ -1.761894704737949e-17,
+ -1.752666471029154e-16,
+ -1.0972550825515911e-16,
+ 4.772832134430969e-17,
+ -1.050519377942345e-16,
+ 1.0058516248644815e-16,
+ 3.316994256337641e-17,
+ 4.2144852209576754e-17,
+ 1.3218346188597382e-16,
+ 2.0555438221942735e-17,
+ -2.564259898914386e-16,
+ 2.8496372102451803e-16,
+ -2.9695783990653694e-17,
+ 7.645216811521357e-17,
+ 2.0530622803566144e-16,
+ -1.3284520637601624e-16,
+ -5.277412308088316e-17,
+ -1.1291015361348826e-17,
+ 2.6647623433395787e-16,
+ 7.971953153479803e-17,
+ -1.079470699381701e-17,
+ -1.6609786700064793e-16,
+ 6.385834328909374e-17,
+ -4.80591935893309e-17,
+ -1.666355343988074e-16,
+ -2.322309569742625e-16,
+ -3.7471281748652154e-17,
+ 1.1580528575742387e-18,
+ -6.898686308692251e-17,
+ 4.226892930145971e-17,
+ -5.3084315810590545e-17,
+ 1.3590577464246245e-16,
+ 7.020695449043822e-18,
+ -8.875647972693986e-17,
+ 2.7317639729563736e-17,
+ -1.0023361072611312e-16,
+ 8.519960309296184e-17,
+ -5.637235874548884e-17,
+ 2.1498424120253187e-16,
+ 2.274746684520826e-18,
+ 7.783769564123989e-17,
+ -2.3926199218096322e-17,
+ -1.3782896956664822e-17,
+ -2.903403950061127e-17,
+ 3.259091613458929e-17,
+ -8.82767149716591e-16,
+ 1.406207041340147e-16
+ ],
+ [
+ 8.526276447651245,
+ 6.86286768912234,
+ -5.045344755109073,
+ 4.719513837129667,
+ -2.867679884975528,
+ -0.08073112689231586,
+ 2.8608543954771566,
+ -4.7182221397120045,
+ 3.4923346266231348,
+ 6.697559339364682,
+ -2.0200163164622573,
+ -1.5446121235761132,
+ -0.29975708023194575,
+ 3.0437143387991195,
+ -4.847075721162345,
+ 3.2658888191636066,
+ 5.8657143499658,
+ -1.399468644428496,
+ -1.319933857454753,
+ -0.6577295533800063,
+ 3.3251455873983145,
+ -4.913510723713695,
+ 4.862731637962649,
+ -3.194923863936112,
+ 0.48972045415156534,
+ 1.4201701278535848,
+ 1.5866154007173996,
+ -5.869943280191784,
+ -3.2864294915927332,
+ 4.789459865897215,
+ -2.9062512739246897,
+ 0.13083253012063897,
+ 1.6186926695024269,
+ 2.1549764181285527,
+ -6.364648960641049,
+ -3.340582927554802,
+ 4.649617331938963,
+ -2.719202752051838,
+ -0.08834260457685125,
+ 3.005968626112604,
+ -4.782903153918827,
+ 5.012797010641436,
+ -7.718456471026037,
+ -7.760480455683755,
+ -4.736102501329016,
+ -4.617475557605286,
+ -2.429431012600681,
+ -2.2243141434874514,
+ 2.922197084695751,
+ -4.746567551946911,
+ 5.032870587783691,
+ -3.573107388282126,
+ 0.9929682582233585,
+ 1.9121376049125265,
+ -2.6518232724027966,
+ -4.359110310065944,
+ 5.6808023234774545,
+ 3.192434682046014,
+ -3.412990305504785,
+ 0.7726995809779423,
+ 2.240870383065354,
+ -2.784859686801142,
+ -4.299473720005466,
+ 5.025991043999714,
+ 3.10140043619159,
+ -3.13643553796421,
+ 0.41561746213090883,
+ 2.4357092382552272,
+ -4.578600123064564,
+ 5.093699328828244,
+ -3.959721860192091,
+ 1.1354057109702114,
+ 2.883494161697636,
+ 4.120672815425988,
+ 1.9163291430484841,
+ -4.673190029565994,
+ 5.041757810329387,
+ -3.721940564691104,
+ 1.0359870667615452,
+ 2.9036251136574034,
+ 5.048760048089829,
+ 2.275402071056073,
+ -4.809117701696503,
+ 4.996600529335925,
+ -3.567639744735199,
+ 0.8185651098855851,
+ 2.071269415082824,
+ -4.294338655335753,
+ 6.962476641411281,
+ 8.427211330213815,
+ 4.969732236620017,
+ 3.8454148243085062,
+ -3.537999015720301,
+ 4.987898651494227,
+ -4.822563400699818,
+ 2.961618866478378,
+ -0.20356718108646188,
+ -2.624368696807535,
+ 3.050265450849226,
+ 5.539036927815357,
+ 2.151007040668963,
+ 0.6223159181626673,
+ -3.2662490631868524,
+ 4.889197884097028,
+ -4.88872042677007,
+ 2.229921272047074,
+ 4.591181321242887,
+ 2.242967697737153,
+ 0.7477363880452724,
+ -3.5346130193573226,
+ 4.983627626619915,
+ -4.818760694797789,
+ 2.959700734479762,
+ -0.20406236243690332,
+ -2.621645848924902,
+ 2.9278942222265933,
+ 4.6188445852583415,
+ -4.746299698458068,
+ -2.9834094777094156,
+ 2.778569324876714,
+ 0.15509847689930167,
+ -2.9236465972144403,
+ 3.041467405636068,
+ 5.2843158985444765,
+ -4.884955783248571,
+ -2.878089371628862,
+ 2.470106865555968,
+ 0.37822554653732937,
+ -3.100494265082644,
+ 4.874867381611443,
+ -4.940771486723477,
+ 3.4061685737860303,
+ -3.2802646533729884,
+ -3.464776019529965,
+ -4.820947119743915,
+ -4.902425407110338,
+ -7.126051215215259,
+ -7.053571149852942,
+ 4.845052007183072,
+ -4.971955542895585,
+ 3.4901837508469025,
+ -0.7131317839584312,
+ -2.168643973154916,
+ 4.351703856061515,
+ -3.354372156428752,
+ -6.267315268973378,
+ 2.871602987483653,
+ 1.9653969146887451,
+ -0.49552239365145806,
+ -2.369260378604519,
+ 4.5309359584769,
+ -3.331373713012698,
+ -5.829953970493566,
+ 2.264577970486785,
+ 1.7779164657064823,
+ -0.1366398439544984,
+ -2.6819218909491847,
+ 4.628877726733143,
+ -5.05468263957841,
+ 3.7763532080581736,
+ -1.2732165839453544,
+ -0.9362195950231584,
+ -0.6932083000962601,
+ 5.794431213202043,
+ 3.1588316008256854,
+ -5.014232264956096,
+ 3.5243301840302426,
+ -0.922040344504379,
+ -1.1477543526399752,
+ -1.2249055831936404,
+ 6.677441953716897,
+ 3.418177125764492,
+ -4.927314235035955,
+ 3.358545532111557,
+ -0.7056024030981108,
+ -2.327812855388931,
+ 4.4403735572314345,
+ -5.117728652166673,
+ 7.161221405732185,
+ 8.857238865544728,
+ -2.27309232329572e-15,
+ -2.626463880978373e-15,
+ -3.7057691442375635e-16,
+ 4.3096109914012736e-17,
+ 9.29751008509603e-17,
+ 3.030789764394293e-16,
+ 5.911032657303936e-16,
+ 8.586134758300426e-17,
+ 2.33595804984975e-16,
+ 3.2094607767057474e-17,
+ -1.5104317985218283e-16,
+ -9.904660654709953e-16,
+ 4.7811039405564993e-17,
+ -3.8265375136703055e-16,
+ -2.4691341284707873e-17,
+ 5.646334861286967e-16,
+ 2.460862322345257e-17,
+ 1.7666509932601286e-16,
+ 3.958059231066237e-16,
+ -1.8462671272183575e-16,
+ -3.8267443088234437e-17,
+ 2.2077450549040306e-16,
+ 1.8437855853806984e-16,
+ 1.741215189424123e-16,
+ -2.659385669357984e-16,
+ 2.936491174563248e-16,
+ 9.509992104945589e-17,
+ -1.4268865566539727e-17,
+ -1.5741247056884114e-16,
+ -9.082443125832243e-17,
+ 1.0596183646804283e-16,
+ -2.8401246332008205e-16,
+ -6.935909436257137e-17,
+ 1.7296346608483806e-16,
+ 3.7289302013890483e-16,
+ 4.466775307786349e-16,
+ 6.447872874850851e-17,
+ -2.3946878733410148e-17,
+ 5.707546226615891e-17,
+ -6.539379730114528e-16,
+ -4.607396011920364e-16,
+ 4.028369583133244e-17,
+ -7.422136540073463e-16,
+ 2.43563331366239e-16,
+ 3.537851479889299e-16,
+ -5.517294685728694e-17,
+ 2.2019547906161594e-16,
+ 7.323857143544506e-16,
+ -5.965626577732436e-16,
+ -1.75817239198146e-16,
+ 4.1226681729642894e-16,
+ 4.5908523996693036e-18,
+ -1.9885421925774783e-16,
+ 2.1539783150880838e-16,
+ -5.09543257332665e-17,
+ 8.255262513279215e-17,
+ 1.9604180517506753e-16,
+ 1.8694281843698423e-16,
+ -1.0769891575440419e-16,
+ 2.594038400966295e-16,
+ -5.662878473538027e-16,
+ 8.337980574534518e-17,
+ -4.604087289470152e-16,
+ 2.9712327602904754e-16,
+ 3.975843614236127e-16,
+ 2.0315555844302357e-16,
+ 3.087038046047899e-16,
+ -2.007567346666198e-16,
+ -1.0091603473146936e-17,
+ 2.2251158477676444e-16,
+ 1.6427806965303127e-16,
+ -6.8573272780646e-17,
+ 3.610643373793966e-17,
+ 2.936904764869525e-16,
+ 6.19392842679707e-16,
+ 4.527986673115273e-16,
+ -2.653595405070113e-16,
+ -1.6659417536817975e-16,
+ 2.580803511165446e-17,
+ 1.4849701452916807e-16,
+ -5.045801736573468e-17,
+ -3.067185711346626e-16,
+ 1.8098711802660243e-16,
+ 1.2622776147559202e-16,
+ 1.6055575689654265e-16,
+ 4.8803656140628627e-17,
+ 2.992739456216854e-16,
+ 1.4541835168682227e-16,
+ -1.9670354966510996e-16,
+ 6.716706573930585e-17,
+ 1.467418406669071e-16,
+ -1.4277137372665256e-15,
+ -4.2959625112941487e-16,
+ 3.5425043708349097e-16,
+ 2.5067708463419504e-16,
+ 1.166324663699769e-16,
+ 5.710854949066103e-16,
+ 1.917404659897918e-16,
+ -7.262645778215583e-17,
+ 2.367390913126765e-16,
+ -2.602310207091825e-16,
+ 2.2395462720475734e-16,
+ 4.65289094561078e-17,
+ 2.386416067215485e-16,
+ 8.70194004405785e-17,
+ -1.2579090671458746e-16,
+ 6.121136532892404e-18,
+ -5.637235874548884e-17,
+ 3.1544532659709705e-16,
+ -1.6039032077403204e-16,
+ 5.724089838866952e-17,
+ -1.619619639378828e-16,
+ -2.067951531382569e-16,
+ 1.9370501994460523e-16,
+ -1.5683344414005402e-16,
+ -7.312276614968765e-17,
+ 2.7925617479790214e-16,
+ 2.1060018395600082e-16,
+ -2.654422585682666e-16,
+ -6.059097986950928e-17,
+ -6.236941818649829e-17,
+ 1.1708741570688107e-16,
+ -1.6568427669437142e-16,
+ 1.7714072817823085e-16,
+ -9.417451273916219e-17,
+ -1.0654086289682995e-16,
+ -8.044266833592837e-17,
+ -2.657731308132878e-16,
+ 1.1696333861499811e-16,
+ 1.9033425894845164e-16,
+ -5.227781471335134e-17,
+ 1.4289545081853553e-16,
+ 4.02175213823282e-16,
+ 2.0464448354561902e-16,
+ 1.8429584047681454e-16,
+ -1.431022459716738e-16,
+ 5.525566491854224e-17,
+ 6.716706573930585e-17,
+ 1.7569316210626305e-16,
+ -1.6990289781839186e-16,
+ 3.143286327701505e-17,
+ -4.503171254738683e-16,
+ 2.5539201412574726e-17,
+ 3.932416632077093e-16,
+ 1.528629771997995e-16,
+ -2.5973471234165066e-17,
+ -1.0141234309900118e-16,
+ -7.423945997663423e-18,
+ 2.752857078576476e-16,
+ 1.1836954565633826e-16,
+ -2.27309232329572e-16,
+ -7.047578818951795e-16,
+ -1.682485365932858e-16,
+ -6.336203492156192e-17,
+ -2.500153401441526e-16,
+ -7.949205686634595e-17,
+ -6.005331247134981e-17,
+ -5.0830248641383544e-17,
+ 1.5385559393486312e-16,
+ -7.684507890617626e-17,
+ 1.0654086289682995e-16,
+ 3.158175578727459e-16,
+ -1.2407709188295415e-16,
+ 1.952146245625145e-16,
+ 4.486627642487622e-16,
+ 1.3007415132396359e-17,
+ 2.8699031352527295e-16,
+ -2.1854111783650989e-16,
+ 5.755522702143967e-16,
+ -1.4005460240229873e-16,
+ 1.1472995096110494e-16,
+ -7.874759431504822e-17,
+ 2.26482051717019e-16,
+ 8.486873084794063e-17,
+ -2.1041406831817638e-17,
+ 1.0798842896879775e-16,
+ 7.865453649613601e-17,
+ 6.054962083888163e-17,
+ 1.0323214044661785e-15,
+ 7.633222692639338e-16
+ ],
+ [
+ 6.405197882166403,
+ 5.1717881384194815,
+ -3.7277022910420907,
+ 3.3112785985147952,
+ -1.824459902467378,
+ -0.3755734030454292,
+ 2.345002244243391,
+ -3.5576308644711925,
+ 2.5173326601719603,
+ 4.889564139652431,
+ -1.0750519474556932,
+ -0.9289723033147214,
+ -0.534498009431824,
+ 2.4701312395818147,
+ -3.6306579053965597,
+ 2.3350066085885834,
+ 4.255093409202724,
+ -0.6660740779947429,
+ -0.7712612189114322,
+ -0.792941228325162,
+ 2.6611260265107424,
+ -3.666095842311471,
+ 3.438991026697696,
+ -2.077473231197669,
+ 0.040992788340079585,
+ 1.2201675514595067,
+ 1.5041274690992776,
+ -4.2740371277585805,
+ -2.4270268298440953,
+ 3.3728931294403544,
+ -1.8541345315506397,
+ -0.22155722755742224,
+ 1.3598065665433854,
+ 1.9394993788022796,
+ -4.606910188344074,
+ -2.4508635150130047,
+ 3.2506366747533053,
+ -1.7104219740570648,
+ -0.38110572878431587,
+ 2.4443426328761664,
+ -3.5948008822676734,
+ 3.5822573184101167,
+ -5.310358643213165,
+ -5.356695054828693,
+ -3.5521628600216006,
+ -3.4843445289076644,
+ -2.3089619982284795,
+ -2.1693828587101853,
+ 2.3870743703388007,
+ -3.574028571611479,
+ 3.6031103598153957,
+ -2.3733299029245143,
+ 0.41180944788241425,
+ 1.6856351450348408,
+ -2.0571031424273696,
+ -3.4603558071003557,
+ 3.9551949137479263,
+ 2.2595063002755906,
+ -2.2475449073611347,
+ 0.2491054598113356,
+ 1.9158788868910606,
+ -2.1402818460856823,
+ -3.376208576805739,
+ 3.4704008076453294,
+ 2.1813179525429787,
+ -2.032063871864877,
+ -0.013343437432091916,
+ 2.051475503862129,
+ -3.474628912989915,
+ 3.672198115111725,
+ -2.6806745964603813,
+ 0.6324442834740053,
+ 1.7824757388888337,
+ 3.257462824634,
+ 1.563470502354658,
+ -3.5312483763775906,
+ 3.612400992456276,
+ -2.490944009587257,
+ 0.5463438112077293,
+ 1.7397726471964454,
+ 3.946954290035611,
+ 1.821618659647885,
+ -3.609595366378232,
+ 3.565995686707653,
+ -2.3690225478320888,
+ 0.2829506269880635,
+ 1.797290258076199,
+ -3.298355565675821,
+ 5.228733353538528,
+ 6.348561737880588,
+ 4.089639344040585,
+ 3.192218529101007,
+ -2.8042034742957687,
+ 3.702856891566473,
+ -3.40266178590506,
+ 1.8968430806100554,
+ 0.16849097377521835,
+ -2.1821981476910457,
+ 2.327872355814456,
+ 4.0842430119970885,
+ 1.9582398196024258,
+ 0.6669620779847285,
+ -2.6214054700428817,
+ 3.6525461479122328,
+ -3.4635714985544017,
+ 1.4695286657868307,
+ 3.115384824531427,
+ 1.9680296699259963,
+ 0.7453279378003776,
+ -2.801926878064008,
+ 3.6998087947689133,
+ -3.399803363469658,
+ 1.8952326626063343,
+ 0.1683887710694499,
+ -2.1804419074483077,
+ 2.2294272826403043,
+ 3.5853638017076026,
+ -3.240925033672719,
+ -2.0793419368099864,
+ 1.7557865757069888,
+ 0.429899391159168,
+ -2.3881860938117745,
+ 2.300906243215897,
+ 4.066401168415886,
+ -3.3018021990371533,
+ -1.9881408451062312,
+ 1.519887463523526,
+ 0.5915552860926357,
+ -2.5088960662342603,
+ 3.6448564671343116,
+ -3.5125560671005522,
+ 2.2421474068887965,
+ -1.8569507294477534,
+ -2.0024096257353183,
+ -3.420151487326269,
+ -3.4987362466043344,
+ -5.533741624767099,
+ -5.496335051077929,
+ 3.629466205030888,
+ -3.541587986407844,
+ 2.3080604791710257,
+ -0.2052345531713155,
+ -1.8653955103715196,
+ 3.3344739548601736,
+ -2.446980764420696,
+ -4.634285373438588,
+ 1.7378089777405898,
+ 1.2622140059046763,
+ -0.045242864163328754,
+ -2.0052885204061046,
+ 3.445644430790049,
+ -2.41437527954859,
+ -4.28528391301568,
+ 1.3133006947154593,
+ 1.119464194767263,
+ 0.21730809926404626,
+ -2.2218680199381313,
+ 3.504802170402673,
+ -3.626363978882046,
+ 2.534131255620892,
+ -0.6196889647455601,
+ -0.879277921847958,
+ -0.8648702708568868,
+ 4.275146667309882,
+ 2.365139587082734,
+ -3.5836085894994856,
+ 2.3348635977872925,
+ -0.35933805452948536,
+ -1.0406884821322324,
+ -1.2988437904673187,
+ 4.89522028154113,
+ 2.5382056193393456,
+ -3.4987813020884504,
+ 2.2049321471971517,
+ -0.19968933617122175,
+ -1.9764242708753743,
+ 3.3898406870649427,
+ -3.707327956975455,
+ 5.087848031136069,
+ 6.312107738278935,
+ -1.6860926488854136e-15,
+ -1.9394076641918287e-15,
+ -2.9141572980243165e-16,
+ 3.101927297073854e-17,
+ 8.528232115421714e-17,
+ 2.2582030722697656e-16,
+ 4.657440438979822e-16,
+ 7.279189390466644e-17,
+ 2.2003004293910534e-16,
+ 5.790264287871193e-18,
+ -1.108422020821057e-16,
+ -7.493429169117877e-16,
+ -1.9852334701272664e-18,
+ -3.039061570519823e-16,
+ -1.112557923883822e-17,
+ 4.1309399790898197e-16,
+ 3.331469917057319e-17,
+ 1.5701180495963577e-16,
+ 2.934009632725589e-16,
+ -1.2597960729182611e-16,
+ -2.6397401298098493e-17,
+ 1.7544500792249715e-16,
+ 1.287093033132511e-16,
+ 1.316044354571867e-16,
+ -2.1233726324236218e-16,
+ 2.32768624372422e-16,
+ 7.79204137024952e-17,
+ -6.121136532892404e-18,
+ -1.1886585402387008e-16,
+ -1.0141234309900118e-16,
+ 6.45511070521069e-17,
+ -2.0745948256771354e-16,
+ -1.2795450100429647e-16,
+ 1.0563096422302162e-16,
+ 2.694954435697764e-16,
+ 3.5695428371077367e-16,
+ 5.47386770356966e-17,
+ 6.203854594147707e-19,
+ 7.46944093135384e-17,
+ -5.030085304934961e-16,
+ -3.2632275165216937e-16,
+ -2.2034023566881272e-17,
+ -5.344000347398835e-16,
+ 1.6431942868365892e-16,
+ 2.387243247828038e-16,
+ -3.1805094552663914e-17,
+ 1.4532529386791005e-16,
+ 5.929230630780102e-16,
+ -4.2781781281242586e-16,
+ -1.2200914035157158e-16,
+ 2.6171994581177796e-16,
+ -2.225115847767644e-17,
+ -1.3822188035761092e-16,
+ 1.8479214884434636e-16,
+ 2.249931266144235e-17,
+ 6.373426619721078e-17,
+ 1.3698110943878138e-16,
+ 1.6080391108030856e-16,
+ -7.560430798734672e-17,
+ 1.6626330312315854e-16,
+ -3.9812202882177217e-16,
+ 6.418921553411495e-17,
+ -3.421219013519322e-16,
+ 2.129162896711493e-16,
+ 2.889755469954002e-16,
+ 1.4646266721017046e-16,
+ 2.451763335607174e-16,
+ -1.5120861597469343e-16,
+ 3.8877488789992295e-17,
+ 1.6874484496081762e-16,
+ 1.2800619979258103e-16,
+ -4.241368590865649e-17,
+ 3.7181768534258594e-17,
+ 2.12833571609894e-16,
+ 4.350970022028925e-16,
+ 3.2301402920195726e-16,
+ -1.7966362904651759e-16,
+ -7.940933880509064e-17,
+ 6.948317145445432e-18,
+ 1.3503723499928177e-16,
+ -4.6983858793011966e-17,
+ -2.1374347028370233e-16,
+ 1.2159555004529507e-16,
+ 4.21034931789491e-17,
+ 1.2912289361952762e-16,
+ 4.053185001509835e-17,
+ 2.362427829451447e-16,
+ 1.2639319759810263e-16,
+ -5.724089838866952e-17,
+ 6.121136532892404e-18,
+ 1.9719985803264177e-16,
+ -1.1289361000123722e-15,
+ -3.3112039920497693e-16,
+ 2.629141878211514e-16,
+ 2.01563235763859e-16,
+ 8.826017135940804e-17,
+ 4.4262434577712506e-16,
+ 1.7197084934977443e-16,
+ -8.677124625681259e-17,
+ 1.5823965118139417e-16,
+ -1.9573161244536015e-16,
+ 1.0823658315256366e-16,
+ 2.1548054957006368e-17,
+ 1.9703442191013117e-16,
+ 1.1249656330721176e-16,
+ -6.356883007470018e-17,
+ 5.542110104105285e-18,
+ -4.291516415501676e-17,
+ 2.5800797281294624e-16,
+ -1.1994118882018901e-16,
+ 3.8298462361205175e-17,
+ -1.1861769984010417e-16,
+ -1.6675961149069035e-16,
+ 1.2610368438370907e-16,
+ -1.0389388493666026e-16,
+ -1.8363409598677214e-17,
+ 2.306179547797841e-16,
+ 1.4856163801452377e-16,
+ -1.8255876119045318e-16,
+ -5.804739948590872e-17,
+ -6.005331247134981e-17,
+ 7.59145007170541e-17,
+ -6.906958114817781e-17,
+ 1.3685703234689843e-16,
+ -4.075932468355043e-17,
+ -6.782881022934827e-17,
+ -5.208135931787e-17,
+ -2.1101377426227734e-16,
+ 8.99972506457694e-17,
+ 1.3953502958003886e-16,
+ -2.0017770823783267e-17,
+ 1.2310515466320434e-16,
+ 3.686743990148844e-16,
+ 1.317698715796973e-16,
+ 1.6609786700064793e-16,
+ -1.0356301269163905e-16,
+ 3.143286327701505e-17,
+ 1.0484514264109624e-17,
+ 1.312735632121655e-16,
+ -1.2010662494269962e-16,
+ 1.0257039595657542e-17,
+ -3.448515973733572e-16,
+ 2.2348739940563556e-17,
+ 3.059741085833649e-16,
+ 9.793818452627846e-17,
+ -1.923194924185789e-17,
+ -8.002972426450542e-17,
+ -1.3731198168380258e-17,
+ 1.8652922813070772e-16,
+ 1.0108147085397997e-16,
+ -1.37146545561292e-16,
+ -5.169878828456423e-16,
+ -1.2060293331023143e-16,
+ -4.532949756790591e-17,
+ -1.559235454662457e-16,
+ -7.146840492458159e-17,
+ -4.599124205794833e-17,
+ -5.273276405025551e-17,
+ 1.4244050148163137e-16,
+ -4.946540063067105e-17,
+ 7.610061635487853e-17,
+ 2.127508535486387e-16,
+ -6.923501727068842e-17,
+ 1.4574922393184348e-16,
+ 2.481541837659083e-16,
+ 5.025122221259642e-18,
+ 1.914302732600844e-16,
+ -1.531938494448207e-16,
+ 3.871205266748169e-16,
+ -9.047029455857316e-17,
+ 8.677124625681259e-17,
+ -8.743299074685501e-17,
+ 1.6287186261169112e-16,
+ 6.596765385110396e-17,
+ -1.7494869955496535e-17,
+ 6.108728823704109e-17,
+ 5.744769354180777e-17,
+ 3.0605682664462024e-17,
+ 7.467786570128733e-16,
+ 6.481787279965524e-16
+ ],
+ [
+ 0.7011203763250163,
+ 0.7492967892233553,
+ 0.29899080291496727,
+ -2.285884741274613,
+ 3.5306010631643883,
+ -3.602882011999161,
+ 2.4716845732765975,
+ -0.5382639690103491,
+ -0.9256997274753244,
+ -1.0690262081886972,
+ 4.886306497572591,
+ 2.515261774234121,
+ -3.556782620832314,
+ 2.3469244127751185,
+ -0.2773858691838968,
+ -1.0837810342672844,
+ -1.2466124193656134,
+ 4.284194693502379,
+ 2.4072786182202375,
+ -3.466584191369057,
+ 2.1368083430321843,
+ -0.11762231715697938,
+ -2.044274555075481,
+ 3.4217037188481596,
+ -3.692706634344867,
+ 1.8672908773364119,
+ 3.695748863826542,
+ 1.066216737833311,
+ 0.20751127327853233,
+ -2.1765198057567656,
+ 3.519444333037431,
+ -3.641628982555462,
+ 1.775168230161023,
+ 3.838435988293926,
+ 1.4681983333981434,
+ 0.39541640487997803,
+ -2.38445323760838,
+ 3.571317581529819,
+ -3.6013850285956126,
+ 2.3731122695738014,
+ -0.4131750147771583,
+ -1.683253823915499,
+ 4.937631213602285,
+ 4.76548748445645,
+ -0.32391495190131486,
+ -0.5573648007306082,
+ -5.725583162067738,
+ -5.874413964280698,
+ 2.430897554503622,
+ -0.4846757336866676,
+ -1.6156897145447426,
+ 3.2563900997176,
+ -3.733976991621835,
+ 3.002713724898837,
+ -0.9600190614785646,
+ -2.478560846803998,
+ -3.1001306761469003,
+ -1.3218489660478594,
+ 3.3323729455225095,
+ -3.720478835080677,
+ 2.8389265430113353,
+ -0.7795471741608369,
+ -2.0243613745617677,
+ -3.072700387432045,
+ -1.4412575246436607,
+ 3.4433175034288994,
+ -3.6835878180081094,
+ 2.73194054736186,
+ -0.7767071456844996,
+ -1.3435892047640383,
+ 3.031510277227499,
+ -2.4246649933581246,
+ -4.144363150418816,
+ 2.187512222442734,
+ 1.5720626067139405,
+ -0.6195815083736255,
+ -1.5850892905001803,
+ 3.1778354062424485,
+ -2.5631851838511124,
+ -4.8030499210634,
+ 2.1757083268343806,
+ 1.46914453990823,
+ -0.3593874420461112,
+ -1.731316351318581,
+ 3.2591077330124336,
+ -3.723678210179441,
+ 2.925690883271046,
+ -1.1789448389705794,
+ 0.5532785206868628,
+ 0.8960858493952997,
+ 4.4765247727069335,
+ 3.7811543635462916,
+ -1.9621686564696452,
+ -0.09459332350511766,
+ 2.117906365438492,
+ -3.5021325971980812,
+ 3.6536240252881256,
+ -2.621785705092469,
+ 0.6667467697197532,
+ 1.958108738393143,
+ 4.086167613928062,
+ 2.328872462328528,
+ -2.1836340679294777,
+ 0.16953216948728975,
+ 1.9844490119379337,
+ -2.1650638327453566,
+ -3.4324959313698318,
+ 3.4166422506424805,
+ 2.1581486032665578,
+ -1.9649559636728682,
+ -0.09309501570019338,
+ 2.118221307564123,
+ -3.504236756734915,
+ 3.656664273679506,
+ -2.6248658554614006,
+ 0.5822782285114736,
+ 1.6993260747678551,
+ 3.3168441109254894,
+ 1.603284346112454,
+ -3.5576720719081805,
+ 3.5913980607733054,
+ -2.4312633053589425,
+ 0.4335723676369713,
+ 1.5384202465397827,
+ 3.7997437203310493,
+ 1.7499089407805812,
+ -3.6306890910858063,
+ 3.5416446337482883,
+ -2.3071426022861905,
+ 0.2034596563975778,
+ 1.8673081235904851,
+ -3.3360350370793483,
+ 6.665024114119741,
+ 6.571636882707141,
+ 1.9044271204549597,
+ 1.6993060575018384,
+ -2.646510768133587,
+ -2.8351067519387603,
+ 0.2810449594636627,
+ 1.8007224603501715,
+ -3.29717284225676,
+ 3.715349670663001,
+ -2.876089626328648,
+ 1.104066814768506,
+ 0.556912497798783,
+ 0.3286240705852376,
+ -4.553406529398233,
+ -2.2849779573174325,
+ 3.693469508666623,
+ -2.769068756464843,
+ 0.850740924210462,
+ 0.7338430032145776,
+ 0.5980280340593728,
+ -4.243541331361038,
+ -2.3221961838908953,
+ 3.6424476845624127,
+ -2.5858041129930656,
+ 0.6941319741478995,
+ 1.5355240205852876,
+ -3.146978996795789,
+ 3.74120797824402,
+ -2.0863546380800053,
+ -3.9865299284865574,
+ -0.41197913810975084,
+ 0.16990671384150158,
+ 1.680094326478317,
+ -3.281194048823459,
+ 3.730536798228783,
+ -2.132288279390357,
+ -4.424750653253216,
+ -0.8335157522759397,
+ -0.057280874877224656,
+ 1.9102624937695674,
+ -3.3563511734848452,
+ 3.7146946947884807,
+ -2.791603465642839,
+ 0.9828961055467801,
+ 1.1466457070765155,
+ -2.744125914901032,
+ -3.17382848641713,
+ -2.3425754947501744e-16,
+ -1.7006833394090247e-16,
+ -2.6171994581177796e-16,
+ -2.7892530255288093e-16,
+ 3.098618574623641e-16,
+ -2.6262984448558626e-17,
+ 1.8235196603731493e-16,
+ 4.507307157801448e-16,
+ 9.091542112570327e-16,
+ -2.0753961568955462e-16,
+ -7.328820227219825e-17,
+ -1.7238443965605094e-16,
+ -2.6887505811036165e-16,
+ -1.0736804350938298e-16,
+ 2.1754850110144625e-17,
+ -2.2912902967718867e-16,
+ 2.235869195730834e-16,
+ 2.540711100850767e-16,
+ -2.5146290621612038e-17,
+ -2.990257914379195e-17,
+ 2.3905519702782497e-17,
+ 4.7314731038033177e-17,
+ -9.049355901330122e-17,
+ -1.2937104780329353e-16,
+ -2.6002422555604425e-16,
+ 1.166324663699769e-16,
+ 8.784658105313153e-17,
+ 5.459392042849982e-17,
+ -1.8661194619196302e-16,
+ -5.049317254176819e-16,
+ -2.2499312661442353e-16,
+ 6.948317145445432e-17,
+ -7.102172739380295e-16,
+ -4.519508071836605e-16,
+ -8.883919778819516e-17,
+ 4.043258834159199e-16,
+ -2.8785885316845363e-17,
+ 7.403266482349598e-17,
+ 4.0928896709123804e-16,
+ -2.4434915294816438e-16,
+ 1.2937104780329353e-16,
+ -5.712509310291209e-16,
+ 1.31687153518442e-16,
+ -3.5705251140851435e-16,
+ -3.3298155558322124e-16,
+ 8.478601278668532e-17,
+ -2.752029897963923e-16,
+ 2.3161057151484772e-17,
+ 3.030789764394293e-16,
+ 9.210656120777962e-17,
+ -4.451886056760395e-16,
+ -2.265647697782743e-16,
+ -1.3896634290890865e-17,
+ 1.0687173514185116e-16,
+ 8.146074672422216e-16,
+ 2.5642598989143855e-17,
+ -7.444625512977249e-17,
+ -4.896909226313923e-17,
+ 2.8785885316845363e-17,
+ -3.06553135012152e-16,
+ 2.1126192844604324e-16,
+ -3.871205266748169e-17,
+ 5.0292581243224076e-17,
+ -1.2788212270069808e-16,
+ -8.023651941764367e-17,
+ -1.065822219274576e-16,
+ 4.635520152747167e-16,
+ 1.1812139147257235e-16,
+ 4.630557069071849e-16,
+ 4.849346341092124e-17,
+ 1.2686882645032062e-16,
+ 2.1250269936487279e-16,
+ 1.7329433832985927e-16,
+ -5.39321759384574e-17,
+ -2.323136750355178e-16,
+ -2.0489263772938493e-16,
+ 2.3715268161895303e-16,
+ 3.8629334606226387e-16,
+ -3.5883094972550336e-16,
+ 3.186299719554262e-16,
+ -9.953050720544304e-17,
+ 5.00775142839603e-16,
+ -2.2300789314429626e-16,
+ -6.366809174820653e-16,
+ 1.1266199942972237e-16,
+ 8.834288942066334e-17,
+ 2.481541837659083e-16,
+ 2.1754850110144625e-16,
+ 1.290401755582723e-15,
+ -5.379982704044892e-16,
+ 2.3467113978129395e-16,
+ -1.3565762045869652e-17,
+ 1.5416578666457053e-17,
+ 3.523789409475898e-17,
+ 1.73563172028939e-16,
+ 7.556294895671907e-17,
+ -1.5021599923962983e-16,
+ 5.347722660155323e-17,
+ -9.520848850485347e-17,
+ -4.748016716054378e-17,
+ 5.717885984272804e-17,
+ -7.224595470038143e-16,
+ -2.0716738441390576e-16,
+ 2.1184095487483036e-16,
+ 2.6775836428341506e-16,
+ 3.259091613458929e-17,
+ 2.0514079191315083e-17,
+ -8.371067799036639e-17,
+ -1.313562812734208e-16,
+ -5.98051582875839e-17,
+ -8.768114493062093e-18,
+ -7.874759431504822e-17,
+ -4.0035541647566533e-17,
+ -2.681305955590639e-16,
+ 1.782264027322067e-16,
+ 1.7714072817823085e-16,
+ 2.240832279406152e-16,
+ -5.646541656440105e-17,
+ -2.0307284038176827e-16,
+ -2.646977960169688e-18,
+ -6.72084247699335e-17,
+ -1.783814990970604e-16,
+ 6.533899658556365e-16,
+ 2.7751909551154075e-17,
+ 3.019054139453697e-16,
+ -6.989676176073084e-17,
+ 6.394106135034904e-17,
+ 2.2623389753325304e-17,
+ 2.6001388579838734e-16,
+ 1.3582305658120714e-16,
+ 3.8587975575598736e-16,
+ 1.9380841752117436e-16,
+ 6.91522992094331e-16,
+ -2.577494788715234e-16,
+ 3.1631386624027773e-16,
+ 2.989430733766642e-16,
+ -1.5211851464850176e-16,
+ 1.579914969976283e-17,
+ -2.1672132048889323e-16,
+ 1.1712877473750872e-16,
+ -3.0688400725717327e-17,
+ -3.077111878697263e-17,
+ -6.29484446152854e-17,
+ 1.3499587596865412e-16,
+ -5.340278034642347e-16,
+ 1.1894857208512538e-16,
+ -9.770037010016947e-17,
+ -4.481767956388873e-16,
+ -1.0951871310202085e-16,
+ 1.0058516248644815e-16,
+ 4.01223956118846e-16,
+ 5.136791603954301e-17,
+ 5.194694246833013e-17,
+ 5.9557004103817985e-18,
+ 5.409761206096801e-16,
+ -1.3292792443727155e-16,
+ 5.624828165360588e-17,
+ 1.3139764030404845e-16,
+ 5.527220853079331e-16,
+ 1.9306395496987663e-16,
+ 2.522900868286734e-18,
+ -2.5125611106298216e-16,
+ 2.0981436237407545e-16,
+ -8.1146418091452e-17,
+ -1.243417896789711e-15,
+ -3.929107909626881e-17,
+ -2.2151896804170079e-16,
+ 7.46944093135384e-17,
+ -5.635995103630054e-16,
+ -6.791152829060357e-17,
+ 4.9589477722554e-17,
+ -4.331738072787067e-16,
+ -1.821658503994905e-16,
+ -2.0447904742310842e-16,
+ 6.59262948204763e-17,
+ -2.1457065089625535e-16,
+ -4.6983858793011966e-17,
+ -1.9935052762527964e-16,
+ 4.1789164546178953e-16,
+ -3.4146015686188977e-16
+ ],
+ [
+ 0.18845130209860705,
+ 0.39837191398040317,
+ 0.8405980563190786,
+ -3.4620387214954964,
+ 4.959986784807175,
+ -4.798190941475861,
+ 3.046029046701631,
+ -0.304718989021893,
+ -1.5404577037808211,
+ -2.012302110946215,
+ 6.693896473555362,
+ 3.4899374067002933,
+ -4.717527839077236,
+ 2.863620058601547,
+ 0.05450554043459436,
+ -1.7314646563813072,
+ -2.1763068927943006,
+ 5.836502858370553,
+ 3.326242127670646,
+ -4.565881295254328,
+ 2.558736956962273,
+ 0.273404358538218,
+ -3.15233765994214,
+ 4.843401931857861,
+ -4.96794917186014,
+ 2.366093324762747,
+ 4.790187076200342,
+ 1.9360785196332266,
+ 0.5645589658264116,
+ -3.3222984610839106,
+ 4.948483249640735,
+ -4.8683975137570865,
+ 2.2258421131766775,
+ 4.930723973578449,
+ 2.5155330213221925,
+ 0.8199154032350225,
+ -3.587377593465998,
+ 5.001288996612463,
+ -4.795533272111779,
+ 2.9018546976216797,
+ -0.13222003460693824,
+ -2.6839734125107877,
+ 7.261357792983345,
+ 7.035438698538908,
+ -0.01726990559033899,
+ -0.33901685249431635,
+ -7.423648210712552,
+ -7.64010278055094,
+ 2.9862617078874547,
+ -0.23076470043526975,
+ -2.595620252059172,
+ 4.656033638317473,
+ -5.067060161697207,
+ 3.8373606279453294,
+ -1.0481816543691513,
+ -2.9239998345348575,
+ -4.632197131141634,
+ -2.042549137713399,
+ 4.74335568747153,
+ -5.029769163874706,
+ 3.590124623404447,
+ -0.7958310752094755,
+ -2.3234410810849258,
+ -4.538271376926721,
+ -2.1938356154878287,
+ 4.867107318817234,
+ -4.949298407504289,
+ 3.430370341541864,
+ -0.6349640673634168,
+ -2.2380409512860884,
+ 4.389964694935071,
+ -3.333269149460731,
+ -5.779958383427581,
+ 2.556697753074092,
+ 1.9288894500720282,
+ -0.41711780429530493,
+ -2.5555875376448607,
+ 4.5643011032993925,
+ -3.5093111685585106,
+ -6.660231110740852,
+ 2.459680743951798,
+ 1.7601801781816793,
+ -0.058186489927867076,
+ -2.7466604605240055,
+ 4.659185032106567,
+ -5.03805137963159,
+ 3.72069354899245,
+ -1.1963326290669378,
+ 0.1282135123682998,
+ 0.45715753898131767,
+ 5.535270169857724,
+ 4.706289793775947,
+ -2.3071725890986503,
+ -0.5629560795740035,
+ 3.2470267970056126,
+ -4.930241278666552,
+ 4.890771207827335,
+ -3.266929921472173,
+ 0.6221443960027813,
+ 2.151058785873968,
+ 5.541614085691215,
+ 3.0515852786919155,
+ -2.6263448785992725,
+ -0.20204091035448016,
+ 3.0748259773026767,
+ -3.082879637887938,
+ -4.980066648204565,
+ 4.360453342905226,
+ 2.8129027034474237,
+ -2.3111881642558956,
+ -0.5605839661646679,
+ 3.2471151210115092,
+ -4.9328766133611275,
+ 4.894862963392412,
+ -3.271277332488504,
+ 0.5202028666275357,
+ 1.861965364703772,
+ 4.83940250324173,
+ 2.399604564647099,
+ -4.988280545104477,
+ 4.776366301996385,
+ -2.9866184560771822,
+ 0.3119239763708071,
+ 1.5890853531438056,
+ 5.495598715148985,
+ 2.585938608693187,
+ -5.058651422991611,
+ 4.690469435318665,
+ -2.805590373301508,
+ -0.15553609296545823,
+ 2.9231484258758083,
+ -4.747635187961491,
+ 9.17656900186848,
+ 9.068163015406567,
+ 2.9621622574016566,
+ 2.6957220176015,
+ -2.9057044853989513,
+ -3.163586348039458,
+ -0.04944719483845852,
+ 2.837074018246766,
+ -4.703162886793137,
+ 5.017711313748356,
+ -3.6460097770332207,
+ 1.091444088951047,
+ 1.0365150954343187,
+ 0.9871306217330276,
+ -6.324462354462086,
+ -3.2196465582799947,
+ 4.969476038486035,
+ -3.4857062222218946,
+ 0.7378802244934972,
+ 1.2704780944203282,
+ 1.3081418472886157,
+ -5.858032550086892,
+ -3.2528680695589935,
+ 4.8699984042432245,
+ -3.213901237101304,
+ 0.5204290939562829,
+ 2.4906149104954767,
+ -4.527908411938317,
+ 5.101247714970289,
+ -2.7006418365735367,
+ -5.256237350901335,
+ -1.0568922576501605,
+ -0.05001208945436056,
+ 2.6798911012010715,
+ -4.684842649418598,
+ 5.056262904229222,
+ -2.743380974106121,
+ -5.794145979692269,
+ -1.6964345861177237,
+ -0.37572967657442896,
+ 2.9792602140437716,
+ -4.77056286484602,
+ 5.016180883860479,
+ -3.5193905754811685,
+ 0.9220695404219433,
+ 1.977478590814291,
+ -4.2870321040283725,
+ -5.008664199024912,
+ -1.948837523174933e-16,
+ -3.970466940254533e-18,
+ -3.125088354225338e-16,
+ -3.814956985094563e-16,
+ 4.049876279059623e-16,
+ -4.566036981292712e-17,
+ 1.8260012022108083e-16,
+ 5.659569751087815e-16,
+ 1.191300348320042e-15,
+ -2.7644376071522185e-16,
+ -9.148617574836485e-17,
+ -1.1580528575742387e-16,
+ -3.5889298827144483e-16,
+ -1.0372844881414966e-16,
+ 3.176373552203626e-17,
+ -3.7289302013890483e-16,
+ 2.8198587081932713e-16,
+ 3.122968703905671e-16,
+ -6.352747104407253e-17,
+ -7.403266482349598e-18,
+ 3.3118243775091846e-17,
+ 3.2094607767057474e-17,
+ -1.3036366453835716e-16,
+ -1.892589241521327e-16,
+ -3.159002759340012e-16,
+ 1.2407709188295415e-16,
+ 1.0620999065180874e-16,
+ 7.378451063973007e-17,
+ -2.236696376343387e-16,
+ -6.422643866167982e-16,
+ -3.206152054255535e-16,
+ 1.1547441351240266e-16,
+ -8.52988647664682e-16,
+ -6.146339692181129e-16,
+ -1.4789989352448135e-16,
+ 5.075580238625378e-16,
+ -6.5843576759221e-17,
+ 8.271806125530276e-17,
+ 5.442848430598922e-16,
+ -2.5195921458365223e-16,
+ 1.7271531190107215e-16,
+ -7.260991416990476e-16,
+ 2.2813641294212503e-16,
+ -4.899390768151583e-16,
+ -4.668193786943012e-16,
+ 9.115530350334364e-17,
+ -3.8017220952937147e-16,
+ -3.90429249125029e-17,
+ 4.526332311890167e-16,
+ 1.3753945635225468e-16,
+ -6.049999000212843e-16,
+ -2.9503464498235115e-16,
+ -4.301339185275744e-18,
+ 1.2473883637299657e-16,
+ 1.0892314306098268e-15,
+ 3.159829939952566e-17,
+ -1.1133851044963753e-16,
+ -8.40415502353876e-17,
+ 4.20207751176938e-17,
+ -4.286449934249789e-16,
+ 3.1978802481300045e-16,
+ -4.3344264097778644e-17,
+ 9.694556779121483e-17,
+ -1.9951596374779025e-16,
+ -1.4177875699158894e-16,
+ -1.8264147925170849e-16,
+ 6.088876489002836e-16,
+ 1.7536228986124184e-16,
+ 6.306424990104282e-16,
+ 5.3559944662808536e-17,
+ 1.3124254393919475e-16,
+ 2.7942161092041275e-16,
+ 2.1721762885642504e-16,
+ -7.709323308994217e-17,
+ -3.7099050473003286e-16,
+ -2.874452628621771e-16,
+ 3.4146015686188977e-16,
+ 5.31380825504065e-16,
+ -4.807573720158197e-16,
+ 4.1789164546178953e-16,
+ -1.3159926557835825e-16,
+ 6.865599084190129e-16,
+ -3.1664473848529894e-16,
+ -8.627493788928078e-16,
+ 1.4235778342037606e-16,
+ 9.661469554619362e-17,
+ 2.934836813338142e-16,
+ 2.832266417381567e-16,
+ 1.757593365552673e-15,
+ -7.702705864093793e-16,
+ 2.792148157672745e-16,
+ 1.5451733842490555e-16,
+ 5.969142095335786e-17,
+ 1.1580528575742387e-18,
+ 1.9112008053037702e-16,
+ 1.0538281003925571e-16,
+ -2.6469779601696886e-16,
+ 5.434576624473391e-17,
+ -1.1696333861499811e-16,
+ -8.850832554317395e-17,
+ 8.569591146049365e-17,
+ -9.816979509779332e-16,
+ -2.7557522107204117e-16,
+ 2.368218093739318e-16,
+ 3.182163816491497e-16,
+ 3.813302623869457e-17,
+ 2.6304343479186277e-17,
+ -1.133237439197648e-16,
+ -2.1465336895751066e-16,
+ -6.749793798432706e-17,
+ -1.0587911840678753e-17,
+ -9.00799687070247e-17,
+ -3.308722450212111e-17,
+ -3.6453849595211925e-16,
+ 2.529104722880882e-16,
+ 2.3525016621008107e-16,
+ 2.752857078576476e-16,
+ -9.311985745815708e-17,
+ -2.5319998550248177e-16,
+ -9.098986738083304e-19,
+ -9.189976605464136e-17,
+ -2.416194569267394e-16,
+ 8.735854449172524e-16,
+ 1.8218652991480435e-17,
+ 4.1069258919316396e-16,
+ -1.0025429024142694e-16,
+ 9.686284972995953e-17,
+ 3.7471281748652154e-17,
+ 3.2986928852849047e-16,
+ 1.5848780536516008e-16,
+ 5.085506405976014e-16,
+ 2.628779986693522e-16,
+ 8.488527446019169e-16,
+ -3.272326503259777e-16,
+ 4.056493723960047e-16,
+ 4.106124560713229e-16,
+ -2.157287037538296e-16,
+ -1.9004474573405808e-17,
+ -3.239239278757656e-16,
+ 1.7238443965605094e-16,
+ -5.97224402263286e-17,
+ -1.703992061859237e-17,
+ -7.465305028291075e-17,
+ 1.5550995515996918e-16,
+ -7.550504631384036e-16,
+ 1.624582723054146e-16,
+ -1.1936733227023035e-16,
+ -5.878772613414368e-16,
+ -1.5981129434524492e-16,
+ 1.2639319759810263e-16,
+ 5.55575858421241e-16,
+ 1.0951871310202085e-16,
+ 7.940933880509064e-17,
+ 1.290401755582723e-17,
+ 7.193162606761128e-16,
+ -1.711436687372214e-16,
+ 7.543887186483611e-17,
+ 2.1101377426227734e-16,
+ 7.193162606761128e-16,
+ 2.5030485335854617e-16,
+ -1.4889251025954496e-18,
+ -3.227245159875637e-16,
+ 2.8707303158652825e-16,
+ -1.2722037821065566e-16,
+ -1.7195430573752337e-15,
+ -6.534726839168919e-17,
+ -3.1350145215759744e-16,
+ 1.2697222402688975e-16,
+ -7.854079916190997e-16,
+ -7.411538288475128e-17,
+ 4.7030387702468074e-17,
+ -5.470972571425725e-16,
+ -2.6138907356675675e-16,
+ -2.833920778606673e-16,
+ 8.685396431806789e-17,
+ -2.8206858888058244e-16,
+ -6.427193359537025e-17,
+ -2.6817195458969157e-16,
+ 5.075580238625378e-16,
+ -5.714163671516315e-16
+ ],
+ [
+ -1.636032324193996,
+ -1.4654147778652888,
+ 0.3744454254201139,
+ 1.221806845701292,
+ -2.4951775379762595,
+ 2.8836710494540787,
+ -2.365530083594164,
+ 1.005754151307907,
+ 0.30405196782424176,
+ 0.015837474431779998,
+ -3.6704568111859173,
+ -1.8258687956632125,
+ 2.8750976196169233,
+ -2.2874417129462485,
+ 0.813325850815164,
+ 0.45951855985480267,
+ 0.2631520561887738,
+ -3.2649291296187464,
+ -1.7674112745544053,
+ 2.8468036485862056,
+ -2.1549867018255777,
+ 0.6924704997613679,
+ 1.0097559209480844,
+ -2.366565067575608,
+ 2.8840373462377356,
+ -1.6784943647002029,
+ -3.1680359886396228,
+ -0.11774349117805374,
+ 0.24687034309272643,
+ 1.1260894580247784,
+ -2.4805010025030096,
+ 2.8890638344548716,
+ -1.6294806149322674,
+ -3.3541503357406732,
+ -0.3783642077824267,
+ 0.10275925202354406,
+ 1.309806388790289,
+ -2.5465925911669127,
+ 2.883420043712371,
+ -2.3045859226490895,
+ 0.9133914803370068,
+ 0.7009087336442582,
+ -2.9946432338111824,
+ -2.851094575616521,
+ 0.856112248472046,
+ 1.0286887609534725,
+ 4.9043796685851015,
+ 4.998126442835864,
+ -2.3404533456371137,
+ 0.9662452887987816,
+ 0.6441147253272522,
+ -2.1861771667787813,
+ 2.8538346359816513,
+ -2.672632448082529,
+ 1.1047606464669697,
+ 2.5392525207568726,
+ 1.7751543835414647,
+ 0.6599773900935806,
+ -2.2664557059383488,
+ 2.871602098215552,
+ -2.5815570623250395,
+ 0.9765506136513957,
+ 2.1669498569938246,
+ 1.8355164212610966,
+ 0.7673383249600423,
+ -2.391254893484973,
+ 2.8860075661967093,
+ -2.5210421643706717,
+ 1.179697405234326,
+ 0.41788092204922617,
+ -1.9568969511637995,
+ 1.8045913998309329,
+ 2.965865438257752,
+ -2.275507358864978,
+ -1.503804405301353,
+ 1.0662923837680314,
+ 0.619279726672512,
+ -2.103452488314915,
+ 1.9283622289409164,
+ 3.4923881581149825,
+ -2.382816963076775,
+ -1.4663285601753342,
+ 0.87352054150201,
+ 0.7415169703539448,
+ -2.1890388537030248,
+ 2.867540609063419,
+ -2.630836864100368,
+ 1.4670050708656912,
+ -1.3205127924093478,
+ -1.7801649873979235,
+ -4.220870391385003,
+ -3.5208774031474714,
+ 2.0009127990463114,
+ -0.5719834089555488,
+ -1.114535122435408,
+ 2.419929041046295,
+ -2.929252301749425,
+ 2.4157455506102923,
+ -0.9193545458367416,
+ -2.234489193836163,
+ -2.372200466604914,
+ -0.9989037425602092,
+ 2.486462493384262,
+ -0.7708105940818456,
+ -0.9981092758683383,
+ 1.4583490704703903,
+ 2.1792057993661103,
+ -3.026443921123281,
+ -1.8274872560971511,
+ 2.0027074988856963,
+ -0.5726475478472013,
+ -1.115250593328491,
+ 2.421844675462465,
+ -2.9316224718592903,
+ 2.41785743508592,
+ -0.8361064411635377,
+ -1.9460774497713336,
+ -2.0668118170605414,
+ -0.9123254113068261,
+ 2.488453409608482,
+ -2.9234988125060375,
+ 2.3012496955907333,
+ -0.7309574069908208,
+ -1.9005731080005668,
+ -2.4372319218380727,
+ -1.0433475899130795,
+ 2.5850258992421433,
+ -2.9125056453036042,
+ 2.2229123203123446,
+ -0.79711802238184,
+ -0.8983989557681493,
+ 2.230466286994256,
+ -4.940023117268419,
+ -4.841784872453133,
+ -0.915703544885697,
+ -0.7388264772896479,
+ 3.0223262473654287,
+ 3.163523421629662,
+ -0.8554837635644545,
+ -0.8409922064912555,
+ 2.188786007957057,
+ -2.914678989890698,
+ 2.562608937328604,
+ -1.4546375524000874,
+ -0.025217284868016842,
+ 0.5246761400457782,
+ 3.2959049642744516,
+ 1.5879519490241454,
+ -2.923587028993353,
+ 2.502785486626267,
+ -1.2728337813860244,
+ -0.17021707230380206,
+ 0.25326648060720397,
+ 3.1233995283582887,
+ 1.6414339616624631,
+ -2.9286569050764975,
+ 2.3940387261718734,
+ -1.1602682692330206,
+ -0.6175501400154264,
+ 2.0321073869414894,
+ -2.8649624909965903,
+ 1.7935365539358787,
+ 3.2891514745046355,
+ -0.3982432141782347,
+ -0.5339557839796096,
+ -0.7378621026911013,
+ 2.172514630636891,
+ -2.8996891742022513,
+ 1.857049403691672,
+ 3.7080295318098253,
+ -0.1707891921394331,
+ -0.3841191995953373,
+ -0.934558474840833,
+ 2.2528489998315777,
+ -2.915092891743935,
+ 2.514808437485024,
+ -1.368508751808964,
+ -0.29727116317005176,
+ 1.3029067685703222,
+ 1.4346164762930436,
+ 1.1088769701579612e-15,
+ 1.0749212060126595e-15,
+ 2.6800651846718097e-16,
+ 2.663521572420749e-16,
+ -2.842192584732203e-16,
+ -1.6305797824951556e-16,
+ -1.6742135598073278e-16,
+ -2.7458260433697754e-16,
+ -8.026133483602027e-16,
+ 1.3557490239744124e-16,
+ 1.7476775379596935e-16,
+ 2.2598574334948716e-16,
+ 1.7035784715529602e-16,
+ 5.1450634100798315e-17,
+ -6.940045339319902e-17,
+ -5.70754622661589e-18,
+ -1.3028094647710186e-16,
+ -1.2196778132094393e-16,
+ 2.762783245927112e-17,
+ 5.209169907552691e-17,
+ 4.7852398436192645e-17,
+ 4.71699744308364e-17,
+ 2.0514079191315083e-17,
+ 1.0356301269163905e-16,
+ 1.6150701460097863e-16,
+ -2.3797986223150606e-16,
+ -7.593518023236793e-17,
+ -4.350970022028925e-17,
+ 2.776018135727961e-16,
+ 3.8088565280769846e-16,
+ 3.212769499155959e-16,
+ -7.072394237328387e-18,
+ 1.3830459841886623e-16,
+ 3.5800376911295033e-16,
+ 1.8776999904953728e-17,
+ -5.816734067472891e-16,
+ 1.2035477912646553e-16,
+ 7.279189390466644e-17,
+ -3.0771118786972625e-16,
+ 2.4716156703084467e-16,
+ 1.7172269516600852e-16,
+ 2.687406412608218e-16,
+ 6.956588951570963e-17,
+ 2.307833909022947e-16,
+ 1.093119179488826e-16,
+ -7.582661277697034e-17,
+ 1.6055575689654265e-16,
+ -1.985233470127266e-17,
+ -1.4409486270673742e-16,
+ -3.2523707709819357e-17,
+ 2.0706398683733663e-16,
+ 1.2961920198705944e-16,
+ 5.3270431448414976e-17,
+ -1.684139727157964e-16,
+ -6.541344284069342e-16,
+ -5.624828165360588e-17,
+ -2.0927669497591597e-17,
+ 1.2738581433316626e-16,
+ 1.5716431638507526e-17,
+ 1.5683344414005402e-16,
+ 9.347140921849213e-18,
+ 1.1001502146955267e-17,
+ 7.229558553713462e-17,
+ 1.6791766434826462e-17,
+ -5.955700410381799e-17,
+ 1.6990289781839186e-16,
+ -5.64592127098069e-16,
+ -6.038418471637102e-17,
+ -4.012859946647875e-16,
+ -9.802090258753377e-17,
+ -1.555099551599692e-17,
+ -1.1497810514487085e-16,
+ -8.437242248040881e-17,
+ -3.8443218968401955e-17,
+ 2.0348643068804478e-17,
+ -8.54063982461001e-18,
+ -1.8462671272183575e-16,
+ -2.4616895029578104e-16,
+ 2.929873729662824e-16,
+ -2.754511439801582e-16,
+ 1.1770780116629584e-16,
+ -3.2640546971342467e-16,
+ 1.3408597729484579e-16,
+ 4.614840637433341e-16,
+ -1.6605650797002028e-16,
+ -1.31211524666224e-17,
+ -1.589841137326919e-16,
+ -1.7817470394392214e-16,
+ -8.960020395174396e-16,
+ 4.317882797526804e-16,
+ 1.6874484496081765e-17,
+ -1.9256764660234482e-16,
+ 1.4803948025284967e-17,
+ -4.921724644690514e-17,
+ -1.3069453678337837e-16,
+ -1.799945012915388e-16,
+ 1.6973746169588125e-16,
+ -5.999127392540833e-17,
+ 1.3276248831476094e-16,
+ 4.536051684087665e-17,
+ 1.196930346364231e-16,
+ 5.264177418287468e-16,
+ 2.1353667513056407e-16,
+ -9.148617574836485e-17,
+ 3.556876633978019e-18,
+ 8.569591146049365e-17,
+ -3.6065074707312007e-17,
+ 1.360298517343454e-16,
+ 2.4633438641829164e-16,
+ 1.0733702423641224e-16,
+ 4.1028158382630167e-17,
+ 4.173126190330024e-17,
+ -1.2035477912646551e-17,
+ 1.462455322993753e-16,
+ -1.549619480041528e-16,
+ -6.700162961679524e-17,
+ -2.1173755729826123e-16,
+ 1.1166938269465872e-17,
+ 2.9745414827406875e-16,
+ 4.697351903535505e-17,
+ 8.192189991572047e-17,
+ 6.667075737177403e-17,
+ -3.4121200267812387e-16,
+ 1.5675072607879874e-17,
+ -2.494569932306793e-16,
+ 1.2304311611726285e-17,
+ -1.0091603473146936e-16,
+ -2.6883369907973396e-18,
+ -2.1457065089625535e-16,
+ -1.3946265127644047e-16,
+ -2.4641710447954694e-16,
+ -2.271437962070614e-16,
+ -3.258574625576083e-16,
+ 7.481073158717867e-17,
+ -2.779326858178173e-16,
+ -2.8918234214853848e-16,
+ 1.5836372827327712e-16,
+ 1.6212740006039342e-17,
+ 3.0738031562470503e-16,
+ -6.675347543302933e-17,
+ 1.2647591565935793e-16,
+ 6.770473313746532e-17,
+ 1.4475660719677984e-17,
+ -2.50801161726078e-16,
+ 6.504948337117009e-16,
+ -9.214792023840727e-17,
+ 9.29751008509603e-17,
+ 3.95888641167879e-16,
+ -3.838118042246048e-17,
+ -7.47771273747937e-17,
+ -2.582871462696829e-16,
+ 1.1319966682788184e-16,
+ 2.6883369907973396e-17,
+ -4.417144471033167e-17,
+ -4.450231695535289e-16,
+ 1.1018045759206327e-16,
+ -8.503416697045123e-17,
+ -3.3765512604414585e-16,
+ -4.230201652596183e-16,
+ -1.1315830779725419e-16,
+ 3.697497338112034e-17,
+ 3.623051082982261e-17,
+ -8.230447094902624e-17,
+ 3.1184709093249143e-17,
+ 8.70194004405785e-16,
+ 5.2939559203393765e-17,
+ 7.870623528442057e-17,
+ -9.793818452627846e-17,
+ 2.565914260139492e-16,
+ 4.714929491552257e-17,
+ -2.5146290621612038e-17,
+ 3.603198748280988e-16,
+ 1.43433118216695e-16,
+ 1.9041697700970695e-16,
+ -4.9961708998202865e-17,
+ 7.002083885261379e-17,
+ -7.279189390466644e-18,
+ 1.2606232535308142e-16,
+ -9.284275195295183e-16,
+ 5.479244377551255e-16
+ ],
+ [
+ 4.049301619389577,
+ 3.3870618077746513,
+ -1.9233397424407526,
+ 0.374108656270318,
+ 1.2193032042496685,
+ -2.5426169498959577,
+ 2.8831004017460478,
+ -2.364866951054099,
+ 0.8208183313586452,
+ 2.0619895588158665,
+ 2.530434680958932,
+ 1.0914884440165942,
+ -2.601459150578999,
+ 2.8742739745756807,
+ -2.237657683490701,
+ 0.6169495903180865,
+ 1.5915163258985823,
+ 2.374005960957404,
+ 1.110844412342586,
+ -2.689721972212633,
+ 2.8459176568510816,
+ -2.155982191971748,
+ 0.6009018899988917,
+ 1.00723315393856,
+ -2.3661350162718064,
+ 1.8835631479035346,
+ 3.216101959192258,
+ -1.7179019034957927,
+ -1.230796394114815,
+ 0.47981361932029387,
+ 1.1963338208790695,
+ -2.4800197213100814,
+ 1.9029427381083062,
+ 3.5523149752004257,
+ -1.64709418707586,
+ -1.1236522532481126,
+ 0.276827269554618,
+ 1.3094815064603227,
+ -2.544762133561258,
+ 2.8757168633749703,
+ -2.3055403360057527,
+ 0.913008863381275,
+ 0.1832529315759214,
+ 0.046788531564428075,
+ -2.2040106636425327,
+ -2.31565788382071,
+ -4.970605651498193,
+ -4.987622857466242,
+ 2.8806075713016766,
+ -2.3397407461472413,
+ 0.9680705331153819,
+ 0.7349466597313468,
+ -2.1842513897477867,
+ 2.8532396177890123,
+ -1.771883748588003,
+ -3.534635916707072,
+ 0.23394223070802775,
+ 0.4218005568153705,
+ 0.8552699307338775,
+ -2.2661317392659885,
+ 2.8784490572226162,
+ -1.7028522798412613,
+ -3.195968871191265,
+ -0.020900069067034534,
+ 0.3012583916952118,
+ 1.0466451745866634,
+ -2.390852093931454,
+ 2.8851209731226826,
+ -2.4711849151958423,
+ 1.1814219786606515,
+ 0.4179708336707634,
+ -1.200015700123077,
+ -1.6569374810056285,
+ 3.233882773531643,
+ 1.8870995502820775,
+ -2.4013118394128985,
+ 0.9937896972333891,
+ 0.6193536087799352,
+ -1.3372595654663362,
+ -2.103485338831081,
+ 3.613775279507125,
+ 1.9661445662827048,
+ -2.2793197013817075,
+ 0.8730147056947417,
+ 0.7391125273313457,
+ -2.2500253546072,
+ 2.866526166372304,
+ -2.6301535362931734,
+ 3.293310343381023,
+ 4.142532645653586,
+ 5.169942723652192,
+ 4.219537900053446,
+ -2.8548901604257773,
+ 1.9998839330231468,
+ -0.5738542603319764,
+ -1.2009493405786,
+ 2.418174626482046,
+ -2.9284912328799138,
+ 1.735905473284023,
+ 3.551333227710131,
+ 0.365110211962319,
+ -0.10508959404895071,
+ -1.3126850371307948,
+ 2.485946905690379,
+ -0.6927899561191198,
+ -0.5630727551458907,
+ -0.4512258448252006,
+ 3.2977646478671048,
+ 1.8033112877533195,
+ -2.855421048026517,
+ 1.9991420930368866,
+ -0.5720324162341672,
+ -1.2032235129198232,
+ 2.420076430504983,
+ -2.9294990925428857,
+ 1.6264033772378554,
+ 3.1049977512030105,
+ 0.30646924348462257,
+ -0.1400153356190903,
+ -1.3149705197818398,
+ 2.52606157017904,
+ -2.9211566314000827,
+ 1.5711793954563373,
+ 3.272116149607985,
+ 0.5820378611890152,
+ 0.005295070597741405,
+ -1.4952691935059397,
+ 2.5841002625459613,
+ -2.9102702646468215,
+ 2.158537536482638,
+ -0.7963865474748025,
+ -0.9004690123278296,
+ 3.2326294298846223,
+ 3.0910021717407234,
+ -0.6930496643018175,
+ -0.8669244998306315,
+ -4.807584231261727,
+ -4.908695284883464,
+ 2.199860286967321,
+ -0.8554205483915034,
+ -0.8383902593736722,
+ 2.2477783994231926,
+ -2.9136391124819823,
+ 2.5618591828809234,
+ -1.0178720774410934,
+ -2.393542505158666,
+ -1.9444494552388385,
+ -0.7565004470501825,
+ 2.324551273963769,
+ -2.9227083112780887,
+ 2.462712535252596,
+ -0.8860442817017736,
+ -2.0245773617174163,
+ -1.9842285560645452,
+ -0.8605984272648968,
+ 2.4384763775787497,
+ -2.9277522348766483,
+ 2.394592748476321,
+ -1.073155888149984,
+ -0.6150254188064604,
+ 2.0314658841734485,
+ -1.8325342994519005,
+ -3.043420031282889,
+ 2.138216580210224,
+ 1.43813009692028,
+ -0.955493268631417,
+ -0.8122171733593926,
+ 2.171824128763814,
+ -1.9527063648440013,
+ -3.5684226584895096,
+ 2.216256149515497,
+ 1.38964270938011,
+ -0.7610587588875155,
+ -0.9343438225036426,
+ 2.250487115761052,
+ -2.9218036568382693,
+ 2.5151974360309,
+ -1.368119833886389,
+ 1.0988277328458447,
+ 1.511166319578162,
+ -1.0587911840678754e-15,
+ -9.21810074629094e-16,
+ -3.032444125619399e-16,
+ -1.2722037821065566e-16,
+ 1.5501364679243736e-16,
+ 9.942710962887391e-17,
+ 3.330332543715058e-16,
+ 1.890934880296221e-16,
+ 6.093012392065601e-16,
+ -1.0124690697649058e-16,
+ -7.514935865044256e-17,
+ -4.025888041295585e-16,
+ -1.8851446160083498e-16,
+ -2.748100790054296e-16,
+ -3.763671787116276e-17,
+ 3.2094607767057474e-17,
+ 9.988205896577808e-17,
+ 2.179000528617813e-16,
+ 2.188719900815311e-16,
+ -1.5675072607879874e-17,
+ 3.4855323061453204e-17,
+ 1.6063847495779795e-16,
+ 4.0035541647566533e-17,
+ 1.290401755582723e-17,
+ -2.9391795115540456e-16,
+ 1.462455322993753e-16,
+ 5.707546226615891e-17,
+ 2.5973471234165066e-17,
+ -1.0951871310202085e-16,
+ -3.02045000673738e-16,
+ -1.2904017555827232e-16,
+ -6.063233890013693e-17,
+ -4.049876279059623e-16,
+ -1.6717320179696687e-16,
+ 4.8803656140628627e-17,
+ 4.2086949566698043e-16,
+ -1.49719690872098e-17,
+ 2.7234921668308433e-17,
+ 3.1052360195240654e-16,
+ -3.7893143861054193e-16,
+ -1.0604455452929814e-16,
+ -2.836402320444332e-16,
+ -1.6361632516298885e-16,
+ -7.016559545981057e-17,
+ -5.525566491854224e-17,
+ 5.67445900211377e-17,
+ -6.501639614666798e-17,
+ 5.533838297979755e-16,
+ -9.119666253397129e-17,
+ 1.9025154088719633e-17,
+ -9.012132773765235e-17,
+ -1.484634103167831e-16,
+ -5.968108119570095e-17,
+ 2.2888087549342276e-16,
+ 4.137557423990244e-16,
+ 2.5394444805377947e-17,
+ 4.2186211240204405e-17,
+ 1.2705494208814505e-16,
+ -2.067951531382569e-17,
+ -5.70754622661589e-18,
+ -6.41478565034873e-17,
+ 7.849944013128231e-17,
+ -1.8942436027464331e-16,
+ 6.787016925997592e-17,
+ 5.575197328607407e-17,
+ -4.6218716726400415e-17,
+ 3.9077046112770714e-16,
+ -7.254373972090053e-17,
+ 3.612711325325348e-16,
+ 1.6278914455043582e-16,
+ 1.1789391680412027e-16,
+ 9.988205896577808e-17,
+ 1.1419228356294547e-16,
+ 5.620692262297823e-17,
+ 4.168990287267259e-17,
+ 7.204743135336871e-17,
+ 4.028369583133244e-17,
+ 1.9901965538025843e-16,
+ -1.3251433413099503e-16,
+ 2.7950432898166805e-16,
+ -8.817745329815274e-17,
+ 8.346252380660048e-17,
+ -2.9344232230318657e-17,
+ -3.513863242125261e-16,
+ 1.476103803100878e-16,
+ 3.970466940254532e-17,
+ 2.1318512337022903e-16,
+ 1.9556617632284954e-16,
+ 8.468675111317896e-16,
+ -1.0314942238536254e-16,
+ 4.251708348522562e-16,
+ -7.325511504769612e-16,
+ -2.0199750558544933e-16,
+ 1.4293680984916318e-16,
+ 1.914199335024275e-16,
+ 9.979934090452278e-17,
+ 1.9482171377155182e-16,
+ 2.2284245702178566e-16,
+ -2.2644069268639133e-16,
+ 6.2865726554030096e-18,
+ -5.241223156289121e-17,
+ -4.576790329255902e-16,
+ -1.711436687372214e-16,
+ 2.0193546703950786e-16,
+ 1.730668636614072e-16,
+ -2.9778502051908996e-17,
+ -8.850832554317396e-18,
+ -7.849944013128231e-17,
+ 1.6394719740801006e-16,
+ -8.147729033647321e-17,
+ -1.823933250679426e-17,
+ -3.4638188150658034e-17,
+ -1.0306670432410724e-16,
+ -9.123802156459894e-17,
+ 3.4824303788482465e-17,
+ 9.562207881112999e-17,
+ 2.564259898914386e-16,
+ 3.6065074707312007e-17,
+ -1.7515549470810359e-16,
+ -7.502528155855961e-17,
+ -6.86559908419013e-17,
+ 1.890107699683668e-17,
+ 3.302570294406247e-16,
+ 8.141525179053174e-17,
+ 1.6063847495779795e-16,
+ -6.617444900424221e-18,
+ 2.456726419282492e-17,
+ -1.3048774163024012e-16,
+ 1.8834902547832438e-16,
+ 1.2300175708663522e-16,
+ 1.921540562960683e-16,
+ 2.358291926388682e-16,
+ 6.157946070151014e-16,
+ -8.33177671994037e-17,
+ 2.7571997767923795e-16,
+ 1.0430747524293678e-16,
+ -9.005928919171088e-17,
+ -6.742555968072867e-17,
+ -4.441959889409758e-17,
+ 2.5001534014415258e-17,
+ -4.7446562948158816e-17,
+ -1.7583791871345983e-16,
+ 2.6087208568391107e-17,
+ 2.895132143935597e-16,
+ -3.546950466627382e-16,
+ -1.4062070413401469e-18,
+ -1.1315830779725419e-16,
+ -2.399547559439764e-16,
+ 4.20207751176938e-17,
+ 1.1861769984010417e-16,
+ 1.8776999904953726e-16,
+ -2.0111345630578329e-16,
+ -4.044913195384305e-17,
+ -9.016268676828002e-18,
+ 2.2896359355467806e-16,
+ -1.5670936704817107e-16,
+ 2.374008358027189e-17,
+ 4.2447290121041455e-17,
+ 3.2694313711158414e-16,
+ 8.478601278668532e-17,
+ 3.027481041944081e-17,
+ 4.859686098749037e-17,
+ 1.0935327697951025e-16,
+ 4.322018700589569e-17,
+ -5.151680854980256e-16,
+ -5.2608686958372554e-17,
+ -6.226602060992916e-17,
+ -4.7811039405564993e-17,
+ -1.0372844881414966e-16,
+ -1.646089418980525e-17,
+ 1.0885696861197843e-16,
+ -2.787495266727134e-16,
+ 1.7577588016751838e-17,
+ -4.3923290526565763e-17,
+ -2.845501307182415e-17,
+ -1.2535922183241134e-16,
+ -2.2623389753325304e-17,
+ -1.2151283198403977e-16,
+ 5.843617437380864e-16,
+ 3.0829021429851337e-16
+ ],
+ [
+ -3.572468540499874,
+ -2.9271819491179727,
+ 1.9003046698957735,
+ -1.244314806458214,
+ 0.1347657854834985,
+ 1.0247114474266146,
+ -1.8378500178916668,
+ 2.0047418338493537,
+ -1.1242930208836561,
+ -2.3535567508468134,
+ -0.5656531315203494,
+ -0.09126656068716679,
+ 1.0991886487427616,
+ -1.8747809905892288,
+ 1.983489788631351,
+ -0.9904354740483975,
+ -1.9744936693266277,
+ -0.6431202408595927,
+ -0.15006437587765023,
+ 1.215121446185354,
+ -1.9281412157044244,
+ 1.964520528330076,
+ -1.3685197833331497,
+ 0.29476706305694117,
+ 0.823917291749322,
+ -1.084256992043711,
+ -1.661178757067972,
+ 2.0265729047972845,
+ 1.2434639544459039,
+ -1.3019201378243466,
+ 0.1537600147425926,
+ 0.9523875905545343,
+ -1.1371253965520074,
+ -1.9261277950510345,
+ 2.1101376755342174,
+ 1.2123937689601354,
+ -1.1890500299258335,
+ 0.06456514843203916,
+ 1.0273142313793229,
+ -1.8677635798891694,
+ 1.995373887627749,
+ -1.5288388898486798,
+ 1.6766265127744455,
+ 1.741367298824348,
+ 1.9660608150907748,
+ 1.9843261651908255,
+ 2.5622179845468884,
+ 2.5225872938339218,
+ -1.8507370668673901,
+ 2.000969146063287,
+ -1.5556735529955001,
+ 0.4907540116932308,
+ 0.6361403636280343,
+ -1.6105505382224226,
+ 1.318443770256408,
+ 2.41893757289969,
+ -1.383242321888137,
+ -0.8948116132840958,
+ 0.4067344808624458,
+ 0.7202196749039808,
+ -1.6943362481710307,
+ 1.3206917921733452,
+ 2.2683830919726677,
+ -1.1316058519988486,
+ -0.8253930895326148,
+ 0.265586570611498,
+ 0.8506939719613267,
+ -1.742217367418143,
+ 2.0160871282307142,
+ -1.6558308841588918,
+ 0.7067040512458039,
+ 0.22799143758408147,
+ 0.016344330311428894,
+ -2.243183158631223,
+ -1.198230995787373,
+ 2.0102633446330604,
+ -1.5671348154442069,
+ 0.5722641993882104,
+ 0.3060758056520476,
+ 0.19246134905336879,
+ -2.6074266951056257,
+ -1.311667352140616,
+ 1.990746442109021,
+ -1.5090008635407284,
+ 0.4878205809428869,
+ 0.7023484103258733,
+ -1.652073502359864,
+ 2.015938157551583,
+ -2.9118443103917064,
+ -3.5877207500330597,
+ -3.219149688105353,
+ -2.579560043433866,
+ 1.935304940452908,
+ -1.962998480303279,
+ 1.3037298732126106,
+ -0.20822194759926937,
+ -0.9546547565006518,
+ 1.7578375571192586,
+ -1.3942714961795386,
+ -2.6298226986282005,
+ 1.0781215246627094,
+ 0.7481586359685601,
+ -0.12090390630964941,
+ -1.03179906928653,
+ 1.8240596216000018,
+ -0.27800099681923224,
+ -0.8588733765460023,
+ -1.8430800261757394,
+ -0.8992464594690546,
+ 1.9347264642298678,
+ -1.9617165606719402,
+ 1.3021381593815542,
+ -0.20689415093722432,
+ -0.9552916246424952,
+ 1.757607334632055,
+ -1.3221996096401911,
+ -2.3040135754568523,
+ 0.9526124180439104,
+ 0.733386493042936,
+ -0.11960983961427397,
+ -1.0786610475434113,
+ 1.8237221747048082,
+ -1.3256136402925596,
+ -2.5225681953498387,
+ 0.8725662690101563,
+ 0.6507007970288196,
+ 0.022326717793178862,
+ -1.153737773195659,
+ 1.858441237153956,
+ -2.0014973452938896,
+ 1.420561857766746,
+ -0.4307846202185001,
+ -0.5633153479200328,
+ -0.46412409745789174,
+ 1.381981910364861,
+ 1.4728806064746334,
+ 3.561605125600223,
+ 3.5848201513200477,
+ -2.0112309695550783,
+ 1.4515138582747815,
+ -0.47483969574642976,
+ -0.7700799432298698,
+ 1.6484047207888903,
+ -2.0460078663337447,
+ 1.1727200978813375,
+ 2.3900642115377595,
+ 0.1353574909600874,
+ -0.1397346670575046,
+ -0.8495168712346592,
+ 1.6985671321467652,
+ -2.0455699401617435,
+ 1.1141674561612227,
+ 2.141578690696834,
+ 0.2891423701969315,
+ -0.05509154062749346,
+ -0.977997901369408,
+ 1.7705386652681558,
+ -2.0412160426625343,
+ 1.5584161521753808,
+ -0.6301588003977391,
+ -0.5555060128327793,
+ 0.9538182851939276,
+ 1.388618851318834,
+ -2.1795182979430425,
+ -1.2984079284071819,
+ 1.5026206075466866,
+ -0.4922185486272422,
+ -0.6909706763956218,
+ 1.050427433227219,
+ 1.721648498729449,
+ -2.4114062072142626,
+ -1.3376232868826732,
+ 1.403247859029471,
+ -0.40618155361722685,
+ -0.7728782303553721,
+ 1.687852154419237,
+ -2.0473033616558243,
+ 1.6920716121419481,
+ -2.0690135552087434,
+ -2.620576143441478,
+ 1.0900586112223799e-15,
+ 1.5019945562737875e-15,
+ 2.5328270356373707e-16,
+ 8.828085087472187e-17,
+ -1.5042279439276808e-16,
+ -1.1948623948328485e-16,
+ -2.874142435892064e-16,
+ -2.447627432544409e-16,
+ -4.0953712127500395e-16,
+ 5.0003068028830517e-17,
+ 1.1178958237742035e-16,
+ 5.226954290722582e-16,
+ 3.4576149604716557e-17,
+ 1.544036010906795e-16,
+ -6.617444900424221e-18,
+ -2.3996509570163333e-16,
+ -1.1710292534336644e-16,
+ -1.3615392882622836e-16,
+ -1.1018045759206327e-16,
+ 1.5989401240650022e-16,
+ 3.6644101136099126e-17,
+ -8.983181452325879e-17,
+ -5.3518585632180884e-17,
+ -3.8298462361205175e-17,
+ 1.7591029701705822e-16,
+ -2.0569913882662413e-16,
+ -6.013603053260511e-17,
+ 1.1166938269465872e-17,
+ 1.8818358935581377e-16,
+ 2.5109067494047155e-16,
+ 6.509911420792328e-17,
+ 1.1183481881716934e-16,
+ 3.2839070318355194e-16,
+ 9.682149069933188e-17,
+ -1.2102686337416486e-16,
+ -3.783524121817548e-16,
+ -2.4112314855920754e-17,
+ 1.4744494418757718e-17,
+ -1.2788212270069808e-16,
+ 3.656965488096935e-16,
+ 1.3193530770220791e-16,
+ 1.8919688560619123e-16,
+ 2.408129558295002e-16,
+ 1.9769616640017358e-17,
+ -6.224534109461533e-17,
+ -8.400019120475995e-17,
+ -4.839006583435211e-18,
+ -2.0667107604637394e-16,
+ 1.6247895182072844e-16,
+ 5.653779486799944e-17,
+ -2.2003004293910533e-17,
+ 6.383766377377991e-17,
+ 8.883919778819516e-17,
+ -1.1795595535006175e-16,
+ -2.910434985267828e-16,
+ -4.181397996455554e-17,
+ -4.4295521802214626e-17,
+ -1.3855275260263212e-17,
+ 6.844919568876304e-17,
+ -3.310790401743493e-17,
+ 1.8210381185354902e-16,
+ 1.2014798397332725e-17,
+ 1.6924115332834944e-16,
+ -9.88480832000868e-17,
+ -1.9473899571029652e-16,
+ -6.27830084927748e-17,
+ -2.834747959219226e-16,
+ 5.0644133003559113e-17,
+ -1.0579640034553223e-16,
+ -7.990564717262246e-17,
+ -1.2128147990646634e-16,
+ -3.474158572722716e-17,
+ -7.88096328609897e-17,
+ -7.198539280742723e-17,
+ -2.359946287613788e-16,
+ -9.218927926903492e-17,
+ 2.909607804655275e-17,
+ -1.275926094863045e-17,
+ 1.1667641034001878e-16,
+ -1.5807421505888356e-16,
+ 5.509022879603164e-17,
+ -5.045801736573468e-17,
+ -1.6130021944784038e-18,
+ 1.252351447405284e-16,
+ -1.1725220559453812e-16,
+ -6.647430197629269e-17,
+ -2.0424123299699942e-16,
+ -1.086165692464552e-16,
+ -3.185472538941709e-16,
+ -5.4790375823981164e-17,
+ -2.493949546847378e-17,
+ 4.813777574752345e-16,
+ 1.4770602306841423e-16,
+ -1.8614665709740194e-16,
+ -1.8623971491631416e-16,
+ -8.073282778517549e-17,
+ -1.4895454880548646e-16,
+ -6.234873867118446e-17,
+ 6.181365621243922e-17,
+ -9.74832351893743e-17,
+ 1.1067676595959509e-16,
+ 8.652309207304668e-17,
+ 1.640609347422361e-16,
+ -1.7434899361086438e-16,
+ -1.0330451875021623e-16,
+ 2.6262984448558626e-17,
+ -4.549493369041652e-18,
+ 5.939156798130739e-17,
+ 2.145338155096026e-17,
+ 1.0050761430402131e-16,
+ 1.3751877683694084e-17,
+ 9.797954355690612e-17,
+ 6.824240053562478e-17,
+ 1.9438744394996147e-17,
+ -7.15511229858369e-18,
+ -8.35452418678558e-18,
+ -1.7205356741102973e-16,
+ -6.824240053562478e-17,
+ 2.2267702089927505e-16,
+ 1.6667689342943508e-17,
+ 2.39882377640378e-17,
+ -2.4815418376590826e-18,
+ -9.944778914418774e-17,
+ -6.034282568574337e-17,
+ -5.843514039804295e-17,
+ 2.4649982254080222e-17,
+ 3.391440511467413e-18,
+ 4.907248983970836e-17,
+ -1.62292836182904e-16,
+ -1.0397660299791557e-16,
+ -1.0960143116327615e-16,
+ -9.89308012613421e-17,
+ -3.835636500408389e-16,
+ 6.057030035419545e-17,
+ -1.5477583236632837e-16,
+ -1.0403864154385704e-16,
+ 1.4868571510640672e-17,
+ -1.7044056521655133e-16,
+ 1.737079286361358e-17,
+ 1.7680985593320967e-17,
+ -2.39882377640378e-17,
+ 1.4712958157904134e-16,
+ 2.681874642261769e-17,
+ -1.816075034860172e-16,
+ 2.0770505181206522e-16,
+ -2.953034786814309e-17,
+ 8.160136742835617e-17,
+ 2.0073960944300053e-16,
+ -8.40415502353876e-17,
+ -1.9356026333740845e-17,
+ -7.527343574232552e-18,
+ 2.540840347821478e-16,
+ 6.821138126265404e-17,
+ 1.588186776101813e-17,
+ -1.2473883637299657e-16,
+ 6.416853601880112e-17,
+ -4.779035989025117e-17,
+ -4.274197321426347e-17,
+ -2.2515856273693413e-16,
+ -3.7553999809907456e-17,
+ -1.19941188820189e-18,
+ 3.3666250930908226e-17,
+ 2.5642598989143854e-18,
+ -5.045801736573468e-17,
+ 1.0439019330419208e-16,
+ -3.3149263048062584e-17,
+ -5.715818032741421e-17,
+ 5.376673981594679e-17,
+ -8.354524186785578e-17,
+ 1.0736804350938298e-16,
+ -6.964860757696493e-17,
+ 2.495190317766208e-16,
+ -6.038418471637101e-18,
+ 4.417144471033167e-17,
+ -2.446386661625579e-17,
+ 8.644037401179139e-18,
+ -2.2328706660103288e-17,
+ 2.848603234479489e-17,
+ -7.173723862366132e-16,
+ -8.593372588660265e-17
+ ],
+ [
+ 7.3497223697459875,
+ 5.895078608548732,
+ -4.429465392837111,
+ 4.369073254781592,
+ -2.8956115794582584,
+ 0.3349025659576519,
+ 2.214564512993266,
+ -4.050282961676282,
+ 3.146884979748809,
+ 5.955592994389973,
+ -2.3095558344320817,
+ -1.6286763056971598,
+ 0.13888655167468944,
+ 2.3879156325034514,
+ -4.191890049501996,
+ 2.967371612479615,
+ 5.250821096109102,
+ -1.7011751695999322,
+ -1.4207766186933557,
+ -0.18314900622169036,
+ 2.6567489745568187,
+ -4.267742356610893,
+ 4.466687138775599,
+ -3.1684890192803574,
+ 0.8420180636978041,
+ 1.0273253585362927,
+ 0.9666799970154001,
+ -5.234214940912775,
+ -2.8867042365466458,
+ 4.417726661028277,
+ -2.9279662196977836,
+ 0.5235843406405858,
+ 1.2106529717380239,
+ 1.4458181377840882,
+ -5.710452766763458,
+ -2.9550220390737003,
+ 4.3192775064696205,
+ -2.770831689785763,
+ 0.32809722027719423,
+ 2.3520804804998847,
+ -4.120708970462514,
+ 4.556836758077307,
+ -7.280199180203554,
+ -7.2974719786587245,
+ -4.089976611494134,
+ -3.9603618351815,
+ -1.4726600006101942,
+ -1.277214291079513,
+ 2.2725936188645304,
+ -4.081003990017357,
+ 4.566722116241886,
+ -3.4793957144334358,
+ 1.2851238191089551,
+ 1.3282504804578747,
+ -2.2024715434895676,
+ -3.5191455898059165,
+ 5.29820573679874,
+ 2.9301524670894894,
+ -3.348433551158808,
+ 1.0916904961716416,
+ 1.6330852965091949,
+ -2.338681156477024,
+ -3.5182811701177252,
+ 4.724600454809346,
+ 2.8642669111402075,
+ -3.1199605613705055,
+ 0.7764291400770309,
+ 1.8148754545861165,
+ -3.9018137892861553,
+ 4.589110581516763,
+ -3.7909494017251237,
+ 1.261959991273006,
+ 2.9784363953751973,
+ 3.3441476470879303,
+ 1.4928188691284727,
+ -4.001898688872593,
+ 4.571024212001812,
+ -3.6002352940831597,
+ 1.1909184121324277,
+ 3.0700529470698394,
+ 4.15407506121256,
+ 1.817243258720349,
+ -4.149597526781607,
+ 4.548130306413399,
+ -3.4749371804418687,
+ 1.1320109861684133,
+ 1.4755609130918934,
+ -3.6089032084404966,
+ 6.003919050443426,
+ 7.24148863687821,
+ 3.826388540224561,
+ 2.9250618755140274,
+ -2.8618368804217473,
+ 4.356440243738886,
+ -4.439952187626208,
+ 2.9742759169623945,
+ -0.5883003124477225,
+ -1.9916311915748548,
+ 2.582609285141244,
+ 4.361637434469727,
+ -5.1360700406516,
+ -2.9051207819856653,
+ 2.8223140545330656,
+ -0.3892137228037615,
+ -2.276707585416874,
+ 2.597734904046782,
+ 4.386217157500398,
+ 1.5699282842944255,
+ 0.40874104580501114,
+ -2.858574483380146,
+ 4.352548903052991,
+ -4.436673300304258,
+ 2.97283840237196,
+ -0.5890722273798663,
+ -1.9889132906138538,
+ 2.48549209398248,
+ 3.833102213224678,
+ -4.508359770453491,
+ -2.77968265451311,
+ 2.8210348068331097,
+ -0.2688056559496216,
+ -2.2738107348067715,
+ 2.601171401970474,
+ 4.4309973289650815,
+ -4.683477415208484,
+ -2.7044119761614382,
+ 2.560494880546057,
+ -0.06880772271216486,
+ -2.44185052998928,
+ 4.224432009830968,
+ -4.51475808098297,
+ 3.3429171620459854,
+ -3.607603515149647,
+ -3.757866965260815,
+ -4.414541216907245,
+ -4.462459564716599,
+ -5.9109339233073,
+ -5.826565826473054,
+ 4.189729587454082,
+ -4.534437229917364,
+ 3.41174372648387,
+ -1.03920538164217,
+ -1.5659721803060578,
+ 3.667318495544137,
+ -2.985199552922913,
+ -5.497453702519295,
+ 3.014078208680369,
+ 1.9693957831757294,
+ -0.8471494494173768,
+ -1.7527991314722715,
+ 3.8519701232152315,
+ -2.985062435241279,
+ -5.146704992908148,
+ 2.4503440196396915,
+ 1.8102347947440818,
+ -0.5287299851275274,
+ -2.045822545517396,
+ 3.9549190127021556,
+ -4.576684958063405,
+ 3.644181287107035,
+ -1.5301002628418336,
+ -0.5810361589969175,
+ -0.15558137633607325,
+ 5.094827794814182,
+ 2.73308336704383,
+ -4.557700236587122,
+ 3.4397036420204907,
+ -1.2229333047458197,
+ -0.7601731059950615,
+ -0.5695386561361432,
+ 5.911570201256325,
+ 2.984595648003483,
+ -4.507865213008077,
+ 3.3037184401289754,
+ -1.0325764626794067,
+ -1.7141525080528668,
+ 3.7581960905081924,
+ -4.587872984185339,
+ 6.547984259043482,
+ 8.073971768593717,
+ -1.7049846785943004e-15,
+ -2.690653096512488e-15,
+ -3.6180879993069426e-16,
+ 4.061456807635365e-17,
+ -1.0521737391674511e-16,
+ 1.8208394013180214e-16,
+ 4.221516256164376e-16,
+ 2.623816903018204e-16,
+ 2.455072058057386e-16,
+ 5.492479267352103e-17,
+ -2.1754850110144625e-16,
+ -1.1295978445024146e-15,
+ 1.1853498177884887e-16,
+ -2.3508473008757047e-16,
+ -7.213014941462401e-17,
+ 8.571245507274472e-16,
+ 8.189088064274973e-17,
+ 4.485386871568792e-17,
+ 3.4675411278222915e-16,
+ -4.105297380100676e-16,
+ -6.815968247436948e-17,
+ 2.0547166415817205e-16,
+ 1.950491884400039e-16,
+ 1.2457340025048597e-16,
+ -2.3831073447652727e-16,
+ 4.044913195384305e-16,
+ 5.062345348824529e-17,
+ -4.0800683714178084e-17,
+ -3.5304068543763216e-16,
+ -2.609186145933672e-16,
+ -5.5007510734776334e-17,
+ -2.478233115208871e-16,
+ -4.869198675793397e-16,
+ 1.0893968667323373e-16,
+ 1.890934880296221e-16,
+ 7.525689213007445e-16,
+ 7.820087962893896e-17,
+ -8.685396431806789e-17,
+ -5.61862431076644e-17,
+ -6.966515118921598e-16,
+ -1.6940658945086004e-16,
+ -1.4111701250154652e-16,
+ -5.748750160878689e-16,
+ 2.3194144375986896e-16,
+ 3.864587821847745e-16,
+ 4.3972921363318946e-16,
+ 2.251172037063065e-16,
+ 6.938390978094795e-16,
+ -5.803499177672042e-16,
+ -1.4144788474656773e-16,
+ 3.18299099710405e-16,
+ 2.5022213529729084e-17,
+ -1.7941547486275168e-16,
+ 2.782635580628385e-16,
+ -2.660212849970537e-16,
+ -2.6635215724207488e-17,
+ 2.2830184906463564e-16,
+ 3.010937429693021e-17,
+ -8.40415502353876e-17,
+ 5.102050018227075e-16,
+ -5.023881450340814e-16,
+ -4.9630836753181654e-17,
+ -3.507245797224837e-16,
+ 4.165681564817047e-16,
+ 4.07634605866132e-16,
+ 2.6684846560960673e-16,
+ 2.3756627192522955e-16,
+ -2.900095227610915e-16,
+ -1.5120861597469343e-16,
+ 1.258141711693155e-16,
+ 3.5481912375462117e-16,
+ 1.7185969695496264e-17,
+ 8.383475508224934e-17,
+ -8.238718901028154e-17,
+ 8.739163171622736e-16,
+ 1.7073007843094489e-16,
+ -2.4683069478582346e-16,
+ -3.685916809536291e-16,
+ 8.834288942066334e-17,
+ 1.522012327097571e-17,
+ -2.3657365519016588e-17,
+ -3.3153398951125344e-16,
+ 3.0738031562470503e-16,
+ 2.7123252285613777e-16,
+ 1.0132962503774588e-16,
+ 1.2502834958739013e-16,
+ 1.708955145534555e-16,
+ -2.6469779601696883e-17,
+ -7.093900933254764e-16,
+ 1.4115009972604862e-15,
+ -3.697497338112034e-17,
+ -1.1615270161469615e-15,
+ -3.143699918007781e-16,
+ 4.8902917814135e-16,
+ 4.1805708158430014e-16,
+ 4.3426982159033947e-17,
+ 4.680187905825031e-16,
+ 1.5782606087511766e-16,
+ -3.275635225709989e-16,
+ 2.1142736456855385e-16,
+ -2.5679822116708744e-16,
+ 2.605618929542037e-16,
+ -7.229558553713462e-17,
+ 1.3317607862103746e-16,
+ -7.713459212056982e-17,
+ -1.8383055138225346e-16,
+ 1.2407709188295413e-18,
+ -5.765448869494603e-17,
+ 7.587314168642645e-17,
+ -1.591030209457464e-16,
+ -1.4707271291192832e-16,
+ 6.088049308390284e-17,
+ -1.919059021123024e-17,
+ 1.0386286566368953e-16,
+ -1.5211851464850176e-16,
+ -2.426947917230583e-16,
+ 1.3532674821367533e-16,
+ 2.2085722355165836e-16,
+ -3.392267692079966e-16,
+ -7.223354699119314e-17,
+ 1.4392942658422682e-16,
+ 2.2598574334948716e-16,
+ -3.4046754012682614e-16,
+ 8.172544452023912e-17,
+ -9.851721095506558e-17,
+ 3.599890025830776e-16,
+ -5.641371777611649e-17,
+ 1.4856163801452377e-16,
+ 2.0332099456553418e-16,
+ 1.847507898137187e-16,
+ -3.970466940254533e-18,
+ -1.0918784085699964e-17,
+ 2.266474878395296e-16,
+ -2.1119988990010177e-16,
+ 8.99972506457694e-17,
+ 7.974021105011186e-17,
+ 1.0426611621230913e-16,
+ 6.860636000514811e-16,
+ 1.5666800801754342e-16,
+ -1.287093033132511e-16,
+ 1.3428243269032713e-16,
+ 1.6130021944784038e-18,
+ -8.875647972693986e-17,
+ 3.4294908196448522e-16,
+ -1.4161332086907834e-16,
+ -1.2063395258320217e-16,
+ -1.4996784505586392e-16,
+ -2.158114218150849e-16,
+ 2.7909073867539154e-16,
+ -5.285684114213846e-17,
+ -2.7363134663254155e-16,
+ -2.632088709143734e-16,
+ -1.6771086919512634e-16,
+ 8.635765595053608e-17,
+ 1.7867101231145395e-16,
+ -6.964860757696493e-17,
+ 1.83055069557985e-16,
+ -7.002083885261379e-17,
+ -3.639594695233322e-17,
+ 1.078643518769148e-16,
+ -9.61183871786618e-17,
+ -3.0936554909483235e-17,
+ -2.1454997138094153e-16,
+ 1.919059021123024e-16,
+ 1.126950866542245e-15,
+ 1.192794443301466e-16,
+ 2.240005098793599e-16,
+ -2.2515856273693413e-16,
+ 5.275757946863211e-16,
+ -1.3509927354522324e-16,
+ 2.8008335541045517e-16,
+ -3.4046754012682614e-16,
+ 1.5244938689352298e-16,
+ 1.0877425055072313e-16,
+ -5.955700410381799e-17,
+ 3.8546616544971083e-17,
+ 3.30872245021211e-19,
+ 5.864710543000966e-17,
+ 1.1320793863400737e-15,
+ 4.324500242427228e-16
+ ],
+ [
+ 5.427499738510816,
+ 4.372921795589161,
+ -3.195222782246834,
+ 2.9425760273602615,
+ -1.7385331166022118,
+ -0.13438990659338085,
+ 1.8727383617399103,
+ -3.00692985861638,
+ 2.195116012919415,
+ 4.226055369068981,
+ -1.1692559199747408,
+ -0.9222644217192514,
+ -0.2723353636236549,
+ 1.985915508465257,
+ -3.082689371365112,
+ 2.047749332155517,
+ 3.6940152277764216,
+ -0.7893148913151814,
+ -0.7821606809003537,
+ -0.49744835004666416,
+ 2.159683482532804,
+ -3.1211647364911386,
+ 3.0390485518657306,
+ -1.948741515855537,
+ 0.22558212794681257,
+ 0.944436874194403,
+ 1.0922726433817156,
+ -3.700862437530854,
+ -2.0810098635966483,
+ 2.98949506184231,
+ -1.7632723708769895,
+ -0.0010149936824246236,
+ 1.0683063679649318,
+ 1.4562822652730052,
+ -4.005560696054975,
+ -2.111043026926572,
+ 2.8959437469390066,
+ -1.643360726000101,
+ -0.13919064914708254,
+ 1.9625649096373101,
+ -3.04509460521051,
+ 3.142627067137347,
+ -4.784688565223818,
+ -4.81534009662309,
+ -3.013333278958586,
+ -2.943431790981272,
+ -1.6740160696683877,
+ -1.5472740024609186,
+ 1.9107312048871283,
+ -3.0236820381166503,
+ 3.1569247525140245,
+ -2.1925802408419273,
+ 0.5440254389196436,
+ 1.2828775917574842,
+ -1.7051906272490303,
+ -2.823785686783641,
+ 3.533880800495639,
+ 1.9956363869272111,
+ -2.0892035256368304,
+ 0.40453805359870426,
+ 1.4877330773545634,
+ -1.7854595675249978,
+ -2.7754564964943973,
+ 3.118926359711919,
+ 1.9351038308836837,
+ -1.9111222681556517,
+ 0.17876172678195584,
+ 1.6089216737487204,
+ -2.9238184469031614,
+ 3.201809726903407,
+ -2.443143615857704,
+ 0.6646459365591271,
+ 1.7344090086655435,
+ 2.6657429470667737,
+ 1.2525195493123298,
+ -2.980226615584017,
+ 3.163269796952614,
+ -2.2888522003004375,
+ 0.5983501447821915,
+ 1.7319767299930848,
+ 3.254493489308259,
+ 1.47803698933383,
+ -3.0604904206778234,
+ 3.1312343115096235,
+ -2.189044805899239,
+ 0.433573372065915,
+ 1.382098508686232,
+ -2.7526913908260826,
+ 4.431619180327773,
+ 5.3691283967765555,
+ 3.257412503622908,
+ 2.527815848558328,
+ -2.290742245900129,
+ 3.163486890314293,
+ -3.011850118951732,
+ 1.7988194863121034,
+ -0.04486735815341117,
+ -1.726112474066137,
+ 1.9513004539033896,
+ 3.3828373584352307,
+ -3.3422702521421193,
+ -1.9344354665399333,
+ 1.6825258406794417,
+ 0.09611476249523791,
+ -1.913453674427226,
+ 1.935743294452551,
+ 3.120589812929453,
+ 1.502393383408928,
+ 0.5243764620615214,
+ -2.288656322119635,
+ 3.160807285653928,
+ -3.009426117073999,
+ 1.7975530184729156,
+ -0.0451109281164944,
+ -1.724455807525376,
+ 1.8716852101140327,
+ 2.9706493117688195,
+ -2.93577277327629,
+ -1.8564763852489756,
+ 1.6813620786010957,
+ 0.18133154614533378,
+ -1.9116583525782378,
+ 1.9403343314381394,
+ 3.3892831512383355,
+ -3.0126268020779157,
+ -1.7862487947852146,
+ 1.4839061433268872,
+ 0.32179384774704284,
+ -2.0210313036873013,
+ 3.098621958583269,
+ -3.0926564445136977,
+ 2.0847981638581,
+ -1.9280233071597954,
+ -2.0472876153101285,
+ -3.01575360812738,
+ -3.072199698549728,
+ -4.583705456752531,
+ -4.542061237885691,
+ 3.0814891979828083,
+ -3.1139825785234843,
+ 2.1390154865246633,
+ -0.36684502479975817,
+ -1.442748804018528,
+ 2.787370826251036,
+ -2.1160665064183393,
+ -3.9700757087005893,
+ 1.7174188412751696,
+ 1.1946412281344685,
+ -0.22924059243597528,
+ -1.567604123141168,
+ 2.895277522056202,
+ -2.097386609580221,
+ -3.6862832575319064,
+ 1.3393116626377257,
+ 1.0747935966179267,
+ -0.0026480372912046453,
+ -1.7618086531970771,
+ 2.9538248803385434,
+ -3.172608588481559,
+ 2.324104826185089,
+ -0.7217180098363847,
+ -0.6423444791180325,
+ -0.5319670491291478,
+ 3.668031774667433,
+ 2.0087371075047242,
+ -3.1435990013755517,
+ 2.16105736832904,
+ -0.49908457209367674,
+ -0.7776595346687204,
+ -0.8795312300495013,
+ 4.2187196022138505,
+ 2.168092749660986,
+ -3.0831236209635686,
+ 2.0541054272111663,
+ -0.36208397658483205,
+ -1.5418194887226022,
+ 2.8408531068998384,
+ -3.2215982657503885,
+ 4.481662979072849,
+ 5.548138113289458,
+ -1.3016514119134442e-15,
+ -2.0070710382986664e-15,
+ -2.8579090163707106e-16,
+ 2.0596797252570386e-17,
+ -8.288349737781336e-17,
+ 1.5306977235293775e-16,
+ 3.163552252709054e-16,
+ 1.8710825455949484e-16,
+ 2.3442298559752804e-16,
+ 2.845501307182415e-17,
+ -1.8028918438476081e-16,
+ -8.376030882711957e-16,
+ 4.764560328305439e-17,
+ -1.710609506759661e-16,
+ -4.0035541647566533e-17,
+ 6.672866001465273e-16,
+ 6.179039175771117e-17,
+ 3.0760779029315717e-17,
+ 2.482369018271636e-16,
+ -2.9455901613013316e-16,
+ -5.542110104105285e-17,
+ 1.4756902127946014e-16,
+ 1.3888362484765335e-16,
+ 8.246990707153685e-17,
+ -1.76768496902582e-16,
+ 3.427836458419746e-16,
+ 4.226892930145971e-17,
+ -1.8797679420267554e-17,
+ -2.8488100296326273e-16,
+ -2.275573865133379e-16,
+ -9.678013166870423e-17,
+ -1.7426627554960908e-16,
+ -3.8296394409673794e-16,
+ 5.0292581243224076e-17,
+ 1.1253792233783942e-16,
+ 6.425538998311918e-16,
+ 4.4223143498616236e-17,
+ -6.518183226917858e-17,
+ -1.1621887606370037e-17,
+ -5.302227726464907e-16,
+ -1.252351447405284e-16,
+ -1.3780312017250595e-16,
+ -4.1099244216521444e-16,
+ 1.5567539128247978e-16,
+ 2.752857078576476e-16,
+ 3.7372020075145785e-16,
+ 1.5122929549000726e-16,
+ 5.839895124624375e-16,
+ -4.1590641199166227e-16,
+ -9.198248411589667e-17,
+ 1.949664703787486e-16,
+ -1.323488980084844e-18,
+ -1.2515242667927309e-16,
+ 2.5808035111654463e-16,
+ -1.647743780205631e-16,
+ -2.307833909022947e-17,
+ 1.7767839557639032e-16,
+ 1.0257039595657542e-17,
+ -5.525566491854224e-17,
+ 3.777733857529677e-16,
+ -3.5192399161068557e-16,
+ -3.6644101136099126e-17,
+ -2.5923840397411887e-16,
+ 3.058913905221096e-16,
+ 2.8918234214853848e-16,
+ 1.7093687358408314e-16,
+ 2.1961645263282882e-16,
+ -2.24579536308147e-16,
+ -5.2939559203393765e-17,
+ 1.0306670432410724e-16,
+ 2.6269188303152776e-16,
+ 2.8972000954669794e-17,
+ 6.499571663135415e-17,
+ -9.156889380962015e-17,
+ 6.444977742706914e-16,
+ 1.119588959090523e-16,
+ -1.5079502566841692e-16,
+ -2.3425754947501744e-16,
+ 5.889525961377557e-17,
+ 3.010937429693021e-17,
+ -3.192917164454687e-17,
+ -2.4964310886850375e-16,
+ 2.359119107001235e-16,
+ 1.576192657219794e-16,
+ 8.528232115421714e-17,
+ 9.086579028895008e-17,
+ 1.1299287167474358e-16,
+ -1.4889251025954498e-17,
+ -4.817499887508833e-16,
+ 1.086253580404636e-15,
+ 4.433688083284228e-17,
+ -8.61177735728957e-16,
+ -2.3425754947501744e-16,
+ 3.6197423605320486e-16,
+ 3.3467727583895495e-16,
+ 4.657026848673545e-17,
+ 3.3976443660615607e-16,
+ 1.5732975250758584e-16,
+ -3.2557828910087164e-16,
+ 1.194448804526572e-16,
+ -1.9025154088719634e-16,
+ 7.725866921245277e-17,
+ -4.2517083485225616e-17,
+ 8.784658105313153e-17,
+ -5.773720675620133e-17,
+ -1.287816816168495e-16,
+ 1.0008885411891633e-17,
+ -5.511090831134546e-17,
+ 5.270174477728477e-17,
+ -1.207373501597713e-16,
+ -1.3516131209116472e-16,
+ 8.966637840074819e-17,
+ 2.150669592637872e-18,
+ 5.645507680674414e-17,
+ -9.2892382789705e-17,
+ -1.7288074802358276e-16,
+ 1.1497810514487085e-16,
+ 1.5211851464850176e-16,
+ -2.5187649652239693e-16,
+ -7.978157008073951e-17,
+ 1.0587911840678753e-16,
+ 1.743696731261782e-16,
+ -2.2631661559450837e-16,
+ 5.161607022330892e-17,
+ -3.234276195082338e-17,
+ 3.454306238021443e-16,
+ -1.9356026333740845e-17,
+ 1.3155273666890214e-16,
+ 1.5410374811862903e-16,
+ 1.3561626142806889e-16,
+ 1.522012327097571e-17,
+ 1.1745964698252991e-17,
+ 1.7288074802358276e-16,
+ -1.8592952218660677e-16,
+ 1.0223952371155421e-16,
+ 8.3876114112877e-17,
+ 5.591740940858467e-17,
+ 4.814604755364898e-16,
+ 8.586134758300426e-17,
+ -8.3876114112877e-17,
+ 6.59262948204763e-17,
+ 3.085383684822793e-17,
+ -6.213160376038929e-17,
+ 2.926565007212612e-16,
+ -1.8677738231447362e-16,
+ -1.0425060657582376e-16,
+ -1.2200914035157158e-16,
+ -1.862810739469418e-16,
+ 2.0042586242159858e-16,
+ -2.431911000905901e-17,
+ -1.678349462870093e-16,
+ -1.591495498552025e-16,
+ -1.2329127030102877e-16,
+ 8.809473523689744e-17,
+ 2.0778776987332053e-16,
+ -7.16338410470922e-17,
+ 1.5776402232917618e-16,
+ -2.6159586871989497e-17,
+ -1.8032537353656003e-17,
+ 1.0298398626285193e-16,
+ -9.322325503472621e-17,
+ -3.176373552203626e-17,
+ -1.519944375566188e-16,
+ 1.4483932525803515e-16,
+ 7.938452338671406e-16,
+ 7.874759431504822e-17,
+ 1.431849640329291e-16,
+ -1.5120861597469343e-16,
+ 3.5221350482507913e-16,
+ -6.742555968072867e-17,
+ 2.2019547906161594e-16,
+ -2.8901690602602787e-16,
+ 1.0017157218017164e-16,
+ 7.978157008073951e-17,
+ -5.252596889711725e-17,
+ 9.59529510561512e-18,
+ -5.045801736573468e-18,
+ 2.4236391947803708e-17,
+ 8.834288942066335e-16,
+ 3.4725042114976097e-16
+ ],
+ [
+ 1.0679325198092022,
+ 1.0220730062012247,
+ -0.00461262153546908,
+ -1.7585881496281819,
+ 2.950450972097903,
+ -3.170180800756831,
+ 2.3234678767888703,
+ -0.7229833800257716,
+ -0.6283971149192287,
+ -0.5844888962366241,
+ 4.186648861495971,
+ 2.128359600011491,
+ -3.1412773849704925,
+ 2.223535406409427,
+ -0.5005800352193022,
+ -0.7793056551257778,
+ -0.7846301569684265,
+ 3.6904391620344383,
+ 2.0453773620759157,
+ -3.0809873265847707,
+ 2.05382502836272,
+ -0.36370778381375607,
+ -1.5387099559323518,
+ 2.8374291453903386,
+ -3.218888513877077,
+ 1.7160578154727053,
+ 3.331579597585192,
+ 0.6258888810235995,
+ 0.008217737551884454,
+ -1.6587996587076543,
+ 2.9386049301259694,
+ -3.1930217935755785,
+ 1.645625760066212,
+ 3.4870800611184127,
+ 0.9529044866829204,
+ 0.17046368331982575,
+ -1.8489254593730602,
+ 2.9940991715626253,
+ -3.1692753269958756,
+ 2.244558601084135,
+ -0.6164913138564149,
+ -1.2135270527416477,
+ 3.9298494436566083,
+ 3.776374480709181,
+ -0.5355715668785758,
+ -0.7344234516076144,
+ -5.159931056593961,
+ -5.2798422554825715,
+ 2.290895726350321,
+ -0.6773992863472454,
+ -1.153089926799346,
+ 2.672124810190422,
+ -3.228490048916452,
+ 2.739838800325627,
+ -0.9840859620263531,
+ -2.4089427695583856,
+ -2.423168878164268,
+ -0.9923928183248703,
+ 2.7473746394463205,
+ -3.228299411549853,
+ 2.613335542232773,
+ -0.8325506665852959,
+ -2.0066589753158035,
+ -2.4337492164405257,
+ -1.1021398414089951,
+ 2.8595180647732277,
+ -3.214803075333868,
+ 2.5296475178967586,
+ -0.9251115269293174,
+ -0.9107626260400172,
+ 2.454040193514194,
+ -2.070430241748577,
+ -3.4889449312427914,
+ 2.1405484314848366,
+ 1.4829234681619934,
+ -0.7920608967604682,
+ -1.1257387733199156,
+ 2.595220615346409,
+ -2.197416663644956,
+ -4.066677003420726,
+ 2.1793688383446965,
+ 1.4115140432328774,
+ -0.5706170801779452,
+ -1.2566330107784744,
+ 2.6748125414027455,
+ -3.228680509615184,
+ 2.680596636891082,
+ -1.2635082313174053,
+ 0.8551001991576791,
+ 1.2339972505235162,
+ 4.19698611275945,
+ 3.526333159039743,
+ -1.9116587146371866,
+ 0.18115847914994368,
+ 1.6055123701195377,
+ -2.92047479437407,
+ 3.19970566833766,
+ -2.4428579296527118,
+ 0.7474886801486275,
+ 1.9992859103894078,
+ 3.052912577974918,
+ 1.3562644451611643,
+ -2.9769297248249478,
+ 3.177735281804553,
+ -2.288827779749511,
+ 0.5243074319142894,
+ 1.502351036359474,
+ 3.121092734244912,
+ 1.9360090270332477,
+ -1.9139201660275649,
+ 0.1822388227617734,
+ 1.6059996760676867,
+ -2.922419733498178,
+ 3.202347726189379,
+ -2.4454182775958864,
+ 0.6667784664765143,
+ 1.7379530605617695,
+ 2.663094654870836,
+ 1.2507619366855238,
+ -2.9789668029226255,
+ 3.164029050754498,
+ -2.2913040484644394,
+ 0.5421237015285902,
+ 1.6318196850106321,
+ 3.0800744313742827,
+ 1.3851822353036527,
+ -3.0594684998030335,
+ 3.1321307522420576,
+ -2.191606734364119,
+ 0.4370584912099823,
+ 1.379048801485418,
+ -2.75095895170343,
+ 5.682864559558116,
+ 5.591023476847252,
+ 1.4180248222209824,
+ 1.2334648167182325,
+ -2.7031567052535044,
+ -2.8650683871912137,
+ 0.5036491411288272,
+ 1.3188926886996288,
+ -2.7123604427161534,
+ 3.2269436409464762,
+ -2.6421706932235995,
+ 1.2007152414033004,
+ 0.311642929154113,
+ -0.04330630326540905,
+ -3.8490014958340977,
+ -1.9037119275996557,
+ 3.2192479472971653,
+ -2.55876312017694,
+ 0.987613516239318,
+ 0.46833308935718,
+ 0.21660145086264837,
+ -3.6088764542786564,
+ -1.9463479087384616,
+ 3.193427205842367,
+ -2.4142870529309968,
+ 0.8551915892268087,
+ 1.081468527082753,
+ -2.5652240659871635,
+ 3.2199917165610845,
+ -1.8829090408777809,
+ -3.5397468907594187,
+ -0.05499692344110119,
+ 0.31665726026457763,
+ 1.210644997882403,
+ -2.6965198227946963,
+ 3.229221659886819,
+ -1.9344809434018424,
+ -3.952997208498999,
+ -0.3786070522535356,
+ 0.13076763093501054,
+ 1.4175103803612414,
+ -2.7713499637280194,
+ 3.2267687375205725,
+ -2.5763720598143105,
+ 1.0989638556035164,
+ 0.7364058955646305,
+ -2.0318913561717924,
+ -2.3195981114137214,
+ -8.050948901978617e-16,
+ -4.3923290526565765e-16,
+ -1.827241973129638e-16,
+ -8.757774735405179e-17,
+ 7.407402385412363e-17,
+ 1.9267104417891395e-16,
+ 1.2755125045567687e-16,
+ -9.417451273916219e-17,
+ 4.842315305885424e-16,
+ -1.1038725274520153e-16,
+ -1.38449355026063e-16,
+ -2.870316725559006e-17,
+ -3.2919720428079114e-16,
+ -7.41360624000651e-17,
+ 9.508441141297052e-17,
+ 1.5013328117837452e-16,
+ 1.5923226791645783e-17,
+ 4.839006583435211e-17,
+ 3.908428394313056e-18,
+ 1.6088662914156386e-16,
+ -3.7440262475681415e-17,
+ -1.323488980084844e-18,
+ -2.3905519702782497e-17,
+ -2.6262984448558626e-17,
+ -7.097209655704977e-17,
+ 3.18299099710405e-16,
+ 4.582580593543773e-17,
+ 7.552158992609141e-17,
+ -1.2490427249550718e-16,
+ -2.393033512115909e-16,
+ -3.8265375136703055e-16,
+ 3.8587975575598735e-17,
+ -1.5943906306959608e-17,
+ -2.1910463462881164e-16,
+ -1.0918784085699964e-16,
+ 5.810116622572466e-16,
+ -1.1034589371457388e-16,
+ -9.471218013732165e-18,
+ 3.0051471654051495e-16,
+ -1.4285409178790788e-16,
+ -1.533592855673313e-16,
+ -1.8640515103882476e-16,
+ 1.19941188820189e-17,
+ -1.0445223185013356e-16,
+ -7.554226944140524e-17,
+ 2.0332099456553418e-16,
+ -1.1166938269465874e-16,
+ 5.688107482220895e-16,
+ 3.623051082982261e-17,
+ 7.57490645945435e-17,
+ -2.533861011403062e-16,
+ -1.5595973461804489e-16,
+ 3.9497874249407065e-17,
+ 3.5833464135797154e-16,
+ 3.719004034038412e-16,
+ 3.28390703183552e-17,
+ 7.11582121948742e-17,
+ -5.85230283381267e-18,
+ 3.259091613458929e-17,
+ -3.8877488789992295e-17,
+ 8.528232115421714e-17,
+ 5.209686895435537e-17,
+ -8.25939841634198e-17,
+ -9.678013166870422e-18,
+ -4.135903062765138e-17,
+ -2.2019547906161594e-16,
+ 4.012653151494737e-16,
+ -5.922613185879678e-17,
+ 5.274103585638104e-16,
+ 1.316044354571867e-16,
+ -6.782881022934827e-17,
+ 8.71848365630891e-17,
+ 2.5394444805377947e-17,
+ -5.852302833812671e-17,
+ -8.288349737781336e-17,
+ 1.6957202557337067e-17,
+ 2.254377361936708e-16,
+ 3.3050001374556216e-16,
+ -7.81685678862611e-17,
+ 2.3450570365878335e-16,
+ -1.2877134185919258e-16,
+ -2.5394444805377947e-17,
+ 8.106370003019671e-18,
+ -3.9626087244352786e-16,
+ 1.4589398053904026e-16,
+ -3.813302623869457e-17,
+ -2.39882377640378e-17,
+ 1.3784964908196206e-16,
+ 6.863944722965023e-16,
+ -9.975798187389513e-17,
+ 5.952391687931587e-16,
+ -1.9684830627230674e-16,
+ -9.496033432108756e-17,
+ -3.269431371115842e-17,
+ 1.5468277454741615e-16,
+ 1.6531204541872256e-16,
+ 1.2573145310806019e-17,
+ 3.2243500277317014e-16,
+ -5.7836468429707695e-16,
+ -2.445973071319303e-16,
+ -4.657543836556391e-17,
+ -8.850418964011119e-16,
+ 9.26442286059391e-18,
+ 7.227490602182079e-17,
+ 2.406681992223034e-16,
+ 1.3218346188597382e-16,
+ 4.8720938079373324e-17,
+ -1.152676183592644e-16,
+ 8.71848365630891e-17,
+ -4.79764755280756e-17,
+ -1.200032273661305e-16,
+ 2.291703887078163e-16,
+ 4.144174868890668e-17,
+ -1.347477217848882e-16,
+ 1.437639904617162e-16,
+ 1.1315830779725419e-16,
+ 1.8710825455949484e-16,
+ -6.923501727068842e-17,
+ -4.6404832364224846e-17,
+ -1.92071338234813e-16,
+ -1.0116418891523527e-16,
+ 3.9539233280034717e-17,
+ 2.503875714198015e-16,
+ -3.6644101136099126e-17,
+ 2.9447629806887785e-16,
+ 4.162372842366835e-16,
+ 1.5195307852599116e-16,
+ -1.108422020821057e-17,
+ 3.025413090412699e-17,
+ 1.381391622963556e-17,
+ 1.3971080546020637e-16,
+ 2.39055197027825e-16,
+ 1.9217473581138213e-16,
+ -7.291597099654939e-17,
+ 3.1110262838119366e-16,
+ 1.5042279439276808e-16,
+ -1.890107699683668e-16,
+ -3.6826080870860787e-16,
+ -2.235042015118281e-16,
+ 6.797356683654505e-17,
+ -2.693300074472658e-16,
+ 2.5683958019771506e-17,
+ 7.829264497814406e-17,
+ 3.4112928461686856e-16,
+ -6.071505696139222e-16,
+ -8.610950176677017e-17,
+ -8.08982639076861e-17,
+ -1.7834014006643274e-16,
+ -2.2995621028974166e-17,
+ 1.463282503606306e-16,
+ 2.709430096417442e-16,
+ 2.8289576949313546e-17,
+ -1.49719690872098e-17,
+ 1.1911400820763599e-16,
+ 4.02175213823282e-16,
+ -1.7217764450291269e-16,
+ 9.00799687070247e-17,
+ 2.2888087549342276e-16,
+ 1.6431942868365892e-16,
+ 1.0364573075289436e-16,
+ -9.496033432108756e-17,
+ 1.0149506116025648e-16,
+ 8.875647972693986e-17,
+ 2.961306592939839e-17,
+ -5.619037901072717e-16,
+ -9.60356691174065e-17,
+ -1.228363209641246e-16,
+ 1.1448179677733903e-16,
+ -2.273919503908273e-16,
+ 2.1659724339701027e-16,
+ 3.1184709093249143e-17,
+ -2.2896359355467806e-16,
+ -5.968108119570095e-17,
+ -1.2490427249550716e-17,
+ -4.735609006866083e-17,
+ -1.1282743555223297e-16,
+ -7.610061635487855e-18,
+ -1.494715366883321e-16,
+ 5.379155523432339e-16,
+ 2.692472893860105e-16
+ ],
+ [
+ 0.5883250680230345,
+ 0.6981321932778088,
+ 0.5189581364097602,
+ -2.9221232437764297,
+ 4.376697618698388,
+ -4.3734107925591355,
+ 2.913615810140195,
+ -0.508033440918775,
+ -1.2322002259097147,
+ -1.5052442342182641,
+ 5.997107748082079,
+ 3.1026440266901436,
+ -4.31065604376555,
+ 2.7564496125685936,
+ -0.18721122657973016,
+ -1.417207346928898,
+ -1.6952655428499317,
+ 5.246636529104287,
+ 2.9645523095809745,
+ -4.190051456894089,
+ 2.4925722893214006,
+ 0.008890339843889483,
+ -2.633120399946845,
+ 4.254550805032899,
+ -4.500132690191994,
+ 2.2240613448673328,
+ 4.439707366665862,
+ 1.4762941731805188,
+ 0.3535504758560565,
+ -2.7914776131401764,
+ 4.364339373881843,
+ -4.427011211349713,
+ 2.106039736211323,
+ 4.5954642729642465,
+ 1.9798028760538142,
+ 0.5834450491554435,
+ -3.0397075484857083,
+ 4.421568644129515,
+ -4.37137135981337,
+ 2.7894399507808685,
+ -0.3541051474152711,
+ -2.1992773625681665,
+ 6.235475933662206,
+ 6.027714876817227,
+ -0.24713101228719292,
+ -0.5343355778331317,
+ -6.879120287719716,
+ -7.066210172616795,
+ 2.862210984281104,
+ -0.44207628513506225,
+ -2.1178319706400943,
+ 4.065441845308175,
+ -4.565801060171819,
+ 3.587909457068323,
+ -1.0840865646913749,
+ -2.875761067217929,
+ -3.940791862254768,
+ -1.704087161288208,
+ 4.152783191128839,
+ -4.542603293514897,
+ 3.3788271255969415,
+ -0.8607825120271496,
+ -2.3259313459367825,
+ -3.887237098863117,
+ -1.846300428208343,
+ 4.278992484452018,
+ -4.486770582869233,
+ 3.2428644119878007,
+ -0.801952298121579,
+ -1.7892227100293718,
+ 3.8042642183515047,
+ -2.979964594131487,
+ -5.122646896377752,
+ 2.5296103751649794,
+ 1.8501612559875793,
+ -0.6082010362460264,
+ -2.080954117544913,
+ 3.9746465066543717,
+ -3.1451331070590545,
+ -5.923283654543733,
+ 2.48663273588064,
+ 1.7140712320965596,
+ -0.2879686935592891,
+ -2.2571744306684485,
+ 4.068593089436259,
+ -4.547904159353439,
+ 3.4894505965663485,
+ -1.2992812593601484,
+ 0.45697000532689813,
+ 0.8281726240949787,
+ 5.2836169469385945,
+ 4.473704001227249,
+ -2.273904723734462,
+ -0.2689564438286017,
+ 2.7212720665980634,
+ -4.345045648552784,
+ 4.44382907232327,
+ -3.1032577994375363,
+ 0.7155753859712405,
+ 2.2158404952647817,
+ 4.782444445216714,
+ 2.1985401335055283,
+ -4.404200941418218,
+ 4.390185352263902,
+ -2.8588886182503166,
+ 0.4086888369752698,
+ 1.5699506494562578,
+ 4.386909173674635,
+ 2.598092027883782,
+ -2.277384943042489,
+ -0.267018011531987,
+ 2.7215506427381455,
+ -4.347530712071856,
+ 4.447525333342579,
+ -3.1070811481512672,
+ 0.6167600375702397,
+ 1.921273278617825,
+ 4.1751169838442665,
+ 2.039441187717745,
+ -4.406827874379233,
+ 4.357167134904684,
+ -2.862620210513076,
+ 0.43263683409747816,
+ 1.7052865347520891,
+ 4.7658996657611095,
+ 2.2142702119919404,
+ -4.485978005349728,
+ 4.289845104206693,
+ -2.706407263896466,
+ 0.0965183545452183,
+ 2.4205626978687595,
+ -4.157021653861647,
+ 8.19637842486307,
+ 8.088637407621892,
+ 2.4619599416112043,
+ 2.2153455129972253,
+ -2.9943358129251396,
+ -3.225674938945394,
+ 0.19166451697354644,
+ 2.3406635936279807,
+ -4.112420397718005,
+ 4.534525152817958,
+ -3.4261982647931966,
+ 1.2065175467476297,
+ 0.7800185894779064,
+ 0.5927092683808945,
+ -5.619070549651461,
+ -2.8359464964550574,
+ 4.501233592599884,
+ -3.2900250127590356,
+ 0.8933061201389229,
+ 0.994200646273337,
+ 0.9064148499143093,
+ -5.223969057430294,
+ -2.8753571747750266,
+ 4.4281759292386464,
+ -3.05777570068356,
+ 0.7000740539305521,
+ 2.021109189107186,
+ -3.938848325817903,
+ 4.58323555025645,
+ -2.505070020223734,
+ -4.820450732158043,
+ -0.6793465386911055,
+ 0.10877702380216418,
+ 2.1954455463397355,
+ -4.094082569986355,
+ 4.559428632552068,
+ -2.554327425341353,
+ -5.336285925893707,
+ -1.2185805689061904,
+ -0.17516303935639582,
+ 2.4723237960091056,
+ -4.180250427239308,
+ 4.533502954703444,
+ -3.318679143428324,
+ 1.0566435732727602,
+ 1.550729363169086,
+ -3.554115920481981,
+ -4.128373509792456,
+ -9.267731583044122e-16,
+ -3.0208635970436566e-16,
+ -2.1423977865123414e-16,
+ -1.593149859777131e-16,
+ 1.3375510504982458e-16,
+ 2.3653229615953826e-16,
+ 1.135718981035307e-16,
+ -1.1610513872947435e-16,
+ 6.863944722965023e-16,
+ -1.5964585822273432e-16,
+ -1.7094721334174006e-16,
+ 8.536503921547244e-17,
+ -4.45602195982316e-16,
+ -5.579333231670172e-17,
+ 1.3081861387526133e-16,
+ 7.763090048810163e-17,
+ 2.067951531382569e-17,
+ 5.906069573628618e-17,
+ -4.104883789794399e-17,
+ 2.4707884896958937e-16,
+ -4.1607184811417286e-17,
+ -3.638043731584785e-17,
+ -5.608284553109528e-17,
+ -6.87387089031566e-17,
+ -8.189088064274973e-17,
+ 3.7322389238392604e-16,
+ 5.773720675620133e-17,
+ 1.0769891575440419e-16,
+ -1.4773445740197074e-16,
+ -3.1101991031993836e-16,
+ -5.193039885607908e-16,
+ 8.619221982802547e-17,
+ 5.2608686958372554e-17,
+ -3.3587668772715684e-16,
+ -1.6907571720583883e-16,
+ 7.100518378155189e-16,
+ -1.7416287797303995e-16,
+ -1.9273308272485542e-17,
+ 4.2177939434078876e-16,
+ -1.1580528575742387e-16,
+ -1.9852334701272662e-16,
+ -2.393033512115909e-16,
+ 7.46944093135384e-17,
+ -1.8632243297756946e-16,
+ -1.5819829215076652e-16,
+ 2.15087638779101e-16,
+ -1.8582612461003764e-16,
+ 6.3213142411302365e-16,
+ 1.3615392882622836e-16,
+ 1.1911917808646444e-16,
+ -3.775252315692018e-16,
+ -2.093800925524851e-16,
+ 5.839895124624375e-17,
+ 4.344352577128501e-16,
+ 5.720781116416739e-16,
+ 5.360130369343619e-17,
+ 6.868701011487204e-17,
+ -4.2434365423970314e-17,
+ 4.863822001811802e-17,
+ -1.2209185841282688e-16,
+ 1.6766951016449869e-16,
+ 7.034654121880655e-17,
+ -6.59262948204763e-17,
+ -6.948317145445432e-17,
+ -1.0951871310202085e-16,
+ -3.389786150242307e-16,
+ 5.547073187780604e-16,
+ -2.8785885316845363e-17,
+ 7.313103795581317e-16,
+ 1.6593243087813733e-16,
+ -1.2705494208814505e-16,
+ 1.2763396851693217e-16,
+ 3.077111878697263e-17,
+ -6.427193359537025e-17,
+ -2.1539783150880838e-16,
+ -4.301339185275744e-18,
+ 3.395576414530178e-16,
+ 4.896909226313924e-16,
+ -1.4574922393184348e-16,
+ 3.247511084883186e-16,
+ -1.7376996718207726e-16,
+ 4.6652986547990755e-17,
+ -3.941515618815176e-17,
+ -5.853130014425224e-16,
+ 1.8872125675397324e-16,
+ -6.59262948204763e-17,
+ -3.9539233280034717e-17,
+ 1.9413928976619557e-16,
+ 1.0785608007078928e-15,
+ -3.2566100716212695e-16,
+ 7.346191020083438e-16,
+ -5.360130369343619e-17,
+ -7.345363839470886e-17,
+ -9.793818452627846e-17,
+ 1.6030760271277674e-16,
+ 2.276401045745932e-16,
+ -7.80858498250058e-17,
+ 3.867896544297957e-16,
+ -7.052541902627113e-16,
+ -3.4063297624933675e-16,
+ -4.850897304740661e-17,
+ -1.213887548921568e-15,
+ -6.203854594147707e-18,
+ 8.544775727672775e-17,
+ 3.484911920685905e-16,
+ 2.1688675661140383e-16,
+ 6.443736971788086e-17,
+ -1.5774334281386235e-16,
+ 6.046690277762632e-17,
+ -5.194694246833013e-17,
+ -1.4136516668531243e-16,
+ 2.8810700735221954e-16,
+ 6.687755252491229e-17,
+ -2.0216294170795994e-16,
+ 2.240005098793599e-16,
+ 1.589841137326919e-16,
+ 2.3756627192522955e-16,
+ -1.1588800381867918e-16,
+ -6.352747104407253e-17,
+ -2.3458842172003865e-16,
+ -1.4459117107426924e-16,
+ 1.9976411793155615e-17,
+ 3.900983768800078e-16,
+ -6.187310981896647e-17,
+ 4.13921178521535e-16,
+ 4.883674336513075e-16,
+ 2.1047610686411787e-16,
+ -1.6791766434826462e-17,
+ 4.1276312566396075e-17,
+ 1.6212740006039342e-17,
+ 2.0911125885340537e-16,
+ 3.2938331991861557e-16,
+ 2.341334723831345e-16,
+ -7.409470336943745e-17,
+ 4.1243225341893955e-16,
+ 2.259443843188595e-16,
+ -2.7458260433697754e-16,
+ -5.340278034642347e-16,
+ -3.513863242125261e-16,
+ 1.1171074172528639e-16,
+ -3.6759906421856545e-16,
+ 3.797792987384088e-17,
+ 1.0563096422302162e-16,
+ 4.228547291371077e-16,
+ -8.533195199097033e-16,
+ -8.172544452023912e-17,
+ -9.810362064878907e-17,
+ -2.5526793703386434e-16,
+ -4.9961708998202865e-17,
+ 1.981924747677054e-16,
+ 4.073037336211108e-16,
+ 6.352747104407253e-17,
+ -1.819797347616661e-18,
+ 1.492233825045662e-16,
+ 5.470972571425725e-16,
+ -2.251999217675618e-16,
+ 1.050519377942345e-16,
+ 3.544468924789723e-16,
+ 2.5915568591286357e-16,
+ 1.4026915237367967e-16,
+ -1.1249656330721176e-16,
+ 1.422337063284931e-16,
+ 1.4285409178790788e-16,
+ 6.327931686030661e-18,
+ -9.443300668058502e-16,
+ -1.4392942658422682e-16,
+ -1.9049969507096225e-16,
+ 1.827241973129638e-16,
+ -3.864587821847745e-16,
+ 2.839711042894544e-16,
+ 8.933550615572699e-18,
+ -2.776018135727961e-16,
+ -1.1506082320612615e-16,
+ -5.825419463904697e-17,
+ -4.940336208472957e-17,
+ -1.5865324148767068e-16,
+ -1.2738581433316625e-17,
+ -2.1390890640621293e-16,
+ 6.72663274128122e-16,
+ 1.710609506759661e-16
+ ],
+ [
+ -1.976445002275194,
+ -1.7394211844980203,
+ 0.5747478890877269,
+ 1.033118330314793,
+ -2.3825206648524646,
+ 2.886787020844779,
+ -2.481157022386343,
+ 1.193195945753381,
+ 0.1649437781365609,
+ -0.2511349430953857,
+ -3.5910006976440743,
+ -1.7648279960162743,
+ 2.8869825544985495,
+ -2.410301428180616,
+ 1.0058951497535074,
+ 0.329483158954318,
+ 0.029424903011736704,
+ -3.2100875172082564,
+ -1.7153089626565863,
+ 2.872910686230885,
+ -2.289077125604761,
+ 0.8876064136244984,
+ 0.8153131832069259,
+ -2.240833798750552,
+ 2.864418143395651,
+ -1.7355811683168223,
+ -3.232193960268345,
+ 0.11619455273488402,
+ 0.3779353529635304,
+ 0.9346424368163316,
+ -2.366263624565553,
+ 2.8837931611934438,
+ -1.6944652588263496,
+ -3.441020578214339,
+ -0.12478251833663216,
+ 0.23594103824576262,
+ 1.1239470795691706,
+ -2.4398720093907813,
+ 2.886846522724108,
+ -2.4259957758425634,
+ 1.10338222815461,
+ 0.5003961339449621,
+ -2.6878913615717397,
+ -2.542638703614036,
+ 1.0451436056424424,
+ 1.2130427449918253,
+ 5.002671895806402,
+ 5.088270580573389,
+ -2.4585329081096794,
+ 1.1548059938167055,
+ 0.4427826047335819,
+ -2.045316136027839,
+ 2.814146811638734,
+ -2.750543278887389,
+ 1.2107792343414872,
+ 2.7137664224541096,
+ 1.5492586796453647,
+ 0.5329286875529395,
+ -2.1319584541024197,
+ 2.840740202385052,
+ -2.672505912173637,
+ 1.087834508476333,
+ 2.338968696772698,
+ 1.635728419505378,
+ 0.6439469373093917,
+ -2.267858557522564,
+ 2.8693422163530196,
+ -2.6197801765286006,
+ 1.3616262821841834,
+ 0.21405303301492493,
+ -1.8005642650151732,
+ 1.7598527887484872,
+ 2.851791899596069,
+ -2.4404311796991833,
+ -1.5806166923273886,
+ 1.2520052970219282,
+ 0.41763405628844646,
+ -1.95660232481421,
+ 1.887621440595784,
+ 3.377664532692271,
+ -2.5847842482554784,
+ -1.5574440756189643,
+ 1.0645463994979885,
+ 0.5416745369167676,
+ -2.048405707276002,
+ 2.834810101219558,
+ -2.7150889266594618,
+ 1.6376921523181114,
+ -1.5984428874223,
+ -2.116668408118941,
+ -4.420257122324671,
+ -3.675199281912077,
+ 2.1416010301629385,
+ -0.7718951539891181,
+ -0.9235564813538267,
+ 2.301664037664202,
+ -2.9229066455766084,
+ 2.5201273392271473,
+ -1.0411968740098771,
+ -2.4447825832471644,
+ -2.157491380853577,
+ -0.8751981091651336,
+ 2.3754803325401923,
+ -2.9281061045098293,
+ 2.4156759936959156,
+ -0.8353401425721608,
+ -1.9442687206639202,
+ -2.06490173608795,
+ -0.9114661656970587,
+ 2.484243867431967,
+ -0.7723788944984603,
+ -0.924431748110981,
+ 2.303651125876899,
+ -2.9252551253387247,
+ 2.522128547143945,
+ -0.9530439407968122,
+ -2.1307498270325724,
+ -1.8782349647081533,
+ -0.7936754724624536,
+ 2.3775355205427444,
+ -2.9314064366685173,
+ 2.417571458637913,
+ -0.8523894581112589,
+ -2.111755433093185,
+ -2.2432311393813738,
+ -0.9289323790089746,
+ 2.486387057807324,
+ -2.929343109267176,
+ 2.346218353164051,
+ -0.9925727627574163,
+ -0.7026503655578066,
+ 2.0944135208053027,
+ -4.810677559573107,
+ -4.705051189368114,
+ -0.7234836395397377,
+ -0.5432221493279429,
+ 3.3072982756548526,
+ 3.4456229609252813,
+ -1.049753256899514,
+ -0.643990050864562,
+ 2.049379371315444,
+ -2.8880157673282425,
+ 2.6488639465819164,
+ -1.629428282015804,
+ 0.10847607756208995,
+ 0.7746434156865758,
+ 3.182394778679923,
+ 1.5100705038355746,
+ -2.905559644062061,
+ 2.5970642177615155,
+ -1.454678393455792,
+ -0.03748222875435125,
+ 0.4857182788063632,
+ 3.034031449756202,
+ 1.5710392852154347,
+ -2.924974386148466,
+ 2.5007033941781525,
+ -1.3460287285085413,
+ -0.417177857584531,
+ 1.8812513558116548,
+ -2.8159604968308702,
+ 1.8313643200660938,
+ 3.317722389214616,
+ -0.6293243543618587,
+ -0.6600112865075678,
+ -0.5390939328597585,
+ 2.0317892929963377,
+ -2.8646537477969187,
+ 1.9033286638282365,
+ 3.7579212598319454,
+ -0.43701399265315044,
+ -0.520471212445191,
+ -0.739358904005015,
+ 2.1187172269131667,
+ -2.8887297003206367,
+ 2.6074024885548237,
+ -1.546833852682221,
+ -0.09428493133097986,
+ 1.017858472635608,
+ 1.081993903884752,
+ 1.0929951023969431e-15,
+ 1.1973956354587921e-15,
+ 2.9431086194636725e-16,
+ 2.93152809088793e-16,
+ -2.954689148039415e-16,
+ -1.4693829606238845e-16,
+ -1.9736529415515238e-16,
+ -3.3831687053418827e-16,
+ -8.300757446969632e-16,
+ 1.3210074382471852e-16,
+ 1.8032537353656e-16,
+ 3.212769499155959e-16,
+ 1.8075964335815035e-16,
+ 2.837229501056885e-17,
+ -6.311388073779601e-17,
+ -8.238718901028154e-17,
+ -1.65022532204329e-16,
+ -1.3801508520447267e-16,
+ 3.639594695233322e-17,
+ 9.620110523991711e-17,
+ 5.067127486740851e-17,
+ 1.4723814903443893e-17,
+ 2.5146290621612038e-17,
+ 8.784658105313153e-17,
+ 1.833032237417509e-16,
+ -2.774363774502855e-16,
+ -8.569591146049365e-17,
+ -3.8546616544971083e-17,
+ 2.905058311286233e-16,
+ 4.0823431181023293e-16,
+ 2.962960954164945e-16,
+ 1.0753347963189358e-17,
+ 2.5601239958516207e-16,
+ 3.5295796737637686e-16,
+ 3.060568266446202e-18,
+ -5.985478912433708e-16,
+ 1.0422475718168147e-16,
+ 6.402377941160434e-17,
+ -3.0738031562470503e-16,
+ 2.8802428929096424e-16,
+ 1.5964585822273432e-16,
+ 3.1778211182755936e-16,
+ 8.619221982802547e-17,
+ 2.2209799447048793e-16,
+ 1.2260884629567253e-16,
+ -1.150194641754985e-16,
+ 1.4442573495175863e-16,
+ -6.981404369947554e-17,
+ -8.983181452325879e-17,
+ -1.2862658525199579e-17,
+ 2.2362827860371103e-16,
+ 1.4475660719677984e-16,
+ 9.330597309598151e-17,
+ -1.7039920618592368e-16,
+ -6.796115912735674e-16,
+ -8.189088064274973e-17,
+ -9.429858983104514e-18,
+ 1.5418646617988433e-16,
+ 5.757177063369073e-17,
+ 1.4889251025954498e-16,
+ 2.609754832604802e-17,
+ 3.13915042463874e-17,
+ 7.263679753981274e-17,
+ 4.764560328305439e-17,
+ -5.624828165360588e-17,
+ 1.4273001469602493e-16,
+ -5.707753021769029e-16,
+ -7.213014941462401e-17,
+ -4.030618480423623e-16,
+ -9.719372197498074e-17,
+ -5.136791603954301e-17,
+ -1.3789100811258971e-16,
+ -9.967526381263982e-17,
+ -2.783462761240938e-17,
+ -2.671793378546279e-17,
+ 2.19357958691406e-17,
+ -1.8504030302811227e-16,
+ -2.815722805130506e-16,
+ 3.1011001164613003e-16,
+ -2.93152809088793e-16,
+ 1.2393233527575737e-16,
+ -2.686682629572234e-16,
+ 1.1233112718470116e-16,
+ 4.476701475136986e-16,
+ -1.6536891408583558e-16,
+ -3.561012537040784e-17,
+ -1.859502017019206e-16,
+ -1.828896334354744e-16,
+ -1.0147851754800544e-15,
+ 3.4923565461988824e-16,
+ -1.852884572118782e-17,
+ -7.510799961981491e-17,
+ 1.3710518653066432e-17,
+ -7.535615380358081e-17,
+ -1.9149231180602588e-16,
+ -1.772648052701138e-16,
+ 1.4426029882924803e-16,
+ -4.293067379150213e-17,
+ 1.6684232955194566e-16,
+ 3.310790401743493e-17,
+ 1.1299287167474358e-16,
+ 5.889525961377557e-16,
+ 2.349399734803737e-16,
+ -1.3645378179827883e-16,
+ -2.0997979849658605e-16,
+ -1.2639319759810263e-16,
+ -6.216262303336003e-17,
+ 1.8541253430376113e-16,
+ 2.5576424540139616e-16,
+ 9.661469554619362e-17,
+ 4.235164736271501e-17,
+ 1.9418064879682322e-17,
+ -1.8611563782443123e-17,
+ 1.5038143536214043e-16,
+ -1.7707868963228937e-16,
+ -2.6614536208893662e-17,
+ -2.1651452533575497e-16,
+ 1.0670629901934055e-17,
+ 3.1681017460780955e-16,
+ 3.506211821459146e-17,
+ 4.9093169355022186e-17,
+ 5.5007510734776334e-17,
+ -3.475735385765395e-16,
+ -3.30872245021211e-19,
+ -2.6420148764943704e-16,
+ -6.878006793378425e-17,
+ -8.602678370551487e-17,
+ -3.9167002004385854e-17,
+ -2.1978188875533943e-16,
+ -1.4475660719677984e-16,
+ -2.7371406469379686e-16,
+ -2.069605892607675e-16,
+ -4.010585199963354e-16,
+ 1.1243452476127029e-16,
+ -2.982813288866218e-16,
+ -3.1962258869048984e-16,
+ 1.5501364679243736e-16,
+ -4.863822001811802e-17,
+ 2.9712327602904754e-16,
+ -7.46116912522831e-17,
+ 8.102234099956905e-17,
+ 6.009467150197746e-17,
+ 3.019209235818551e-17,
+ -2.6502866826199007e-16,
+ 6.968169480146704e-16,
+ -9.777274840376786e-17,
+ 1.1940352142202954e-16,
+ 4.102815838263017e-16,
+ -4.7314731038033177e-17,
+ -6.121136532892405e-17,
+ -2.486504921334401e-16,
+ 1.3234889800848443e-16,
+ 3.308722450212111e-17,
+ -4.6652986547990755e-17,
+ -4.384057246531046e-16,
+ 1.3201802576346322e-16,
+ -1.0166049728276709e-16,
+ -3.125088354225338e-16,
+ -4.2980304628255313e-16,
+ -1.3301064249852685e-16,
+ 3.8877488789992295e-17,
+ 5.091296670263885e-17,
+ -7.494256349730431e-17,
+ 2.936491174563248e-17,
+ 8.119604892820519e-16,
+ 1.4558378780933287e-17,
+ 6.170767369645586e-17,
+ -7.725866921245277e-17,
+ 2.602310207091825e-16,
+ 5.376673981594679e-17,
+ -3.774011544773188e-17,
+ 3.4625780441469734e-16,
+ 1.5468277454741615e-16,
+ 1.682485365932858e-16,
+ -4.681842267050136e-17,
+ 9.797954355690612e-17,
+ -3.970466940254533e-18,
+ 1.3334151474354806e-16,
+ -1.020410003645415e-15,
+ 4.4171444710331673e-16
+ ],
+ [
+ 4.265372455427122,
+ 3.5553221356922444,
+ -2.073940425324193,
+ 0.5744375575492083,
+ 1.0306737431813024,
+ -2.4357622294984367,
+ 2.8863456524337603,
+ -2.480781394287631,
+ 0.9463591292676851,
+ 2.2811855337103175,
+ 2.3249476505524904,
+ 0.971649469768002,
+ -2.5020716595961687,
+ 2.886469127642385,
+ -2.3650927301362517,
+ 0.7410100485387383,
+ 1.7929612624061413,
+ 2.204186569766855,
+ 1.000560773553719,
+ -2.6031021531991794,
+ 2.87233547014452,
+ -2.290183296715528,
+ 0.797832503199497,
+ 0.8128153216010067,
+ -2.240650829224498,
+ 1.8660886416957634,
+ 3.1474215037670237,
+ -1.9139560838184535,
+ -1.32867216882691,
+ 0.6787836882533211,
+ 1.0070102841830086,
+ -2.3660521010896884,
+ 1.8938101812442998,
+ 3.495104815459485,
+ -1.8692046404559715,
+ -1.2287754595271265,
+ 0.4782114572122261,
+ 1.1237433488522848,
+ -2.4381707443468565,
+ 2.8860281850200877,
+ -2.4270781814913325,
+ 1.103094408890677,
+ -0.18249320186888077,
+ -0.3148639883542483,
+ -2.3260340194728903,
+ -2.427247730770818,
+ -4.863413811159067,
+ -4.870179690769065,
+ 2.8868191996985066,
+ -2.4580834992844736,
+ 1.1566529228798679,
+ 0.5350434621352677,
+ -2.0434922889826725,
+ 2.813854484702705,
+ -1.8164273291820132,
+ -3.5803583561342798,
+ 0.4868315141232549,
+ 0.5510854965982288,
+ 0.6575465614450887,
+ -2.1318796053951603,
+ 2.8532642059841677,
+ -1.7566126309340617,
+ -3.2538987340473233,
+ 0.21292070645643946,
+ 0.43165589545763566,
+ 0.8531960233203748,
+ -2.267712108688058,
+ 2.8685893400750535,
+ -2.575929623904638,
+ 1.3633894613112376,
+ 0.21416894214450766,
+ -1.0943403543766,
+ -1.4500596131789552,
+ 3.2818495087906063,
+ 1.892460398559934,
+ -2.51345326605493,
+ 1.1817184458115573,
+ 0.4177493660378274,
+ -1.230122870102724,
+ -1.875933425588,
+ 3.6879583881347133,
+ 1.9846507602960477,
+ -2.403228634639156,
+ 1.0641045089045447,
+ 0.5392840632684336,
+ -2.1144386023855484,
+ 2.8339337484084726,
+ -2.714700766808832,
+ 3.470330655691892,
+ 4.349890045882768,
+ 5.171656017869387,
+ 4.211163490735763,
+ -2.8944482455427885,
+ 2.1407678745017558,
+ -0.7737951144820778,
+ -1.012443441324014,
+ 2.299982793792327,
+ -2.922451213174081,
+ 1.8004991849519898,
+ 3.6380107826792685,
+ 0.09853864483616787,
+ -0.2446036863889522,
+ -1.1275571782400444,
+ 2.3751986511337524,
+ -2.9285437850348432,
+ 1.6266107952543818,
+ 3.10485095538885,
+ 0.30378672089157355,
+ -0.1414599287437517,
+ -1.314267318841984,
+ 2.4838466248773785,
+ -0.7718690708271,
+ -1.0147062835134748,
+ 2.3017812538775675,
+ -2.923288289847009,
+ 1.6901661721494539,
+ 3.181739208107406,
+ 0.07298221381004365,
+ -0.27207642875656185,
+ -1.1298230722465576,
+ 2.4198052319313628,
+ -2.9292326876296864,
+ 1.6426457367514744,
+ 3.3722990290572157,
+ 0.3299393241288405,
+ -0.1283112373670035,
+ -1.3165226921039728,
+ 2.4855350980379685,
+ -2.927100482355881,
+ 2.2871567987630734,
+ -0.9919642401933492,
+ -0.7046548319981479,
+ 2.9377598227447907,
+ 2.7938446724101325,
+ -0.885150037483639,
+ -1.054943451442041,
+ -4.925208372769366,
+ -5.018617117190704,
+ 2.3252848704637596,
+ -1.0498283442072887,
+ -0.6414192889976666,
+ 2.113516023750254,
+ -2.8871417167211373,
+ 2.6483997815935045,
+ -1.12831039052388,
+ -2.578132199346925,
+ -1.7254116976323237,
+ -0.6319746996888503,
+ 2.197057970467601,
+ -2.9050279251788163,
+ 2.5620254862768586,
+ -1.001245498637136,
+ -2.2052155899956785,
+ -1.7915580096709098,
+ -0.7401574379826784,
+ 2.3224941433702253,
+ -2.9244133742449545,
+ 2.5013790411470875,
+ -1.2617716264504024,
+ -0.414673385347392,
+ 1.880812372937751,
+ -1.79489124676855,
+ -2.9409750682795677,
+ 2.312183897499841,
+ 1.5209198233539298,
+ -1.1473581501201386,
+ -0.6147472066042616,
+ 2.0313177686165993,
+ -1.919553221381182,
+ -3.4674051713080614,
+ 2.427696775611752,
+ 1.4865959936388964,
+ -0.9575694102274699,
+ -0.7392390087717544,
+ 2.1164512864714453,
+ -2.9023234089793073,
+ 2.607925125765082,
+ -1.5466204858362187,
+ 1.3820750587572177,
+ 1.8547691914608604,
+ -1.0716952016237027e-15,
+ -1.2440796412797534e-15,
+ -3.59823566460567e-16,
+ -1.995573227784179e-16,
+ 4.6032601088575984e-17,
+ 1.1042861177582918e-16,
+ 2.5271401689260687e-16,
+ 3.507245797224837e-16,
+ 7.650593485502952e-16,
+ -7.440489609914484e-17,
+ -1.9492511134812095e-16,
+ -6.287399836015562e-16,
+ -1.241184509135818e-16,
+ -1.3509927354522324e-16,
+ -6.013603053260511e-17,
+ 3.448515973733572e-16,
+ 1.163015941249557e-16,
+ 1.0043523600042292e-16,
+ 2.3218959794363487e-16,
+ -2.2821913100338034e-16,
+ 2.9778502051908992e-18,
+ 1.1580528575742387e-16,
+ 4.2517083485225616e-17,
+ -7.730002824308042e-17,
+ -2.934836813338142e-16,
+ 3.275635225709989e-16,
+ 5.376673981594679e-17,
+ 3.5403330217269584e-17,
+ -3.0431974735825883e-16,
+ -4.2790053087368117e-16,
+ -2.901749588836021e-16,
+ -5.4097612060968004e-17,
+ -4.954088086156652e-16,
+ -2.323757135814593e-16,
+ -3.970466940254532e-17,
+ 7.79204137024952e-16,
+ -7.907846656006943e-17,
+ -8.238718901028154e-17,
+ 2.447627432544409e-16,
+ -4.807573720158197e-16,
+ -6.782881022934827e-17,
+ -3.5465368763211057e-16,
+ -2.1080697910913908e-16,
+ -8.561319339923835e-17,
+ 2.10103875588469e-17,
+ 3.8232287912200934e-16,
+ -2.8206858888058244e-17,
+ 6.140161686981123e-16,
+ -1.1113171529649927e-16,
+ 1.3731198168380258e-17,
+ -8.35193924737135e-17,
+ -1.0984958534704206e-16,
+ -1.1748032649784376e-16,
+ 3.1738920103659667e-16,
+ 2.2218071253174323e-16,
+ 6.110796775235491e-18,
+ 1.236428220613638e-16,
+ -1.0232224177280951e-16,
+ -1.9025154088719633e-17,
+ 1.845026356299528e-16,
+ -1.3665023719376017e-16,
+ -1.7536228986124187e-17,
+ -1.5828101021202182e-16,
+ 1.619619639378828e-16,
+ 5.525566491854224e-17,
+ -4.5970562542634507e-17,
+ 5.157471119268128e-16,
+ -9.067967465112565e-17,
+ 3.211115137930853e-16,
+ 1.4452913252832776e-16,
+ 2.6792380040592566e-16,
+ 1.902101818565687e-16,
+ 1.284611491294852e-16,
+ -1.71309104859732e-16,
+ 3.51282926635957e-16,
+ -5.864710543000966e-17,
+ 5.40148939997127e-17,
+ 1.081125060606807e-16,
+ -1.4839620189201316e-16,
+ 1.9394800424954268e-16,
+ -9.537392462736408e-17,
+ 3.585827955417375e-17,
+ 9.330597309598151e-17,
+ -2.5557812976357173e-16,
+ 1.0918784085699964e-16,
+ 7.093073752642212e-17,
+ 1.41654679899706e-16,
+ 6.840783665813539e-17,
+ 3.90429249125029e-16,
+ 6.230324373749403e-16,
+ 1.4068274267995618e-16,
+ -4.2417821811719254e-16,
+ -1.317698715796973e-16,
+ 2.654422585682666e-16,
+ 3.3765512604414585e-16,
+ 1.1266199942972237e-16,
+ 8.25939841634198e-17,
+ 1.562544177112669e-16,
+ -3.601544387055882e-16,
+ 2.2664748783952955e-17,
+ -1.3913177903141925e-16,
+ -4.85699776175824e-16,
+ -1.317698715796973e-16,
+ 4.632211430296955e-18,
+ -7.370179257847477e-17,
+ -1.2947444537986266e-16,
+ 4.413008567970402e-17,
+ -1.6626330312315854e-16,
+ 2.80579663777987e-16,
+ -8.337980574534518e-17,
+ -1.239530147910712e-16,
+ 1.6692504761320096e-16,
+ 6.662939834114638e-17,
+ -1.1481266902236024e-16,
+ 7.775497757998459e-17,
+ -1.5195307852599116e-16,
+ 1.8231060700668727e-16,
+ 7.750682339621868e-17,
+ -3.297141921636368e-16,
+ -8.000904474919159e-17,
+ 8.768114493062092e-17,
+ 1.133237439197648e-16,
+ 1.624582723054146e-16,
+ 2.7958704704292335e-17,
+ 1.7006833394090247e-16,
+ 4.016789054557502e-16,
+ 2.9778502051908996e-17,
+ 2.1005217680018444e-16,
+ 2.653595405070113e-16,
+ 1.6659417536817975e-16,
+ 2.4070955825293105e-16,
+ 1.5832236924264947e-16,
+ 3.808339540194139e-16,
+ -2.922429104149847e-16,
+ 2.689887954445877e-16,
+ 3.1399776052512926e-16,
+ -8.19710137645908e-17,
+ 3.7429922718024497e-16,
+ -1.6096934720281916e-16,
+ 1.0546552810051101e-17,
+ 7.279189390466644e-18,
+ 1.2159555004529507e-16,
+ -6.8097643928428e-17,
+ 3.839772403471154e-16,
+ -6.514874504467645e-16,
+ -4.566036981292712e-17,
+ -1.79022564071789e-16,
+ -4.295548920987872e-16,
+ 1.4293680984916318e-16,
+ 4.4254162771586974e-17,
+ 1.3962808739895107e-16,
+ 1.6543612251060553e-17,
+ -6.617444900424221e-17,
+ 1.4756902127946014e-16,
+ 5.270794863187892e-16,
+ -1.6295458067294643e-16,
+ 1.980270386451948e-16,
+ 1.7875373037270926e-16,
+ 2.540478456303486e-16,
+ 2.3915859460439413e-16,
+ -9.727644003623604e-17,
+ -7.394994676224067e-17,
+ -1.2841979009885753e-17,
+ 5.277412308088316e-17,
+ -7.82512859475164e-17,
+ -1.654361225106055e-19,
+ -3.8298462361205175e-17,
+ -5.653779486799944e-17,
+ -8.823949184409421e-17,
+ -3.3004506440865804e-17,
+ 2.5253824101243935e-16,
+ -4.0333326668085624e-16,
+ -5.0364959546822466e-17,
+ -5.4676638489755123e-17,
+ -5.558653716356346e-17,
+ -1.533592855673313e-16,
+ -7.039307012826266e-17,
+ -1.1291015361348828e-16,
+ 9.889771403683999e-16,
+ -1.0968414922453146e-16
+ ],
+ [
+ -5.145502543518587,
+ -4.197513860614239,
+ 2.8080727403249943,
+ -2.061675041828224,
+ 0.5718836871824668,
+ 1.1137924939546098,
+ -2.423104421916196,
+ 2.8716566035628897,
+ -1.7412463983028417,
+ -3.552667778830156,
+ -0.30699100373735727,
+ 0.13408274481660581,
+ 1.2275391948588856,
+ -2.49030985099391,
+ 2.8683557977170424,
+ -1.5624630483018858,
+ -3.0176718282554638,
+ -0.4842054824762011,
+ 0.03668567316913155,
+ 1.406510702711804,
+ -2.5906327717088775,
+ 2.8576092201616707,
+ -2.2174785805954276,
+ 0.7941008569971003,
+ 0.8108399916211326,
+ -1.3857746624684215,
+ -2.034360004606999,
+ 3.074588586287597,
+ 1.8390128245796404,
+ -2.134207113329096,
+ 0.5984716532204903,
+ 1.0040094415909167,
+ -1.47282211408517,
+ -2.406336009126067,
+ 3.239432915235253,
+ 1.813592553285588,
+ -1.9914115238034378,
+ 0.4736361762927025,
+ 1.117754880546345,
+ -2.477285871605771,
+ 2.8712664127706433,
+ -2.4133530575491657,
+ 2.9748750034054856,
+ 3.0511793415335853,
+ 2.838361231345303,
+ 2.8402284570623033,
+ 3.135145087772314,
+ 3.0613999167041617,
+ -2.4462653534704466,
+ 2.871840923930946,
+ -2.4453775254377157,
+ 1.0629004952349448,
+ 0.5320705196369334,
+ -2.034506446096045,
+ 1.8244319404287397,
+ 3.2710051437867915,
+ -2.3508250596537295,
+ -1.4480515844851358,
+ 0.9482284111965035,
+ 0.6563811299081203,
+ -2.1743279776084883,
+ 1.8469059615452508,
+ 3.0993095249207747,
+ -1.980217271752386,
+ -1.359313162225562,
+ 0.753761592535835,
+ 0.8509363143037754,
+ -2.2556842793916214,
+ 2.862878858039081,
+ -2.5627950871829923,
+ 1.3545369315278908,
+ 0.07533128317422395,
+ -0.4167768276346989,
+ -3.0451403497654455,
+ -1.5837041012336346,
+ 2.8710924838080505,
+ -2.4588576684434944,
+ 1.1736702682292826,
+ 0.1746998391049028,
+ -0.22946637000688994,
+ -3.5786177723603125,
+ -1.7603990247435108,
+ 2.8702260620610525,
+ -2.389483124458691,
+ 1.0589024267022502,
+ 0.6299079139037735,
+ -2.1033574891643987,
+ 2.8198898573768334,
+ -4.195943434267909,
+ -5.147056676269288,
+ -4.22782153194632,
+ -3.367207769437419,
+ 2.618791672102957,
+ -2.8788187959929568,
+ 2.1297628211128408,
+ -0.677059350275493,
+ -1.0069051833173466,
+ 2.2893473190077174,
+ -1.9664174123877256,
+ -3.6344798227039847,
+ 1.979405273180398,
+ 1.2772669160034822,
+ -0.5551201985718273,
+ -1.123697862131329,
+ 2.4067015236255918,
+ -1.8811203793645999,
+ -3.2431303646536356,
+ 1.545308070518581,
+ 1.1413830725335403,
+ -0.3553970692634176,
+ -1.309310140059594,
+ 2.4706938277970534,
+ -0.6753431365514352,
+ -1.0075029227476682,
+ 2.2886853655488584,
+ -1.870090339312677,
+ -3.185943568351201,
+ 1.7446235348134005,
+ 1.2420981274640028,
+ -0.5534675105989108,
+ -1.1946912157397966,
+ 2.405894431698389,
+ -1.8908912221582703,
+ -3.5224074351592014,
+ 1.6790041077217266,
+ 1.136867892607005,
+ -0.3538542220011777,
+ -1.3097041988265061,
+ 2.469809027554504,
+ -2.903393821530662,
+ 2.2738322941392903,
+ -0.9846122126060376,
+ -0.11444049685444829,
+ 0.020575043358413113,
+ 2.221997556840784,
+ 2.333048902612836,
+ 4.922827867984226,
+ 4.936652194981439,
+ -2.9093670164935013,
+ 2.3119822762647075,
+ -1.0448494118422305,
+ -0.7306280189510543,
+ 2.1024034178756503,
+ -2.872677117699776,
+ 1.772793799032758,
+ 3.5273003088683086,
+ -0.2863684991493192,
+ -0.4471388230240245,
+ -0.8490114531867562,
+ 2.187098717838278,
+ -2.898950423469277,
+ 1.7060490534954231,
+ 3.192857053794366,
+ -0.028711760538396202,
+ -0.32741548059662207,
+ -1.0421920956535835,
+ 2.3117343099589784,
+ -2.909255167995482,
+ 2.439987072433006,
+ -1.2558323294717697,
+ -0.41434581037143725,
+ 1.1718814753467603,
+ 1.60517167794031,
+ -3.228512105549888,
+ -1.8791711743935264,
+ 2.373848985433777,
+ -1.0685285817916077,
+ -0.6134044916849797,
+ 1.3081623396835385,
+ 2.045200522899282,
+ -3.6121584793830857,
+ -1.9606276640634583,
+ 2.253103243926045,
+ -0.9508230048898829,
+ -0.7347931489291983,
+ 2.169024784089392,
+ -2.8874389978212602,
+ 2.593934320214651,
+ -3.315008194898646,
+ -4.166619114784728,
+ 1.7481635065695685e-15,
+ 2.268956420232955e-15,
+ 3.330229146138489e-16,
+ 7.840121243354164e-17,
+ -2.0581287616085017e-16,
+ -2.0307284038176827e-16,
+ -3.8538344738845554e-16,
+ -1.8702553649823953e-16,
+ -4.69921305991375e-16,
+ 4.1607184811417286e-17,
+ 1.594804221002237e-16,
+ 6.816640331684646e-16,
+ 7.097209655704977e-17,
+ 2.2003004293910534e-16,
+ -4.6652986547990755e-17,
+ -3.6429034176835334e-16,
+ -1.0703717126436177e-16,
+ -1.4066206316464236e-16,
+ -1.6967542314993978e-16,
+ 1.108422020821057e-16,
+ 6.629852609612517e-17,
+ -1.0405932105917087e-16,
+ -7.684507890617626e-17,
+ -8.885987730350899e-17,
+ 1.8983795058091983e-16,
+ -3.0034928041800435e-16,
+ -4.8141911650586205e-17,
+ 1.5633713577252223e-17,
+ 2.4707884896958937e-16,
+ 2.354156023325917e-16,
+ 8.10637000301967e-17,
+ 1.471450912155267e-16,
+ 9.719372197498074e-17,
+ 3.701633241174799e-17,
+ -1.83055069557985e-16,
+ -4.968873939606037e-16,
+ -2.2416594600187047e-17,
+ 6.830443908156626e-17,
+ -1.4103429444029122e-16,
+ 4.4316201317528453e-16,
+ 3.4294908196448522e-16,
+ 9.934439156761861e-17,
+ 3.752918439153086e-16,
+ -2.845501307182415e-17,
+ -1.3677431428564313e-16,
+ -6.505775517729563e-17,
+ -6.849055471939069e-17,
+ -3.66823582394297e-16,
+ 3.8298462361205176e-16,
+ 9.541528365799173e-17,
+ -1.1547441351240266e-16,
+ 4.235164736271501e-17,
+ 1.3191979806572254e-16,
+ -1.5426918424113964e-16,
+ -2.775190955115408e-16,
+ -1.2205049938219923e-16,
+ -8.569591146049365e-17,
+ -5.3704701270005316e-17,
+ 1.1911400820763599e-16,
+ -9.487761625983226e-17,
+ 3.2226956665065953e-16,
+ -2.646977960169688e-18,
+ 2.9207747429247407e-16,
+ -1.8946571930527096e-16,
+ -2.809932540842635e-16,
+ -7.103413510299125e-17,
+ -3.77856103814223e-16,
+ 9.838279410552572e-17,
+ -1.2515242667927309e-16,
+ -1.2945376586454883e-16,
+ -6.476824196290207e-17,
+ 1.1332374391976478e-17,
+ -6.33413554062481e-17,
+ -1.8628624382577026e-16,
+ -3.216078221606171e-16,
+ -2.3328561225526763e-16,
+ 5.860574639938201e-17,
+ 4.632211430296955e-18,
+ 1.1109035626587162e-16,
+ -2.2106401870479662e-16,
+ 8.189088064274973e-17,
+ 8.346252380660048e-17,
+ -3.519653506413133e-17,
+ 9.247879248342848e-17,
+ -2.0906989982277772e-16,
+ -4.2186211240204405e-17,
+ -2.2003004293910534e-16,
+ -1.4996784505586392e-16,
+ -3.5287524931512156e-16,
+ -1.2465611831174127e-16,
+ -6.054962083888163e-17,
+ 6.442082610562979e-16,
+ 2.3661501422079357e-16,
+ -2.110758128082188e-16,
+ -2.2115190664488038e-16,
+ -1.5369015781235252e-16,
+ -2.4594147562732895e-16,
+ -9.810362064878907e-17,
+ 2.1494288217190422e-16,
+ -7.031035206700735e-17,
+ 2.011703249728963e-16,
+ 1.2953648392580413e-16,
+ 1.8537117527313348e-16,
+ -3.4456208415896363e-16,
+ -3.538678660501852e-16,
+ -9.578751493364059e-17,
+ -6.389970231972138e-18,
+ 1.0951871310202085e-16,
+ 1.6361632516298885e-16,
+ 1.194448804526572e-16,
+ 1.6336817097922295e-18,
+ 7.246102165964522e-17,
+ 8.834288942066334e-17,
+ -2.0927669497591597e-17,
+ -1.0174321534402239e-17,
+ 1.8115255414911306e-17,
+ -2.2069178742914776e-16,
+ -1.0124690697649058e-16,
+ 2.6676574754835143e-16,
+ 5.892110900791785e-17,
+ 6.187310981896647e-17,
+ -5.10370437945218e-17,
+ -6.274164946214715e-17,
+ -6.960724854633728e-17,
+ -4.630143478765572e-17,
+ -7.610061635487853e-17,
+ -2.3305813758681552e-17,
+ 1.0075059860895876e-16,
+ -1.4161332086907834e-16,
+ -1.213060368309015e-16,
+ -9.89308012613421e-17,
+ -1.8356171768317373e-16,
+ -3.8496985708217903e-16,
+ -4.441959889409758e-17,
+ -2.0286604522863001e-16,
+ -9.181704799338606e-17,
+ 5.062345348824529e-17,
+ -1.0339757656912845e-16,
+ 1.9025154088719633e-17,
+ 2.6552497662952185e-17,
+ 2.3574647457761286e-17,
+ 2.713152409173931e-16,
+ -2.072087434445334e-17,
+ -3.118470909324914e-16,
+ 2.375352526522588e-16,
+ 8.023651941764368e-18,
+ 9.318189600409856e-17,
+ 1.829723514967297e-16,
+ -1.5329724702138983e-16,
+ -4.226892930145971e-17,
+ 3.556876633978019e-17,
+ 4.2707335026112814e-16,
+ 1.1737692892127463e-16,
+ 1.0908444328043051e-17,
+ 2.69660879692287e-17,
+ 1.2498699055676248e-16,
+ -4.317882797526804e-17,
+ -1.0474174506452712e-16,
+ -2.0356914874930009e-16,
+ 8.437242248040882e-18,
+ -2.646977960169688e-18,
+ -1.4500476138054575e-16,
+ 3.3335378685887015e-17,
+ -9.876536513883149e-17,
+ 3.259091613458929e-17,
+ -4.215002208840521e-17,
+ -1.3332083522823424e-16,
+ 6.063233890013693e-17,
+ -2.5857665948407645e-16,
+ 1.021568056502989e-16,
+ -6.5843576759221e-17,
+ 2.0089115151615966e-16,
+ -3.672681919735443e-17,
+ -2.5394444805377947e-17,
+ -3.461750863534421e-17,
+ -2.485677740721848e-17,
+ -5.517294685728694e-17,
+ -1.8156614445538957e-17,
+ -1.1446938906815073e-15,
+ -2.2623389753325307e-16
+ ],
+ [
+ 4.3953090303372715,
+ 3.508916869003315,
+ -2.733736266248417,
+ 2.829832977009659,
+ -2.0884484900783655,
+ 0.4995086947712986,
+ 1.103864155316764,
+ -2.42998103729284,
+ 1.9899805288604306,
+ 3.7059052613542445,
+ -1.8313616854368178,
+ -1.209425676941981,
+ 0.37750785496272393,
+ 1.2209190269357013,
+ -2.5379199077891346,
+ 1.895057141396258,
+ 3.294169854719148,
+ -1.4093407031453309,
+ -1.0738308137983306,
+ 0.17333156991222481,
+ 1.4015340938337946,
+ -2.5989406312722636,
+ 2.867767399817164,
+ -2.2443661011444975,
+ 0.8149629131887787,
+ 0.4583863646189254,
+ 0.2604168331706261,
+ -3.2682125490301033,
+ -1.7688913338013204,
+ 2.850671270143528,
+ -2.1061858455635365,
+ 0.6182825415795193,
+ 0.5776868097675887,
+ 0.5384123439952375,
+ -3.592463374438714,
+ -1.8268892130220789,
+ 2.808369613035193,
+ -2.0163994556672207,
+ 0.49524624704319203,
+ 1.1959747647822472,
+ -2.483751381133562,
+ 2.8906183008908153,
+ -4.850279911828083,
+ -4.845591345151453,
+ -2.4517604308396637,
+ -2.352577153894004,
+ -0.38836684270412963,
+ -0.25670911003397023,
+ 1.1426801490897511,
+ -2.4533697729486743,
+ 2.8906535720396973,
+ -2.418311908473762,
+ 1.087287321914526,
+ 0.5195876713425315,
+ -1.251024371961461,
+ -1.9156425534644599,
+ 3.4863183883733013,
+ 1.8934766169452457,
+ -2.34465252810447,
+ 0.9697252196380433,
+ 0.7198187916387058,
+ -1.349534283037077,
+ -1.9551532371243832,
+ 3.1360386099468633,
+ 1.8640452710612017,
+ -2.216811029466955,
+ 0.7743519246477032,
+ 0.8385574784964461,
+ -2.3189255237772346,
+ 2.8802091842865165,
+ -2.587418497047768,
+ 0.9790460812659331,
+ 2.1715755306214284,
+ 1.8351532240489656,
+ 0.7667043109227593,
+ -2.392535452072519,
+ 2.8914689725073033,
+ -2.4837309470010753,
+ 0.9481776978512635,
+ 2.285202894718282,
+ 2.3273544278373697,
+ 0.9725157548392472,
+ -2.50597814630379,
+ 2.889545997706049,
+ -2.4158442013972032,
+ 0.9935586603238221,
+ 0.6156667586200237,
+ -2.1058276152510857,
+ 3.5922018448746,
+ 4.31248438318788,
+ 1.9257953369113445,
+ 1.4405056875248858,
+ -1.5837320583562071,
+ 2.629000279835274,
+ -2.9004617459153703,
+ 2.091246954300871,
+ -0.7000982098033927,
+ -0.9978606028651739,
+ 1.5073993861579715,
+ 2.4724112683177393,
+ -3.4497227434245104,
+ -1.914378097393931,
+ 2.0047265253429427,
+ -0.5750421743165284,
+ -1.1868669112230514,
+ 1.538885642666249,
+ 2.34922607750924,
+ -2.9225878214213084,
+ -1.788708423818414,
+ 1.8520588082660414,
+ -0.37422044635399715,
+ -1.3007059843824345,
+ 2.5252172154648886,
+ -0.7008199254232775,
+ -0.9959602945980971,
+ 1.4559567712101906,
+ 2.174724846070698,
+ -3.0264259594414193,
+ -1.8270336992011293,
+ 2.004127641432501,
+ -0.49991025449490656,
+ -1.184867138209716,
+ 1.5392207070044237,
+ 2.551503138241863,
+ -3.17519764434903,
+ -1.794314766099966,
+ 1.8516343006801823,
+ -0.3751706840803521,
+ -1.2986527592080528,
+ 2.5227100635099617,
+ -2.923753217113828,
+ 2.3000341306437155,
+ -2.774791398145532,
+ -2.857666472617195,
+ -2.837415147445824,
+ -2.8464338690315594,
+ -3.351303002028535,
+ -3.2847184189763974,
+ 2.4950343136547186,
+ -2.9298181531355465,
+ 2.3384575907426655,
+ -0.9789451506135829,
+ -0.7173554723703875,
+ 2.1054680663854994,
+ -1.859426869916652,
+ -3.362835685874712,
+ 2.229243561433992,
+ 1.395740541586306,
+ -0.8596086570747387,
+ -0.8391557821161838,
+ 2.2407083214924675,
+ -1.874938460191659,
+ -3.1738709127942073,
+ 1.8600535276454322,
+ 1.3024979666434788,
+ -0.6629417237687228,
+ -1.033947030476385,
+ 2.316008598475605,
+ -2.9320279933727655,
+ 2.4661419977903583,
+ -1.2789139965481913,
+ -0.16844231004368732,
+ 0.25707034016851804,
+ 3.125993565366699,
+ 1.642456827187893,
+ -2.9323228317588983,
+ 2.35490862000593,
+ -1.0907648187535774,
+ -0.2730258552817929,
+ 0.04466283932996871,
+ 3.6584473860689988,
+ 1.8150065211726274,
+ -2.9233258643754687,
+ 2.278137147436994,
+ -0.97486287461743,
+ -0.8146325179565067,
+ 2.171215188275739,
+ -2.904525747881657,
+ 4.2128218487085825,
+ 5.176109211214178,
+ -2.0050858048285388e-16,
+ -8.728409823659547e-16,
+ -1.5683344414005402e-16,
+ 7.725866921245277e-17,
+ 7.675202108726404e-17,
+ -1.196103165751678e-16,
+ 3.8612790993975327e-16,
+ 2.246622543694023e-16,
+ -3.672681919735443e-17,
+ 8.602678370551488e-18,
+ 1.0033700830268224e-16,
+ -5.849821291975012e-16,
+ 8.652309207304668e-17,
+ -3.6437305982960864e-16,
+ -1.2060293331023143e-16,
+ 4.8472783895607416e-17,
+ 1.4525291556431166e-16,
+ 2.6033441828575163e-16,
+ 2.8587361969832636e-16,
+ -1.10924920143361e-16,
+ 7.031035206700735e-17,
+ 2.714806770399037e-16,
+ 5.004442705945817e-17,
+ 1.6862076786893467e-16,
+ -2.8140684439054e-16,
+ -1.0703717126436177e-16,
+ 5.045801736573468e-18,
+ -4.8023004437531707e-17,
+ 6.137680145143465e-17,
+ -7.974021105011186e-17,
+ 3.3670386833970987e-16,
+ -1.6312001679545703e-16,
+ -8.146074672422216e-16,
+ 1.5170492434222525e-16,
+ 2.2110537773542427e-16,
+ -1.8495758496685696e-16,
+ 2.0199750558544933e-16,
+ 1.4831348383075786e-16,
+ 6.174903272708352e-17,
+ -3.613435108361332e-16,
+ 9.644925942368301e-17,
+ -2.248276904919129e-16,
+ -1.9157502986728118e-16,
+ 1.301568693852189e-16,
+ 5.872982349126496e-18,
+ -1.1183481881716934e-16,
+ 7.79204137024952e-17,
+ 1.9389113558242966e-16,
+ -3.9423427994277294e-16,
+ -8.040195554015428e-17,
+ 1.1425432210888695e-16,
+ -7.196471329211341e-17,
+ -8.925278809447167e-17,
+ -7.213014941462401e-17,
+ 2.0514079191315083e-17,
+ 4.709759612723801e-17,
+ -6.079777502264753e-17,
+ 3.307895269599557e-16,
+ -8.462057666417472e-17,
+ 5.2360532774606646e-17,
+ -1.6080391108030856e-16,
+ 4.8803656140628627e-17,
+ -1.5340064459795896e-16,
+ 1.1183481881716934e-16,
+ 1.0753347963189359e-16,
+ 2.6122363744424614e-16,
+ -1.3660887816313252e-16,
+ -9.89308012613421e-17,
+ -1.4070342219527e-16,
+ 1.894243602746433e-17,
+ 2.8239946112560365e-16,
+ -1.555099551599692e-17,
+ 1.0306670432410724e-16,
+ 1.1805935292663087e-16,
+ 1.8164886251664485e-16,
+ 9.810362064878907e-17,
+ -2.0844951436336295e-16,
+ -1.3971080546020637e-16,
+ 1.0991162389298354e-17,
+ 9.651129796962449e-17,
+ 4.946540063067105e-17,
+ -7.841672207002701e-17,
+ 1.5633713577252223e-17,
+ 5.773720675620133e-17,
+ 3.722312756488624e-19,
+ 1.193621623914019e-16,
+ 2.9497260643640967e-16,
+ 1.1191753687842464e-16,
+ 2.3177600763735835e-16,
+ 1.889280519071115e-16,
+ 2.2333876538931747e-16,
+ -1.255991042100517e-15,
+ -2.73817462270366e-16,
+ 2.3060244514329875e-16,
+ 1.0281855014034133e-16,
+ -1.1845226371759356e-16,
+ 4.509788699639107e-16,
+ 2.5073912318013648e-17,
+ 6.199718691084942e-17,
+ 2.0878038660838416e-16,
+ 7.510799961981491e-17,
+ 3.364970731865716e-16,
+ -1.4687108763761852e-16,
+ 1.7046124473186515e-16,
+ -2.5576424540139616e-16,
+ -5.107840282514946e-16,
+ -8.271806125530276e-19,
+ -4.417144471033167e-17,
+ -1.5468277454741615e-16,
+ -6.532658887637536e-17,
+ -1.3731198168380258e-17,
+ -2.302870825347629e-16,
+ -2.171866095834543e-16,
+ 5.244325083586195e-17,
+ -1.4789989352448135e-16,
+ 9.58702329948959e-17,
+ 1.1878313596261477e-16,
+ 1.195999768175109e-16,
+ 2.4649982254080222e-17,
+ 4.593954326966377e-17,
+ -8.437242248040882e-18,
+ -2.5146290621612038e-17,
+ 1.5927362694708545e-16,
+ 1.9016882282594104e-16,
+ -1.562544177112669e-16,
+ -1.892589241521327e-16,
+ -1.4260593760414197e-16,
+ -1.9844062895147131e-16,
+ 1.1626023509432804e-16,
+ 6.621580803486987e-17,
+ 7.229558553713462e-17,
+ 4.673570460924606e-18,
+ 7.056677805689878e-16,
+ -9.210656120777962e-17,
+ 3.28390703183552e-17,
+ -1.6444350577554188e-16,
+ 1.5844644633453243e-16,
+ 1.8363409598677212e-16,
+ 4.023406499457926e-16,
+ -3.0605682664462024e-17,
+ 2.600655845866719e-16,
+ -2.8707303158652825e-16,
+ -1.8859717966209028e-17,
+ 1.4227506535912076e-17,
+ 5.293955920339377e-16,
+ -2.2985281271317253e-17,
+ -4.0366413892587744e-17,
+ 7.411538288475128e-17,
+ -3.6561383074843823e-17,
+ 4.173126190330024e-17,
+ -1.134891800422754e-16,
+ -3.1937443450672394e-16,
+ -4.553629272104417e-17,
+ -1.8413040435430394e-16,
+ -3.668959606978954e-16,
+ -3.9094623700787464e-17,
+ -1.0060584200176198e-16,
+ -4.294721740375319e-16,
+ 1.2937104780329353e-16,
+ -3.5982356646056704e-17,
+ 1.130962692513127e-16,
+ -8.97594362196604e-17,
+ 5.4097612060968004e-17,
+ 7.612129587019236e-17,
+ 2.0464448354561902e-16,
+ 8.780522202250388e-17,
+ 6.716706573930585e-17,
+ -2.1672132048889323e-16,
+ 2.0646428089323568e-16,
+ -2.013357610954069e-16,
+ 1.5484821066992676e-16,
+ -7.17992771696028e-17,
+ 1.6560155863311612e-16,
+ 1.328038473453886e-16,
+ 1.431022459716738e-17,
+ -4.9237925962218966e-17,
+ 1.654361225106055e-19,
+ -2.8124140826802937e-18,
+ -4.142520507665562e-16,
+ 8.185779341824761e-16
+ ],
+ [
+ -2.1936161913874037,
+ -1.6619509365541194,
+ 1.6771995246546219,
+ -2.7352244986952603,
+ 2.8289706985813394,
+ -2.0174343591532478,
+ 0.4969785542750364,
+ 1.1083754027939956,
+ -1.5787700762548922,
+ -2.6316094667923235,
+ 3.3533678427473723,
+ 1.8793306295891543,
+ -1.924191612999754,
+ 0.3724691807249041,
+ 1.2947096833927327,
+ -1.598725066457343,
+ -2.4788328978510132,
+ 2.8273935738729294,
+ 1.7505976900562235,
+ -1.7659304155955529,
+ 0.1683155337238031,
+ 1.4035400835715504,
+ -2.6431466576177156,
+ 2.8671496904862557,
+ -2.2408887483808906,
+ 0.6163899380137605,
+ 1.5913864720226956,
+ 2.378923565554757,
+ 1.1134852291592456,
+ -2.694149031057534,
+ 2.8353187213378535,
+ -2.1024256411878226,
+ 0.5044914386649648,
+ 1.49897401202717,
+ 2.7544623162287665,
+ 1.2353003869156467,
+ -2.7692745308182047,
+ 2.8067275360605564,
+ -2.014295517346,
+ 0.39771584226343476,
+ 1.1981198311487191,
+ -2.4861914560806286,
+ 5.111051311827246,
+ 5.027256860213989,
+ 1.2552467949511619,
+ 1.0883234738794294,
+ -2.474156630894296,
+ -2.619870986259581,
+ 0.45553884537128625,
+ 1.1469955541224404,
+ -2.4543875225074068,
+ 2.889197839218439,
+ -2.4167511783292537,
+ 1.0826949004645487,
+ 0.26612671570684615,
+ -0.06758552558283953,
+ -3.4622925100614688,
+ -1.7099587665614235,
+ 2.884172267856206,
+ -2.3414187739585257,
+ 0.8920319780455434,
+ 0.407711065741642,
+ 0.16906997475777052,
+ -3.2482388076831423,
+ -1.749310649434739,
+ 2.8615571668004094,
+ -2.2133223182047006,
+ 0.7719792537903568,
+ 0.9322747260326827,
+ -2.3202661373118634,
+ 2.88038177299466,
+ -1.7043690604195123,
+ -3.1992446439510696,
+ -0.023333594901747936,
+ 0.3002750009671831,
+ 1.050029814707074,
+ -2.439029400603882,
+ 2.8912401354575654,
+ -1.7518929874223028,
+ -3.5747749964924904,
+ -0.31152522931765103,
+ 0.13360902674255842,
+ 1.2362773140770165,
+ -2.508282705510902,
+ 2.88907136363043,
+ -2.3580328902578107,
+ 0.9911967454361407,
+ 0.6204319013863538,
+ -1.8021092216869854,
+ -2.054207199309315,
+ 1.0028844937219632,
+ 0.9539707643415156,
+ -0.048312177640807544,
+ -1.587645834790147,
+ 2.6297501679810895,
+ -2.883976845308575,
+ 2.08962292317555,
+ -0.6954455032039591,
+ -0.5515127568477408,
+ -0.4973251407766889,
+ 3.7709951788169858,
+ 1.9146973724252556,
+ -2.85793914624674,
+ 2.0011585832130114,
+ -0.4942924601760811,
+ -0.6887964645285497,
+ -0.6817998678882852,
+ 3.3257743286846835,
+ 1.8407910498149025,
+ -2.806059362832743,
+ 1.848272848379035,
+ -0.37194677365912415,
+ -1.3884328068813643,
+ 2.5261843539990902,
+ -0.6980128386953527,
+ -0.5617604873370995,
+ -0.44829219664206077,
+ 3.300298966680876,
+ 1.804381797533641,
+ -2.858669999056212,
+ 1.9468702328491811,
+ -0.4968754757961623,
+ -0.6796208230495787,
+ -0.7404445423655985,
+ 3.613195904659872,
+ 1.8546601462300338,
+ -2.8069659821344173,
+ 1.8503311336662154,
+ -0.3745369564361724,
+ -1.3861785637484692,
+ 2.5250495955113585,
+ -2.9258218729527687,
+ 4.7338868221964665,
+ 4.737512351485452,
+ 2.5384034124478965,
+ 2.4500426754279467,
+ 0.6777652869801989,
+ 0.5487450792123051,
+ -1.333418735592701,
+ 2.4971739978134107,
+ -2.9294048999262245,
+ 2.2789038707086,
+ -0.9763878522784617,
+ -0.7223408191815114,
+ 1.3300625419051515,
+ 2.085809775190785,
+ -3.4250569094188417,
+ -1.8778513053551809,
+ 2.201544553766611,
+ -0.8545656789516124,
+ -0.9178620003217866,
+ 1.4223194843329738,
+ 2.1042122330081163,
+ -3.0671014602212194,
+ -1.8418460606887739,
+ 2.063108186329333,
+ -0.6578467460669462,
+ -1.036342382512623,
+ 2.3735582632893046,
+ -2.9320271958621413,
+ 2.4633365233736493,
+ -0.8861013230012132,
+ -2.0255609501271237,
+ -1.9891020205052672,
+ -0.8631065743424595,
+ 2.4433056834980107,
+ -2.92990445425867,
+ 2.351734236212998,
+ -0.8476835247751002,
+ -2.110025167103183,
+ -2.493423916435709,
+ -1.0692126568930644,
+ 2.545097473069935,
+ -2.922692566884221,
+ 2.276244017694089,
+ -0.8806879198748018,
+ -0.8172113027189308,
+ 2.1745809888334833,
+ -3.711799090738248,
+ -4.4673632969945425,
+ 1.0968414922453146e-16,
+ 1.0114764530298422e-15,
+ 5.415965060690948e-17,
+ 2.0079809369724744e-17,
+ -1.3906974048547778e-16,
+ 1.2027206106521022e-16,
+ -1.6684232955194566e-16,
+ -4.0374685698713276e-16,
+ -5.4180330122223305e-18,
+ -3.4493431543461254e-17,
+ -2.6407741055755405e-17,
+ 5.288992836664059e-16,
+ -3.1164029577935313e-16,
+ 6.67224561600586e-17,
+ 1.1042861177582918e-16,
+ -8.255262513279215e-17,
+ -1.66800970521318e-16,
+ -1.1704605667625342e-16,
+ -4.599124205794833e-17,
+ 3.388131789017201e-16,
+ 8.602678370551488e-18,
+ -9.057627707455652e-17,
+ -5.79543416669965e-17,
+ -4.2827276214933e-17,
+ 1.4128244862405713e-16,
+ 1.4194419311409955e-16,
+ -9.098986738083304e-19,
+ 9.15637239307917e-17,
+ 1.316044354571867e-16,
+ 5.310499532590437e-17,
+ -3.325266062463171e-16,
+ 1.385320730873183e-16,
+ 4.841488125272871e-16,
+ -5.2980918234021416e-17,
+ -2.3392667722999623e-16,
+ 2.0956620819030954e-16,
+ -1.734804539676837e-16,
+ -1.699856158796472e-17,
+ 1.224227306578481e-16,
+ 2.3740083580271894e-16,
+ -6.19765073955356e-17,
+ 8.047433384375267e-17,
+ 2.3942742830347386e-16,
+ -2.2127081385793487e-17,
+ -6.460280584039146e-17,
+ 1.2200914035157158e-16,
+ -9.0638315620498e-17,
+ 4.757942883405015e-16,
+ 1.9612452323632284e-16,
+ 1.2618640244496437e-16,
+ -1.728393889929551e-16,
+ -5.567442510364722e-17,
+ 1.4347447724732265e-16,
+ 2.6089276519922493e-16,
+ -1.737079286361358e-17,
+ -3.91256429737582e-17,
+ 8.455853811823324e-17,
+ -8.189088064274974e-18,
+ 9.826905677129968e-17,
+ -1.0918784085699964e-17,
+ 2.1349531609993642e-16,
+ 1.4951289571895975e-16,
+ 3.705769144237564e-17,
+ -7.16338410470922e-17,
+ -2.03817302933066e-16,
+ -3.0539508215457777e-16,
+ 1.2291903902537991e-16,
+ -5.641371777611649e-17,
+ 3.997091816221083e-16,
+ 8.428970441915351e-17,
+ -2.013357610954069e-16,
+ 4.8141911650586205e-17,
+ -5.227781471335134e-17,
+ -1.1463689314219272e-16,
+ -2.9745414827406875e-16,
+ -2.2582030722697652e-17,
+ 2.39055197027825e-16,
+ 2.847569258713798e-16,
+ 6.104592920641344e-17,
+ 6.708434767805054e-17,
+ -6.485096002415737e-17,
+ -1.5261482301603358e-16,
+ 6.162495563520056e-17,
+ -2.1440521477374475e-16,
+ 3.6271869860450264e-17,
+ -1.3421005438672874e-16,
+ -2.811586902067741e-16,
+ 7.692779696743157e-18,
+ 1.3400325923359048e-16,
+ -6.700162961679524e-17,
+ 5.727398561317164e-16,
+ 3.026653861331528e-16,
+ 3.027481041944081e-17,
+ -2.256962301350936e-16,
+ -4.2186211240204405e-17,
+ 8.937686518635463e-17,
+ -9.648027869665375e-17,
+ 2.875279809234324e-16,
+ -5.566925522481876e-16,
+ -3.3451183971644434e-16,
+ 3.28390703183552e-17,
+ -7.236589588920162e-16,
+ 1.772648052701138e-16,
+ -5.634650935134655e-17,
+ 2.378557851396231e-16,
+ 1.7197084934977443e-16,
+ -9.760731228125725e-18,
+ 5.6248281653605874e-18,
+ 2.7479456936894425e-16,
+ 2.319466136386974e-17,
+ 1.1332374391976478e-17,
+ -1.6543612251060552e-18,
+ 9.355671221916165e-17,
+ -8.040195554015428e-17,
+ 1.3491315790739881e-16,
+ 1.0058516248644815e-16,
+ 1.9935052762527964e-17,
+ -1.2404090273115496e-16,
+ 1.4670048163627946e-16,
+ -1.862810739469418e-16,
+ -5.798536093996724e-17,
+ 1.0354233317632523e-16,
+ 6.435465165662555e-17,
+ -1.0910512279574434e-16,
+ 2.367390913126765e-16,
+ 3.871205266748169e-16,
+ 1.5598558401218717e-16,
+ 1.0587911840678753e-17,
+ -1.4959561378021506e-16,
+ -9.822769774067202e-17,
+ -3.3221641351660974e-17,
+ 1.6216875909102105e-16,
+ -2.893477782710491e-16,
+ 3.9683989887231497e-17,
+ 1.3041019344781327e-16,
+ 1.79498192924007e-17,
+ -1.905410541015899e-16,
+ -5.029258124322408e-16,
+ -2.1821024559148868e-16,
+ 8.821881232878039e-17,
+ -3.4923565461988824e-16,
+ 1.6442282626022805e-16,
+ 1.167979024924875e-16,
+ 1.5220123270975707e-16,
+ -4.905181032439454e-16,
+ -1.5034007633151278e-16,
+ -1.0836066024444661e-17,
+ 5.09543257332665e-17,
+ -3.2756352257099896e-17,
+ 1.2953648392580413e-16,
+ 2.4625166835703634e-16,
+ 2.8173771663556123e-16,
+ 5.1450634100798315e-17,
+ 1.6303729873420173e-16,
+ 2.5779083790215107e-16,
+ -1.0835549036561816e-16,
+ 5.012714512071347e-17,
+ 2.3706996355769773e-16,
+ -1.5170492434222525e-16,
+ 3.498973991099307e-17,
+ -7.831332449345788e-17,
+ 1.9256764660234482e-16,
+ 6.915229920943311e-17,
+ -5.128519797828771e-18,
+ -3.8563160157222145e-16,
+ -1.4976104990272566e-16,
+ -1.621274000603934e-16,
+ 1.7817470394392214e-16,
+ -2.1192367293608567e-16,
+ 3.645074766791485e-16,
+ -7.990564717262246e-17,
+ 3.308722450212111e-17,
+ -5.732361644992482e-17,
+ 2.3326493273995377e-17,
+ -7.18819952308581e-17,
+ -8.888572669765127e-17,
+ -2.1175823681357505e-17,
+ -1.346650037236329e-16,
+ -1.4558378780933287e-17,
+ 2.713979589786484e-16
+ ],
+ [
+ -0.27352720184262397,
+ -0.31983846028656426,
+ -0.23774276102145733,
+ 1.2750843972360095,
+ -1.9529345465699661,
+ 1.926172851332523,
+ -1.312012609302074,
+ 0.21754380445889393,
+ 0.5417294884698549,
+ 0.6582249031063626,
+ -2.6584864316983956,
+ -1.3746545384254552,
+ 1.899293300996378,
+ -1.2418812869914961,
+ 0.07600715877878247,
+ 0.6241656917158975,
+ 0.7437689139263116,
+ -2.3263400444625955,
+ -1.3136998604875563,
+ 1.8456415577061225,
+ -1.125842339591591,
+ -0.011577283915130934,
+ 1.146640377185503,
+ -1.8982733862441667,
+ 1.9815779832769043,
+ -0.9890795602682366,
+ -1.9725864606132255,
+ -0.6465970840407451,
+ -0.15210346359570928,
+ 1.2176783116377328,
+ -1.9467654081116827,
+ 1.950303482798436,
+ -0.9369907941554317,
+ -2.042526614243052,
+ -0.8693304204273278,
+ -0.2540499579413018,
+ 1.3273945936496356,
+ -1.9730837529477947,
+ 1.925270102953921,
+ -1.2570927065899777,
+ 0.14930540678646329,
+ 0.953891063785315,
+ -2.7560022348760347,
+ -2.663743587503153,
+ 0.11657795002667612,
+ 0.2438616858463213,
+ 3.056319869681044,
+ 3.1390754916518477,
+ -1.2892595246061864,
+ 0.18828808132469613,
+ 0.9177161641459306,
+ -1.8137859620039527,
+ 2.0099702014575356,
+ -1.609840272628146,
+ 0.4849721086220723,
+ 1.2825624033680298,
+ 1.7405831318644238,
+ 0.7515881714655066,
+ -1.8521222816195213,
+ 2.0006477422514966,
+ -1.5168862967902144,
+ 0.3860692975625696,
+ 1.0384803943636522,
+ 1.7177675381297262,
+ 0.8148321979990968,
+ -1.9091838522449076,
+ 1.9757331088009695,
+ -1.4574912800834,
+ 0.34777662544817933,
+ 0.7717720289254639,
+ -1.697304674396896,
+ 1.320808430360533,
+ 2.269146887561855,
+ -1.128620848758252,
+ -0.8238743932903487,
+ 0.2625825572894815,
+ 0.9019656507497642,
+ -1.7726114946147615,
+ 1.3942553724629185,
+ 2.6244309454481876,
+ -1.1109094502566668,
+ -0.7640073312314177,
+ 0.1200149578590386,
+ 0.9795836370674852,
+ -1.815178889943829,
+ 2.0023081080665976,
+ -1.56642099825054,
+ 0.5680736462561975,
+ -0.21296481006469326,
+ -0.37983351481123334,
+ -2.352054365064611,
+ -1.990983704961298,
+ 0.99949879745198,
+ 0.09725161483703613,
+ -1.2154372510222302,
+ 1.909148332532238,
+ -1.986624765288428,
+ 1.3662178584472424,
+ -0.3220203179425699,
+ -0.9910488549661017,
+ -2.1145134755261323,
+ -0.9711463894675604,
+ 1.936317844502595,
+ -1.962498917334239,
+ 1.2588666954469314,
+ -0.18580330669862208,
+ -0.7038328523325152,
+ -1.940300494144246,
+ -0.9662543706815856,
+ 1.971153082056677,
+ -1.9174508394823488,
+ 1.1891631778001894,
+ -0.06376048429825827,
+ -1.0818355354782563,
+ 1.8240956337557783,
+ -0.2779829865720082,
+ -0.8593643331812548,
+ -1.8459362004704993,
+ -0.9007182195694996,
+ 1.9374846169045572,
+ -1.9480369680985512,
+ 1.2604960873384858,
+ -0.19643656042999477,
+ -0.7644773104329946,
+ -2.1079244687712637,
+ -0.9784604043878657,
+ 1.9724134579475971,
+ -1.9191355776111507,
+ 1.1907691746905182,
+ -0.06474508394175423,
+ -1.0818253313962318,
+ 1.8249823430917287,
+ -3.6323039498613277,
+ -3.584223454414601,
+ -1.08023923309731,
+ -0.9693090988020037,
+ 1.3391993604953762,
+ 1.440919026611935,
+ -0.10678020812775205,
+ -1.0463196536759314,
+ 1.8051413445669258,
+ -2.026124203621252,
+ 1.5088361700126534,
+ -0.5565773056839058,
+ -0.34126682465689157,
+ -0.2539064906981134,
+ 2.4894820253339387,
+ 1.2556824722522564,
+ -2.011005298073352,
+ 1.4493455092556955,
+ -0.4171929949221525,
+ -0.43634926258266177,
+ -0.39375398140925016,
+ 2.3150178872403373,
+ 1.2734441424809055,
+ -1.9797574439538037,
+ 1.3460793562011504,
+ -0.33223894777603585,
+ -0.9043650864140163,
+ 1.727666840601087,
+ -2.046913367682496,
+ 1.1130776332302987,
+ 2.140249904664338,
+ 0.29302554867004943,
+ -0.05288680573093876,
+ -0.9811389458246517,
+ 1.7975777759867682,
+ -2.0362077956301268,
+ 1.135247004176069,
+ 2.369941827881464,
+ 0.5310389548341026,
+ 0.07274050407688598,
+ -1.1047904892181,
+ 1.8354077983027952,
+ -2.0256682395209995,
+ 1.4613744185653834,
+ -0.49022532801003127,
+ -0.6955230334165369,
+ 1.5668089961723843,
+ 1.8191895955575674,
+ 5.658742570475262e-16,
+ 5.006097067170923e-16,
+ 1.2978463810957004e-16,
+ 1.5666800801754342e-16,
+ -1.7370792863613579e-16,
+ -1.239064858816151e-16,
+ -6.840783665813539e-17,
+ -5.968108119570095e-17,
+ -4.0382957504838806e-16,
+ 6.571949966733805e-17,
+ 8.747176483806844e-17,
+ 8.189088064274974e-18,
+ 1.7720276672417233e-16,
+ -4.4667753077863494e-18,
+ -7.415674191537893e-17,
+ -2.3822801641527194e-17,
+ -5.016850415134112e-17,
+ -4.9082829597365273e-17,
+ 7.419810094600658e-17,
+ -5.924681137411061e-17,
+ 3.58169205235461e-17,
+ 4.224824978614588e-17,
+ 2.837229501056885e-17,
+ 4.078000419886426e-17,
+ 1.1952759851391248e-17,
+ -1.888453338458562e-16,
+ -5.244325083586195e-17,
+ -4.2765237668991525e-17,
+ 9.926167350636331e-17,
+ 1.804701301437568e-16,
+ 2.2437274115500876e-16,
+ -2.5942451961194327e-17,
+ -5.872982349126496e-18,
+ 1.9699306287950352e-16,
+ 3.527925312538663e-17,
+ -3.09282831033577e-16,
+ 8.818779305580965e-17,
+ 2.605618929542037e-17,
+ -1.8264147925170849e-16,
+ 6.336203492156192e-17,
+ 1.11876177847797e-16,
+ 1.3215244261300308e-16,
+ -3.9497874249407065e-17,
+ 1.2279496193349696e-16,
+ 8.085690487705844e-17,
+ -3.296314741023815e-17,
+ 1.0261175498720307e-16,
+ -7.626605247738914e-17,
+ -8.586134758300426e-17,
+ -3.0026656235674905e-17,
+ 1.4814804770824726e-16,
+ 8.408290926601525e-17,
+ -8.519960309296185e-18,
+ -1.1597072187993448e-16,
+ -3.985356191280487e-16,
+ -4.855550195686272e-17,
+ -1.1208297300093523e-17,
+ 7.974021105011186e-17,
+ 1.0753347963189358e-17,
+ 1.225881667803587e-16,
+ -2.7090165061111653e-17,
+ -5.089228718732502e-17,
+ 2.3760763095585717e-17,
+ 6.642260318800812e-17,
+ 2.150669592637872e-18,
+ 1.4235778342037606e-16,
+ -3.1422523519358134e-16,
+ -4.623939624171424e-17,
+ -3.0142461521432324e-16,
+ -5.839895124624375e-17,
+ 6.460280584039146e-17,
+ -6.071505696139223e-17,
+ -2.928219368437718e-17,
+ -2.7048806030484002e-17,
+ 9.438130789230045e-17,
+ -1.6543612251060553e-17,
+ -1.5749518863009644e-16,
+ -2.1663860242763792e-16,
+ 1.6055575689654265e-16,
+ -1.8983795058091983e-16,
+ 7.055850625077326e-17,
+ -1.3201802576346322e-16,
+ 6.609173094298691e-17,
+ 2.8504643908577334e-16,
+ -1.0242563934937864e-16,
+ 2.3802122126213368e-17,
+ -4.375785440405516e-17,
+ -1.0637542677431935e-16,
+ -6.385834328909373e-16,
+ 3.187954080779368e-16,
+ -1.5298705429168244e-16,
+ -7.345363839470886e-17,
+ 7.113753267956038e-18,
+ 4.028369583133244e-17,
+ -5.4180330122223307e-17,
+ -1.2254680774973105e-16,
+ 1.0753347963189359e-16,
+ -8.266636246701819e-17,
+ 1.7722086130007193e-16,
+ 9.503529756410018e-17,
+ 5.1554031677367444e-17,
+ 4.580926232318667e-16,
+ 8.593889576543111e-17,
+ -7.684507890617626e-17,
+ -2.3103154508606063e-16,
+ -1.0298398626285193e-16,
+ -2.845501307182415e-17,
+ 9.971662284326747e-17,
+ 1.4194419311409955e-16,
+ 5.651711535268562e-17,
+ 7.210946989931019e-17,
+ -1.797463471077729e-16,
+ -2.0894582273089477e-16,
+ 9.363684534100272e-17,
+ -1.2434592558203389e-16,
+ -6.898686308692251e-17,
+ -1.3060147896446616e-16,
+ 3.9497874249407065e-17,
+ 1.2622776147559202e-16,
+ 5.1202479917032407e-17,
+ 6.141299060323385e-17,
+ 2.781911797592401e-17,
+ -2.2118809579667958e-16,
+ 2.671793378546279e-17,
+ -1.9535938116971129e-16,
+ -5.469214812624049e-17,
+ -9.296282238874271e-17,
+ 2.014184791566622e-17,
+ -4.8431424864979764e-17,
+ -3.548604827852489e-17,
+ -1.1111103578118544e-16,
+ -1.6754026319378727e-16,
+ -1.2755125045567687e-16,
+ 1.79588665803505e-17,
+ -1.8148342639413425e-16,
+ -1.590668317939472e-16,
+ 1.3499587596865412e-16,
+ 1.588186776101813e-16,
+ 1.9620724129757814e-16,
+ -5.0871607672011196e-17,
+ 1.4235778342037606e-16,
+ 4.002520188990962e-17,
+ -2.0224565976921524e-17,
+ -1.5021599923962983e-16,
+ 4.622285262946319e-16,
+ -3.465886766597186e-17,
+ 6.791152829060357e-17,
+ 1.8123527221036834e-16,
+ 1.4889251025954496e-18,
+ -7.17992771696028e-17,
+ -1.7335637687580075e-16,
+ 3.370244008270742e-17,
+ 1.323488980084844e-18,
+ -4.830734777309681e-17,
+ -2.3094882702480533e-16,
+ 8.784658105313153e-17,
+ -5.3229072417787325e-17,
+ -2.1804480946897807e-16,
+ -1.889280519071115e-16,
+ -4.226892930145971e-17,
+ 1.5964585822273434e-17,
+ 1.5468277454741618e-17,
+ -6.170767369645586e-17,
+ 1.3296928346789918e-17,
+ 5.880426974639474e-16,
+ 4.4626394047235837e-17,
+ 5.740633451118012e-17,
+ -8.304893350032397e-17,
+ 1.62292836182904e-16,
+ -6.42305745647426e-17,
+ 5.2939559203393765e-17,
+ 1.533592855673313e-16,
+ 9.719372197498074e-17,
+ 8.346252380660048e-17,
+ -1.9769616640017358e-17,
+ 5.472833727803969e-17,
+ -2.2582030722697652e-17,
+ 7.81685678862611e-17,
+ -4.870439446712227e-16,
+ 1.348304398461435e-16
+ ],
+ [
+ 5.165509477722157,
+ 4.379877206056994,
+ -2.199235756602173,
+ -0.35234207827810643,
+ 2.786327978922251,
+ -4.368144204831129,
+ 4.419231265891732,
+ -3.038934220499664,
+ 0.6590330006113813,
+ 2.112162583338881,
+ 4.844427713460399,
+ 2.237724653049692,
+ -4.423839378844222,
+ 4.362120500610512,
+ -2.7909548565262097,
+ 0.35434493109874776,
+ 1.477058939764698,
+ 4.43590959597389,
+ 2.221958706395423,
+ -4.497026473154148,
+ 4.252478479338191,
+ -2.632751416059833,
+ 0.010441264669413829,
+ 2.489606415547938,
+ -4.186779809425716,
+ 2.9628188845213845,
+ 5.2432961258492305,
+ -1.6958672701171316,
+ -1.4172092390522504,
+ -0.1855435323543389,
+ 2.7533682446717704,
+ -4.307412791610591,
+ 2.9528386197505085,
+ 5.702876089792316,
+ -1.4639161494173762,
+ -1.218986409179127,
+ -0.5061904738575649,
+ 2.91052257989361,
+ -4.370227963295144,
+ 4.374454260100643,
+ -2.92149097898138,
+ 0.5201391379494341,
+ 2.0166514455730296,
+ 1.7885966650203275,
+ -2.790557592658364,
+ -3.010791045873732,
+ -8.108681785889669,
+ -8.183406338039275,
+ 4.401381902625296,
+ -2.9889502370734786,
+ 0.6114682226106344,
+ 2.0992804384534667,
+ -3.98116465546731,
+ 4.575990346024417,
+ -2.4976769212896297,
+ -5.187253873113492,
+ -0.8428966484805863,
+ 0.031168089585762566,
+ 2.271734885186951,
+ -4.076644665091748,
+ 4.545960806953744,
+ -2.348379410915557,
+ -4.6114827162861936,
+ -1.1419659503337516,
+ -0.1584038319892126,
+ 2.5452197295944683,
+ -4.213406065621727,
+ 4.516254479465311,
+ -3.2545185949310844,
+ 0.9691221636786549,
+ 1.6331631571941199,
+ -2.3364002552286127,
+ -3.5154684331773223,
+ 4.716770424718215,
+ 2.85981838485597,
+ -3.1137769980796173,
+ 0.6527118023633548,
+ 1.9294870808952955,
+ -2.553180202017218,
+ -4.296388641758574,
+ 5.173205305708208,
+ 2.9182831791071475,
+ -2.8701848386750703,
+ 0.4541745694683453,
+ 2.1053455945859745,
+ -4.057226377878451,
+ 4.564168211280461,
+ -3.593491294742283,
+ 4.1949482250531,
+ 5.349426306564529,
+ 7.896539557661297,
+ 6.491235375871731,
+ -4.150651407062867,
+ 2.4155907980238123,
+ 0.09834423929159346,
+ -2.7045046368568295,
+ 4.284971135325956,
+ -4.479602009992764,
+ 2.347473299157714,
+ 5.018392945342705,
+ 1.8238188406846754,
+ 0.5016270817584999,
+ -2.8604685427184124,
+ 4.352094268542702,
+ -4.400423213705334,
+ 2.03577166107988,
+ 4.168148182474993,
+ 1.9208931497114972,
+ 0.6172378262366398,
+ -3.104509756455696,
+ 4.442164193839144,
+ -4.341133480243695,
+ 2.716284929497622,
+ -0.2646702899370716,
+ -2.276165129132398,
+ 2.595325996829589,
+ 4.383028006865482,
+ 1.5770166139153692,
+ 0.4128324231750616,
+ -2.8640004402171155,
+ 4.392085379570638,
+ -4.402539763950616,
+ 2.06295483358177,
+ 4.527202398210464,
+ 2.086687239861517,
+ 0.6423375875245256,
+ -3.1080990428592106,
+ 4.445467820989988,
+ -4.3431432134165755,
+ 2.716233295279372,
+ -0.26256922082675255,
+ -2.279565282666815,
+ 6.34174038860281,
+ 6.135985772830652,
+ -0.1572260630141911,
+ -0.4449013513865241,
+ -6.79199262309462,
+ -6.981783889165553,
+ 2.7942926572303093,
+ -0.3583418244544329,
+ -2.190296344967647,
+ 4.100696902199637,
+ -4.553947470380965,
+ 3.532624161001687,
+ -1.032013084858654,
+ -2.7832450503016846,
+ -4.012757537273101,
+ -1.747769063809616,
+ 4.1847689461614435,
+ -4.527144889271201,
+ 3.3192534302626315,
+ -0.8078498383301929,
+ -2.2379056119405316,
+ -3.948391563553702,
+ -1.8875334020120986,
+ 4.305460900463902,
+ -4.465569198878568,
+ 3.180824888465796,
+ -0.718817265767829,
+ -1.8648109621805184,
+ 3.8477623848174347,
+ -2.980518555425607,
+ -5.1394890699293585,
+ 2.4433500573248255,
+ 1.8057945516588538,
+ -0.524673571191475,
+ -2.1538068411306632,
+ 4.013016589548456,
+ -3.142951693481449,
+ -5.935430138176833,
+ 2.384820300714916,
+ 1.6644406610158633,
+ -0.2041484330290448,
+ -2.328142720048399,
+ 4.103740106424891,
+ -4.53319625556958,
+ 3.432085075084421,
+ -1.2178588609659922,
+ 0.33534205690706165,
+ 0.6792226386954018,
+ -1.6920806610384732e-15,
+ -2.069275020362654e-15,
+ -5.295610281564483e-16,
+ -3.774425135079465e-16,
+ 2.1994732487785003e-16,
+ 2.330994966174432e-16,
+ 3.725156189844275e-16,
+ 5.209583497858968e-16,
+ 1.2157900643304399e-15,
+ -1.3977284400614785e-16,
+ -2.7057077836609535e-16,
+ -7.903297162637902e-16,
+ -2.883965205666131e-16,
+ -1.3710518653066434e-16,
+ 2.2271837992990267e-17,
+ 4.689286892563114e-16,
+ 2.333269712858953e-16,
+ 2.1153997099178617e-16,
+ 1.5137405209720404e-16,
+ -2.756165801026688e-16,
+ -4.0697286137608955e-17,
+ 1.0389388493666026e-16,
+ 3.010937429693021e-17,
+ -7.643148859989974e-17,
+ -3.573420246229079e-16,
+ 5.962317855282223e-16,
+ 1.283784310682299e-16,
+ 6.981404369947554e-17,
+ -4.708312046651834e-16,
+ -6.236114638037275e-16,
+ -4.681842267050137e-16,
+ -3.8877488789992295e-17,
+ -7.856975048334932e-16,
+ -4.716583852777364e-16,
+ -3.3914405114674135e-17,
+ 1.0885696861197844e-15,
+ -1.1109035626587162e-16,
+ -7.742410533496338e-17,
+ 4.4171444710331673e-16,
+ -6.346129659506827e-16,
+ -1.2606232535308142e-16,
+ -5.955700410381799e-16,
+ -1.562544177112669e-16,
+ -2.157287037538296e-16,
+ -1.1547441351240266e-16,
+ 4.541221562916122e-16,
+ -1.4988512699460861e-16,
+ 6.862290361739917e-16,
+ -5.4676638489755123e-17,
+ 4.020097777007714e-17,
+ -2.335130869237197e-16,
+ -2.1084833813976673e-16,
+ -1.2804755882320868e-16,
+ 3.9167002004385855e-16,
+ 7.014491594449674e-16,
+ 4.417144471033167e-17,
+ 1.2742717336379391e-16,
+ -1.4475660719677984e-16,
+ -8.337980574534518e-17,
+ 7.072394237328387e-17,
+ -1.4562514683996052e-16,
+ 5.463527945912747e-17,
+ -1.7362521057488048e-16,
+ 8.879783875756751e-17,
+ 1.0728532544812768e-16,
+ -9.86102687739778e-17,
+ 8.36982702811781e-16,
+ -5.285684114213846e-17,
+ 5.899452128728193e-16,
+ 1.8921756512150506e-16,
+ 2.393860692728462e-16,
+ 2.486504921334401e-16,
+ 1.8462671272183575e-16,
+ -1.8164886251664485e-16,
+ 3.405295786727676e-16,
+ -1.952146245625145e-17,
+ 1.9116143956100467e-16,
+ 2.943522209769949e-16,
+ -3.4311451808699583e-16,
+ 3.95888641167879e-16,
+ -1.3491315790739881e-16,
+ 2.239177918181046e-16,
+ 8.850832554317396e-18,
+ -5.491652086739551e-16,
+ 2.1084833813976673e-16,
+ 7.543887186483611e-17,
+ 2.784289941853491e-16,
+ 1.709058543111124e-16,
+ 9.689593695446166e-16,
+ 3.4030210400431554e-16,
+ 2.9302873199691005e-16,
+ -5.158298299880681e-16,
+ -1.5054687148465104e-16,
+ 2.74293091122584e-16,
+ 4.379094162855728e-16,
+ 2.243313821243811e-16,
+ -8.768114493062093e-18,
+ 2.4972582692975906e-16,
+ -5.207929136633862e-16,
+ -8.106370003019671e-18,
+ -1.8156614445538955e-16,
+ -8.961674756399502e-16,
+ -2.604791748929484e-16,
+ 7.775497757998459e-17,
+ 2.4236391947803708e-17,
+ -9.899283980728357e-17,
+ 1.042454366969953e-16,
+ -2.9447629806887785e-16,
+ 1.0149506116025648e-16,
+ -1.432676820941844e-16,
+ -2.1994732487785003e-16,
+ 3.1333601603508683e-16,
+ 1.31687153518442e-16,
+ -1.0240495983406481e-16,
+ 1.9546277874628041e-16,
+ -6.485096002415737e-17,
+ 3.184645358329156e-16,
+ 8.007108329513307e-17,
+ -5.108667463127499e-16,
+ -1.184109046869659e-16,
+ 1.985233470127266e-17,
+ 5.492479267352103e-17,
+ 4.4204531934833794e-16,
+ 3.846389848371578e-17,
+ 3.4691954890473976e-16,
+ 4.705003324201621e-16,
+ 1.0041972636393755e-16,
+ 1.822123793089466e-16,
+ 3.4394169869954886e-16,
+ 2.2218071253174323e-16,
+ 3.2921788379610497e-16,
+ 3.0820749623725806e-16,
+ 6.313042435004706e-16,
+ -4.042431653546646e-16,
+ 4.449404514922736e-16,
+ 5.011887331458795e-16,
+ -1.870126118011684e-16,
+ 2.7660919683773245e-16,
+ -3.0804206011474746e-16,
+ 4.7087256369581094e-17,
+ -6.997947982198614e-17,
+ 6.931773533194372e-17,
+ -8.118777712207965e-17,
+ 5.128519797828772e-16,
+ -1.0614381620280451e-15,
+ 7.279189390466644e-18,
+ -2.998943310811002e-16,
+ -6.759719965783341e-16,
+ 1.1117307432712692e-16,
+ 1.134891800422754e-16,
+ 3.088692407273005e-16,
+ -5.757177063369073e-17,
+ -6.799424635185887e-17,
+ 1.8528845721187817e-16,
+ 8.261879958179639e-16,
+ -2.27309232329572e-16,
+ 2.749548356126264e-16,
+ 3.1681017460780955e-16,
+ 4.757115702792462e-16,
+ 2.871143906171559e-16,
+ -1.4235778342037606e-16,
+ -2.1043474783349022e-16,
+ 6.753929701495471e-17,
+ 5.3849457877202095e-17,
+ -6.613308997361455e-16,
+ 7.444625512977249e-18,
+ -4.9382682569415746e-17,
+ -4.987899093694756e-17,
+ -2.504702894810568e-16,
+ -3.6065074707312007e-17,
+ 2.423639194780371e-16,
+ -5.661017317159783e-16,
+ -1.4519087701837018e-16,
+ -1.4161332086907834e-16,
+ -2.6924728938601048e-17,
+ -2.1688675661140383e-16,
+ -3.995282358631123e-17,
+ -1.7254987577856155e-16,
+ 1.4028983188899347e-15,
+ -1.948837523174933e-16
+ ],
+ [
+ 3.1038501970299244,
+ 2.6597066187430833,
+ -1.2136663784340318,
+ -0.6155486370867831,
+ 2.2430561733497676,
+ -3.1678365226278875,
+ 2.993162090336201,
+ -1.848728527170166,
+ 0.21282519321028917,
+ 1.0245321889461565,
+ 3.673938151612472,
+ 1.7436431956470821,
+ -3.191619930465416,
+ 2.9377351304586576,
+ -1.6587264102590487,
+ 0.008682672658788746,
+ 0.6264203675675856,
+ 3.329827993324781,
+ 1.7150713309513848,
+ -3.217528996853624,
+ 2.8366298252102053,
+ -1.538710703559538,
+ -0.362852525557638,
+ 2.052382134484708,
+ -3.0795088702852933,
+ 2.0446573107113917,
+ 3.6890141381737203,
+ -0.7850891151981785,
+ -0.7794179413966427,
+ -0.49967818163452693,
+ 2.2220460449951474,
+ -3.1398244937212927,
+ 2.022281896486527,
+ 3.9796532482260787,
+ -0.5788626398610188,
+ -0.6312597462163818,
+ -0.7220147201183787,
+ 2.3219869699669533,
+ -3.1687672545666206,
+ 2.9495710891206293,
+ -1.7584656191031272,
+ -0.003927876052105956,
+ 2.0533245438107386,
+ 1.8908193670404971,
+ -1.6668883133426844,
+ -1.835951200480653,
+ -5.706831378771328,
+ -5.776764084309102,
+ 2.975516756667356,
+ -1.810248963231186,
+ 0.060905022472665125,
+ 1.7975756881088425,
+ -2.9684433391960003,
+ 3.179335309525015,
+ -1.6128522367398586,
+ -3.437091079176008,
+ -1.0452243342628298,
+ -0.22054910760156832,
+ 1.9106849997401927,
+ -3.021041103050708,
+ 3.1324747537472746,
+ -1.4942351918717143,
+ -3.023269917288429,
+ -1.212651813776287,
+ -0.3513613070272663,
+ 2.088336427960622,
+ -3.093210109148478,
+ 3.096049571776626,
+ -2.016013664615583,
+ 0.31615048402338386,
+ 1.4883345604016367,
+ -1.7841718990119906,
+ -2.774072116944061,
+ 3.1133949442181206,
+ 1.9320192024902032,
+ -1.9065420352376363,
+ 0.09019673433249968,
+ 1.6855342168048282,
+ -1.9341153245033695,
+ -3.3430359373366922,
+ 3.3743528447669253,
+ 1.9471480068792026,
+ -1.7191874432156515,
+ -0.05062451834183351,
+ 1.8015608612662246,
+ -3.0104271652360404,
+ 3.15863083992048,
+ -2.2839737081234093,
+ 2.517747554163983,
+ 3.24503859627424,
+ 5.359200303731883,
+ 4.4237240354528895,
+ -2.7464360227653746,
+ 1.3752466426894498,
+ 0.4388335833335133,
+ -2.190761857030915,
+ 3.129044585296336,
+ -3.0550551020602805,
+ 1.4733579794272287,
+ 3.2458580663498746,
+ 1.7369196570622811,
+ 0.6014764796902826,
+ -2.290277569579085,
+ 3.160791742979102,
+ -2.974502287190355,
+ 1.2480350122291193,
+ 2.658027770484079,
+ 1.7382755023820804,
+ 0.6674457118217105,
+ -2.44408462285295,
+ 3.198881091328875,
+ -2.9179384988033954,
+ 1.6020237477129735,
+ 0.18436434252743508,
+ -1.913567219666208,
+ 1.934323802894835,
+ 3.1188736988233905,
+ 1.507460372180505,
+ 0.5272452083112762,
+ -2.292716121058749,
+ 3.179560614380072,
+ -2.9762597332658687,
+ 1.267289790500234,
+ 2.8870020995452497,
+ 1.8883621145467646,
+ 0.6859854830624398,
+ -2.446586600355593,
+ 3.2013510007503303,
+ -2.9196255989317463,
+ 1.6023061274923853,
+ 0.1855909738941923,
+ -1.9158646556276056,
+ 4.8579283428265025,
+ 4.722488330875403,
+ 0.25301043822867725,
+ 0.05018663381535998,
+ -4.392332685340627,
+ -4.535766328306589,
+ 1.6612959540020158,
+ 0.11837554837366035,
+ -1.8573984857835852,
+ 3.033977171711364,
+ -3.1437929507884426,
+ 2.235364980935644,
+ -0.49435024423349583,
+ -1.5449266424543426,
+ -3.1345133946071475,
+ -1.4196891383016836,
+ 3.0784847557070716,
+ -3.1090336910752563,
+ 2.0666729912441864,
+ -0.3332205771167559,
+ -1.1819905905418495,
+ -3.0414997488481506,
+ -1.506962723663802,
+ 3.1388430963573697,
+ -3.0404724023171066,
+ 1.9586285487339015,
+ -0.13725119505380376,
+ -1.6426917309803488,
+ 2.892853137163508,
+ -2.09438859726841,
+ -3.681653150990345,
+ 1.3339768078577876,
+ 1.0714917989748824,
+ 0.0007361800850041027,
+ -1.833483720252437,
+ 2.986176771728818,
+ -2.1963012652783207,
+ -4.219493650818586,
+ 1.2241826224003742,
+ 0.9490247290555611,
+ 0.22701536152318733,
+ -1.9475303720075936,
+ 3.0356090651624794,
+ -3.116589420596939,
+ 2.155559815494417,
+ -0.49506252514043164,
+ -0.30186434051991035,
+ -0.18119074485010067,
+ -1.1229803996019904e-15,
+ -1.302974900893529e-15,
+ -3.4634052247595264e-16,
+ -2.447627432544409e-16,
+ 1.0356301269163905e-16,
+ 1.828896334354744e-16,
+ 2.124303210612744e-16,
+ 3.089519587885558e-16,
+ 8.193223967337738e-16,
+ -9.752459422000195e-17,
+ -2.0232837783047054e-16,
+ -4.906008213052007e-16,
+ -2.281984514880665e-16,
+ -5.5338382979797545e-17,
+ 3.6933614350492686e-17,
+ 3.695015796274374e-16,
+ 1.3559558191275506e-16,
+ 1.0755415914720741e-16,
+ 8.817745329815274e-17,
+ -1.800772193527941e-16,
+ -3.7719435932418056e-17,
+ 4.9382682569415746e-17,
+ 1.6543612251060553e-17,
+ -6.476824196290207e-17,
+ -2.097730033434478e-16,
+ 4.516406144539531e-16,
+ 8.751570880811032e-17,
+ 6.501639614666798e-17,
+ -3.2822526706104133e-16,
+ -4.2715606832238344e-16,
+ -3.937379715752411e-16,
+ -7.279189390466644e-18,
+ -4.846192715006766e-16,
+ -3.335340863830125e-16,
+ -7.17992771696028e-17,
+ 8.212249121426458e-16,
+ -9.60356691174065e-17,
+ -6.245213624775359e-17,
+ 2.959652231714733e-16,
+ -4.095784803056316e-16,
+ -9.165161187087545e-17,
+ -4.0043813453692065e-16,
+ -7.554226944140524e-17,
+ -1.4889251025954498e-16,
+ -7.4859845436049e-17,
+ 3.8315005973456237e-16,
+ -1.1175210075591404e-16,
+ 5.484207461226573e-16,
+ 9.098986738083304e-19,
+ 3.970466940254532e-17,
+ -1.8553661139564408e-16,
+ -1.4583194199309878e-16,
+ -6.956588951570963e-17,
+ 3.236757736919997e-16,
+ 4.3793009580088663e-16,
+ 1.3400325923359047e-17,
+ 1.1206229348562142e-16,
+ -1.3375510504982458e-16,
+ -3.8008949146811615e-17,
+ 7.552158992609141e-17,
+ -7.382586967035772e-17,
+ 3.867069363685404e-17,
+ -1.0420407766636765e-16,
+ 6.359984934767092e-17,
+ 5.901933670565852e-17,
+ -1.0112282988460762e-16,
+ 5.856645532028574e-16,
+ -5.24018918052343e-17,
+ 4.372476717955304e-16,
+ 1.2908153458889997e-16,
+ 1.4401214464548212e-16,
+ 1.8197973476166606e-16,
+ 1.13654616164786e-16,
+ -1.7883644843396456e-16,
+ 2.3943776806113077e-16,
+ -3.350081480839762e-17,
+ 1.6272710600449434e-16,
+ 2.2420730503249815e-16,
+ -2.158114218150849e-16,
+ 2.50801161726078e-16,
+ -1.0017157218017164e-16,
+ 1.1605343994118978e-16,
+ 3.205324873642982e-17,
+ -3.7880736151865897e-16,
+ 1.3863547066388744e-16,
+ 4.020097777007714e-17,
+ 1.3400325923359048e-16,
+ 9.194112508526901e-17,
+ 5.260041515224703e-16,
+ 3.186299719554262e-16,
+ 2.457346804741907e-16,
+ -2.564259898914386e-16,
+ -8.1146418091452e-17,
+ 1.7159861807412557e-16,
+ 3.126742715450444e-16,
+ 1.6303729873420173e-16,
+ -3.143286327701505e-17,
+ 2.0878038660838416e-16,
+ -4.415490109808061e-16,
+ -5.0292581243224076e-17,
+ -1.256487350468049e-16,
+ -6.977268466884787e-16,
+ -1.343341314786117e-16,
+ 1.0422475718168147e-17,
+ 3.680953725860973e-18,
+ -2.4215712432489882e-17,
+ 7.562498750266054e-17,
+ -1.9542141971565276e-16,
+ 1.6924115332834944e-16,
+ -8.706075947120615e-17,
+ -1.547241335780438e-16,
+ 2.0791184696520348e-16,
+ 7.891303043755883e-17,
+ -6.514047323855093e-17,
+ 1.5402103005737373e-16,
+ -3.441071348220595e-17,
+ 2.0241109589172585e-16,
+ 3.89602068512476e-17,
+ -3.326920423688277e-16,
+ -1.1386141131792426e-16,
+ 2.2995621028974166e-17,
+ 6.121136532892405e-17,
+ 2.6982631581479763e-16,
+ -6.203854594147707e-19,
+ 2.693300074472658e-16,
+ 4.3608961893795614e-16,
+ 9.016268676828e-17,
+ 1.6966637586198998e-16,
+ 2.1506695926378717e-16,
+ 1.3549218433618593e-16,
+ 2.0844951436336295e-16,
+ 2.0894582273089477e-16,
+ 3.393094872692519e-16,
+ -2.9914986852980246e-16,
+ 3.118470909324914e-16,
+ 3.632615358814905e-16,
+ -1.4659966899912456e-16,
+ 1.6312001679545703e-16,
+ -2.5229008682867344e-16,
+ 3.679919750095282e-17,
+ -9.545664268861938e-17,
+ 1.1729421086001932e-16,
+ -5.194694246833013e-17,
+ 3.7620174258911694e-16,
+ -8.066665333617125e-16,
+ -2.431911000905901e-17,
+ -2.0948349012905423e-16,
+ -4.652063764998228e-16,
+ 7.940933880509064e-17,
+ 8.023651941764367e-17,
+ 2.2937718386095457e-16,
+ 3.788487205492866e-17,
+ -4.0035541647566533e-17,
+ 1.7321162026860397e-16,
+ 6.49171344731616e-16,
+ -1.5658528995628811e-16,
+ 2.1225454518110688e-16,
+ 2.541098841762901e-16,
+ 2.826062562787419e-16,
+ 2.1688675661140383e-16,
+ -1.3673295525501547e-16,
+ -1.4839620189201316e-16,
+ 3.7553999809907456e-17,
+ 4.0655927106981304e-17,
+ -4.074795095012783e-16,
+ -1.737079286361358e-18,
+ -5.045801736573468e-17,
+ -7.444625512977249e-18,
+ -1.9459423910309974e-16,
+ 2.6304343479186277e-17,
+ 1.7135046389035966e-16,
+ -4.011412380575907e-16,
+ -1.1291015361348828e-16,
+ -9.653197748493832e-17,
+ -3.5403330217269584e-17,
+ -1.495542547495874e-16,
+ -3.548604827852489e-17,
+ -1.2937104780329353e-16,
+ 9.912932460835484e-16,
+ -1.3698110943878138e-16
+ ],
+ [
+ -5.242542202305566,
+ -4.209681143908575,
+ 3.141184984528793,
+ -3.0478678287950856,
+ 1.9688016584462398,
+ -0.14667086312565075,
+ -1.6370188497240779,
+ 2.8928798662834505,
+ -2.2135436137392746,
+ -4.206543657417329,
+ 1.5177984034166003,
+ 1.0939552280527305,
+ -0.008495157408732329,
+ -1.7570833629711018,
+ 2.986924986462972,
+ -2.081921130304245,
+ -3.701031096404201,
+ 1.1005950480862843,
+ 0.9489043079602524,
+ 0.21814415436639575,
+ -1.942856845711245,
+ 3.0367925173107544,
+ -3.123384978742882,
+ 2.165547540968578,
+ -0.5048829342113814,
+ -0.7776837582898343,
+ -0.7809875833735092,
+ 3.693803863278239,
+ 2.046812903495642,
+ -3.085226269261151,
+ 1.9920874125797228,
+ -0.2798144393294203,
+ -0.9056695889966657,
+ -1.1252290145368191,
+ 4.022148005787798,
+ 2.0906099670939247,
+ -3.0099674134023187,
+ 1.8790633091065072,
+ -0.14185756892484988,
+ -1.7322820225952005,
+ 2.939766369537126,
+ -3.196632981785192,
+ 5.049998486620991,
+ 5.0666512330074305,
+ 2.915673248419009,
+ 2.8294584883212575,
+ 1.1922712040038732,
+ 1.0570781671568663,
+ -1.677248657814554,
+ 2.9133618550104363,
+ -3.205374330609327,
+ 2.390766850278912,
+ -0.8188333155364955,
+ -1.0204494580773338,
+ 1.590035963723934,
+ 2.564585039280422,
+ -3.6876822213582376,
+ -2.0494229784951585,
+ 2.2957350649788864,
+ -0.681667996606126,
+ -1.2329872182657582,
+ 1.6822835553834734,
+ 2.552432271190248,
+ -3.2806207161503917,
+ -1.9995577838444003,
+ 2.13050210409697,
+ -0.4584860892558394,
+ -1.3594951354449671,
+ 2.7933867865901516,
+ -3.228193701784882,
+ 2.617938164934052,
+ -0.8355718232765665,
+ -2.0121237587009175,
+ -2.43278525863927,
+ -1.1010962952821215,
+ 2.8605494941683594,
+ -3.2092042939341807,
+ 2.478646961483058,
+ -0.7815562845631361,
+ -2.06053186887542,
+ -3.008240358777189,
+ -1.3291076108625905,
+ 2.958940355457849,
+ -3.1892165236265217,
+ 2.387509203345071,
+ -0.7102553495927081,
+ -1.1231935794218926,
+ 2.5953707164029374,
+ -4.282070792199571,
+ -5.170538105732114,
+ -2.833707371155784,
+ -2.1753186014004617,
+ 2.084170215724871,
+ -3.0944885258999086,
+ 3.1024828537856965,
+ -2.0254733226063775,
+ 0.32545520518780546,
+ 1.4823052039744615,
+ -1.8528233069584108,
+ -3.150259057799431,
+ 3.554648498491113,
+ 2.0212448038100166,
+ -1.916095179324164,
+ 0.18491397835219872,
+ 1.6800428253798096,
+ -1.8571542368855856,
+ -2.9361114400008033,
+ 2.9756775156226585,
+ 1.874405395903335,
+ -1.7288544186453467,
+ -0.04171639354041011,
+ 1.7964229095386919,
+ -3.0109300776221106,
+ 3.1644526256820042,
+ -2.2930999246325925,
+ 0.5269930657441941,
+ 1.5073040425781032,
+ 3.1207029860340123,
+ 1.935316206693904,
+ -1.9151492732624706,
+ 0.09993519093351165,
+ 1.6780713486721843,
+ -1.8601038440048099,
+ -3.1889339354138975,
+ 3.2329430281886182,
+ 1.8780886742220462,
+ -1.7280923041699168,
+ -0.04097784712094151,
+ 1.7943859374404882,
+ -3.0082176133867438,
+ 3.1620179733626794,
+ -2.291769429819253,
+ 2.395442825376016,
+ 2.5046611448315543,
+ 3.0898546038665113,
+ 3.1291248832141383,
+ 4.269162186293279,
+ 4.213965019839111,
+ -2.9855183931817972,
+ 3.1776928286853092,
+ -2.3416766830694504,
+ 0.6444605353455419,
+ 1.1861660207030886,
+ -2.635038486550874,
+ 2.1079647350191495,
+ 3.899659320726589,
+ -2.0271043296878557,
+ -1.3420156807800565,
+ 0.5084776789453143,
+ 1.3162662235786096,
+ -2.759871245020926,
+ 2.103377558267468,
+ 3.643479512972112,
+ -1.634218845806444,
+ -1.2279282498270632,
+ 0.283417852549934,
+ 1.519919558713479,
+ -2.8290778776621144,
+ 3.2144585475591647,
+ -2.510712390540111,
+ 0.9927590613896544,
+ 0.46597625162659934,
+ 0.21174720312876424,
+ -3.6113238690059224,
+ -1.9471847089125498,
+ 3.197294635716451,
+ -2.3619493095563646,
+ 0.7746702287346203,
+ 0.59448653716904,
+ 0.5171480948189723,
+ -4.181227784545852,
+ -2.120213048955141,
+ 3.156025822474523,
+ -2.263373554407279,
+ 0.6397485638932686,
+ 1.2893623518760036,
+ -2.6965644670919655,
+ 3.232281810857343,
+ -4.585141171424074,
+ -5.659015885302615,
+ 5.760485785819285e-16,
+ 1.6583316920463097e-15,
+ 3.0059743460177026e-16,
+ 2.158114218150849e-16,
+ -3.216078221606171e-16,
+ 1.437639904617162e-16,
+ -4.508134338414001e-16,
+ -6.791152829060356e-16,
+ -5.18807680193259e-16,
+ 2.6221625417930974e-17,
+ -9.92616735063633e-18,
+ 8.40415502353876e-16,
+ -2.2069178742914776e-16,
+ 3.084142913903963e-16,
+ 1.7900188455647516e-16,
+ 2.283018490646356e-17,
+ -3.2389290860279485e-16,
+ -3.5022827135495187e-16,
+ -1.9356026333740845e-16,
+ 3.546950466627382e-16,
+ -5.211237859084074e-17,
+ -2.3706996355769773e-16,
+ -5.128519797828771e-17,
+ -5.616556359235058e-17,
+ 4.251708348522562e-16,
+ 6.551270451419979e-17,
+ -6.542998645294449e-17,
+ 1.0654086289682995e-16,
+ 1.978616025226842e-16,
+ 2.966269676615157e-16,
+ -3.834809319795836e-16,
+ 1.6709048373571157e-16,
+ 1.0549861532501315e-15,
+ 9.88480832000868e-17,
+ -3.1962258869048984e-16,
+ 6.782881022934827e-17,
+ -1.797463471077729e-16,
+ -5.668255147519622e-17,
+ -1.5220123270975707e-16,
+ 5.189317572851419e-16,
+ -1.3863547066388744e-16,
+ 4.0027269841441004e-16,
+ 2.9679240378402633e-16,
+ 6.28657265540301e-17,
+ 8.08982639076861e-17,
+ 1.7230172159479564e-16,
+ -3.3624891900280575e-17,
+ 3.336846591038913e-16,
+ 2.7177019025429724e-16,
+ 7.775497757998459e-17,
+ -7.928526171320769e-17,
+ 7.072394237328387e-17,
+ 2.0150119721791752e-16,
+ 2.438838638536033e-16,
+ -4.565623390986436e-16,
+ -7.674168132960713e-17,
+ 1.3565762045869654e-16,
+ -1.6593243087813733e-16,
+ 1.606798339884256e-16,
+ 8.941822421698228e-17,
+ 2.448454613156962e-16,
+ 4.8472783895607416e-17,
+ 1.2804755882320868e-16,
+ -6.59262948204763e-17,
+ -1.6427806965303127e-16,
+ -3.0539508215457777e-16,
+ -1.464936864831412e-16,
+ -7.18819952308581e-17,
+ 1.38924983878281e-16,
+ -2.2706107814580607e-17,
+ -3.5866551360299275e-16,
+ -4.8141911650586205e-17,
+ -1.8942436027464331e-16,
+ -1.785572749772279e-16,
+ -2.5303454937997117e-16,
+ -4.450231695535288e-17,
+ 2.1399162446746823e-16,
+ 1.4210962923661015e-16,
+ 2.4037868600790984e-16,
+ -1.950491884400039e-16,
+ -2.99439381744196e-17,
+ -3.757881522828404e-16,
+ 1.3847003454137683e-16,
+ 8.99972506457694e-17,
+ -4.7893757466820296e-17,
+ -1.798290651690282e-16,
+ -5.320012109634797e-16,
+ -1.5972857628398962e-16,
+ -9.43647642800494e-16,
+ 1.080297879994254e-16,
+ 3.088692407273005e-16,
+ 1.0022947482305036e-15,
+ 1.9091328537723876e-16,
+ -3.331056326751042e-16,
+ -1.4608009617686469e-16,
+ 5.678594905176535e-17,
+ -2.0818068066428322e-16,
+ 2.1374347028370233e-16,
+ -4.638828875197379e-16,
+ -4.0391229310964336e-16,
+ 2.4815418376590827e-17,
+ -4.231959411397858e-16,
+ 3.9985910810813353e-16,
+ -2.109103766857082e-16,
+ 2.248276904919129e-16,
+ 4.900217948764136e-16,
+ -3.341809674714232e-17,
+ 1.6262370842792522e-16,
+ 5.449465875499346e-16,
+ 1.1829716735273987e-16,
+ 1.0041972636393755e-16,
+ -1.4080681977183914e-16,
+ -4.9299964508160443e-17,
+ -3.30872245021211e-19,
+ 8.712279801714763e-17,
+ 2.567568621364598e-16,
+ -1.811318746337992e-16,
+ -1.887626157846009e-16,
+ 3.307068088987004e-16,
+ -2.101865936497243e-16,
+ -2.667657475483514e-17,
+ 1.5139473161251787e-16,
+ -3.7574679325221277e-16,
+ -2.2912902967718867e-16,
+ 1.467418406669071e-16,
+ 4.833216319147341e-16,
+ 1.6105206526407446e-16,
+ 1.2333262933165643e-16,
+ -3.235930556307444e-16,
+ -2.2003004293910534e-16,
+ -2.2524128079818944e-16,
+ -1.4475660719677982e-18,
+ -9.43647642800494e-16,
+ 1.755690850143801e-16,
+ -6.625716706549752e-17,
+ -7.519071768107022e-17,
+ -1.534420036285866e-16,
+ -5.535492659204861e-16,
+ -2.5195921458365223e-16,
+ 4.4543675985980534e-17,
+ -4.2202754852455467e-16,
+ 3.296314741023815e-16,
+ 1.2597960729182611e-16,
+ 2.3760763095585717e-17,
+ -3.055191592464607e-16,
+ -2.0166663334042812e-16,
+ 1.0620999065180874e-16,
+ 2.843846945957309e-16,
+ -1.8363409598677214e-17,
+ 2.6635215724207488e-17,
+ 7.543887186483611e-17,
+ 4.748843896666932e-16,
+ 5.186422440707483e-17,
+ 2.3328561225526763e-16,
+ 1.5815693312013887e-16,
+ 2.4401828070314313e-17,
+ 1.9686898578762056e-17,
+ 2.802487915329658e-16,
+ -4.657854029286099e-16,
+ -2.4484546131569616e-17,
+ -1.5029871730088513e-16,
+ 2.6414978886115248e-16,
+ -5.558653716356346e-17,
+ -8.271806125530276e-20,
+ 2.4716156703084467e-16,
+ -1.119588959090523e-16,
+ -1.1001502146955267e-16,
+ 2.756165801026688e-16,
+ -7.692779696743156e-17,
+ 4.3770262113243454e-16,
+ -1.7271531190107215e-16,
+ 1.8231060700668727e-16,
+ -4.946540063067105e-17,
+ 5.525566491854224e-17,
+ -8.99972506457694e-17,
+ 8.495144890919593e-17,
+ -2.8124140826802937e-18,
+ -3.4245277359695346e-17,
+ -1.2688950596563445e-16,
+ 5.823351512373315e-17
+ ],
+ [
+ -7.7792040172897865,
+ -6.274095569926871,
+ 4.554858136522806,
+ -4.124711193051277,
+ 2.3609756050148643,
+ 0.317489132280391,
+ -2.761879284778544,
+ 4.314992281677942,
+ -3.104106110709298,
+ -6.000895958564158,
+ 1.5003853549307724,
+ 1.2300991424284389,
+ 0.5129821728785948,
+ -2.9192391856455284,
+ 4.414149718676506,
+ -2.8880437886213133,
+ -5.234534223747927,
+ 0.9785055633982241,
+ 1.033681281823297,
+ 0.8314810858821973,
+ -3.160196100784925,
+ 4.463557817717774,
+ -4.270959917621812,
+ 2.665114579405884,
+ -0.19369985992577696,
+ -1.4144504232918353,
+ -1.6893930857109853,
+ 5.250601559574267,
+ 2.9660913289243074,
+ -4.195554305680536,
+ 2.3967152353343293,
+ 0.12827791272021333,
+ -1.5882256674233401,
+ -2.2144748907834333,
+ 5.671947396809927,
+ 3.0024566648705178,
+ -4.054649228112565,
+ 2.223572714597538,
+ 0.3243160057950238,
+ -2.8868004608918882,
+ 4.365159767927691,
+ -4.431531329623433,
+ 6.6642842929350445,
+ 6.714085397191006,
+ 4.316696740275717,
+ 4.2249557630637,
+ 2.5914085176931625,
+ 2.415460086446476,
+ -2.8147615926409806,
+ 4.337065137743958,
+ -4.454312688145666,
+ 3.0192804926721157,
+ -0.64725782348666,
+ -1.9376099315207977,
+ 2.469794453564231,
+ 4.120961891815978,
+ -4.941167561281286,
+ -2.8052937794014947,
+ 2.8689210149419972,
+ -0.4484283509673763,
+ -2.2245922849312323,
+ 2.5781942632842054,
+ 4.036071005802106,
+ -4.349245710327913,
+ -2.7146475037572926,
+ 2.610612491742592,
+ -0.12711717366497527,
+ -2.394008232597323,
+ 4.204548409453817,
+ -4.527921344673622,
+ 3.385101639220567,
+ -0.8651823169689766,
+ -2.333728481242705,
+ -3.8849965954246533,
+ -1.8443470986483108,
+ 4.279673502592332,
+ -4.464437279853651,
+ 3.1595478958491583,
+ -0.7656356730195221,
+ -2.307298764329793,
+ -4.7257820580245475,
+ -2.162976184405199,
+ 4.385287269878695,
+ -4.413567773664989,
+ 3.0141068146150616,
+ -0.48981037754374496,
+ -2.0766638481749795,
+ 3.974054687102639,
+ -6.351122591837562,
+ -7.702579834408294,
+ -4.810128711810444,
+ -3.7434533517340394,
+ 3.341302114588521,
+ -4.516674962136293,
+ 4.2294933880515435,
+ -2.4481452054694484,
+ -0.0632240544778542,
+ 2.557547253218506,
+ -2.8112164898139946,
+ -4.901564107438788,
+ 4.642990995273985,
+ 2.7035953117247735,
+ -2.2801294229556883,
+ -0.2633062487037024,
+ 2.8184700390087056,
+ -2.780173475984667,
+ -4.5079928841394965,
+ 3.840017186305445,
+ 2.489153228673115,
+ -1.995229829535727,
+ -0.5837953810181462,
+ 2.970532871955503,
+ -4.438102433880952,
+ 4.35725103323215,
+ -2.8647917568398498,
+ 0.4126459367071546,
+ 1.5771002454418637,
+ 4.385530481518059,
+ 2.596659002814531,
+ -2.2784177130633956,
+ -0.3842166254509016,
+ 2.8160258683584902,
+ -2.7874286344719454,
+ -4.896180601889471,
+ 4.172044075001019,
+ 2.4912123615410717,
+ -1.9937611212413098,
+ -0.5831773378353925,
+ 2.9679857976044683,
+ -4.434388371107289,
+ 4.353676379768006,
+ -2.862568830252636,
+ 2.5225797852423217,
+ 2.6962799533823554,
+ 4.24253379421721,
+ 4.33033076079097,
+ 6.641434684379602,
+ 6.588492383628185,
+ -4.412613240587733,
+ 4.3864602504115675,
+ -2.94137926112525,
+ 0.3947128982919413,
+ 2.161535683022257,
+ -4.021054767761111,
+ 3.0040089234370524,
+ 5.660955775123849,
+ -2.295236608925996,
+ -1.6273023896245178,
+ 0.19885258473563192,
+ 2.336207367549948,
+ -4.166402234044959,
+ 2.9711559447941567,
+ 5.246084823712165,
+ -1.7657897612927846,
+ -1.4547693239148753,
+ -0.12312040803628185,
+ 2.6073019720687003,
+ -4.244594689802738,
+ 4.479467807767529,
+ -3.2110516886873985,
+ 0.9008368736097064,
+ 0.9904394792700767,
+ 0.8989217155633201,
+ -5.226490224633034,
+ -2.8759754564906825,
+ 4.432983387992476,
+ -2.9734166889578404,
+ 0.5831089915012798,
+ 1.185377562315844,
+ 1.4107951820258824,
+ -5.9986218885922815,
+ -3.0957468973691458,
+ 4.33855636273345,
+ -2.8179865136334823,
+ 0.38791050169424385,
+ 2.30014767735617,
+ -4.093246769003591,
+ 4.563013196914353,
+ -6.307735006582594,
+ -7.816521934293351,
+ 9.65485210971894e-16,
+ 2.513305573181119e-15,
+ 4.670261738474394e-16,
+ 3.036580028682164e-16,
+ -4.4270706383838036e-16,
+ 1.6130021944784037e-16,
+ -6.670384459627614e-16,
+ -9.429858983104515e-16,
+ -7.950860047859701e-16,
+ 4.9961708998202865e-17,
+ 1.7536228986124187e-17,
+ 1.2288595180087777e-15,
+ -2.5013941723603557e-16,
+ 4.50937510933283e-16,
+ 2.296253380447205e-16,
+ -5.889525961377557e-17,
+ -4.594988302732069e-16,
+ -5.010232970233689e-16,
+ -2.8852059765849605e-16,
+ 4.910144116114772e-16,
+ -6.468552390164676e-17,
+ -3.41791029106911e-16,
+ -7.17165591083475e-17,
+ -8.40415502353876e-17,
+ 6.106247281866449e-16,
+ -3.970466940254533e-18,
+ -1.0463834748795799e-16,
+ 1.3317607862103746e-16,
+ 3.1333601603508683e-16,
+ 4.658681209898652e-16,
+ -4.635520152747167e-16,
+ 2.387243247828038e-16,
+ 1.5438498952689707e-15,
+ 1.6460894189805248e-16,
+ -4.276110176592876e-16,
+ -3.705769144237564e-17,
+ -2.4070955825293105e-16,
+ -7.952824601814514e-17,
+ -2.488159282559507e-16,
+ 7.817683969238664e-16,
+ -1.7966362904651759e-16,
+ 6.126099616567722e-16,
+ 4.168990287267259e-16,
+ 9.098986738083303e-17,
+ 1.1142122851089283e-16,
+ 1.6287186261169112e-16,
+ -3.5982356646056704e-17,
+ 3.1962258869048984e-16,
+ 4.0221657285390966e-16,
+ 1.021568056502989e-16,
+ -7.616265490082001e-17,
+ 1.2622776147559202e-16,
+ 2.749548356126264e-16,
+ 2.6347770461345314e-16,
+ -6.687755252491228e-16,
+ -1.0711988932561707e-16,
+ 1.648570960818184e-16,
+ -2.362427829451447e-16,
+ 2.265647697782743e-16,
+ 1.0149506116025648e-16,
+ 3.447688793121019e-16,
+ 5.211237859084074e-17,
+ 2.0166663334042812e-16,
+ -1.1266199942972237e-16,
+ -2.3988237764037803e-16,
+ -4.054839362734941e-16,
+ -2.720597034686908e-16,
+ -7.130296880207099e-17,
+ 1.134064619810201e-16,
+ -5.39321759384574e-17,
+ -5.166570106006211e-16,
+ -8.966637840074819e-17,
+ -2.747066814288605e-16,
+ -2.1270949451801104e-16,
+ -3.89602068512476e-16,
+ -6.452008777913616e-17,
+ 2.687509810184787e-16,
+ 1.529456952610548e-16,
+ 3.421219013519322e-16,
+ -3.0456790154202474e-16,
+ -2.5311726744122644e-17,
+ -4.8869830589632875e-16,
+ 1.709782326147108e-16,
+ 1.7867101231145395e-16,
+ -8.933550615572698e-17,
+ -2.541098841762901e-16,
+ -7.392513134386407e-16,
+ -2.3508473008757047e-16,
+ -1.324812469064929e-15,
+ 7.146840492458159e-17,
+ 3.067185711346626e-16,
+ 1.4938881862707678e-15,
+ 2.9795045664160057e-16,
+ -4.822462971184151e-16,
+ -2.5229008682867344e-16,
+ 5.604148650046762e-17,
+ -3.207935662451352e-16,
+ 2.240005098793599e-16,
+ -5.092123850876438e-16,
+ -5.287752065745229e-16,
+ 4.268251960773622e-17,
+ -4.501516893513577e-16,
+ 5.479244377551255e-16,
+ -2.9556714250168216e-16,
+ 3.120952451162573e-16,
+ 6.928464810744159e-16,
+ -5.790264287871194e-17,
+ 2.4633438641829164e-16,
+ 6.982231550560106e-16,
+ 1.783918388547173e-16,
+ 1.617965278153722e-16,
+ -1.8601224024786207e-16,
+ -4.830734777309681e-17,
+ 6.576085869796569e-18,
+ 9.45053849841834e-17,
+ 3.6999788799496923e-16,
+ -2.8488100296326273e-16,
+ -2.645737189250859e-16,
+ 4.756288522179909e-16,
+ -2.546061925438219e-16,
+ -2.9447629806887785e-17,
+ 1.8834902547832438e-16,
+ -5.494960809189763e-16,
+ -3.146595050151717e-16,
+ 1.5137405209720404e-16,
+ 5.603321469434209e-16,
+ 2.0456176548436372e-16,
+ 1.5749518863009644e-16,
+ -4.618149359883554e-16,
+ -3.098618574623641e-16,
+ -3.248338265495739e-16,
+ -3.680953725860973e-17,
+ -1.356245332341944e-15,
+ 2.9075398531238923e-16,
+ -1.4525291556431166e-16,
+ -1.3822188035761092e-16,
+ -1.9140959374477058e-16,
+ -7.51079996198149e-16,
+ -3.3244388818506177e-16,
+ 5.4428484305989215e-17,
+ -5.467663848975513e-16,
+ 4.3650320924423265e-16,
+ 1.6891028108332823e-16,
+ -3.403848220655709e-17,
+ -3.2348965805417525e-16,
+ -2.478233115208871e-16,
+ 1.799945012915388e-16,
+ 4.3278089648774403e-16,
+ -2.950966835282926e-17,
+ 1.7205356741102976e-17,
+ 7.064122431202856e-17,
+ 6.43711952688766e-16,
+ 7.95334158969736e-17,
+ 2.883138025053578e-16,
+ 1.3234889800848443e-16,
+ 6.079777502264753e-17,
+ -5.045801736573468e-18,
+ 3.695842976886927e-16,
+ -6.563678160608274e-16,
+ -5.889525961377557e-17,
+ -1.7771975460701797e-16,
+ 3.811648262644351e-16,
+ -8.400019120475995e-17,
+ -2.0017770823783267e-17,
+ 3.656138307484382e-16,
+ -1.534420036285866e-16,
+ -1.3863547066388744e-16,
+ 3.8017220952937147e-16,
+ -8.966637840074819e-17,
+ 5.724089838866952e-16,
+ -2.6105820132173553e-16,
+ 3.130051437900656e-16,
+ -6.452008777913616e-17,
+ 7.213014941462401e-17,
+ -1.1712877473750872e-16,
+ 1.3995895964397228e-16,
+ -2.150669592637872e-18,
+ -2.3161057151484772e-17,
+ -2.893477782710491e-16,
+ -2.9778502051908996e-17
+ ],
+ [
+ 4.192884514657486,
+ 3.335822199257942,
+ -2.652207184648242,
+ 2.8655535677359554,
+ -2.2262531445860008,
+ 0.6998494898547507,
+ 0.9140672639792005,
+ -2.308766713082664,
+ 1.9736643211818525,
+ 3.6358346328265365,
+ -2.060852936253564,
+ -1.3178481319325064,
+ 0.5794851827709919,
+ 1.0344161116800843,
+ -2.4285940177887615,
+ 1.8917768376707746,
+ 3.2498471322404976,
+ -1.6176939221991855,
+ -1.1806432465427645,
+ 0.3772771511385087,
+ 1.2211980186671054,
+ -2.497070575127228,
+ 2.8874682474490907,
+ -2.3699029041750412,
+ 1.0092649426724902,
+ 0.32854130343027693,
+ 0.02697193066883903,
+ -3.2139014014920915,
+ -1.7170938738408534,
+ 2.8790054334288993,
+ -2.2426783919913893,
+ 0.8166389740016196,
+ 0.4490835923452866,
+ 0.28620999209652,
+ -3.550718655632452,
+ -1.7843691044826715,
+ 2.8508544501761257,
+ -2.1592944151949296,
+ 0.6956412282576943,
+ 1.0088022859737051,
+ -2.3681612931120224,
+ 2.8876123812022167,
+ -4.973065468080482,
+ -4.958129461591407,
+ -2.342907862757679,
+ -2.233185977006654,
+ -0.027288870248692032,
+ 0.1086128315956808,
+ 0.9539471177591963,
+ -2.3345518272508,
+ 2.8835493983493454,
+ -2.5275054255573286,
+ 1.2741850946156488,
+ 0.31887537929623644,
+ -1.1473154835139492,
+ -1.6957292724303181,
+ 3.5473501284320426,
+ 1.9046836622599634,
+ -2.4611316701221337,
+ 1.160073966887378,
+ 0.5217371738857548,
+ -1.2531778131620086,
+ -1.7613241797099477,
+ 3.208148263062343,
+ 1.8835598182471307,
+ -2.3446594047648524,
+ 0.9695782681629695,
+ 0.6426426043209466,
+ -2.1873026058647107,
+ 2.856989749513398,
+ -2.6768226972625886,
+ 1.090366366121506,
+ 2.3437268102366557,
+ 1.635803688560596,
+ 0.6435300688765972,
+ -2.2677619040845056,
+ 2.8824705654425298,
+ -2.585781843670926,
+ 1.0690162794533444,
+ 2.4931384964127323,
+ 2.110807793836887,
+ 0.8480882311034004,
+ -2.3928387995415066,
+ 2.8894872334944464,
+ -2.5252822205229557,
+ 1.1832435179433602,
+ 0.41611756830660707,
+ -1.9575804782748154,
+ 3.427955960469427,
+ 4.101259044523653,
+ 1.5844384102759261,
+ 1.1589430738202762,
+ -1.4070172944046644,
+ 2.5392248480368327,
+ -2.9231015512241303,
+ 2.227556763429134,
+ -0.895873945030787,
+ -0.8024925756731662,
+ 1.412134981319966,
+ 2.2637712198562263,
+ -3.5544937601912907,
+ -1.949618200462932,
+ 2.1474077011926203,
+ -0.7730457149759568,
+ -0.9963536062621625,
+ 1.4578123358872221,
+ 2.1779022432308874,
+ -3.0281985911162956,
+ -1.8282969924840666,
+ 2.004717233591532,
+ -0.5748844134391036,
+ -1.1135654469311205,
+ 2.4212630210351818,
+ -2.9323631766275082,
+ 2.4196042661208437,
+ -0.8375555947998107,
+ -1.948506620623712,
+ -2.065412951866876,
+ -0.9113193056705394,
+ 2.4879686754142463,
+ -0.6992143917062106,
+ -0.9942488238659225,
+ 1.4569304824721092,
+ 2.3654260382963272,
+ -3.289945586472296,
+ -1.835068788263402,
+ 2.0044679680445605,
+ -0.5759916311151081,
+ -1.1114130436654401,
+ 2.41874103120304,
+ -2.930359367350987,
+ 2.418693799968829,
+ -3.0777903629782015,
+ -3.152011526870152,
+ -2.8496346371518215,
+ -2.845908344196724,
+ -3.0689918826162184,
+ -2.99338609692724,
+ 2.3873692595883114,
+ -2.932165002574303,
+ 2.453359223935633,
+ -1.168330105487111,
+ -0.5167814566963189,
+ 1.9621042276831215,
+ -1.8255093944240828,
+ -3.2603760739565644,
+ 2.4241013697903364,
+ 1.4834334919267518,
+ -1.0520115554271754,
+ -0.6406444915939797,
+ 2.1077677638642442,
+ -1.8511796972023509,
+ -3.094615018382666,
+ 2.0495576775852586,
+ 1.3958388319339525,
+ -0.859403901703895,
+ -0.8394475667413464,
+ 2.1898252861081566,
+ -2.9182242478996963,
+ 2.5672887841258243,
+ -1.4589478460807257,
+ -0.03586706201737447,
+ 0.48932344525183913,
+ 3.037204818213993,
+ 1.5723885587096749,
+ -2.927274177749304,
+ 2.4682352954556626,
+ -1.2770052704785921,
+ -0.13386165122695945,
+ 0.31119861660689263,
+ 3.575828339991946,
+ 1.7524270277989777,
+ -2.9325495615037824,
+ 2.3988221832147723,
+ -1.1643524413374222,
+ -0.6156402775025376,
+ 2.0327985799150503,
+ -2.868152031478097,
+ 4.225832459372947,
+ 5.180113227442401,
+ -2.4649982254080225e-16,
+ -9.198248411589668e-16,
+ -1.6411263353052067e-16,
+ 6.609173094298691e-17,
+ -1.4517019750305636e-17,
+ -1.0691309417247881e-16,
+ 3.189608442004474e-16,
+ 2.3740083580271894e-16,
+ 2.3161057151484775e-18,
+ 2.69660879692287e-17,
+ 4.226892930145971e-17,
+ -5.826660234823527e-16,
+ 1.3052910066086777e-16,
+ -2.7925617479790214e-16,
+ -1.2502834958739013e-16,
+ 1.5162220628096995e-16,
+ 1.2606232535308142e-16,
+ 1.989886361072877e-16,
+ 2.4980854499101436e-16,
+ -1.5435190230239494e-16,
+ 5.839895124624375e-17,
+ 2.276401045745932e-16,
+ 6.377562522783843e-17,
+ 1.10924920143361e-16,
+ -2.6726205591588324e-16,
+ -6.7001629616795234e-18,
+ 1.8921756512150505e-17,
+ -7.780667636826915e-17,
+ -4.6404832364224846e-17,
+ -7.386722870098537e-17,
+ 3.2371713272262733e-16,
+ -1.4244050148163137e-16,
+ -6.925156088293947e-16,
+ 1.2639319759810263e-16,
+ 2.037345848718107e-16,
+ -9.29751008509603e-17,
+ 1.6072119301905325e-16,
+ 7.130296880207099e-17,
+ 1.4475660719677984e-17,
+ -3.649934452890234e-16,
+ 1.344995676011223e-16,
+ -1.8115255414911304e-16,
+ -2.301216464122523e-16,
+ 1.1712877473750872e-16,
+ 5.633099971486118e-17,
+ -1.6626330312315856e-17,
+ 1.1344782101164775e-16,
+ 1.6758679210324338e-16,
+ -3.806685178969033e-16,
+ -4.235164736271501e-17,
+ 1.3873886824045657e-16,
+ -2.2416594600187047e-17,
+ -9.922031447573566e-17,
+ -7.775497757998459e-17,
+ -8.635765595053608e-17,
+ 4.301339185275744e-18,
+ -3.350081480839762e-17,
+ 2.9406270776260134e-16,
+ -8.850832554317395e-17,
+ 1.25400580863039e-16,
+ -1.8843174353957968e-16,
+ 4.963083675318166e-19,
+ -1.476103803100878e-16,
+ 1.6957202557337065e-16,
+ 1.1795595535006175e-16,
+ 2.603964568316931e-16,
+ -9.591159202552355e-17,
+ -1.1878313596261477e-16,
+ -1.5757790669135175e-16,
+ 3.6313228891077915e-17,
+ 2.7991791928794457e-16,
+ -4.963083675318165e-18,
+ 1.0397660299791557e-16,
+ 4.820395019652768e-17,
+ 2.7900802061413623e-16,
+ 6.203854594147708e-17,
+ -2.1523239538629778e-16,
+ -1.713918229209873e-16,
+ 2.605618929542037e-17,
+ 1.9500782940937624e-17,
+ 5.1450634100798315e-17,
+ -7.444625512977249e-17,
+ 4.5164061445395305e-17,
+ 1.0740940254001063e-16,
+ 4.384057246531047e-18,
+ 1.0761619769314889e-16,
+ 2.4649982254080225e-16,
+ 4.532949756790591e-17,
+ 2.936491174563248e-17,
+ 3.5304068543763216e-16,
+ 1.0157777922151179e-16,
+ -9.790509730177636e-16,
+ -2.487332101946954e-16,
+ 2.420330472330159e-16,
+ 1.1696333861499811e-16,
+ -9.45881030454387e-17,
+ 3.7099050473003286e-16,
+ 2.2333876538931744e-17,
+ 5.0354619789165554e-17,
+ 2.099384394659584e-16,
+ 2.1258541742612808e-17,
+ 3.30872245021211e-16,
+ -1.1410956550169017e-16,
+ 1.193621623914019e-16,
+ -2.6138907356675675e-16,
+ -4.1284584372521606e-16,
+ -2.150669592637872e-18,
+ -3.176373552203626e-17,
+ -6.468552390164676e-17,
+ -5.696172493193287e-17,
+ -7.77549775799846e-18,
+ -1.8669466425321832e-16,
+ -2.5954859670382626e-16,
+ 6.468552390164676e-17,
+ -1.2514725680044463e-16,
+ -2.375455924099157e-16,
+ 1.34654663965976e-16,
+ 1.0761619769314889e-16,
+ -5.608284553109528e-17,
+ 5.474901679335351e-17,
+ 1.7536228986124187e-17,
+ 1.9107872149974936e-17,
+ 4.466775307786349e-17,
+ 1.5848780536516008e-16,
+ -1.50195319724316e-16,
+ -7.659692472241035e-17,
+ -1.3818052132698327e-16,
+ -8.743299074685501e-17,
+ 1.3199993118756362e-16,
+ 7.312276614968765e-17,
+ 1.0257039595657542e-17,
+ -5.707546226615891e-17,
+ 5.297264642789589e-16,
+ -1.3114948612028254e-16,
+ -2.3161057151484775e-18,
+ -1.0141234309900118e-16,
+ 1.5468277454741615e-16,
+ 3.2293131114070195e-16,
+ 3.265709058359353e-16,
+ -6.054962083888163e-17,
+ 2.6130635550550144e-16,
+ -1.6531204541872256e-16,
+ -3.8050308177439267e-17,
+ 6.61744490042422e-19,
+ 4.599124205794834e-16,
+ -2.754511439801582e-17,
+ -5.608284553109528e-17,
+ 5.293955920339376e-18,
+ 7.940933880509066e-18,
+ -1.871496135901225e-18,
+ -1.273444553025386e-16,
+ -2.5381003120423963e-16,
+ -5.1491993131425967e-17,
+ -1.1051132983708449e-16,
+ -2.3508473008757047e-16,
+ -1.685380498076794e-17,
+ -1.832722044687802e-17,
+ -3.4377626257703825e-16,
+ 6.700162961679524e-17,
+ -1.675040740419881e-17,
+ 4.7811039405564993e-17,
+ -7.246102165964522e-17,
+ 2.853773113307945e-18,
+ 8.747434977748266e-17,
+ 3.665237294222465e-16,
+ 7.568702604860202e-17,
+ 8.12291361527073e-17,
+ -2.306179547797841e-16,
+ 1.9289851884736603e-16,
+ -1.833859418030062e-16,
+ 1.7668577884132669e-16,
+ -4.0035541647566533e-17,
+ 1.4823076576950256e-16,
+ 1.094773540713932e-16,
+ 7.568702604860203e-18,
+ -6.14181604820623e-17,
+ -1.1249656330721175e-17,
+ 3.490702184973777e-17,
+ -1.7536228986124184e-16,
+ 5.763794508269497e-16
+ ],
+ [
+ -1.8595211739976873,
+ -1.385807201040387,
+ 1.5082713086430093,
+ -2.6536630256806046,
+ 2.8644676648761576,
+ -2.15995919176204,
+ 0.6972716145808061,
+ 0.9185513390898028,
+ -1.4892286909565033,
+ -2.4323463103520018,
+ 3.4713105309866807,
+ 1.9218834991214464,
+ -2.0728406938730393,
+ 0.5744330822753514,
+ 1.1103874837892014,
+ -1.5234976398095743,
+ -2.316421319702785,
+ 2.9441749128814316,
+ 1.797021337618903,
+ -1.923900914437724,
+ 0.37224894438894657,
+ 1.2231022413447303,
+ -2.54700250687104,
+ 2.8866208689317987,
+ -2.3663958924455324,
+ 0.7403362799534057,
+ 1.7926494140267668,
+ 2.209322666214416,
+ 1.0033354587380792,
+ -2.6058385683900305,
+ 2.8689511897768893,
+ -2.2388948695326674,
+ 0.6319861921946012,
+ 1.7262479833309632,
+ 2.5827421895411464,
+ 1.1305326329222956,
+ -2.694064243193953,
+ 2.849153764388818,
+ -2.157038970602085,
+ 0.5993805377055139,
+ 1.0108488021442374,
+ -2.3705583328988644,
+ 5.025970914991489,
+ 4.933936613546689,
+ 1.0722085932396688,
+ 0.9004463741546513,
+ -2.78490509801159,
+ -2.92904984473709,
+ 0.6564435146043875,
+ 0.9582461255298929,
+ -2.3353992340940746,
+ 2.8886119426034833,
+ -2.5257597749749015,
+ 1.269567068745188,
+ 0.13326085944392574,
+ -0.32110882907759636,
+ -3.378834397781416,
+ -1.6466605571064536,
+ 2.8922725913635094,
+ -2.4578685272635785,
+ 1.084300850314631,
+ 0.27709905625258213,
+ -0.06459196407235021,
+ -3.187273280708417,
+ -1.6939467732564195,
+ 2.8839752670481427,
+ -2.3411376856857022,
+ 0.9671262397357818,
+ 0.7381727880968715,
+ -2.188475487550582,
+ 2.857112077262668,
+ -1.758109220326626,
+ -3.2571738453683423,
+ 0.21026097017033288,
+ 0.4305554560020497,
+ 0.8586142701362645,
+ -2.3185668419986882,
+ 2.8821928626648505,
+ -1.8146149566170189,
+ -3.657677253458108,
+ -0.04500102434585897,
+ 0.27279422160367045,
+ 1.0501611441127388,
+ -2.3951066978241307,
+ 2.888787844116107,
+ -2.4729179376959656,
+ 1.1807936122426923,
+ 0.4208642658428938,
+ -1.5300244100488538,
+ -1.716063047569914,
+ 1.356306438026432,
+ 1.2398268384917346,
+ -0.25122426836656186,
+ -1.4109367632749148,
+ 2.539799049884403,
+ -2.9131075334754204,
+ 2.225767391042627,
+ -0.8912179351729219,
+ -0.4157511129197505,
+ -0.23172589704530955,
+ 3.724803313445179,
+ 1.8703016228464386,
+ -2.8957155038204805,
+ 2.1438049669718744,
+ -0.6934305985768187,
+ -0.5634579951494123,
+ -0.45149122705789774,
+ 3.3004523890940654,
+ 1.8047692830376774,
+ -2.8577474057985994,
+ 2.0008950640146956,
+ -0.5725684584206565,
+ -1.2040799286218655,
+ 2.422055209070015,
+ -2.931865784671949,
+ 1.627780345171528,
+ 3.107571157854722,
+ 0.3066148258707443,
+ -0.14021633363595545,
+ -1.315923723570567,
+ 2.5281314878191754,
+ -0.6960235576192241,
+ -0.5532729002404763,
+ -0.4903053067842068,
+ 3.585676956071726,
+ 1.819376620444625,
+ -2.8587972532024843,
+ 2.0030416408542973,
+ -0.5751620361068278,
+ -1.2019129535184014,
+ 2.421068658369275,
+ -2.9324738941831123,
+ 4.875850838894365,
+ 4.869190426657174,
+ 2.438911282261967,
+ 2.339530665307175,
+ 0.31815749100718893,
+ 0.18444172428059824,
+ -1.1472072629037726,
+ 2.389474459186632,
+ -2.931524020239497,
+ 2.3991254428679554,
+ -1.1656834773105333,
+ -0.5217623701129128,
+ 1.2311000677644148,
+ 1.8731449367465933,
+ -3.4993719213815657,
+ -1.8962781600818959,
+ 2.3287001752551797,
+ -1.0469449133431876,
+ -0.7207594298417612,
+ 1.3310868588558835,
+ 1.917789813442771,
+ -3.1511711839611385,
+ -1.8684711045914697,
+ 2.2012260991008508,
+ -0.8542841752507132,
+ -0.8417841890101156,
+ 2.252535187516057,
+ -2.917989735536959,
+ 2.5644130990318033,
+ -1.0011819033428568,
+ -2.206023606251936,
+ -1.796699014616298,
+ -0.7428221581602633,
+ 2.329338797709322,
+ -2.930206946602811,
+ 2.464987008039775,
+ -0.9721671256447036,
+ -2.326710767708252,
+ -2.285700121785626,
+ -0.9484604414736312,
+ 2.443274734326665,
+ -2.9318474924826994,
+ 2.396706371908608,
+ -1.0724152508429832,
+ -0.6181715712639043,
+ 2.0361194006406467,
+ -3.561199705173606,
+ -4.272520208409177,
+ 8.371067799036639e-17,
+ 8.98318145232588e-16,
+ -6.079777502264753e-18,
+ -1.6419535159177597e-16,
+ -7.626605247738914e-17,
+ 7.295733002717704e-17,
+ -2.0753961568955462e-16,
+ -4.657026848673545e-17,
+ 3.8182657075447753e-16,
+ -6.402377941160434e-17,
+ -8.313165156157927e-17,
+ 2.953034786814309e-16,
+ -1.9041697700970695e-16,
+ 1.6460894189805248e-16,
+ 4.3096109914012736e-17,
+ -2.2664748783952955e-17,
+ -6.540413705880221e-17,
+ -1.0769891575440419e-16,
+ -5.3084315810590545e-17,
+ 3.6065074707312007e-17,
+ 7.506664058918726e-18,
+ -8.842560748191865e-17,
+ -4.408872664907637e-17,
+ -1.5708159832381993e-16,
+ 6.617444900424221e-18,
+ 1.0753347963189359e-16,
+ 6.617444900424221e-18,
+ 1.1018045759206327e-16,
+ -6.319659879905131e-17,
+ -1.2622776147559202e-16,
+ -4.197941608706615e-16,
+ 1.6302695897654482e-16,
+ 2.0580253640319326e-16,
+ -2.4674797672456816e-16,
+ -2.7032262418232944e-16,
+ 4.079654781111532e-16,
+ -1.7258606493036074e-16,
+ -7.833400400877171e-17,
+ 1.4835484286138551e-16,
+ 8.828602075355032e-17,
+ -2.762783245927112e-17,
+ -9.436062837698662e-17,
+ 1.9306395496987663e-16,
+ -1.5009192214774687e-16,
+ -1.356989794893242e-16,
+ 2.717288312236696e-16,
+ -1.4239914245100371e-16,
+ 3.2210413052814893e-16,
+ 3.2805983093853073e-16,
+ 9.992341799640573e-17,
+ -1.9959868180904555e-16,
+ -5.331179047904263e-17,
+ 5.244325083586195e-17,
+ 2.447627432544409e-16,
+ 1.133237439197648e-16,
+ -5.560721667887729e-17,
+ 1.0455562942670269e-16,
+ -2.9406270776260134e-16,
+ 1.0166049728276709e-16,
+ 3.7223127564886245e-17,
+ 1.729221070542104e-16,
+ 5.227781471335134e-17,
+ 1.0447291136544738e-16,
+ -1.2060293331023143e-16,
+ -1.624582723054146e-16,
+ -2.7330047438752034e-16,
+ 3.1308786185132093e-16,
+ 3.73472046567692e-17,
+ 3.590377448786416e-16,
+ 4.677706363987371e-17,
+ -7.924390268258004e-17,
+ 1.3847003454137683e-16,
+ -1.0091603473146936e-17,
+ -2.452590516219727e-16,
+ -1.0538281003925571e-16,
+ -1.3292792443727155e-16,
+ 2.392206331503356e-16,
+ 2.2991485125911404e-16,
+ -9.388499952476863e-17,
+ 7.206811086868254e-17,
+ -6.741521992307176e-17,
+ 8.172544452023912e-17,
+ 3.1267427154504446e-17,
+ -2.364909371289106e-16,
+ -6.886278599503955e-18,
+ -6.224534109461533e-17,
+ -1.7585859822877366e-16,
+ -3.1846453583291565e-17,
+ 9.049355901330122e-17,
+ 1.860329197631759e-16,
+ 1.4806532964699195e-16,
+ 5.370056536694256e-16,
+ 1.5981129434524492e-16,
+ -9.438130789230045e-17,
+ 9.119666253397129e-17,
+ 9.632518233180006e-17,
+ -2.9447629806887785e-16,
+ 1.132410258585095e-16,
+ -3.23758491753255e-16,
+ -1.7834014006643274e-16,
+ -2.98612201131643e-17,
+ -6.074814418589434e-16,
+ 6.691891155553994e-17,
+ -1.9442880298058913e-16,
+ -9.926167350636332e-19,
+ 1.597078967686758e-16,
+ 4.020097777007714e-17,
+ -5.955700410381799e-17,
+ 3.3815143441167766e-16,
+ 3.697497338112034e-17,
+ -6.931773533194372e-17,
+ 2.370492840423839e-16,
+ 1.886798977233456e-16,
+ -6.231254951938527e-17,
+ 1.62292836182904e-16,
+ 2.4649982254080222e-17,
+ -6.038418471637102e-17,
+ -9.078307222769477e-17,
+ 1.0694411344544955e-16,
+ -8.879783875756751e-17,
+ 7.320548421094295e-17,
+ 4.987899093694756e-17,
+ 1.1233112718470116e-16,
+ -1.0397660299791557e-16,
+ 2.1440521477374475e-16,
+ 3.4923565461988824e-16,
+ 1.1754236504378523e-16,
+ 2.212914933732487e-16,
+ 2.1713491079516973e-17,
+ 2.762783245927112e-17,
+ 1.0149506116025648e-16,
+ 1.2606232535308142e-16,
+ -2.393033512115909e-16,
+ -1.4186147505284425e-16,
+ 1.4144788474656773e-16,
+ 2.6234033127119273e-16,
+ -1.6910673647880957e-16,
+ -1.1745964698252993e-16,
+ -3.513863242125261e-16,
+ 8.792929911438683e-17,
+ -2.2251158477676444e-16,
+ 3.114748596568425e-16,
+ -1.9769616640017358e-17,
+ 1.8727369068200544e-16,
+ -7.844980929452913e-16,
+ -5.1740147315191875e-17,
+ -7.519071768107022e-17,
+ -2.486504921334401e-16,
+ 3.044024654195142e-17,
+ 6.179039175771117e-17,
+ 2.600655845866719e-16,
+ 3.785178483042654e-16,
+ 5.1450634100798315e-17,
+ 2.0547166415817205e-16,
+ 6.069851334914116e-16,
+ -8.296621543906866e-17,
+ 1.3532674821367533e-16,
+ 3.1714104685283076e-16,
+ 2.6469779601696883e-17,
+ 1.9273308272485542e-16,
+ -1.2035477912646553e-16,
+ -2.6304343479186277e-17,
+ 3.308722450212111e-17,
+ -6.774609216809297e-17,
+ -3.7603630646660633e-16,
+ -8.598542467488721e-17,
+ -1.3557490239744124e-16,
+ 1.2904017555827232e-16,
+ -3.088692407273005e-16,
+ 1.862810739469418e-16,
+ 4.954811869192635e-17,
+ -1.4194419311409955e-16,
+ -1.465764045443965e-16,
+ -1.1571222793851166e-16,
+ -6.87387089031566e-17,
+ -1.0066788054770346e-16,
+ -7.16338410470922e-17,
+ -1.2904017555827232e-16,
+ 2.9778502051908996e-16,
+ -4.757942883405015e-16
+ ],
+ [
+ -0.5258262092529116,
+ -0.5247338971389914,
+ -0.09476665214034334,
+ 1.1622033709452892,
+ -1.9042384791988431,
+ 1.964368873522556,
+ -1.4178906186376166,
+ 0.3592893283769,
+ 0.4502334859449605,
+ 0.4758558250051167,
+ -2.6480883280676526,
+ -1.3547747694850534,
+ 1.9433170019909827,
+ -1.351831736764787,
+ 0.21888167531993472,
+ 0.5407331614969159,
+ 0.5870785401260198,
+ -2.3279259667618377,
+ -1.2992326168873947,
+ 1.8991196691256726,
+ -1.2418110199652335,
+ 0.13167678511828543,
+ 1.0272663095857155,
+ -1.8390842510667442,
+ 2.0042298022855545,
+ -1.0482220840764287,
+ -2.054395252586845,
+ -0.48802146137331337,
+ -0.059516781985493275,
+ 1.1016746377441844,
+ -1.8968755783848879,
+ 1.9827616988587224,
+ -1.0009478278513555,
+ -2.142090008407117,
+ -0.7004360939996118,
+ -0.16174066800871567,
+ 1.2174755417411918,
+ -1.9290565967672852,
+ 1.963672795123929,
+ -1.3661814126349248,
+ 0.29169322605641135,
+ 0.8266629248648043,
+ -2.5819966959025,
+ -2.486833188212283,
+ 0.25609464489251355,
+ 0.3822446852606473,
+ 3.182224075386982,
+ 3.260535425388205,
+ -1.3965008603250664,
+ 0.33032421286484,
+ 0.7892529645183327,
+ -1.7420939703781335,
+ 2.0185362724960965,
+ -1.6935947215377394,
+ 0.5707034369497754,
+ 1.432282387611888,
+ 1.6073137435579328,
+ 0.6725958672799844,
+ -1.785814085157264,
+ 2.015396884626666,
+ -1.6085321264874535,
+ 0.4738664475603844,
+ 1.1820463070332712,
+ 1.603090466274657,
+ 0.7396289923543778,
+ -1.851892180056984,
+ 2.0004292473897576,
+ -1.5536729003818766,
+ 0.487833401988582,
+ 0.6389033364688719,
+ -1.6122828905196724,
+ 1.3118237496851297,
+ 2.226633756585952,
+ -1.2686342177792749,
+ -0.894415049444248,
+ 0.40379579175164354,
+ 0.772919068341033,
+ -1.69589330338197,
+ 1.3894878735127394,
+ 2.5877751798028967,
+ -1.2775245139998914,
+ -0.8438795583898967,
+ 0.2626289071934364,
+ 0.8532918976411455,
+ -1.7436688220966148,
+ 2.0157962269973426,
+ -1.6540058341234083,
+ 0.7038789418061616,
+ -0.41881738054646506,
+ -0.6311948630814725,
+ -2.5388839382645263,
+ -2.1386528713185156,
+ 1.1211902599136905,
+ -0.04477565436745189,
+ -1.096650461082401,
+ 1.858757962406328,
+ -2.015827706802183,
+ 1.4680559032592693,
+ -0.4163564378710023,
+ -1.1615907401854273,
+ -1.9960523230379958,
+ -0.8985062691908884,
+ 1.891642053263771,
+ -1.9977922561768984,
+ 1.3674854717322193,
+ -0.2772253530233575,
+ -0.8577526837633108,
+ -1.8450339558300322,
+ -0.9003941735116935,
+ 1.9361104570657433,
+ -1.9623097815518242,
+ 1.301690146622358,
+ -0.2055541018587736,
+ -0.9570755597153582,
+ 1.7592009695572428,
+ -1.32285424384894,
+ -2.305419202355954,
+ 0.951568448587406,
+ 0.7329824087405433,
+ -0.11822095076571608,
+ -1.080456142914933,
+ 1.825259721927587,
+ -0.28823997311352506,
+ -0.9316464822328522,
+ -2.004419323476381,
+ -0.9127078745336293,
+ 1.9374363365954175,
+ -1.963999377901005,
+ 1.3032350065065892,
+ -0.2064303997580101,
+ -0.9571837957814908,
+ 1.76017604520649,
+ -3.6030133690100836,
+ -3.548705245511892,
+ -0.9602918387322652,
+ -0.8450715074466377,
+ 1.5702018954950219,
+ 1.6717144744666743,
+ -0.24837274078114766,
+ -0.9201300537968345,
+ 1.737533321237766,
+ -2.041268023026302,
+ 1.6000431856408233,
+ -0.6920059316346105,
+ -0.2501402382511748,
+ -0.07669094713776925,
+ 2.4513110003429577,
+ 1.2214355337474823,
+ -2.032227996375802,
+ 1.5452521363254326,
+ -0.5553330387242916,
+ -0.34761422513272194,
+ -0.23175971294463144,
+ 2.291301115368686,
+ 1.2449598777733757,
+ -2.010785118697194,
+ 1.4492237920109043,
+ -0.47163953328335245,
+ -0.7732037887363947,
+ 1.6503523751361495,
+ -2.046181217987456,
+ 1.160431491461115,
+ 2.1991841065266162,
+ 0.1302367121382674,
+ -0.14549133218448942,
+ -0.8525863080544831,
+ 1.7287973320485261,
+ -2.0455090283776833,
+ 1.1891399007910484,
+ 2.4484669756595174,
+ 0.34695157221570283,
+ -0.02510891563601901,
+ -0.980956809967009,
+ 1.7721599048040138,
+ -2.0410165676609293,
+ 1.5563357389451216,
+ -0.6270158743194898,
+ -0.5587490213581752,
+ 1.387445612097064,
+ 1.5951939069485153,
+ 7.346191020083438e-16,
+ 4.650409403773122e-16,
+ 1.4518829207895595e-16,
+ 1.4545971071744992e-16,
+ -1.3284520637601624e-16,
+ -1.6718871143345224e-16,
+ -7.088937849579447e-17,
+ -2.2292517508304093e-17,
+ -4.183465947986937e-16,
+ 8.015380135638837e-17,
+ 1.0573436179959075e-16,
+ 4.0035541647566533e-17,
+ 1.9058241313221755e-16,
+ -8.395883217413231e-18,
+ -9.69265038630349e-17,
+ -8.313359026613994e-17,
+ -2.2623389753325304e-17,
+ -2.6562837420609098e-17,
+ 5.852302833812671e-17,
+ -3.0647041695089675e-17,
+ 5.3994214484398875e-17,
+ 2.6697254270148965e-17,
+ 1.2324991127040111e-17,
+ 3.4824303788482465e-17,
+ 3.316994256337641e-17,
+ -2.325204701886561e-16,
+ -4.326154603652334e-17,
+ -5.6827308082393e-17,
+ 1.2399437382169885e-16,
+ 1.8652922813070772e-16,
+ 2.957997870489627e-16,
+ -3.792623108555631e-17,
+ -1.0778163381565949e-16,
+ 1.995573227784179e-16,
+ 5.765448869494603e-17,
+ -3.9382068963649643e-16,
+ 9.395479288895279e-17,
+ 5.2939559203393765e-17,
+ -1.683312546545411e-16,
+ 7.337092033345355e-17,
+ 1.7217764450291269e-16,
+ 1.1245520427658411e-16,
+ -9.92616735063633e-18,
+ 1.0517601488611746e-16,
+ 4.7232012976777874e-17,
+ -1.0066788054770346e-16,
+ 8.904599294133342e-17,
+ -2.127508535486387e-16,
+ -6.88214269644119e-17,
+ -2.7596813186300383e-17,
+ 1.2463543879642744e-16,
+ 7.390858773161302e-17,
+ -1.0877425055072312e-17,
+ -1.6626330312315854e-16,
+ -3.599890025830776e-16,
+ -4.19380570564385e-17,
+ -5.98878763488392e-17,
+ 1.4301952791041848e-16,
+ 2.7379678275505213e-17,
+ 7.320548421094295e-17,
+ 1.8859717966209028e-17,
+ -4.987899093694756e-17,
+ 4.8850185050084734e-17,
+ 5.815079706247785e-17,
+ -1.9025154088719633e-17,
+ 1.3582305658120714e-16,
+ -3.5077627851076825e-16,
+ -2.5146290621612038e-17,
+ -3.157348398114906e-16,
+ -6.948317145445432e-17,
+ 6.997947982198614e-17,
+ -4.235164736271501e-17,
+ -8.437242248040882e-18,
+ -1.137373342260413e-18,
+ 1.1497810514487083e-17,
+ -3.399712317592944e-17,
+ -1.6262370842792522e-16,
+ -1.9213337678075448e-16,
+ 1.414633943830531e-16,
+ -1.87563203896399e-16,
+ 7.692779696743156e-17,
+ -6.021874859386041e-17,
+ 1.4330904112481204e-17,
+ 2.587007365759594e-16,
+ -1.1042861177582918e-16,
+ 3.238929086027949e-17,
+ -5.9557004103817985e-18,
+ -9.599431008677885e-17,
+ -4.1822251770681074e-16,
+ 1.636576841936165e-16,
+ -1.83055069557985e-16,
+ -9.90962373838527e-17,
+ 8.106370003019671e-18,
+ 2.1134464650729854e-17,
+ -1.1274471749097767e-16,
+ -1.341686953561011e-16,
+ 1.0563096422302162e-16,
+ -9.367820437163037e-17,
+ 2.459621551426428e-16,
+ 1.1369597519541365e-16,
+ 8.830153039003569e-17,
+ 4.691768434400773e-16,
+ 4.9299964508160443e-17,
+ -6.11700062982964e-17,
+ -2.512147520323545e-16,
+ -1.708127964922002e-16,
+ -4.0118259708821836e-17,
+ 8.749502929279649e-17,
+ 4.437823986346993e-17,
+ 4.3489020704975424e-17,
+ 6.749793798432706e-17,
+ -1.4872707413703438e-16,
+ -1.5129133403594874e-16,
+ 8.342116477597283e-17,
+ -1.1952242863508404e-16,
+ -1.3589543488480553e-16,
+ -9.694556779121483e-17,
+ -1.9025154088719633e-17,
+ 1.049692197329792e-16,
+ 7.444625512977249e-18,
+ 3.577556149291845e-17,
+ -1.0753347963189358e-17,
+ -1.9116143956100467e-16,
+ 4.0076900678194185e-17,
+ -1.8987930961154748e-16,
+ -1.3838731648012153e-16,
+ -1.0726464593281385e-16,
+ -4.135903062765138e-18,
+ -4.044913195384305e-17,
+ -4.673570460924606e-17,
+ -1.0517601488611746e-16,
+ -1.9184386356636092e-16,
+ -5.157471119268127e-17,
+ 1.2966056101768707e-17,
+ -1.9132687568351528e-16,
+ -1.7527957179998654e-16,
+ 1.390077019395363e-16,
+ 1.654361225106055e-16,
+ 2.2813641294212503e-16,
+ -4.839006583435211e-17,
+ 1.5104317985218283e-16,
+ 2.4091635340606927e-18,
+ -1.4723814903443893e-17,
+ -2.1126192844604324e-16,
+ 5.6281368878108e-16,
+ 3.639594695233322e-18,
+ 6.476824196290207e-17,
+ 1.829723514967297e-16,
+ -4.4833189200374094e-17,
+ -5.790264287871194e-17,
+ -1.647381888687639e-16,
+ -1.0836066024444661e-17,
+ 1.7453510924868884e-17,
+ -8.850832554317395e-17,
+ -3.0026656235674905e-16,
+ 9.942710962887391e-17,
+ -7.465305028291075e-17,
+ -2.3185872569861366e-16,
+ -1.4384670852297151e-16,
+ -5.75510911183769e-17,
+ 4.508134338414e-17,
+ -4.350970022028925e-17,
+ -4.5164061445395305e-17,
+ -9.357480679506126e-19,
+ 4.887603444422702e-16,
+ 4.1028158382630167e-17,
+ 1.952146245625145e-17,
+ -8.561319339923835e-17,
+ 1.3210074382471852e-16,
+ -8.271806125530276e-17,
+ 2.547716286663325e-17,
+ 1.9604180517506753e-16,
+ 9.504305238234287e-17,
+ 6.127340387486553e-17,
+ 8.233032034316853e-19,
+ 5.281548211151081e-17,
+ -3.3583532869652924e-17,
+ 8.065010972392019e-17,
+ -6.279955210502585e-16,
+ 1.2457340025048597e-16
+ ],
+ [
+ 5.878556761025231,
+ 4.962226809765981,
+ -2.5887230649655693,
+ -0.07912876547921988,
+ 2.7176356099690415,
+ -4.53827806921891,
+ 4.760117850947153,
+ -3.440334368843682,
+ 0.8959919462256392,
+ 2.598687932751578,
+ 4.9050248247218455,
+ 2.228602170592567,
+ -4.609381468291502,
+ 4.71194315033561,
+ -3.1907900603539345,
+ 0.5660327613601884,
+ 1.8890657584612724,
+ 4.5187424166797445,
+ 2.2258804255780307,
+ -4.707073533148309,
+ 4.615231460266123,
+ -3.0306389928607453,
+ 0.3060922149995822,
+ 2.389808255947942,
+ -4.315422730183634,
+ 3.161125542595516,
+ 5.5379783108281435,
+ -2.1164076284740916,
+ -1.6703419614355284,
+ 0.09825170721399891,
+ 2.681082835677876,
+ -4.462409087870773,
+ 3.1628206975991198,
+ 6.0494505885305685,
+ -1.9057282579654333,
+ -1.4679086942721413,
+ -0.2430092750198003,
+ 2.855537763009883,
+ -4.540909841532061,
+ 4.722444242178127,
+ -3.3223775978246883,
+ 0.8441919598318032,
+ 1.624199187627717,
+ 1.3849337247295816,
+ -3.1836568479068577,
+ -3.4050184627905504,
+ -8.5629218815334,
+ -8.628009443483124,
+ 4.745307230394528,
+ -3.3901762815049126,
+ 0.9401874277661446,
+ 1.961754035549445,
+ -4.071470130879961,
+ 4.865200958948166,
+ -2.7531564689112678,
+ -5.648124779523332,
+ -0.5298309799035698,
+ 0.22617485135525114,
+ 2.1504620463696424,
+ -4.1839387537472,
+ 4.8539904307594455,
+ -2.606288148837955,
+ -5.046954768733204,
+ -0.8799901914929525,
+ 0.023902446889497636,
+ 2.4510800707050806,
+ -4.347554102907717,
+ 4.834987827884259,
+ -3.6555956946945725,
+ 1.315053347252136,
+ 1.4545349043056017,
+ -2.355850492351272,
+ -3.4733652500196497,
+ 5.145370189449946,
+ 3.084350269973571,
+ -3.515266523161488,
+ 0.9835342421040851,
+ 1.7765027249486205,
+ -2.5868676094314806,
+ -4.282597761781525,
+ 5.675411615430399,
+ 3.166825506600813,
+ -3.2707202170196363,
+ 0.7747538241216407,
+ 1.9683823718325486,
+ -4.160998862592295,
+ 4.862582196179724,
+ -3.99012951139792,
+ 4.77635777142026,
+ 6.063427281283541,
+ 8.496964611032498,
+ 6.970253412331742,
+ -4.522453193044501,
+ 2.8098033710049015,
+ -0.19071218145415694,
+ -2.6269799576516695,
+ 4.434718552253302,
+ -4.808385327429974,
+ 2.6214656190937085,
+ 5.527508065267602,
+ 1.5646676183473496,
+ 0.3317385328500591,
+ -2.799856390995804,
+ 4.517952199729208,
+ -4.744555803406241,
+ 2.2970451465210155,
+ 4.621217371348804,
+ 1.7205664593766596,
+ 0.4660966060123597,
+ -3.07188018902878,
+ 4.633233994448223,
+ -4.693766626035388,
+ 3.115278190997496,
+ -0.5748883849612485,
+ -2.1553137558221596,
+ 2.654852252639954,
+ 4.105811066463811,
+ -4.7529291486735525,
+ -2.9368194732311457,
+ 2.9528809533122575,
+ -0.23480981420528219,
+ -2.4558971573005772,
+ 2.775901974737596,
+ 5.019299105577265,
+ 1.8690187893439676,
+ 0.49190612688988505,
+ -3.075682268237279,
+ 4.636608049980377,
+ -4.695672184963137,
+ 3.1149657465497627,
+ -0.5724600039715979,
+ -2.158972950867161,
+ 6.382398354823793,
+ 6.157639576960225,
+ -0.4558705318474894,
+ -0.759374575242577,
+ -7.48158808778094,
+ -7.674135226890519,
+ 3.1941726148574765,
+ -0.6737489662259311,
+ -2.061229026972402,
+ 4.212528859791123,
+ -4.857876347825244,
+ 3.930482285804851,
+ -1.2746984748683616,
+ -3.2690358471102092,
+ -3.9901752008727946,
+ -1.6945580510390896,
+ 4.312997314994583,
+ -4.842238860337171,
+ 3.7199174369956425,
+ -1.0406594350840779,
+ -2.6765143352672496,
+ -3.9602472566947355,
+ -1.8509943190640106,
+ 4.460043879538004,
+ -4.7973196075168465,
+ 3.582195546219735,
+ -1.0528798310395695,
+ -1.7060605738827948,
+ 3.9160214300471923,
+ -3.150111624639012,
+ -5.375994917048506,
+ 2.8875720226096653,
+ 2.06588789680134,
+ -0.848930084855247,
+ -2.021277125238287,
+ 4.108846567986851,
+ -3.331531710585921,
+ -6.234324629641344,
+ 2.880432770210942,
+ 1.934929766045609,
+ -0.5110136661496696,
+ -2.212264485494629,
+ 4.2161428835122345,
+ -4.84599919903008,
+ 3.8314996556281624,
+ -1.5746175806391258,
+ 0.7828482565690928,
+ 1.2427263143048473,
+ -1.491241208310598e-15,
+ -1.7771148280089247e-15,
+ -5.118593630478135e-16,
+ -3.071735204715668e-16,
+ 4.562728258842501e-16,
+ 1.561716996500116e-16,
+ 6.667696122636817e-16,
+ 3.2028433318053227e-16,
+ 9.68793933422106e-16,
+ -1.9587636905255693e-16,
+ -9.173432993213076e-17,
+ -6.642260318800811e-16,
+ -3.331883507363595e-16,
+ -4.635933743053444e-16,
+ 5.922613185879678e-17,
+ 6.981404369947554e-17,
+ 2.8239946112560365e-16,
+ 4.689286892563114e-16,
+ 1.2738581433316626e-16,
+ 4.19380570564385e-17,
+ 1.195017491197702e-17,
+ 3.0754575174721564e-16,
+ -3.565148440103549e-17,
+ 1.0554824616176632e-16,
+ -4.572551028616568e-16,
+ 3.7985167704200717e-16,
+ 1.1828682759508296e-16,
+ 2.8785885316845363e-17,
+ -1.0058516248644815e-16,
+ -5.705891865390785e-16,
+ -1.9554549680753572e-16,
+ -7.543887186483611e-17,
+ -9.896388848584423e-16,
+ -3.0456790154202474e-16,
+ 1.4583194199309878e-16,
+ 5.618210720460164e-16,
+ 6.733250186181645e-17,
+ 1.1042861177582918e-16,
+ 5.525566491854225e-16,
+ -5.421341734672543e-16,
+ -7.80858498250058e-17,
+ -6.8292031372377955e-16,
+ -9.363684534100272e-17,
+ -1.5463107575913159e-16,
+ -2.277021431205347e-16,
+ 1.9107872149974936e-17,
+ -1.3524403015242002e-16,
+ 5.237707638685771e-16,
+ -2.244968182468917e-16,
+ 2.3967558248723974e-17,
+ -3.0907603588043874e-16,
+ -3.2003617899676636e-16,
+ 1.5964585822273434e-17,
+ 2.2499312661442353e-16,
+ 1.0399314661016664e-15,
+ 1.3929721515392986e-16,
+ -3.279771128772755e-17,
+ 1.67752228225754e-16,
+ -1.889280519071115e-16,
+ -2.536135758087583e-16,
+ -7.871657504207748e-17,
+ 1.952146245625145e-16,
+ -2.3909655605845265e-16,
+ -1.0149506116025648e-16,
+ 3.474158572722716e-17,
+ -6.472688293227442e-17,
+ 6.123618074730063e-16,
+ 5.459392042849982e-18,
+ 6.747725846901322e-16,
+ 1.9058241313221755e-16,
+ 1.8284827440484674e-16,
+ 1.4277137372665258e-16,
+ 1.9244356951046186e-16,
+ 1.435985543392056e-16,
+ -8.238718901028154e-17,
+ 1.4905794638205559e-16,
+ 1.9736529415515238e-16,
+ 4.0199685300370026e-16,
+ -3.655311126871829e-16,
+ 6.228670012524297e-16,
+ -1.224227306578481e-16,
+ 1.5402103005737373e-16,
+ -8.149279997295858e-17,
+ -6.713397851480372e-16,
+ 2.1905293584052707e-16,
+ 1.1530897738989206e-16,
+ 4.151412699250507e-16,
+ 4.3608961893795614e-16,
+ 1.7761222112738608e-15,
+ -5.293955920339377e-16,
+ 8.420698635789821e-16,
+ -1.5511290846594373e-15,
+ -3.864587821847745e-16,
+ 1.5732975250758584e-16,
+ 3.39061333085486e-16,
+ 1.5591320570858878e-16,
+ 3.223109256812872e-16,
+ 2.452590516219727e-16,
+ -4.474219933299327e-16,
+ -3.850525751434343e-17,
+ -7.77549775799846e-18,
+ -8.95836603394929e-16,
+ -3.039061570519823e-16,
+ 3.2766692014756804e-16,
+ 2.5630191279955563e-16,
+ -4.704176143589068e-16,
+ 9.678013166870423e-17,
+ -2.809105360230082e-16,
+ -4.584234954768879e-16,
+ -2.1792073237709512e-16,
+ -2.1705219273391444e-16,
+ 1.8396496823179333e-16,
+ 2.4054412213042045e-16,
+ -2.1225454518110688e-16,
+ 2.1390890640621293e-16,
+ -1.92071338234813e-16,
+ 3.269017780809565e-16,
+ 2.2135353191919018e-16,
+ -5.90937829607883e-16,
+ 1.5162220628096995e-16,
+ 7.974021105011186e-17,
+ -1.0306670432410724e-16,
+ 8.57620859094979e-16,
+ 1.9688966530293439e-16,
+ 3.296314741023815e-16,
+ -4.4006008587821066e-17,
+ 7.527343574232552e-17,
+ -3.290834669465651e-16,
+ 2.845294512029277e-16,
+ 1.528629771997995e-16,
+ 3.72396711771373e-16,
+ 4.599124205794834e-16,
+ 1.237958504746861e-15,
+ -2.1891334911215875e-16,
+ 5.236053277460665e-16,
+ 1.8355137792551682e-16,
+ -1.1785255777349262e-16,
+ -2.393860692728462e-16,
+ 5.293955920339376e-18,
+ 8.879783875756751e-17,
+ -5.893661864440321e-19,
+ -4.0895809484621683e-16,
+ 1.9273308272485542e-17,
+ 4.739744909928849e-16,
+ -5.591740940858467e-16,
+ -1.919059021123024e-17,
+ -2.1539783150880838e-16,
+ -3.187126900166815e-16,
+ -6.2865726554030096e-18,
+ 1.8462671272183575e-16,
+ 3.4046754012682614e-16,
+ -3.488841028595532e-16,
+ -5.219509665209604e-17,
+ -6.981404369947554e-17,
+ 2.362427829451447e-16,
+ -2.989430733766642e-16,
+ 4.764560328305439e-17,
+ -4.764560328305439e-17,
+ 6.27706007835865e-16,
+ 7.79204137024952e-17,
+ 8.70194004405785e-17,
+ -8.875647972693986e-17,
+ 2.4939495468473784e-16,
+ 8.951645191472295e-17,
+ -1.3492970151964985e-15,
+ -5.194694246833013e-17,
+ -4.350970022028925e-17,
+ -1.0869153248946782e-16,
+ -2.3094882702480533e-16,
+ 2.853773113307945e-18,
+ 9.123802156459894e-17,
+ -5.03256684677262e-16,
+ -1.819797347616661e-17,
+ 5.856438736875436e-17,
+ 2.870316725559006e-17,
+ -2.7404493693881807e-16,
+ 7.299868905780469e-17,
+ -2.256135120738383e-16,
+ 6.200545871697494e-16,
+ 7.063295250590302e-16
+ ],
+ [
+ 3.8120522252611693,
+ 3.2411968432202887,
+ -1.588556193427002,
+ -0.3889848912171801,
+ 2.2379212157380324,
+ -3.3970608492003955,
+ 3.3691923386638587,
+ -2.2499236710505817,
+ 0.42785802429218656,
+ 1.4806193240406755,
+ 3.8187672346098096,
+ 1.7788434902760226,
+ -3.435073072388845,
+ 3.320300296513311,
+ -2.053821523150426,
+ 0.1962790719591346,
+ 1.0066640517342176,
+ 3.485796412309437,
+ 1.7611089877236916,
+ -3.483316017461196,
+ 3.2281320786589807,
+ -1.9291026451449342,
+ -0.11015881019464822,
+ 2.014982367084535,
+ -3.2698136353419684,
+ 2.2709403102723957,
+ 4.041419686027491,
+ -1.176824438359799,
+ -1.0228305111509737,
+ -0.2608755266812493,
+ 2.2132096756990225,
+ -3.3549534931671072,
+ 2.258344341033395,
+ 4.385206621247808,
+ -0.9843071608625991,
+ -0.8672681708399268,
+ -0.5069779582958478,
+ 2.3309454858261844,
+ -3.398499148703868,
+ 3.3308090129351964,
+ -2.1569654286551887,
+ 0.2828133072747055,
+ 1.7569157329889817,
+ 1.5804584392696366,
+ -2.056221185328666,
+ -2.2304788563782703,
+ -6.2505621325483,
+ -6.313700930708292,
+ 3.353800618525582,
+ -2.210335632988301,
+ 0.3533867768260627,
+ 1.720455528646231,
+ -3.1220566509006136,
+ 3.5142457758899464,
+ -1.8790269304146359,
+ -3.9303503766379464,
+ -0.7940552006435344,
+ -0.05340821216923012,
+ 1.850758341816397,
+ -3.190997330266218,
+ 3.482880405088761,
+ -1.7596161131032213,
+ -3.483775135265932,
+ -1.0108583291397364,
+ -0.19870883576977572,
+ 2.0568371676240793,
+ -3.288728229376506,
+ 3.4550256847466883,
+ -2.4210747996728315,
+ 0.6302043145032843,
+ 1.3671564273185621,
+ -1.845670456191509,
+ -2.8056578726764116,
+ 3.5700539515863556,
+ 2.1787205642057477,
+ -2.3092522157731374,
+ 0.3852667576813095,
+ 1.5919504197712826,
+ -2.011937733689515,
+ -3.41380634736514,
+ 3.9026432311481383,
+ 2.215478410027381,
+ -2.116401947684493,
+ 0.2318821623811065,
+ 1.72503846068682,
+ -3.1770029064339993,
+ 3.501174638362391,
+ -2.691756907560821,
+ 3.094880882096605,
+ 3.9575869947887106,
+ 6.023697044975712,
+ 4.957534591308001,
+ -3.1437119938925098,
+ 1.7583251063545187,
+ 0.19385684552953764,
+ -2.176515815836571,
+ 3.339258537777338,
+ -3.42191173556679,
+ 1.7524569198661986,
+ 3.777073160711195,
+ 1.5506383457025459,
+ 0.4660221096982679,
+ -2.2934712053540993,
+ 3.3860540202500733,
+ -3.352946523415495,
+ 1.510282961168725,
+ 3.125042057732707,
+ 1.6040954162813001,
+ 0.5502233811190331,
+ -2.4758642443915306,
+ 3.447405474825755,
+ -3.3025034778841373,
+ 1.994960765573124,
+ -0.08565782901651006,
+ -1.854087770539773,
+ 2.035022740257697,
+ 3.2221878143617664,
+ -3.2341457895311816,
+ -2.0402445755451954,
+ 1.8688062187780181,
+ 0.1618973761140229,
+ -2.060138926649771,
+ 2.111362581246716,
+ 3.6802902229423844,
+ 1.7425582882922324,
+ 0.5698515062159814,
+ -2.4786179309847314,
+ 3.4499989149655907,
+ -3.304140211963572,
+ 1.9950198828773706,
+ -0.08411215670673892,
+ -1.856672854693169,
+ 5.0145053275956615,
+ 4.85888302509332,
+ -0.005062440715095859,
+ -0.22693136395829025,
+ -5.111755078998801,
+ -5.261191124100602,
+ 2.0564890067385155,
+ -0.15787864237552254,
+ -1.7892535425397036,
+ 3.208269428804198,
+ -3.4908514899669187,
+ 2.6430164561595344,
+ -0.7214401628547543,
+ -2.013279550890571,
+ -3.192326173955025,
+ -1.4078236036334701,
+ 3.2683951658749515,
+ -3.465112776920891,
+ 2.4726217018221472,
+ -0.5475695362806693,
+ -1.5995714900638889,
+ -3.1274850333084014,
+ -1.5120205381820089,
+ 3.3535800178124195,
+ -3.40959315658601,
+ 2.3625213596462347,
+ -0.4363634995870564,
+ -1.542942706568034,
+ 3.025073268885122,
+ -2.296489148030013,
+ -3.9823802112580036,
+ 1.760298786060023,
+ 1.3283136736062786,
+ -0.28627233287986253,
+ -1.7616818250464163,
+ 3.145118778889372,
+ -2.4177381352668577,
+ -4.588795738095163,
+ 1.6932693989654153,
+ 1.2120094944547737,
+ -0.03898133682238608,
+ -1.8932999016610081,
+ 3.2104479762007525,
+ -3.470828475960393,
+ 2.5626113505832153,
+ -0.8231468868997687,
+ 0.08675815720288091,
+ 0.31310041586592263,
+ -9.462946207606637e-16,
+ -1.1507736681837721e-15,
+ -3.570111523778867e-16,
+ -2.232146882974345e-16,
+ 3.1995346093551106e-16,
+ 1.0385252590603261e-16,
+ 4.564175824914468e-16,
+ 2.1936829844906291e-16,
+ 6.878833973990977e-16,
+ -1.433504001554397e-16,
+ -6.662939834114638e-17,
+ -4.317882797526804e-16,
+ -2.5295183131871586e-16,
+ -3.163552252709054e-16,
+ 5.1119761855777104e-17,
+ 4.7811039405564993e-17,
+ 2.036518668105554e-16,
+ 3.2822526706104133e-16,
+ 7.519071768107022e-17,
+ 3.143286327701505e-17,
+ 1.0960143116327615e-17,
+ 2.1457065089625535e-16,
+ -4.441959889409758e-17,
+ 6.518183226917858e-17,
+ -3.14742223076427e-16,
+ 2.731763972956374e-16,
+ 8.40415502353876e-17,
+ 3.4576149604716557e-17,
+ -6.071505696139223e-17,
+ -4.1751941418614067e-16,
+ -1.6990289781839186e-16,
+ -3.490702184973777e-17,
+ -7.538924102808293e-16,
+ -2.3218959794363487e-16,
+ 7.696915599805921e-17,
+ 4.132594340314926e-16,
+ 5.211237859084074e-17,
+ 8.761393650585099e-17,
+ 4.0333326668085624e-16,
+ -3.685916809536291e-16,
+ -2.7462396336760516e-17,
+ -5.100395657001969e-16,
+ -3.3914405114674135e-17,
+ -1.2639319759810263e-16,
+ -1.8485418739028783e-16,
+ 4.4977945807570874e-17,
+ -1.1117307432712692e-16,
+ 3.714868130975647e-16,
+ -1.2126467780027386e-16,
+ 2.3760763095585717e-17,
+ -2.604791748929484e-16,
+ -2.4013053182414393e-16,
+ 3.13915042463874e-17,
+ 1.8131799027162364e-16,
+ 7.451242957877672e-16,
+ 9.578751493364059e-17,
+ -2.605618929542037e-17,
+ 1.0124690697649058e-16,
+ -1.2291903902537991e-16,
+ -1.8826630741706907e-16,
+ -1.4124108959342948e-17,
+ 1.4095157637903592e-16,
+ -1.4698999485067302e-16,
+ -9.59529510561512e-17,
+ 1.0918784085699964e-17,
+ -7.076530140391152e-17,
+ 4.3038207271134025e-16,
+ 1.2986735617082533e-17,
+ 5.051798796014478e-16,
+ 1.258141711693155e-16,
+ 1.2759260948630452e-16,
+ 1.1605343994118978e-16,
+ 1.380357647197865e-16,
+ 6.691891155553994e-17,
+ -8.983181452325879e-17,
+ 8.503416697045123e-17,
+ 1.7039920618592368e-16,
+ 3.130116061386012e-16,
+ -2.622989722405651e-16,
+ 4.4303793608340157e-16,
+ -9.231335636091788e-17,
+ 1.1415092453231782e-16,
+ -5.769843266498791e-17,
+ -5.017677595746666e-16,
+ 1.4179943650690277e-16,
+ 8.70194004405785e-17,
+ 2.7902870012945006e-16,
+ 3.0746303368596034e-16,
+ 1.2549984253654534e-15,
+ -3.757054342215851e-16,
+ 6.299807545203858e-16,
+ -1.0922092808150177e-15,
+ -2.603137387704378e-16,
+ 1.0157777922151179e-16,
+ 2.439562421572017e-16,
+ 1.0466936676092873e-16,
+ 2.1470506774579522e-16,
+ 1.8499894399748461e-16,
+ -3.4569945750122404e-16,
+ -4.6652986547990755e-17,
+ 1.4227506535912076e-17,
+ -7.001256704648825e-16,
+ -2.0050858048285388e-16,
+ 1.993195083523089e-16,
+ 1.4776030679611302e-16,
+ -3.566802801328655e-16,
+ 7.928526171320769e-17,
+ -2.066297170157463e-16,
+ -3.032444125619399e-16,
+ -1.5209783513318794e-16,
+ -1.6576699475562672e-16,
+ 1.4905794638205559e-16,
+ 1.917404659897918e-16,
+ -1.5542723709871388e-16,
+ 1.7188813128851913e-16,
+ -1.6427806965303127e-16,
+ 2.0480991966812963e-16,
+ 1.435985543392056e-16,
+ -4.1507923137910924e-16,
+ 9.839830374201109e-17,
+ 8.867376166568455e-17,
+ -7.734138727370808e-17,
+ 6.130028724477349e-16,
+ 1.3815984181166945e-16,
+ 2.5729452953461926e-16,
+ 2.3161057151484775e-18,
+ 6.249349527838124e-17,
+ -2.1837568171399928e-16,
+ 1.9836308076904447e-16,
+ 9.537392462736408e-17,
+ 2.7387950081630746e-16,
+ 3.271499322647224e-16,
+ 8.780522202250388e-16,
+ -1.8805951226393082e-16,
+ 3.815784165707116e-16,
+ 1.3983488255208933e-16,
+ -8.712279801714763e-17,
+ -1.886798977233456e-16,
+ -7.444625512977249e-18,
+ 7.262645778215583e-17,
+ -2.148601641106489e-17,
+ -2.6089276519922493e-16,
+ 9.181704799338607e-18,
+ 3.360007648190398e-16,
+ -4.2483996260723496e-16,
+ -1.406207041340147e-17,
+ -1.558408274049904e-16,
+ -2.302043644735076e-16,
+ -1.703992061859237e-17,
+ 1.3946265127644047e-16,
+ 2.6453235989445825e-16,
+ -2.0256102237775108e-16,
+ -2.5146290621612038e-17,
+ -3.441071348220595e-17,
+ 2.067951531382569e-16,
+ -2.0886310466963946e-16,
+ 3.9539233280034717e-17,
+ -3.263227516521694e-17,
+ 4.470911210849115e-16,
+ 6.948317145445432e-17,
+ 4.590852399669303e-17,
+ -1.0008885411891634e-16,
+ 1.8264147925170849e-16,
+ 5.700825384138898e-17,
+ -9.919549905735908e-16,
+ -4.2723878638363873e-17,
+ -5.252596889711725e-17,
+ -6.534726839168919e-17,
+ -1.9753073027766298e-16,
+ 2.369872454964424e-17,
+ 6.600901288173161e-17,
+ -3.76904846109787e-16,
+ -2.3657365519016588e-17,
+ 4.168990287267259e-17,
+ 1.2655863372061322e-17,
+ -2.039827390555766e-16,
+ 4.441959889409758e-17,
+ -1.770166510863479e-16,
+ 3.636285972783109e-16,
+ 5.018504776359219e-16
+ ],
+ [
+ -5.569945815095254,
+ -4.461660747691758,
+ 3.3794912714234946,
+ -3.3960535484107908,
+ 2.314082652053122,
+ -0.36812937787350786,
+ -1.6072291818288054,
+ 3.0646699036603064,
+ -2.4233741064012144,
+ -4.564862151909897,
+ 1.9108576394025207,
+ 1.318243009402719,
+ -0.21753931002055335,
+ -1.743046343156543,
+ 3.180614796278403,
+ -2.291763971253346,
+ -4.034224835893678,
+ 1.429033673241004,
+ 1.156668869189057,
+ 0.030317124330064848,
+ -1.9541946744975995,
+ 3.243348616444127,
+ -3.4627214728532536,
+ 2.518276537196307,
+ -0.7567810271452573,
+ -0.7229195598314881,
+ -0.6192863475009459,
+ 4.0159185555314485,
+ 2.2028393165109423,
+ -3.429630963165877,
+ 2.338351607552183,
+ -0.5128987268320228,
+ -0.8652993212462534,
+ -0.979354667738322,
+ 4.390899589699104,
+ 2.2607259072193453,
+ -3.3612675742793616,
+ 2.2204244513121667,
+ -0.36288757469412264,
+ -1.714968575903254,
+ 3.122184272406042,
+ -3.519962874372615,
+ 5.694335794927015,
+ 5.702073579545318,
+ 3.101630022854088,
+ 2.9956747453083654,
+ 0.9404524700429104,
+ 0.7870366241814308,
+ -1.6526787543581878,
+ 3.0897310934407898,
+ -3.5253592591500738,
+ 2.7496371583320753,
+ -1.0952164951245034,
+ -0.9162021089184081,
+ 1.6455397227643034,
+ 2.5995884406576555,
+ -4.128559158545896,
+ -2.2709326505583167,
+ 2.6523771773358,
+ -0.9476182230269227,
+ -1.1532788225133583,
+ 1.754847210050772,
+ 2.613204039409199,
+ -3.6912749167968903,
+ -2.224559560445301,
+ 2.482033275064966,
+ -0.70658960079304,
+ -1.2949502757916191,
+ 2.9442125868886935,
+ -3.5338349547468297,
+ 2.9795939541709475,
+ -1.0363899472335083,
+ -2.3964313572923,
+ -2.4755856719818374,
+ -1.0863653868678969,
+ 3.025303536652785,
+ -3.5276618357846035,
+ 2.8390891781504424,
+ -0.9866956372537733,
+ -2.486855112145419,
+ -3.0921810692870224,
+ -1.3364347371561567,
+ 3.145856031340004,
+ -3.514837721240848,
+ 2.746309544294078,
+ -0.9784020669289494,
+ -1.030688591442283,
+ 2.708706437564917,
+ -4.550628887077849,
+ -5.481459909749614,
+ -2.770503988334327,
+ -2.106608699997955,
+ 2.115675633461316,
+ -3.31754289420144,
+ 3.444655599873539,
+ -2.373078664347712,
+ 0.5624518014742987,
+ 1.4328468198068103,
+ -1.943982969514094,
+ -3.2569366482971565,
+ 4.027195190626857,
+ 2.264750439829388,
+ -2.259136626221649,
+ 0.40977512272529315,
+ 1.6558269188008985,
+ -1.9634473848028429,
+ -3.059487475579009,
+ 3.3897946892186703,
+ 2.107373019324821,
+ -2.06300424801074,
+ 0.16272120539104115,
+ 1.7876578157518301,
+ -3.2107447739584565,
+ 3.4962896717902874,
+ -2.6496686282924995,
+ 0.7064175575826289,
+ 1.8630817290300414,
+ 2.9407381813776157,
+ 1.386621710735939,
+ -3.271147300382887,
+ 3.4518633222590567,
+ -2.4792915133052036,
+ 0.569554190559106,
+ 1.742392813482098,
+ 3.6828587018571413,
+ 2.112638794203842,
+ -2.062329798767921,
+ 0.1636967145131893,
+ 1.7852995784832857,
+ -3.207735555290639,
+ 3.4936915264345,
+ -2.6483567186607297,
+ 2.954482091546584,
+ 3.0659009840496503,
+ 3.4186352787390186,
+ 3.4486455424797846,
+ 4.414106996470358,
+ 4.34398265000759,
+ -3.1788921524351426,
+ 3.5065640476312354,
+ -2.699494323949688,
+ 0.9074890168642612,
+ 1.1009886325540756,
+ -2.7555472513877173,
+ 2.2887630213041024,
+ 4.193011807640442,
+ -2.4364433737559965,
+ -1.5702439853490535,
+ 0.7606674470572666,
+ 1.2465054805217388,
+ -2.904001548948222,
+ 2.294221821748328,
+ 3.9346164387130598,
+ -1.9977771018048327,
+ -1.4503182417629923,
+ 0.5167996727958633,
+ 1.4752118399253626,
+ -2.9872529708291835,
+ 3.5303753397756568,
+ -2.871607272063976,
+ 1.2817852116792623,
+ 0.3764667334018186,
+ -0.007005340740256092,
+ -3.8892981613646156,
+ -2.0740909939877876,
+ 3.520475174961369,
+ -2.7202557783395207,
+ 1.0477448604710748,
+ 0.5113178560581702,
+ 0.29416921474017166,
+ -4.52396264411363,
+ -2.2725944041754227,
+ 3.4897939059401994,
+ -2.6191579065236286,
+ 0.9024129427447262,
+ 1.2163912865786328,
+ -2.8285040823939824,
+ 3.5266613101902013,
+ -5.068235477028372,
+ -6.242778852004189,
+ 1.0975859547966124e-15,
+ 1.62838775387189e-15,
+ 2.072914615057887e-16,
+ -1.1315830779725419e-16,
+ -1.586739210029845e-16,
+ -3.970466940254532e-17,
+ -5.188490392238866e-16,
+ -1.4889251025954498e-17,
+ 5.2939559203393765e-17,
+ 1.1249656330721175e-17,
+ -6.427193359537025e-17,
+ 6.12279089411751e-16,
+ -2.283018490646356e-17,
+ 4.344352577128501e-16,
+ 5.360130369343619e-17,
+ -4.268251960773622e-17,
+ -9.59529510561512e-17,
+ -3.059120700374234e-16,
+ -1.9732393512452473e-16,
+ -9.132073962585424e-17,
+ -6.121136532892404e-18,
+ -2.605618929542037e-16,
+ -1.2544193989366665e-16,
+ -2.4972582692975906e-16,
+ 2.26482051717019e-16,
+ -7.444625512977249e-17,
+ -2.6180266387303323e-17,
+ 1.4884081147126042e-16,
+ -7.390858773161302e-17,
+ 2.5973471234165066e-17,
+ -3.8182657075447753e-16,
+ 2.2524128079818944e-16,
+ 2.956343509264521e-16,
+ -2.2019547906161594e-16,
+ -3.510554519675049e-16,
+ 1.494715366883321e-16,
+ -1.0732668447875533e-16,
+ -1.1034589371457388e-16,
+ -7.246102165964522e-17,
+ 3.4700226696599506e-16,
+ 1.0141234309900118e-16,
+ 7.543887186483611e-17,
+ 2.6138907356675675e-16,
+ -1.936016223680361e-16,
+ -1.213887548921568e-16,
+ 3.2752216354037126e-16,
+ -1.3698110943878138e-16,
+ -2.2234614865425384e-16,
+ 5.924267547104784e-16,
+ 7.080666043453917e-17,
+ -2.0596797252570387e-16,
+ 7.345363839470886e-17,
+ 5.724089838866952e-17,
+ 1.406207041340147e-16,
+ -2.0745689762829932e-16,
+ -9.529120656610878e-17,
+ 4.450231695535288e-17,
+ -4.618976540496107e-16,
+ 1.887626157846009e-16,
+ 5.897797767503087e-17,
+ 3.163759047862192e-16,
+ -1.0066788054770346e-16,
+ 3.0200364164311035e-16,
+ -1.799945012915388e-16,
+ -1.2904017555827232e-16,
+ -2.748721175513711e-16,
+ 1.7536228986124187e-17,
+ 1.372292636225473e-16,
+ 4.450231695535288e-17,
+ -1.1497810514487085e-16,
+ -1.4285409178790788e-16,
+ 1.0389388493666026e-16,
+ -8.056739166266488e-17,
+ -3.8571431963347676e-16,
+ -1.2291903902537991e-16,
+ -2.9811589276411117e-16,
+ 2.1060018395600082e-16,
+ 1.049692197329792e-16,
+ -8.106370003019671e-18,
+ -2.1341259803868112e-16,
+ -4.5494933690416516e-17,
+ 1.9554549680753572e-16,
+ -8.271806125530276e-19,
+ -4.235164736271501e-17,
+ -1.4301952791041848e-16,
+ -5.285684114213846e-17,
+ -3.1101991031993836e-16,
+ -2.2929446579969927e-16,
+ -5.507368518378058e-16,
+ 2.32768624372422e-16,
+ -4.0664198913106836e-16,
+ 1.3009896674234017e-15,
+ 4.194115898373557e-16,
+ -1.5575810934373509e-16,
+ -6.231901186792084e-17,
+ -7.930594122852153e-18,
+ -5.616556359235058e-16,
+ -7.64728476305274e-17,
+ 1.555099551599692e-17,
+ -1.2359112327307925e-16,
+ 1.894243602746433e-17,
+ -2.686682629572234e-16,
+ 1.5772266329854853e-16,
+ -4.354278744479137e-16,
+ -2.597347123416507e-16,
+ 3.1035816582989593e-16,
+ 4.441959889409758e-17,
+ -4.79764755280756e-18,
+ 4.137557423990244e-16,
+ 1.2424252800546476e-16,
+ -3.705769144237564e-17,
+ 3.037407209294717e-16,
+ 2.513801881548651e-16,
+ 1.3358966892731395e-17,
+ 1.1398548840980721e-16,
+ 5.4428484305989215e-17,
+ -2.9592386414084565e-16,
+ -2.224702257461368e-16,
+ 2.989430733766642e-16,
+ -2.0878038660838416e-16,
+ 1.2391165576044355e-16,
+ 1.7610675241253957e-16,
+ -4.877056891612651e-16,
+ -1.6837261368516876e-16,
+ 1.1882449499324243e-16,
+ 3.1350145215759744e-16,
+ 9.247879248342848e-17,
+ 4.483732510343687e-16,
+ -8.429228935856774e-17,
+ -3.1887812613919217e-17,
+ 2.0927669497591597e-17,
+ -1.1704605667625342e-16,
+ -6.865599084190129e-16,
+ -1.7048192424717898e-16,
+ -9.562207881112999e-17,
+ 2.4641710447954694e-16,
+ -9.31405369734709e-17,
+ 7.246102165964522e-17,
+ -4.0664198913106836e-16,
+ 5.781992481745663e-17,
+ -2.1175823681357506e-16,
+ 5.371710897919362e-16,
+ -8.801201717564213e-17,
+ -1.0422475718168147e-16,
+ -5.604975830659316e-16,
+ 9.287170327439117e-17,
+ 2.3657365519016588e-17,
+ -1.9653811354259935e-16,
+ 1.737079286361358e-17,
+ -1.2076836943274203e-17,
+ 1.2904017555827232e-16,
+ 5.8134253450226785e-16,
+ 1.0836066024444661e-16,
+ 2.417021749879947e-16,
+ 5.724089838866952e-16,
+ 1.195275985139125e-16,
+ 1.225881667803587e-16,
+ 3.331883507363595e-16,
+ -1.3863547066388744e-16,
+ 1.8793543517204786e-16,
+ -1.9935052762527964e-16,
+ -2.160595759988508e-16,
+ -8.139457227521791e-17,
+ -1.5422782521051199e-16,
+ 5.09543257332665e-17,
+ -5.426304818347861e-17,
+ -1.5542723709871388e-16,
+ 2.187065539590205e-16,
+ -2.752857078576476e-16,
+ 1.1812139147257235e-16,
+ -7.77549775799846e-18,
+ -5.922613185879678e-17,
+ -2.043136113005978e-16,
+ -2.0427225226997016e-16,
+ -5.897797767503087e-17,
+ 1.8032537353656003e-17,
+ -1.3011551035459125e-16,
+ -4.466775307786349e-17,
+ -2.2896359355467806e-16,
+ -9.932784795536756e-16
+ ],
+ [
+ -8.021120742727215,
+ -6.449754577647828,
+ 4.771566435980908,
+ -4.534174932667171,
+ 2.8304678218689294,
+ -0.05083746912845887,
+ -2.6125783592366636,
+ 4.433370182800489,
+ -3.328178303044343,
+ -6.357845376195345,
+ 2.07839649509895,
+ 1.5462090140973055,
+ 0.15747808738768204,
+ -2.7895349550768564,
+ 4.564160215595194,
+ -3.120062962769249,
+ -5.579134621225073,
+ 1.471586717446689,
+ 1.330384852661812,
+ 0.4984641783797416,
+ -3.0625183027528147,
+ 4.6324789955165615,
+ -4.660807055940211,
+ 3.1354451645699832,
+ -0.5922989002703346,
+ -1.2743545049532883,
+ -1.3669822712257516,
+ 5.576768417409013,
+ 3.1085687041740506,
+ -4.5963310296230375,
+ 2.8664799921757913,
+ -0.25183243748480616,
+ -1.4649374954595675,
+ -1.898293313026584,
+ 6.057769852490979,
+ 3.1662926357447456,
+ -4.471701731853028,
+ 2.691792547190178,
+ -0.04357155411354972,
+ -2.7530078294822697,
+ 4.498813986074649,
+ -4.7897074450450745,
+ 7.457561588781027,
+ 7.49117900005947,
+ 4.457829152916738,
+ 4.337659781018875,
+ 2.090781266254945,
+ 1.8919364816850772,
+ -2.671925481354105,
+ 4.462008382891615,
+ -4.806265021465656,
+ 3.486509030120485,
+ -1.0686532592303584,
+ -1.6986265019059166,
+ 2.468577161776032,
+ 4.026152107797999,
+ -5.469969080590012,
+ -3.059139819697238,
+ 3.3380769870586655,
+ -0.8603150580886245,
+ -2.014601901780816,
+ 2.60047676259117,
+ 3.9858769028500083,
+ -4.851085820301498,
+ -2.9774434345976313,
+ 3.0810133927924315,
+ -0.5220472557278932,
+ -2.2022241781714773,
+ 4.293212378274422,
+ -4.854070943541111,
+ 3.843396199250196,
+ -1.156879793628471,
+ -2.8670755535228616,
+ -3.8114004905256347,
+ -1.7529569036159243,
+ 4.388013526315899,
+ -4.813559828517065,
+ 3.624162731798452,
+ -1.0679449558100853,
+ -2.9092833453763363,
+ -4.687599424543106,
+ -2.0954227336338613,
+ 4.525447639907285,
+ -4.776095615751811,
+ 3.4814128382159346,
+ -0.9037168865882443,
+ -1.8514877513830417,
+ 4.010792826319415,
+ -6.550656607134548,
+ -7.920761601298438,
+ -4.531873732828601,
+ -3.495458477433067,
+ 3.269459139857281,
+ -4.71021998034219,
+ 4.625428364105966,
+ -2.9181833246089792,
+ 0.3207987623455776,
+ 2.3840600288259286,
+ -2.8549016619248313,
+ -4.893552509075676,
+ 5.233738074803311,
+ 2.996598871474074,
+ -2.7489806802066927,
+ 0.10851236779660994,
+ 2.676064354073889,
+ -2.8493719962685096,
+ -4.541315407311484,
+ 4.3661164358678315,
+ 2.773051738993874,
+ -2.4602119961247064,
+ -0.2331119331532512,
+ 2.8474337135846963,
+ -4.597102484564771,
+ 4.7318537091559225,
+ -3.333981038025613,
+ 0.6864889759121641,
+ 2.0922541488287756,
+ 4.3953134818774915,
+ 2.1401675785010776,
+ -4.66208372256604,
+ 4.639356284716828,
+ -3.0768781552505042,
+ 0.49167218939061474,
+ 1.8691314558961096,
+ 5.022730296949261,
+ 2.7775837439190263,
+ -2.4589386629711716,
+ -0.23213545837492533,
+ 2.844464738328842,
+ -4.593047994107066,
+ 4.728145365181088,
+ -3.3318693301267084,
+ 3.3304079864873533,
+ 3.5012816680744936,
+ 4.616421539687674,
+ 4.686083200932397,
+ 6.631240974631444,
+ 6.5561947801059155,
+ -4.562177127354995,
+ 4.755213985066915,
+ -3.4097699431216237,
+ 0.8038651931397534,
+ 1.9450484325444655,
+ -4.067627397336442,
+ 3.1849933726846733,
+ 5.925745431597765,
+ -2.8703104311036958,
+ -1.935186859064883,
+ 0.5977328477568158,
+ 2.1381416146216656,
+ -4.245686255961522,
+ 3.1695257831431918,
+ 5.522525444121442,
+ -2.2865534528783007,
+ -1.7595803463939554,
+ 0.25727962381990915,
+ 2.439641801110198,
+ -4.343629294226384,
+ 4.823943617721597,
+ -3.6745054046412764,
+ 1.3332921807783968,
+ 0.8099380182904595,
+ 0.5136238266584916,
+ -5.4824497051697145,
+ -2.974858971120798,
+ 4.79086365344821,
+ -3.4414200946042883,
+ 1.0015286311822365,
+ 1.0079367870412468,
+ 0.9999140063761188,
+ -6.3305564011009485,
+ -3.2275975393956844,
+ 4.716954245069588,
+ -3.2876302768430654,
+ 0.7967242347529808,
+ 2.098233453425414,
+ -4.1555768833088695,
+ 4.869735255747659,
+ -6.8543952822483005,
+ -8.469965116785012,
+ 1.5531143181295646e-15,
+ 2.351178173120726e-15,
+ 3.2855613930606254e-16,
+ -1.258968892305708e-16,
+ -2.371113225883254e-16,
+ -6.253485430900889e-17,
+ -7.588554939561475e-16,
+ -6.782881022934827e-17,
+ -2.7131524091739305e-17,
+ 3.8050308177439267e-17,
+ -7.254373972090053e-17,
+ 9.13869140748585e-16,
+ -1.2242273065784808e-17,
+ 6.218743845173661e-16,
+ 6.849055471939069e-17,
+ -1.0124690697649058e-16,
+ -1.6725591985822217e-16,
+ -4.52715949250272e-16,
+ -2.7718822326651957e-16,
+ -9.578751493364059e-17,
+ -1.1663246636997689e-17,
+ -3.8265375136703055e-16,
+ -1.6183788684599984e-16,
+ -3.4021938594306023e-16,
+ 3.5204806870256853e-16,
+ -1.492233825045662e-16,
+ -5.1161120886404756e-17,
+ 1.94801034256238e-16,
+ -6.966928709227876e-17,
+ 1.0257039595657542e-16,
+ -4.844383257416807e-16,
+ 3.095309852173429e-16,
+ 5.67445900211377e-16,
+ -2.623816903018204e-16,
+ -4.764560328305439e-16,
+ 1.1967235512110928e-16,
+ -1.6328545291796764e-16,
+ -1.6361632516298885e-16,
+ -1.4277137372665258e-16,
+ 5.398180677521059e-16,
+ 1.139027703485519e-16,
+ 1.98357910890216e-16,
+ 3.603198748280988e-16,
+ -2.413713027429735e-16,
+ -1.378703285972759e-16,
+ 3.930762270851987e-16,
+ -1.6915843526709413e-16,
+ -3.656138307484382e-16,
+ 8.099752558119246e-16,
+ 9.214792023840727e-17,
+ -2.32768624372422e-16,
+ 1.3334151474354806e-16,
+ 7.601789829362323e-17,
+ 1.5187036046473586e-16,
+ -3.5039370747746247e-16,
+ -1.317698715796973e-16,
+ 5.806807900122254e-17,
+ -6.246867986000464e-16,
+ 2.6486323213947946e-16,
+ 8.321436962283457e-17,
+ 4.2009401384271197e-16,
+ -1.407861402565253e-16,
+ 4.1888426219685317e-16,
+ -2.3797986223150606e-16,
+ -1.8367545501739977e-16,
+ -3.719831214650965e-16,
+ -3.0068015266302556e-17,
+ 1.8967251445840922e-16,
+ -1.323488980084844e-18,
+ -1.6080391108030856e-16,
+ -2.3161057151484775e-16,
+ 1.196103165751678e-16,
+ -1.3052910066086777e-16,
+ -4.936613895716469e-16,
+ -1.889280519071115e-16,
+ -3.924144825951563e-16,
+ 2.63374307036884e-16,
+ 1.0670629901934056e-16,
+ 2.322309569742625e-17,
+ -3.298796282861474e-16,
+ -4.9961708998202865e-17,
+ 2.541098841762901e-16,
+ -1.4889251025954496e-18,
+ -1.9852334701272664e-18,
+ -2.010048888503857e-16,
+ -9.59529510561512e-17,
+ -4.513097422089319e-16,
+ -3.330229146138489e-16,
+ -8.384302688837488e-16,
+ 2.8095189505363585e-16,
+ -6.246867986000464e-16,
+ 1.9124415762226e-15,
+ 5.955907205534938e-16,
+ -2.397996595791227e-16,
+ -1.336930665038831e-16,
+ -1.614553158126941e-17,
+ -7.868141986604398e-16,
+ -1.3340355328948954e-16,
+ 8.023651941764367e-17,
+ -1.6868280641487614e-16,
+ 1.9604180517506753e-17,
+ -2.7098436867237187e-16,
+ 2.3330629177058146e-16,
+ -5.842376666462034e-16,
+ -3.094482671560876e-16,
+ 4.830734777309682e-16,
+ 4.582580593543773e-17,
+ 2.1672132048889322e-17,
+ 5.61159327555974e-16,
+ 1.9041697700970695e-16,
+ -1.819797347616661e-17,
+ 3.894366323899654e-16,
+ 3.268190600197012e-16,
+ 2.812414082680294e-17,
+ 1.3400325923359048e-16,
+ 1.192794443301466e-16,
+ -4.177985876428773e-16,
+ -3.1085447419742775e-16,
+ 4.3625505506046675e-16,
+ -2.772709413277749e-16,
+ 1.4608009617686469e-16,
+ 2.486504921334401e-16,
+ -7.429736261951294e-16,
+ -2.4447323004004733e-16,
+ 1.2527650377115604e-16,
+ 3.7603630646660633e-16,
+ 1.2341534739291173e-16,
+ 5.988270647001075e-16,
+ -1.480601597681635e-16,
+ -5.707546226615891e-17,
+ -5.6248281653605874e-18,
+ -1.8106983608785773e-16,
+ -1.0566405144752376e-15,
+ -1.653534044493502e-16,
+ -1.8082168190409183e-16,
+ 2.9745414827406875e-16,
+ -1.2498699055676248e-16,
+ 8.503416697045123e-17,
+ -5.528875214304437e-16,
+ 7.080666043453917e-17,
+ -2.8852059765849605e-16,
+ 7.229558553713461e-16,
+ -1.0670629901934056e-16,
+ -1.8429584047681454e-16,
+ -6.954934590345856e-16,
+ 1.3205938479409087e-16,
+ 5.608284553109528e-17,
+ -2.1771393722395686e-16,
+ 2.8785885316845363e-17,
+ -3.010937429693021e-17,
+ 1.3995895964397228e-16,
+ 7.79204137024952e-16,
+ 1.4872707413703438e-16,
+ 3.1441135083140577e-16,
+ 6.973132563822022e-16,
+ 1.8098711802660243e-16,
+ 1.4128244862405713e-16,
+ 4.676879183374818e-16,
+ -2.4054412213042045e-16,
+ 2.2582030722697656e-16,
+ -2.5559880927888555e-16,
+ -2.240005098793599e-16,
+ -1.2755125045567687e-16,
+ -2.1432249671248945e-16,
+ 1.4161332086907834e-16,
+ -7.634877053864444e-17,
+ -2.0199750558544933e-16,
+ 3.0241723194938687e-16,
+ -3.4079841237184735e-16,
+ 1.5716431638507523e-16,
+ -4.1855338995183194e-17,
+ -9.92616735063633e-18,
+ -2.6999175193730823e-16,
+ -2.800419963798275e-16,
+ -7.543887186483611e-17,
+ 5.591740940858467e-17,
+ -1.7205356741102973e-16,
+ -3.474158572722716e-17,
+ -3.546950466627382e-16,
+ -1.4042218078700196e-15
+ ],
+ [
+ 3.969482458686773,
+ 3.146046723819502,
+ -2.5593832707433233,
+ 2.8849398204724044,
+ -2.354846987072703,
+ 0.8946740385948537,
+ 0.7177532838798285,
+ -2.177986275666195,
+ 1.9474661421093367,
+ 3.547567703713747,
+ -2.2799910200321465,
+ -1.419644635524824,
+ 0.7766370169941901,
+ 0.8408807684838574,
+ -2.3090144548387648,
+ 1.8790211514051498,
+ 3.189256070293189,
+ -1.8179140810774934,
+ -1.281517802400503,
+ 0.5773244744028558,
+ 1.0328099380770475,
+ -2.384687237388008,
+ 2.8907316171079294,
+ -2.4855117987027264,
+ 1.1965040003525982,
+ 0.1970793896480756,
+ -0.2065790219671824,
+ -3.1435060862180797,
+ -1.656710785311793,
+ 2.891026906225841,
+ -2.3697926842838917,
+ 1.0089816689666675,
+ 0.3182590925800224,
+ 0.032595075405207376,
+ -3.491198321203312,
+ -1.7329241503825268,
+ 2.877076033917033,
+ -2.293316779019726,
+ 0.8905487744657403,
+ 0.8146394672620488,
+ -2.242711357678279,
+ 2.8681718477991285,
+ -5.0709060315547925,
+ -5.045791077843991,
+ -2.222349001513734,
+ -2.102640078318432,
+ 0.3339653776729967,
+ 0.47341169278804457,
+ 0.7584950401988393,
+ -2.2060399929202905,
+ 2.8600332108008377,
+ -2.625976708384756,
+ 1.4526875046160546,
+ 0.11462553007799288,
+ -1.0378885045820452,
+ -1.4673556240678367,
+ 3.5905915748876076,
+ 1.9063459938681517,
+ -2.567137636373863,
+ 1.3426855074220216,
+ 0.3191913339581804,
+ -1.1505714030372813,
+ -1.5587101416556601,
+ 3.2641648929320497,
+ 1.893632833812052,
+ -2.4627029643121987,
+ 1.1579391604921148,
+ 0.44157585656860937,
+ -2.046725746859782,
+ 2.817494039006179,
+ -2.754765436125101,
+ 1.196194861121644,
+ 2.5041023140551233,
+ 1.4282971030209861,
+ 0.5171617254695041,
+ -2.1335434648330334,
+ 2.8571504743688534,
+ -2.676741385174281,
+ 1.1844679089670587,
+ 2.688551974927302,
+ 1.8837286512455778,
+ 0.7194433280348869,
+ -2.269710573917203,
+ 2.872983008596526,
+ -2.624019612197796,
+ 1.3649883775750504,
+ 0.21255510742952613,
+ -1.801534436405023,
+ 3.2465699836177406,
+ 3.8695220180591985,
+ 1.2351611225778472,
+ 0.8716045952554872,
+ -1.2252684403938554,
+ 2.434784790968915,
+ -2.933063135279019,
+ 2.350714072523781,
+ -1.089110585168438,
+ -0.6051169465094083,
+ 1.3098222980976297,
+ 2.043836465153869,
+ -3.641443440664444,
+ -1.9750854214428477,
+ 2.2774234769936377,
+ -0.9690340593142945,
+ -0.8027792705742325,
+ 1.3694583731113228,
+ 1.9957091793324964,
+ -3.118625204270014,
+ -1.8587198904694489,
+ 2.14533575934194,
+ -0.7746045091499351,
+ -0.9228593019673376,
+ 2.3032378138966227,
+ -2.926169437015538,
+ 2.523983343766359,
+ -0.9545132467334174,
+ -2.1332426163027036,
+ -1.8769999492221106,
+ -0.7927540483709709,
+ 2.377225215459231,
+ -2.932461047322953,
+ 2.419511074337967,
+ -0.8538697352619475,
+ -2.1144822486732915,
+ -2.2420767923789278,
+ -0.9280979201951577,
+ 2.4862388805754123,
+ -0.7758609557929621,
+ -0.920609792368821,
+ 2.3007100147574686,
+ -2.9242567312160284,
+ 2.523220651819161,
+ -3.365281801314759,
+ -3.4304538271782676,
+ -2.8468726849603967,
+ -2.8302416560283508,
+ -2.7712993865593867,
+ -2.687173674381533,
+ 2.2658174250238043,
+ -2.9217966423851167,
+ 2.553969161642699,
+ -1.3537853823233648,
+ -0.31563706907517586,
+ 1.8069709956603344,
+ -1.7824583524652327,
+ -3.1416057729317592,
+ 2.606764733649099,
+ 1.5636687629165247,
+ -1.2409872663035548,
+ -0.4408532876911066,
+ 1.9624145926208711,
+ -1.8181558817992631,
+ -2.999876892421819,
+ 2.228746746040007,
+ 1.482159377452034,
+ -1.0534883443441028,
+ -0.6427565235950412,
+ 2.050733283142266,
+ -2.891775669298236,
+ 2.6535780396664785,
+ -1.6336027783437708,
+ 0.09685031761959913,
+ 0.7190763017900274,
+ 2.933221904241169,
+ 1.4944624928094976,
+ -2.9094471575375485,
+ 2.5672827683029205,
+ -1.4586932345379913,
+ 0.005934863364813397,
+ 0.5761326301249378,
+ 3.4753153413041913,
+ 1.6810860877636296,
+ -2.9290501925209815,
+ 2.5054874782570327,
+ -1.349942312974077,
+ -0.41557911846045487,
+ 1.8822605064561235,
+ -2.8193899410060763,
+ 4.217669168901312,
+ 5.158164709721403,
+ -7.345363839470886e-17,
+ -6.921847365843735e-16,
+ -9.098986738083303e-17,
+ 1.0893968667323373e-16,
+ 4.156582578078964e-18,
+ -1.2407709188295415e-16,
+ 3.6147792768567304e-16,
+ 1.4690727678941772e-16,
+ -1.2374621963793294e-16,
+ 1.406207041340147e-17,
+ 1.0265311401783072e-16,
+ -5.48586182245168e-16,
+ 1.619619639378828e-16,
+ -3.3120311726623223e-16,
+ -1.4401214464548212e-16,
+ 1.3565762045869652e-17,
+ 1.296605610176871e-16,
+ 2.514525664584635e-16,
+ 2.1473608701876596e-16,
+ -5.724089838866952e-17,
+ 7.444625512977249e-17,
+ 2.600655845866719e-16,
+ 8.12291361527073e-17,
+ 1.6121750138658507e-16,
+ -2.446800251931856e-16,
+ -7.130296880207099e-17,
+ 1.930432754545628e-17,
+ -1.3189394867158026e-16,
+ 6.410649747285964e-17,
+ -1.8694281843698425e-17,
+ 4.226892930145971e-16,
+ -1.889280519071115e-16,
+ -6.792807190285462e-16,
+ 2.0034314436034328e-16,
+ 2.4368740845812195e-16,
+ -2.3450570365878335e-16,
+ 1.773475233313691e-16,
+ 1.3251433413099503e-16,
+ 8.478601278668534e-18,
+ -3.1962258869048984e-16,
+ 1.9256764660234482e-16,
+ -1.9455288007247208e-16,
+ -1.680831004707752e-16,
+ 1.4814804770824726e-16,
+ 3.565148440103549e-17,
+ -1.5038143536214043e-16,
+ 1.192794443301466e-16,
+ 9.694556779121483e-17,
+ -3.9803931076051687e-16,
+ -5.463527945912747e-17,
+ 1.376428539288238e-16,
+ -4.9961708998202865e-17,
+ -5.790264287871194e-17,
+ -1.4591466005435408e-16,
+ -4.863822001811802e-17,
+ 1.86736023283846e-17,
+ -7.634877053864444e-17,
+ 3.7901415667179723e-16,
+ -9.429858983104514e-17,
+ 4.3923290526565763e-17,
+ -1.31687153518442e-16,
+ 9.92616735063633e-18,
+ -1.4843756092264082e-16,
+ 1.348304398461435e-16,
+ 5.542110104105285e-17,
+ 2.842192584732203e-16,
+ -1.7099891213002462e-16,
+ -1.0629270871306404e-16,
+ -1.5902547276331955e-16,
+ 2.1672132048889322e-17,
+ 2.661867211195643e-16,
+ -3.838118042246048e-17,
+ 1.0455562942670269e-16,
+ 1.3361810326087048e-16,
+ 1.6394719740801006e-16,
+ 9.032812289079061e-17,
+ -2.3706996355769773e-16,
+ -1.5236666883226767e-16,
+ 3.704735168471873e-17,
+ 4.455401574363745e-17,
+ 7.874759431504822e-17,
+ -1.1282743555223297e-16,
+ 1.1373733422604129e-17,
+ 1.3598849270371775e-16,
+ -1.2324991127040111e-17,
+ 1.2374621963793294e-16,
+ 2.5245552295118405e-16,
+ 8.995589161514175e-17,
+ 2.1014523461909666e-16,
+ 1.6436078771428657e-16,
+ 2.1208910905859627e-16,
+ -1.2037132273871659e-15,
+ -2.8442605362635857e-16,
+ 1.8136451918107975e-16,
+ 5.2608686958372554e-17,
+ -1.1166938269465874e-16,
+ 4.665298654799076e-16,
+ 1.811008553608285e-17,
+ 9.872400610820384e-17,
+ 2.0942145158311276e-16,
+ 8.735027268559971e-17,
+ 3.748782536090321e-16,
+ -1.1188134772662545e-16,
+ 1.5211851464850176e-16,
+ -2.246622543694023e-16,
+ -5.094605392714097e-16,
+ -3.0936554909483235e-17,
+ 1.1001502146955267e-17,
+ -1.5687480317068167e-16,
+ -8.133253372927643e-17,
+ 1.0422475718168147e-17,
+ -2.368218093739318e-16,
+ -2.3699758525409934e-16,
+ 5.4180330122223307e-17,
+ -1.3246263534271047e-16,
+ -2.897613685773256e-16,
+ 1.2151024704462554e-16,
+ 1.3454092663174995e-16,
+ -1.5683344414005402e-16,
+ 1.0501057876360685e-16,
+ 1.952146245625145e-17,
+ -1.1027351541097549e-16,
+ 2.9488988837515437e-16,
+ 1.0630304847072096e-16,
+ -1.5865324148767068e-16,
+ -1.8446127659932515e-16,
+ -1.5771749341972007e-16,
+ -2.2143624998044548e-16,
+ 1.1894857208512538e-16,
+ 3.3004506440865804e-17,
+ 8.271806125530276e-19,
+ -5.676526953645152e-17,
+ 6.794461551510568e-16,
+ -6.968996660759258e-17,
+ 3.30872245021211e-19,
+ -1.8661194619196302e-16,
+ 1.9240221047983421e-16,
+ 1.8793543517204786e-16,
+ 4.412181387357849e-16,
+ -5.765448869494603e-17,
+ 2.873625448009218e-16,
+ -2.6436692377194764e-16,
+ -7.77549775799846e-18,
+ -1.819797347616661e-17,
+ 6.587666398372311e-16,
+ -6.831477883922317e-17,
+ -2.0017770823783267e-17,
+ 1.1183481881716934e-16,
+ -5.608284553109528e-17,
+ -1.507536666377893e-17,
+ -1.253178628017837e-16,
+ -2.993566636829407e-16,
+ -4.5494933690416516e-17,
+ -1.8810087129455847e-16,
+ -3.457408165318517e-16,
+ -2.80931215538322e-17,
+ -6.319659879905131e-17,
+ -4.4270706383838036e-16,
+ 9.61183871786618e-17,
+ -6.038418471637102e-17,
+ 1.3789100811258971e-16,
+ -8.182884209680825e-17,
+ 5.459392042849982e-17,
+ 8.772250396124857e-17,
+ 2.395515053953568e-16,
+ 7.167520007771985e-17,
+ 7.974021105011186e-17,
+ -2.2300789314429626e-16,
+ 1.8727369068200544e-16,
+ -1.5493092873118206e-16,
+ 1.341686953561011e-16,
+ 7.213014941462401e-17,
+ 1.801599374140494e-16,
+ 1.6117614235595742e-16,
+ 2.3285134243367726e-17,
+ -5.745803329946468e-17,
+ 1.522012327097571e-17,
+ 2.9116757561866574e-17,
+ -2.6469779601696886e-16,
+ 7.292424280267491e-16
+ ],
+ [
+ -1.5161554758142444,
+ -1.1027773251371946,
+ 1.3298643839781799,
+ -2.5608169930776055,
+ 2.8836688130301247,
+ -2.293637541018435,
+ 0.8920735201975852,
+ 0.7222067353799324,
+ -1.3922646556151959,
+ -2.220950500926141,
+ 3.5719037734457206,
+ 1.954821097822244,
+ -2.212989924615692,
+ 0.7716054505204352,
+ 0.9186690675020085,
+ -1.440674462212091,
+ -2.1424606170167246,
+ 3.0462354533224203,
+ 1.8344537570344712,
+ -2.0741985457517504,
+ 0.5723130640114382,
+ 1.0346164545002805,
+ -2.4401170570978836,
+ 2.889692244508295,
+ -2.4820256203016777,
+ 0.8605554873593648,
+ 1.9849290287660923,
+ 2.0287090369633876,
+ 0.8881946452499598,
+ -2.5064083183997736,
+ 2.886351994691221,
+ -2.3660328651707085,
+ 0.7562950405363369,
+ 1.9448748399177291,
+ 2.3981430349401145,
+ 1.0201367053201469,
+ -2.60737978335962,
+ 2.875362214190201,
+ -2.2909474193375727,
+ 0.7960492119876643,
+ 0.8165953540689991,
+ -2.2450776325323085,
+ 4.915770915530549,
+ 4.815977178052384,
+ 0.8838476351310246,
+ 0.7081057285780163,
+ -3.0817715645505217,
+ -3.2236179099352404,
+ 0.8520699195427626,
+ 0.7627706059480408,
+ -2.206735997166538,
+ 2.871619015897506,
+ -2.6240997311370564,
+ 1.4481010065865476,
+ -0.0002402698684254405,
+ -0.572993800406608,
+ -3.2785108634005087,
+ -1.575149993328221,
+ 2.8840305278971425,
+ -2.5638988433486465,
+ 1.2692401629279992,
+ 0.14513309312687808,
+ -0.297891411485299,
+ -3.110391701027425,
+ -1.6301313686953227,
+ 2.89000785262894,
+ -2.4592053221044727,
+ 1.1554383661566507,
+ 0.5384540413405519,
+ -2.047744633140418,
+ 2.817597293717297,
+ -1.8030522456268416,
+ -3.2988264553249973,
+ 0.4427636143103531,
+ 0.5586540583559287,
+ 0.6610628085636525,
+ -2.188429933494821,
+ 2.8568617713570617,
+ -1.868254505466171,
+ -3.722301802760149,
+ 0.22170276379322598,
+ 0.4105830480590485,
+ 0.8568656871269668,
+ -2.2719618276209257,
+ 2.8721002950775905,
+ -2.577390401619139,
+ 1.3624827258345524,
+ 0.21726730305816105,
+ -1.250339437115688,
+ -1.369381448825522,
+ 1.7029301335854874,
+ 1.519454236279422,
+ -0.4548022272918387,
+ -1.2291850962772484,
+ 2.4351904608614596,
+ -2.9296484493254953,
+ 2.348806310918104,
+ -1.0844627579601096,
+ -0.2779450098436088,
+ 0.03497853554515881,
+ 3.659993084930193,
+ 1.8165628160463336,
+ -2.920898770826296,
+ 2.2738366262720455,
+ -0.8909389619719915,
+ -0.43533473494461006,
+ -0.21897791759643004,
+ 3.258632496024986,
+ 1.7597307802427609,
+ -2.897112728404686,
+ 2.1415229375817613,
+ -0.7722531462051428,
+ -1.0157184740885377,
+ 2.303864713832542,
+ -2.9256806613781983,
+ 1.6915086810950248,
+ 3.184292635363676,
+ 0.07331180781381787,
+ -0.27217085822235004,
+ -1.1309331257457498,
+ 2.4219681134351103,
+ -2.9316155752843938,
+ 1.643941657566707,
+ 3.374982678357211,
+ 0.3305193829551723,
+ -0.1282836471048432,
+ -1.3177818184077914,
+ 2.4877455517968996,
+ -0.7748460433720271,
+ -1.0136426369733555,
+ 2.303028213542318,
+ -2.926448683900993,
+ 4.993514436862369,
+ 4.9766031032004285,
+ 2.327947765694672,
+ 2.2182279347811558,
+ -0.043027239217379054,
+ -0.18088260521679542,
+ -0.9572458418353467,
+ 2.2678731060681283,
+ -2.9209599620263758,
+ 2.505367898965768,
+ -1.3510862912174086,
+ -0.3205826253991677,
+ 1.1260034607465965,
+ 1.65114155289826,
+ -3.55619612619424,
+ -1.9052246087230127,
+ 2.4423177926077466,
+ -1.2359385903652043,
+ -0.5219744588002224,
+ 1.2332190242953376,
+ 1.721808405364054,
+ -3.2194842802194463,
+ -1.885752113663091,
+ 2.3263562726551203,
+ -1.048384802589626,
+ -0.6450270444100777,
+ 2.118300497825376,
+ -2.8913418381648315,
+ 2.6506937520457767,
+ -1.1112320115866716,
+ -2.3754397417271744,
+ -1.5953451094375009,
+ -0.618854004559869,
+ 2.2018574995115587,
+ -2.9177572322851395,
+ 2.5640285746596247,
+ -1.0917632139433067,
+ -2.5317500164091293,
+ -2.066573451343644,
+ -0.8229959223340106,
+ 2.327284398099272,
+ -2.9283331214249984,
+ 2.5032125383146746,
+ -1.2607123571619088,
+ -0.4180481752366725,
+ 1.8855289185169328,
+ -3.3928143815881358,
+ -4.056312123404877,
+ 1.828896334354744e-16,
+ 8.084863307093292e-16,
+ -2.744171682144669e-17,
+ -1.5476549260867145e-16,
+ 1.6791766434826462e-17,
+ 2.870316725559006e-17,
+ -1.1241384524595646e-16,
+ -7.643148859989974e-17,
+ 2.911262165880381e-16,
+ -3.9539233280034717e-17,
+ -3.937379715752411e-17,
+ 3.2624003359091407e-16,
+ -2.5882481366784236e-16,
+ 6.009467150197746e-17,
+ 5.897797767503087e-17,
+ -1.1109035626587162e-16,
+ -4.4254162771586974e-17,
+ -3.5982356646056704e-17,
+ -3.550672779383871e-17,
+ 1.2118195973901855e-16,
+ 4.125563305108225e-17,
+ -5.422168915285096e-17,
+ -8.805337620626978e-17,
+ -1.0041972636393755e-16,
+ -1.8694281843698425e-17,
+ 4.235164736271501e-17,
+ -6.121136532892404e-18,
+ 1.2920561168078292e-16,
+ 6.27830084927748e-17,
+ -1.2027206106521022e-16,
+ -3.569284343166314e-16,
+ 1.8334458277237856e-16,
+ 7.146840492458159e-17,
+ -2.0878038660838416e-16,
+ -2.2027819712287125e-16,
+ 2.2879815743216745e-16,
+ -1.0405932105917087e-16,
+ -4.061456807635365e-17,
+ 2.0160459479448665e-16,
+ 1.0492786070235155e-16,
+ -4.748016716054378e-17,
+ -1.0395592348260174e-16,
+ 2.2797097681961443e-16,
+ -1.3196632697517865e-16,
+ -1.8768728098828195e-16,
+ 1.5280093865385801e-16,
+ -1.4500476138054575e-16,
+ 2.4699613090833406e-16,
+ 2.665175933645855e-16,
+ 9.787356104092276e-17,
+ -2.446800251931856e-16,
+ -9.400907661665158e-17,
+ 9.876536513883149e-17,
+ 1.9587636905255693e-16,
+ 2.276401045745932e-16,
+ -3.341809674714232e-17,
+ 5.959836313444564e-17,
+ -1.6593243087813733e-16,
+ 5.773720675620133e-17,
+ -5.078888961075589e-17,
+ 1.9502850892469008e-16,
+ 8.284213834718571e-17,
+ 8.470329472543002e-17,
+ -1.652706863880949e-16,
+ -1.713918229209873e-16,
+ -2.962133773552392e-16,
+ 2.2821913100338034e-16,
+ 4.979627287569226e-17,
+ 3.7072167103095313e-16,
+ 4.9093169355022186e-17,
+ -8.362795992911109e-17,
+ 1.2647591565935793e-16,
+ 2.2333876538931747e-18,
+ -1.6163109169286158e-16,
+ -2.7449988627572223e-16,
+ -6.815968247436948e-17,
+ 2.575013246877575e-16,
+ 2.590316088209806e-16,
+ -9.123802156459894e-17,
+ 1.4767241885602927e-16,
+ -5.616556359235058e-17,
+ 8.007108329513307e-17,
+ 5.7592450149004544e-18,
+ -3.2180427755609845e-16,
+ 1.5672487668465646e-17,
+ -5.645507680674414e-17,
+ -9.330597309598151e-17,
+ 5.0499376396362333e-17,
+ 3.4636120199126646e-16,
+ -1.1568120866554092e-16,
+ 3.074216746553327e-16,
+ 2.6188538193428856e-16,
+ 7.982292911136716e-17,
+ -1.0575245637549035e-16,
+ 6.352747104407253e-17,
+ 5.562789619419111e-17,
+ -2.0538894609691675e-16,
+ 1.2432524606672006e-16,
+ -3.096137032785982e-16,
+ -2.0638156283198038e-16,
+ 2.828440707048509e-17,
+ -6.452008777913615e-16,
+ 4.979627287569226e-17,
+ -9.29751008509603e-17,
+ 5.708580202381582e-17,
+ 2.1093105620102203e-17,
+ 4.623939624171424e-17,
+ -9.280966472844969e-17,
+ 1.329692834678992e-16,
+ 2.9695783990653694e-17,
+ -8.983181452325879e-17,
+ 2.255514735278968e-16,
+ 2.1250269936487279e-16,
+ -1.1245520427658411e-16,
+ 1.5666800801754342e-16,
+ -4.384057246531047e-18,
+ -7.361907451721946e-17,
+ -5.748905257243542e-17,
+ 6.534726839168918e-18,
+ -6.61744490042422e-19,
+ 1.0918784085699964e-16,
+ 2.1796209140772276e-17,
+ 2.0547166415817205e-16,
+ 2.8206858888058244e-17,
+ 2.0911125885340537e-16,
+ 2.2218071253174323e-16,
+ 1.1932080336077424e-16,
+ 6.43960106872532e-17,
+ 2.212708138579349e-18,
+ -5.459392042849982e-18,
+ 1.0881560958135078e-16,
+ 1.742042370036676e-16,
+ -2.928219368437718e-17,
+ -1.1042861177582918e-16,
+ 1.528629771997995e-16,
+ 1.5679208510942637e-16,
+ -1.6690436809788713e-16,
+ -2.0017770823783267e-16,
+ -2.6105820132173553e-16,
+ 9.719372197498074e-17,
+ -2.3425754947501744e-16,
+ 1.272617372412833e-16,
+ 6.4933678085412665e-18,
+ 1.7254987577856155e-16,
+ -6.329586047255767e-16,
+ -2.1465336895751065e-17,
+ -8.007108329513307e-17,
+ -1.1994118882018901e-16,
+ -5.6248281653605874e-18,
+ 1.0008885411891634e-16,
+ 2.5791491499403403e-16,
+ 2.536135758087583e-16,
+ 5.69100261436483e-17,
+ 1.2010662494269962e-16,
+ 3.2805983093853073e-16,
+ -9.609770766334798e-17,
+ 2.2995621028974166e-17,
+ 2.24579536308147e-16,
+ 7.213014941462401e-17,
+ 1.1723217231407785e-16,
+ -6.626750682315443e-17,
+ -1.0008885411891633e-17,
+ 6.807696441311418e-17,
+ -4.602743120974753e-17,
+ -6.082259044102412e-16,
+ -9.785546646502316e-17,
+ -1.738733647586464e-16,
+ 6.054962083888163e-17,
+ -3.1755463715910728e-16,
+ 1.7953955195463463e-16,
+ -1.1745964698252991e-17,
+ -1.742042370036676e-16,
+ -1.0711988932561707e-16,
+ -5.939156798130739e-17,
+ -5.616556359235058e-17,
+ -1.152676183592644e-16,
+ -4.748016716054378e-17,
+ -1.5137405209720404e-16,
+ -8.70194004405785e-17,
+ -2.1241998130361748e-16
+ ],
+ [
+ -1.4173130164597993,
+ -1.2880813545367922,
+ 0.24902765537169833,
+ 1.3238700992480863,
+ -2.54396062080385,
+ 2.8562879425521186,
+ -2.277723088084569,
+ 0.8828468576464613,
+ 0.3854119369055322,
+ 0.17664603983592236,
+ -3.687892895517212,
+ -1.847526172370547,
+ 2.8425720535497616,
+ -2.195865192193931,
+ 0.6890011293839384,
+ 0.534119519868447,
+ 0.4018837790856989,
+ -3.2708969989414185,
+ -1.7841641277151774,
+ 2.8058783403133183,
+ -2.057822393267021,
+ 0.5675223830777751,
+ 1.1170651037436283,
+ -2.424297259755556,
+ 2.87037004946273,
+ -1.6301444817755082,
+ -3.103077020660561,
+ -0.2578098423308904,
+ 0.16579345477594737,
+ 1.2306901185613046,
+ -2.5302896953329883,
+ 2.866776315407461,
+ -1.5767726931003163,
+ -3.273954206458672,
+ -0.5280985499363258,
+ 0.02160235424705452,
+ 1.4094421953129608,
+ -2.5913722346440453,
+ 2.855875598283413,
+ -2.2138234623645894,
+ 0.7897121595873529,
+ 0.8144336897035243,
+ -3.154670920259145,
+ -3.0133381357714133,
+ 0.7350390934418938,
+ 0.9090047098976942,
+ 4.804484841155499,
+ 4.902365772144745,
+ -2.25140031931504,
+ 0.842988390783046,
+ 0.7586058067969339,
+ -2.2545170221608117,
+ 2.852510450929692,
+ -2.6050410071135275,
+ 1.0316707623258743,
+ 2.412997196131875,
+ 1.8966157691866075,
+ 0.7311124410812857,
+ -2.3302321162817146,
+ 2.864882486166223,
+ -2.506791560656401,
+ 0.901348795929671,
+ 2.0452724519230747,
+ 1.9407354611593843,
+ 0.8353747094713208,
+ -2.4473718966145435,
+ 2.8705404492255657,
+ -2.4421479179894723,
+ 1.058673336798918,
+ 0.5357538051361971,
+ -2.0364803592925824,
+ 1.8165882872185615,
+ 3.010020692331108,
+ -2.15720900932115,
+ -1.4450070351715483,
+ 0.9440041874753698,
+ 0.7342489905740944,
+ -2.1760399347574535,
+ 1.9369214947842632,
+ 3.532561381147065,
+ -2.2413194833653867,
+ -1.3992202960902167,
+ 0.7495486965372778,
+ 0.854327232957924,
+ -2.257239687403955,
+ 2.861913212482899,
+ -2.5597842958416694,
+ 1.3503857351514859,
+ -1.1420161242449995,
+ -1.562612561076854,
+ -4.065722249100651,
+ -3.3986508645643174,
+ 1.8979455760861432,
+ -0.4482733826048836,
+ -1.221988972367991,
+ 2.46959720437453,
+ -2.9103317478045505,
+ 2.3312136855769774,
+ -0.8382553344633165,
+ -2.0891940460423783,
+ -2.4819754949500044,
+ -1.0652113618809547,
+ 2.5312551961869616,
+ -2.9012798746935884,
+ 2.2084758344430164,
+ -0.6351744741912327,
+ -1.6180734881740546,
+ -2.3325093926214,
+ -1.0861186914321206,
+ 2.6194503923721255,
+ -2.8773632321775158,
+ 2.1265508012331664,
+ -0.6732431203965243,
+ -1.0100707395834623,
+ 2.2908281816312708,
+ -1.870864434212717,
+ -3.1877096309310304,
+ 1.7428481805180023,
+ 1.241340427714042,
+ -0.5513056604971177,
+ -1.197251617065674,
+ 2.4079373984411085,
+ -1.8915763497097158,
+ -3.524151503142488,
+ 1.6768909982579778,
+ 1.1359933012714412,
+ -0.35160385055990395,
+ -1.3122600891542835,
+ 2.4717932979316988,
+ -0.674193580859193,
+ -1.0105275360562453,
+ 2.292400541595993,
+ -4.9769027784358935,
+ -4.883904593489614,
+ -1.0234504154628072,
+ -0.8499391651877682,
+ 2.825478324707855,
+ 2.967193069073531,
+ -0.7327676780451876,
+ -0.9543679027541534,
+ 2.253102835553848,
+ -2.9081227293123475,
+ 2.4877841923762833,
+ -1.3387169503281053,
+ -0.10562456398600718,
+ 0.3696006834753648,
+ 3.3369579068314636,
+ 1.6217294035205936,
+ -2.9116862077396815,
+ 2.4236943207373645,
+ -1.154103516035088,
+ -0.24884257124478557,
+ 0.1110041599567527,
+ 3.1513409719074565,
+ 1.6702535297532763,
+ -2.908129204134003,
+ 2.3083037501910133,
+ -1.0401860121845912,
+ -0.7347981466493061,
+ 2.1046359593734585,
+ -2.872285905226898,
+ 1.7558400328778003,
+ 3.2446178616349473,
+ -0.2556083315826095,
+ -0.45350862062503655,
+ -0.853076562442251,
+ 2.2378357171005283,
+ -2.89823246416909,
+ 1.8137329704759724,
+ 3.647174551115329,
+ -0.00887343994402812,
+ -0.2987104668778629,
+ -1.046060791015544,
+ 2.3134583674460947,
+ -2.9083473061688516,
+ 2.436571726141559,
+ -1.2512075408988372,
+ -0.4187450613864111,
+ 1.4639509117835365,
+ 1.6352747688936569,
+ 1.1173142124060021e-15,
+ 9.972489464939302e-16,
+ 2.7366753578434075e-16,
+ 3.2044976930304287e-16,
+ -2.304525186572735e-16,
+ -1.901481433106272e-16,
+ -1.1439907871608373e-16,
+ -3.122606812387679e-16,
+ -7.924390268258004e-16,
+ 1.0447291136544738e-16,
+ 2.0387675653959324e-16,
+ 2.2565487110446595e-16,
+ 2.297907741672311e-16,
+ -2.845501307182415e-17,
+ -1.1118341408478383e-16,
+ -2.179000528617813e-16,
+ -1.051346558554898e-16,
+ -3.8257103330577524e-17,
+ 5.39321759384574e-17,
+ 1.1435771968545608e-16,
+ 5.90813752516e-17,
+ 5.589672989327085e-17,
+ 3.29217883796105e-17,
+ 1.0141234309900118e-16,
+ 1.437639904617162e-16,
+ -3.3418096747142313e-16,
+ -6.088049308390284e-17,
+ -8.007108329513307e-17,
+ 3.2293131114070195e-16,
+ 3.74175150088362e-16,
+ 4.408872664907637e-16,
+ -6.435723659603978e-17,
+ 3.29217883796105e-17,
+ 4.1524466750161984e-16,
+ 6.8573272780646e-17,
+ -6.395760496260009e-16,
+ 1.0120942535498427e-16,
+ 1.3813916229635562e-16,
+ -2.5212465070616284e-16,
+ 2.296253380447205e-16,
+ 2.324377521274008e-16,
+ 2.5094591833327477e-16,
+ 7.46116912522831e-17,
+ 2.0150119721791752e-16,
+ 9.770037010016947e-17,
+ -2.0973164431282014e-16,
+ 1.5054687148465104e-16,
+ -2.1771393722395686e-16,
+ -1.2722037821065566e-16,
+ -3.668546016672678e-17,
+ 1.861621667338873e-16,
+ 9.181704799338606e-17,
+ 6.468552390164676e-17,
+ -2.243313821243811e-16,
+ -6.011948692035405e-16,
+ -3.6644101136099126e-17,
+ -8.519960309296184e-17,
+ 2.5013941723603557e-16,
+ 6.28657265540301e-17,
+ 7.519071768107022e-17,
+ 9.280966472844969e-17,
+ -2.1506695926378716e-17,
+ 5.509022879603164e-17,
+ 7.328820227219825e-17,
+ -4.7314731038033177e-17,
+ 1.7883644843396456e-16,
+ -5.703823913859402e-16,
+ -7.502528155855961e-17,
+ -4.040156906862125e-16,
+ -9.620110523991711e-17,
+ 5.542110104105285e-17,
+ -1.2126467780027386e-16,
+ -2.8785885316845363e-17,
+ 5.161607022330892e-17,
+ -1.1530897738989206e-16,
+ 9.92616735063633e-18,
+ -2.013357610954069e-16,
+ -2.219325583479773e-16,
+ 2.7718822326651957e-16,
+ -2.694127255085211e-16,
+ 1.134064619810201e-16,
+ -2.5841122336156585e-16,
+ 4.710793588489492e-17,
+ 3.7719435932418057e-16,
+ -1.7848489667362952e-16,
+ 2.0121168400352395e-17,
+ -1.163015941249557e-16,
+ -1.1704605667625342e-16,
+ -5.657915389862709e-16,
+ 1.6551884057186081e-16,
+ -8.983181452325879e-17,
+ -3.209460776705747e-16,
+ -3.0212771873499336e-17,
+ -6.207990497210473e-17,
+ -2.3525016621008107e-16,
+ -1.9116143956100467e-16,
+ 2.7363134663254155e-16,
+ -6.739454040775793e-17,
+ 2.35498320393847e-16,
+ 7.33295613028259e-17,
+ 1.618792458766275e-16,
+ 5.540455742880179e-16,
+ 1.601473364690946e-16,
+ -8.55718343686107e-17,
+ -2.6403605152692643e-16,
+ -2.7057077836609535e-16,
+ -1.0596183646804283e-16,
+ 1.981924747677054e-16,
+ 1.1183481881716934e-16,
+ 6.175937248474043e-17,
+ 1.0757483866252124e-16,
+ -3.131395606396055e-16,
+ -2.2102265967416897e-16,
+ 1.1898993111575303e-16,
+ -1.865085486153939e-16,
+ -1.805528482050121e-16,
+ -1.76768496902582e-16,
+ -3.9539233280034717e-17,
+ 1.2597960729182611e-16,
+ 2.8289576949313546e-17,
+ 5.480071558163808e-17,
+ -1.1940352142202954e-16,
+ -1.7900188455647516e-16,
+ 5.629998044189044e-18,
+ -2.749548356126264e-16,
+ -5.010646560539965e-16,
+ -1.889280519071115e-16,
+ -1.435158362779503e-16,
+ -1.4194419311409955e-16,
+ -1.49719690872098e-16,
+ -1.8541253430376113e-16,
+ -2.448454613156962e-16,
+ -1.9380841752117436e-16,
+ 1.181808450790996e-16,
+ -2.446800251931856e-16,
+ -3.719831214650965e-16,
+ 2.0497535579064023e-16,
+ -4.566036981292712e-17,
+ 3.960540772903896e-16,
+ -5.426304818347861e-17,
+ 1.831377876192403e-16,
+ -3.2280723404881905e-17,
+ 3.226004388956808e-17,
+ -3.2524741685585043e-16,
+ 9.65485210971894e-16,
+ -9.429858983104514e-17,
+ 1.164670302474663e-16,
+ 4.286449934249789e-16,
+ -1.3069453678337837e-16,
+ -4.20207751176938e-17,
+ -2.1719694934111122e-16,
+ 3.201188970580217e-17,
+ 4.21034931789491e-17,
+ -1.2176098616780567e-16,
+ -5.227781471335135e-16,
+ 1.376428539288238e-16,
+ -1.589841137326919e-16,
+ -3.8546616544971085e-16,
+ -3.068840072571732e-16,
+ -1.4103429444029122e-16,
+ 8.586134758300426e-17,
+ 6.692925131319685e-17,
+ -3.085383684822793e-17,
+ 1.6833125465454113e-17,
+ 7.351154103758756e-16,
+ 2.850154198128026e-17,
+ 3.6892255319865034e-17,
+ -5.161607022330892e-17,
+ 1.6742135598073278e-16,
+ -1.0422475718168147e-17,
+ -5.459392042849982e-18,
+ 3.662755752384806e-16,
+ 1.9595908711381223e-16,
+ 1.7900188455647516e-16,
+ -1.2562805553149106e-17,
+ 8.453785860291942e-17,
+ -3.805030817743927e-18,
+ 9.31405369734709e-17,
+ -1.0217334926254998e-15,
+ 4.824117332409257e-16
+ ],
+ [
+ 3.9316047552636983,
+ 3.2949345457816754,
+ -1.844492733327476,
+ 0.27021921916411346,
+ 1.311305991489709,
+ -2.5932924075377235,
+ 2.8743416669799173,
+ -2.3027626141270674,
+ 0.7554404362104802,
+ 1.9466226850072583,
+ 2.6298283338168966,
+ 1.1502153652746554,
+ -2.6481699924235214,
+ 2.861057749187938,
+ -2.1698964774982965,
+ 0.5527254699056151,
+ 1.4860869640850627,
+ 2.455596300839173,
+ 1.1646795076402139,
+ -2.72984612265765,
+ 2.8254808905259847,
+ -2.0850016072641266,
+ 0.4982916660086846,
+ 1.1025764306640418,
+ -2.4266349616447265,
+ 1.8887362839189021,
+ 3.2446759354937615,
+ -1.6149618412947082,
+ -1.1786642661807056,
+ 0.37647830489360884,
+ 1.2887884171522939,
+ -2.5343873163314883,
+ 1.9038386012892872,
+ 3.5744001679923447,
+ -1.5310784903770498,
+ -1.068051385662388,
+ 0.1726083889091663,
+ 1.3998345064063589,
+ -2.5953311718974628,
+ 2.8634077618612315,
+ -2.240701789765288,
+ 0.8132753377441924,
+ 0.3685370238014464,
+ 0.23023279408627373,
+ -2.13770172484274,
+ -2.254427529582998,
+ -5.015340824641587,
+ -5.037522491457999,
+ 2.870373039827736,
+ -2.276453177301551,
+ 0.868986848869046,
+ 0.8335975547996571,
+ -2.252860367432361,
+ 2.866223051415064,
+ -1.74577624579708,
+ -3.5044699172987834,
+ 0.10508265903763647,
+ 0.3553111120113422,
+ 0.9526565644507184,
+ -2.3312191879414255,
+ 2.8842283669395288,
+ -1.6721984661685985,
+ -3.160260239890914,
+ -0.13958576141033643,
+ 0.23444172015349357,
+ 1.1414235062838405,
+ -2.450114573821878,
+ 2.886422862269981,
+ -2.4145456290122995,
+ 1.0852662782151128,
+ 0.5192398809895836,
+ -1.251324821638698,
+ -1.7587408551798829,
+ 3.203159869790061,
+ 1.880662647616138,
+ -2.340995376791662,
+ 0.8950315789383971,
+ 0.7191804995021422,
+ -1.389041744807706,
+ -2.21491547409298,
+ 3.568994719452656,
+ 1.952875678292538,
+ -2.213323758394572,
+ 0.7728197775064064,
+ 0.8377449515354787,
+ -2.315878528946323,
+ 2.876032654850647,
+ -2.5834647805690003,
+ 3.1969244477373353,
+ 4.029084859339793,
+ 5.158903602303353,
+ 4.215488292561952,
+ -2.8306051770810856,
+ 1.9229853165420792,
+ -0.47260236950791296,
+ -1.2957430490358568,
+ 2.4720423944605594,
+ -2.927215060123256,
+ 1.699679922292162,
+ 3.500323872727007,
+ 0.49977718444916996,
+ -0.03401967585243891,
+ -1.4054839769548169,
+ 2.5359635693453866,
+ -2.9117144857436097,
+ 1.5151379452830709,
+ 2.959805960378123,
+ 0.6526381746302112,
+ 0.05882250840948001,
+ -1.5822347065758904,
+ 2.625801274546791,
+ -2.896536792735108,
+ 2.0880074835014577,
+ -0.6985803113021725,
+ -0.9971822105415511,
+ 1.455916471086691,
+ 2.175165170646115,
+ -3.023747531601606,
+ -1.8256542519310734,
+ 2.0015903149651804,
+ -0.497762877763562,
+ -1.1859298744202382,
+ 1.539077588003795,
+ 2.5517871013059654,
+ -3.1721976677271884,
+ -1.79286043056247,
+ 1.8490987547499609,
+ -0.3730778751572757,
+ -1.2996339551688318,
+ 2.5222094828247146,
+ -0.6969136049789066,
+ -0.9995424808899969,
+ 3.3760256573979794,
+ 3.2357919565217226,
+ -0.593612364869664,
+ -0.769085295331943,
+ -4.738349516765034,
+ -4.843282275490585,
+ 2.130404647164028,
+ -0.7564097043229706,
+ -0.9381744253075553,
+ 2.3101333310768486,
+ -2.9227880149161707,
+ 2.511430515238255,
+ -0.9597755547472242,
+ -2.295066167961762,
+ -2.051835294842066,
+ -0.8182510971851109,
+ 2.3833892516926363,
+ -2.9273044341445313,
+ 2.406056292484726,
+ -0.8257888830328763,
+ -1.928841780322205,
+ -2.078164985107952,
+ -0.9200722573299093,
+ 2.4911752929801705,
+ -2.9251080003390055,
+ 2.3342172223942015,
+ -0.9766667769644024,
+ -0.7169811795588907,
+ 2.1025722202273753,
+ -1.8480465843777267,
+ -3.0894568719214806,
+ 2.0456449874778353,
+ 1.3932463917952786,
+ -0.857517983871133,
+ -0.9122497662485953,
+ 2.2375599740436622,
+ -1.9657042012318047,
+ -3.61270882332717,
+ 2.1045096194707145,
+ 1.3376625154690571,
+ -0.6611718462229642,
+ -1.0329925332836134,
+ 2.31271877114004,
+ -2.927378878307087,
+ 2.4617354418579835,
+ -1.2761879606351458,
+ 0.9528335323803804,
+ 1.3337314376785219,
+ -1.2673647755231212e-15,
+ -9.223063829966259e-16,
+ -3.186299719554262e-16,
+ -1.5005056311711922e-16,
+ 4.474013138146188e-17,
+ 1.955248172922219e-16,
+ 2.663521572420749e-16,
+ 8.875647972693986e-17,
+ 5.661224112312921e-16,
+ -7.320548421094295e-17,
+ -1.390904200007916e-16,
+ -3.9320030417708166e-16,
+ -2.5158698330800337e-16,
+ -1.8553661139564408e-16,
+ 1.1373733422604129e-17,
+ 2.472856441227276e-16,
+ 2.8899622651071404e-17,
+ 1.0476242457984094e-16,
+ 1.675247535573019e-16,
+ 1.923194924185789e-17,
+ 2.6056189295420368e-18,
+ 1.1063540692896744e-16,
+ 7.444625512977249e-17,
+ 1.646089418980525e-17,
+ -2.2515856273693413e-16,
+ 3.446034431895913e-16,
+ 5.773720675620133e-17,
+ 4.615667818045894e-17,
+ -1.710609506759661e-16,
+ -2.68833699079734e-16,
+ -2.810759721455188e-16,
+ -3.2260043889568075e-18,
+ -4.34683411896616e-17,
+ -2.0299012232051297e-16,
+ -1.021568056502989e-17,
+ 5.604975830659316e-16,
+ -8.416562732727055e-17,
+ -6.944181242382667e-17,
+ 2.714806770399037e-16,
+ -3.3637299609468865e-16,
+ -2.0332099456553418e-16,
+ -1.9970207938561468e-16,
+ -1.3172851254906966e-16,
+ -1.7412151894241233e-17,
+ 1.7867101231145398e-17,
+ 1.7610675241253957e-16,
+ -4.288931476087448e-17,
+ 8.311510794932821e-16,
+ -2.1626637115198906e-16,
+ 8.511688503170654e-17,
+ -3.234276195082338e-17,
+ -1.196930346364231e-16,
+ -5.233985325929282e-17,
+ 2.4939495468473784e-16,
+ 3.2863885736731785e-16,
+ 2.5642598989143854e-18,
+ 1.7705801011697555e-16,
+ -2.187892720202758e-17,
+ -8.021583990232985e-17,
+ 1.0058516248644815e-16,
+ -1.857020475181547e-16,
+ 1.2622776147559202e-16,
+ -2.026178910448641e-16,
+ 9.590125226786663e-17,
+ 2.4815418376590827e-17,
+ -8.933550615572698e-17,
+ 4.934959534491363e-16,
+ -1.3228685946254295e-16,
+ 4.3410438546782887e-16,
+ 1.8702553649823953e-16,
+ 5.1450634100798315e-17,
+ 1.1456451483859433e-16,
+ 6.179039175771117e-17,
+ -3.254955710396164e-17,
+ 2.776018135727961e-16,
+ 9.507924153414206e-17,
+ 1.0608591355992579e-16,
+ 1.2788212270069808e-16,
+ -1.6328545291796764e-16,
+ 2.787391869150565e-16,
+ -6.054962083888163e-17,
+ -1.20892446524625e-16,
+ 8.70194004405785e-17,
+ -2.829371285237631e-16,
+ 1.9790296155331185e-16,
+ -4.404736761844872e-17,
+ 1.1788874692529181e-16,
+ 1.2498699055676248e-16,
+ 3.368279454315928e-16,
+ 3.1333601603508683e-16,
+ 4.763733147692886e-16,
+ -3.368899839775343e-16,
+ -2.1142736456855385e-16,
+ 1.2349806545416703e-16,
+ 2.6575245129797397e-16,
+ 1.4219234729786546e-16,
+ 1.0960143116327615e-16,
+ 2.8686623643339e-16,
+ -5.303882087690013e-16,
+ -9.578751493364059e-17,
+ -1.5224259174038472e-16,
+ -4.893600503863712e-16,
+ -9.355412727974742e-17,
+ 1.6742135598073278e-16,
+ 2.258616662576042e-16,
+ 8.602678370551487e-17,
+ 6.18937893342803e-17,
+ -9.721440149029457e-17,
+ 1.4044492825384719e-16,
+ -7.320548421094295e-17,
+ -5.579850219553017e-17,
+ 3.2425480012078685e-17,
+ -9.711100391372544e-17,
+ -6.663456821997484e-17,
+ 9.90135193225974e-17,
+ 7.891303043755883e-17,
+ 2.8496372102451803e-16,
+ 9.727644003623604e-17,
+ -6.580221772859335e-17,
+ 4.690114073175666e-17,
+ -7.849944013128231e-17,
+ -5.062345348824529e-17,
+ 6.732423005569091e-16,
+ 1.6601514893939263e-16,
+ 1.7101959164533845e-16,
+ 9.082443125832243e-17,
+ 7.895438946818648e-17,
+ -3.3904065357017217e-16,
+ 1.258141711693155e-16,
+ 1.2544193989366665e-16,
+ 8.950094227823758e-17,
+ 2.7057077836609535e-16,
+ 3.7491961263965974e-16,
+ -8.335912623003135e-17,
+ 2.926565007212612e-16,
+ 2.0853223242461825e-16,
+ -1.5124997500532109e-16,
+ -3.639594695233322e-17,
+ -1.2622776147559202e-16,
+ 4.3426982159033947e-17,
+ -1.2763396851693217e-16,
+ -1.6285118309637732e-17,
+ 3.461750863534421e-17,
+ 3.95888641167879e-16,
+ -7.292424280267491e-16,
+ -1.1398548840980721e-16,
+ -1.322455004319153e-16,
+ -2.511320339710992e-16,
+ 1.2134739586152916e-16,
+ 6.534726839168919e-17,
+ 1.8325410989288057e-16,
+ -1.1125579238838222e-16,
+ -8.325572865346222e-17,
+ 1.2358078351542233e-16,
+ 2.802487915329658e-16,
+ -2.0539928585457366e-16,
+ 1.5054687148465104e-16,
+ 1.7652034271881608e-16,
+ 1.433504001554397e-16,
+ 9.897216029196975e-17,
+ -6.832511859688009e-17,
+ 1.2866794428262345e-16,
+ 5.97224402263286e-17,
+ 7.386722870098537e-17,
+ -3.723760322560592e-16,
+ -3.91256429737582e-17,
+ -7.651420666115506e-18,
+ -1.0066788054770346e-16,
+ -5.056141494230381e-17,
+ 9.719372197498074e-17,
+ 1.10924920143361e-16,
+ -2.4054412213042045e-16,
+ -2.0327963553490652e-17,
+ 9.843449289381028e-18,
+ -4.979627287569226e-17,
+ -1.5071230760716162e-16,
+ -6.7001629616795234e-18,
+ -9.60356691174065e-17,
+ 9.386018410639205e-16,
+ 2.5473026963570487e-16
+ ],
+ [
+ -5.132673871980593,
+ -4.20167645876297,
+ 2.7443873520690887,
+ -1.845140177019506,
+ 0.27223605090673425,
+ 1.3953572302588901,
+ -2.5941944227650167,
+ 2.8761922943397593,
+ -1.6409279602689841,
+ -3.4156425317809713,
+ -0.7059749514861903,
+ -0.07533204352477843,
+ 1.5037621066084872,
+ -2.6501673706845437,
+ 2.8514287719503226,
+ -1.4515579369777367,
+ -2.873346439586664,
+ -0.8310834892701126,
+ -0.1624795337418068,
+ 1.6728213568809256,
+ -2.7317962621535266,
+ 2.8276249081799327,
+ -2.0187485178808844,
+ 0.5004004091226497,
+ 1.1039945189482567,
+ -1.5208303245839119,
+ -2.3113901269551693,
+ 2.944367593370685,
+ 1.7966171638767152,
+ -1.9256989365831412,
+ 0.2994032428129777,
+ 1.2903149985539748,
+ -1.5990782571863278,
+ -2.6900270158892865,
+ 3.0737880382678013,
+ 1.7560401705749864,
+ -1.7677303072629769,
+ 0.17198186733699738,
+ 1.3991691509686592,
+ -2.6395093440159054,
+ 2.8654877636366742,
+ -2.2417377487194097,
+ 2.5266404246185514,
+ 2.61613994955034,
+ 2.826092367569393,
+ 2.8471981351103697,
+ 3.5645462684505618,
+ 3.504077539887308,
+ -2.613685712229085,
+ 2.871948660745162,
+ -2.278891928461733,
+ 0.7791606504795954,
+ 0.8324516101921595,
+ -2.254772417905397,
+ 1.8785868096651586,
+ 3.430598638007565,
+ -2.0627363884225263,
+ -1.3190768139323465,
+ 0.6597949090209975,
+ 0.953964935048024,
+ -2.379134856393208,
+ 1.8858588290696372,
+ 3.2237784926961583,
+ -1.6994677887230134,
+ -1.2217030571889294,
+ 0.4588277597171819,
+ 1.1427857021710373,
+ -2.4505579842139853,
+ 2.8872139768377236,
+ -2.417138480922432,
+ 1.0853299544232122,
+ 0.2743811881845527,
+ -0.06907225613982322,
+ -3.1838172937800526,
+ -1.6916738798678572,
+ 2.8823663966216686,
+ -2.2946818531981177,
+ 0.8948891875351607,
+ 0.38381552250470286,
+ 0.17001303968186507,
+ -3.7089921564276733,
+ -1.8574476358959355,
+ 2.860020198495115,
+ -2.214210678646942,
+ 0.774970345247099,
+ 0.9280965755747127,
+ -2.316317878924407,
+ 2.8780096001012128,
+ -4.183958884336421,
+ -5.150306435090606,
+ -4.539109530262058,
+ -3.6329525304014387,
+ 2.744305212768111,
+ -2.8318902305426787,
+ 1.9252919809744846,
+ -0.3791892117902412,
+ -1.2950038863012372,
+ 2.4738152558334425,
+ -1.9944187271449605,
+ -3.746129702146021,
+ 1.6386112167418487,
+ 1.1168578952893724,
+ -0.25450220794985834,
+ -1.4069976192244344,
+ 2.573606664945948,
+ -1.8894101720917222,
+ -3.3154494455250694,
+ 1.2354327411808335,
+ 0.9831444024538609,
+ -0.051526355182571426,
+ -1.5837503109260012,
+ 2.626463605487968,
+ -2.882469625938884,
+ 2.090328850543111,
+ -0.698117631079969,
+ -0.5609155865939026,
+ -0.44723554974242147,
+ 3.297611504945248,
+ 1.8028409523358193,
+ -2.8565963784260013,
+ 1.9458398686729501,
+ -0.4971485417473327,
+ -0.6786924149210393,
+ -0.7391347160171494,
+ 3.610312594470154,
+ 1.8531117231413001,
+ -2.804981420687505,
+ 1.8493864773384208,
+ -0.374889390096228,
+ -1.3845501036060783,
+ 2.5227435277435566,
+ -0.6962503205600036,
+ -0.6627393588438647,
+ -0.5218292312211156,
+ 2.034458202230009,
+ 2.1609487003498633,
+ 5.073571374650213,
+ 5.1027515223503785,
+ -2.8929968613247765,
+ 2.1311740947234328,
+ -0.7588568346667715,
+ -1.0276005393653054,
+ 2.3104240315110904,
+ -2.9247360678762284,
+ 1.7024709430892846,
+ 3.4517020508514396,
+ 0.09326268993090421,
+ -0.25244145876329205,
+ -1.1425431377532467,
+ 2.3851474772385837,
+ -2.9297256913555416,
+ 1.6220435026792823,
+ 3.09962943084412,
+ 0.3218341911179682,
+ -0.13128912317738256,
+ -1.3288722890669198,
+ 2.4929254873165965,
+ -2.9269866773512656,
+ 2.2793139512260123,
+ -0.9793207144712511,
+ -0.7178013263008535,
+ 1.3279466857971192,
+ 1.9120644057107754,
+ -3.150148620187622,
+ -1.86736918928288,
+ 2.202164718649457,
+ -0.783510413282039,
+ -0.913221254508193,
+ 1.4661470564258978,
+ 2.3822059774975,
+ -3.493738498933132,
+ -1.9289581650909664,
+ 2.064071456317666,
+ -0.6612472360109166,
+ -1.031652136895538,
+ 2.3691639531610096,
+ -2.9293014171873817,
+ 2.463232169591872,
+ -3.0430286268488485,
+ -3.847489070752274,
+ 1.7762876473963714e-15,
+ 2.023614650549727e-15,
+ 3.274808045097436e-16,
+ 4.173126190330024e-17,
+ -2.352088071794534e-16,
+ -2.2813641294212503e-16,
+ -5.030085304934961e-16,
+ 1.819797347616661e-18,
+ -2.723078576524567e-16,
+ 7.246102165964522e-17,
+ 8.081554584643079e-17,
+ 5.901778574200999e-16,
+ 1.6857940883830702e-16,
+ 3.206979234868088e-16,
+ -8.41242682966429e-17,
+ -1.7006833394090247e-16,
+ -6.427193359537025e-17,
+ -2.3570511554698524e-16,
+ -7.932662074383534e-17,
+ -1.1216569106219055e-16,
+ 7.676236084492096e-17,
+ -1.4616281423812e-16,
+ -1.2209185841282688e-16,
+ -1.8234162627965801e-16,
+ 1.7776111363764562e-16,
+ -3.6180879993069426e-16,
+ -7.117889171018803e-17,
+ 5.2608686958372554e-17,
+ 4.3385623128406295e-17,
+ 1.8247604312919788e-16,
+ 2.1920286232655233e-18,
+ 1.493888186270768e-16,
+ 4.673570460924606e-18,
+ 8.68539643180679e-18,
+ -2.563432718301833e-16,
+ -3.5328883962139807e-16,
+ 1.0339757656912846e-18,
+ -2.340921133525068e-17,
+ -1.8520573915062287e-16,
+ 3.4642324053720794e-16,
+ 2.8876875184226196e-16,
+ 1.0509329682486215e-16,
+ 2.425293556005477e-16,
+ -8.160136742835617e-17,
+ -1.0128826600711823e-16,
+ 1.4405350367610977e-16,
+ -4.972389457209387e-17,
+ -4.1565825780789636e-16,
+ 4.512683831783042e-16,
+ 3.172237649140861e-17,
+ -8.850832554317395e-17,
+ 1.2965022126003018e-16,
+ 2.671793378546279e-17,
+ -6.709985731453591e-17,
+ -4.940956593932373e-16,
+ -1.0306670432410724e-16,
+ -7.287461196592174e-17,
+ -2.335130869237197e-16,
+ 1.906237721628452e-16,
+ 1.110076382046163e-16,
+ 3.3211301594004056e-16,
+ -1.3507859402990942e-16,
+ 3.1929171644546863e-16,
+ -1.467315009092502e-16,
+ -1.594804221002237e-16,
+ -8.921142906384402e-17,
+ -3.2607459746840346e-16,
+ 1.163015941249557e-16,
+ -2.3127969926982654e-16,
+ -1.6874484496081762e-16,
+ -1.6336817097922297e-17,
+ 3.91256429737582e-17,
+ -5.797502118231033e-17,
+ -3.081661372066304e-16,
+ -1.6080391108030856e-16,
+ -2.977436614884623e-16,
+ 1.290401755582723e-17,
+ -5.997059441009451e-17,
+ 1.2631047953684733e-16,
+ -3.4121200267812387e-16,
+ 3.7719435932418056e-17,
+ 1.9091328537723876e-16,
+ -2.5559880927888552e-17,
+ 1.679176643482646e-16,
+ -2.7081893254986126e-16,
+ 2.8144820342116767e-17,
+ -2.5899024979035297e-16,
+ -2.7338319244877565e-16,
+ -7.039307012826265e-16,
+ 3.2164918119124476e-16,
+ -4.744707993604167e-16,
+ 8.294967182681761e-16,
+ 3.6548975365655523e-16,
+ -1.3251433413099503e-16,
+ -1.7494869955496533e-16,
+ -1.3052910066086777e-16,
+ -3.601544387055882e-16,
+ -1.6560155863311612e-16,
+ 2.96833762814654e-16,
+ 2.895132143935597e-17,
+ 1.378806683549328e-16,
+ 1.8115255414911304e-16,
+ 1.1717013376813637e-16,
+ -4.619390130802383e-16,
+ -4.949848785517318e-16,
+ 9.26442286059391e-18,
+ -1.5385559393486315e-17,
+ 6.766337410683766e-17,
+ 3.6478665013588516e-16,
+ 1.252351447405284e-16,
+ 3.7223127564886245e-17,
+ 1.593149859777131e-16,
+ 1.5757790669135175e-16,
+ 8.379339605162169e-17,
+ -1.588186776101813e-17,
+ -1.8164886251664485e-16,
+ -3.6414558516115656e-16,
+ -1.982751928289607e-16,
+ 2.7660919683773245e-16,
+ -1.7800926782141153e-16,
+ 1.635749661323612e-16,
+ 1.5426918424113964e-16,
+ -5.838240763399269e-16,
+ -1.6584971281688202e-16,
+ -8.321436962283457e-17,
+ 1.0968414922453146e-16,
+ -1.079470699381701e-17,
+ 1.5278025913854419e-16,
+ -2.6684846560960673e-16,
+ -6.842851617344921e-17,
+ -2.7379678275505213e-17,
+ -2.684201087734575e-16,
+ -5.348549840767877e-16,
+ -1.7908460261773047e-16,
+ -2.454244877444833e-16,
+ 6.344475298281722e-17,
+ 5.881254155252027e-17,
+ 2.256962301350936e-16,
+ -1.4082749928715296e-16,
+ 1.819797347616661e-17,
+ 1.9852334701272664e-18,
+ 4.3096109914012737e-16,
+ -1.0199395446720253e-16,
+ -2.7892530255288093e-16,
+ 1.4789989352448135e-16,
+ 6.782881022934827e-17,
+ 7.426013949194806e-17,
+ -4.301339185275744e-18,
+ -4.830734777309681e-17,
+ -1.3069453678337836e-17,
+ -1.8694281843698425e-17,
+ 5.01602323452156e-16,
+ 1.3830459841886623e-16,
+ 8.213903482651564e-17,
+ 2.832266417381567e-16,
+ 1.9885421925774783e-16,
+ 1.464109684218859e-17,
+ 2.2127081385793487e-17,
+ -1.7288074802358276e-16,
+ 1.110076382046163e-16,
+ -7.328820227219825e-17,
+ -2.329340604949326e-16,
+ -9.107258544208833e-17,
+ -1.4645232745251355e-16,
+ 3.750436897315427e-16,
+ -1.3565762045869652e-17,
+ -1.213060368309015e-16,
+ 1.342514134173564e-16,
+ -1.7470054537119942e-16,
+ 6.7001629616795234e-18,
+ 4.264116057710857e-17,
+ 1.5675072607879872e-16,
+ -8.660581013430199e-17,
+ -1.2349806545416703e-16,
+ -5.157471119268127e-17,
+ 3.085383684822793e-17,
+ -1.3942129224581281e-16,
+ 9.347140921849213e-18,
+ -9.181704799338607e-16,
+ -7.62825960896402e-16
+ ],
+ [
+ 3.3586109196443132,
+ 2.701288581112337,
+ -2.010474318748461,
+ 1.8743784702956894,
+ -1.1872014910639408,
+ -0.00605160884282599,
+ 1.0866485002730277,
+ -1.8718405191428642,
+ 1.3894128347350312,
+ 2.65660432031371,
+ -0.8529191423818239,
+ -0.6383469737491013,
+ -0.0924002298204785,
+ 1.1609205324691603,
+ -1.9250108778124873,
+ 1.3017947330894593,
+ 2.3301752297896496,
+ -0.6010734341700887,
+ -0.5484131962616635,
+ -0.23542796361294338,
+ 1.2737607825104253,
+ -1.9537109302151945,
+ 1.9282291592588983,
+ -1.3152189583951563,
+ 0.22019989610086838,
+ 0.539620348633552,
+ 0.584643071555462,
+ -2.3298146222713574,
+ -1.2999870884784834,
+ 1.901463444517204,
+ -1.2016752061888396,
+ 0.07857089375110855,
+ 0.6190502945674448,
+ 0.8074455167011653,
+ -2.5297127865091062,
+ -1.3234981294358825,
+ 1.8479493918944288,
+ -1.1290637335829394,
+ -0.009094344955812494,
+ 1.1450855523430548,
+ -1.8988227778584548,
+ 1.9834134384190278,
+ -3.103610556442803,
+ -3.118294893434878,
+ -1.8663809512198033,
+ -1.8168983992633723,
+ -0.8944655164028419,
+ -0.8117745619699069,
+ 1.111357539798737,
+ -1.8836604500131804,
+ 1.9905667545613295,
+ -1.4626620841097981,
+ 0.4193586323388276,
+ 0.7060690120587504,
+ -1.0362047505045549,
+ -1.6931339263118361,
+ 2.278180333546613,
+ 1.2754914317971,
+ -1.3996265132849692,
+ 0.33288644241395976,
+ 0.8383759721347864,
+ -1.0907746663228313,
+ -1.6747256995464443,
+ 2.0192991431103398,
+ 1.2408950558845178,
+ -1.292344541397186,
+ 0.1908153354683379,
+ 0.9158550511248595,
+ -1.814015012451005,
+ 2.0114709371862878,
+ -1.612758301986982,
+ 0.47575208568928046,
+ 1.185458569862764,
+ 1.602268875545792,
+ 0.7388667918391855,
+ -1.8524790899040682,
+ 1.9943607153182532,
+ -1.5198680542604297,
+ 0.4380651931331259,
+ 1.2008660181708042,
+ 1.9688449416480962,
+ 0.8818075184146136,
+ -1.9097552100671396,
+ 1.9775301785293584,
+ -1.4605191087665577,
+ 0.3503995501338376,
+ 0.7697406274755475,
+ -1.6972176350225867,
+ 2.742845377386497,
+ 3.3172990917844927,
+ 1.911560889069174,
+ 1.4755263537398764,
+ -1.3897144559128487,
+ 1.9555553270605448,
+ -1.9431073059062332,
+ 1.1940815861397933,
+ -0.13670747875691316,
+ -1.021504566992114,
+ 1.196842089087187,
+ 2.054281647042453,
+ -2.1769345645522282,
+ -1.2479187497081574,
+ 1.1237559568846043,
+ -0.047352548160906886,
+ -1.1423652150026105,
+ 1.1936644573872932,
+ 1.905049361968977,
+ -1.8149252510943887,
+ -1.1543950252140207,
+ 1.0020152079755775,
+ 0.09467122909113275,
+ -1.2143040499958961,
+ 1.9092660426925294,
+ -1.9885287409533892,
+ 1.3686324696784273,
+ -0.2789173981241734,
+ -0.8608489731794756,
+ -1.8445709442297866,
+ -0.8998384773405758,
+ 1.9365747172302192,
+ -1.948398131867472,
+ 1.2613301535962973,
+ -0.19740033016392022,
+ -0.7661480090947564,
+ -2.106539028418946,
+ -0.9776192196072747,
+ 1.9715988882539977,
+ -1.9195682510793846,
+ 1.1916327585343927,
+ -0.06644332439677335,
+ -1.0805262098534492,
+ 1.8238575840246924,
+ -1.3703298671890805,
+ -1.4421426463030553,
+ -1.919728239048743,
+ -1.9481961244540589,
+ -2.7837153886058505,
+ -2.753813337350936,
+ 1.8950664958216015,
+ -1.9985143943632133,
+ 1.4004622677321097,
+ -0.33858453197290667,
+ -0.8387188493389262,
+ 1.6908129700131087,
+ -1.3307674388356148,
+ -2.478352273963959,
+ 1.1854078296470898,
+ 0.8018918777463326,
+ -0.25174744361845564,
+ -0.9184868729797735,
+ 1.7651049158364691,
+ -1.3236874446592555,
+ -2.3087124399827608,
+ 0.9421963394609906,
+ 0.7282823812046362,
+ -0.11012718692659419,
+ -1.044672437965252,
+ 1.8048899662689681,
+ -2.02815929102433,
+ 1.51172429732185,
+ -0.5600219211923799,
+ -0.346060826285094,
+ -0.22859508633845238,
+ 2.2925691993662065,
+ 1.2453344593586317,
+ -2.0131563393379066,
+ 1.4144049991736924,
+ -0.42058556404959024,
+ -0.4290644927426234,
+ -0.43357184326289766,
+ 2.6459858894103934,
+ 1.3503038406780838,
+ -1.9821073400795874,
+ 1.3491461940024085,
+ -0.3356055281177543,
+ -0.9025019681557235,
+ 1.7271619919886536,
+ -2.048643195793318,
+ 2.8586578436419328,
+ 3.533190662095036,
+ -3.2342761950823377e-16,
+ -7.130296880207098e-16,
+ -1.0620999065180874e-16,
+ 2.895132143935597e-17,
+ 6.126306411720861e-17,
+ -4.7232012976777874e-17,
+ 3.3409824941016783e-16,
+ 6.56781406367104e-17,
+ -4.0697286137608955e-17,
+ -2.0183206946293872e-17,
+ 5.4960981825320226e-17,
+ -4.0085172484319716e-16,
+ 3.4576149604716557e-17,
+ -2.7090165061111656e-16,
+ -7.510799961981491e-17,
+ -1.8363409598677214e-17,
+ 8.5761423518773e-17,
+ 2.146947279881383e-16,
+ 1.4678319969753476e-16,
+ 3.474158572722716e-17,
+ 4.7604244252426737e-17,
+ 1.9670354966510996e-16,
+ 8.797065814501448e-17,
+ 1.3309336055978215e-16,
+ -1.9331210915364254e-16,
+ 2.3161057151484772e-17,
+ 2.6014830264792717e-17,
+ -7.462203100994001e-17,
+ 8.953454649062255e-17,
+ -5.3187713387159673e-17,
+ 2.43563331366239e-16,
+ -1.2316719320914582e-16,
+ -4.291413017925107e-16,
+ 1.3036366453835716e-16,
+ 1.831377876192403e-16,
+ -6.179039175771117e-17,
+ 1.0174321534402239e-16,
+ 9.471218013732166e-17,
+ 7.494256349730431e-17,
+ -2.3820733689995814e-16,
+ 5.97224402263286e-17,
+ -1.432676820941844e-16,
+ -9.347140921849211e-17,
+ 1.0368708978352201e-16,
+ 1.3152171739593138e-17,
+ -1.375601358675685e-16,
+ 7.601789829362323e-17,
+ 1.5203579658724646e-16,
+ -3.0498149184830125e-16,
+ -2.805176252320455e-17,
+ 8.366931895973874e-17,
+ -8.263534319404745e-17,
+ -9.92616735063633e-18,
+ -6.443736971788086e-17,
+ 1.0984958534704206e-16,
+ 3.8629334606226386e-17,
+ -2.5973471234165066e-17,
+ 2.866180822496241e-16,
+ -8.189088064274973e-17,
+ 5.350824587452398e-19,
+ -1.093946360101379e-16,
+ 3.647866501358852e-17,
+ -1.5227361101335546e-16,
+ 7.82512859475164e-17,
+ 3.432799542095065e-17,
+ 1.4789989352448135e-16,
+ -2.6614536208893662e-17,
+ -9.082443125832243e-17,
+ -4.135903062765138e-20,
+ 4.373717488874133e-17,
+ 1.652706863880949e-16,
+ -9.760731228125725e-18,
+ 7.552158992609141e-17,
+ 1.2849216840245594e-16,
+ 8.131185421396261e-17,
+ 1.258141711693155e-16,
+ -1.0687173514185116e-16,
+ -4.111087644388547e-17,
+ 2.522900868286734e-18,
+ 1.2833707203760224e-16,
+ 3.308722450212111e-17,
+ -1.0521737391674511e-16,
+ 2.4525905162197267e-17,
+ -1.075334796318936e-18,
+ 4.532949756790591e-17,
+ 6.89041450256672e-17,
+ 2.0811864211834174e-16,
+ 1.3404461826421813e-16,
+ 3.98618337189304e-16,
+ -3.768841665944732e-18,
+ 3.1432863277015047e-16,
+ -9.509268321909606e-16,
+ -2.652975019610698e-16,
+ 1.2606232535308142e-16,
+ 7.506664058918726e-17,
+ -4.528813853727826e-17,
+ 3.600717206443329e-16,
+ 5.575197328607407e-17,
+ -4.0842042744805735e-17,
+ 9.640790039305536e-17,
+ 5.302227726464907e-17,
+ 9.049355901330122e-17,
+ -7.454965270634162e-17,
+ 1.867657500871096e-16,
+ -4.005363622346613e-17,
+ -3.6070761574023304e-16,
+ -1.381391622963556e-17,
+ -1.49719690872098e-17,
+ -1.6651145730692445e-16,
+ -6.832511859688009e-17,
+ -2.4153673886548405e-17,
+ -1.7834014006643274e-16,
+ -1.7019241103278542e-16,
+ -5.6739420142309234e-18,
+ -6.609173094298691e-17,
+ -1.582965198485072e-16,
+ 1.477758164325984e-16,
+ 1.2045817670303466e-16,
+ -1.8468875126777723e-16,
+ 1.10924920143361e-16,
+ 9.512577044359818e-19,
+ -1.1634295315558334e-16,
+ 3.394749233917625e-16,
+ 1.040800005744847e-16,
+ -7.217150844525166e-17,
+ -1.3937993321518516e-16,
+ -8.309029253095162e-17,
+ -1.1903129014638068e-16,
+ 1.048865016717239e-16,
+ 9.132073962585424e-17,
+ 5.872982349126496e-18,
+ 4.213709739133407e-17,
+ 5.480485148470085e-16,
+ -2.1127356067340726e-17,
+ 7.146840492458159e-17,
+ -1.4186147505284425e-16,
+ 8.480669230199915e-17,
+ 1.323488980084844e-18,
+ 3.18299099710405e-16,
+ -2.547716286663325e-17,
+ 1.6005944852901083e-16,
+ -2.649666297160486e-16,
+ 2.0596797252570386e-17,
+ 4.8141911650586205e-17,
+ 3.095309852173429e-16,
+ -5.742701402649395e-17,
+ -3.6313228891077915e-17,
+ 6.799424635185887e-17,
+ -4.028369583133244e-17,
+ -2.3574647457761285e-18,
+ -3.565148440103549e-17,
+ -2.840538223507097e-16,
+ -4.6322114302969544e-17,
+ -1.2494563152613483e-16,
+ -2.7313503826500974e-16,
+ -7.200607232274106e-17,
+ -6.519217202683549e-17,
+ -2.929046549050271e-16,
+ 8.354524186785578e-17,
+ -5.1450634100798315e-17,
+ 1.0281855014034133e-16,
+ 7.403266482349598e-18,
+ 7.558879835086135e-17,
+ 8.143593130584556e-17,
+ -1.703992061859237e-17,
+ 2.776741918763945e-17,
+ 3.879477072873699e-17,
+ -1.6063847495779795e-16,
+ 9.793818452627846e-17,
+ -7.965749298885655e-17,
+ 6.658803931051873e-17,
+ -5.9557004103817985e-18,
+ 1.462455322993753e-16,
+ 1.3630902519108205e-16,
+ 2.10103875588469e-17,
+ -5.79543416669965e-17,
+ 2.010048888503857e-17,
+ -1.4392942658422682e-17,
+ -9.264422860593909e-17,
+ 6.72663274128122e-16
+ ],
+ [
+ -4.387542681229006,
+ -3.403332190304343,
+ 3.091786128392355,
+ -4.282577240619799,
+ 4.088038421388131,
+ -2.4519706357959468,
+ 0.0791360046617541,
+ 2.3241808571198472,
+ -2.6382572273576663,
+ -4.5698081780693105,
+ 4.543251134633581,
+ 2.6272139155220593,
+ -2.294818372803312,
+ -0.11192480165163007,
+ 2.5787276137650528,
+ -2.6184421609887014,
+ -4.217471078317288,
+ 3.770971453385401,
+ 2.4238979310598543,
+ -2.027623790569787,
+ -0.4184845919639159,
+ 2.7275179540557204,
+ -4.196899463642899,
+ 4.199583396582573,
+ -2.840342886235589,
+ 0.48311668450544615,
+ 1.65598659548303,
+ 4.094788615300796,
+ 2.0225086209574514,
+ -4.246744645082227,
+ 4.102333443154862,
+ -2.59979435314814,
+ 0.30575005635872804,
+ 1.4300498936674328,
+ 4.656334057086544,
+ 2.1837716439631807,
+ -4.310987777884703,
+ 4.03140244147706,
+ -2.4465766355347207,
+ -0.0721688494875779,
+ 2.447899764336567,
+ -4.032323694932607,
+ 7.836155663011462,
+ 7.740811851139077,
+ 2.4826378085932728,
+ 2.252935376037433,
+ -2.5819180162321285,
+ -2.8024053562476676,
+ 0.01578568603436732,
+ 2.3775474429355583,
+ -3.996942289459141,
+ 4.301122752828914,
+ -3.156633150190422,
+ 0.9897044504128338,
+ 0.8500952768644353,
+ 0.7729242628389659,
+ -5.397149509475366,
+ -2.7415493433026086,
+ 4.262265684735298,
+ -3.0213805368959723,
+ 0.6881948285228817,
+ 1.0512954765603988,
+ 1.0538179333205517,
+ -5.003821909649811,
+ -2.7723181942331045,
+ 4.181137299050162,
+ -2.7916587828468176,
+ 0.5026503086696981,
+ 2.0790124335089346,
+ -3.843014954788773,
+ 4.366165088921828,
+ -2.3304781824165612,
+ -4.522303283337944,
+ -0.8384677913457951,
+ -0.005233564699685719,
+ 2.2420249500638474,
+ -3.9808215135318097,
+ 4.331698327148173,
+ -2.369709735334801,
+ -4.99060050378345,
+ -1.3771517773005686,
+ -0.2818577879968722,
+ 2.500185986437521,
+ -4.05639805668115,
+ 4.29987438456005,
+ -3.049802889759576,
+ 0.8453461925579758,
+ 1.6375740760480082,
+ -3.5962035496098657,
+ -4.195704139390688,
+ 0.26367288456844185,
+ 0.4240686866923703,
+ 0.6620796229601976,
+ -2.9163810649930557,
+ 4.22581675872136,
+ -4.121169819897465,
+ 2.650482302522487,
+ -0.3176006833870688,
+ -1.281234816813667,
+ -1.648169607221482,
+ 5.724558137750495,
+ 2.9786924055831463,
+ -4.054531335429856,
+ 2.4960065856596434,
+ -0.010670160989772953,
+ -1.4479763697049635,
+ -1.7989568532516658,
+ 4.995633903837432,
+ 2.8407932254121695,
+ -3.928555738874826,
+ 2.2375748971517795,
+ 0.1765554065955228,
+ -2.6487128177868735,
+ 4.121791643499496,
+ -4.26015067579045,
+ 2.0489386696627925,
+ 4.1327097910306305,
+ 1.592598405921307,
+ 0.44558992767845945,
+ -2.795570917982008,
+ 4.215459879270341,
+ -4.178966013283348,
+ 1.930859624519718,
+ 4.260172036490245,
+ 2.0843255438363415,
+ 0.6642418227625981,
+ -3.024873381822155,
+ 4.263059133511037,
+ -4.118979642526227,
+ 2.52841870440276,
+ -0.1702358628095421,
+ -2.2446823489874808,
+ 6.49718457691369,
+ 6.537904013785802,
+ 4.076293593003543,
+ 3.9805840341856458,
+ 2.2380865366467377,
+ 2.0658652181604507,
+ -2.5742516290956554,
+ 4.091256139968174,
+ -4.2811804364677055,
+ 2.984587197125928,
+ -0.754459182970434,
+ -1.7214891181266716,
+ 2.3036482638311875,
+ 3.8104342191429508,
+ -4.799186262203142,
+ -2.7080530281200113,
+ 2.8449980580683927,
+ -0.5655818816553554,
+ -1.9996341384716545,
+ 2.413198673218305,
+ 3.7472549327026092,
+ -4.237306476648412,
+ -2.626694174107842,
+ 2.6044891254027394,
+ -0.2597436326815991,
+ -2.1642024212544015,
+ 3.9546346052697703,
+ -4.340599418039161,
+ 3.3226680786056484,
+ -0.9116772875660829,
+ -2.36834394392417,
+ -3.597928104860336,
+ -1.687843781173888,
+ 4.031747934996661,
+ -4.289634925845142,
+ 3.1145084251023745,
+ -0.822613687094277,
+ -2.368324031167675,
+ -4.3949897180333535,
+ -1.9936395904090156,
+ 4.141700582221276,
+ -4.246972264569367,
+ 2.9798183821535407,
+ -0.6048876300898571,
+ -1.8561888117796372,
+ 3.7209925099630334,
+ -5.996489176521463,
+ -7.263924728171828,
+ 3.90429249125029e-16,
+ 1.2566527865905594e-15,
+ 2.0514079191315083e-17,
+ -1.6336817097922294e-16,
+ -5.773720675620133e-17,
+ 1.0521737391674511e-16,
+ -3.743819452415003e-16,
+ -1.621274000603934e-16,
+ 3.692534254436715e-16,
+ -3.90429249125029e-17,
+ -1.10924920143361e-16,
+ 6.91522992094331e-16,
+ -3.2210413052814893e-16,
+ 2.9761958439657936e-16,
+ 1.6386447934675476e-16,
+ 2.613890735667567e-17,
+ -1.0178457437465004e-16,
+ -2.216844041642114e-16,
+ -1.8332390325706473e-16,
+ 5.459392042849982e-17,
+ -1.7163997710475324e-17,
+ -2.302870825347629e-16,
+ -1.654361225106055e-16,
+ -2.1142736456855385e-16,
+ 1.6609786700064793e-16,
+ 9.264422860593909e-17,
+ -2.5890753172909763e-17,
+ 1.981924747677054e-16,
+ -4.317882797526804e-17,
+ -1.0885696861197843e-16,
+ -6.408168205448304e-16,
+ 2.761542475008283e-16,
+ 3.9439971606528355e-16,
+ -3.1945715256797924e-16,
+ -3.9522689667783657e-16,
+ 3.4146015686188977e-16,
+ -1.6651145730692445e-16,
+ -1.0637542677431935e-16,
+ 1.4517019750305636e-16,
+ 2.7830491709346616e-16,
+ -1.3561109154924043e-16,
+ -9.760731228125725e-18,
+ 3.267363419584459e-16,
+ -2.2805369488086973e-16,
+ -1.7755431848450737e-16,
+ 3.535188992292644e-16,
+ -2.2325604732806217e-16,
+ 1.1282743555223297e-16,
+ 5.09543257332665e-16,
+ 1.1681858200780133e-16,
+ -3.505591435999731e-16,
+ -4.3344264097778644e-17,
+ 9.785546646502316e-17,
+ 3.0804206011474746e-16,
+ 1.6278914455043582e-16,
+ -8.329708768408987e-17,
+ 9.214792023840727e-17,
+ -4.0647655300855775e-16,
+ 1.1712877473750872e-16,
+ -2.8785885316845363e-17,
+ 2.834747959219226e-16,
+ 3.7512640779279805e-17,
+ 2.0464448354561902e-16,
+ -2.2830184906463564e-16,
+ -1.92071338234813e-16,
+ -4.08461786478685e-16,
+ 2.843846945957309e-16,
+ 1.6254099036666991e-16,
+ 3.926626367789222e-16,
+ 3.221868485894043e-17,
+ -2.240005098793599e-16,
+ 1.2093380555525265e-16,
+ -7.130296880207099e-17,
+ -2.941867848544843e-16,
+ -2.6049985440826224e-16,
+ -1.7552772598375245e-16,
+ 3.4013666788180493e-16,
+ 2.7098436867237187e-16,
+ -1.5708159832381993e-16,
+ 2.689370966563031e-17,
+ -6.981404369947554e-17,
+ 1.5187036046473586e-16,
+ -2.456726419282492e-17,
+ -3.2533013491710574e-16,
+ -8.096030245362758e-18,
+ -9.640790039305536e-17,
+ -2.961306592939839e-16,
+ -7.130296880207099e-17,
+ -1.7668577884132669e-16,
+ -7.517003816575639e-17,
+ 8.437242248040881e-17,
+ 1.0482032722271967e-15,
+ 3.4096384849435796e-16,
+ -2.0791184696520348e-16,
+ 3.0605682664462024e-17,
+ 1.0683037611122351e-16,
+ -4.997825261045393e-16,
+ 1.2895745749701701e-16,
+ -3.3434640359393374e-16,
+ -3.076905083544124e-16,
+ -3.3087224502121103e-18,
+ -8.093135113218822e-16,
+ 1.4765173934071544e-16,
+ -2.603964568316931e-16,
+ 6.718774525461967e-17,
+ 3.3514256493351603e-16,
+ 9.826905677129968e-17,
+ -7.047578818951796e-17,
+ 2.8529459326953925e-16,
+ 7.692779696743156e-17,
+ -7.841672207002701e-17,
+ 3.5320612156014277e-16,
+ 3.610229783487689e-16,
+ -1.119588959090523e-16,
+ 2.008394527278751e-16,
+ 1.1249656330721176e-16,
+ -2.0141847915666221e-16,
+ -1.7015105200215777e-16,
+ 1.8512302108936757e-16,
+ -1.0083331667021406e-16,
+ 1.0091603473146936e-16,
+ 1.063340677436917e-16,
+ -5.3187713387159673e-17,
+ -3.389372559936031e-17,
+ 2.932355271500483e-16,
+ 3.537851479889299e-16,
+ 1.9823383379833306e-16,
+ 1.1604827006236133e-16,
+ -5.641371777611649e-17,
+ 1.25400580863039e-16,
+ 2.883965205666131e-16,
+ 1.3689839137752608e-16,
+ -4.931237221734874e-16,
+ -1.4636960939125825e-16,
+ 1.0902240473448904e-16,
+ 2.892650602097938e-16,
+ -2.375352526522588e-16,
+ -1.9653811354259935e-16,
+ -5.429613540798074e-16,
+ 1.138200522872966e-16,
+ -4.255017070972774e-16,
+ 3.7500233070091505e-16,
+ -1.3731198168380258e-17,
+ 1.3665023719376017e-16,
+ -9.072516958481608e-16,
+ 3.5982356646056704e-18,
+ -4.384057246531046e-17,
+ -2.2300789314429626e-16,
+ 5.194694246833013e-17,
+ 1.0405544365004953e-16,
+ 2.7611288847020064e-16,
+ 5.199657330508332e-16,
+ 8.619221982802547e-17,
+ 2.357464745776129e-16,
+ 5.786955565420982e-16,
+ -2.8289576949313546e-17,
+ 1.0455562942670269e-16,
+ 4.992862177370075e-16,
+ -1.6874484496081765e-17,
+ 1.5956314016147901e-16,
+ -1.889280519071115e-16,
+ -2.605618929542037e-17,
+ -2.6945408453914873e-17,
+ -1.0343376572092764e-16,
+ -5.740633451118012e-16,
+ -1.127757367639484e-16,
+ -2.1539783150880838e-16,
+ 2.1837568171399928e-16,
+ -4.0928896709123804e-16,
+ 2.594038400966295e-16,
+ -8.156000839772852e-17,
+ -1.799945012915388e-16,
+ -2.383934525377826e-16,
+ -1.7705801011697555e-16,
+ -8.644037401179138e-17,
+ -4.350970022028925e-17,
+ -2.2333876538931744e-17,
+ -1.3036366453835716e-16,
+ 4.0366413892587744e-17,
+ -7.040961374051371e-16
+ ],
+ [
+ -6.2938697673263295,
+ -4.924679199201036,
+ 4.2705720233135045,
+ -5.526650112069121,
+ 4.995807196866412,
+ -2.6880133045032646,
+ -0.4021033847920821,
+ 3.3687176898935904,
+ -3.504867404614589,
+ -6.1818282453771785,
+ 5.352215661846683,
+ 3.1594254970970232,
+ -2.4773640315865433,
+ -0.6439461531341367,
+ 3.671259978962395,
+ -3.444286994501789,
+ -5.651232952968027,
+ 4.39499399562879,
+ 2.8969320620836316,
+ -2.121656976415923,
+ -1.029913804118609,
+ 3.8466004316374693,
+ -5.456749685383476,
+ 5.1747321110522,
+ -3.2135938032220803,
+ 0.2893813808759407,
+ 1.5533792778905984,
+ 5.516763249197226,
+ 2.7910913300709144,
+ -5.499156126729192,
+ 5.018155593509072,
+ -2.8871135927432316,
+ 0.0599587246795656,
+ 1.2071515705061646,
+ 6.2202296467536415,
+ 2.9780662715507513,
+ -5.546018250042787,
+ 4.907994392590068,
+ -2.680753618555391,
+ -0.5936694801041786,
+ 3.5161231247409814,
+ -5.301077954692788,
+ 9.956014077176981,
+ 9.858164363006528,
+ 3.54619315606961,
+ 3.2727674566618985,
+ -2.4295229848876714,
+ -2.707600811681804,
+ -0.4824126626856284,
+ 3.432374657036884,
+ -5.2655179973383595,
+ 5.351340494177469,
+ -3.648252066817505,
+ 0.7636518907225315,
+ 1.3905320502418714,
+ 1.5976159133704033,
+ -6.919598267507649,
+ -3.567383134748245,
+ 5.281105960384842,
+ -3.4615225347893848,
+ 0.37513889294752606,
+ 1.6350139451015713,
+ 1.8969514072680376,
+ -6.374106594799155,
+ -3.585712274157192,
+ 5.144394937365838,
+ -3.1472649227948173,
+ 0.13734548499436128,
+ 3.0746572351397563,
+ -5.106293233694052,
+ 5.489162208247743,
+ -2.7624165967157768,
+ -5.4768829763952285,
+ -1.6290460594724532,
+ -0.3336654067156699,
+ 3.270467391790599,
+ -5.2492792578478635,
+ 5.410484453659515,
+ -2.788637095354505,
+ -5.9963811206750455,
+ -2.381463398495428,
+ -0.699938838783884,
+ 3.5782246789490104,
+ -5.324829344369164,
+ 5.349020305252329,
+ -3.5006843745823466,
+ 0.577347716540325,
+ 2.539561314883389,
+ -5.154268570249689,
+ -6.065525541980384,
+ -0.559773910841806,
+ -0.1906538299407548,
+ 1.335172963141702,
+ -4.06705498590499,
+ 5.482131733143716,
+ -5.048002458425396,
+ 2.9558067475969665,
+ 0.09925770357556392,
+ -1.933815939438625,
+ -2.716076957499424,
+ 7.233070052856785,
+ 3.814747619302296,
+ -4.943553495345429,
+ 2.747320566626309,
+ 0.4891901779771189,
+ -2.11494273841412,
+ -2.814913299080884,
+ 6.2744175874656465,
+ 3.6222747745479076,
+ -4.751892145327244,
+ 2.4010879650554044,
+ 0.7257979690508508,
+ -3.753475026678061,
+ 5.388404090651708,
+ -5.277618445216235,
+ 2.3668357080949267,
+ 4.906290489628179,
+ 2.5621581156398907,
+ 0.8871825396307429,
+ -3.9260842291176337,
+ 5.473416757266436,
+ -5.140835831230707,
+ 2.2013909356758625,
+ 5.0037954462630285,
+ 3.2167399430144794,
+ 1.161069665152391,
+ -4.192938198610849,
+ 5.512445560251365,
+ -5.044512932123266,
+ 2.7910009115124406,
+ 0.28676838115115894,
+ -3.273297151985844,
+ 8.338002142547259,
+ 8.103715293816055,
+ 5.316813162512453,
+ 5.225265415344196,
+ 3.6856291201988425,
+ 3.4834505946247663,
+ -3.665593098766508,
+ 5.35940905665706,
+ -5.314777661150188,
+ 3.411179833422327,
+ -0.4601286363879272,
+ -2.6414506540302813,
+ 3.11252531968196,
+ 5.271390058855011,
+ -5.779980507853501,
+ -3.320515751956311,
+ 3.2201080200252385,
+ -0.21767047003047874,
+ -2.978636737610651,
+ 3.2293127939404522,
+ 5.126936503135032,
+ -5.056922803959801,
+ -3.198779102805453,
+ 2.8936767576208444,
+ 0.1728640320169044,
+ -3.176737446850103,
+ 5.223011702051714,
+ -5.429215281073177,
+ 3.8795725508333674,
+ -0.8444563930032575,
+ -2.491263065356316,
+ -4.9563028934067255,
+ -2.4004669225683606,
+ 5.301053795199967,
+ -5.329949274634259,
+ 3.5900890377082653,
+ -0.7101145301923655,
+ -2.400264283134991,
+ -5.985733175285255,
+ -2.781822493503495,
+ 5.407362024382808,
+ -5.254566059481848,
+ 3.404638256813066,
+ -0.2680681571263509,
+ -2.80505330236148,
+ 4.976326551302141,
+ -7.833349720197448,
+ -9.520233033633422,
+ 7.646457582440187e-16,
+ 1.8250913035370003e-15,
+ 8.503416697045123e-17,
+ -1.738733647586464e-16,
+ -1.0397660299791557e-16,
+ 1.0240495983406481e-16,
+ -5.276585127475764e-16,
+ -2.302870825347629e-16,
+ 3.5800376911295033e-16,
+ -3.672681919735443e-17,
+ -1.1650838927809395e-16,
+ 9.492724709658546e-16,
+ -3.6743362809605484e-16,
+ 4.1276312566396076e-16,
+ 2.0497535579064023e-16,
+ 9.926167350636332e-19,
+ -1.4148924377719538e-16,
+ -3.0609818567524784e-16,
+ -2.5197989409896606e-16,
+ 7.246102165964522e-17,
+ -1.631613758260847e-17,
+ -3.1151621868747017e-16,
+ -2.2060906936789246e-16,
+ -2.7702278714400897e-16,
+ 2.544407564213113e-16,
+ 5.69100261436483e-17,
+ -3.8298462361205175e-17,
+ 2.467066176939405e-16,
+ -2.0886310466963946e-17,
+ -8.834288942066334e-17,
+ -7.762262868197611e-16,
+ 3.5552222727529125e-16,
+ 5.059036626374317e-16,
+ -3.752091258540533e-16,
+ -5.151680854980256e-16,
+ 3.419564652294216e-16,
+ -1.981097567064501e-16,
+ -1.1894857208512538e-16,
+ 1.403725499502488e-16,
+ 4.1316637621258036e-16,
+ -1.2542126037835282e-16,
+ 2.3822801641527194e-17,
+ 4.440305528184652e-16,
+ -2.817790756661889e-16,
+ -2.275367069980241e-16,
+ 4.365943283585842e-16,
+ -2.7636104265396655e-16,
+ 4.301339185275743e-17,
+ 6.862290361739917e-16,
+ 1.4209411960012479e-16,
+ -4.4270706383838036e-16,
+ -3.3004506440865804e-17,
+ 1.375601358675685e-16,
+ 3.603198748280988e-16,
+ 1.167979024924875e-16,
+ -1.134891800422754e-16,
+ 9.496033432108756e-17,
+ -5.107013101902393e-16,
+ 1.7618947047379487e-16,
+ -3.821574429994987e-17,
+ 4.0428452438529223e-16,
+ 2.99439381744196e-17,
+ 2.9786773858034527e-16,
+ -3.1333601603508683e-16,
+ -2.5212465070616284e-16,
+ -5.083852044750908e-16,
+ 2.727214479587332e-16,
+ 2.1945101651031822e-16,
+ 4.3224322908958456e-16,
+ 9.223063829966259e-18,
+ -2.905058311286233e-16,
+ 1.3830459841886623e-16,
+ -1.0124690697649058e-16,
+ -3.896847865737313e-16,
+ -3.6809537258609727e-16,
+ -2.478233115208871e-16,
+ 4.2103493178949104e-16,
+ 3.2334490144697847e-16,
+ -1.648570960818184e-16,
+ -2.322309569742625e-17,
+ -7.510799961981491e-17,
+ 1.8727369068200544e-16,
+ -3.5982356646056704e-17,
+ -3.5932725809303517e-16,
+ -5.258800744305873e-17,
+ -1.1580528575742387e-16,
+ -4.106124560713229e-16,
+ -1.2176098616780567e-16,
+ -3.3748968992163524e-16,
+ -8.841526772426173e-17,
+ 3.871205266748169e-17,
+ 1.3916486625592136e-15,
+ 4.71823821400247e-16,
+ -2.8707303158652825e-16,
+ -8.437242248040882e-18,
+ 1.0587911840678753e-16,
+ -6.48344164119063e-16,
+ 1.2920561168078292e-16,
+ -3.578383329904397e-16,
+ -3.830880211886209e-16,
+ 2.3822801641527194e-17,
+ -9.582060215814273e-16,
+ 2.1332987997742581e-16,
+ -3.7880736151865897e-16,
+ 2.638706154044158e-17,
+ 4.0182366206294697e-16,
+ 1.1563984963491327e-16,
+ -7.047578818951796e-17,
+ 3.8860945177741235e-16,
+ 1.138200522872966e-16,
+ -9.098986738083303e-17,
+ 4.373303898567857e-16,
+ 4.631384249684402e-16,
+ -1.2473883637299657e-16,
+ 2.359119107001235e-16,
+ 1.2093380555525265e-16,
+ -3.094482671560876e-16,
+ -2.416194569267394e-16,
+ 2.639119744350435e-16,
+ -1.3896634290890865e-16,
+ 1.494715366883321e-16,
+ 1.3921449709267456e-16,
+ -1.6307865776482938e-16,
+ -6.430295286834099e-17,
+ 3.398057956367837e-16,
+ 4.197941608706615e-16,
+ 2.3748355386397425e-16,
+ 1.7115013108575697e-16,
+ -1.0596183646804283e-16,
+ 1.4591466005435408e-16,
+ 3.5204806870256853e-16,
+ 1.2101652361650795e-16,
+ -7.10630864244306e-16,
+ -1.8487486690560166e-16,
+ 9.578751493364059e-17,
+ 3.338500952264019e-16,
+ -2.7675395344492923e-16,
+ -2.4054412213042045e-16,
+ -6.766337410683765e-16,
+ 1.3615392882622836e-16,
+ -5.171533189681529e-16,
+ 5.044147375348363e-16,
+ -2.3822801641527194e-17,
+ 9.826905677129968e-17,
+ -1.0104838362947786e-15,
+ 1.050519377942345e-17,
+ -4.020097777007714e-17,
+ -2.4385284458063256e-16,
+ 4.0035541647566533e-17,
+ 1.2399437382169885e-16,
+ 3.207806415480641e-16,
+ 6.941699700545007e-16,
+ 1.225881667803587e-16,
+ 2.901749588836021e-16,
+ 7.066603973040514e-16,
+ -2.8951321439355965e-18,
+ 1.1795595535006175e-16,
+ 6.000368163459663e-16,
+ -6.385834328909374e-17,
+ 1.9058241313221755e-16,
+ -2.362427829451447e-16,
+ -5.707546226615891e-17,
+ -4.6549588971421626e-17,
+ -1.4402248440313903e-16,
+ -6.415612830961282e-16,
+ -1.3858829551957777e-16,
+ -2.807450999004976e-16,
+ 2.9480717031389906e-16,
+ -5.247633806036408e-16,
+ 3.2872157542857315e-16,
+ -1.108422020821057e-16,
+ -1.7867101231145395e-16,
+ -3.0473333766453535e-16,
+ -2.2234614865425384e-16,
+ -1.1150394657214813e-16,
+ -3.556876633978019e-17,
+ -3.407984123718474e-17,
+ -1.588186776101813e-16,
+ -1.3036366453835716e-16,
+ -9.304127529996455e-16
+ ],
+ [
+ -5.766132031488885,
+ -4.657587643395949,
+ 3.349690203250265,
+ -2.954155912119307,
+ 1.606716707871899,
+ 0.37378059945224246,
+ -2.131902775202281,
+ 3.204968530245614,
+ -2.254420397697184,
+ -4.386019275302688,
+ 0.9188016468975146,
+ 0.8106612402006859,
+ 0.5161950379346278,
+ -2.243230378318959,
+ 3.268040306408477,
+ -2.088933392670559,
+ -3.813797206073267,
+ 0.5569575283895283,
+ 0.6699115167900456,
+ 0.7477340396736838,
+ -2.4128722747541933,
+ 3.298376332919093,
+ -3.0713609122758663,
+ 1.8352918606114008,
+ 0.00011118916564841162,
+ -1.1154120610573581,
+ -1.3886328507201864,
+ 3.8325984125713504,
+ 2.180253879907954,
+ -3.0106762898427992,
+ 1.6334778199577604,
+ 0.23564774592999996,
+ -1.2400680686069505,
+ -1.781498731700847,
+ 4.1279710077764955,
+ 2.199847280346671,
+ -2.898680070743318,
+ 1.50378320463848,
+ 0.378761064330408,
+ -2.2202695397237875,
+ 3.2371667207182635,
+ -3.2037272880812764,
+ 4.7264842942964576,
+ 4.769861622745084,
+ 3.197132352143236,
+ 3.1384384208850857,
+ 2.1321704727989594,
+ 2.0080961292482495,
+ -2.1693462131123713,
+ 3.2191891248078948,
+ -3.2231347636080874,
+ 2.102940898312422,
+ -0.3329116993844632,
+ -1.544238013596622,
+ 1.8590650757574572,
+ 3.1356744671755994,
+ -3.525997564360037,
+ -2.01871805964613,
+ 1.9890483062653734,
+ -0.18678086623883872,
+ -1.7496922968284192,
+ 1.9320887679782899,
+ 3.0555646409581656,
+ -3.090357237975599,
+ -1.9472447494592378,
+ 1.794247748301398,
+ 0.048881128795665,
+ -1.870524904862303,
+ 3.1326699584029285,
+ -3.287913308623934,
+ 2.381482310709373,
+ -0.5449316305832501,
+ -1.562152193641412,
+ -2.9503890459377047,
+ -1.421203231183205,
+ 3.182005621287386,
+ -3.2318172505950518,
+ 2.2094107668360863,
+ -0.46615763776380065,
+ -1.5173026531707936,
+ -3.570227732529296,
+ -1.6523107145960458,
+ 3.249941577353874,
+ -3.1886215644750466,
+ 2.0990206521070056,
+ -0.217151270893073,
+ -1.6438636471334593,
+ 2.9781091311044894,
+ -4.706871680335912,
+ -5.7171154467617304,
+ -3.7209893610060636,
+ -2.9072984796361423,
+ 2.5414491697335735,
+ -3.32771112058709,
+ 3.039609725362932,
+ -1.6704461379641262,
+ -0.18646077396001004,
+ 1.9886229869775962,
+ -2.099658342524631,
+ -3.691538625889795,
+ 3.2790585612783567,
+ 1.9279307361901543,
+ -1.544475026752642,
+ -0.3326293607790672,
+ 2.1736345581138052,
+ -2.0670126336513066,
+ -3.3803239298768246,
+ 2.698311458368835,
+ 1.769867952586738,
+ -1.3314463830012002,
+ -0.5660857544746287,
+ 2.281078170040844,
+ -3.281154337713119,
+ 3.143520430771261,
+ -1.9842883649273133,
+ 0.21087736514627842,
+ 0.9993813039068813,
+ 3.2967314153679586,
+ 1.6609579378282067,
+ -3.30911011438799,
+ 3.052619885967082,
+ -1.7894644289976256,
+ 0.07277444794800178,
+ 0.7968489702607927,
+ 3.7226800850034056,
+ 1.7758708284609812,
+ -3.341259462523336,
+ 2.9883372597696916,
+ -1.6661136714663625,
+ -0.3022203061399344,
+ 2.078728097715953,
+ -3.181177485169304,
+ 6.012621938704998,
+ 5.950920551503751,
+ 3.0563102250417162,
+ 3.1289033593648696,
+ 5.001610641550284,
+ 4.969861642806264,
+ -3.265408229560326,
+ 3.1676278638236437,
+ -2.0422174193142446,
+ 0.14899631260872684,
+ 1.706256772561384,
+ -3.00821506733704,
+ 2.1947728809597855,
+ 4.1637339461703595,
+ -1.518010379912609,
+ -1.1125652845158063,
+ 0.0053065186074933495,
+ 1.8309637072885612,
+ -3.1057297399822024,
+ 2.1637227312175162,
+ 3.847290185610468,
+ -1.139334843571102,
+ -0.9838447750252496,
+ -0.23022769137718352,
+ 2.0239457529670077,
+ -3.1573510220475143,
+ 3.2464561522514024,
+ -2.2469489699078937,
+ 0.5213948786907455,
+ 0.8110336303829713,
+ 0.8166593061967078,
+ -3.8399974484546178,
+ -2.128303609101503,
+ 3.206555647874238,
+ -2.0665066624907724,
+ 0.2873676933790585,
+ 0.9566179192029076,
+ 1.2111546717442998,
+ -4.393407394093531,
+ -2.281692533455411,
+ 3.128067700213265,
+ -1.9489101211936573,
+ 0.1440087624366713,
+ 1.8052642705830972,
+ -3.056808226709831,
+ 3.323064074276999,
+ -4.547890010191606,
+ -5.644454035358357,
+ 1.2060293331023142e-15,
+ 1.7299655330934019e-15,
+ 2.574186066265022e-16,
+ -6.898686308692251e-17,
+ -1.0885696861197843e-16,
+ -8.156000839772852e-17,
+ -5.579333231670172e-16,
+ 1.4558378780933287e-17,
+ 2.646977960169688e-18,
+ 2.0844951436336294e-17,
+ -2.936491174563248e-18,
+ 6.677001904528038e-16,
+ 2.2003004293910533e-17,
+ 4.0680742525357896e-16,
+ 3.6313228891077915e-17,
+ -1.6692504761320096e-16,
+ -9.028676386016296e-17,
+ -2.871971086784112e-16,
+ -1.8231060700668727e-16,
+ -8.296621543906866e-17,
+ 7.137017722684092e-18,
+ -2.565914260139492e-16,
+ -1.6729727888884982e-16,
+ -2.416194569267394e-16,
+ 2.3748355386397425e-16,
+ -2.3706996355769773e-16,
+ -6.118034605595331e-17,
+ 9.840347362083954e-17,
+ -4.9341323538788095e-17,
+ 9.678013166870423e-17,
+ -2.4684103454348037e-16,
+ 2.0547166415817205e-16,
+ 3.636285972783109e-16,
+ -1.8727369068200544e-16,
+ -2.991912275604301e-16,
+ -1.1464723289984964e-16,
+ -1.0058516248644815e-16,
+ -1.0538281003925571e-16,
+ -1.1291015361348828e-16,
+ 4.0275424025206913e-16,
+ 8.329708768408987e-17,
+ 1.5873595954892599e-16,
+ 2.33595804984975e-16,
+ -1.7197084934977443e-16,
+ -1.3059113920680924e-16,
+ 1.651155900232412e-16,
+ -1.254832989242943e-16,
+ -4.618976540496107e-16,
+ 5.922613185879678e-16,
+ 3.9456515218779414e-17,
+ -1.5782606087511766e-16,
+ 1.2498699055676248e-16,
+ 2.225115847767644e-17,
+ 1.19941188820189e-17,
+ -2.2879815743216745e-16,
+ -8.197359870400503e-17,
+ -3.341809674714232e-17,
+ -3.8199200687698813e-16,
+ 1.9008610476468574e-16,
+ -1.075334796318936e-18,
+ 3.029342198322325e-16,
+ -8.346252380660048e-17,
+ 3.243375181820421e-16,
+ -2.219325583479773e-16,
+ -1.4845824043795464e-16,
+ -2.2019547906161594e-16,
+ -8.848764602786012e-17,
+ 2.040654571168319e-16,
+ -7.833400400877171e-17,
+ -1.1001502146955267e-16,
+ -1.8346865986426151e-16,
+ 5.39321759384574e-17,
+ -8.08982639076861e-17,
+ -2.468720538164511e-16,
+ -2.3458842172003865e-16,
+ -2.779326858178173e-16,
+ 1.3813916229635562e-16,
+ 5.078888961075589e-17,
+ 3.88774887899923e-18,
+ -2.405854811610481e-16,
+ -2.812414082680294e-17,
+ 2.905058311286233e-16,
+ -7.130296880207099e-17,
+ 9.59529510561512e-18,
+ -1.6742135598073278e-16,
+ -3.168101746078096e-17,
+ -2.9133301174117635e-16,
+ -2.269783600845508e-16,
+ -4.493658677694323e-16,
+ -8.602678370551488e-18,
+ -5.694311336815043e-16,
+ 1.3334151474354804e-15,
+ 4.519301276683467e-16,
+ -1.933534681842702e-16,
+ -1.8696349795229806e-16,
+ -2.0472720160687432e-17,
+ -5.911032657303936e-16,
+ -1.7825742200517744e-16,
+ 2.451763335607174e-16,
+ -6.435465165662555e-17,
+ 2.605618929542037e-17,
+ -5.823351512373315e-17,
+ 8.536503921547244e-17,
+ -3.74593910273467e-16,
+ -1.8652922813070772e-16,
+ 2.8918234214853848e-16,
+ 2.787598664303703e-17,
+ -6.948317145445432e-18,
+ 2.4037868600790984e-16,
+ 1.2010662494269962e-16,
+ 5.6248281653605874e-18,
+ 3.2624003359091407e-16,
+ 3.27315368387233e-16,
+ 1.0019225169548546e-17,
+ 6.600901288173161e-17,
+ 3.58996385848014e-17,
+ -3.174098805519105e-16,
+ -2.085735914552459e-16,
+ 2.4352197233561135e-16,
+ -1.7073007843094489e-16,
+ 1.0885696861197843e-16,
+ 2.2317332926680687e-16,
+ -6.648877763701235e-16,
+ -1.9728257609389708e-16,
+ 3.9063604427816726e-17,
+ 2.8603905582083697e-16,
+ 9.148617574836485e-17,
+ 3.25536930070244e-16,
+ -1.8355137792551682e-16,
+ -7.246102165964522e-17,
+ -6.121136532892404e-18,
+ -1.1994118882018901e-16,
+ -9.935266337374415e-16,
+ -7.213014941462401e-17,
+ -1.6295458067294643e-16,
+ 1.9124415762225997e-16,
+ -6.563678160608275e-17,
+ 9.214792023840727e-17,
+ -4.233510375046395e-16,
+ 3.788487205492866e-17,
+ -1.1299287167474358e-16,
+ 4.2070405954446983e-16,
+ -7.684507890617626e-17,
+ -2.1159280069106445e-16,
+ -2.779326858178173e-16,
+ 1.3513029281819398e-16,
+ 4.6073960119203635e-17,
+ -1.432676820941844e-16,
+ -7.610061635487855e-18,
+ 7.527343574232552e-18,
+ 5.4097612060968004e-17,
+ 4.832389138534788e-16,
+ 1.3011551035459125e-16,
+ 1.3640208300999426e-16,
+ 4.1284584372521606e-16,
+ 1.4252321954288667e-16,
+ 5.781992481745663e-17,
+ 3.1672745654655425e-16,
+ -8.602678370551487e-17,
+ 1.167151844312322e-16,
+ -9.661469554619362e-17,
+ -1.2391165576044355e-16,
+ -9.574615590301294e-17,
+ -1.6750407404198808e-16,
+ -1.919059021123024e-17,
+ -4.4833189200374094e-17,
+ -1.3665023719376017e-16,
+ 2.269783600845508e-16,
+ -2.547716286663325e-16,
+ 7.113753267956038e-17,
+ -6.675347543302933e-17,
+ 1.0769891575440419e-16,
+ -2.1639044824387202e-16,
+ -2.3821767665761506e-16,
+ -2.1548054957006368e-17,
+ 5.966040168038712e-17,
+ -7.585246217111263e-17,
+ -1.3234889800848441e-17,
+ -3.9770843851549566e-16,
+ -1.155405879614069e-15
+ ],
+ [
+ -5.716411146793451,
+ -4.705880676383323,
+ 2.9971028453438784,
+ -1.6318320353091877,
+ -0.19097125679246296,
+ 2.108523335926139,
+ -3.165467493704771,
+ 3.266978167294998,
+ -1.65480923881732,
+ -3.573396366898317,
+ -1.505859026588477,
+ -0.46021321251415503,
+ 2.218259985433098,
+ -3.2097507516080093,
+ 3.1988750195220335,
+ -1.4240425062004693,
+ -2.953879749243997,
+ -1.5521558427762834,
+ -0.5392577676104754,
+ 2.3913569830739623,
+ -3.265577798080303,
+ 3.1506963311132865,
+ -1.8579808159674853,
+ 0.07487268552484905,
+ 1.8034790994762726,
+ -1.9431073433096853,
+ -3.0820349603708537,
+ 3.0586550967596335,
+ 1.9329237910298398,
+ -1.7382264924280992,
+ -0.16137796892877865,
+ 1.997655962722985,
+ -2.014815572984592,
+ -3.51741160801661,
+ 3.139744721124099,
+ 1.8603393297369268,
+ -1.5324539899127958,
+ -0.3066284638248148,
+ 2.1124472356425694,
+ -3.2002483098670917,
+ 3.2365489628767974,
+ -2.1559920078264168,
+ 2.0202812240438917,
+ 2.1439645487175993,
+ 3.1382195026519217,
+ 3.19636451715801,
+ 4.756988839512851,
+ 4.713248058007933,
+ -3.1806997661975913,
+ 3.2543583430610856,
+ -2.2067617685036964,
+ 0.4043912933560254,
+ 1.5128907704985979,
+ -2.874229819692005,
+ 2.1979345820425826,
+ 4.122761100056161,
+ -1.7892268415499235,
+ -1.2434473265745412,
+ 0.26065219236161125,
+ 1.6418586412600973,
+ -2.9874178957493127,
+ 2.17876807972991,
+ 3.828421755043539,
+ -1.3962241645529614,
+ -1.1190536742540818,
+ 0.026119994508363956,
+ 1.8445776877973925,
+ -3.0475864919389766,
+ 3.3148529772379915,
+ -2.398720052406637,
+ 0.7728865548715573,
+ 0.6642247298716493,
+ 0.5471375973411182,
+ -3.8092129661502248,
+ -2.085528145558223,
+ 3.284105078261328,
+ -2.230408869185556,
+ 0.5408781792640472,
+ 0.8046653860838381,
+ 0.907464650851997,
+ -4.381558268086895,
+ -2.251288093071145,
+ 3.222425699474881,
+ -2.1186307099706942,
+ 0.39941681864889456,
+ 1.6158406306105924,
+ -2.9298706575726796,
+ 3.365208895390735,
+ -4.657057731454586,
+ -5.764969554192119,
+ -5.634688954976315,
+ -4.539604874107001,
+ 3.3367010887769832,
+ -3.0397789410967415,
+ 1.8284220760253727,
+ 0.15340173542768348,
+ -1.9227012261860923,
+ 3.140089589513075,
+ -2.28048797721104,
+ -4.389469362355747,
+ 1.2204854889516223,
+ 0.9609385034409235,
+ 0.2958749933316557,
+ -2.041192010573855,
+ 3.218275105802756,
+ -2.1276813569534587,
+ -3.8372661993292736,
+ 0.8251977728508391,
+ 0.8153215607250793,
+ 0.530548173352959,
+ -2.221067745816231,
+ 3.259263002600223,
+ -3.1396555899670417,
+ 2.0465668817261364,
+ -0.22050068211799648,
+ -0.9781867232796707,
+ -1.1293031365680557,
+ 3.8441529685955245,
+ 2.1610685713570352,
+ -3.089191382577343,
+ 1.8533034084209798,
+ 0.014029086007921705,
+ -1.1069319073478954,
+ -1.5071104664385906,
+ 4.161053910153731,
+ 2.1925016972944174,
+ -2.9915085426923977,
+ 1.7296757749485,
+ 0.15838511490209697,
+ -2.016122697885769,
+ 3.179905119547021,
+ -3.2466259566491713,
+ 4.974015623120336,
+ 5.005581907112853,
+ 3.121629148342023,
+ 3.046996024751141,
+ 5.944077622036398,
+ 6.006702306182312,
+ -3.1634994728525068,
+ 2.101188568433139,
+ -0.2923975920097097,
+ -1.639750856517173,
+ 2.9997669871350996,
+ -3.321438325144979,
+ 1.7775171421232172,
+ 3.724124600500009,
+ 0.786101473468839,
+ 0.06732292278593363,
+ -1.763958358758593,
+ 3.0635352433522067,
+ -3.290669688660895,
+ 1.6630055801378312,
+ 3.298743062193825,
+ 0.9894132123708074,
+ 0.20536286444394924,
+ -1.958158692171414,
+ 3.155671651262948,
+ -3.2623009595544192,
+ 2.302913408850837,
+ -0.5559235241101621,
+ -1.3049666607293389,
+ 1.7651893063995894,
+ 2.6892542808246067,
+ -3.3818914646579943,
+ -2.0669635030496396,
+ 2.195013922737635,
+ -0.32352922907636816,
+ -1.5188374353248473,
+ 1.923167990565467,
+ 3.269051816220977,
+ -3.6941644584422777,
+ -2.1001560901546625,
+ 2.011300796921814,
+ -0.17673355279633907,
+ -1.6440851230265363,
+ 3.0512243170027626,
+ -3.308148563563915,
+ 2.562395863450041,
+ -2.9143566586373364,
+ -3.7292138808487088,
+ 1.3590577464246243e-15,
+ 1.4057624317608996e-15,
+ 3.4625780441469734e-16,
+ -7.940933880509066e-18,
+ -8.347027862484316e-17,
+ -1.5054687148465104e-16,
+ -5.694724927121319e-16,
+ 1.531938494448207e-16,
+ -1.952146245625145e-16,
+ 4.979627287569226e-17,
+ 2.953034786814309e-17,
+ 4.754634160954803e-16,
+ 2.357464745776129e-16,
+ 4.322845881202122e-16,
+ -9.243743345280084e-18,
+ -1.7023377006341307e-16,
+ -4.3054750883385084e-17,
+ -2.8794157122970893e-16,
+ -2.041481751780872e-16,
+ -2.0522350997440614e-16,
+ -1.6481573705119076e-17,
+ -2.6486323213947946e-16,
+ -1.4929059092933613e-16,
+ -2.175071420708186e-16,
+ 2.7709258050819313e-16,
+ -3.261986745602864e-16,
+ -6.311388073779601e-17,
+ 1.4558378780933287e-17,
+ -1.1729421086001932e-16,
+ 1.7503141761622063e-16,
+ 1.0091603473146936e-17,
+ 1.0951871310202085e-16,
+ 2.689991352022446e-16,
+ -9.711100391372544e-17,
+ -1.7432831409555056e-16,
+ -3.062222627671308e-16,
+ -3.813302623869457e-17,
+ -1.0645814483557465e-16,
+ -2.7718822326651957e-16,
+ 3.893539143287101e-16,
+ 1.8264147925170849e-16,
+ 2.2532399885944474e-16,
+ 1.1448179677733903e-16,
+ -1.2155419101466742e-16,
+ -5.371504102766223e-17,
+ 5.17608268305057e-17,
+ -4.566036981292712e-17,
+ -7.970712382560974e-16,
+ 5.583469134732937e-16,
+ -3.532061215601428e-17,
+ -2.1754850110144625e-17,
+ 2.1068290201725612e-16,
+ -3.490702184973777e-17,
+ -1.6336817097922294e-16,
+ -3.899329407574972e-16,
+ -5.244325083586195e-17,
+ -1.0637542677431935e-16,
+ -3.538678660501852e-16,
+ 1.9310531400050429e-16,
+ -3.1432863277015048e-18,
+ 2.382693754458996e-16,
+ -1.7441103215680586e-16,
+ 3.443139299751977e-16,
+ -1.694582882391446e-16,
+ -4.235164736271501e-17,
+ -5.0395978819793205e-17,
+ -2.8384702719757145e-16,
+ 2.0563710028068266e-16,
+ -3.714040950363094e-16,
+ -1.980270386451948e-16,
+ -1.4386738803828534e-16,
+ -9.181704799338607e-18,
+ -7.936797977446299e-17,
+ -1.695410063003999e-16,
+ -1.2176098616780567e-16,
+ -2.934009632725589e-16,
+ -2.3161057151484775e-18,
+ -9.413315370853454e-17,
+ 8.817745329815274e-17,
+ -3.748782536090321e-16,
+ -1.952146245625145e-17,
+ 3.4708498502725036e-16,
+ -1.0041972636393755e-16,
+ 2.2102265967416897e-16,
+ -2.216016861029561e-16,
+ 2.8785885316845363e-17,
+ -2.3210687988237957e-16,
+ -2.9720599409030284e-16,
+ -6.132717061468146e-16,
+ 1.0091603473146936e-17,
+ -9.525811934160667e-16,
+ 1.3678258609176864e-15,
+ 4.579271871093561e-16,
+ -1.3801508520447267e-16,
+ -2.7466532239823284e-16,
+ -7.589382120174028e-17,
+ -5.801844816446936e-16,
+ -3.5287524931512156e-16,
+ 5.694311336815043e-16,
+ 1.0348029463038375e-16,
+ 1.1828682759508294e-17,
+ 4.3972921363318946e-16,
+ 2.8289576949313546e-17,
+ -3.7564339567564364e-16,
+ -2.8810700735221954e-16,
+ 2.8173771663556123e-16,
+ -1.1001502146955267e-17,
+ 2.1382618834495762e-17,
+ 1.2324991127040112e-16,
+ 1.163015941249557e-16,
+ 4.6322114302969544e-17,
+ 2.7081893254986126e-16,
+ 2.6436692377194764e-16,
+ 9.053491804392887e-17,
+ -8.68539643180679e-18,
+ 2.2003004293910533e-17,
+ -3.2524741685585043e-16,
+ -2.0323827650427888e-16,
+ 2.421984833555265e-16,
+ -2.0828407824085234e-16,
+ 7.560430798734672e-17,
+ 2.658558488745431e-16,
+ -9.949328407787817e-16,
+ -2.870316725559006e-16,
+ -1.104389515334861e-16,
+ 2.4319110009059014e-16,
+ 2.928219368437718e-17,
+ 4.261634515873198e-16,
+ -2.425293556005477e-16,
+ -2.1173755729826123e-16,
+ -2.1771393722395686e-16,
+ -2.68833699079734e-16,
+ -1.2088417471849944e-15,
+ -1.3648480107124955e-17,
+ -2.953034786814309e-16,
+ 1.3052910066086777e-16,
+ 5.136791603954301e-17,
+ 2.8190315275807183e-16,
+ -2.984467650091324e-16,
+ -2.5311726744122644e-17,
+ 8.759842686936562e-17,
+ 3.8232287912200934e-16,
+ -1.1274471749097767e-16,
+ -3.958059231066237e-16,
+ 1.3284520637601624e-16,
+ 2.172589878870527e-16,
+ 9.926167350636331e-17,
+ -9.247879248342848e-17,
+ -3.58169205235461e-17,
+ -6.501639614666798e-17,
+ -1.0521737391674511e-16,
+ 3.5899638584801396e-16,
+ 1.2635183856747498e-16,
+ 6.531624911871845e-17,
+ 2.8810700735221954e-16,
+ 2.4054412213042045e-16,
+ 3.983908625208519e-17,
+ 1.8189701670041076e-16,
+ -9.31405369734709e-17,
+ 6.079777502264753e-17,
+ -4.8141911650586205e-17,
+ -2.1639044824387202e-16,
+ -1.402898318889935e-16,
+ -1.798290651690282e-16,
+ 3.537851479889299e-16,
+ 2.5063572560356735e-17,
+ -4.20207751176938e-17,
+ 2.1539783150880838e-16,
+ -8.933550615572698e-17,
+ -6.824240053562478e-17,
+ -6.402377941160434e-17,
+ 2.247449724306576e-16,
+ -1.8479214884434636e-16,
+ -2.540271661150348e-16,
+ 4.2648915395351255e-17,
+ 1.450926493206295e-16,
+ -8.021583990232985e-17,
+ 8.437242248040881e-17,
+ -4.896909226313924e-16,
+ -1.299997050688338e-15
+ ],
+ [
+ -6.061277023206801,
+ -5.150352441241186,
+ 2.5396897630076194,
+ 0.5732390146048842,
+ -3.491270429807115,
+ 5.340042715659885,
+ -5.3166718272698965,
+ 3.5761944487544337,
+ -0.7014578246619975,
+ -2.3824789037959784,
+ -5.983813983076685,
+ -2.782307770645565,
+ 5.401538224192386,
+ -5.241437979910414,
+ 3.2690705341522843,
+ -0.3356719451053931,
+ -1.630769501450729,
+ -5.465761415799779,
+ -2.756315071502396,
+ 5.480390885189952,
+ -5.098906504244608,
+ 3.0737030417636086,
+ 0.1339243235962645,
+ -3.1382332015273424,
+ 5.1353342045140815,
+ -3.580302086488513,
+ -6.363738311490772,
+ 1.8981894881252974,
+ 1.6346608290482527,
+ 0.3713103782975171,
+ -3.4521801528869185,
+ 5.2720510815616715,
+ -3.56216542927915,
+ -6.908688873731328,
+ 1.5997969836611607,
+ 1.3906688365938307,
+ 0.7592579557901771,
+ -3.6386866953302697,
+ 5.3423646006442915,
+ -5.257585821345465,
+ 3.430663581402226,
+ -0.48482219466027443,
+ -2.696473023321882,
+ -2.4188695064573875,
+ 3.2705851714102785,
+ 3.5434165401430153,
+ 9.842110115314991,
+ 9.939617291528059,
+ -5.293013839761129,
+ 3.51422990697104,
+ -0.5958919305960586,
+ -2.672271651539932,
+ 4.898963104719418,
+ -5.536698018119019,
+ 2.974752443600737,
+ 6.212362762014232,
+ 1.2003971526150672,
+ 0.0572922414661432,
+ -2.8784151374627718,
+ 5.0090676247486385,
+ -5.490216400479852,
+ 2.7882253866447826,
+ 5.510132984224922,
+ 1.546517371023963,
+ 0.2863689658753897,
+ -3.2044890320128863,
+ 5.165675989517186,
+ -5.448011393176711,
+ 3.8439683025271556,
+ -1.0313873940154012,
+ -2.1138864753597493,
+ 2.890733040866567,
+ 4.3846597891033605,
+ -5.644213387512746,
+ -3.4395323845807844,
+ 3.6689919257901895,
+ -0.6461147428146331,
+ -2.469166347066408,
+ 3.1528266955956665,
+ 5.340117442678777,
+ -6.1745828959654885,
+ -3.5002897103224626,
+ 3.3671428336270255,
+ -0.4046454576331151,
+ -2.6795225802864104,
+ 4.986753969678942,
+ -5.517491405064717,
+ 4.266937960254773,
+ -4.921262316224661,
+ -6.289125177935976,
+ -9.506827054237688,
+ -7.822124418454467,
+ 4.9707978880434185,
+ -2.8032003838238304,
+ -0.2629906958750585,
+ 3.396773401256053,
+ -5.244082021176495,
+ 5.4003145087406015,
+ -2.7791858322998215,
+ -5.979014404483215,
+ -2.391551661681739,
+ -0.706325706613385,
+ 3.581999017962628,
+ -5.319538536204355,
+ 5.294410578484825,
+ -2.3985145170236097,
+ -4.951149156087631,
+ -2.48311184515359,
+ -0.840611867308614,
+ 3.8712331790046033,
+ -5.418878976616302,
+ 5.216684584810726,
+ -3.1741200286757967,
+ 0.17723532752803675,
+ 2.8863871283532974,
+ -3.192427699632656,
+ -5.0460398551140875,
+ 5.121352891096347,
+ 3.2252704433781694,
+ -2.976463378133166,
+ -0.21270318333785748,
+ 3.2124120202867155,
+ -3.3141074312781837,
+ -5.767978132272727,
+ 5.266070509351058,
+ 3.1088505324742117,
+ -2.639927504522984,
+ -0.4547497833432595,
+ 3.403308172035287,
+ -5.304326366127109,
+ 5.352567806260042,
+ -3.661915692133137,
+ 3.484032204258219,
+ 3.6859178726896458,
+ 5.219917097522279,
+ 5.311016765922777,
+ 8.091838929199602,
+ 8.326152852728484,
+ -3.2705301031135536,
+ 0.2909528119056023,
+ 2.7838339743988243,
+ -5.034006292886756,
+ 5.504843244944537,
+ -4.188042736050273,
+ 1.161636471477791,
+ 3.2158861465844484,
+ 4.9923594583961295,
+ 2.195797274621571,
+ -5.130359785378618,
+ 5.4660145426247775,
+ -3.921851423570579,
+ 0.8882309757627084,
+ 2.5621493282606203,
+ 4.895519002725531,
+ 2.3610902298879526,
+ -5.267148368958802,
+ 5.38143927708831,
+ -3.749603859543429,
+ 0.7292461650639213,
+ 2.3944048008067402,
+ -4.741471620542467,
+ 3.6164109040133825,
+ 6.263517423067525,
+ -2.814413978356354,
+ -2.11361086884741,
+ 0.49300603174277846,
+ 2.740175294678921,
+ -4.933095973290771,
+ 3.8087016352149696,
+ 7.22084525421072,
+ -2.7164650744165786,
+ -1.9330224160357266,
+ 0.10374768682644167,
+ 2.948445506279872,
+ -5.037495442574709,
+ 5.474710998317188,
+ -4.062459199647433,
+ 1.3375587064991643,
+ -0.19604124241232374,
+ -0.5658458521827278,
+ 2.1500078481478295e-15,
+ 1.919224457245535e-15,
+ 5.810116622572466e-16,
+ 6.948317145445432e-17,
+ -1.373946997450579e-16,
+ -3.896847865737313e-16,
+ -7.164211285321772e-16,
+ 4.231856013821289e-16,
+ -5.56527116125677e-16,
+ 1.31687153518442e-16,
+ 1.7714072817823085e-16,
+ 3.3790328022791176e-16,
+ 6.523146310593175e-16,
+ 4.736436187478636e-16,
+ -2.192855803878076e-16,
+ -4.660542366276896e-16,
+ -2.580803511165446e-17,
+ -3.088692407273005e-16,
+ -1.01908651466533e-16,
+ -3.4716770308850567e-16,
+ 4.5743087874182424e-17,
+ -2.268129239620402e-16,
+ -1.1572256769616857e-16,
+ -2.337612411074856e-16,
+ 2.595692762191401e-16,
+ -7.524034851782339e-16,
+ -1.1497810514487085e-16,
+ -1.2457340025048597e-16,
+ -1.0935327697951025e-16,
+ 4.17478055155513e-16,
+ 5.518949046953801e-16,
+ -2.3161057151484775e-18,
+ 2.0547166415817205e-16,
+ 8.850832554317395e-17,
+ -1.522012327097571e-17,
+ -8.615913260352335e-16,
+ 2.7131524091739305e-17,
+ -1.2308447514789052e-16,
+ -5.284856933601294e-16,
+ 4.714929491552258e-16,
+ 4.3112653526263797e-16,
+ 4.0945440321374865e-16,
+ -3.970466940254532e-17,
+ -2.39882377640378e-17,
+ 3.050228508789289e-19,
+ -2.3508473008757047e-16,
+ 8.850832554317395e-17,
+ -1.3655097552025379e-15,
+ 5.880220179486335e-16,
+ -1.1712877473750872e-16,
+ 2.78677148369115e-16,
+ 3.991146455568358e-16,
+ -1.5732975250758584e-16,
+ -5.41224274793446e-16,
+ -8.156000839772852e-16,
+ -5.4097612060968004e-17,
+ -2.4699613090833406e-16,
+ -2.660212849970537e-16,
+ 2.601483026479272e-16,
+ 5.161607022330892e-17,
+ 2.0447904742310842e-16,
+ -2.8103461311489115e-16,
+ 4.3021663658882964e-16,
+ -1.2076836943274204e-16,
+ -2.283018490646356e-17,
+ 1.9451152104184443e-16,
+ -6.865599084190129e-16,
+ 2.2309061120555156e-16,
+ -9.069208236031395e-16,
+ -3.2590916134589285e-16,
+ -4.49986253228847e-17,
+ -7.326752275688443e-17,
+ -6.232805915587064e-17,
+ -6.633988512675282e-17,
+ -6.021874859386041e-17,
+ -3.867069363685404e-16,
+ -2.776018135727961e-16,
+ -3.5601853564282306e-16,
+ 2.683373907122022e-16,
+ -6.349438381957039e-16,
+ 2.0844951436336294e-17,
+ 5.059036626374317e-16,
+ -1.5799149699762826e-16,
+ 5.942465520580951e-16,
+ -3.8306734167330707e-16,
+ 1.0554824616176632e-16,
+ -1.623755542441593e-16,
+ -4.466775307786349e-16,
+ -7.2130149414624e-16,
+ 1.138200522872966e-16,
+ -1.6629639034766066e-15,
+ 1.4948808030058314e-15,
+ 5.115284908027923e-16,
+ -8.208216615940262e-17,
+ -5.097086934551757e-16,
+ -2.2333876538931747e-16,
+ -6.35771018808257e-16,
+ -7.021109039350098e-16,
+ 1.249704469445114e-15,
+ 4.293067379150213e-16,
+ 2.456726419282492e-17,
+ 1.3770902837782803e-15,
+ -8.470329472543002e-17,
+ -4.4163172904206143e-16,
+ -5.641371777611649e-16,
+ 1.594804221002237e-16,
+ -1.1519524005566602e-16,
+ 8.513756454702036e-17,
+ 4.053185001509835e-17,
+ 1.6262370842792522e-16,
+ 1.624582723054146e-16,
+ 2.362427829451447e-16,
+ 1.7602403435128426e-16,
+ 2.269783600845508e-16,
+ -1.827241973129638e-16,
+ -8.966637840074819e-17,
+ -3.9489602443281536e-16,
+ -2.0596797252570387e-16,
+ 2.723078576524567e-16,
+ -2.5526793703386434e-16,
+ 6.716706573930585e-17,
+ 4.07634605866132e-16,
+ -1.596127709982322e-15,
+ -4.480010197587198e-16,
+ -4.3611029845326997e-16,
+ 1.164670302474663e-16,
+ -1.2060293331023143e-16,
+ 6.359778139613952e-16,
+ -3.427836458419746e-16,
+ -4.3393894934531827e-16,
+ -5.717472393966527e-16,
+ -5.280721030538529e-16,
+ -1.630538423464528e-15,
+ 9.992341799640573e-17,
+ -5.838240763399269e-16,
+ 1.4889251025954496e-18,
+ 2.6130635550550144e-16,
+ 6.594283843272736e-16,
+ -8.470329472543002e-17,
+ -1.1795595535006175e-16,
+ 5.232744555010453e-16,
+ 3.7372020075145785e-16,
+ -1.8036673256718766e-16,
+ -7.543060005871058e-16,
+ 8.563800881761495e-16,
+ 3.62553262481992e-16,
+ 1.977065061578305e-16,
+ -9.553936074987468e-18,
+ -8.569591146049365e-17,
+ -1.62292836182904e-16,
+ -3.48904782374867e-16,
+ 2.3305813758681555e-16,
+ 1.6560155863311612e-16,
+ -7.82512859475164e-17,
+ 3.490702184973777e-17,
+ 3.935725354527305e-16,
+ -2.845501307182415e-17,
+ -6.566780087905348e-17,
+ -1.2622776147559202e-16,
+ 2.1713491079516973e-17,
+ 1.1067676595959509e-16,
+ -2.660212849970537e-16,
+ -1.8677738231447362e-16,
+ -2.4964310886850375e-16,
+ 9.577924312751507e-16,
+ 9.605634863272033e-17,
+ 5.4676638489755123e-17,
+ 1.563371357725222e-16,
+ 1.2904017555827232e-16,
+ -3.176373552203626e-16,
+ -7.29986890578047e-18,
+ 5.750559618468648e-16,
+ -1.13654616164786e-16,
+ -3.115989367487255e-16,
+ 1.1878313596261477e-16,
+ 2.240832279406152e-16,
+ -1.593149859777131e-16,
+ 2.1043474783349022e-16,
+ -1.037615360386518e-15,
+ -1.785717506379476e-15
+ ],
+ [
+ -4.192092682401115,
+ -3.5929443025620014,
+ 1.6338162328805952,
+ 0.8392623996528749,
+ -3.0468185472415894,
+ 4.290002759003833,
+ -4.053907450070585,
+ 2.4949191145953034,
+ -0.28269107933357707,
+ -1.3774034896188982,
+ -4.981825673633135,
+ -2.365327219564115,
+ 4.321987609314059,
+ -3.9783887376601106,
+ 2.237351956252942,
+ -0.006428324075420834,
+ -0.8392795630424005,
+ -4.51451110478169,
+ -2.3262418589788516,
+ 4.356399945997916,
+ -3.8410387477349377,
+ 2.074494873999813,
+ 0.49706974106505947,
+ -2.7889738394792007,
+ 4.1712474849708405,
+ -2.7683797458184634,
+ -4.996354302549673,
+ 1.0542823069027683,
+ 1.050813181408928,
+ 0.6824740022298018,
+ -3.0183010345295966,
+ 4.252508158335112,
+ -2.737733139985241,
+ -5.389257424238081,
+ 0.7740223892865927,
+ 0.8499564537267542,
+ 0.9834190201310153,
+ -3.153536002283774,
+ 4.2912518870921375,
+ -3.9945963193325413,
+ 2.3724967791767217,
+ 0.010934116570538223,
+ -2.7950537356008676,
+ -2.5749058987918767,
+ 2.251051202831144,
+ 2.4803402229006815,
+ 7.729246461567686,
+ 7.824361509878178,
+ -4.029889882678689,
+ 2.4427224185339043,
+ -0.07688636836887877,
+ -2.444303926249236,
+ 4.021563870476217,
+ -4.307733734231206,
+ 2.181232585643425,
+ 4.650442915284911,
+ 1.4256552005815808,
+ 0.30408206803653187,
+ -2.5972027635673274,
+ 4.092592898325909,
+ -4.243583964563069,
+ 2.0202784092535238,
+ 4.089779819032477,
+ 1.6514690202886733,
+ 0.4811964196880911,
+ -2.837596899743141,
+ 4.189686564136039,
+ -4.194021971526437,
+ 2.721833225795431,
+ -0.4226715856066412,
+ -2.025882557191434,
+ 2.4195780587227147,
+ 3.76383918653036,
+ -4.2122012633942685,
+ -2.614933900153091,
+ 2.5734486219267816,
+ -0.11645483394468477,
+ -2.2926039083274508,
+ 2.622603688624954,
+ 4.534868962234625,
+ -4.564313666677111,
+ -2.634849693954617,
+ 2.319230739961391,
+ 0.07418403999910897,
+ -2.4496914283296207,
+ 4.078177092790059,
+ -4.279432255988056,
+ 3.0854110932069565,
+ -3.4004201987230456,
+ -4.383586125201669,
+ -7.25406630456505,
+ -5.988256496602363,
+ 3.7133264610473393,
+ -1.8580220788730308,
+ -0.6051200495736611,
+ 2.97095260857455,
+ -4.2430480656749685,
+ 4.133021327027532,
+ -1.9915547035391614,
+ -4.389853994489271,
+ -2.3625252960441205,
+ -0.8201455913895888,
+ 3.1056241576126906,
+ -4.2855932191553245,
+ 4.023487634656342,
+ -1.686244984011053,
+ -3.593929664989698,
+ -2.3628798959811577,
+ -0.90915330572339,
+ 3.3134317422925945,
+ -4.336738939995007,
+ 3.9464320698251183,
+ -2.1654957779352855,
+ -0.26049081034564603,
+ 2.5960636474508982,
+ -2.622233773448787,
+ -4.229732385661836,
+ 3.7429593108754298,
+ 2.4101668330890287,
+ -2.00108413641356,
+ -0.5657449308294544,
+ 2.8364181421679056,
+ -2.7035372988260455,
+ -4.790799781672815,
+ 3.8062787878790623,
+ 2.300863231467306,
+ -1.723548077489876,
+ -0.7544784619312344,
+ 2.9757162344040164,
+ -4.2772618589847635,
+ 4.082707130559696,
+ -2.5748296279097755,
+ 2.0655325277545025,
+ 2.237532290987547,
+ 3.9773396439924844,
+ 4.073068924267256,
+ 6.528802079242007,
+ 6.4879182618376685,
+ -2.2458399320682543,
+ -0.171115455876212,
+ 2.5200821254289205,
+ -4.115066729567036,
+ 4.254010218556759,
+ -3.0245865987467213,
+ 0.6644072370450067,
+ 2.0832765252962675,
+ 4.25225496068815,
+ 1.927026833282118,
+ -4.1749055483991855,
+ 4.206692672019466,
+ -2.7955883944019284,
+ 0.44609922740684466,
+ 1.592180635502748,
+ 4.125221193546299,
+ 2.0449845335715255,
+ -4.256222599241027,
+ 4.113159139921849,
+ -2.6491340781524606,
+ 0.17515253707605966,
+ 2.229596717093344,
+ -3.924742808930277,
+ 2.8365640796188245,
+ 4.987845924258988,
+ -1.798196036917397,
+ -1.4468092174957325,
+ -0.011655161228073889,
+ 2.4878364568541524,
+ -4.050514064884343,
+ 2.9743194414365677,
+ 5.715792948042448,
+ -1.6479774439175292,
+ -1.2804320123951756,
+ -0.31825451209136896,
+ 2.6419934788724486,
+ -4.117256258010473,
+ 4.216890650820584,
+ -2.9163064184298673,
+ 0.6599188167175207,
+ 0.42074566768315774,
+ 0.2599825713781122,
+ 1.5742487827802944e-15,
+ 1.4009130854198075e-15,
+ 4.3939834138816825e-16,
+ 4.21034931789491e-17,
+ -9.417451273916219e-17,
+ -3.1135078256495957e-16,
+ -5.346895479542771e-16,
+ 3.8894032402243356e-16,
+ -4.0035541647566535e-16,
+ 1.0306670432410724e-16,
+ 1.414995835348523e-16,
+ 1.9298123690862133e-16,
+ 5.441194069373816e-16,
+ 3.4642324053720794e-16,
+ -1.979443205839395e-16,
+ -3.82364238152637e-16,
+ -1.0753347963189358e-17,
+ -2.271437962070614e-16,
+ -5.39321759384574e-17,
+ -2.8810700735221954e-16,
+ 4.044913195384305e-17,
+ -1.6171380975411689e-16,
+ -7.465305028291075e-17,
+ -1.799945012915388e-16,
+ 1.6907571720583883e-16,
+ -5.992096357334132e-16,
+ -8.966637840074819e-17,
+ -1.134891800422754e-16,
+ -1.0972550825515911e-16,
+ 3.23758491753255e-16,
+ 4.751325438504591e-16,
+ -2.2003004293910533e-17,
+ 1.594804221002237e-16,
+ 7.047578818951796e-17,
+ 2.0059129854410918e-17,
+ -6.918538643393522e-16,
+ 1.5385559393486315e-17,
+ -1.0753347963189359e-16,
+ -4.1292856178647137e-16,
+ 3.336846591038913e-16,
+ 3.333537868588701e-16,
+ 3.23758491753255e-16,
+ -7.940933880509064e-17,
+ -1.0339757656912844e-17,
+ 1.1613486553273796e-17,
+ -2.1601821696822315e-16,
+ 8.5654552429866e-17,
+ -1.0539935365150679e-15,
+ 4.224411388308312e-16,
+ -9.599431008677885e-17,
+ 2.5985878943353364e-16,
+ 3.2309674726321256e-16,
+ -1.531111313835654e-16,
+ -4.507307157801448e-16,
+ -6.342820937056615e-16,
+ -3.077111878697263e-17,
+ -1.919059021123024e-16,
+ -1.9686898578762056e-16,
+ 1.9455288007247208e-16,
+ 5.591740940858467e-17,
+ 1.1911400820763599e-16,
+ -2.192028623265523e-16,
+ 3.123433993000232e-16,
+ -7.213014941462401e-17,
+ -7.279189390466644e-18,
+ 1.7912596164835812e-16,
+ -5.219509665209605e-16,
+ 1.559235454662457e-16,
+ -7.299041725167915e-16,
+ -2.455072058057386e-16,
+ -1.4227506535912076e-17,
+ -5.4717997520382775e-17,
+ -4.042845243852922e-17,
+ -2.5270367713494992e-17,
+ -7.279189390466644e-18,
+ -2.929046549050271e-16,
+ -2.575840427490128e-16,
+ -2.962960954164945e-16,
+ 2.1804480946897807e-16,
+ -4.887396649269564e-16,
+ 1.588186776101813e-17,
+ 4.20207751176938e-16,
+ -1.2622776147559202e-16,
+ 4.800956275257773e-16,
+ -2.8802428929096424e-16,
+ 8.205631676526033e-17,
+ -9.644925942368301e-17,
+ -3.4394169869954886e-16,
+ -4.850587112010954e-16,
+ 1.0637542677431935e-16,
+ -1.3492970151964985e-15,
+ 1.1580528575742387e-15,
+ 3.805030817743927e-16,
+ -3.8776353035410616e-17,
+ -3.9142186586009265e-16,
+ -1.708127964922002e-16,
+ -4.889464600800947e-16,
+ -5.770411953169921e-16,
+ 1.0161086644601392e-15,
+ 3.783524121817548e-16,
+ -4.714929491552257e-18,
+ 1.1643394302296418e-15,
+ -1.0108147085397997e-16,
+ -3.1767871425099023e-16,
+ -4.294721740375319e-16,
+ 1.3367238698856927e-16,
+ -9.967526381263982e-17,
+ 6.365154813595548e-17,
+ 1.0422475718168147e-17,
+ 1.224227306578481e-16,
+ 1.406207041340147e-16,
+ 1.8661194619196302e-16,
+ 1.166324663699769e-16,
+ 1.8115255414911304e-16,
+ -1.548068516392991e-16,
+ -6.902822211755016e-17,
+ -2.7081893254986126e-16,
+ -1.4095157637903592e-16,
+ 1.9438744394996148e-16,
+ -1.9372569945991906e-16,
+ 3.341809674714232e-17,
+ 3.305413727761898e-16,
+ -1.252682319650305e-15,
+ -3.485739101298458e-16,
+ -3.617674409000666e-16,
+ 8.801201717564213e-17,
+ -1.0951871310202085e-16,
+ 4.986037937316513e-16,
+ -2.517937784611416e-16,
+ -3.5858279554173745e-16,
+ -4.774486495656076e-16,
+ -4.015134693332396e-16,
+ -1.258968892305708e-15,
+ 1.0205340807372978e-16,
+ -4.449404514922736e-16,
+ -6.071505696139223e-17,
+ 2.132471619161705e-16,
+ 5.6211058526041e-16,
+ -5.062345348824529e-17,
+ -1.0108147085397997e-16,
+ 4.484973281262516e-16,
+ 2.689991352022446e-16,
+ -1.4398112537251138e-16,
+ -5.770411953169921e-16,
+ 6.731595824956538e-16,
+ 2.9658560863088807e-16,
+ 1.554479166140277e-16,
+ -2.4980854499101433e-17,
+ -5.09543257332665e-17,
+ -1.3532674821367533e-16,
+ -2.863699280658582e-16,
+ 1.3392054117233518e-16,
+ 1.1712877473750872e-16,
+ -7.891303043755883e-17,
+ 8.602678370551488e-18,
+ 3.008869478161638e-16,
+ -1.9273308272485542e-17,
+ -6.256845852139386e-17,
+ -7.279189390466644e-17,
+ 2.0017770823783267e-17,
+ 1.0753347963189359e-16,
+ -1.8429584047681454e-16,
+ -1.4260593760414197e-16,
+ -1.9256764660234482e-16,
+ 7.633119295062769e-16,
+ 7.918186413663856e-17,
+ 6.530590936106153e-17,
+ 1.0108147085397997e-16,
+ 1.3003279229333595e-16,
+ -2.802487915329658e-16,
+ 1.0422475718168147e-17,
+ 4.575963148643349e-16,
+ -8.040195554015428e-17,
+ -2.536135758087583e-16,
+ 1.0025429024142694e-16,
+ 1.692825123589771e-16,
+ -1.318525896409526e-16,
+ 1.7271531190107215e-16,
+ -7.265954500665794e-16,
+ -1.4224197813461862e-15
+ ],
+ [
+ 3.9569066993303403,
+ 3.3148894029321716,
+ -1.860855255005002,
+ 0.2903841192844182,
+ 1.294601296206939,
+ -2.585308761728817,
+ 2.8780526098174293,
+ -2.3162265145226018,
+ 0.7685092570792054,
+ 1.9700940652322618,
+ 2.61258673850608,
+ 1.139733092665559,
+ -2.640985779241925,
+ 2.8656141605158867,
+ -2.1843579347392,
+ 0.5654318742595741,
+ 1.507331923419335,
+ 2.4416399115144247,
+ 1.155146272973088,
+ -2.72397875656872,
+ 2.8314022615793664,
+ -2.100019223516384,
+ 0.5183586344326117,
+ 1.0850942631498104,
+ -2.4166486652338857,
+ 1.8890440662678962,
+ 3.241433903739065,
+ -1.6358187959471067,
+ -1.1894856218209313,
+ 0.3965952048044109,
+ 1.2719812426358552,
+ -2.525652843839244,
+ 1.9049784535110195,
+ 3.5726376257362196,
+ -1.5543762410041895,
+ -1.0794619294928292,
+ 0.1927541903387419,
+ 1.3835105403545265,
+ -2.587367367808127,
+ 2.867797730274312,
+ -2.254644504749551,
+ 0.833003264194085,
+ 0.33335874910013347,
+ 0.19532594606205492,
+ -2.1519036745360838,
+ -2.2677365419189495,
+ -5.010261042328424,
+ -5.031461155352694,
+ 2.874370478690426,
+ -2.2901288157118787,
+ 0.8886318293116557,
+ 0.8152952357225464,
+ -2.2411996538892027,
+ 2.8657584769448534,
+ -1.751991969602902,
+ -3.5126913154477872,
+ 0.1298423023005373,
+ 0.3683144044924298,
+ 0.9346728683240793,
+ -2.3202882409814634,
+ 2.8851570322085203,
+ -1.6792359476245473,
+ -3.1693019193299543,
+ -0.11693081752882042,
+ 0.2474258971762148,
+ 1.1240738787837845,
+ -2.4403835069201834,
+ 2.8882132348464005,
+ -2.427037685006848,
+ 1.1045050110545547,
+ 0.5002187777919755,
+ -1.2423364702661999,
+ -1.7404333702530905,
+ 3.211274129059865,
+ 1.883193820361135,
+ -2.354147333701813,
+ 0.9146296277530551,
+ 0.7005737284671146,
+ -1.3800569317084315,
+ -2.195083994441864,
+ 3.580061604586903,
+ 1.9567682390154,
+ -2.227472172687632,
+ 0.7926071673975851,
+ 0.8194518740472807,
+ -2.304787687402176,
+ 2.8762386759293364,
+ -2.594165216603722,
+ 3.2176206196532573,
+ 4.053630618982043,
+ 5.164612867574189,
+ 4.2191885769720034,
+ -2.8371722738040255,
+ 1.939113982895775,
+ -0.4923113192397083,
+ -1.2784106932489667,
+ 2.463461023552152,
+ -2.92943147711352,
+ 1.7078046647008291,
+ 3.512532122023117,
+ 0.4743118691150204,
+ -0.04768666484813098,
+ -1.3886085754359547,
+ 2.528160413840632,
+ -2.915323323439811,
+ 1.5237783888444925,
+ 2.9719777937147875,
+ 0.6306879609376065,
+ 0.04590891964698773,
+ -1.5661545493462283,
+ 2.6193074006121737,
+ -2.9009730743719735,
+ 2.1031325935158254,
+ -0.7181090019638818,
+ -0.9788100145026581,
+ 1.4484832760524597,
+ 2.1591736410774005,
+ -3.035061770114885,
+ -1.8301252494636613,
+ 2.0172556655896137,
+ -0.517465453954478,
+ -1.1681895868899452,
+ 1.5322957878120165,
+ 2.5357188769187116,
+ -3.1859515647788252,
+ -1.798287272942564,
+ 1.8656153567765326,
+ -0.3928231944446257,
+ -1.2823020302442085,
+ 2.514245250403037,
+ -2.9248150017139762,
+ 2.3110938552968157,
+ -2.801963774418283,
+ -2.8840773232884445,
+ -2.8391402798589374,
+ -2.847052389528253,
+ -3.327385199076607,
+ -3.2599524428904694,
+ 2.4862414272901616,
+ -0.7758821040660903,
+ -0.9196352076469789,
+ 2.2998029854147832,
+ -2.922998560025507,
+ 2.5228891417472674,
+ -0.9715915815821352,
+ -2.315548277266139,
+ -2.0326622119447855,
+ -0.8069616394568382,
+ 2.3737832372354943,
+ -2.928395757490608,
+ 2.4186351917465605,
+ -0.837926463784841,
+ -1.9485420076711544,
+ -2.061578317441248,
+ -0.909288385211349,
+ 2.4828239676059516,
+ -2.927585868671861,
+ 2.347461248580943,
+ -0.9958085974930999,
+ -0.6978728099341094,
+ 2.0904230501379253,
+ -1.8463384832719054,
+ -3.0827517239189017,
+ 2.064820429884553,
+ 1.4028219499662258,
+ -0.8768682408386893,
+ -0.8936530988009603,
+ 2.2265346535502553,
+ -1.9645603249901067,
+ -3.6067064871090406,
+ 2.1274016837373275,
+ 1.3485625483208938,
+ -0.680745882379269,
+ -1.0147470010926756,
+ 2.302421224679052,
+ -2.9282803486972213,
+ 2.4737481465185343,
+ -1.2946680033806321,
+ 0.9814590709053396,
+ 1.3686154838119027,
+ -1.0980719234064873e-15,
+ -8.256089693891768e-16,
+ -2.959652231714733e-16,
+ 1.1001502146955267e-16,
+ -7.911982559069708e-17,
+ 2.387243247828038e-16,
+ 4.3344264097778645e-16,
+ -4.825771693634363e-16,
+ 4.235164736271501e-17,
+ -3.9208361035013506e-17,
+ -4.2372326878028836e-17,
+ -1.688896015680144e-16,
+ -3.8546616544971085e-16,
+ -3.330229146138489e-16,
+ 8.644037401179138e-17,
+ 2.913950502871178e-16,
+ -6.18937893342803e-17,
+ 1.9140959374477058e-16,
+ 1.6642873924566914e-16,
+ 3.0771118786972625e-16,
+ -1.9645539548134407e-18,
+ 1.953800606850251e-16,
+ 1.2304311611726287e-16,
+ 2.188719900815311e-16,
+ -1.3044638259961246e-16,
+ 3.9737756627047445e-16,
+ 5.4180330122223307e-17,
+ 5.886424034080483e-17,
+ 2.32768624372422e-16,
+ -1.1853498177884887e-16,
+ -2.0770505181206522e-16,
+ -1.6626330312315856e-17,
+ -3.226004388956808e-17,
+ 1.1878313596261477e-16,
+ 2.157390435114865e-17,
+ 3.7090778666877756e-16,
+ -3.7223127564886245e-18,
+ 1.2424252800546476e-16,
+ 2.744585272450946e-16,
+ -2.4616895029578104e-16,
+ -2.0646428089323568e-16,
+ -1.343341314786117e-16,
+ 3.077111878697263e-17,
+ 1.2415980994420945e-16,
+ 6.851123423470452e-17,
+ 8.745367026216884e-17,
+ 9.926167350636332e-19,
+ 1.0548207171276209e-15,
+ -4.7372633680911895e-16,
+ 9.9178955445108e-17,
+ -6.940045339319902e-17,
+ -2.238350737568493e-16,
+ 1.373119816838026e-16,
+ 3.1639658430153304e-16,
+ 2.0468584257624667e-16,
+ 1.0918784085699964e-17,
+ 1.7321162026860397e-16,
+ 2.9149844786368695e-16,
+ -1.5170492434222525e-16,
+ 4.896909226313923e-17,
+ -1.2415980994420945e-16,
+ 2.1626637115198906e-16,
+ -2.9745414827406875e-16,
+ 1.5131201355126256e-16,
+ -1.1911400820763597e-17,
+ -7.097209655704977e-17,
+ 2.627125625468416e-16,
+ -2.2863272130965685e-16,
+ 4.910144116114772e-16,
+ 1.9885421925774783e-16,
+ 4.573274811652551e-17,
+ 2.481541837659083e-19,
+ 3.6065074707312007e-17,
+ 5.692036590130522e-17,
+ 4.235164736271501e-17,
+ 2.7354862857128625e-16,
+ 1.3383782311107988e-16,
+ 1.4823076576950256e-16,
+ -4.433688083284228e-17,
+ 3.269844961422118e-16,
+ 1.4558378780933287e-17,
+ -5.661224112312921e-16,
+ 1.7073007843094489e-16,
+ -2.364082190676553e-16,
+ 2.027006091061194e-16,
+ -9.223063829966257e-17,
+ 2.6800651846718094e-17,
+ 2.57087734381481e-16,
+ 9.29751008509603e-17,
+ 1.2804755882320868e-16,
+ 1.164670302474663e-15,
+ -1.1739347253352569e-15,
+ -4.102815838263017e-16,
+ 2.4649982254080222e-17,
+ 2.517937784611416e-16,
+ 7.568702604860202e-17,
+ 5.906069573628618e-16,
+ 5.138445965179408e-16,
+ -8.609295815451911e-16,
+ -2.926565007212612e-16,
+ 2.3491929396505983e-17,
+ -7.524034851782339e-16,
+ 1.4872707413703438e-16,
+ 2.6147179162801205e-16,
+ 3.0423702929700353e-16,
+ -1.8065624578158122e-16,
+ 2.671793378546279e-17,
+ 4.1751941418614066e-17,
+ 1.6684232955194566e-16,
+ -7.990564717262246e-17,
+ -5.633099971486118e-17,
+ -3.398057956367837e-16,
+ -2.7610254871254373e-16,
+ -8.635765595053608e-17,
+ 5.3518585632180884e-17,
+ 1.9149231180602588e-17,
+ 2.1730034691768035e-16,
+ 1.1299287167474358e-16,
+ -7.758954145747398e-17,
+ 1.8115255414911304e-16,
+ -5.790264287871194e-17,
+ -3.4741585727227157e-16,
+ 1.138200522872966e-15,
+ 3.30872245021211e-16,
+ 1.831377876192403e-16,
+ -3.5304068543763216e-16,
+ 9.92616735063633e-18,
+ -6.260102875801312e-16,
+ 1.6609786700064793e-16,
+ 2.488572872865784e-16,
+ 3.603198748280988e-16,
+ 3.1697561073032016e-16,
+ 1.3181950241645047e-15,
+ 7.568702604860203e-18,
+ 2.7288688408124383e-16,
+ -1.3152171739593138e-17,
+ -7.75998812151309e-17,
+ -4.767662255602513e-16,
+ 2.350433710569428e-16,
+ 6.86559908419013e-17,
+ -2.80579663777987e-16,
+ -2.280123358502421e-16,
+ 1.5505500582306501e-16,
+ 4.0101716096570777e-16,
+ -2.5229008682867344e-16,
+ -3.395576414530178e-16,
+ -1.0379048736009114e-16,
+ 1.9356026333740845e-16,
+ 2.2706107814580607e-17,
+ 1.0087467570084171e-16,
+ 1.6853804980767936e-16,
+ -1.410136149249774e-16,
+ -9.857924950100706e-17,
+ 4.954811869192635e-17,
+ -2.2551011449726917e-16,
+ -2.288188369474813e-16,
+ -2.0327963553490652e-17,
+ -8.929414712509933e-17,
+ -9.098986738083303e-17,
+ -6.654668027989108e-17,
+ -5.343586757092558e-17,
+ 2.446800251931856e-16,
+ 1.194448804526572e-16,
+ 1.8677738231447362e-16,
+ -2.647391550475965e-16,
+ -6.669660676591631e-17,
+ -2.616992662964641e-17,
+ -1.5716431638507523e-16,
+ -6.2865726554030096e-18,
+ 2.6089276519922493e-16,
+ 3.2063588494086735e-17,
+ -2.1084833813976673e-16,
+ 1.7585859822877366e-16,
+ 3.040715931744929e-16,
+ -1.0695445320310647e-16,
+ -1.4943017765770445e-16,
+ 9.090714931957773e-17,
+ -1.255660169855496e-16,
+ 2.865353641883688e-16,
+ 1.4846237634101739e-15
+ ],
+ [
+ -5.141286981609387,
+ -4.207907144112835,
+ 2.752197621516096,
+ -1.8600700291948395,
+ 0.28945135599516014,
+ 1.3817733335430453,
+ -2.588592311475151,
+ 2.880384854379006,
+ -1.6490675405516548,
+ -3.4285550766147255,
+ -0.6847577707099469,
+ -0.06372151936849747,
+ 1.4906409693340017,
+ -2.6452790327259823,
+ 2.8567828941176545,
+ -1.4599982231459758,
+ -2.8858326876297706,
+ -0.8129622565536913,
+ -0.15157719950665852,
+ 1.6605131041825218,
+ -2.7280752703862454,
+ 2.833676194058584,
+ -2.0329414517974285,
+ 0.5176278663429211,
+ 1.089309614408155,
+ -1.5156078709118024,
+ -2.299451173376474,
+ 2.9561737549871725,
+ 1.8017541009069908,
+ -1.9402943649884368,
+ 0.3166256810811249,
+ 1.2762965086338358,
+ -1.5944700300329506,
+ -2.678309778723524,
+ 3.0877671491082714,
+ 1.7619630110401925,
+ -1.782929594564083,
+ 0.18915188495699645,
+ 1.3855964979142048,
+ -2.634473431518348,
+ 2.870237327168692,
+ -2.254751087666321,
+ 2.555522004643081,
+ 2.6444087949695536,
+ 2.831123358054563,
+ 2.8511856759661556,
+ 3.5460848705713883,
+ 3.4847668697188845,
+ -2.608321853822689,
+ 2.8763861749150625,
+ -2.291677841656344,
+ 0.7962604419639413,
+ 0.8169455846588868,
+ -2.245897974238987,
+ 1.878441995307567,
+ 3.4269558979372476,
+ -2.082003652509335,
+ -1.328323625494978,
+ 0.6769762776403461,
+ 0.938798676527096,
+ -2.3713165652939208,
+ 1.8865760937729938,
+ 3.2217760216227993,
+ -1.7177785776043384,
+ -1.2312847612290345,
+ 0.4760631116976462,
+ 1.1282363758288985,
+ -2.4434015567566014,
+ 2.890313770916692,
+ -2.428976663204428,
+ 1.1020883248962032,
+ 0.26365724123272516,
+ -0.08862285540791985,
+ -3.1809580990048256,
+ -1.6882303719621445,
+ 2.8861901782416477,
+ -2.3073663373986633,
+ 0.9118868482143847,
+ 0.37269583494655467,
+ 0.1479448966979115,
+ -3.7074027000477527,
+ -1.8548694561760297,
+ 2.8650127223299813,
+ -2.2273896061012297,
+ 0.7920713322395472,
+ 0.9128565296948314,
+ -2.3079345059039227,
+ 2.879203000216449,
+ -4.191056649559461,
+ -5.158034259867118,
+ -4.52870915210963,
+ -3.6236890294169,
+ 2.7415173339763763,
+ -2.838840515010569,
+ 1.9397235082487285,
+ -0.39640758742428733,
+ -1.2808613015665025,
+ 2.4673159078320475,
+ -1.9959165349330525,
+ -3.7456378801784567,
+ 1.6601838262440713,
+ 1.1275593067015892,
+ -0.27168698734345603,
+ -1.3932917488232615,
+ 2.5682386576204865,
+ -1.891850411610423,
+ -3.3164954236631017,
+ 1.2546675010747215,
+ 0.9935191038157293,
+ -0.06858481714106579,
+ -1.570804444715758,
+ 2.6218051840257606,
+ -2.888153100542769,
+ 2.103965011584622,
+ -0.7152975036738715,
+ -0.5508298400411071,
+ -0.42831506669141206,
+ 3.29779541076759,
+ 1.8010861326888201,
+ -2.862967263834424,
+ 1.9601846133611334,
+ -0.5143848509572752,
+ -0.6688815645438668,
+ -0.7190725072706922,
+ 3.6119927909259197,
+ 1.8522067233221948,
+ -2.8124577105668513,
+ 1.8641359450388764,
+ -0.3921203333918086,
+ -1.370744788247591,
+ 2.5167849431012224,
+ -2.9274257960924968,
+ 4.747750971673171,
+ 4.75047837863609,
+ 2.530628090231831,
+ 2.4412894912943623,
+ 0.647091778114049,
+ 0.5175713953920507,
+ -1.3178062264644332,
+ 2.4885924509252897,
+ -0.7759993314059281,
+ -1.0125322110319874,
+ 2.3023532791417414,
+ -2.9263019309845686,
+ 1.709028541779721,
+ 3.4612481141190377,
+ 0.07217832105856133,
+ -0.2637313868066062,
+ -1.1278482011523572,
+ 2.377750060428214,
+ -2.932489908444344,
+ 1.6292430384120633,
+ 3.1096149227256786,
+ 0.30271681638014886,
+ -0.1424742982481707,
+ -1.314846845253487,
+ 2.4866411913152575,
+ -2.9304720299498674,
+ 2.291836977902859,
+ -0.9962719621746906,
+ -0.7018988320810413,
+ 1.3212463014384028,
+ 1.8978325896654138,
+ -3.159380651662816,
+ -1.8709016892085446,
+ 2.2151879638733396,
+ -0.8006317821718159,
+ -0.8978285091999159,
+ 1.4595519448050933,
+ 2.3670224962705935,
+ -3.505737626040179,
+ -1.9336977533822082,
+ 2.0778505244079986,
+ -0.6784297913351378,
+ -1.0166090907536909,
+ 2.3616244255967858,
+ -2.931442026684827,
+ 2.4743644037141745,
+ -3.0628996508926867,
+ -3.871211628405903,
+ 1.6263404818558213e-15,
+ 1.9701787829788013e-15,
+ 3.0258266807189747e-16,
+ 4.2517083485225616e-17,
+ -2.638292563737882e-16,
+ -1.6874484496081762e-16,
+ -5.523498540322842e-16,
+ 1.2242273065784808e-17,
+ -2.0249381395298115e-16,
+ 5.67445900211377e-17,
+ 5.4097612060968004e-17,
+ 5.358476008118513e-16,
+ 1.4740358515694953e-16,
+ 3.5816920523546093e-16,
+ -9.098986738083303e-17,
+ -1.1117307432712692e-16,
+ -9.620110523991711e-17,
+ -2.719769854074355e-16,
+ -6.906958114817781e-17,
+ -1.4260593760414197e-16,
+ 5.715818032741421e-17,
+ -1.7643762465756078e-16,
+ -1.1561917011959944e-16,
+ -1.994203209894638e-16,
+ 1.8164886251664485e-16,
+ -3.3517358420648676e-16,
+ -6.691891155553994e-17,
+ 4.5743087874182424e-17,
+ 4.549493369041652e-18,
+ 1.887626157846009e-16,
+ -4.1969076329409235e-17,
+ 1.463282503606306e-16,
+ 1.3656751913250487e-16,
+ -5.1450634100798315e-17,
+ -2.718115492849249e-16,
+ -2.578735559634064e-16,
+ -3.759535884053511e-17,
+ -5.848166930749906e-17,
+ -1.9711713997138647e-16,
+ 3.624705444207367e-16,
+ 2.445973071319303e-16,
+ 1.405379860727594e-16,
+ 2.0828407824085234e-16,
+ -6.86559908419013e-17,
+ -7.386722870098537e-17,
+ 1.6299593970357408e-16,
+ -4.7604244252426737e-17,
+ -3.537024299276746e-16,
+ 4.993275767676352e-16,
+ 4.537085659853356e-17,
+ -8.271806125530276e-17,
+ 1.4752766224883249e-16,
+ 1.5013328117837452e-17,
+ -4.2951353306815956e-17,
+ -5.559067306662622e-16,
+ -1.1431636065482842e-16,
+ -3.441071348220595e-17,
+ -2.6196809999554386e-16,
+ 2.3339934958949367e-16,
+ 1.5021599923962983e-16,
+ 3.241720820595315e-16,
+ -1.1359257761884453e-16,
+ 3.277289586935095e-16,
+ -1.5949076185788062e-16,
+ -1.4392942658422682e-16,
+ -1.163119338826126e-16,
+ -2.7072587473094905e-16,
+ 1.2374621963793294e-16,
+ -2.1845839977525458e-16,
+ -1.407861402565253e-16,
+ -6.782105541110558e-17,
+ 5.070617154950059e-17,
+ -5.2319173743978994e-17,
+ -3.082488552678857e-16,
+ -9.462946207606635e-17,
+ -3.122606812387679e-16,
+ 4.1028158382630167e-17,
+ -7.006219788324144e-17,
+ 1.150194641754985e-16,
+ -3.455133418633996e-16,
+ 1.290401755582723e-17,
+ 1.624582723054146e-16,
+ -1.9604180517506753e-17,
+ 1.5236666883226767e-16,
+ -2.451763335607174e-16,
+ 2.2457953630814698e-17,
+ -2.744585272450946e-16,
+ -2.9286329587439945e-16,
+ -8.544775727672775e-16,
+ 3.68839835137395e-16,
+ -5.475935655101043e-16,
+ 9.793818452627848e-16,
+ 3.819506478463605e-16,
+ -1.495542547495874e-16,
+ -1.952146245625145e-16,
+ -1.0848473733632957e-16,
+ -4.257498612810433e-16,
+ -1.4591466005435408e-16,
+ 2.4279818929962745e-16,
+ 1.8611563782443123e-18,
+ 5.984651731821155e-17,
+ 1.8561932945689939e-16,
+ 1.0219816468092656e-16,
+ -4.683496628275243e-16,
+ -4.508134338414001e-16,
+ 1.1812139147257235e-16,
+ -3.88774887899923e-18,
+ 5.97224402263286e-17,
+ 4.3079566301761676e-16,
+ 1.1845226371759356e-16,
+ 3.7719435932418056e-17,
+ 2.0927669497591598e-16,
+ 1.6766951016449869e-16,
+ 9.61183871786618e-17,
+ -1.819797347616661e-18,
+ -1.4177875699158894e-16,
+ -3.2036705124178757e-16,
+ -2.1961645263282882e-16,
+ 3.298796282861474e-16,
+ -1.9703442191013117e-16,
+ 1.559235454662457e-16,
+ 1.6444350577554188e-16,
+ -5.911859837916489e-16,
+ -1.4852027898389612e-16,
+ -9.769003034251256e-17,
+ 6.782881022934827e-17,
+ -6.203854594147707e-18,
+ 1.2552465795492195e-16,
+ -2.7611288847020064e-16,
+ -9.299578036627412e-17,
+ -6.915229920943311e-17,
+ -1.846680717524634e-16,
+ -8.040609144321705e-16,
+ 9.678013166870423e-17,
+ -2.482369018271636e-16,
+ 2.072914615057887e-16,
+ 1.2490427249550716e-17,
+ -2.1390890640621293e-16,
+ -2.146947279881383e-16,
+ 3.1515581338270354e-17,
+ 2.249931266144235e-17,
+ 4.944885701841999e-16,
+ -9.702828585247013e-17,
+ -3.0713216144093913e-16,
+ 6.327931686030662e-17,
+ 6.815968247436948e-17,
+ 6.257621333963654e-17,
+ -7.221286747587932e-17,
+ -2.2995621028974166e-17,
+ -9.843449289381028e-18,
+ -9.098986738083304e-18,
+ 4.982936010019439e-16,
+ 1.3615392882622836e-16,
+ 1.398865813403739e-16,
+ 3.748782536090321e-16,
+ 1.9356026333740845e-16,
+ 7.097209655704977e-17,
+ 1.1650838927809395e-16,
+ -1.713918229209873e-16,
+ 1.0935327697951025e-16,
+ -9.992341799640573e-17,
+ -1.8776999904953726e-16,
+ -1.1754236504378523e-16,
+ -1.284611491294852e-16,
+ 4.453540417985501e-16,
+ -1.290401755582723e-17,
+ -1.2357302869717965e-16,
+ 1.3979352352146168e-16,
+ -1.4988512699460861e-16,
+ 3.316994256337641e-17,
+ 4.330290506715099e-17,
+ 2.0582321591850709e-16,
+ -1.2506970861801778e-16,
+ -1.5073298712247544e-16,
+ -4.6983858793011966e-17,
+ 2.8785885316845363e-17,
+ -1.3193530770220791e-16,
+ 5.459392042849982e-18,
+ -7.345363839470885e-16,
+ -8.963329117624608e-16
+ ],
+ [
+ 4.63715348563911,
+ 3.719465029471534,
+ -2.815389441806468,
+ 2.7340685638592355,
+ -1.8460827202040822,
+ 0.18836471176319722,
+ 1.3772700945245198,
+ -2.5766026064037537,
+ 1.9848255528752443,
+ 3.7566969886105466,
+ -1.4545788925051923,
+ -1.0262232476863526,
+ 0.06565094324540556,
+ 1.4874966031944925,
+ -2.664876318346516,
+ 1.8714991967732024,
+ 3.311991145636114,
+ -1.0710645999261283,
+ -0.8951197139043672,
+ -0.13840011046732306,
+ 1.656056322552862,
+ -2.713582022790493,
+ 2.7958091059022645,
+ -2.0183319277069693,
+ 0.5082472638001188,
+ 0.649065783784614,
+ 0.6117559182369451,
+ -3.3016221727252186,
+ -1.8210536210434982,
+ 2.765791222779304,
+ -1.8656083187782957,
+ 0.30830682385143743,
+ 0.7646802677346902,
+ 0.9141321609040037,
+ -3.6018753732429447,
+ -1.8640609607865846,
+ 2.702655363102914,
+ -1.7673723036839788,
+ 0.18404991837989795,
+ 1.464011853035828,
+ -2.621001468830215,
+ 2.852876942129101,
+ -4.59049575737753,
+ -4.6015064975061994,
+ -2.5804558574506515,
+ -2.498804264559349,
+ -0.9321570040027248,
+ -0.8088835971133609,
+ 1.4139027463170868,
+ -2.5959929311723697,
+ 2.8591423353905285,
+ -2.214546021156844,
+ 0.787753009824905,
+ 0.8184259200701351,
+ -1.3899802826041858,
+ -2.2214583547286417,
+ 3.3409754933934557,
+ 1.847903219517923,
+ -2.130942376199533,
+ 0.6666516772041606,
+ 1.0115777352060071,
+ -1.475817614906981,
+ -2.2206620375738155,
+ 2.9791039924846023,
+ 1.8062748982227859,
+ -1.987673554727847,
+ 0.46683855158821763,
+ 1.1252713600020732,
+ -2.483060572324829,
+ 2.873365368012344,
+ -2.411193224317929,
+ 0.7949201695806877,
+ 1.8769384025230684,
+ 2.110871927430524,
+ 0.942583258565185,
+ -2.5451898642199815,
+ 2.8627646038153913,
+ -2.289870113935865,
+ 0.7500340534277244,
+ 1.9344019278504705,
+ 2.621823986103745,
+ 1.1471981947559855,
+ -2.6391665349496156,
+ 2.847319531347664,
+ -2.2117061876056603,
+ 0.6911973927919702,
+ 0.9112576649549562,
+ -2.29846629197539,
+ 3.7880243807218474,
+ 4.568965103377959,
+ 2.416305795937187,
+ 1.847300889486075,
+ -1.827551270657061,
+ 2.727208792774024,
+ -2.821101077843281,
+ 1.85354946965137,
+ -0.3903995328378436,
+ -1.2788967116560679,
+ 1.6296439532813392,
+ 2.7526508751769123,
+ -3.2383325638343643,
+ -1.8319088061052577,
+ 1.7585815849950979,
+ -0.263898854112093,
+ -1.457712981108466,
+ 1.6390625169759798,
+ 2.574533515257415,
+ -2.7178457413059443,
+ -1.701513287743735,
+ 1.5930856656292445,
+ -0.06201677163453554,
+ -1.5646622326420578,
+ 2.646568047544754,
+ -2.8706146685767786,
+ 2.087363872877984,
+ -0.5211852208754959,
+ -1.43154910941001,
+ -2.480747863976279,
+ -1.1834143802734884,
+ 2.693337693865573,
+ -2.8269250023843155,
+ 1.9440685558680675,
+ -0.4076981991661535,
+ -1.3210720828900604,
+ -2.8545111952864812,
+ -1.3002589831595976,
+ 2.756433083190374,
+ -2.794096806155612,
+ 1.850262974080632,
+ -0.29095188070355554,
+ -1.3660631654669915,
+ 2.505007362188948,
+ -5.127004735191055,
+ -5.049901694939983,
+ -1.3690378564228862,
+ -1.2051303443257835,
+ 2.2277705749923307,
+ 2.372196137298766,
+ -0.35060940363772936,
+ -1.3133964780282126,
+ 2.4728689475925756,
+ -0.6748332252490138,
+ -1.010530774017126,
+ 2.2931212076694663,
+ -1.8830168391369912,
+ -3.4680778729524464,
+ 1.8992406169113942,
+ 1.2412967017857548,
+ -0.5527336835609825,
+ -1.1274191412189019,
+ 2.4104071880758373,
+ -1.8828381791065332,
+ -3.2466513670427384,
+ 1.5437302693636432,
+ 1.1408629208833798,
+ -0.35280436031357343,
+ -1.3131207162875178,
+ 2.474340298413336,
+ -2.9076432186491252,
+ 2.2763181120996956,
+ -0.9845029144763894,
+ -0.3676233396374525,
+ -0.1001858420023954,
+ 3.2140031782092318,
+ 1.72432780648065,
+ -2.894657996130016,
+ 2.1481868694528004,
+ -0.7897924883352802,
+ -0.4806602733608332,
+ -0.36158135599443675,
+ 3.7290432757261613,
+ 1.8828815373657757,
+ -2.864032248923253,
+ 2.0614338678670547,
+ -0.6706333074410851,
+ -1.1039430733847353,
+ 2.350344435212196,
+ -2.914892187195226,
+ 4.129574706589932,
+ 5.092059311226396,
+ -7.517417406881915e-16,
+ -1.0768237214215314e-15,
+ -1.4144788474656773e-16,
+ -7.673134157195022e-17,
+ 8.852642011907355e-17,
+ -1.6791766434826462e-17,
+ 3.149903772601929e-16,
+ 3.716522492200753e-16,
+ 2.241659460018705e-16,
+ 1.3152171739593138e-17,
+ -1.1549509302771647e-17,
+ -6.402377941160433e-16,
+ 1.464936864831412e-16,
+ -2.388897609053144e-16,
+ -1.5153948821971465e-16,
+ 1.2804755882320868e-16,
+ 1.2349806545416703e-16,
+ 1.7039920618592368e-16,
+ 2.3773170804774015e-16,
+ -1.227536029028693e-16,
+ 4.4254162771586974e-17,
+ 2.0307284038176827e-16,
+ 1.152676183592644e-16,
+ 7.570512062450162e-17,
+ -2.7694006908275367e-16,
+ 3.4576149604716557e-17,
+ 3.2756352257099896e-17,
+ -8.71848365630891e-17,
+ -1.878113580801649e-16,
+ -1.3325879668229276e-16,
+ 2.388070428440591e-16,
+ -1.5273890010791654e-16,
+ -3.7289302013890483e-16,
+ 3.0688400725717327e-17,
+ 2.021215826773323e-16,
+ 2.9447629806887785e-17,
+ 4.628075527234189e-17,
+ -2.5921772445880502e-17,
+ 5.724089838866952e-17,
+ -3.707837095768946e-16,
+ 4.135903062765138e-17,
+ -1.4438437592113098e-16,
+ -2.888928289341449e-16,
+ 6.319659879905131e-17,
+ 8.056739166266488e-17,
+ -8.230447094902624e-17,
+ 9.181704799338606e-17,
+ 2.7427241160727015e-16,
+ -3.48904782374867e-16,
+ -2.5063572560356735e-17,
+ 1.8148342639413425e-16,
+ -3.0812477817600277e-18,
+ -1.7577588016751836e-16,
+ -8.966637840074819e-17,
+ 1.2407709188295415e-16,
+ 3.234276195082338e-17,
+ 2.8868603378100666e-17,
+ 1.2022553215575412e-16,
+ -7.742410533496338e-17,
+ 1.0112282988460762e-16,
+ -2.6663133069881156e-16,
+ -2.5508182139603988e-17,
+ -1.9753073027766298e-16,
+ 1.7039920618592368e-16,
+ 1.0447291136544738e-16,
+ 2.219325583479773e-16,
+ 1.2639319759810263e-16,
+ -1.7271531190107215e-16,
+ -6.154223757394526e-17,
+ 4.9010451293766884e-17,
+ 2.2846728518714624e-16,
+ 3.6644101136099126e-17,
+ 7.80858498250058e-17,
+ 1.0262209474485998e-16,
+ 3.876168350423487e-16,
+ 8.08982639076861e-17,
+ -2.1804480946897807e-16,
+ -9.905487835322505e-17,
+ 9.378160194819951e-18,
+ 1.0149506116025648e-16,
+ 8.602678370551488e-18,
+ 4.0366413892587744e-17,
+ 3.081247781760028e-17,
+ 6.179039175771117e-17,
+ 7.974021105011186e-17,
+ 6.906699620876358e-17,
+ 2.4583807805075982e-16,
+ 5.935020895067974e-17,
+ 4.2790053087368117e-16,
+ 2.5944519912725713e-16,
+ -4.5743087874182424e-17,
+ -5.007337838089753e-16,
+ -2.396342234566121e-16,
+ 2.5075980269545034e-16,
+ 1.403725499502488e-16,
+ 1.646089418980525e-17,
+ 2.1072426104788378e-16,
+ -4.453333622832362e-17,
+ 1.163015941249557e-16,
+ 2.5357221677813063e-16,
+ -7.481848640542135e-17,
+ 3.8240559718326464e-16,
+ -2.0402409808620425e-16,
+ 1.5000920408649157e-16,
+ -3.69439541081496e-17,
+ -9.303713939690178e-17,
+ -3.2673634195844593e-17,
+ -3.532061215601428e-17,
+ -1.0159845873682561e-16,
+ -5.930884992005208e-17,
+ 2.3657365519016588e-17,
+ -9.599431008677885e-17,
+ -2.591143268822359e-16,
+ 6.638124415738047e-17,
+ -5.542110104105285e-17,
+ -1.1216569106219055e-16,
+ 2.469547718777064e-16,
+ 1.5981129434524492e-16,
+ -1.4260593760414197e-16,
+ 1.4558378780933287e-17,
+ -1.0422475718168147e-16,
+ 1.7867101231145398e-17,
+ 2.0303148135114062e-16,
+ 2.5849394142282112e-17,
+ -9.926167350636331e-17,
+ 5.657915389862709e-17,
+ -6.27830084927748e-17,
+ -1.4534597338322388e-16,
+ 6.33413554062481e-17,
+ -3.788487205492866e-17,
+ -1.4355719530857795e-16,
+ 1.62292836182904e-16,
+ 3.578383329904397e-16,
+ 2.304525186572735e-16,
+ 1.1208297300093525e-16,
+ -2.6792380040592566e-16,
+ 1.9438744394996147e-17,
+ 1.0203272855841595e-16,
+ 1.1266199942972237e-16,
+ -6.981404369947554e-17,
+ 2.601483026479272e-16,
+ -1.3705348774237977e-16,
+ -3.8008949146811615e-17,
+ 1.492233825045662e-16,
+ 1.5468277454741618e-17,
+ 2.1134464650729854e-17,
+ -2.456726419282492e-17,
+ -1.1894857208512538e-16,
+ 6.55954225754551e-17,
+ -4.020097777007714e-17,
+ -6.534726839168919e-17,
+ -3.2454431333518036e-16,
+ -7.452897319102779e-17,
+ -8.218039385714329e-17,
+ -3.90429249125029e-17,
+ -5.394768557494277e-17,
+ 2.903403950061127e-17,
+ -1.9339482721489785e-16,
+ 1.6080391108030856e-16,
+ 3.5403330217269584e-17,
+ 9.700760633715631e-17,
+ 9.305781891221561e-19,
+ 3.877926109225162e-17,
+ 4.216553172489058e-17,
+ 1.4492204331929045e-16,
+ 4.2434365423970314e-17,
+ 1.1439907871608373e-16,
+ -1.654361225106055e-16,
+ 1.654361225106055e-16,
+ -1.8694281843698423e-16,
+ 1.6130021944784037e-16,
+ -8.917007003321637e-17,
+ 8.950094227823758e-17,
+ 2.8124140826802937e-18,
+ 4.144174868890668e-17,
+ -8.238718901028154e-17,
+ -6.650532124926343e-17,
+ 4.524677950665061e-17,
+ 4.979627287569227e-16,
+ 1.225881667803587e-16
+ ],
+ [
+ -2.649702014314028,
+ -2.040301966093851,
+ 1.903688446241551,
+ -2.825030435408959,
+ 2.7533224931319578,
+ -1.7943735075387515,
+ 0.2079510814246161,
+ 1.3699203256214516,
+ -1.6918123065244595,
+ -2.891353730869889,
+ 3.154123923251668,
+ 1.8012552779629174,
+ -1.6933132643491244,
+ 0.08216008731685037,
+ 1.5466373367116206,
+ -1.6911729012312573,
+ -2.6874402805106583,
+ 2.6346811451603283,
+ 1.6681942439840167,
+ -1.5231765348113517,
+ -0.12286028298209592,
+ 1.6489737733797913,
+ -2.7545835245446915,
+ 2.8139934212240565,
+ -2.0400245697182164,
+ 0.43395814183340287,
+ 1.2896567419211669,
+ 2.5987066765734674,
+ 1.2602227955542418,
+ -2.793992812964965,
+ 2.762219738486795,
+ -1.8872670545028678,
+ 0.31803560785062024,
+ 1.1609920233165385,
+ 2.97378497130618,
+ 1.3732358610610476,
+ -2.8496912368825265,
+ 2.72140036617533,
+ -1.7909446531943223,
+ 0.10763582970609052,
+ 1.4551910443469445,
+ -2.626860495089869,
+ 5.185022431396161,
+ 5.113735408358684,
+ 1.5045978706213958,
+ 1.3461214308657892,
+ -2.0079993443929762,
+ -2.1546308681830704,
+ 0.16600286011465362,
+ 1.4066592331894645,
+ -2.600139815346968,
+ 2.864442606111451,
+ -2.2377847643584676,
+ 0.8073583895075966,
+ 0.4530985186639683,
+ 0.29455476839686257,
+ -3.549208024887745,
+ -1.7843667153289797,
+ 2.8470249941443684,
+ -2.15259250687112,
+ 0.6107186388514193,
+ 0.5901572099047253,
+ 0.5006819715394877,
+ -3.305075023899472,
+ -1.8120436097982051,
+ 2.8042508261847408,
+ -2.0094164547624676,
+ 0.4877322721454224,
+ 1.2015521581514643,
+ -2.4855155731786547,
+ 2.8880414289521634,
+ -1.611966050598723,
+ -3.0870095575661765,
+ -0.35619900893422346,
+ 0.11174222482687093,
+ 1.3143385853736917,
+ -2.5870685783836587,
+ 2.8784645393415804,
+ -1.6462451096080624,
+ -3.4234481321650216,
+ -0.6886741136783829,
+ -0.06607450603572362,
+ 1.4913502161059318,
+ -2.6452337552245853,
+ 2.863868722175616,
+ -2.1712390014352514,
+ 0.7128420317203938,
+ 0.9003893717470449,
+ -2.1733610280398517,
+ -2.5173376975903463,
+ 0.489586659846224,
+ 0.5375088364435591,
+ 0.24260221521445544,
+ -1.8237263489275464,
+ 2.7348165394462227,
+ -2.8145618196587363,
+ 1.8772870862378122,
+ -0.40871207154480566,
+ -0.7399666270748678,
+ -0.8714178630091897,
+ 3.8019262997918797,
+ 1.9602668078798264,
+ -2.776492428483811,
+ 1.7803277549539285,
+ -0.20467929650712835,
+ -0.8611169798288304,
+ -1.0038564657958982,
+ 3.3310715186320197,
+ 1.8751040689424896,
+ -2.7052131638899013,
+ 1.6146958083962015,
+ -0.08129300093439207,
+ -1.63725680946521,
+ 2.652413078268735,
+ -2.887838805363267,
+ 1.4390024813360915,
+ 2.855813125439216,
+ 0.8639785399781276,
+ 0.18172128896177392,
+ -1.7384091036617195,
+ 2.727311111031133,
+ -2.845029004137412,
+ 1.3663066096724041,
+ 2.96283879714177,
+ 1.1788245961274655,
+ 0.3277737494741339,
+ -1.8997006057311794,
+ 2.765419530334149,
+ -2.8133634540051924,
+ 1.799985730033245,
+ -0.31134040506103333,
+ -1.3583539028440386,
+ 3.878426387451265,
+ 3.7452367543745355,
+ -0.21367539987778483,
+ -0.3935009964632262,
+ -4.424430190908262,
+ -4.54237822374106,
+ 1.8481870396758502,
+ -0.3719617265425888,
+ -1.3003273657716348,
+ 2.522229144538541,
+ -0.6962879078959954,
+ -1.000477299968966,
+ 1.4588451346124824,
+ 2.369722149462564,
+ -3.287385336003104,
+ -1.8341928265284153,
+ 2.0009605733087485,
+ -0.5712436965928359,
+ -1.1892830016414415,
+ 1.5392267421509642,
+ 2.3505316045797358,
+ -2.9188368878156683,
+ -1.7868332787123238,
+ 1.8482278015387765,
+ -0.3705091508060475,
+ -1.3029853100169753,
+ 2.5252957997859267,
+ -2.9237290591590948,
+ 2.2975645624002,
+ -0.7138222681244946,
+ -1.7494931183191398,
+ -2.2450150434958074,
+ -1.0266083819138678,
+ 2.584288776781336,
+ -2.9012229008044463,
+ 2.1695778127478973,
+ -0.6623520462060344,
+ -1.781508414959078,
+ -2.7665167711522387,
+ -1.2314733747313116,
+ 2.667866616753317,
+ -2.881397757088517,
+ 2.084553697676166,
+ -0.5980044691035932,
+ -1.09228301927888,
+ 2.353027428149061,
+ -3.892142724567413,
+ -4.7038072280632175,
+ 9.719372197498075e-16,
+ 1.235476962909202e-15,
+ 3.135014521575975e-17,
+ 5.227781471335134e-17,
+ -1.1600174115290522e-16,
+ -9.504305238234287e-17,
+ -5.3187713387159673e-17,
+ -4.551974910879311e-16,
+ -2.0944213109842658e-16,
+ -7.190267474617193e-17,
+ 7.345363839470886e-17,
+ 5.671977460276111e-16,
+ -3.060568266446202e-16,
+ -9.553936074987468e-18,
+ 9.264422860593909e-17,
+ -1.374774178063132e-16,
+ -7.146840492458159e-17,
+ 2.6469779601696883e-17,
+ -8.817745329815274e-17,
+ 2.547716286663325e-16,
+ 7.703119454400069e-17,
+ -2.6883369907973396e-18,
+ -9.156889380962015e-17,
+ -2.584939414228211e-18,
+ 4.9299964508160443e-17,
+ -3.4576149604716557e-17,
+ -2.919947562312188e-17,
+ 1.1642567121683865e-16,
+ 4.0598024464102593e-16,
+ 2.0514079191315083e-17,
+ -2.9422814388511194e-16,
+ 1.7800926782141153e-16,
+ -2.0249381395298115e-16,
+ 2.7710550520526424e-17,
+ -2.326859063111667e-16,
+ -4.4833189200374094e-17,
+ 5.4097612060968004e-17,
+ 1.3995895964397228e-16,
+ 1.593149859777131e-16,
+ 2.0509943288252319e-16,
+ 9.719372197498074e-17,
+ -1.4558378780933287e-16,
+ 4.0928896709123804e-16,
+ -3.705769144237564e-17,
+ -2.3082474993292237e-16,
+ 1.4757936103711705e-16,
+ -1.2597960729182611e-16,
+ 1.252351447405284e-16,
+ 2.0629884477072508e-16,
+ 8.702974019823541e-17,
+ -3.508900158449943e-16,
+ -1.6427806965303127e-16,
+ 2.7123252285613777e-16,
+ 1.9554549680753572e-16,
+ 5.161607022330892e-17,
+ -6.72084247699335e-17,
+ -2.7669191489898773e-17,
+ 1.0306670432410724e-16,
+ 5.492479267352103e-17,
+ -1.0703717126436177e-16,
+ 3.990319274955805e-16,
+ 8.172544452023912e-17,
+ 1.4409486270673742e-16,
+ -2.1142736456855385e-16,
+ -2.626298444855863e-16,
+ -2.752857078576476e-16,
+ -9.479489819857696e-17,
+ 1.2039613815709318e-16,
+ 3.1511445435207584e-16,
+ 1.2650693493232865e-17,
+ -6.274164946214715e-17,
+ 5.161607022330892e-17,
+ 7.77549775799846e-18,
+ -1.9438744394996148e-16,
+ -4.666539425717906e-16,
+ -2.953034786814309e-17,
+ 2.962133773552392e-16,
+ 2.0725010247516106e-16,
+ -5.839895124624375e-17,
+ 8.70194004405785e-17,
+ 4.255844251585327e-17,
+ -1.5493092873118206e-16,
+ 1.761894704737949e-17,
+ -2.599828665254166e-16,
+ -8.366931895973874e-17,
+ -9.429858983104514e-18,
+ -1.363503842217097e-16,
+ 8.528232115421714e-17,
+ -3.7223127564886245e-17,
+ -1.9511122698594538e-16,
+ 7.527343574232551e-16,
+ -5.492479267352104e-16,
+ 3.9539233280034717e-17,
+ -1.818453179121262e-16,
+ 3.391440511467413e-18,
+ -6.509911420792328e-17,
+ 1.1514354126738145e-16,
+ 2.7114980479488247e-16,
+ -4.407218303682531e-16,
+ -3.179889069806976e-16,
+ 2.5485434672758783e-16,
+ -8.456267402129601e-16,
+ 2.3814529835401667e-16,
+ -1.3882158630171187e-16,
+ -1.7288074802358276e-16,
+ -3.965503856579214e-16,
+ 6.986057260893164e-17,
+ 8.271806125530276e-20,
+ 1.1282743555223297e-16,
+ 1.6791766434826462e-17,
+ -1.3383782311107988e-16,
+ -1.3565762045869652e-17,
+ 1.9510088722828847e-16,
+ -1.270135830575174e-16,
+ 8.371067799036639e-17,
+ -1.9289851884736603e-16,
+ -2.271437962070614e-16,
+ -1.0290126820159663e-16,
+ -3.2094607767057474e-17,
+ 8.189088064274973e-17,
+ 2.2598574334948716e-16,
+ -1.5550995515996918e-16,
+ 3.9721213014796384e-16,
+ 1.4459117107426924e-16,
+ 1.6874484496081762e-16,
+ -7.610061635487853e-17,
+ 3.639594695233322e-17,
+ -6.162495563520056e-17,
+ 4.615667818045894e-17,
+ 3.095309852173429e-16,
+ 4.2136580403451225e-16,
+ -2.1837568171399928e-17,
+ 2.845501307182415e-16,
+ -2.346297807506663e-16,
+ -3.515517603350368e-18,
+ 5.474281293875937e-16,
+ -1.0985992510469898e-16,
+ -3.35504456451508e-16,
+ -2.008394527278751e-16,
+ 1.3631936494873896e-16,
+ -3.0142461521432324e-16,
+ 5.96397221650733e-17,
+ 5.848166930749906e-17,
+ 2.336785230462303e-17,
+ -2.0596797252570386e-17,
+ -1.6725591985822217e-16,
+ -5.735980560172401e-17,
+ 1.6005944852901083e-16,
+ -1.4273001469602493e-16,
+ 1.2217457647408219e-16,
+ 2.0654699895449099e-16,
+ 3.7611902452786163e-16,
+ 8.040195554015428e-17,
+ 3.780215399367336e-17,
+ -1.3751877683694084e-17,
+ -5.1985716559543555e-17,
+ -9.744187615874665e-17,
+ -4.9961708998202865e-17,
+ -1.096427901939038e-16,
+ 6.865599084190129e-18,
+ -4.2909994276188304e-17,
+ -3.192917164454687e-17,
+ 8.080520608877388e-17,
+ 1.464109684218859e-17,
+ -4.466775307786349e-16,
+ -8.168408548961147e-17,
+ -2.397893198214658e-16,
+ 6.526455033043388e-17,
+ -3.4964924492616475e-16,
+ 2.573358885652469e-16,
+ -7.717595115119747e-17,
+ -2.961306592939839e-17,
+ 1.6254099036666994e-17,
+ 1.561716996500116e-16,
+ -1.0447291136544738e-16,
+ -7.452897319102779e-17,
+ 2.297494151366034e-17,
+ -1.752382127693589e-16,
+ -9.509268321909606e-16,
+ 6.60090128817316e-16
+ ],
+ [
+ -0.20598427702296768,
+ -0.3067224188382831,
+ -0.44340874128465296,
+ 1.9025197746547866,
+ -2.822274362577182,
+ 2.721303357940333,
+ -1.7946647612678854,
+ 0.2072356482811866,
+ 0.8399617749830611,
+ 1.0726111520680583,
+ -3.801534790351681,
+ -1.9763085390351025,
+ 2.6786700525813756,
+ -1.691616383949713,
+ 0.004403348703287202,
+ 0.9517139782761039,
+ 1.1759247404511344,
+ -3.3187749297703117,
+ -1.8853644137188679,
+ 2.5952104783987724,
+ -1.5215984092045252,
+ -0.12084867417920452,
+ 1.7239494958131902,
+ -2.7519290079477092,
+ 2.8117320105092953,
+ -1.3683077394843073,
+ -2.755309134774716,
+ -1.038627875530856,
+ -0.28472402797768126,
+ 1.822848190468326,
+ -2.814357127578688,
+ 2.75991834080124,
+ -1.2904532472805383,
+ -2.8421411195829376,
+ -1.364025583158795,
+ -0.4300096053082176,
+ 1.9749932868105526,
+ -2.84761505576346,
+ 2.7198608962154145,
+ -1.7139314050920365,
+ 0.10938508433073715,
+ 1.4546111491006668,
+ -4.060189564362036,
+ -3.930637445172851,
+ 0.06442104202878522,
+ 0.24689575851555745,
+ 4.269650706365466,
+ 4.391004744664502,
+ -1.761187244123176,
+ 0.16526986888595982,
+ 1.4038912162541086,
+ -2.6404945030633393,
+ 2.862543347307157,
+ -2.2358549830151495,
+ 0.6294609802987602,
+ 1.7209338635165115,
+ 2.581351586811923,
+ 1.1303138375806112,
+ -2.691287746876592,
+ 2.844706148596594,
+ -2.097447864578075,
+ 0.4868066882163046,
+ 1.3771058219060752,
+ 2.5352178722822467,
+ 1.2178027190503193,
+ -2.766115556454028,
+ 2.801895263398207,
+ -2.009355629663701,
+ 0.3943236519306068,
+ 1.1988365360960576,
+ -2.4840001703962535,
+ 1.8915041681398659,
+ 3.2693736810926497,
+ -1.5083412691861438,
+ -1.1242133053172656,
+ 0.2718789317517738,
+ 1.3818197630545344,
+ -2.5854170312186455,
+ 1.9932397758157692,
+ 3.772117927314129,
+ -1.463623022434853,
+ -1.0319575603941342,
+ 0.06741769362944404,
+ 1.4905860648124132,
+ -2.6423429741049844,
+ 2.848012554857858,
+ -2.171090603563191,
+ 0.7118157158567822,
+ -0.15350953416085553,
+ -0.35838541357861714,
+ -3.2200734725654048,
+ -2.7334243403456684,
+ 1.3378220486720036,
+ 0.2429242381398002,
+ -1.8210022453376102,
+ 2.761727041629582,
+ -2.813427383677413,
+ 1.875679117495535,
+ -0.39062637081458057,
+ -1.289707309670084,
+ -3.1041758369440493,
+ -1.43901029240507,
+ 2.796312632199125,
+ -2.7745640669595693,
+ 1.7175060071414006,
+ -0.1983606824756906,
+ -0.891973114461591,
+ -2.8386165056728347,
+ -1.4270743956539342,
+ 2.8390075530794845,
+ -2.70327174816118,
+ 1.6151890846325154,
+ 0.012966105015868595,
+ -1.6346940532791678,
+ 2.650951249615904,
+ -1.8761568670478772,
+ -3.328007521911706,
+ 1.031360450913733,
+ 0.8755077619687375,
+ 0.13818310950020374,
+ -1.7994197643143472,
+ 2.7257457946224397,
+ -1.868123420534545,
+ -3.616076516892745,
+ 0.8793828929565438,
+ 0.7487302179116868,
+ 0.3404132457509241,
+ -1.8989254796931299,
+ 2.7629806924252045,
+ -2.78364083903257,
+ 1.800264825775553,
+ -0.31070025538478263,
+ -1.3495968664535725,
+ -1.2045873776134464,
+ 1.7461363729939687,
+ 1.8894315983019112,
+ 5.146181309240172,
+ 5.194324720256391,
+ -2.8037183370997174,
+ 1.8487255911562976,
+ -0.3748738978560206,
+ -1.3839102733363549,
+ 2.5216603937873114,
+ -0.6949862900309759,
+ -0.5536134036567627,
+ -0.4918407513109347,
+ 3.5806455621755884,
+ 1.8170210444672927,
+ -2.854074995781468,
+ 1.9986306385149588,
+ -0.4941026136997365,
+ -0.6875587767669219,
+ -0.680295746693888,
+ 3.3211108444581536,
+ 1.8381592198334011,
+ -2.8023019995432303,
+ 1.8459871856522936,
+ -0.3719259861242758,
+ -1.3861096743728771,
+ 2.522411589854501,
+ -2.9213466529317684,
+ 1.553884150768473,
+ 3.011307318274146,
+ 0.5371281244880005,
+ -0.00780997792640643,
+ -1.4937859607208759,
+ 2.6159260167078573,
+ -2.8987510721974488,
+ 1.580742949347602,
+ 3.324780391094366,
+ 0.8923615061683758,
+ 0.17530721465557744,
+ -1.6667809107039315,
+ 2.6658829296826103,
+ -2.8792741113810023,
+ 2.0165011945691043,
+ -0.5992860592657709,
+ -1.0921757008784816,
+ 2.367033372819636,
+ 2.7598004943265666,
+ 4.583200979003188e-16,
+ 6.117414220135915e-16,
+ 2.0183206946293873e-16,
+ 5.941224749662121e-17,
+ -9.293374182033265e-17,
+ -1.463282503606306e-16,
+ -1.653534044493502e-16,
+ 2.0927669497591598e-16,
+ -2.6387061540441583e-16,
+ 9.886876271540062e-17,
+ 1.1075948402085039e-16,
+ -5.910205476691383e-17,
+ 3.4063297624933675e-16,
+ 4.9051810324394535e-17,
+ -1.8735640874326074e-16,
+ -2.75120271735137e-16,
+ -1.8032537353656003e-17,
+ -6.088049308390284e-17,
+ 1.1530897738989206e-16,
+ -1.252351447405284e-16,
+ 4.2387836514514206e-17,
+ 2.961306592939839e-17,
+ 5.527634443385607e-17,
+ -2.9013359985297446e-17,
+ 3.027481041944081e-17,
+ -3.48077601762314e-16,
+ -4.681842267050136e-17,
+ -9.227199733029022e-17,
+ -6.055996059653854e-17,
+ 2.1151008262980915e-16,
+ 4.450231695535289e-16,
+ -7.519071768107022e-17,
+ 1.282129949457193e-16,
+ 1.285438671907405e-16,
+ 1.0918784085699964e-16,
+ -4.579271871093561e-16,
+ -5.542110104105285e-18,
+ -6.319659879905131e-17,
+ -2.118616343901442e-16,
+ 8.875647972693986e-17,
+ 1.6717320179696687e-16,
+ 2.5543337315637495e-16,
+ -1.9165774792853649e-16,
+ 7.589382120174028e-17,
+ 9.276830569782204e-17,
+ -2.384968501143517e-16,
+ 1.1634295315558334e-16,
+ -3.278116767547648e-16,
+ -5.293955920339376e-18,
+ -5.577265280138789e-17,
+ 3.3500814808397616e-16,
+ 1.7552772598375245e-16,
+ -1.557787888590489e-16,
+ -2.875279809234324e-16,
+ -4.200423150544274e-16,
+ -1.075334796318936e-18,
+ -5.5048869765403986e-17,
+ 1.1001502146955267e-17,
+ 3.813302623869457e-17,
+ 1.2606232535308142e-16,
+ -5.922613185879678e-17,
+ -7.46944093135384e-17,
+ 5.045801736573468e-17,
+ 9.057627707455652e-17,
+ 3.987010552505593e-17,
+ 1.8069760481220887e-16,
+ -2.5791491499403403e-16,
+ -2.9995636962704166e-17,
+ -4.3286361454899933e-16,
+ -7.734138727370808e-17,
+ 4.086272226011956e-17,
+ -2.0203886461607698e-17,
+ -3.763671787116276e-18,
+ 9.996477702703338e-17,
+ 8.660581013430199e-17,
+ -7.984360862668098e-17,
+ -2.7090165061111656e-16,
+ -2.2821913100338034e-16,
+ 1.5137405209720404e-16,
+ -2.368218093739318e-16,
+ 5.70754622661589e-18,
+ 1.2277428241818313e-16,
+ -2.129990077324046e-17,
+ 3.3250592673100325e-16,
+ -1.210940717989348e-16,
+ 2.374008358027189e-17,
+ 1.923194924185789e-17,
+ -1.4202691117535485e-16,
+ -1.5567539128247978e-16,
+ 2.171762698257974e-16,
+ -6.999602343423719e-16,
+ 3.666064474835018e-16,
+ 6.749793798432706e-17,
+ 2.0286604522863e-17,
+ -2.0303148135114062e-16,
+ -1.0508295706720524e-16,
+ -6.110796775235492e-17,
+ -3.130051437900656e-16,
+ 5.284029752988741e-16,
+ 2.7387950081630746e-16,
+ -3.407984123718474e-17,
+ 8.784658105313153e-16,
+ -7.974021105011186e-17,
+ -4.663230703267693e-17,
+ -1.5908751130926102e-16,
+ 3.697497338112034e-17,
+ -7.818924740157493e-17,
+ 5.657915389862709e-17,
+ 4.5422555386818126e-17,
+ 7.161316153177837e-17,
+ 1.316044354571867e-16,
+ -2.9116757561866574e-17,
+ -1.0736804350938298e-16,
+ 1.3826323938823858e-16,
+ -1.4459117107426924e-16,
+ 7.940933880509066e-18,
+ -1.852884572118782e-17,
+ 5.293955920339376e-18,
+ 1.0993230340829737e-16,
+ -5.012714512071347e-17,
+ -7.312276614968765e-17,
+ 1.3201802576346322e-16,
+ -5.575197328607407e-16,
+ -1.5757790669135175e-16,
+ -2.6622808015019196e-16,
+ -1.7834014006643274e-16,
+ -1.2614504341433672e-16,
+ 1.4981791856983868e-16,
+ -1.0753347963189359e-16,
+ -2.2846728518714624e-16,
+ -2.901749588836021e-16,
+ -1.4905794638205559e-16,
+ -3.4096384849435796e-16,
+ 1.3165613424547127e-16,
+ -2.3127969926982654e-16,
+ -2.278882587583591e-16,
+ 1.6541544299529168e-16,
+ 4.206213414832145e-16,
+ 3.639594695233322e-18,
+ -1.2341534739291173e-16,
+ 5.667014376600793e-16,
+ 4.820395019652768e-17,
+ -4.2289608816773534e-17,
+ -2.6982631581479763e-16,
+ 4.690114073175667e-16,
+ 1.2769600706287365e-16,
+ 9.334733212660916e-17,
+ -4.963083675318165e-18,
+ 1.9686898578762056e-17,
+ -8.668852819555729e-17,
+ -1.8938300124401566e-16,
+ -1.1191753687842464e-16,
+ 4.5164061445395305e-17,
+ -8.197359870400503e-17,
+ -1.9662083160385465e-16,
+ 1.1342714149633392e-16,
+ -3.871205266748169e-17,
+ -1.3110812708965489e-16,
+ -4.7459487645229957e-17,
+ -3.1019272970738534e-18,
+ 1.0720260738687237e-16,
+ 2.8496372102451803e-17,
+ -5.5048869765403986e-17,
+ -6.671211640240168e-17,
+ 5.217855303984499e-16,
+ 3.3728289476849703e-17,
+ 1.1038725274520153e-16,
+ -4.985831142163374e-17,
+ 2.1287493064052165e-16,
+ -1.8665330522259067e-16,
+ 5.4759356551010426e-17,
+ 3.59823566460567e-16,
+ 1.6663811933822165e-17,
+ -9.429858983104514e-17,
+ 5.686866711302065e-17,
+ 5.798536093996724e-17,
+ -9.942710962887391e-17,
+ 1.0176389485933622e-16,
+ -3.0200364164311035e-16,
+ -5.837413582786716e-16
+ ],
+ [
+ 1.9017168486149398,
+ 1.6326713133742783,
+ -0.7464891782880173,
+ -0.4365386680123951,
+ 1.4223090555266675,
+ -2.015670471794665,
+ 1.8563814436007509,
+ -1.1499972700475276,
+ 0.11016994926680085,
+ 0.6007114707109207,
+ 2.335241366994681,
+ 1.1123710228916206,
+ -2.02852215121194,
+ 1.820737553288634,
+ -1.0284048538520165,
+ -0.01722956676469259,
+ 0.35497349632632036,
+ 2.1135162371900673,
+ 1.0927561380585271,
+ -2.0430504322784464,
+ 1.7542437044632357,
+ -0.9527731117836978,
+ -0.27785720049731766,
+ 1.3040953969432085,
+ -1.9638285859338467,
+ 1.2819324438666007,
+ 2.319686864766458,
+ -0.45520152231189737,
+ -0.4695780854715163,
+ -0.3631422853151126,
+ 1.409932437344305,
+ -1.998787868056476,
+ 1.2664177207252274,
+ 2.4993718930047453,
+ -0.3214701892292833,
+ -0.37559690031089576,
+ -0.5032911680614965,
+ 1.4711253739694459,
+ -2.0162053702145886,
+ 1.8278473180743617,
+ -1.0925413367859953,
+ -0.05213260361575648,
+ 1.350932235096287,
+ 1.2485521061124603,
+ -1.0202066209527187,
+ -1.1278454613536268,
+ -3.588756457194978,
+ -3.634347022247368,
+ 1.8448272624997284,
+ -1.1255145944780514,
+ -0.011311565136648829,
+ 1.145754737452754,
+ -1.897175526129883,
+ 1.98062449060194,
+ -1.0005537610563295,
+ -2.1412500888068133,
+ -0.6998739235510257,
+ -0.16154543220518025,
+ 1.2167577270583663,
+ -1.9282231210069416,
+ 1.949378120997059,
+ -0.9246847322721731,
+ -1.8802043008203742,
+ -0.8011057628944804,
+ -0.2435609701189429,
+ 1.3264266060515086,
+ -1.9719920903444956,
+ 1.924353522214224,
+ -1.2566588446914464,
+ 0.1495067492223733,
+ 0.9530704316353285,
+ -1.135134128574454,
+ -1.7727157756889813,
+ 1.938377088148761,
+ 1.2073164111746852,
+ -1.1861834107355624,
+ 0.007765806913212107,
+ 1.0766575743246005,
+ -1.229174554236157,
+ -2.132326880312507,
+ 2.0967878000424056,
+ 1.2143739208214919,
+ -1.0675213687967995,
+ -0.08153901289907664,
+ 1.1482387206810962,
+ -1.922462169748609,
+ 1.966394424491923,
+ -1.427925990440647,
+ 1.5422844558500575,
+ 1.9915996309257544,
+ 3.35137866656382,
+ 2.768160609298744,
+ -1.7253667590640158,
+ 0.819372365966654,
+ 0.2959918464522666,
+ -1.4195025026656556,
+ 1.9635370875133422,
+ -1.9267111605827165,
+ 0.9096459040446752,
+ 2.0141406037472773,
+ 1.1349448961641875,
+ 0.4016387381604714,
+ -1.4804639709095033,
+ 1.9826863803696813,
+ -1.8730610826643947,
+ 0.7673974303526677,
+ 1.645493829115433,
+ 1.1294893169218276,
+ 0.44167026800758413,
+ -1.5761407438703339,
+ 2.003594970523875,
+ -1.836749465020943,
+ 0.9634365625631216,
+ 0.13604481618373074,
+ -1.2474743786553015,
+ 1.2265222342480935,
+ 1.9848001021389348,
+ -1.7159076384075618,
+ -1.1093730085480948,
+ 0.8870966244497677,
+ 0.2784118468104687,
+ -1.3571203384991857,
+ 1.263154320001634,
+ 2.244849416358244,
+ -1.7413512934919124,
+ -1.0572209518784965,
+ 0.7564841496262571,
+ 0.3652156054959088,
+ -1.4216785156584415,
+ 1.978401732308258,
+ -1.9023687324968217,
+ 1.1554646901358172,
+ -0.9059079294870727,
+ -0.9868084765609026,
+ -1.831225429288424,
+ -1.8760695598831019,
+ -3.06384678653181,
+ -3.0472889734414306,
+ 1.9713970351724341,
+ -1.919297847962338,
+ 1.1921537908971576,
+ -0.06696637966689832,
+ -1.0795450635912005,
+ 1.8234629369175361,
+ -0.2890033247503577,
+ -0.9325185006725837,
+ -2.0003590041226227,
+ -0.9106290582792311,
+ 1.9342961835681607,
+ -1.9619721266137182,
+ 1.260081695947067,
+ -0.1873597827132844,
+ -0.706247627139508,
+ -1.9373758934073175,
+ -0.9644662222661243,
+ 1.9692866881259208,
+ -1.9171357671701184,
+ 1.1904811248352738,
+ -0.066354752095397,
+ -1.0789292675742006,
+ 1.821773420225921,
+ -1.316724582130703,
+ -2.3212622991510306,
+ 0.8025079687090237,
+ 0.6549970703700689,
+ 0.02119646559427322,
+ -1.1970681371287162,
+ 1.8789453883851341,
+ -1.3796400743223596,
+ -2.6573773312576527,
+ 0.7269946195563635,
+ 0.5758156789769894,
+ 0.16290461432792125,
+ -1.268621465995895,
+ 1.9080215129807325,
+ -1.9676596356110843,
+ 1.3161859235447617,
+ -0.2919765376480133,
+ -0.24052210441563732,
+ -0.17606781037884622,
+ -5.381016679810583e-16,
+ -3.9849426009742103e-16,
+ -1.8810087129455847e-16,
+ 3.91256429737582e-17,
+ -5.600012746983997e-17,
+ 1.4308156645635996e-16,
+ 2.257582686810351e-16,
+ -2.9811589276411117e-16,
+ 5.2939559203393765e-17,
+ -4.764560328305439e-17,
+ -4.5683634267655175e-17,
+ -3.4229767723209976e-17,
+ -2.7114980479488247e-16,
+ -1.6742135598073278e-16,
+ 6.600901288173161e-17,
+ 2.1142736456855385e-16,
+ -4.0407772923215396e-17,
+ 9.777274840376786e-17,
+ 6.650532124926343e-17,
+ 1.889280519071115e-16,
+ 1.3657527395074754e-17,
+ 8.573727049112131e-17,
+ 4.729405152271935e-17,
+ 1.0757483866252124e-16,
+ -9.189976605464136e-17,
+ 2.478233115208871e-16,
+ 3.019209235818551e-17,
+ 5.623794189594897e-17,
+ 1.4442573495175863e-16,
+ -1.1150394657214813e-16,
+ -2.2896359355467806e-16,
+ 3.7719435932418056e-17,
+ -2.283018490646356e-17,
+ 1.852884572118782e-17,
+ -3.875341169810934e-17,
+ 2.9977025398921723e-16,
+ -1.3648480107124955e-17,
+ 6.944181242382667e-17,
+ 1.9494579086343477e-16,
+ -1.3230753897785678e-16,
+ -1.3301064249852685e-16,
+ -1.3036366453835716e-16,
+ 9.148617574836485e-17,
+ 2.899268046998362e-17,
+ 1.2697222402688973e-17,
+ 1.2461475928111362e-16,
+ -4.061456807635365e-17,
+ 6.820931331112265e-16,
+ -2.0654699895449099e-16,
+ 8.433106344978116e-17,
+ -1.3814950205401253e-16,
+ -1.5306977235293775e-16,
+ 9.843449289381028e-17,
+ 2.3811427908104593e-16,
+ 1.4156679195962223e-16,
+ -4.549493369041652e-18,
+ 1.2027206106521022e-16,
+ 1.3565762045869654e-16,
+ -6.011276607787706e-17,
+ 5.376673981594679e-18,
+ -2.3202416182112423e-17,
+ 1.4765173934071544e-16,
+ -1.5526180097620327e-16,
+ 3.192917164454687e-17,
+ -6.27002904315195e-17,
+ -9.487761625983226e-17,
+ 1.8843174353957968e-16,
+ -1.1158666463340343e-16,
+ 3.7032876023999044e-16,
+ 1.2209185841282688e-16,
+ 1.6626330312315856e-17,
+ 1.6005944852901086e-17,
+ 1.9180896688426883e-17,
+ -3.4720906211913337e-17,
+ 1.522012327097571e-17,
+ 1.3193530770220791e-16,
+ 1.3532674821367533e-16,
+ 1.344995676011223e-16,
+ -4.599124205794833e-17,
+ 2.0762233375080992e-16,
+ 1.1249656330721175e-17,
+ -3.48077601762314e-16,
+ 1.0637542677431935e-16,
+ -2.053475870662891e-16,
+ 1.1814207098788618e-16,
+ -5.2029660529585435e-17,
+ -1.1663246636997689e-17,
+ 1.5517908291494797e-16,
+ -2.1506695926378716e-17,
+ 1.0339757656912845e-16,
+ 7.636531415089551e-16,
+ -7.3222027823194e-16,
+ -2.1523239538629778e-16,
+ 7.031035206700734e-19,
+ 1.7151590001287026e-16,
+ 6.06943774460784e-17,
+ 2.905058311286233e-16,
+ 3.4973196298742005e-16,
+ -5.833277679723951e-16,
+ -2.35498320393847e-16,
+ 2.2333876538931744e-17,
+ -5.97224402263286e-16,
+ 9.132073962585424e-17,
+ 9.855856998569324e-17,
+ 1.5964585822273432e-16,
+ -9.686284972995953e-17,
+ 3.190849212923304e-17,
+ 1.894243602746433e-17,
+ 1.3176470170086885e-16,
+ -5.426304818347861e-17,
+ -5.016850415134112e-17,
+ -1.4608009617686469e-16,
+ -1.1921740578420511e-16,
+ -7.231626505244844e-17,
+ 6.68051742213139e-17,
+ -4.5412215629161213e-17,
+ 8.677124625681259e-17,
+ 4.946540063067105e-17,
+ -2.9695783990653694e-17,
+ 8.474465375605767e-17,
+ -4.963083675318166e-19,
+ -2.041481751780872e-16,
+ 7.33047458844493e-16,
+ 2.1341259803868112e-16,
+ 1.552824804915171e-16,
+ -1.3367238698856927e-16,
+ 2.779326858178173e-17,
+ -3.755399980990745e-16,
+ 9.686284972995953e-17,
+ 1.817729396085278e-16,
+ 2.6486323213947946e-16,
+ 2.102693117109796e-16,
+ 7.61171599671296e-16,
+ -1.8611563782443123e-18,
+ 1.9533870165439746e-16,
+ 5.997059441009451e-17,
+ -8.177714330852369e-17,
+ -3.947719473409324e-16,
+ 1.1052683947356985e-16,
+ 6.327931686030662e-17,
+ -2.1432249671248945e-16,
+ -2.811586902067741e-16,
+ 8.229413119136933e-17,
+ 2.626505240009001e-16,
+ -2.988706950730658e-16,
+ -2.2083654403634454e-16,
+ -7.685929607295451e-17,
+ 1.0769891575440419e-16,
+ 1.5344200362858663e-17,
+ 8.3876114112877e-17,
+ 1.4025881261602276e-16,
+ -1.6957202557337067e-17,
+ -6.381698425846609e-17,
+ 6.880074744909808e-17,
+ -2.3026640301944905e-17,
+ -1.501229414207176e-16,
+ 1.5468277454741618e-17,
+ -5.893661864440321e-19,
+ -5.930884992005208e-17,
+ -9.057627707455653e-18,
+ -6.505775517729563e-17,
+ 1.1729421086001932e-16,
+ 7.465305028291075e-17,
+ 1.1249656330721176e-16,
+ -2.2044363324538185e-16,
+ -4.537085659853356e-17,
+ -6.04462232623125e-17,
+ -6.774609216809297e-17,
+ -8.156000839772852e-17,
+ 2.0638156283198038e-16,
+ 2.840331428353959e-17,
+ -1.9695170384887586e-16,
+ 8.052603263203723e-17,
+ 1.8231060700668727e-16,
+ -8.271806125530276e-17,
+ -1.0972550825515911e-16,
+ 5.2939559203393765e-17,
+ -1.033562175385008e-16,
+ 1.8396496823179333e-16,
+ 8.476946917443427e-16
+ ],
+ [
+ -7.923743624190705,
+ -6.552766473026642,
+ 4.0136791498238225,
+ -1.8573392773224648,
+ -0.8967973656371864,
+ 3.475792151411927,
+ -4.773583358124606,
+ 4.5268620284700285,
+ -2.0985497223394796,
+ -4.692487053976091,
+ -2.9006405253237153,
+ -1.0632540909227557,
+ 3.6187194020671694,
+ -4.811331049020288,
+ 4.389899495058782,
+ -1.756223767483085,
+ -3.8161687216158326,
+ -2.8596757681282616,
+ -1.1524661936730003,
+ 3.8382659518440168,
+ -4.852306967746996,
+ 4.295381160124701,
+ -2.2077649770077232,
+ -0.5151420581581212,
+ 3.0749784971068848,
+ -2.975190474128597,
+ -4.846040410924712,
+ 3.9903637289600713,
+ 2.6023769640510825,
+ -2.020315201439467,
+ -0.8533947074998961,
+ 3.33229410468269,
+ -3.0571266136940385,
+ -5.464971446984536,
+ 4.031507299596651,
+ 2.4707984694250635,
+ -1.7045992298855077,
+ -1.0617410561051175,
+ 3.4808941215961915,
+ -4.8039769075347705,
+ 4.463650259627816,
+ -2.676970816507686,
+ 1.903390168441106,
+ 2.101984683453544,
+ 4.33941956460876,
+ 4.459165365809918,
+ 7.483347853167353,
+ 7.4493987019478665,
+ -4.787288410075114,
+ 4.500325999697246,
+ -2.7579566980645773,
+ -0.0367448775606007,
+ 2.6854516908465644,
+ -4.467900765621615,
+ 3.1660548018763963,
+ 6.055963919283733,
+ -1.9058842982718234,
+ -1.4685430921791518,
+ -0.24496325331627672,
+ 2.8602657658306887,
+ -4.592944673649131,
+ 3.1086780941344214,
+ 5.575647522909107,
+ -1.3742162733712686,
+ -1.2781040284662835,
+ -0.5853880214489257,
+ 3.129459768148391,
+ -4.657682034854018,
+ 4.633451943684418,
+ -3.0670688740306837,
+ 0.5051226738678445,
+ 1.3260323639112641,
+ 1.4636957801494617,
+ -5.577671763978431,
+ -3.118511370807832,
+ 4.565425290716699,
+ -2.7944398987120453,
+ 0.16425250603386998,
+ 1.5416865294262794,
+ 2.06946124926346,
+ -6.356845506418769,
+ -3.326960390188982,
+ 4.435109099506504,
+ -2.6176912753339487,
+ -0.04400923226433913,
+ 2.824226481758977,
+ -4.530571168829192,
+ 4.771771318832048,
+ -6.452220372909602,
+ -8.02374939896003,
+ -8.465311975112758,
+ -6.85029674882058,
+ 4.868347473419907,
+ -4.158114531723085,
+ 2.1038702665924998,
+ 0.7898042813489382,
+ -3.281793476021371,
+ 4.714092738417573,
+ -3.228011288502636,
+ -6.329999301924004,
+ 1.008471813933668,
+ 1.0121460204263406,
+ 0.9946119669433263,
+ -3.435750830799665,
+ 4.788450854187569,
+ -2.975662938056881,
+ -5.482555399926849,
+ 0.5212712398894148,
+ 0.8140280043239745,
+ 1.3264090845626333,
+ -3.6691284792851526,
+ 4.82181043044361,
+ -4.345649677000932,
+ 2.4449434017973704,
+ 0.2504097998211558,
+ -1.755458711501988,
+ -2.278871432943084,
+ 5.522284456204084,
+ 3.168646279160602,
+ -4.2479878891633085,
+ 2.143742051551104,
+ 0.5908212629639967,
+ -1.9311642096763262,
+ -2.8621346247514587,
+ 5.926081012643943,
+ 3.184452126500478,
+ -4.070380821695012,
+ 1.9508205507782126,
+ 0.7969453201336278,
+ -3.404065180824183,
+ 4.752566557045899,
+ -4.563442077503776,
+ 6.563368234540231,
+ 6.638368621788055,
+ 4.689107367577736,
+ 4.6192852030856555,
+ 3.500615051045229,
+ 3.3295421748981666,
+ -3.33374066006393,
+ 4.733355638785364,
+ -4.5998991689217466,
+ 2.850642243084764,
+ -0.23561444458637001,
+ -2.4592886488330845,
+ 2.780065319609855,
+ 5.026248328508705,
+ 1.8606035599463122,
+ 0.4871414970808232,
+ -3.070839350340978,
+ 4.636141485507437,
+ -4.66291755688429,
+ 2.1429161013402824,
+ 4.399045479052214,
+ 2.0845039236171563,
+ 0.6819896660201774,
+ -3.328194318200811,
+ 4.729076422345116,
+ -4.598229261745064,
+ 2.852267174548217,
+ -0.23986428567183277,
+ -2.453725737802424,
+ 2.7702229886716694,
+ 4.36018681904161,
+ -4.544738061932788,
+ -2.8506181566373296,
+ 2.681105449320014,
+ 0.10167004668829108,
+ -2.7426792528066164,
+ 2.993799259718321,
+ 5.227374641550669,
+ -4.898060242720178,
+ -2.856628918977773,
+ 2.3894209422781096,
+ 0.3139178178403096,
+ -2.912010257216481,
+ 4.622158190722126,
+ -4.710802936004122,
+ 3.2737117656277452,
+ -3.503199800562055,
+ -4.5411029028054335,
+ 2.470953925818404e-15,
+ 2.5642598989143854e-15,
+ 5.333660589741922e-16,
+ -2.961306592939839e-17,
+ -1.8146274687882042e-16,
+ -3.7289302013890483e-16,
+ -8.424007358240033e-16,
+ 3.9142186586009265e-16,
+ -2.0183206946293873e-16,
+ 1.0058516248644815e-16,
+ 1.0703717126436177e-16,
+ 5.8882851904587275e-16,
+ 4.456849140435713e-16,
+ 5.90937829607883e-16,
+ -1.752382127693589e-16,
+ -3.5006283523244126e-16,
+ -1.1332374391976478e-17,
+ -3.934070993302199e-16,
+ -1.976961664001736e-16,
+ -3.982254263983413e-16,
+ 8.10637000301967e-17,
+ -2.714806770399037e-16,
+ -2.074362181129855e-16,
+ -3.567629981941208e-16,
+ 2.8676283885682087e-16,
+ -6.481787279965524e-16,
+ -1.0993230340829737e-16,
+ 5.542110104105285e-18,
+ -1.6254099036666991e-16,
+ 2.810759721455188e-16,
+ 1.4694863582004537e-16,
+ 9.727644003623604e-17,
+ 2.8124140826802937e-18,
+ -1.0058516248644815e-16,
+ -2.6717933785462794e-16,
+ -5.154989577430468e-16,
+ 1.2242273065784808e-17,
+ -1.1481266902236024e-16,
+ -4.323673061814675e-16,
+ 4.939922618166681e-16,
+ 4.549493369041652e-16,
+ 2.306179547797841e-16,
+ 1.1878313596261477e-16,
+ -1.2159555004529507e-16,
+ -1.3979352352146168e-16,
+ 8.147729033647321e-17,
+ -2.754511439801582e-17,
+ -1.2255507955585656e-15,
+ 7.841672207002701e-16,
+ -3.816404551166531e-17,
+ 1.952146245625145e-17,
+ 2.965442496002604e-16,
+ -9.926167350636331e-17,
+ -2.9931530465231306e-16,
+ -6.661311322283673e-16,
+ -1.3350695086605867e-16,
+ -2.1076562007851143e-16,
+ -4.403909581232319e-16,
+ 3.0270674516378043e-16,
+ 1.2076836943274204e-16,
+ 3.78683284426776e-16,
+ -3.553981501834083e-16,
+ 5.752627570000031e-16,
+ -2.271437962070614e-16,
+ -6.319659879905131e-17,
+ -4.1028158382630167e-17,
+ -4.818327068121386e-16,
+ 2.989430733766642e-16,
+ -6.3808712452340545e-16,
+ -3.1068903807491715e-16,
+ -6.8573272780646e-17,
+ 6.112864726766875e-17,
+ -7.378451063973007e-17,
+ -3.3926812823862425e-16,
+ -1.7933275680149638e-16,
+ -4.910144116114772e-16,
+ -7.874759431504822e-17,
+ -2.1705219273391444e-16,
+ 1.713918229209873e-16,
+ -5.866364904226072e-16,
+ 8.271806125530277e-18,
+ 6.200545871697494e-16,
+ -1.6014216659026613e-16,
+ 3.358353286965292e-16,
+ -3.9224904647264567e-16,
+ 9.669741360744892e-17,
+ -2.599001484641613e-16,
+ -4.939922618166681e-16,
+ -9.721026558723181e-16,
+ 2.2912902967718867e-16,
+ -1.4187801866509529e-15,
+ 1.9164120431628545e-15,
+ 6.660458292276978e-16,
+ -1.6047303883528734e-16,
+ -3.602371567668435e-16,
+ -1.8520573915062287e-16,
+ -8.003799607063095e-16,
+ -5.647989222512073e-16,
+ 8.926933170672275e-16,
+ 2.815722805130506e-16,
+ 8.41242682966429e-17,
+ 7.583591855886157e-16,
+ 2.10103875588469e-17,
+ -6.388238322564605e-16,
+ -7.386722870098536e-16,
+ 1.981924747677054e-16,
+ -4.020097777007714e-17,
+ 2.481541837659083e-19,
+ 2.752857078576476e-16,
+ 1.7834014006643274e-16,
+ 5.740633451118012e-17,
+ 4.0697286137608957e-16,
+ 3.4088113043310266e-16,
+ 1.8363409598677212e-16,
+ -6.981404369947554e-17,
+ -9.578751493364059e-17,
+ -4.231028833208736e-16,
+ -3.176373552203626e-16,
+ 3.2226956665065953e-16,
+ -2.992739456216854e-16,
+ 2.304525186572735e-16,
+ 4.225238568920865e-16,
+ -1.445580838497671e-15,
+ -4.205386234219592e-16,
+ -2.579562740246617e-16,
+ 3.149903772601929e-16,
+ -2.1672132048889322e-17,
+ 6.165287298087422e-16,
+ -3.7884872054928663e-16,
+ -2.483196198884189e-16,
+ -3.752091258540533e-16,
+ -4.253362709747668e-16,
+ -1.797959779445261e-15,
+ 8.801201717564213e-17,
+ -4.893600503863712e-16,
+ 2.2218071253174323e-16,
+ 7.80031317637505e-17,
+ 1.8743912680451605e-16,
+ -4.0581480851851533e-16,
+ 4.301339185275744e-18,
+ 1.7759567751513502e-16,
+ 5.636822284242607e-16,
+ 1.7122638679847673e-17,
+ -6.269615452845672e-16,
+ 3.7951046503932905e-16,
+ 3.5213078676382383e-16,
+ 1.3044638259961246e-16,
+ -2.5791491499403403e-16,
+ -6.683619349428464e-17,
+ -1.0075059860895876e-16,
+ -1.4574922393184348e-16,
+ 6.048344638987737e-16,
+ 2.2929446579969927e-16,
+ 7.151913436058582e-17,
+ 5.113630546802817e-16,
+ 3.867896544297957e-16,
+ 5.24018918052343e-17,
+ 1.1605343994118978e-16,
+ -6.849055471939069e-17,
+ 1.3102540902839958e-16,
+ -2.4980854499101433e-17,
+ -3.7421650911898967e-16,
+ -2.21849840286722e-16,
+ -2.6999175193730823e-16,
+ 6.506602698342115e-16,
+ 3.341809674714232e-17,
+ -8.770182444593475e-17,
+ 2.488159282559507e-16,
+ -1.1051132983708449e-16,
+ -2.0249381395298115e-16,
+ -1.1022181662269092e-17,
+ 3.6834352676986317e-16,
+ -2.241659460018705e-16,
+ -4.017616235170055e-16,
+ 6.109051941130888e-17,
+ 1.622101181216487e-16,
+ -1.978616025226842e-16,
+ 1.0571368228427692e-16,
+ -1.045556294267027e-15,
+ -1.8925892415213273e-15
+ ],
+ [
+ -5.482799663885932,
+ -4.551483842287217,
+ 2.7103624198638587,
+ -1.0346627376850264,
+ -0.973398710950263,
+ 2.7419754582496396,
+ -3.5125842080908636,
+ 3.146416016748276,
+ -1.3384498241649683,
+ -3.095191965386884,
+ -2.4804307753804338,
+ -0.9832590467835071,
+ 2.834867047475882,
+ -3.5256059839360336,
+ 3.0262119569280435,
+ -1.0885134624193114,
+ -2.4785978492713383,
+ -2.390894042982577,
+ -1.033141548012792,
+ 2.9755726666561455,
+ -3.5321052490910585,
+ 2.945331177999759,
+ -1.2986692701089935,
+ -0.7016339181199541,
+ 2.4774443522506004,
+ -2.222666906382915,
+ -3.6872149033198194,
+ 2.6159992019287746,
+ 1.755941354708673,
+ -1.1571387687152492,
+ -0.9426185439958119,
+ 2.647941989647529,
+ -2.26920225131349,
+ -4.124472260647797,
+ 2.602996406956237,
+ 1.6468748922879801,
+ -0.9202773588761497,
+ -1.0902021357898246,
+ 2.74530668183924,
+ -3.5232619677624495,
+ 3.0904588616019164,
+ -1.6559997012923915,
+ 0.7949857830383068,
+ 0.9482043199979263,
+ 2.9964984882257526,
+ 3.10214112045337,
+ 5.695775690720581,
+ 5.687805624970531,
+ -3.5177742299362746,
+ 3.122816186820557,
+ -1.718213038220789,
+ -0.3580346573068574,
+ 2.215656445540594,
+ -3.3581286678598783,
+ 2.2602459362413336,
+ 4.389021805201708,
+ -0.9845596747193202,
+ -0.8677162754653841,
+ -0.507995157316197,
+ 2.333656381324555,
+ -3.4267742821623317,
+ 2.2026116286558755,
+ 4.014574562572311,
+ -0.624290012184853,
+ -0.7254574631797076,
+ -0.751814399769094,
+ 2.513717408809096,
+ -3.4600440659151106,
+ 3.243584541964639,
+ -1.9571258528985238,
+ 0.034997349977894054,
+ 1.1534468334706391,
+ 1.4232845896662805,
+ -4.032637738351555,
+ -2.2903554467631744,
+ 3.181064923825445,
+ -1.7462560361932975,
+ -0.21274325612905534,
+ 1.3148790334980276,
+ 1.904307235692446,
+ -4.563527392326832,
+ -2.4221821339838847,
+ 3.065469430428501,
+ -1.610603975009852,
+ -0.36327463787104514,
+ 2.3093717062009875,
+ -3.3930485675149313,
+ 3.379168032497737,
+ -4.462778413023278,
+ -5.571024734061275,
+ -6.238641876722157,
+ -5.0646511330472865,
+ 3.5251972484526517,
+ -2.829898191331243,
+ 1.2201887050096978,
+ 0.8974197694709263,
+ -2.614689368651533,
+ 3.4872981434453276,
+ -2.272571195229422,
+ -4.522945038943457,
+ 0.30014919414658936,
+ 0.514208445032462,
+ 1.0427339072182393,
+ -2.7158911298226767,
+ 3.5182908438727956,
+ -2.0743697656055256,
+ -3.8888346257372772,
+ -0.0016242052663317003,
+ 0.37929207829196,
+ 1.2767655142807774,
+ -2.8674273626395412,
+ 3.5283863427683757,
+ -2.988261222066823,
+ 1.478737644014861,
+ 0.5118951003280686,
+ -1.4472180043327498,
+ -1.9920963417407171,
+ 3.933902729749392,
+ 2.2932857877183337,
+ -2.9052191863313577,
+ 1.2502731541209096,
+ 0.75569976985207,
+ -1.5671967979453107,
+ -2.4303545438560286,
+ 4.192667998967075,
+ 2.2880657159006534,
+ -2.757103269567729,
+ 1.1048972033156819,
+ 0.9024952073538614,
+ -2.695107562443816,
+ 3.5042165654434863,
+ -3.179344495895277,
+ 4.348309483805895,
+ 4.418376245537901,
+ 3.449973850879297,
+ 3.4198455481642687,
+ 3.064417072096258,
+ 2.952874622904184,
+ -2.6492565762212363,
+ 3.4971439667050386,
+ -3.2126165857937825,
+ 1.7899732308149634,
+ 0.1607768534974232,
+ -2.0621117969797655,
+ 2.11417269399183,
+ 3.6848639235077014,
+ 1.7361522944855832,
+ 0.5662879771143702,
+ -2.4747002322202234,
+ 3.4491242857604743,
+ -3.271281530768842,
+ 1.3883635947224984,
+ 2.9429570075679887,
+ 1.8573716284788262,
+ 0.7031544942919306,
+ -2.6452311389779686,
+ 3.4938522871785995,
+ -3.2110934450464397,
+ 1.7908110338494851,
+ 0.15794825951915675,
+ -2.058155741134317,
+ 2.1050914981795783,
+ 3.3851543271518545,
+ -3.061472258869043,
+ -1.9640525519239371,
+ 1.6591444485852362,
+ 0.4049047145921043,
+ -2.2543910281334703,
+ 2.2624676537230815,
+ 4.022161490956691,
+ -3.259657492420757,
+ -1.9449292900359498,
+ 1.4364201895695254,
+ 0.5575331074105616,
+ -2.3684076119142756,
+ 3.4418785880741116,
+ -3.3174941951369825,
+ 2.1183748584594526,
+ -2.1117635496947402,
+ -2.776613732341644,
+ 1.7369138502388473e-15,
+ 1.770166510863479e-15,
+ 3.899329407574972e-16,
+ 8.271806125530276e-19,
+ -1.6130021944784037e-16,
+ -2.4964310886850375e-16,
+ -6.110383184929214e-16,
+ 2.905058311286233e-16,
+ -1.833032237417509e-16,
+ 9.148617574836485e-17,
+ 7.006219788324144e-17,
+ 3.7049419636250105e-16,
+ 3.5221350482507913e-16,
+ 4.3311176873276524e-16,
+ -1.3809780326572797e-16,
+ -1.9058241313221755e-16,
+ -7.692779696743157e-18,
+ -2.961306592939839e-16,
+ -1.2705494208814505e-16,
+ -3.12839707667555e-16,
+ 5.509022879603164e-17,
+ -1.9256764660234482e-16,
+ -1.3383782311107988e-16,
+ -2.49022723409089e-16,
+ 2.1624569163667524e-16,
+ -4.578858280787285e-16,
+ -7.634877053864444e-17,
+ -3.805030817743927e-18,
+ -1.4531495411025314e-16,
+ 2.0878038660838416e-16,
+ 1.3454092663174995e-16,
+ 5.4428484305989215e-17,
+ 1.737079286361358e-17,
+ -5.955700410381799e-17,
+ -1.8181429863915546e-16,
+ -3.6710275585103363e-16,
+ 7.361907451721946e-18,
+ -8.99145325845141e-17,
+ -3.42618209719464e-16,
+ 3.3732425379912464e-16,
+ 3.361662009415504e-16,
+ 1.8793543517204786e-16,
+ 4.7314731038033177e-17,
+ -7.328820227219825e-17,
+ -5.4469843336616866e-17,
+ 6.993812079135849e-17,
+ -3.515517603350368e-18,
+ -8.185779341824761e-16,
+ 5.3055364489151195e-16,
+ -2.5125611106298213e-17,
+ 4.830734777309681e-17,
+ 2.307833909022947e-16,
+ -9.934439156761861e-17,
+ -2.165352048510688e-16,
+ -5.580160412282725e-16,
+ -9.462946207606635e-17,
+ -1.3499587596865412e-16,
+ -3.217732582831277e-16,
+ 2.2009208148504681e-16,
+ 1.2424252800546476e-16,
+ 2.3731811774146364e-16,
+ -2.682856919239176e-16,
+ 4.0005556350361487e-16,
+ -1.3201802576346322e-16,
+ -1.0257039595657542e-17,
+ 7.444625512977248e-19,
+ -3.483257559460799e-16,
+ 1.833032237417509e-16,
+ -4.891946142638606e-16,
+ -2.299562102897417e-16,
+ -3.8298462361205175e-17,
+ 3.966331037191767e-17,
+ -5.5338382979797545e-17,
+ -2.50801161726078e-16,
+ -6.319659879905131e-17,
+ -3.541987382952064e-16,
+ -8.834288942066334e-17,
+ -1.9289851884736603e-16,
+ 1.431022459716738e-16,
+ -4.555283633329523e-16,
+ 2.9778502051908992e-18,
+ 4.1193594505140773e-16,
+ -9.678013166870423e-17,
+ 2.8289576949313546e-16,
+ -2.839711042894544e-16,
+ 6.799424635185887e-17,
+ -2.0183206946293873e-16,
+ -3.7388563687396846e-16,
+ -8.631216101684566e-16,
+ 2.7975248316543396e-16,
+ -1.0607764175380027e-15,
+ 1.4108392527704438e-15,
+ 4.614013456820788e-16,
+ -1.01908651466533e-16,
+ -2.5543337315637495e-16,
+ -1.3284520637601624e-16,
+ -5.603321469434209e-16,
+ -4.0614568076353654e-16,
+ 6.369290716658312e-16,
+ 2.1829296365274398e-16,
+ 3.763671787116276e-17,
+ 6.339512214606403e-16,
+ 1.0918784085699964e-17,
+ -4.744707993604167e-16,
+ -5.479244377551255e-16,
+ 1.8065624578158122e-16,
+ -3.585827955417375e-17,
+ 1.8322050568049563e-17,
+ 2.547716286663325e-16,
+ 1.3383782311107988e-16,
+ 5.4759356551010426e-17,
+ 2.726387298974779e-16,
+ 1.886798977233456e-16,
+ 1.653534044493502e-16,
+ -6.410649747285964e-17,
+ -6.162495563520056e-17,
+ -2.8827244347473014e-16,
+ -2.304525186572735e-16,
+ 2.723078576524567e-16,
+ -2.3706996355769773e-16,
+ 1.4260593760414197e-16,
+ 3.060568266446202e-16,
+ -1.0513465585548982e-15,
+ -2.99439381744196e-16,
+ -2.0967994552453558e-16,
+ 1.9124415762225997e-16,
+ -2.7131524091739305e-17,
+ 3.8819586147113584e-16,
+ -3.0142461521432324e-16,
+ -2.10103875588469e-16,
+ -3.0175548745934445e-16,
+ -2.984467650091324e-16,
+ -1.2629393592459625e-15,
+ 1.193621623914019e-16,
+ -3.597408483993117e-16,
+ 1.1828682759508296e-16,
+ 7.4859845436049e-17,
+ 1.0869153248946782e-16,
+ -2.6823399313563305e-16,
+ -1.49719690872098e-17,
+ 1.873150497126331e-16,
+ 3.450377130111816e-16,
+ 3.5155176033503676e-17,
+ -4.623526033865148e-16,
+ 3.0522964603206716e-16,
+ 2.4174353401862234e-16,
+ 1.0163981776745326e-16,
+ -1.8793543517204786e-16,
+ -2.9302873199691005e-17,
+ -8.495144890919593e-17,
+ -1.3102540902839958e-16,
+ 4.2202754852455467e-16,
+ 1.5857052342641538e-16,
+ 7.037239061294883e-17,
+ 3.8513529320468964e-16,
+ 2.896786505160703e-16,
+ 5.860574639938201e-17,
+ 7.589382120174028e-17,
+ -7.79204137024952e-17,
+ 9.371956340225802e-17,
+ -3.226004388956808e-17,
+ -2.7991791928794457e-16,
+ -1.7519685373873124e-16,
+ -1.862810739469418e-16,
+ 6.093012392065601e-16,
+ 3.432799542095065e-17,
+ -4.0573209045726e-17,
+ 1.7155725904349792e-16,
+ -4.135903062765138e-17,
+ -1.43433118216695e-16,
+ 1.195017491197702e-17,
+ 2.772709413277749e-16,
+ -1.5435190230239494e-16,
+ -2.8632856903523053e-16,
+ 4.390261101125194e-17,
+ 1.1795595535006175e-16,
+ -1.5393831199611843e-16,
+ 8.453785860291942e-17,
+ -6.974786925047128e-16,
+ -1.35789969356705e-15
+ ],
+ [
+ 3.9665180307735666,
+ 3.102155446039654,
+ -2.6967089834892435,
+ 3.504872574398675,
+ -3.1782523939882688,
+ 1.7232793250742244,
+ 0.235919984410913,
+ -2.1214138269064167,
+ 2.2185714432502492,
+ 3.9089042548773048,
+ -3.413569400087804,
+ -2.012325025303813,
+ 1.5899918038080345,
+ 0.3894309747784545,
+ -2.3142727066522197,
+ 2.181511491175406,
+ 3.5753928464054656,
+ -2.8050751822292423,
+ -1.8458813169186274,
+ 1.3648787075277558,
+ 0.6345546969099368,
+ -2.426088007957503,
+ 3.458980801676767,
+ -3.2903587029519357,
+ 2.055611905091709,
+ -0.19640622490332071,
+ -1.0075367061334515,
+ -3.4892023190790713,
+ -1.76283585140398,
+ 3.4866999416793694,
+ -3.1922909048288908,
+ 1.8491947071494261,
+ -0.05094815288421911,
+ -0.7900936179965294,
+ -3.9360894996182103,
+ -1.8822137852507392,
+ 3.5178272615986432,
+ -3.12313731410072,
+ 1.718689461904136,
+ 0.35752519428258966,
+ -2.215354740557261,
+ 3.3580752624878367,
+ -6.319189563439836,
+ -6.256173614218941,
+ -2.2354090502013113,
+ -2.061140374021444,
+ 1.575342339075958,
+ 1.7519373501889273,
+ 0.286893974345529,
+ -2.161981072437439,
+ 3.335135407582775,
+ -3.4005881338474477,
+ 2.330208731576732,
+ -0.5036503002694711,
+ -0.8703912096658001,
+ -0.9898600873488682,
+ 4.389495318072342,
+ 2.26095026271851,
+ -3.3568454507239394,
+ 2.212256958253927,
+ -0.2572923617215425,
+ -1.0260037851569375,
+ -1.1821058792618535,
+ 4.045060195966567,
+ 2.2733987118012107,
+ -3.271374860379173,
+ 2.0136865570925346,
+ -0.10642877717864385,
+ -1.9340848118423362,
+ 3.2326464648732225,
+ -3.4858997746897322,
+ 1.7611255680624323,
+ 3.486776103359229,
+ 1.0118409812217852,
+ 0.19894492238560438,
+ -2.0588258762895078,
+ 3.3246497452430415,
+ -3.4373487819665827,
+ 1.7786952405125958,
+ 3.819460548430891,
+ 1.4867272958791127,
+ 0.43083828859733,
+ -2.254943973483705,
+ 3.373428070409222,
+ -3.3991430502233584,
+ 2.2370132427848546,
+ -0.3855323438399003,
+ -1.5934386693569609,
+ 3.248480834245909,
+ 3.8209743583107594,
+ 0.32019953883831836,
+ 0.09239907464807992,
+ -0.8276308098755172,
+ 2.5676007870101354,
+ -3.474708428139299,
+ 3.211805517473077,
+ -1.8918040247021497,
+ -0.042850433191121765,
+ 1.2153980571812002,
+ 1.6994883137112993,
+ -4.592478995312382,
+ -2.420071079419135,
+ 3.1462685042312204,
+ -1.7599782812301645,
+ -0.29035634973704094,
+ 1.331568941969331,
+ 1.7658683269398856,
+ -3.9852880742126944,
+ -2.2985849005383243,
+ 3.025877522996005,
+ -1.5409123878054338,
+ -0.44056834233487085,
+ 2.367539012178385,
+ -3.413713090547929,
+ 3.3554665774596004,
+ -1.5115315788568393,
+ -3.1275765124572055,
+ -1.6050732097146565,
+ -0.550495379913199,
+ 2.4776282838800925,
+ -3.469021555677578,
+ 3.269950994117847,
+ -1.4071263771789997,
+ -3.1919824787174567,
+ -2.0193686274711644,
+ -0.7244873119727248,
+ 2.6479843696876615,
+ -3.4946190231285232,
+ 3.2096197470508874,
+ -1.7875929204508971,
+ -0.1618534116299894,
+ 2.0614697615587163,
+ -5.271328311388519,
+ -5.122135399713684,
+ -0.23630092936329966,
+ -0.01442365044187427,
+ 4.848705017040287,
+ 5.004573740578809,
+ -1.8516758744616204,
+ -0.08829083165324933,
+ 1.9970063701016807,
+ -3.3031296233195593,
+ 3.446471406783985,
+ -2.473712557579976,
+ 0.566725972807688,
+ 1.736386915725534,
+ 3.6810675405904063,
+ 2.1122817372498286,
+ -2.0589190409456637,
+ 0.1582173328397924,
+ 1.8737745351039845,
+ -2.0432645396415587,
+ -3.239750511747954,
+ 3.2224968593185754,
+ 2.0357353557910765,
+ -1.8525295913332753,
+ -0.08956799355208406,
+ 1.9999550967470339,
+ -3.30688919624616,
+ 3.4497506775405102,
+ -2.475406897541135,
+ 0.5483070833764401,
+ 1.6015398298866423,
+ 3.13069751109673,
+ 1.513549655273061,
+ -3.357224009387613,
+ 3.388082373259477,
+ -2.292664515040016,
+ 0.4638709668409396,
+ 1.5473423264690587,
+ 3.7834234234975384,
+ 1.7558795291409215,
+ -3.425994273016247,
+ 3.341084624531901,
+ -2.175498152134105,
+ 0.19020800195644316,
+ 1.7632638069463298,
+ -3.1483423441681575,
+ 4.963483376909884,
+ 6.03115752413126,
+ -1.2516897029152413e-15,
+ -1.1636776857395993e-15,
+ -4.7273372007405525e-17,
+ 1.7296346608483806e-16,
+ -8.635765595053608e-17,
+ 2.653595405070113e-16,
+ 1.7958091098526228e-16,
+ -5.885390058314792e-17,
+ -3.3542173839025267e-16,
+ 1.376428539288238e-16,
+ -1.4227506535912076e-17,
+ -4.835904656138138e-16,
+ 1.907892082853558e-16,
+ -1.3979352352146168e-16,
+ -4.4698772350834227e-17,
+ 1.5029871730088513e-16,
+ -5.864710543000966e-17,
+ 2.3491929396505983e-17,
+ 1.8404768629304863e-16,
+ 3.30872245021211e-19,
+ -7.610061635487853e-17,
+ 7.314344566500147e-17,
+ 2.0005363114594972e-16,
+ 1.6692504761320096e-16,
+ 3.176373552203626e-17,
+ 1.9157502986728118e-16,
+ 4.326154603652334e-17,
+ -1.004610853945652e-16,
+ -1.0306670432410724e-16,
+ 9.181704799338606e-17,
+ 4.231856013821289e-16,
+ -1.7321162026860397e-16,
+ 5.108667463127499e-16,
+ 1.922367743573236e-16,
+ 2.7925617479790214e-16,
+ -7.676236084492096e-17,
+ -8.280077931655806e-17,
+ -4.3964649557193415e-17,
+ -1.404552680115041e-16,
+ -1.2904017555827232e-16,
+ -1.6618058506190324e-16,
+ 2.9431086194636725e-16,
+ -3.959713592291343e-16,
+ 1.7064736036968958e-16,
+ 4.1379710142965205e-16,
+ -2.407612570412156e-16,
+ 1.732322997839178e-16,
+ 5.560308077581452e-16,
+ -5.065654071274741e-16,
+ -1.7668060896249825e-17,
+ 4.3708223567301977e-16,
+ 1.0918784085699964e-16,
+ -2.1142736456855385e-16,
+ -7.841672207002701e-17,
+ -4.324500242427228e-16,
+ 1.2482155443425188e-16,
+ 1.4219234729786546e-16,
+ 1.3516131209116472e-16,
+ -1.3234889800848443e-16,
+ 1.9180250453573327e-16,
+ -4.3708223567301977e-16,
+ 9.975798187389513e-17,
+ -3.1399776052512926e-16,
+ 3.1101991031993836e-16,
+ 2.7710550520526427e-16,
+ 2.8351615495255024e-16,
+ 6.948317145445432e-17,
+ -2.9431086194636725e-16,
+ -1.8106983608785773e-16,
+ 4.863822001811802e-17,
+ 9.760731228125725e-18,
+ -1.2995007423208065e-16,
+ -1.550963648536927e-17,
+ 2.8554274745330515e-16,
+ 4.0399501117089867e-16,
+ 1.9194726114293005e-16,
+ -3.0522964603206716e-16,
+ -2.3144513539233714e-16,
+ 8.519960309296184e-17,
+ -7.829264497814406e-17,
+ -3.325266062463171e-17,
+ -3.507245797224837e-16,
+ 1.192794443301466e-16,
+ 2.9704055796779224e-16,
+ 1.3574033851995184e-16,
+ -1.0405932105917087e-16,
+ -2.3161057151484775e-18,
+ 6.005331247134981e-17,
+ -4.314574075076592e-16,
+ 4.966392397768378e-16,
+ -1.1183481881716934e-16,
+ -1.742042370036676e-16,
+ -3.1697561073032016e-16,
+ 1.0546552810051102e-16,
+ -2.974748277893826e-17,
+ 5.343586757092558e-17,
+ 3.214423860381065e-16,
+ -1.4062070413401469e-18,
+ -4.421280374095932e-17,
+ 1.2031342009583788e-16,
+ -2.376076309558572e-16,
+ 7.300696086393021e-16,
+ -8.288349737781336e-17,
+ 2.771468642358919e-16,
+ 3.624705444207367e-16,
+ 2.4997398111352496e-16,
+ -7.580076338282806e-17,
+ 1.4533563362556696e-16,
+ 8.449649957229176e-17,
+ 1.952146245625145e-17,
+ 1.7023377006341307e-16,
+ -2.605618929542037e-16,
+ -4.646273500710356e-16,
+ 1.519117194953635e-16,
+ -1.4889251025954498e-16,
+ 2.752857078576476e-16,
+ 2.5626055376892797e-16,
+ 1.3913177903141925e-16,
+ 1.0910512279574434e-16,
+ 6.2865726554030096e-18,
+ -3.335192229813807e-16,
+ -7.268849632809731e-17,
+ 9.835177483255498e-17,
+ 7.65555656917827e-17,
+ -1.6874484496081762e-16,
+ -5.115284908027923e-16,
+ -1.0542416906988336e-16,
+ -3.901810949412631e-16,
+ -3.4576149604716557e-17,
+ -2.7884258449162563e-16,
+ -2.1787937334646746e-16,
+ 7.743444509262029e-17,
+ 6.314696796229812e-16,
+ 2.5551609121763025e-16,
+ 2.39882377640378e-17,
+ -5.744769354180777e-16,
+ 2.0257653201423645e-16,
+ 2.1233726324236218e-16,
+ 3.964676675966661e-16,
+ -1.7031648812466837e-16,
+ 5.717472393966527e-16,
+ -4.629316298153019e-16,
+ 3.160863915718257e-17,
+ -1.952146245625145e-17,
+ 5.360130369343619e-16,
+ -9.75659532506296e-17,
+ 6.480960099352972e-17,
+ 1.3509927354522324e-16,
+ 1.6675961149069035e-16,
+ -8.677124625681259e-17,
+ -2.1341259803868112e-16,
+ -4.2384734587217133e-16,
+ -1.0405932105917087e-16,
+ 1.0257039595657542e-17,
+ -3.6759906421856545e-16,
+ -5.448018309427378e-17,
+ 3.987010552505593e-17,
+ -6.041261904992753e-17,
+ -1.8661194619196302e-16,
+ -1.2156970065115279e-16,
+ -1.7453510924868884e-17,
+ 2.388897609053144e-16,
+ -2.783462761240938e-17,
+ 9.789682549565081e-17,
+ 7.468200160435009e-16,
+ 5.344103744975404e-17,
+ 2.6092378447219567e-16,
+ -1.4707271291192832e-16,
+ 4.527986673115273e-16,
+ -2.5642598989143854e-18,
+ 7.167520007771985e-17,
+ 2.1980256827065325e-16,
+ 1.1291015361348828e-16,
+ 1.0085399618552789e-16,
+ 2.7669191489898773e-17,
+ 1.6957202557337067e-17,
+ 2.39882377640378e-18,
+ 1.0157777922151179e-16,
+ 7.543887186483611e-16,
+ 3.838118042246048e-16
+ ],
+ [
+ 6.075661722362486,
+ 4.78629201189395,
+ -3.997033198725474,
+ 4.8680970488444375,
+ -4.163343064317453,
+ 1.9665765003616729,
+ 0.7799096015287285,
+ -3.2775606946636078,
+ 3.1712663284089118,
+ 5.684260579686011,
+ -4.283121658795843,
+ -2.587841912574932,
+ 1.774412817757499,
+ 0.9888866341618734,
+ -3.5221643924067636,
+ 3.088400666326466,
+ 5.152974296170583,
+ -3.473305839001568,
+ -2.3565618673463398,
+ 1.4519877738053608,
+ 1.3206999290085613,
+ -3.662511340935647,
+ 4.840816425998593,
+ -4.350406464872795,
+ 2.4500285009386187,
+ 0.026762776641085482,
+ -0.8760386955348312,
+ -5.054649582559994,
+ -2.6107790753261044,
+ 4.859654493728198,
+ -4.186342009631024,
+ 2.1489334181774504,
+ 0.2292690765167742,
+ -0.5250189566936082,
+ -5.656321269359364,
+ -2.7576346561399285,
+ 4.870571896124584,
+ -4.073587850810008,
+ 1.9599383379676605,
+ 0.9454995385368362,
+ -3.397048572425574,
+ 4.751514978477477,
+ -8.63646423253997,
+ -8.571516661519793,
+ -3.411783294655092,
+ -3.190365753682152,
+ 1.3788533098016864,
+ 1.6183352197225331,
+ 0.8494140974023823,
+ -3.3292326128951917,
+ 4.728711809559516,
+ -4.544367773329059,
+ 2.8551692851052537,
+ -0.23892864460624944,
+ -1.4720623003200919,
+ -1.9129790356546328,
+ 6.05592479942555,
+ 3.1666566257942432,
+ -4.465607645834359,
+ 2.6804132084890906,
+ 0.10271438670235312,
+ -1.6745965318128209,
+ -2.1233619701093422,
+ 5.543550890069836,
+ 3.164778176659127,
+ -4.318183026214388,
+ 2.3886575196506032,
+ 0.31077674093255625,
+ -3.0373967900802987,
+ 4.621711686121641,
+ -4.71117681673408,
+ 2.2263260252157657,
+ 4.52082031894282,
+ 1.8958470554664537,
+ 0.5694471191009997,
+ -3.197605942189971,
+ 4.718237276304274,
+ -4.613084052368656,
+ 2.2288438643139146,
+ 4.906821326135794,
+ 2.6067594432421606,
+ 0.8998592616250332,
+ -3.4472176841535545,
+ 4.766280130852009,
+ -4.541727094369725,
+ 2.717028467127552,
+ -0.07486192188818508,
+ -2.59527280939718,
+ 4.972208295951565,
+ 5.890744937715014,
+ 1.2517679973893785,
+ 0.7899936905725705,
+ -1.5804793629945437,
+ 3.8384193781426736,
+ -4.851736607206516,
+ 4.21863165624562,
+ -2.2108317263473887,
+ -0.5159098117353967,
+ 1.9395018732239506,
+ 2.888695737377344,
+ -6.240083149679038,
+ -3.335061269160861,
+ 4.111057086404641,
+ -2.019550332141828,
+ -0.8541573173133092,
+ 2.070319699661929,
+ 2.895031001774849,
+ -5.380627857396272,
+ -3.153312363973686,
+ 3.9177666469846426,
+ -1.7038683103663241,
+ -1.0582958565300569,
+ 3.5891026925126748,
+ -4.8033453722348876,
+ 4.463235277126916,
+ -1.8507413504992474,
+ -3.961116924517681,
+ -2.6838488904838322,
+ -1.0444868905355753,
+ 3.7268371501035955,
+ -4.848011288519841,
+ 4.315750448842817,
+ -1.6940169169920458,
+ -3.9905108974167187,
+ -3.2772120337640107,
+ -1.2787210715240138,
+ 3.9373942388922485,
+ -4.8634765745427755,
+ 4.215007942582074,
+ -2.0595630845264514,
+ -0.6788072684643112,
+ 3.200956937262809,
+ -7.688390575376863,
+ -7.496164224761572,
+ -0.7721996121632088,
+ -0.46866878331939665,
+ 6.144092352455898,
+ 6.369199984358655,
+ -2.1521079530267384,
+ -0.5785554262825827,
+ 3.118288975671516,
+ -4.694921581593993,
+ 4.632228804897449,
+ -3.0690877830766903,
+ 0.48748463073861387,
+ 1.8604229693368064,
+ 5.021168315138075,
+ 2.7775720144411276,
+ -2.4548531558004965,
+ -0.23941874886030867,
+ 2.9596066825383827,
+ -2.94112574811244,
+ -4.760787954902543,
+ 4.106978342508254,
+ 2.656243009524289,
+ -2.1537927949654136,
+ -0.5798476479398388,
+ 3.1220672089246873,
+ -4.700102298428353,
+ 4.637027351401175,
+ -3.0718995349791425,
+ 0.4638089417337777,
+ 1.7177254677240337,
+ 4.6291139230966,
+ 2.3015352469772323,
+ -4.750766916282515,
+ 4.521330571088784,
+ -2.799390551317952,
+ 0.3291339532306014,
+ 1.5608785784506114,
+ 5.536439408706606,
+ 2.6262110416756723,
+ -4.814366840559955,
+ 4.437830182138462,
+ -2.626219478930401,
+ -0.1952740021579312,
+ 2.816465068517857,
+ -4.5290595208561015,
+ 6.978962434152041,
+ 8.507840111992428,
+ -1.940896589294424e-15,
+ -1.818473858636576e-15,
+ -1.179145963194341e-16,
+ 1.9984683599281146e-16,
+ -7.527343574232552e-17,
+ 3.843081125921366e-16,
+ 3.096137032785982e-16,
+ -5.583469134732937e-17,
+ -3.594926942155458e-16,
+ 1.7337705639111458e-16,
+ -3.29217883796105e-17,
+ -7.179514126654003e-16,
+ 2.2830184906463564e-16,
+ -2.324377521274008e-16,
+ -5.205034004489926e-17,
+ 2.2052635130663715e-16,
+ -6.935909436257137e-17,
+ 6.509911420792328e-17,
+ 2.6453235989445825e-16,
+ 2.2664748783952955e-17,
+ -1.0906376376511669e-16,
+ 1.1626023509432804e-16,
+ 2.817790756661889e-16,
+ 2.3723539968020834e-16,
+ -2.9778502051908992e-18,
+ 2.9712327602904754e-16,
+ 6.600901288173161e-17,
+ -1.3805644423510032e-16,
+ -1.5418646617988433e-16,
+ 9.132073962585424e-17,
+ 5.523912130629119e-16,
+ -2.415367388654841e-16,
+ 6.925156088293947e-16,
+ 2.385588886602932e-16,
+ 4.0085172484319716e-16,
+ -4.6322114302969544e-17,
+ -1.2126467780027386e-16,
+ -6.220398206398768e-17,
+ -1.4140652571594008e-16,
+ -2.262752565638807e-16,
+ -2.7379678275505216e-16,
+ 3.631322889107791e-16,
+ -5.55699935513124e-16,
+ 2.2743330942145496e-16,
+ 5.527014057926193e-16,
+ -3.382548319882468e-16,
+ 2.2959431877174974e-16,
+ 8.093135113218822e-16,
+ -7.242793443514309e-16,
+ -2.4484546131569616e-17,
+ 5.866364904226072e-16,
+ 1.3028094647710186e-16,
+ -2.840538223507097e-16,
+ -9.562207881112999e-17,
+ -4.681842267050137e-16,
+ 1.8123527221036834e-16,
+ 2.0183206946293873e-16,
+ 2.0249381395298115e-16,
+ -2.0580253640319326e-16,
+ 2.3882255248054446e-16,
+ -6.349438381957039e-16,
+ 1.5981129434524492e-16,
+ -4.678533544599925e-16,
+ 4.288104295474895e-16,
+ 3.7540558124953465e-16,
+ 3.846389848371578e-16,
+ 1.5964585822273432e-16,
+ -4.0647655300855775e-16,
+ -1.8992066864217513e-16,
+ 9.512577044359817e-17,
+ 2.225115847767644e-17,
+ -1.7552772598375245e-16,
+ -1.2738581433316625e-17,
+ 4.192978525031297e-16,
+ 5.631445610261012e-16,
+ 2.9327688618067596e-16,
+ -4.0581480851851533e-16,
+ -2.8818972541347484e-16,
+ 8.768114493062092e-17,
+ -4.301339185275743e-17,
+ -4.582580593543773e-17,
+ -4.698385879301197e-16,
+ 1.6014216659026613e-16,
+ 3.5800376911295033e-16,
+ 2.2234614865425384e-16,
+ -1.4459117107426924e-16,
+ 3.556876633978019e-17,
+ 1.1994118882018901e-16,
+ -3.9439971606528355e-16,
+ 6.005331247134981e-16,
+ -7.82512859475164e-17,
+ -3.2243500277317014e-16,
+ -4.669951545744687e-16,
+ 1.6795902337889224e-16,
+ -6.21419435180462e-18,
+ 1.0091603473146936e-16,
+ 4.532122576178039e-16,
+ 2.249931266144235e-17,
+ -8.172544452023912e-17,
+ 1.593977040389684e-16,
+ -3.402607449736879e-16,
+ 9.271040305494334e-16,
+ -1.3929721515392986e-16,
+ 4.3433186013628096e-16,
+ 5.654606667412497e-16,
+ 3.388131789017201e-16,
+ -9.93340518099617e-17,
+ 1.801599374140494e-16,
+ 5.616556359235058e-17,
+ 9.26442286059391e-18,
+ 2.2615117947199777e-16,
+ -3.4828439691545225e-16,
+ -6.291535739078328e-16,
+ 1.804080915978153e-16,
+ -1.8694281843698423e-16,
+ 3.7917959279430784e-16,
+ 3.90429249125029e-16,
+ 2.1936829844906291e-16,
+ 1.0157777922151179e-16,
+ 3.374896899216353e-17,
+ -4.666953016024182e-16,
+ -9.793818452627846e-17,
+ 2.2234614865425384e-16,
+ 1.2498699055676248e-16,
+ -2.0150119721791752e-16,
+ -6.614136177974008e-16,
+ -1.3077725484463368e-16,
+ -5.351858563218089e-16,
+ -2.7090165061111653e-18,
+ -3.600717206443329e-16,
+ -2.7942161092041275e-16,
+ 1.4244050148163137e-16,
+ 9.21810074629094e-16,
+ 3.295487560411262e-16,
+ 8.55718343686107e-17,
+ -8.180816258149443e-16,
+ 2.5584696346265146e-16,
+ 2.992739456216854e-16,
+ 5.699274420490361e-16,
+ -2.2557215304321065e-16,
+ 7.161729743484113e-16,
+ -6.301048316122687e-16,
+ 3.069874048337424e-17,
+ 3.4576149604716557e-17,
+ 6.958243312796068e-16,
+ -1.7858829425019865e-16,
+ 7.32468432415706e-17,
+ 1.696133846039983e-16,
+ 2.392206331503356e-16,
+ -1.0836066024444661e-16,
+ -2.685028268347128e-16,
+ -6.30311626765407e-16,
+ -1.6345088904047824e-16,
+ -3.474158572722716e-18,
+ -5.102050018227075e-16,
+ -1.0898104570386138e-16,
+ 5.955700410381799e-17,
+ -6.817519211085485e-17,
+ -2.0778776987332053e-16,
+ -1.619619639378828e-16,
+ -1.2655863372061322e-17,
+ 3.5502591890775943e-16,
+ -1.919059021123024e-17,
+ 1.4483932525803515e-16,
+ 8.93106907373504e-16,
+ 6.865082096307284e-17,
+ 3.6164336380818365e-16,
+ -2.1506695926378717e-16,
+ 6.11451908799198e-16,
+ -1.2531786280178368e-17,
+ 9.89308012613421e-17,
+ 2.4869185116406777e-16,
+ 1.6005944852901083e-16,
+ 1.4202691117535485e-16,
+ 4.078000419886426e-17,
+ 5.9557004103817985e-18,
+ 1.7412151894241233e-17,
+ 1.3499587596865412e-16,
+ 1.191470954321381e-15,
+ 5.806807900122254e-16
+ ],
+ [
+ -2.3310123308555206,
+ -1.7758584079669233,
+ 1.7466839947780686,
+ -2.762434370914786,
+ 2.808693917801243,
+ -1.9507598000176178,
+ 0.41177416281095125,
+ 1.1880630608973533,
+ -1.6133291697635541,
+ -2.7105324695989452,
+ 3.295427262149317,
+ 1.8569001582242364,
+ -1.8551782024079078,
+ 0.28678025120836786,
+ 1.3715704953657364,
+ -1.6271367884475552,
+ -2.5423956877655343,
+ 2.7711488549887484,
+ 1.726810224334319,
+ -1.6932496697975006,
+ 0.08231304244425562,
+ 1.4785569379392813,
+ -2.676776918602,
+ 2.853612863270658,
+ -2.180961039269568,
+ 0.5621478840502069,
+ 1.5019529047949813,
+ 2.4457791858653435,
+ 1.1578934849157672,
+ -2.7243777815156975,
+ 2.8157644096141423,
+ -2.0382015931784707,
+ 0.4489913996177324,
+ 1.3986546015934358,
+ 2.8213575281939667,
+ 1.277135814876287,
+ -2.793687404868671,
+ 2.7835450327487923,
+ -1.9475362436129984,
+ 0.31214708641486927,
+ 1.2765137394148054,
+ -2.5284787774007236,
+ 5.135637199349102,
+ 5.055531122051596,
+ 1.330398962492746,
+ 1.1659203407769607,
+ -2.3359904194963668,
+ -2.4820585208256216,
+ 0.3701596337234539,
+ 1.226143590263751,
+ -2.4981817781037847,
+ 2.884161723868046,
+ -2.363453840218689,
+ 1.0018650569399414,
+ 0.3221520982464839,
+ 0.04064607406296155,
+ -3.4899464618529086,
+ -1.7330299522121038,
+ 2.8753877875194696,
+ -2.2851813172887594,
+ 0.8092811483488228,
+ 0.4624519072655299,
+ 0.2682894457259298,
+ -3.266798973411056,
+ -1.7689106605245672,
+ 2.8467755884793795,
+ -2.1524696396746914,
+ 0.6883369223366521,
+ 1.0141894627233652,
+ -2.3698244962627366,
+ 2.8850305946969304,
+ -1.6775689844900712,
+ -3.167237973920927,
+ -0.12285626377083356,
+ 0.2440559599655199,
+ 1.130473520580944,
+ -2.4835414006196226,
+ 2.889742851223433,
+ -1.7211570943862786,
+ -3.5312662032801025,
+ -0.4244193994521168,
+ 0.07397683252717989,
+ 1.3140920366782725,
+ -2.549470662708991,
+ 2.8839009124571646,
+ -2.3023712076629357,
+ 0.9094283881261472,
+ 0.7053858111171906,
+ -1.9139579144840448,
+ -2.193633204667802,
+ 0.8499327329809234,
+ 0.8299339758558062,
+ 0.03959229493596785,
+ -1.658022867927008,
+ 2.663400620577362,
+ -2.863655674681882,
+ 2.0281159770581585,
+ -0.6091012278872894,
+ -0.6081188500572361,
+ -0.6093922164089736,
+ 3.7820720543748165,
+ 1.9292500084136277,
+ -2.8340517391363327,
+ 1.9370291734732878,
+ -0.4070342546669923,
+ -0.7406464657189733,
+ -0.7784051226871673,
+ 3.328971658247696,
+ 1.8519425820696986,
+ -2.776306762640118,
+ 1.780304368377002,
+ -0.28427341742859713,
+ -1.462527628564558,
+ 2.566109470842664,
+ -2.9145986461367883,
+ 1.5217064351222627,
+ 2.9690886994355927,
+ 0.6360149464072622,
+ 0.04904487125038932,
+ -1.5684538893061664,
+ 2.654121642458376,
+ -2.885949041731531,
+ 1.4559943179143406,
+ 3.1013867269269118,
+ 0.9356953976138939,
+ 0.19530290319225535,
+ -1.7381597811878884,
+ 2.70065071015873,
+ -2.862754423802268,
+ 1.9555147031979918,
+ -0.5127677479668064,
+ -1.172759397519256,
+ 3.6244882957028235,
+ 3.4873387273096363,
+ -0.413285276832264,
+ -0.5913363944535728,
+ -4.598711674947042,
+ -4.710064716368136,
+ 2.001027518748862,
+ -0.5729449618121185,
+ -1.1128522667568406,
+ 2.4180170282045403,
+ -2.927745423620509,
+ 2.4152208968071753,
+ -0.8520272853230821,
+ -2.1103130298447397,
+ -2.2393732783482987,
+ -0.9271412190327791,
+ 2.4845591444926396,
+ -0.7693595229643869,
+ -0.9985302134482871,
+ 1.4579601344182542,
+ 2.1788730212389145,
+ -3.024263635166491,
+ -1.826291292515702,
+ 2.0008313771893627,
+ -0.5713006414444316,
+ -1.1155958511914654,
+ 2.421037490540624,
+ -2.930001696017731,
+ 2.415934520156826,
+ -0.835026609490756,
+ -1.9440106542397553,
+ -2.066574144529333,
+ -0.9124051755762205,
+ 2.487562495342269,
+ -2.9218225275567833,
+ 2.2993355920711114,
+ -0.7926884693300204,
+ -2.012837102536592,
+ -2.576274096820157,
+ -1.1182395024609408,
+ 2.5839982524795855,
+ -2.9107909851309075,
+ 2.2209998903031947,
+ -0.7956451463701746,
+ -0.89887695565747,
+ 2.229947395626733,
+ -3.767509637886105,
+ -4.540212872901566,
+ 8.424007358240033e-16,
+ 1.084930091424551e-15,
+ -1.3317607862103744e-17,
+ 3.039888751132377e-17,
+ -1.1669450491591838e-16,
+ -8.503416697045123e-17,
+ -6.832511859688009e-17,
+ -3.658619849322041e-16,
+ -1.7453510924868884e-17,
+ -9.073137343941021e-17,
+ 1.9769616640017358e-17,
+ 4.561901078229948e-16,
+ -3.101513706767577e-16,
+ 2.5166970136925864e-17,
+ 6.369290716658313e-17,
+ -2.10103875588469e-17,
+ -5.4500862609587605e-17,
+ -4.963083675318166e-19,
+ -6.633988512675282e-17,
+ 1.462455322993753e-16,
+ 7.607993683956471e-17,
+ 6.203854594147707e-19,
+ -1.0827794218319131e-16,
+ -1.4475660719677982e-18,
+ 1.522012327097571e-17,
+ -2.646977960169688e-18,
+ -1.9356026333740845e-17,
+ 1.2535922183241134e-16,
+ 2.871971086784112e-16,
+ -5.09543257332665e-17,
+ -3.9787387463800626e-16,
+ 1.6130021944784037e-16,
+ -2.418676111105053e-16,
+ -2.2582030722697652e-17,
+ -2.504702894810568e-16,
+ 1.4889251025954498e-16,
+ 4.5164061445395305e-17,
+ 9.533256559673643e-17,
+ 1.4690727678941772e-16,
+ 1.124448645189272e-16,
+ 7.866487625379292e-17,
+ -1.7370792863613579e-16,
+ 3.717349672813306e-16,
+ -4.80591935893309e-17,
+ -2.1349531609993642e-16,
+ 2.5278639519620526e-16,
+ -1.2755125045567687e-16,
+ 1.9926780956402434e-16,
+ 1.7544500792249715e-16,
+ 9.516712947422582e-17,
+ -3.4708498502725036e-16,
+ -1.7064736036968958e-16,
+ 2.1945101651031822e-16,
+ 2.457553599895045e-16,
+ 7.576974410985732e-17,
+ -1.184729432329074e-16,
+ 2.3657365519016588e-17,
+ 6.038418471637101e-18,
+ 8.313165156157927e-17,
+ -5.244325083586195e-17,
+ 3.538678660501852e-16,
+ 5.078888961075589e-17,
+ 1.3400325923359048e-16,
+ -1.6436078771428657e-16,
+ -2.5013941723603557e-16,
+ -2.649666297160486e-16,
+ -5.4759356551010426e-17,
+ 8.979045549263114e-17,
+ 3.208633596093194e-16,
+ 2.826889743399972e-17,
+ -2.851705161776563e-17,
+ 7.370179257847477e-17,
+ -1.861156378244312e-19,
+ -2.5712909341210865e-16,
+ -2.8479828490200743e-16,
+ -6.112864726766875e-17,
+ 2.897613685773256e-16,
+ 1.9467695716435504e-16,
+ -1.290401755582723e-17,
+ 9.520848850485347e-17,
+ 3.0833157332914107e-17,
+ -1.7232240111010947e-16,
+ 3.7967590116183964e-17,
+ -2.4410099876439847e-16,
+ -6.030146665511572e-17,
+ 7.77549775799846e-18,
+ -9.694556779121483e-17,
+ 2.6449100086383057e-17,
+ -1.889280519071115e-16,
+ -7.361907451721946e-18,
+ 5.848166930749906e-16,
+ -4.2417821811719254e-16,
+ 6.86559908419013e-17,
+ -1.5546859612934153e-16,
+ 6.888346551035338e-17,
+ -5.542110104105285e-17,
+ 6.73738608924441e-17,
+ 2.713152409173931e-16,
+ -4.810882442608409e-16,
+ -3.108958332280554e-16,
+ 2.067124350770016e-16,
+ -8.463712027642578e-16,
+ 2.2143624998044548e-16,
+ -1.9968139987030086e-16,
+ -2.0621612670946977e-16,
+ -2.4641710447954694e-16,
+ 5.686866711302065e-17,
+ -1.852884572118782e-17,
+ 2.4286022784556893e-16,
+ -1.49719690872098e-17,
+ -1.195275985139125e-16,
+ -2.6552497662952185e-17,
+ 1.5376770599477936e-16,
+ -1.0417305839339691e-16,
+ 1.1034589371457388e-16,
+ -2.0811864211834174e-16,
+ -1.8644651006945241e-16,
+ -1.0472106554921329e-16,
+ 3.668029028789832e-17,
+ 3.4245277359695346e-17,
+ 2.216844041642114e-16,
+ -1.7602403435128426e-16,
+ 4.372476717955304e-16,
+ 1.0141234309900118e-16,
+ 1.768512149638373e-16,
+ 3.044024654195142e-17,
+ 3.1267427154504446e-17,
+ -1.06416785804947e-16,
+ 4.8803656140628625e-18,
+ 2.8940981681699056e-16,
+ 3.5287524931512156e-16,
+ 7.527343574232552e-17,
+ 2.63374307036884e-16,
+ -1.1828682759508296e-16,
+ 2.6014830264792717e-17,
+ 4.725682839515447e-16,
+ -1.4347447724732265e-16,
+ -5.030912485547514e-16,
+ -1.9265036466360012e-16,
+ 1.4698999485067302e-16,
+ -3.840599584083707e-16,
+ 3.30872245021211e-19,
+ 7.312276614968765e-17,
+ 9.074171319706712e-17,
+ -4.685978170112902e-16,
+ 6.762201507621001e-17,
+ -6.869734987252895e-17,
+ 7.763090048810163e-17,
+ -1.2515242667927309e-16,
+ 1.0232224177280951e-16,
+ 2.192855803878076e-16,
+ 3.540333021726958e-16,
+ 6.319659879905131e-17,
+ 9.363684534100272e-17,
+ 1.455217492633914e-16,
+ -3.0688400725717327e-17,
+ -4.0035541647566533e-17,
+ 8.271806125530276e-20,
+ -7.159248201646455e-17,
+ 4.21034931789491e-17,
+ -5.98051582875839e-17,
+ -5.3270431448414976e-17,
+ 4.681842267050136e-17,
+ 1.9107872149974936e-17,
+ -3.8579703769473206e-16,
+ -7.769293903404311e-17,
+ -2.317966871526722e-16,
+ 4.9804027693934944e-17,
+ -3.296314741023815e-16,
+ 2.280123358502421e-16,
+ -2.4401828070314313e-17,
+ -1.5315249041419305e-16,
+ 3.0398887511323763e-18,
+ 1.2440796412797536e-16,
+ -1.2192642229031628e-16,
+ -7.610061635487853e-17,
+ 1.9107872149974936e-17,
+ -1.508105353049023e-16,
+ -7.203088774111764e-16,
+ 4.3915018720440234e-16
+ ],
+ [
+ -0.5685390088957334,
+ -0.6015031794052976,
+ -0.2393812156083737,
+ 1.7456048758317217,
+ -2.7597369037303134,
+ 2.7832719809037942,
+ -1.9512030375622829,
+ 0.4111978081695928,
+ 0.7108951942077674,
+ 0.8137711745391875,
+ -3.796564224844154,
+ -1.9529553861769953,
+ 2.7488859745723278,
+ -1.8537330647560941,
+ 0.2094546391675508,
+ 0.8345092208427679,
+ 0.9542045358130807,
+ -3.329733077784494,
+ -1.8695389220002516,
+ 2.6787757131474765,
+ -1.6919056510762867,
+ 0.08441972397523198,
+ 1.5572617499926753,
+ -2.6741573853675717,
+ 2.851636279159957,
+ -1.4567357366476295,
+ -2.879893519974471,
+ -0.8138433285611972,
+ -0.15263755490865955,
+ 1.6612527727461917,
+ -2.750089059588205,
+ 2.8137535921673815,
+ -1.3855849251852677,
+ -2.992432440015832,
+ -1.1252899876205613,
+ -0.29870122122950493,
+ 1.8225281789035412,
+ -2.791844545188545,
+ 2.78212666582229,
+ -1.8748741085563159,
+ 0.3140105910981156,
+ 1.27595263675139,
+ -3.8211959826557114,
+ -3.687147169962572,
+ 0.2647536844204693,
+ 0.4460803605132893,
+ 4.461510210791322,
+ 4.57679631276946,
+ -1.9196042405267242,
+ 0.36954153821976626,
+ 1.2233261584174853,
+ -2.5444912479103627,
+ 2.882371063034494,
+ -2.3618147454223313,
+ 0.7541035639910408,
+ 1.940259161859953,
+ 2.396922587768881,
+ 1.0199471065068864,
+ -2.6031434090066936,
+ 2.8733551939698763,
+ -2.234369383983179,
+ 0.6140394102775879,
+ 1.5866928403949325,
+ 2.377333967670185,
+ 1.1130994108428807,
+ -2.6911015521629964,
+ 2.8447083357392735,
+ -2.1525494444040114,
+ 0.5963528111620481,
+ 1.011411239634301,
+ -2.368467536968005,
+ 1.8835585580776892,
+ 3.216936044396532,
+ -1.713174720567933,
+ -1.2283546373299892,
+ 0.4752477693437225,
+ 1.2003613236510864,
+ -2.482067795383027,
+ 1.9916097641377584,
+ 3.7294001740337337,
+ -1.7065130998847042,
+ -1.149245587892262,
+ 0.2722593501289839,
+ 1.313371740292935,
+ -2.5466135933261365,
+ 2.8748621939463552,
+ -2.302373514730083,
+ 0.9085785861226746,
+ -0.44925633708479684,
+ -0.7199874725317793,
+ -3.4965932531752393,
+ -2.952457584145991,
+ 1.5159695583898372,
+ 0.039851869084986107,
+ -1.655287716591343,
+ 2.6967188012219356,
+ -2.8626329459103714,
+ 2.026747417147521,
+ -0.5269870095623168,
+ -1.5377691983226067,
+ -2.942354041646895,
+ -1.338559819487938,
+ 2.739588367081569,
+ -2.832405998591495,
+ 1.877886250107301,
+ -0.33003628150332864,
+ -1.115135477554922,
+ -2.7093726376735585,
+ -1.336320059666857,
+ 2.7962137716289264,
+ -2.774645553396332,
+ 1.7809134882809041,
+ -0.19036791074303203,
+ -1.4599295275655133,
+ 2.5648396888973033,
+ -1.8888417027968993,
+ -3.311495016312662,
+ 1.2512291894367418,
+ 0.9911809840095293,
+ -0.06522344065545516,
+ -1.6326451906124897,
+ 2.6527668227168366,
+ -1.88931316078817,
+ -3.616168884467255,
+ 1.1237335451512402,
+ 0.869826005056708,
+ 0.1378366920899506,
+ -1.7374808793876901,
+ 2.6982654906588492,
+ -2.8396637501639863,
+ 1.9559163348167836,
+ -0.51225166982401,
+ -0.9931037036586841,
+ -0.8499480361626046,
+ 1.9006202121119558,
+ 2.0353456946137056,
+ 5.119553762189376,
+ 5.15792523140779,
+ -2.855716394045542,
+ 2.0016903626528757,
+ -0.5757573520570008,
+ -1.1994581842866407,
+ 2.417620748642282,
+ -2.92909476689547,
+ 1.6438143291317941,
+ 3.3738129541742476,
+ 0.3252378428529864,
+ -0.1307821653480499,
+ -1.311255060879331,
+ 2.485504490770057,
+ -0.6935278559871595,
+ -0.5620519822397277,
+ -0.4496651986769219,
+ 3.2957660149675974,
+ 1.8020983827456762,
+ -2.8540879355867657,
+ 1.9988524742208558,
+ -0.5728374495139436,
+ -1.2015067147829583,
+ 2.4181466442744504,
+ -2.927879276926105,
+ 1.6258807006404483,
+ 3.1037313851585746,
+ 0.30498143482817824,
+ -0.14068410679380433,
+ -1.313207545059918,
+ 2.5241500505856376,
+ -2.9196234673929826,
+ 1.6621920515039723,
+ 3.4461383624888167,
+ 0.6305820259545784,
+ 0.03538630052349793,
+ -1.493426941781179,
+ 2.582180334806913,
+ -2.9087701547360685,
+ 2.158073688027929,
+ -0.7970570474705774,
+ -0.8987461459441025,
+ 2.1159123506489133,
+ 2.445673743412678,
+ 5.553690632681028e-16,
+ 5.43126790202318e-16,
+ 2.220152764092326e-16,
+ 2.804142276554764e-17,
+ -1.3768421295945146e-16,
+ -1.3139764030404845e-16,
+ -2.599001484641613e-16,
+ 3.5039370747746247e-16,
+ -1.8379953210928272e-16,
+ 1.228363209641246e-16,
+ 5.98878763488392e-17,
+ -1.1175210075591404e-16,
+ 3.990319274955805e-16,
+ 1.2304311611726287e-16,
+ -2.077670903580067e-16,
+ -6.418921553411495e-17,
+ 9.098986738083304e-19,
+ -1.3822188035761092e-16,
+ 1.0778163381565949e-16,
+ -2.1076562007851143e-16,
+ 5.194694246833013e-17,
+ -1.981097567064501e-17,
+ 5.48213950969519e-17,
+ -1.2319821248211656e-16,
+ -9.59529510561512e-18,
+ -3.661928571772253e-16,
+ -4.557765175167182e-17,
+ -8.437242248040881e-17,
+ -2.0853223242461825e-16,
+ 1.9393249461305731e-16,
+ 3.933243812689646e-16,
+ -6.741521992307176e-17,
+ 9.578751493364059e-17,
+ 5.600012746983997e-17,
+ 4.450231695535288e-17,
+ -3.7041147830124574e-16,
+ -3.680953725860973e-17,
+ -9.156889380962015e-17,
+ -2.5743928614181604e-16,
+ 7.279189390466644e-17,
+ 2.0828407824085234e-16,
+ 2.2118809579667958e-16,
+ -1.919059021123024e-16,
+ 3.7223127564886245e-17,
+ 1.333001557129204e-16,
+ -1.1828682759508296e-16,
+ 1.1059404789833979e-16,
+ -3.068840072571732e-16,
+ 1.2407709188295415e-16,
+ -2.7379678275505213e-17,
+ 3.0709080241031147e-16,
+ 2.387243247828038e-16,
+ -2.115514416604368e-16,
+ -2.5857665948407645e-16,
+ -5.310499532590438e-16,
+ 2.3161057151484775e-18,
+ -4.301339185275743e-17,
+ -9.024540482953531e-17,
+ 7.692779696743156e-17,
+ 2.0514079191315084e-16,
+ -9.353344776443359e-17,
+ -1.5236666883226767e-16,
+ 1.0430747524293678e-16,
+ 8.073282778517549e-17,
+ 1.0025429024142694e-16,
+ 1.8245536361388405e-16,
+ -1.892589241521327e-16,
+ -6.112864726766875e-17,
+ -4.60020988034881e-16,
+ -1.282957130069746e-16,
+ 7.208879038399636e-17,
+ 2.2954261998346515e-17,
+ -1.8611563782443123e-18,
+ -2.210640187047966e-17,
+ 2.043136113005978e-16,
+ -1.5658528995628811e-16,
+ -2.9397998970134604e-16,
+ -2.4385284458063256e-16,
+ 1.8090439996534713e-16,
+ -3.1825774067977735e-16,
+ 3.060568266446202e-18,
+ 1.8967251445840922e-16,
+ -4.350970022028925e-17,
+ 3.337673771651466e-16,
+ -1.3962808739895107e-16,
+ 4.293067379150213e-17,
+ -7.004151836792762e-17,
+ -2.296253380447205e-16,
+ -5.136584808801164e-16,
+ 4.378266982243175e-16,
+ -7.98063854991161e-16,
+ 8.010417051963519e-16,
+ 1.2953648392580413e-16,
+ 7.283325293529409e-17,
+ -1.6386447934675476e-16,
+ -6.555406354482744e-17,
+ -2.2491040855316822e-16,
+ -3.1101991031993836e-16,
+ 5.280721030538529e-16,
+ 3.3748968992163524e-16,
+ -8.197359870400503e-17,
+ 9.732607087298924e-16,
+ -1.311908451509102e-16,
+ -1.6967542314993978e-16,
+ -2.8215130694183774e-16,
+ 1.8115255414911304e-16,
+ -7.479780689010753e-17,
+ 5.604148650046762e-17,
+ 1.8462671272183575e-16,
+ 9.905487835322505e-17,
+ 1.2688950596563445e-16,
+ 1.1166938269465874e-16,
+ -1.402898318889935e-16,
+ 2.0795320599583113e-16,
+ -1.375601358675685e-16,
+ -4.566036981292712e-17,
+ -4.79764755280756e-18,
+ -4.582580593543773e-17,
+ 1.7784383169890093e-16,
+ -1.33941220687649e-16,
+ -6.038418471637102e-17,
+ 2.301216464122523e-16,
+ -6.67203882085272e-16,
+ -1.6378176128549945e-16,
+ -2.8008335541045517e-16,
+ -4.764560328305439e-17,
+ -8.189088064274973e-17,
+ 9.58702329948959e-17,
+ -1.8082168190409183e-16,
+ -2.6767564622215976e-16,
+ -3.5006283523244126e-16,
+ -1.5120861597469343e-16,
+ -5.907723934853724e-16,
+ 2.397789800638089e-16,
+ -2.2027819712287125e-16,
+ -2.5890753172909766e-16,
+ 1.5224259174038472e-16,
+ 2.243313821243811e-16,
+ -4.135903062765138e-19,
+ -1.1497810514487085e-16,
+ 5.073098696787719e-16,
+ 4.4150765195017846e-17,
+ 2.69660879692287e-17,
+ -2.603964568316931e-16,
+ 3.6222239023697077e-16,
+ 2.9695783990653694e-17,
+ 1.0530009197800041e-16,
+ 1.1415092453231782e-16,
+ 8.470329472543002e-17,
+ -9.206520217715197e-17,
+ -2.0079809369724744e-16,
+ 6.648464173394959e-18,
+ 2.067951531382569e-17,
+ -1.0587911840678753e-17,
+ 6.667075737177403e-17,
+ 1.4806532964699195e-16,
+ 8.304893350032397e-17,
+ -5.179184610347644e-17,
+ -6.917297872474694e-17,
+ 4.143140893124977e-17,
+ 4.0035541647566533e-17,
+ -6.774609216809297e-17,
+ -1.0951871310202085e-16,
+ -7.866487625379292e-17,
+ 7.620401393144766e-16,
+ 5.124383894766006e-17,
+ 1.093946360101379e-16,
+ -1.3689839137752606e-17,
+ 1.768512149638373e-16,
+ -1.9153367083665353e-16,
+ 1.0728532544812768e-16,
+ 2.867008003108794e-16,
+ -2.6552497662952185e-17,
+ -1.8561932945689939e-16,
+ 5.774754651385824e-17,
+ 3.490702184973777e-17,
+ -1.4864435607577907e-16,
+ 1.0707853029498942e-16,
+ -7.907846656006943e-17,
+ -8.046812998915852e-16
+ ],
+ [
+ 2.113196591923484,
+ 1.8012646763771223,
+ -0.8772586963288154,
+ -0.2952961442745392,
+ 1.3186858144287492,
+ -1.9853724206209913,
+ 1.9083102238812408,
+ -1.2650498362956488,
+ 0.20746303927800233,
+ 0.7810877327550978,
+ 2.2406635831348187,
+ 1.050808829220846,
+ -2.0042503393959796,
+ 1.8784035024832226,
+ -1.1490701421574778,
+ 0.07567447228243221,
+ 0.5156781547232459,
+ 2.0400837894057298,
+ 1.0378794825742075,
+ -2.028683004683207,
+ 1.8209714516834563,
+ -1.0765107872762705,
+ -0.1350836247414883,
+ 1.193075557263802,
+ -1.9181791184214292,
+ 1.3017533176110823,
+ 2.327663444991182,
+ -0.6144259843071016,
+ -0.5552941482903998,
+ -0.22110223042572077,
+ 1.3053942556001397,
+ -1.9627788565182023,
+ 1.2921164350863863,
+ 2.520598559071481,
+ -0.4968643036672048,
+ -0.4643489555613597,
+ -0.3629608199326345,
+ 1.3709334501034893,
+ -1.9861161440283155,
+ 1.8843454024523598,
+ -1.2103454649881353,
+ 0.09129686285054685,
+ 1.1104085978127816,
+ 1.0084668238705516,
+ -1.1382518954198926,
+ -1.2408080735932954,
+ -3.6003658488174564,
+ -3.6394131815423614,
+ 1.898678079389522,
+ -1.2417597581686366,
+ 0.13203408223453314,
+ 1.0265356587185877,
+ -1.8383148278710566,
+ 2.003660150725807,
+ -1.0597976810017362,
+ -2.230709384456381,
+ -0.5275663159567029,
+ -0.06842064252759107,
+ 1.1009293939961322,
+ -1.8751336856434833,
+ 1.9822181531554173,
+ -0.988912682001385,
+ -1.9721392685901857,
+ -0.6457589098626169,
+ -0.15170937006355756,
+ 1.2167090195198993,
+ -1.9283129339043592,
+ 1.9631378955464684,
+ -1.3660486494006967,
+ 0.2920097769732748,
+ 0.8259610961081486,
+ -1.0848144950785248,
+ -1.6626283061801332,
+ 2.024312801366453,
+ 1.2424002831585437,
+ -1.2993986797526358,
+ 0.15104156587609818,
+ 0.9543011831653688,
+ -1.1801740045164828,
+ -2.015923861840081,
+ 2.2065199642446784,
+ 1.259529675614745,
+ -1.186468307164447,
+ 0.061900643257150806,
+ 1.0291345184943061,
+ -1.868146447049272,
+ 1.9941735616904734,
+ -1.5265210879873652,
+ 1.7151482239492264,
+ 2.198839103265552,
+ 3.4388421449657764,
+ 2.833044904698433,
+ -1.7977644313008179,
+ 0.9481820873835322,
+ 0.15490145350174858,
+ -1.312425789736537,
+ 1.9268361089076027,
+ -1.9699816748846914,
+ 0.9816418539579553,
+ 2.1311539050388992,
+ 0.9635352141023183,
+ 0.30699693751428797,
+ -1.377575467295615,
+ 1.9520029611288472,
+ -1.925778331316852,
+ 0.8412291730071018,
+ 1.7572287484408557,
+ 0.9839294159463409,
+ 0.353104634107488,
+ -1.4804651239430469,
+ 1.9827849905342356,
+ -1.8950458785310123,
+ 1.0868599995202939,
+ -0.005958316594579866,
+ -1.1304701922904061,
+ 1.188888327029426,
+ 1.8947460348438576,
+ -1.8223160193139174,
+ -1.1573341937163315,
+ 1.0135058539190327,
+ 0.13713508468589405,
+ -1.24623024202088,
+ 1.2307907100117925,
+ 2.157761362969526,
+ -1.8660386184913016,
+ -1.1114742025033517,
+ 0.887346938045239,
+ 0.22479819272523188,
+ -1.314747690594464,
+ 1.9464863887313721,
+ -1.950190916951012,
+ 1.2700354233475522,
+ -1.1513078975456397,
+ -1.2276129645988354,
+ -1.8819916691339986,
+ -1.9184252211983712,
+ -2.9239150610244162,
+ -2.900270351832022,
+ 1.9365775327186503,
+ -1.96434611585191,
+ 1.3047693929930448,
+ -0.20871201179783017,
+ -0.9549509716434356,
+ 1.758796632579442,
+ -1.3319197120208233,
+ -2.506116926308319,
+ 1.0397988693308973,
+ 0.7321617373146633,
+ -0.12133266733798903,
+ -1.0321711013929389,
+ 1.8250776432203486,
+ -0.27885434670397774,
+ -0.8603277693446381,
+ -1.8422175233529794,
+ -0.8986472063050138,
+ 1.9343942852551708,
+ -1.9621905090273446,
+ 1.30318283790039,
+ -0.20824445814026823,
+ -0.9541812306745283,
+ 1.756997050437578,
+ -1.3222648829865715,
+ -2.303873690432111,
+ 0.9540442911790278,
+ 0.7341356633411067,
+ -0.12096088121718396,
+ -1.0775982580315766,
+ 1.8231980297999009,
+ -1.3901759413452943,
+ -2.6497026705597033,
+ 0.9047824253661207,
+ 0.6635736435444356,
+ 0.02096679061441099,
+ -1.1526915846771637,
+ 1.8579667694282043,
+ -2.001865627634645,
+ 1.421534447211925,
+ -0.4320525944617278,
+ -0.03355782731327119,
+ 0.07798164234161986,
+ -4.511443060864213e-16,
+ -4.695077156850985e-16,
+ -1.9256764660234482e-16,
+ -1.6295458067294645e-17,
+ -3.910496345844438e-17,
+ 1.0844337830570192e-16,
+ 2.284362659141755e-16,
+ -1.5815693312013887e-16,
+ 1.9339482721489785e-16,
+ -5.012714512071347e-17,
+ -6.514047323855093e-17,
+ -1.549722877618097e-16,
+ -2.367390913126765e-16,
+ -1.3491315790739881e-16,
+ 4.7232012976777874e-17,
+ 3.1011001164613003e-16,
+ 9.827939652895659e-18,
+ 1.1547441351240266e-16,
+ 8.08982639076861e-17,
+ 9.024540482953531e-17,
+ 2.2664748783952955e-17,
+ 1.0554824616176632e-16,
+ 2.3057659574915643e-17,
+ 1.0381116687540496e-16,
+ -1.2407709188295415e-16,
+ 1.862810739469418e-16,
+ 3.9208361035013506e-17,
+ 5.223645568272369e-17,
+ 6.530590936106153e-17,
+ -1.8255876119045318e-16,
+ -2.657731308132878e-16,
+ 1.1249656330721175e-17,
+ -2.072087434445334e-16,
+ -3.259091613458929e-17,
+ -4.020097777007714e-17,
+ 3.5850007748048214e-16,
+ 4.350970022028925e-17,
+ 4.197941608706615e-17,
+ 1.990816939261999e-16,
+ -2.0401375832854734e-16,
+ -7.543887186483611e-17,
+ -1.9083056731598346e-16,
+ 2.4815418376590827e-17,
+ 1.4186147505284425e-17,
+ -1.0877425055072312e-17,
+ 1.9161638889790884e-16,
+ -4.4585035016608186e-17,
+ 6.329586047255767e-16,
+ -2.3853820914497936e-16,
+ 7.072394237328387e-17,
+ -1.6657349585286592e-16,
+ -1.5273890010791654e-16,
+ 6.27830084927748e-17,
+ 2.391275753314234e-16,
+ 2.427775097843136e-16,
+ -3.7223127564886245e-17,
+ 1.1563984963491327e-16,
+ 8.271806125530276e-17,
+ -2.6469779601696883e-17,
+ -3.184645358329156e-18,
+ -4.3344264097778644e-17,
+ 7.254373972090053e-17,
+ -1.3906974048547778e-16,
+ 3.9890785040369753e-17,
+ -7.618333441613384e-17,
+ -5.98051582875839e-17,
+ 2.0034314436034328e-16,
+ -9.239607442217318e-17,
+ 3.388958969629754e-16,
+ 1.163015941249557e-16,
+ 8.430521405563888e-17,
+ 4.768696231368204e-17,
+ 2.6433590449897688e-17,
+ -7.771361854935694e-17,
+ 1.5426918424113964e-16,
+ 9.413315370853454e-17,
+ 1.316044354571867e-16,
+ 1.0372844881414966e-16,
+ -3.341809674714232e-17,
+ 1.9775820494611507e-16,
+ 3.1432863277015048e-18,
+ -2.238350737568493e-16,
+ 9.735915809749135e-17,
+ -1.8645684982710933e-16,
+ 1.0072991909364493e-16,
+ -2.3574647457761286e-17,
+ 4.623939624171424e-17,
+ 1.3325879668229276e-16,
+ 7.279189390466644e-17,
+ 1.3582305658120714e-16,
+ 6.227015651299191e-16,
+ -7.136914325107522e-16,
+ -1.9719985803264177e-16,
+ 6.654668027989108e-17,
+ 2.185033130975768e-16,
+ 4.3850912222967373e-17,
+ 2.429015868761966e-16,
+ 2.957997870489627e-16,
+ -4.850587112010954e-16,
+ -1.800772193527941e-16,
+ 7.320548421094295e-18,
+ -5.743942173568224e-16,
+ 3.9208361035013506e-17,
+ 4.168990287267259e-17,
+ 5.46559589744413e-17,
+ -1.0141234309900118e-16,
+ 3.0605682664462024e-17,
+ -2.808278179617529e-17,
+ 1.696961026652536e-16,
+ -6.361535898415628e-17,
+ -7.312276614968765e-17,
+ -1.1530897738989206e-16,
+ -1.111523948118131e-16,
+ -3.308722450212111e-17,
+ 8.751570880811032e-17,
+ -7.701051502868686e-17,
+ 7.494256349730431e-17,
+ 5.761312966431838e-17,
+ -1.1208297300093523e-17,
+ 3.2756352257099896e-17,
+ 4.8803656140628625e-18,
+ -1.5236666883226767e-16,
+ 6.774609216809296e-16,
+ 1.7354249251362518e-16,
+ 1.4392942658422682e-16,
+ -1.8032537353656003e-17,
+ 2.5146290621612038e-17,
+ -3.304586547149345e-16,
+ 7.312276614968765e-17,
+ 1.820831323382352e-16,
+ 2.2499312661442353e-16,
+ 2.2813641294212503e-16,
+ 6.53803556161913e-16,
+ 5.1450634100798315e-17,
+ 2.0580253640319326e-16,
+ 6.485096002415737e-17,
+ -1.1055268886771214e-16,
+ -4.73478182625353e-16,
+ 7.676236084492096e-17,
+ 5.5007510734776334e-17,
+ -2.524968819818117e-16,
+ -2.686682629572234e-16,
+ 1.0203272855841595e-16,
+ 2.747066814288605e-16,
+ -4.172299009717471e-16,
+ -1.662426236078447e-16,
+ -6.849055471939069e-17,
+ 1.4579058296247113e-16,
+ 1.0678901708059586e-16,
+ 5.78716236057412e-17,
+ 1.213887548921568e-16,
+ -3.168101746078096e-17,
+ -3.89602068512476e-17,
+ 6.8573272780646e-17,
+ 9.697658706418557e-17,
+ -1.102838551686324e-16,
+ 3.3583532869652924e-17,
+ -2.1754850110144625e-17,
+ 2.646977960169688e-18,
+ 2.4794738861277e-17,
+ -5.895212828088859e-17,
+ 2.957170689877074e-17,
+ 5.724089838866952e-17,
+ 9.132073962585424e-17,
+ -1.9140959374477058e-16,
+ -3.5072457972248373e-17,
+ -5.047869688104851e-17,
+ -6.799424635185887e-17,
+ -7.328820227219825e-17,
+ 1.4039322946556262e-16,
+ 6.596765385110396e-17,
+ -2.8674215934150704e-16,
+ 5.885390058314792e-17,
+ 1.435158362779503e-16,
+ -7.610061635487853e-17,
+ -1.1307558973599888e-16,
+ 2.5270367713494992e-17,
+ -7.299868905780469e-17,
+ 2.5543337315637495e-16,
+ 6.435465165662554e-16
+ ],
+ [
+ -7.70627745586519,
+ -6.353841192734408,
+ 3.9772378141246487,
+ -2.08243722923804,
+ -0.4833181663684613,
+ 3.0091306254910464,
+ -4.411692105694508,
+ 4.387124235075463,
+ -2.1661811520109784,
+ -4.730944562572682,
+ -2.299382447631342,
+ -0.7612837678159846,
+ 3.1547560528193737,
+ -4.462835642543424,
+ 4.281944727115864,
+ -1.8476482105758596,
+ -3.8899505142300606,
+ -2.326991395076943,
+ -0.8611040979622526,
+ 3.380631679683171,
+ -4.5267667594933405,
+ 4.207078740143678,
+ -2.399523683238728,
+ -0.12059724465888673,
+ 2.6051984537543076,
+ -2.7128241157673734,
+ -4.344965594688933,
+ 4.040775810811592,
+ 2.580285515564635,
+ -2.2302517166525466,
+ -0.44193063007706224,
+ 2.8637748177731237,
+ -2.803707580481479,
+ -4.936999950983611,
+ 4.126498110850952,
+ 2.4721772459806854,
+ -1.9434822298685086,
+ -0.6407904186496011,
+ 3.014310356468398,
+ -4.452653774555825,
+ 4.33911194089424,
+ -2.819856041461594,
+ 2.4265733702359973,
+ 2.602305053272666,
+ 4.227101360920218,
+ 4.318451933667858,
+ 6.707437873117379,
+ 6.65731713843263,
+ -4.429745925787071,
+ 4.36708686459155,
+ -2.8918118065638687,
+ 0.33081294803618716,
+ 2.2178251695439912,
+ -4.051513263534066,
+ 3.002572907860481,
+ 5.6708831717142285,
+ -2.2219100581310873,
+ -1.5918182093617865,
+ 0.13479278128271246,
+ 2.391107198069352,
+ -4.192826706080371,
+ 2.9665320215914126,
+ 5.250137723508897,
+ -1.6964306933447666,
+ -1.418159400818148,
+ -0.18718214268282732,
+ 2.659753601365317,
+ -4.26848818987328,
+ 4.4649859567924715,
+ -3.1648615970804035,
+ 0.8378765388553759,
+ 1.0296800394771806,
+ 0.9711496542446959,
+ -5.23374493965694,
+ -2.8869038188479696,
+ 4.415848666703791,
+ -2.924212641639829,
+ 0.5194511187225052,
+ 1.2259593603399261,
+ 1.492100552743321,
+ -6.00063188493448,
+ -3.103306456128367,
+ 4.317128362296109,
+ -2.7670316585945547,
+ 0.32398678481518334,
+ 2.3553378397689397,
+ -4.1217697901387,
+ 4.555569793414101,
+ -6.277142266593674,
+ -7.782575968275365,
+ -7.813007009875094,
+ -6.304573503994436,
+ 4.562218614928514,
+ -4.096113484978364,
+ 2.3057432930104924,
+ 0.3814063231429373,
+ -2.81278351909302,
+ 4.336341686603312,
+ -3.0964903447886796,
+ -5.998776574825592,
+ 1.419053775859958,
+ 1.1894955022461644,
+ 0.5766301126774959,
+ -2.9683898909347914,
+ 4.4312040536703865,
+ -2.8770631891742826,
+ -5.2271843768326445,
+ 0.9062606098342354,
+ 0.9944224140123763,
+ 0.8944258737399424,
+ -3.2063285247347584,
+ 4.477958371878648,
+ -4.246989124274723,
+ 2.6126153081417494,
+ -0.12963526310958495,
+ -1.4510344125706558,
+ -1.7587210695520967,
+ 5.24645314790509,
+ 2.970661417297315,
+ -4.16905393708958,
+ 2.3417726542899793,
+ 0.1923348274997856,
+ -1.6236807651198224,
+ -2.2877608766881825,
+ 5.661916874573451,
+ 3.003838223407299,
+ -4.024117485016289,
+ 2.1672435793670317,
+ 0.38820957194218747,
+ -2.9363152384062876,
+ 4.3844536178420315,
+ -4.414309489149283,
+ 6.596170758961412,
+ 6.649097300647624,
+ 4.334114515869089,
+ 4.246168365028258,
+ 2.6967591050347988,
+ 2.5228496230948916,
+ -2.864824200134855,
+ 4.358912105915118,
+ -4.440896851642116,
+ 2.973553884855993,
+ -0.5859959240950906,
+ -1.994608662901873,
+ 2.4938277518775425,
+ 4.17593851516584,
+ -4.904100128358501,
+ -2.791690396884286,
+ 2.8214441122430256,
+ -0.386776245894652,
+ -2.2797165261868164,
+ 2.5995083585476446,
+ 4.389560688843859,
+ 1.5699455246663225,
+ 0.4084351596736064,
+ -2.8596414216078507,
+ 4.3551181498945875,
+ -4.439673213466727,
+ 2.9754445202619446,
+ -0.5902514749377895,
+ -1.9893186990629224,
+ 2.4867593276200406,
+ 3.834842455664226,
+ -4.5117442579174645,
+ -2.7816687644480225,
+ 2.8235608702186323,
+ -0.26981105222269114,
+ -2.274425580341125,
+ 2.701253359493667,
+ 4.637496997956703,
+ -4.9063870734132955,
+ -2.8131705723570892,
+ 2.5629110728734803,
+ -0.06974266719675427,
+ -2.4425819284917685,
+ 4.226879576038496,
+ -4.517740037458414,
+ 3.3457062541362497,
+ -3.7512046965595345,
+ -4.819409417728136,
+ 3.2131003714009803e-15,
+ 2.3127969926982654e-15,
+ 5.591740940858467e-16,
+ 2.3822801641527194e-17,
+ 1.1530897738989206e-16,
+ -7.423945997663422e-16,
+ -4.681842267050137e-16,
+ 2.5584696346265146e-16,
+ -4.746362354829273e-16,
+ -3.474158572722716e-18,
+ 3.5320612156014277e-16,
+ 8.718483656308911e-16,
+ 3.4435528900582537e-16,
+ 1.9554549680753572e-16,
+ -1.4541835168682227e-16,
+ -1.0202445675229043e-15,
+ 9.686284972995953e-17,
+ -8.321436962283457e-17,
+ -2.564259898914386e-16,
+ -1.0389388493666026e-16,
+ 1.470520333966145e-16,
+ -8.507552600107888e-17,
+ -2.071260253832781e-16,
+ -2.564259898914386e-16,
+ 1.4177875699158894e-16,
+ -8.514997225620866e-16,
+ -1.649398141430737e-16,
+ -4.971355481443696e-17,
+ 2.9414542582385664e-16,
+ 3.572593065616526e-16,
+ 3.2930060185736027e-16,
+ 1.466591226056518e-16,
+ -8.74826215836082e-16,
+ 8.71848365630891e-17,
+ -1.6725591985822217e-16,
+ -1.0309979154860937e-15,
+ 2.1448793283500005e-16,
+ 9.551868123456086e-17,
+ -2.6807889677077936e-16,
+ 5.43002713110435e-16,
+ 6.535554019781471e-16,
+ 6.394106135034904e-17,
+ 4.0052085259817595e-16,
+ -1.0397660299791557e-16,
+ -5.121902352928347e-16,
+ -2.689164171409893e-16,
+ -2.3285134243367726e-17,
+ -1.841634915788061e-15,
+ 8.837597664516547e-16,
+ -1.6336817097922294e-16,
+ -7.610061635487853e-17,
+ 8.156000839772852e-17,
+ 1.7337705639111458e-16,
+ -5.148372132530044e-16,
+ -1.6047303883528734e-16,
+ -7.812720885563345e-17,
+ -5.090469489651332e-16,
+ -2.6800651846718094e-17,
+ 1.7949819292400698e-16,
+ -2.6519410438450067e-16,
+ 8.175853174474125e-16,
+ -2.6767564622215976e-16,
+ 6.721669657605902e-16,
+ -4.1003342964253577e-16,
+ -3.0208635970436566e-16,
+ -1.048865016717239e-16,
+ -9.16350682586244e-16,
+ 4.680187905825031e-16,
+ -6.154223757394525e-16,
+ -2.875279809234324e-16,
+ 3.2425480012078685e-17,
+ 1.0257039595657542e-16,
+ -3.391440511467413e-18,
+ -1.4031051140430732e-16,
+ -9.333906032048364e-16,
+ -3.542814563564617e-16,
+ 7.692779696743157e-18,
+ 0.0,
+ -3.044024654195142e-17,
+ -3.393094872692519e-16,
+ 1.1547441351240266e-16,
+ 7.335437672120248e-16,
+ -2.835575139831779e-16,
+ 1.5828101021202182e-16,
+ -5.295610281564483e-16,
+ 2.7007446999856354e-16,
+ 2.1506695926378716e-17,
+ -2.4683069478582346e-16,
+ 4.539567201691016e-16,
+ -7.219632386362825e-16,
+ -7.706014586544005e-16,
+ 4.642137597647591e-16,
+ 5.518949046953801e-16,
+ -2.1639044824387202e-16,
+ -4.235991916884054e-16,
+ -3.4112928461686856e-16,
+ -3.8956070948184833e-16,
+ -5.932539353230314e-16,
+ 1.0448945497769846e-15,
+ 3.0010112623423844e-16,
+ 4.837352222210106e-16,
+ 4.377439801630622e-16,
+ 8.007108329513307e-17,
+ -3.755399980990745e-16,
+ -9.358721450424955e-16,
+ -6.706780406579947e-16,
+ 2.2416594600187047e-17,
+ -5.550381910230815e-17,
+ -5.298091823402142e-16,
+ 1.194448804526572e-16,
+ -1.345822856623776e-16,
+ 2.0050858048285388e-16,
+ 6.247695166613017e-16,
+ -3.1184709093249143e-17,
+ -8.503416697045123e-17,
+ -4.731473103803318e-16,
+ -5.206274775408756e-16,
+ -2.1854111783650989e-16,
+ -2.036518668105554e-16,
+ 4.3675136342799855e-17,
+ 3.742578681496173e-16,
+ 1.7916732067898577e-16,
+ -1.4009130854198075e-15,
+ -3.604853109506094e-16,
+ -2.425293556005477e-16,
+ 3.409224894637303e-16,
+ -4.135903062765138e-17,
+ 1.032155968343668e-15,
+ -1.1299287167474358e-16,
+ 7.279189390466644e-17,
+ -4.748016716054378e-17,
+ -6.063233890013692e-16,
+ -1.3916486625592136e-15,
+ -4.0291967637457973e-16,
+ -6.012775872647958e-16,
+ 8.566282423599154e-16,
+ 8.950094227823758e-17,
+ 9.400080481052606e-16,
+ -7.937625158058853e-16,
+ -1.555099551599692e-17,
+ 3.7967590116183965e-16,
+ 9.505959599459394e-16,
+ -2.4683069478582346e-16,
+ -5.216200942759393e-16,
+ -1.5586150692030421e-16,
+ 5.633099971486118e-16,
+ 7.394994676224067e-17,
+ -4.875402530387545e-16,
+ -1.8582612461003764e-16,
+ -9.264422860593909e-17,
+ -9.062797586284108e-17,
+ 5.079716141688143e-16,
+ 2.355810384551023e-16,
+ -2.624644083630757e-16,
+ -1.98357910890216e-16,
+ 3.103168067992683e-16,
+ -2.421157652942712e-16,
+ -3.844735487146472e-16,
+ 1.4872707413703438e-16,
+ 2.187892720202758e-17,
+ 2.8818972541347484e-16,
+ -4.348488480191266e-16,
+ 5.128519797828771e-18,
+ -2.870316725559006e-16,
+ -2.987776372541536e-16,
+ 1.3234889800848441e-17,
+ -2.488159282559507e-16,
+ 1.8830766644769673e-16,
+ -2.9497260643640967e-16,
+ -3.1920899838421333e-16,
+ -1.8743912680451605e-16,
+ 4.880365614062863e-16,
+ -1.0476242457984094e-16,
+ -1.563371357725222e-16,
+ 1.4194419311409955e-16,
+ 1.5244938689352298e-16,
+ -8.40415502353876e-17,
+ -1.4186147505284425e-17,
+ -2.8529045736647644e-15,
+ -1.0399314661016664e-15
+ ],
+ [
+ -5.172237931316787,
+ -4.283241770542648,
+ 2.597138475150872,
+ -1.1269877009931992,
+ -0.7056651884357549,
+ 2.3836886235712362,
+ -3.187400973111572,
+ 2.9597208680542733,
+ -1.3310981121034053,
+ -3.0113043415054586,
+ -2.054738930849416,
+ -0.778429279819958,
+ 2.4749384769096405,
+ -3.2075742962216345,
+ 2.8616453782742117,
+ -1.1031904438772748,
+ -2.435799897872603,
+ -2.007151365146962,
+ -0.8326245530437274,
+ 2.6144286554158342,
+ -3.2268686444585195,
+ 2.7946722215259374,
+ -1.3630727677509735,
+ -0.45391812359941835,
+ 2.1264219859528066,
+ -1.9979733754827051,
+ -3.2771333464784713,
+ 2.55525561747556,
+ 1.6834486838258462,
+ -1.2366848172165743,
+ -0.677078729334894,
+ 2.291812407538701,
+ -2.0479938290040662,
+ -3.6842055884034517,
+ 2.5679793169191005,
+ 1.5914171198692073,
+ -1.0243286037667445,
+ -0.8142424412673845,
+ 2.3869499139491253,
+ -3.2037054756821775,
+ 2.914294415693331,
+ -1.6804840687489826,
+ 1.0645628890102445,
+ 1.1995843775452457,
+ 2.830472902731061,
+ 2.9164045008962045,
+ 5.061239623265216,
+ 5.044369399977312,
+ -3.1948784045729175,
+ 2.940612104425261,
+ -1.7354511358225897,
+ -0.13735736399315843,
+ 1.8747946030028655,
+ -3.0073128191194995,
+ 2.090347185898423,
+ 4.020754957451668,
+ -1.130167942140212,
+ -0.9079966094285179,
+ -0.2752792540721064,
+ 1.987896304026447,
+ -3.082840720421481,
+ 2.0467808755246337,
+ 3.692878379753391,
+ -0.7857090208283161,
+ -0.7801120059469956,
+ -0.500308875232319,
+ 2.161498219262825,
+ -3.1211694840187265,
+ 3.037278531206494,
+ -1.9457531150293512,
+ 0.22251539118178207,
+ 0.9459914984328526,
+ 1.0953457091270695,
+ -3.6998801730040305,
+ -2.0807941389559343,
+ 2.9876057964103055,
+ -1.7602223200591958,
+ -0.004036110315857585,
+ 1.0909231650790623,
+ 1.5118405634499807,
+ -4.205671737327002,
+ -2.2126295424291755,
+ 2.8938773298731784,
+ -1.6403007946114554,
+ -0.1421693751455139,
+ 1.9645938851253875,
+ -3.045341090699625,
+ 3.141160177744985,
+ -4.211090086586052,
+ -5.244005813743875,
+ -5.655665627434014,
+ -4.582210602494719,
+ 3.2312041499775392,
+ -2.6980975903696462,
+ 1.2930067406011634,
+ 0.6351616932108006,
+ -2.2594170512040694,
+ 3.153982105976893,
+ -2.120377608143439,
+ -4.180648578645013,
+ 0.5227541956832663,
+ 0.5972266439644817,
+ 0.7700786682470511,
+ -2.3580980593021645,
+ 3.195544136417757,
+ -1.947614888853976,
+ -3.611209879992626,
+ 0.21676962566975425,
+ 0.46864440580863787,
+ 0.9881785149616769,
+ -2.5070459767456943,
+ 3.212891203000093,
+ -2.830263830858503,
+ 1.523331633855228,
+ 0.27888207132085785,
+ -1.2251531995235936,
+ -1.6290799088293542,
+ 3.643135721098067,
+ 2.1026918121757716,
+ -2.761245838759316,
+ 1.3198853151264371,
+ 0.5039029889319667,
+ -1.3392999790219275,
+ -2.0216204546159,
+ 3.8996819932959474,
+ 2.1075013820747426,
+ -2.6367167845082298,
+ 1.1899047106798297,
+ 0.6398734929568457,
+ -2.33780309681284,
+ 3.1757889081885815,
+ -2.986199888163163,
+ 4.218430525618822,
+ 4.273589132582305,
+ 3.1308386215605752,
+ 3.091460715357283,
+ 2.5038777571072326,
+ 2.3945343677501105,
+ -2.292856360387512,
+ 3.1653669593647655,
+ -3.0127376211244643,
+ 1.7985543725513313,
+ -0.043423459888382795,
+ -1.7281639257352894,
+ 1.8796460819694942,
+ 3.235093250612993,
+ -3.194616348909682,
+ -1.8631060133112678,
+ 1.6821539158000045,
+ 0.09766124804833405,
+ -1.9155426128329316,
+ 1.9370557922093836,
+ 3.123015168877786,
+ 1.5021266575499894,
+ 0.5240050638127102,
+ -2.289174873291225,
+ 3.162463915909146,
+ -3.0115186365337756,
+ 1.7995128023247566,
+ -0.046158339534052364,
+ -1.7244976477084102,
+ 1.872448393940508,
+ 2.971623719094331,
+ -2.9382148724338655,
+ -1.8578800226663947,
+ 1.6832752816960252,
+ 0.1804012935884869,
+ -1.9118505380410078,
+ 2.019299515673368,
+ 3.5502797557986283,
+ -3.1530657736850447,
+ -1.853865948537498,
+ 1.4857582098547955,
+ 0.3209099536743177,
+ -2.021307603357812,
+ 3.100172897221484,
+ -3.0947148938078253,
+ 2.086863199939341,
+ -2.1803031470361507,
+ -2.839637776503652,
+ 2.3023745169800972e-15,
+ 1.4869398691253224e-15,
+ 4.081309142336638e-16,
+ 2.69660879692287e-17,
+ 7.328820227219825e-17,
+ -5.375846800982127e-16,
+ -3.154866856277247e-16,
+ 2.23752355695594e-16,
+ -3.6751634615731015e-16,
+ 1.108422020821057e-17,
+ 2.5510250091135373e-16,
+ 5.542110104105285e-16,
+ 2.8601837630552314e-16,
+ 1.2788212270069808e-16,
+ -1.1994118882018901e-16,
+ -6.786189745385038e-16,
+ 8.685396431806789e-17,
+ -4.7273372007405525e-17,
+ -1.6427806965303127e-16,
+ -1.0149506116025648e-16,
+ 1.1063023705013898e-16,
+ -4.235164736271501e-17,
+ -1.3301064249852685e-16,
+ -1.7825742200517744e-16,
+ 8.768114493062092e-17,
+ -6.258448514576206e-16,
+ -1.168806205537428e-16,
+ -5.10370437945218e-17,
+ 1.8462671272183575e-16,
+ 2.513801881548651e-16,
+ 2.734245514794033e-16,
+ 8.41242682966429e-17,
+ -7.052541902627113e-16,
+ 7.716561139354056e-17,
+ -1.0234292128812334e-16,
+ -7.473163244110328e-16,
+ 1.7536228986124184e-16,
+ 6.869734987252895e-17,
+ -2.1083799838210982e-16,
+ 3.550579075330105e-16,
+ 5.019331956971772e-16,
+ 3.8546616544971083e-17,
+ 2.5013941723603557e-16,
+ -6.410649747285964e-17,
+ -3.458442141084208e-16,
+ -1.9178182502041944e-16,
+ 7.444625512977248e-19,
+ -1.301320539668423e-15,
+ 6.002022524684769e-16,
+ -1.255660169855496e-16,
+ -3.4245277359695346e-17,
+ 6.799424635185887e-17,
+ 1.0364573075289436e-16,
+ -3.814956985094563e-16,
+ -1.4409486270673742e-16,
+ -5.2980918234021416e-17,
+ -3.6213967217571547e-16,
+ -6.617444900424221e-18,
+ 1.2722037821065566e-16,
+ -1.7370792863613579e-16,
+ 5.651297944962285e-16,
+ -2.2135353191919018e-16,
+ 4.738090548703743e-16,
+ -2.7081893254986126e-16,
+ -1.9571093293004632e-16,
+ -3.788487205492866e-17,
+ -6.788671287222697e-16,
+ 3.158175578727459e-16,
+ -4.723201297677788e-16,
+ -2.2118809579667958e-16,
+ 5.806807900122254e-17,
+ 8.99972506457694e-17,
+ 1.6543612251060552e-18,
+ -1.038421861483757e-16,
+ -6.078123141039646e-16,
+ -2.5526793703386434e-16,
+ -3.3004506440865804e-17,
+ -2.6800651846718094e-17,
+ -3.639594695233322e-18,
+ -2.6283663963872454e-16,
+ 8.40415502353876e-17,
+ 5.247633806036408e-16,
+ -2.008394527278751e-16,
+ 1.4806532964699195e-16,
+ -3.935725354527305e-16,
+ 2.1142736456855385e-16,
+ 3.0688400725717327e-17,
+ -1.8197973476166606e-16,
+ 2.686682629572234e-16,
+ -4.632211430296955e-16,
+ -5.821697151148209e-16,
+ 2.928219368437718e-16,
+ 3.7421650911898967e-16,
+ -1.194448804526572e-16,
+ -2.9199475623121877e-16,
+ -2.517937784611416e-16,
+ -2.5311726744122647e-16,
+ -4.4270706383838036e-16,
+ 7.749027978396762e-16,
+ 2.5609511764641737e-16,
+ 3.427836458419746e-16,
+ 3.9803931076051687e-16,
+ 4.748016716054378e-17,
+ -2.7958704704292335e-16,
+ -7.19647132921134e-16,
+ -4.903526671214348e-16,
+ 1.5716431638507526e-17,
+ -3.759535884053511e-17,
+ -3.6425286014684703e-16,
+ 9.049355901330122e-17,
+ -1.0306670432410724e-16,
+ 1.1994118882018901e-16,
+ 4.035400618339945e-16,
+ 1.0233775140929488e-17,
+ -6.402377941160434e-17,
+ -3.6395946952333213e-16,
+ -3.569284343166314e-16,
+ -1.4893386929017263e-16,
+ -1.3888362484765335e-16,
+ 1.7701665108634792e-17,
+ 2.5142154718549276e-16,
+ 1.2779940463944278e-16,
+ -1.0248767789532013e-15,
+ -2.607273290767143e-16,
+ -1.9686898578762056e-16,
+ 2.325514894616268e-16,
+ -4.177262093392789e-17,
+ 7.146840492458158e-16,
+ -9.545664268861938e-17,
+ 3.374896899216353e-17,
+ -5.66618719598824e-17,
+ -4.4171444710331673e-16,
+ -9.724335281173393e-16,
+ -2.491054414703443e-16,
+ -4.414662929195508e-16,
+ 6.005744837441257e-16,
+ 7.998836523387776e-17,
+ 6.716706573930584e-16,
+ -5.70175596232802e-16,
+ -3.407984123718474e-17,
+ 3.4013666788180493e-16,
+ 6.503293975891903e-16,
+ -1.6345088904047824e-16,
+ -3.698014325994879e-16,
+ -1.4091021734840826e-16,
+ 3.9489602443281536e-16,
+ 5.922613185879678e-17,
+ -3.258678023152652e-16,
+ -8.949835733882335e-17,
+ -8.304893350032397e-17,
+ -9.567377759941455e-17,
+ 3.324852472156894e-16,
+ 1.6386447934675476e-16,
+ -1.9128551665288763e-16,
+ -1.436812724004609e-16,
+ 2.3533288427133637e-16,
+ -1.594804221002237e-16,
+ -3.158175578727459e-16,
+ 1.0041972636393755e-16,
+ 1.5054687148465104e-17,
+ 2.1142736456855385e-16,
+ -3.416255929844004e-16,
+ -5.128519797828771e-18,
+ -1.9918509150276904e-16,
+ -1.1266199942972237e-16,
+ 2.2457953630814698e-17,
+ -1.6345088904047824e-16,
+ 1.2093380555525265e-16,
+ -1.7965328928886067e-16,
+ -2.5051164851168443e-16,
+ -1.15433054481775e-16,
+ 3.4708498502725036e-16,
+ -6.638124415738047e-17,
+ -1.0699581223373412e-16,
+ 1.0852609636695722e-16,
+ 1.0699581223373412e-16,
+ -6.733250186181645e-17,
+ 2.646977960169688e-18,
+ -2.063769099410348e-15,
+ -7.403266482349597e-16
+ ],
+ [
+ 3.2531931756002366,
+ 2.524407450208595,
+ -2.2884263571869243,
+ 3.16174946747559,
+ -3.01120495768236,
+ 1.7996080269144006,
+ -0.04672222457554128,
+ -1.7237779937706295,
+ 1.9498551605437175,
+ 3.3799132741941222,
+ -3.3423325310926577,
+ -1.934214260480206,
+ 1.6834054394369482,
+ 0.09420096150682397,
+ -1.9111142811279789,
+ 1.934437075623249,
+ 3.1181028907886374,
+ -2.7731160316027177,
+ -1.7841219370309809,
+ 1.4859259680608392,
+ 0.3203022022253345,
+ -2.020563340555083,
+ 3.0994251359810603,
+ -3.0943436571769514,
+ 2.0868578958197745,
+ -0.3490901940253426,
+ -1.2092753302593242,
+ -3.0280758497495985,
+ -1.497128900768809,
+ 3.1357143617914263,
+ -3.021859931568156,
+ 1.9089052863545217,
+ -0.21814468262346795,
+ -1.0412542173997876,
+ -3.4421391370319587,
+ -1.6156973786334983,
+ 3.1823386358371653,
+ -2.9690642475490736,
+ 1.795616726385443,
+ 0.06488854411125283,
+ -1.8148335498537367,
+ 2.9792176761032,
+ -5.781238064878926,
+ -5.711433772342768,
+ -1.840446373748988,
+ -1.6713968870740383,
+ 1.88561514965783,
+ 2.048230210295648,
+ 9.168400646129002e-06,
+ -1.7630542637454703,
+ 2.9533256241404016,
+ -3.1703323855858723,
+ 2.3209464988046253,
+ -0.7187021104675689,
+ -0.6341827248046731,
+ -0.5841371832807116,
+ 3.9832250734375783,
+ 2.0245084882504054,
+ -3.1412036789694215,
+ 2.220811439483599,
+ -0.49615067594257484,
+ -0.7823683352103011,
+ -0.7900724226640649,
+ 3.6920020157706976,
+ 2.046738427523764,
+ -3.080577580460136,
+ 2.0508406210327346,
+ -0.35920279623918655,
+ -1.5432982207882664,
+ 2.840581748957957,
+ -3.2195644650226902,
+ 1.7148437812764596,
+ 3.3303001401849057,
+ 0.6313253900253505,
+ 0.011253048468376842,
+ -1.6633182941612983,
+ 2.9415135759026225,
+ -3.1933619168541454,
+ 1.7432525917040762,
+ 3.67408517293586,
+ 1.030278804136177,
+ 0.21566987026548184,
+ -1.8533088021283954,
+ 2.9968229606993715,
+ -3.169395214854534,
+ 2.241861772364545,
+ -0.6121307496011494,
+ -1.2182038967831104,
+ 2.6663553766730126,
+ 3.1120161446509567,
+ -0.17431658421760646,
+ -0.29637981611301245,
+ -0.49931762400029933,
+ 2.160066724698248,
+ -3.11988959786306,
+ 3.0364874562822157,
+ -1.9458107459196916,
+ 0.22325078765964293,
+ 0.9521587086180223,
+ 1.2300078329212498,
+ -4.2224474078773255,
+ -2.198239835257993,
+ 2.986861733627273,
+ -1.8315799925832816,
+ -0.0032035566841455997,
+ 1.074479801270809,
+ 1.3391599782620889,
+ -3.683935339454106,
+ -2.096112834393267,
+ 2.893218117121245,
+ -1.640499911417436,
+ -0.14128791429331425,
+ 1.9631906372431935,
+ -3.0440148591940317,
+ 3.140217194090042,
+ -1.506277052337338,
+ -3.041156034254906,
+ -1.1871299394711015,
+ -0.33599564479156857,
+ 2.071209047700588,
+ -3.1123627475392586,
+ 3.079548389714607,
+ -1.4188149454208783,
+ -3.133736609781711,
+ -1.5505810068223163,
+ -0.49721944286529207,
+ 2.2398397728062003,
+ -3.146980821119978,
+ 3.0348488743731323,
+ -1.8555327821383265,
+ 0.11452448723097682,
+ 1.6658657616376713,
+ -4.544810064957715,
+ -4.401605665865852,
+ 0.041625627385369485,
+ 0.2444488305726731,
+ 4.712968189434131,
+ 4.8486265885586874,
+ -1.911313415323504,
+ 0.18198860770314648,
+ 1.6037744183096445,
+ -2.918339196330485,
+ 3.1978702867720483,
+ -2.4420358391193244,
+ 0.6832119880314956,
+ 1.8828086146489345,
+ 2.8872501771483923,
+ 1.2678932024502358,
+ -2.974786076453293,
+ 3.175952521815238,
+ -2.288133702003768,
+ 0.5245849974824608,
+ 1.5024468491589722,
+ 3.1187289219230823,
+ 1.9347365501335667,
+ -1.9117924172215826,
+ 0.1805661940544872,
+ 1.6066140260046493,
+ -2.9217547474501693,
+ 3.200689072993377,
+ -2.44329639019407,
+ 0.665502406855277,
+ 1.7355634233808988,
+ 2.6631058161101526,
+ 1.2510089769232118,
+ -2.978206107457889,
+ 3.1622994809473215,
+ -2.2891741736367694,
+ 0.5993159982739463,
+ 1.7334934807169484,
+ 3.2515228737258295,
+ 1.4764503490211012,
+ -3.0585594186997405,
+ 3.1303617043501446,
+ -2.1894690654301114,
+ 0.4352514044105567,
+ 1.379815469194086,
+ -2.7505126316762634,
+ 4.428834143970784,
+ 5.365635717298784,
+ -6.408995386060857e-16,
+ -1.3312644778428425e-15,
+ 5.9557004103817985e-18,
+ -2.1940965747969056e-17,
+ -7.924390268258004e-17,
+ 9.45053849841834e-17,
+ 5.732361644992482e-17,
+ 4.552802091491864e-16,
+ 5.1698788284564224e-17,
+ 1.312735632121655e-16,
+ -8.672988722618494e-17,
+ -6.947489964832878e-16,
+ 3.6453849595211925e-16,
+ 2.378144261089954e-18,
+ -1.422233665708362e-16,
+ 4.8459342210653435e-16,
+ 9.156889380962015e-17,
+ -4.384057246531047e-18,
+ 1.800772193527941e-16,
+ -2.6147179162801205e-16,
+ -8.271806125530276e-19,
+ 5.889525961377557e-17,
+ 1.3838731648012153e-16,
+ -2.783462761240938e-17,
+ -1.1158666463340343e-16,
+ -5.153335216205362e-17,
+ 2.874452628621771e-17,
+ -1.1504014369081232e-16,
+ -4.327395374571164e-16,
+ -5.715818032741421e-17,
+ 2.8016607347171047e-16,
+ -1.9736529415515238e-16,
+ -7.543887186483611e-17,
+ 1.5168424482691145e-17,
+ 1.564198538337775e-16,
+ 7.562498750266054e-17,
+ 1.761894704737949e-17,
+ -9.223063829966257e-17,
+ -1.5776402232917618e-16,
+ -2.845501307182415e-16,
+ 7.130296880207099e-17,
+ 2.7379678275505213e-17,
+ -4.3939834138816825e-16,
+ 5.922613185879678e-17,
+ 2.777672496953067e-16,
+ 9.92616735063633e-18,
+ 1.3491315790739881e-16,
+ 2.0059129854410919e-16,
+ -2.534481396862477e-16,
+ -3.838118042246048e-17,
+ 2.7644376071522185e-16,
+ 1.833032237417509e-16,
+ -2.8715574964778356e-16,
+ -1.0819522412193601e-16,
+ -2.0811864211834174e-16,
+ 4.21034931789491e-17,
+ 1.0186729243590535e-16,
+ -5.5152267341973114e-17,
+ -1.2407709188295414e-17,
+ 2.216844041642114e-16,
+ -4.250260782450594e-16,
+ -2.129162896711493e-16,
+ -1.2970192004831474e-16,
+ 2.4434915294816438e-16,
+ 2.5808035111654463e-16,
+ 3.120952451162573e-16,
+ 8.652309207304668e-17,
+ -2.1253371863784352e-16,
+ -2.694954435697764e-16,
+ -7.419810094600658e-17,
+ 1.7900188455647516e-16,
+ 1.0323214044661784e-16,
+ 3.190849212923304e-17,
+ 1.617138097541169e-17,
+ 6.450354416688509e-16,
+ -2.8289576949313546e-17,
+ -3.6904663029053325e-16,
+ -2.553920141257473e-16,
+ 1.4953357523427358e-16,
+ -1.6576699475562672e-16,
+ -3.900156588187525e-17,
+ 5.662051292925474e-17,
+ 8.581998855237662e-18,
+ 2.8918234214853848e-16,
+ 2.311969812085712e-17,
+ 6.997947982198614e-17,
+ 6.369290716658313e-17,
+ -9.198248411589667e-17,
+ -4.0085172484319716e-16,
+ 5.33035186729171e-16,
+ -5.466009487750407e-16,
+ 4.433688083284228e-16,
+ -1.0546552810051102e-16,
+ 3.0258266807189747e-16,
+ 7.758954145747398e-17,
+ 3.6313228891077915e-17,
+ -2.5601239958516203e-17,
+ -1.6589107184750968e-16,
+ 2.6395333346567113e-16,
+ 3.80585799835648e-16,
+ -2.270610781458061e-16,
+ 8.902944932908237e-16,
+ -2.0208022364670464e-16,
+ -3.474158572722716e-17,
+ -1.207270104021144e-16,
+ 3.368279454315928e-16,
+ -3.987010552505593e-17,
+ 1.5757790669135177e-17,
+ 2.0249381395298115e-16,
+ 4.5743087874182424e-17,
+ 6.257621333963654e-17,
+ -2.192028623265523e-17,
+ -3.6702003778977833e-16,
+ 2.635397431593946e-16,
+ -5.616556359235058e-17,
+ -1.6543612251060552e-18,
+ 2.4616895029578104e-16,
+ 7.593518023236793e-17,
+ 1.4889251025954498e-16,
+ -1.6254099036666991e-16,
+ -2.1705219273391444e-16,
+ 1.6675961149069035e-16,
+ -2.3136241733108184e-16,
+ -6.973132563822023e-17,
+ -1.892589241521327e-16,
+ -1.8859717966209028e-17,
+ -5.641371777611649e-17,
+ -1.9951596374779025e-16,
+ -1.2490427249550718e-16,
+ -2.84136540411965e-16,
+ -3.727275840163942e-16,
+ 1.819797347616661e-17,
+ -1.373946997450579e-16,
+ 3.9556293880168624e-16,
+ -5.169878828456422e-18,
+ -4.59126598997558e-16,
+ 1.1415092453231782e-16,
+ -4.466775307786349e-17,
+ 1.862810739469418e-16,
+ -1.6274778551980817e-16,
+ 4.175607732167683e-16,
+ -2.5886617269847e-16,
+ 1.1911400820763599e-16,
+ 7.77549775799846e-18,
+ 1.2639319759810263e-16,
+ -1.98357910890216e-16,
+ 6.791152829060357e-17,
+ 2.4335653621310074e-16,
+ 2.8918234214853848e-16,
+ -1.1580528575742387e-16,
+ -2.3185872569861366e-16,
+ -3.3699338155410343e-16,
+ -7.543887186483611e-17,
+ 2.3243775212740075e-17,
+ 1.6254099036666991e-16,
+ 7.79204137024952e-17,
+ 1.9132687568351528e-16,
+ -5.2360532774606646e-17,
+ -1.8776999904953728e-17,
+ 2.8506711860108716e-17,
+ -1.348304398461435e-17,
+ -9.992341799640573e-17,
+ -1.110076382046163e-16,
+ 3.1794754795007e-17,
+ 8.676297445068706e-16,
+ 1.0232224177280951e-16,
+ 2.2069178742914776e-16,
+ -8.470329472543002e-17,
+ 3.3211301594004056e-16,
+ -2.0195614655482168e-16,
+ 1.8694281843698423e-16,
+ -1.952146245625145e-17,
+ 1.4692795630473154e-17,
+ -1.2424252800546476e-16,
+ 6.662939834114638e-17,
+ -1.7825742200517746e-17,
+ -9.504305238234287e-17,
+ 1.5275699468381613e-16,
+ 8.761497048161668e-16,
+ -4.171471829104918e-16
+ ],
+ [
+ 5.361012220920102,
+ 4.20437480136704,
+ -3.5999556166482973,
+ 4.569116049390536,
+ -4.059059496591689,
+ 2.103266127482233,
+ 0.459286657174544,
+ -2.8766780456870813,
+ 2.922363969372323,
+ 5.181418700250226,
+ -4.296365818726606,
+ -2.553831514954609,
+ 1.927145238691717,
+ 0.6579957271213996,
+ -3.120296676035167,
+ 2.8635151277360587,
+ 4.7237937383765205,
+ -3.514960367178135,
+ -2.336815570291687,
+ 1.6304006355704264,
+ 0.9746607200195513,
+ -3.2610381486583235,
+ 4.521522988090056,
+ -4.215728818522328,
+ 2.5438405707704512,
+ -0.15551540426588506,
+ -1.1378577938920627,
+ -4.618610443536499,
+ -2.3525831528000305,
+ 4.551060543296628,
+ -4.078534545170939,
+ 2.2699122399816574,
+ 0.0342668843077021,
+ -0.8379636453681633,
+ -5.194811192716613,
+ -2.5018488438651483,
+ 4.580792328670474,
+ -3.982780384280459,
+ 2.0971918839589896,
+ 0.6167170449372453,
+ -2.9954601896023436,
+ 4.4070452688192825,
+ -8.190840256107444,
+ -8.11626558240673,
+ -3.0171904682523425,
+ -2.7969290366294426,
+ 1.7822707225714642,
+ 2.0105136094385316,
+ 0.5253094235796844,
+ -2.927992273898222,
+ 4.380181057979478,
+ -4.3731379676238165,
+ 2.909781804114373,
+ -0.5020339536395255,
+ -1.2229959591956425,
+ -1.4710003381428092,
+ 5.708640572028442,
+ 2.956308440872039,
+ -4.310070725989303,
+ 2.752345538378599,
+ -0.18104481900099556,
+ -1.4212947415933581,
+ -1.7026245373029496,
+ 5.248215179295532,
+ 2.9661036435109556,
+ -4.189013659975893,
+ 2.488134867057017,
+ 0.015137405110439182,
+ -2.6391919981418934,
+ 4.258434085318078,
+ -4.500567407766092,
+ 2.2221221270559988,
+ 4.437427337737001,
+ 1.483670593619841,
+ 0.3577235005377686,
+ -2.7974335151649035,
+ 4.3678754899451295,
+ -4.426987839069223,
+ 2.237681603820605,
+ 4.845611162550033,
+ 2.1199869888822245,
+ 0.662826900972001,
+ -3.0454488520524845,
+ 4.424846751047683,
+ -4.371045506134884,
+ 2.785363763508693,
+ -0.3480185656581884,
+ -2.2055230198318987,
+ 4.3893274746401385,
+ 5.1770723327936405,
+ 0.6882029233099682,
+ 0.34246459668860624,
+ -1.2235814373959397,
+ 3.4385860398454824,
+ -4.538371210247003,
+ 4.105712184207116,
+ -2.3264089560502836,
+ -0.20903205104149275,
+ 1.6688130315512713,
+ 2.392801813542798,
+ -5.940447325739463,
+ -3.1460900738069992,
+ 4.014721243969067,
+ -2.1518005097345387,
+ -0.5298482664064046,
+ 1.8100081967835562,
+ 2.4505178670005128,
+ -5.1434791467937755,
+ -2.98334793041271,
+ 3.849021565018649,
+ -1.8623747936237263,
+ -0.7241565422148136,
+ 3.187345288210786,
+ -4.471041895686004,
+ 4.308111876299808,
+ -1.8870389769543308,
+ -3.9487599314659634,
+ -2.2449748848415734,
+ -0.8115847653704993,
+ 3.3257687626442203,
+ -4.532355731916733,
+ 4.186995850111497,
+ -1.747003492450119,
+ -4.012582154120297,
+ -2.791088662028656,
+ -1.0359150921767688,
+ 3.539104486288299,
+ -4.558982218667583,
+ 4.10265971275166,
+ -2.1883464003189355,
+ -0.3633683466038359,
+ 2.8007408291823253,
+ -6.995057367003279,
+ -6.805577705770878,
+ -0.4570530967404183,
+ -0.1693609458125679,
+ 6.12291472903096,
+ 6.328992593489338,
+ -2.2730762028910667,
+ -0.26811459299528223,
+ 2.71901227375905,
+ -4.342044945832152,
+ 4.441043849588368,
+ -3.10177756164877,
+ 0.6382360245945841,
+ 2.0786336930227307,
+ 4.528480649182803,
+ 2.0642850866889755,
+ -4.401167754567054,
+ 4.387456571389897,
+ -2.8575821671994976,
+ 0.4088579768294507,
+ 1.569685119771624,
+ 4.383678527144074,
+ 2.5963895606814154,
+ -2.27434968462575,
+ -0.26960950385526866,
+ 2.7227461880433776,
+ -4.346932812262491,
+ 4.445401327180297,
+ -3.1041331927660747,
+ 0.6148651678947485,
+ 1.917799322665967,
+ 4.1755348086687585,
+ 2.0400144448669755,
+ -4.406090093354022,
+ 4.35492675575484,
+ -2.859636570851477,
+ 0.49895137961339425,
+ 1.8197866940669298,
+ 5.026708751393298,
+ 2.3519323490261956,
+ -4.485028547490618,
+ 4.287544692399491,
+ -2.703397092627498,
+ 0.09375729274987728,
+ 2.4219627486897273,
+ -4.156746464764673,
+ 6.499140193849453,
+ 7.906437440420124,
+ -1.3129010682441653e-15,
+ -2.0702676370977177e-15,
+ -6.145951951268996e-17,
+ -4.078000419886426e-17,
+ -1.0091603473146936e-16,
+ 2.1713491079516974e-16,
+ 1.34654663965976e-16,
+ 5.80143122614066e-16,
+ 1.2970192004831474e-16,
+ 1.7958091098526228e-16,
+ -1.5261482301603358e-16,
+ -1.0242977525244142e-15,
+ 4.541635153222398e-16,
+ -2.762783245927112e-17,
+ -1.7223968304885416e-16,
+ 7.065363202121685e-16,
+ 1.0273583207908602e-16,
+ 1.0091603473146936e-17,
+ 2.747066814288605e-16,
+ -3.1920899838421333e-16,
+ -2.431911000905901e-17,
+ 8.772250396124857e-17,
+ 2.1440521477374475e-16,
+ -8.147729033647323e-18,
+ -1.621274000603934e-16,
+ 3.680953725860973e-17,
+ 5.638269850314575e-17,
+ -1.5381423490423547e-16,
+ -6.067783383382734e-16,
+ -1.0662358095808525e-16,
+ 3.6846760386174613e-16,
+ -2.840538223507097e-16,
+ 6.170767369645586e-17,
+ 1.1146258754152046e-17,
+ 2.4939495468473784e-16,
+ 1.947183161949827e-16,
+ -1.703992061859237e-17,
+ -1.3921449709267456e-16,
+ -1.7536228986124184e-16,
+ -4.261634515873198e-16,
+ -3.867069363685404e-18,
+ 4.7314731038033177e-17,
+ -6.49171344731616e-16,
+ 9.181704799338606e-17,
+ 4.2963761016004253e-16,
+ -2.150669592637872e-18,
+ 1.8661194619196302e-16,
+ 4.566450571598989e-16,
+ -4.526332311890167e-16,
+ -3.937379715752411e-17,
+ 4.043258834159199e-16,
+ 2.4286022784556893e-16,
+ -4.082963503561744e-16,
+ -1.048865016717239e-16,
+ -2.4021324988539924e-16,
+ 7.82512859475164e-17,
+ 1.8987930961154748e-16,
+ -6.187310981896647e-17,
+ -5.227781471335134e-17,
+ 3.1631386624027773e-16,
+ -6.801906177023546e-16,
+ -2.3094882702480533e-16,
+ -2.666830294870961e-16,
+ 3.7421650911898967e-16,
+ 3.775252315692018e-16,
+ 4.310851762320103e-16,
+ 2.302870825347629e-16,
+ -3.338500952264019e-16,
+ -2.928219368437718e-16,
+ -5.864710543000966e-17,
+ 2.2242886671550914e-16,
+ 1.1415092453231782e-16,
+ 4.2113832936606015e-17,
+ 7.79204137024952e-17,
+ 9.414556141772284e-16,
+ 1.766030607800714e-17,
+ -5.064206505202774e-16,
+ -3.4121200267812387e-16,
+ 1.887626157846009e-16,
+ -1.6998561587964716e-16,
+ -6.832511859688009e-17,
+ 2.522900868286734e-18,
+ 3.623051082982261e-17,
+ 3.6693731972852303e-16,
+ 1.0044040587925137e-16,
+ 4.7811039405564993e-17,
+ 9.239607442217318e-17,
+ -7.849944013128231e-17,
+ -4.860513279361591e-16,
+ 7.394994676224066e-16,
+ -6.610827455523796e-16,
+ 5.697620059265255e-16,
+ -2.0795320599583113e-16,
+ 4.2393006393342663e-16,
+ 1.3549218433618593e-16,
+ 9.744187615874665e-17,
+ 4.756288522179908e-18,
+ -1.6862076786893467e-16,
+ 2.649873092313624e-16,
+ 4.847278389560742e-16,
+ -3.7008060605622453e-16,
+ 1.168227179108641e-15,
+ -2.9044379258268184e-16,
+ 3.5403330217269584e-17,
+ 4.518474096070914e-18,
+ 5.293955920339377e-16,
+ -5.997059441009451e-17,
+ 2.9695783990653694e-17,
+ 2.845501307182415e-16,
+ 5.0540735426989985e-17,
+ 1.1191753687842464e-16,
+ -4.706657685426727e-17,
+ -5.522257769404013e-16,
+ 3.4427257094457007e-16,
+ -7.494256349730431e-17,
+ 8.735027268559971e-17,
+ 4.0018998035315474e-16,
+ 1.4111701250154652e-16,
+ 1.9322939109238724e-16,
+ -2.072914615057887e-16,
+ -3.4973196298742005e-16,
+ 2.1539783150880838e-16,
+ -1.6361632516298885e-16,
+ -5.655330450448481e-17,
+ -2.269783600845508e-16,
+ -7.543887186483611e-17,
+ -7.113753267956038e-17,
+ -3.5618397176533367e-16,
+ -1.3234889800848443e-16,
+ -4.01348033210729e-16,
+ -5.082197683525802e-16,
+ 8.553047533798305e-17,
+ -3.5734202462290796e-17,
+ 5.549115289917844e-16,
+ 6.660871882583255e-17,
+ -7.481021459929581e-16,
+ 1.5096046179092753e-16,
+ -8.867376166568455e-17,
+ 3.666064474835018e-16,
+ -2.1837568171399928e-16,
+ 5.241016361135983e-16,
+ -4.336494361309247e-16,
+ 1.709782326147108e-16,
+ 6.981404369947554e-17,
+ 2.3491929396505986e-16,
+ -3.249992626720845e-16,
+ 8.213903482651564e-17,
+ 3.416255929844004e-16,
+ 3.927453548401775e-16,
+ -1.4459117107426924e-16,
+ -3.069667253184285e-16,
+ -5.166570106006211e-16,
+ -1.311908451509102e-16,
+ 4.532949756790591e-17,
+ 1.9405657170494027e-16,
+ 5.186422440707483e-17,
+ 2.663521572420749e-16,
+ -1.3069453678337836e-17,
+ -2.961306592939839e-17,
+ 2.845501307182415e-17,
+ -3.995282358631123e-17,
+ -4.79764755280756e-17,
+ -1.410963329862327e-16,
+ 7.16338410470922e-17,
+ 1.1481887287695439e-15,
+ 1.315217173959314e-16,
+ 3.3153398951125344e-16,
+ -1.3859411163325979e-16,
+ 4.918415922240303e-16,
+ -2.447627432544409e-16,
+ 2.5791491499403403e-16,
+ -5.889525961377557e-17,
+ 3.313892329040567e-17,
+ -1.531938494448207e-16,
+ 7.94506978357183e-17,
+ -3.379032802279118e-17,
+ -1.0918784085699964e-16,
+ 2.1083799838210982e-16,
+ 1.5451733842490555e-15,
+ -4.622698853252595e-16
+ ],
+ [
+ -2.0007908324586787,
+ -1.5026208247089101,
+ 1.5790265667064705,
+ -2.6879974741287875,
+ 2.848010526283247,
+ -2.0993099617871858,
+ 0.611521315282083,
+ 0.998356763417086,
+ -1.5267924743756716,
+ -2.516210840674473,
+ 3.4201959317683954,
+ 1.9032285504396518,
+ -2.0095948680680253,
+ 0.48802924670271375,
+ 1.187825012525721,
+ -1.5549732582331246,
+ -2.3846759832735147,
+ 2.8937074655960546,
+ 1.7767610722740859,
+ -1.8567640494917759,
+ 0.28504151724554555,
+ 1.298831961503006,
+ -2.5875594477500337,
+ 2.8769607274952365,
+ -2.3129058008972816,
+ 0.687485106857789,
+ 1.706668102706108,
+ 2.280662264941477,
+ 1.049799915476705,
+ -2.6430287680560767,
+ 2.8533059394290468,
+ -2.1807659592731605,
+ 0.5776621529201773,
+ 1.6292518390194666,
+ 2.654867322535991,
+ 1.1746728080429174,
+ -2.7256866294719178,
+ 2.8297593536443504,
+ -2.096294300693068,
+ 0.5130701423012449,
+ 1.0895438253610314,
+ -2.4194437345048776,
+ 5.060566010772359,
+ 4.9720595174247855,
+ 1.1495994675194088,
+ 0.9799437650550169,
+ -2.652205943895889,
+ -2.7969679340917706,
+ 0.5704412739793304,
+ 1.0375822889803052,
+ -2.385721137635293,
+ 2.8874677720746975,
+ -2.479226007929403,
+ 1.1893380833599183,
+ 0.18963641575099277,
+ -0.2133803773172957,
+ -3.4132379027250517,
+ -1.673033104887577,
+ 2.8874598647070933,
+ -2.408172782872528,
+ 1.001857142790658,
+ 0.33247417556153724,
+ 0.03463251069253226,
+ -3.212183685395946,
+ -1.7169358761008562,
+ 2.8730640340174163,
+ -2.2866769552075175,
+ 0.8834716215484419,
+ 0.8198527023593004,
+ -2.244276569305408,
+ 2.865604431515908,
+ -1.7347551096242513,
+ -3.231591750039828,
+ 0.11102082835461766,
+ 0.375108697876418,
+ 0.9391400188041337,
+ -2.3694920151337118,
+ 2.88466281115773,
+ -1.7874301773510075,
+ -3.62137842266042,
+ -0.1581441615641271,
+ 0.21361399006161283,
+ 1.1283522563925266,
+ -2.4429348131760347,
+ 2.8875136746733308,
+ -2.423903147400119,
+ 1.0994237153446107,
+ 0.504961392259305,
+ -1.6450740756230884,
+ -1.8590995468121707,
+ 1.2058900401002137,
+ 1.1181096552934884,
+ -0.16550396595810388,
+ -1.4860517864601188,
+ 2.576702168517421,
+ -2.9003653161602414,
+ 2.1667853448895746,
+ -0.808340061353559,
+ -0.47326819627801336,
+ -0.3444209646085525,
+ 3.7432749137832957,
+ 1.8885783708639423,
+ -2.879284781381145,
+ 2.0821072806163623,
+ -0.6091570786869593,
+ -0.6165037697173845,
+ -0.5491383917530263,
+ 3.310191296080745,
+ 1.8195098976059285,
+ -2.8354440037821,
+ 1.9349793443015868,
+ -0.4877250950096884,
+ -1.2824971734997541,
+ 2.465010138420038,
+ -2.9287209299253836,
+ 1.5967623850508084,
+ 3.0674552875162355,
+ 0.40494693457704195,
+ -0.08383271597036494,
+ -1.3925782329385092,
+ 2.565780007308153,
+ -2.9142855409237822,
+ 1.5383618891719344,
+ 3.224355653676404,
+ 0.6879703672695096,
+ 0.06189850751822668,
+ -1.5699309908118195,
+ 2.6204033023854194,
+ -2.899756295221053,
+ 2.099234114656532,
+ -0.7135313406652709,
+ -0.983325803544363,
+ 3.3525702284929664,
+ 3.2121413379240638,
+ -0.6100553967397757,
+ -0.7852598540555011,
+ -4.749885715023173,
+ -4.854212430481424,
+ 2.1418484413664283,
+ -0.7729586091287586,
+ -0.9218307589118501,
+ 2.299767678793142,
+ -2.9214925987920153,
+ 2.5197304415407746,
+ -0.969442392598915,
+ -2.3114399974919904,
+ -2.034184978173391,
+ -0.8080505009863436,
+ 2.3735993259338715,
+ -2.926754423877828,
+ 2.415395262695723,
+ -0.8358089854724196,
+ -1.9447573609600963,
+ -2.062712276184309,
+ -0.9102502288112998,
+ 2.482400670236996,
+ -0.7711395955482625,
+ -0.9246431982361388,
+ 2.3027213856132827,
+ -2.923573784443562,
+ 2.52021008761357,
+ -0.9520143175130467,
+ -2.1287472895018262,
+ -1.8778407834279052,
+ -0.7936668241399236,
+ 2.376526291459552,
+ -2.9296772399338766,
+ 2.4156702485779813,
+ -0.9190157319676733,
+ -2.234028858931373,
+ -2.3731975551599254,
+ -0.9994414352689223,
+ 2.485247255566509,
+ -2.9275822691956277,
+ 2.344328767804811,
+ -0.9911980537893308,
+ -0.7030058089542248,
+ 2.0937746007705504,
+ -3.624053257651827,
+ -4.353940881875246,
+ 1.0058516248644817e-15,
+ 1.14746494573356e-15,
+ -1.0257039595657542e-17,
+ -1.6233419521353168e-17,
+ -4.6218716726400415e-17,
+ -1.5534451903745857e-16,
+ -1.5716431638507524e-18,
+ -2.0224565976921524e-16,
+ 1.3317607862103746e-16,
+ -1.199308490625321e-16,
+ 3.970466940254532e-17,
+ 3.7992405534560556e-16,
+ -3.0109374296930207e-16,
+ -1.576813042679209e-17,
+ 4.1524466750161983e-17,
+ 1.9025154088719633e-17,
+ 1.9588670881021384e-17,
+ 2.9695783990653694e-17,
+ -5.997059441009451e-17,
+ 8.801201717564213e-17,
+ 8.573727049112131e-17,
+ 3.639594695233322e-17,
+ -1.2705494208814505e-16,
+ 5.935020895067973e-18,
+ -7.626605247738914e-17,
+ -1.0389388493666026e-16,
+ -2.6635215724207488e-17,
+ 1.1938284190671572e-16,
+ 2.6381891661613126e-16,
+ -1.0141234309900118e-16,
+ -4.2665975995485163e-16,
+ 1.6047303883528734e-16,
+ -5.111976185577711e-16,
+ -5.045801736573468e-17,
+ -2.4070955825293105e-16,
+ 1.3698110943878138e-16,
+ 1.0836066024444661e-16,
+ 9.508441141297052e-17,
+ 1.8106983608785773e-16,
+ 2.206504283985201e-17,
+ 1.3102540902839958e-16,
+ -2.3789714417025076e-16,
+ 3.4377626257703825e-16,
+ -6.319659879905131e-17,
+ -2.720597034686908e-16,
+ 2.9832268791724943e-16,
+ -1.2899881652764467e-16,
+ 9.802090258753377e-17,
+ 2.2036091518412655e-16,
+ 7.854079916190997e-17,
+ -3.808339540194139e-16,
+ -2.0522350997440614e-16,
+ 2.1390890640621293e-16,
+ 1.9935052762527964e-16,
+ 2.2896359355467806e-16,
+ -1.308806524212028e-16,
+ -4.776968037493734e-17,
+ 1.6543612251060553e-17,
+ 1.1018045759206327e-16,
+ -1.1231044766938733e-16,
+ 3.988664913730699e-16,
+ 2.3161057151484775e-18,
+ 1.7056464230843428e-16,
+ -1.7966362904651759e-16,
+ -2.860804148514646e-16,
+ -2.3136241733108184e-16,
+ -6.253485430900889e-17,
+ 1.1144190802620665e-16,
+ 2.765678378071048e-16,
+ 3.7553999809907456e-17,
+ 4.0366413892587744e-17,
+ 8.99972506457694e-17,
+ 2.086563095165012e-17,
+ -2.846328487794968e-16,
+ -2.385588886602932e-16,
+ -7.295733002717704e-17,
+ 3.3806871635042236e-16,
+ 2.0332099456553418e-16,
+ -4.706657685426727e-17,
+ 1.1919931120830552e-16,
+ 5.5007510734776334e-17,
+ -3.677851798563899e-17,
+ 4.284795573024683e-17,
+ -2.7346591051003095e-16,
+ -7.394994676224067e-17,
+ 5.211237859084074e-17,
+ -2.6262984448558626e-17,
+ 9.357480679506126e-18,
+ 6.021874859386041e-17,
+ -3.802962866212544e-17,
+ 5.91765010220436e-16,
+ -6.547961728969766e-16,
+ 5.67445900211377e-17,
+ -9.446402595355575e-17,
+ 1.0724396641750003e-16,
+ -9.636654136242771e-17,
+ 5.959836313444564e-17,
+ 2.3781442610899546e-16,
+ -3.628014166657579e-16,
+ -2.776018135727961e-16,
+ 2.4418371682565377e-16,
+ -8.87399361146888e-16,
+ 1.344995676011223e-16,
+ -2.0427225226997016e-16,
+ -3.665237294222465e-16,
+ -3.685916809536291e-16,
+ 5.868846446063731e-17,
+ -6.849055471939069e-17,
+ 1.4401214464548212e-16,
+ -6.849055471939069e-17,
+ -1.5468277454741615e-16,
+ 2.0183206946293872e-17,
+ 2.0195614655482168e-16,
+ -1.0795740969582701e-16,
+ 9.661469554619362e-17,
+ -3.2888701155108375e-16,
+ -2.071260253832781e-16,
+ -9.628382330117241e-17,
+ 1.2221593550470982e-17,
+ 3.8546616544971083e-17,
+ 2.506357256035674e-16,
+ -1.4409486270673742e-16,
+ 4.082963503561744e-16,
+ 1.0116418891523527e-16,
+ 1.4872707413703438e-16,
+ 1.9852334701272662e-16,
+ 4.9630836753181654e-17,
+ -3.764705762881967e-17,
+ 4.8079873104644726e-18,
+ 3.412533617087515e-16,
+ 3.6792993646358666e-16,
+ 9.942710962887391e-17,
+ 1.9554549680753572e-16,
+ -1.3404461826421813e-16,
+ 3.9787387463800625e-17,
+ 5.515640324503589e-16,
+ -1.7807647624618146e-16,
+ -4.883674336513075e-16,
+ -2.903403950061127e-16,
+ 1.343341314786117e-16,
+ -4.0382957504838806e-16,
+ 5.864710543000966e-17,
+ 5.136791603954301e-17,
+ 1.1737692892127463e-16,
+ -6.239423360487487e-16,
+ 1.1683926152311514e-17,
+ -7.878895334567587e-17,
+ 4.475047113911879e-17,
+ -2.6593856693579837e-17,
+ 8.979045549263114e-17,
+ 2.4716156703084467e-16,
+ 2.901749588836021e-16,
+ 4.375785440405516e-17,
+ 2.113032874766709e-16,
+ 2.2445545921626406e-16,
+ -3.722312756488624e-19,
+ -2.4980854499101433e-17,
+ -8.193223967337738e-17,
+ 2.9447629806887785e-17,
+ 7.17165591083475e-17,
+ -3.192917164454687e-17,
+ -1.5269754107728888e-16,
+ 6.493367808541267e-17,
+ -8.54063982461001e-18,
+ -4.853895834461166e-16,
+ -7.684507890617626e-17,
+ -2.280950539114974e-16,
+ 4.807987310464473e-17,
+ -3.5850007748048214e-16,
+ 1.5886003664080894e-16,
+ 1.0655120265448686e-17,
+ -2.143638557431171e-16,
+ -8.271806125530276e-19,
+ 1.0654086289682995e-16,
+ -8.892191584945046e-17,
+ -1.020740875890436e-16,
+ -3.0631532058604306e-17,
+ -1.41654679899706e-16,
+ -9.022886121728426e-16,
+ 4.214071630651399e-16
+ ],
+ [
+ -0.9281120663562545,
+ -0.8931810824686642,
+ -0.036186754921160295,
+ 1.5780451051044768,
+ -2.6853952559536185,
+ 2.829350569224125,
+ -2.099926360500748,
+ 0.6110742358270298,
+ 0.57830976128518,
+ 0.550950687614361,
+ -3.772642683426171,
+ -1.9198492382285008,
+ 2.8034662451653625,
+ -2.0084292593894295,
+ 0.41151195702762117,
+ 0.713165418464912,
+ 0.7277879612826259,
+ -3.324063141990674,
+ -1.8443761864525035,
+ 2.746961291638344,
+ -1.855678424987579,
+ 0.2872364842020377,
+ 1.3808780676669092,
+ -2.5850229703701126,
+ 2.875312877377084,
+ -1.5378613853238328,
+ -2.990051500307095,
+ -0.5850663829781988,
+ -0.019823954504668586,
+ 1.4895311509132976,
+ -2.673984163344677,
+ 2.851627864818172,
+ -1.473769203606826,
+ -3.1277311456721018,
+ -0.8810200690598826,
+ -0.16593626886890897,
+ 1.6590445384751422,
+ -2.724114319424579,
+ 2.8285010241505244,
+ -2.0283728437646906,
+ 0.5150289640840845,
+ 1.0890137107578959,
+ -3.5632576008896177,
+ -3.4253936857358283,
+ 0.46370110943692505,
+ 0.6429741105112952,
+ 4.63101958826347,
+ 4.739645925497937,
+ -2.0703582901409834,
+ 0.569935567722317,
+ 1.0347414247393876,
+ -2.43777542875238,
+ 2.8858216432442276,
+ -2.4779105031490216,
+ 0.8749407048189656,
+ 2.149815609669915,
+ 2.2005937006985956,
+ 0.9045148521264141,
+ -2.5039014661079513,
+ 2.8857524191863098,
+ -2.361971314728491,
+ 0.738166187773382,
+ 1.7882819699136205,
+ 2.2076317551728724,
+ 1.0028631691915184,
+ -2.6046353264351954,
+ 2.8713257974192916,
+ -2.286914009262181,
+ 0.7933680513549529,
+ 0.8170191260861184,
+ -2.2431058670435746,
+ 1.8662032487234064,
+ 3.1484552423001877,
+ -1.9093800910426129,
+ -1.3263302481411443,
+ 0.6742942566861089,
+ 1.0110760421203526,
+ -2.3682330124409665,
+ 1.9800274939916847,
+ 3.668081101341195,
+ -1.9407840145231983,
+ -1.260757987104159,
+ 0.4737096079283146,
+ 1.1276771306541589,
+ -2.4401610005189958,
+ 2.88536720475802,
+ -2.4240734917009923,
+ 1.0987649603005467,
+ -0.7426533726993897,
+ -1.0778354824928886,
+ -3.7555083463348247,
+ -3.1566555098591995,
+ 1.6845063820762691,
+ -0.1653232960402496,
+ -1.4833185375641378,
+ 2.616299138795272,
+ -2.899504848667755,
+ 2.1656662342884228,
+ -0.660676978346761,
+ -1.7780497192335447,
+ -2.765896187804543,
+ -1.2314462502707733,
+ 2.6673209743195208,
+ -2.877969926725752,
+ 2.026938760913268,
+ -0.4600280423913036,
+ -1.3326483750731626,
+ -2.5666382824334737,
+ -1.2389108710715626,
+ 2.7375000153104616,
+ -2.834104076183174,
+ 1.9357103478555968,
+ -0.3946596407679724,
+ -1.2798922188875856,
+ 2.463976864822319,
+ -1.8920834397203807,
+ -3.278446679909905,
+ 1.4647679545450143,
+ 1.1018652380920668,
+ -0.27012497947068687,
+ -1.459646494241274,
+ 2.5646787941000726,
+ -1.9010557973563236,
+ -3.5982010999064404,
+ 1.3623765735527824,
+ 0.9865374171569811,
+ -0.06733631913982668,
+ -1.5693713434421857,
+ 2.618120106810359,
+ -2.883447703390155,
+ 2.09976737213043,
+ -0.713161027073979,
+ -0.6317629704449288,
+ -0.49116980291285145,
+ 2.0462587377292523,
+ 2.1719256646298146,
+ 5.067386885380587,
+ 5.095690767545329,
+ -2.8953776644883966,
+ 2.142625940053898,
+ -0.7756702304943615,
+ -1.0110406952730284,
+ 2.29956975336488,
+ -2.9231873110100333,
+ 1.7073618146138987,
+ 3.4577527976134834,
+ 0.07154651970239158,
+ -0.2637719135283782,
+ -1.1262203782226559,
+ 2.374897721919834,
+ -2.9294062984247398,
+ 1.6276828064638198,
+ 3.106520502316858,
+ 0.301864509292633,
+ -0.14264539104881874,
+ -1.3130387904335947,
+ 2.483701856651578,
+ -0.7727991068911422,
+ -1.012919136284939,
+ 2.2998646425722624,
+ -2.9217502270414015,
+ 1.6897280455558685,
+ 3.180614282293513,
+ 0.07137392485935294,
+ -0.2728217535841796,
+ -1.127995724724875,
+ 2.4179159316245267,
+ -2.927788287808216,
+ 1.7353068770447035,
+ 3.5502319517308565,
+ 0.36572977338292406,
+ -0.10467556925088771,
+ -1.314626233415866,
+ 2.483644905945461,
+ -2.9256989858716023,
+ 2.2868371899018385,
+ -0.9927577007446876,
+ -0.7028458799013213,
+ 1.854311627902757,
+ 2.1194595597778356,
+ 1.072605100297511e-15,
+ 3.2888701155108375e-16,
+ 2.6267120351621394e-16,
+ 6.988642200307393e-17,
+ -3.720244804957242e-17,
+ -3.0130053812244033e-16,
+ -1.4897522832080028e-16,
+ 2.0224565976921524e-16,
+ -4.0970255739751456e-16,
+ 9.597363057146502e-17,
+ 1.9411861025088174e-16,
+ 8.12291361527073e-17,
+ 3.759225691323803e-16,
+ -1.4186147505284425e-17,
+ -1.9620724129757814e-16,
+ -4.764560328305439e-16,
+ 1.5158084725034232e-17,
+ 1.579914969976283e-17,
+ 6.724978380056115e-17,
+ -6.633988512675282e-17,
+ 9.341195561196487e-17,
+ 5.552449861762198e-17,
+ 3.2756352257099896e-17,
+ -7.122542061964414e-17,
+ 4.135903062765138e-18,
+ -4.443614250634865e-16,
+ -7.527343574232552e-17,
+ -1.1745964698252993e-16,
+ 6.646396221863577e-17,
+ 2.564259898914386e-16,
+ 5.44781151427424e-16,
+ -4.1726092024471784e-17,
+ -3.1614843011776713e-16,
+ 1.6036964125871822e-16,
+ 7.47771273747937e-17,
+ -6.020220498160935e-16,
+ 9.136726853531035e-17,
+ 4.5908523996693036e-18,
+ -2.0726561211164643e-16,
+ 1.706680398850034e-16,
+ 3.4096384849435796e-16,
+ 1.5696269111076543e-16,
+ -9.723508100560839e-17,
+ 5.925715113176752e-17,
+ -4.582580593543773e-17,
+ -3.249165446108292e-16,
+ 1.0726464593281385e-16,
+ -5.777442988376622e-16,
+ 1.0170185631339474e-16,
+ -9.58702329948959e-17,
+ 2.3031810180773364e-16,
+ 1.496369728108427e-16,
+ -7.146840492458159e-17,
+ -3.296314741023815e-16,
+ -3.8918847820619947e-16,
+ 1.5633713577252223e-17,
+ -1.6866212689956232e-16,
+ 1.0091603473146936e-16,
+ -9.181704799338607e-18,
+ 2.2747466845208258e-17,
+ 1.4905794638205559e-16,
+ -9.380228146351333e-17,
+ 1.4616281423812e-16,
+ -3.813302623869457e-17,
+ -3.7223127564886245e-17,
+ 1.3598849270371775e-16,
+ -4.674811231843436e-16,
+ 5.595876843921232e-17,
+ -4.456849140435713e-16,
+ -1.1001502146955267e-16,
+ 1.1431636065482842e-16,
+ 3.838118042246048e-17,
+ 8.023651941764368e-18,
+ 8.375203702099404e-17,
+ -1.6460894189805248e-16,
+ -8.987317355388644e-17,
+ -2.7430730828936223e-16,
+ -1.744523911874335e-16,
+ 5.591740940858467e-17,
+ -2.367184117973627e-16,
+ 4.558799150932873e-17,
+ 2.4141266177360113e-16,
+ -1.0248767789532012e-16,
+ 2.9320450787707757e-16,
+ -2.6436692377194764e-16,
+ 1.0810216630302379e-16,
+ 5.39321759384574e-17,
+ -8.726755462434441e-17,
+ 6.948317145445432e-17,
+ -5.227781471335134e-17,
+ -5.324561603003839e-16,
+ 1.8975523251966452e-16,
+ 9.29751008509603e-17,
+ 1.381391622963556e-17,
+ -2.0472720160687432e-16,
+ -1.4690727678941772e-16,
+ -2.605618929542037e-17,
+ -3.540333021726958e-16,
+ 6.190619704346858e-16,
+ 3.53536993805164e-16,
+ 1.1441975823139755e-16,
+ 8.022824761151814e-16,
+ -3.623051082982261e-17,
+ -6.88214269644119e-17,
+ -3.634631611558003e-16,
+ -2.4401828070314316e-16,
+ -4.508134338414e-17,
+ 4.7232012976777874e-17,
+ -1.4967833184147036e-16,
+ 1.1609479897181743e-16,
+ 3.58169205235461e-17,
+ -4.226892930145971e-17,
+ 1.4889251025954496e-18,
+ 1.1150394657214813e-16,
+ -1.4047594752681792e-16,
+ -1.560889815887563e-16,
+ -8.917007003321637e-17,
+ 9.098986738083304e-18,
+ -7.535615380358081e-17,
+ 1.3441684953986698e-17,
+ 1.0174321534402239e-17,
+ 1.0422475718168147e-16,
+ -6.79777027396078e-16,
+ -1.5550995515996918e-16,
+ -2.7184256855789563e-16,
+ -1.5484821066992676e-16,
+ -1.165497483087216e-16,
+ 3.103168067992683e-16,
+ -5.98878763488392e-17,
+ -1.4161332086907834e-16,
+ -1.7221900353354034e-16,
+ -2.8802428929096424e-16,
+ -3.59823566460567e-16,
+ 1.0960143116327615e-17,
+ -2.9397998970134604e-16,
+ 2.9551027383456914e-17,
+ 1.804701301437568e-16,
+ 6.140988867593676e-16,
+ -1.4281273275728023e-16,
+ -1.0664426047339908e-16,
+ 6.239630155640625e-16,
+ 2.3227231600489017e-16,
+ -7.899574849881413e-17,
+ -2.3822801641527197e-16,
+ 1.4442573495175863e-16,
+ 2.2267702089927505e-16,
+ 8.817745329815274e-17,
+ -1.2101652361650795e-16,
+ 6.088049308390284e-17,
+ -9.330597309598151e-17,
+ -2.1730034691768035e-16,
+ 6.617444900424221e-18,
+ 8.817745329815274e-17,
+ -2.069605892607675e-16,
+ 2.3690452743518713e-16,
+ 1.2444415327977456e-16,
+ -1.0430747524293678e-16,
+ -2.9199475623121877e-16,
+ -1.819797347616661e-18,
+ -1.3524403015242001e-17,
+ 1.8913484706024975e-16,
+ -5.346947178331055e-17,
+ -7.527343574232552e-18,
+ -8.519960309296184e-17,
+ 3.540333021726958e-16,
+ 5.300159774933524e-17,
+ 1.9438744394996147e-17,
+ -3.780215399367336e-17,
+ 9.016268676828e-17,
+ -2.335130869237197e-16,
+ -1.0670629901934055e-17,
+ 3.864587821847745e-16,
+ 2.043136113005978e-17,
+ -3.7512640779279805e-17,
+ 8.3876114112877e-17,
+ 4.4915907261629397e-17,
+ -6.600901288173161e-17,
+ 5.790264287871194e-17,
+ -1.1114825890875033e-15,
+ -4.803437817095432e-16
+ ],
+ [
+ 3.5346423179861297,
+ 2.981483877330219,
+ -1.5860910067448213,
+ -0.037090676665067254,
+ 1.5684017438180915,
+ -2.707350553151069,
+ 2.8145808540659987,
+ -2.087926294303483,
+ 0.5530777182215356,
+ 1.581679666123907,
+ 2.8895233963550804,
+ 1.308757958382957,
+ -2.7499300696356404,
+ 2.788195124088476,
+ -1.9401641268989995,
+ 0.35633062991919917,
+ 1.1562887844230874,
+ 2.664983209123881,
+ 1.3086157037961175,
+ -2.811009168837606,
+ 2.731873627145139,
+ -1.8467520543377007,
+ 0.19184080144984206,
+ 1.3722340757038238,
+ -2.57172630130211,
+ 1.8800113272425505,
+ 3.287692190863309,
+ -1.290871270642015,
+ -1.0099953231104206,
+ 0.06928840345076136,
+ 1.5474191411964902,
+ -2.660131682200242,
+ 1.8823155532027298,
+ 3.5940969539679934,
+ -1.1694282204094064,
+ -0.8905533268461674,
+ -0.134511135369311,
+ 1.650954883229037,
+ -2.7089458864841682,
+ 2.7932623562860743,
+ -2.0185754790480823,
+ 0.5112603847031134,
+ 0.9107027540478291,
+ 0.7688569783710686,
+ -1.915055431124646,
+ -2.045279888670476,
+ -5.083345988127751,
+ -5.120526965679021,
+ 2.8062455495457943,
+ -2.0584642145007948,
+ 0.5682035537557975,
+ 1.116472895736956,
+ -2.4240978737722774,
+ 2.8705875245072594,
+ -1.646646471270085,
+ -3.371039492719926,
+ -0.2764130106438715,
+ 0.15472451881414664,
+ 1.2301181494885627,
+ -2.491165665849743,
+ 2.8670311170395313,
+ -1.5605986908491951,
+ -3.014876791348559,
+ -0.48791267174422853,
+ 0.03442451123345281,
+ 1.408905760201509,
+ -2.591255882674169,
+ 2.8561313002516244,
+ -2.21440395841523,
+ 0.7904197188312001,
+ 0.8137749889551805,
+ -1.3867507250158089,
+ -2.0366569844444524,
+ 3.0719321254360827,
+ 1.8378232164307633,
+ -2.1310494074142143,
+ 0.5948161788434523,
+ 1.0067930295985006,
+ -1.524112004789525,
+ -2.5154128789726373,
+ 3.391674930685078,
+ 1.8889779690789308,
+ -1.9881444572237579,
+ 0.4700374572720184,
+ 1.120423229201705,
+ -2.4781884042188844,
+ 2.87004505907937,
+ -2.410516824335738,
+ 2.8721351015884977,
+ 3.643391655187079,
+ 5.060915546026174,
+ 4.15006871772046,
+ -2.7205914149164463,
+ 1.6743125401188326,
+ -0.16552657295602435,
+ -1.556343530567467,
+ 2.60194732121364,
+ -2.8838244079476842,
+ 1.5713087794644904,
+ 3.3055205521406084,
+ 0.890572060759618,
+ 0.1759565831842282,
+ -1.65890375185547,
+ 2.653594783722627,
+ -2.8471015353037896,
+ 1.3792221079466802,
+ 2.766614055928204,
+ 0.9887688064294645,
+ 0.2570149590209077,
+ -1.8228285332355183,
+ 2.723240047390733,
+ -2.8191319351020283,
+ 1.8544084782258399,
+ -0.39370416061489166,
+ -1.274284574343569,
+ 1.566936401473956,
+ 2.416279470185487,
+ -2.8436064993239625,
+ -1.753131062866903,
+ 1.7596426470682631,
+ -0.1908272292953203,
+ -1.4530511031015136,
+ 1.6399252606583208,
+ 2.7933342142577096,
+ -2.9541660505708323,
+ -1.7057211570379023,
+ 1.5944690191394095,
+ -0.06563688051355537,
+ -1.5599799538489176,
+ 2.642405486290798,
+ -2.8683142511202795,
+ 2.0875847393636615,
+ -2.276090873251306,
+ -2.3707738267871568,
+ -2.7764558415672145,
+ -2.8046571042645487,
+ -3.726169800711337,
+ -3.6741069381833387,
+ 2.6207079856475746,
+ -2.8807082875074173,
+ 2.1310795414558488,
+ -0.6775092577582088,
+ -1.0075661777165519,
+ 2.290854137772461,
+ -1.8823781068607663,
+ -3.46634368411015,
+ 1.9018160321231272,
+ 1.2424520249540012,
+ -0.555482384510277,
+ -1.124467379453271,
+ 2.4082857817977974,
+ -1.8823457387825817,
+ -3.245263029158581,
+ 1.5462915193975921,
+ 1.1421104909875186,
+ -0.3556271338765805,
+ -1.310215201866509,
+ 2.4723136831548262,
+ -0.6772533336985409,
+ -1.006073699703785,
+ 2.2880491218072243,
+ -1.8703467357709007,
+ -3.1860315468712557,
+ 1.7467396048792352,
+ 1.2432360362899901,
+ -0.5553672443443388,
+ -1.1933437665444784,
+ 2.4053864729928933,
+ -1.979090734159197,
+ -3.6974576725999726,
+ 1.7482884638449807,
+ 1.167429740998682,
+ -0.35574465706713565,
+ -1.3083858337574457,
+ 2.469368985220172,
+ -2.9041604611887406,
+ 2.2753682775109962,
+ -0.9864269259060306,
+ 0.510100525947781,
+ 0.7933477046696551,
+ -9.115530350334365e-16,
+ -6.695613468310482e-16,
+ -3.2557828910087164e-16,
+ 7.097209655704977e-17,
+ -9.702828585247013e-17,
+ 2.6895777617161695e-16,
+ 3.510554519675049e-16,
+ -4.3956377751067886e-16,
+ 5.3270431448414976e-17,
+ -6.468552390164676e-17,
+ -7.343295887939503e-17,
+ -1.9342584648786858e-16,
+ -4.020097777007714e-16,
+ -2.4021324988539924e-16,
+ 1.2407709188295415e-16,
+ 4.20207751176938e-16,
+ -4.248606421225488e-17,
+ 1.647743780205631e-16,
+ 9.628382330117241e-17,
+ 2.2499312661442353e-16,
+ 1.5406238908800139e-18,
+ 1.5832236924264947e-16,
+ 7.531479477295317e-17,
+ 2.605618929542037e-16,
+ -9.992341799640573e-17,
+ 4.074691697436214e-16,
+ 7.146840492458159e-17,
+ 8.008142305278998e-17,
+ 2.2548943498195534e-16,
+ -2.0944213109842658e-16,
+ -2.9811589276411117e-16,
+ 6.7001629616795234e-18,
+ -4.028369583133244e-17,
+ 5.2029660529585435e-17,
+ 2.1423977865123414e-17,
+ 4.552802091491864e-16,
+ 4.1028158382630167e-17,
+ 8.156000839772852e-17,
+ 2.762369655620836e-16,
+ -2.6887505811036165e-16,
+ -1.74038800881157e-16,
+ -1.4591466005435408e-16,
+ 4.748016716054378e-17,
+ 7.643148859989974e-17,
+ 8.598542467488721e-17,
+ 2.101865936497243e-16,
+ -2.671793378546279e-17,
+ 1.1620233245144933e-15,
+ -4.77283213443097e-16,
+ 1.22670884841614e-16,
+ -1.9132687568351528e-16,
+ -2.307006728410394e-16,
+ 1.0323214044661784e-16,
+ 3.1449406889266107e-16,
+ 1.8768728098828195e-16,
+ -8.023651941764368e-18,
+ 2.1175823681357506e-16,
+ 2.0514079191315084e-16,
+ -4.326154603652334e-17,
+ 2.3326493273995377e-17,
+ -6.840783665813539e-17,
+ 2.040654571168319e-16,
+ -2.84612169264183e-16,
+ 1.369190708928399e-16,
+ -4.086272226011956e-17,
+ -6.195582788022177e-17,
+ 3.212769499155959e-16,
+ -2.008394527278751e-16,
+ 5.002788344720711e-16,
+ 1.8032537353656e-16,
+ 6.195582788022177e-17,
+ -4.7562885221799085e-17,
+ 5.035461978916555e-18,
+ -1.7288074802358278e-17,
+ 2.3690452743518713e-16,
+ 2.339680362606239e-16,
+ 2.0878038660838416e-16,
+ 1.3797372617384502e-16,
+ -4.168990287267259e-17,
+ 2.9352504036444187e-16,
+ 1.1580528575742387e-18,
+ -5.618210720460164e-16,
+ 1.9637267742008875e-16,
+ -2.487125306793816e-16,
+ 1.8640515103882476e-16,
+ -8.065010972392019e-17,
+ 4.632211430296955e-18,
+ 2.240005098793599e-16,
+ -1.1911400820763599e-16,
+ 3.212769499155959e-16,
+ 1.1057750428608874e-15,
+ -1.3446648037662016e-15,
+ -3.9506146055532597e-16,
+ 3.416255929844004e-17,
+ 2.737554237244245e-16,
+ 7.312276614968765e-17,
+ 4.802610636482879e-16,
+ 5.035875569222832e-16,
+ -8.437242248040881e-16,
+ -3.6197423605320486e-16,
+ -2.10103875588469e-17,
+ -8.103061280569458e-16,
+ 8.883919778819516e-17,
+ 1.74038800881157e-16,
+ 2.4658254060205755e-16,
+ -1.2755125045567687e-16,
+ 1.7288074802358278e-17,
+ 2.067951531382569e-17,
+ 2.6237135054416347e-16,
+ -1.0852609636695722e-16,
+ -4.648755042548015e-17,
+ -2.8918234214853848e-16,
+ -3.029342198322325e-16,
+ -6.047724253528324e-17,
+ 8.908735197196107e-17,
+ 3.878443097108008e-17,
+ 1.3590577464246245e-16,
+ 7.585246217111263e-17,
+ 2.0927669497591597e-17,
+ 1.1200025493967995e-16,
+ -6.336203492156192e-17,
+ -3.632977250332897e-16,
+ 1.1272817387872661e-15,
+ 3.3848230665669888e-16,
+ 2.256238518314952e-16,
+ -2.2003004293910534e-16,
+ -1.1580528575742386e-17,
+ -6.566159702445933e-16,
+ 1.3598849270371775e-16,
+ 2.3322357370932615e-16,
+ 3.391440511467413e-16,
+ 3.6726819197354424e-16,
+ 1.3294446804952259e-15,
+ 9.003860967639705e-17,
+ 3.268190600197012e-16,
+ -4.8472783895607416e-17,
+ -1.0195001049716065e-16,
+ -6.147606312494101e-16,
+ 1.9025154088719634e-16,
+ 4.830734777309681e-17,
+ -2.302870825347629e-16,
+ -5.415551470384672e-16,
+ 1.2415980994420945e-16,
+ 3.6865371949957056e-16,
+ -3.629668527882685e-16,
+ -1.9000338670343043e-16,
+ -8.172544452023912e-17,
+ 1.8231060700668727e-16,
+ 1.446325301048969e-16,
+ 6.577636833445107e-17,
+ 1.6163109169286158e-16,
+ -8.40415502353876e-17,
+ -9.270626715188056e-17,
+ 2.6527682244575598e-16,
+ 3.249992626720845e-16,
+ -1.2722037821065566e-16,
+ 5.128519797828771e-18,
+ -4.423348325627315e-17,
+ -8.586134758300426e-17,
+ -3.527925312538663e-17,
+ -1.2192642229031628e-16,
+ 1.7858829425019865e-16,
+ 1.01908651466533e-16,
+ 1.742042370036676e-16,
+ -1.4459117107426924e-16,
+ -6.526455033043388e-17,
+ -5.4686978247412036e-17,
+ -1.3929721515392986e-16,
+ -3.7719435932418056e-17,
+ 2.984467650091324e-16,
+ 1.0386286566368953e-16,
+ -2.901749588836021e-16,
+ 1.1506082320612615e-16,
+ 3.0787662399223685e-16,
+ -1.5716431638507523e-16,
+ -1.4690727678941772e-16,
+ 7.254373972090053e-17,
+ -1.2143011392278446e-16,
+ 5.09543257332665e-16,
+ 1.2483809804650292e-15
+ ],
+ [
+ -5.043946820636398,
+ -4.143025715727061,
+ 2.6426584351516094,
+ -1.6114775495685074,
+ -0.017465394982438914,
+ 1.642726360805044,
+ -2.7187280768700575,
+ 2.8374990874622315,
+ -1.5208922133297613,
+ -3.234170012049669,
+ -1.0756436381391392,
+ -0.27373176745840516,
+ 1.7444228720602595,
+ -2.763150549981525,
+ 2.792659493148,
+ -1.3242531803616266,
+ -2.6929919299997804,
+ -1.1492188947193462,
+ -0.34981527212457664,
+ 1.9014979099569422,
+ -2.8257526316401385,
+ 2.756763255686623,
+ -1.799449203741027,
+ 0.2129383709327471,
+ 1.366724195809536,
+ -1.626845790231724,
+ -2.5409007873397473,
+ 2.776393565701161,
+ 1.7294533505730905,
+ -1.6984452518880218,
+ 0.00984425277592317,
+ 1.5437478539063973,
+ -1.6955445897708863,
+ -2.9202409212439018,
+ 2.870109892449156,
+ 1.6750385111896338,
+ -1.5283706737284486,
+ -0.11814456062600139,
+ 1.6462882733240252,
+ -2.754897612746257,
+ 2.8171209555842607,
+ -2.044925401037419,
+ 2.0617388104065237,
+ 2.1624076201398736,
+ 2.7722880943454644,
+ 2.811411615187195,
+ 3.9205478948351966,
+ 3.8736740409710744,
+ -2.734405178099541,
+ 2.829102006280422,
+ -2.086424197818931,
+ 0.4970131189316154,
+ 1.1061280769917852,
+ -2.43119094338866,
+ 1.902194557594646,
+ 3.531539161043273,
+ -1.7574295218644476,
+ -1.1765214451299455,
+ 0.37499257882575926,
+ 1.2231627838096921,
+ -2.5389702741551146,
+ 1.8948736739950256,
+ 3.29433823108953,
+ -1.406594796517258,
+ -1.0723720451606713,
+ 0.1708169789831855,
+ 1.4036929029289074,
+ -2.599882930145737,
+ 2.8672195676319334,
+ -2.2424788359121695,
+ 0.8124969118470635,
+ 0.45995998652986836,
+ 0.2632910382063048,
+ -3.268510964159621,
+ -1.7693415074918186,
+ 2.8500077830262587,
+ -2.10419276891385,
+ 0.6157861912982795,
+ 0.5773542589265898,
+ 0.548149884356865,
+ -3.777952940038619,
+ -1.9222409058603231,
+ 2.807521281394889,
+ -2.014357211842643,
+ 0.49274580551758157,
+ 1.1982586490913978,
+ -2.4848754789850243,
+ 2.890346087628624,
+ -4.110176773020335,
+ -5.076624461552548,
+ -4.768138368749515,
+ -3.8320566149802384,
+ 2.8228562129266095,
+ -2.745123606999505,
+ 1.701630070826397,
+ -0.08986707655660485,
+ -1.5503542037486235,
+ 2.612575611421745,
+ -1.9913817270341927,
+ -3.796698654320272,
+ 1.289485296687845,
+ 0.9473885467341334,
+ 0.03558031365253864,
+ -1.6561030772038914,
+ 2.6941549525778536,
+ -1.8691559521974177,
+ -3.334954537299872,
+ 0.9217963999825413,
+ 0.8177388504586038,
+ 0.23861925339462395,
+ -1.8217988425716585,
+ 2.73560042465018,
+ -2.817900795622188,
+ 1.8819998268779559,
+ -0.4132024119360521,
+ -0.7388116507511607,
+ -0.774479564613886,
+ 3.331606937254567,
+ 1.852967612054073,
+ -2.7799814150355107,
+ 1.7238488557697158,
+ -0.2090252531482669,
+ -0.8532607002103034,
+ -1.089291111877316,
+ 3.6222523746567887,
+ 1.8893352546184305,
+ -2.7089242530175177,
+ 1.619465042454584,
+ -0.0855434554061278,
+ -1.6349741715990571,
+ 2.652833358847646,
+ -2.890894382757143,
+ 4.493060700140858,
+ 4.511241123382384,
+ 2.658092505371637,
+ 2.5859941931452837,
+ 1.1826115027856903,
+ 1.0613882293939905,
+ -1.585424467410001,
+ 2.6304722530362867,
+ -2.9008872911425794,
+ 2.090585805557687,
+ -0.6984878163672263,
+ -0.9997927232234649,
+ 1.4594480437967399,
+ 2.3703150740432974,
+ -3.2911551643675123,
+ -1.8361159144908388,
+ 2.0039780680593138,
+ -0.5733523414960761,
+ -1.1888121806359497,
+ 1.5399702526966466,
+ 2.351307834189888,
+ -2.92234454159286,
+ -1.7887795305212242,
+ 1.8511864444205086,
+ -0.3724506173538658,
+ -1.3026444113244529,
+ 2.5267849030150344,
+ -0.7013985510174866,
+ -0.9964153123170368,
+ 1.456870365089983,
+ 2.1760375148601168,
+ -3.0285460338244574,
+ -1.8283007408709564,
+ 2.0056370765177705,
+ -0.5003696631213743,
+ -1.1854542895534184,
+ 1.5948377331019101,
+ 2.6678685539891145,
+ -3.3288487981986914,
+ -1.8700424095603587,
+ 1.853054947305563,
+ -0.3755791262063752,
+ -1.2993090731219432,
+ 2.524409263796329,
+ -2.9256974915725777,
+ 2.30184993721738,
+ -2.7385005168642267,
+ -3.4860328287221654,
+ 1.492316543106917e-15,
+ 2.1725691993552134e-15,
+ 3.1143350062621487e-16,
+ 1.7364847502960854e-16,
+ -2.0770505181206522e-16,
+ -2.127508535486387e-16,
+ -4.37413107918041e-16,
+ -2.3210687988237957e-16,
+ -5.427959179572968e-16,
+ 3.192917164454687e-17,
+ 1.3693975040815373e-16,
+ 6.813900295905564e-16,
+ 9.727644003623604e-17,
+ 2.230492521749239e-16,
+ -8.826017135940804e-17,
+ -4.02175213823282e-16,
+ -1.3395156044530592e-16,
+ -2.404458944326798e-16,
+ -1.1245520427658411e-16,
+ -2.4401828070314313e-18,
+ 5.896763791737396e-17,
+ -1.2755125045567687e-16,
+ -8.197359870400503e-17,
+ -1.065822219274576e-16,
+ 1.8005653983748027e-16,
+ -3.3742765137569376e-16,
+ -8.735027268559971e-17,
+ 2.69660879692287e-17,
+ 2.479887476433977e-16,
+ 3.356698925740186e-16,
+ 6.435465165662555e-17,
+ 1.4719679000381127e-16,
+ 2.613477145361291e-16,
+ 9.802090258753377e-17,
+ -2.26482051717019e-16,
+ -4.805919358933091e-16,
+ -8.974909646200349e-17,
+ -3.3076884744464194e-17,
+ -2.2085722355165836e-16,
+ 4.521369228214849e-16,
+ 1.4823076576950256e-16,
+ 2.247449724306576e-16,
+ 2.936904764869525e-16,
+ -1.923194924185789e-17,
+ -3.5403330217269584e-17,
+ -4.735609006866083e-17,
+ -1.5426918424113966e-17,
+ -4.6551656922953015e-16,
+ 4.0647655300855775e-16,
+ 5.558653716356346e-17,
+ 7.659692472241035e-17,
+ 1.0501057876360685e-16,
+ 6.400309989629052e-17,
+ -4.3416642401377034e-17,
+ -6.631093380531345e-16,
+ -5.69100261436483e-17,
+ -7.734138727370808e-17,
+ -6.356883007470018e-17,
+ 1.095600721326485e-16,
+ 9.686284972995953e-17,
+ 3.297969102248921e-16,
+ -3.3500814808397617e-18,
+ 2.8827244347473014e-16,
+ -1.3954536933769577e-16,
+ -1.3408597729484579e-16,
+ -1.44679059014353e-16,
+ -3.9762572045424035e-16,
+ 1.3535776748664607e-16,
+ -2.5923840397411887e-16,
+ -1.2945376586454883e-16,
+ -1.3741537926037172e-16,
+ -4.549493369041652e-18,
+ -6.427193359537025e-17,
+ -1.5485338054875521e-16,
+ -4.60077856701994e-16,
+ -2.1246134033424513e-16,
+ 3.821574429994987e-17,
+ -4.79764755280756e-17,
+ 1.0745076157063828e-16,
+ -2.759060933170624e-16,
+ 2.7379678275505213e-17,
+ 9.92616735063633e-18,
+ -4.7893757466820296e-17,
+ 1.4905794638205559e-16,
+ -1.7627218853505017e-16,
+ -3.941515618815176e-17,
+ -2.6258848545495864e-16,
+ -2.528070747115191e-16,
+ -7.782942383511436e-16,
+ 1.43908747068913e-16,
+ -2.80579663777987e-16,
+ 6.68279216881591e-16,
+ 2.9968753592796193e-16,
+ -2.790493796447639e-16,
+ -3.2241949313668477e-16,
+ -1.1133851044963753e-16,
+ -1.9236085144920656e-16,
+ -1.2262952581098635e-16,
+ 1.577019837832347e-16,
+ -6.840783665813539e-17,
+ 1.7970498807714524e-16,
+ 2.189547081427864e-16,
+ 1.9753073027766298e-16,
+ -3.373035742838108e-16,
+ -2.8603905582083697e-16,
+ -1.7205356741102976e-17,
+ -2.2747466845208258e-17,
+ 5.939156798130739e-17,
+ 2.2036091518412655e-16,
+ 1.258141711693155e-16,
+ 6.228670012524298e-17,
+ 1.1208297300093525e-16,
+ 1.253178628017837e-16,
+ 1.71433181951615e-17,
+ -6.948317145445432e-17,
+ -1.2490427249550718e-16,
+ -2.9319416811942066e-16,
+ -2.1332987997742581e-16,
+ 2.4087499437544166e-16,
+ -6.121136532892405e-17,
+ 1.6189992539194132e-16,
+ -1.2583485068462932e-17,
+ -5.302227726464907e-16,
+ -1.065822219274576e-16,
+ -1.4301952791041848e-16,
+ -1.892589241521327e-16,
+ -7.762056073044472e-17,
+ 1.225054487191034e-16,
+ -2.1382618834495763e-16,
+ -4.989967045226139e-17,
+ 5.219509665209604e-17,
+ -2.0193546703950786e-16,
+ -4.501516893513577e-16,
+ -5.0292581243224076e-17,
+ -3.296314741023815e-16,
+ 2.750375536738817e-16,
+ 7.378451063973007e-17,
+ 5.252596889711725e-18,
+ -1.7925003874024107e-16,
+ 5.600012746983997e-17,
+ 1.9430472588870618e-16,
+ 1.9049969507096225e-16,
+ -6.340339395218957e-17,
+ -3.695015796274374e-16,
+ 2.6717933785462794e-16,
+ 2.88112177231048e-16,
+ 7.161316153177837e-17,
+ 7.279189390466644e-18,
+ -2.572531705039916e-16,
+ 4.485386871568792e-17,
+ 3.391440511467413e-18,
+ 2.781808400015832e-16,
+ 1.7354249251362518e-16,
+ -2.9480717031389906e-16,
+ -4.902699490601795e-16,
+ 3.8050308177439267e-17,
+ -3.4311451808699583e-16,
+ -1.3441684953986698e-18,
+ -2.1655588436638262e-16,
+ -1.4889251025954496e-18,
+ 2.646977960169688e-18,
+ -6.625716706549752e-17,
+ -7.122025074081568e-17,
+ -7.994700620325011e-17,
+ 2.8785885316845363e-16,
+ -2.62423049332448e-17,
+ -1.0451427039607503e-16,
+ 9.851721095506558e-17,
+ -1.558408274049904e-16,
+ 7.407402385412363e-17,
+ -9.148617574836485e-17,
+ 3.6606878008534235e-16,
+ -4.235164736271501e-17,
+ -2.953034786814309e-17,
+ -3.3149263048062584e-17,
+ 6.143883999737613e-17,
+ -6.832511859688009e-17,
+ -5.3187713387159673e-17,
+ -1.1377042145054343e-15,
+ -5.09791411516431e-16
+ ],
+ [
+ 4.876019198496413,
+ 3.92729606545652,
+ -2.8967966628383177,
+ 2.6410889428988993,
+ -1.6095528092140396,
+ -0.11672311649558584,
+ 1.645498997456529,
+ -2.7215765858585113,
+ 1.9805810397784778,
+ 3.808012832611986,
+ -1.0859395515693935,
+ -0.8471018881123468,
+ -0.2401678684647578,
+ 1.7490903476975845,
+ -2.7906084261889417,
+ 1.84917081316315,
+ 3.330806898096463,
+ -0.7400124723959426,
+ -0.7203482822916879,
+ -0.44418079319854525,
+ 1.9059025605893736,
+ -2.8272717001638448,
+ 2.726187005255709,
+ -1.7978621562428936,
+ 0.20763487527020538,
+ 0.8361846315075322,
+ 0.9562505361086464,
+ -3.3357112682219006,
+ -1.8729171486613851,
+ 2.6834915451383954,
+ -1.6308199484301926,
+ 0.0044283023559449144,
+ 0.9482316807743224,
+ 1.2826023184841808,
+ -3.612563393912609,
+ -1.9012508706676787,
+ 2.5998926375214815,
+ -1.5242838712838411,
+ -0.12105203867732965,
+ 1.7270003211765212,
+ -2.7568150915841354,
+ 2.8167998384167605,
+ -4.33769690337808,
+ -4.364062681161198,
+ -2.7076306367572633,
+ -2.6431244398850846,
+ -1.4651214198598983,
+ -1.3500904247591528,
+ 1.6799804544021808,
+ -2.737052082130025,
+ 2.829179570480281,
+ -2.0159552590722223,
+ 0.4942736019376766,
+ 1.1113228981105134,
+ -1.5267267542975276,
+ -2.521995948383464,
+ 3.199860895156654,
+ 1.8039841701230728,
+ -1.9225838400813493,
+ 0.36967045225519635,
+ 1.2976355715832018,
+ -1.600181155547006,
+ -2.481729607520942,
+ 2.8264856887284067,
+ 1.7503841226952186,
+ -1.7641496991838068,
+ 0.16543557376791432,
+ 1.4064386139256697,
+ -2.645159789918586,
+ 2.867593186929004,
+ -2.2396967080760604,
+ 0.6147824686056043,
+ 1.5889356257182494,
+ 2.3818987055034406,
+ 1.1153231175964486,
+ -2.696054576025479,
+ 2.835574115840463,
+ -2.101043204714508,
+ 0.5561399796853987,
+ 1.591396456798657,
+ 2.9114415145263752,
+ 1.3188529392404726,
+ -2.7710028736736048,
+ 2.8068634900169855,
+ -2.012796014494116,
+ 0.39490244961979265,
+ 1.2010576950932272,
+ -2.4884266138319306,
+ 3.981466211298543,
+ 4.8221591741406655,
+ 2.8978453608660804,
+ 2.2466232366772254,
+ -2.067481620886376,
+ 2.824337448736428,
+ -2.7447077243692988,
+ 1.621123042515872,
+ -0.08734994584211898,
+ -1.5550636611618338,
+ 1.7501101658141696,
+ 3.0283981967612617,
+ -3.03249393030168,
+ -1.7518339016535063,
+ 1.5178487139612935,
+ 0.0406416099041615,
+ -1.7239703730037217,
+ 1.7379052219274538,
+ 2.79638107864999,
+ -2.518318661051598,
+ -1.6167563130738307,
+ 1.3396999404184389,
+ 0.24365832479934063,
+ -1.8242064950101482,
+ 2.766335519077298,
+ -2.8178984813420174,
+ 1.878494826250848,
+ -0.33011644542004015,
+ -1.1161776076536791,
+ -2.714235214919406,
+ -1.3388050255318893,
+ 2.8009793118772737,
+ -2.753209165104811,
+ 1.72003222275773,
+ -0.2122863589867871,
+ -0.9675464764225827,
+ -3.087915614053252,
+ -1.4465283156979676,
+ 2.8437290975428304,
+ -2.70751329955328,
+ 1.6175415491265421,
+ 0.013307871336032031,
+ -1.637631192406823,
+ 2.6553326721607102,
+ -5.210104741933452,
+ -5.146052666949045,
+ -1.6323598581443697,
+ -1.4771365682591444,
+ 1.7408624868295897,
+ 1.8863307755502317,
+ -0.04680657720537433,
+ -1.5880708556935357,
+ 2.6290745115173912,
+ -2.882448050285488,
+ 2.087690042990613,
+ -0.6938686990898384,
+ -0.5552545769333646,
+ -0.49456424522009623,
+ 3.58431235784502,
+ 1.8190642265420514,
+ -2.856347090579394,
+ 1.9992007154867626,
+ -0.4927733866513869,
+ -0.6892879864892862,
+ -0.6829772507808296,
+ 3.3243672036245226,
+ 1.8401496837525182,
+ -2.8044022886761235,
+ 1.8463255469840156,
+ -0.37047458864252314,
+ -1.3890055639973742,
+ 2.52563642429814,
+ -0.6966040265145523,
+ -0.5629870557188504,
+ -0.45035172757748904,
+ 3.301563361989366,
+ 1.8052641591591576,
+ -2.859158461262227,
+ 1.9462140450297811,
+ -0.49538416530633383,
+ -0.684350574334653,
+ -0.7598260982630244,
+ 3.7997565342202027,
+ 1.9501676342101275,
+ -2.8073284549111066,
+ 1.8496306885222331,
+ -0.37300484465966194,
+ -1.3881484068851673,
+ 2.526603703850321,
+ -2.926480236972623,
+ 4.049678864849458,
+ 5.011789966683994,
+ -8.258571235729427e-16,
+ -1.4755247766720906e-15,
+ -1.4653504551376885e-16,
+ -9.30578189122156e-17,
+ -7.965749298885655e-17,
+ 1.06416785804947e-16,
+ 2.1852043832119606e-16,
+ 4.336494361309247e-16,
+ 4.004794935675483e-16,
+ 5.10370437945218e-17,
+ -1.3012585011224817e-16,
+ -7.823474233526535e-16,
+ 1.5604762255812865e-16,
+ -1.1121443335775457e-16,
+ -1.3437549050923935e-16,
+ 6.106247281866449e-16,
+ 1.0091603473146936e-16,
+ 1.0757483866252124e-16,
+ 2.8231674306434835e-16,
+ -1.8089923008651867e-16,
+ 5.227781471335134e-17,
+ 1.3987624158271698e-16,
+ 1.375601358675685e-16,
+ 5.190558343770248e-18,
+ -2.856668245451881e-16,
+ -4.218621124020441e-18,
+ 4.7314731038033177e-17,
+ -5.525566491854224e-17,
+ -3.966124242038629e-16,
+ -2.3980999933677964e-16,
+ 2.2995621028974166e-17,
+ -1.7415253821538304e-16,
+ -3.4465514197787584e-16,
+ -6.660871882583255e-17,
+ 1.0961177092093307e-16,
+ 3.6826080870860787e-16,
+ 7.019661473278131e-17,
+ -5.004442705945817e-17,
+ 5.633099971486118e-17,
+ -4.781931121169053e-16,
+ 5.558653716356346e-17,
+ -1.4545971071744992e-16,
+ -4.104470199488123e-16,
+ 5.2939559203393765e-17,
+ 1.9058241313221755e-16,
+ 2.1804480946897807e-16,
+ 7.560430798734672e-17,
+ 5.733757512276165e-16,
+ -3.6776450034107605e-16,
+ 5.922613185879678e-17,
+ 1.108422020821057e-16,
+ 4.9299964508160443e-17,
+ -2.2815450751802463e-16,
+ 6.534726839168919e-17,
+ 8.238718901028154e-17,
+ -1.2821299494571927e-17,
+ 1.6857940883830702e-16,
+ 2.3285134243367726e-17,
+ -1.0918784085699964e-17,
+ 1.6312001679545703e-16,
+ -4.149551542872263e-16,
+ -1.5360743975109721e-16,
+ -2.0249381395298115e-16,
+ 2.241659460018705e-16,
+ 1.4541835168682227e-16,
+ 2.416194569267394e-16,
+ 2.785944303078597e-16,
+ -2.3553967942447463e-16,
+ 3.788487205492866e-17,
+ 3.416255929844004e-17,
+ 2.6559735493312027e-16,
+ 1.3267977025350564e-16,
+ 7.392926724692685e-17,
+ -7.4859845436049e-17,
+ 7.947551325409489e-16,
+ 3.13087861851321e-17,
+ -2.2790893827367295e-16,
+ -1.5087774372967222e-16,
+ 8.288349737781336e-17,
+ 2.6635215724207488e-17,
+ -1.6626330312315856e-17,
+ -3.8050308177439267e-17,
+ 6.898686308692251e-17,
+ 6.470620341696059e-17,
+ 8.681260528744024e-17,
+ 9.049355901330122e-17,
+ 1.288747394357617e-16,
+ -8.933550615572699e-18,
+ -2.0547166415817205e-16,
+ 5.90937829607883e-16,
+ -1.018259334052777e-16,
+ -1.1249656330721176e-16,
+ -2.3476419760020617e-16,
+ 3.603198748280988e-16,
+ 2.656904127520325e-16,
+ 1.919059021123024e-17,
+ 9.132073962585424e-17,
+ 2.8537731133079455e-17,
+ -1.2324991127040112e-16,
+ 2.355810384551023e-16,
+ -2.1812752753023337e-16,
+ 3.601544387055882e-16,
+ -2.3909655605845265e-16,
+ 1.522012327097571e-17,
+ -1.6746271501136043e-16,
+ 1.939945331589988e-16,
+ -1.3565762045869652e-17,
+ -3.563080488572167e-17,
+ 3.331883507363595e-16,
+ -4.7811039405564993e-17,
+ 2.4195032917176056e-18,
+ -4.521059035485141e-17,
+ -3.8778227116485932e-16,
+ 1.8578476557941e-16,
+ -6.989676176073084e-18,
+ -1.1307558973599888e-16,
+ 2.897613685773256e-16,
+ 1.3292792443727155e-16,
+ 9.529120656610878e-17,
+ -1.225881667803587e-16,
+ -1.5443462036365024e-16,
+ 1.0571368228427692e-16,
+ 3.2243500277317014e-16,
+ 4.921724644690514e-17,
+ -5.343586757092558e-17,
+ 1.2192642229031628e-16,
+ -1.737079286361358e-17,
+ -3.8604519187849797e-16,
+ -3.010937429693021e-17,
+ -9.041084095204591e-17,
+ -1.9868878313523722e-16,
+ 2.0811864211834174e-16,
+ 2.576667608102681e-16,
+ 3.9574646950009644e-16,
+ 1.7639626562693313e-16,
+ -3.9222836695733185e-16,
+ -2.043136113005978e-17,
+ -4.559419536392289e-16,
+ 1.8131799027162364e-16,
+ -1.1135918996495135e-16,
+ 1.2688950596563445e-16,
+ -3.982978047019397e-16,
+ 1.859502017019206e-16,
+ 2.541098841762901e-16,
+ -3.123433993000232e-16,
+ -3.8331549585707298e-16,
+ -6.948317145445432e-18,
+ 3.4443800706708067e-16,
+ 3.9820474688302747e-16,
+ -8.677124625681259e-17,
+ -8.213903482651564e-17,
+ -3.265709058359353e-16,
+ -1.5418646617988433e-16,
+ 2.476578753983765e-16,
+ 4.3352535903904176e-16,
+ -1.0685105562653734e-16,
+ 4.9382682569415746e-17,
+ 3.7553999809907456e-17,
+ 3.416255929844004e-17,
+ 8.823949184409421e-17,
+ -5.955700410381799e-17,
+ -6.700162961679524e-17,
+ -6.875938841847043e-17,
+ 5.0209863181968774e-17,
+ 5.209583497858968e-16,
+ 6.220398206398768e-17,
+ 1.7453510924868881e-16,
+ -1.373119816838026e-16,
+ 2.1897538765810023e-16,
+ -1.2366350157667764e-16,
+ 2.7296960214249913e-16,
+ -2.39055197027825e-16,
+ 4.479183016974644e-17,
+ -4.21034931789491e-17,
+ -2.1548054957006368e-17,
+ -1.2093380555525265e-16,
+ -1.163015941249557e-16,
+ 7.708806321111371e-17,
+ 1.1426672981807524e-15,
+ -5.924681137411061e-17
+ ],
+ [
+ -2.3671103134277582,
+ -1.8558778685073487,
+ 1.576710659511823,
+ -2.039759824402159,
+ 1.7879997368092837,
+ -0.9535659203862693,
+ -0.21133476232066167,
+ 1.254928404669784,
+ -1.2937335286373715,
+ -2.292338516875443,
+ 1.911178263289337,
+ 1.1350287867406397,
+ -0.8749726572201089,
+ -0.2988117466123451,
+ 1.3639077068644623,
+ -1.2681381456214391,
+ -2.090576820180758,
+ 1.5643275691776948,
+ 1.038851632501296,
+ -0.7442675594518601,
+ -0.43993635919466484,
+ 1.4258621753105238,
+ -2.0180717567715347,
+ 1.8569116051279402,
+ -1.1484822555465581,
+ 0.0735835910691864,
+ 0.5124180190256735,
+ 2.043617690793133,
+ 1.040085479708155,
+ -2.030809081742425,
+ 1.7972012301964109,
+ -1.0266590798292718,
+ -0.010515182482342669,
+ 0.3802764437608137,
+ 2.2992641855666935,
+ 1.1065297312511448,
+ -2.0451344186872933,
+ 1.7543747221127801,
+ -0.9508932454553388,
+ -0.2811301600960225,
+ 1.3077150376160227,
+ -1.966533617489854,
+ 3.6321420120795613,
+ 3.598715285618748,
+ 1.3323676687011337,
+ 1.2344318803985808,
+ -0.8024826401021445,
+ -0.9037164721869223,
+ -0.2405872287860706,
+ 1.2777201365351913,
+ -1.954492377840372,
+ 1.9260489024722938,
+ -1.3103070019873364,
+ 0.21486153915892964,
+ 0.5379048958822943,
+ 0.6435348695598696,
+ -2.5305623862062325,
+ -1.309757294404464,
+ 1.8990408009972113,
+ -1.2400570147704624,
+ 0.07324637140692856,
+ 0.6259999250624814,
+ 0.7470699341596666,
+ -2.327050325737318,
+ -1.3143987862968793,
+ 1.8451861370503522,
+ -1.1238657427719752,
+ -0.014375382249498593,
+ 1.1493652254061555,
+ -1.9000160677018532,
+ 1.9817800594388082,
+ -0.9882167371531145,
+ -1.9715807269350532,
+ -0.6499054654791859,
+ -0.15397384123131105,
+ 1.2203512542520565,
+ -1.9483504620969585,
+ 1.9503005736181835,
+ -0.9954523240942665,
+ -2.153663797533427,
+ -0.9311161140844258,
+ -0.289061791065975,
+ 1.3299698718906716,
+ -1.9745565169943475,
+ 1.9251427353925163,
+ -1.2552831340216182,
+ 0.14657798490201698,
+ 0.9566929688289578,
+ -1.9381099403947437,
+ -2.28531622912033,
+ -0.2924754259050864,
+ -0.1414983088561681,
+ 0.5207580680710675,
+ -1.5344919843003564,
+ 1.9961017898009323,
+ -1.8381275044371994,
+ 1.0226745088846536,
+ 0.07073727936598105,
+ -0.7356712569752782,
+ -1.0522325662757597,
+ 2.634821391892251,
+ 1.3946830169497515,
+ -1.7974094827453053,
+ 0.9460705623050693,
+ 0.21365227712556162,
+ -0.7987184113395935,
+ -1.0791389123715789,
+ 2.281876331928278,
+ 1.3227612137663414,
+ -1.7250330080457215,
+ 0.8173276390027493,
+ 0.29918143437579703,
+ -1.4226829088950392,
+ 1.9656724452249148,
+ -1.9271258993192686,
+ 0.8401627897313227,
+ 1.7559603859827293,
+ 0.9878471405550138,
+ 0.3553179491491575,
+ -1.4836095400697453,
+ 1.9939983693087504,
+ -1.8732455889139246,
+ 0.7782867335441126,
+ 1.7851887358792071,
+ 1.22958989730429,
+ 0.4548499205280865,
+ -1.5792084730270806,
+ 2.0054632224921347,
+ -1.836795742598407,
+ 0.9616167480665584,
+ 0.13915032782022235,
+ -1.2508477336796477,
+ 3.0947015195341763,
+ 3.010506831212009,
+ 0.20095409344485446,
+ 0.07475042900473418,
+ -2.7227423770813592,
+ -2.8147618817025424,
+ 0.9992599053163064,
+ 0.09690256781430588,
+ -1.2144433670402397,
+ 1.9078122862636928,
+ -1.9853917349688786,
+ 1.3655533324616582,
+ -0.2875177045460715,
+ -0.9297941040408899,
+ -2.002159044300449,
+ -0.911742597486081,
+ 1.9349733822613426,
+ -1.9612855583046813,
+ 1.258269163693495,
+ -0.1858626454614649,
+ -0.7036879809238797,
+ -1.938871198150714,
+ -0.965504977891849,
+ 1.9698053122596866,
+ -1.9162906247424485,
+ 1.1886131932927129,
+ -0.06400106473406804,
+ -1.0809049021965733,
+ 1.8227897480015383,
+ -0.27713713188172145,
+ -0.8578208589536883,
+ -1.846149610917399,
+ -0.9009881188038191,
+ 1.937176860230769,
+ -1.9470466189310816,
+ 1.2591721914145202,
+ -0.22603718565942105,
+ -0.8156538581781858,
+ -2.2233693191583725,
+ -1.0394115004756592,
+ 1.9720026024186887,
+ -1.9181141684348149,
+ 1.1894404246066375,
+ -0.06351452842512172,
+ -1.0824700672428853,
+ 1.824955653561221,
+ -2.8789696306191197,
+ -3.5019541993225873,
+ 1.0022947482305036e-15,
+ 1.1312522057275206e-15,
+ 5.939156798130739e-17,
+ 8.085690487705846e-18,
+ -1.1580528575742386e-17,
+ -1.617965278153722e-16,
+ -5.608284553109528e-17,
+ -2.2726787329894435e-16,
+ -6.708434767805054e-17,
+ -5.744769354180777e-17,
+ 8.42069863578982e-17,
+ 4.4270706383838036e-16,
+ -1.873150497126331e-16,
+ -2.4195032917176056e-18,
+ 2.0782912890394817e-17,
+ -1.9732393512452473e-16,
+ -1.8466807175246343e-17,
+ 9.760731228125725e-18,
+ -8.656445110367433e-17,
+ 1.137373342260413e-16,
+ 5.955700410381799e-17,
+ 1.1249656330721175e-17,
+ -9.727644003623604e-17,
+ 5.459392042849982e-18,
+ 1.5137405209720406e-17,
+ -6.807696441311418e-17,
+ -4.0407772923215396e-17,
+ 6.830443908156626e-17,
+ 3.12975416986802e-16,
+ 3.91256429737582e-17,
+ -1.7205356741102973e-16,
+ 1.4434301689050333e-16,
+ -2.6105820132173553e-16,
+ 1.6647009827629682e-17,
+ -1.6874484496081762e-16,
+ -7.428081900726189e-17,
+ 4.5494933690416516e-17,
+ 8.792929911438683e-17,
+ 8.528232115421714e-17,
+ 1.5124997500532109e-16,
+ 1.1717013376813637e-16,
+ -8.569591146049365e-17,
+ 2.98612201131643e-16,
+ -3.490702184973777e-17,
+ -2.316519305454754e-16,
+ 6.206956521444781e-17,
+ -7.775497757998459e-17,
+ -7.79204137024952e-17,
+ 2.1341259803868112e-16,
+ 1.6295458067294645e-17,
+ -2.297907741672311e-16,
+ -1.1745964698252993e-16,
+ 1.841097248389901e-16,
+ 5.244325083586195e-17,
+ 7.345363839470886e-17,
+ -6.832511859688009e-17,
+ -9.341971043020755e-17,
+ 3.0776288665801086e-17,
+ 7.287461196592174e-17,
+ -1.1336510295039244e-16,
+ 3.654483946259276e-16,
+ 3.90429249125029e-17,
+ 1.651052502655843e-16,
+ -1.7494869955496533e-16,
+ -2.1225454518110688e-16,
+ -1.9699306287950352e-16,
+ -1.682485365932858e-16,
+ 1.1636880254972562e-16,
+ 1.3979352352146168e-16,
+ 8.623357885865314e-18,
+ -2.6842010877345745e-17,
+ 3.8877488789992295e-17,
+ 1.0277719110971367e-17,
+ -1.2444932315860301e-16,
+ -3.9175273810511386e-16,
+ -4.748016716054378e-17,
+ 2.1423977865123414e-16,
+ 1.4717611048849745e-16,
+ -4.707691661192418e-17,
+ 6.251417479369507e-17,
+ 4.79764755280756e-17,
+ 1.7960159050057613e-17,
+ 5.929851016239516e-18,
+ -1.5371083732766634e-16,
+ -9.210656120777962e-17,
+ 7.361907451721946e-18,
+ -3.360421238496675e-17,
+ 7.858215819253763e-18,
+ 1.4798261158573665e-16,
+ -2.27309232329572e-16,
+ 3.568457162553761e-16,
+ -4.54618464659144e-16,
+ 8.337980574534518e-17,
+ -1.518290014341082e-16,
+ -2.5890753172909763e-17,
+ -8.652309207304668e-17,
+ 3.3955764145301786e-17,
+ 1.1886585402387008e-16,
+ -1.4049662704213175e-16,
+ -1.7362521057488048e-16,
+ 2.1423977865123414e-16,
+ -5.495787989802316e-16,
+ 1.4789989352448135e-16,
+ -1.102838551686324e-16,
+ -2.387243247828038e-16,
+ -3.05725954399599e-16,
+ 3.266329443818768e-17,
+ -3.1184709093249143e-17,
+ -6.2245341094615325e-18,
+ -1.2573145310806019e-17,
+ -9.851721095506558e-17,
+ -1.323488980084844e-18,
+ 2.171762698257974e-16,
+ -1.0616863162118109e-16,
+ 4.135903062765138e-17,
+ -1.9438744394996148e-16,
+ -1.9604180517506753e-16,
+ -6.981404369947554e-17,
+ -5.732361644992482e-17,
+ 7.080666043453917e-17,
+ 1.9025154088719634e-16,
+ -1.0935327697951025e-16,
+ 1.0869153248946782e-16,
+ 4.807987310464473e-17,
+ 6.460280584039146e-17,
+ 1.0257039595657542e-17,
+ 1.6626330312315856e-17,
+ 9.506373189765669e-17,
+ 1.5488956970055443e-17,
+ 2.36472842553011e-16,
+ 2.420330472330159e-16,
+ -2.2995621028974166e-17,
+ 9.355412727974742e-17,
+ -1.8115255414911304e-16,
+ -3.6271869860450264e-17,
+ 4.597469844569728e-16,
+ -7.752750291153251e-17,
+ -8.69366823793232e-17,
+ -2.3467113978129395e-16,
+ 9.686284972995953e-17,
+ -1.7908460261773047e-16,
+ 1.6771086919512634e-16,
+ -2.1031067074160726e-17,
+ -4.177262093392789e-17,
+ -3.088692407273005e-16,
+ 1.323282184931706e-16,
+ -4.431620131752845e-17,
+ -8.445514054166411e-17,
+ -1.1307558973599888e-16,
+ 7.531996465178163e-17,
+ 1.5054687148465104e-16,
+ 2.6171994581177796e-16,
+ 8.197359870400503e-17,
+ 4.2475724454597965e-17,
+ 1.0407483069565624e-16,
+ 4.994102948288904e-17,
+ -2.729696021424991e-17,
+ 1.4663844309033798e-16,
+ -1.5720567541570288e-16,
+ 3.4782944757854814e-17,
+ 2.4019257037008538e-17,
+ -5.83575922156161e-17,
+ 8.067078923923401e-17,
+ -2.463964249642331e-17,
+ -3.9167002004385855e-16,
+ -5.719953935804186e-17,
+ -1.8327220446878017e-16,
+ 5.200898101427161e-17,
+ -2.6742749203839385e-16,
+ 1.0620999065180874e-16,
+ -7.643148859989974e-17,
+ -1.555099551599692e-17,
+ -4.384057246531047e-18,
+ 7.320548421094295e-17,
+ -3.385236656873266e-17,
+ -4.892773323251158e-17,
+ 1.075334796318936e-18,
+ -9.946846865950157e-17,
+ -1.0885696861197844e-15,
+ 3.212769499155959e-16
+ ],
+ [
+ 0.8380050076485684,
+ 0.4651492383309736,
+ -1.3040737143831236,
+ 3.4910529141008135,
+ -4.5458028049365895,
+ 4.063336929441472,
+ -2.250664970663464,
+ -0.2936247323516442,
+ 1.7163564636371964,
+ 2.4920297659137405,
+ -5.918359034771399,
+ -3.14312035189236,
+ 3.9692299813950194,
+ -2.0744345267823143,
+ -0.6136159356063736,
+ 1.8519851725273957,
+ 2.5338914273276973,
+ -5.117944643923767,
+ -2.9778743726612347,
+ 3.7986068572619094,
+ -1.7827134776501008,
+ -0.8072066664920453,
+ 3.2449619059637373,
+ -4.485164340122038,
+ 4.274197941144463,
+ -1.842149736412062,
+ -3.880289482639309,
+ -2.330475870138758,
+ -0.8638858516729047,
+ 3.3806589177863913,
+ -4.540557916972731,
+ 4.14769047873619,
+ -1.699863219819765,
+ -3.933050951884434,
+ -2.880240355081699,
+ -1.0869761297700955,
+ 3.5892979557543017,
+ -4.563487638742944,
+ 4.060179943257722,
+ -2.111313657348631,
+ -0.44761995124181625,
+ 2.8649822291954186,
+ -7.067107834965951,
+ -6.880308960415009,
+ -0.5397024378577469,
+ -0.2527102856943333,
+ 6.016981618450209,
+ 6.224741592625709,
+ -2.192762909827956,
+ -0.359713860822458,
+ 2.792329006116112,
+ -4.37039372772812,
+ 4.41723550230511,
+ -3.0334176163232236,
+ 0.5793222018910006,
+ 1.971732547547531,
+ 4.596892251590347,
+ 2.10744583072569,
+ -4.42575876109369,
+ 4.35979764093169,
+ -2.785082479822801,
+ 0.34954902363929197,
+ 1.468937538923763,
+ 4.440496941966856,
+ 2.225201741489549,
+ -4.498434802806827,
+ 4.249692449068847,
+ -2.626677112683553,
+ 0.0030362671109385596,
+ 2.495914819706926,
+ -4.189796745651098,
+ 2.9622462076456864,
+ 5.243670568995398,
+ -1.687859777132261,
+ -1.4129669490167585,
+ -0.19293748626585494,
+ 2.759391605642606,
+ -4.309945225371998,
+ 3.1000361502423317,
+ 5.993217024846473,
+ -1.4968948082583182,
+ -1.2277359862615087,
+ -0.5135267228845735,
+ 2.916301087156323,
+ -4.37242362359095,
+ 4.372198683726226,
+ -2.9157790427599086,
+ 0.5128209237884053,
+ 0.7061331053080002,
+ 0.5983349273424625,
+ -4.1168024167933215,
+ -3.544707154899181,
+ 1.5442504772358066,
+ 1.0616702342021995,
+ -3.320629126048049,
+ 4.531539599564544,
+ -4.175215547964593,
+ 2.465843507289604,
+ -0.17104889038443294,
+ -1.2103260069121082,
+ -5.336422301458057,
+ -2.55506149410017,
+ 4.5572011566608515,
+ -4.088871605572758,
+ 2.188930233280114,
+ 0.11251197497729441,
+ -0.672277245750419,
+ -4.820081866923009,
+ -2.5055643820057965,
+ 4.580584035183006,
+ -3.9333756316177824,
+ 2.014588777011593,
+ 0.7054134287415255,
+ -3.0602119440428335,
+ 4.4269162170402945,
+ -2.872527713703238,
+ -5.219978423335943,
+ 0.8992469407317965,
+ 0.9899870004698595,
+ 0.8984809304877139,
+ -3.292031321070977,
+ 4.4995284139580205,
+ -2.8329034955590506,
+ -5.614259068145965,
+ 0.5850981919384655,
+ 0.7758306154243609,
+ 1.2114012843801085,
+ -3.4279320502931108,
+ 4.532552606228003,
+ -4.107245366610473,
+ 2.3341625899620664,
+ 0.19736065453835375,
+ -3.234809050325555,
+ -3.00380539733674,
+ 2.204975372934724,
+ 2.4515138069801,
+ 8.075259458432368,
+ 8.183209255584293,
+ -4.151629130751582,
+ 2.418002406801078,
+ 0.09539652838587144,
+ -2.7018111740314383,
+ 4.283471829424338,
+ -4.479889177685524,
+ 2.211598269885458,
+ 4.75988500484788,
+ 1.7017211094862996,
+ 0.4313901937277585,
+ -2.85783050584951,
+ 4.350739880771235,
+ -4.40091714822394,
+ 2.0370470762404294,
+ 4.169941769573317,
+ 1.9175245855282361,
+ 0.6152659539940177,
+ -3.1019933671614854,
+ 4.441037508013307,
+ -4.341743317272011,
+ 2.7185240549224376,
+ -0.2676281254996185,
+ -2.2733315558535634,
+ 2.594127738958444,
+ 4.38046889778912,
+ 1.5753562583395406,
+ 0.4122019662934791,
+ -2.861665761888978,
+ 4.389121770428433,
+ -4.399799450450845,
+ 2.194290962381942,
+ 4.774824893343822,
+ 2.2215548630576984,
+ 0.7190307480445349,
+ -3.10561449525053,
+ 4.442486055961153,
+ -4.340442883258336,
+ 2.714855069020349,
+ -0.26294941911112296,
+ -2.2775549506499213,
+ 4.477175541535831,
+ 5.288226997551503,
+ 1.2664135178186854e-16,
+ -8.028615025439686e-16,
+ 2.6138907356675675e-16,
+ 1.3919381757736073e-16,
+ -5.4138971091595655e-17,
+ -1.0604455452929814e-16,
+ -1.0294262723222428e-16,
+ 3.123433993000232e-16,
+ -5.247633806036408e-16,
+ 1.3591611440011936e-16,
+ 1.3292792443727155e-16,
+ -2.326859063111667e-16,
+ 5.397353496908506e-16,
+ 5.6248281653605874e-18,
+ -1.7254987577856155e-16,
+ -3.7090778666877756e-16,
+ 5.2112378590840736e-18,
+ -2.10103875588469e-17,
+ 9.537392462736408e-17,
+ -1.6891028108332823e-16,
+ 2.0400341857089042e-17,
+ -5.335314950967028e-18,
+ 1.227536029028693e-16,
+ -4.0035541647566533e-17,
+ 6.054962083888163e-17,
+ -4.135903062765138e-16,
+ -3.027481041944081e-17,
+ -1.7850557618894335e-16,
+ -2.320448413364381e-16,
+ 2.8885146990351726e-16,
+ 7.449588596652566e-16,
+ -1.4872707413703438e-16,
+ 8.528232115421714e-17,
+ 1.8140070833287894e-16,
+ 2.3789714417025076e-16,
+ -6.197237149247282e-16,
+ 1.819797347616661e-17,
+ -8.143593130584556e-17,
+ -3.4942177025771267e-16,
+ 9.024540482953531e-17,
+ 2.1655588436638262e-16,
+ 3.0489877378704595e-16,
+ -3.695842976886927e-16,
+ 8.577862952174896e-17,
+ 2.486504921334401e-16,
+ -4.424175506239868e-16,
+ 1.922264345996667e-16,
+ -5.150646879214565e-16,
+ -9.711100391372544e-17,
+ -1.0687173514185116e-16,
+ 4.804264997707985e-16,
+ 2.774363774502855e-16,
+ -2.7975248316543396e-16,
+ -3.783524121817548e-16,
+ -5.810116622572466e-16,
+ 8.230447094902624e-17,
+ -9.45881030454387e-17,
+ 5.864710543000966e-17,
+ -1.0323214044661784e-16,
+ 1.5799149699762826e-16,
+ -2.004284473610128e-16,
+ -8.99972506457694e-17,
+ -2.6635215724207488e-17,
+ 1.6725591985822217e-16,
+ 2.0811864211834174e-16,
+ 3.4844983303796286e-16,
+ -3.594926942155458e-16,
+ -4.226892930145971e-17,
+ -6.578981001940505e-16,
+ -1.4095157637903592e-16,
+ 7.709323308994217e-17,
+ -6.565746112139657e-17,
+ -2.1837568171399928e-17,
+ 2.357464745776129e-16,
+ 1.4653504551376885e-16,
+ -3.1949851159860694e-17,
+ -4.800335889798358e-16,
+ -3.3194757981752996e-16,
+ 1.3036366453835716e-16,
+ -3.52347921674619e-16,
+ 1.5923226791645783e-17,
+ 9.098986738083303e-17,
+ -1.163015941249557e-16,
+ 4.706244095120451e-16,
+ -1.8677738231447362e-16,
+ 6.799424635185887e-17,
+ 4.623939624171424e-17,
+ -7.597653926299558e-17,
+ -2.1440521477374475e-16,
+ 2.9091942143489983e-16,
+ -7.485984543604899e-16,
+ 6.342820937056615e-16,
+ 4.582580593543773e-17,
+ 1.0228088274218186e-16,
+ -2.2929446579969927e-16,
+ -3.1039952486052363e-17,
+ -1.5587184667796115e-17,
+ -4.925033367140727e-16,
+ 7.901229211106519e-16,
+ 4.492417906775493e-16,
+ -1.048865016717239e-16,
+ 1.3549218433618591e-15,
+ -1.56006263527501e-16,
+ 3.056432363383437e-17,
+ -5.0685492034186765e-17,
+ 4.7902804754770095e-17,
+ -9.843449289381028e-17,
+ 1.2126467780027386e-16,
+ -1.5526180097620327e-16,
+ 1.287093033132511e-16,
+ 1.5981129434524492e-16,
+ -5.128519797828771e-17,
+ -2.5030485335854617e-16,
+ 2.101865936497243e-16,
+ -2.071260253832781e-16,
+ 1.4459117107426924e-16,
+ 5.39321759384574e-17,
+ 4.7314731038033177e-17,
+ 7.519071768107022e-17,
+ -2.779326858178173e-17,
+ -1.889280519071115e-16,
+ 1.8661194619196302e-16,
+ -7.848289651903126e-16,
+ -2.131644438549152e-16,
+ -3.329401965525936e-16,
+ -2.355810384551023e-16,
+ -1.768512149638373e-16,
+ 1.9579882087013008e-16,
+ -8.99972506457694e-17,
+ -4.1772620933927893e-16,
+ -3.4079841237184735e-16,
+ -2.5923840397411887e-16,
+ -4.992862177370075e-16,
+ 1.709782326147108e-16,
+ -2.9608930026335626e-16,
+ -4.513097422089319e-16,
+ 2.858115811523849e-16,
+ 7.235348818001332e-16,
+ 1.0563096422302162e-16,
+ -1.709782326147108e-16,
+ 8.39588321741323e-16,
+ 1.0587911840678753e-17,
+ -8.600610419020104e-17,
+ -2.4914680050097194e-16,
+ 5.892834683827769e-16,
+ 1.6163109169286158e-16,
+ 1.647743780205631e-16,
+ -3.860865509091256e-17,
+ 9.727644003623604e-17,
+ -1.7949819292400698e-16,
+ -3.8846469517021557e-16,
+ -2.425293556005477e-16,
+ 3.250819807333399e-17,
+ -3.2342761950823377e-16,
+ 3.7719435932418056e-17,
+ 6.547134548357214e-17,
+ -1.2391165576044355e-16,
+ -2.748617777937142e-16,
+ 3.066358530734073e-16,
+ 1.5964585822273432e-16,
+ 1.5741247056884114e-16,
+ 2.7958704704292335e-17,
+ -8.817745329815274e-17,
+ -3.1267427154504446e-17,
+ 7.924390268258004e-16,
+ 1.157535869691393e-16,
+ 1.9016882282594104e-16,
+ -6.274164946214715e-17,
+ 3.6782653888701753e-16,
+ -3.209202282764324e-16,
+ 1.7867101231145398e-17,
+ 3.6826080870860787e-16,
+ 1.9273308272485542e-17,
+ -6.89041450256672e-17,
+ 9.90135193225974e-17,
+ 1.4244050148163137e-16,
+ -5.1119761855777104e-17,
+ 1.2176098616780567e-16,
+ -1.8429584047681454e-16,
+ -8.529059296034267e-16
+ ],
+ [
+ 1.2413719048959706,
+ 0.8612053013526949,
+ -1.2672172439765022,
+ 2.6822271781822353,
+ -3.2277082505878547,
+ 2.671446720341899,
+ -1.252109171185626,
+ -0.5748352679068259,
+ 1.4134225350726553,
+ 2.1836765735516286,
+ -4.0637932920226465,
+ -2.1963306199498,
+ 2.591724225279905,
+ -1.121184926901369,
+ -0.7961417462392295,
+ 1.4845083109357389,
+ 2.1440366391772834,
+ -3.4861232809314306,
+ -2.0692658152371695,
+ 2.4503439826451507,
+ -0.9061791571414057,
+ -0.9290984598286135,
+ 2.5316126233760685,
+ -3.2141890157600437,
+ 2.8565203749017147,
+ -1.0993072721256354,
+ -2.429109751034099,
+ -2.010315918358881,
+ -0.8349549177254921,
+ 2.61512157871319,
+ -3.2273678457053063,
+ 2.7441404076979676,
+ -0.9894879262252564,
+ -2.4179498142538947,
+ -2.412621745499019,
+ -0.9863607125249034,
+ 2.7413238194129526,
+ -3.227363278789652,
+ 2.66875434731192,
+ -1.148541737221705,
+ -0.6815540839121419,
+ 2.2933102437447324,
+ -5.281408970046616,
+ -5.161688969785254,
+ -0.7384593502800908,
+ -0.5397277913532196,
+ 3.769209931488369,
+ 3.922710645034316,
+ -1.2089921233719536,
+ -0.6206829518240908,
+ 2.247050919256189,
+ -3.16911124798475,
+ 2.99146082188414,
+ -1.844663912787158,
+ 0.16749030967891002,
+ 0.9471913068884587,
+ 3.488723035303735,
+ 1.646934409546962,
+ -3.192661648344251,
+ 2.9358050685270087,
+ -1.6544286310842877,
+ 0.005304728558928789,
+ 0.6206389721131781,
+ 3.332730698414688,
+ 1.7171851221874768,
+ -3.218208394667666,
+ 2.8343811839157063,
+ -1.5342831043769989,
+ -0.3680344308039043,
+ 2.0566146657352187,
+ -3.0813345004508923,
+ 2.044051369080698,
+ 3.6889169683439476,
+ -0.7793719165384224,
+ -0.7763519376608264,
+ -0.5048372594869377,
+ 2.22606264430593,
+ -3.1413027750103732,
+ 2.126828162748803,
+ 4.18453891396856,
+ -0.5785087563916383,
+ -0.6252542713795763,
+ -0.7271093692445254,
+ 2.325825405602853,
+ -3.1700099137994764,
+ 2.947684338211188,
+ -1.7542714742162693,
+ -0.009083401270433,
+ 1.028077118939404,
+ 1.0754077397930244,
+ -2.3115716082100053,
+ -2.025389942682124,
+ 0.7318143930804349,
+ 1.102814999560494,
+ -2.5782377776949885,
+ 3.2258966441531567,
+ -2.768162004708817,
+ 1.4130356129713857,
+ 0.13378675496132633,
+ -0.37266039221568253,
+ -3.953779993343691,
+ -1.9353500746157857,
+ 3.228157607998094,
+ -2.6931906812240594,
+ 1.2061089614275637,
+ 0.3194323417545841,
+ -0.04985757014912613,
+ -3.54009022980724,
+ -1.8835946630572882,
+ 3.2186172196778307,
+ -2.561681612545642,
+ 1.0769064416985885,
+ 0.8592283658107491,
+ -2.4164789088294154,
+ 3.193061829934927,
+ -1.9446236121599827,
+ -3.606593863289029,
+ 0.21141822251867082,
+ 0.4653450883105524,
+ 0.9915533206170135,
+ -2.5606668094313965,
+ 3.2185625896908094,
+ -1.901824732166657,
+ -3.84616258143482,
+ -0.04885724757193758,
+ 0.3086465329216183,
+ 1.2044798852114407,
+ -2.64389030442894,
+ 3.2260648932943883,
+ -2.7090602308552802,
+ 1.3143857827409264,
+ 0.5078844530131804,
+ -2.8722710259919886,
+ -2.7105992247850477,
+ 1.2256962704006495,
+ 1.4102143761207124,
+ 5.5813668565360945,
+ 5.673375426611294,
+ -2.7468954640474905,
+ 1.3767741918553094,
+ 0.4367917126428323,
+ -2.1887645054377427,
+ 3.1277829889984696,
+ -3.0550212276075617,
+ 1.383044636793087,
+ 3.0754278298339908,
+ 1.6299133149816774,
+ 0.5415809125025043,
+ -2.288310205363328,
+ 3.15962101159575,
+ -2.9746101467487254,
+ 1.2488046597134568,
+ 2.659040246072317,
+ 1.7358515260910121,
+ 0.6660535731153171,
+ -2.4421879428184146,
+ 3.197860755299827,
+ -2.9181291952371446,
+ 1.603416744020437,
+ 0.1823355441578803,
+ -1.9114964910430046,
+ 1.933357767985672,
+ 3.116892176212653,
+ 1.5065479401852353,
+ 0.5269568487281863,
+ -2.291246253773803,
+ 3.1775100535266807,
+ -2.9742386181466207,
+ 1.3534040883917262,
+ 3.0478907522075893,
+ 2.0037936200024014,
+ 0.7501346119091242,
+ -2.444996791713673,
+ 3.199280702716699,
+ -2.917627339253398,
+ 1.6011161923782704,
+ 0.18556498312786351,
+ -1.9146478721436873,
+ 3.5294713837961806,
+ 4.201069567151711,
+ 7.349499742533651e-17,
+ -8.670920771087112e-16,
+ 1.623755542441593e-16,
+ 9.077467117459853e-17,
+ -3.4203918329067694e-17,
+ -7.907846656006943e-17,
+ -4.79764755280756e-18,
+ 2.568395801977151e-16,
+ -3.287629344592008e-16,
+ 9.086579028895008e-17,
+ 8.428970441915351e-17,
+ -2.6444964183320295e-16,
+ 3.6938525735379714e-16,
+ -3.542400973258341e-17,
+ -1.2366350157667764e-16,
+ -1.6394719740801006e-16,
+ 3.3873046084046483e-17,
+ 3.044024654195142e-17,
+ 8.362795992911109e-17,
+ -1.283784310682299e-16,
+ 2.566327850445768e-17,
+ 2.88169045898161e-17,
+ 9.489829577514609e-17,
+ -7.237830359838992e-18,
+ 5.293955920339376e-18,
+ -2.7942161092041275e-16,
+ -1.5137405209720406e-17,
+ -1.2908153458889997e-16,
+ -1.8242434434091332e-16,
+ 1.5517908291494797e-16,
+ 5.069789974337507e-16,
+ -1.2391165576044355e-16,
+ -1.0391973433080255e-16,
+ 1.2753057094036304e-16,
+ 1.8429584047681454e-16,
+ -3.781869760592442e-16,
+ 5.901933670565852e-17,
+ -3.5982356646056704e-17,
+ -2.2155515719349998e-16,
+ -1.526148230160336e-17,
+ 1.919059021123024e-16,
+ 1.560889815887563e-16,
+ -2.8603905582083697e-16,
+ 6.646396221863577e-17,
+ 1.7221900353354034e-16,
+ -2.675980980397329e-16,
+ 1.4002616806874222e-16,
+ -2.7330047438752034e-16,
+ -1.2639319759810263e-16,
+ -7.861317746550836e-17,
+ 3.0034928041800435e-16,
+ 1.6810377998608902e-16,
+ -2.0021906726846032e-16,
+ -2.456726419282492e-16,
+ -3.4361082645452765e-16,
+ 5.517294685728694e-17,
+ -6.429778298951253e-17,
+ 6.28657265540301e-17,
+ -7.444625512977249e-17,
+ 9.810362064878907e-17,
+ -1.495542547495874e-16,
+ -8.809473523689744e-17,
+ -3.5734202462290796e-17,
+ 1.2904017555827232e-16,
+ 1.6080391108030856e-16,
+ 2.702812651517018e-16,
+ -2.488159282559507e-16,
+ -5.283099174799618e-17,
+ -4.3175726047970966e-16,
+ -9.400907661665158e-17,
+ 1.0637542677431935e-16,
+ -2.8000063734919987e-17,
+ 2.8951321439355965e-18,
+ 1.4864435607577907e-16,
+ 1.889280519071115e-16,
+ -5.0871607672011194e-18,
+ -3.4183238813753864e-16,
+ -2.328513424336773e-16,
+ 9.256151054468378e-17,
+ -2.2379371472622164e-16,
+ 2.0090149127381657e-17,
+ 4.764560328305439e-17,
+ -6.911094017880546e-17,
+ 3.176683744933333e-16,
+ -1.3478132599727317e-16,
+ 7.998836523387776e-17,
+ 6.973132563822023e-17,
+ -3.124674763919062e-17,
+ -1.343341314786117e-16,
+ 2.42612073661803e-16,
+ -4.3964649557193416e-16,
+ 2.4104043049795226e-16,
+ -1.8363409598677214e-17,
+ 1.2177132592546259e-16,
+ -1.019913695277883e-16,
+ -3.4887634804131056e-17,
+ 4.8286668257782984e-17,
+ -3.1929171644546863e-16,
+ 5.09543257332665e-16,
+ 3.330229146138489e-16,
+ -6.964860757696493e-17,
+ 9.093713461678279e-16,
+ -1.257314531080602e-16,
+ 2.890996240872832e-17,
+ -1.0504418297599182e-16,
+ -1.627477855198082e-17,
+ -6.129408339017935e-17,
+ 7.403266482349598e-17,
+ -9.477421868326313e-17,
+ 6.787016925997592e-17,
+ 8.308770759153739e-17,
+ -7.262645778215583e-17,
+ -2.1279221257926634e-16,
+ 1.6316137582608468e-16,
+ -1.3971080546020637e-16,
+ 5.343586757092558e-17,
+ 5.98878763488392e-17,
+ 5.649643583737179e-17,
+ 3.2673634195844593e-17,
+ -1.766030607800714e-17,
+ -1.406207041340147e-16,
+ 1.0620999065180874e-16,
+ -4.540394382303569e-16,
+ -1.258141711693155e-16,
+ -2.2507584467567883e-16,
+ -1.4426029882924803e-16,
+ -1.2738581433316626e-16,
+ 8.891157609179355e-17,
+ -5.600012746983997e-17,
+ -2.6213353611805447e-16,
+ -2.2863272130965685e-16,
+ -1.5236666883226767e-16,
+ -2.4616895029578104e-16,
+ 1.492233825045662e-16,
+ -1.7330984796634464e-16,
+ -2.87341865285608e-16,
+ 1.8918654584853432e-16,
+ 4.4334812881310896e-16,
+ 5.550381910230815e-17,
+ -1.3201802576346322e-16,
+ 5.989614815496473e-16,
+ -4.255844251585327e-17,
+ -3.605990482848355e-17,
+ -1.255660169855496e-16,
+ 2.7379678275505216e-16,
+ 8.056739166266488e-17,
+ 1.0600319549867048e-16,
+ 4.1048837897944e-18,
+ 1.2978463810957004e-16,
+ -1.3383782311107988e-16,
+ -2.760094908936315e-16,
+ -1.9976411793155616e-16,
+ 2.2333876538931747e-18,
+ -1.654361225106055e-16,
+ 1.9422200782745087e-16,
+ 4.8359046561381374e-17,
+ -6.766337410683766e-17,
+ -1.6233419521353166e-16,
+ 2.1845839977525458e-16,
+ 1.4823076576950256e-16,
+ 1.0600319549867048e-16,
+ -5.459392042849982e-18,
+ -5.434576624473391e-17,
+ -8.147729033647323e-18,
+ 5.713336490903762e-16,
+ 9.077273247003786e-17,
+ 1.3863547066388744e-16,
+ -6.162495563520056e-17,
+ 2.612029579289323e-16,
+ -2.358317775782824e-16,
+ 3.6892255319865034e-17,
+ 1.8429584047681454e-16,
+ 2.613890735667567e-17,
+ -2.4649982254080222e-17,
+ 6.452008777913616e-17,
+ 7.833400400877171e-17,
+ -4.168990287267259e-17,
+ 8.09809819689414e-17,
+ -1.5013328117837452e-16,
+ -4.791030107907136e-16
+ ],
+ [
+ 5.371516740945347,
+ 4.433356135720591,
+ -2.754821037215771,
+ 1.3861032513866371,
+ 0.42899178610499605,
+ -2.185460053953507,
+ 3.1297923709766735,
+ -3.0616615060906356,
+ 1.4802321518663881,
+ 3.2579950245293943,
+ 1.7263428191166188,
+ 0.5952669085954896,
+ -2.2853931482156855,
+ 3.162019269841678,
+ -2.9817061730116508,
+ 1.25479117350622,
+ 2.6691209822068465,
+ 1.7296041497022387,
+ 0.661752524129979,
+ -2.4399048229874887,
+ 3.200872001212984,
+ -2.9254823816474502,
+ 1.6127361069251784,
+ 0.17417073423748103,
+ -1.9072406485607383,
+ 1.9337457447198647,
+ 3.115794461326305,
+ -2.778655039991137,
+ -1.786859618751442,
+ 1.4916534876596552,
+ 0.3999537589689536,
+ -2.0855031914880353,
+ 1.9944426779356852,
+ 3.5308116710088107,
+ -2.8275668450033775,
+ -1.7067988085746717,
+ 1.2869557141631278,
+ 0.5394569843523096,
+ -2.188999642943829,
+ 3.1556342276743377,
+ -3.0250020583691186,
+ 1.9142377285520038,
+ -1.5550265039133435,
+ -1.6816110908714952,
+ -2.9448244654911617,
+ -3.0144487260158606,
+ -4.810477041094954,
+ -4.77960194835143,
+ 3.1412481801578234,
+ -3.0463296378811333,
+ 1.9660109754729946,
+ -0.14375298896747804,
+ -1.6392551415691652,
+ 2.8936250233032488,
+ -2.1110417053183204,
+ -4.004654884068526,
+ 1.4614523402334991,
+ 1.0707901236068524,
+ -0.0055953856568357494,
+ -1.7592601471456728,
+ 2.987459758948425,
+ -2.081237831059755,
+ -3.7003907125558184,
+ 1.0971775692460353,
+ 0.9470073722015472,
+ 0.22099083150412338,
+ -1.9448957122428885,
+ 3.03719117826026,
+ -3.122045993432378,
+ 2.1628786812102465,
+ -0.5019252227245863,
+ -0.7793167611055082,
+ -0.7841121318430515,
+ 3.693314961099035,
+ 2.0468672956118033,
+ -3.0837625526520975,
+ 1.9893340429473807,
+ -0.27687275389654004,
+ -0.919317585417718,
+ -1.1633851397003332,
+ 4.225703414368058,
+ 2.1944674423853314,
+ -3.008313347585639,
+ 1.876287134029452,
+ -0.13895290074281433,
+ -1.734500983820717,
+ 2.940392236502092,
+ -3.195597408010989,
+ 4.374891717413352,
+ 5.429656785995459,
+ 5.54544849498484,
+ 4.479263859785653,
+ -3.220912865351567,
+ 2.8427568526184466,
+ -1.545692944859134,
+ -0.35749686058085195,
+ 2.050366559019032,
+ -3.081445249668769,
+ 2.168530146880236,
+ 4.21866233546373,
+ -0.8853030054681458,
+ -0.7805241510671882,
+ -0.49450984419709976,
+ 2.1574381593122727,
+ -3.1422243180469858,
+ 2.0094228291056555,
+ 3.668375465662641,
+ -0.5371058926729341,
+ -0.6451194998752123,
+ -0.717182232886565,
+ 2.3206926613324943,
+ -3.171422525883023,
+ 2.95539211322531,
+ -1.7654749626045074,
+ 0.00193247851251419,
+ 1.0721254114725605,
+ 1.3342891589524104,
+ -3.6863971414385914,
+ -2.0969564082488668,
+ 2.897027916966828,
+ -1.571455231053385,
+ -0.22464910695022608,
+ 1.1920479773578099,
+ 1.71209526394252,
+ -3.97059516349431,
+ -2.11586324179474,
+ 2.7894144384708968,
+ -1.4467050950576477,
+ -0.36225825102444004,
+ 2.1353709375561425,
+ -3.112449252766135,
+ 3.0825608391021975,
+ -4.547245840059439,
+ -4.588872917258608,
+ -3.074639050966336,
+ -3.0180841162532035,
+ -2.0473550261955515,
+ -1.9279489458681527,
+ 2.0862673518001715,
+ -3.096266040429771,
+ 3.103195239763239,
+ -2.0250166977197908,
+ 0.32389231149200726,
+ 1.4843767757193902,
+ -1.7880239729845044,
+ -3.015229353081833,
+ 3.39489201919254,
+ 1.9433391854970414,
+ -1.9155428240701797,
+ 0.1832500179404629,
+ 1.682151801700152,
+ -1.8584207200519047,
+ -2.9384870589936853,
+ 2.9757270630904817,
+ 1.874659365729517,
+ -1.728158924779298,
+ -0.04348961131165784,
+ 1.7985353573050669,
+ -3.012799735291255,
+ 3.1653336595928514,
+ -2.2928706845660862,
+ 0.5261297367926251,
+ 1.5061407064123318,
+ 3.1231045132684656,
+ 1.936718430094384,
+ -1.9169576066325082,
+ 0.10068428536990273,
+ 1.6784494588168886,
+ -1.9327128057428233,
+ -3.3382760892974033,
+ 3.3860951469566616,
+ 1.952597542812333,
+ -1.7298156887710947,
+ -0.040282610355933154,
+ 1.7948373751739257,
+ -3.009893943865553,
+ 3.1641112693080227,
+ -2.2937485365516332,
+ 2.533166078262495,
+ 3.2638092654772253,
+ -6.895377586242038e-16,
+ -2.1844185616300355e-15,
+ -2.4964310886850375e-16,
+ -2.0103073824452798e-16,
+ 8.619221982802547e-17,
+ 5.657915389862709e-17,
+ 4.69094125378822e-16,
+ 4.792684469132242e-16,
+ 7.092246572029658e-16,
+ -3.697497338112034e-17,
+ -1.7618947047379487e-16,
+ -8.976564007425456e-16,
+ -8.850832554317395e-17,
+ -2.2036091518412655e-16,
+ -2.249931266144235e-17,
+ 8.806164801239532e-16,
+ 2.3227231600489017e-16,
+ 2.718115492849249e-16,
+ 1.7320645038977551e-16,
+ -1.4219234729786546e-16,
+ 5.856438736875436e-17,
+ 2.0282468619800236e-16,
+ 5.368402175469149e-17,
+ 5.407693254565418e-17,
+ -3.4642324053720794e-16,
+ 1.7817470394392214e-16,
+ 6.931773533194372e-17,
+ 1.9852334701272664e-18,
+ -3.392267692079966e-16,
+ -4.867957904874568e-16,
+ -3.0804206011474746e-16,
+ -1.7304618414609336e-16,
+ -9.694556779121484e-16,
+ -1.5104317985218283e-16,
+ 8.859104360442925e-17,
+ 6.78949846783525e-16,
+ 2.415367388654841e-16,
+ 9.157923356727706e-17,
+ 2.547716286663325e-16,
+ -6.822999282643648e-16,
+ 1.194448804526572e-16,
+ -4.880365614062863e-16,
+ -2.5510250091135373e-16,
+ 1.1952759851391248e-17,
+ -1.9686898578762056e-17,
+ 4.403909581232319e-16,
+ -1.4517019750305636e-17,
+ 6.998258174928321e-16,
+ -3.7115594085254347e-16,
+ 1.1911400820763597e-17,
+ -2.809105360230082e-16,
+ -1.689723196292697e-16,
+ -7.466339004056766e-17,
+ 2.0299012232051297e-16,
+ 6.840783665813538e-16,
+ -3.494838088036542e-17,
+ 8.875647972693986e-17,
+ 2.789666615835086e-17,
+ 1.7701665108634792e-17,
+ -6.480960099352972e-17,
+ -2.5617783570767267e-16,
+ -1.9372569945991906e-16,
+ -1.607625520496809e-16,
+ 9.421587176978984e-17,
+ 9.959254575138452e-17,
+ 1.564198538337775e-16,
+ 3.146801845304855e-16,
+ -1.8545389333438878e-16,
+ 3.4907021849737763e-16,
+ 7.498392252793196e-17,
+ 3.7074235054626695e-16,
+ 1.8834902547832438e-16,
+ 1.4954908487075895e-16,
+ -1.6709048373571157e-16,
+ 8.021170399926708e-16,
+ 1.0257039595657542e-16,
+ -2.613890735667567e-17,
+ 2.307833909022947e-17,
+ -3.159829939952566e-17,
+ 2.576719306890966e-16,
+ 1.7205356741102976e-17,
+ 1.7867101231145398e-17,
+ 9.570479687238529e-17,
+ -1.8556763066861482e-16,
+ 9.239607442217318e-17,
+ 1.8843174353957968e-16,
+ 2.863699280658582e-16,
+ 1.2176098616780567e-16,
+ 3.100272935848747e-16,
+ 2.517937784611416e-16,
+ 3.571765885003973e-16,
+ -1.0496921973297921e-15,
+ -3.30872245021211e-16,
+ 4.323673061814675e-16,
+ 4.973009842668802e-16,
+ -4.3304520654284885e-17,
+ 2.0835645654445073e-16,
+ 2.240005098793599e-16,
+ -3.6759906421856545e-16,
+ 1.4227506535912076e-16,
+ -1.0434883427356443e-16,
+ -3.596581303380564e-16,
+ -2.0299012232051297e-16,
+ 6.170767369645586e-17,
+ -3.723139937101177e-16,
+ -1.0066788054770346e-16,
+ 8.023651941764367e-17,
+ -1.431849640329291e-16,
+ 1.6857940883830702e-16,
+ -1.9103736246912172e-16,
+ -2.0629884477072508e-16,
+ -1.0389388493666026e-16,
+ -2.1060018395600082e-16,
+ 9.29751008509603e-17,
+ 1.0149506116025648e-16,
+ -2.7694006908275367e-16,
+ 2.6767564622215976e-16,
+ 1.9533870165439746e-16,
+ -1.2358078351542233e-16,
+ -7.684507890617626e-17,
+ -5.1450634100798315e-17,
+ -2.8103461311489115e-17,
+ 7.086042717435511e-16,
+ 1.5261482301603358e-16,
+ 1.0263760438134535e-16,
+ 3.8612790993975327e-16,
+ 6.297946388825614e-17,
+ -3.303759366536792e-16,
+ 6.598833336641778e-17,
+ 1.9753073027766298e-16,
+ -3.90429249125029e-17,
+ 2.823787816102898e-16,
+ 5.314842230806341e-16,
+ 2.5431667932942836e-16,
+ 3.7123865891379877e-16,
+ 7.014491594449675e-17,
+ -1.686517871419054e-16,
+ -6.576085869796569e-16,
+ -3.90429249125029e-17,
+ -7.659692472241035e-17,
+ -2.0232837783047054e-16,
+ -3.2582644328463755e-16,
+ 2.189547081427864e-16,
+ 4.37413107918041e-16,
+ -9.850066734281454e-16,
+ -4.3278089648774403e-16,
+ -1.1398548840980721e-16,
+ 2.782635580628385e-16,
+ 4.542875924141228e-16,
+ -4.466775307786349e-17,
+ 5.153335216205362e-17,
+ -2.7636104265396655e-16,
+ -2.1159280069106445e-16,
+ 5.586777857183149e-16,
+ 1.014123430990012e-15,
+ -5.335314950967028e-17,
+ 2.4302566396807953e-16,
+ 2.7594745234769003e-16,
+ -7.246102165964522e-17,
+ 1.1601208091056213e-16,
+ -1.675971318609003e-16,
+ -6.80149258671727e-17,
+ 8.437242248040882e-18,
+ 7.535615380358081e-17,
+ -1.6440214674491423e-18,
+ 5.343586757092558e-17,
+ 8.900463391070577e-17,
+ -1.078643518769148e-16,
+ 2.928219368437718e-17,
+ -8.677124625681259e-17,
+ 2.3690452743518713e-16,
+ -6.230324373749403e-16,
+ 6.807696441311418e-17,
+ 3.2094607767057474e-17,
+ -2.2664748783952955e-17,
+ -1.9322939109238724e-16,
+ -7.643148859989974e-17,
+ 2.283018490646356e-17,
+ 7.476885556866816e-16,
+ 5.772066314395027e-16
+ ],
+ [
+ 7.243587539207613,
+ 6.005323553074762,
+ -3.6112461586386253,
+ 1.4808454477653967,
+ 1.1254986850298054,
+ -3.469413441416544,
+ 4.545387219951826,
+ -4.150527702943753,
+ 1.8199730946363262,
+ 4.158221705352409,
+ 3.06176728241887,
+ 1.1864648859507572,
+ -3.594864376036658,
+ 4.568541590342358,
+ -4.003279145759761,
+ 1.4957079358376755,
+ 3.348257812260334,
+ 2.9713104374307076,
+ 1.2577567712890492,
+ -3.785851027748862,
+ 4.58705679610649,
+ -3.9034653275218965,
+ 1.8198411219409005,
+ 0.7699626917969572,
+ -3.1140857486824176,
+ 2.8619181697025584,
+ 4.7194951984409315,
+ -3.5221147178065855,
+ -2.340227042041102,
+ 1.638227345827016,
+ 1.0851811329937082,
+ -3.3427712028985606,
+ 2.928019744698184,
+ 5.293092200757984,
+ -3.5237833175114543,
+ -2.20432729744897,
+ 1.3336606947750898,
+ 1.2786043207915827,
+ -3.473876977769275,
+ 4.564184962514109,
+ -4.082151086732823,
+ 2.277058472908614,
+ -1.2877056357776846,
+ -1.4829015660136466,
+ -3.9616292140430516,
+ -4.090839825958945,
+ -7.2895512291341245,
+ -7.271972725276193,
+ 4.554179262290686,
+ -4.121732162034915,
+ 2.3564487130080507,
+ 0.3217444891121522,
+ -2.76470542981383,
+ 4.315361867011379,
+ -2.9545313272052725,
+ -5.708257466817551,
+ 1.4527163917923185,
+ 1.2138815737000792,
+ 0.5171743410870795,
+ -2.9219428522435646,
+ 4.414185991798299,
+ -2.8865413634946324,
+ -5.232697690769417,
+ 0.9732914888095155,
+ 1.0307040453331962,
+ 0.8355403326324711,
+ -3.162655595300971,
+ 4.463383999790251,
+ -4.268252848943834,
+ 2.6607204923887453,
+ -0.18929918142792307,
+ -1.416615459231848,
+ -1.6937111764182973,
+ 5.248985601319628,
+ 2.9656630045807355,
+ -4.192678059248429,
+ 2.392239959575371,
+ 0.13259955711621726,
+ -1.6243386744834372,
+ -2.301068988883574,
+ 5.954121751061389,
+ 3.1454689825137465,
+ -4.051522798604041,
+ 2.2190973255056377,
+ 0.32854779848092286,
+ -2.8895660831797985,
+ 4.36533566139329,
+ -4.429249736821588,
+ 5.89682274014602,
+ 7.351484066696321,
+ 8.068922862541067,
+ 6.543588879524004,
+ -4.586167743444108,
+ 3.760202464523788,
+ -1.7192163515455712,
+ -1.0260729514689293,
+ 3.2980102617206817,
+ -4.5048023886709565,
+ 2.9847057065180316,
+ 5.910513066451867,
+ -0.5774126078363265,
+ -0.7640020398942928,
+ -1.2164154097106392,
+ 3.434138168592895,
+ -4.5550484150608685,
+ 2.733577857047492,
+ 5.094459330392845,
+ -0.1626500169517517,
+ -0.5847710410663336,
+ -1.5235853346068728,
+ 3.63886782444843,
+ -4.57429037264232,
+ 3.9564282818793646,
+ -2.05054556093519,
+ -0.5223189491367713,
+ 1.806251803641846,
+ 2.4430049298971936,
+ -5.146010681128143,
+ -2.983974673690573,
+ 3.8537492970481004,
+ -1.7578257475628334,
+ -0.8406705930384718,
+ 1.9654899034642468,
+ 3.0062301905913347,
+ -5.497261271345991,
+ -2.984425063345227,
+ 3.6695330224328795,
+ -1.5711749024355206,
+ -1.0327012602499095,
+ 3.4061478794343714,
+ -4.531570234936111,
+ 4.190519084281562,
+ -5.832570156952834,
+ -5.916875023588873,
+ -4.464564438545019,
+ -4.416488342732042,
+ -3.756372692843505,
+ -3.6059402124531035,
+ 3.344286092942624,
+ -4.519388849978063,
+ 4.230816798454027,
+ -2.4478436656784863,
+ -0.06518331569306972,
+ 2.5604162031922697,
+ -2.706521824578084,
+ -4.686321890942198,
+ 4.439087576261473,
+ 2.605426931563709,
+ -2.279688865870749,
+ -0.265420901318665,
+ 2.8214134540409295,
+ -2.7820566903680697,
+ -4.511456544708707,
+ 3.840488130501835,
+ 2.489734997549722,
+ -1.9945788543401461,
+ -0.5860865033112616,
+ 2.9734949850956895,
+ -4.440926192235613,
+ 4.358808878711443,
+ -2.864816269854594,
+ 0.41160790691201854,
+ 1.5758146623046891,
+ 4.389013766904788,
+ 2.5986513311803425,
+ -2.2811681944259097,
+ -0.3828409714514544,
+ 2.8162196210596426,
+ -2.902261992853474,
+ -5.129706394180005,
+ 4.3654132368540965,
+ 2.5839726779372216,
+ -1.9964140869885156,
+ -0.5818736074197596,
+ 2.9682864859542986,
+ -4.436517106841396,
+ 4.35658143062932,
+ -2.8655136685534983,
+ 2.9319640568337353,
+ 3.8345863172596126,
+ -1.0290126820159664e-15,
+ -2.855427474533051e-15,
+ -3.805030817743927e-16,
+ -2.9642017250837747e-16,
+ 1.4256457857351432e-16,
+ 9.934439156761861e-17,
+ 6.512392962629986e-16,
+ 5.959009132832011e-16,
+ 1.0247113428306907e-15,
+ -6.600901288173161e-17,
+ -2.474924392758659e-16,
+ -1.1745964698252993e-15,
+ -1.8776999904953726e-16,
+ -3.0804206011474746e-16,
+ -3.3087224502121103e-18,
+ 1.1750927781928311e-15,
+ 3.0522964603206716e-16,
+ 3.7587087034409573e-16,
+ 2.2163787525475528e-16,
+ -1.4988512699460861e-16,
+ 7.328820227219825e-17,
+ 2.6800651846718097e-16,
+ 6.071505696139223e-17,
+ 7.94506978357183e-17,
+ -4.686805350725455e-16,
+ 3.027481041944081e-16,
+ 9.496033432108756e-17,
+ 2.1175823681357505e-17,
+ -4.225238568920865e-16,
+ -6.850709833164174e-16,
+ -4.834043499759894e-16,
+ -2.1837568171399928e-16,
+ -1.255991042100517e-15,
+ -2.2499312661442353e-16,
+ 1.1150394657214813e-16,
+ 9.747496338324878e-16,
+ 3.1317057991257623e-16,
+ 1.312735632121655e-16,
+ 3.9456515218779415e-16,
+ -9.19907559220222e-16,
+ 1.0323214044661784e-16,
+ -6.771300494359084e-16,
+ -3.027481041944081e-16,
+ 7.237830359838992e-18,
+ -6.154223757394526e-17,
+ 6.054962083888162e-16,
+ -4.375785440405516e-17,
+ 9.992878174569027e-16,
+ -4.966392397768378e-16,
+ 2.3822801641527194e-17,
+ -4.2554306612790504e-16,
+ -2.6004490507135808e-16,
+ -6.738420065010102e-17,
+ 3.0167276939808914e-16,
+ 1.0169358450726922e-15,
+ -4.6042940846232897e-17,
+ 1.2796484076195338e-16,
+ 3.6561383074843823e-17,
+ 2.5890753172909763e-17,
+ -1.138200522872966e-16,
+ -3.3153398951125344e-16,
+ -2.241659460018705e-16,
+ -2.279502973043006e-16,
+ 1.1166938269465874e-16,
+ 1.0902240473448904e-16,
+ 1.679176643482646e-16,
+ 4.844124763475384e-16,
+ -2.402649486736838e-16,
+ 5.515640324503589e-16,
+ 1.3189394867158026e-16,
+ 4.724855658902894e-16,
+ 2.481541837659083e-16,
+ 2.0214226219264611e-16,
+ -2.1953373457157352e-16,
+ 1.0298398626285195e-15,
+ 1.558408274049904e-16,
+ 2.0183206946293872e-17,
+ 7.411538288475128e-17,
+ -7.014491594449675e-17,
+ 4.062594180977626e-16,
+ 2.1506695926378716e-17,
+ 1.8363409598677214e-17,
+ 1.402071138277382e-16,
+ -3.146595050151717e-16,
+ 1.6113478332532977e-16,
+ 2.360773468226341e-16,
+ 3.8877488789992296e-16,
+ 1.9447016201121678e-16,
+ 5.489170544901892e-16,
+ 2.451763335607174e-16,
+ 5.714163671516315e-16,
+ -1.487105305247833e-15,
+ -4.556110813942076e-16,
+ 5.633099971486118e-16,
+ 6.872216529090553e-16,
+ -4.1782960691584804e-17,
+ 2.808484974770667e-16,
+ 3.5618397176533367e-16,
+ -5.647989222512073e-16,
+ 1.3516131209116472e-16,
+ -1.365054805865634e-16,
+ -6.471861112614888e-16,
+ -2.5824578723905524e-16,
+ 1.1249656330721176e-16,
+ -4.2814868505744708e-16,
+ -1.4475660719677984e-16,
+ 1.138200522872966e-16,
+ -2.0491331724469876e-16,
+ 2.006740166053645e-16,
+ -2.689164171409893e-16,
+ -2.8570818357581576e-16,
+ -1.3251433413099503e-16,
+ -2.387243247828038e-16,
+ 8.40415502353876e-17,
+ 1.589841137326919e-16,
+ -3.5833464135797154e-16,
+ 3.5899638584801396e-16,
+ 2.683373907122022e-16,
+ -1.9918509150276904e-16,
+ -8.03399169942128e-17,
+ -5.525566491854224e-17,
+ -5.4138971091595655e-17,
+ 1.0493199660541433e-15,
+ 2.324377521274008e-16,
+ 1.8632243297756946e-16,
+ 5.399835038746165e-16,
+ 1.0753347963189359e-16,
+ -4.422521145014762e-16,
+ 1.2137324525567144e-16,
+ 3.1366688828010805e-16,
+ -1.3896634290890865e-17,
+ 4.091648899993551e-16,
+ 7.782942383511436e-16,
+ 2.9977025398921723e-16,
+ 5.406452483646589e-16,
+ 1.1894857208512538e-16,
+ -2.5791491499403403e-16,
+ -9.089060570732668e-16,
+ -3.374896899216353e-17,
+ -8.172544452023912e-17,
+ -3.7884872054928663e-16,
+ -4.212417269426293e-16,
+ 2.893477782710491e-16,
+ 6.197237149247282e-16,
+ -1.3572379490770076e-15,
+ -6.010294330810299e-16,
+ -1.743696731261782e-16,
+ 3.3517358420648676e-16,
+ 5.869673626676284e-16,
+ -3.4576149604716557e-17,
+ 1.167151844312322e-16,
+ -3.4948380880365414e-16,
+ -2.898440866385809e-16,
+ 7.768880313098035e-16,
+ 1.3329188390679486e-15,
+ -8.081554584643079e-17,
+ 3.6528295850341697e-16,
+ 3.747128174865215e-16,
+ -9.926167350636331e-17,
+ 1.2972259956362857e-16,
+ -2.5253824101243935e-16,
+ -1.0777129405800258e-16,
+ 1.1663246636997689e-17,
+ 1.0736804350938298e-16,
+ -1.5645087310674825e-16,
+ 4.979627287569226e-17,
+ 9.462946207606635e-17,
+ -1.431022459716738e-16,
+ 3.1432863277015048e-18,
+ -8.09809819689414e-17,
+ 3.0440246541951414e-16,
+ -8.791275550213577e-16,
+ 9.148617574836485e-17,
+ 4.971355481443696e-17,
+ -3.680953725860973e-17,
+ -2.7296960214249913e-16,
+ -8.180816258149442e-17,
+ 1.737079286361358e-17,
+ 1.0802978799942541e-15,
+ 8.806164801239532e-16
+ ],
+ [
+ -5.115121571408891,
+ -4.191467495694834,
+ 2.7198231318265425,
+ -1.7777199893084192,
+ 0.18740150166363131,
+ 1.4724756945181507,
+ -2.6347853958082013,
+ 2.8706325935591517,
+ -1.6080009282408665,
+ -3.367481266138648,
+ -0.817338104912718,
+ -0.13456581354199904,
+ 1.579021185703937,
+ -2.6874571353809205,
+ 2.839803557034547,
+ -1.41613584250382,
+ -2.8245730652451955,
+ -0.9273017362347423,
+ -0.21856799234495525,
+ 1.744840476916879,
+ -2.763516353764394,
+ 2.812398620777266,
+ -1.9558980409263425,
+ 0.41661485783119656,
+ 1.1851754578948537,
+ -1.5550402414337148,
+ -2.3837581520495568,
+ 2.8994061168626195,
+ 1.7797145150755054,
+ -1.8603529250780269,
+ 0.21461007704089105,
+ 1.369004391180646,
+ -1.6305786956995496,
+ -2.7632581079117684,
+ 3.018403490364699,
+ 1.7349443172757917,
+ -1.6984554580951512,
+ 0.08684474508674857,
+ 1.4761989759264862,
+ -2.6774522660162026,
+ 2.8570271093180777,
+ -2.1859587316430034,
+ 2.3924382112846336,
+ 2.485382896535229,
+ 2.814949540707456,
+ 2.8414605602386973,
+ 3.676758207798909,
+ 3.6202564422441306,
+ -2.653169035716344,
+ 2.8651478863973563,
+ -2.2244778983669313,
+ 0.6974299394297769,
+ 0.9164326099210696,
+ -2.310228019446205,
+ 1.888868726805831,
+ 3.4666063612189193,
+ -1.9753068578349398,
+ -1.278878206147459,
+ 0.5770372545577188,
+ 1.0367738501562367,
+ -2.429912258899225,
+ 1.8918055428767413,
+ 3.25037778966353,
+ -1.6151279699978254,
+ -1.1793184686755833,
+ 0.3748083593417867,
+ 1.2234917740652715,
+ -2.4982890099702693,
+ 2.887244910213061,
+ -2.3682778335616255,
+ 1.0069143284217732,
+ 0.33014896540938043,
+ 0.02984372572998632,
+ -3.214557930820585,
+ -1.7177359122654567,
+ 2.878663915307026,
+ -2.240932022823038,
+ 0.8142359031972947,
+ 0.44214343915689547,
+ 0.2829782416836964,
+ -3.7359589867244307,
+ -1.8799616143403102,
+ 2.8503190176262505,
+ -2.1574865696976255,
+ 0.6932266943098803,
+ 1.0111943253177302,
+ -2.3695480831043745,
+ 2.887659242703692,
+ -4.169205917397017,
+ -5.13726030423868,
+ -4.615228569499633,
+ -3.6985670466065352,
+ 2.773452976629216,
+ -2.8099374217337543,
+ 1.8629851528574815,
+ -0.2926483807706053,
+ -1.3723128952518162,
+ 2.5204331617687745,
+ -1.9969605715337018,
+ -3.76768047366353,
+ 1.5374346282521305,
+ 1.0683046900148354,
+ -0.16756666756524868,
+ -1.4826855796613263,
+ 2.614930391701879,
+ -1.8866400653120141,
+ -3.326993615350066,
+ 1.1441405087748364,
+ 0.9355718885519231,
+ 0.03581934256194159,
+ -1.6564121871430049,
+ 2.66451963719366,
+ -2.867216801135345,
+ 2.032870173751004,
+ -0.6134475054436566,
+ -0.6148769016023937,
+ -0.5454854658751296,
+ 3.3134436965528242,
+ 1.8208927799299808,
+ -2.8377487453413504,
+ 1.8840208463616752,
+ -0.41121588230647327,
+ -0.7318652871894505,
+ -0.844707481305172,
+ 3.620111389821667,
+ 1.8671083615980881,
+ -2.780204953558105,
+ 1.785086438832319,
+ -0.2883503218606776,
+ -1.4605453777672084,
+ 2.5668668466719082,
+ -2.917895302035589,
+ 4.668021276079061,
+ 4.675944614763506,
+ 2.5764928399412454,
+ 2.49275696534091,
+ 0.8282573237390745,
+ 0.7014549942868938,
+ -1.4086836201673107,
+ 2.5405977504995456,
+ -2.9233898172247614,
+ 2.2267628353019884,
+ -0.8941927716560782,
+ -0.8044186050008667,
+ 1.3699579296431044,
+ 2.1725870506951237,
+ -3.3893786159083517,
+ -1.867682023902647,
+ 2.14653509192781,
+ -0.7712909482336492,
+ -0.9982877540727767,
+ 1.458845630267972,
+ 2.1799157189306526,
+ -3.027796770407058,
+ -1.8282786407036435,
+ 2.0037251429350533,
+ -0.5730562763458243,
+ -1.115487100793454,
+ 2.4227386509049116,
+ -2.93280696956609,
+ 2.419012078348836,
+ -0.8365803022889307,
+ -1.9470650571032395,
+ -2.0674683620270544,
+ -0.9125653586088345,
+ 2.489374125847477,
+ -0.6995361598145365,
+ -0.9949633720054716,
+ 1.5070252200257828,
+ 2.471453314733015,
+ -3.450660425267976,
+ -1.9147393963640895,
+ 2.00577003237674,
+ -0.576257567128198,
+ -1.1121913811121942,
+ 2.42051215694985,
+ -2.9323002610948956,
+ 2.420413531515651,
+ -2.9575477713910945,
+ -3.746442996521187,
+ 1.5774334281386236e-15,
+ 2.1710182357066764e-15,
+ 2.9985297205047253e-16,
+ 1.3113914636262563e-16,
+ -1.3407563753718887e-16,
+ -2.484850560109295e-16,
+ -3.9439971606528355e-16,
+ -2.3797986223150606e-16,
+ -4.812536803833515e-16,
+ 1.2738581433316625e-17,
+ 1.7048192424717898e-16,
+ 7.406161614493532e-16,
+ 6.675347543302933e-17,
+ 1.8404768629304863e-16,
+ -7.223613193060737e-17,
+ -5.492479267352104e-16,
+ -1.1537101593583353e-16,
+ -1.8829732669003981e-16,
+ -1.0831542380469762e-16,
+ 2.7669191489898773e-17,
+ 4.971355481443696e-17,
+ -8.255262513279215e-17,
+ -9.30578189122156e-17,
+ -9.116305832158632e-17,
+ 1.6154837363160628e-16,
+ -3.233035424163508e-16,
+ -8.528232115421714e-17,
+ 1.737079286361358e-17,
+ 3.163552252709054e-16,
+ 3.4005394982054963e-16,
+ 1.2796484076195338e-16,
+ 1.8553661139564408e-16,
+ 1.2674474935843767e-16,
+ 1.003783673333099e-16,
+ -2.317139690914169e-16,
+ -5.25094252848662e-16,
+ -8.289383713547027e-17,
+ -1.0587911840678753e-17,
+ -1.7006833394090247e-16,
+ 4.743674017838475e-16,
+ 1.8032537353656e-16,
+ 1.972308773056125e-16,
+ 2.942695029157396e-16,
+ -3.652002404421617e-17,
+ -1.3532674821367533e-16,
+ -1.3590577464246245e-16,
+ -2.4401828070314313e-17,
+ -6.014223438719926e-16,
+ 4.43699680573444e-16,
+ 5.293955920339376e-18,
+ 6.195582788022177e-17,
+ 7.746546436559103e-17,
+ 1.0189831170887608e-16,
+ -1.192794443301466e-16,
+ -5.219509665209605e-16,
+ -7.81685678862611e-17,
+ -1.317698715796973e-16,
+ -2.8785885316845363e-17,
+ 7.883031237630353e-17,
+ 1.1001502146955267e-17,
+ 4.134248701540032e-16,
+ -1.1166938269465872e-17,
+ 2.78677148369115e-16,
+ -1.7858829425019865e-16,
+ -2.187065539590205e-16,
+ -1.7842285812768804e-16,
+ -4.0970255739751456e-16,
+ 1.786296532808263e-16,
+ -2.4021324988539924e-16,
+ -1.1001502146955267e-16,
+ -1.4070342219527e-16,
+ -9.26442286059391e-18,
+ -6.698095010148142e-17,
+ -1.027978706250275e-16,
+ -5.803499177672042e-16,
+ -1.843371995074422e-16,
+ 6.753929701495471e-17,
+ 1.5964585822273434e-17,
+ 4.020097777007714e-17,
+ -2.3175532812204453e-16,
+ 2.2912902967718864e-17,
+ 1.0356301269163905e-16,
+ -7.312276614968765e-17,
+ 9.89308012613421e-17,
+ -2.1947169602563204e-16,
+ -5.3332469994356453e-17,
+ -1.902101818565687e-16,
+ -1.8677738231447362e-16,
+ -3.8224016106075404e-16,
+ -6.749793798432706e-17,
+ -2.4087499437544166e-16,
+ 4.998652441657946e-16,
+ 3.2309674726321256e-16,
+ -2.9625473638586686e-16,
+ -3.080007010841198e-16,
+ -1.0819522412193601e-16,
+ -1.743593333685213e-16,
+ -1.5435190230239494e-16,
+ 2.5204193264490753e-16,
+ -6.617444900424221e-17,
+ 2.125854174261281e-16,
+ 1.0761619769314889e-16,
+ 1.7312890220734867e-16,
+ -2.666003114258408e-16,
+ -2.727214479587332e-16,
+ -1.2506970861801778e-16,
+ -2.5787355596340635e-17,
+ 5.39321759384574e-17,
+ 4.7314731038033177e-17,
+ 1.2134739586152916e-16,
+ 3.4782944757854814e-17,
+ 1.0298398626285193e-16,
+ 2.145292918656277e-16,
+ -3.652002404421617e-17,
+ -4.9299964508160443e-17,
+ -1.1125579238838222e-16,
+ -3.0940690812545995e-16,
+ -1.9112008053037702e-16,
+ 1.4275069421133875e-16,
+ 4.0531850015098356e-18,
+ 1.9540074020033894e-16,
+ 3.590480846362986e-17,
+ -5.658742570475262e-16,
+ -1.31687153518442e-16,
+ -1.1745964698252993e-16,
+ -1.6932387138960474e-16,
+ -5.608284553109528e-17,
+ 2.6186470241897474e-16,
+ -1.1903129014638068e-16,
+ -1.2583485068462932e-17,
+ 1.1563984963491327e-16,
+ -2.2735059136019966e-16,
+ -4.932736486595127e-16,
+ -1.575365476607241e-16,
+ -3.190849212923304e-16,
+ 3.081661372066304e-16,
+ 6.489231905478502e-17,
+ 2.2888087549342276e-16,
+ -2.3723539968020834e-16,
+ 8.573727049112131e-17,
+ 1.4144788474656773e-16,
+ 3.0192092358185505e-16,
+ -8.78259015378177e-17,
+ -3.297141921636368e-16,
+ 2.845501307182415e-16,
+ 3.426337193559494e-16,
+ 6.749793798432706e-17,
+ -6.183175078833882e-17,
+ -2.8256489724811425e-16,
+ 2.7927685431321597e-17,
+ 2.039000209943213e-17,
+ 3.391440511467413e-16,
+ 1.9901965538025843e-16,
+ -2.893477782710491e-16,
+ -4.0722101555985548e-16,
+ 7.492188398199048e-17,
+ -2.444318710094197e-16,
+ 4.0655927106981304e-17,
+ -1.7197084934977443e-16,
+ 1.3317607862103744e-17,
+ 1.4157196183845069e-16,
+ 9.696883224594289e-17,
+ 1.319353077022079e-17,
+ -1.170357169185965e-16,
+ 3.788487205492866e-17,
+ -2.489813643784613e-17,
+ -1.4612145520749234e-16,
+ 1.2920561168078292e-16,
+ -1.6973746169588125e-16,
+ 3.3004506440865804e-17,
+ -1.1299287167474358e-16,
+ 4.021648740656251e-16,
+ -6.509911420792328e-17,
+ -3.1267427154504446e-17,
+ 2.895132143935597e-19,
+ 5.587605037795702e-17,
+ -6.369290716658313e-17,
+ -6.011535101729129e-17,
+ -1.4606768846767637e-15,
+ -4.235991916884054e-16
+ ],
+ [
+ 4.741282625051001,
+ 3.8084237725085472,
+ -2.8563570804652456,
+ 2.718143815195633,
+ -1.7755794389236175,
+ 0.0881689046969627,
+ 1.475186242437952,
+ -2.6376061405525086,
+ 1.9937501906006174,
+ 3.793457366886853,
+ -1.3387693791341602,
+ -0.9716149195864128,
+ -0.03546753147461632,
+ 1.5837211298666027,
+ -2.719938760823679,
+ 1.8737796651361163,
+ 3.335554611445208,
+ -0.9658407945940897,
+ -0.841284791454585,
+ -0.24052259468802806,
+ 1.7492667859840707,
+ -2.764827425720036,
+ 2.7880307451282578,
+ -1.9540967687411488,
+ 0.4112222475262068,
+ 0.7150794016528313,
+ 0.7302367503400305,
+ -3.33024402861167,
+ -1.8479044736636463,
+ 2.753566104335117,
+ -1.7958273914259935,
+ 0.20910493899442995,
+ 0.8301024045324873,
+ 1.0422046603904387,
+ -3.6242254281542476,
+ -1.8862237087067166,
+ 2.683290097300789,
+ -1.694263820533192,
+ 0.0838451990551647,
+ 1.5606112949949928,
+ -2.6791705311500906,
+ 2.856620559179821,
+ -4.529776450153534,
+ -4.545977094130929,
+ -2.636475219162209,
+ -2.560136384952171,
+ -1.115314543078839,
+ -0.9941814369964131,
+ 1.5112707905442946,
+ -2.655783720172427,
+ 2.8649668286480727,
+ -2.158647542217265,
+ 0.6945667624861149,
+ 0.9216665787570523,
+ -1.4429972521973227,
+ -2.333614892970213,
+ 3.311145483557823,
+ 1.8428316936900666,
+ -2.071389220962055,
+ 0.5716228008356691,
+ 1.1134980957087208,
+ -1.525137928109129,
+ -2.319614954582166,
+ 2.9435349044057615,
+ 1.7969776779704343,
+ -1.9222573913087624,
+ 0.3693365834471712,
+ 1.226196577481098,
+ -2.549309167779672,
+ 2.8873654029535705,
+ -2.3654001464302574,
+ 0.7387596919674296,
+ 1.790311442938429,
+ 2.2125862575700808,
+ 1.0053167951401119,
+ -2.608040430489376,
+ 2.8695033068408478,
+ -2.23769173966548,
+ 0.6890344641063068,
+ 1.8296673201378013,
+ 2.7324254026927983,
+ 1.2106359166804777,
+ -2.6960989684046965,
+ 2.8495840788460436,
+ -2.155707522919184,
+ 0.5965621204116122,
+ 1.0139594532497136,
+ -2.3730761957788187,
+ 3.872529065330816,
+ 4.677540699766139,
+ 2.5900587557364974,
+ 1.9905781080728095,
+ -1.9164377126687748,
+ 2.7748904294059296,
+ -2.809275158055327,
+ 1.7863630951924876,
+ -0.2900598134262358,
+ -1.3770528319111253,
+ 1.6784635229132105,
+ 2.8593019056171913,
+ -3.186314896952291,
+ -1.814652002197734,
+ 1.6880773208369086,
+ -0.16243850725427697,
+ -1.5535292653700818,
+ 1.680693817554279,
+ 2.662218532412637,
+ -2.665230404454162,
+ -1.6820110377099127,
+ 1.517523114536579,
+ 0.04092510873304943,
+ -1.65874267345894,
+ 2.701411644409962,
+ -2.8669776407640466,
+ 2.0292771610973173,
+ -0.45994785907469776,
+ -1.3334576612923288,
+ -2.5718396551444878,
+ -1.2415978752192844,
+ 2.7443270379187137,
+ -2.816067723083919,
+ 1.8801117240572052,
+ -0.34441761804296384,
+ -1.2096483812073904,
+ -2.9475299333098737,
+ -1.3559988472342102,
+ 2.8009839426924428,
+ -2.778722730572379,
+ 1.7829587592993217,
+ -0.18968734609577062,
+ -1.4631383324423919,
+ 2.5693528662117866,
+ -5.181590330688461,
+ -5.108468927561323,
+ -1.4646579861366549,
+ -1.3028897801719552,
+ 2.0764660334560787,
+ 2.222014472905851,
+ -0.24982395361392484,
+ -1.4112266000812472,
+ 2.5390076578745986,
+ -2.911508802712242,
+ 2.2238390036450957,
+ -0.8897141995054968,
+ -0.4260626638123652,
+ -0.24181876787478412,
+ 3.5388537459625895,
+ 1.7746592280042937,
+ -2.8940545185199102,
+ 2.1418561925319732,
+ -0.6919903733027506,
+ -0.5638695675289304,
+ -0.45254054953961775,
+ 3.298938810084446,
+ 1.8040559769481543,
+ -2.856029917833769,
+ 1.9989663387296945,
+ -0.5711791380699042,
+ -1.2045243769359864,
+ 2.4213865064382767,
+ -2.930371775533098,
+ 1.6265379503119126,
+ 3.105463224656381,
+ 0.3077468664784188,
+ -0.13939810733218191,
+ -1.3162771182076238,
+ 2.5273564892345757,
+ -0.6944502676920545,
+ -0.5513504716084885,
+ -0.4967686408870257,
+ 3.7721551209937236,
+ 1.915219468330534,
+ -2.859028163419635,
+ 2.0022248830920573,
+ -0.5735528626993868,
+ -1.2038731870174355,
+ 2.4225425708593447,
+ -2.9330098445432276,
+ 4.124364805420261,
+ 5.091750045703802,
+ -9.81243001641029e-16,
+ -1.4508747944180103e-15,
+ -1.375601358675685e-16,
+ -3.3914405114674135e-17,
+ -1.402071138277382e-17,
+ 1.0058516248644815e-16,
+ 2.633639672792271e-16,
+ 1.802426554753047e-16,
+ 1.0604455452929814e-16,
+ 5.2939559203393765e-17,
+ -2.249931266144235e-17,
+ -5.582641954120384e-16,
+ 1.0025429024142694e-16,
+ -2.1490152314127657e-16,
+ -7.665896326835183e-17,
+ 1.5129133403594874e-16,
+ 3.412120026781239e-17,
+ 1.619619639378828e-16,
+ 2.277745214241331e-16,
+ 1.7453510924868884e-17,
+ 3.9539233280034717e-17,
+ 1.079470699381701e-16,
+ 1.4533563362556696e-16,
+ 8.610950176677017e-17,
+ -1.8743912680451605e-16,
+ -6.61744490042422e-19,
+ 2.0493399676001258e-17,
+ -6.398242038097669e-17,
+ -1.8089406020769021e-16,
+ -1.1506082320612615e-16,
+ 2.3201382206346735e-16,
+ -1.5848780536516008e-16,
+ -3.468342459040703e-17,
+ 2.9778502051908996e-17,
+ 2.393033512115909e-16,
+ 7.923356292492313e-17,
+ 5.3518585632180884e-17,
+ -1.4620417326874764e-17,
+ 5.339450854029793e-17,
+ -3.0715284095625295e-16,
+ -7.77549775799846e-18,
+ -9.926167350636332e-19,
+ -3.2817356827275677e-16,
+ 8.581998855237661e-17,
+ 1.7432831409555056e-16,
+ -1.0013021314954399e-16,
+ 9.003860967639705e-17,
+ 5.344413937705112e-16,
+ -4.4171444710331673e-16,
+ 2.7958704704292335e-17,
+ 1.378082900513344e-16,
+ 2.225115847767644e-17,
+ -1.6653213682223827e-16,
+ -2.895132143935597e-17,
+ 8.437242248040881e-17,
+ 6.87387089031566e-17,
+ 1.0223952371155421e-16,
+ 1.3292792443727155e-16,
+ -8.553047533798305e-17,
+ 1.0666752492812713e-16,
+ -3.486566281911011e-16,
+ 5.0209863181968774e-17,
+ -2.395515053953568e-16,
+ 2.1415706058997884e-16,
+ 1.406207041340147e-16,
+ 2.448299516792108e-16,
+ 1.7221900353354034e-16,
+ -1.8648786910008006e-16,
+ -6.7001629616795234e-18,
+ 8.99145325845141e-17,
+ 1.7897086528350443e-16,
+ -5.790264287871193e-18,
+ 5.368402175469149e-17,
+ 1.6444350577554188e-16,
+ 4.346006938353607e-16,
+ 1.324109365544259e-16,
+ -2.2606846141074246e-16,
+ -1.3913177903141925e-16,
+ 3.937379715752411e-17,
+ 7.831849437228634e-17,
+ 2.134125980386811e-17,
+ -1.5435190230239494e-16,
+ 5.252596889711725e-17,
+ 7.122025074081568e-17,
+ 8.275942028593041e-17,
+ 4.702521782363962e-17,
+ 1.3706382750003669e-16,
+ 1.5029871730088513e-16,
+ 2.784289941853491e-16,
+ 2.666830294870961e-16,
+ 1.530284133223101e-16,
+ -3.930762270851987e-16,
+ -3.011221773028586e-16,
+ 2.504082509351153e-16,
+ 1.4264729663476962e-16,
+ 5.40148939997127e-17,
+ 2.2941854289158223e-16,
+ 1.1580528575742386e-17,
+ -1.6295458067294645e-17,
+ 1.6948930751211535e-16,
+ -1.6254099036666991e-16,
+ 3.302105005311686e-16,
+ -1.62292836182904e-16,
+ 2.1448793283500005e-16,
+ 1.5832236924264947e-16,
+ -3.6561383074843823e-17,
+ -4.090408129074721e-17,
+ 2.5683958019771506e-17,
+ 6.228670012524298e-17,
+ -3.1184709093249143e-17,
+ 7.020695449043822e-17,
+ -1.341686953561011e-16,
+ -3.213700077345081e-16,
+ 9.760731228125725e-17,
+ -7.494256349730431e-17,
+ 5.575197328607407e-17,
+ 2.4104043049795226e-16,
+ 1.6788664507529385e-16,
+ -7.043442915889031e-17,
+ 2.99439381744196e-17,
+ -2.100211575272137e-16,
+ -2.072087434445334e-17,
+ 3.79634542131212e-16,
+ 9.955118672075687e-17,
+ -3.846389848371578e-17,
+ -9.793818452627846e-17,
+ -6.236941818649829e-17,
+ -2.599828665254166e-16,
+ 8.681260528744024e-17,
+ -6.555406354482744e-17,
+ -1.2517310619458691e-16,
+ 1.5170492434222525e-16,
+ 4.742278150554792e-16,
+ 2.179000528617813e-16,
+ 1.3263841122287799e-16,
+ -4.172919395176886e-16,
+ 5.1016364279207976e-17,
+ 1.2407709188295413e-18,
+ 2.779326858178173e-16,
+ -1.1805935292663087e-16,
+ 2.575840427490128e-16,
+ -3.107510766208586e-16,
+ 5.046318724456314e-17,
+ 1.712263867984767e-16,
+ -7.610061635487853e-17,
+ -2.2743330942145496e-16,
+ -8.850832554317396e-18,
+ 1.0236360080343716e-17,
+ 2.9381455357883543e-16,
+ -4.4254162771586974e-17,
+ -1.1375801374135513e-16,
+ -3.041129522051206e-16,
+ -1.3028094647710186e-16,
+ 1.2159555004529507e-16,
+ 3.573420246229079e-16,
+ -7.320548421094295e-17,
+ 8.776386299187622e-17,
+ -1.6932387138960474e-16,
+ 2.830198465850184e-16,
+ 1.1694265909968429e-16,
+ 3.176373552203626e-17,
+ 2.067951531382569e-18,
+ 3.6644101136099126e-17,
+ 6.11700062982964e-17,
+ 3.169135721843787e-16,
+ 2.1217182711985157e-17,
+ 1.2742717336379391e-16,
+ -1.801599374140494e-16,
+ 2.0009499017657737e-16,
+ -9.074171319706712e-17,
+ 1.5774334281386235e-16,
+ -1.5509636485369266e-16,
+ 1.0753347963189359e-16,
+ 5.707546226615891e-17,
+ -2.0131508158009308e-17,
+ -4.735609006866083e-17,
+ 2.274746684520826e-19,
+ 3.5072457972248373e-17,
+ 8.675470264456153e-16,
+ 1.6593243087813733e-16
+ ],
+ [
+ -2.169109975783139,
+ -1.6902462718189497,
+ 1.4844702765895141,
+ -2.020392979029364,
+ 1.8500554267796354,
+ -1.0769767241563422,
+ -0.06829445358585765,
+ 1.1409259379313954,
+ -1.2538690402981156,
+ -2.191859308022887,
+ 2.0359536495599566,
+ 1.1889528041391197,
+ -1.0013195557499912,
+ -0.15629897843514287,
+ 1.256103552243154,
+ -1.2382708927605943,
+ -2.0131328855096022,
+ 1.6813172111163763,
+ 1.0936946168512056,
+ -0.8748336246377593,
+ -0.2987783565917661,
+ 1.3221624441469633,
+ -1.9875774940615438,
+ 1.9085858528248794,
+ -1.2633015565752144,
+ 0.16603097124705457,
+ 0.6703875815699907,
+ 1.9599581857119184,
+ 0.9800203711742826,
+ -2.006333478637276,
+ 1.8580627462422454,
+ -1.1471009386044433,
+ 0.08285475655674623,
+ 0.5546945862562136,
+ 2.219154337584416,
+ 1.0517432411719563,
+ -2.0305528909822237,
+ 1.82084792492907,
+ -1.0744147381912468,
+ -0.13846468431110054,
+ 1.196641659842343,
+ -1.920706437185884,
+ 3.642267944135719,
+ 3.6021360376194362,
+ 1.224635204522223,
+ 1.1211904183819774,
+ -1.0466106350032038,
+ -1.1487192568742917,
+ -0.0976706323084793,
+ 1.1649605437057113,
+ -1.9059581441023516,
+ 1.9643788507595095,
+ -1.4162508468166761,
+ 0.3565791475473135,
+ 0.4511289889923958,
+ 0.47029425457455937,
+ -2.519885846926754,
+ -1.2894798496535638,
+ 1.9431959329291908,
+ -1.3500698903443993,
+ 0.2160840083958462,
+ 0.5426393362274257,
+ 0.5904807951854218,
+ -2.3288157559578426,
+ -1.300037025424991,
+ 1.8987887628177196,
+ -1.239886172783597,
+ 0.12883467836756982,
+ 1.0301116427346453,
+ -1.8409921532749487,
+ 2.0045764782624187,
+ -1.047417398210934,
+ -2.053516928181703,
+ -0.49142441313671353,
+ -0.06142636072708203,
+ 1.1044718441057628,
+ -1.8986295452204622,
+ 1.9828983450581772,
+ -1.0613898533848747,
+ -2.2575681076890497,
+ -0.7540723002466948,
+ -0.19267708789114737,
+ 1.2201886148275614,
+ -1.9307031505176548,
+ 1.9636823236839278,
+ -1.3644404023154986,
+ 0.2889389139216485,
+ 0.8295744221281326,
+ -1.7771022226941637,
+ -2.08271456425325,
+ -0.0388881886315198,
+ 0.06549787917074415,
+ 0.38247826113657585,
+ -1.4351828351492248,
+ 1.970223235144602,
+ -1.895997353376208,
+ 1.1433065919916074,
+ -0.07128865154707877,
+ -0.6507260943242501,
+ -0.8782917474948873,
+ 2.653580290035501,
+ 1.3899738888174067,
+ -1.8608218930020164,
+ 1.0699329858699076,
+ 0.07199730537555943,
+ -0.7226862579308732,
+ -0.9316511144074957,
+ 2.3089042096685994,
+ 1.3227625674646186,
+ -1.797196601919938,
+ 0.9459515891173107,
+ 0.1581585009962254,
+ -1.3155399189886843,
+ 1.9287879912960268,
+ -1.9701626693610874,
+ 0.9097194266743274,
+ 1.8587870438300569,
+ 0.8374263665227443,
+ 0.2650246490479748,
+ -1.3806468695695513,
+ 1.9668226574429561,
+ -1.9257263513565965,
+ 0.8520550502875107,
+ 1.906415383112887,
+ 1.0713608580845373,
+ 0.3659474979648817,
+ -1.4834437537086962,
+ 1.9844515075356288,
+ -1.8948575349269459,
+ 1.084845725167209,
+ -0.00276161655564955,
+ -1.1338044660557296,
+ 2.9520219657178126,
+ 2.8639643954896967,
+ 0.060885915181051166,
+ -0.06564310419470434,
+ -2.8811674091271025,
+ -2.969629295497496,
+ 1.1210375582275773,
+ -0.04522093288624457,
+ -1.0956004012592369,
+ 1.8574163872875942,
+ -2.0146478647246333,
+ 1.467476090847864,
+ -0.37802444433418436,
+ -1.0926006717514734,
+ -1.8886357768974467,
+ -0.84140100399532,
+ 1.8902927602138244,
+ -1.996633845577124,
+ 1.3669737205670238,
+ -0.2773461683124341,
+ -0.8577146281928568,
+ -1.8435720460293605,
+ -0.89961634989854,
+ 1.9347649581732094,
+ -1.9612096507498573,
+ 1.3012270916373985,
+ -0.20588760237604878,
+ -0.9560836028516624,
+ 1.7578753628265722,
+ -1.3220311801423013,
+ -2.3039001657437925,
+ 0.9514622386050097,
+ 0.7327743493997284,
+ -0.11861542453979039,
+ -1.0794113110609052,
+ 1.823920996018876,
+ -0.32192687965092043,
+ -0.991001536841631,
+ -2.115302642941467,
+ -0.9715539499795617,
+ 1.9369325684085665,
+ -1.9629231691894833,
+ 1.3018961142035543,
+ -0.20525868874601716,
+ -0.9577346295791812,
+ 1.7600430391844482,
+ -2.8259476771337924,
+ -3.4288669674214747,
+ 9.25615105446838e-16,
+ 1.0779817742791057e-15,
+ 2.729696021424991e-17,
+ 2.4153673886548405e-17,
+ -5.362198320875001e-17,
+ -1.1894857208512538e-16,
+ -5.194694246833013e-17,
+ -2.7346591051003095e-16,
+ -2.5973471234165066e-17,
+ -6.79787367153735e-17,
+ 5.368402175469149e-17,
+ 4.078827600498979e-16,
+ -2.0530622803566144e-16,
+ 2.0472720160687435e-18,
+ 3.730584562614155e-17,
+ -7.742410533496338e-17,
+ -1.6626330312315856e-17,
+ 6.452008777913615e-18,
+ -7.651420666115505e-17,
+ 1.0563096422302162e-16,
+ 5.259834720071564e-17,
+ 3.7223127564886245e-17,
+ -8.635765595053608e-17,
+ 3.610643373793966e-17,
+ 3.143286327701505e-17,
+ -1.0918784085699964e-17,
+ -1.4847891995326847e-17,
+ 6.758065604558236e-17,
+ 2.998943310811002e-16,
+ 1.3234889800848441e-17,
+ -2.295426199834652e-16,
+ 1.6121750138658507e-16,
+ -2.870316725559006e-16,
+ 1.228363209641246e-17,
+ -1.89341642213388e-16,
+ 1.9686898578762056e-17,
+ 3.929107909626881e-17,
+ 8.561319339923835e-17,
+ 1.0517601488611746e-16,
+ 1.1756304455909906e-16,
+ 9.74832351893743e-17,
+ -1.1431636065482842e-16,
+ 3.146595050151717e-16,
+ -4.4254162771586974e-17,
+ -2.096075672209372e-16,
+ 1.3210074382471852e-16,
+ -6.609173094298691e-17,
+ 1.3152171739593138e-17,
+ 1.7900188455647516e-16,
+ 1.4100198269761337e-17,
+ -2.3392667722999623e-16,
+ -1.4086885831778061e-16,
+ 1.8276555634359144e-16,
+ 1.0257039595657542e-16,
+ 2.2664748783952955e-17,
+ -7.951273638165977e-17,
+ -5.717885984272804e-17,
+ 4.1276312566396075e-17,
+ 7.758954145747398e-17,
+ -1.0004749508828868e-16,
+ 3.595754122768011e-16,
+ -8.271806125530276e-19,
+ 1.401243957664829e-16,
+ -1.711436687372214e-16,
+ -2.1961645263282882e-16,
+ -2.0658835798511864e-16,
+ -1.3234889800848443e-16,
+ 8.882885803053825e-17,
+ 1.9604180517506753e-16,
+ 1.3607121076497304e-17,
+ -2.2044363324538184e-17,
+ 5.839895124624375e-17,
+ 5.790264287871193e-18,
+ -1.693652304202324e-16,
+ -3.1647930236278834e-16,
+ -3.7553999809907456e-17,
+ 2.4281886881494127e-16,
+ 1.651155900232412e-16,
+ -1.6047303883528737e-17,
+ 5.4871801415529353e-17,
+ 2.9840540597850473e-17,
+ -3.3004506440865804e-17,
+ 2.4381148555000488e-17,
+ -1.5902547276331955e-16,
+ -7.610061635487853e-17,
+ 6.2865726554030096e-18,
+ -4.5122702414767654e-17,
+ 4.606362036154673e-18,
+ -4.7604244252426737e-17,
+ -1.365881986478187e-16,
+ 4.2665975995485163e-16,
+ -4.847278389560742e-16,
+ 7.287461196592174e-17,
+ -1.5517649797553374e-16,
+ 6.48819792971281e-18,
+ -6.418921553411495e-17,
+ 7.233694456776227e-17,
+ 1.679176643482646e-16,
+ -2.2532399885944474e-16,
+ -2.1443623404671549e-16,
+ 2.2275973896053035e-16,
+ -6.097975475740919e-16,
+ 1.5187036046473586e-16,
+ -1.2919914933224735e-16,
+ -2.5319998550248177e-16,
+ -2.683373907122022e-16,
+ 3.604439519199818e-17,
+ -2.4815418376590827e-17,
+ 3.759535884053511e-17,
+ -1.6543612251060553e-17,
+ -1.0083331667021406e-16,
+ -3.623051082982261e-17,
+ 1.6174482902708762e-16,
+ -9.318189600409856e-17,
+ 5.707546226615891e-17,
+ -2.5030485335854617e-16,
+ -1.7834014006643274e-16,
+ -7.883031237630353e-17,
+ -1.2697222402688973e-17,
+ 4.971355481443696e-17,
+ 1.9124415762225997e-16,
+ -1.3507859402990942e-16,
+ 1.7354249251362518e-16,
+ 6.226602060992916e-17,
+ 8.321436962283457e-17,
+ -3.705769144237564e-17,
+ 1.406207041340147e-17,
+ -6.326316098896768e-18,
+ 5.428372769879243e-18,
+ 2.375817815617149e-16,
+ 2.7330047438752034e-16,
+ 9.760731228125725e-18,
+ 1.6146565557035098e-16,
+ -1.5466209503210232e-16,
+ -2.067951531382569e-19,
+ 4.49159072616294e-16,
+ -8.466710557363083e-17,
+ -1.8656024740367845e-16,
+ -2.4683069478582346e-16,
+ 1.0314942238536254e-16,
+ -1.9645539548134405e-16,
+ 9.020404579890766e-17,
+ 1.6802106192483375e-17,
+ 2.5063572560356735e-17,
+ -3.336846591038913e-16,
+ 1.191243479652929e-16,
+ -3.629254937576409e-17,
+ 4.079551383534963e-17,
+ -1.0120554794586292e-16,
+ 7.827713534165869e-17,
+ 1.5575810934373509e-16,
+ 2.7065349642735066e-16,
+ 7.692779696743156e-17,
+ 4.7232012976777874e-17,
+ 7.061537491788628e-17,
+ 4.615667818045894e-17,
+ -4.9299964508160443e-17,
+ 1.727204817799006e-16,
+ -1.8355137792551682e-16,
+ 4.615667818045894e-17,
+ 3.4390033966892126e-17,
+ -3.6313228891077915e-17,
+ 6.185243030365264e-17,
+ -8.42069863578982e-17,
+ -4.867130724262015e-16,
+ -3.027481041944081e-17,
+ -1.87087575044181e-16,
+ 5.935020895067974e-17,
+ -2.3706996355769773e-16,
+ 1.22670884841614e-16,
+ -6.644328270332195e-17,
+ -1.1952759851391248e-17,
+ -3.0068015266302556e-17,
+ 8.660581013430199e-17,
+ -4.80591935893309e-17,
+ -7.581110314048497e-17,
+ -7.237830359838991e-19,
+ -1.2949512489517648e-16,
+ -1.0826139857094026e-15,
+ 4.22937447198363e-16
+ ],
+ [
+ 0.4677678836196316,
+ 0.1370612844521065,
+ -1.2014230055658999,
+ 3.722117341389029,
+ -5.035353578158127,
+ 4.653102033519392,
+ -2.739380137525181,
+ -0.06430755389657127,
+ 1.7625078946802069,
+ 2.465319954949678,
+ -6.654339685401947,
+ -3.5068373305331697,
+ 4.558052335042059,
+ -2.548312241938001,
+ -0.4229476114748965,
+ 1.930703406658241,
+ 2.561120270414873,
+ -5.774381455830307,
+ -3.330726147233048,
+ 4.38346963931589,
+ -2.2308034702669697,
+ -0.6406017514902613,
+ 3.432354800426278,
+ -4.947144305281626,
+ 4.861506845825857,
+ -2.1891563233339637,
+ -4.530366424442814,
+ -2.3281684568525165,
+ -0.7991256047772152,
+ 3.5918079486016756,
+ -5.02713269174949,
+ 4.737442619785432,
+ -2.0378031807811325,
+ -4.623425127416324,
+ -2.9286062352938234,
+ -1.051223517123737,
+ 3.838543159760204,
+ -5.064130258899279,
+ 4.649944631161316,
+ -2.588342989002607,
+ -0.2367495977053444,
+ 2.9890130969729234,
+ -7.640435114579385,
+ -7.424313899404404,
+ -0.3448011535023812,
+ -0.023311218577817084,
+ 7.023224418653361,
+ 7.249123324308989,
+ -2.6766929562197412,
+ -0.1382835866468808,
+ 2.904740719013902,
+ -4.794072872127238,
+ 4.996177036791459,
+ -3.580264618653648,
+ 0.8153813220075586,
+ 2.5065815645610705,
+ 4.9318577082470805,
+ 2.227178673656114,
+ -4.866633374279868,
+ 4.9431497715252775,
+ -3.3150937288393734,
+ 0.5601777492406553,
+ 1.9279485496396904,
+ 4.790641146283807,
+ 2.3671303636664414,
+ -4.965694262199037,
+ 4.837734332385011,
+ -3.145094985773422,
+ 0.26704102662732726,
+ 2.5621428625263616,
+ -4.5652231377367904,
+ 3.3234658892449644,
+ 5.832801800497831,
+ -2.168103582358875,
+ -1.7267269183775313,
+ 0.04829900039016549,
+ 2.866566678580123,
+ -4.716363004150725,
+ 3.4868205972274766,
+ 6.6891219951200265,
+ -2.003090504827322,
+ -1.535493516383728,
+ -0.31064312705133335,
+ 3.048682389793366,
+ -4.7967200451755465,
+ 4.9546986386946,
+ -3.4548773836046136,
+ 0.8338805416651934,
+ 0.40700397105505026,
+ 0.19927650629109273,
+ -4.995712133698131,
+ -4.2764825073410275,
+ 1.9702957343215202,
+ 0.9274365866627158,
+ -3.521207831595802,
+ 5.013634403898757,
+ -4.7647101737329125,
+ 2.971991945042223,
+ -0.371242211441753,
+ -1.6873521453715565,
+ -5.793808510639099,
+ -2.7439463179105834,
+ 5.053427010276485,
+ -4.678806387338558,
+ 2.6726099430149435,
+ -0.045962602061195526,
+ -1.0491471043142058,
+ -5.255397756785362,
+ -2.7009511477177672,
+ 5.0979487736103675,
+ -4.5216017579150884,
+ 2.483344104510437,
+ 0.5261684514659667,
+ -3.2162707719333214,
+ 4.868226268508902,
+ -3.249531120504007,
+ -5.853219834864037,
+ 1.3002688248534975,
+ 1.2658079156788427,
+ 0.7434231631421854,
+ -3.487587320522252,
+ 4.967213082384478,
+ -3.2160811111364715,
+ -6.318721553379288,
+ 0.9788044932481592,
+ 1.031892313265786,
+ 1.096642186086932,
+ -3.647582312119598,
+ 5.015154725401018,
+ -4.697164001879936,
+ 2.829795196631954,
+ -0.04327347731761991,
+ -3.1731934534758683,
+ -2.9156816105414984,
+ 2.6845243721767136,
+ 2.950870808271898,
+ 9.0534567165544,
+ 9.162080740000336,
+ -4.741829083471628,
+ 2.920637735266527,
+ -0.15715613124540537,
+ -2.800199352682437,
+ 4.683283329561404,
+ -5.051995134293071,
+ 2.5831501532290475,
+ 5.489204151795838,
+ 1.5846906141933192,
+ 0.3102992627935209,
+ -2.9810230199008543,
+ 4.769136032908378,
+ -4.9818470742579235,
+ 2.3971359299397954,
+ 4.8339404988146555,
+ 1.8574138881118676,
+ 0.5183086087594578,
+ -3.2653694056177613,
+ 4.8875911766628395,
+ -4.926595060673624,
+ 3.2440716826912355,
+ -0.5616373434444996,
+ -2.306374609124573,
+ 2.8083950068699073,
+ 4.3530542756066595,
+ -4.974334452721968,
+ -3.0790985123548213,
+ 3.0720679438257883,
+ -0.20359649202785224,
+ -2.6211601652190106,
+ 3.046766862492839,
+ 5.532897272102578,
+ 2.1570675298052926,
+ 0.6258347607187255,
+ -3.2692088370797987,
+ 4.888907127526066,
+ -4.924843170741321,
+ 3.239804654045512,
+ -0.5564029187269188,
+ -2.310932812332237,
+ 4.709655458574472,
+ 5.539799189637189,
+ -1.0965106200002935e-15,
+ -1.6146565557035098e-16,
+ 1.9852334701272662e-16,
+ 3.2903176815828053e-16,
+ -3.836463681020942e-16,
+ 2.7925617479790214e-16,
+ -3.570111523778867e-16,
+ -1.0554824616176632e-16,
+ -9.049355901330123e-16,
+ 2.212553042214495e-16,
+ 1.2242273065784808e-17,
+ -1.9554549680753572e-16,
+ 5.120247991703241e-16,
+ 2.298734922284864e-16,
+ -1.2593824826119846e-16,
+ -6.41478565034873e-17,
+ -2.5270367713494995e-16,
+ -3.4030210400431554e-16,
+ 1.8206245282292137e-16,
+ -1.1886585402387008e-16,
+ -1.436812724004609e-16,
+ -2.071260253832781e-16,
+ 1.904583360403346e-16,
+ 6.617444900424221e-18,
+ 2.248276904919129e-16,
+ -9.727644003623604e-17,
+ -4.4833189200374094e-17,
+ -1.3665023719376017e-16,
+ -3.060568266446202e-16,
+ 4.443614250634865e-16,
+ 6.935082255644583e-16,
+ -2.0911125885340537e-16,
+ 1.4273828650215044e-15,
+ 2.072914615057887e-16,
+ 2.0795320599583113e-16,
+ -5.757177063369073e-16,
+ -3.027481041944081e-16,
+ -3.0465061960328004e-16,
+ -5.49413362857721e-16,
+ 2.7098436867237187e-16,
+ -2.071260253832781e-16,
+ 7.533961019132975e-16,
+ -4.0961983933625926e-16,
+ 1.5981129434524492e-16,
+ 7.012216847765153e-16,
+ -3.3145127144999814e-16,
+ 2.4104043049795226e-16,
+ -9.975798187389513e-17,
+ -2.3756627192522955e-16,
+ 1.2035477912646553e-16,
+ 8.053430443816276e-16,
+ 4.590852399669304e-16,
+ -3.5415737926457875e-16,
+ -1.2639319759810263e-16,
+ -1.3354003809056077e-15,
+ 1.3052910066086777e-16,
+ 2.424724869334347e-16,
+ -4.1524466750161983e-17,
+ -1.2341534739291173e-16,
+ 5.075580238625378e-16,
+ -5.743942173568224e-16,
+ 9.396771758602393e-17,
+ -2.0447904742310842e-16,
+ 4.604087289470152e-16,
+ 4.107778921938335e-16,
+ 3.6114705544065183e-16,
+ -2.3161057151484772e-17,
+ -2.2557215304321065e-16,
+ -6.999602343423719e-16,
+ -1.576192657219794e-16,
+ -1.8743912680451605e-16,
+ -2.6800651846718097e-16,
+ -1.602300545303499e-16,
+ 2.842192584732203e-16,
+ 3.752091258540533e-16,
+ -4.9961708998202865e-17,
+ -4.755461341567356e-16,
+ -4.937441076329022e-16,
+ 2.5030485335854617e-16,
+ -5.183113718257271e-16,
+ -4.582580593543773e-17,
+ -3.845459270182456e-16,
+ -2.3243775212740075e-17,
+ 6.440428249337872e-16,
+ 6.303116267654071e-17,
+ -1.7668577884132669e-16,
+ -3.775252315692018e-16,
+ -2.541098841762901e-16,
+ -1.5405411728187585e-15,
+ 8.741644713460395e-16,
+ -9.019577399278214e-16,
+ 2.0686132758726116e-15,
+ 3.027481041944081e-17,
+ -4.524677950665061e-17,
+ -3.945237931571665e-16,
+ 1.2953648392580413e-16,
+ -1.0978754680110059e-16,
+ -3.479948837010587e-16,
+ 3.557290224284295e-16,
+ 1.8945537954761405e-16,
+ -3.1317057991257623e-16,
+ 1.6433597229590999e-15,
+ -5.612420456172293e-17,
+ -6.43132926259979e-17,
+ 5.537147020429967e-16,
+ 8.010417051963519e-16,
+ -1.621274000603934e-16,
+ 2.647391550475965e-16,
+ 4.885742288044458e-16,
+ 2.274746684520826e-16,
+ 4.466775307786349e-16,
+ 2.9778502051908992e-18,
+ -5.833277679723951e-16,
+ 2.693300074472658e-16,
+ -2.071260253832781e-16,
+ 6.690236794328887e-16,
+ 1.647743780205631e-16,
+ -1.1779051922755114e-16,
+ 4.849759931398401e-16,
+ -1.7254987577856155e-16,
+ -3.960540772903896e-16,
+ 8.453785860291942e-17,
+ -6.157118889538461e-16,
+ -1.387595477557704e-16,
+ -3.269017780809565e-16,
+ -6.372599439108524e-16,
+ -1.7949819292400698e-16,
+ -3.8248831524451995e-16,
+ -2.833920778606673e-16,
+ -7.2179780251377185e-16,
+ -4.691768434400773e-16,
+ -1.0364573075289436e-16,
+ -3.2057384639492583e-16,
+ 4.446095792472524e-16,
+ -3.6197423605320486e-16,
+ -1.0759965408089784e-15,
+ 3.573420246229079e-16,
+ 1.7321162026860397e-16,
+ 5.880426974639474e-16,
+ -1.5782606087511766e-16,
+ 7.983947272361822e-16,
+ -4.4254162771586976e-16,
+ -1.8322050568049563e-17,
+ -4.611118324676853e-16,
+ 1.450213049927968e-15,
+ 7.378580310943718e-17,
+ 2.309074679941777e-16,
+ 1.6899299914458353e-16,
+ -7.108583389127582e-17,
+ -1.2304311611726287e-16,
+ -4.0696252161843265e-16,
+ -2.928219368437718e-16,
+ 5.1554031677367444e-17,
+ -5.681903627626747e-16,
+ -1.029426272322243e-15,
+ -1.3019822841584656e-16,
+ -4.867957904874568e-16,
+ -5.812184574103849e-16,
+ 3.265709058359353e-16,
+ -1.0600319549867048e-16,
+ 3.866242183072851e-16,
+ 4.3269817842648873e-16,
+ 1.5071230760716162e-16,
+ 5.97224402263286e-17,
+ 9.893080126134211e-16,
+ 3.143286327701505e-17,
+ 1.449634023499181e-16,
+ -1.2018934300395492e-16,
+ 4.996170899820287e-16,
+ -1.2345670642353937e-17,
+ 1.0906376376511669e-16,
+ 5.962317855282223e-16,
+ 6.667075737177403e-17,
+ -1.0823658315256366e-16,
+ -2.7503755367388167e-17,
+ 2.3475385784254925e-16,
+ -3.6354587921705566e-17,
+ 1.5278025913854419e-16,
+ 1.668257859396946e-15,
+ -1.0549861532501315e-15
+ ],
+ [
+ 0.9042688061849811,
+ 0.5600758565959615,
+ -1.182972194575198,
+ 2.9271691837054825,
+ -3.722133129099742,
+ 3.254927663365981,
+ -1.7260195425772529,
+ -0.3640868159459673,
+ 1.471112208273053,
+ 2.1802877921540063,
+ -4.799224631372601,
+ -2.5616529799529215,
+ 3.173518366671872,
+ -1.5797764853511929,
+ -0.6240948597056514,
+ 1.57365387717535,
+ 2.191168862176243,
+ -4.140687533169342,
+ -2.4230614626062787,
+ 3.026986281255498,
+ -1.3382724022287065,
+ -0.7810958194901334,
+ 2.7338185769980248,
+ -3.682450386545072,
+ 3.4395289936374196,
+ -1.4378976075564058,
+ -3.0671107608610337,
+ -2.028227518052515,
+ -0.7821559516715931,
+ 2.8405902616097563,
+ -3.7189799084879143,
+ 3.328331912747511,
+ -1.3184222187388974,
+ -3.0938860158567967,
+ -2.48239662611246,
+ -0.9624603259693417,
+ 3.0040191291536824,
+ -3.7322569430258077,
+ 3.252205099167702,
+ -1.6103795571287896,
+ -0.48928862420728836,
+ 2.4333174592070863,
+ -5.875462627624456,
+ -5.726864909333917,
+ -0.561835147157408,
+ -0.3285489310007386,
+ 4.7568531358082975,
+ 4.9290048659965695,
+ -1.6779503938470415,
+ -0.41783797224407326,
+ 2.375626639626078,
+ -3.6007635281921027,
+ 3.567917595356116,
+ -2.3793720835537324,
+ 0.3920250817795203,
+ 1.4615961783079745,
+ 3.8398175834148183,
+ 1.7764243036133556,
+ -3.640782150508339,
+ 3.5158690196089784,
+ -2.1713407701951777,
+ 0.20421062834628453,
+ 1.0601842570138917,
+ 3.696594715031,
+ 1.868331863967741,
+ -3.6914938317220916,
+ 3.4178613013622225,
+ -2.0390487831790107,
+ -0.12247299346365416,
+ 2.1396856974426908,
+ -3.4665539337443736,
+ 2.405495524004936,
+ 4.281963281519042,
+ -1.2405486713696077,
+ -1.0803282716140457,
+ -0.2821390746628569,
+ 2.3494812723615675,
+ -3.556379618041177,
+ 2.5132345587983123,
+ 4.883341122877384,
+ -1.0621723185330303,
+ -0.9220534885485168,
+ -0.5428379645157984,
+ 2.4740355043581754,
+ -3.602252720722514,
+ 3.527061714365316,
+ -2.2807535037780426,
+ 0.29392748775984723,
+ 0.755956809568756,
+ 0.7094401657308431,
+ -3.164418027096279,
+ -2.736482496476211,
+ 1.1413437237268491,
+ 0.9871070938579706,
+ -2.793362523552331,
+ 3.7132633498355476,
+ -3.352359268601548,
+ 1.9049991000256674,
+ -0.053879142839481926,
+ -0.8267280717599421,
+ -4.425093899709795,
+ -2.13300679912001,
+ 3.7288876988584723,
+ -3.2770524917807684,
+ 1.674789954559231,
+ 0.17300647051428777,
+ -0.40615035556763895,
+ -3.9864322731124613,
+ -2.0868724004714982,
+ 3.73920850882909,
+ -3.1426138311708574,
+ 1.5302079195164278,
+ 0.6985867182664076,
+ -2.587954888468579,
+ 3.6415948733765044,
+ -2.31997554370083,
+ -4.240459809907621,
+ 0.5921273209337929,
+ 0.7303941452623801,
+ 0.8550676497993563,
+ -2.770873259183333,
+ 3.692250701884155,
+ -2.2825786669878485,
+ -4.549661873708816,
+ 0.3223425848737639,
+ 0.5534756713173962,
+ 1.108165862922106,
+ -2.8776741826807255,
+ 3.7139107454206144,
+ -3.2930618682826416,
+ 1.7954362057260755,
+ 0.28577344470665195,
+ -2.842827861151788,
+ -2.6545068655687927,
+ 1.6906785182607669,
+ 1.8957407082247835,
+ 6.560629673745994,
+ 6.654194698144305,
+ -3.33154047204366,
+ 1.865057604101138,
+ 0.20271987668767838,
+ -2.3035214947175624,
+ 3.536486056189505,
+ -3.625661656831741,
+ 1.7476399856790419,
+ 3.794692016868539,
+ 1.5357118992674665,
+ 0.4326672163778615,
+ -2.427478875348335,
+ 3.5861878731164016,
+ -3.5527783748044657,
+ 1.601237156932093,
+ 3.3124784311366655,
+ 1.6964456700392874,
+ 0.5811682921059895,
+ -2.620828963392177,
+ 3.651392353945044,
+ -3.499436822979706,
+ 2.1155966544611027,
+ -0.09341577805405937,
+ -1.9617904153112438,
+ 2.1549578321959015,
+ 3.4114945545647264,
+ -3.4279487551361423,
+ -2.162134937187998,
+ 1.9820243901186698,
+ 0.16884021262295498,
+ -2.1801766513560805,
+ 2.3254461165944673,
+ 4.080059731170257,
+ 1.9629394600670347,
+ 0.6696410030314787,
+ -2.6238725086020422,
+ 3.6527028696407142,
+ -3.4985058313102475,
+ 2.112706144581035,
+ -0.08962716601829543,
+ -1.9652915424771962,
+ 3.7842240198695305,
+ 4.480572612506158,
+ -9.340523476948789e-16,
+ -3.156521217502353e-16,
+ 1.1712877473750872e-16,
+ 2.4215712432489885e-16,
+ -2.903403950061127e-16,
+ 2.3144513539233714e-16,
+ -2.21849840286722e-16,
+ -7.957477492760125e-17,
+ -6.384179967684267e-16,
+ 1.6141395678206641e-16,
+ -3.1432863277015048e-18,
+ -2.10103875588469e-16,
+ 3.6395946952333213e-16,
+ 1.4566650587058817e-16,
+ -8.590270661363191e-17,
+ 3.019209235818551e-17,
+ -1.773475233313691e-16,
+ -2.3194144375986896e-16,
+ 1.5509636485369266e-16,
+ -8.594406564425956e-17,
+ -1.0825726266787748e-16,
+ -1.378082900513344e-16,
+ 1.5364879878172487e-16,
+ 2.779326858178173e-17,
+ 1.5062958954590634e-16,
+ -3.705769144237564e-17,
+ -2.729696021424991e-17,
+ -1.0141234309900118e-16,
+ -2.4649982254080225e-16,
+ 2.926565007212612e-16,
+ 4.878711252837757e-16,
+ -1.684139727157964e-16,
+ 1.0303361709960513e-15,
+ 1.5087774372967222e-16,
+ 1.6593243087813733e-16,
+ -3.6826080870860787e-16,
+ -2.0282468619800236e-16,
+ -2.2170508367952522e-16,
+ -3.8257103330577525e-16,
+ 1.4856163801452377e-16,
+ -1.649398141430737e-16,
+ 5.336969312192135e-16,
+ -3.298796282861474e-16,
+ 1.228363209641246e-16,
+ 5.364679862712661e-16,
+ -2.1341259803868112e-16,
+ 1.8468875126777723e-16,
+ 2.1175823681357505e-17,
+ -2.3392667722999623e-16,
+ 9.655265700025214e-17,
+ 5.8465125695248e-16,
+ 3.2557828910087164e-16,
+ -2.654422585682666e-16,
+ -5.525566491854224e-17,
+ -9.638308497467878e-16,
+ 9.992341799640573e-17,
+ 1.9998125284235133e-16,
+ -1.5716431638507526e-17,
+ -9.198248411589667e-17,
+ 3.808339540194139e-16,
+ -4.579271871093561e-16,
+ 7.279189390466644e-17,
+ -1.8082168190409183e-16,
+ 3.659447029934594e-16,
+ 3.211115137930853e-16,
+ 2.8289576949313546e-16,
+ 1.670904837357116e-17,
+ -1.947183161949827e-16,
+ -4.829080416084576e-16,
+ -1.0395592348260174e-16,
+ -1.196103165751678e-16,
+ -1.952146245625145e-16,
+ -1.1126613214603914e-16,
+ 2.072087434445334e-16,
+ 3.5031098941620717e-16,
+ -1.3400325923359047e-17,
+ -3.5287524931512156e-16,
+ -3.685916809536291e-16,
+ 1.9058241313221755e-16,
+ -3.6420762370709804e-16,
+ -3.465886766597186e-17,
+ -3.2260043889568074e-16,
+ -1.323488980084844e-18,
+ 4.650409403773122e-16,
+ 6.989676176073084e-17,
+ -1.194448804526572e-16,
+ -2.713152409173931e-16,
+ -1.679176643482646e-16,
+ -1.1431636065482842e-15,
+ 6.78949846783525e-16,
+ -6.028492304286465e-16,
+ 1.4373090323721407e-15,
+ -2.1175823681357505e-17,
+ -6.121136532892404e-18,
+ -2.540892046609763e-16,
+ 1.0141234309900118e-16,
+ -3.980806697911445e-17,
+ -2.2532399885944474e-16,
+ 2.0515371661022198e-16,
+ 1.3069453678337837e-16,
+ -2.421984833555265e-16,
+ 1.181751582123883e-15,
+ -5.098534500623724e-17,
+ -3.1556940368898006e-17,
+ 4.1772620933927893e-16,
+ 5.962317855282223e-16,
+ -1.1712877473750872e-16,
+ 1.9302259593924898e-16,
+ 3.893539143287101e-16,
+ 1.5815693312013887e-16,
+ 3.1978802481300045e-16,
+ -1.9686898578762056e-17,
+ -4.774486495656076e-16,
+ 2.0547166415817205e-16,
+ -1.5021599923962983e-16,
+ 4.8869830589632875e-16,
+ 1.402898318889935e-16,
+ -6.667075737177403e-17,
+ 3.547777647239935e-16,
+ -1.2639319759810263e-16,
+ -3.0837293235976867e-16,
+ 3.6561383074843823e-17,
+ -3.6004070137136216e-16,
+ -7.634877053864444e-17,
+ -2.274746684520826e-16,
+ -4.744707993604167e-16,
+ -1.3400325923359048e-16,
+ -3.4907021849737763e-16,
+ -1.9935052762527964e-16,
+ -5.227781471335135e-16,
+ -3.35504456451508e-16,
+ -4.119359450514077e-17,
+ -1.423164243897484e-16,
+ 3.5816920523546093e-16,
+ -2.294599019222099e-16,
+ -8.137802866296685e-16,
+ 2.5568152734014085e-16,
+ 6.054962083888163e-17,
+ 4.547839007816546e-16,
+ -1.2076836943274204e-16,
+ 5.852302833812671e-16,
+ -3.837290861633495e-16,
+ 4.756288522179908e-18,
+ -3.0045784787340193e-16,
+ 1.0243804705856695e-15,
+ 1.903678631608366e-17,
+ 1.6516728881152578e-16,
+ 1.5228395077101237e-16,
+ -1.675040740419881e-17,
+ -9.064865537815491e-17,
+ -3.004526779945735e-16,
+ -2.4579671902013217e-16,
+ 2.1289561015583547e-17,
+ -3.849491775668652e-16,
+ -7.061640889365196e-16,
+ -1.065822219274576e-16,
+ -3.5084865681436664e-16,
+ -4.293894559762766e-16,
+ 2.484850560109295e-16,
+ -6.787016925997592e-17,
+ 2.8802428929096424e-16,
+ 3.2218684858940423e-16,
+ 1.285438671907405e-16,
+ 5.1781506345819526e-17,
+ 7.085629127129234e-16,
+ 2.3822801641527194e-17,
+ 1.0323214044661784e-16,
+ -1.0860881442821252e-16,
+ 3.7884872054928663e-16,
+ -3.515517603350367e-19,
+ 9.922031447573566e-17,
+ 3.9439971606528355e-16,
+ 5.823351512373315e-17,
+ -6.33413554062481e-17,
+ -2.862044919433476e-17,
+ 1.589013956714366e-16,
+ -2.3347172789309203e-17,
+ 1.0840201927507426e-16,
+ 1.348304398461435e-15,
+ -6.866012674496405e-16
+ ],
+ [
+ 6.351857048811697,
+ 5.231181075660828,
+ -3.3010959110942726,
+ 1.80207451714538,
+ 0.27767308452337,
+ -2.3650730899683294,
+ 3.564625869354965,
+ -3.6112526612441176,
+ 1.8243111413002602,
+ 3.9513363501236234,
+ 1.7333994459645254,
+ 0.5428220328343801,
+ -2.487150201843911,
+ 3.611256539802238,
+ -3.5332560344110924,
+ 1.5662298428379016,
+ 3.261644239864349,
+ 1.7770653928946707,
+ 0.629149353590731,
+ -2.677151528216383,
+ 3.6714205997081653,
+ -3.4768451773497273,
+ 2.0560608583929376,
+ -0.018656690659378136,
+ -2.0277426886123795,
+ 2.1799291990877974,
+ 3.4670675697273112,
+ -3.380192258487584,
+ -2.142081011765848,
+ 1.9205755122160095,
+ 0.2438219359720842,
+ -2.243451525648851,
+ 2.258314294025733,
+ 3.9519749318937554,
+ -3.4650206635698635,
+ -2.0591361621737074,
+ 1.69049497420328,
+ 0.40655787643010777,
+ -2.3693856132589364,
+ 3.6019188652768435,
+ -3.575855239822699,
+ 2.3913315575430354,
+ -2.178534766631258,
+ -2.317943407511697,
+ -3.4862477339923923,
+ -3.5537509743693776,
+ -5.351516769399216,
+ -5.304917729869878,
+ 3.5809618393536544,
+ -3.5965309569959927,
+ 2.4485346613282992,
+ -0.38641661821810924,
+ -1.7058147118604472,
+ 3.2482259491106555,
+ -2.4510672005133283,
+ -4.606247940090465,
+ 1.9456439499880276,
+ 1.3627943070051762,
+ -0.2268756381879177,
+ -1.84964732511868,
+ 3.3708205787246963,
+ -2.4274938235856367,
+ -4.2738492552611484,
+ 1.5099287672001858,
+ 1.2232439636943135,
+ 0.03568374468638766,
+ -2.0731972996952646,
+ 3.437129879932596,
+ -3.6674225271630414,
+ 2.665045921711905,
+ -0.7981876899485646,
+ -0.7680351693790498,
+ -0.6601098499803469,
+ 4.254639497896214,
+ 2.334181546571992,
+ -3.6322036831243127,
+ 2.4742935597352873,
+ -0.5397928644824683,
+ -0.9256403723324076,
+ -1.0683489761256126,
+ 4.889566398481853,
+ 2.516792999761383,
+ -3.559529573285514,
+ 2.349304781671925,
+ -0.38088458515486767,
+ -1.8199471635249271,
+ 3.30902904766502,
+ -3.7284479131707644,
+ 5.174500642452323,
+ 6.408230303254748,
+ 6.3095243526612,
+ 5.085498180827387,
+ -3.7068453391065943,
+ 3.392327306310182,
+ -1.9810716170058633,
+ -0.19439844675488302,
+ 2.200790634669065,
+ -3.4971322825347824,
+ 2.5389242469047577,
+ 4.8955639787778855,
+ -1.3056308882782912,
+ -1.0440901734941619,
+ -0.3540748619120622,
+ 2.330871406893421,
+ -3.5823180555591567,
+ 2.3661310513983165,
+ 4.275902355451728,
+ -0.8708886846654772,
+ -0.8825624299526418,
+ -0.6144926307989924,
+ 2.5303952980408373,
+ -3.6252952877922806,
+ 3.506909056155922,
+ -2.2262962334759653,
+ 0.22262627275472097,
+ 1.1164706447608386,
+ 1.307599236960391,
+ -4.28577456227104,
+ -2.4140796632369006,
+ 3.4479582947743945,
+ -2.009912417404485,
+ -0.03993397942308879,
+ 1.259319117157798,
+ 1.7317947149430852,
+ -4.635274532092157,
+ -2.446950459284602,
+ 3.3371177787297324,
+ -1.870129402995871,
+ -0.19994451548014563,
+ 2.3040367190930713,
+ -3.5401103850630906,
+ 3.6310086197945224,
+ -5.502880208254934,
+ -5.540283515802876,
+ -3.5021183037620665,
+ -3.4234089104047927,
+ -2.003154827147411,
+ -1.857519085757775,
+ 2.2441417671580153,
+ -3.5169237886313964,
+ 3.6501730061520736,
+ -2.513349078715381,
+ 0.5937031591690545,
+ 1.5207434183291861,
+ -1.9903591939576406,
+ -3.3051588505301326,
+ 4.07281264951573,
+ 2.304374083291318,
+ -2.392510908970062,
+ 0.43183313614388386,
+ 1.7570085015208803,
+ -2.0817451686318136,
+ -3.244371156135907,
+ 3.591142235242957,
+ 2.2328467454857406,
+ -2.1845388368393026,
+ 0.1699704160919001,
+ 1.8966747135676385,
+ -3.4039170810938,
+ 3.7050957031943565,
+ -2.8066758800661122,
+ 0.7471902285604239,
+ 1.9721111962474733,
+ 3.1186079604026395,
+ 1.4708490572569666,
+ -3.467825884930991,
+ 3.657861158856488,
+ -2.625975011785555,
+ 0.6687742159728294,
+ 1.9625525841027827,
+ 4.088354537407372,
+ 2.3295680943565706,
+ -2.1866657541043097,
+ 0.17380998567125683,
+ 1.8923942742491195,
+ -3.4006832668921168,
+ 3.703889415319268,
+ -2.807916771615491,
+ 3.198676470307259,
+ 4.0973833980955,
+ -1.3976043629695954e-15,
+ -2.241163151651173e-15,
+ -3.475812933947822e-16,
+ -1.995573227784179e-16,
+ 2.4037868600790984e-16,
+ 1.4492204331929045e-16,
+ 5.474591486605645e-16,
+ 2.3442298559752804e-16,
+ 6.24025054110004e-16,
+ -4.3675136342799855e-17,
+ -8.542707776141392e-17,
+ -6.551270451419978e-16,
+ -1.401243957664829e-16,
+ -3.810821082031798e-16,
+ 5.434576624473391e-17,
+ 2.8239946112560365e-16,
+ 1.7124706631379053e-16,
+ 3.676404232491931e-16,
+ 1.5402103005737373e-16,
+ 8.536503921547244e-17,
+ 3.070908024103115e-17,
+ 1.8148342639413425e-16,
+ 1.0951871310202085e-16,
+ 1.4301952791041848e-16,
+ -2.61120239867677e-16,
+ 2.0042586242159858e-16,
+ 6.56781406367104e-17,
+ -2.3326493273995377e-17,
+ -2.5295183131871586e-16,
+ -3.9746028433172975e-16,
+ -1.0331485850787314e-16,
+ -1.258968892305708e-16,
+ -3.924144825951563e-16,
+ -8.933550615572698e-17,
+ 2.5791491499403403e-16,
+ 5.082197683525802e-16,
+ 2.2309061120555156e-16,
+ 9.785546646502316e-17,
+ 3.781869760592442e-16,
+ -5.199657330508332e-16,
+ -1.0703717126436177e-16,
+ -3.127569896062997e-16,
+ -3.1995346093551106e-16,
+ 1.9149231180602588e-17,
+ -5.0209863181968774e-17,
+ 1.170460566762534e-17,
+ 8.809473523689745e-18,
+ 7.101345558767742e-16,
+ -5.3948719550708465e-16,
+ -2.4732700315335524e-17,
+ -1.9885421925774783e-16,
+ -1.8231060700668727e-16,
+ -3.9642630856603845e-17,
+ 1.0370776929883583e-16,
+ 8.15145134640381e-16,
+ 7.080666043453917e-17,
+ 4.3675136342799855e-17,
+ 1.4502544089585958e-16,
+ -6.160427611988674e-17,
+ -1.3880090678639804e-16,
+ -3.1631386624027773e-16,
+ 5.707546226615891e-17,
+ -2.837229501056885e-16,
+ 1.0006817460360251e-16,
+ 8.205631676526033e-17,
+ 1.5695752123193698e-16,
+ 3.585621160264236e-16,
+ -1.53752196358294e-16,
+ 3.35504456451508e-16,
+ 2.0480991966812963e-16,
+ 2.2598574334948716e-16,
+ 7.006219788324144e-17,
+ 1.2108373204127788e-16,
+ 1.6463996117102322e-16,
+ 4.2202754852455467e-16,
+ 2.8206858888058244e-16,
+ -5.823351512373315e-17,
+ 8.205631676526033e-17,
+ -7.940933880509064e-17,
+ 3.816611346319669e-16,
+ 3.30872245021211e-19,
+ -4.466775307786349e-17,
+ 8.189088064274973e-17,
+ -2.268129239620402e-16,
+ 1.9345686576083932e-16,
+ 1.1745964698252993e-16,
+ 3.3798599828916706e-16,
+ 3.657792668709488e-16,
+ 1.2131430863702702e-15,
+ -1.8797679420267551e-16,
+ 5.793573010321406e-16,
+ -1.3320916584553956e-15,
+ -4.34683411896616e-16,
+ 3.3798599828916706e-16,
+ 3.6975231875061755e-16,
+ 5.790264287871194e-17,
+ 3.332710687976148e-16,
+ 1.7453510924868881e-16,
+ -2.2805369488086973e-16,
+ 8.08982639076861e-17,
+ -1.330416617714976e-16,
+ -3.806685178969033e-16,
+ -2.0042586242159858e-16,
+ 4.411974592204711e-16,
+ 2.414540208042288e-16,
+ -2.574186066265022e-16,
+ 2.6221625417930974e-17,
+ -1.10924920143361e-16,
+ -2.7925617479790214e-16,
+ -1.622101181216487e-16,
+ -1.3334151474354806e-16,
+ -1.3962808739895107e-16,
+ -1.8677738231447362e-16,
+ -1.95628214868791e-17,
+ 6.865599084190129e-18,
+ -7.6638283753038e-17,
+ 2.5551609121763025e-16,
+ 3.447688793121019e-16,
+ -3.7884872054928663e-16,
+ 1.4591466005435408e-16,
+ -1.594804221002237e-16,
+ -7.4859845436049e-17,
+ 7.783769564123989e-16,
+ 1.8578476557941e-16,
+ 1.7494869955496533e-16,
+ 1.9041697700970695e-16,
+ 2.3243775212740075e-17,
+ -1.548895697005544e-16,
+ 2.9993569011172783e-16,
+ 1.9091328537723876e-16,
+ 4.0697286137608955e-17,
+ 2.693300074472658e-16,
+ 7.160075382259007e-16,
+ 4.9961708998202865e-17,
+ 4.259980154648092e-16,
+ -1.773475233313691e-16,
+ -1.134891800422754e-16,
+ -6.327931686030662e-17,
+ 2.0199750558544933e-16,
+ -8.751570880811032e-17,
+ -1.4392942658422682e-16,
+ -1.9124415762225997e-16,
+ 2.0059129854410918e-17,
+ 4.82742605485947e-16,
+ -5.899452128728193e-16,
+ -3.5287524931512156e-16,
+ -1.0089535521615554e-16,
+ -1.43433118216695e-16,
+ 3.692534254436715e-16,
+ 2.2333876538931747e-18,
+ 3.8732732182795515e-17,
+ -3.4265956875009167e-16,
+ -2.041481751780872e-16,
+ 3.987010552505593e-16,
+ 7.684507890617626e-16,
+ -4.053185001509835e-17,
+ 4.1507923137910924e-16,
+ -9.078307222769479e-18,
+ 2.478233115208871e-16,
+ 1.190416299040376e-16,
+ -2.03817302933066e-16,
+ -2.4626200811469325e-16,
+ -5.16781087692504e-17,
+ 8.743299074685501e-17,
+ -1.5406238908800138e-16,
+ 3.2094607767057474e-17,
+ 1.535247216898419e-16,
+ -1.1444043774671138e-16,
+ 2.741069754847595e-17,
+ -9.105190592677451e-17,
+ 1.018259334052777e-16,
+ -5.000306802883052e-16,
+ 8.652309207304668e-17,
+ 1.0695445320310647e-16,
+ -5.37667398159468e-19,
+ -1.0774027478503184e-16,
+ 9.593227154083737e-17,
+ 5.128519797828771e-18,
+ 9.443093872905364e-16,
+ 7.581937494661051e-16
+ ],
+ [
+ 8.430677180155428,
+ 6.964966410425755,
+ -4.297547752544986,
+ 2.0775256131217104,
+ 0.8112900609691274,
+ -3.5618395381103225,
+ 4.994136017941872,
+ -4.810792051881836,
+ 2.27878926634478,
+ 5.054110672145846,
+ 2.894609071587097,
+ 1.0310733365428288,
+ -3.7163334401064136,
+ 5.039594314324836,
+ -4.675357172055479,
+ 1.919850502007725,
+ 4.125862391834792,
+ 2.8757898526465255,
+ 1.1307884777188477,
+ -3.954454265742565,
+ 5.0920285399593705,
+ -4.581062311871657,
+ 2.4416510643573983,
+ 0.40834239454329646,
+ -3.130181815499086,
+ 3.0991384438106313,
+ 5.020853163503932,
+ -4.304372871687505,
+ -2.7869707737214364,
+ 2.246986986145115,
+ 0.7654219264805827,
+ -3.4070130355409236,
+ 3.190429257597542,
+ 5.675739556637563,
+ -4.364928556191124,
+ -2.6542683834503316,
+ 1.918515734539834,
+ 0.9857075210593764,
+ -3.5673135537937286,
+ 5.030644173807846,
+ -4.748479723372385,
+ 2.9276340658880526,
+ -2.236491169850333,
+ -2.441351458591225,
+ -4.61950736941316,
+ -4.737691561147263,
+ -7.752504388044127,
+ -7.710128392955596,
+ 5.0104316235893425,
+ -4.784679596368071,
+ 3.011306908845465,
+ -0.09555376716410272,
+ -2.7126102588584535,
+ 4.6457791832831505,
+ -3.3404575340887606,
+ -6.362981798008863,
+ 2.1630723196628865,
+ 1.6225604584257858,
+ 0.1235847365158513,
+ -2.899799506032841,
+ 4.786064718179935,
+ -3.2866686666434304,
+ -5.868980752650848,
+ 1.5943129843369799,
+ 1.4241824088528832,
+ 0.4824421739289029,
+ -3.188724611920211,
+ 4.859615129320104,
+ -4.914722915908115,
+ 3.3300753919930153,
+ -0.6647845393826445,
+ -1.3153880696879523,
+ -1.3911898815747137,
+ 5.864390578315272,
+ 3.2643735210459845,
+ -4.848593849878733,
+ 3.0490077005395766,
+ -0.3069209838655476,
+ -1.5398952972971738,
+ -2.0106582785526808,
+ 6.696755682644405,
+ 3.491180148022411,
+ -4.720235715813401,
+ 2.866360457168936,
+ -0.08794360982957268,
+ -2.861198044373043,
+ 4.7158864388886945,
+ -5.045750953744534,
+ 6.865729508364354,
+ 8.52937288646334,
+ 8.852659131166396,
+ 7.15716351303029,
+ -5.11645597192291,
+ 4.4432200308922,
+ -2.333852001937907,
+ -0.6983227915727607,
+ 3.3525093464396054,
+ -4.92447840784714,
+ 3.4187426085795267,
+ 6.677105007580319,
+ -1.2339872696702396,
+ -1.1522417711725255,
+ -0.9147723303188288,
+ 3.5184770856767638,
+ -5.011873438764638,
+ 3.159799328087366,
+ 5.794760856092116,
+ -0.7013087488435008,
+ -0.9405731457896265,
+ -1.2659971954721143,
+ 3.7708181893648365,
+ -5.052620591338137,
+ 4.631185134414499,
+ -2.6876204197413722,
+ -0.12939166264496862,
+ 1.7736316655606508,
+ 2.2565523251136637,
+ -5.829918925260784,
+ -3.3305704731355714,
+ 4.533536623762731,
+ -2.375262662243952,
+ -0.48824362058835513,
+ 1.9612236894962671,
+ 2.863078860425254,
+ -6.267905430803968,
+ -3.3539269206580697,
+ 4.354774798842328,
+ -2.174819983952352,
+ -0.7058524342629026,
+ 3.484291825178684,
+ -4.969347422352952,
+ 4.84656854338847,
+ -7.06145933130846,
+ -7.13390263768369,
+ -4.905955541011146,
+ -4.82430284160685,
+ -3.4644820626136412,
+ -3.279753938185622,
+ 3.4083200520678623,
+ -4.946376964094934,
+ 4.882100056469966,
+ -3.1069054716742417,
+ 0.3817195166807026,
+ 2.4706655761702074,
+ -2.8808038519421517,
+ -4.888872645360446,
+ 5.293251932560231,
+ 3.0462348414180482,
+ -2.929904723123185,
+ 0.1583107250522602,
+ 2.7796356543780973,
+ -2.9863985492442553,
+ -4.750417564591168,
+ 4.626950016781737,
+ 2.932620736893016,
+ -2.627627402632701,
+ -0.2013160817127592,
+ 2.9610739547505,
+ -4.823980751171097,
+ 4.990771150595584,
+ -3.5413684277521247,
+ 0.7506149195775135,
+ 2.2490592882485765,
+ 4.594978116745814,
+ 2.2313511969859263,
+ -4.894153079939535,
+ 4.896422886150712,
+ -3.2727976308289155,
+ 0.6251547689169252,
+ 2.1575224379083546,
+ 5.543994367298317,
+ 3.0522039336650164,
+ -2.6301276968353076,
+ -0.19630982351474666,
+ 2.9552126630451467,
+ -4.819292151587484,
+ 4.988701876708222,
+ -3.5426222463828085,
+ 3.853733209927076,
+ 4.979664046632101,
+ -1.837333576602785e-15,
+ -2.9434394917086933e-15,
+ -4.853895834461166e-16,
+ -3.194985115986069e-16,
+ 3.6792993646358666e-16,
+ 1.7784383169890093e-16,
+ 7.459695709762199e-16,
+ 3.7421650911898967e-16,
+ 9.595295105615121e-16,
+ -7.891303043755883e-17,
+ -1.2600804162538263e-16,
+ -8.749916519585926e-16,
+ -2.1953373457157352e-16,
+ -5.145063410079832e-16,
+ 7.593518023236793e-17,
+ 3.752091258540533e-16,
+ 2.5030485335854617e-16,
+ 5.043733785042086e-16,
+ 1.9686898578762056e-16,
+ 1.0910512279574434e-16,
+ 4.845210438029359e-17,
+ 2.50801161726078e-16,
+ 1.2341534739291173e-16,
+ 1.6287186261169112e-16,
+ -3.756227161603298e-16,
+ 2.701158290291912e-16,
+ 9.016268676828e-17,
+ -1.919059021123024e-17,
+ -3.361662009415504e-16,
+ -5.747250896018436e-16,
+ -2.066297170157463e-16,
+ -1.5997673046775553e-16,
+ -5.864710543000966e-16,
+ -1.5418646617988433e-16,
+ 3.2624003359091407e-16,
+ 7.408229566024915e-16,
+ 3.06553135012152e-16,
+ 1.425438990582005e-16,
+ 5.48586182245168e-16,
+ -7.18819952308581e-16,
+ -1.462455322993753e-16,
+ -4.774486495656076e-16,
+ -4.0316783055834564e-16,
+ 5.459392042849982e-18,
+ -1.272617372412833e-16,
+ 4.359241828154455e-17,
+ -1.4723814903443893e-17,
+ 9.264009270287633e-16,
+ -6.798597454573333e-16,
+ -4.0697286137608955e-17,
+ -3.188781261391921e-16,
+ -2.6542157905295276e-16,
+ -3.614262288973885e-17,
+ 1.3834595744949388e-16,
+ 1.2262952581098633e-15,
+ 8.42069863578982e-17,
+ 4.111087644388547e-17,
+ 1.7472122488651325e-16,
+ -6.758065604558236e-17,
+ -2.2118809579667958e-16,
+ -4.052357820897282e-16,
+ 7.130296880207099e-17,
+ -3.63380443094545e-16,
+ 9.311468757932862e-17,
+ 7.576974410985732e-17,
+ 1.7511413567747593e-16,
+ 5.113216956496541e-16,
+ -1.821761901571474e-16,
+ 5.060690987599423e-16,
+ 2.8587361969832636e-16,
+ 3.102547682533268e-16,
+ 1.2176098616780567e-16,
+ 1.7689257399446494e-16,
+ 1.9808907719113628e-16,
+ 5.470972571425725e-16,
+ 3.7024604217873514e-16,
+ -5.194694246833013e-17,
+ 1.4541835168682227e-16,
+ -1.3751877683694085e-16,
+ 5.542110104105285e-16,
+ -7.279189390466644e-18,
+ 1.0257039595657542e-17,
+ 1.0455562942670269e-16,
+ -3.629668527882685e-16,
+ 2.6519410438450067e-16,
+ 1.6113478332532977e-16,
+ 4.825771693634363e-16,
+ 4.966599192921516e-16,
+ 1.798290651690282e-15,
+ -3.412533617087515e-16,
+ 7.514108684431702e-16,
+ -1.851561083138697e-15,
+ -5.656261028637603e-16,
+ 4.614840637433341e-16,
+ 5.221487143861489e-16,
+ 6.915229920943311e-17,
+ 4.044086014771752e-16,
+ 2.4666525866331285e-16,
+ -3.0804206011474746e-16,
+ 1.080297879994254e-16,
+ -1.7779213291061636e-16,
+ -6.093012392065601e-16,
+ -2.785117122466044e-16,
+ 5.963351831047915e-16,
+ 3.035752848069611e-16,
+ -3.634631611558003e-16,
+ 4.822462971184151e-17,
+ -1.7503141761622063e-16,
+ -4.2086949566698043e-16,
+ -2.3161057151484775e-16,
+ -2.096075672209372e-16,
+ -1.5170492434222525e-16,
+ -1.8148342639413425e-16,
+ -4.987899093694756e-17,
+ 3.14742223076427e-17,
+ -1.3102540902839958e-16,
+ 3.4046754012682614e-16,
+ 4.726510020128e-16,
+ -5.452774597949558e-16,
+ 1.9422200782745087e-16,
+ -1.7949819292400698e-16,
+ -7.0351711097635e-17,
+ 1.0589152611597584e-15,
+ 2.479887476433977e-16,
+ 2.5849394142282115e-16,
+ 3.4907021849737763e-16,
+ 5.821283560841932e-17,
+ -1.4285409178790788e-16,
+ 4.226892930145971e-16,
+ 2.9464173419138846e-16,
+ 5.889525961377557e-17,
+ 3.668546016672677e-16,
+ 9.129592420747766e-16,
+ 3.2094607767057474e-17,
+ 6.041727194087313e-16,
+ -1.7668577884132669e-16,
+ -1.8694281843698423e-16,
+ -8.768114493062092e-17,
+ 2.362427829451447e-16,
+ -1.0389388493666026e-16,
+ -2.837229501056885e-16,
+ -1.9265036466360012e-16,
+ 2.638706154044158e-17,
+ 6.817622608662053e-16,
+ -8.735027268559971e-16,
+ -4.986244732469651e-16,
+ -1.5658528995628811e-16,
+ -2.1035202977223491e-16,
+ 4.873748169162439e-16,
+ 1.0174321534402239e-17,
+ 8.950094227823758e-17,
+ -4.433688083284228e-16,
+ -2.809105360230082e-16,
+ 5.775375036845239e-16,
+ 1.0632579593756618e-15,
+ -5.906069573628618e-17,
+ 6.124445255342616e-16,
+ 3.561012537040784e-17,
+ 2.9397998970134604e-16,
+ 1.4282307251493714e-16,
+ -3.260332384377758e-16,
+ -3.4319723614825113e-16,
+ -9.886876271540062e-17,
+ 1.2333262933165643e-16,
+ -2.7976282292309087e-16,
+ 3.308722450212111e-17,
+ 2.0311419941239592e-16,
+ -1.4177875699158894e-16,
+ -9.716787258083845e-18,
+ -1.1787323728880644e-16,
+ 1.3234889800848443e-16,
+ -7.07901168222881e-16,
+ 1.048865016717239e-16,
+ 1.2506970861801778e-16,
+ 7.279189390466644e-18,
+ -1.622101181216487e-16,
+ 1.2405641236764033e-16,
+ 8.519960309296185e-18,
+ 1.2536749363853685e-15,
+ 1.0114764530298422e-15
+ ],
+ [
+ -5.1606627283941675,
+ -4.218913000339454,
+ 2.7813707320974053,
+ -1.9369804588870094,
+ 0.3892976977759095,
+ 1.292937666673847,
+ -2.539654336430059,
+ 2.887411587865565,
+ -1.6870345547554246,
+ -3.4838907794320932,
+ -0.5550206107651096,
+ 0.005232239221240285,
+ 1.403883915301171,
+ -2.6002190375393925,
+ 2.8708256356311073,
+ -1.5009040166846805,
+ -2.941976922122844,
+ -0.7008097704839715,
+ -0.08626522839737615,
+ 1.5775276709585586,
+ -2.689432092780271,
+ 2.851962827541768,
+ -2.104483922285521,
+ 0.6161765194362301,
+ 0.9957811600732682,
+ -1.4754697253914302,
+ -2.214729087910681,
+ 3.0078680150678534,
+ 1.8210471103822512,
+ -2.014790005325234,
+ 0.4163545758130543,
+ 1.185579595782406,
+ -1.5574678443763368,
+ -2.592489560553124,
+ 3.15154550683019,
+ 1.7861428309364378,
+ -1.8619661264897807,
+ 0.2893672328024675,
+ 1.2968030000596182,
+ -2.588590890671313,
+ 2.880643178799064,
+ -2.31798628167728,
+ 2.7110783292751366,
+ 2.795852486263306,
+ 2.8435009063011454,
+ 2.857269835104518,
+ 3.414638541807932,
+ 3.348795887171457,
+ -2.560639464633706,
+ 2.8848605860277576,
+ -2.353330710966479,
+ 0.8923279148897716,
+ 0.7202366774640979,
+ -2.179702258179446,
+ 1.8660861159921698,
+ 3.384328129347691,
+ -2.1832471591087157,
+ -1.3748060912901392,
+ 0.7742501540184025,
+ 0.8433682393467102,
+ -2.3106021215907466,
+ 1.8792635808555955,
+ 3.1901519905517195,
+ -1.8155223997019758,
+ -1.2803320193316148,
+ 0.5748958112854495,
+ 1.0352499464624219,
+ -2.386186136927298,
+ 2.8908358160624266,
+ -2.4841582104477555,
+ 1.1942676788402187,
+ 0.19872227525446307,
+ -0.20368794931672282,
+ -3.144523426581076,
+ -1.657545359432037,
+ 2.891008476760948,
+ -2.3683084690409255,
+ 1.006673138021975,
+ 0.30475872609785853,
+ 0.016468171019878974,
+ -3.6752671861446,
+ -1.8282821200398809,
+ 2.876861374403514,
+ -2.291760650764112,
+ 0.8882139046962824,
+ 0.8171584193640504,
+ -2.244359749319635,
+ 2.8685397118563523,
+ -4.207351513601341,
+ -5.172161731887269,
+ -4.439263495221807,
+ -3.546604673850003,
+ 2.7082066153962603,
+ -2.862633048179939,
+ 2.0129901341912535,
+ -0.4958760184828536,
+ -1.1894255376969871,
+ 2.4137311840488476,
+ -1.9925400072198394,
+ -3.7198072370057664,
+ 1.7776149424456782,
+ 1.183833910605351,
+ -0.37169722216753365,
+ -1.3037821154686073,
+ 2.5207543970227326,
+ -1.8946748577426702,
+ -3.302382042178854,
+ 1.3606901440446824,
+ 1.0486839755124373,
+ -0.16906569792495546,
+ -1.4847541836582412,
+ 2.5781495862629114,
+ -2.9041370572809506,
+ 2.1715488628198054,
+ -0.812529100762289,
+ -0.48790190346211165,
+ -0.3138353843585463,
+ 3.2786995943362753,
+ 1.7797087449413762,
+ -2.883183746574051,
+ 2.0328249058421384,
+ -0.6131666229959376,
+ -0.6068426099012214,
+ -0.595975219494674,
+ 3.5998548452332617,
+ 1.8355380468318996,
+ -2.8395272003364465,
+ 1.9397473386716493,
+ -0.49161510484085014,
+ -1.2808258431861361,
+ 2.466105412539147,
+ -2.9322719254278753,
+ 4.819641850099208,
+ 4.8172962632869805,
+ 2.482723076164775,
+ 2.3879539250306823,
+ 0.46988961034644666,
+ 0.3380301847174869,
+ -1.2268932232958845,
+ 2.43605655945401,
+ -2.933227378377886,
+ 2.349787047426643,
+ -1.087335764590334,
+ -0.6070462661430198,
+ 1.2736346927060858,
+ 1.9640431000915755,
+ -3.4706238290385185,
+ -1.8898918949483954,
+ 2.2764192150976994,
+ -0.9671927055813709,
+ -0.8047061967908661,
+ 1.3704406493550674,
+ 1.9976626666369084,
+ -3.11807120725149,
+ -1.8586159084207985,
+ 2.1442188254692094,
+ -0.7727034224591164,
+ -0.9247709923017471,
+ 2.3046264751659775,
+ -2.9264867846403613,
+ 2.52325748553799,
+ -0.9534793077813677,
+ -2.131669205293394,
+ -1.8790028351366286,
+ -0.7939776611159047,
+ 2.3785369195280155,
+ -2.9326548935332295,
+ 2.4186550520780594,
+ -0.920485789022815,
+ -2.237187793928245,
+ -2.374822703746334,
+ -0.9999620972750812,
+ 2.487420905577708,
+ -0.7759739847496483,
+ -0.9215277919031992,
+ 2.302554833934083,
+ -2.9261834912249904,
+ 2.5248480405733766,
+ -3.161736284150095,
+ -3.988031629641064,
+ 1.5434363049626941e-15,
+ 2.160761196111019e-15,
+ 2.557228863707685e-16,
+ 2.755338620414135e-16,
+ -3.06553135012152e-16,
+ -1.563371357725222e-16,
+ -3.732652514145537e-16,
+ -5.836586402174163e-16,
+ -6.895170791088899e-16,
+ 9.636654136242771e-18,
+ 1.4773445740197074e-16,
+ 7.605098551812535e-16,
+ -3.7553999809907456e-17,
+ 2.0499603530595406e-16,
+ -1.6378176128549948e-17,
+ -3.034098486844505e-16,
+ -1.7638592586927621e-16,
+ -2.099384394659584e-16,
+ -1.1514354126738145e-16,
+ 1.1042861177582918e-16,
+ 2.98612201131643e-17,
+ -7.361907451721946e-17,
+ -8.536503921547244e-17,
+ 4.971355481443696e-17,
+ 2.2821913100338034e-16,
+ -1.4417758076799272e-16,
+ -5.335314950967028e-17,
+ 4.566036981292712e-17,
+ 4.700040240526303e-16,
+ 3.624705444207367e-16,
+ 5.604148650046762e-17,
+ 1.9929365895816662e-16,
+ 1.2473883637299657e-16,
+ 1.6099002671813299e-16,
+ -2.51628342338631e-16,
+ -4.701694601751409e-16,
+ -1.209751645858803e-16,
+ -2.2333876538931747e-18,
+ -2.0315555844302357e-16,
+ 4.688459711950561e-16,
+ 1.6675961149069035e-16,
+ 2.328720219489911e-16,
+ 4.133421520927479e-16,
+ 1.8115255414911306e-17,
+ -2.2375235569559396e-17,
+ -2.895132143935597e-19,
+ 1.0918784085699964e-17,
+ -2.547716286663325e-16,
+ 3.334830338295815e-16,
+ 4.913452838564984e-17,
+ 3.374896899216353e-17,
+ 9.098986738083304e-18,
+ 1.3830459841886623e-16,
+ 7.878895334567589e-18,
+ -7.810859729185101e-16,
+ -8.197359870400503e-17,
+ -3.350081480839762e-17,
+ 3.110199103199384e-17,
+ 4.776968037493734e-17,
+ 7.874759431504822e-17,
+ 4.683496628275243e-16,
+ 1.0422475718168147e-17,
+ 2.426947917230583e-16,
+ -1.151021822367538e-16,
+ -1.9041697700970695e-16,
+ -1.9748937124703533e-16,
+ -4.1590641199166227e-16,
+ 1.0439019330419208e-16,
+ -1.406207041340147e-16,
+ -1.1481266902236024e-16,
+ -1.6001808949838318e-16,
+ -7.039307012826266e-17,
+ -9.979934090452278e-17,
+ -1.6478213283880577e-16,
+ -5.298919004014695e-16,
+ -1.6717320179696687e-16,
+ 1.8454399466058045e-16,
+ 3.1701696976094786e-17,
+ 1.196103165751678e-16,
+ -2.4335653621310074e-16,
+ 6.410649747285964e-17,
+ -2.1488084362596274e-16,
+ 4.694249976238432e-18,
+ 1.311908451509102e-16,
+ -2.0861495048587355e-16,
+ -7.568702604860202e-17,
+ -2.9083670337364453e-16,
+ -1.8599156073254825e-16,
+ -1.1120616155162904e-15,
+ 2.1829296365274398e-16,
+ 1.9372569945991906e-16,
+ 3.960540772903896e-16,
+ 2.40833635344814e-16,
+ -3.645798549827469e-16,
+ -2.7983520122668926e-16,
+ -7.287461196592174e-17,
+ 1.2738581433316625e-17,
+ 3.5113817002876025e-17,
+ -8.205631676526033e-17,
+ -2.43563331366239e-16,
+ 3.0051471654051495e-16,
+ -1.1137986948026518e-16,
+ 2.7966976510417866e-16,
+ -3.481706595812262e-16,
+ -2.8955457342418734e-16,
+ -1.1894857208512538e-16,
+ -2.642842057106923e-17,
+ 1.1423364259357312e-16,
+ 2.9464173419138846e-16,
+ 1.0976686728578676e-16,
+ 8.232515046434007e-17,
+ -6.843885593110613e-17,
+ 8.768114493062092e-17,
+ -2.420537267483297e-17,
+ -1.6295458067294645e-17,
+ -1.255660169855496e-16,
+ -2.96358133962436e-16,
+ -2.8794157122970893e-16,
+ 2.7991791928794457e-16,
+ -6.452008777913615e-18,
+ 1.667182524600627e-16,
+ -1.8189701670041076e-16,
+ -2.660212849970537e-16,
+ -3.05850031491482e-17,
+ -9.132073962585424e-17,
+ -4.1822251770681074e-16,
+ -8.065010972392019e-17,
+ -1.0381116687540496e-16,
+ -1.9587636905255693e-16,
+ 3.629254937576409e-17,
+ 2.385071898720086e-16,
+ -1.6361632516298885e-16,
+ -5.376673981594679e-17,
+ -9.835177483255498e-17,
+ -3.286802163979455e-16,
+ 3.510761314828187e-16,
+ 7.519071768107022e-17,
+ -9.371956340225802e-17,
+ -2.3094882702480533e-16,
+ 1.0300466577816576e-16,
+ 1.4905794638205559e-16,
+ 6.617444900424221e-18,
+ -2.2333876538931747e-18,
+ -3.273980864484883e-16,
+ 2.2251158477676444e-16,
+ 3.8629334606226387e-16,
+ 7.194403377679958e-17,
+ 1.3693975040815373e-16,
+ -2.749548356126264e-16,
+ 6.393330653210635e-17,
+ 2.812414082680294e-17,
+ 3.991973636180911e-16,
+ 2.0497535579064023e-16,
+ -2.9985297205047253e-16,
+ -4.494485858306876e-16,
+ 8.577862952174896e-17,
+ -4.165681564817047e-16,
+ 1.0081263715490023e-17,
+ -1.6626330312315854e-16,
+ 3.838118042246048e-17,
+ 2.9728871215155815e-16,
+ 1.258968892305708e-16,
+ 1.7246715771730625e-16,
+ -1.5203579658724646e-16,
+ -2.1821024559148868e-16,
+ -2.6924728938601048e-17,
+ -2.5938316058131565e-16,
+ 8.594406564425956e-17,
+ -1.2455272073517214e-16,
+ 3.47726050001979e-17,
+ -1.5260448325837667e-16,
+ 3.7927265061322005e-16,
+ -2.5311726744122644e-17,
+ 7.990564717262246e-17,
+ -6.940045339319902e-17,
+ 2.5559880927888552e-17,
+ -3.015073332755786e-17,
+ -1.41654679899706e-16,
+ -1.557084785069819e-15,
+ -1.406207041340147e-17
+ ],
+ [
+ 4.58288827388438,
+ 3.670547447131993,
+ -2.803615731672744,
+ 2.7796152351043593,
+ -1.9346528948409472,
+ 0.29059704612562987,
+ 1.2955744280069939,
+ -2.542439849827703,
+ 1.9969464913463078,
+ 3.759937510550366,
+ -1.5848371721072407,
+ -1.0912386916170007,
+ 0.16747443715253998,
+ 1.408595479037433,
+ -2.637571606659966,
+ 1.8890123942413535,
+ 3.3236209154745677,
+ -1.186781223732184,
+ -0.9579848173758038,
+ -0.03768297366593543,
+ 1.581958264242921,
+ -2.6905455428215705,
+ 2.8339470368584787,
+ -2.1024887801555217,
+ 0.6107327661193906,
+ 0.5904296396352006,
+ 0.500631070834862,
+ -3.308126558089342,
+ -1.8136598253620806,
+ 2.8079687769863293,
+ -1.9536962378575007,
+ 0.41080147644152465,
+ 0.7078531359441539,
+ 0.7966610616158593,
+ -3.6177606408620337,
+ -1.861770404526605,
+ 2.7512762560134987,
+ -1.8576985115759195,
+ 0.28630278391082603,
+ 1.3844977605601798,
+ -2.5901232599474007,
+ 2.8801756162007686,
+ -4.699131385354109,
+ -4.705084001987118,
+ -2.5521596934183868,
+ -2.464373416590812,
+ -0.760032776286772,
+ -0.6334060751822728,
+ 1.3330836505645287,
+ -2.5632315284241503,
+ 2.884448672113618,
+ -2.2924741101508435,
+ 0.8893634741146271,
+ 0.7254847497206584,
+ -1.3520759172391243,
+ -2.133623154383004,
+ 3.405834654854572,
+ 1.8724536159139733,
+ -2.2116788949267843,
+ 0.7687802192994525,
+ 0.9219617246563402,
+ -1.4424896864780798,
+ -2.145950941194397,
+ 3.0458282427024628,
+ 1.8345728367440919,
+ -2.0726789224522406,
+ 0.5693670738858512,
+ 1.0379051535238248,
+ -2.4427078137060874,
+ 2.89072348503662,
+ -2.481209243582986,
+ 0.8590105176088179,
+ 1.9826785853648683,
+ 2.0322598650746633,
+ 0.890312513600475,
+ -2.5088933500294996,
+ 2.887189359903523,
+ -2.364995651834504,
+ 0.8184491624260999,
+ 2.0587225202135704,
+ 2.5398013729578803,
+ 1.0963939674619005,
+ -2.6097041071933886,
+ 2.876071746669909,
+ -2.289769830181861,
+ 0.79321812767672,
+ 0.8198712470480275,
+ -2.2478613582224956,
+ 3.744263059804597,
+ 4.509585081521515,
+ 2.2694208410424324,
+ 1.7246551526440754,
+ -1.757821591199309,
+ 2.7096129290844875,
+ -2.8617470817090114,
+ 1.9406591561083724,
+ -0.4932385998030386,
+ -1.1941728605565107,
+ 1.5984436068582164,
+ 2.6759602973119674,
+ -3.3241605798678027,
+ -1.8683819948519673,
+ 1.8479396023090209,
+ -0.36653894508318374,
+ -1.3772487755548566,
+ 1.61509425523427,
+ 2.5147841026801534,
+ -2.79877785580929,
+ -1.73884063188557,
+ 1.6857453397086344,
+ -0.16393135683663063,
+ -1.4869989465914284,
+ 2.621031955106623,
+ -2.903678975223155,
+ 2.167905906326254,
+ -0.5874484740470727,
+ -1.5440173877329453,
+ -2.4166279018114625,
+ -1.1382088947174183,
+ 2.6720879212596813,
+ -2.8667131337935468,
+ 2.02886737406414,
+ -0.47479489225003757,
+ -1.4456426898219048,
+ -2.792450084827919,
+ -1.2587141307614083,
+ 2.74227771822562,
+ -2.8379906452235795,
+ 1.9374516144794256,
+ -0.3936511977945303,
+ -1.2833486062802404,
+ 2.4685723566524564,
+ -5.127120905103724,
+ -5.04529397157089,
+ -1.2889741037197884,
+ -1.1212894451366695,
+ 2.401605193389522,
+ 2.5463878499252575,
+ -0.4534911560923425,
+ -1.2293452062492694,
+ 2.4343038760296003,
+ -2.9279705402565632,
+ 2.3468610682293134,
+ -1.0830314683899769,
+ -0.2947739244109663,
+ 0.012068743792065156,
+ 3.475712155169799,
+ 1.721392759106303,
+ -2.919162727138105,
+ 2.2718800231660143,
+ -0.8895795462772906,
+ -0.43566438348755226,
+ -0.2199029084340017,
+ 3.257021056460131,
+ 1.7589513803993342,
+ -2.8953311479004706,
+ 2.1396019058932705,
+ -0.7709449348929546,
+ -1.0160386299151487,
+ 2.303089441383437,
+ -2.9241040431217904,
+ 1.69025497725036,
+ 3.182131067623622,
+ 0.07432304455392268,
+ -0.2714188834954758,
+ -1.1311566551766645,
+ 2.421095762455831,
+ -2.9299684045312677,
+ 1.7357541968313512,
+ 3.5516843504000533,
+ 0.36931388679346283,
+ -0.1030460818008497,
+ -1.3178602727520867,
+ 2.4867858890193366,
+ -0.773146618756353,
+ -1.0155973954482398,
+ 2.304429584170429,
+ -2.9268411009902637,
+ 4.178398972360161,
+ 5.146214884254207,
+ -1.1400203202205827e-15,
+ -1.2143011392278444e-15,
+ -1.2896779725467393e-16,
+ -1.9852334701272664e-18,
+ -1.0141234309900118e-16,
+ 1.921540562960683e-16,
+ 1.78546935219571e-16,
+ 1.8566068848752704e-16,
+ 6.418921553411495e-17,
+ 8.41242682966429e-17,
+ -5.633099971486118e-17,
+ -5.554828006023288e-16,
+ 1.0790571090754245e-16,
+ -1.3358966892731397e-16,
+ -8.164272645898382e-17,
+ 3.076698288390986e-16,
+ -8.189088064274974e-18,
+ 7.16338410470922e-17,
+ 2.8144820342116767e-16,
+ -3.3294019655259364e-17,
+ -4.79764755280756e-18,
+ 7.372247209378859e-17,
+ 1.621274000603934e-16,
+ 5.947428604256269e-17,
+ -1.4545971071744992e-16,
+ 4.090408129074721e-17,
+ -9.553936074987468e-18,
+ -6.032214617042954e-17,
+ -2.6403605152692643e-16,
+ -9.661469554619362e-17,
+ 1.6473301898993544e-16,
+ -1.7006833394090247e-16,
+ 2.7710550520526427e-16,
+ 2.6759292816090442e-17,
+ 1.9041697700970695e-16,
+ 1.5112589791343813e-16,
+ 1.9107872149974936e-17,
+ -7.779633661061224e-17,
+ 2.4298430493745185e-17,
+ -2.900095227610915e-16,
+ -7.694847648274539e-17,
+ 7.361907451721946e-17,
+ -3.8530072932720024e-16,
+ 7.932662074383534e-17,
+ 2.756165801026688e-16,
+ -1.0836066024444661e-17,
+ 1.0166049728276709e-16,
+ 5.55699935513124e-16,
+ -4.635520152747167e-16,
+ 9.173432993213076e-17,
+ 2.2085722355165836e-16,
+ 8.296621543906866e-17,
+ -1.6278914455043582e-16,
+ 8.784658105313153e-17,
+ -1.1845226371759356e-16,
+ 5.331179047904263e-17,
+ 1.6742135598073278e-16,
+ 1.0753347963189359e-16,
+ -3.407984123718474e-17,
+ 2.0303148135114062e-16,
+ -4.577617509868455e-16,
+ 5.045801736573468e-17,
+ -2.623816903018204e-16,
+ 2.862044919433476e-16,
+ 1.799945012915388e-16,
+ 2.44514589070675e-16,
+ 2.413713027429735e-16,
+ -2.2888087549342276e-16,
+ -2.961306592939839e-17,
+ 6.828375956625243e-17,
+ 1.2949512489517648e-16,
+ 2.4815418376590826e-18,
+ 2.8377464889397306e-17,
+ 1.2095190013115224e-16,
+ 5.772066314395027e-16,
+ 1.2223661502002366e-16,
+ -2.4827826085779126e-16,
+ -1.712263867984767e-16,
+ 8.3876114112877e-17,
+ -5.376673981594679e-18,
+ -2.729696021424991e-18,
+ -2.2333876538931747e-16,
+ 5.600012746983997e-17,
+ 9.268558763656674e-17,
+ 1.535247216898419e-16,
+ 1.0008885411891633e-17,
+ 1.1745964698252991e-17,
+ 8.354524186785578e-17,
+ -3.5403330217269584e-17,
+ 4.2186211240204406e-16,
+ 6.667075737177403e-17,
+ 2.249931266144235e-17,
+ -2.71144634916054e-16,
+ 2.3194144375986896e-16,
+ 1.1468859193047729e-16,
+ 7.46116912522831e-17,
+ 1.6520864784215343e-16,
+ 1.7122638679847673e-17,
+ -1.0091603473146936e-16,
+ 1.286265852519958e-16,
+ -2.2606846141074246e-16,
+ 4.446095792472524e-16,
+ -1.4856163801452377e-16,
+ 1.4773445740197074e-16,
+ 2.2102265967416897e-16,
+ 2.036518668105554e-16,
+ -5.172980755753496e-17,
+ 5.558653716356346e-17,
+ 2.5760472226432664e-16,
+ 3.970466940254533e-18,
+ 9.45053849841834e-17,
+ -8.526164163890332e-17,
+ -4.670261738474394e-16,
+ 1.3598849270371775e-16,
+ -7.361907451721946e-17,
+ 1.5683344414005402e-16,
+ 2.334303688624644e-16,
+ 1.4049662704213175e-16,
+ 4.648755042548015e-17,
+ -2.9778502051908996e-17,
+ -2.2218071253174323e-16,
+ -8.230447094902625e-18,
+ 3.410879255862409e-16,
+ 9.446402595355575e-17,
+ -4.0366413892587744e-17,
+ -1.3615392882622836e-16,
+ -4.417144471033167e-17,
+ -4.1234953535768425e-16,
+ 5.70754622661589e-18,
+ -1.7462816706760103e-16,
+ -1.7850557618894335e-16,
+ 1.9533870165439746e-16,
+ 4.063524759166748e-16,
+ 3.3757240798289054e-16,
+ 1.361022300379438e-16,
+ -5.442021249986369e-16,
+ 5.773720675620133e-17,
+ -2.26482051717019e-16,
+ 3.685916809536291e-16,
+ -1.1998254785081666e-16,
+ 2.721424215299461e-16,
+ -3.9778081681909405e-16,
+ 8.428970441915351e-17,
+ 1.3383782311107988e-16,
+ 1.1563984963491327e-16,
+ -2.797111241348063e-16,
+ 2.5146290621612038e-17,
+ 1.3516131209116472e-16,
+ 2.4385284458063256e-16,
+ -4.9630836753181654e-17,
+ -1.0701649174904794e-16,
+ -3.0043199847925965e-16,
+ -9.504305238234287e-17,
+ 6.981404369947554e-17,
+ 1.2631047953684733e-16,
+ -1.3857343211794596e-16,
+ -8.437242248040882e-18,
+ -1.9893693731900313e-16,
+ 2.076378433872953e-16,
+ 5.829555366967463e-17,
+ 7.974021105011186e-17,
+ 1.799945012915388e-16,
+ 1.0290126820159663e-16,
+ 8.156000839772852e-17,
+ 2.916225249555699e-16,
+ 1.0877425055072312e-17,
+ 8.941822421698228e-17,
+ -1.977788844614289e-16,
+ 2.2751602748271026e-16,
+ 3.242031013325023e-17,
+ 1.0306670432410724e-16,
+ -2.1175823681357505e-17,
+ 8.203563724994651e-17,
+ -1.1745964698252991e-17,
+ -3.010937429693021e-17,
+ -4.424382301393006e-17,
+ -3.0977913940110886e-17,
+ 5.641371777611649e-17,
+ 1.2642214891954196e-15,
+ 7.560430798734672e-17
+ ],
+ [
+ -2.5107482603450144,
+ -1.925877098778258,
+ 1.8317071840223391,
+ -2.7859372745392137,
+ 2.760119359901823,
+ -1.8465484762025983,
+ 0.2863258926040123,
+ 1.2910336864609335,
+ -1.6521228895546423,
+ -2.8051782005486046,
+ 3.1928645830569016,
+ 1.8135565738319304,
+ -1.7481558522555531,
+ 0.16153839282464985,
+ 1.4694833877447715,
+ -1.657150698286911,
+ -2.6163840107120215,
+ 2.674266472172115,
+ 1.6823626150909858,
+ -1.5821560984968137,
+ -0.042185368664472235,
+ 1.573092069564131,
+ -2.7099168492790673,
+ 2.814294179205702,
+ -2.084861091266076,
+ 0.48190128315046693,
+ 1.3660530673270626,
+ 2.5250307847624565,
+ 1.213463408587762,
+ -2.7523093213341565,
+ 2.7682682666342346,
+ -1.9368119505719268,
+ 0.36767244841847857,
+ 1.2480054043086293,
+ 2.898309429879808,
+ 1.3283197307249797,
+ -2.813064774849521,
+ 2.7310238551423973,
+ -1.8432396771407336,
+ 0.18683773761896075,
+ 1.377099202144621,
+ -2.574801547797434,
+ 5.1382170252256065,
+ 5.06385075828113,
+ 1.4283780453102515,
+ 1.2683875230773702,
+ -2.1259864118119873,
+ -2.271617827870749,
+ 0.2447592165917205,
+ 1.3281015011673527,
+ -2.546819071226895,
+ 2.8566638216566043,
+ -2.2755900360786403,
+ 0.8789491384249523,
+ 0.39938875699442283,
+ 0.1934828690783974,
+ -3.5072263018173255,
+ -1.754828711500355,
+ 2.8427517192275396,
+ -2.193545668480375,
+ 0.6849496091690331,
+ 0.5369945920253133,
+ 0.40696367924872745,
+ -3.272609146289271,
+ -1.7855722266272316,
+ 2.8057426251324142,
+ -2.0552440631203877,
+ 0.5633899219122749,
+ 1.1213977640918966,
+ -2.4274188191560095,
+ 2.8712404307705444,
+ -1.6291628277591892,
+ -3.1021595155271906,
+ -0.2628718849568249,
+ 0.1629982771452958,
+ 1.2349656372211606,
+ -2.533201720773374,
+ 2.8673396955477415,
+ -1.6669086862451095,
+ -3.4476401671062353,
+ -0.5814658308454242,
+ -0.010846538673964902,
+ 1.413623547755032,
+ -2.5941306233802552,
+ 2.8562399783327383,
+ -2.2115351937347962,
+ 0.7857496434249862,
+ 0.818825800362482,
+ -2.060208805979587,
+ -2.377126840220316,
+ 0.6282144673007519,
+ 0.6492594877224545,
+ 0.16138690173426767,
+ -1.74951912852086,
+ 2.6919922080030934,
+ -2.819323636537304,
+ 1.9261222394157225,
+ -0.4854510574824529,
+ -0.6843954397632288,
+ -0.764127845993247,
+ 3.7740690667723857,
+ 1.937760975189381,
+ -2.7847560676364878,
+ 1.831990961057196,
+ -0.28325180114986825,
+ -0.8093673959726746,
+ -0.9102124816926508,
+ 3.312669838885082,
+ 1.8561295098072008,
+ -2.7191715792597573,
+ 1.6707037852279423,
+ -0.16077951873222265,
+ -1.5605195801122707,
+ 2.6042037017626103,
+ -2.883454711019875,
+ 1.463821223714165,
+ 2.8851499238615688,
+ 0.7700914693129361,
+ 0.12877008976483026,
+ -1.6629984784929752,
+ 2.683852430283626,
+ -2.846399697970934,
+ 1.3942465444610526,
+ 3.001527060704231,
+ 1.0773356666660123,
+ 0.2741323828533784,
+ -1.8267551846962242,
+ 2.7250495065737206,
+ -2.8182419655606488,
+ 1.8510764489631277,
+ -0.3889931506540019,
+ -1.2788517914146078,
+ 3.7583647537608256,
+ 3.6243742476241834,
+ -0.29062948928233096,
+ -0.4687773555248512,
+ -4.469461904861638,
+ -4.584196042697943,
+ 1.8979800504855329,
+ -0.44913535589595643,
+ -1.2203858741916351,
+ 2.467683960401497,
+ -2.9087784831325076,
+ 2.33061756285159,
+ -0.7741488605103813,
+ -1.971532558879568,
+ -2.3445296781060225,
+ -0.9912704057519482,
+ 2.5293391605660003,
+ -2.899773728901125,
+ 2.2079865086080455,
+ -0.6355053745620182,
+ -1.6182988725466525,
+ -2.3303646095068387,
+ -1.084951590068682,
+ 2.6175614903550057,
+ -2.8759637450892552,
+ 2.126127980801725,
+ -0.673951567690217,
+ -1.0085253764015891,
+ 2.288914445037842,
+ -1.8697624686493741,
+ -3.185618954377823,
+ 1.7429783917081108,
+ 1.2412066697358368,
+ -0.5521015717726733,
+ -1.1956525039648047,
+ 2.406027424095851,
+ -1.9783689317542326,
+ -3.6966944644589494,
+ 1.7439292929436592,
+ 1.16523090487223,
+ -0.3525217797372501,
+ -1.310597527358805,
+ 2.4698713154046468,
+ -0.6726784502039063,
+ -1.0110849910085116,
+ 2.2919712008923865,
+ -3.8227104034909534,
+ -4.614765086459656,
+ 1.170129694517513e-15,
+ 1.3459882927462864e-15,
+ 1.6212740006039342e-17,
+ -1.2279496193349696e-16,
+ 2.932355271500483e-17,
+ -2.067951531382569e-16,
+ -6.87387089031566e-17,
+ -4.9341323538788095e-17,
+ 3.245029543045527e-16,
+ -1.0745076157063828e-16,
+ -7.610061635487855e-18,
+ 3.328574784913383e-16,
+ -1.9790296155331185e-16,
+ 7.46944093135384e-17,
+ -1.0587911840678753e-17,
+ 4.896909226313923e-17,
+ 4.4931416898114766e-17,
+ -1.1828682759508294e-17,
+ -5.976379925695625e-17,
+ 3.7967590116183964e-17,
+ 8.019516038701602e-17,
+ 5.285684114213846e-17,
+ -1.233946678775979e-16,
+ -7.262645778215583e-17,
+ -8.437242248040881e-17,
+ -3.6065074707312007e-17,
+ 1.9356026333740845e-17,
+ 1.0075059860895876e-16,
+ 2.844674126569862e-16,
+ -9.330597309598151e-17,
+ -4.286449934249789e-16,
+ 1.6113478332532977e-16,
+ -5.43953970814871e-16,
+ -1.083141313349905e-16,
+ -2.835575139831779e-16,
+ 8.933550615572698e-17,
+ 5.939156798130739e-17,
+ 8.434140320743807e-17,
+ 1.515808472503423e-16,
+ 3.2208345101283515e-17,
+ 6.931773533194372e-17,
+ -2.772709413277749e-16,
+ 3.4294908196448522e-16,
+ -9.045219998267356e-17,
+ -3.2950739701049852e-16,
+ 3.172651239447137e-16,
+ -1.3141831981936227e-16,
+ -2.1754850110144625e-17,
+ 3.393094872692519e-16,
+ 1.1166938269465874e-18,
+ -3.12012527055002e-16,
+ -1.5493092873118206e-16,
+ 1.7099891213002462e-16,
+ 9.032812289079061e-17,
+ 3.159829939952565e-16,
+ -1.3613324931091453e-16,
+ -7.394994676224067e-17,
+ -8.10637000301967e-17,
+ 1.5137405209720404e-16,
+ -1.3525436991007694e-16,
+ 3.8596247381724266e-16,
+ -2.5311726744122644e-17,
+ 2.1639044824387202e-16,
+ -2.5535065509511964e-16,
+ -2.691542315670983e-16,
+ -2.7685735102149836e-16,
+ -4.566036981292712e-17,
+ 1.240357328523265e-16,
+ 3.2053248736429817e-16,
+ 2.1672132048889322e-17,
+ 4.8720938079373324e-17,
+ 1.5087774372967222e-16,
+ 4.907248983970836e-17,
+ -3.12839707667555e-16,
+ -1.9736529415515238e-16,
+ -1.2788212270069808e-16,
+ 2.7708482568995045e-16,
+ 1.8392360920116568e-16,
+ -8.798616778149985e-17,
+ 1.220298198668854e-16,
+ -6.369290716658312e-18,
+ 1.9256764660234482e-16,
+ -2.378144261089954e-18,
+ -2.5319998550248177e-16,
+ -9.562207881112999e-17,
+ 1.7701665108634792e-17,
+ 1.0422475718168147e-17,
+ -7.891303043755883e-17,
+ 3.298382692555198e-17,
+ -2.826062562787419e-16,
+ 1.4202691117535485e-16,
+ -4.736436187478636e-16,
+ 1.3962808739895107e-16,
+ -1.0732668447875533e-16,
+ 9.371956340225802e-17,
+ -1.4004167770522759e-16,
+ -1.4266797615008345e-16,
+ 1.589841137326919e-16,
+ -2.273919503908273e-16,
+ -1.3247297510036738e-16,
+ 1.9236085144920656e-16,
+ -7.320548421094294e-16,
+ 9.185840702401371e-17,
+ -2.4753379830649353e-16,
+ -4.556110813942076e-16,
+ -2.0464448354561902e-16,
+ 8.972841694668966e-17,
+ -1.048865016717239e-16,
+ 9.132073962585424e-17,
+ -3.0936554909483235e-17,
+ -1.7490734052433768e-16,
+ 1.1898993111575303e-16,
+ 3.620983131450878e-16,
+ -1.234670461811963e-16,
+ 1.287093033132511e-16,
+ -3.3848230665669888e-16,
+ -1.5005056311711922e-16,
+ -9.4670821106694e-17,
+ 1.112557923883822e-17,
+ -2.4815418376590826e-18,
+ 2.6171994581177796e-16,
+ -9.512577044359817e-18,
+ 1.5015396069368835e-16,
+ 3.152075121709881e-17,
+ 9.181704799338606e-17,
+ 2.716461131624143e-16,
+ 8.41242682966429e-17,
+ 1.2804755882320868e-16,
+ 1.5302841332231012e-17,
+ 3.143493122854643e-16,
+ 2.4319110009059014e-16,
+ 1.3152171739593138e-17,
+ -6.046690277762632e-17,
+ -1.6119682187127124e-16,
+ 6.56781406367104e-17,
+ 5.707546226615891e-16,
+ -1.7615845120082413e-16,
+ -3.36331637064061e-16,
+ -3.9874241428118694e-16,
+ 1.2688950596563445e-16,
+ -4.343525396515948e-16,
+ 2.209244319764283e-16,
+ 9.003860967639705e-17,
+ 1.0840201927507426e-16,
+ -5.744769354180777e-16,
+ -3.060568266446202e-18,
+ -1.0558960519239397e-16,
+ 1.3830459841886623e-16,
+ -6.100457017578579e-17,
+ 7.605925732425088e-17,
+ 2.456726419282492e-16,
+ 2.937731945482078e-16,
+ 2.804142276554764e-17,
+ 2.0683651216888455e-16,
+ 1.4814804770824726e-16,
+ 1.8859717966209028e-17,
+ 3.143286327701505e-17,
+ 3.628841347270132e-16,
+ -3.687571170761397e-16,
+ -2.1672132048889322e-17,
+ -9.669741360744892e-17,
+ 5.98051582875839e-17,
+ -4.79764755280756e-18,
+ -3.987010552505593e-17,
+ -5.88559685346793e-16,
+ -7.989530741496555e-17,
+ -2.251999217675618e-16,
+ 5.525566491854224e-17,
+ -3.1978802481300045e-16,
+ 1.2808891785383634e-16,
+ -1.5422782521051199e-16,
+ 2.8330935979941194e-18,
+ 1.4227506535912076e-17,
+ 1.584050873039048e-17,
+ -2.187892720202758e-17,
+ -1.4558378780933287e-16,
+ -8.030889772124206e-17,
+ -1.0000613605766103e-16,
+ -9.295855723870925e-16,
+ 1.8363409598677212e-16
+ ],
+ [
+ -0.38487074971703444,
+ -0.45220258274824854,
+ -0.3435003269124414,
+ 1.8258458331694123,
+ -2.7934874729287023,
+ 2.7529768903006486,
+ -1.8732243634614085,
+ 0.30747148195187674,
+ 0.7768381520938502,
+ 0.9456192760380081,
+ -3.8012668335661592,
+ -1.9659324780100194,
+ 2.7144035088794833,
+ -1.772859462450621,
+ 0.1050905554875756,
+ 0.8945031285479882,
+ 1.0673102993482344,
+ -3.3260780550657882,
+ -1.8786461028218238,
+ 2.637460627978951,
+ -1.606816211915792,
+ -0.020153305880354938,
+ 1.6423762801911792,
+ -2.71559972962553,
+ 2.8325910074089866,
+ -1.4126656654688228,
+ -2.8182839209512016,
+ -0.9284253365480584,
+ -0.2197882189584712,
+ 1.7438614590669084,
+ -2.784696931451762,
+ 2.7876333366584976,
+ -1.338067703928777,
+ -2.9178278914327964,
+ -1.2471255200506612,
+ -0.3655398983917848,
+ 1.9005783963139757,
+ -2.8221822621262245,
+ 2.751688906955437,
+ -1.79464004257039,
+ 0.2098923151827088,
+ 1.3669869770389373,
+ -3.9447026633399904,
+ -3.812877677541562,
+ 0.16319820650478015,
+ 0.3452112123540541,
+ 4.3666567273423285,
+ 4.485105730792855,
+ -1.8406752237232769,
+ 0.26563510019155284,
+ 1.315293902844033,
+ -2.5951100507208302,
+ 2.873536583244537,
+ -2.2996177938870077,
+ 0.6912511198714517,
+ 1.830026655046589,
+ 2.4919436110513695,
+ 1.0765767686810517,
+ -2.6497882982591197,
+ 2.8600562068929323,
+ -2.166516513531844,
+ 0.5497911866228699,
+ 1.4811949934917816,
+ 2.458861805970651,
+ 1.1669044231197994,
+ -2.731152594867464,
+ 2.8241795918760073,
+ -2.0814832570376303,
+ 0.49371593703060035,
+ 1.1067361795892388,
+ -2.4289062750239183,
+ 1.8886718840677656,
+ 3.2454105685859242,
+ -1.610163027957481,
+ -1.176173597345566,
+ 0.371889442668422,
+ 1.292800961061675,
+ -2.536371497332404,
+ 1.9935778775326984,
+ 3.753231930439969,
+ -1.584196631173166,
+ -1.0903467205631354,
+ 0.16800723180823632,
+ 1.403714648144564,
+ -2.5971046740168697,
+ 2.8624601856544296,
+ -2.2374601196802475,
+ 0.8088022647486642,
+ -0.29937803512616973,
+ -0.5368868651959868,
+ -3.3582342670987577,
+ -2.842942031178078,
+ 1.4259846696960763,
+ 0.14255136270088736,
+ -1.7407750724474607,
+ 2.7308609630304193,
+ -2.8396977317093803,
+ 1.9507900601710733,
+ -0.45804750337873185,
+ -1.4127240376206984,
+ -3.0262032666838077,
+ -1.3903300846699242,
+ 2.7695656669009905,
+ -2.8050532228943372,
+ 1.7971413655350563,
+ -0.2633588196174447,
+ -1.0024686236167022,
+ -2.776552400085301,
+ -1.3831679916286965,
+ 2.8191295728171992,
+ -2.7404122692778676,
+ 1.6973785355838968,
+ -0.08764251044949277,
+ -1.5499173033940807,
+ 2.609617662025413,
+ -1.883482858103566,
+ -3.321779960034133,
+ 1.1403100097705388,
+ 0.9330162026601863,
+ 0.03763738079465713,
+ -1.7186466081779581,
+ 2.6909427300307156,
+ -1.8796353530035517,
+ -3.618197286811267,
+ 1.0003095757866025,
+ 0.8088380969049513,
+ 0.24038008083100904,
+ -1.8208581443100336,
+ 2.7322499854502866,
+ -2.8132637830925566,
+ 1.8775860942019154,
+ -0.4106001457423076,
+ -1.1746183878452199,
+ -1.0304892148815583,
+ 1.8234194270739414,
+ 1.9626123560863964,
+ 5.136018453433896,
+ 5.179347974754609,
+ -2.8313666356769955,
+ 1.924760730523415,
+ -0.4744877992633028,
+ -1.294213240062961,
+ 2.471417878647143,
+ -2.927759672499387,
+ 1.6083058507579664,
+ 3.3245546604309757,
+ 0.4534669721876286,
+ -0.06296913945452616,
+ -1.4039994828462925,
+ 2.5354450960453407,
+ -2.9123929405892257,
+ 1.5161318230440037,
+ 2.9613082609376296,
+ 0.6506126511690336,
+ 0.0575989149597524,
+ -1.5808516390879794,
+ 2.6254425838950195,
+ -2.8972817057963742,
+ 2.0896862759197123,
+ -0.7005000836186844,
+ -0.9955269013020649,
+ 1.4553533974426798,
+ 2.1738353540052393,
+ -3.0251748467754522,
+ -1.8262848866680168,
+ 2.003318735999074,
+ -0.4996641547031316,
+ -1.1843591010676084,
+ 1.5931687267466785,
+ 2.665145081234783,
+ -3.3251211010855553,
+ -1.867970793719678,
+ 1.8508811490259331,
+ -0.37499704203212003,
+ -1.298089946404305,
+ 2.5217009956042906,
+ -0.6975277518997515,
+ -0.9978673803229167,
+ 2.24460748875082,
+ 2.6065000113822347,
+ 6.284297908718489e-16,
+ 2.1357803416119172e-16,
+ 2.3210687988237957e-16,
+ 1.9992955405406676e-16,
+ -2.354156023325917e-16,
+ -1.3164579448781435e-16,
+ -1.5629577674189455e-16,
+ 5.788196336339811e-17,
+ -5.377501162207233e-16,
+ 1.2533854231709752e-16,
+ 1.0176389485933622e-16,
+ 1.2490427249550716e-17,
+ 3.1245713663424924e-16,
+ 2.4484546131569616e-17,
+ -1.576916440255778e-16,
+ -1.677625679834109e-16,
+ -8.015380135638837e-17,
+ -7.337092033345355e-17,
+ 1.0521737391674511e-16,
+ -1.139027703485519e-16,
+ 6.121136532892405e-17,
+ -4.756288522179908e-18,
+ 5.542110104105285e-17,
+ -7.031035206700735e-18,
+ 2.0265925007549175e-17,
+ -2.9745414827406875e-16,
+ -1.135718981035307e-16,
+ -8.056739166266488e-17,
+ -4.284795573024683e-17,
+ 2.610168422911079e-16,
+ 4.688459711950561e-16,
+ -9.347140921849211e-17,
+ -4.6611627517363103e-17,
+ 1.6487002077888953e-16,
+ 4.384057246531046e-17,
+ -4.536258479240804e-16,
+ 3.1019272970738534e-18,
+ -4.6032601088575984e-17,
+ -2.630434347918628e-16,
+ 1.0596183646804283e-16,
+ 3.1035816582989593e-16,
+ 2.4716156703084467e-16,
+ -2.0522350997440614e-16,
+ 9.950982769012922e-17,
+ 1.9364298139866375e-16,
+ -1.9026188064485325e-16,
+ 1.1803867341131705e-16,
+ -1.9753073027766298e-16,
+ -1.2242273065784808e-17,
+ 3.4348674936264474e-17,
+ 2.9149844786368695e-16,
+ 2.028918946227723e-16,
+ -1.3979352352146168e-16,
+ -1.2705494208814505e-16,
+ -6.83582058213822e-16,
+ 8.437242248040882e-18,
+ 5.77992453021428e-18,
+ 7.767225951872929e-17,
+ -6.849055471939069e-17,
+ 2.0315555844302357e-16,
+ -1.8776999904953728e-17,
+ -8.602678370551487e-17,
+ 5.744769354180777e-17,
+ 1.4608009617686469e-16,
+ 6.749793798432706e-17,
+ 2.03817302933066e-16,
+ -2.9704055796779224e-16,
+ -5.587605037795702e-17,
+ -4.513717807548734e-16,
+ -1.0290126820159663e-16,
+ 6.758065604558236e-17,
+ -8.776386299187622e-17,
+ -4.954811869192635e-17,
+ 5.060277397293146e-17,
+ 7.328820227219825e-17,
+ -1.0297881638402348e-16,
+ -2.537996914465827e-16,
+ -2.1957509360220117e-16,
+ 1.288643996781048e-16,
+ -3.123433993000232e-16,
+ 8.41242682966429e-17,
+ -1.1406820647106252e-16,
+ -1.4677285993987785e-17,
+ 2.9191203816996347e-16,
+ -1.6787630531763694e-16,
+ 4.79764755280756e-17,
+ -9.446402595355575e-17,
+ -1.330520015291545e-16,
+ -6.478478557515312e-16,
+ 4.603260108857599e-16,
+ -2.0464448354561902e-16,
+ 5.610145709487772e-16,
+ 4.7562885221799085e-17,
+ 1.7453510924868884e-17,
+ -1.651052502655843e-16,
+ -6.243145673243976e-17,
+ 9.520848850485347e-17,
+ -2.1142736456855385e-16,
+ 2.7338319244877565e-16,
+ 1.8317914664986795e-16,
+ -1.5406238908800139e-18,
+ 7.741169762577509e-16,
+ 1.737079286361358e-18,
+ -1.601214870749523e-16,
+ -2.780774424250141e-16,
+ -3.1267427154504446e-17,
+ -5.736497548055247e-17,
+ 1.205719140372607e-16,
+ 2.746239633676052e-16,
+ 9.838279410552572e-17,
+ 9.57978546912975e-17,
+ -8.304893350032397e-17,
+ -2.936491174563248e-16,
+ 1.8082168190409183e-16,
+ -1.4268865566539727e-16,
+ -3.7223127564886245e-18,
+ -4.168990287267259e-17,
+ -1.0323214044661784e-16,
+ 2.0183206946293873e-16,
+ -6.485096002415737e-17,
+ -7.295733002717704e-17,
+ 3.4576149604716557e-17,
+ -4.015341488485534e-16,
+ -9.405043564727923e-17,
+ -2.4141266177360113e-16,
+ -2.537790119312689e-16,
+ -1.5708159832381993e-16,
+ -1.0240495983406481e-16,
+ -1.67752228225754e-16,
+ -2.0547166415817205e-16,
+ -1.5269754107728888e-16,
+ -1.1183481881716934e-16,
+ -1.6847601126173789e-16,
+ 2.2958397901409283e-16,
+ -2.764024016845942e-16,
+ -1.7751295945387971e-16,
+ 1.9620724129757814e-16,
+ 1.401243957664829e-16,
+ 2.10103875588469e-17,
+ -8.677124625681259e-17,
+ 5.814666115941508e-16,
+ -1.466591226056518e-16,
+ 1.112557923883822e-17,
+ -2.802487915329658e-16,
+ 2.5204193264490753e-16,
+ 1.3557490239744124e-16,
+ 1.0768857599674728e-16,
+ 1.079470699381701e-16,
+ 3.5072457972248373e-17,
+ -7.502528155855961e-17,
+ -2.187065539590205e-16,
+ -5.2463930351175774e-17,
+ 9.6924888275901e-17,
+ -2.187892720202758e-16,
+ 3.226004388956808e-17,
+ 5.205034004489926e-17,
+ -2.998116130198449e-16,
+ -1.4434301689050333e-16,
+ 1.2440796412797536e-16,
+ 1.2688950596563445e-16,
+ 2.4377012651937726e-16,
+ 9.082443125832243e-17,
+ 8.39588321741323e-17,
+ -3.1805094552663914e-17,
+ 7.575320049760626e-16,
+ 3.13087861851321e-17,
+ 6.583840688039255e-17,
+ -9.304747915455869e-17,
+ 3.011144224846159e-16,
+ 4.7232012976777874e-17,
+ 1.3028094647710186e-16,
+ 3.961367953516449e-16,
+ 1.9283648030142455e-17,
+ -1.1266199942972237e-16,
+ -2.0296944280519913e-17,
+ 5.3518585632180884e-17,
+ -1.0571368228427692e-16,
+ 7.337092033345355e-17,
+ -4.170644648492365e-16,
+ -5.107013101902393e-16
+ ],
+ [
+ 3.139297299042872,
+ 2.669275326122068,
+ -1.3289535483172097,
+ -0.3434336225573843,
+ 1.8242935287550397,
+ -2.8212231319445955,
+ 2.7547993478124804,
+ -1.8741756671964047,
+ 0.3514968937731879,
+ 1.2182063688908877,
+ 3.1482599423219293,
+ 1.4667090109253331,
+ -2.851544011958347,
+ 2.715381281545262,
+ -1.7115752479350104,
+ 0.16069281651700162,
+ 0.82780568219606,
+ 2.8736015278999694,
+ 1.452016157053032,
+ -2.892120104605501,
+ 2.6383959337503375,
+ -1.6096858455481042,
+ -0.11365041097357746,
+ 1.640628855029812,
+ -2.716524138485217,
+ 1.8713308286204549,
+ 3.330572933308505,
+ -0.9680730060871439,
+ -0.8419830425687529,
+ -0.23692620970726155,
+ 1.8048472942294975,
+ -2.7856481623194136,
+ 1.8608839145627167,
+ 3.6137462401462193,
+ -0.8092330327666704,
+ -0.7137459989391969,
+ -0.4406687726354861,
+ 1.9008961320281628,
+ -2.8223981295336995,
+ 2.723161233330391,
+ -1.797567392537189,
+ 0.21019408114533877,
+ 1.4506448008670396,
+ 1.3052568474564596,
+ -1.6932863451575197,
+ -1.8369560208781164,
+ -5.1511685163844065,
+ -5.203291946129408,
+ 2.7421380473286097,
+ -1.8415751310166646,
+ 0.26836525598014793,
+ 1.3980180561738158,
+ -2.594936718397077,
+ 2.874715282963388,
+ -1.547907605357198,
+ -3.2381467023293435,
+ -0.6563973605814863,
+ -0.04508909628460291,
+ 1.5062951893722512,
+ -2.6507506072207905,
+ 2.8496883604719025,
+ -1.449437314088899,
+ -2.8700723361170932,
+ -0.8348745374813845,
+ -0.16482217153556397,
+ 1.6751374219741182,
+ -2.732119253484911,
+ 2.825730075979962,
+ -2.0152958440050535,
+ 0.4964892363176334,
+ 1.1069428512211128,
+ -1.5216672583399826,
+ -2.3135230715513853,
+ 2.941229111802995,
+ 1.7951553465817296,
+ -1.9221686101549413,
+ 0.29553641029765354,
+ 1.2930836066650833,
+ -1.6586757692113236,
+ -2.814783018082971,
+ 3.2150649171061367,
+ 1.8253328743794943,
+ -1.7640917611129894,
+ 0.16818109029062375,
+ 1.4017923887414079,
+ -2.6401351792254872,
+ 2.8638677589978934,
+ -2.2384976904319838,
+ 2.5486372049008135,
+ 3.259270132825672,
+ 4.963330107186452,
+ 4.084917696351101,
+ -2.6112584427787247,
+ 1.4263826647818507,
+ 0.14010591122892865,
+ -1.816196497207679,
+ 2.7311451028536005,
+ -2.8408534299820953,
+ 1.443435235262614,
+ 3.1114889552982903,
+ 1.2798517635564326,
+ 0.38512941173021875,
+ -1.9115966118228398,
+ 2.7705774180369773,
+ -2.7829824382703308,
+ 1.2438303194589,
+ 2.5741793752885176,
+ 1.3236177168869137,
+ 0.45445330925843763,
+ -2.062758365049934,
+ 2.8200963061342215,
+ -2.742281606615978,
+ 1.621477877902221,
+ -0.09025490703147082,
+ -1.5505718100393304,
+ 1.677550578151289,
+ 2.6565132767651423,
+ -2.6641702229741964,
+ -1.6808960368828223,
+ 1.5184009195407333,
+ 0.11468012067546182,
+ -1.7193832852544397,
+ 1.740406894833106,
+ 3.0340143297928734,
+ -2.73698209142738,
+ -1.6189248733130042,
+ 1.3405793936479735,
+ 0.24037047425697858,
+ -1.8195815631565335,
+ 2.761943511658465,
+ -2.8151501596086357,
+ 1.8781888288151098,
+ -1.7839407556542892,
+ -1.8903254831625511,
+ -2.717465502709812,
+ -2.7646396177508383,
+ -4.098874325899653,
+ -4.061182921679668,
+ 2.7461513454856363,
+ -2.833812084915618,
+ 1.9267317975448734,
+ -0.3798260395114864,
+ -1.2954782026647076,
+ 2.475215403226957,
+ -1.9060481365050612,
+ -3.57050656981366,
+ 1.5788198298228184,
+ 1.091395689885384,
+ -0.25506523903159545,
+ -1.4075800663621878,
+ 2.5750943893651392,
+ -1.8906341902766939,
+ -3.31754117133973,
+ 1.236625103768059,
+ 0.9839787035742819,
+ -0.05195689996294121,
+ -1.5844801765426868,
+ 2.6279912540842174,
+ -2.884397423775555,
+ 2.091882502104239,
+ -0.6989496395024654,
+ -0.5610410920415533,
+ -0.4470808246847552,
+ 3.299675835765083,
+ 1.8039288818362353,
+ -2.8585189155733057,
+ 1.9473224722233755,
+ -0.49785221663123963,
+ -0.682287691787821,
+ -0.7560287393909293,
+ 3.797848448099931,
+ 1.9489055258170842,
+ -2.8068883702080467,
+ 1.8508516314204775,
+ -0.37554175506646714,
+ -1.3851336861416172,
+ 2.524174070951677,
+ -0.6980464709111897,
+ 0.06915018658515615,
+ 0.2552062993215695,
+ -5.161607022330893e-16,
+ -6.806042080086311e-16,
+ -2.6221625417930977e-16,
+ -1.5505500582306501e-16,
+ 2.0199750558544933e-16,
+ 7.527343574232552e-18,
+ 3.472917801803886e-16,
+ -7.378451063973007e-17,
+ 5.231090193785347e-16,
+ -9.471218013732166e-17,
+ -2.909607804655275e-17,
+ -1.3822188035761092e-16,
+ -2.8603905582083697e-16,
+ -2.8756933995406007e-16,
+ 5.186422440707483e-17,
+ -1.7536228986124187e-17,
+ 1.0645814483557465e-16,
+ 2.895132143935597e-16,
+ 6.695510070733913e-17,
+ 2.1874791298964814e-16,
+ 6.716706573930585e-17,
+ 1.6924115332834944e-16,
+ 3.879477072873699e-17,
+ 9.913759641448035e-17,
+ -1.9660015208854083e-16,
+ 9.047287949798739e-17,
+ 5.748905257243542e-17,
+ 4.044913195384305e-17,
+ 7.312276614968765e-17,
+ -2.843846945957309e-16,
+ -2.506357256035674e-16,
+ 8.371067799036639e-17,
+ -3.813302623869457e-16,
+ -8.462057666417472e-17,
+ 6.885244623738264e-17,
+ 3.864587821847745e-16,
+ 1.4823076576950256e-16,
+ 1.2742717336379391e-16,
+ 4.016789054557502e-16,
+ -2.504702894810568e-16,
+ -9.760731228125725e-17,
+ -2.812414082680294e-16,
+ 1.3565762045869652e-17,
+ -9.802090258753376e-18,
+ -2.4652050205611607e-16,
+ 2.791669943881113e-17,
+ -5.3089485689419e-17,
+ 5.591534145705329e-16,
+ -2.666830294870961e-16,
+ -1.9051003482861916e-17,
+ -2.8868603378100666e-16,
+ -2.4683069478582346e-16,
+ 9.847585192443793e-17,
+ 7.014491594449675e-17,
+ 7.2179780251377185e-16,
+ 1.9852334701272664e-18,
+ -3.2177325828312777e-17,
+ 1.6095900744516225e-16,
+ 4.475047113911879e-17,
+ -1.9025154088719634e-16,
+ 3.4048175729360445e-17,
+ 9.727644003623604e-17,
+ -1.0865017345884017e-16,
+ -8.933550615572698e-17,
+ -1.3797372617384502e-16,
+ -9.423655128510367e-17,
+ 2.0944213109842658e-16,
+ -1.802219759599909e-17,
+ 4.554249657563832e-16,
+ 1.977788844614289e-16,
+ 1.5087774372967222e-16,
+ 7.576974410985732e-17,
+ 1.141664341688032e-16,
+ 5.098534500623724e-17,
+ -5.98878763488392e-17,
+ 1.8752184486577135e-16,
+ 1.37146545561292e-16,
+ 2.027833271673747e-16,
+ -6.476824196290207e-17,
+ 3.9092555749256083e-16,
+ 7.77549775799846e-18,
+ -4.350970022028925e-17,
+ 5.5297023949169894e-17,
+ -3.12839707667555e-16,
+ 8.214937458417255e-17,
+ 3.639594695233322e-17,
+ 2.6236101078650655e-16,
+ 3.114541801415287e-16,
+ 1.2411017910745625e-15,
+ -3.3467727583895495e-16,
+ 6.624062345324645e-16,
+ -1.4227506535912074e-15,
+ -2.4980854499101436e-16,
+ 1.0703717126436177e-16,
+ 2.3409211335250683e-16,
+ 1.2113026095073397e-17,
+ 2.4563128289762157e-16,
+ 2.278882587583591e-16,
+ -2.0737417956704401e-16,
+ -8.619221982802547e-17,
+ 4.582580593543773e-17,
+ -7.449588596652566e-16,
+ -6.038418471637102e-17,
+ 3.032444125619399e-16,
+ 1.2289835951006609e-16,
+ -4.3038207271134025e-16,
+ 5.124383894766006e-17,
+ -1.0587911840678753e-16,
+ -2.9712327602904754e-16,
+ -1.345822856623776e-16,
+ -1.1572256769616857e-16,
+ -5.939156798130739e-17,
+ 1.0091603473146936e-16,
+ -1.3698110943878138e-16,
+ 3.4576149604716557e-17,
+ -2.132471619161705e-16,
+ 5.045801736573468e-17,
+ 2.44514589070675e-16,
+ -3.573420246229079e-16,
+ 1.7666509932601286e-16,
+ 1.819797347616661e-17,
+ -6.5843576759221e-17,
+ 6.935909436257136e-16,
+ 1.9467695716435504e-16,
+ 2.238350737568493e-16,
+ 1.2705494208814505e-16,
+ 3.010937429693021e-17,
+ -1.1249656330721175e-17,
+ 2.898440866385809e-16,
+ 3.2756869244982737e-16,
+ 2.3756627192522955e-16,
+ 1.8413040435430394e-16,
+ 6.145951951268995e-16,
+ -1.768512149638373e-16,
+ 3.1929171644546863e-16,
+ 1.5550995515996918e-16,
+ -1.6899299914458353e-16,
+ -1.0422475718168147e-17,
+ -2.481541837659083e-19,
+ 2.9778502051908996e-17,
+ -3.183818177716603e-16,
+ 3.1267427154504446e-17,
+ -1.5468277454741618e-17,
+ 4.015134693332396e-16,
+ -6.515701685080198e-16,
+ -1.9566957389941867e-16,
+ -1.1767161201449664e-16,
+ -1.7925003874024107e-16,
+ 1.7085415552282784e-16,
+ 7.891303043755883e-17,
+ 1.9100634319615098e-16,
+ -4.8803656140628627e-17,
+ -1.2010662494269962e-16,
+ 3.3790328022791176e-16,
+ 5.224472748884923e-16,
+ -7.858215819253762e-19,
+ 3.8240559718326464e-16,
+ 7.667964278366565e-17,
+ 9.562207881112999e-17,
+ 8.970773743137584e-17,
+ -1.5596490449687334e-16,
+ -2.0473754136453124e-16,
+ -3.6892255319865034e-17,
+ -4.135903062765138e-19,
+ -5.67445900211377e-16,
+ -1.7536228986124187e-17,
+ -2.114480440838677e-18,
+ -2.0048790096754005e-17,
+ -2.0421538360285714e-16,
+ -1.1994118882018901e-16,
+ 4.301339185275744e-18,
+ -4.263082081945166e-16,
+ 2.816808479684482e-17,
+ -5.608284553109528e-17,
+ 3.143286327701505e-17,
+ -1.5844644633453243e-16,
+ 9.438130789230045e-17,
+ -7.312276614968765e-17,
+ -3.30872245021211e-19,
+ 7.901229211106519e-16
+ ],
+ [
+ -3.325825921833832,
+ -2.749189082953775,
+ 1.6743667386596468,
+ -0.81130380384147,
+ -0.36735722188281217,
+ 1.4213206996836063,
+ -2.0042164725597473,
+ 1.884286290040383,
+ -0.8884800181882763,
+ -1.9798173565524828,
+ -1.1854909566225655,
+ -0.4295533823463779,
+ 1.4823664543154578,
+ -2.0202986699950323,
+ 1.8291737129178243,
+ -0.745677401162992,
+ -1.6126810888890868,
+ -1.1724316070126475,
+ -0.4677989462078651,
+ 1.5746219958393253,
+ -2.0396326360288013,
+ 1.789891679140901,
+ -0.9568994782864535,
+ -0.20771516810148422,
+ 1.2522267995881649,
+ -1.237672260333887,
+ -2.011425581472847,
+ 1.6846434915772457,
+ 1.0952922889075187,
+ -0.8783657916231569,
+ -0.34856470382510474,
+ 1.361388843441255,
+ -1.2727455529097287,
+ -2.2705871996304285,
+ 1.7047138327733877,
+ 1.0412815543668945,
+ -0.7477422986973588,
+ -0.43643047297509685,
+ 1.4234686832713461,
+ -2.0176582869775954,
+ 1.8585575700906012,
+ -1.151619989309098,
+ 0.8341775588981456,
+ 0.9164439082743865,
+ 1.8217546375104032,
+ 1.8704754187422505,
+ 3.105912336579846,
+ 3.090640424590545,
+ -2.010239181820503,
+ 1.8734782782190624,
+ -1.185198864163149,
+ -0.007755953595100084,
+ 1.0881936211557846,
+ -1.8720422996555943,
+ 1.324161920453056,
+ 2.528396178831586,
+ -0.822512236893852,
+ -0.626396761256418,
+ -0.0940944877492184,
+ 1.1624170438432613,
+ -1.9250871803094776,
+ 1.3012922620640563,
+ 2.3296436253449584,
+ -0.5988486643514608,
+ -0.5471761077107832,
+ -0.2370706358350358,
+ 1.2751666493406266,
+ -1.9536936807474594,
+ 1.9274432497065395,
+ -1.313275416557252,
+ 0.21846260783540772,
+ 0.5406334002152059,
+ 0.5866165401976892,
+ -2.3293795306160128,
+ -1.2999532893635126,
+ 1.9005898481482244,
+ -1.1996899193432435,
+ 0.0768451544408134,
+ 0.6303247614329589,
+ 0.8366866864216463,
+ -2.656990223283828,
+ -1.3882854445177328,
+ 1.8469547910031217,
+ -1.1270531621774802,
+ -0.010782553562476743,
+ 1.1466208161491833,
+ -1.8989617675647987,
+ 1.9828130497806686,
+ -2.7082820338215625,
+ -3.3665174352605933,
+ -3.527384815643027,
+ -2.8533137507406856,
+ 2.0180010186588295,
+ -1.763256850511261,
+ 0.884159985829127,
+ 0.29301387731803114,
+ -1.369016839463903,
+ 1.948603101735197,
+ -1.3522323431491827,
+ -2.647209405611807,
+ 0.4501341209085103,
+ 0.43738192284339084,
+ 0.379383988629937,
+ -1.4333501896127656,
+ 1.9818499052999579,
+ -1.2479050052416565,
+ -2.2947247690636257,
+ 0.24325234506521484,
+ 0.3540794894249515,
+ 0.5176966608803674,
+ -1.5326351363680861,
+ 1.9960718847366767,
+ -1.8400048946206347,
+ 1.025763818567384,
+ 0.06745064170906384,
+ -0.7211049249959727,
+ -0.9284520133539789,
+ 2.310201503641021,
+ 1.3231423824635047,
+ -1.7994024164740516,
+ 0.9013521624627407,
+ 0.21042151947513824,
+ -0.794956997488096,
+ -1.170907703749956,
+ 2.4810753165822557,
+ 1.3308652928939557,
+ -1.7272059782285203,
+ 0.8205314750461697,
+ 0.2959961902187986,
+ -1.4206068203930498,
+ 1.9653829772631293,
+ -1.9287601397651621,
+ 2.768230139367083,
+ 2.798478107265431,
+ 1.9595538639920518,
+ 1.9303866573236197,
+ 1.4258902265302813,
+ 1.3527956821570115,
+ -1.390753178611409,
+ 1.9568997698319006,
+ -1.9434445572875148,
+ 1.1939997994506355,
+ -0.1355616635435545,
+ -1.022659298921715,
+ 1.153987917450263,
+ 1.9654534740062164,
+ -2.079835413454516,
+ -1.2007812007395315,
+ 1.1236096646648241,
+ -0.046151565650706924,
+ -1.1435523314585332,
+ 1.194490972433835,
+ 1.906590129062844,
+ -1.8150149816429315,
+ -1.154593550641787,
+ 1.0017840601741375,
+ 0.09595109575436195,
+ -1.2154877613748447,
+ 1.9106618773570359,
+ -1.9889685915205735,
+ 1.3687043344953556,
+ -0.27839372408445834,
+ -0.8601525068837204,
+ -1.8461264377811897,
+ -0.9007372368104433,
+ 1.9379258605805265,
+ -1.948762790044927,
+ 1.261294211883788,
+ -0.22733082849782804,
+ -0.8182548796058602,
+ -2.2235548017386635,
+ -1.039279948507483,
+ 1.9728861429574098,
+ -1.9198769931007342,
+ 1.1915613413326442,
+ -0.06523467254850691,
+ -1.0816907959173498,
+ 1.8253896363080944,
+ -1.4914954683576689,
+ -1.9307724268452933,
+ 9.427377441266856e-16,
+ 1.4518260521224463e-15,
+ 1.9571093293004632e-16,
+ 1.8131799027162364e-16,
+ -2.8504643908577334e-16,
+ -7.039307012826266e-17,
+ -3.040509136591791e-16,
+ -2.9439358000762255e-16,
+ -5.1558167580430215e-16,
+ 4.408872664907637e-17,
+ 8.737095220091354e-17,
+ 4.3625505506046675e-16,
+ 5.1781506345819526e-17,
+ 1.886178591774041e-16,
+ -4.20207751176938e-17,
+ -1.373119816838026e-16,
+ -1.4210962923661015e-16,
+ -2.1072426104788378e-16,
+ -2.69660879692287e-17,
+ 1.9686898578762056e-17,
+ 1.1714945425282253e-17,
+ -6.377562522783843e-17,
+ -5.004442705945817e-17,
+ 6.61744490042422e-19,
+ 1.496369728108427e-16,
+ -1.0695445320310647e-16,
+ -4.144174868890668e-17,
+ 1.1828682759508294e-17,
+ 2.509665978485886e-16,
+ 2.8529459326953925e-16,
+ 1.0439019330419208e-16,
+ 6.158359660457291e-17,
+ 2.1006251655784135e-16,
+ 1.1650838927809395e-16,
+ -1.6384379983144093e-16,
+ -3.7951046503932905e-16,
+ -1.1233112718470116e-16,
+ -4.95067596612987e-17,
+ -2.072914615057887e-16,
+ 3.063876988896414e-16,
+ 1.1415092453231782e-16,
+ 2.2929446579969927e-16,
+ 1.7159861807412557e-16,
+ 3.316994256337641e-17,
+ 8.225277216074168e-17,
+ 1.8864887845037484e-17,
+ 2.729696021424991e-17,
+ -1.861983558856865e-16,
+ 2.339680362606239e-16,
+ 6.021616365444619e-17,
+ 1.0501057876360685e-16,
+ 7.40533443388098e-17,
+ 2.7214242152994607e-17,
+ 2.9778502051908996e-17,
+ -6.672866001465273e-16,
+ -5.881254155252027e-17,
+ 3.168101746078096e-17,
+ -1.4723814903443893e-17,
+ 3.0977913940110886e-17,
+ 1.3607121076497305e-16,
+ 2.0356914874930009e-16,
+ 3.469634928747817e-18,
+ 1.419028340834719e-16,
+ -1.2376689915324675e-17,
+ -7.758954145747398e-17,
+ -7.65555656917827e-17,
+ -2.4232256044740946e-16,
+ 2.3161057151484772e-17,
+ -1.8578476557941e-16,
+ -1.0860881442821252e-16,
+ -1.1724251207173476e-16,
+ -3.0256715843541215e-17,
+ -8.49307693938821e-17,
+ -1.2943567128864923e-16,
+ -1.8669466425321832e-16,
+ -1.361125697956007e-16,
+ 5.387013739251592e-17,
+ -7.045510867420413e-17,
+ 9.165161187087545e-17,
+ -2.5783219693277873e-16,
+ 2.903403950061127e-17,
+ -1.5894275470206424e-16,
+ -5.583469134732937e-19,
+ 1.7254987577856155e-16,
+ -1.0891900715791991e-16,
+ -7.500460204324578e-17,
+ -2.5415124320691775e-16,
+ -2.057611773725656e-16,
+ -1.0025429024142695e-15,
+ 2.68833699079734e-16,
+ -5.662051292925474e-17,
+ 5.855611556262883e-16,
+ 1.8230026724903036e-16,
+ -2.1730034691768035e-16,
+ -2.0047756120988315e-16,
+ -4.2806596699619176e-17,
+ -5.877118252189262e-17,
+ -1.7174337468132237e-17,
+ -2.6593856693579837e-17,
+ -1.2931934901500896e-16,
+ 1.4148924377719538e-16,
+ 1.6119165199244279e-16,
+ 1.7015105200215777e-16,
+ -2.978057000344038e-16,
+ -1.9848198798209897e-16,
+ 9.132073962585424e-17,
+ -3.7367884172083025e-17,
+ 9.90135193225974e-17,
+ 3.278943948160201e-16,
+ 1.048865016717239e-16,
+ 1.049692197329792e-16,
+ -2.1837568171399928e-17,
+ -4.0035541647566533e-17,
+ 3.077111878697263e-17,
+ -1.2655863372061322e-17,
+ 9.967526381263982e-18,
+ -1.4789989352448135e-16,
+ -2.236696376343387e-16,
+ 2.929046549050271e-16,
+ -6.038418471637102e-17,
+ 7.494256349730431e-17,
+ -8.040195554015428e-17,
+ -2.784289941853491e-16,
+ -4.576376738949625e-17,
+ -1.1911400820763599e-16,
+ -2.9968753592796193e-16,
+ -5.719953935804186e-17,
+ -1.3532674821367533e-16,
+ -1.9910237344151374e-16,
+ -9.562207881112999e-17,
+ 7.4859845436049e-17,
+ -1.1216569106219055e-16,
+ -1.3019822841584656e-16,
+ 4.615667818045894e-17,
+ -2.486504921334401e-16,
+ 8.904599294133342e-17,
+ 8.10637000301967e-17,
+ -1.6460894189805248e-16,
+ -9.206520217715197e-17,
+ 4.384057246531046e-17,
+ 1.7759567751513502e-16,
+ -6.344475298281722e-17,
+ 3.135014521575975e-17,
+ -2.7363134663254155e-16,
+ 3.1664473848529894e-16,
+ 2.1935278881257755e-16,
+ 7.616265490082001e-17,
+ 1.6378176128549945e-16,
+ -1.74038800881157e-16,
+ 1.3906974048547778e-17,
+ -3.5072457972248373e-17,
+ 2.3500201202631516e-16,
+ 1.4103429444029122e-16,
+ -2.4352197233561135e-16,
+ -4.258325793422986e-16,
+ 6.131476290549317e-18,
+ -3.604853109506094e-16,
+ -1.7288074802358278e-17,
+ -1.2597960729182611e-16,
+ -1.7743024139262444e-17,
+ 2.2420730503249815e-16,
+ 2.0919397691466067e-16,
+ 1.3338287377417571e-16,
+ -7.657624520709652e-17,
+ 9.59529510561512e-18,
+ -2.1496356168721804e-17,
+ -1.5460005648616085e-16,
+ 2.1421392925709185e-17,
+ -2.1093105620102203e-17,
+ 8.509620551639271e-17,
+ -1.0341825608444227e-16,
+ 3.4104656655561326e-16,
+ -7.99263266879363e-18,
+ 2.1713491079516973e-17,
+ -2.4836097891904653e-17,
+ 2.3905519702782497e-17,
+ -6.429261311068408e-17,
+ -7.584147617860216e-17,
+ -7.429736261951294e-16,
+ -2.1473608701876596e-16
+ ],
+ [
+ 4.691598678959584,
+ 3.805993075337225,
+ -2.661626040858086,
+ 2.167763181785364,
+ -0.9734554191620525,
+ -0.6215966575465979,
+ 1.9331330371792592,
+ -2.620321233352002,
+ 1.7270034888770187,
+ 3.4253767303883627,
+ -0.3006335906840277,
+ -0.4258566572238315,
+ -0.7318261699725606,
+ 2.011311152847244,
+ -2.647649221722644,
+ 1.5800197549336328,
+ 2.9501328682457997,
+ -0.0640020929826703,
+ -0.3225230413403799,
+ -0.9095984096290136,
+ 2.1287265026961775,
+ -2.6576910702834824,
+ 2.2834636465306666,
+ -1.1666815456142445,
+ -0.3296480488782132,
+ 1.062395133585942,
+ 1.445239859966888,
+ -2.981356603853526,
+ -1.7316831166885467,
+ 2.222887724555977,
+ -0.9959610535665515,
+ -0.5141909110290604,
+ 1.1542282152223442,
+ 1.7733826499345775,
+ -3.1825239267201875,
+ -1.730608732865759,
+ 2.1144128588594158,
+ -0.8871813742673718,
+ -0.6254397586671091,
+ 1.9952372403172467,
+ -2.6349822887007894,
+ 2.421998737708623,
+ -3.352767424135993,
+ -3.402971485083271,
+ -2.5955264839601373,
+ -2.5692842154894646,
+ -2.2236512507431376,
+ -2.137373620390978,
+ 1.959522777917147,
+ -2.626943281063503,
+ 2.443621943453683,
+ -1.396316418925084,
+ -0.06600087722293962,
+ 1.5088393283492725,
+ -1.578245249954367,
+ -2.7388631043601266,
+ 2.553351260108306,
+ 1.502362845820032,
+ -1.2981304065033268,
+ -0.18212973228835558,
+ 1.6590989128431886,
+ -1.6207287948709135,
+ -2.6339416985920843,
+ 2.2060801425135743,
+ 1.4343071912967642,
+ -1.1318005262374424,
+ -0.3679818351924636,
+ 1.7465673019451857,
+ -2.5836040834949596,
+ 2.5199594697019805,
+ -1.6400428299149412,
+ 0.22063073649631365,
+ 0.8834461069311179,
+ 2.5641000269145917,
+ 1.2814775544840633,
+ -2.6091829715337296,
+ 2.453311184272369,
+ -1.4888590612987882,
+ 0.1450060636479897,
+ 0.7885410982995363,
+ 3.0606339137472625,
+ 1.457800446424893,
+ -2.640428744122311,
+ 2.4055953145541076,
+ -1.3929481407711408,
+ -0.15801048460035752,
+ 1.5819321177597543,
+ -2.49549279235372,
+ 3.8280295110730744,
+ 4.669685272775783,
+ 3.387455465139244,
+ 2.672041874428473,
+ -2.2150012375696315,
+ 2.663588373874062,
+ -2.250058101868175,
+ 1.0284824175274436,
+ 0.47706059884613006,
+ -1.830201140165199,
+ 1.7451652132081306,
+ 3.138567439677418,
+ -2.2925391001913042,
+ -1.3928940523491928,
+ 0.9225583623218353,
+ 0.5909324994885541,
+ -1.9614463714930397,
+ 1.6963303278228554,
+ 2.8402867407031676,
+ -1.8533845063283936,
+ -1.2663381284897868,
+ 0.7450567177097347,
+ 0.7715252245403192,
+ -2.036571300232289,
+ 2.6527214186294574,
+ -2.3558982261796437,
+ 1.295443992505783,
+ 0.047981302207060116,
+ -0.4210755518013448,
+ -2.7888704549598478,
+ -1.446563164672349,
+ 2.660838790522337,
+ -2.2630302904804975,
+ 1.129093816222813,
+ 0.15883609662289144,
+ -0.22355763185308905,
+ -3.1159595725349782,
+ -1.5248060066687041,
+ 2.6632137123666593,
+ -2.1994809592775595,
+ 1.024830108692566,
+ 0.5672917338059136,
+ -1.8943573327800056,
+ 2.6095175435797255,
+ -4.709783012951956,
+ -4.6767564983317245,
+ -1.9008143974409824,
+ -1.7819412617146622,
+ 0.6652910633338607,
+ 0.7956772622978135,
+ 0.513668335280566,
+ -1.8564482855967448,
+ 2.596793375075713,
+ -2.4660035180208024,
+ 1.5200464226360106,
+ -0.0805276285715421,
+ -0.8337865987886588,
+ -1.1049118504542834,
+ 3.3077517484707664,
+ 1.734825409440059,
+ -2.4209721281868535,
+ 1.423276379068738,
+ 0.10627710410286843,
+ -0.9430787354319901,
+ -1.2138076874656798,
+ 3.023816751282848,
+ 1.7317100306315723,
+ -2.3372159538798303,
+ 1.2619709560258092,
+ 0.21991926945625936,
+ -1.6995266680558212,
+ 2.542124361230653,
+ -2.562507516446564,
+ 1.19372188341189,
+ 2.437519340087962,
+ 1.0903487704597667,
+ 0.343376259199548,
+ -1.7857280464314758,
+ 2.5915130112428266,
+ -2.5055207911557864,
+ 1.1927147119892971,
+ 2.640351373230817,
+ 1.4847829536966406,
+ 0.5249998891359445,
+ -1.9197670424491406,
+ 2.6156430644482493,
+ -2.4645034291889902,
+ 1.4435407839644643,
+ 0.009223607695749833,
+ -1.4610930712401113,
+ 3.405555332659451,
+ 4.247445313593195,
+ -1.1459346616003369e-15,
+ -1.6984913107857592e-15,
+ -1.8214517088417667e-16,
+ -1.1050099007942757e-16,
+ 1.3858377187560287e-16,
+ 1.3656751913250487e-16,
+ 3.1221932220814025e-16,
+ 3.2326218338572317e-16,
+ 3.5502591890775943e-16,
+ 1.5054687148465104e-17,
+ -8.197359870400503e-17,
+ -6.215435122723449e-16,
+ 5.405625303034035e-17,
+ -2.0530622803566144e-16,
+ -2.1423977865123414e-17,
+ 2.628779986693522e-16,
+ 1.0402830178620013e-16,
+ 1.9176114550510562e-16,
+ 1.6303729873420173e-16,
+ -5.939156798130739e-17,
+ -5.025122221259642e-18,
+ 7.320548421094295e-17,
+ 1.2506970861801778e-16,
+ 2.91374370771804e-17,
+ -1.8351001889488917e-16,
+ 7.17165591083475e-17,
+ 9.223063829966259e-18,
+ -5.128519797828771e-17,
+ -3.2516469879459513e-16,
+ -2.3781442610899546e-16,
+ 3.226004388956808e-17,
+ -1.3349661110840175e-16,
+ -7.772912818584231e-17,
+ -5.753041160306307e-17,
+ 2.1423977865123414e-16,
+ 3.398057956367837e-16,
+ 1.014692117661142e-16,
+ 2.936491174563248e-18,
+ 1.4525291556431166e-16,
+ -3.7010128557153836e-16,
+ -8.809473523689744e-17,
+ -1.2600028680713994e-16,
+ -3.3686930446222047e-16,
+ 2.9737143021281345e-17,
+ 8.867376166568455e-17,
+ -1.8363409598677214e-17,
+ 4.0573209045726e-17,
+ 4.017823030323193e-16,
+ -4.2120036791200164e-16,
+ 1.2407709188295415e-19,
+ 5.790264287871194e-17,
+ 1.323488980084844e-18,
+ -1.2597960729182611e-16,
+ 1.4558378780933287e-17,
+ 3.6759906421856545e-16,
+ 7.783769564123989e-17,
+ 5.4428484305989215e-17,
+ 7.932662074383534e-17,
+ -5.5338382979797545e-17,
+ 1.790846026177305e-17,
+ -3.6776450034107605e-16,
+ -5.045801736573468e-18,
+ -2.2598574334948716e-16,
+ 1.7023377006341307e-16,
+ 1.596251787074205e-16,
+ 2.0594083066185447e-16,
+ 2.503875714198015e-16,
+ -1.294046520156785e-16,
+ 7.295733002717704e-17,
+ 1.0356301269163905e-16,
+ 1.6667689342943505e-16,
+ 8.602678370551488e-18,
+ 8.166340597429764e-17,
+ 1.5778987172331846e-16,
+ 4.37413107918041e-16,
+ 1.4213030875192398e-16,
+ -1.7904324358710282e-16,
+ -5.761312966431838e-17,
+ -1.685380498076794e-17,
+ 1.6167245072348923e-16,
+ -7.444625512977249e-18,
+ -3.6892255319865034e-17,
+ 2.2437274115500873e-17,
+ -5.2608686958372554e-17,
+ 1.1692197958437046e-16,
+ 8.532368018484479e-17,
+ 1.904583360403346e-16,
+ 1.7381132621270492e-16,
+ 6.296498822753646e-16,
+ 5.078888961075589e-17,
+ 5.750973208774925e-17,
+ -3.9328302223833696e-16,
+ -2.6823399313563305e-16,
+ 2.5963131476508156e-16,
+ 1.9788228203799802e-16,
+ 4.896909226313923e-17,
+ 1.426085225435562e-16,
+ 3.846389848371579e-18,
+ -6.131476290549317e-18,
+ 1.7908460261773047e-16,
+ -1.9943324568653495e-16,
+ 1.8843174353957968e-16,
+ -1.9853368677038353e-16,
+ 2.634570250981393e-16,
+ 2.0522350997440614e-16,
+ 1.985233470127266e-17,
+ 7.444625512977249e-18,
+ -3.3914405114674135e-17,
+ -8.908735197196107e-17,
+ -6.57608586979657e-17,
+ -3.654070355953e-17,
+ -3.5734202462290796e-17,
+ -2.2896359355467806e-16,
+ 7.135466759035555e-17,
+ -4.772832134430969e-17,
+ 4.384057246531046e-17,
+ 2.0842883484804912e-16,
+ 2.0973164431282014e-16,
+ -1.7680985593320964e-16,
+ 1.8280691537421912e-17,
+ -1.6498117317370135e-16,
+ 5.728225741929717e-17,
+ 3.496078858955371e-16,
+ 6.536794790700301e-17,
+ 4.350970022028925e-17,
+ 1.4566650587058817e-16,
+ -1.4475660719677982e-18,
+ -1.1441975823139755e-16,
+ 1.3565762045869654e-16,
+ -1.1042861177582918e-17,
+ -1.6497083341604443e-16,
+ 1.680831004707752e-16,
+ 2.7677463296024306e-16,
+ 1.5468277454741615e-16,
+ 2.232146882974345e-16,
+ -3.307688474446419e-16,
+ -1.0753347963189358e-17,
+ 2.932355271500483e-17,
+ 2.45341769683228e-16,
+ -1.0379048736009114e-16,
+ 5.542110104105285e-17,
+ -1.6899299914458353e-16,
+ 1.871496135901225e-17,
+ 2.4649982254080225e-16,
+ -1.9438744394996148e-16,
+ -2.792975338285298e-16,
+ -3.037820799600994e-17,
+ -4.857101159334809e-17,
+ 2.565914260139492e-16,
+ -4.892773323251158e-17,
+ -5.091296670263885e-17,
+ -3.060568266446202e-16,
+ -1.5236666883226767e-16,
+ 2.008394527278751e-16,
+ 4.2665975995485163e-16,
+ -6.44683889908516e-17,
+ 2.2846728518714624e-16,
+ -9.083477101597934e-17,
+ 1.9951596374779025e-16,
+ 7.046544843186105e-17,
+ -9.961322526669835e-17,
+ -6.154223757394526e-17,
+ -3.763671787116276e-17,
+ 8.937686518635463e-17,
+ 2.3322357370932615e-16,
+ 1.977995639767427e-17,
+ 1.5315249041419305e-16,
+ -1.1971371415173693e-16,
+ 1.4732086709569423e-16,
+ -4.608559234656766e-17,
+ 1.3408597729484579e-16,
+ -2.360773468226341e-16,
+ 4.741037379635962e-17,
+ -4.0738645168236607e-17,
+ 2.4215712432489882e-17,
+ -1.2573145310806019e-17,
+ 1.257314531080602e-16,
+ 8.908735197196107e-17,
+ 1.085426399792083e-15,
+ 1.5025735827025748e-16
+ ],
+ [
+ 12.106147477856656,
+ 9.878118310761353,
+ -6.647178569510293,
+ 4.766410873395624,
+ -1.3466785704488187,
+ -2.7165059646305427,
+ 5.680038615761361,
+ -6.807922075191996,
+ 4.081086688967327,
+ 8.337686457598974,
+ 0.7873047953241008,
+ -0.28143421231570237,
+ -2.981107119888916,
+ 5.838534747642613,
+ -6.794469784932147,
+ 3.658665643320599,
+ 7.077577468485581,
+ 1.1958399577255074,
+ -0.053917150752515214,
+ -3.402820325262936,
+ 6.069371094060776,
+ -6.769253662571036,
+ 5.136038533525983,
+ -1.8706328530978198,
+ -2.0054784652333018,
+ 3.282922100647479,
+ 4.832236715515178,
+ -7.21384674868111,
+ -4.320593000594387,
+ 4.940680595123832,
+ -1.4072201268919,
+ -2.456740316019877,
+ 3.4863323388725878,
+ 5.708642028177355,
+ -7.595996726974388,
+ -4.2583120223032065,
+ 4.600001326867413,
+ -1.1152361186466682,
+ -2.7257786861602287,
+ 5.806138772183902,
+ -6.805411058965274,
+ 5.601378455583637,
+ -6.927519727120276,
+ -7.1092284474498015,
+ -6.67716497271767,
+ -6.6846896239618365,
+ -7.447352430452663,
+ -7.276008712995385,
+ 5.733984990139144,
+ -6.807711730750142,
+ 5.677571128449161,
+ -2.5047049504778776,
+ -1.3507407258864137,
+ 4.7736488402293835,
+ -4.30200651375981,
+ -7.72320278861563,
+ 5.484991880543435,
+ 3.3864982542888913,
+ -2.2319140631806067,
+ -1.64061941247332,
+ 5.102344490364322,
+ -4.352412738748531,
+ -7.313461255515228,
+ 4.614055493696528,
+ 3.176267264457953,
+ -1.7754293218102954,
+ -2.099686253888775,
+ 5.28999188396576,
+ -6.790500700184279,
+ 5.957186542190271,
+ -3.193339324309212,
+ -0.20968676470622902,
+ 0.9241311367891608,
+ 7.188266343174356,
+ 3.7442788236843576,
+ -6.805500137589391,
+ 5.711794741657507,
+ -2.764003968800501,
+ -0.4451510426206935,
+ 0.47495464119222885,
+ 8.4422715918928,
+ 4.158287130315207,
+ -6.802156103360097,
+ 5.544564890403553,
+ -2.4952989405172157,
+ -1.5805408250294608,
+ 4.934408740323423,
+ -6.69482272699355,
+ 9.87180503056647,
+ 12.112438542001703,
+ 9.999404945243217,
+ 7.966811915907394,
+ -6.232586180878833,
+ 6.7169123572537295,
+ -5.0281213477073186,
+ 1.495070337138677,
+ 2.366468550316907,
+ -5.466946153621946,
+ 4.631846613294562,
+ 8.570696538968349,
+ -4.602482738707865,
+ -2.9795224927348842,
+ 1.209866204669069,
+ 2.6427148319860883,
+ -5.738062553396524,
+ 4.427930192987769,
+ 7.643398850858241,
+ -3.586002072490833,
+ -2.660125319649327,
+ 0.7371646582409523,
+ 3.0758733276788726,
+ -5.889020995259816,
+ 6.783275081832554,
+ -5.375655575578143,
+ 2.2245276655224013,
+ 0.89168475672201,
+ 0.28465916696255017,
+ -7.568767573138637,
+ -4.065397206604014,
+ 6.753141970790009,
+ -5.06982666372269,
+ 1.7680132554126595,
+ 1.1724476924478653,
+ 0.9088176198111111,
+ -8.344619792798834,
+ -4.213940260870287,
+ 6.675976043766011,
+ -4.866595173456644,
+ 1.4852084758155888,
+ 2.585496195134706,
+ -5.600446736264945,
+ 6.805122884950278,
+ -11.515105539866767,
+ -11.489825491394452,
+ -5.5829757712278125,
+ -5.336287141135395,
+ -0.40386539462992765,
+ -0.08997637048830462,
+ 2.4564059299649093,
+ -5.52317989253291,
+ 6.798869991658101,
+ -5.760535982031692,
+ 2.853009470327184,
+ 0.9823565865502706,
+ -2.7806154871707904,
+ -4.172310152354462,
+ 8.239141257239279,
+ 4.444101683744671,
+ -5.600618544565227,
+ 2.5807754586181293,
+ 1.452227028663183,
+ -3.0213103606401797,
+ -4.301245215098491,
+ 7.435464064077637,
+ 4.386911094737189,
+ -5.315425912040386,
+ 2.132797110273358,
+ 1.7351012781780122,
+ -5.190880070776432,
+ 6.751966814017154,
+ -6.128343401435758,
+ 2.445684359078494,
+ 5.319942901991145,
+ 4.012895880851505,
+ 1.6206507072119196,
+ -5.37476243166509,
+ 6.796075542189965,
+ -5.905676951680775,
+ 2.3868184847223537,
+ 5.635817217155893,
+ 5.1400069971654565,
+ 2.1002522096787466,
+ -5.654242079002422,
+ 6.80621320857723,
+ -5.755129399337153,
+ 2.637634290177855,
+ 1.2087911483620974,
+ -4.669222317485242,
+ 8.171443642288354,
+ 9.790340568438177,
+ -2.899102610875851e-15,
+ -4.292529711752054e-15,
+ -5.623173804135482e-16,
+ -1.7536228986124184e-16,
+ 1.2176098616780567e-16,
+ 5.512331602053376e-16,
+ 8.46702075009279e-16,
+ 4.622285262946319e-16,
+ 7.80858498250058e-16,
+ -7.610061635487855e-18,
+ -2.9447629806887785e-16,
+ -1.6244172869316356e-15,
+ -8.519960309296184e-17,
+ -4.384057246531046e-16,
+ 1.8073896384283655e-17,
+ 1.2915598084402972e-15,
+ 2.4649982254080225e-16,
+ 4.2667009971250854e-16,
+ 4.1904969831936377e-16,
+ -1.0331485850787314e-16,
+ -6.617444900424221e-17,
+ 2.1341259803868112e-16,
+ 3.336846591038913e-16,
+ 2.4302566396807953e-16,
+ -4.3915018720440234e-16,
+ 5.080543322300696e-16,
+ 8.685396431806789e-17,
+ -6.766337410683766e-17,
+ -6.564298546067688e-16,
+ -6.79777027396078e-16,
+ -2.752857078576476e-16,
+ -2.954689148039415e-16,
+ -2.6221625417930977e-16,
+ -1.344995676011223e-16,
+ 3.9514417861658127e-16,
+ 1.1577219853292175e-15,
+ 2.934009632725589e-16,
+ 1.6385284711939076e-17,
+ 4.0631111688604714e-16,
+ -1.0481205541659414e-15,
+ -3.305413727761898e-16,
+ -3.9526825570846423e-16,
+ -7.468613750741286e-16,
+ 9.975798187389513e-17,
+ 3.517171964575473e-16,
+ 4.170644648492365e-16,
+ 1.110076382046163e-16,
+ 1.6369904322424416e-15,
+ -1.2655863372061321e-15,
+ 1.0141234309900118e-16,
+ 3.5403330217269584e-17,
+ -1.342514134173564e-16,
+ -2.4922951856222724e-16,
+ 4.288104295474895e-16,
+ 7.001256704648825e-16,
+ 1.433504001554397e-16,
+ 2.996048178667066e-16,
+ 2.6767564622215976e-16,
+ -2.9116757561866574e-17,
+ 1.4988512699460861e-16,
+ -9.219755107516046e-16,
+ -2.9778502051908992e-18,
+ -6.109556004316661e-16,
+ 5.231090193785347e-16,
+ 4.2239977980020353e-16,
+ 4.472358776921082e-16,
+ 7.371833619072582e-16,
+ -4.700040240526303e-16,
+ 4.403909581232319e-16,
+ 2.6817195458969157e-16,
+ 4.475874294524433e-16,
+ 4.6983858793011966e-17,
+ 2.0617476767884212e-16,
+ 1.65022532204329e-16,
+ 1.4416103715574164e-15,
+ 3.838118042246048e-16,
+ -2.509665978485886e-16,
+ -1.2407709188295415e-16,
+ 3.970466940254532e-17,
+ 3.8023424807531295e-16,
+ -2.9778502051908996e-17,
+ -5.558653716356346e-16,
+ 1.348304398461435e-16,
+ -1.9025154088719634e-16,
+ 3.720658395263518e-16,
+ 1.968353815752356e-16,
+ 3.130051437900656e-16,
+ 3.8563160157222145e-16,
+ 4.0895809484621683e-16,
+ 4.572654426193137e-16,
+ 6.809350802536523e-16,
+ -1.422088909101165e-15,
+ -7.998836523387777e-16,
+ 5.660396931700368e-16,
+ 6.478478557515312e-16,
+ 1.2904017555827232e-16,
+ 5.250115347874067e-16,
+ 3.212769499155959e-16,
+ -6.547961728969766e-16,
+ 1.4756902127946014e-16,
+ -4.0961983933625926e-16,
+ 6.088049308390284e-17,
+ -3.5833464135797154e-16,
+ 4.524677950665061e-16,
+ 3.985356191280487e-16,
+ 2.1705219273391444e-16,
+ 5.4097612060968004e-17,
+ -3.2673634195844593e-17,
+ 2.340507543218792e-16,
+ -1.6709048373571157e-16,
+ -1.1812139147257235e-16,
+ -2.1440521477374475e-16,
+ -7.991805488181076e-16,
+ 1.8851446160083498e-16,
+ -4.566036981292712e-17,
+ 1.919059021123024e-17,
+ 5.204465317818796e-16,
+ 4.366272863361156e-16,
+ -2.240005098793599e-16,
+ -1.8859717966209028e-17,
+ -4.1226681729642894e-16,
+ -1.2688950596563445e-16,
+ 1.424570450938824e-15,
+ 3.2276587501819135e-16,
+ 2.1556326763131899e-16,
+ 1.8363409598677212e-16,
+ 9.990790835992036e-18,
+ -8.963329117624608e-16,
+ 2.417021749879947e-16,
+ 9.057627707455652e-17,
+ -2.1854111783650989e-16,
+ 5.684074976734699e-16,
+ 1.2859349802749366e-15,
+ 5.602907879127933e-16,
+ 6.756411243333129e-16,
+ -7.040961374051371e-16,
+ -1.10924920143361e-16,
+ -7.342055117020673e-16,
+ 6.306424990104282e-16,
+ -2.2813641294212503e-16,
+ -6.948317145445432e-18,
+ -8.749089338973373e-16,
+ 2.239177918181046e-16,
+ 7.639840137539763e-16,
+ -7.576974410985733e-16,
+ -7.952514409084807e-16,
+ -8.470329472543002e-17,
+ 2.4649982254080225e-16,
+ 6.89868630869225e-16,
+ -7.643148859989974e-17,
+ -2.9985297205047253e-17,
+ -6.307252170716835e-16,
+ -4.08461786478685e-16,
+ 6.445391333013191e-16,
+ 1.0485341444722179e-15,
+ -2.5849394142282115e-16,
+ 3.924144825951563e-16,
+ -1.2391165576044355e-16,
+ 3.012591790918127e-16,
+ 1.7159861807412557e-16,
+ -1.1572256769616857e-16,
+ 1.2465611831174127e-16,
+ 1.4740358515694953e-16,
+ 2.154185110241222e-16,
+ 9.363684534100272e-17,
+ 1.4889251025954498e-17,
+ 1.3019822841584656e-16,
+ -3.634631611558003e-16,
+ 2.1787937334646746e-16,
+ 3.8339821391832827e-17,
+ 4.301339185275743e-17,
+ -6.359364549307676e-16,
+ 1.7039920618592368e-16,
+ -6.849055471939069e-17,
+ 9.444334643824192e-17,
+ -4.87002585640595e-17,
+ 6.028492304286465e-16,
+ 1.8363409598677214e-17,
+ 2.8716402145390905e-15,
+ 1.0700408403985966e-15
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.3570008539536933,
+ 5.059639543470011,
+ 3.2745717745541207,
+ 3.267150455875677,
+ 1.8520472228924714,
+ -0.38573222903680215,
+ -2.442819012476674,
+ -3.70456568563428,
+ -4.764299848376788,
+ -3.17317265943206,
+ 1.8786365113743742,
+ 3.646370070828686,
+ 3.4137077235445847,
+ 3.0483092776351626,
+ 1.658549291723504,
+ 1.4877304900538246,
+ 0.06934947215846722,
+ -2.7380095915754685,
+ -3.8656574277568434,
+ -1.5393704163191204,
+ 0.7235005139758426,
+ 2.68342849740124,
+ 3.4625651846829837,
+ 2.747793750861375,
+ 1.1031082578260936,
+ 0.7718777359480232,
+ -0.3836898177499538,
+ -2.5764431594390955,
+ -3.409512890385485,
+ -1.0296677892306887,
+ 1.2480767743010353,
+ 3.1346785676607696,
+ 4.255325129566842,
+ 3.0281047209808056,
+ -0.5907357731010977,
+ -2.0967499204483637,
+ -2.8819567094566896,
+ -3.4516737251261183,
+ -2.5364455424919403,
+ -0.49738556857559374,
+ 1.7420056357121325,
+ 3.4232189092847207,
+ 5.016876139556291,
+ 3.128782866422225,
+ -0.07237609592006017,
+ -0.4004287332017773,
+ -3.099143672611009,
+ -4.763033090583624,
+ -2.004813718675013,
+ 0.18628589569177756,
+ 2.3056296005204358,
+ 3.4116271047539213,
+ 3.043453260883791,
+ 1.6502422296419754,
+ 1.5025198749856943,
+ 0.17548886152061435,
+ -2.9225858568160583,
+ -3.935415215330974,
+ -1.5334164151428278,
+ 0.7283869756243625,
+ 2.77277307813997,
+ 3.805733872578298,
+ 2.7192448674493317,
+ -0.0029983523679042784,
+ -1.3854302954546418,
+ -2.5469417717918326,
+ -3.454226462316696,
+ -2.8767693492518718,
+ -1.025986006334036,
+ 1.2536548265780938,
+ 3.1393727390259305,
+ 4.179071969308966,
+ 2.8218711339204727,
+ -0.4553553719977426,
+ -2.070390680956023,
+ -2.887573082886186,
+ -3.454425656640626,
+ -2.8718770333962063,
+ -3.196692429661858,
+ -1.5017887779886847,
+ 3.239987994161366,
+ 4.697789294379138,
+ 2.654403972968512,
+ 0.69470032942686,
+ -1.5719157668648593,
+ -3.1499578642804096,
+ -3.3631963094956947,
+ -2.450933907287261,
+ -4.1987324840118605,
+ -2.70592925385174,
+ 5.676973498523028,
+ 7.838881750530499,
+ 2.848024017638821,
+ 1.0038028231507563,
+ -1.2800609198328543,
+ -3.0044180624114563,
+ -3.4255739111870604,
+ -2.7027326777290583,
+ -2.95243950557387,
+ -1.3049208675287427,
+ 3.251563877450993,
+ 4.633555435488759,
+ 2.501238973653888,
+ 0.4704558071409954,
+ -1.7414099427676275,
+ -2.6702527546080046,
+ -2.2608508814317125,
+ -0.969919308985917,
+ -0.20853089273252318,
+ 1.5939355638983936,
+ 3.160179903109193,
+ 3.37093673353553,
+ 2.092099441155265,
+ -0.07775468719116808,
+ -2.246808225708509,
+ -3.2382914648730603,
+ -2.5080159013186143,
+ -0.5323394032492321,
+ 0.5291688265181085,
+ 2.061258567468598,
+ 3.3466632985478597,
+ 3.5270905801631174,
+ 4.187807626320054,
+ 2.2530520909969987,
+ -2.7891056181180023,
+ -4.662550552650832,
+ -3.2545493930120153,
+ -1.8097962193427752,
+ 0.4203159048950157,
+ 2.4708368177334603,
+ 3.4454136824863943,
+ 3.2756871101218237,
+ 4.203108072470169,
+ 1.855733584301139,
+ -2.850965534085712,
+ -3.02641824484595,
+ -1.462402510127363,
+ -1.0059216463977867,
+ 1.113913821282068,
+ 2.908103186223023,
+ 3.4563153330541825,
+ 2.4781301554529067,
+ 0.4409561543624853,
+ -1.7678381718250027,
+ -2.753423999181531,
+ -2.387328864986642,
+ -0.9173832931389139,
+ -0.1733210911915457,
+ 1.6185753103686273,
+ 3.1690139527316448,
+ 3.6770098549187864,
+ 4.381791097948378,
+ 2.2929196037646467,
+ -2.3112954528234377,
+ -4.398149890707375,
+ -3.3909407019372457,
+ -2.2283083638228622,
+ -0.10109535376965938,
+ 2.07673981109358,
+ 3.3472245023103455,
+ 3.509879741710868,
+ 4.0849381292306,
+ 1.9952268443586973,
+ -2.5467589691068664,
+ -4.576350489475718,
+ -3.241038057392293,
+ -1.7861271420834073,
+ 0.2834364435612625,
+ 0.9929270727965112,
+ 1.4556211762377809,
+ 2.1148174171803458,
+ 2.090495355050551,
+ -0.2490376841317845,
+ -2.339779006107872,
+ -3.430528617191918,
+ -3.007799805820992,
+ -1.2946585087127431,
+ 0.8726463932171238,
+ 2.9172077854781864,
+ 2.4554324821666866
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.262883096605368,
+ 6.719927314691588,
+ 4.624271567560094,
+ 4.841048379189473,
+ 2.9728973839788453,
+ -0.2146850286706965,
+ -3.2888161756672605,
+ -5.295712145885448,
+ -6.875343142258042,
+ -4.66099083912216,
+ 2.4529303151948936,
+ 4.968508939632646,
+ 4.878603629846987,
+ 4.574422174296026,
+ 2.7358833782339738,
+ 2.5911476327789087,
+ 0.38496578562645317,
+ -4.041087205869688,
+ -5.848961909276266,
+ -2.5365267615065163,
+ 0.7087392890678927,
+ 3.661232589435418,
+ 5.0034490394339945,
+ 4.185512186043595,
+ 1.9542610345713616,
+ 1.5734886727452833,
+ -0.27296612345725485,
+ -3.8496621363214856,
+ -5.246970484178806,
+ -1.8197065512187514,
+ 1.4828914822759833,
+ 4.327700017840307,
+ 5.949075924100727,
+ 4.323282501709867,
+ -0.5528600224843236,
+ -2.6099205534213,
+ -3.9773337576580126,
+ -5.021805548307643,
+ -3.9066817414405097,
+ -1.0614311692751897,
+ 2.2213168626489934,
+ 4.797280275286633,
+ 7.104534233580897,
+ 4.525468403045564,
+ 0.24288009696754187,
+ -0.23390266811315746,
+ -4.526031523349007,
+ -7.109325723208056,
+ -3.181883882222139,
+ -0.07553124136944914,
+ 3.07542292638772,
+ 4.875601103326288,
+ 4.567564923578698,
+ 2.7240185792924545,
+ 2.62116067748187,
+ 0.5607501230804124,
+ -4.3252885348558054,
+ -5.955126576440388,
+ -2.5282042611390896,
+ 0.7155677094467419,
+ 3.757645499852582,
+ 5.239476921923476,
+ 3.846947806530926,
+ 0.2803204589526897,
+ -1.5618849513353532,
+ -3.4499472287001494,
+ -4.971085317661703,
+ -4.356320771584906,
+ -1.814068911851213,
+ 1.491296313246971,
+ 4.334978440777627,
+ 5.843032826991024,
+ 4.039492159703025,
+ -0.3776259375946333,
+ -2.5801311611524858,
+ -3.9857196841505664,
+ -5.025887819638572,
+ -4.3962857897704755,
+ -4.977013906959608,
+ -2.4600882205739767,
+ 4.6597210503021165,
+ 6.87660129599866,
+ 4.061781875041876,
+ 1.343385905342917,
+ -1.9643528975986895,
+ -4.412935301986525,
+ -4.947918784419349,
+ -3.8296464180569187,
+ -6.735954557182514,
+ -4.411983880790648,
+ 8.212155465951277,
+ 11.391956606681411,
+ 4.316549783909258,
+ 1.782685775201777,
+ -1.5290789298318161,
+ -4.174120273194895,
+ -5.006933423137087,
+ -4.17017161343897,
+ -4.644176654721802,
+ -2.1846348816799703,
+ 4.698173496455698,
+ 6.814861975482912,
+ 3.8574631856512585,
+ 1.0230980498880877,
+ -2.1866464852019076,
+ -3.483487206362007,
+ -3.0965927978914816,
+ -1.6707151962870916,
+ -0.7644314848793857,
+ 1.9988359138132343,
+ 4.4298185025487555,
+ 4.9616442765402065,
+ 3.3015732453745543,
+ 0.2329966211726494,
+ -2.949471266064947,
+ -4.352181160812605,
+ -3.49208367056884,
+ -1.0497417745730075,
+ 0.30516862799569555,
+ 2.703710411540838,
+ 4.7508123938355755,
+ 5.231915093725429,
+ 6.27795374337407,
+ 3.4689078533954447,
+ -3.9037500377615983,
+ -6.663058952078016,
+ -4.826342555843195,
+ -2.9124961916545664,
+ 0.2636294830509282,
+ 3.332066951362917,
+ 4.947519118921844,
+ 4.92229958803698,
+ 6.39314851971841,
+ 2.9357254253334655,
+ -3.9244396623933806,
+ -4.206006935796638,
+ -2.391303156839863,
+ -1.9697602512993384,
+ 1.284148468716323,
+ 4.02060798986577,
+ 5.035429428986501,
+ 3.8270762112202887,
+ 0.981279147851735,
+ -2.2267750109592646,
+ -3.59982185339878,
+ -3.2601327998041914,
+ -1.621306024038956,
+ -0.7233117296873667,
+ 2.0359893899117814,
+ 4.446087471839143,
+ 5.396385035449871,
+ 6.492532034028266,
+ 3.48713731086138,
+ -3.177611572307245,
+ -6.21670779725544,
+ -4.97530311504383,
+ -3.488907345710373,
+ -0.49354235110705585,
+ 2.7283512234878633,
+ 4.755807275104376,
+ 5.211822499212464,
+ 6.130476131856484,
+ 3.0905599560352957,
+ -3.5570481879753673,
+ -6.546097471786096,
+ -4.811221740507708,
+ -2.8810829876930786,
+ 0.03566017916792888,
+ 0.9709301814741667,
+ 1.815882135754579,
+ 3.3064893227678485,
+ 3.452734060734452,
+ -0.015178299217416275,
+ -3.1307732391665923,
+ -4.909548141238001,
+ -4.522938999268041,
+ -2.194237464263911,
+ 0.8975049202827643,
+ 3.49262940164978,
+ 3.0418575921860387
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.1268542244141324,
+ 4.2120132296168125,
+ 1.2174260409472137,
+ 1.9625104102285356,
+ 1.8649370553145475,
+ 0.9426634453740318,
+ -0.3787940842448531,
+ -1.5886001259653246,
+ -2.2560525012488175,
+ -1.77177484284105,
+ 0.04017415151883575,
+ 0.7606559113859126,
+ 1.4595150774897092,
+ 2.0207315019273313,
+ 1.9122538866939476,
+ 2.1662729154267404,
+ 0.970336132332088,
+ -1.5922956705199485,
+ -2.720483411370486,
+ -1.765751387096652,
+ -0.760927563963945,
+ 0.5756399885787487,
+ 1.6614621021602807,
+ 2.0257293268434813,
+ 1.7148295133445899,
+ 1.8779260670462574,
+ 0.7421422906222963,
+ -1.6531099991969749,
+ -2.689648955213312,
+ -1.5860257430428109,
+ -0.45612504306832324,
+ 0.8395720795270551,
+ 1.3839712589698925,
+ 1.2806740217926076,
+ 0.7062728215150245,
+ 0.3757153040084066,
+ -0.7670749194390369,
+ -1.7684362627981631,
+ -2.011751686958087,
+ -1.366415892743103,
+ -0.1378625770250746,
+ 1.1512362098760154,
+ 1.9304092200684193,
+ 1.5155827455890982,
+ 1.1086929415621318,
+ 0.9422555353592224,
+ -1.644152876474559,
+ -3.031438705250339,
+ -1.899530534935326,
+ -1.0449924774031236,
+ 0.26310189457299726,
+ 1.4585273328048132,
+ 2.018926343189537,
+ 1.9087232272182537,
+ 2.2018069407138974,
+ 1.0950165226018065,
+ -1.738405171775382,
+ -2.771606266862258,
+ -1.7638172199328521,
+ -0.7593487679198627,
+ 0.5109286281343725,
+ 0.9710115825490598,
+ 1.0336543670572473,
+ 0.9352857991217309,
+ 0.7834141421851386,
+ -0.46387659861551267,
+ -1.590616989297381,
+ -2.036404624340444,
+ -1.583215239507619,
+ -0.4523172775501207,
+ 0.8434498916588321,
+ 1.3610151231533154,
+ 1.2285061155940882,
+ 0.7041274625541168,
+ 0.36105710464569163,
+ -0.7706580163188076,
+ -1.770107219887795,
+ -2.1888385427914794,
+ -2.711176501775071,
+ -1.6748833983448959,
+ 1.4819384336477814,
+ 2.544543153168139,
+ 2.0178399800350664,
+ 1.4506710707071568,
+ 0.25627817868505354,
+ -1.0547357028218898,
+ -1.9035646848663017,
+ -2.123842764015422,
+ -4.2153468116992014,
+ -2.9499807395891966,
+ 2.753180510614507,
+ 3.9742173892410273,
+ 2.028428391339499,
+ 1.5747804034795052,
+ 0.4408784777174869,
+ -0.891082973416361,
+ -1.8310822632996022,
+ -2.167904453282079,
+ -2.6601577752814785,
+ -1.6101148311949405,
+ 1.5589821632224792,
+ 2.6159980675992434,
+ 2.0003114873619503,
+ 1.3554060183121048,
+ 0.24941078175892267,
+ -0.04704929247236552,
+ -0.5242117430999317,
+ -1.3511763669327463,
+ -1.6240166399694798,
+ -0.236945535020522,
+ 1.066590955664294,
+ 1.915644684909292,
+ 1.9202207943696965,
+ 1.0991639709066199,
+ -0.10010813343913307,
+ -0.47715089662610877,
+ -0.7689627805256295,
+ -1.1785086380743577,
+ -1.258145441197281,
+ 0.08465662649868334,
+ 1.325625176241904,
+ 2.137426576848193,
+ 2.7548893147342266,
+ 1.7827546094977205,
+ -0.9218974657642407,
+ -1.99249573177859,
+ -1.9679932857500875,
+ -1.8468095995517784,
+ -0.9294564812520314,
+ 0.4013359185481438,
+ 1.5507496410645965,
+ 2.193393390488728,
+ 3.068552153165976,
+ 1.726852711958409,
+ -0.725511058253839,
+ -0.9019597316254012,
+ -1.6169182935698945,
+ -2.181338042326737,
+ -0.5365480109052224,
+ 0.7976948618075085,
+ 1.7934230881252065,
+ 1.9991101138013099,
+ 1.3439109720535043,
+ 0.23034675542656563,
+ -0.0742962223338201,
+ -0.5216431701701532,
+ -1.413193175427452,
+ -1.639235904554844,
+ -0.2200252239077364,
+ 1.08235593940666,
+ 2.037694986570606,
+ 2.631664461871161,
+ 1.6722923351865906,
+ -0.5751575837081421,
+ -1.6540527343162192,
+ -1.8750644733704531,
+ -1.9543528886865964,
+ -1.1919107170519672,
+ 0.09955905124320055,
+ 1.3396558882525709,
+ 2.144885314147594,
+ 2.7093762696934123,
+ 1.6399936900350058,
+ -0.8171029974480257,
+ -1.9761221778984475,
+ -1.9760002620643504,
+ -1.8446318551322816,
+ -1.0944408800574679,
+ -1.0500130248279813,
+ -0.24766009216632343,
+ 1.8392772281300978,
+ 2.424518147053147,
+ 1.0147750603299377,
+ -0.2992436973729772,
+ -1.4894281695134888,
+ -2.024505392406071,
+ -1.6855884465329964,
+ -0.7773961073180621,
+ -0.9786839442863748,
+ -0.4878117140054495
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.158689896229123,
+ 4.458334861216321,
+ 1.9476027293489435,
+ 1.2136310351771595,
+ 1.9669276485666918,
+ 1.8528088130259541,
+ 0.9428251405898159,
+ -0.29397539637300074,
+ -0.7401366176687492,
+ -0.9504745322447257,
+ -1.1519347577171708,
+ -1.0755012324901643,
+ 0.2634857723005564,
+ 1.454733698485574,
+ 2.1730339741807256,
+ 2.7157468504123146,
+ 1.6042586421395386,
+ -0.9280577701884931,
+ -2.1132306808700805,
+ -2.0014293118016866,
+ -1.7632970302583755,
+ -0.7645227642958043,
+ 0.575005142152875,
+ 1.6584208579633717,
+ 2.1982386748183695,
+ 2.6905992765532627,
+ 1.51065123395529,
+ -1.1363671009012952,
+ -2.3570984715377454,
+ -2.0270095876936223,
+ -1.5859412430564812,
+ -0.6090094159826944,
+ -0.41156904034713476,
+ 0.20996395718876937,
+ 1.5841647208051421,
+ 2.00049949972412,
+ 0.5680856078364817,
+ -0.7639062275167724,
+ -1.771938255115661,
+ -1.9994651994600294,
+ -1.3658019162435215,
+ -0.2666809186830147,
+ 0.022578007215936887,
+ 0.5438503786227699,
+ 1.9314809154435675,
+ 1.8616612852651626,
+ -0.7816355135899195,
+ -2.058902275526277,
+ -1.926502298533267,
+ -1.8971946939440298,
+ -1.0503619552477563,
+ 0.26315779238587766,
+ 1.4548192534873516,
+ 2.17243034608344,
+ 2.766542261149233,
+ 1.747241112902727,
+ -1.0565172728472394,
+ -2.1548166739084085,
+ -2.002011093507614,
+ -1.7637882369112492,
+ -0.9325463668287597,
+ -0.8214658956548285,
+ -0.009289684253666093,
+ 1.5916748840045034,
+ 2.231459098873657,
+ 0.8658386069292392,
+ -0.4600038498251414,
+ -1.5927929418679996,
+ -2.024624695757369,
+ -1.583093601867531,
+ -0.6054675819854783,
+ -0.4010600864697045,
+ 0.2552465555216857,
+ 1.4925855989750738,
+ 1.9584666494061855,
+ 0.565643272173809,
+ -0.764959147921981,
+ -1.855066073047551,
+ -2.5319204208290644,
+ -1.8713901341341574,
+ 0.4144345591293854,
+ 1.2736919664584228,
+ 1.7056696556936373,
+ 2.014514615185793,
+ 1.4565991267624816,
+ 0.253215415177493,
+ -1.051055988644009,
+ -2.0180041925283256,
+ -4.437749366555523,
+ -3.256585838987635,
+ 0.992312334070798,
+ 1.6635248453421958,
+ 1.5979053103685146,
+ 2.0246965084824624,
+ 1.580801941650926,
+ 0.4368484237091269,
+ -0.8873396502088541,
+ -1.9293464835320346,
+ -2.6038500484443774,
+ -1.8891713235855776,
+ 0.5378681197904024,
+ 1.436866408959084,
+ 1.7753600226949702,
+ 1.9982422863002471,
+ 1.5550171245307007,
+ 1.654423605422079,
+ 0.5774624692712405,
+ -1.6666391807678367,
+ -2.6249330606889285,
+ -1.4380414501746155,
+ -0.23970403366328605,
+ 1.066560171569313,
+ 1.9049752112854332,
+ 1.9187782129237578,
+ 1.2891999958622735,
+ 1.2923243765806984,
+ 0.32199325339844215,
+ -1.6573716941917316,
+ -2.4822078262588207,
+ -1.194944655407288,
+ 0.07945642394708224,
+ 1.3421018896936439,
+ 1.962466437516498,
+ 1.5667770908488083,
+ 0.24462158810029402,
+ -0.35825027165309176,
+ -1.2311344089974159,
+ -1.9635588344150174,
+ -1.852824725864596,
+ -0.9227084483129061,
+ 0.39796487394811564,
+ 1.6005226895266185,
+ 2.4856685239434473,
+ 1.7298275993475845,
+ 0.6186029928767999,
+ 0.43264999957091443,
+ -1.798447815691831,
+ -3.054301480477672,
+ -1.6354968974558317,
+ -0.5330228593049945,
+ 0.8033614721096229,
+ 1.7883281130914985,
+ 1.9978648395968661,
+ 1.5397792087590647,
+ 1.6621319407215074,
+ 0.6639790180970992,
+ -1.8061741282251735,
+ -2.673671286555463,
+ -1.4252855862362301,
+ -0.21864583581927735,
+ 1.0752102645458457,
+ 1.6270209003714655,
+ 1.353126741603734,
+ 0.5236333537516146,
+ 0.04527279398008719,
+ -0.9845923545510166,
+ -1.8745181172224814,
+ -1.960254314187382,
+ -1.1796692432616862,
+ 0.10294057902830549,
+ 1.3659595792810264,
+ 1.951923642273935,
+ 1.4915873911904218,
+ 0.26533284932077844,
+ -0.3864097633663221,
+ -1.2535203910034354,
+ -1.9752304046466236,
+ -2.0443446760704562,
+ -2.4296607031115327,
+ -1.3664148620490326,
+ 1.7526364246745958,
+ 2.7631826870799454,
+ 1.8865921146738098,
+ 1.0111120571663725,
+ -0.3034037962744926,
+ -1.4874592075046698,
+ -2.0241219499592376,
+ -1.8881627416093245,
+ -3.55828978087163,
+ -2.424007021453419
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.8282756193000007,
+ 2.7825936626462577,
+ 1.885402395519602,
+ 1.950780065380067,
+ 1.2209171855345466,
+ 1.966920266670408,
+ 1.8622895867159819,
+ 1.131842853950518,
+ 1.1001568500417098,
+ 0.28356246804538376,
+ -1.8512589613242385,
+ -2.454028042617963,
+ -1.05025158200183,
+ 0.2593769640273958,
+ 1.4974586675254273,
+ 2.0957716405822295,
+ 1.5484093707449598,
+ 0.1387144788088117,
+ -0.5924651869855606,
+ -1.3746808119356053,
+ -2.0085531356688677,
+ -1.779497367928985,
+ -0.7631478089961854,
+ 0.574576874567366,
+ 1.7351793318276223,
+ 2.345566479323627,
+ 1.6302206782369153,
+ -0.1277453646583626,
+ -1.0067865638727433,
+ -1.595231860117003,
+ -2.0355729349564458,
+ -1.799845023074144,
+ -2.0356994297399322,
+ -0.9549439360184897,
+ 1.7817813004730243,
+ 2.7679818304930617,
+ 1.6627653968652163,
+ 0.5735155033780734,
+ -0.7670615158120853,
+ -1.7722844986114035,
+ -2.008837630016533,
+ -1.574396164499863,
+ -1.9014753004244787,
+ -0.6657506960910627,
+ 1.9240067689560771,
+ 1.9812470644638998,
+ 0.42093763037786636,
+ -0.19504307083992273,
+ -1.1226535622600728,
+ -1.9340228529659678,
+ -1.915262230782232,
+ -1.049776053521092,
+ 0.26132262007314117,
+ 1.5000512631099612,
+ 2.139970664342944,
+ 1.648086267535713,
+ 0.08337035758861225,
+ -0.6065455354044331,
+ -1.3775349644116792,
+ -2.0109081253509276,
+ -1.9787138225818537,
+ -2.2657318966902023,
+ -1.051771713603431,
+ 1.5637957137933132,
+ 2.7219818701477987,
+ 1.8266314015450051,
+ 0.8728544210759784,
+ -0.4606923756465196,
+ -1.5943030931256592,
+ -2.034914532882597,
+ -1.798167178772336,
+ -1.9961439354807413,
+ -0.8314102603387091,
+ 1.639962931158177,
+ 2.716605344916667,
+ 1.6625209276503694,
+ 0.5735366843556654,
+ -0.7200588633869234,
+ -1.2600247675727967,
+ -1.2614229106539079,
+ -0.835445632127513,
+ -0.5508297065309511,
+ 0.6567734089969735,
+ 1.7114020204659233,
+ 2.0327595875773197,
+ 1.45639864812218,
+ 0.2576771858610915,
+ -1.0414292204896958,
+ -2.746885359515908,
+ -2.159651021432854,
+ -1.2025309298752385,
+ -1.3725102805174891,
+ 0.47673381605705056,
+ 1.6028785723904337,
+ 2.0427901144607885,
+ 1.580877317135722,
+ 0.4423256164465394,
+ -0.8578405097059588,
+ -1.4242979376545712,
+ -1.3543668437948193,
+ -0.7187022768249912,
+ -0.3660019063013843,
+ 0.7839216482935859,
+ 1.7814105654937735,
+ 2.194372344811774,
+ 2.6481150556000213,
+ 1.4338178572429197,
+ -1.2643431163672614,
+ -2.49710262510354,
+ -2.0229833554261427,
+ -1.4470529918933326,
+ -0.245423622002537,
+ 1.068049865154724,
+ 1.9135976240480583,
+ 2.1271903506958143,
+ 2.5104261262136762,
+ 1.2777798329368266,
+ -1.4230271493084252,
+ -2.6398387681112534,
+ -1.963507633080678,
+ -1.2052178923075827,
+ -0.03478220751072867,
+ 0.3209271758648742,
+ 0.6743058363947508,
+ 1.3095984664158045,
+ 1.4360651930620247,
+ 0.03922435000786146,
+ -1.2338104281865219,
+ -1.980195769115678,
+ -1.8532826823728756,
+ -0.9303825588787037,
+ 0.3153223236442279,
+ 0.8287211112721631,
+ 0.9867275187772138,
+ 1.700478233148568,
+ 1.5851912806043778,
+ -1.204912857567734,
+ -2.612894952254226,
+ -2.0327816863606096,
+ -1.638367521860225,
+ -0.5365600727673624,
+ 0.8055131383446212,
+ 1.7923507262331182,
+ 2.189546203185437,
+ 2.687574528148679,
+ 1.567252204726705,
+ -1.4214779662551797,
+ -2.558453146504171,
+ -2.0199082816517517,
+ -1.4297657931736865,
+ -0.35429074790506937,
+ -0.08278141613310161,
+ 0.4492643675862641,
+ 1.4003126488437578,
+ 1.730847062915581,
+ 0.33356696649848766,
+ -0.9859210001459479,
+ -1.8857403311922967,
+ -1.954447643058613,
+ -1.1823767646430592,
+ -0.004760331151028914,
+ 0.3500201261157241,
+ 0.6993460594110397,
+ 1.2370079810325176,
+ 1.3753665076827903,
+ 0.012065658758565655,
+ -1.2543452690704113,
+ -2.115740204568424,
+ -2.766071892342738,
+ -1.8996286362248511,
+ 0.9097799005892397,
+ 1.911224051899353,
+ 1.947674735376437,
+ 1.889821742266622,
+ 1.0175114817672413,
+ -0.3070378995946268,
+ -1.4907910016056394,
+ -2.1883293508853865,
+ -4.611950752984037,
+ -3.3212950828286023
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.31180780320495316,
+ -0.1245702033909282,
+ 0.9915146285532522,
+ 1.8745219847608938,
+ 1.9533161035771769,
+ 1.2138338327815434,
+ 1.962718806399094,
+ 2.0620468442363618,
+ 2.45984878452098,
+ 1.3956281198825145,
+ -1.7358614974335465,
+ -2.7536906640170913,
+ -1.9040789083524337,
+ -1.0533682694923472,
+ 0.15975683020113518,
+ 0.5499319699538465,
+ 0.8095141763287583,
+ 1.1469801773465071,
+ 1.1934079909795643,
+ -0.1400777822523362,
+ -1.3685768546092023,
+ -2.012189034742526,
+ -1.7680764466548826,
+ -0.765391177980757,
+ 0.5056819306524033,
+ 0.9651881680826068,
+ 1.031101161491747,
+ 0.9397428752718663,
+ 0.7909370248711239,
+ -0.45881697424055445,
+ -1.5885671324936017,
+ -2.1998649684040035,
+ -2.766079688212485,
+ -1.7016033523595642,
+ 1.1940617064894523,
+ 2.3166025689963714,
+ 2.0268459340461495,
+ 1.6613453177633206,
+ 0.57863410144608,
+ -0.7628918965347301,
+ -1.7675107361267017,
+ -2.1910199379705544,
+ -2.9917278078003995,
+ -1.5847607939705106,
+ 1.067955046963288,
+ 1.2273284208933857,
+ 1.4408736965792874,
+ 1.7595052669482953,
+ 0.1783406646677443,
+ -1.1179668897520256,
+ -1.937628904666875,
+ -1.9030085002756878,
+ -1.0504159762888057,
+ 0.1644094433977763,
+ 0.568021964679546,
+ 0.8218163398124523,
+ 1.189343201745297,
+ 1.213112173670321,
+ -0.143950350864963,
+ -1.371762581719404,
+ -2.154816817254975,
+ -2.714345702773482,
+ -1.6329951482981782,
+ 0.846154213141801,
+ 2.0132395638920744,
+ 1.98421878972827,
+ 1.8240904309018475,
+ 0.8774258582786016,
+ -0.45975598684670804,
+ -1.5903955206340497,
+ -2.2007963911908632,
+ -2.7148508917877323,
+ -1.5541059823067382,
+ 1.0644248369359446,
+ 2.278522180494939,
+ 2.028912359859145,
+ 1.6624335426472612,
+ 0.7353637150465275,
+ 0.570774236180705,
+ -0.09359394894797246,
+ -1.7199930297811714,
+ -2.136983990315194,
+ -0.684411248239406,
+ 0.6527394136328732,
+ 1.7138414016810037,
+ 2.0202698858183665,
+ 1.4560426415424,
+ 0.39690063889957844,
+ 0.15969141972676135,
+ -0.107481886016982,
+ -2.8725106866855805,
+ -3.8108235262801746,
+ -0.8575028689153213,
+ 0.47307528982759744,
+ 1.6049891786039023,
+ 2.0305473158006553,
+ 1.5802389865323896,
+ 0.5946886315869229,
+ 0.3863768245393418,
+ -0.22089632343143353,
+ -1.6614457172535695,
+ -2.0119647343742817,
+ -0.5557383579920617,
+ 0.7783672411067075,
+ 1.8675304640876393,
+ 2.476381676011636,
+ 1.6599509917785926,
+ -0.30341764155983075,
+ -1.2676381966473382,
+ -1.7171811897921039,
+ -2.0192216935140688,
+ -1.4524520930339029,
+ -0.24202078137309888,
+ 1.0644364832384416,
+ 2.0291113987865397,
+ 2.62439096578082,
+ 1.6724121000358148,
+ -0.560488271495913,
+ -1.633598674262619,
+ -1.8680177133556353,
+ -1.9615643173826054,
+ -1.399774433037564,
+ -1.4662639802655861,
+ -0.5177945298265272,
+ 1.799662035910532,
+ 2.6015174039141535,
+ 1.2954653044651807,
+ 0.041921728281133316,
+ -1.2345470150540279,
+ -1.9688213108906554,
+ -1.8517234716317588,
+ -1.1121655538463704,
+ -1.197872592105372,
+ -0.1934167845667017,
+ 2.0350888613085347,
+ 2.041490910869499,
+ -0.07848039551716221,
+ -1.0179993950600728,
+ -1.5345278750374658,
+ -2.0238996261107345,
+ -1.6431952419858011,
+ -0.5350242271213295,
+ 0.7958288518690819,
+ 1.875268020155482,
+ 2.5302626508680075,
+ 1.781571356417084,
+ -0.4088935015986027,
+ -1.3145738681571357,
+ -1.7251644488990543,
+ -2.013339255623845,
+ -1.6311167448603672,
+ -1.7603564877863485,
+ -0.6550037410925794,
+ 1.6615967751518954,
+ 2.6572749200319996,
+ 1.5079120873625436,
+ 0.3397286863658345,
+ -0.9793582075128368,
+ -1.8691819618054435,
+ -1.9494416108280566,
+ -1.3768136009810632,
+ -1.4102670751611377,
+ -0.40331699170440527,
+ 1.66555051430939,
+ 2.534968716966024,
+ 1.2754998228331313,
+ 0.021558344030461998,
+ -1.2541942936790158,
+ -1.8833860830704867,
+ -1.5963715031814847,
+ -0.3364344747935428,
+ 0.21420987750607937,
+ 1.149913430307276,
+ 1.937251876053716,
+ 1.8929750397679814,
+ 1.0117547647497775,
+ -0.29862959129353556,
+ -1.5241131001269406,
+ -3.634215264909761,
+ -2.7560167003311213
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.3050708841963945,
+ -2.961017271196053,
+ -0.3239964174488158,
+ 0.9916760845224829,
+ 1.8851871162198286,
+ 1.947810788854555,
+ 1.2175503231533993,
+ 2.099013017802057,
+ 2.7525131215980556,
+ 1.9003000361961995,
+ -0.8738026898835599,
+ -1.8660506882620136,
+ -1.9331269177089323,
+ -1.9048927827694513,
+ -1.2388634103637015,
+ -1.2235849862365828,
+ -0.273558022975607,
+ 1.655510867514485,
+ 2.454987462286765,
+ 1.1475770440870006,
+ -0.14314976623661907,
+ -1.377207981130737,
+ -2.0058893026332005,
+ -1.7679609556552223,
+ -0.9343008173802737,
+ -0.8226199866292588,
+ -0.008416664231780054,
+ 1.5963702281502248,
+ 2.2375735696919805,
+ 0.8684536120415075,
+ -0.4602636995319377,
+ -1.6504275231152252,
+ -2.3012894223857816,
+ -1.7112848744617468,
+ 0.0957170359274857,
+ 0.8705115518643171,
+ 1.5161698783980087,
+ 2.0275237585285835,
+ 1.6673017194070074,
+ 0.5690158521240738,
+ -0.7666376899156864,
+ -1.8607208908870096,
+ -2.7875456197692907,
+ -1.816082912259007,
+ -0.24285124123446772,
+ -0.05055989322245567,
+ 1.834476497821357,
+ 2.9450475992827605,
+ 1.3949087601546954,
+ 0.17461030257821614,
+ -1.1256566318829662,
+ -1.931924643226124,
+ -1.902210313943679,
+ -1.23416633590182,
+ -1.239238564636669,
+ -0.3534136031571751,
+ 1.7767692545721134,
+ 2.4997951415451234,
+ 1.1443597136403774,
+ -0.14578984263376155,
+ -1.4021729292921905,
+ -1.9917166154671553,
+ -1.5077487812632835,
+ -0.23156335326973249,
+ 0.44190614579108123,
+ 1.2866163953491303,
+ 1.9844092731307685,
+ 1.829922385005302,
+ 0.8660618306136232,
+ -0.4637772086169815,
+ -1.6535526572966344,
+ -2.2605112894958452,
+ -1.6034664477149534,
+ 0.03400302798082395,
+ 0.862043563617059,
+ 1.5196448691180262,
+ 2.029204788143046,
+ 1.865637284049814,
+ 2.145078413304913,
+ 1.1076667741735593,
+ -1.85883517720329,
+ -2.7937836283058326,
+ -1.7230546461785996,
+ -0.6807251874753901,
+ 0.6589386680147774,
+ 1.711041089964635,
+ 2.020496987518543,
+ 1.6559003117801638,
+ 2.9804349409116275,
+ 1.9789012916504418,
+ -3.295974253905515,
+ -4.594130446988574,
+ -1.8147172546918788,
+ -0.8537610491984504,
+ 0.4787672590596485,
+ 1.60336363180129,
+ 2.031125452986316,
+ 1.7826500025430074,
+ 2.0200632494935125,
+ 1.0010152261871208,
+ -1.883346550192552,
+ -2.78204445148947,
+ -1.648263277127134,
+ -0.5538910550132594,
+ 0.7385829156578277,
+ 1.2395026950714332,
+ 1.1700982273730443,
+ 0.7824907961487894,
+ 0.5003560868766651,
+ -0.6738786738259956,
+ -1.7186939470129552,
+ -2.0270629772485975,
+ -1.4401952731931906,
+ -0.23800491160260556,
+ 1.0580157482436487,
+ 1.6078067355591288,
+ 1.3447014608484789,
+ 0.5382881491007117,
+ 0.07003888213580822,
+ -0.9688516384516752,
+ -1.8689528928843906,
+ -2.1540990708147074,
+ -2.6116806784307087,
+ -1.4799630875514382,
+ 1.5120369522092598,
+ 2.640086341051227,
+ 1.9865862059621215,
+ 1.292108036595156,
+ 0.038227998281504284,
+ -1.2360470231492295,
+ -1.9704267578686738,
+ -2.0524428619166857,
+ -2.696834994583339,
+ -1.2833537284038141,
+ 1.4915683091258611,
+ 1.6161874098850222,
+ 1.0751202708468357,
+ 1.0058014060557146,
+ -0.37854497376250323,
+ -1.5358180689533003,
+ -2.035881154211169,
+ -1.637339327603576,
+ -0.537464163054273,
+ 0.7554817672856801,
+ 1.2845290470219586,
+ 1.2276135008439606,
+ 0.7737807283693618,
+ 0.4879572807511828,
+ -0.6894211757795727,
+ -1.72668308381869,
+ -2.19819459901595,
+ -2.6701848936010655,
+ -1.470782981616387,
+ 1.2059809174467937,
+ 2.4342270900122718,
+ 2.0261550527871215,
+ 1.5113237797354968,
+ 0.3433393791163909,
+ -0.9796804493561532,
+ -1.8727071316005812,
+ -2.1480446141038603,
+ -2.5530468496119436,
+ -1.3258601532010497,
+ 1.3745057191869205,
+ 2.5963778342741994,
+ 1.9823681320628082,
+ 1.280682060533355,
+ 0.14225548083612197,
+ -0.19503526305174873,
+ -0.6076125592592262,
+ -1.4304798662066178,
+ -1.5650548528098083,
+ -0.1382308048489476,
+ 1.150360049620068,
+ 1.948311743318867,
+ 1.8872056543769833,
+ 1.015094426637854,
+ -0.20762575782566725,
+ -1.0975972110289705,
+ -1.0075179667892198
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.900467645874818,
+ -5.326332165398557,
+ -1.7334865446570489,
+ -0.3143208117730453,
+ 1.2457735604376348,
+ 2.259502669271457,
+ 2.295025760902074,
+ 1.5612330450850878,
+ 2.267838283258761,
+ 1.9121199162132705,
+ 0.3732936649975033,
+ -0.29417048673375684,
+ -1.3906840080137803,
+ -2.312416878083852,
+ -2.471042470314247,
+ -2.889490468293873,
+ -1.431975731772051,
+ 1.7446493727992511,
+ 3.168116900168415,
+ 2.2799108710230165,
+ 1.302332249840908,
+ -0.24014939831403723,
+ -1.6807686235646222,
+ -2.389178224723857,
+ -2.3045323381208997,
+ -2.6242963152752363,
+ -1.1959352642832664,
+ 1.8726587253607665,
+ 3.2272987410950273,
+ 2.1292635082157982,
+ 0.9684712701259381,
+ -0.5299325588507748,
+ -1.0838670787711384,
+ -1.2127370555900026,
+ -1.190157293794024,
+ -1.0441964741651832,
+ 0.480031071416676,
+ 1.8429110312545538,
+ 2.4170599923463607,
+ 1.9243072042648248,
+ 0.6074569629640207,
+ -0.928466310070257,
+ -1.7236556221865358,
+ -1.540057503795846,
+ -1.6711202571172719,
+ -1.498410709346507,
+ 1.7387496255838912,
+ 3.4251877555289294,
+ 2.372203525411965,
+ 1.6023336667385788,
+ 0.13910452495406803,
+ -1.389689492458805,
+ -2.310842701620543,
+ -2.467690652131133,
+ -2.939106758246184,
+ -1.5935503934589554,
+ 1.9201134371272088,
+ 3.2283175543541915,
+ 2.2783988505412793,
+ 1.3011028705472103,
+ -0.12298117746515005,
+ -0.5713169387537479,
+ -0.9153529849419234,
+ -1.3963570830214151,
+ -1.4885359774115636,
+ 0.10484844574450705,
+ 1.5769733450649448,
+ 2.375364434020472,
+ 2.125919534524702,
+ 0.9640749716695296,
+ -0.5346372832496522,
+ -1.0671963063691627,
+ -1.1824510459649813,
+ -1.1557352761260171,
+ -1.0162429831752167,
+ 0.4840830228504788,
+ 1.844770002056371,
+ 2.6039599075732642,
+ 3.3085024124940836,
+ 2.1529820033017106,
+ -1.4642072827784218,
+ -2.7136728216392587,
+ -2.3989425260588244,
+ -2.0045315300780264,
+ -0.7449349378487495,
+ 0.8474828530959789,
+ 2.064959080705863,
+ 2.6040470024266607,
+ 5.321986752686608,
+ 3.7780311732779244,
+ -2.7991938369733194,
+ -4.122703903028119,
+ -2.3700904698394867,
+ -2.118448146419466,
+ -0.9530953846936214,
+ 0.636838698206199,
+ 1.9424125498168627,
+ 2.61172815317561,
+ 3.2886984972324926,
+ 2.1017331706029325,
+ -1.576504374553658,
+ -2.835112583448886,
+ -2.4081079014506823,
+ -1.9140884167388996,
+ -0.7737746894278592,
+ -0.5455904302132548,
+ 0.260858918794673,
+ 1.7925926599440352,
+ 2.375320326847658,
+ 0.7211642117514554,
+ -0.8628166257504084,
+ -2.081199164167905,
+ -2.382947984255649,
+ -1.6581410452366154,
+ -0.3687638275401007,
+ -0.034777851571856234,
+ 0.5690838116058033,
+ 1.6358450230601682,
+ 1.9994795872898348,
+ 0.3490305838862216,
+ -1.2063493553414852,
+ -2.376137833224924,
+ -3.145165733849873,
+ -2.1406979963408235,
+ 0.7324748763321766,
+ 1.8980124660213793,
+ 2.1861559690001022,
+ 2.338504826837538,
+ 1.4838973849137782,
+ -0.02907426900024575,
+ -1.5195142152337886,
+ -2.5176309763921534,
+ -3.609695106889045,
+ -2.1489070159642023,
+ 0.4251553933691881,
+ 0.6479957792682653,
+ 2.07556758168526,
+ 3.0230831761463306,
+ 1.0575407760063211,
+ -0.5196934433131852,
+ -1.8791260848721512,
+ -2.41164431915094,
+ -1.9037380404565993,
+ -0.7514213211048432,
+ -0.5241116311353279,
+ 0.2278587161283961,
+ 1.8972521422934905,
+ 2.4061510074472983,
+ 0.7015973120079149,
+ -0.8843051589676973,
+ -2.1927420685039527,
+ -2.916549625127386,
+ -1.9666678267136848,
+ 0.3252489404093996,
+ 1.4539552894101904,
+ 2.0160312148163073,
+ 2.402468351373968,
+ 1.7552953313665662,
+ 0.33036314844307413,
+ -1.2271583991393133,
+ -2.3912381231015662,
+ -3.100973286991856,
+ -1.9871241411344727,
+ 0.6319859424970213,
+ 1.893461151138552,
+ 2.2012206110600188,
+ 2.3407135618726773,
+ 1.698526261041557,
+ 1.7958470361458514,
+ 0.7052554771626933,
+ -2.256922070451361,
+ -3.1358472096831886,
+ -1.5717135879843964,
+ -0.09304727755017993,
+ 1.4314418767983044,
+ 2.327389563252985,
+ 2.2167241980024466,
+ 1.3613021187545211,
+ 2.1331589241395377,
+ 1.2941840840701813
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.15229549132776,
+ -4.380709230783474,
+ -1.686292872674765,
+ -0.7336388644661658,
+ 0.5387979732312653,
+ 1.5765981045786919,
+ 1.92965014150432,
+ 1.6396270340260577,
+ 1.8384198671334664,
+ 1.231578200983175,
+ 0.7474818432406724,
+ 0.4515513813071433,
+ -0.6712680508970326,
+ -1.6495823292967202,
+ -2.087263662273944,
+ -2.5324008480081317,
+ -1.3905814198337947,
+ 1.1556280746281031,
+ 2.3230599756217662,
+ 1.9239680208475145,
+ 1.424337290097176,
+ 0.30909146054647146,
+ -0.9459016136083892,
+ -1.7858753377901122,
+ -2.036668723030073,
+ -2.4175634748861614,
+ -1.2509978697381843,
+ 1.3139886139141446,
+ 2.473697339044364,
+ 1.879649690426464,
+ 1.203319310642225,
+ 0.11642760833937527,
+ -0.19947953630175708,
+ -0.574982274320294,
+ -1.2873546398131752,
+ -1.449856757139742,
+ -0.11408173076308036,
+ 1.1071616159082702,
+ 1.8561227721630993,
+ 1.7866416916728565,
+ 0.9494456085656895,
+ -0.21593765167886028,
+ -0.6724893146604439,
+ -0.8756233501237553,
+ -1.6539301932874364,
+ -1.5511007523079272,
+ 1.0765408601845523,
+ 2.3930850513255386,
+ 1.9200285261842587,
+ 1.6095762496845811,
+ 0.6044279563243062,
+ -0.6707146290942326,
+ -1.649023729019597,
+ -2.085662147923546,
+ -2.5780694665303114,
+ -1.5275305195034492,
+ 1.2902811359535502,
+ 2.3679534831771,
+ 1.9236936276951113,
+ 1.4241233275227887,
+ 0.4421591581851916,
+ 0.212038349714942,
+ -0.3459611523723519,
+ -1.3703269089106693,
+ -1.741342693378321,
+ -0.4141084838537553,
+ 0.8457791223681229,
+ 1.7461467055873563,
+ 1.8771170041674092,
+ 1.2001393530311875,
+ 0.11276565340333522,
+ -0.19860390714550447,
+ -0.5871334555265679,
+ -1.2261109264412506,
+ -1.4170869776514168,
+ -0.11124707768927333,
+ 1.108426706673735,
+ 1.971374463872746,
+ 2.596548763534377,
+ 1.8070886200640246,
+ -0.7786489174202619,
+ -1.7083860628733376,
+ -1.8144089223505926,
+ -1.8252862006354265,
+ -1.0497777120474028,
+ 0.19196339286144803,
+ 1.3429321349855545,
+ 2.0568994019547726,
+ 4.3682428045562425,
+ 3.156732807014267,
+ -1.5935287404783613,
+ -2.4529839261663335,
+ -1.746807846583501,
+ -1.8742906826123351,
+ -1.1947288682277402,
+ 0.01487803368195387,
+ 1.2100624896107959,
+ 2.0133259838686093,
+ 2.626699086012673,
+ 1.7967761138149299,
+ -0.8864538711708517,
+ -1.8405467768112198,
+ -1.854487584168246,
+ -1.7820838052075443,
+ -1.1124699104567537,
+ -1.077168029702635,
+ -0.20300581251293767,
+ 1.5615286771532273,
+ 2.287680876405782,
+ 1.0309298758111078,
+ -0.2049298750723343,
+ -1.3572913879255817,
+ -1.912851291617774,
+ -1.642290339180279,
+ -0.8177669279077514,
+ -0.6913957837986197,
+ 0.049171574329689605,
+ 1.4965877403589156,
+ 2.0687422086329494,
+ 0.7607488623648966,
+ -0.5040580966546876,
+ -1.614908574390643,
+ -2.235159260673889,
+ -1.64255385307757,
+ 0.1523921462940291,
+ 0.9154384186108745,
+ 1.483869083633136,
+ 1.9265555714288678,
+ 1.5409009848408017,
+ 0.4729899635859285,
+ -0.7912051872887026,
+ -1.8047302126278495,
+ -2.6877217780144083,
+ -1.7312505629214643,
+ -0.1616201826296181,
+ 0.021357091791761647,
+ 1.7391453043716185,
+ 2.761239592652788,
+ 1.2634585807215477,
+ 0.08048296673205432,
+ -1.1417434919791785,
+ -1.8626468656257482,
+ -1.7779184768907124,
+ -1.0959071554437112,
+ -1.072980177268805,
+ -0.26104800822647,
+ 1.6748550007649585,
+ 2.3250701255693293,
+ 1.0167374220395575,
+ -0.22421526566878563,
+ -1.4045819962374815,
+ -1.9715309364172113,
+ -1.4637514822353461,
+ -0.1500829300007572,
+ 0.5335181367216145,
+ 1.2893063125031805,
+ 1.904352570272215,
+ 1.7012896960307509,
+ 0.7455795602980962,
+ -0.5243560436398755,
+ -1.6332141403489975,
+ -2.2126894139704856,
+ -1.5442409043201184,
+ 0.10300986068574415,
+ 0.9284696186984855,
+ 1.501388838826836,
+ 1.9335263431567702,
+ 1.7236526845365736,
+ 1.9631238849930035,
+ 0.9872507373600682,
+ -1.7846184910840013,
+ -2.6517142142200845,
+ -1.5922771360533274,
+ -0.5661808373037153,
+ 0.7078340396706041,
+ 1.6724914907530026,
+ 1.911656569799835,
+ 1.5124546784385775,
+ 2.6845804207932304,
+ 1.7678790021668487
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.781838154988589,
+ -5.32559567445099,
+ -2.2857374323074677,
+ -1.3217053822628084,
+ 0.215522285135847,
+ 1.6617605527885964,
+ 2.383926939678796,
+ 2.314955162631121,
+ 2.7040792974277186,
+ 1.4558571834430962,
+ 1.3071784447499215,
+ 1.176329081387607,
+ -0.38858519715506634,
+ -1.7771429827522338,
+ -2.5871579537409533,
+ -3.219660034260439,
+ -1.883063683375132,
+ 1.1522323459186465,
+ 2.5684693479547107,
+ 2.3831247782546314,
+ 2.0511000076745414,
+ 0.8340684620881278,
+ -0.7550673570528776,
+ -2.009018035562817,
+ -2.6037712848670873,
+ -3.1734831600923563,
+ -1.7627235839862814,
+ 1.3927670764024198,
+ 2.8438398321798855,
+ 2.4012437023587307,
+ 1.8308732772257914,
+ 0.641166359929868,
+ 0.3834872641573628,
+ -0.316826913498455,
+ -1.8441116978354846,
+ -2.2972775705323496,
+ -0.5990628964451741,
+ 0.9763539858992468,
+ 2.1372216556746237,
+ 2.356532116641064,
+ 1.5611841650460483,
+ 0.23296359974316425,
+ -0.14342553146908346,
+ -0.7107492293444556,
+ -2.2635212794357833,
+ -2.173991181538636,
+ 0.98892860925985,
+ 2.5256729451425617,
+ 2.3061015610053377,
+ 2.220655961911422,
+ 1.1781022311184817,
+ -0.38815133371771793,
+ -1.777129511864947,
+ -2.5862566181774618,
+ -3.279578289589862,
+ -2.0532243633574074,
+ 1.3071906231025043,
+ 2.6188674441665207,
+ 2.3836685632846284,
+ 2.0515607423846305,
+ 1.0290401960901272,
+ 0.8746876553459219,
+ -0.052489562002271464,
+ -1.8666192329464173,
+ -2.5847191171490227,
+ -0.956071007098401,
+ 0.6200012980712867,
+ 1.9350574496626067,
+ 2.3983625868095824,
+ 1.8274012878377504,
+ 0.6369023623106607,
+ 0.3729400866701535,
+ -0.36512595717613483,
+ -1.739865071920085,
+ -2.2485919669049834,
+ -0.5960672754746267,
+ 0.977653629808129,
+ 2.242534135622816,
+ 3.0439102805411036,
+ 2.2297405131629855,
+ -0.5615659345350301,
+ -1.6032720936003615,
+ -2.0622547513605074,
+ -2.378780766726944,
+ -1.6716328560613476,
+ -0.22354158965363816,
+ 1.3110565298446974,
+ 2.42381270360743,
+ 5.302396322374569,
+ 3.8823471803277205,
+ -1.2961007233675763,
+ -2.133688895299742,
+ -1.9403836017428926,
+ -2.3979282580488657,
+ -1.824098789664526,
+ -0.4422954960399076,
+ 1.1205063095990717,
+ 2.325706379614874,
+ 3.1225750153647884,
+ 2.2460069311343425,
+ -0.7065954013724441,
+ -1.7931422850551466,
+ -2.140416365869201,
+ -2.3544715062840966,
+ -1.783104379970703,
+ -1.878032926355768,
+ -0.6245379477310503,
+ 1.9772144950063126,
+ 3.0833366742200043,
+ 1.6493552461189669,
+ 0.20745708805941923,
+ -1.3294199851065602,
+ -2.2828879029815514,
+ -2.248497644099991,
+ -1.4595783480694655,
+ -1.4401297750127784,
+ -0.319167485824946,
+ 1.9561450885284004,
+ 2.898753995409092,
+ 1.3533622037971684,
+ -0.1711949095360995,
+ -1.656209970424467,
+ -2.399165346726881,
+ -1.8900082217022678,
+ -0.22187480511222377,
+ 0.5288338820653422,
+ 1.5197160309346767,
+ 2.3450144431440676,
+ 2.16316215048895,
+ 1.0245407720973192,
+ -0.5470382562687212,
+ -1.9534212368470694,
+ -3.0131249942608234,
+ -2.071968522367158,
+ -0.6590309494608161,
+ -0.4368588387059416,
+ 2.1432767908217913,
+ 3.605481057874176,
+ 1.892117788212525,
+ 0.5573323934895886,
+ -1.0227334842345397,
+ -2.1550850546060207,
+ -2.3533404795263486,
+ -1.7646179332144887,
+ -1.885135177556155,
+ -0.7230542696215446,
+ 2.1396350816304888,
+ 3.1396760105746555,
+ 1.6338214532226443,
+ 0.18255383407783088,
+ -1.3466983636952075,
+ -2.010280869586265,
+ -1.6403700866536401,
+ -0.5602320712077701,
+ 0.04942873920730448,
+ 1.233755436401046,
+ 2.2503430238676434,
+ 2.3013094466720814,
+ 1.335087660361485,
+ -0.1987506507920375,
+ -1.6837889806201614,
+ -2.3844026458945415,
+ -1.795816598410014,
+ -0.2518136457346208,
+ 0.5598506499308914,
+ 1.5456555630260214,
+ 2.358151907378374,
+ 2.3909663961676713,
+ 2.826319088631438,
+ 1.5685769751313012,
+ -2.104759435826573,
+ -3.2893462472812627,
+ -2.2067584782604532,
+ -1.1312737594069453,
+ 0.43579180210759855,
+ 1.814577608763735,
+ 2.4040350912454325,
+ 2.194063728442414,
+ 4.105087291472545,
+ 2.7855942756283603
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.0241580453300254,
+ 2.482152329423284,
+ -0.15821817342969546,
+ -1.6150396769810738,
+ -2.381669347414996,
+ -2.097579194836734,
+ -0.9135114380017426,
+ 0.5907262701600071,
+ 1.174734997128892,
+ 1.3069309657611388,
+ 1.4590556609823695,
+ 2.708227435399261,
+ 2.3999390512979306,
+ 2.0129992650869997,
+ 0.9479097919733651,
+ 0.768530824874646,
+ -0.12176714110872788,
+ -1.8484654541279104,
+ -2.5241185372410477,
+ -0.8814446680800393,
+ 0.7026522404481292,
+ 1.9901549247895642,
+ 2.4014683531952064,
+ 1.7775308564446797,
+ 0.5501589494859791,
+ 0.2620567419687947,
+ -0.43401153636493794,
+ -1.7113333419736707,
+ -2.1736707870302285,
+ -0.5161844751545289,
+ 1.0568467637425871,
+ 2.294527559203395,
+ 3.070546006867605,
+ 2.1313825444889267,
+ -0.5891171384585759,
+ -1.7046864430856212,
+ -2.1104116932554615,
+ -2.3735743089493657,
+ -1.6151003708581058,
+ -0.14052883084321632,
+ 1.3846810094575663,
+ 2.4632467220312746,
+ 3.5659074763594636,
+ 2.1673834965500554,
+ -0.25746890960785507,
+ -0.48335366161590404,
+ -2.1209424980243234,
+ -3.1681809176539937,
+ -1.2204861783366139,
+ 0.3348316052214205,
+ 1.7519283304764992,
+ 2.39849566091791,
+ 2.009536549954246,
+ 0.9420644143103628,
+ 0.7736310743879306,
+ -0.06152437089505291,
+ -1.9660467819534444,
+ -2.569298821066363,
+ -0.8771463896660697,
+ 0.7061823035938034,
+ 2.0716252582735364,
+ 2.7944852598573164,
+ 1.9350869721553332,
+ -0.17188346123759118,
+ -1.2233921780121182,
+ -1.903884235075952,
+ -2.4078018420228764,
+ -1.8762656147707835,
+ -0.5138207158088313,
+ 1.0605143624089648,
+ 2.2974903946148464,
+ 3.0151903478318878,
+ 1.979867955422702,
+ -0.48305911554077396,
+ -1.6814640780809542,
+ -2.1141459077197826,
+ -2.375418562684197,
+ -1.8448144051152495,
+ -2.0036558635960238,
+ -0.8685821081636038,
+ 2.2602798795023005,
+ 3.2055184366595513,
+ 1.706067545587165,
+ 0.27926611641760646,
+ -1.2733894069027405,
+ -2.2674504342469555,
+ -2.2800184283171157,
+ -1.5280362333107753,
+ -2.513095858898396,
+ -1.5773060188627324,
+ 3.9319855448817,
+ 5.398086062206195,
+ 1.8552756403274508,
+ 0.4980338922920444,
+ -1.0790501445608305,
+ -2.1835195260237303,
+ -2.3418460778182757,
+ -1.716587167775756,
+ -1.8222575372558887,
+ -0.7266625364387486,
+ 2.255350918139093,
+ 3.1424291708059373,
+ 1.5896950584686247,
+ 0.12150662531516701,
+ -1.4044411610153638,
+ -2.0756970414933957,
+ -1.6696425910872623,
+ -0.5121211011284219,
+ 0.13163018278028446,
+ 1.2870729446109679,
+ 2.273279570734988,
+ 2.283870565628692,
+ 1.2848650018399046,
+ -0.25994070078766107,
+ -1.7355623764419428,
+ -2.441102046824239,
+ -1.8181958889823484,
+ -0.2018743311265613,
+ 0.6411071049159985,
+ 1.5935364262528633,
+ 2.371880277083979,
+ 2.365551055308622,
+ 2.769331020621051,
+ 1.4354145681594985,
+ -2.009874248894661,
+ -3.278088042437472,
+ -2.1835376188511555,
+ -1.0778262193196924,
+ 0.49655912922316425,
+ 1.8558186948246067,
+ 2.40814826136883,
+ 2.1591767998008575,
+ 2.7244130485631253,
+ 1.1354273619410489,
+ -2.093756019427701,
+ -2.1987172683944087,
+ -0.8483474641809897,
+ -0.3897299245763209,
+ 0.9667075779589208,
+ 2.1252688539073605,
+ 2.37266895259503,
+ 1.5718751483229085,
+ 0.10056416488962222,
+ -1.4216110945041198,
+ -2.135669014014326,
+ -1.7688292531954395,
+ -0.4598732877974999,
+ 0.1618709238873192,
+ 1.303235278957196,
+ 2.277317732734886,
+ 2.500646926976255,
+ 2.9430805067182493,
+ 1.4865566393185574,
+ -1.6997800313159603,
+ -3.1330655630400805,
+ -2.3068406624991877,
+ -1.384994352443274,
+ 0.13715452184909505,
+ 1.6029148717001052,
+ 2.3697756983630933,
+ 2.350764556626419,
+ 2.6972880164419224,
+ 1.2600518510135015,
+ -1.8397101025062155,
+ -3.213775925853344,
+ -2.1715396052941505,
+ -1.0597472762336937,
+ 0.41962464826153223,
+ 0.9653537482825053,
+ 1.1810554258056085,
+ 1.3172720199527193,
+ 1.19219640317394,
+ -0.37833402139147865,
+ -1.772031818696636,
+ -2.4076471391683354,
+ -1.9806970814693987,
+ -0.7049699621643107,
+ 0.8220509255321139,
+ 2.4544054230626355,
+ 2.0049766784057392
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.11484187972498,
+ 2.7023963787032517,
+ 0.24377005347001623,
+ -0.9997489827908878,
+ -1.8173469853105522,
+ -1.8338355742087349,
+ -1.0617511444634429,
+ 0.07542515640055299,
+ 0.4510154314142167,
+ 0.7478034359958766,
+ 1.2339340372869692,
+ 1.8412743685031394,
+ 1.858451588476265,
+ 1.788794705941494,
+ 1.1197124553989055,
+ 1.0856439823258968,
+ 0.20724810316834016,
+ -1.56657295960398,
+ -2.2968818479653796,
+ -1.037614810395395,
+ 0.2010402285610996,
+ 1.357881336311836,
+ 1.9176742725552507,
+ 1.6492422108776457,
+ 0.8245429879112903,
+ 0.6991211450416123,
+ -0.04560487193687429,
+ -1.5020189985883114,
+ -2.0781360255166224,
+ -0.7670103422933865,
+ 0.5011312166480026,
+ 1.616339280613389,
+ 2.2381915124456,
+ 1.6460075029123404,
+ -0.1488368712822808,
+ -0.9122658181897485,
+ -1.485161234163655,
+ -1.931857986586937,
+ -1.547944787763963,
+ -0.47866576005200556,
+ 0.789324601403943,
+ 1.8073512322159915,
+ 2.6925774661107664,
+ 1.7353880518009477,
+ 0.16593878819069702,
+ -0.01737286635687807,
+ -1.7447013577583932,
+ -2.7723191231007247,
+ -1.2792549811231877,
+ -0.10122308482938698,
+ 1.1249964220049222,
+ 1.8573017780354062,
+ 1.7861997650351196,
+ 1.1151937049286,
+ 1.0989590759781687,
+ 0.27931889214562405,
+ -1.6791652143840043,
+ -2.3386962197038916,
+ -1.0344834781797037,
+ 0.20361028944094484,
+ 1.3879812559056723,
+ 1.9536579066769546,
+ 1.4571467590555824,
+ 0.1671192051420649,
+ -0.506362002536417,
+ -1.2739549177652183,
+ -1.9010110841429928,
+ -1.7114454807619053,
+ -0.764784278198887,
+ 0.5044276160466507,
+ 1.6192337908048435,
+ 2.198417451285577,
+ 1.540220481738843,
+ -0.08595005974877568,
+ -0.9025946549300412,
+ -1.4884321557145206,
+ -1.9334448736261955,
+ -1.7366246956384668,
+ -1.9825491697901798,
+ -1.0036772505583824,
+ 1.781299741396788,
+ 2.6540979176808115,
+ 1.6041730633836238,
+ 0.5860662857837367,
+ -0.6884956438854253,
+ -1.6622487401778554,
+ -1.914853485496417,
+ -1.5281761874086073,
+ -2.7218885944966247,
+ -1.7962061716128976,
+ 3.1493341254626928,
+ 4.379759070406235,
+ 1.6965734498836924,
+ 0.7528955398665462,
+ -0.5188291213480838,
+ -1.5647417632921958,
+ -1.9309470653171654,
+ -1.6537993268379776,
+ -1.8591995640225265,
+ -0.8999976674962011,
+ 1.8005922904198277,
+ 2.6369510116435144,
+ 1.5294296464658539,
+ 0.464096958311887,
+ -0.7689507737823342,
+ -1.2564867623896352,
+ -1.1511139858891966,
+ -0.6967703757205813,
+ -0.39007584382953797,
+ 0.7022709641382858,
+ 1.6691624759502661,
+ 1.9206469867037386,
+ 1.3237772132066663,
+ 0.16170725793896107,
+ -1.068136389910668,
+ -1.5994664808875751,
+ -1.3107306746763139,
+ -0.4611450605365141,
+ 0.020629263945830402,
+ 0.978632018007923,
+ 1.8029919603375382,
+ 2.033589854005607,
+ 2.453645434708793,
+ 1.3742343321935222,
+ -1.4696616420373803,
+ -2.538158430078496,
+ -1.8756830245849283,
+ -1.1786095075234635,
+ 0.028976158046731332,
+ 1.2271170606478228,
+ 1.8897077386340602,
+ 1.9261748245762038,
+ 2.517311502647377,
+ 1.1784654278956852,
+ -1.463187848330849,
+ -1.5769822572078576,
+ -0.9748249643355624,
+ -0.8631729903586125,
+ 0.4239373775420942,
+ 1.5028983903581927,
+ 1.938529564112592,
+ 1.5184122739026247,
+ 0.44823776829050516,
+ -0.7847363596688206,
+ -1.3002644807022057,
+ -1.209764517364488,
+ -0.6833912341665002,
+ -0.3763624678925532,
+ 0.716834275106316,
+ 1.676133009168734,
+ 2.0856891317875617,
+ 2.522105700226411,
+ 1.3729636947548998,
+ -1.1838694448567886,
+ -2.353608163778033,
+ -1.9226850348292412,
+ -1.393587491347214,
+ -0.26200850764197514,
+ 0.9885501039045466,
+ 1.8057842276076705,
+ 2.0268903638008466,
+ 2.397366640003655,
+ 1.2280109191107755,
+ -1.3375128749340306,
+ -2.4949247715335634,
+ -1.87081100857042,
+ -1.1671553820987763,
+ -0.0647270317479948,
+ 0.27487674230274073,
+ 0.6356956002486441,
+ 1.3198117422087625,
+ 1.4138928482831479,
+ 0.066449775551575,
+ -1.1474699543142628,
+ -1.8717035858571642,
+ -1.7705413278925195,
+ -0.9087996710488208,
+ 0.2677798453086969,
+ 1.1871035634904301,
+ 1.0597131489581135
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.269602790217436,
+ 4.456088019625389,
+ 1.4202436378709076,
+ 0.20823325960931113,
+ -1.09819284484481,
+ -1.9227884671879156,
+ -1.9152036294234718,
+ -1.2651897996957,
+ -1.2828305031651228,
+ -0.4192945296956109,
+ 1.8788031224643378,
+ 2.543252703957207,
+ 1.2178957712732337,
+ 1.9636628829744385,
+ 2.060981986620352,
+ 2.399429204794863,
+ 1.1734930138864923,
+ -1.4917688381962733,
+ -2.6830444471623305,
+ -1.9017810086274343,
+ -1.048860009478846,
+ 0.25926986432788407,
+ 1.4564330667990233,
+ 2.0194552693793906,
+ 1.911730234153962,
+ 2.165668197114198,
+ 0.9697354891220349,
+ -1.5927499171398576,
+ -2.720811958389288,
+ -1.7665797407665804,
+ -0.7633777731640702,
+ 0.506966892525198,
+ 0.9864869449931968,
+ 1.0632556850940105,
+ 0.9601655272684384,
+ 0.8055067031678729,
+ -0.46022081815274035,
+ -1.5888688799266353,
+ -2.0373310689287387,
+ -1.5864052055326543,
+ -0.4563896876170255,
+ 0.8398572319719335,
+ 1.5278689432949657,
+ 1.333475834766243,
+ 1.365885700858692,
+ 1.2168769510135202,
+ -1.495384844431238,
+ -2.9144025144042125,
+ -1.988192051204788,
+ -1.3069303617718533,
+ -0.05992934280371328,
+ 1.2170336375566004,
+ 1.9622611008750517,
+ 2.058044299023083,
+ 2.4403778060007637,
+ 1.3082004777964011,
+ -1.6396775202742224,
+ -2.7339414667765256,
+ -1.9004039232336822,
+ -1.0477384246802752,
+ 0.1654744098732457,
+ 0.5565248408123752,
+ 0.8126667952328873,
+ 1.1426521400849157,
+ 1.1857611227253677,
+ -0.1453548884016195,
+ -1.3712946172222689,
+ -2.0111660593392124,
+ -1.7637569917696931,
+ -0.7596470736788489,
+ 0.5109288001164101,
+ 0.9710623638724446,
+ 1.0336497149764172,
+ 0.9351610484906399,
+ 0.7832413858832544,
+ -0.4636687470961019,
+ -1.5904540651124117,
+ -2.198125123574785,
+ -2.782289770531627,
+ -1.7970284275154025,
+ 1.2740026060605292,
+ 2.3306005765619,
+ 2.025262221482965,
+ 1.6566713165721563,
+ 0.5728711678026631,
+ -0.767194685156057,
+ -1.7685157743872586,
+ -2.1883544873581706,
+ -4.453476751559623,
+ -3.155059302415179,
+ 2.423478679832632,
+ 3.557131434283106,
+ 2.0061774366910003,
+ 1.7571237320597954,
+ 0.7500447738691599,
+ -0.5914105098045136,
+ -1.669686672200035,
+ -2.200527518248442,
+ -2.7603722593447784,
+ -1.7504857781382857,
+ 1.3661731534430492,
+ 2.428479824961485,
+ 2.0291816304246018,
+ 1.577413612729429,
+ 0.5925091785526488,
+ 0.3840533223957805,
+ -0.26633804842111053,
+ -1.489664491199005,
+ -1.9487422228734768,
+ -0.5529033803253871,
+ 0.7799827653774333,
+ 1.7819857299315074,
+ 1.9990257277930346,
+ 1.3551378164931562,
+ 0.2492488503210915,
+ -0.04725358957205688,
+ -0.5243543059796295,
+ -1.3511564838963015,
+ -1.6239192509358813,
+ -0.23743748687794353,
+ 1.0654749983779248,
+ 2.0270030939250074,
+ 2.6717936985897768,
+ 1.8045410780175974,
+ -0.6646402825901997,
+ -1.6622681530001464,
+ -1.8651574103472925,
+ -1.956054640093043,
+ -1.2045333376221516,
+ 0.08156540857676169,
+ 1.3240650540131327,
+ 2.1369179070235664,
+ 3.052304495609469,
+ 1.801969361716218,
+ -0.41458862551971426,
+ -0.6010542105485905,
+ -1.7327546240784186,
+ -2.4974898112395434,
+ -0.8394037833241045,
+ 0.4932903865016381,
+ 1.618614408929528,
+ 2.031535523327061,
+ 1.5682532552129957,
+ 0.5735978217617337,
+ 0.36453178420811294,
+ -0.24229010598567874,
+ -1.574085381897454,
+ -1.9731495878365608,
+ -0.5363141462129075,
+ 0.7977762018695977,
+ 1.8804254435441135,
+ 2.489238694483052,
+ 1.6630538838429687,
+ -0.3202116686237278,
+ -1.2926939757173732,
+ -1.7291233862181383,
+ -2.0181851650043487,
+ -1.4388271180845713,
+ -0.2218001705616587,
+ 1.0825200704980849,
+ 2.038959069922668,
+ 2.6332236622509524,
+ 1.6728342074098064,
+ -0.5767377528410876,
+ -1.656533995359111,
+ -1.8771699455971094,
+ -1.9573089257486085,
+ -1.3833792065503532,
+ -1.4464333369600046,
+ -0.5431177340944799,
+ 1.8964223006850036,
+ 2.6151316596780942,
+ 1.2804050147854678,
+ 0.021437839739124692,
+ -1.2516442705347268,
+ -1.974968520864458,
+ -1.8443496383585967,
+ -1.0936313834506546,
+ -1.677474377205426,
+ -1.0016954473856552
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.956958330788157,
+ 4.224578470542853,
+ 2.014440371325426,
+ 1.4154373769208128,
+ 0.20427055129828203,
+ -1.1005766372098167,
+ -1.9235705500210591,
+ -2.111000184809621,
+ -2.5455709045712958,
+ -1.4814594633933174,
+ 1.6789326873209702,
+ 2.7160973748465693,
+ 1.948721529378975,
+ 1.2148619623407833,
+ 2.0947078565515316,
+ 2.6744420039072887,
+ 1.6581491511150235,
+ -0.6983010549995837,
+ -1.819182836954413,
+ -1.9281473271674592,
+ -1.8998766143096883,
+ -1.0529341329343325,
+ 0.2618367336908995,
+ 1.4553080211176632,
+ 2.174585297283824,
+ 2.7175802492208416,
+ 1.6048236985654318,
+ -0.930106047701266,
+ -2.116379733582895,
+ -2.0039905007775296,
+ -1.7665584110549621,
+ -0.9351907763103636,
+ -0.8386762054294364,
+ -0.07497414636795822,
+ 1.7011381246194366,
+ 2.2788576720001017,
+ 0.8682787041619233,
+ -0.4589266872545612,
+ -1.5935536808882076,
+ -2.0268855118571305,
+ -1.5858751521425114,
+ -0.6078383764675206,
+ -0.46178504748790633,
+ 0.261786684430853,
+ 2.0114391310906825,
+ 1.9707104091277885,
+ -0.5114207714178038,
+ -1.6760131532368077,
+ -1.8053749999919397,
+ -1.9868749874155411,
+ -1.3130309032922534,
+ -0.056864324918984396,
+ 1.2154200105625579,
+ 2.0948853280423947,
+ 2.7257266589706197,
+ 1.7962665083345948,
+ -0.8137622989893734,
+ -1.8555938910850496,
+ -1.9293274766823774,
+ -1.9008575030134667,
+ -1.2359443153540655,
+ -1.2205734602352785,
+ -0.27263881885361296,
+ 1.6520870381588406,
+ 2.4497376292595416,
+ 1.1448753472886035,
+ -0.14329594957315206,
+ -1.3747269111168865,
+ -2.0018724706750834,
+ -1.7641398595587832,
+ -0.9319669150310875,
+ -0.8203945227672548,
+ -0.008034178783015291,
+ 1.5930060569178834,
+ 2.232681565490288,
+ 0.8662864008248412,
+ -0.45975312541033525,
+ -1.6473808500899594,
+ -2.3183892600256564,
+ -1.7968307718041376,
+ 0.1167273318011812,
+ 0.8674514350637732,
+ 1.5133738812553803,
+ 2.023419746430387,
+ 1.6636494656074226,
+ 0.5674353664825011,
+ -0.7654813030487204,
+ -1.8571860133223592,
+ -4.1993071991458635,
+ -3.117895205449051,
+ 0.4807371800180244,
+ 0.9682186636630198,
+ 1.3828116501428194,
+ 2.0040916965689117,
+ 1.7643159829717798,
+ 0.7439272422611346,
+ -0.5895469639948459,
+ -1.7408257553059607,
+ -2.416658995212471,
+ -1.834324789315781,
+ 0.24370341621468955,
+ 1.0430010245851113,
+ 1.6005101449881176,
+ 2.0282218445915876,
+ 1.782177472535501,
+ 1.9751712727223312,
+ 0.8179372944566339,
+ -1.6357860791459438,
+ -2.703916088357547,
+ -1.6465205812530288,
+ -0.5544014423937637,
+ 0.7808206643804783,
+ 1.7745918476380298,
+ 1.9987762134322349,
+ 1.5552015591670358,
+ 1.6543369162082522,
+ 0.5767254600224521,
+ -1.668489179139848,
+ -2.6271455794107355,
+ -1.4394393327105433,
+ -0.24122342224130575,
+ 1.0516679246213614,
+ 1.6315659036170027,
+ 1.4080518042309507,
+ 0.5236162124466167,
+ 0.07916932802448068,
+ -0.9628680544618525,
+ -1.8626919723078614,
+ -1.963461643384837,
+ -1.1965320892677112,
+ 0.07976501965268,
+ 1.344165672750356,
+ 2.173053067960634,
+ 1.6156884270762937,
+ 0.917706201741789,
+ 0.7416988891484416,
+ -1.7249423567251059,
+ -3.0723839015879384,
+ -1.8050082056542804,
+ -0.8344201144646342,
+ 0.49942259489774365,
+ 1.6162028698949529,
+ 2.030682787911522,
+ 1.7689195331416554,
+ 1.9912145794073446,
+ 0.9199532344057489,
+ -1.7856733999370342,
+ -2.7579009887217305,
+ -1.635665440644644,
+ -0.5334002528705042,
+ 0.7601963202208485,
+ 1.2646868247851064,
+ 1.1824743914374491,
+ 0.7669535089380232,
+ 0.4723539977836418,
+ -0.6938227995317738,
+ -1.7298099318751259,
+ -2.0245216433254956,
+ -1.4250854910619275,
+ -0.21690305082041855,
+ 1.0780930290300739,
+ 1.6305745875942887,
+ 1.3549580526135374,
+ 0.5216707051606341,
+ 0.04160189783458259,
+ -0.9874070111391074,
+ -1.877093898314468,
+ -2.1489794721396804,
+ -2.6174687139733854,
+ -1.558810544955804,
+ 1.6143016804779444,
+ 2.6653749112749394,
+ 1.9819410395249888,
+ 1.2755991962077393,
+ 0.016925880570247874,
+ -1.2527403826322083,
+ -1.9753654485348127,
+ -2.0438837203538585,
+ -3.9748249959669453,
+ -2.7530468231747554
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.7209633826270077,
+ 2.70503446133598,
+ 2.096467513548803,
+ 2.3771007776289546,
+ 1.6346484438167352,
+ 0.16749928599798972,
+ -1.3619333520591344,
+ -2.4523958529315197,
+ -3.235211841326812,
+ -2.2574797486428007,
+ 0.9515561757394879,
+ 2.107405508794365,
+ 2.2581894900581037,
+ 2.290258725135991,
+ 1.5562814363885231,
+ 2.195081099042027,
+ 1.7205776488239768,
+ 0.4174111354369439,
+ -0.2900329497024015,
+ -1.38575757245949,
+ -2.3099254606025887,
+ -2.242447282775866,
+ -1.1834699429099627,
+ 0.37732013551920857,
+ 1.8297425566186498,
+ 2.542399342178497,
+ 1.8553005541702776,
+ 0.10467710273924552,
+ -0.7959650749888091,
+ -1.6806786969615142,
+ -2.3903928418972344,
+ -2.3084376863491447,
+ -2.6790412185950476,
+ -1.355735731960509,
+ 2.0442284979646366,
+ 3.2888044878477967,
+ 2.13128169890667,
+ 0.9708920997793016,
+ -0.6123105586946369,
+ -1.9292433733225844,
+ -2.407955808839282,
+ -2.0846342329422454,
+ -2.602376550294,
+ -1.0428032473858078,
+ 2.1531480994714647,
+ 2.248471315745413,
+ 0.7668731861439545,
+ 0.2393749294295444,
+ -1.0599715662554525,
+ -2.1752491319602036,
+ -2.357648148020159,
+ -1.4983142650653256,
+ -0.0004762211478111789,
+ 1.5149701747999154,
+ 2.2429640176203436,
+ 1.8215834630946623,
+ 0.3733822154313025,
+ -0.29904779771672435,
+ -1.3895123231549995,
+ -2.3130211885038663,
+ -2.4732428605434773,
+ -2.8925083560298983,
+ -1.4341163426515267,
+ 1.7446811604858319,
+ 3.169247736463939,
+ 2.2819305707661144,
+ 1.3050480719783506,
+ -0.2379096632610912,
+ -1.6799948170836712,
+ -2.3901932727548947,
+ -2.307015250980293,
+ -2.6276018135787425,
+ -1.1981497182763226,
+ 1.873043355042379,
+ 3.2289655566750475,
+ 2.13154696691308,
+ 0.9711797656861892,
+ -0.527699392203025,
+ -1.098865332360095,
+ -1.2630251673034896,
+ -1.2427640182072714,
+ -1.0651308272419595,
+ 0.477968299730218,
+ 1.8424006284831342,
+ 2.4183227323238063,
+ 1.9267936652948827,
+ 0.610089018895246,
+ -0.9265679632729547,
+ -2.66132465389939,
+ -2.1494709099741214,
+ -1.886037103983529,
+ -2.2830414600445357,
+ 0.2585604168298977,
+ 1.6916894228263246,
+ 2.4015109494940465,
+ 2.051685085508603,
+ 0.8220472552886631,
+ -0.6976197643475878,
+ -1.305542198077611,
+ -1.3855890708021175,
+ -1.113649336026156,
+ -0.8527958993290995,
+ 0.6344944630488909,
+ 1.9420066392813318,
+ 2.614860524418409,
+ 3.210115447908213,
+ 1.8163053593217922,
+ -1.3173080602396194,
+ -2.765480695795733,
+ -2.4095307925818705,
+ -1.9173484766070092,
+ -0.5971644914571294,
+ 0.9906883541082784,
+ 2.1420529528469796,
+ 2.588407888144738,
+ 3.1110237769163493,
+ 1.6659610661196438,
+ -1.5362978602952029,
+ -2.9954722112365992,
+ -2.388020418126998,
+ -1.6654767603129699,
+ -0.3771769067940684,
+ -0.043770820698111675,
+ 0.5360292042111633,
+ 1.728420937030346,
+ 2.0492276887191734,
+ 0.35598565161737517,
+ -1.2026748159547562,
+ -2.249206842340112,
+ -2.3043577752745157,
+ -1.3683749143400583,
+ 0.03747990861105144,
+ 0.5212018165533406,
+ 0.9226496453270897,
+ 2.1703758104577164,
+ 2.0586075473256895,
+ -1.2037674267120448,
+ -2.8181471496643904,
+ -2.3744059496402685,
+ -2.106574181978758,
+ -0.9301147036710512,
+ 0.6607970601471561,
+ 1.9570406164362182,
+ 2.6120099799884215,
+ 3.2621061972077774,
+ 1.977282974796382,
+ -1.4976297824765135,
+ -2.8372936309196928,
+ -2.408461717662789,
+ -1.8989109057749267,
+ -0.7479667684976479,
+ -0.5127140127187135,
+ 0.28117350549095627,
+ 1.7837694833208517,
+ 2.3526807531713714,
+ 0.6974056777150626,
+ -0.88600695534793,
+ -2.093820381970427,
+ -2.379398179271787,
+ -1.6400489981307194,
+ -0.34203532163503186,
+ -0.0014485986253189732,
+ 0.5886963832094175,
+ 1.624196606025534,
+ 1.9732438060492061,
+ 0.32439383241561276,
+ -1.2278515436599908,
+ -2.387272961388763,
+ -3.1807758884930677,
+ -2.2586593126116394,
+ 0.8119593554280061,
+ 1.931392917195007,
+ 2.19649820503808,
+ 2.3325438838725865,
+ 1.4641365190989548,
+ -0.05393855740017303,
+ -1.5387532292763393,
+ -2.524771969231436,
+ -5.424431445033355,
+ -3.940426151900763
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.5484800334626441,
+ 1.0213389599802927,
+ 1.2655199581271999,
+ 1.7617492875932894,
+ 1.5008525440762757,
+ 0.5757491757341876,
+ -0.5907617285399337,
+ -1.5727203217324803,
+ -2.164764049548061,
+ -1.621454530895022,
+ 0.28672271578785274,
+ 1.0120837022677316,
+ 1.4463351266859752,
+ 1.7703283050861756,
+ 1.5056637583418775,
+ 1.6515795390589723,
+ 1.0367762841470964,
+ 0.6656021452267078,
+ 0.40452529483655214,
+ -0.6120338269679024,
+ -1.5146469554032396,
+ -1.768175916651186,
+ -1.2407593953981342,
+ -0.18337320731593126,
+ 0.947832628353549,
+ 1.4313668536996873,
+ 1.1868696229010998,
+ 0.45097691002616147,
+ 0.028035048507053587,
+ -0.8681462044639148,
+ -1.6424713041573393,
+ -1.8761673916167367,
+ -2.2701747746659366,
+ -1.2803021291207364,
+ 1.3329785665838882,
+ 2.3168398878866445,
+ 1.7303574513331168,
+ 1.109740401807119,
+ 0.008582426395719807,
+ -1.0994388502346761,
+ -1.727403718784049,
+ -1.7833237692251998,
+ -2.3379832071556033,
+ -1.1049738630354997,
+ 1.3213560537217746,
+ 1.4286827343308532,
+ 0.9325786610607932,
+ 0.8616253562724209,
+ -0.3437888176875519,
+ -1.3519292940838943,
+ -1.7815031963165757,
+ -1.4247275134224484,
+ -0.45775324314035415,
+ 0.6740120174921405,
+ 1.1392981675114102,
+ 1.0822979138804616,
+ 0.66654858091335,
+ 0.4095239109361977,
+ -0.6152142809296072,
+ -1.5172656993983484,
+ -1.9220751560065552,
+ -2.332519386005435,
+ -1.2815818540796102,
+ 1.0623213310551727,
+ 2.1371554212700015,
+ 1.7716913215644967,
+ 1.3135021392601756,
+ 0.2876093918670039,
+ -0.8682836959398434,
+ -1.6431884804251278,
+ -1.8760075526749143,
+ -2.2274053822248443,
+ -1.153390988192613,
+ 1.2084406260164082,
+ 2.2764581044062484,
+ 1.7313633341454557,
+ 1.1103291452689508,
+ 0.11049831212437375,
+ -0.1883094180618755,
+ -0.542983794025259,
+ -1.243392127694854,
+ -1.3544016444390665,
+ -0.10807787207370217,
+ 1.0169247941840454,
+ 1.708147006785273,
+ 1.6461826048810235,
+ 0.8768447091682663,
+ -0.1955384442747499,
+ -0.9886603027408793,
+ -0.9015103253101183,
+ -2.001213970408235,
+ -2.5678009569706557,
+ -0.2707197885312637,
+ 0.8787356877643269,
+ 1.6540461072003987,
+ 1.7003195855084388,
+ 1.0152254152900155,
+ -0.018345067724134665,
+ -0.3508135850584779,
+ -0.647171642140473,
+ -1.1665484283183423,
+ -1.2155122148933286,
+ 0.010211460755851338,
+ 1.1112548262606217,
+ 1.8532433332447666,
+ 2.3551509518484437,
+ 1.4452936625674533,
+ -0.6559676600260445,
+ -1.651819005760135,
+ -1.7061055364879203,
+ -1.6419706700498782,
+ -0.8701415706247403,
+ 0.28850069857832067,
+ 1.315411649623172,
+ 1.9131098591958275,
+ 2.380222189280401,
+ 1.3909402255942016,
+ -0.8550251699928447,
+ -1.902684073025721,
+ -1.7632572899344319,
+ -1.5167031204852843,
+ -0.7597212946810412,
+ -0.6561117838867525,
+ -0.012412723775839284,
+ 1.4712063004827045,
+ 1.9480581847372944,
+ 0.7058578643914246,
+ -0.4599558639995351,
+ -1.4321196876564823,
+ -1.773902046397391,
+ -1.350720279042258,
+ -0.46955889576799903,
+ -0.31455021530419264,
+ 0.282618334202121,
+ 1.7494933646106787,
+ 1.7078397874090048,
+ -0.5128377296878783,
+ -1.564017789973746,
+ -1.6125756477620194,
+ -1.7192498445440474,
+ -1.0856194239260202,
+ 0.029693520241069648,
+ 1.1248390756412534,
+ 1.855481535242938,
+ 2.399297189499237,
+ 1.5622812047292094,
+ -0.7736142736652736,
+ -1.7008193935035818,
+ -1.7091592382703502,
+ -1.6320771639904235,
+ -1.0079310076114918,
+ -0.9706839737011668,
+ -0.17351886380616305,
+ 1.4330738159154608,
+ 2.0930096286489235,
+ 0.9341586549258636,
+ -0.2043144923823749,
+ -1.2591725549299184,
+ -1.7603367846368219,
+ -1.501311925369383,
+ -0.7357462532184426,
+ -0.6148908589430622,
+ 0.058396045752883784,
+ 1.3713447193236437,
+ 1.8888563300761998,
+ 0.6845992259560181,
+ -0.478836992288337,
+ -1.4955768312446698,
+ -2.0851736466605115,
+ -1.5934903378736693,
+ 0.17630564347101688,
+ 0.8612864156307629,
+ 1.3742943516806598,
+ 1.7713574822490845,
+ 1.4067669858308947,
+ 0.41927541952211406,
+ -0.7419350593020609,
+ -1.6678280287114158,
+ -3.7399843392468206,
+ -2.7673542191891083
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.2340096995692383,
+ -0.012662875390268495,
+ 1.0473278050989447,
+ 1.9164972327374699,
+ 1.9633122903045792,
+ 1.1423403328230308,
+ -0.16433691434829617,
+ -1.431113376253633,
+ -2.0887269507558504,
+ -1.7048750035186588,
+ -0.1662880199278354,
+ 0.4727868848903645,
+ 1.3136770828114885,
+ 2.0091733609336915,
+ 2.0404069483051064,
+ 2.355836976883329,
+ 1.1229591690226008,
+ 1.1311195729281618,
+ 1.1478869065638253,
+ -0.19160801221289087,
+ -1.4222323007903932,
+ -2.0448613182788233,
+ -1.7652582611343262,
+ -0.7285342121931817,
+ 0.5646116268015627,
+ 1.0396123798205943,
+ 1.0761307371128852,
+ 0.9172410052019252,
+ 0.7365821634301263,
+ -0.5131064573821597,
+ -1.6391968767167775,
+ -2.22984844870218,
+ -2.794825730340856,
+ -1.7075766497906277,
+ 1.2420293257046708,
+ 2.3825435370304255,
+ 2.0546470767726652,
+ 1.6530444920669722,
+ 0.5376689091070477,
+ -0.8185021588126221,
+ -1.8137626584990705,
+ -2.2122889031851596,
+ -3.01099180129594,
+ -1.5815159353573993,
+ 1.1238695457163836,
+ 1.2825342959488741,
+ 1.4306628379608286,
+ 1.7191085281404488,
+ 0.13081398692888066,
+ -1.1733460058646885,
+ -1.9770297525534006,
+ -1.908970604521469,
+ -1.0205963106239357,
+ 0.22042658987459102,
+ 0.6417383351929423,
+ 0.8714400293709553,
+ 1.1705158810066432,
+ 1.1666701761536988,
+ -0.1955227028689492,
+ -1.4254511830254064,
+ -2.1926804166446052,
+ -2.753110895112316,
+ -1.644054937743426,
+ 0.8920071994585886,
+ 2.0830077821785773,
+ 2.019265848295306,
+ 1.8245513629865167,
+ 0.8429710093610924,
+ -0.5139931919922835,
+ -1.6409645022699693,
+ -2.2306961377699515,
+ -2.7429906459128355,
+ -1.5579556473374094,
+ 1.1092184002193002,
+ 2.343144722350741,
+ 2.0566661888435838,
+ 1.6541142866601788,
+ 0.6933360482532298,
+ 0.510540904941656,
+ -0.14152891867910994,
+ -1.7209189684504536,
+ -2.1189470938967827,
+ -0.6458233781836954,
+ 0.7079990436132473,
+ 1.762031151950351,
+ 2.0400659678575117,
+ 1.4391211185129416,
+ 0.34850957737657984,
+ 0.04853581536579544,
+ -0.19053537563453274,
+ -2.8664632164468196,
+ -3.7940147222730163,
+ -0.822787196694297,
+ 0.5274019674242083,
+ 1.6555985014018357,
+ 2.055053359799708,
+ 1.568279809957576,
+ 0.5498507222256463,
+ 0.32310323836076604,
+ -0.27012471836634905,
+ -1.6588605278715112,
+ -1.988972408964789,
+ -0.5145357311708828,
+ 0.8340492550761996,
+ 1.919227382350129,
+ 2.5346286636813042,
+ 1.6855570619357123,
+ -0.34756601541652116,
+ -1.342408569072246,
+ -1.7649225317988484,
+ -2.0386702011800444,
+ -1.4351149815699995,
+ -0.19546085233360902,
+ 1.120006276949458,
+ 2.075157901123091,
+ 2.6744632626343177,
+ 1.6916404980017337,
+ -0.6061073526375058,
+ -1.707188218205691,
+ -1.910612727130811,
+ -1.9725594789720924,
+ -1.375120160223743,
+ -1.426363395381884,
+ -0.48161424553896637,
+ 1.8177770745080977,
+ 2.6097055572036116,
+ 1.2729255069581713,
+ -0.007445451103162054,
+ -1.2895765373184371,
+ -2.005204828761453,
+ -1.8539380480064631,
+ -1.0790708872720116,
+ -1.1429631022070117,
+ -0.1509636269396103,
+ 2.064223013627371,
+ 2.0659655340190053,
+ -0.1244708585845992,
+ -1.1019724575944383,
+ -1.586054681100873,
+ -2.0507954053890267,
+ -1.6337750380687082,
+ -0.4933559503931039,
+ 0.8516167659837244,
+ 1.926635082352072,
+ 2.5890710851377934,
+ 1.8101714494253958,
+ -0.4572696140436933,
+ -1.3908888117948837,
+ -1.7726407145940462,
+ -2.0322167013055807,
+ -1.6147437617242781,
+ -1.7308859823546356,
+ -0.6251342583598604,
+ 1.685854198174676,
+ 2.6760400159894333,
+ 1.4930146349926954,
+ 0.29458696819982433,
+ -1.0354123276622047,
+ -1.9114017478570449,
+ -1.9597631625738279,
+ -1.3514040117541157,
+ -1.3702617867799454,
+ -0.3682786754332764,
+ 1.6833011030432872,
+ 2.5420038265666167,
+ 1.2522621203529984,
+ -0.02823868361924151,
+ -1.3141967807645407,
+ -1.9573025418421148,
+ -1.6415028245738914,
+ -0.29435292459272566,
+ 0.2854936577368138,
+ 1.2052356547065275,
+ 1.9756597180168247,
+ 1.897853388236382,
+ 0.980853448608314,
+ -0.3517858625091487,
+ -1.5819570509607748,
+ -3.7482888657521296,
+ -2.8355817877620404
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.3124636783733723,
+ -4.630627714470109,
+ -1.8745092709773095,
+ -0.9432732000744959,
+ 0.3979805455454485,
+ 1.5670432708801898,
+ 2.054592996242061,
+ 1.8587304050175397,
+ 2.126422020626402,
+ 1.0825902218797006,
+ -1.8913685956567072,
+ -2.8248686563598167,
+ -1.7181946616515522,
+ -0.64498149488419,
+ 0.6565625220484455,
+ 1.147905226526698,
+ 1.131122838165482,
+ 1.122929948961392,
+ 2.3557931661095903,
+ 2.0509711720620625,
+ 1.6303252266415766,
+ 0.5056246417792647,
+ -0.8457316929046523,
+ -1.824499540881614,
+ -2.2027481541464793,
+ -2.6470072288926936,
+ -1.4167886093779032,
+ 1.3090709723504255,
+ 2.551032770643413,
+ 2.032228593256137,
+ 1.4156181027401307,
+ 0.31810062775069115,
+ 0.03349892357073134,
+ -0.4586017685183976,
+ -1.469737675154967,
+ -1.7412869515670366,
+ -0.30029885760733144,
+ 1.026044983706941,
+ 1.9154644396481582,
+ 1.9605955334843872,
+ 1.162462159376203,
+ -0.034844330197286576,
+ -0.44770844435689505,
+ -0.7874935558435154,
+ -1.8469822764012012,
+ -1.7521358838822871,
+ 1.013116822495731,
+ 2.379877889367816,
+ 2.018608960628534,
+ 1.8044137079673002,
+ 0.8119555945927593,
+ -0.5422068418371229,
+ -1.654264479505882,
+ -2.224448600462861,
+ -2.7819113108649076,
+ -1.6912664751610893,
+ 1.2618543023070439,
+ 2.4016167207184167,
+ 2.051021367978507,
+ 1.6303802644314946,
+ 0.6592447129940363,
+ 0.464950241370438,
+ -0.22201056765830288,
+ -1.5268516223124853,
+ -2.0232745512004224,
+ -0.614420546933414,
+ 0.7346834912619248,
+ 1.7724863557652515,
+ 2.029624821128887,
+ 1.412409403820632,
+ 0.3143001410215597,
+ 0.029890732429653594,
+ -0.48453472573715056,
+ -1.3933690950979614,
+ -1.7031921673244685,
+ -0.29747664290231635,
+ 1.0272883329627862,
+ 2.0237045446243567,
+ 2.70068766127737,
+ 1.9230146342550927,
+ -0.6727715860229678,
+ -1.6209770652182158,
+ -1.8618997649696198,
+ -1.9917927385954493,
+ -1.2640195400535887,
+ 0.024557445271663886,
+ 1.2940339650118897,
+ 2.1442856766817497,
+ 4.6143082060424945,
+ 3.3542787612707863,
+ -1.4341615958596423,
+ -2.2617459407026876,
+ -1.7749486916680974,
+ -2.027810896839319,
+ -1.407967038522014,
+ -0.16398425467722266,
+ 1.1422549059614135,
+ 2.0806072080291393,
+ 2.748956670455319,
+ 1.923355036120073,
+ -0.7921807362267231,
+ -1.7720758399167866,
+ -1.9157557565085843,
+ -1.9571355260095058,
+ -1.3440508065542618,
+ -1.3605422920571397,
+ -0.36203899231330483,
+ 1.6814017940276236,
+ 2.5361594552406705,
+ 1.2443462859400904,
+ -0.03839073062838592,
+ -1.3095633468596772,
+ -2.005369151934344,
+ -1.8343378810646433,
+ -1.0461001454487053,
+ -0.9648989277709192,
+ -0.09594742225878003,
+ 1.6353478551499343,
+ 2.3365720330488173,
+ 0.9714245778394617,
+ -0.3604370541020487,
+ -1.5871893853585244,
+ -2.2385013501755826,
+ -1.694557096774507,
+ 0.002158223365179181,
+ 0.7396651931707926,
+ 1.4575785389229858,
+ 2.037601485273532,
+ 1.7419680558922512,
+ 0.6754449131784032,
+ -0.6744110134693893,
+ -1.8137787231426346,
+ -2.7417810795243134,
+ -1.8172530541498007,
+ -0.35139693372351943,
+ -0.15808830302749907,
+ 1.8496864665244115,
+ 3.015826000823901,
+ 1.4745513121276776,
+ 0.26443717611136053,
+ -1.0642931982477692,
+ -1.926236416843234,
+ -1.9542684579895824,
+ -1.327181587049386,
+ -1.3608658438842054,
+ -0.4343030832231998,
+ 1.8108139406769312,
+ 2.579928797085568,
+ 1.2300098204023622,
+ -0.05934850404448105,
+ -1.3438578779240882,
+ -1.933136260486092,
+ -1.492959860007029,
+ -0.30610833994742354,
+ 0.3300743224787345,
+ 1.2326212128228127,
+ 1.9877152374470783,
+ 1.8893207754273997,
+ 0.9554531143759087,
+ -0.3830225373362625,
+ -1.6086200992060988,
+ -2.219651433025277,
+ -1.6005226188739385,
+ -0.038292986142901046,
+ 0.7593753789559972,
+ 1.477909473492775,
+ 2.046789211301821,
+ 1.9373444622302654,
+ 2.2467761831701334,
+ 1.1873683547662135,
+ -1.8611376733242861,
+ -2.828625053878603,
+ -1.7889130745500814,
+ -0.7713929195043967,
+ 0.5824261297242367,
+ 1.682551939189642,
+ 2.0519593179044207,
+ 1.7374592891411915,
+ 3.1661737315473695,
+ 2.117142661124556
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.629665281654065,
+ -3.746172872821407,
+ -1.750936408397739,
+ -1.1906306201725139,
+ -0.11516981229492272,
+ 1.0142056212454587,
+ 1.7000257178853142,
+ 1.823659844957248,
+ 2.1868850431101117,
+ 1.2562782536622439,
+ -1.4942225118504477,
+ -2.392362052522862,
+ -1.683719221412532,
+ -0.9697771297043047,
+ 0.07700545517444245,
+ 0.40453059644875833,
+ 0.6655984480546915,
+ 1.03675343007257,
+ 1.6515483534110076,
+ 1.703168025717762,
+ 1.6367634065759393,
+ 0.864903191646938,
+ -0.291454788266631,
+ -1.3148304345870292,
+ -1.9091438287649567,
+ -2.3746375750900652,
+ -1.3867790056408422,
+ 0.8554957405890257,
+ 1.9012449783883785,
+ 1.759615753954809,
+ 1.5112686871407113,
+ 0.7542927153364853,
+ 0.6497401060759407,
+ 0.009118709340461042,
+ -1.4666050038115566,
+ -1.9405319620417474,
+ -0.7008496585042706,
+ 0.4624364820930649,
+ 1.4309961997576,
+ 1.7696567984567737,
+ 1.3452008123777643,
+ 0.46463380245282954,
+ 0.3083072162995763,
+ -0.28523796112584426,
+ -1.7457028779372905,
+ -1.7042609578619765,
+ 0.5015108569586506,
+ 1.54379394160961,
+ 1.6051411979360874,
+ 1.722261029548619,
+ 1.0977995907230957,
+ -0.013702924114579818,
+ -1.1119422145616253,
+ -1.8500386414563685,
+ -2.3952240753997027,
+ -1.5633990454109183,
+ 0.7608453147220994,
+ 1.6844634479934735,
+ 1.7040823517470052,
+ 1.6375253357879798,
+ 1.0222056496750778,
+ 0.9897533934075607,
+ 0.18651384228577175,
+ -1.434869646952458,
+ -2.1021038865026087,
+ -0.9472832119659046,
+ 0.18833998942264324,
+ 1.2472263226662836,
+ 1.7577062919802076,
+ 1.5090651411092224,
+ 0.7514047981200497,
+ 0.6352713053117447,
+ -0.04520876686719575,
+ -1.3751896792593985,
+ -1.9009137812013042,
+ -0.6990146771449841,
+ 0.4632048152949813,
+ 1.4839496771651528,
+ 2.072762847715411,
+ 1.588417716503078,
+ -0.1613026332860921,
+ -0.8403072273534062,
+ -1.3635357178928469,
+ -1.7702964687078104,
+ -1.415898050603848,
+ -0.4345950703594933,
+ 0.7270597749342332,
+ 1.6583921566517217,
+ 3.724970504955981,
+ 2.758099126684727,
+ -0.5225309004271634,
+ -0.9859146539821059,
+ -1.2537156939135434,
+ -1.7592246631471467,
+ -1.5087288698950314,
+ -0.5905787954653892,
+ 0.575404536362557,
+ 1.5619830585215813,
+ 2.1535977751833397,
+ 1.6173411643291833,
+ -0.27180225264151026,
+ -0.9915929785208978,
+ -1.436385380869404,
+ -1.7703188095462774,
+ -1.5157114623886594,
+ -1.6661594720777908,
+ -0.6686108489362611,
+ 1.4387055445702115,
+ 2.3523511766963243,
+ 1.4006143088809855,
+ 0.4230846227399247,
+ -0.7405244830787747,
+ -1.580019743909502,
+ -1.7346053345202799,
+ -1.3092253809050718,
+ -1.3769947056783316,
+ -0.4545360233554721,
+ 1.4590173369789299,
+ 2.2720282209075346,
+ 1.2121109539965538,
+ 0.14762547541400367,
+ -0.9786579879725702,
+ -1.4945500234997786,
+ -1.2646353409243414,
+ -0.40320910203895727,
+ 0.017459881142445257,
+ 0.8964905072529462,
+ 1.6513176962194485,
+ 1.6975981069810249,
+ 0.9935567167822874,
+ -0.13299627190146254,
+ -1.2280590984027968,
+ -1.9651439182964672,
+ -1.437631888594906,
+ -0.7443524617753831,
+ -0.5882363721531082,
+ 1.5252504823795774,
+ 2.687130470904465,
+ 1.5471437074896874,
+ 0.6709577423181898,
+ -0.4976951068704069,
+ -1.4495890500726154,
+ -1.7719111961862022,
+ -1.5037050354238937,
+ -1.678551039397323,
+ -0.7548776086944956,
+ 1.5679182539132355,
+ 2.398587731570439,
+ 1.3907276678737877,
+ 0.4046794011486583,
+ -0.7282729340526455,
+ -1.1794836115609073,
+ -1.0694476112245859,
+ -0.6233952176129729,
+ -0.32892562132322556,
+ 0.6653330871657483,
+ 1.5436432667930595,
+ 1.7602742922931578,
+ 1.1993563024594533,
+ 0.12648927244518163,
+ -1.0012924352289323,
+ -1.491787353663591,
+ -1.213753005744606,
+ -0.4060007784467859,
+ 0.04850015520634169,
+ 0.9175541147387929,
+ 1.6633881565432755,
+ 1.8612607424103151,
+ 2.2550470642051845,
+ 1.3269901204792967,
+ -1.4412174830474496,
+ -2.3536794210737693,
+ -1.7168155885670144,
+ -1.0646549833604315,
+ 0.04874146903815292,
+ 1.143697302682804,
+ 1.7396527896144653,
+ 1.7590827503878848,
+ 3.3983876132412454,
+ 2.3457545589415645
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.5319970132296041,
+ -2.388333697106356,
+ -1.7924389907165454,
+ -1.9919794423420882,
+ -1.3340489935085438,
+ -0.0845419631471807,
+ 1.193022511729364,
+ 2.085336708679279,
+ 2.7398595029539234,
+ 1.8981213001378678,
+ -0.8491195149115448,
+ -1.8339293148092057,
+ -1.9204254303657833,
+ -1.91019176358531,
+ -1.260604886762422,
+ -1.2535774439112048,
+ -0.2951081716856603,
+ 1.6551035106300058,
+ 2.46538806332188,
+ 1.2125399937475596,
+ 1.960075164236456,
+ 1.8660125019567784,
+ 0.9467841053555013,
+ -0.37341908628076464,
+ -1.583758978027963,
+ -2.186472931307419,
+ -1.5779729501332331,
+ -0.041564745160846024,
+ 0.7433884385622096,
+ 1.4550407329493327,
+ 2.0190780719567805,
+ 1.9140096376529283,
+ 2.2098202865615018,
+ 1.1020344342364246,
+ -1.7355404248428037,
+ -2.7708818591510656,
+ -1.767348918370608,
+ -0.7653680115904977,
+ 0.5702605598799376,
+ 1.6575167405919187,
+ 2.0249068119930795,
+ 1.7174394489621512,
+ 2.130172903280797,
+ 0.8328055348187136,
+ -1.8382267355382063,
+ -1.9135728230359292,
+ -0.5976110864665126,
+ -0.11602279591994019,
+ 0.9428478823361706,
+ 1.8549927694643882,
+ 1.971455898939966,
+ 1.2167232385698057,
+ -0.05613590745914863,
+ -1.3249946990910155,
+ -1.9442207754318015,
+ -1.5595558806709602,
+ -0.264707363680609,
+ 0.32860959399920153,
+ 1.2156375997387818,
+ 1.962629810958679,
+ 2.061536410238062,
+ 2.400552254414946,
+ 1.174738612423233,
+ -1.490536535331261,
+ -2.681951792475418,
+ -1.9022811914660112,
+ -1.0508127476940008,
+ 0.25670755133220297,
+ 1.4543867273350766,
+ 2.0188044921125075,
+ 1.9127061185735132,
+ 2.1672884164470725,
+ 0.9712293798097698,
+ -1.5918007881239777,
+ -2.7202483016705648,
+ -1.7674706723806162,
+ -0.7655632903943382,
+ 0.5042014164366061,
+ 0.998218238035352,
+ 1.106984343447963,
+ 1.0015792948304725,
+ 0.8227316891750808,
+ -0.4576729028174815,
+ -1.5869877223659898,
+ -2.0369244081425535,
+ -1.5876627298521955,
+ -0.4587544114569191,
+ 0.8371602404076801,
+ 2.3517408883146005,
+ 1.8866993259768294,
+ 1.5058953340472891,
+ 1.8049169371308535,
+ -0.2738152060239805,
+ -1.4639671620422758,
+ -2.0279826504925897,
+ -1.697068800487384,
+ -0.6386853400685689,
+ 0.6462320316863719,
+ 1.170256781350048,
+ 1.208039356083981,
+ 0.8910528952418,
+ 0.6425144844454361,
+ -0.5885571511023754,
+ -1.6679199261172788,
+ -2.2016904891285423,
+ -2.6929992821375,
+ -1.5097826960727843,
+ 1.1434801292819363,
+ 2.366600889892782,
+ 2.029004335848093,
+ 1.5794026504126575,
+ 0.4475702589129685,
+ -0.8852774956111458,
+ -1.8286479391632184,
+ -2.1697016009059693,
+ -2.597786904399682,
+ -1.3767432160685682,
+ 1.3224480615521204,
+ 2.5493921658061915,
+ 2.0019446524849105,
+ 1.36074915177604,
+ 0.25671938726728827,
+ -0.04040597377576034,
+ -0.4998215235390509,
+ -1.4248839582586994,
+ -1.6641677547055296,
+ -0.24367739427838328,
+ 1.0611451417297344,
+ 1.9138328792485517,
+ 1.9228557288904413,
+ 1.105081848258795,
+ -0.09287805608553881,
+ -0.5233821188105386,
+ -0.8227556495609877,
+ -1.801324798038238,
+ -1.7025746395603387,
+ 1.0556250156396667,
+ 2.4264101316127342,
+ 2.0079109250628626,
+ 1.7457537185290213,
+ 0.7304428608092647,
+ -0.610601262883968,
+ -1.6802169085504561,
+ -2.1987624421818333,
+ -2.7358700542078638,
+ -1.6449660273622977,
+ 1.2965636862186622,
+ 2.4273003395602433,
+ 2.027631373545562,
+ 1.5634849594947544,
+ 0.5707218725369414,
+ 0.3566372350540344,
+ -0.2828241658838668,
+ -1.4810476874550038,
+ -1.9283336043873247,
+ -0.5328397287976173,
+ 0.7983716235778779,
+ 1.7907624180313828,
+ 1.9942897115322937,
+ 1.3390118246198983,
+ 0.22701404498384348,
+ -0.07465445705272387,
+ -0.5400293942427339,
+ -1.3403406754801424,
+ -1.6008457659769693,
+ -0.21693749001483464,
+ 1.0822145319115537,
+ 2.034333342074873,
+ 2.699092890878326,
+ 1.9026739292306656,
+ -0.7329973859501904,
+ -1.6889475123692739,
+ -1.8719816640783784,
+ -1.9493721201102459,
+ -1.1871716086731898,
+ 0.10196309676979179,
+ 1.3387070255624098,
+ 2.1408612750574108,
+ 4.580242185920575,
+ 3.320939889071634
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.6372800048668001,
+ 0.578262629039143,
+ -0.8121758858583421,
+ -1.7899856029891819,
+ -2.0003700329598035,
+ -1.3270418069046994,
+ -0.087616899359279,
+ 1.1956293459292882,
+ 1.8166721391714038,
+ 1.5625907683343865,
+ 0.3963552430779502,
+ -0.12491986870476714,
+ -1.0960517500853588,
+ -1.918555093310993,
+ -2.108598870527317,
+ -2.4821927623817395,
+ -1.2545244371150681,
+ 1.4314825601551033,
+ 2.639856844780757,
+ 1.945166020055901,
+ 1.2147010074374494,
+ 1.9710560165880453,
+ 1.8581781510522002,
+ 0.9471229901989624,
+ -0.29220320549230394,
+ -0.7101380376947076,
+ -0.8967221746496902,
+ -1.0717539094767201,
+ -1.0438754991144783,
+ 0.2618326642193452,
+ 1.456616984087961,
+ 2.1778627396481354,
+ 2.774280309769976,
+ 1.753545621820087,
+ -1.0551772517847116,
+ -2.1558045951830174,
+ -2.005867366883875,
+ -1.768652217574777,
+ -0.7684924325618709,
+ 0.5741803979474093,
+ 1.6610795990311913,
+ 2.2035218146393176,
+ 3.0479578152770546,
+ 1.668403956052422,
+ -0.8916278366752616,
+ -1.0609449395713462,
+ -1.546000482431912,
+ -1.9997105453393516,
+ -0.376634953767428,
+ 0.9460131842463376,
+ 1.866205057244615,
+ 1.9639671715760878,
+ 1.2166703128234113,
+ 0.05260744057361215,
+ -0.2981233003708891,
+ -0.6597076121981819,
+ -1.3177712282319902,
+ -1.4531804449542298,
+ -0.056178961135714627,
+ 1.217894836987728,
+ 2.099239923003346,
+ 2.680106837774531,
+ 1.6614969460780353,
+ -0.7002369331407712,
+ -1.823584682266586,
+ -1.9323211335523482,
+ -1.9035581544081877,
+ -1.0545325884334638,
+ 0.2630295644648757,
+ 1.4587669114523694,
+ 2.179168791259364,
+ 2.723190813825766,
+ 1.60797287767476,
+ -0.9324764332122821,
+ -2.1212930047874847,
+ -2.00821868046854,
+ -1.769868161132611,
+ -0.9364682593235859,
+ -0.8374497346284626,
+ -0.09421647137696956,
+ 1.7929723335782577,
+ 2.3044889305971337,
+ 0.8694690282635076,
+ -0.46051787054673093,
+ -1.5972476331562457,
+ -2.0310560825717645,
+ -1.5887255030845087,
+ -0.6084014670184127,
+ -0.6119322749849943,
+ -0.22034356573277805,
+ 3.0247848015425807,
+ 4.04797360582147,
+ 1.034769421333792,
+ -0.27658257218624044,
+ -1.4738562283927052,
+ -2.0229230186642075,
+ -1.6985827522135017,
+ -0.8007791147844613,
+ -0.657012287162953,
+ 0.033578889253496634,
+ 1.7458658489566419,
+ 2.193738095266133,
+ 0.7455335100721991,
+ -0.5900576297697021,
+ -1.743742311467491,
+ -2.3535073126758457,
+ -1.631407212571977,
+ 0.1401228859176959,
+ 1.0246931997016258,
+ 1.6025262187172358,
+ 2.031357717451745,
+ 1.5866414250569711,
+ 0.43928202074970385,
+ -0.8893324038174228,
+ -1.935152959514913,
+ -2.5408509258900187,
+ -1.6699615018122298,
+ 0.4027679420657354,
+ 1.4117061357849439,
+ 1.7806983727179073,
+ 2.0049781497089776,
+ 1.560913862746708,
+ 1.6914191530682101,
+ 0.6857841211711609,
+ -1.8073395342652414,
+ -2.684701419301241,
+ -1.4434874475421424,
+ -0.2415087921302361,
+ 1.0691891739421016,
+ 1.9108877353555558,
+ 1.925409955101244,
+ 1.2942870444887784,
+ 1.4711675391211345,
+ 0.37206715885257097,
+ -2.0091441802407837,
+ -2.0344910135737226,
+ -0.10221634842682421,
+ 0.7270753673073648,
+ 1.3965863752214491,
+ 2.0064188109215393,
+ 1.754168315540633,
+ 0.7257572452356128,
+ -0.6078726931492574,
+ -1.7531640850604313,
+ -2.407583956220476,
+ -1.7464598772669548,
+ 0.2333706577608541,
+ 1.0675399703263007,
+ 1.611946948052197,
+ 2.0275012492201885,
+ 1.769400321634336,
+ 1.9568447632082155,
+ 0.8038306059539233,
+ -1.6385343518372708,
+ -2.7006048110964587,
+ -1.6347999444412755,
+ -0.5356676078713268,
+ 0.7985198865777451,
+ 1.7834320895614748,
+ 1.9950140553836797,
+ 1.5399544322961078,
+ 1.6333443426631404,
+ 0.561628009532758,
+ -1.6687134649188455,
+ -2.619801246230989,
+ -1.4254294840122783,
+ -0.221961204735651,
+ 1.0697964153845414,
+ 1.6713178328401694,
+ 1.4867917707820597,
+ 0.5199751501943538,
+ 0.06173106028742073,
+ -0.9796092157143951,
+ -1.8697964630988673,
+ -1.9578282985645667,
+ -1.1806170485001413,
+ 0.09904926174492898,
+ 1.3603980743615505,
+ 3.3394514784240577,
+ 2.5602616359927977
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.539066017009828,
+ 3.3055303297605034,
+ 0.5217147566323477,
+ -0.815275126608739,
+ -1.8061853159508245,
+ -2.0014031218812005,
+ -1.3348189581142547,
+ -0.21278297036132132,
+ 0.10680845576673548,
+ 0.5519669882770728,
+ 1.4751124877420714,
+ 1.643776376761754,
+ 0.2038567517191204,
+ -1.0994649133668861,
+ -2.0500256337051495,
+ -2.6444011531135434,
+ -1.676117499102915,
+ 0.5896956128719293,
+ 1.6763371248982668,
+ 1.886475112199152,
+ 1.9549058477256374,
+ 1.2263302446067241,
+ 1.9712276479553725,
+ 1.863652500539315,
+ 1.129771096774607,
+ 1.0775008475988261,
+ 0.17360496907493056,
+ -1.643190259210412,
+ -2.3869825213365634,
+ -1.0483608481309945,
+ 0.2639983966608153,
+ 1.5032912954071014,
+ 2.1441012894815015,
+ 1.6509573313298647,
+ 0.08260173640498532,
+ -0.6088306326517003,
+ -1.3800570784055521,
+ -2.0125165636196902,
+ -1.7803397622884072,
+ -0.760485857355322,
+ 0.5795843093696935,
+ 1.740868107573246,
+ 2.6542678401457223,
+ 1.7872510896781315,
+ 0.4427529816809189,
+ 0.252172683454448,
+ -1.8308145602874213,
+ -3.027311338103965,
+ -1.5381563428291836,
+ -0.37407698579331594,
+ 0.95569440338531,
+ 1.8666822623094472,
+ 1.9690448054000262,
+ 1.4122012817713991,
+ 1.4821513239969202,
+ 0.527735400716488,
+ -1.8060512144788192,
+ -2.6142590338547365,
+ -1.3080873423637003,
+ -0.05465732969873476,
+ 1.2316595570690432,
+ 1.8046726044069294,
+ 1.4332986291688519,
+ 0.3947657720894454,
+ -0.17577592929013672,
+ -1.1290430610893705,
+ -1.9381891703931404,
+ -1.9154022459898439,
+ -1.0458228139066097,
+ 0.267651221051717,
+ 1.5066507270735456,
+ 2.1064594498834857,
+ 1.5533524099681923,
+ 0.1312711889582592,
+ -0.6053774618095543,
+ -1.383630362036689,
+ -2.0142320580379653,
+ -1.978128967855121,
+ -2.3181582079178646,
+ -1.2588636313022343,
+ 1.8137361413741753,
+ 2.7973414647724275,
+ 1.826113680467923,
+ 0.8684050136876019,
+ -0.4671751560752444,
+ -1.5999531151569863,
+ -2.037309230310661,
+ -1.7964681187326468,
+ -3.3217438488433446,
+ -2.2395107100399847,
+ 3.24423484244708,
+ 4.552749919691129,
+ 1.9014996196821334,
+ 1.0341294433217578,
+ -0.28216345267510184,
+ -1.477388573321701,
+ -2.0294737423554854,
+ -1.9073270587557822,
+ -2.207117646390783,
+ -1.159355790528073,
+ 1.850583200937133,
+ 2.804061357080813,
+ 1.7626049883572563,
+ 0.7459635308002361,
+ -0.5321526818215444,
+ -0.9977833968363411,
+ -1.0498101214540623,
+ -0.9270804227880657,
+ -0.7637320442610336,
+ 0.4834211730479633,
+ 1.6087143057555489,
+ 2.0452568708923664,
+ 1.578877892012979,
+ 0.43675049767966473,
+ -0.8651677473693227,
+ -1.3878449586678652,
+ -1.2439149388007193,
+ -0.6937546118178599,
+ -0.3387248409430001,
+ 0.7906766500771986,
+ 1.7866418148402277,
+ 2.196310577479259,
+ 2.6996108091628748,
+ 1.5796362121375476,
+ -1.4115812727302015,
+ -2.550785547633989,
+ -2.0247914908657396,
+ -1.4444255901578629,
+ -0.2394736897691418,
+ 1.0747024891945915,
+ 1.9180890030818192,
+ 2.1279334771179874,
+ 2.8379718519524464,
+ 1.410475928297614,
+ -1.351116187599562,
+ -1.4900500041139486,
+ -1.2199063255325289,
+ -1.2916276322058244,
+ 0.18082749761444133,
+ 1.4025920563082943,
+ 2.0247914404102443,
+ 1.7536339091207962,
+ 0.730295501389673,
+ -0.5499007523907936,
+ -1.0397772051478644,
+ -1.0950402146118012,
+ -0.9340900032999228,
+ -0.7572788034917375,
+ 0.49960706000647703,
+ 1.6186215025102855,
+ 2.2090000094309614,
+ 2.71849320839117,
+ 1.5474819557278237,
+ -1.089846596047646,
+ -2.3107146927357323,
+ -2.0354064937493255,
+ -1.6432044494607667,
+ -0.5415017138960281,
+ 0.8026549656782072,
+ 1.7927851271200976,
+ 2.1931648582301753,
+ 2.642675963867075,
+ 1.4247955289441099,
+ -1.2784779811018756,
+ -2.512286233800051,
+ -2.02323274504836,
+ -1.4348359665426167,
+ -0.3594280560430843,
+ -0.08079825156145917,
+ 0.4282341265870748,
+ 1.5529374879222084,
+ 1.7917339109196015,
+ 0.33830728512039937,
+ -0.9834969439118866,
+ -1.8866828903486157,
+ -1.9583495702899396,
+ -1.187542120554475,
+ -0.009465248521578309,
+ 0.6541251656899596,
+ 0.6927457769003927
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.3257950907965386,
+ 4.581777477206518,
+ 1.6288499629620854,
+ 0.5214429552543598,
+ -0.8149204398940023,
+ -1.794763283186179,
+ -1.9964407483407807,
+ -1.530876953298701,
+ -1.6544435877922867,
+ -0.7046260788873548,
+ 1.9059932349088002,
+ 2.691936397441251,
+ 1.4171120869075104,
+ 0.2065817286294525,
+ -1.0871703206676382,
+ -1.6407424452464887,
+ -1.3595370491506567,
+ -0.5142769767431647,
+ -0.02892142883809397,
+ 0.9956337364532235,
+ 1.8798920800258017,
+ 1.9576292781728744,
+ 1.2151785550052032,
+ 1.9605400822966388,
+ 2.0570348606537348,
+ 2.394397579789649,
+ 1.1700461144729235,
+ -1.4913522445698892,
+ -2.6807109301154406,
+ -1.8994692471041605,
+ -1.048040233981699,
+ 0.16402264397726524,
+ 0.5667167028141137,
+ 0.8199791034759502,
+ 1.1867995129319115,
+ 1.2105354879531232,
+ -0.14402269885964014,
+ -1.3693994050736331,
+ -2.0095280123878103,
+ -1.7630928856414436,
+ -0.7602383608037911,
+ 0.5092680617986195,
+ 1.0889633584945995,
+ 1.118153002260208,
+ 1.5852052092386468,
+ 1.4573613261635803,
+ -1.3088865211599632,
+ -2.7223372484971846,
+ -2.024205195639609,
+ -1.5324912991406756,
+ -0.3785931879170203,
+ 0.9458786606981759,
+ 1.8548837433146874,
+ 2.1523695093754944,
+ 2.6132045337724517,
+ 1.4854018984331712,
+ -1.4990195115200406,
+ -2.6252654461360474,
+ -1.9862180129599187,
+ -1.306290709522152,
+ -0.1813005448885237,
+ 0.13111861017930668,
+ 0.5723910561551561,
+ 1.318404935120114,
+ 1.5536833283754976,
+ 0.17419629498587352,
+ -1.1180940338240126,
+ -1.9336665594994937,
+ -1.8967064926913615,
+ -1.0444914307029065,
+ 0.16796057498119796,
+ 0.5591585624910156,
+ 0.8135105415141487,
+ 1.1397872890459235,
+ 1.1813279239781775,
+ -0.14724550069129347,
+ -1.3708582342284452,
+ -2.1499716733496093,
+ -2.7801832983443613,
+ -1.8712231205755798,
+ 1.0346272959025344,
+ 2.0577020252432896,
+ 1.979771376189964,
+ 1.8176578107189807,
+ 0.8717690026018228,
+ -0.46213157070770616,
+ -1.5884902240704022,
+ -2.1952028461864077,
+ -4.573342696435583,
+ -3.2760312744304785,
+ 2.033410362356895,
+ 3.0508762791743993,
+ 1.9317685021778657,
+ 1.892035082959533,
+ 1.0369583445427355,
+ -0.2789056084007105,
+ -1.4661223069112743,
+ -2.1754444404333495,
+ -2.787684919439427,
+ -1.8439589292458671,
+ 1.139388095777463,
+ 2.1792221496072886,
+ 2.0048497518370194,
+ 1.7563330606310739,
+ 0.9171702016473553,
+ 0.8013946020054977,
+ -0.0037513887890767306,
+ -1.5880795752198502,
+ -2.2198024384537294,
+ -0.8516930609016601,
+ 0.4755098503699062,
+ 1.6029867970216582,
+ 2.0249867267637365,
+ 1.573531564879216,
+ 0.5890683779381302,
+ 0.38014007355297524,
+ -0.2681877708740686,
+ -1.487052689576817,
+ -1.9441498345144619,
+ -0.5505419624811813,
+ 0.779782471336789,
+ 1.8646450925328715,
+ 2.519702728519216,
+ 1.7790490304352262,
+ -0.39227238175596413,
+ -1.291541063780988,
+ -1.7145440541782115,
+ -2.0133110480951335,
+ -1.4457975073629221,
+ -0.23756010230923644,
+ 1.0647997682927457,
+ 2.025171360615368,
+ 2.956553250146825,
+ 1.8294142798249364,
+ -0.09554760399517664,
+ -0.28707783746449217,
+ -1.8023726245541019,
+ -2.745732152085249,
+ -1.117727983773528,
+ 0.1786575158538421,
+ 1.4030866327463036,
+ 2.010668900156221,
+ 1.7497278370573104,
+ 0.8989028488171505,
+ 0.7900358158216658,
+ 0.04096351696787631,
+ -1.6925060536281924,
+ -2.2526800293342486,
+ -0.8358639955824264,
+ 0.4948472286219289,
+ 1.6754529591369396,
+ 2.2830973936550683,
+ 1.610500091511041,
+ -0.059121909205103344,
+ -0.9007409654430415,
+ -1.539328390422564,
+ -2.0288023093769887,
+ -1.6460570840113344,
+ -0.5345796821399468,
+ 0.7993670895727802,
+ 1.880747175593268,
+ 2.4890222666967805,
+ 1.661738415386017,
+ -0.32340887125417517,
+ -1.2964955666258753,
+ -1.7302135071851947,
+ -2.0179327300876375,
+ -1.6337105701314443,
+ -1.8016670493597264,
+ -0.8218415935643435,
+ 1.9035834845411634,
+ 2.735849397358359,
+ 1.5103181468205584,
+ 0.3387801284302013,
+ -0.9832634266713876,
+ -1.8743261207118163,
+ -1.9536062313250693,
+ -1.3785847359184802,
+ -2.326419526634145,
+ -1.4849740117132795
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.6760612711726646,
+ 3.8779627872657683,
+ 2.028211830864815,
+ 1.6258086485942707,
+ 0.5213654948094136,
+ -0.8166401904875539,
+ -1.794650117337057,
+ -2.182138354024609,
+ -2.6930595322167417,
+ -1.6504726444671116,
+ 1.5137568020066323,
+ 2.5749862238375925,
+ 2.013129759768358,
+ 1.4160134615580262,
+ 0.33808489887935916,
+ 0.06340517820812705,
+ -0.4594979224765124,
+ -1.3903498633512703,
+ -1.711706621190436,
+ -0.31862215437508423,
+ 0.9959734218365051,
+ 1.886552107509681,
+ 1.9456312563121838,
+ 1.2127899688074875,
+ 2.0932386221827146,
+ 2.6727016666972907,
+ 1.6568937103647274,
+ -0.6983351410693531,
+ -1.8185924080436742,
+ -1.9277999106252743,
+ -1.9011574017241464,
+ -1.2379918388550741,
+ -1.2453857124039933,
+ -0.35914001060431466,
+ 1.7735563312666764,
+ 2.498041398803293,
+ 1.146753651174992,
+ -0.14049583506110414,
+ -1.3722088405871011,
+ -2.000744566825629,
+ -1.7648834310177581,
+ -0.9343486570235504,
+ -0.9359717397198415,
+ -0.028410372107918656,
+ 2.0384672723306494,
+ 2.0280315706315974,
+ -0.2265119868270898,
+ -1.2471163040011126,
+ -1.6359202591654622,
+ -2.0243166797582584,
+ -1.5420435135302841,
+ -0.37674182138489387,
+ 0.9428138487142145,
+ 1.9615319058491296,
+ 2.612553934916048,
+ 1.797930499474319,
+ -0.5484221907373772,
+ -1.5059595995597779,
+ -1.8052401164183443,
+ -1.9881707495855558,
+ -1.5079013223319528,
+ -1.5890505476206456,
+ -0.5298884039656381,
+ 1.6690041902546326,
+ 2.6040705522022956,
+ 1.394779863113169,
+ 0.17855354538918194,
+ -1.1193256551423805,
+ -1.9260053079085482,
+ -1.8992374094206055,
+ -1.2351741046304865,
+ -1.219783153248387,
+ -0.2722235490697024,
+ 1.651665030085702,
+ 2.44893482118063,
+ 1.145266707952862,
+ -0.14107244297794416,
+ -1.395183241988554,
+ -2.042551719911531,
+ -1.6743682185354882,
+ -0.18533882598569776,
+ 0.4365134049854915,
+ 1.2801798608467745,
+ 1.9787765573035512,
+ 1.8275218613393236,
+ 0.867964213953366,
+ -0.45841889953365267,
+ -1.646498871511991,
+ -3.8486562491771945,
+ -2.896044892471647,
+ -0.04573546289583782,
+ 0.24435056435694108,
+ 1.1301802340659717,
+ 1.9303238473945465,
+ 1.9018865723302387,
+ 1.0326111574518717,
+ -0.27487408303906957,
+ -1.5053987434807368,
+ -2.1646699508450595,
+ -1.7306637525473272,
+ -0.05816711653222333,
+ 0.6198416408223852,
+ 1.3825281611877132,
+ 2.0046137987394475,
+ 1.9631063278508938,
+ 2.2449737765606113,
+ 1.0377747842363843,
+ -1.5614798496162663,
+ -2.711626774406733,
+ -1.8122814084396786,
+ -0.8557556130065748,
+ 0.4731859879623384,
+ 1.5966580135675523,
+ 2.0261807240767538,
+ 1.781146670371307,
+ 1.9740732589852439,
+ 0.8172678458348234,
+ -1.6354680316738224,
+ -2.7031259608472054,
+ -1.6468532630563202,
+ -0.556878442341943,
+ 0.7321471833213067,
+ 1.2560521579992256,
+ 1.2113597888780314,
+ 0.7899310531066548,
+ 0.5163471490198578,
+ -0.6679603833608336,
+ -1.712065658552643,
+ -2.022572255267865,
+ -1.4398338169366751,
+ -0.24190077483537323,
+ 1.0511204753045935,
+ 1.801563775160372,
+ 1.4582748043260163,
+ 1.1937781539767038,
+ 1.03241991536464,
+ -1.6054421035619248,
+ -3.0091775576299296,
+ -1.9274382373206147,
+ -1.115001356499574,
+ 0.1809651668931602,
+ 1.4005431116609568,
+ 2.0098608642588336,
+ 1.9521884215014864,
+ 2.2689624606011765,
+ 1.152654874226905,
+ -1.717793451849557,
+ -2.7694504442165107,
+ -1.8036231105971599,
+ -0.8353688710726087,
+ 0.42371077882691355,
+ 0.8673231015205988,
+ 0.9797801004715969,
+ 0.9909989424777484,
+ 0.8887412287664769,
+ -0.38344121612382775,
+ -1.5386756876761576,
+ -2.0354460700222234,
+ -1.6338038827547106,
+ -0.5323637983841818,
+ 0.760450974522706,
+ 1.2646794157492984,
+ 1.181862892435536,
+ 0.7652843892339075,
+ 0.47032929962078557,
+ -0.694011193910306,
+ -1.7288268537703038,
+ -2.19714568396613,
+ -2.7367535539696757,
+ -1.710743359669418,
+ 1.4326241728135671,
+ 2.4965620046369454,
+ 2.025206095745539,
+ 1.507430939148086,
+ 0.33817024408313595,
+ -0.9838461736570493,
+ -1.8740863863653576,
+ -2.146137646241732,
+ -4.2878559364900735,
+ -3.0105718080677533
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.1353084868783514,
+ 1.9173702770116474,
+ 1.8813848988515134,
+ 2.405895369700456,
+ 1.8958595204948472,
+ 0.5463017853625256,
+ -1.0291852355661173,
+ -2.2778420069718623,
+ -3.0800493815481245,
+ -2.241743606822376,
+ 0.6139246634974089,
+ 1.6742571736794016,
+ 2.0959221274189717,
+ 2.378855701605476,
+ 1.8690124036745572,
+ 1.9954061826008502,
+ 0.7076956462054551,
+ -1.9792123406193833,
+ -3.1283787914090317,
+ -1.7282757528367163,
+ -0.3125318473047261,
+ 1.2433582160050065,
+ 2.253938887156264,
+ 2.288727370523168,
+ 1.5563066717815184,
+ 2.1953579872113127,
+ 1.7207964806228526,
+ 0.4174678247088144,
+ -0.29006304297480096,
+ -1.3861245081395648,
+ -2.3116177998349805,
+ -2.474315578290956,
+ -2.948969758020073,
+ -1.6020237737842233,
+ 1.9170932938182328,
+ 3.228028103173647,
+ 2.2829051618654947,
+ 1.3081757944873251,
+ -0.2339635447398804,
+ -1.6769724246543187,
+ -2.3893922368546487,
+ -2.3087247907935606,
+ -2.9753484146817333,
+ -1.332518737110409,
+ 1.9502874806816894,
+ 2.0773669429189754,
+ 1.0800314821371444,
+ 0.8130967106260376,
+ -0.7042280965106898,
+ -1.9844977440386116,
+ -2.414717432672272,
+ -1.7786623842850933,
+ -0.3820871616848352,
+ 1.1589059799136157,
+ 1.8337722431192243,
+ 1.6202756426695983,
+ 0.7031320791721863,
+ 0.22389182352992193,
+ -1.06044617720263,
+ -2.176690184380204,
+ -2.577514048024916,
+ -3.085047599027922,
+ -1.6339583504262818,
+ 1.573324741781385,
+ 3.0310352665604308,
+ 2.3767124607577665,
+ 1.6097625791788626,
+ 0.14626314730918272,
+ -1.3859684370256988,
+ -2.3121367987386243,
+ -2.473620042746547,
+ -2.8930306426701797,
+ -1.4340862312526181,
+ 1.7457800510289543,
+ 3.170771880517315,
+ 2.2838477964569615,
+ 1.3087808191284203,
+ -0.11561621560356534,
+ -0.5898350163691203,
+ -0.95037503094909,
+ -1.5267427007645742,
+ -1.5493972335590416,
+ 0.09805077444460698,
+ 1.5739343001034996,
+ 2.377408655959244,
+ 2.1321531872562836,
+ 0.9717910732490398,
+ -0.5280115459578223,
+ -1.87289393499433,
+ -1.598580659239366,
+ -2.4122902117626013,
+ -3.0412881964277005,
+ -0.1240418648366126,
+ 1.3992947996855492,
+ 2.325651381361226,
+ 2.2264994729687624,
+ 1.170709085622679,
+ -0.2900216864279643,
+ -0.8067980563605781,
+ -1.0855616236391952,
+ -1.411788416163884,
+ -1.3499086228423889,
+ 0.25837688212402876,
+ 1.6918561082743357,
+ 2.5758566921574184,
+ 3.229001191482129,
+ 1.921042622480795,
+ -1.0660119026893264,
+ -2.4671268059467852,
+ -2.3722440416148984,
+ -2.1249188583391097,
+ -0.9611118844339273,
+ 0.6308194541987755,
+ 1.9409591136469657,
+ 2.615387348770597,
+ 3.2108981026158747,
+ 1.8164942082634068,
+ -1.3183204570890217,
+ -2.7669885851878204,
+ -2.411454777957444,
+ -1.9212263039075168,
+ -0.7823584649118398,
+ -0.5646183951583539,
+ 0.20072600086550418,
+ 1.908054601467246,
+ 2.4322189272843655,
+ 0.729076508684699,
+ -0.8573406178304671,
+ -2.080524359810164,
+ -2.387387799909203,
+ -1.6657524870707014,
+ -0.37698949148068944,
+ -0.05716973939894643,
+ 0.5991170952661434,
+ 2.3142641573127958,
+ 2.235499952963651,
+ -0.9018890734409828,
+ -2.4146187918051716,
+ -2.2803782097770857,
+ -2.2639082278149405,
+ -1.271994400478332,
+ 0.2849896079825138,
+ 1.709109999170629,
+ 2.576599048036063,
+ 3.2863013347344876,
+ 2.0820349557594695,
+ -1.2351725010534977,
+ -2.5362864804038,
+ -2.3743680694483364,
+ -2.109402117041079,
+ -1.1354495853648385,
+ -1.0117295601490224,
+ -0.034042871458035986,
+ 1.8980348144455548,
+ 2.672639633390382,
+ 1.0539932574088453,
+ -0.519360542819784,
+ -1.8750458416182858,
+ -2.4056222905659546,
+ -1.898368497998694,
+ -0.7485158686157551,
+ -0.5135614395034617,
+ 0.28054149398948874,
+ 1.7836981207811617,
+ 2.3528973295625453,
+ 0.6988997717216174,
+ -0.883006711907552,
+ -2.1878359683471302,
+ -2.992210423243367,
+ -2.2188764591494587,
+ 0.4668311696296849,
+ 1.4791358580343357,
+ 2.0115249675981035,
+ 2.3963647453685315,
+ 1.7502189083102075,
+ 0.32855808004572123,
+ -1.2249376588801844,
+ -2.3856894869489205,
+ -5.256351931494387,
+ -3.860491847253006
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.08862143412425555,
+ 0.3910481012825878,
+ 1.052319578750462,
+ 1.7098629075245515,
+ 1.6332613590402578,
+ 0.8344334607564677,
+ -0.3178606378598268,
+ -1.3769686335943356,
+ -1.9588265813785346,
+ -1.542182640183552,
+ 0.0228402566374214,
+ 0.646717516219074,
+ 1.265014876026379,
+ 1.762709520761314,
+ 1.6763167158016203,
+ 1.9016343052726667,
+ 0.8557925181626684,
+ -1.3867244712596003,
+ -2.374712046666676,
+ -1.547834013641767,
+ -0.6763313763526997,
+ 0.4899498542551908,
+ 1.4428922670106887,
+ 1.7691369462960997,
+ 1.5058310270211728,
+ 1.6519951789490261,
+ 1.0370723166661693,
+ 0.6655994723930582,
+ 0.4043726878272087,
+ -0.6121936319441527,
+ -1.5152847514327603,
+ -1.921808257052605,
+ -2.377049985849564,
+ -1.4107606590593542,
+ 1.1825948623144862,
+ 2.1750004349588523,
+ 1.771433976485993,
+ 1.3152037224910615,
+ 0.29054814277289925,
+ -0.8654043378719211,
+ -1.6416096647882272,
+ -1.8762696852198877,
+ -2.5189265116429396,
+ -1.275140161561168,
+ 1.1149495129439255,
+ 1.2415029983788497,
+ 1.127417847237,
+ 1.253853815329389,
+ -0.06401398392620922,
+ -1.1532855268989266,
+ -1.7498933362879345,
+ -1.5745870782425768,
+ -0.7234474457595077,
+ 0.38024458833483615,
+ 0.7865082935843954,
+ 0.8870058637953877,
+ 0.8848479599286295,
+ 0.7826869679249403,
+ -0.3440417246954281,
+ -1.3523439248989702,
+ -1.9198326131885088,
+ -2.3790503208058174,
+ -1.3773292011119795,
+ 0.8902107784930339,
+ 1.9450129376584908,
+ 1.7686305852956896,
+ 1.4861764292959465,
+ 0.5623014081151865,
+ -0.6127186939957605,
+ -1.5165072023640533,
+ -1.9221968209597922,
+ -2.3327037701068023,
+ -1.2814105393728996,
+ 1.063147650217222,
+ 2.138225432936139,
+ 1.7729030897287226,
+ 1.316004776516227,
+ 0.4133933563530225,
+ 0.19937225714852044,
+ -0.2870695903922098,
+ -1.40351278947245,
+ -1.6593550904817296,
+ -0.3870715974537914,
+ 0.7742421043426327,
+ 1.606476440898148,
+ 1.730862721798324,
+ 1.1102285902031606,
+ 0.11000872964877405,
+ -0.35915740912258304,
+ -0.4528896217373452,
+ -2.3105619247424127,
+ -3.026672309240712,
+ -0.5449430600183324,
+ 0.6239529611854685,
+ 1.5285519017961977,
+ 1.7599518850344007,
+ 1.2331154426180113,
+ 0.2865689750165545,
+ 0.03596001016299243,
+ -0.39633763759477003,
+ -1.3404360336732346,
+ -1.5358360226771646,
+ -0.27087309514230756,
+ 0.8783109015536876,
+ 1.746955497228959,
+ 2.2711581071818605,
+ 1.4632550274530425,
+ -0.44113063096618443,
+ -1.3603930596766922,
+ -1.6072269508082515,
+ -1.7284756427933234,
+ -1.1054801822830034,
+ 0.007950310865536346,
+ 1.1105708249558246,
+ 1.8535662105439106,
+ 2.3556202732642286,
+ 1.4453389278837312,
+ -0.6567595786291435,
+ -1.6529468699050789,
+ -1.7073086369946218,
+ -1.6443770589828608,
+ -1.030427756739653,
+ -1.0174439421487527,
+ -0.262099327607401,
+ 1.5439767767901613,
+ 2.152717148960529,
+ 0.9548613642268653,
+ -0.18311075364537183,
+ -1.24660337492809,
+ -1.7619796907065006,
+ -1.5163698294782708,
+ -0.7592804479596629,
+ -0.7330320456470828,
+ 0.02942744705480714,
+ 1.7840006786527223,
+ 1.7687096701589604,
+ -0.2662169590009075,
+ -1.1977671778421366,
+ -1.475251294226357,
+ -1.7650500526649917,
+ -1.2955169601163032,
+ -0.2519711694866714,
+ 0.8929858059251098,
+ 1.7517807055463417,
+ 2.317426638554118,
+ 1.575381052103943,
+ -0.5455490112163469,
+ -1.405372766237931,
+ -1.6125352898462695,
+ -1.7211731640715395,
+ -1.2550932772818253,
+ -1.302624029732514,
+ -0.4015069599384745,
+ 1.4586537927061123,
+ 2.244594713890342,
+ 1.1613391457911193,
+ 0.07778666640621222,
+ -1.0434808232161228,
+ -1.706591540433006,
+ -1.6315437391088843,
+ -1.0084205279061293,
+ -0.9714219111613391,
+ -0.1739816989808551,
+ 1.4332513558272812,
+ 2.0934885724569665,
+ 0.935544020335059,
+ -0.20157094188839442,
+ -1.284469680769138,
+ -1.857624925007775,
+ -1.4974385568571937,
+ -0.08857197734863628,
+ 0.4879413087957498,
+ 1.1790310056935314,
+ 1.7452072409682597,
+ 1.5616533752292034,
+ 0.6872329666376608,
+ -0.4768653099290844,
+ -1.4945833753285267,
+ -3.458811263919822,
+ -2.5924564162143415
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.7638123473351711,
+ -0.7515888430169594,
+ 0.7538075609261281,
+ 1.7762111989934581,
+ 2.0372989753907556,
+ 1.3984900125163078,
+ 0.16263637787977048,
+ -1.1421608291413454,
+ -1.7605765099212078,
+ -1.5412305345787825,
+ -0.46898035147899486,
+ 0.02455373157186086,
+ 1.0465210040036752,
+ 1.9169818303395685,
+ 2.1560672858456345,
+ 2.5515809629021096,
+ 1.3094479612537562,
+ -1.4168252367686538,
+ -2.6472497864303297,
+ -1.9886833239730053,
+ -1.243830949688627,
+ 0.03981692476571152,
+ 1.309440724068665,
+ 2.0076457234088423,
+ 2.0406369702344294,
+ 2.3563871800167866,
+ 1.1233176596555998,
+ 1.1310252620066612,
+ 1.1475751077868659,
+ -0.19156630037050404,
+ -1.4220614161065237,
+ -2.1909972206743666,
+ -2.8044041641628232,
+ -1.7898720730774116,
+ 1.0141365830951228,
+ 2.117417616366939,
+ 2.0177004771249236,
+ 1.8255943660912066,
+ 0.84618755947624,
+ -0.5100193673217343,
+ -1.6379543721255314,
+ -2.2296630217575766,
+ -3.0985104964003867,
+ -1.7156198652000358,
+ 0.835146133502917,
+ 1.0097932140948316,
+ 1.5999632730525166,
+ 2.1080328771445487,
+ 0.45362217206289673,
+ -0.8916799189841667,
+ -1.8580254138626633,
+ -2.005682747827945,
+ -1.2900145843556348,
+ -0.13335245959548808,
+ 0.20125481054885308,
+ 0.606215719101843,
+ 1.3781188807425953,
+ 1.556117490164033,
+ 0.13071608673901633,
+ -1.1728998342851165,
+ -2.099192463603622,
+ -2.693623494739196,
+ -1.6882607747497003,
+ 0.6531261160583403,
+ 1.7712727986665613,
+ 1.9320029041569133,
+ 1.9515280702768256,
+ 1.1303056003374232,
+ -0.1928693807742365,
+ -1.424347041360403,
+ -2.192451904037639,
+ -2.752866567467207,
+ -1.6435891876274145,
+ 0.8928004555716855,
+ 2.083879890833228,
+ 2.0201785711036417,
+ 1.826868859619374,
+ 1.0199585152082935,
+ 0.9442084961920408,
+ 0.16457047925881324,
+ -1.8374607664846403,
+ -2.3889129692826185,
+ -0.9463737572640216,
+ 0.39395008924507285,
+ 1.5697398814982226,
+ 2.054878790887377,
+ 1.65329095943861,
+ 0.6925321128497539,
+ 0.7850528516516967,
+ 0.3436769489364786,
+ -3.1106138797060576,
+ -4.175159016678524,
+ -1.110407969829717,
+ 0.20664054344212643,
+ 1.439766754446897,
+ 2.039858984978783,
+ 1.758920806862475,
+ 0.8847870426554538,
+ 0.7634716676824741,
+ 0.03534303473094392,
+ -1.794125431651508,
+ -2.282356545021067,
+ -0.8229789799591526,
+ 0.526202245160961,
+ 1.715005703583737,
+ 2.331063859157402,
+ 1.6367844341307611,
+ -0.08112089780990046,
+ -0.9448864432314581,
+ -1.5757877628908643,
+ -2.055680953018095,
+ -1.6517445003503644,
+ -0.516499458124958,
+ 0.8332795502570636,
+ 1.919316232772839,
+ 2.534783737290572,
+ 1.6853652135393424,
+ -0.3483890518207729,
+ -1.3434579155290622,
+ -1.7658059669006922,
+ -2.040609841251108,
+ -1.6357288885079004,
+ -1.7911701460308591,
+ -0.7545860317813614,
+ 1.8278283220421356,
+ 2.741675898041843,
+ 1.5123070128456282,
+ 0.3176538165522699,
+ -1.01849438273806,
+ -1.908127487074613,
+ -1.9714558599684946,
+ -1.3742548006507405,
+ -1.5865602188230334,
+ -0.44174778360227823,
+ 2.0191719009195284,
+ 2.051770788120417,
+ 0.17001874195414962,
+ -0.6266287028990203,
+ -1.359224766164392,
+ -2.01954973099444,
+ -1.8123259196088557,
+ -0.8033575443405395,
+ 0.5443213532089447,
+ 1.7251389652795472,
+ 2.3857359228696318,
+ 1.7505311456267232,
+ -0.17075909036669343,
+ -0.9866401532133636,
+ -1.585828464077858,
+ -2.052533409009179,
+ -1.8378014821115733,
+ -2.0485923454789314,
+ -0.866702599374697,
+ 1.6460066647178209,
+ 2.742990630432563,
+ 1.6976738051336844,
+ 0.6133365956551097,
+ -0.7394612136719325,
+ -1.7691466197143222,
+ -2.03134268337508,
+ -1.6153038234384332,
+ -1.731760516136787,
+ -0.6256405049007117,
+ 1.6861787417630274,
+ 2.6767442677488784,
+ 1.4947772335956608,
+ 0.2982157273532828,
+ -1.0120729013001961,
+ -1.6092424024615943,
+ -1.460796807049281,
+ -0.592906009362666,
+ -0.1643400806039785,
+ 0.9262145480222342,
+ 1.8631150831954888,
+ 2.0009233047872517,
+ 1.254573789544653,
+ -0.026232421537665442,
+ -1.3131572584291795,
+ -3.263104713352335,
+ -2.5128973044808336
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.173642207442121,
+ -4.486759773355397,
+ -1.9841981172801715,
+ -1.2201873797372178,
+ 0.07250460058993315,
+ 1.3367515876605693,
+ 2.0178703808522336,
+ 2.030142264114085,
+ 2.3945627217816083,
+ 1.3214659405313898,
+ -1.806887964275232,
+ -2.8137661927620026,
+ -1.875174278243129,
+ -0.945821436940772,
+ 0.31086273818148374,
+ 0.7368240587288248,
+ 0.9172779335137574,
+ 1.075751906594115,
+ 1.0390617510492561,
+ -0.2792946852629795,
+ -1.4843823027281526,
+ -2.054595289940308,
+ -1.7181314988336436,
+ -0.6451818405825703,
+ 0.6566464448809908,
+ 1.1480360628922135,
+ 1.1310962331169467,
+ 1.1226005468830629,
+ 2.3553467945441424,
+ 2.0518402942989784,
+ 1.6338091224852247,
+ 0.6641663905426098,
+ 0.47843136522533314,
+ -0.17207493030329196,
+ -1.6228968480229147,
+ -2.068106222095327,
+ -0.618954845673307,
+ 0.7308355302873066,
+ 1.7709853642806752,
+ 2.0311387873932643,
+ 1.416264456364256,
+ 0.3192331681498936,
+ 0.04645504245291695,
+ -0.5110048608260207,
+ -1.9697317511420294,
+ -1.9031081968486228,
+ 0.7537872477666961,
+ 2.0326605366912576,
+ 1.9358954300715465,
+ 1.9363613879723613,
+ 1.1025510199869828,
+ -0.22098276281132984,
+ -1.440727422102255,
+ -2.1914773518325976,
+ -2.7990954905958563,
+ -1.7785085874347,
+ 1.0364163781813454,
+ 2.141880426532501,
+ 2.0193881712395267,
+ 1.8078914123033574,
+ 0.9889304344899514,
+ 0.8900088973287632,
+ 0.04713300992613903,
+ -1.6224135209708346,
+ -2.293675163000105,
+ -0.9178087995647588,
+ 0.4210325021656357,
+ 1.5836713201436856,
+ 2.049461135117499,
+ 1.6309861494854843,
+ 0.6606200783043676,
+ 0.4666643693483044,
+ -0.22108699617831082,
+ -1.5276769204849514,
+ -2.0249032267300677,
+ -0.6165419514219531,
+ 0.7318707920235884,
+ 1.8510707083481421,
+ 2.5364833825155646,
+ 1.886683772212671,
+ -0.37755515841626985,
+ -1.2332067575902417,
+ -1.701803482912249,
+ -2.043745700510121,
+ -1.5064590235789608,
+ -0.30172494996817506,
+ 1.024750931827036,
+ 2.0229816622666115,
+ 4.465223138999501,
+ 3.28192657128829,
+ -0.9328424000014927,
+ -1.587101574494348,
+ -1.5892763131539671,
+ -2.0498426382325894,
+ -1.629014666097249,
+ -0.486883462670258,
+ 0.8570110934669802,
+ 1.9291235804083644,
+ 2.6131799094529553,
+ 1.907531922869082,
+ -0.5032069454174238,
+ -1.4004145519694495,
+ -1.7749577495244802,
+ -2.030263267719271,
+ -1.6091214440051747,
+ -1.7233038278875954,
+ -0.6199110995403239,
+ 1.6853480534100522,
+ 2.6726664838882486,
+ 1.4878494138282812,
+ 0.28809305567580595,
+ -1.0404421820775314,
+ -1.9127433846934723,
+ -1.9568595269204674,
+ -1.345178475724336,
+ -1.362090007750416,
+ -0.3629411319606619,
+ 1.6819645411044601,
+ 2.5374036270832074,
+ 1.2465371190436096,
+ -0.03463602117137685,
+ -1.3191355957763118,
+ -1.9423214973926246,
+ -1.5657890695124421,
+ -0.28796964072269887,
+ 0.3005847428458876,
+ 1.209802008914556,
+ 1.9763646714281897,
+ 1.8943792146776617,
+ 0.9747206298951905,
+ -0.35791881753251775,
+ -1.5860228109467045,
+ -2.47540568122124,
+ -1.737488460096628,
+ -0.670015799603882,
+ -0.48290748703145864,
+ 1.812880054427394,
+ 3.0992751511181305,
+ 1.6824621115719338,
+ 0.5835774681488263,
+ -0.7709853133227701,
+ -1.7884977868416259,
+ -2.030287831425363,
+ -1.5939527266453835,
+ -1.7323043246508731,
+ -0.7098465106816276,
+ 1.8283015277454289,
+ 2.7228313437679623,
+ 1.475185574302053,
+ 0.26674882114558934,
+ -1.045024038197665,
+ -1.5977188481717404,
+ -1.347465878869549,
+ -0.5657411747699924,
+ -0.10704431622341448,
+ 0.9566188730701383,
+ 1.879809098879311,
+ 1.9966583009380203,
+ 1.2311789077647508,
+ -0.058570113653356896,
+ -1.3436963310488927,
+ -1.9330018992739548,
+ -1.4927219103751432,
+ -0.3057234424512891,
+ 0.3304913718901954,
+ 1.2328082467800952,
+ 1.9885874021471481,
+ 2.0876935691226777,
+ 2.490260979439356,
+ 1.4129254694783755,
+ -1.7571468589134542,
+ -2.7875235709821733,
+ -1.926423377847499,
+ -1.063015310403593,
+ 0.26174378444180724,
+ 1.4744882441287375,
+ 2.045229290549673,
+ 1.936659425451382,
+ 3.667255726667116,
+ 2.5047392923954805
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.3992485736914646,
+ -3.465081469999594,
+ -1.7743521293775493,
+ -1.383569946732873,
+ -0.3951603154569089,
+ 0.7706956113953807,
+ 1.5974528739596585,
+ 1.8980645396838698,
+ 2.330869295350261,
+ 1.4132181203052887,
+ -1.35839368114932,
+ -2.283518093289964,
+ -1.7512951502117684,
+ -1.1928015893530874,
+ -0.22864224280916506,
+ 0.028108832566797953,
+ 0.45092289313400724,
+ 1.1865712102967556,
+ 1.4309753218162735,
+ 0.216910948105776,
+ -0.9246733424584531,
+ -1.6722872556608244,
+ -1.6827239629510413,
+ -0.9695991190275484,
+ 0.07702214495291632,
+ 0.40451389028560353,
+ 0.6654969963554782,
+ 1.036507758285946,
+ 1.6512564836162853,
+ 1.7038623198672707,
+ 1.6395457246653118,
+ 1.025815441526264,
+ 1.0120950160141728,
+ 0.2594266335941378,
+ -1.539834900132416,
+ -2.1460646814219086,
+ -0.9506054627340258,
+ 0.18499260113834462,
+ 1.245293959021582,
+ 1.7580456711389427,
+ 1.5115158575229954,
+ 0.7551684892045999,
+ 0.7278832036133129,
+ -0.03151542914021011,
+ -1.780760782919463,
+ -1.765728925211569,
+ 0.2538395361958916,
+ 1.1760415456141964,
+ 1.4662611540824135,
+ 1.766338271426123,
+ 1.3065564826597935,
+ 0.26790780942983444,
+ -0.8790412577810195,
+ -1.7445303456321282,
+ -2.3110051236622464,
+ -1.574944405233678,
+ 0.5320802426923463,
+ 1.387419892914229,
+ 1.60579289323657,
+ 1.7249761017910645,
+ 1.2682946526415941,
+ 1.320631914780345,
+ 0.4142626220146611,
+ -1.459019659566434,
+ -2.2515725024167477,
+ -1.1734685098076438,
+ -0.0938815437020551,
+ 1.0303491000198213,
+ 1.7022274340590269,
+ 1.637768466621473,
+ 1.0232681724923947,
+ 0.991086910581953,
+ 0.1871577944187673,
+ -1.4357136201960448,
+ -2.103613752408562,
+ -0.9492040504047964,
+ 0.18554696646824242,
+ 1.2714208974573427,
+ 1.8432122194444611,
+ 1.4908119968246263,
+ 0.10366965214890757,
+ -0.4662236315327847,
+ -1.1669655887221906,
+ -1.7423946322808792,
+ -1.5693406823511746,
+ -0.7020559854861559,
+ 0.4613341553936329,
+ 1.483543706508776,
+ 3.4401909519234413,
+ 2.5805122709497264,
+ -0.062268535133661124,
+ -0.3548088161180705,
+ -1.0393198402824777,
+ -1.7056034691390236,
+ -1.6396079801929695,
+ -0.8486155476680259,
+ 0.30199870596333067,
+ 1.3647260189547392,
+ 1.9455699965251927,
+ 1.5364802599837308,
+ -0.007713059338825754,
+ -0.6253347281056094,
+ -1.2536812246975026,
+ -1.7609425350900618,
+ -1.6848184489986164,
+ -1.9145034534669516,
+ -0.8665208145719222,
+ 1.3825429402227287,
+ 2.3743084265305616,
+ 1.5556212151274893,
+ 0.6911982409470331,
+ -0.47438258368267355,
+ -1.4335088227527029,
+ -1.769923196617475,
+ -1.5166436658790443,
+ -1.6674463718698873,
+ -0.6692984783538878,
+ 1.43934419306101,
+ 2.353590377628723,
+ 1.4025843784676761,
+ 0.4265566032909321,
+ -0.7035828857598513,
+ -1.173491340997795,
+ -1.099572671147307,
+ -0.6403381366705646,
+ -0.36742272571436724,
+ 0.6425607596664697,
+ 1.5293153855896446,
+ 1.7605993741663,
+ 1.2142259491283873,
+ 0.14941826049497903,
+ -0.9779069737469234,
+ -1.6506628909002317,
+ -1.3082739876341027,
+ -0.9922727029852902,
+ -0.8480505259783925,
+ 1.4298461355872745,
+ 2.6487945151443144,
+ 1.6649372820015156,
+ 0.9223756898675116,
+ -0.22045391417580157,
+ -1.269013978313661,
+ -1.7649985623277948,
+ -1.6747960841744445,
+ -1.9339718792930705,
+ -0.9646731560996478,
+ 1.5182488392455693,
+ 2.424224405318986,
+ 1.5476062892834297,
+ 0.6732165292314332,
+ -0.43664281828046353,
+ -0.8371503091454239,
+ -0.8978389228700608,
+ -0.8247190797294965,
+ -0.6977356206535995,
+ 0.3962864041910889,
+ 1.3852718701036777,
+ 1.7812442547817677,
+ 1.3908953581911285,
+ 0.40511483847974333,
+ -0.7280176700425384,
+ -1.1791809401286872,
+ -1.0691425693291647,
+ -0.6231557655542299,
+ -0.32874489077866564,
+ 0.6650921605686728,
+ 1.5435416932060348,
+ 1.9156784635988624,
+ 2.3746340646525117,
+ 1.4693454240510055,
+ -1.290516057402273,
+ -2.2201916225199283,
+ -1.7659856587103067,
+ -1.2756820134554736,
+ -0.23384705502682385,
+ 0.9142695319488273,
+ 1.661678484901371,
+ 1.8604741512931229,
+ 3.6959734266749424,
+ 2.5876680274774424
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.0457681259135392,
+ -1.7360509082966449,
+ -1.620084769810793,
+ -2.026335320986866,
+ -1.5611115606223689,
+ -0.40447347645403303,
+ 0.9183945847656015,
+ 1.9486475933244656,
+ 2.6228340963744334,
+ 1.8944420437835336,
+ -0.5686332600059305,
+ -1.477859084008895,
+ -1.7932661720214826,
+ -1.994574296696263,
+ -1.5307517439739018,
+ -1.6203079494047263,
+ -0.5520457785516971,
+ 1.6694480235263074,
+ 2.615960564685421,
+ 1.4157680820301268,
+ 0.20658141984596387,
+ -1.0962986868933402,
+ -1.9181779764564322,
+ -1.9098752343800267,
+ -1.260926086573007,
+ -1.2539743233836185,
+ -0.29514945505727014,
+ 1.655771499757511,
+ 2.4663424249766814,
+ 1.2139501285314545,
+ 1.9628395084246797,
+ 2.0635938921304144,
+ 2.44866194891812,
+ 1.3153372708494435,
+ -1.6370788048202098,
+ -2.7336234249230347,
+ -1.9041691488790051,
+ -1.0537206923777913,
+ 0.2540222650748694,
+ 1.4531155043302209,
+ 2.01948355366947,
+ 1.9151299569975297,
+ 2.4555233262703675,
+ 1.0813777358905505,
+ -1.6764148565349521,
+ -1.7789265080603145,
+ -0.864767651148959,
+ -0.6005155728060196,
+ 0.6475614438368332,
+ 1.7034790065571606,
+ 2.0295557335818635,
+ 1.4593346656644721,
+ 0.26545210146157017,
+ -1.0313695914030758,
+ -1.6089178766672136,
+ -1.3976445426960977,
+ -0.5441739410773228,
+ -0.11080392514458783,
+ 0.944230995713032,
+ 1.8575616738010077,
+ 2.1599053590079396,
+ 2.5750839615374117,
+ 1.3492346533342112,
+ -1.3535401956087625,
+ -2.5789346625523386,
+ -1.9918412668430203,
+ -1.3131375928618054,
+ -0.06602733070734462,
+ 1.2137411687358592,
+ 1.9631718474570121,
+ 2.0628986323350635,
+ 2.402120874932664,
+ 1.1751411960744065,
+ -1.4925053322844934,
+ -2.6849151580101505,
+ -1.904863317360967,
+ -1.0541833565979142,
+ 0.15917772796146812,
+ 0.573921857556871,
+ 0.8488726255015743,
+ 1.2461638838086948,
+ 1.2353436216937297,
+ -0.13954358940860073,
+ -1.3685686182315158,
+ -2.0127109789560285,
+ -1.768898752258274,
+ -0.7661521649713439,
+ 0.5052281286356534,
+ 1.6986298861482418,
+ 1.4315888369585148,
+ 1.9573725992157844,
+ 2.453576293492302,
+ 0.047508274078984225,
+ -1.2247449357614797,
+ -1.9742498510439794,
+ -1.8530957350245416,
+ -0.935994254753777,
+ 0.3057087165632127,
+ 0.7555052507124949,
+ 0.9610863943091991,
+ 1.1470242611831052,
+ 1.0650509733266151,
+ -0.27429426501463244,
+ -1.4653600008235,
+ -2.1799211320594347,
+ -2.722541326226512,
+ -1.6057555002983188,
+ 0.9373015905141441,
+ 2.1269146437874604,
+ 2.007809852577895,
+ 1.762461856608777,
+ 0.7568043838080328,
+ -0.586217843880589,
+ -1.6682777863602298,
+ -2.2034236359537314,
+ -2.6951560271090402,
+ -1.5106691626474926,
+ 1.1452781149763498,
+ 2.3695638751778807,
+ 2.0318293110108994,
+ 1.5833394439303827,
+ 0.5997692138776877,
+ 0.39870003946950955,
+ -0.21953493513303332,
+ -1.583599420175533,
+ -1.9956116036989782,
+ -0.559594661168298,
+ 0.7752346181512789,
+ 1.7812306475731765,
+ 2.002608033737785,
+ 1.3614903585383136,
+ 0.2562391776805429,
+ -0.03819824981995715,
+ -0.5540279346859275,
+ -1.9317928057034688,
+ -1.860380704411955,
+ 0.8063390725992783,
+ 2.098318231823766,
+ 1.9387533962255503,
+ 1.8872814414234513,
+ 1.0224970052351503,
+ -0.29670988005888016,
+ -1.4795910889044546,
+ -2.180010386581783,
+ -2.77010860707438,
+ -1.7416352738523357,
+ 1.0817462622316392,
+ 2.185684158163383,
+ 2.0091250184530645,
+ 1.7489285036344775,
+ 0.9004316856132696,
+ 0.77933761231114,
+ -0.01838075505905464,
+ -1.584911592451586,
+ -2.20795172991986,
+ -0.8362983174192009,
+ 0.4931547003766268,
+ 1.6152875774619806,
+ 2.026488312636302,
+ 1.5636618963340654,
+ 0.5710092733824872,
+ 0.3569116621006639,
+ -0.28284413247342294,
+ -1.481647874328112,
+ -1.9291591648579924,
+ -0.5339123755035355,
+ 0.7968237815242778,
+ 1.8763998029716997,
+ 2.5536886500556815,
+ 1.8787366878963014,
+ -0.4456028933645873,
+ -1.31602887543543,
+ -1.725426790337431,
+ -2.0130565553317727,
+ -1.4344702226225559,
+ -0.22014099820994937,
+ 1.080785307402805,
+ 2.0343728961950607,
+ 4.461631093930022,
+ 3.2703062322436858
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.1439671685687063,
+ 1.2906291965577223,
+ -0.5101368998401049,
+ -1.619976441465554,
+ -2.036150198951126,
+ -1.5533700335423715,
+ -0.4059177173191119,
+ 0.8910427855927928,
+ 1.462370492736604,
+ 1.3738879493538518,
+ 0.6852513282233484,
+ 0.3159074603637048,
+ -0.8146129801558234,
+ -1.7932468456239108,
+ -2.1831714934185604,
+ -2.6282819803052075,
+ -1.4140234084368986,
+ 1.279810145537731,
+ 2.508683463387464,
+ 2.0127845848047254,
+ 1.4173210913806187,
+ 0.20889375320639608,
+ -1.0952513052292139,
+ -1.9198337880069205,
+ -2.1101282168136635,
+ -2.4837779589853106,
+ -1.2546630628717665,
+ 1.4342201953535323,
+ 2.6437537713731496,
+ 1.9478967822457516,
+ 1.217518867468122,
+ 2.0999953707242485,
+ 2.7328818372431023,
+ 1.8019715083792152,
+ -0.8129003453883219,
+ -1.8569582230961472,
+ -1.9330110897002768,
+ -1.905105644470679,
+ -1.0562794792604173,
+ 0.26186026487797454,
+ 1.4586738832682289,
+ 2.180194538182413,
+ 3.0778052753091685,
+ 1.7690769877751726,
+ -0.5928310770410861,
+ -0.7746861283234554,
+ -1.6833494800843858,
+ -2.343631936638214,
+ -0.685570101457963,
+ 0.6531255418199283,
+ 1.715620712897391,
+ 2.022647606362992,
+ 1.4579992177511942,
+ 0.39777274754139225,
+ 0.13828586345561986,
+ -0.38814541224481225,
+ -1.4967704135981912,
+ -1.8076149002966297,
+ -0.37433458223200405,
+ 0.9485180988321241,
+ 1.9693576035300162,
+ 2.57285878503022,
+ 1.6743410046984253,
+ -0.45370805616390997,
+ -1.4852241795277759,
+ -1.8115840720242096,
+ -1.9929539568824668,
+ -1.3163574897266976,
+ -0.05596372159916219,
+ 1.2201382626393469,
+ 2.101873606909378,
+ 2.6830193086070944,
+ 1.6623297016777112,
+ -0.7036726976732031,
+ -1.828816557539826,
+ -1.9357693802653277,
+ -1.906498717745444,
+ -1.238891343262275,
+ -1.2464156357795622,
+ -0.3919743992658399,
+ 1.8741821844477267,
+ 2.526444719900408,
+ 1.1476102199805729,
+ -0.1448303119300824,
+ -1.3798843460052537,
+ -2.008379153602426,
+ -1.7691914268914455,
+ -0.933852255144232,
+ -1.3213222092538655,
+ -0.7389702173908803,
+ 3.2083001699718836,
+ 4.346795619977173,
+ 1.2972359411702568,
+ 0.042305403652996176,
+ -1.23572093237735,
+ -1.9710378004583278,
+ -1.854018253732407,
+ -1.113820003260608,
+ -1.0758368655417436,
+ -0.26589886892031955,
+ 1.8462570627088561,
+ 2.440632500544135,
+ 1.033665226736286,
+ -0.2780687804537418,
+ -1.5120258961835373,
+ -2.111276156056652,
+ -1.553834578268236,
+ -0.12312735981172465,
+ 0.6170150511786795,
+ 1.3881536169640536,
+ 2.0108263831853095,
+ 1.769550938178126,
+ 0.7453418391228375,
+ -0.5925313053568824,
+ -1.747265804574456,
+ -2.357691708495985,
+ -1.633259735135171,
+ 0.14325130459884042,
+ 1.0300095896376567,
+ 1.6064349229555104,
+ 2.0348642019171894,
+ 1.7873236880502454,
+ 2.017386232448366,
+ 0.9403046717226101,
+ -1.78409850630336,
+ -2.764683755791198,
+ -1.6512780754960923,
+ -0.5551601359625773,
+ 0.7844031114128188,
+ 1.780941531128931,
+ 2.005149685705186,
+ 1.5594045591519525,
+ 1.8782529938933559,
+ 0.6497569761446463,
+ -1.9282994583335422,
+ -1.9833711916358137,
+ -0.3884692218069811,
+ 0.24870694244444433,
+ 1.149105939785135,
+ 1.939130419329275,
+ 1.8967588481699598,
+ 1.015776540732066,
+ -0.2960971794516902,
+ -1.5239449483334615,
+ -2.1645923695083553,
+ -1.6561501829171656,
+ -0.051216315750892694,
+ 0.6524981118139043,
+ 1.3996776299933014,
+ 2.0102767659181437,
+ 1.9552563741804998,
+ 2.23187336759405,
+ 1.0254680390113067,
+ -1.5695637723984024,
+ -2.716688972886721,
+ -1.8051175631271332,
+ -0.8377257941651624,
+ 0.4943551349930172,
+ 1.6116152732090254,
+ 2.0285382382405492,
+ 1.769967905992679,
+ 1.9571380422716536,
+ 0.8031480831856191,
+ -1.6409907970147104,
+ -2.7036877668758508,
+ -1.6366159622917773,
+ -0.5372959405306864,
+ 0.7546277181283549,
+ 1.300198761605148,
+ 1.2827855417723302,
+ 0.8025580460030225,
+ 0.5007072280095645,
+ -0.6886937564980051,
+ -1.7254691899593653,
+ -2.022841562933145,
+ -1.4268153148995433,
+ -0.22127715868526998,
+ 1.072515726205768,
+ 2.803663493300297,
+ 2.197706437814144
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.3110268490878907,
+ 4.3722521080705254,
+ 0.9119997846662175,
+ -0.6737239102475829,
+ -1.9753191824062182,
+ -2.407324292952036,
+ -1.8014270526298837,
+ -0.5842843451140103,
+ -0.30036529578102095,
+ 0.3699836544340501,
+ 1.9171869638657584,
+ 2.2755682201889194,
+ 0.547635575885582,
+ -1.0302569866307123,
+ -2.2817459257648256,
+ -3.0017101828676336,
+ -1.9808969052556475,
+ 0.45371421066379264,
+ 1.6409101556397911,
+ 2.0985328198940367,
+ 2.3824716260514203,
+ 1.6410228835016385,
+ 0.17206136259865626,
+ -1.3611290909445337,
+ -2.4556675256377516,
+ -3.154065789705119,
+ -1.9805190043284115,
+ 0.7546925332276615,
+ 2.0617744581839452,
+ 2.261183869173435,
+ 2.2961112109044586,
+ 1.5630631113332258,
+ 2.2467093719497,
+ 1.8239556431649955,
+ 0.37199947912093456,
+ -0.30193357611006216,
+ -1.3920117215152201,
+ -2.314023992751534,
+ -2.242621822042438,
+ -1.1796286327595862,
+ 0.3835071575770362,
+ 1.8362162281897965,
+ 2.876213043417319,
+ 2.031006519153127,
+ 0.8236812200923882,
+ 0.604998104199367,
+ -2.1205678772331673,
+ -3.64316042538007,
+ -2.008129891079277,
+ -0.743250066951677,
+ 0.8467734841265632,
+ 2.066882977088882,
+ 2.3902437789943187,
+ 1.9157075666276777,
+ 2.097387549338352,
+ 0.8827733359968325,
+ -2.14281007191077,
+ -3.2133085858111983,
+ -1.7726433986501586,
+ -0.37380630985455326,
+ 1.166412952835306,
+ 1.8062912782622425,
+ 1.5493144053383334,
+ 0.7111352295254055,
+ 0.2078810559381014,
+ -1.0672700152380854,
+ -2.1793790478109107,
+ -2.3568121212329123,
+ -1.492880304855563,
+ 0.007200811241937771,
+ 1.5223301479849993,
+ 2.207852248885165,
+ 1.7264166652305466,
+ 0.4083284673244827,
+ -0.3056958657266113,
+ -1.3963132121877557,
+ -2.3160671368719177,
+ -2.4714778318721944,
+ -2.9601721820264593,
+ -1.696075035839084,
+ 2.0365757505248583,
+ 3.2542262725879447,
+ 2.280330140080139,
+ 1.299092049099866,
+ -0.24567231912336068,
+ -1.6861341104787142,
+ -2.39207951414775,
+ -2.3039716251081237,
+ -4.386126609359726,
+ -3.0043429058554856,
+ 3.687613014587836,
+ 5.2233040479063995,
+ 2.3426795134650282,
+ 1.480239377429497,
+ -0.023312091562850478,
+ -1.5207479099869603,
+ -2.354393852456433,
+ -2.40811451953825,
+ -2.852846527729276,
+ -1.5915692439537117,
+ 2.0984708300005384,
+ 3.2906090579676914,
+ 2.224040125114684,
+ 1.1636954136544517,
+ -0.2984282938486511,
+ -0.7845597646213717,
+ -1.0329768237274717,
+ -1.3005245800004308,
+ -1.2947174466415519,
+ 0.2665640975957221,
+ 1.6980239038225353,
+ 2.4034454277998702,
+ 2.048354089449194,
+ 0.8149198565365314,
+ -0.7062069391884714,
+ -1.2712445347767787,
+ -1.288594923571333,
+ -1.0463906189095127,
+ -0.8093553980076172,
+ 0.642413897999349,
+ 1.9474989904556674,
+ 2.616058523258581,
+ 3.27135216482613,
+ 1.988838838385504,
+ -1.4838306018144145,
+ -2.8241175883938183,
+ -2.410661361407284,
+ -1.9133141156906484,
+ -0.5896800073975655,
+ 0.9983217492124457,
+ 2.1465590751389074,
+ 2.5881706324974147,
+ 3.5144109581443486,
+ 1.8348797228388725,
+ -1.3516813939815318,
+ -1.5351959314081034,
+ -1.6409065061898152,
+ -1.9425501788026338,
+ -0.09610283544554506,
+ 1.4226512321587492,
+ 2.3343471110809855,
+ 2.216646851275192,
+ 1.1466735549032474,
+ -0.3203478828999708,
+ -0.828618027720087,
+ -1.06648569640729,
+ -1.333002809976451,
+ -1.296429338980105,
+ 0.2863500826761029,
+ 1.7125005825925612,
+ 2.582176178778393,
+ 3.231942402583881,
+ 1.9159301148248509,
+ -1.085902002814106,
+ -2.492344416009592,
+ -2.3781636191881605,
+ -2.112527608722745,
+ -0.9356701698844908,
+ 0.6580979240291773,
+ 1.958335272978639,
+ 2.616910673664346,
+ 3.207862661043227,
+ 1.8078726771096927,
+ -1.3361033713450308,
+ -2.7874799527385643,
+ -2.4129678275888717,
+ -1.905018856818853,
+ -0.7536482386972039,
+ -0.5208750490549342,
+ 0.21962145262321311,
+ 1.9931053705166115,
+ 2.431784712067348,
+ 0.7026514432439858,
+ -0.8838584350694693,
+ -2.0957051701783365,
+ -2.3844936878253833,
+ -1.6461451662279787,
+ -0.34709091075549375,
+ 0.0730932744969741,
+ 0.31719335376189556
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.9127206207181606,
+ 3.9322639299652913,
+ 1.1248104413297295,
+ -0.050523305566831496,
+ -1.2086443913733496,
+ -1.8356967063624818,
+ -1.6693254383798812,
+ -0.9411341012155645,
+ -0.8763208159215458,
+ -0.16151451977096018,
+ 1.6776202796805637,
+ 2.185631126404867,
+ 0.8740747309223839,
+ -0.3445908996302633,
+ -1.4621260605162831,
+ -2.0187374866442225,
+ -1.4574470607499084,
+ -0.03978245587833324,
+ 0.684630318324492,
+ 1.3428048401385713,
+ 1.8636498064099865,
+ 1.5835599514424994,
+ 0.6026473338670193,
+ -0.6308644590785953,
+ -1.6671571892285402,
+ -2.22981382611233,
+ -1.519345414160068,
+ 0.20528293012856935,
+ 1.0589065436561824,
+ 1.5332120367135977,
+ 1.871691466702076,
+ 1.587758180061892,
+ 1.772355659459068,
+ 1.1465736512593123,
+ 0.6951816116044875,
+ 0.4193629769480119,
+ -0.6570521275354196,
+ -1.6035548603513228,
+ -1.8628427244087409,
+ -1.2993495504944987,
+ -0.18092820281950425,
+ 1.0111958384861568,
+ 1.7157067079879036,
+ 1.3695308662477916,
+ 1.0675096243956683,
+ 0.9166780333818841,
+ -1.4939161887360426,
+ -2.780888345128356,
+ -1.7697786960057336,
+ -1.0094580549124834,
+ 0.18874222143006486,
+ 1.3068342122523697,
+ 1.8556381958550632,
+ 1.7884728414552107,
+ 2.0742434881251635,
+ 1.047475912644629,
+ -1.5894062598825294,
+ -2.554191847770252,
+ -1.6524610667266773,
+ -0.7500176007760511,
+ 0.4139242547313696,
+ 0.827366760885239,
+ 0.917766916969096,
+ 0.8989326953486082,
+ 0.7914055201247668,
+ -0.3749825202061638,
+ -1.432592810690187,
+ -1.8770710715048338,
+ -1.4930036347056714,
+ -0.4695529900950877,
+ 0.7232946840106524,
+ 1.1917905142509464,
+ 1.102172782388661,
+ 0.6893570194294218,
+ 0.4045466105908447,
+ -0.6603389627482973,
+ -1.6050839997047792,
+ -2.023702361871114,
+ -2.516656866448345,
+ -1.5678704027015207,
+ 1.3341048895910932,
+ 2.3147759056802966,
+ 1.8654131117590302,
+ 1.3748347917329553,
+ 0.290000851200306,
+ -0.926052198329115,
+ -1.735879276245987,
+ -1.9729447320022697,
+ -3.934347290330964,
+ -2.759800457994409,
+ 2.4880622017346012,
+ 3.6014286367517516,
+ 1.8702038367816505,
+ 1.4855140973104617,
+ 0.4592944942355497,
+ -0.7728229539761424,
+ -1.6644858628989445,
+ -2.008286595056047,
+ -2.474416415926164,
+ -1.5110988329430153,
+ 1.4078253120530437,
+ 2.385232470794895,
+ 1.8528263570964603,
+ 1.2895165831202662,
+ 0.2881117766872491,
+ 0.029019980663534884,
+ -0.4409190109445744,
+ -1.2715642566172376,
+ -1.5549371163607622,
+ -0.2720331025617335,
+ 0.9371607549125441,
+ 1.747272640690571,
+ 1.7872348508568896,
+ 1.0585018806129682,
+ -0.03373707148604084,
+ -0.3685297789360312,
+ -0.6692619904449308,
+ -1.1177931420205165,
+ -1.2238323963633426,
+ 0.02404431893065263,
+ 1.180917013389301,
+ 1.9560720944360601,
+ 2.5311069332214564,
+ 1.6506471423321403,
+ -0.8084223609048441,
+ -1.7852201884854926,
+ -1.8008185150235538,
+ -1.7245333092412864,
+ -0.9049315472283134,
+ 0.31699429989332967,
+ 1.3945234707788423,
+ 2.0168497010760795,
+ 2.832123928769849,
+ 1.6079723839240951,
+ -0.6179690506423939,
+ -0.7826639792184901,
+ -1.5132589262115688,
+ -2.0683709845588374,
+ -0.5466175827146434,
+ 0.6857515132972857,
+ 1.6274392293329714,
+ 1.85231495446747,
+ 1.27928971040838,
+ 0.2705275224277712,
+ 0.005149750999987828,
+ -0.43493403097827743,
+ -1.332625816425946,
+ -1.5705420256937404,
+ -0.25645949933539663,
+ 0.9520653278787579,
+ 1.8560577107661145,
+ 2.407288957910489,
+ 1.5433796281486798,
+ -0.48847668633249186,
+ -1.4673154650396891,
+ -1.7077175709590517,
+ -1.8162480315629705,
+ -1.1426616417871074,
+ 0.03793490818852129,
+ 1.1943848628652423,
+ 1.9637196202239002,
+ 2.4902281323744604,
+ 1.520618563189592,
+ -0.7144487901153785,
+ -1.7718803039948416,
+ -1.8088894129746953,
+ -1.7230979246953089,
+ -1.0596789670871212,
+ -1.0366986871388335,
+ -0.2784869229377369,
+ 1.7088115352325153,
+ 2.2719252646074066,
+ 0.9821621771976838,
+ -0.22252448702312888,
+ -1.3360052800073725,
+ -1.8619908536079137,
+ -1.5839179165634707,
+ -0.7713701102556211,
+ -1.021569687159524,
+ -0.5370509924596887
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.6869221754931893,
+ 5.0535158828676146,
+ 1.7090806688797073,
+ 0.4156258909122786,
+ -1.0619147631456523,
+ -2.074142749897344,
+ -2.187871058262339,
+ -1.5691243172171538,
+ -1.6506876788374827,
+ -0.6352267098087958,
+ 2.1156275222794467,
+ 2.9291632558396556,
+ 1.4534400998858947,
+ 0.06071135428952194,
+ -1.3685451371470982,
+ -2.0052177562889293,
+ -1.5925947807834515,
+ -0.438613083785892,
+ 0.19531146136620398,
+ 1.2545296294698702,
+ 2.1535926914369847,
+ 2.1282643792997207,
+ 1.1620278210724413,
+ -0.2974113178610085,
+ -1.6740999622768686,
+ -2.340554618284427,
+ -1.7259940773635722,
+ -0.14584127830698207,
+ 0.6726442699793075,
+ 1.5374075655562995,
+ 2.2380882635651718,
+ 2.1979576218604686,
+ 2.5625524877899326,
+ 1.3133643745729855,
+ 1.2054263197967416,
+ 1.1367442907028358,
+ -0.32969317401388065,
+ -1.6475530387497963,
+ -2.260683018122522,
+ -1.8761456022825787,
+ -0.6874970149617629,
+ 0.7455710933643671,
+ 1.4512449552107665,
+ 1.3645477749842942,
+ 1.65458869721113,
+ 1.5004156800800155,
+ -1.562329592117562,
+ -3.1449762920834132,
+ -2.243033903166819,
+ -1.5923447496410503,
+ -0.25306424532447486,
+ 1.201808260875106,
+ 2.1303163307218966,
+ 2.3551533432941554,
+ 2.8282908504963804,
+ 1.5655248864284228,
+ -1.7503615626457378,
+ -2.991989599550631,
+ -2.1740044049002125,
+ -1.321938361528974,
+ -0.017570723720162957,
+ 0.3735551228341624,
+ 0.7679210907463052,
+ 1.3796638809026027,
+ 1.5400557735061708,
+ 0.024160361558886453,
+ -1.3846965236764854,
+ -2.202420493275292,
+ -2.048813459266707,
+ -1.0153205271634884,
+ 0.37072977562849163,
+ 0.8447225011010924,
+ 1.0266480794537387,
+ 1.1646311964700664,
+ 1.1078114426676675,
+ -0.3334136727981055,
+ -1.6492516105231925,
+ -2.4285045940060392,
+ -3.108258185776933,
+ -2.0516856199699167,
+ 1.2840348724468609,
+ 2.4453135505673553,
+ 2.236867509098006,
+ 1.9455050019472926,
+ 0.8147861084395889,
+ -0.6792689713712546,
+ -1.8713603940756807,
+ -2.4497040439611415,
+ -5.047198589881868,
+ -3.5967362232593136,
+ 2.480698326219336,
+ 3.67983432836671,
+ 2.1986515727131226,
+ 2.0425446839182015,
+ 1.00579815966812,
+ -0.4784657364439533,
+ -1.7471633836380716,
+ -2.444662473112281,
+ -3.1009428329984616,
+ -2.01092863015311,
+ 1.3943968668994031,
+ 2.568510430310718,
+ 2.253604468836889,
+ 1.8673999568379531,
+ 0.8517768886725579,
+ 0.6729231955044,
+ -0.14431405893407992,
+ -1.7223196962347886,
+ -2.3361974337062072,
+ -0.7924059201974287,
+ 0.6939041802646962,
+ 1.8870167277552086,
+ 2.249270065621197,
+ 1.642036350336479,
+ 0.47699977709588515,
+ 0.19676235467480832,
+ -0.4364248399261545,
+ -1.5894118872622756,
+ -2.0018895890698603,
+ -0.4482012945579926,
+ 1.0239397528959326,
+ 2.170566189971973,
+ 2.897181184352161,
+ 2.0018682467338436,
+ -0.5837460707559113,
+ -1.6412658223392942,
+ -1.9965452870772018,
+ -2.2195220020289352,
+ -1.487076136820143,
+ -0.09520381178630535,
+ 1.3283729562687725,
+ 2.322962451309066,
+ 3.3553416795106408,
+ 2.029906895669041,
+ -0.2770333644558267,
+ -0.4883849919256154,
+ -1.9771805739093442,
+ -2.9361525450107315,
+ -1.1006511119388074,
+ 0.3675650445356447,
+ 1.6830986936084227,
+ 2.2582575008166628,
+ 1.85865405968661,
+ 0.8310212558508757,
+ 0.6558779092291086,
+ -0.10536836471030134,
+ -1.8283517557961124,
+ -2.3684217944524666,
+ -0.7743136528876935,
+ 0.7146889175376993,
+ 1.9818626304985174,
+ 2.6615926027163925,
+ 1.8279372294999996,
+ -0.20539644552335892,
+ -1.2158226706768829,
+ -1.8216312158724903,
+ -2.2617221163297136,
+ -1.7290478464196646,
+ -0.4305359240154761,
+ 1.0444673394570132,
+ 2.186347478395006,
+ 2.8586812272064916,
+ 1.863079014065004,
+ -0.49662380443371396,
+ -1.6410879091001964,
+ -2.012105890129003,
+ -2.222890798481495,
+ -1.6922472642590376,
+ -1.8239674108387998,
+ -0.7697548897871752,
+ 2.1236238682650246,
+ 2.993165865452582,
+ 1.5652407968411874,
+ 0.2092781420815342,
+ -1.2421085691016607,
+ -2.1484517828118452,
+ -2.1250477940838666,
+ -1.3886435033726399,
+ -2.2536413654218737,
+ -1.401693086481678
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.3946512269375498,
+ -0.2043536739193473,
+ 1.0796167926328497,
+ 2.0778505927453508,
+ 2.1847077052082335,
+ 1.326076492578072,
+ -0.09700891287588116,
+ -1.5041319491298955,
+ -2.2194196369309216,
+ -1.838398501929545,
+ -0.2614324687512255,
+ 0.4060011498233647,
+ 1.380209777273576,
+ 2.192471233339712,
+ 2.2804882816748124,
+ 2.6490604468142727,
+ 1.2867460329163658,
+ -1.671252052534512,
+ -2.9916646761639387,
+ -2.104449011597223,
+ -1.1395694419172953,
+ 0.320033559722028,
+ 1.642237727354669,
+ 2.2495778277730625,
+ 2.109509545567702,
+ 2.3833384823184725,
+ 1.0574150988930207,
+ -1.7797333067347076,
+ -3.0269399044890752,
+ -1.9494771327024893,
+ -0.8197336249271,
+ 0.597480862778314,
+ 1.1378845197014011,
+ 1.2056058539132963,
+ 1.311296211084453,
+ 2.5597540323290344,
+ 2.256868573465484,
+ 1.8678664869748072,
+ 0.6725869425581631,
+ -0.82335558311376,
+ -1.9553720563279284,
+ -2.444755079866558,
+ -3.3438433197495825,
+ -1.7790604622414745,
+ 1.1652841147696562,
+ 1.3444186488023215,
+ 1.6217312662024448,
+ 1.9964895940997622,
+ 0.22748255816716667,
+ -1.2216776978486068,
+ -2.1501075249683406,
+ -2.130624479477557,
+ -1.1952051360561893,
+ 0.15197478065279124,
+ 0.5943676539078792,
+ 0.8928964362967544,
+ 1.344644272183553,
+ 1.3872585896412997,
+ -0.13160029565660508,
+ -1.5072691214452112,
+ -2.3945579574481513,
+ -3.021507393696015,
+ -1.824878068685869,
+ 0.9223716650583168,
+ 2.2173448239598446,
+ 2.204874544626336,
+ 2.045306502368729,
+ 1.003891408243462,
+ -0.48420640818701255,
+ -1.7542527184300372,
+ -2.450726679754765,
+ -3.0282169686455767,
+ -1.7405798340726506,
+ 1.1677552992823164,
+ 2.517811720330924,
+ 2.259213449441204,
+ 1.8690981359920225,
+ 0.8489596687177087,
+ 0.6749095880647137,
+ -0.07722938638509658,
+ -1.9283007698345886,
+ -2.406878325524447,
+ -0.7898330225349077,
+ 0.7000292121435333,
+ 1.8940641547378394,
+ 2.2541238294628974,
+ 1.6426209053124496,
+ 0.4730812798604548,
+ 0.24329789769892365,
+ -0.07251461408153982,
+ -3.224777552561309,
+ -4.283200522276581,
+ -0.9817037374053237,
+ 0.49909054734894115,
+ 1.7705963279433858,
+ 2.2629240900420684,
+ 1.7790281662508833,
+ 0.692832077726666,
+ 0.46988445556035774,
+ -0.21923952205181743,
+ -1.864674818304194,
+ -2.2695461184761445,
+ -0.6470507005739213,
+ 0.8406674159808927,
+ 2.064386913113962,
+ 2.743382980495716,
+ 1.8466933180499279,
+ -0.31471702003937785,
+ -1.3783118928633569,
+ -1.8980676052251622,
+ -2.2531495130115453,
+ -1.6388380570195398,
+ -0.2983376645264314,
+ 1.1615379714893845,
+ 2.248855034241965,
+ 2.914090761180706,
+ 1.8643566786216392,
+ -0.6021538590523201,
+ -1.7893943206279852,
+ -2.0701963204762617,
+ -2.1933808064477143,
+ -1.583995336733757,
+ -1.667366927289102,
+ -0.6015955917630113,
+ 2.0077008705196477,
+ 2.9126604646547807,
+ 1.4657991395743257,
+ 0.07556794746780013,
+ -1.3526163896797854,
+ -2.186834921229406,
+ -2.075282200049209,
+ -1.2663472018621118,
+ -1.375063256233641,
+ -0.24146010163985343,
+ 2.2653418872887805,
+ 2.275216068170071,
+ -0.06140505484805958,
+ -1.0930471701171174,
+ -1.69105021616482,
+ -2.254088496610431,
+ -1.8481602942169995,
+ -0.6240896233892916,
+ 0.86018792852548,
+ 2.0732584657857416,
+ 2.803489017172287,
+ 1.9813495447482397,
+ -0.4305559652381592,
+ -1.4300554449633118,
+ -1.9071776185032072,
+ -2.246882288050282,
+ -1.8386344375510855,
+ -1.9911360993933254,
+ -0.7518146107436884,
+ 1.8493197659721259,
+ 2.9690692318674756,
+ 1.699619020266486,
+ 0.4070923746379505,
+ -1.0658484275637634,
+ -2.0717211103372297,
+ -2.1801735298257596,
+ -1.5586803029720744,
+ -1.6046304930523243,
+ -0.4725564917331932,
+ 1.857516452826348,
+ 2.838692107962511,
+ 1.443812388412369,
+ 0.05298192942252797,
+ -1.3717723074050938,
+ -2.069320370877346,
+ -1.7640999330028575,
+ -0.40162872987368575,
+ 0.19899517867043584,
+ 1.2575352485800781,
+ 2.1502604474903744,
+ 2.119999417035621,
+ 1.1524772701204626,
+ -0.30414195147985484,
+ -1.675715405243959,
+ -4.009577594129899,
+ -3.0446563406130704
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.9624184084185018,
+ -1.0596775314720743,
+ 0.527183068316656,
+ 1.5276310879894957,
+ 1.8737745591765536,
+ 1.392550501407,
+ 0.3157877032442979,
+ -0.8794290539964127,
+ -1.4162879310430285,
+ -1.303833871156943,
+ -0.5792156893658967,
+ -0.20991689789144016,
+ 0.8045483006946172,
+ 1.6793512639484585,
+ 2.0023506598105403,
+ 2.400141867326376,
+ 1.2762661650944471,
+ -1.2100780267772941,
+ -2.341157616656063,
+ -1.8462869064393257,
+ -1.262954678094352,
+ -0.13321574726755062,
+ 1.058569114450017,
+ 1.7873061244751487,
+ 1.925088681797152,
+ 2.2551585649822097,
+ 1.1232872603356956,
+ -1.3459719750814176,
+ -2.4535641439759313,
+ -1.7773168179331085,
+ -1.0314748429856195,
+ 0.06822864136577761,
+ 0.4197428677287439,
+ 0.6949510023923084,
+ 1.145011320592201,
+ 1.7704023569444978,
+ 1.7986893523808243,
+ 1.7340660920629558,
+ 0.9220720226529996,
+ -0.2998058263615491,
+ -1.384678797708814,
+ -2.0177734708635735,
+ -2.836860253469043,
+ -1.6150834868531374,
+ 0.6029525231346468,
+ 0.768570957685571,
+ 1.5291049904340481,
+ 2.100539224268659,
+ 0.5757878534570644,
+ -0.657538312642765,
+ -1.6123537539681614,
+ -1.8570543905590948,
+ -1.3016892292175994,
+ -0.30327692310584675,
+ -0.04669640223483008,
+ 0.4088663222392325,
+ 1.3490644405795422,
+ 1.6035683906753684,
+ 0.2866455519769656,
+ -0.9259741635072698,
+ -1.8428416531104121,
+ -2.3959828880057423,
+ -1.5438961469203694,
+ 0.46476852307583283,
+ 1.4344378856976832,
+ 1.695437763267143,
+ 1.8239308399308747,
+ 1.1670761585456093,
+ -0.007529588285950459,
+ -1.1711115791395406,
+ -1.9554609874405857,
+ -2.4852670321565795,
+ -1.5250976969651826,
+ 0.6923231966143881,
+ 1.743231840741738,
+ 1.8011612982154177,
+ 1.7353192421290276,
+ 1.087998454592573,
+ 1.0751699973347124,
+ 0.3067244155787629,
+ -1.7157615868002942,
+ -2.2920087625939467,
+ -1.0082067052599788,
+ 0.19235084428613292,
+ 1.3146920552294885,
+ 1.8589786288402579,
+ 1.6003767939603377,
+ 0.8020157104506929,
+ 1.0885722730458072,
+ 0.5861772730735734,
+ -2.928848550093285,
+ -3.9588595745268775,
+ -1.1492988320418005,
+ 0.020122853638206116,
+ 1.1854113021716148,
+ 1.829915339563919,
+ 1.6833624378099439,
+ 0.970523110976224,
+ 0.9158087918566256,
+ 0.1899720702701076,
+ -1.6864127153950046,
+ -2.208131237143627,
+ -0.9011227233716904,
+ 0.31471302332450846,
+ 1.4393912129751962,
+ 1.9947606733360552,
+ 1.4493896168642304,
+ 0.06484625876922559,
+ -0.6454979908340466,
+ -1.321773253305056,
+ -1.860840385037562,
+ -1.6002557093029204,
+ -0.6315236008728691,
+ 0.602305271235425,
+ 1.648502633177783,
+ 2.2113631361037642,
+ 1.5151531445341955,
+ -0.18046686166448056,
+ -1.022083460239617,
+ -1.5159144599490024,
+ -1.8736812365023392,
+ -1.6085952926106328,
+ -1.8025806559994138,
+ -0.8211417768837024,
+ 1.6519568891961938,
+ 2.5383816375157373,
+ 1.486411279297353,
+ 0.45447854630638623,
+ -0.7772715009336808,
+ -1.6688485528246744,
+ -1.8369853877177167,
+ -1.3909237208813736,
+ -1.659031594884074,
+ -0.548516250329251,
+ 1.79582103284804,
+ 1.8411629419974038,
+ 0.30562306113847487,
+ -0.31848369804173715,
+ -1.1071563929906856,
+ -1.8033071404724828,
+ -1.7252194265213994,
+ -0.8842522984437532,
+ 0.3313226994985258,
+ 1.4499365319425288,
+ 2.0441421271838562,
+ 1.5462442531865062,
+ -0.00552623709769219,
+ -0.6796350234223134,
+ -1.332027040108621,
+ -1.8597192238588007,
+ -1.7712109345607046,
+ -2.0101190336585746,
+ -0.9058964742409633,
+ 1.4623190454643633,
+ 2.5059185090904004,
+ 1.6354393658379835,
+ 0.7175861159305089,
+ -0.513004607901825,
+ -1.5202446442219248,
+ -1.8671639388430943,
+ -1.5918970579972114,
+ -1.747343699893749,
+ -0.6968883578049557,
+ 1.5206264179593258,
+ 2.481326412803416,
+ 1.4722396128477986,
+ 0.4376682668284258,
+ -0.7554128674039324,
+ -1.2696424507328175,
+ -1.222540791054772,
+ -0.6887215703560179,
+ -0.38092479706509547,
+ 0.6900195372546452,
+ 1.6202883849559178,
+ 1.8560578801744096,
+ 1.2719874280307284,
+ 0.1448924562624341,
+ -1.04392281253859,
+ -2.688692510940336,
+ -2.09691775318364
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.736110920577922,
+ -3.602834900433658,
+ -0.7152673211541123,
+ 0.6212507042474709,
+ 1.6952823228941722,
+ 2.0228838547947925,
+ 1.47856547199788,
+ 0.43200699631251155,
+ 0.17538068750102312,
+ -0.3636868265994102,
+ -1.5853562376644592,
+ -1.8585731867302613,
+ -0.40586464864074934,
+ 0.9182054239358783,
+ 1.9504153670315636,
+ 2.5544991783347557,
+ 1.6708709336828511,
+ -0.4271581889829791,
+ -1.4462846280566595,
+ -1.7940347575863802,
+ -1.9964188590303895,
+ -1.339429015606654,
+ -0.08848597900528003,
+ 1.1921972045220084,
+ 2.0879465784631592,
+ 2.6712324932004714,
+ 1.6631540938120322,
+ -0.6782219876906415,
+ -1.7935918809814249,
+ -1.9228131694212716,
+ -1.915057700556718,
+ -1.2663461449256468,
+ -1.2830963263078805,
+ -0.3849658559363096,
+ 1.781753686743911,
+ 2.5201241269134234,
+ 1.217832982524705,
+ 1.9636396552899857,
+ 1.8663094655280852,
+ 0.9436699614569987,
+ -0.3785884135499004,
+ -1.5892649548678646,
+ -2.4737112398879018,
+ -1.7279855137362343,
+ -0.6398553834006795,
+ -0.45420066594630876,
+ 1.7965703916759412,
+ 3.061027654420433,
+ 1.659060103367443,
+ 0.5718786426794144,
+ -0.765917903853216,
+ -1.7688476112245057,
+ -2.0046082995179337,
+ -1.5707861426209393,
+ -1.7059303468674045,
+ -0.6972568252475452,
+ 1.8059166225446042,
+ 2.687793049609217,
+ 1.4537722479938877,
+ 0.258783157995438,
+ -1.036721109443837,
+ -1.5832751348825667,
+ -1.333265761658275,
+ -0.5551291875197379,
+ -0.09937434433133954,
+ 0.9490499526994731,
+ 1.8586216332515748,
+ 1.9709317253439564,
+ 1.212276009785028,
+ -0.06257571263730809,
+ -1.3312826300852982,
+ -1.9137826761315877,
+ -1.4762136141487654,
+ -0.29814337386019857,
+ 0.3327498639185998,
+ 1.2214473868265208,
+ 1.9653600407555598,
+ 2.0602420454631885,
+ 2.456578770673721,
+ 1.3925510608529963,
+ -1.7373863485429444,
+ -2.7543770121929003,
+ -1.9011110425978057,
+ -1.045914103565545,
+ 0.26323679912013376,
+ 1.4596641195046063,
+ 2.0205674671954714,
+ 1.9103265491670758,
+ 3.615502559959603,
+ 2.468768739106356,
+ -3.1372558927412606,
+ -4.434564066971269,
+ -1.9585911009838064,
+ -1.201398836939569,
+ 0.07635629949058115,
+ 1.3239156404644852,
+ 1.9939755574073181,
+ 2.0030829310297564,
+ 2.3616808510606835,
+ 1.302006887168941,
+ -1.7862407186944065,
+ -2.7798671788845435,
+ -1.8502006540002507,
+ -0.9300055111545409,
+ 0.3121294957389559,
+ 0.7339056418231374,
+ 0.9092764825807282,
+ 1.0595362685638052,
+ 1.020409767883174,
+ -0.28054885147433267,
+ -1.4694128775177713,
+ -2.029793738353279,
+ -1.69443456623906,
+ -0.6327701332531731,
+ 0.6534889142432302,
+ 1.139721546012519,
+ 1.1200952073145174,
+ 0.8412237959096717,
+ 0.6079160509978503,
+ -0.5952490158015524,
+ -1.6726786018116677,
+ -2.2029000341338176,
+ -2.744581107075836,
+ -1.6552763007338571,
+ 1.2853084524185732,
+ 2.4169370794950407,
+ 2.030140812101515,
+ 1.5761676877569197,
+ 0.44133693675737784,
+ -0.8917570763755578,
+ -1.832594946679827,
+ -2.1697036714126736,
+ -2.9350606545508087,
+ -1.5170123702770186,
+ 1.1849351117792921,
+ 1.3361969997867518,
+ 1.3476853267243025,
+ 1.5624715509122837,
+ 0.024431566971051102,
+ -1.2429450812527632,
+ -1.9797190388202357,
+ -1.8433782902393872,
+ -0.915374715330196,
+ 0.33044820923450086,
+ 0.7720911265882716,
+ 0.94118695487511,
+ 1.08250816866157,
+ 1.020145672966772,
+ -0.29712065489512146,
+ -1.4811185010134669,
+ -2.183254758585878,
+ -2.72262197542729,
+ -1.600159670632678,
+ 0.9528937889322215,
+ 2.1458738995927047,
+ 2.010962072095324,
+ 1.750731388394414,
+ 0.7351794437979517,
+ -0.6082003003502586,
+ -1.6811662687776043,
+ -2.202783436110664,
+ -2.6903339729645417,
+ -1.5022615732032523,
+ 1.1589511979535287,
+ 2.384415542361767,
+ 2.0313278448014565,
+ 1.5686152710883816,
+ 0.5755842962999443,
+ 0.36159870506103076,
+ -0.23761321477144257,
+ -1.652327492301999,
+ -1.993747935596039,
+ -0.5373283323174639,
+ 0.7964275089721974,
+ 1.7922114055974308,
+ 1.998499060048788,
+ 1.344153814228939,
+ 0.23136941447839643,
+ -0.18960894150882127,
+ -0.3592227596966502
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.321226753740091,
+ -4.6058209810966035,
+ -1.7404569694519731,
+ -0.712098344589826,
+ 0.6270539769023578,
+ 1.6927450676966085,
+ 2.023563324116641,
+ 1.6795454244838077,
+ 1.8682225741201015,
+ 0.8755581182083924,
+ -1.9002222764178818,
+ -2.7531185482875604,
+ -1.553646952463134,
+ -0.4045797702499607,
+ 0.8932532098311363,
+ 1.4189752588171924,
+ 1.2570156488840405,
+ 0.6685012728777058,
+ 0.29675455709241083,
+ -0.8166154255866278,
+ -1.7953426779222348,
+ -2.0043406023496133,
+ -1.327866685141673,
+ -0.08496408299354545,
+ 1.2009106731758061,
+ 1.769042429722227,
+ 1.4159458871794226,
+ 0.4170414101534806,
+ -0.13575159246126067,
+ -1.1009124684788794,
+ -1.9237881021222039,
+ -2.1124550452050355,
+ -2.533082560966533,
+ -1.3972965744635826,
+ 1.5822992927118942,
+ 2.69691729294134,
+ 1.9487336792512362,
+ 1.21499409953617,
+ 1.967940489894703,
+ 1.853020507101409,
+ 0.9421461724473955,
+ -0.2953204266312005,
+ -0.799959838046568,
+ -0.969369189006983,
+ -1.7040710253769513,
+ -1.5910672713706098,
+ 1.1759361490881666,
+ 2.568929351870195,
+ 2.022562205332783,
+ 1.655913921614994,
+ 0.5743903819442359,
+ -0.7640598322521717,
+ -1.765126529506944,
+ -2.185847508827013,
+ -2.6905035503884243,
+ -1.578983834839259,
+ 1.392608578632603,
+ 2.5254493705309984,
+ 2.0163391972499016,
+ 1.4531647575830353,
+ 0.397138447537821,
+ 0.13790430247658803,
+ -0.4144669881088618,
+ -1.4130810544905,
+ -1.7663459659659972,
+ -0.37300456547339694,
+ 0.9454979799037245,
+ 1.8617478669268785,
+ 1.9575379517235096,
+ 1.2110363440663123,
+ 0.04967505715126065,
+ -0.29348849466952814,
+ -0.665352737624769,
+ -1.2547596883574121,
+ -1.4174235689930552,
+ -0.05345313592602329,
+ 1.2163565588324883,
+ 2.0939090327575087,
+ 2.7455101887574784,
+ 1.8954194747881268,
+ -0.8717237919758201,
+ -1.8614482661114584,
+ -1.9274242306880145,
+ -1.8970595136743191,
+ -1.049222972390145,
+ 0.26479792881452396,
+ 1.4562546109522394,
+ 2.1731750468700026,
+ 4.593824580114727,
+ 3.312781813739015,
+ -1.763782986937763,
+ -2.695987359993471,
+ -1.8618182706568274,
+ -1.954153581955039,
+ -1.204896056618893,
+ 0.07909190812372542,
+ 1.3205564271810404,
+ 2.133581618624866,
+ 2.771418427677681,
+ 1.8806057195391266,
+ -0.9831434054961099,
+ -1.9963751785055484,
+ -1.9655048838348024,
+ -1.8477475485724548,
+ -1.1102760467971688,
+ -1.054155576921448,
+ -0.16137858875721947,
+ 1.630900697746314,
+ 2.3635792406325606,
+ 1.0293191702657907,
+ -0.2783864574904508,
+ -1.471225392342926,
+ -2.0170134300174034,
+ -1.6919540249564686,
+ -0.7956412705595014,
+ -0.6442774313235036,
+ 0.1039221999866736,
+ 1.5546469104561154,
+ 2.1221451631456048,
+ 0.7407806866529917,
+ -0.5908171894144095,
+ -1.7402066015145945,
+ -2.393860255167506,
+ -1.7416829153743447,
+ 0.21633272809488024,
+ 1.0429757890801716,
+ 1.599289495706703,
+ 2.0251546075158573,
+ 1.5801284449660042,
+ 0.4353405814498169,
+ -0.8890309480104688,
+ -1.9306257620314038,
+ -2.860889950858849,
+ -1.8247219697685475,
+ -0.10617674241726237,
+ 0.08624008203236588,
+ 1.8245175881270812,
+ 2.8688531768025776,
+ 1.2792983578910828,
+ 0.02129231108237329,
+ -1.250755410357765,
+ -1.9734301674426935,
+ -1.8428266110081588,
+ -1.092634882208146,
+ -1.0480706252553633,
+ -0.21855008513713073,
+ 1.7466525517242302,
+ 2.4013884419187344,
+ 1.0141602754905656,
+ -0.29846209160842374,
+ -1.526490086718501,
+ -2.1261108557762602,
+ -1.55814042175671,
+ -0.10573186138971727,
+ 0.6435145731627236,
+ 1.4015413957885658,
+ 2.0111384944650865,
+ 1.756591620292,
+ 0.7248084567050301,
+ -0.6117620668113947,
+ -1.7587200662739342,
+ -2.3685062591223485,
+ -1.6348283583808667,
+ 0.16026478352588644,
+ 1.0545870491686367,
+ 1.6170699782198177,
+ 2.031839906715066,
+ 1.7714916720125968,
+ 2.003382099495022,
+ 0.9872112432052498,
+ -1.8852530300539554,
+ -2.7789240990583504,
+ -1.6367427037084419,
+ -0.5342240524962808,
+ 0.8027401541155951,
+ 1.7885707262098478,
+ 1.998858537670065,
+ 1.5411922425618318,
+ 2.706483276733235,
+ 1.770990407555433
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.47586454037047,
+ -3.625695562053767,
+ -2.018461833444141,
+ -1.7428469803052593,
+ -0.7152573062592423,
+ 0.6313936162924235,
+ 1.6976381290872238,
+ 2.2069259353286617,
+ 2.7610428867954946,
+ 1.7413812133339135,
+ -1.3965815620283435,
+ -2.463265927506045,
+ -2.035233054991346,
+ -1.5573630625679566,
+ -0.552767344277067,
+ -0.3324200960432435,
+ 0.29959498628606496,
+ 1.4795564799243706,
+ 1.9177262776111317,
+ 0.5163367521928481,
+ -0.8192404583072074,
+ -1.8070274741236434,
+ -1.9987433622821733,
+ -1.3298206359049796,
+ -0.2070994620823423,
+ 0.10078858484205874,
+ 0.5571918666296067,
+ 1.3361550039198336,
+ 1.5862739183145045,
+ 0.19861129913082162,
+ -1.1028073483870606,
+ -2.0503257883132155,
+ -2.6947840045944003,
+ -1.8104054828488416,
+ 0.6997124628779382,
+ 1.71111577181397,
+ 1.886771589273493,
+ 1.9517901291217477,
+ 1.2211334414978003,
+ 1.9662432413865722,
+ 1.8610153635453417,
+ 1.130395381248787,
+ 1.2245077162446762,
+ 0.20992003244729815,
+ -2.0369270597778035,
+ -2.0455603980722143,
+ 0.046004474300839336,
+ 0.9671633064352441,
+ 1.5149556440563856,
+ 2.029427314528654,
+ 1.6715166514758752,
+ 0.5736864633807258,
+ -0.7635209622114568,
+ -1.8602293863327186,
+ -2.517990919505328,
+ -1.7826830516460879,
+ 0.37725484517703173,
+ 1.2733116724875961,
+ 1.7111582751589485,
+ 2.024847898896094,
+ 1.6645836272381194,
+ 1.805454950195979,
+ 0.6862165553234603,
+ -1.664478219534344,
+ -2.6771488751997055,
+ -1.5386734965837126,
+ -0.37852781137045616,
+ 0.9492095743070257,
+ 1.8610334290824302,
+ 1.96665079413628,
+ 1.413901339744311,
+ 1.458896132066314,
+ 0.4352346459825064,
+ -1.6734418062704166,
+ -2.5622038671348233,
+ -1.3096320816084703,
+ -0.05981488253852025,
+ 1.2245736374749185,
+ 1.8512665548551845,
+ 1.5824914836683,
+ 0.37286106898647275,
+ -0.1626295959369627,
+ -1.1225163412376153,
+ -1.9328856560199275,
+ -1.9136076831573086,
+ -1.048338262034141,
+ 0.261932051627035,
+ 1.4996125441270935,
+ 3.5941241539574227,
+ 2.7308379337262343,
+ 0.3750890335697938,
+ 0.21129464922272903,
+ -0.9617024269308648,
+ -1.866628446983911,
+ -1.9708242857328222,
+ -1.2040756728041664,
+ 0.07528450732282387,
+ 1.3442959854282617,
+ 1.9872170890995802,
+ 1.6500532373349879,
+ 0.2467189354988516,
+ -0.34917045511093625,
+ -1.2334660138187021,
+ -1.9716635219833578,
+ -2.0586478981384992,
+ -2.3936318194814192,
+ -1.1660690188012837,
+ 1.5007901319551846,
+ 2.6918886166212617,
+ 1.8996884288416984,
+ 1.0367577600436095,
+ -0.276209527035054,
+ -1.4707394126971496,
+ -2.0249879240401585,
+ -1.906532405663455,
+ -2.1564598080751756,
+ -0.9605267651570152,
+ 1.5999668853867812,
+ 2.726227694453681,
+ 1.761848887922126,
+ 0.7495441856430569,
+ -0.5253788459378981,
+ -1.009460519191686,
+ -1.0771842231830357,
+ -0.9495818157752929,
+ -0.7854970584149091,
+ 0.477190625293888,
+ 1.602206078301991,
+ 2.041272644218841,
+ 1.5791838621654701,
+ 0.44118464161120174,
+ -0.8580447489257561,
+ -1.5525475995145666,
+ -1.3464643155818896,
+ -1.3558820454448617,
+ -1.2051609835041062,
+ 1.5160454836189308,
+ 2.9423207728653913,
+ 1.986660124835611,
+ 1.2806429951045044,
+ 0.020143368522056997,
+ -1.2527720462183987,
+ -1.9786085378812206,
+ -2.049293967544971,
+ -2.4223782091345494,
+ -1.2879669652472565,
+ 1.6597118371299133,
+ 2.751592262455313,
+ 1.8924838629938245,
+ 1.016942472842172,
+ -0.20910915919600534,
+ -0.6105685269536812,
+ -0.8439439505962716,
+ -1.1223526015286833,
+ -1.1415028502883318,
+ 0.18555598729992118,
+ 1.4050157640746985,
+ 2.0238466824698342,
+ 1.7497330859769267,
+ 0.7251334138353164,
+ -0.5546006533456866,
+ -1.0240335327648369,
+ -1.0627341788039224,
+ -0.9109391082101053,
+ -0.7346107282868298,
+ 0.5039517003312621,
+ 1.6202933199326974,
+ 2.2074080533859437,
+ 2.7866747154259146,
+ 1.7904087505591415,
+ -1.305848064269264,
+ -2.368199455482162,
+ -2.0339564745210215,
+ -1.6389846945523632,
+ -0.5363206751398543,
+ 0.8065077127749101,
+ 1.7936676876700595,
+ 2.190741070008662,
+ 4.4450979681536325,
+ 3.1446044249888456
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.5364402931990573,
+ -1.0440598823224065,
+ -1.406946133866373,
+ -2.0075168259571563,
+ -1.745475490339349,
+ -0.7110838089715145,
+ 0.622176505860402,
+ 1.7622909311932664,
+ 2.438376307652033,
+ 1.8413587019197803,
+ -0.2757357065019409,
+ -1.086298872575489,
+ -1.6204119975491995,
+ -2.0261782603104144,
+ -1.7586183034650824,
+ -1.941592136683572,
+ -0.7923559247775392,
+ 1.6401030091194746,
+ 2.6969685676261403,
+ 1.6249032238873984,
+ 0.5206215059236712,
+ -0.8122545228390443,
+ -1.7897813577646888,
+ -1.991294791461138,
+ -1.5272970040078833,
+ -1.6160946107818377,
+ -0.5494552400818286,
+ 1.6682771251582909,
+ 2.6130068572982093,
+ 1.4137945241833458,
+ 0.2066085793675484,
+ -1.083771558477684,
+ -1.6683925843842602,
+ -1.426093141732587,
+ -0.49368389332369644,
+ -0.031820408926437414,
+ 0.9925183227130452,
+ 1.8747327290747204,
+ 1.952638996807295,
+ 1.212564558762887,
+ 1.9614093068605438,
+ 2.0611348945699155,
+ 2.713991420231874,
+ 1.299580033420192,
+ -1.4722577143258726,
+ -1.5990248371974023,
+ -1.1070466754118626,
+ -1.065168421913353,
+ 0.3379281541049161,
+ 1.5088245985245896,
+ 2.0341880964427763,
+ 1.6617657475195826,
+ 0.5773338459833564,
+ -0.7133683272195387,
+ -1.234524785297056,
+ -1.2006638508820593,
+ -0.8070250612243826,
+ -0.5435384300702735,
+ 0.6505309753538976,
+ 1.7049305858622488,
+ 2.2010590360251134,
+ 2.680907512703585,
+ 1.4870089927021901,
+ -1.1824098822725468,
+ -2.4095130904556825,
+ -2.028649528216117,
+ -1.5389242148569025,
+ -0.3842502448472799,
+ 0.9435043223240508,
+ 1.856791588176315,
+ 2.157961009132498,
+ 2.5722414627457164,
+ 1.3466237859748782,
+ -1.355122721619986,
+ -2.57982367844877,
+ -1.9913605825517338,
+ -1.312801934500184,
+ -0.1870203387627146,
+ 0.1383083130943965,
+ 0.5708431650310976,
+ 1.4561175670075872,
+ 1.612169598346202,
+ 0.1794780285924304,
+ -1.1163276816023253,
+ -1.9361849528014685,
+ -1.902406441543716,
+ -1.050903357148651,
+ 0.16297976248093524,
+ 1.0067903563393854,
+ 0.943041725017992,
+ 2.353889743283182,
+ 3.032669619812661,
+ 0.36481389993189267,
+ -0.955632908480488,
+ -1.8694648682412034,
+ -1.9594139609984904,
+ -1.206309409018995,
+ -0.03984994603293966,
+ 0.3246173343456773,
+ 0.6911898854249774,
+ 1.3708490270828124,
+ 1.4561567218127265,
+ 0.044409822199374144,
+ -1.2263144075908814,
+ -2.101454340338465,
+ -2.680780836231891,
+ -1.6589960161850938,
+ 0.7084496525664337,
+ 1.833799370036232,
+ 1.9344033330673986,
+ 1.897946916299809,
+ 1.0436177836096086,
+ -0.2744475463663547,
+ -1.4657623974127187,
+ -2.1793525559500666,
+ -2.721347742922059,
+ -1.6040128750327136,
+ 0.9397564406554602,
+ 2.129457897864801,
+ 2.0084322154254286,
+ 1.7626848976952272,
+ 0.9242028656991124,
+ 0.8236153804523858,
+ 0.06405638121440121,
+ -1.6996146899263826,
+ -2.2721146503875937,
+ -0.8581771917612833,
+ 0.4715670875693845,
+ 1.6032955431687756,
+ 2.0294134586192047,
+ 1.5801525285376625,
+ 0.5956518947984196,
+ 0.4438012449971658,
+ -0.27316860102430623,
+ -2.0107228146150273,
+ -1.968275321523878,
+ 0.5381692234198475,
+ 1.7183043588531195,
+ 1.819604632768214,
+ 1.9783362840273098,
+ 1.2853408897612946,
+ 0.022209389123060818,
+ -1.2420917962351985,
+ -2.1045362885538075,
+ -2.731772364704166,
+ -1.792021239291338,
+ 0.8405597845411094,
+ 1.8891217464013381,
+ 1.9383532068743596,
+ 1.8871324204025508,
+ 1.2037959562717824,
+ 1.1780526686601178,
+ 0.24425186195378745,
+ -1.6465209699772037,
+ -2.4275466712853375,
+ -1.1153118578577514,
+ 0.17771097384392423,
+ 1.3991807743915519,
+ 2.005527423784916,
+ 1.7455663701101765,
+ 0.8971336730687615,
+ 0.7754425050715286,
+ -0.02050265481859789,
+ -1.5830674209433617,
+ -2.2042989168962435,
+ -0.8342155862812651,
+ 0.4931077084176072,
+ 1.6708683875964008,
+ 2.3429029250749296,
+ 1.8059814448963216,
+ -0.14906531605886097,
+ -0.9119862696566567,
+ -1.5351154590156408,
+ -2.023658776796443,
+ -1.6421976354526053,
+ -0.5337145473603687,
+ 0.796890820150669,
+ 1.8757195543640148,
+ 4.2276181199625755,
+ 3.134773058747016
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.6225397857117159,
+ 1.9719039204814997,
+ -0.19329332398495475,
+ -1.4063367368513466,
+ -2.018160115829411,
+ -1.7395281803551912,
+ -0.7148303165719295,
+ 0.5615521521104279,
+ 1.0678162751162747,
+ 1.1479910370271447,
+ 0.9572353687051931,
+ 0.7502602081388732,
+ -0.5103945961558483,
+ -1.6199101012640686,
+ -2.2002453186586104,
+ -2.705392807551938,
+ -1.536756565946438,
+ 1.0935940495469727,
+ 2.3105082211796635,
+ 2.02738593109462,
+ 1.6284660227836778,
+ 0.5263716657368409,
+ -0.811492764804726,
+ -1.7915704698454211,
+ -2.182189812194047,
+ -2.627111419812334,
+ -1.4130424176307863,
+ 1.28020390125043,
+ 2.508728782879286,
+ 2.0131555034153394,
+ 1.419378241474543,
+ 0.3436978291700896,
+ 0.07025927209261783,
+ -0.4300647684226612,
+ -1.4675209974625574,
+ -1.7508142181078077,
+ -0.3237878498949954,
+ 0.9910006069015588,
+ 1.883911216866201,
+ 1.9464987524667718,
+ 1.2167704326060111,
+ 2.099026970109378,
+ 3.026270220742095,
+ 1.8233287248392995,
+ -0.2770561518267249,
+ -0.46668618934715633,
+ -1.7767048022478924,
+ -2.6269671139984467,
+ -0.9776701650122459,
+ 0.3416878463568239,
+ 1.5189526161488949,
+ 2.028011723242263,
+ 1.6617486910802217,
+ 0.7338796096552245,
+ 0.572900268146727,
+ -0.10514331589845692,
+ -1.6368963865656834,
+ -2.1157002793793174,
+ -0.6839364940559256,
+ 0.6528697167738942,
+ 1.7867620063354384,
+ 2.397008939539379,
+ 1.6428953200994878,
+ -0.19411128291704413,
+ -1.10608192991452,
+ -1.6423530127950143,
+ -2.029950117154225,
+ -1.544441737177511,
+ -0.37483945233840105,
+ 0.9481745768633865,
+ 1.9685823182654285,
+ 2.5716191886864204,
+ 1.6728948527594525,
+ -0.4552544627644427,
+ -1.4866508692882852,
+ -1.8117439363388073,
+ -1.9932246708657901,
+ -1.509800309967734,
+ -1.6241286936183914,
+ -0.6806248047463005,
+ 1.906106016598689,
+ 2.6824491035806934,
+ 1.3965498117051243,
+ 0.17604367012159697,
+ -1.125045682728533,
+ -1.9324148480482939,
+ -1.9035769707554748,
+ -1.2359652052917747,
+ -1.9987926228112451,
+ -1.24025622315556,
+ 3.3076421222418317,
+ 4.53180600870668,
+ 1.5264713590381362,
+ 0.36143729328234475,
+ -0.9638411446398962,
+ -1.866728629793884,
+ -1.9610188819753858,
+ -1.3987047755480213,
+ -1.4679689461008891,
+ -0.5596161203841661,
+ 1.8981818625005997,
+ 2.6239538505686224,
+ 1.2956559012400908,
+ 0.04261914103321815,
+ -1.2392722777012082,
+ -1.8120892795036199,
+ -1.434779464654324,
+ -0.38424271062579546,
+ 0.19124793895419048,
+ 1.1360980552771875,
+ 1.936953410486437,
+ 1.906380385979898,
+ 1.0329714965942016,
+ -0.2787688521944942,
+ -1.5122966925926271,
+ -2.111300695491363,
+ -1.5531444433277615,
+ -0.12116749503064955,
+ 0.6193997538963579,
+ 1.3888788424537082,
+ 2.010985839613498,
+ 1.9673689820318618,
+ 2.291326758765668,
+ 1.1710117679176628,
+ -1.7135067388274259,
+ -2.7717879856629133,
+ -1.8162266175946862,
+ -0.8554509243048466,
+ 0.47762562896438443,
+ 1.6032744796104412,
+ 2.032126467923916,
+ 1.7843594614605993,
+ 2.2373473132174246,
+ 0.911426561787202,
+ -1.7960405543517193,
+ -1.8795054800763087,
+ -0.665658026998764,
+ -0.2383008989932757,
+ 0.8701365883471603,
+ 1.8201984437956134,
+ 1.9897256434925568,
+ 1.2801358549392519,
+ 0.024853942257632294,
+ -1.2533880787224883,
+ -1.8632384495674814,
+ -1.521594540454808,
+ -0.33566410593734086,
+ 0.2183965061693136,
+ 1.149434010250984,
+ 1.939740989879892,
+ 2.090126790816905,
+ 2.4489749591727765,
+ 1.2208946736892372,
+ -1.4587324280441025,
+ -2.660899434174421,
+ -1.9283591900378334,
+ -1.1188908002483287,
+ 0.17579703413709866,
+ 1.396381286374998,
+ 2.008483620952236,
+ 1.9540925740179054,
+ 2.2304908653296716,
+ 1.0244305420806439,
+ -1.5696893277416444,
+ -2.716332480594256,
+ -1.805363827967744,
+ -0.8397510809462383,
+ 0.41812413663328285,
+ 0.8930520307140292,
+ 1.0439342626245893,
+ 1.0650961772502183,
+ 0.9283066307896042,
+ -0.3782939272078506,
+ -1.534827428112362,
+ -2.0345609126531565,
+ -1.6362804915043792,
+ -0.5371135757643697,
+ 0.7549970675270735,
+ 2.1913065451602507,
+ 1.775389803088414
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.6109053290741406,
+ 4.837290920496819,
+ 1.253642787138503,
+ -0.29929899036541924,
+ -1.7293065154107286,
+ -2.398836163536242,
+ -2.0325355982530726,
+ -0.9802702619832195,
+ -0.8191841208454798,
+ 0.012354200547554957,
+ 2.0836524773425413,
+ 2.6292936778210514,
+ 0.9123361758506611,
+ -0.6724008986216214,
+ -2.050569258842048,
+ -2.7741040594813575,
+ -1.9312804081897228,
+ 0.1422795641242626,
+ 1.1800129983272178,
+ 1.8843764651306913,
+ 2.411743169176446,
+ 1.9020540844265732,
+ 0.5501049808401725,
+ -1.029389298155392,
+ -2.282033809433353,
+ -3.0021421834555446,
+ -1.9808510448490597,
+ 0.45469182918106904,
+ 1.6422419739467398,
+ 2.099767655512423,
+ 2.3850391094064483,
+ 1.8754885275551116,
+ 2.039719034188885,
+ 0.8382502202835291,
+ -2.145319626586018,
+ -3.197288100124794,
+ -1.734249934115888,
+ -0.3158091285794646,
+ 1.244195005750251,
+ 2.2585336333226813,
+ 2.2950836869399183,
+ 1.562302324465265,
+ 2.4825244295821656,
+ 1.879911145693274,
+ 1.1737024077616869,
+ 0.9685808886565931,
+ -2.014207499569914,
+ -3.6325699747121036,
+ -2.1925931673462706,
+ -1.0961902712798313,
+ 0.4767648473096025,
+ 1.8433317037156385,
+ 2.4082931182819953,
+ 2.1721153562934776,
+ 2.471402490638,
+ 1.180305217479779,
+ -2.099443881263124,
+ -3.2854223982552506,
+ -2.00793594334137,
+ -0.7459427277325751,
+ 0.7803731236437466,
+ 1.3581631022599068,
+ 1.3320873659789725,
+ 0.9950862713814236,
+ 0.7154641936326934,
+ -0.7110243533294067,
+ -1.9875380222177825,
+ -2.4126689293617805,
+ -1.7724305866022125,
+ -0.3743689421568487,
+ 1.1655303226771239,
+ 1.8050661305444098,
+ 1.5482085010665916,
+ 0.7104794630381844,
+ 0.2075304280853863,
+ -1.0665734307277293,
+ -2.1785695044735967,
+ -2.5744720870937643,
+ -3.1580651618209075,
+ -1.9105933013672973,
+ 1.853596741248791,
+ 3.108844512478143,
+ 2.373934920195647,
+ 1.6031049495995853,
+ 0.13858040935264213,
+ -1.3912830251963464,
+ -2.3128108476734326,
+ -2.4693795176207893,
+ -4.844289971542072,
+ -3.370308511019741,
+ 3.4144522356943425,
+ 4.898413469100317,
+ 2.4017264314123383,
+ 1.761561971880016,
+ 0.3599414410567078,
+ -1.2047018190094212,
+ -2.240997685033021,
+ -2.5377582790722553,
+ -3.0829240575609695,
+ -1.8248631024687951,
+ 1.9365756370756433,
+ 3.179404723077635,
+ 2.3422093868414335,
+ 1.4825836042024207,
+ 0.11680413295939678,
+ -0.27797357821084,
+ -0.750813895705085,
+ -1.5207110731019833,
+ -1.7460760803603539,
+ -0.1161273917704935,
+ 1.404771496345186,
+ 2.3263263341066023,
+ 2.2220619094941143,
+ 1.1631033392992423,
+ -0.2982889811901908,
+ -0.7841689085092661,
+ -1.0323738388877164,
+ -1.299613788386075,
+ -1.2937539708256662,
+ 0.2660065634343641,
+ 1.6963522968541656,
+ 2.5756758232294055,
+ 3.289171819173627,
+ 2.0895034129894507,
+ -1.2191175640563428,
+ -2.5183491995435037,
+ -2.372104312222064,
+ -2.1198437180265075,
+ -0.9532647643547426,
+ 0.6379729111545773,
+ 1.9443582847073382,
+ 2.6137814298216355,
+ 3.624278316937033,
+ 1.9961058467744175,
+ -1.0154037183561044,
+ -1.2181548682758119,
+ -1.845545340004935,
+ -2.4072270028453215,
+ -0.4759326871365999,
+ 1.0970981828853128,
+ 2.2035445267778857,
+ 2.3389600194580904,
+ 1.4678334691192492,
+ 0.09426035047739072,
+ -0.3140707048970561,
+ -0.7588751181431855,
+ -1.5822251264584752,
+ -1.7592654920345876,
+ -0.09601753581614088,
+ 1.422302299623913,
+ 2.482335543054935,
+ 3.1745913402159647,
+ 1.9753517799555895,
+ -0.8093358607178784,
+ -2.1356121298088686,
+ -2.284848222561542,
+ -2.2700093785680253,
+ -1.2770684749171446,
+ 0.28318788869504524,
+ 1.7113314305205973,
+ 2.5821451309050807,
+ 3.231957957105819,
+ 1.9155738337562254,
+ -1.0869111333745296,
+ -2.4935667746814705,
+ -2.37947215190073,
+ -2.1155051237513303,
+ -1.1405194626019375,
+ -1.032673224209824,
+ -0.13933607101247367,
+ 2.137857616990105,
+ 2.758591355089585,
+ 1.0586770183497922,
+ -0.5181406118605754,
+ -1.877829479557768,
+ -2.4111876423520195,
+ -1.9043068247836616,
+ -0.7528328036283475,
+ -0.7924170148756502,
+ -0.30953468716370786
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 4.67730093031314,
+ 6.347582691877223,
+ 1.9303729930295166,
+ 0.12752711860572255,
+ -1.73725166488765,
+ -2.8392540947274725,
+ -2.713197648059545,
+ -1.6756846962756784,
+ -1.6427877125473946,
+ -0.4467914667006033,
+ 2.6905183789809746,
+ 3.5804679876951906,
+ 1.5545985745077506,
+ -0.3371585322492555,
+ -2.138107949798748,
+ -3.002391470956164,
+ -2.2306515706413856,
+ -0.23281020505917804,
+ 0.8073233796083517,
+ 1.962606588427179,
+ 2.9033135715634213,
+ 2.596773881776247,
+ 1.1414282297381813,
+ -0.7950175235962929,
+ -2.487376438331177,
+ -3.370995219825845,
+ -2.354000194542854,
+ 0.1531382552690736,
+ 1.4099005089669554,
+ 2.2865797600977924,
+ 2.948561759991315,
+ 2.6315266500685914,
+ 2.9849210636940344,
+ 1.4126065226840296,
+ -2.574909077203869,
+ -4.014277640157982,
+ -2.4309328779377384,
+ -0.8680083131740313,
+ 1.0749543276508329,
+ 2.5481361908839046,
+ 2.915970410168107,
+ 2.3100897948375456,
+ 2.800660500612513,
+ 2.0386721904559244,
+ 1.846204804857689,
+ 1.6199859178816858,
+ -2.2559621905826632,
+ -4.302419540581434,
+ -2.843184642331885,
+ -1.757873973805486,
+ 0.08903228246988089,
+ 1.9017158360125113,
+ 2.884733807683103,
+ 2.911689449979585,
+ 3.419053948305883,
+ 1.7863184501916918,
+ -2.4385223844319577,
+ -3.9966708691818797,
+ -2.6893702004247055,
+ -1.3664923156819258,
+ 0.42908071715729806,
+ 1.0354727779418482,
+ 1.3024359510967805,
+ 1.548725449293553,
+ 1.505057705661881,
+ -0.38512741287157604,
+ -2.113973992411959,
+ -2.9387187066519025,
+ -2.466659252161892,
+ -0.9371731325079687,
+ 0.924439205274302,
+ 1.624972324051841,
+ 1.609570432389076,
+ 1.234048332642882,
+ 0.9088268729769402,
+ -0.8417794308481243,
+ -2.411072639984606,
+ -3.1917925837210497,
+ -4.007652307712156,
+ -2.546902048190952,
+ 1.966264752203339,
+ 3.506217219221541,
+ 2.9414052689571357,
+ 2.2970354903161625,
+ 0.6604799013716335,
+ -1.2726066863896435,
+ -2.645709952475193,
+ -3.1474622607563814,
+ -6.34703067949295,
+ -4.476715059555779,
+ 3.7044459075462686,
+ 5.400880056895427,
+ 2.929832826087836,
+ 2.456031094721968,
+ 0.9222051431436177,
+ -1.0235693244448614,
+ -2.516347080139877,
+ -3.182557465796711,
+ -3.959901746837685,
+ -2.469268817900161,
+ 2.0920631327848698,
+ 3.6341555496785474,
+ 2.9354069765373447,
+ 2.1730329501688237,
+ 0.674581052973959,
+ 0.32339980417014785,
+ -0.5279971996304685,
+ -2.090971053144923,
+ -2.657041592420729,
+ -0.6317861362307547,
+ 1.290695463212931,
+ 2.6645418233024865,
+ 2.8643174670756837,
+ 1.8312398827215652,
+ 0.17194297074998924,
+ -0.3032199999636705,
+ -0.8960114275079438,
+ -1.8709022563046658,
+ -2.162243741527885,
+ -0.16963975960439295,
+ 1.6914728312574416,
+ 3.0082124539247497,
+ 3.931064939893303,
+ 2.612563500995497,
+ -1.1069356616550845,
+ -2.59765621154462,
+ -2.7686921947030294,
+ -2.785217980177828,
+ -1.6017896682038355,
+ 0.2930352266600642,
+ 2.049301434171151,
+ 3.1386437103700158,
+ 4.448002476992574,
+ 2.5797379575114303,
+ -0.7725451545972032,
+ -1.0382688408111378,
+ -2.456866197052808,
+ -3.4597877026783537,
+ -1.0556060821911277,
+ 0.8834504007965088,
+ 2.4493859452812217,
+ 2.9368929003654,
+ 2.1584381410224776,
+ 0.6469941686333124,
+ 0.29079152619504917,
+ -0.504738233690419,
+ -2.2015281598561263,
+ -2.68752493788776,
+ -0.6074791120211102,
+ 1.315465275128087,
+ 2.8205871029959937,
+ 3.697926034311478,
+ 2.4237132188320203,
+ -0.6047517152142039,
+ -2.0771387227524767,
+ -2.5943601250017103,
+ -2.900347346706444,
+ -1.9578934094293443,
+ -0.14729595508079432,
+ 1.7146156221521884,
+ 3.0231480029368503,
+ 3.871183788898864,
+ 2.414986974484993,
+ -0.9698799006774552,
+ -2.5835075480249556,
+ -2.783977792314556,
+ -2.785168631079649,
+ -1.854327597112622,
+ -1.8873905259845207,
+ -0.6287386035299812,
+ 2.7269056425733265,
+ 3.6993613649193957,
+ 1.7172824983978487,
+ -0.1437281093869674,
+ -1.9500282114994483,
+ -2.899326918222383,
+ -2.595750646239867,
+ -1.4180427035227674,
+ -2.058360765312526,
+ -1.1764892311217245
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.493225878231976,
+ 4.85154971679486,
+ 1.8576107590489948,
+ 0.7943946797565937,
+ -0.6152074576962313,
+ -1.7567820468954218,
+ -2.135446955291775,
+ -1.8023084519029373,
+ -2.016249619558296,
+ -0.9616984265255138,
+ 1.9978824543765787,
+ 2.9110941323893433,
+ 1.6669732128967962,
+ 0.4725899706239956,
+ -0.8938461304207355,
+ -1.4403670694269393,
+ -1.298224837192695,
+ -0.7398917285790894,
+ -0.37569466911041005,
+ 0.8167453284361075,
+ 1.8688656219054132,
+ 2.11986500186564,
+ 1.43444061873474,
+ 0.13682396320376397,
+ -1.2217958818418142,
+ -1.8150186651380427,
+ -1.4705997963785535,
+ -0.4770603763783122,
+ 0.07954845094321394,
+ 1.1197299203289313,
+ 2.011001837767633,
+ 2.239676049723143,
+ 2.694486442515481,
+ 1.4984685309886139,
+ -1.6462620032173687,
+ -2.8253687347715664,
+ -2.0659205675417915,
+ -1.2710425384196444,
+ 0.07454380586169382,
+ 1.3909310925128255,
+ 2.1005547664998327,
+ 2.113927994793962,
+ 2.7536506071594173,
+ 1.2759374093570757,
+ 1.8210487382634002,
+ 1.705673093445558,
+ -1.2057091541106335,
+ -2.66644965879604,
+ -2.12757567297419,
+ -1.7714618914047988,
+ -0.6507287218338083,
+ 0.7607869789931108,
+ 1.8358409046911213,
+ 2.3076946944953445,
+ 2.849036406419276,
+ 1.6834509689242148,
+ -1.439962230003839,
+ -2.633403617780835,
+ -2.1285569781936173,
+ -1.5637057100632834,
+ -0.4689887710766292,
+ -0.20884757352623307,
+ 0.39863807693524195,
+ 1.5091611560774811,
+ 1.908800548204738,
+ 0.43956145308015926,
+ -0.9538665350637228,
+ -1.9417251876443367,
+ -2.0739693781163537,
+ -1.313620938509775,
+ -0.10384342756152944,
+ 0.24582184627715645,
+ 0.6649128062466373,
+ 1.3473993574256669,
+ 1.5472473149453068,
+ 0.10380467683829751,
+ -1.243128068496334,
+ -2.189742490823358,
+ -2.8803705262799277,
+ -1.999931878247931,
+ 0.8785436930912451,
+ 1.9119439567506624,
+ 2.0154622850295465,
+ 2.0147421860077364,
+ 1.145959863630033,
+ -0.23182946643928998,
+ -1.5008050688757728,
+ -2.281206111273714,
+ -4.838083386547372,
+ -3.494133216437642,
+ 1.791803331505718,
+ 2.75239402241323,
+ 1.9422654294812791,
+ 2.0707145541668,
+ 1.3074903909337061,
+ -0.03585768650380973,
+ -1.3548761560026432,
+ -2.2348479215043877,
+ -2.911991279053195,
+ -1.9872958804524918,
+ 0.9973485431279454,
+ 2.05707954368628,
+ 2.058609001402684,
+ 1.965706428063758,
+ 1.2139041586781996,
+ 1.168996667023928,
+ 0.2089253859135759,
+ -1.7260421675443989,
+ -2.5208316256474115,
+ -1.1250596700802489,
+ 0.24617571251777895,
+ 1.516668036103947,
+ 2.1202384826165317,
+ 1.8081955474003713,
+ 0.8860636674107509,
+ 0.7404528570948703,
+ -0.07040641040255505,
+ -1.6516863922603364,
+ -2.2749255968123974,
+ -0.8244732242101437,
+ 0.5768221977250525,
+ 1.8014030839220607,
+ 2.488788945383816,
+ 1.8235918708167012,
+ -0.18590859177958188,
+ -1.0384218546760118,
+ -1.655318756304432,
+ -2.133500048943624,
+ -1.6943133719567647,
+ -0.5049026421131462,
+ 0.8937041468508593,
+ 2.00883031650147,
+ 2.9873101525533032,
+ 1.9187032276633162,
+ 0.15951909230904895,
+ -0.04313556068868954,
+ -1.9248488674757447,
+ -3.0475415565318564,
+ -1.3842605587816645,
+ -0.06979040334378413,
+ 1.2798350130174394,
+ 2.0674473935366344,
+ 1.9609286608138325,
+ 1.1954916913783462,
+ 1.1638437471452119,
+ 0.2720285194665233,
+ -1.8505099741232727,
+ -2.561779586348761,
+ -1.1092692215382531,
+ 0.267472461390249,
+ 1.5707372825829455,
+ 2.1997061793638304,
+ 1.6269318873005174,
+ 0.15031331430838465,
+ -0.6160896212330604,
+ -1.4419249615396712,
+ -2.1117608598753246,
+ -1.8743320248354025,
+ -0.8076658720113346,
+ 0.5991808555753895,
+ 1.8214527986924265,
+ 2.463376196773897,
+ 1.7136472223533568,
+ -0.12995092482346374,
+ -1.0522157288259741,
+ -1.6745257923429229,
+ -2.141022260846333,
+ -1.8964658590921823,
+ -2.155593877299463,
+ -1.0778525350314978,
+ 1.9791552127241996,
+ 2.933952197927709,
+ 1.7520031495353021,
+ 0.6083857110888535,
+ -0.8017899180567163,
+ -1.861455499209555,
+ -2.1137512097052475,
+ -1.6600487848176728,
+ -2.9376034691981197,
+ -1.9310693744909224
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.2268305196527173,
+ 0.6784829272137716,
+ 1.4839005018631808,
+ 2.343238479583315,
+ 2.196320744894375,
+ 1.0780699704942143,
+ -0.49628136930747324,
+ -1.922516628825561,
+ -2.718187524066325,
+ -2.120928793191648,
+ 0.09196053493172016,
+ 0.9659730215617376,
+ 1.7665495324710048,
+ 2.4050878695896594,
+ 2.246208391420903,
+ 2.53511028631832,
+ 1.1210350535728801,
+ -1.9033186222516927,
+ -3.2321547844627814,
+ -2.0743083977940224,
+ -0.860222964831035,
+ 0.7291976603970736,
+ 2.0007010056548755,
+ 2.4035571951407806,
+ 2.0049780549188405,
+ 2.185103333410876,
+ 0.846796757608357,
+ -1.9695515873158338,
+ -3.185516682130953,
+ -1.8546049742988286,
+ -0.49587536404788146,
+ 1.044613580981843,
+ 1.6998043328644419,
+ 1.5508845349478653,
+ 0.8003926502970653,
+ 0.3825547141497018,
+ -0.9548527463626992,
+ -2.123838958230597,
+ -2.3823005632088137,
+ -1.5883441100662326,
+ -0.11674307853200228,
+ 1.411149224419787,
+ 2.34863797927064,
+ 1.824313924549515,
+ 1.5677317075717216,
+ 1.7358464632873705,
+ 1.4922495583824147,
+ 1.619130767337135,
+ -0.15176701431368014,
+ -1.6182104324867115,
+ -2.3931401296476844,
+ -2.1122998672813,
+ -0.9251318658177304,
+ 0.5861523576565759,
+ 1.153679150054751,
+ 1.2543826231636572,
+ 1.156114348065277,
+ 0.9811244092629121,
+ -0.5315827262201022,
+ -1.8818400077305075,
+ -2.6180741894789925,
+ -3.2329424946422294,
+ -1.8558241249778697,
+ 1.2534119478913948,
+ 2.6961825317843857,
+ 2.4121107276118714,
+ 1.986499723954969,
+ 0.7033460204885826,
+ -0.8943063357634331,
+ -2.0968494667946875,
+ -2.610136145588004,
+ -3.156208676089578,
+ -1.717608672719528,
+ 1.4830144760691044,
+ 2.9471821105940217,
+ 2.407656271804558,
+ 1.7468759655113077,
+ 0.4938178828804789,
+ 0.18246819933008201,
+ -0.4503833516360349,
+ -1.8766872605934481,
+ -2.1921228270728728,
+ -0.46344056632798586,
+ 1.1115581286312102,
+ 2.2137516244278657,
+ 2.3403930186629642,
+ 1.4599275175141901,
+ 0.07956256849389381,
+ -0.6348278389250728,
+ -0.7209030753975819,
+ -3.078983056443514,
+ -4.020866675500089,
+ -0.6797886275000946,
+ 0.9094406142541065,
+ 2.11300032938837,
+ 2.38582690655839,
+ 1.6310470840937998,
+ 0.32043786972012517,
+ -0.04012195932843772,
+ -0.5981932132893573,
+ -1.7875136557345808,
+ -2.0201706139568065,
+ -0.3045308360395903,
+ 1.2512071471032051,
+ 2.406349044644883,
+ 3.1159235631295212,
+ 1.9909074296790672,
+ -0.6509646383383958,
+ -1.9219738295331517,
+ -2.2141292332108597,
+ -2.33671868116452,
+ -1.4530034552700266,
+ 0.0755024916087594,
+ 1.5614004980509413,
+ 2.5409291314880678,
+ 3.2173899190219646,
+ 1.9580802209194605,
+ -0.9411431403604376,
+ -2.311244436307121,
+ -2.3406889913264477,
+ -2.2125663175159738,
+ -1.342523312325114,
+ -1.303928241585912,
+ -0.2998058630603845,
+ 2.088331843387092,
+ 2.8879059108334513,
+ 1.244496663301605,
+ -0.3134680360058425,
+ -1.7424161606372273,
+ -2.4050862168436598,
+ -2.029285059045434,
+ -0.9684504285949445,
+ -0.9029773410391435,
+ 0.09847724291916239,
+ 2.424408070419725,
+ 2.3974832347653776,
+ -0.419809763945445,
+ -1.7174992736441779,
+ -2.0430586146498544,
+ -2.3959668711988726,
+ -1.7179702458151889,
+ -0.2786266258661107,
+ 1.2709630418172881,
+ 2.4123381928754015,
+ 3.1785304019408716,
+ 2.144904638900211,
+ -0.7963835560819217,
+ -1.9842304378453204,
+ -2.2208543825275484,
+ -2.3261661083223366,
+ -1.6542651985417467,
+ -1.6995279602105728,
+ -0.4948822809188642,
+ 1.9828792834015798,
+ 3.025411668839688,
+ 1.5310436395604345,
+ 0.04104006452811486,
+ -1.4724283046304005,
+ -2.3392068027834476,
+ -2.194480709940659,
+ -1.3120629753726532,
+ -1.2422868436409344,
+ -0.18365259703419634,
+ 1.9398700428007953,
+ 2.8071601066314,
+ 1.2177104620782335,
+ -0.33873432787423563,
+ -1.799943191576701,
+ -2.5851907460002153,
+ -2.0637923886273946,
+ -0.059711483796156026,
+ 0.7513349480496029,
+ 1.6525319102195921,
+ 2.3854960150474636,
+ 2.0935071878464475,
+ 0.8752357364735509,
+ -0.7112703082235626,
+ -2.0776924419812106,
+ -4.780678354499074,
+ -3.574953215111193
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.7289707172373081,
+ -0.6468812753289815,
+ 0.983489864614327,
+ 2.1390934594262836,
+ 2.3775455647731136,
+ 1.5656269876573576,
+ 0.08594828000962547,
+ -1.4397873545842015,
+ -2.1814283728662693,
+ -1.8696623610486,
+ -0.4549091422486117,
+ 0.17393202530156882,
+ 1.3200014539811988,
+ 2.2894707664183005,
+ 2.504065092178585,
+ 2.944374118351864,
+ 1.483199692448659,
+ -1.7115702701746915,
+ -3.1478549444228676,
+ -2.310049060059787,
+ -1.3772336498710018,
+ 0.15258031868224825,
+ 1.6192146771991203,
+ 2.379927816075233,
+ 2.3512987803738246,
+ 2.69499981800767,
+ 1.254609149618392,
+ -1.8501983157409099,
+ -3.225680016490163,
+ -2.172093581208814,
+ -1.0497291121909738,
+ 0.4369879061373244,
+ 0.9713429960521138,
+ 1.1492615309676966,
+ 1.2560671721537104,
+ 1.1588834820451208,
+ -0.3943167798475635,
+ -1.7878320965138934,
+ -2.416461285808142,
+ -1.9786038693146502,
+ -0.6929473434963127,
+ 0.8400907274576417,
+ 1.6077074550402788,
+ 1.485238841391896,
+ 1.7364244849447315,
+ 1.5690420878122395,
+ 1.8312062586068336,
+ 2.3590474461732245,
+ 0.43029246826626694,
+ -1.1421781709972463,
+ -2.2286458944234,
+ -2.3329275555685567,
+ -1.43346837283935,
+ -0.04275325820180784,
+ 0.37972367872326995,
+ 0.800366628620728,
+ 1.557315890663278,
+ 1.7083080260939172,
+ 0.04855558843584917,
+ -1.4642509737449658,
+ -2.5046718740569722,
+ -3.1943616454667327,
+ -1.9757477640620111,
+ 0.8471440315044828,
+ 2.188736490949148,
+ 2.3055836077179137,
+ 2.259303921835491,
+ 1.2394149412511521,
+ -0.3312159639648086,
+ -1.7490209293165204,
+ -2.5967342504910667,
+ -3.2417602718865157,
+ -1.9096919822138365,
+ 1.1223915838995553,
+ 2.540245337939045,
+ 2.393097483526071,
+ 2.097553262675741,
+ 1.0966329289277688,
+ 0.9727132022708066,
+ 0.09498116385995553,
+ -2.128220562781548,
+ -2.7286163423500076,
+ -1.0183294118064372,
+ 0.5659481034892345,
+ 1.9125346197263486,
+ 2.417406804797959,
+ 1.8795511929850501,
+ 0.7050491210155382,
+ 0.6870984405906153,
+ 0.2322979148498661,
+ -3.587672929399927,
+ -4.798179818829538,
+ -1.2158697352679477,
+ 0.347329293751148,
+ 1.766944627913175,
+ 2.4094083539971525,
+ 2.0116743746051697,
+ 0.9346116377355264,
+ 0.7575033507339615,
+ -0.05714311250675691,
+ -2.0710841301907754,
+ -2.5954383582964566,
+ -0.8703251716609552,
+ 0.7198376508605523,
+ 2.087626504171203,
+ 2.81359667879675,
+ 1.9451436206106412,
+ -0.1817997399389149,
+ -1.2423732259590958,
+ -1.9186408483973183,
+ -2.417642014591674,
+ -1.8769335049314906,
+ -0.5049864188377106,
+ 1.0749760082535578,
+ 2.312807621192567,
+ 3.0330648364082076,
+ 1.9886612624108342,
+ -0.4940241684516131,
+ -1.7012641959600567,
+ -2.128288053502328,
+ -2.3833676288236902,
+ -1.8438308989507801,
+ -1.9933501789672816,
+ -0.8011805974465017,
+ 2.1513103719829823,
+ 3.1890749869544996,
+ 1.705213369729868,
+ 0.2692822915187706,
+ -1.2882380007232523,
+ -2.2806157603211914,
+ -2.2858520652411425,
+ -1.5244340916235324,
+ -1.726677229133716,
+ -0.4266605384105545,
+ 2.3946806818131323,
+ 2.4231259560204177,
+ 0.10515904320618907,
+ -0.8924063750514151,
+ -1.6755653606988645,
+ -2.390660258772978,
+ -2.0785382140131228,
+ -0.846693228207863,
+ 0.7410165199511539,
+ 2.098695017771325,
+ 2.877976358439965,
+ 2.082739154164195,
+ -0.29395420892780927,
+ -1.293769474931931,
+ -1.9297311998995683,
+ -2.412863690780246,
+ -2.0941701692375596,
+ -2.312025143311095,
+ -0.9434989551964629,
+ 1.9531283077240358,
+ 3.211658779380649,
+ 1.9349448127667752,
+ 0.6198781806101119,
+ -0.9673700606383138,
+ -2.131402367693189,
+ -2.371303790270658,
+ -1.8186883488379748,
+ -1.9243905131211672,
+ -0.6542338457739528,
+ 1.9866606891760323,
+ 3.1116429846968283,
+ 1.6835352549284357,
+ 0.2459313248349172,
+ -1.2907089624438368,
+ -2.009485797464178,
+ -1.7803714395887122,
+ -0.6023246316241724,
+ -0.048206548319325186,
+ 1.1820290457348512,
+ 2.232559269007405,
+ 2.325260919806836,
+ 1.3903026845509323,
+ -0.1362247122396696,
+ -1.6348356570592337,
+ -4.00336989031748,
+ -3.0664727775809397
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.5037932932223708,
+ -4.850884667240943,
+ -1.8056851955176911,
+ -0.7000652117203562,
+ 0.7114632838515039,
+ 1.8124179688788669,
+ 2.1268116041212255,
+ 1.73154967500012,
+ 1.913138528242121,
+ 0.877717516550478,
+ -2.005520612425461,
+ -2.8871051258357556,
+ -1.602017586005653,
+ -0.37379424844687714,
+ 0.9938144048816618,
+ 1.5556814479678143,
+ 1.3530302723453516,
+ 0.6638173661048933,
+ 0.24142903032690802,
+ -0.9090129826860381,
+ -1.9159523158879284,
+ -2.101308215377341,
+ -1.3582604573297616,
+ -0.03615678981280277,
+ 1.3134725989822287,
+ 1.9177192086050803,
+ 1.5148233277514018,
+ 0.39667476167070914,
+ -0.21447044041015462,
+ -1.2044707363832325,
+ -2.0435286763378553,
+ -2.208496138935924,
+ -2.638272846100274,
+ -1.44164468182077,
+ 1.6895396588623797,
+ 2.857807910633993,
+ 2.0375276552988777,
+ 1.1887224743608018,
+ -0.17553248712100983,
+ -1.4659965881422623,
+ -2.1175944885401967,
+ -2.066551251089732,
+ -2.6703903596761274,
+ -1.2062887629591357,
+ 1.7125774856356197,
+ 1.8279685427347154,
+ 1.2756503865154412,
+ 2.75016937234751,
+ 2.1334371674081742,
+ 1.713370229729608,
+ 0.5534644407567207,
+ -0.8543355988703388,
+ -1.885477012515581,
+ -2.296259002571433,
+ -2.8167663325313055,
+ -1.6402093117564016,
+ 1.497065641216923,
+ 2.690002020228236,
+ 2.1183917997476427,
+ 1.493288102783861,
+ 0.36118191939526384,
+ 0.07358660885048861,
+ -0.4792724819130507,
+ -1.4649555111563313,
+ -1.8059986564831094,
+ -0.34027881998596926,
+ 1.0432183408481308,
+ 1.982610080084696,
+ 2.048178579787139,
+ 1.2326855993205268,
+ -0.0057337861657864525,
+ -0.3804654309405573,
+ -0.741248370907596,
+ -1.2925692724121274,
+ -1.4317657785057292,
+ -0.002774093244890883,
+ 1.3240330342433593,
+ 2.2232131049545543,
+ 2.904681020136928,
+ 1.9924525325735243,
+ -0.9628258934105454,
+ -2.0154995822250923,
+ -2.046645737630922,
+ -1.9794395016117403,
+ -1.059123234193184,
+ 0.33195609371353335,
+ 1.5710834920748054,
+ 2.297718056938126,
+ 4.839183409472011,
+ 3.4838506427464746,
+ -1.9321014480442418,
+ -2.9379888612456364,
+ -1.9821590477004583,
+ -2.0442661704408684,
+ -1.225837959871538,
+ 0.13677217957013849,
+ 1.431536265612085,
+ 2.261260098531057,
+ 2.9270883762329967,
+ 1.973504505141747,
+ -1.078551720807914,
+ -2.154213842402535,
+ -2.083333526868379,
+ -1.924226321833793,
+ -1.1193296086375621,
+ -1.044211397443904,
+ -0.12609222653142937,
+ 1.7085168658106933,
+ 2.454238770128246,
+ 1.0380866068968595,
+ -0.34623000138210047,
+ -1.586745687879591,
+ -2.129276857405583,
+ -1.7527137041193421,
+ -0.7839180354815868,
+ -0.6089136079810105,
+ 0.15346454158853232,
+ 1.6214836806165853,
+ 2.190483384918789,
+ 0.730424773469461,
+ -0.6735424173721368,
+ -1.8684590652660615,
+ -2.5581793079763773,
+ -1.846761835331092,
+ 0.2751307472704788,
+ 1.1663103810040767,
+ 1.7173946167904837,
+ 2.1325701718580863,
+ 1.6305340531605639,
+ 0.4062932581658448,
+ -0.9845150750131925,
+ -2.0612924061960585,
+ -3.0426505408369704,
+ -1.9256097566633845,
+ -0.05810262589038696,
+ 0.14458402453081579,
+ 1.9182271278757994,
+ 2.9926167804629866,
+ 1.3060031011552196,
+ -0.030942924015246752,
+ -1.3597315429669876,
+ -2.0911294478192084,
+ -1.9185870923235218,
+ -1.1005581757185743,
+ -1.0363860932546578,
+ -0.18305886720512374,
+ 1.8275641087122334,
+ 2.492794935875831,
+ 1.0219212438150274,
+ -0.36720410244557133,
+ -1.6496221244901286,
+ -2.284128282488582,
+ -1.6572022350951576,
+ -0.06748107472871176,
+ 0.7473472026356136,
+ 1.514865774105093,
+ 2.1256697078664164,
+ 1.822987111459041,
+ 0.7135830619758279,
+ -0.6952666005771815,
+ -1.8873386333705613,
+ -2.530018092271469,
+ -1.7312803164490849,
+ 0.2125837319908394,
+ 1.1767754597897564,
+ 1.735581734710998,
+ 2.1390692469707355,
+ 1.8314239069868246,
+ 2.058900096810517,
+ 0.9969531161701172,
+ -1.9930875831880626,
+ -2.919155051370914,
+ -1.6923505729581676,
+ -0.5111999312405614,
+ 0.8947817537003309,
+ 1.9091331497199258,
+ 2.0959159073205154,
+ 1.581919611518404,
+ 2.7527451604170388,
+ 1.7913022163900423
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -4.486610235000198,
+ -6.359587014403672,
+ -2.8673968581277127,
+ -1.8297463587514402,
+ 0.0002707823649125016,
+ 1.8352778566937917,
+ 2.8690260558742247,
+ 2.9525624517161715,
+ 3.5034797201306542,
+ 1.9622669558950583,
+ -2.5526846317300733,
+ -4.0133613350839985,
+ -2.726755072749219,
+ -1.4456563654855084,
+ 0.3341346080042162,
+ 0.9214906415709457,
+ 1.2416616220038117,
+ 1.6056079423746303,
+ 1.615561503731489,
+ -0.2975945541940139,
+ -2.053612483359327,
+ -2.931641848150437,
+ -2.5161335598490493,
+ -1.0215680200451285,
+ 0.8330290525728443,
+ 1.5177191844766285,
+ 1.5559680303142047,
+ 1.29745693755487,
+ 1.0248281185386172,
+ -0.757392850274541,
+ -2.3616026228373763,
+ -3.1941852749090236,
+ -3.9993240628227364,
+ -2.438020389936288,
+ 1.793944357692382,
+ 3.428905432390195,
+ 2.943298197796049,
+ 2.353512207058733,
+ 0.7474329489223094,
+ -1.19354345828664,
+ -2.6084845089179978,
+ -3.1650275745119263,
+ -4.303134125413877,
+ -2.253889772614542,
+ 1.6291776728586007,
+ 1.8551184397805127,
+ 2.035464756941601,
+ 2.7916546560845736,
+ 2.737407295265732,
+ 2.8061646882417457,
+ 1.666147120373847,
+ -0.21358769767005992,
+ -1.9890262484878836,
+ -3.1180476534729586,
+ -4.0013747150765635,
+ -2.566633581776708,
+ 1.4080636958907822,
+ 2.9753238896005336,
+ 2.8728020768086933,
+ 2.637209871003715,
+ 1.516343482029928,
+ 1.4053728384017576,
+ 0.15264878056942105,
+ -2.3464348546084506,
+ -3.3601626541016087,
+ -1.40647332770917,
+ 0.501580376548426,
+ 2.200930659413397,
+ 2.9320649683696973,
+ 2.3976887901870807,
+ 1.0529320119599408,
+ 0.8047327931013215,
+ -0.23205917189375094,
+ -2.2234831046522334,
+ -2.9927441757864575,
+ -0.9813641780174741,
+ 0.9511035788892716,
+ 2.5877982069722556,
+ 3.5689575717252335,
+ 2.6818699644808968,
+ -0.4453523310287002,
+ -1.637503380707788,
+ -2.3786844312597344,
+ -2.9340896804274585,
+ -2.22748702492699,
+ -0.5342245017887466,
+ 1.3775007027349815,
+ 2.8494949585144,
+ 6.32717712820443,
+ 4.662265703609141,
+ -1.1727025022973183,
+ -2.051737604726509,
+ -2.209934855693899,
+ -2.9333045215758826,
+ -2.395660276363889,
+ -0.7974784518225024,
+ 1.1329790864435896,
+ 2.7059377497596024,
+ 3.6874690685803646,
+ 2.71814047932394,
+ -0.6267146612747496,
+ -1.8813199345574996,
+ -2.4892414601792976,
+ -2.9215609038134107,
+ -2.381222821975719,
+ -2.5752070623833156,
+ -0.9667651439857495,
+ 2.4072246435735187,
+ 3.8587420432478217,
+ 2.2012563187189618,
+ 0.5148298399179884,
+ -1.399958290056988,
+ -2.701214604326678,
+ -2.832434919790972,
+ -2.0152088702151683,
+ -2.0704662690718165,
+ -0.6028106792037071,
+ 2.415923232432684,
+ 3.686041697525155,
+ 1.86678816342606,
+ 0.053887296066156706,
+ -1.7981571118777888,
+ -2.678883387336232,
+ -2.194450528789078,
+ -0.5031189110937256,
+ 0.2898522311571486,
+ 1.648505197509346,
+ 2.801997387963195,
+ 2.752716567247866,
+ 1.4864157642096254,
+ -0.41057740845711516,
+ -2.191941919650634,
+ -3.449359866859691,
+ -2.455106652085383,
+ -1.057561343965844,
+ -0.7924150662709196,
+ 2.5763583458283215,
+ 4.450930403514783,
+ 2.467796491989754,
+ 0.9343284149569906,
+ -1.0076170506916464,
+ -2.5095393008729654,
+ -2.922511807977435,
+ -2.3601114869439512,
+ -2.5908201968194935,
+ -1.1007597965749325,
+ 2.615597160660668,
+ 3.9323852492085902,
+ 2.1837123982633093,
+ 0.48423829223202164,
+ -1.3970730200322974,
+ -2.1744910150607772,
+ -1.8774717353087693,
+ -0.889994071332544,
+ -0.2914647014206928,
+ 1.2781085608526606,
+ 2.6493577236128476,
+ 2.884436053416818,
+ 1.8450634714349403,
+ 0.019296097235691877,
+ -1.8342059852101593,
+ -2.6685984172372286,
+ -2.0967882201487633,
+ -0.5212669870900336,
+ 0.335770256806408,
+ 1.682194629713127,
+ 2.8204116280417106,
+ 3.028040723121528,
+ 3.632276774017632,
+ 2.0886056012956615,
+ -2.475489655076303,
+ -3.966381276580776,
+ -2.793741887279347,
+ -1.6100334718651481,
+ 0.27194810560341987,
+ 2.0389624811602984,
+ 2.9175955017220763,
+ 2.827920000148075,
+ 5.394212114420582,
+ 3.698651208121891
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.974457230711517,
+ -2.9737061040630626,
+ -1.918250320811743,
+ -1.9085888617105704,
+ -1.0765751066917546,
+ 0.23368105155796562,
+ 1.434773587959053,
+ 2.1686387633833624,
+ 2.787486331776638,
+ 1.8546424601650175,
+ -1.1051914040988566,
+ -2.1402635843707754,
+ -1.9984039067871722,
+ -1.7793992721946286,
+ -0.9623802726405833,
+ -0.8600834773754564,
+ -0.03390475919959699,
+ 1.5998467293655834,
+ 2.2554068459902687,
+ 0.8932857131898313,
+ -0.4311488617171647,
+ -1.5749591062504662,
+ -2.0257203280341227,
+ -1.6025287004959852,
+ -0.6369364081146293,
+ -0.44089181067987404,
+ 0.2310625886925857,
+ 1.504343665683035,
+ 1.987217798154879,
+ 0.594631670521888,
+ -0.7376664246385629,
+ -1.8386146811940942,
+ -2.49417296635598,
+ -1.7727706219726196,
+ 0.3526397989388052,
+ 1.236463304411723,
+ 1.690420090935918,
+ 2.0185501523774145,
+ 1.4782625051288716,
+ 0.28297398345760455,
+ -1.02605476459908,
+ -2.0061894820696327,
+ -2.9384155717213414,
+ -1.8303433245503102,
+ 0.050468799194488975,
+ 0.2423270966792979,
+ 1.8119884280638254,
+ 2.7812588332352477,
+ 1.211223911753309,
+ 1.9586633975615948,
+ 1.8651095188169788,
+ 0.9467970313207796,
+ -0.37250614644698093,
+ -1.5822468560662009,
+ -2.227301753859242,
+ -1.6808299598924523,
+ 0.018004021720458507,
+ 0.7546595863636184,
+ 1.4536468709097,
+ 2.017733739607099,
+ 1.913165582708099,
+ 2.1685026433947487,
+ 0.9731613487877081,
+ -1.5889078849722154,
+ -2.717179924677056,
+ -1.7665697133182894,
+ -0.7655252952827617,
+ 0.5692330101506196,
+ 1.6560751714428723,
+ 2.023664895698239,
+ 1.7168235779214716,
+ 1.8814458430666359,
+ 0.7456396387995725,
+ -1.6504034124107168,
+ -2.687638903190074,
+ -1.587841599061346,
+ -0.4613732432460696,
+ 0.8326127588512087,
+ 1.3927133958696887,
+ 1.3345481819147118,
+ 0.7350441309091469,
+ 0.3945876760470737,
+ -0.760660795714149,
+ -1.7634158733204515,
+ -2.01028986910453,
+ -1.369173639804996,
+ -0.14362559632923144,
+ 1.144370733730958,
+ 2.9388451427806452,
+ 2.2896109536470663,
+ 1.0223743258078724,
+ 1.1190532002260931,
+ -0.5845221026225874,
+ -1.6640080373009831,
+ -2.0307406715935334,
+ -1.5007738351734539,
+ -0.32906005803052074,
+ 0.9666708724821748,
+ 1.551050010742954,
+ 1.4220723670410114,
+ 0.616010955531654,
+ 0.2090367585757426,
+ -0.884475988681057,
+ -1.8266732260035126,
+ -2.1685506541776607,
+ -2.596959848885119,
+ -1.3774789241409546,
+ 1.3188198294978728,
+ 2.54470233837905,
+ 1.9995811043321898,
+ 1.359318334028877,
+ 0.13090326341181352,
+ -1.1588059011116412,
+ -1.9417230808675854,
+ -2.082521772514043,
+ -2.4370857715704135,
+ -1.2102381244767506,
+ 1.4646837249980866,
+ 2.663810014368382,
+ 1.9227214758239495,
+ 1.107029337944481,
+ -0.08862544336850593,
+ -0.4733046647379305,
+ -0.764367375281209,
+ -1.2326895267282936,
+ -1.2953428411964976,
+ 0.07453082692287148,
+ 1.3173174790629942,
+ 1.9973538016933452,
+ 1.7963258217036155,
+ 0.8242917392490583,
+ -0.43554041136017063,
+ -0.9898340152005195,
+ -1.0678625004787858,
+ -1.627697812937077,
+ -1.5043853287665143,
+ 1.275741996610692,
+ 2.6903971607105754,
+ 2.026412119429003,
+ 1.562577449414651,
+ 0.42373383965839984,
+ -0.9056031382094529,
+ -1.8367523750432406,
+ -2.162720649247564,
+ -2.6341380523930864,
+ -1.5086190176343475,
+ 1.4766437537368884,
+ 2.605806128693552,
+ 1.9955935611152984,
+ 1.3414415050496382,
+ 0.23076630803495787,
+ -0.06990107836906649,
+ -0.5370962542877121,
+ -1.3416612582723488,
+ -1.6041715526808353,
+ -0.21976469799647802,
+ 1.0801387873062058,
+ 1.919702763088403,
+ 1.9129738171296737,
+ 1.0837994366415535,
+ -0.11852748909545968,
+ -0.4992505667263635,
+ -0.7807491015103981,
+ -1.1674470271272082,
+ -1.2366936693027377,
+ 0.10165297766289422,
+ 1.3373517909378958,
+ 2.1398965181504965,
+ 2.7757773744125354,
+ 1.8791001673167673,
+ -0.9987813002907987,
+ -2.015533029167835,
+ -1.970329237279165,
+ -1.8380592873925015,
+ -0.9133479669741956,
+ 0.41770496117588113,
+ 1.560337085213606,
+ 2.1929465214735875,
+ 4.583773826706333,
+ 3.2885463860241644
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.1198730289613176,
+ -0.14170925915786622,
+ -1.0922241966970732,
+ -1.9159149942777824,
+ -1.9173276398149037,
+ -1.0711569430454275,
+ 0.22995143269228874,
+ 1.469086399519991,
+ 2.1246454365363743,
+ 1.712458111563608,
+ 0.1005927733818559,
+ -0.558900086067426,
+ -1.3489312948109933,
+ -1.9971221568753679,
+ -1.9845345086136135,
+ -2.278354638476966,
+ -1.0666013190018153,
+ 1.5477619978650259,
+ 2.7070827712787073,
+ 1.8318831867828156,
+ 0.8964519381612414,
+ -0.4288447204580984,
+ -1.5682573712671766,
+ -2.025834442981095,
+ -1.809298867953628,
+ -2.0150565631158175,
+ -0.8494709793636592,
+ 1.627414574456963,
+ 2.708225975034002,
+ 1.6726698280077712,
+ 0.600211905517267,
+ -0.6855880292478386,
+ -1.2005008472796719,
+ -1.1811209660326796,
+ -0.8258252826189838,
+ -0.5769063427502993,
+ 0.6250056093479853,
+ 1.6872759691397627,
+ 2.0267021968381775,
+ 1.4711362344186418,
+ 0.28673398118970433,
+ -1.0076257746177435,
+ -1.7453839414406798,
+ -1.4328595801195556,
+ -1.2303911077466276,
+ -1.0718391276761778,
+ 1.5771823140599919,
+ 2.9813485488872327,
+ 1.9437558183729082,
+ 1.2138098078407673,
+ 1.971069405156895,
+ 1.859095449385679,
+ 0.9485400399882465,
+ -0.29075949938037576,
+ -0.7236037063663766,
+ -0.9131703629517036,
+ -1.109014804995796,
+ -1.0673031236267498,
+ 0.2604989550068194,
+ 1.4559171804883189,
+ 2.178042595274218,
+ 2.722663794344318,
+ 1.6092512842215139,
+ -0.9279253428701884,
+ -2.1155842357990693,
+ -2.0060287640850274,
+ -1.7696821254482937,
+ -0.7699435148411996,
+ 0.5729478996825303,
+ 1.6605842545582021,
+ 2.2039481448433675,
+ 2.6982364466828,
+ 1.51585332417722,
+ -1.137073373215126,
+ -2.3607320308526183,
+ -2.0322615556897303,
+ -1.5923504230258934,
+ -0.6144426503042185,
+ -0.41216173405782813,
+ 0.20314383382320603,
+ 1.669835257655816,
+ 2.0296706668390847,
+ 0.5731080057260727,
+ -0.7624548067953044,
+ -1.7746961035068916,
+ -2.0052254827212392,
+ -1.3720682994984297,
+ -0.27135555721660337,
+ 0.10589311348441151,
+ 0.2989867729238771,
+ 2.770932875287012,
+ 3.6554513747911788,
+ 0.7500142006753001,
+ -0.5860702458601933,
+ -1.6748276593015305,
+ -2.0262347452155467,
+ -1.5041235013977763,
+ -0.4714571939346173,
+ -0.2262433569129869,
+ 0.3296094312638761,
+ 1.6048412481876249,
+ 1.8968373947697152,
+ 0.4422180087845424,
+ -0.8852530332045146,
+ -1.9319337940052022,
+ -2.5376216623277266,
+ -1.669489196634309,
+ 0.3977049281621141,
+ 1.4044060962244507,
+ 1.7768842839247072,
+ 2.003392067037155,
+ 1.3676128038155468,
+ 0.12548580860634767,
+ -1.1623539257260644,
+ -2.075351623636616,
+ -2.6619625051931566,
+ -1.6666205410638624,
+ 0.6504015733628765,
+ 1.7564595723686847,
+ 1.9110647749499075,
+ 1.9276716204248217,
+ 1.2993824682984105,
+ 1.3280940829514427,
+ 0.41720682084603156,
+ -1.787389325879325,
+ -2.5415734973406097,
+ -1.203205527064668,
+ 0.07511066432496913,
+ 1.3260208864892942,
+ 1.9942320646512304,
+ 1.8005828156709542,
+ 1.0007319491284983,
+ 1.0326684796539631,
+ 0.08799035111895338,
+ -2.0414863118587023,
+ -2.036768917211343,
+ 0.1839299640730145,
+ 1.183950732321449,
+ 1.608660505949765,
+ 2.025389908504187,
+ 1.5711223740706286,
+ 0.4210449732675114,
+ -0.9024309608633692,
+ -1.9386577708457944,
+ -2.591169461677457,
+ -1.7944287073241472,
+ 0.5098871065493055,
+ 1.4535367037636695,
+ 1.783997997338826,
+ 1.9963478170061955,
+ 1.5431052973555548,
+ 1.6377017087822248,
+ 0.565044129356962,
+ -1.6679204828029754,
+ -2.6204235196847856,
+ -1.4271070203308538,
+ -0.22354734273928997,
+ 1.0810006337908564,
+ 1.9113110953169214,
+ 1.9143355090107683,
+ 1.275347722102676,
+ 1.2735561452173478,
+ 0.3088911238179561,
+ -1.6565015079743908,
+ -2.4743421512215047,
+ -1.1822091694161523,
+ 0.0958643118968657,
+ 1.3567360130683015,
+ 1.9994181817924062,
+ 1.6536268540044,
+ 0.2275246926314326,
+ -0.37485737709709727,
+ -1.2446515466710735,
+ -1.9683713920233796,
+ -1.8468253136529078,
+ -0.9085199418749751,
+ 0.41418812829282536,
+ 1.6133792381727163,
+ 3.7911677531102566,
+ 2.858741742969857
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.1696177912596686,
+ 2.7610305142307876,
+ 0.20769320188575058,
+ -1.0969211722715873,
+ -1.9339843064677444,
+ -1.9184334310425255,
+ -1.0781450470802643,
+ 0.13352938598231737,
+ 0.5431773851873295,
+ 0.8311965109156894,
+ 1.2670886175338159,
+ 1.268895406971131,
+ -0.11544821141477757,
+ -1.3542148589745053,
+ -2.1542226334886396,
+ -2.7187808857771913,
+ -1.6427762109187893,
+ 0.8279414612514822,
+ 1.992716150256954,
+ 1.9835697302145614,
+ 1.841919151314586,
+ 0.9061285553720807,
+ -0.4328416177637108,
+ -1.5768260572413135,
+ -2.205284735654946,
+ -2.7254653728243583,
+ -1.5672941603321884,
+ 1.0489917475687152,
+ 2.2636152476283913,
+ 2.032940424383824,
+ 1.683761241616742,
+ 0.7670561786895354,
+ 0.6153525553413456,
+ -0.07803526693224344,
+ -1.65211196452487,
+ -2.1476134071192075,
+ -0.7135989650515754,
+ 0.6271439434590821,
+ 1.7028799624616053,
+ 2.028827558833746,
+ 1.4803134699790288,
+ 0.42892754832444174,
+ 0.20449884512465055,
+ -0.41602421584297716,
+ -1.9849286694493813,
+ -1.9281804130661955,
+ 0.6613305897318392,
+ 1.8962483813803275,
+ 1.885577766618543,
+ 1.9549206999624247,
+ 1.227255293023269,
+ 1.9726563626153588,
+ 1.8649648840977626,
+ 1.1305237032122812,
+ 1.097299818721884,
+ 0.2509541480530676,
+ -1.7615394266123856,
+ -2.4351232271480554,
+ -1.0490590147644825,
+ 0.2642458122198153,
+ 1.5044184969268772,
+ 2.104408970111728,
+ 1.5534233288802322,
+ 0.1355232568322704,
+ -0.5994812905003222,
+ -1.3810908385696514,
+ -2.0139770227338163,
+ -1.7815900946556464,
+ -0.7609768350635284,
+ 0.5800500864011673,
+ 1.7421545578285857,
+ 2.354040970799835,
+ 1.6348893645758151,
+ -0.1315716386289284,
+ -1.0145172839730028,
+ -1.601666576694,
+ -2.040381885614226,
+ -1.8014029067911372,
+ -2.0454021331444343,
+ -1.0197230195164633,
+ 1.8875942666903647,
+ 2.794903607455547,
+ 1.6642245658748254,
+ 0.57075989139739,
+ -0.7728646330335358,
+ -1.7785737915898743,
+ -2.012905859008215,
+ -1.5748559472281631,
+ -2.7823576692848158,
+ -1.8273576152893478,
+ 3.3303158901343566,
+ 4.623856704555944,
+ 1.7655995598393033,
+ 0.74830703596957,
+ -0.5953422370320162,
+ -1.6795556750877574,
+ -2.034443856997847,
+ -1.7111298699619364,
+ -1.911995924602153,
+ -0.9087291668698685,
+ 1.9048550596621971,
+ 2.7722575490652446,
+ 1.5826891635489595,
+ 0.441182237395643,
+ -0.8612583066555362,
+ -1.3835918868080834,
+ -1.2424321709827426,
+ -0.6980732705386824,
+ -0.3454955279692866,
+ 0.7870495563092613,
+ 1.7855809785500318,
+ 2.0186653834353456,
+ 1.360019657746764,
+ 0.12099449608926906,
+ -1.1730451231361245,
+ -1.7394832078141886,
+ -1.4057300148323408,
+ -0.4471701421332747,
+ 0.08845356605490622,
+ 1.0751149809536282,
+ 1.9196862214560384,
+ 2.1316754068752224,
+ 2.562799035048747,
+ 1.422852671105247,
+ -1.5730630159456167,
+ -2.695842226617505,
+ -1.96633407376523,
+ -1.2037136907895227,
+ 0.0804857924237155,
+ 1.3326885172225729,
+ 2.0035888720872705,
+ 2.0102630754390054,
+ 2.6166466586821,
+ 1.2098207161823202,
+ -1.5761769132085728,
+ -1.6924921130472876,
+ -0.9909229459757439,
+ -0.8382618276130039,
+ 0.49566460757092834,
+ 1.6162132300232805,
+ 2.044776444198256,
+ 1.5706023782960188,
+ 0.42429025891956856,
+ -0.8776799029329191,
+ -1.4304710080468224,
+ -1.3072637499751947,
+ -0.6800729175946508,
+ -0.3295691274652368,
+ 0.8022352153514409,
+ 1.7924458792141693,
+ 2.194354695144066,
+ 2.6447568972243882,
+ 1.4272231498072783,
+ -1.275905745081222,
+ -2.5099307150101127,
+ -2.023033364235852,
+ -1.4352465534035856,
+ -0.22679448206317648,
+ 1.0852826443169676,
+ 1.9220321653472412,
+ 2.123895482172344,
+ 2.5030950698323924,
+ 1.26900816615204,
+ -1.4327594544984874,
+ -2.649002519180249,
+ -1.9605404969147933,
+ -1.191189392644168,
+ -0.0142555321152353,
+ 0.35805762946322367,
+ 0.7141686654441443,
+ 1.3598653684760953,
+ 1.4330728398602948,
+ 0.02031891824440091,
+ -1.2501576797146308,
+ -1.9869295416848605,
+ -1.8474014166322457,
+ -0.9144982709088417,
+ 0.33598159389869375,
+ 1.3607150624702755,
+ 1.194484125539757
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.267617697989711,
+ 4.453329722906559,
+ 1.419265849904202,
+ 0.2079067600071278,
+ -1.097723936956396,
+ -1.921731036188127,
+ -1.9140159910273942,
+ -1.2642638747127515,
+ -1.281812571998264,
+ -0.4188603694793085,
+ 1.8776728296844873,
+ 2.541640276285033,
+ 1.1720409988157003,
+ -0.11243861693366738,
+ -1.3742430956103895,
+ -1.9612255003511003,
+ -1.4958693087961965,
+ -0.2588349016951071,
+ 0.3976979254580572,
+ 1.2608073426889976,
+ 1.9774005293633319,
+ 1.8448096312802231,
+ 0.896316941283218,
+ -0.4312542582991701,
+ -1.6296492823286628,
+ -2.235621290206296,
+ -1.59568055019392,
+ 0.006475678481421394,
+ 0.8195519781028726,
+ 1.497510054086635,
+ 2.0274236580051572,
+ 1.8850384128488094,
+ 2.1643606611850794,
+ 1.0622294924014244,
+ -1.7518250074823767,
+ -2.775078958992769,
+ -1.7408324489168086,
+ -0.7122368490484102,
+ 0.6272126381241488,
+ 1.6931278324890506,
+ 2.0240101569305664,
+ 1.6799056462783897,
+ 2.069073433011131,
+ 0.7868398676110524,
+ -1.865929860493138,
+ -1.9362683008268178,
+ -0.5484862447498171,
+ -0.027885460558365223,
+ 0.995645446333382,
+ 1.8808088148066244,
+ 1.9590602237269086,
+ 1.2164867615089334,
+ 1.9611665436233647,
+ 2.0567636502747875,
+ 2.4388141934269827,
+ 1.3073138206569406,
+ -1.6387946002088671,
+ -2.732390599526692,
+ -1.8992228454983502,
+ -1.0469521635857846,
+ 0.1656023719578204,
+ 0.5564829120365362,
+ 0.8123379417044314,
+ 1.1418643570577791,
+ 1.1848122193277424,
+ -0.1454752160075598,
+ -1.3706451246627853,
+ -2.0100233453589134,
+ -1.7626240433914195,
+ -0.7590139210061353,
+ 0.5108489664258151,
+ 0.970763248243654,
+ 1.0331761022406927,
+ 0.9344762706727792,
+ 0.7825091247743943,
+ -0.46359887974423575,
+ -1.5896518530715564,
+ -2.1968516992731746,
+ -2.7806373373305573,
+ -1.7959167460836722,
+ 1.2734003483432828,
+ 2.3293982675339557,
+ 2.0240900093108927,
+ 1.6555870199840133,
+ 0.5723378637215927,
+ -0.7669376248813592,
+ -1.7675822716200495,
+ -2.187051868368509,
+ -4.450725258005936,
+ -3.1530975619580435,
+ 2.422309452665887,
+ 3.555398357617591,
+ 2.0050349508016447,
+ 1.7559952278952617,
+ 0.749414702333779,
+ -0.5912612013645322,
+ -1.6688271392610396,
+ -2.1992372871832493,
+ -2.75871229215666,
+ -1.7493867228384952,
+ 1.3655082653585782,
+ 2.4272035548637607,
+ 2.027993217186135,
+ 1.5763620399683338,
+ 0.5919455716707328,
+ 0.3835441212479862,
+ -0.266346846464708,
+ -1.488719645087038,
+ -1.9474033666170338,
+ -0.5523823143216846,
+ 0.7797170740432073,
+ 1.7810435870168042,
+ 1.997825720432973,
+ 1.3541938790080879,
+ 0.24887761727198163,
+ -0.04751676439706971,
+ -0.5242074855394842,
+ -1.3502716885475905,
+ -1.622741026064953,
+ -0.23709432646270345,
+ 1.0650286454872346,
+ 2.025905890362194,
+ 2.6703085355736214,
+ 1.8034871297800854,
+ -0.6644204329023201,
+ -1.6615332386853618,
+ -1.864148227757995,
+ -1.9548586394243495,
+ -1.2036657094677738,
+ 0.0817227627864966,
+ 1.3234478328331776,
+ 2.1357228422422416,
+ 3.050555984231937,
+ 1.8008847496366684,
+ -0.4145499074121227,
+ -0.600901569405265,
+ -1.7316843079661408,
+ -2.4958349727189755,
+ -0.8387251032434316,
+ 0.4932020978725419,
+ 1.6177935090700024,
+ 2.0303450568352677,
+ 1.5672064966303665,
+ 0.5730443771193678,
+ 0.36402467325607735,
+ -0.2423264608414456,
+ -1.5730761522473524,
+ -1.971788636789538,
+ -0.5358016884186161,
+ 0.7974975107881949,
+ 1.87944284233656,
+ 2.4878986234482166,
+ 1.6621026220946005,
+ -0.3201876676925321,
+ -1.2921878052617222,
+ -1.7282196838835102,
+ -2.0169832289925904,
+ -1.4378401527912372,
+ -0.22146401705239302,
+ 1.0820597246678434,
+ 2.0378519399681188,
+ 2.631756443960085,
+ 1.6718501750488766,
+ -0.5765569728950939,
+ -1.6557903296433865,
+ -1.8761509032223163,
+ -1.9561086066229867,
+ -1.3823935448840678,
+ -1.4453302512651187,
+ -0.5426173016398881,
+ 1.8952921669834626,
+ 2.6134948497430313,
+ 1.2794960923982466,
+ 0.021221309362677368,
+ -1.2510747157770403,
+ -1.9738622734889,
+ -1.8431851878266914,
+ -1.0927955054775216,
+ -1.6759502338764212,
+ -1.0007529856951467
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.952361525166298,
+ 4.218401961472424,
+ 2.0126832692650694,
+ 1.4155563305680319,
+ 0.20622442671361346,
+ -1.0976489978503052,
+ -1.9209346213173828,
+ -2.109539903040999,
+ -2.5442199141302586,
+ -1.4812388580821978,
+ 1.6762764433380506,
+ 2.712654178942903,
+ 1.94736578599425,
+ 1.1704479102052452,
+ -0.007195906538663026,
+ -0.3637586853966848,
+ -0.7058097815559267,
+ -1.2277886072623139,
+ -1.3591671592488141,
+ -0.0005211786173719944,
+ 1.2607567321104305,
+ 1.9837296260682238,
+ 1.8317734521131195,
+ 0.8932527565394404,
+ -0.3557863440840724,
+ -0.7861584727613362,
+ -0.9369137369003595,
+ -1.0327014786046746,
+ -0.9688658471793105,
+ 0.3205055596407695,
+ 1.4962026905283436,
+ 2.1848874029586076,
+ 2.7724460063980763,
+ 1.7384719640988138,
+ -1.0967413449140557,
+ -2.204108250760309,
+ -2.0125506969029927,
+ -1.7371072629027131,
+ -0.7121664643259701,
+ 0.6304593154982385,
+ 1.693116992889578,
+ 2.20028451119346,
+ 3.0318953204037893,
+ 1.6438774806852052,
+ -0.9442926052468674,
+ -1.1106884444431153,
+ -1.5150537281507181,
+ -1.9287057389878537,
+ -0.3177122326132202,
+ 0.9973891666959429,
+ 1.887869120151765,
+ 1.9462574586829902,
+ 1.2124634911229226,
+ 2.092062461159349,
+ 2.7224619495473994,
+ 1.794628925212402,
+ -0.8112215293509687,
+ -1.8515376476109724,
+ -1.9267185403183273,
+ -1.8997011554683836,
+ -1.2366424477841536,
+ -1.2219283653627904,
+ -0.274127134151608,
+ 1.6506845217616593,
+ 2.4485236648280444,
+ 1.1455101502487142,
+ -0.14099183433555382,
+ -1.371740351583718,
+ -1.9995218074965257,
+ -1.7634311775281348,
+ -0.933155768879229,
+ -0.822326909780986,
+ -0.009813393517506087,
+ 1.591939479061128,
+ 2.232082522025312,
+ 0.8673734711963634,
+ -0.457178586059308,
+ -1.6441666628221931,
+ -2.3144054112684196,
+ -1.7943546621218747,
+ 0.11457905395617782,
+ 0.8637535058110549,
+ 1.5104100164713314,
+ 2.0212613131920607,
+ 1.6632266324388858,
+ 0.5689424334126157,
+ -0.7627042044508436,
+ -1.8540597030089037,
+ -4.193125783595641,
+ -3.113544861736041,
+ 0.4767638990417497,
+ 0.9625195592063129,
+ 1.3798367338094273,
+ 2.0017539878733164,
+ 1.7636234052939244,
+ 0.7451925876604938,
+ -0.586880294219387,
+ -1.7376394149579684,
+ -2.412745786145302,
+ -1.8319403740481173,
+ 0.2414402562729278,
+ 1.0391945913577574,
+ 1.5975692879174574,
+ 2.0261998229989078,
+ 1.7817594966573918,
+ 1.9751686399802797,
+ 0.8186722403055592,
+ -1.6337826018297952,
+ -2.701483770830739,
+ -1.6461262801395522,
+ -0.5559266857983522,
+ 0.7780261348492412,
+ 1.771762318978987,
+ 1.9971255354084991,
+ 1.555295130707495,
+ 1.6549639762331585,
+ 0.577821215004562,
+ -1.66673477987142,
+ -2.6252420844626942,
+ -1.4395163270047873,
+ -0.24313227815561322,
+ 1.048546630846972,
+ 1.627541314408245,
+ 1.4054301284232364,
+ 0.5249344562493309,
+ 0.08203606043519103,
+ -0.9599929945738714,
+ -1.859965576436499,
+ -1.9620577744148993,
+ -1.1970751572699037,
+ 0.07752034333393995,
+ 1.3409549030971983,
+ 2.168563904852203,
+ 1.6131424279481827,
+ 0.9187262837994273,
+ 0.742979685996654,
+ -1.7225521247253373,
+ -3.069137021651381,
+ -1.8041757199986392,
+ -0.8355472769166653,
+ 0.49681393292575965,
+ 1.613263843955626,
+ 2.0286776726466895,
+ 1.7685294556525333,
+ 1.9912495416002514,
+ 0.9206808956202754,
+ -1.7835753451870582,
+ -2.7554441885737613,
+ -1.6352958436531746,
+ -0.5349497380223761,
+ 0.7572274067684204,
+ 1.2608513211393786,
+ 1.1800193860694412,
+ 0.7677639546852889,
+ 0.47472355270521954,
+ -0.6910893535899115,
+ -1.7269329720511086,
+ -2.0227360754527015,
+ -1.4251839346570903,
+ -0.21883447176063087,
+ 1.074959380026925,
+ 1.6266148813996446,
+ 1.352544098041778,
+ 0.5228383996392222,
+ 0.04445020144423492,
+ -0.9845191797497261,
+ -1.8743699015505388,
+ -2.147329582042518,
+ -2.6158627176642204,
+ -1.5584045793875023,
+ 1.6115925462697198,
+ 2.6617917659249666,
+ 1.9804122986497743,
+ 1.2759922609337375,
+ 0.0190796934118058,
+ -1.2497752381197584,
+ -1.9728680565202517,
+ -2.042694816492185,
+ -3.973224411900023,
+ -2.7522346159136073
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.7122264482088283,
+ 2.693188726749349,
+ 2.092626970251527,
+ 2.376494412370542,
+ 1.6375509574510054,
+ 0.17263534874394815,
+ -1.356788700664723,
+ -2.4489635185654084,
+ -3.231717298838587,
+ -2.2563115421135977,
+ 0.946514395741161,
+ 2.1005828414416197,
+ 2.255007287869873,
+ 2.290510898623337,
+ 1.5599228996230394,
+ 1.5733280072823503,
+ 0.4088334491678845,
+ -1.9713887149533287,
+ -2.965631909391861,
+ -1.4443164863138964,
+ 0.06489179880736912,
+ 1.551994704320024,
+ 2.357157741780159,
+ 2.143513387529242,
+ 1.2084690466015862,
+ 1.1072893125770111,
+ 0.09625271935963779,
+ -1.91479239710757,
+ -2.727687155686643,
+ -1.122360845962417,
+ 0.44248823227942896,
+ 1.8774747341947715,
+ 2.642919295931658,
+ 1.9948959444959526,
+ -0.02019384647097312,
+ -0.8940669666515567,
+ -1.7242577954726146,
+ -2.3930427373867422,
+ -2.0333812734781427,
+ -0.7738228414622459,
+ 0.8100921117003127,
+ 2.140745953668196,
+ 3.231199026491812,
+ 2.135444349622835,
+ 0.3920007857006918,
+ 0.16519378407524402,
+ -2.1703737843085547,
+ -3.530356779220053,
+ -1.7266089002062508,
+ -0.31096594525479976,
+ 1.2441502821727852,
+ 2.2535953439126586,
+ 2.287407811862261,
+ 1.5544450526912272,
+ 2.2364166387271833,
+ 1.8180484621644522,
+ 0.37775883488977063,
+ -0.2917505848811771,
+ -1.384408353421215,
+ -2.31017309009929,
+ -2.473631169052881,
+ -2.8939280970235304,
+ -1.4362592497547655,
+ 1.741591929064339,
+ 3.1660176326326703,
+ 2.282271381577246,
+ 1.3086855371989181,
+ -0.23253044398856457,
+ -1.6752500641920576,
+ -2.388111794922639,
+ -2.3083317624555577,
+ -2.630135979348697,
+ -1.2008902858106651,
+ 1.8705038428305516,
+ 3.2268028278120826,
+ 2.1327421591114617,
+ 0.975411060409174,
+ -0.5218182561398526,
+ -1.0914254454950787,
+ -1.2581960805256747,
+ -1.2461452729237095,
+ -1.0713262090346978,
+ 0.47254726006552156,
+ 1.8379342167453914,
+ 2.4167401520166494,
+ 1.9288034696546776,
+ 0.6148035029480404,
+ -0.9207050551681757,
+ -2.6494896715333023,
+ -2.1410340078737677,
+ -1.8924518451296237,
+ -2.292415469893652,
+ 0.2531942451594295,
+ 1.6869600918843306,
+ 2.3994572180245957,
+ 2.053221719641228,
+ 0.8264934842242074,
+ -0.6917287048792894,
+ -1.2981566452198186,
+ -1.3808837776658456,
+ -1.117278993687311,
+ -0.8592564044622683,
+ 0.6290598979330994,
+ 1.937752882355914,
+ 2.613220873890436,
+ 3.2090171956427933,
+ 1.8169809305603672,
+ -1.3132967267716893,
+ -2.760223814178889,
+ -2.4079997894382297,
+ -1.9193939188490243,
+ -0.6019148342686711,
+ 0.9853260838325533,
+ 2.1383883674500654,
+ 2.587683915361635,
+ 3.1110768641505904,
+ 1.6673281987558357,
+ -1.5326533482311901,
+ -2.9910773363636554,
+ -2.3873326284777305,
+ -1.6682890888773487,
+ -0.38258444869737906,
+ -0.05089617300644329,
+ 0.5311943221692987,
+ 1.7301612008423677,
+ 2.0536172016009284,
+ 0.3609632745641238,
+ -1.1974239830521503,
+ -2.245940661875779,
+ -2.304528572567347,
+ -1.3718852605093699,
+ 0.031770421671489385,
+ 0.513058747804967,
+ 0.9178131387371578,
+ 2.17143927048276,
+ 2.0601713935444894,
+ -1.1991105925559855,
+ -2.811437081178677,
+ -2.3721171255992584,
+ -2.10784897391071,
+ -0.9344218917011636,
+ 0.6553545584974232,
+ 1.9528100205358583,
+ 2.610426820556481,
+ 3.261070834118967,
+ 1.9778909386175016,
+ -1.4933919280013177,
+ -2.8319731170529776,
+ -2.406981577344525,
+ -1.9010052952950856,
+ -0.7529758668219375,
+ -0.5193451107227892,
+ 0.27671923778314567,
+ 1.784591357658949,
+ 2.3560836662539986,
+ 0.7020131988094476,
+ -0.8805941756414132,
+ -2.0899331031393027,
+ -2.3787563986340836,
+ -1.6429092073039215,
+ -0.34747565477233705,
+ -0.008473108669174131,
+ 0.5842114260392605,
+ 1.6257054510795403,
+ 1.9776235703879828,
+ 0.3294040142196645,
+ -1.2225975788948364,
+ -2.383528833318794,
+ -3.1768490668225313,
+ -2.257160614620807,
+ 0.8068750223061643,
+ 1.924384681260076,
+ 2.1930313846854923,
+ 2.332437049670727,
+ 1.4674520023600535,
+ -0.04865916943347919,
+ -1.53379588495796,
+ -2.521798624980489,
+ -5.419856601641566,
+ -3.937672666409395
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.5831684658055297,
+ 1.083546928349303,
+ 1.3363642394525013,
+ 1.8577396849129595,
+ 1.5807293466273207,
+ 0.6041555866078709,
+ -0.6256997557874997,
+ -1.6600191976307903,
+ -2.2842466549284195,
+ -1.710139345131558,
+ 0.30509159426557797,
+ 1.070853271049112,
+ 1.5266317030768148,
+ 1.8663074039474807,
+ 1.5853890837714617,
+ 1.7383507866863963,
+ 0.6906343315605188,
+ -1.5201397651124964,
+ -2.4774729472883994,
+ -1.4650877635455153,
+ -0.4269291553364082,
+ 0.7991972214097549,
+ 1.6754447991439478,
+ 1.8255162414060695,
+ 1.3650771236539003,
+ 1.4306379809757253,
+ 0.4638407380536325,
+ -1.538970597929856,
+ -2.3886206925426925,
+ -1.2639290180303493,
+ -0.13587270041472738,
+ 1.0507820600773123,
+ 1.5976963845874557,
+ 1.344388634249216,
+ 0.40817133173289577,
+ -0.04558090958337464,
+ -0.9626974860790105,
+ -1.7488508531214366,
+ -1.7845621595860073,
+ -1.0314735788674343,
+ 0.16010608324422698,
+ 1.3118586529634684,
+ 2.093114140104834,
+ 1.5239504245233817,
+ 0.7667675710387571,
+ 0.6017022620177912,
+ -1.6097374915136666,
+ -2.827795706720572,
+ -1.6275054199640593,
+ -0.7053086181710649,
+ 0.5243494317977438,
+ 1.5256327008353074,
+ 1.8643259043551677,
+ 1.58168942325409,
+ 1.7654490239194938,
+ 1.1430243968808065,
+ 0.7003083292886294,
+ 0.42768104609739016,
+ -0.6514598064874827,
+ -1.6012285774956387,
+ -2.026215658517027,
+ -2.458367410865716,
+ -1.3499752211614944,
+ 1.1217175572736198,
+ 2.2549959632018877,
+ 1.8676953359975952,
+ 1.382796985889761,
+ 0.3002337291197144,
+ -0.9180698861296326,
+ -1.7335600769148276,
+ -1.9771325751277284,
+ -2.3469275919974164,
+ -1.214494332864993,
+ 1.2754619596327261,
+ 2.4012599607979186,
+ 1.8247034477905844,
+ 1.168262982028192,
+ 0.1132219920666739,
+ -0.202695851974205,
+ -0.5751489333365942,
+ -1.309024577378533,
+ -1.4244795981752725,
+ -0.11093007055123782,
+ 1.0746203112628767,
+ 1.801768641833914,
+ 1.7344442584085389,
+ 0.9218325509916884,
+ -0.20942123158667955,
+ -1.0490922851519844,
+ -0.9552046404666289,
+ -2.106276181641817,
+ -2.7019053940999527,
+ -0.2824342816997585,
+ 0.9290778283464596,
+ 1.7449946841121615,
+ 1.7917828886619793,
+ 1.067876508709529,
+ -0.022622278785602225,
+ -0.37399301847055216,
+ -0.6849277185034811,
+ -1.2278706771284609,
+ -1.277900810239145,
+ 0.013789445286454606,
+ 1.1739578583357444,
+ 1.9547745503001746,
+ 2.483630420938027,
+ 1.5233914119995149,
+ -0.6938089342231858,
+ -1.7444398856260062,
+ -1.7995852827092507,
+ -1.729985104553884,
+ -0.9147451422713707,
+ 0.3071465382027343,
+ 1.388870763603873,
+ 2.0173799434045647,
+ 2.5094188846708914,
+ 1.4657014100639827,
+ -0.9034718626930635,
+ -2.0084448541839337,
+ -1.8593711485598106,
+ -1.5974886442011467,
+ -0.7979619642352241,
+ -0.6877553614580716,
+ -0.010400245560809904,
+ 1.5501179205929827,
+ 2.051376616438303,
+ 0.7414158774020398,
+ -0.48785039534436636,
+ -1.511691501799569,
+ -1.8701216229513469,
+ -1.422106356014875,
+ -0.491876791232175,
+ -0.32706791335712665,
+ 0.30064930625514524,
+ 1.843891303835829,
+ 1.7996977378017882,
+ -0.5432692570796424,
+ -1.6527000329308337,
+ -1.7014072256531263,
+ -1.8118878795642603,
+ -1.1421704196550804,
+ 0.034331831930898775,
+ 1.1882653823065175,
+ 1.9571099700206738,
+ 2.530152620476248,
+ 1.6467685056107682,
+ -0.8179731454868006,
+ -1.7961405146149354,
+ -1.8027843643056596,
+ -1.719528363918231,
+ -1.0598710845117614,
+ -1.0196875724615495,
+ -0.18046962431330563,
+ 1.5104285287805688,
+ 2.2047547557608826,
+ 0.9823182787781763,
+ -0.21841517960474666,
+ -1.3297019694389944,
+ -1.8562711410143926,
+ -1.5812371518895914,
+ -0.7726666710791601,
+ -0.6443541666876347,
+ 0.0640571422391839,
+ 1.4449642031571366,
+ 1.9889703371676566,
+ 0.7189842356306313,
+ -0.5077595569280697,
+ -1.5788640290907592,
+ -2.200579926843268,
+ -1.680841053280426,
+ 0.18870577648308845,
+ 0.9119757095202891,
+ 1.4508395213747942,
+ 1.8675912297205923,
+ 1.481305449524079,
+ 0.4391054708589696,
+ -0.7849792047381703,
+ -1.760038123960787,
+ -3.9456392346048004,
+ -2.9191514920727006
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.0784606979123783,
+ 0.23412982303952923,
+ 1.245144771680668,
+ 2.1453776855377793,
+ 2.124763344611656,
+ 1.1648011885294889,
+ -0.28960425671175594,
+ -1.6638112999436627,
+ -2.396971155869748,
+ -1.9215120937864574,
+ -0.0805355158683448,
+ 0.6680100625329217,
+ 1.5279205788888133,
+ 2.230714707866314,
+ 2.1951948364693035,
+ 2.513684863883591,
+ 1.1669484937290258,
+ -1.7346772896271885,
+ -3.0195493990039015,
+ -2.026470986951284,
+ -0.968548493752003,
+ 0.5107728898970659,
+ 1.7684273927052896,
+ 2.2573950223859947,
+ 1.994952237568329,
+ 2.214670741109184,
+ 0.9225166039478908,
+ -1.819214420178278,
+ -3.013657479333078,
+ -1.8444586487144776,
+ -0.6365248543342839,
+ 0.7984764940510761,
+ 1.3788558912166886,
+ 1.3384558475809043,
+ 0.8934279564973444,
+ 0.5977604630464871,
+ -0.7282991602727278,
+ -1.8983498839093502,
+ -2.2550359860292577,
+ -1.6158338369812695,
+ -0.286140268589681,
+ 1.1550024133977541,
+ 1.9863719426081514,
+ 1.6152011538944535,
+ 1.3437612902481406,
+ 1.1653167768846053,
+ -1.7724911897149198,
+ -3.333390249352869,
+ -2.1560419372153126,
+ -1.2746652196899115,
+ 0.159322331243138,
+ 1.526871707125276,
+ 2.228868929326512,
+ 2.191501604622585,
+ 2.555576010452982,
+ 1.3102160484993062,
+ 1.2119336962919867,
+ 1.1467099348730008,
+ -0.3235036756541132,
+ -1.6454003559660075,
+ -2.4320679895724053,
+ -3.0342663579121547,
+ -1.7852082848914885,
+ 1.056759249995471,
+ 2.3852019266555655,
+ 2.240111734624034,
+ 1.9550662364213311,
+ 0.8265671372758316,
+ -0.6704721605273223,
+ -1.869307006839893,
+ -2.4551602685668286,
+ -2.999918214652984,
+ -1.677043815221413,
+ 1.2870428360708575,
+ 2.6524175087512125,
+ 2.264029433524465,
+ 1.7531007835298837,
+ 0.6495535594579911,
+ 0.4134949084687098,
+ -0.25762841313241225,
+ -1.8450989076928912,
+ -2.229414704080403,
+ -0.6062817212120476,
+ 0.8805085657343361,
+ 1.99370025169177,
+ 2.228648057615053,
+ 1.5038178636096997,
+ 0.2661756283055466,
+ -0.19404766296244838,
+ -0.38784472646675044,
+ -3.0565075495899103,
+ -4.026064604772996,
+ -0.8043729809772552,
+ 0.685030556127912,
+ 1.8850659508125238,
+ 2.255122931634195,
+ 1.6531240892600332,
+ 0.4896670846643936,
+ 0.2060267218298134,
+ -0.3982139390699319,
+ -1.7708750233273043,
+ -2.079253970021477,
+ -0.459890990249868,
+ 1.0164386947584971,
+ 2.1698132149065583,
+ 2.8433843451351843,
+ 1.861831623091874,
+ -0.4699092383207087,
+ -1.6031186538511422,
+ -1.9958072762938048,
+ -2.226381978738385,
+ -1.498607426400708,
+ -0.10632028466953374,
+ 1.322440601613113,
+ 2.3243101028527895,
+ 2.9750566400830922,
+ 1.8542391777152927,
+ -0.7500528232804132,
+ -1.9911699172650574,
+ -2.140451738085574,
+ -2.136880689906118,
+ -1.4181682213311864,
+ -1.4393093778435526,
+ -0.4357469754465451,
+ 1.9868675063639278,
+ 2.8130326229681777,
+ 1.3134000252831828,
+ -0.11719923998353553,
+ -1.5028505177212927,
+ -2.228008319513249,
+ -1.9904119958123396,
+ -1.0824334017343484,
+ -1.102581288093678,
+ -0.06775226326936916,
+ 2.275175381917792,
+ 2.2667337524489923,
+ -0.23505699681205583,
+ -1.3659900440868173,
+ -1.8126135036677418,
+ -2.255843492227683,
+ -1.728891121249535,
+ -0.43618028070864345,
+ 1.0354874845296431,
+ 2.177009214322901,
+ 2.9029134186551335,
+ 2.0019139684674663,
+ -0.5967534647719889,
+ -1.6584567484697297,
+ -2.003478429999972,
+ -2.2182069440916483,
+ -1.6931220515140317,
+ -1.7885278240129139,
+ -0.6034202097369484,
+ 1.8591626833689545,
+ 2.907467539117869,
+ 1.5660158052587438,
+ 0.21562044564165112,
+ -1.2329151388218527,
+ -2.1404588919837435,
+ -2.121685780732104,
+ -1.3910965514396945,
+ -1.378995637417148,
+ -0.3168957430769856,
+ 1.842038499705081,
+ 2.7379775492859255,
+ 1.2897238828847926,
+ -0.14042030619151524,
+ -1.5402211014829001,
+ -2.2597572205674563,
+ -1.8578502791415086,
+ -0.22213722177191503,
+ 0.463486921841275,
+ 1.413171055396108,
+ 2.200848592452333,
+ 2.043340184257285,
+ 0.9820994309272807,
+ -0.4943618936340063,
+ -1.8222063841399003,
+ -4.266712102510145,
+ -3.2128571116143907
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.605559292126302,
+ -5.058639427546786,
+ -2.108895314154928,
+ -1.1419358224102019,
+ 0.3207722633613209,
+ 1.6457617870130303,
+ 2.2543603421266063,
+ 2.1139489056830385,
+ 2.444615542582066,
+ 1.281856886519968,
+ -2.0568161891735666,
+ -3.1138719962620898,
+ -1.95358166239973,
+ -0.8214103382045779,
+ 0.5988188029456584,
+ 1.1173323582245147,
+ 1.1706076270576242,
+ 1.0243646878407746,
+ 0.8384922481711702,
+ -0.5440958077182658,
+ -1.7910384934721808,
+ -2.27114837281786,
+ -1.7485921431314981,
+ -0.47769688929649046,
+ 0.968217198171973,
+ 1.549794047330062,
+ 1.3854869673463857,
+ 0.7647874277453122,
+ 0.36621320581442995,
+ -0.8849281289306746,
+ -1.987643376870388,
+ -2.438036334839873,
+ -2.995382478771384,
+ -1.7508931023248033,
+ 1.5717133350881465,
+ 2.8366936775197784,
+ 2.2476662681932784,
+ 1.5987335976276338,
+ 0.2584750173820513,
+ -1.1997871818627284,
+ -2.1325317850693115,
+ -2.3608928945132197,
+ -3.1470751104876356,
+ -1.5616547923999602,
+ 1.5076789957172418,
+ 1.6617333438001065,
+ 1.3629697518386228,
+ 1.4456084525561024,
+ -0.1938229050822003,
+ -1.5535702100048392,
+ -2.249234556339379,
+ -1.952517870930958,
+ -0.8182833279140438,
+ 0.6035989659782918,
+ 1.1464490608166256,
+ 1.211891921588097,
+ 1.310680292018188,
+ 2.5561967300176995,
+ 2.2522702141073654,
+ 1.864132946604411,
+ 0.8476516783506922,
+ 0.6679123349875977,
+ -0.14705933649204428,
+ -1.7200332841042691,
+ -2.331596736545024,
+ -0.7886078221822111,
+ 0.6967143925458673,
+ 1.8876173726275718,
+ 2.247394341024237,
+ 1.6384993482093537,
+ 0.4729823828554754,
+ 0.19199125165538533,
+ -0.4388852936045901,
+ -1.5868081548395183,
+ -1.9969839260339033,
+ -0.44449281598485374,
+ 1.0263053997355827,
+ 2.1707889938131086,
+ 2.921074079502747,
+ 2.109274154197444,
+ -0.6350848504570895,
+ -1.6479629216932352,
+ -1.9967629056570504,
+ -2.2173264168981297,
+ -1.4834034673779668,
+ -0.09167718507407913,
+ 1.330234585664251,
+ 2.3225653629779175,
+ 5.038725956802888,
+ 3.6759059571858286,
+ -1.4004479190149368,
+ -2.2508236333261844,
+ -1.8914828610457843,
+ -2.246189712794315,
+ -1.6344979254228538,
+ -0.2985460984562957,
+ 1.156901786496881,
+ 2.241296559861739,
+ 2.9847010671768817,
+ 2.1171182480525763,
+ -0.7691558703497262,
+ -1.8206035634600224,
+ -2.06323269215372,
+ -2.186785118363501,
+ -1.5799737860779448,
+ -1.6337314200589346,
+ -0.49347791447262984,
+ 1.8572608693741068,
+ 2.8489436272281794,
+ 1.4620744217013217,
+ 0.07648495984865832,
+ -1.3474386387429125,
+ -2.179676106380035,
+ -2.069230173741351,
+ -1.263492288503623,
+ -1.2095747989826138,
+ -0.20309951700549628,
+ 1.8219633502008332,
+ 2.6520682895148804,
+ 1.1723477691186184,
+ -0.2792224396267302,
+ -1.6542553079426865,
+ -2.3628961242171203,
+ -1.8234658058097917,
+ -0.10323882912626016,
+ 0.6565653726020847,
+ 1.5185795380711256,
+ 2.2266811915073954,
+ 1.9781580279115196,
+ 0.8544670783987234,
+ -0.6291554033962276,
+ -1.9190204211349917,
+ -2.929238336666136,
+ -1.976728784526034,
+ -0.5038441913685305,
+ -0.2927389370482019,
+ 2.0281658874383983,
+ 3.359055792728325,
+ 1.7032098981226356,
+ 0.4080525555242725,
+ -1.0679193885953475,
+ -2.0759125551680944,
+ -2.184672363980174,
+ -1.5619804289726311,
+ -1.6372608016823709,
+ -0.5796723431493962,
+ 2.0050286944331486,
+ 2.899583008996876,
+ 1.4468670448127883,
+ 0.05321604867378033,
+ -1.3744717878169679,
+ -2.0115688120765784,
+ -1.5948650082154905,
+ -0.4323886176828792,
+ 0.2051789708746278,
+ 1.2600070378719976,
+ 2.154629819701628,
+ 2.1243889678240317,
+ 1.154946939539019,
+ -0.30463474249355843,
+ -1.6790442109856156,
+ -2.345557491526732,
+ -1.727307871849502,
+ -0.13962551496588135,
+ 0.6820162652647043,
+ 1.541992188855367,
+ 2.2379284048281995,
+ 2.1930524722074805,
+ 2.568482429511651,
+ 1.3926570393218716,
+ -2.016348626291265,
+ -3.107098078669441,
+ -2.024549538156652,
+ -0.957580019244922,
+ 0.5260984304837492,
+ 1.7813483338361236,
+ 2.2623731982768223,
+ 1.990215804767732,
+ 3.6769811309281413,
+ 2.4778553158045646
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.7655407387506985,
+ -3.9415304426226085,
+ -1.8480400137441466,
+ -1.2633118945198347,
+ -0.13202132101119504,
+ 1.0607913281382446,
+ 1.7895991207749047,
+ 1.9266747265305477,
+ 2.31246920617751,
+ 1.3312139719257323,
+ -1.5712353915449946,
+ -2.5197528955584887,
+ -1.778787834537428,
+ -1.0314510027484123,
+ 0.06975336390401743,
+ 0.4126230646091049,
+ 0.6941083161590295,
+ 1.0993587940384715,
+ 1.1854402617892146,
+ -0.0576871954433515,
+ -1.2078201754911153,
+ -1.8420237272093023,
+ -1.6636945523108226,
+ -0.7712430830042397,
+ 0.39027190860040656,
+ 0.7993901956719309,
+ 0.9033958771201847,
+ 0.9143400987513254,
+ 0.8203054878597962,
+ -0.35292941681055573,
+ -1.418656569499009,
+ -2.0220389651804065,
+ -2.555307416415316,
+ -1.5887112884585635,
+ 1.0521517467520276,
+ 2.0801156225839867,
+ 1.8627536749609475,
+ 1.5713611873802438,
+ 0.6018225161969429,
+ -0.6364692880938675,
+ -1.592901430135478,
+ -2.0262145467967745,
+ -2.780700163968567,
+ -1.4922302453526404,
+ 0.9223947239991047,
+ 1.0730116527641884,
+ 1.3671416317225256,
+ 1.7094954449719868,
+ 0.2354711314835781,
+ -0.9701074720254081,
+ -1.762390783483575,
+ -1.777780567782332,
+ -1.0287109192210273,
+ 0.07409750769949333,
+ 0.42759029450987773,
+ 0.700358813747376,
+ 1.1433748487006705,
+ 1.7658804848927367,
+ 1.7940389326105228,
+ 1.730803392884189,
+ 1.0876258931169793,
+ 1.0565665635443793,
+ 0.20532129862952386,
+ -1.5146331275303178,
+ -2.223240813451206,
+ -1.007840924767525,
+ 0.18808887175008301,
+ 1.3076194455727574,
+ 1.852219758905772,
+ 1.5968325568415054,
+ 0.8029132635272679,
+ 0.6835441452087502,
+ -0.038958375028305375,
+ -1.4530391035315822,
+ -2.0129892782688095,
+ -0.7468302570748419,
+ 0.47822665820522114,
+ 1.5575177415888721,
+ 2.1780573793237843,
+ 1.6720433464642843,
+ -0.16020902242132642,
+ -0.8724359941773784,
+ -1.4310848926878326,
+ -1.8665364770665507,
+ -1.499474424624623,
+ -0.4685263959882482,
+ 0.7570287477414724,
+ 1.7429625181282338,
+ 3.9190225567179877,
+ 2.90301311014509,
+ -0.5339754428677151,
+ -1.0164542704258153,
+ -1.314561509825075,
+ -1.8538906520797085,
+ -1.5965606188558583,
+ -0.6327292480722947,
+ 0.5967518956779018,
+ 1.6404150624776783,
+ 2.264144462490511,
+ 1.7031867221589494,
+ -0.27681566632989474,
+ -1.0323321650195765,
+ -1.5084601415163479,
+ -1.8672570397965174,
+ -1.6053603295473218,
+ -1.7670467920368347,
+ -0.712793935914059,
+ 1.5156607424169277,
+ 2.4824514852623083,
+ 1.4834082117675387,
+ 0.45641003904479843,
+ -0.7712216980658813,
+ -1.661345773705234,
+ -1.8312599176263795,
+ -1.3889634561125541,
+ -1.4635678008702846,
+ -0.48758416942262994,
+ 1.5384598237260334,
+ 2.3999526660683985,
+ 1.2858777646348287,
+ 0.16621546256213252,
+ -1.0221086817114429,
+ -1.564630274423707,
+ -1.3279325272984228,
+ -0.43427740931063136,
+ 0.003976023958991641,
+ 0.9362182635944092,
+ 1.7374839922268777,
+ 1.7932585455318477,
+ 1.0564514559751774,
+ -0.12969723524856683,
+ -1.286152176139217,
+ -2.0613387828017333,
+ -1.5117775564148086,
+ -0.794574301420246,
+ -0.6303250415519484,
+ 1.6054871684294723,
+ 2.833367430876584,
+ 1.6365964439789427,
+ 0.7172769138230766,
+ -0.5146294498938228,
+ -1.5224682943172914,
+ -1.8690291128541274,
+ -1.5927727561682994,
+ -1.7803926778140895,
+ -0.8042488381760097,
+ 1.6522191455705084,
+ 2.5313678928805343,
+ 1.4730530839279297,
+ 0.4370124916546236,
+ -0.7573378334762811,
+ -1.2314488711970313,
+ -1.121770927221891,
+ -0.66522322712559,
+ -0.36085899969790763,
+ 0.6917866542931598,
+ 1.622526080922397,
+ 1.8578003600247355,
+ 1.2724639531276347,
+ 0.1439124175120801,
+ -1.0460510934514418,
+ -1.5620307957698434,
+ -1.275020733364336,
+ -0.4364736180746113,
+ 0.036994850989607045,
+ 0.9584935810288382,
+ 1.7502996875935313,
+ 1.965592679413189,
+ 2.38346338296537,
+ 1.4052657677277947,
+ -1.5147598486697413,
+ -2.4780194505193407,
+ -1.813012382884515,
+ -1.1310936026297327,
+ 0.04080139586209493,
+ 1.1979312172740777,
+ 1.8323285183523665,
+ 1.8595639373904853,
+ 3.5962855930448923,
+ 2.4837424943579807
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.52634433139828,
+ -2.3808484350682892,
+ -1.7905751936846679,
+ -1.9926390171493276,
+ -1.3369593163964273,
+ -0.08842095222388684,
+ 1.189851280664091,
+ 2.0839408002510202,
+ 2.738781741909926,
+ 1.8983091584625384,
+ -0.8458327643333077,
+ -1.8298677666058447,
+ -1.9191239308513055,
+ -1.9114457619365137,
+ -1.2640246003477011,
+ -1.2581590897846522,
+ -0.29825266308957715,
+ 1.6554783077653124,
+ 2.4675068236609623,
+ 1.1706841105278871,
+ -0.11175567541048126,
+ -1.351019070055334,
+ -1.996495439335667,
+ -1.7792937630121461,
+ -0.962802913914572,
+ -0.8605980584832306,
+ -0.034051200202520296,
+ 1.6004519353708562,
+ 2.256332627088031,
+ 0.8946662423389949,
+ -0.4288576091771189,
+ -1.6242685425998156,
+ -2.272252467808138,
+ -1.6984942687159115,
+ 0.06783061118232511,
+ 0.8280954442685418,
+ 1.4919951143372794,
+ 2.021139621522233,
+ 1.681531940830141,
+ 0.5976232415561689,
+ -0.7360511463674347,
+ -1.838379499313087,
+ -2.7612439898200045,
+ -1.8079739678630191,
+ -0.27341812203979526,
+ -0.08177648391526855,
+ 1.8302406961093418,
+ 2.9519574371914263,
+ 1.4143747068448498,
+ 0.20524530003382438,
+ -1.0970031325359566,
+ -1.917927084885454,
+ -1.9087906813233912,
+ -1.2593623808125078,
+ -1.2745283161211391,
+ -0.3797828756579478,
+ 1.7777650430566003,
+ 2.51259581429957,
+ 1.2125077144317051,
+ 1.9616002513290447,
+ 2.062976036218958,
+ 2.402948186554927,
+ 1.1769912783141339,
+ -1.4890639768743767,
+ -2.681039038712132,
+ -1.9035974362084653,
+ -1.0541098271241482,
+ 0.2528383200544431,
+ 1.4516606508463137,
+ 2.0183780496519774,
+ 1.9147561038203142,
+ 2.170387324099122,
+ 0.9738169726832461,
+ -1.5907951560565234,
+ -2.720151973105046,
+ -1.7693487453614314,
+ -0.7691468078053854,
+ 0.5000974259514841,
+ 0.993230793875749,
+ 1.1039996691624958,
+ 1.004660558902842,
+ 0.8278123658793739,
+ -0.4538858339048699,
+ -1.58454131381257,
+ -2.036880487073498,
+ -1.5900466307297871,
+ -0.46252869324820933,
+ 0.8332549969216113,
+ 2.344239981942965,
+ 1.8814641236591758,
+ 1.5115139401991229,
+ 1.8129005739845192,
+ -0.26996849522282934,
+ -1.4612568828033843,
+ -2.027582918465219,
+ -1.6991615995051255,
+ -0.6423587267933426,
+ 0.6422018519074223,
+ 1.165407705679403,
+ 1.2052054592337458,
+ 0.8942570644313051,
+ 0.6476899982960609,
+ -0.5848341466597833,
+ -1.6656787363438876,
+ -2.201695675955092,
+ -2.693681361196648,
+ -1.5111299348099578,
+ 1.1411265420886318,
+ 2.364000997932298,
+ 2.028993698287762,
+ 1.5818098097827022,
+ 0.45136115114378683,
+ -0.8817702813848826,
+ -1.8269350665670088,
+ -2.170370773396748,
+ -2.5992724688687243,
+ -1.3785296736829389,
+ 1.3204664046939296,
+ 2.5475365592326553,
+ 2.0025476255814323,
+ 1.3636033725821104,
+ 0.26089310838138613,
+ -0.035117869307471954,
+ -0.49649522217504394,
+ -1.4269761948368451,
+ -1.6683615332723958,
+ -0.24752409994888383,
+ 1.0578207502619066,
+ 1.9124638277792945,
+ 1.924057317482652,
+ 1.1083133277223622,
+ -0.08867391462447029,
+ -0.5176065748905668,
+ -0.8196070324041587,
+ -1.8031235038047764,
+ -1.7046909386320535,
+ 1.0527400359300936,
+ 2.4227610992293473,
+ 2.0073256992444404,
+ 1.7476785085890723,
+ 0.7340627823167399,
+ -0.6068828644572254,
+ -1.677999227133735,
+ -2.198810486225819,
+ -2.7366281315246774,
+ -1.646338965681973,
+ 1.2941270897002601,
+ 2.424687513897073,
+ 2.0276604823448925,
+ 1.5659219515529261,
+ 0.5747771629588115,
+ 0.361779166512522,
+ -0.27965946840729666,
+ -1.482488920471549,
+ -1.931951764241723,
+ -0.5365740098626682,
+ 0.794780441484762,
+ 1.7888625625433343,
+ 1.9949241822688353,
+ 1.3418941605311314,
+ 0.2311990967086597,
+ -0.06945844097205987,
+ -0.5369845972975854,
+ -1.3422138022740426,
+ -1.6050074834759398,
+ -0.22079433687923308,
+ 1.0789010100149359,
+ 2.032676937996038,
+ 2.6976708914575256,
+ 1.902618113288678,
+ -0.7296162243742649,
+ -1.684666756998305,
+ -1.8704411034303463,
+ -1.950380641466608,
+ -1.1903071518630892,
+ 0.09808399885787583,
+ 1.335757012821231,
+ 2.1398388181561985,
+ 4.579385461079563,
+ 3.3207400511433867
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.6419773777020442,
+ 0.5844680775902713,
+ -0.8106130605201094,
+ -1.790516250637374,
+ -2.002773702459432,
+ -1.3302610231704697,
+ -0.09025831238878843,
+ 1.1944535659402948,
+ 1.8157599207685167,
+ 1.5627300222434835,
+ 0.39909083989580224,
+ -0.12153883713159547,
+ -1.0949549541478931,
+ -1.9195798858430473,
+ -2.1114280638667484,
+ -2.4859889823412322,
+ -1.2571307702941386,
+ 1.4317786385235667,
+ 2.6416005352512757,
+ 1.9477674863249859,
+ 1.1729207697211046,
+ -0.11028243858187697,
+ -1.3483141682455562,
+ -1.9984193844159497,
+ -1.9858465150288056,
+ -2.2796305059522988,
+ -1.0665277010362395,
+ 1.5504745403225233,
+ 2.710837141350571,
+ 1.83442052645077,
+ 0.8989569342889114,
+ -0.3482237593987789,
+ -0.7933380510521213,
+ -0.9529260062239318,
+ -1.0692391795732221,
+ -0.9975420781686772,
+ 0.31383986237918565,
+ 1.4913642712295907,
+ 2.0309023283206673,
+ 1.6741453347320967,
+ 0.5999506479545594,
+ -0.6879657681173114,
+ -1.3275008190968882,
+ -1.237088907025541,
+ -1.472849991874906,
+ -1.3332582909047508,
+ 1.4129994737039846,
+ 2.833973477012843,
+ 2.011445030397024,
+ 1.416623059383741,
+ 0.20914204484078014,
+ -1.0941586151543035,
+ -1.9183781512254487,
+ -2.108792093169135,
+ -2.529079472973277,
+ -1.395280299192023,
+ 1.5791927990603816,
+ 2.6919356701779242,
+ 1.9466615020453413,
+ 1.2170235778618312,
+ 2.100419304160523,
+ 2.682082360399164,
+ 1.6633575753780339,
+ -0.699001493210349,
+ -1.822809385371937,
+ -1.933397710900412,
+ -1.906288334745876,
+ -1.0577451052369333,
+ 0.2607560576742351,
+ 1.4583957844436592,
+ 2.180855576054315,
+ 2.7257507171569935,
+ 1.6101116267514672,
+ -0.9316268717473357,
+ -2.121195492590491,
+ -2.0097625914271564,
+ -1.7728349716406084,
+ -0.9398763609741875,
+ -0.841592960220091,
+ -0.0967031915563109,
+ 1.7955196593707525,
+ 2.3086968670651764,
+ 0.8726146837132297,
+ -0.458473266249899,
+ -1.5971939193292655,
+ -2.0330222581413806,
+ -1.5918524883189116,
+ -0.6116476531778011,
+ -0.6181472292406652,
+ -0.22469250892969733,
+ 3.029441873903196,
+ 4.054605948361835,
+ 1.0379643184542104,
+ -0.274321043696311,
+ -1.4735071396242325,
+ -2.024647192963686,
+ -1.70162587755542,
+ -0.8041281392884565,
+ -0.6610427224322785,
+ 0.03121733399137995,
+ 1.7485185149664972,
+ 2.1980270415756156,
+ 0.7486275953654372,
+ -0.5881837719319587,
+ -1.7437289948529489,
+ -2.354056896640391,
+ -1.6325112253124163,
+ 0.13815833958194593,
+ 1.0225194405328544,
+ 1.602500429811485,
+ 2.03334229440775,
+ 1.5897832784718435,
+ 0.4422001839646943,
+ -0.8878954044407112,
+ -1.935691771791359,
+ -2.542069425269582,
+ -1.6714323375256517,
+ 0.4011111099342351,
+ 1.41014919280296,
+ 1.7811826995850453,
+ 2.0073372148684863,
+ 1.5643766974988882,
+ 1.6958080085050813,
+ 0.6885485583033544,
+ -1.8090647862074294,
+ -2.6881753304844316,
+ -1.4466788795047312,
+ -0.24427627984012465,
+ 1.0680365098121096,
+ 1.9118685608432933,
+ 1.9280834632818584,
+ 1.2977778966128057,
+ 1.4759636091506314,
+ 0.37468803089097497,
+ -2.0106217356251026,
+ -2.03623328135809,
+ -0.10462015304411483,
+ 0.7240349771892467,
+ 1.3960835136432512,
+ 2.008001676110601,
+ 1.7571690823767063,
+ 0.728848737006866,
+ -0.6060179071976286,
+ -1.753185666069919,
+ -2.408193975719439,
+ -1.747584353853972,
+ 0.23133715398394322,
+ 1.0653561462675536,
+ 1.6119534257879045,
+ 2.0295101106760245,
+ 1.7727619805461061,
+ 1.9611121239506184,
+ 0.8064613273373037,
+ -1.6397157332345176,
+ -2.7035934466753737,
+ -1.6378942143033013,
+ -0.5386566947055412,
+ 0.7969280171230136,
+ 1.783941477319916,
+ 1.997395269168058,
+ 1.5434250831684606,
+ 1.637656616268976,
+ 0.5641591067836053,
+ -1.6702562340307128,
+ -2.6232461632866295,
+ -1.4286282534915142,
+ -0.2247195614655576,
+ 1.0684052338372376,
+ 1.6701200799476927,
+ 1.4867286672517583,
+ 0.5227867527838016,
+ 0.06529135530281173,
+ -0.9783146109975501,
+ -1.8706174269252518,
+ -1.9604214051493818,
+ -1.1838383147793348,
+ 0.09659103125663397,
+ 1.3595321052399019,
+ 3.338746924403518,
+ 2.5600807846306433
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.9335940515224985,
+ 3.8055471904304476,
+ 0.5519466978861054,
+ -1.0274271103730004,
+ -2.1702528981388647,
+ -2.3568684292179904,
+ -1.5289026552928384,
+ -0.17851542120288877,
+ 0.2199009230868252,
+ 0.7145043245787803,
+ 1.705744990920852,
+ 1.8702178946165577,
+ 0.1736920972494524,
+ -1.3588630349636976,
+ -2.4545201793733358,
+ -3.1533576841738147,
+ -1.9815258937216766,
+ 0.7505165719080471,
+ 2.0564639901023467,
+ 2.2589576111916307,
+ 2.2952900694695235,
+ 1.3428400621453627,
+ -0.20589931217688623,
+ -1.6558306525388775,
+ -2.5672986457173357,
+ -3.227160863917308,
+ -1.9317760474963113,
+ 1.032840857646061,
+ 2.426151116446156,
+ 2.3654921302945984,
+ 2.1520639839947804,
+ 1.2159769794902642,
+ 1.1352835245712052,
+ 0.1835639791711246,
+ -2.053419154917038,
+ -2.7912709057962046,
+ -1.128088143349999,
+ 0.44201884694645727,
+ 1.827769517347645,
+ 2.409382919215048,
+ 1.9512223314509463,
+ 0.8333031573572884,
+ 0.7080320942330494,
+ -0.21618967725804958,
+ -2.408567225023197,
+ -2.3700135654980987,
+ 0.5157518065029159,
+ 1.857347468962471,
+ 2.0976533911791853,
+ 2.3827122888304175,
+ 1.6422879233189651,
+ 0.1737933481405875,
+ -1.3596818405119435,
+ -2.4549894055845045,
+ -3.214247142058013,
+ -2.1434685702288627,
+ 0.8829213859539622,
+ 2.097858332687651,
+ 2.26055331558656,
+ 2.2966149674452554,
+ 1.564552939455415,
+ 2.205171216951798,
+ 1.7261968116290465,
+ 0.41301998846687693,
+ -0.29903169732757057,
+ -1.3933806009232124,
+ -2.3157627036928092,
+ -2.243974566137399,
+ -1.180003634134771,
+ 0.3842595140525038,
+ 1.8378655735241562,
+ 2.552095166356534,
+ 1.860399399770771,
+ 0.09962896569058803,
+ -0.8056205065401714,
+ -1.6881753851594878,
+ -2.3953870405872095,
+ -2.3092317523211974,
+ -2.6921509364875136,
+ -1.4425301716268117,
+ 2.1676931558239843,
+ 3.318408707721471,
+ 2.132041455852769,
+ 0.9667759527927082,
+ -0.6195534047287559,
+ -1.9364159362218365,
+ -2.4119738639956068,
+ -2.0841147964338016,
+ -3.825872539465253,
+ -2.5690602117338055,
+ 3.8675290555654707,
+ 5.416827727671965,
+ 2.227032970827453,
+ 1.1659234585825897,
+ -0.4016459532094392,
+ -1.7960268176893674,
+ -2.4089490538838585,
+ -2.221070793902215,
+ -2.555630322375297,
+ -1.3220139713374008,
+ 2.2072290926319424,
+ 3.320109588466461,
+ 2.052841934425158,
+ 0.8199778572117571,
+ -0.7016472831405827,
+ -1.2662109339481726,
+ -1.2866842747502791,
+ -1.0510489297225105,
+ -0.8168278966992586,
+ 0.6383867677419834,
+ 1.9464376194629753,
+ 2.420933930510347,
+ 1.8265443046567715,
+ 0.45076578730251554,
+ -1.0922206038406876,
+ -1.721701980339537,
+ -1.5104008238923046,
+ -0.7704628132281749,
+ -0.3106626964658054,
+ 0.9988354721611599,
+ 2.1481817774326366,
+ 2.5920301725486037,
+ 3.1737601968474447,
+ 1.8406975560258239,
+ -1.709260601551057,
+ -3.05736946577952,
+ -2.389849806764035,
+ -1.6623549027804883,
+ -0.21580816454942472,
+ 1.3301768940988146,
+ 2.2939864692821987,
+ 2.4995799263556657,
+ 3.319869743531722,
+ 1.6306301014585798,
+ -1.6510983993643102,
+ -1.811107541616601,
+ -1.3984782003564025,
+ -1.4356430171842722,
+ 0.2817715334121132,
+ 1.7097290148109408,
+ 2.406600207149739,
+ 2.0415345999651855,
+ 0.8011278172642162,
+ -0.7224270406037454,
+ -1.317088303669887,
+ -1.344534948626973,
+ -1.0540230000204578,
+ -0.807145581376177,
+ 0.6573832948993747,
+ 1.9575453093205306,
+ 2.6177616756099042,
+ 3.209634413848269,
+ 1.810349192152501,
+ -1.3327857968198822,
+ -2.7841122372266485,
+ -2.4122845127321186,
+ -1.9051940643024836,
+ -0.5752731945721659,
+ 1.0126624193596732,
+ 2.1546645003269207,
+ 2.587309525125387,
+ 3.105619314223208,
+ 1.6571990853117067,
+ -1.549801785131088,
+ -3.0099206213884133,
+ -2.3870959122618443,
+ -1.6503498642790253,
+ -0.35274450757638137,
+ -0.002152782875263869,
+ 0.5691343214292143,
+ 1.8012713605924193,
+ 2.0492243817706948,
+ 0.33349181055040994,
+ -1.2238164316363649,
+ -2.259876622894706,
+ -2.2998119960627936,
+ -1.3506678262452498,
+ 0.06253100152181533,
+ 0.9270331367173308,
+ 0.9290652509578616
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.5898676995836,
+ 3.4530866915482563,
+ 0.8377079423858421,
+ -0.31796817509299546,
+ -1.3411247526054042,
+ -1.7742691321273338,
+ -1.4416861917926962,
+ -0.6217019689517351,
+ -0.47092621987161126,
+ 0.10164878628180979,
+ 1.4961726874572487,
+ 1.8507991245099757,
+ 0.5796110187322004,
+ -0.5892995831164589,
+ -1.5746100904842757,
+ -2.108179521179365,
+ -1.4395151230521694,
+ 0.18567619906594574,
+ 0.9909451227499133,
+ 1.447435996969734,
+ 1.7740335487075019,
+ 1.3375569383791257,
+ 0.3085670407992894,
+ -0.8462598115807618,
+ -1.730709940987764,
+ -2.2570538577038612,
+ -1.4632119295206847,
+ 0.4135073460469768,
+ 1.3217047513480076,
+ 1.5929057994164257,
+ 1.7388740868305241,
+ 1.3046369312973534,
+ 1.3942252406436646,
+ 0.5357016245269687,
+ -1.5795976928396653,
+ -2.318724375591095,
+ -1.2068728730575577,
+ -0.13449408900338441,
+ 0.9999880098931453,
+ 1.6955694809295287,
+ 1.6575272880678993,
+ 1.0631185804674042,
+ 1.182831577021903,
+ 0.25678738009876245,
+ -1.7705184820410813,
+ -1.7858283526375158,
+ -0.03384533737176398,
+ 0.7263852238751981,
+ 1.2677912190183211,
+ 1.7667192952464934,
+ 1.5063931818224425,
+ 0.5794092091619824,
+ -0.59054204050609,
+ -1.5760538013423075,
+ -2.150733561962914,
+ -1.5438388204193958,
+ 0.2580052060491314,
+ 1.0119591329729642,
+ 1.4493912107828595,
+ 1.7756494585164402,
+ 1.5114982793827212,
+ 1.6584439268594198,
+ 1.0402402430987963,
+ 0.6616273764867685,
+ 0.3972044007127869,
+ -0.6174159331395094,
+ -1.5178687582842774,
+ -1.7678396017827243,
+ -1.2370069627133273,
+ -0.1778372825437383,
+ 0.9533135833672327,
+ 1.4376510983803084,
+ 1.1898012524998505,
+ 0.44667675355712094,
+ 0.02052780121356522,
+ -0.8732101165377536,
+ -1.6449298141818387,
+ -1.8751706998757018,
+ -2.2817302365344574,
+ -1.35589769126141,
+ 1.4166320154853587,
+ 2.334185347336753,
+ 1.729459350585852,
+ 1.105597128601989,
+ 0.002961427864431053,
+ -1.1040525101552052,
+ -1.7290323713480458,
+ -1.7813891814674943,
+ -3.4600319174504994,
+ -2.3950312041677457,
+ 2.5930034988421355,
+ 3.702628702496416,
+ 1.7589305223235834,
+ 1.228521327211595,
+ 0.16674201657435955,
+ -0.9717048648743611,
+ -1.684811645243138,
+ -1.8411551101966994,
+ -2.217895828120067,
+ -1.2877082943089482,
+ 1.472475324223789,
+ 2.3774661274050057,
+ 1.6996679332303477,
+ 1.0127148550370417,
+ -0.02113998022521917,
+ -0.3364060028692635,
+ -0.6276427355191591,
+ -1.0664182105142228,
+ -1.173090504024726,
+ 0.01321940093012273,
+ 1.1136045073687186,
+ 1.7384588986018399,
+ 1.5965446173121858,
+ 0.769128406144039,
+ -0.325883532660352,
+ -0.7052923321232104,
+ -0.828922818190361,
+ -0.8945400803605315,
+ -0.8304000133776064,
+ 0.2938843575441583,
+ 1.3181058407925754,
+ 1.9131549201454758,
+ 2.4251717995999265,
+ 1.5175175644918624,
+ -0.9690724970402574,
+ -1.9394631914921887,
+ -1.762300074952701,
+ -1.5125417202483697,
+ -0.6101322772611528,
+ 0.5645139679948786,
+ 1.4886502372339439,
+ 1.9242310907233924,
+ 2.648907323203831,
+ 1.4328556915373325,
+ -0.837101357932526,
+ -0.9819007073242371,
+ -1.3104015293402544,
+ -1.6580469704448648,
+ -0.253310575137021,
+ 0.8946755030205906,
+ 1.6616475073381702,
+ 1.6961965340768768,
+ 1.0012315344644742,
+ -0.03763773390971576,
+ -0.3651417828134046,
+ -0.640182736694282,
+ -1.1043462914099849,
+ -1.179862279134972,
+ 0.027997416172314393,
+ 1.1257670390696946,
+ 1.8595865444082649,
+ 2.3599779994462433,
+ 1.4438630880424352,
+ -0.6694275148041,
+ -1.6699222284112298,
+ -1.7120094853202519,
+ -1.6361639934819132,
+ -0.8550728636375944,
+ 0.3061914666120672,
+ 1.3281032086944797,
+ 1.9164813652067587,
+ 2.381283511601804,
+ 1.3872116865360407,
+ -0.8673937711500854,
+ -1.9180962061713247,
+ -1.7664332475796833,
+ -1.5083127507473753,
+ -0.7424370651672609,
+ -0.630448868979661,
+ -0.010062455058703009,
+ 1.541831326605401,
+ 1.9532763535633049,
+ 0.6899591104583015,
+ -0.4773790508835582,
+ -1.4435617442643962,
+ -1.7742906465183939,
+ -1.3399604334896982,
+ -0.45116181242846104,
+ -0.3614395197124786,
+ -0.06651073049564742
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.2923213195469545,
+ 4.479294395624025,
+ 1.4010647462176204,
+ 0.16084666225834326,
+ -1.153477232203804,
+ -1.9615562147956718,
+ -1.9208927281303114,
+ -1.2355071889764084,
+ -1.2366013620471712,
+ -0.37834424844875925,
+ 1.8926667152731835,
+ 2.5443634779056077,
+ 1.1457096557870188,
+ -0.1636750717328159,
+ -1.43352979018449,
+ -2.031835841285927,
+ -1.5327534430402459,
+ -0.22142067630861326,
+ 0.4687761843551119,
+ 1.3154826188645956,
+ 2.013176425542015,
+ 1.8462006978275791,
+ 0.8626087080104793,
+ -0.4853319156442782,
+ -1.686199628093627,
+ -2.3013946786447237,
+ -1.6277381270517397,
+ 0.04766526512838238,
+ 0.8934581909729123,
+ 1.5497301311619691,
+ 2.0560436309614514,
+ 1.8802063251053143,
+ 2.1483630285107482,
+ 1.0394117340764826,
+ -1.7843206795896434,
+ -2.8080727127702207,
+ -1.736575109356317,
+ -0.6743006235851561,
+ 0.6826130418010375,
+ 1.7415481370281838,
+ 2.0446821257782224,
+ 1.6655713305544142,
+ 2.038669813157043,
+ 0.7558305831181452,
+ -1.9094091596399712,
+ -1.9762058014401416,
+ -0.5122473427626947,
+ 0.04730435859996658,
+ 1.051388819697403,
+ 1.9228301369714607,
+ 1.9692010884343711,
+ 1.145173838124629,
+ -0.16575315686136757,
+ -1.4363512608795665,
+ -2.075184299527727,
+ -1.6283046424522019,
+ -0.17221911415300634,
+ 0.480592499800999,
+ 1.3184909039460315,
+ 2.015658829838432,
+ 2.0464159297839757,
+ 2.3626029438037,
+ 1.125926799977095,
+ 1.1259725210576057,
+ 1.139178445518206,
+ -0.1971570483051001,
+ -1.4244748932217985,
+ -2.0428171883493937,
+ -1.7598236805514367,
+ -0.7220630987828959,
+ 0.5699576993033084,
+ 1.0454180728834466,
+ 1.0783515941149362,
+ 0.9119246034645044,
+ 0.7280142346453443,
+ -0.5180526884837117,
+ -1.6404505305187984,
+ -2.22695209728696,
+ -2.809496467599273,
+ -1.8026885392695116,
+ 1.324060417446161,
+ 2.39616037019365,
+ 2.0519999584009168,
+ 1.647288738099423,
+ 0.5312650147328828,
+ -0.8227183610218081,
+ -1.8139919375404212,
+ -2.208413235863595,
+ -4.477573552886628,
+ -3.166446382025008,
+ 2.508429224566129,
+ 3.6714075968287165,
+ 2.0372918463962937,
+ 1.7528207534371778,
+ 0.7120390822247014,
+ -0.6464093791066311,
+ -1.7179209277880474,
+ -2.2257390980227147,
+ -2.782726358204607,
+ -1.7526515891384693,
+ 1.4151369022762879,
+ 2.491255780222465,
+ 2.0526200834993586,
+ 1.5644320952830502,
+ 0.5470278209193733,
+ 0.32193234965580586,
+ -0.31032170983493923,
+ -1.4885363984629292,
+ -1.9248107545221882,
+ -0.5111230585660157,
+ 0.8355370454108934,
+ 1.8274288036393225,
+ 2.014245470540735,
+ 1.3337845724419313,
+ 0.19806130779996073,
+ -0.11512712040780583,
+ -0.5698172568368486,
+ -1.34277973083996,
+ -1.5890925190852652,
+ -0.19035205921528192,
+ 1.1208246256824523,
+ 2.072191245779527,
+ 2.7215949928380265,
+ 1.82599266006474,
+ -0.714014463946914,
+ -1.7368041176006659,
+ -1.906929166915058,
+ -1.9659212016772354,
+ -1.1781207822622186,
+ 0.13268456085163396,
+ 1.3777440193539015,
+ 2.175186289259654,
+ 3.096897028872486,
+ 1.8150507350738365,
+ -0.46891155511278887,
+ -0.6563791960899925,
+ -1.7385160354458244,
+ -2.4824512171325366,
+ -0.8036128116800114,
+ 0.5476778228641673,
+ 1.668243915565981,
+ 2.0544534170370743,
+ 1.5547820370966454,
+ 0.5278274102231387,
+ 0.3009238327109458,
+ -0.28930189507698195,
+ -1.5706146131797574,
+ -1.9481141107069615,
+ -0.4942483597320753,
+ 0.8532592425822264,
+ 1.9309198192028685,
+ 2.5458042689416382,
+ 1.687410294553646,
+ -0.3644803890052348,
+ -1.3670095725533113,
+ -1.7757598450438312,
+ -2.036011338657394,
+ -1.4200428124221567,
+ -0.1746111983925942,
+ 1.137634632257057,
+ 2.0836089116257304,
+ 2.6814084789447095,
+ 1.6907441067933782,
+ -0.6222593621142207,
+ -1.729329984624116,
+ -1.9184800120597167,
+ -1.9666545274544889,
+ -1.3572583867897585,
+ -1.4043669265725962,
+ -0.5044068238128678,
+ 1.913610602834122,
+ 2.621345620810774,
+ 1.2565124127617562,
+ -0.028403691700553253,
+ -1.306062558009988,
+ -2.0099208029182685,
+ -1.844932913019892,
+ -1.0592511276313632,
+ -1.5912214926256993,
+ -0.935115394291062
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.33945857651262,
+ 0.7783037322707184,
+ 1.331411947401448,
+ 2.011848928873246,
+ 1.8281192444000212,
+ 0.8357216641825798,
+ -0.5094108771974509,
+ -1.699357555233313,
+ -2.380140516995206,
+ -1.8312571629945251,
+ 0.1622504232888075,
+ 0.9387899877339821,
+ 1.561954543025606,
+ 2.0504342211987523,
+ 1.8584320619714296,
+ 2.079180435628413,
+ 0.891415699907611,
+ -1.6381512267681815,
+ -2.744555391610382,
+ -1.7165758310852934,
+ -0.647062811197178,
+ 0.7053865419115541,
+ 1.7497786756673568,
+ 2.0349222729120076,
+ 1.640888256624886,
+ 1.7678234905340497,
+ 0.65259385845969,
+ -1.6829361613999707,
+ -2.685903907064226,
+ -1.5182660908391352,
+ -0.3334504053342949,
+ 0.9767403300772907,
+ 1.5491284751691865,
+ 1.3727488283623883,
+ 0.6059812847141279,
+ 0.20328025782115489,
+ -0.8936023309089167,
+ -1.846814787198946,
+ -2.0080257274882944,
+ -1.2820008971803556,
+ -0.009586175632219732,
+ 1.2808494101385315,
+ 2.099392465475729,
+ 1.5941567870692497,
+ 1.0083938259069776,
+ 0.8343656636113649,
+ -1.7096767329371794,
+ -3.0886997704695647,
+ -1.869944325085566,
+ -0.942565632649069,
+ 0.394510898673791,
+ 1.560911690527354,
+ 2.0484595248788198,
+ 1.8546555713714592,
+ 2.1126523967451676,
+ 1.0124565538431587,
+ -1.7840155313381372,
+ -2.7959402586468327,
+ -1.714416140367249,
+ -0.6452961334884281,
+ 0.6522107180104568,
+ 1.1416821383359104,
+ 1.1263590173122777,
+ 1.12206716102552,
+ 2.3570079223388536,
+ 2.0549641314659257,
+ 1.6366359625421913,
+ 0.5115409114955086,
+ -0.8428270526577377,
+ -1.8258322778423353,
+ -2.2079222493184503,
+ -2.654116122443793,
+ -1.421876586658438,
+ 1.3090531131023389,
+ 2.5535942993577243,
+ 2.03698372534312,
+ 1.4220953582505411,
+ 0.32414844044427255,
+ 0.03204540860206903,
+ -0.4649229037351775,
+ -1.5471260955330126,
+ -1.769655560332407,
+ -0.30588465303720963,
+ 1.0237266257489583,
+ 1.917423164323692,
+ 1.965982193906013,
+ 1.1689369528418982,
+ -0.02944648602861763,
+ -0.7408707511864805,
+ -0.7565923078363433,
+ -2.523437496996513,
+ -3.277890719026641,
+ -0.4916262411038673,
+ 0.8554658407304758,
+ 1.8392081927271777,
+ 2.0126380159679584,
+ 1.319577284345034,
+ 0.17586446490617744,
+ -0.15721143906123805,
+ -0.5891728753193999,
+ -1.4668096449870085,
+ -1.6183398565193297,
+ -0.169901173672019,
+ 1.139544361581453,
+ 2.082895056468871,
+ 2.680028538490569,
+ 1.689608987625842,
+ -0.6226587294296083,
+ -1.7293312419600415,
+ -1.9168562776775802,
+ -1.9622742146773717,
+ -1.1624151341080946,
+ 0.1535362143986238,
+ 1.394743002855105,
+ 2.1826245181018766,
+ 2.7475369237037413,
+ 1.650063246956825,
+ -0.864480188342576,
+ -2.047543526976047,
+ -2.0109691278033317,
+ -1.843455302602042,
+ -1.0570838053171658,
+ -0.9953860163601428,
+ -0.1758674060184087,
+ 1.7551318911204705,
+ 2.3940323958585896,
+ 0.9805163017240945,
+ -0.3549938538970694,
+ -1.542735686755791,
+ -2.051801780337812,
+ -1.6753049389625831,
+ -0.732499704838714,
+ -0.6357776871395372,
+ 0.16439802331706346,
+ 2.0534857595719442,
+ 2.0221718246782423,
+ -0.4359320180507981,
+ -1.5790191898046961,
+ -1.78341402228443,
+ -2.0256744074663375,
+ -1.3961342817659437,
+ -0.14765894790627473,
+ 1.1560199307725896,
+ 2.0871727594055125,
+ 2.7326694724547393,
+ 1.822289100219726,
+ -0.7506950381214371,
+ -1.7836235922211767,
+ -1.9218664835287012,
+ -1.9524654041834,
+ -1.3300350943011203,
+ -1.3416013496258574,
+ -0.34888269535979965,
+ 1.6803504901307456,
+ 2.528018824026763,
+ 1.2314657255012231,
+ -0.054794581045571174,
+ -1.322432781683044,
+ -2.0090082602083656,
+ -1.8272444092971818,
+ -1.0305244338871076,
+ -0.9444263670828222,
+ -0.08246781191678627,
+ 1.6321689634142944,
+ 2.325290939698308,
+ 0.9570913552818084,
+ -0.37664415606829127,
+ -1.599865985331299,
+ -2.273763778401913,
+ -1.787939998772768,
+ 0.03341412426673967,
+ 0.7585549480161385,
+ 1.4692996293348226,
+ 2.039644949353645,
+ 1.733418073007093,
+ 0.6600491224895854,
+ -0.6899885848125697,
+ -1.8243333431363409,
+ -4.1603675479014575,
+ -3.0998319187417165
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.458620550090095,
+ -0.3677562906779558,
+ 0.7657991759556141,
+ 1.592976123908064,
+ 1.7370262857916798,
+ 1.113594283205701,
+ 0.015504882511351752,
+ -1.100572944414013,
+ -1.651496608906242,
+ -1.3983145137850053,
+ -0.2902807814882592,
+ 0.19322989440661165,
+ 1.0093349943814625,
+ 1.6965105346932843,
+ 1.8239572360783867,
+ 2.135965143336283,
+ 1.0631574683402374,
+ -1.2769335835816575,
+ -2.3264454389647296,
+ -1.6828115684848488,
+ -0.9723540874482142,
+ 0.15979827147841325,
+ 1.2244665271520419,
+ 1.7556090265884998,
+ 1.7041213141769873,
+ 1.9439400769961177,
+ 0.8909660519591457,
+ -1.373136926401607,
+ -2.373568909652157,
+ -1.5744431321725245,
+ -0.7280008926603784,
+ 0.3719130706777452,
+ 0.7755844407566787,
+ 0.8798330313311895,
+ 0.8881108598140669,
+ 0.7901480251160721,
+ -0.3366013458061604,
+ -1.3449782055743669,
+ -1.7777828798831201,
+ -1.4258925930562039,
+ -0.46326652673217594,
+ 0.6659377644191752,
+ 1.2455197502183784,
+ 1.1222616655754838,
+ 1.2417737498984405,
+ 1.115759904487981,
+ -1.270051761597429,
+ -2.5111728938170317,
+ -1.7481448706619058,
+ -1.1914686794738054,
+ -0.11929071314025894,
+ 1.0086100689610167,
+ 1.695374843403477,
+ 1.821527184477923,
+ 2.1727193189130407,
+ 1.1824394267917389,
+ -1.4059870387789513,
+ -2.370679004368278,
+ -1.6817319959327388,
+ -0.9714765360138654,
+ 0.07214356419631461,
+ 0.39798519639548924,
+ 0.6610806333731064,
+ 1.0372013420574864,
+ 1.6544710039151016,
+ 1.707637026127844,
+ 1.6423726169717776,
+ 0.8692376588644584,
+ -0.290313657876903,
+ -1.3173506907940773,
+ -1.9145240790245563,
+ -2.381687108675799,
+ -1.3913932281695554,
+ 0.8566654383074259,
+ 1.9052269362893068,
+ 1.7645675342945413,
+ 1.5167921168992,
+ 0.7585438829429894,
+ 0.6518316494739951,
+ 0.025189670030295236,
+ -1.5475337152224222,
+ -1.9665329613354499,
+ -0.7047823241429607,
+ 0.46184188793215436,
+ 1.43400839320204,
+ 1.7749566400275532,
+ 1.3504938640423494,
+ 0.4681405633148799,
+ 0.39767909538823465,
+ 0.09286378118084689,
+ -2.6018118559434784,
+ -3.4717070450333662,
+ -0.8518837327991114,
+ 0.3021063994718799,
+ 1.3304125498729196,
+ 1.7734525683125328,
+ 1.4510514252220126,
+ 0.6382217987279513,
+ 0.4926440145969914,
+ -0.08655103904906236,
+ -1.5027992534556784,
+ -1.8652119133816543,
+ -0.5948271624781357,
+ 0.5740669584988038,
+ 1.5644642667589548,
+ 2.0980542889501206,
+ 1.4370528886616778,
+ -0.17250005894319204,
+ -0.9712799422547898,
+ -1.438036997245546,
+ -1.774809965432855,
+ -1.3482073095711073,
+ -0.32442066619011495,
+ 0.8320604570006465,
+ 1.7229476015026715,
+ 2.2500760853874238,
+ 1.4628460870316047,
+ -0.4007516384927731,
+ -1.3036966424427168,
+ -1.5856915517329324,
+ -1.742168956654045,
+ -1.3174576954841137,
+ -1.4121780624633338,
+ -0.5491703861027949,
+ 1.580034371813902,
+ 2.3251459671188255,
+ 1.218651625803785,
+ 0.15055341646510942,
+ -0.9865548558630822,
+ -1.6907136421703746,
+ -1.6632682562168204,
+ -1.0776165557254782,
+ -1.204644485642489,
+ -0.2712511150246215,
+ 1.7669801568716355,
+ 1.7833915216128282,
+ 0.034364857994162876,
+ -0.7253571935472088,
+ -1.2648401621544947,
+ -1.7620112248158555,
+ -1.5019663960920053,
+ -0.5772281674689078,
+ 0.589555634660716,
+ 1.5722036013764136,
+ 2.145349940518048,
+ 1.5397889740343007,
+ -0.25787413376432095,
+ -1.0100437404199625,
+ -1.4458511360798414,
+ -1.7708165466934227,
+ -1.5069693558446338,
+ -1.653315252463263,
+ -0.658372420086101,
+ 1.4416218828015706,
+ 2.3512393238820377,
+ 1.3926006713954244,
+ 0.409211675426513,
+ -0.7543013413230067,
+ -1.5876096102743678,
+ -1.7327889906963112,
+ -1.2984983264108614,
+ -1.3619680912114382,
+ -0.4434232132664329,
+ 1.4600414416831784,
+ 2.2678267971094552,
+ 1.202259629497925,
+ 0.13318853475479098,
+ -0.9929002473688414,
+ -1.527998747725015,
+ -1.3351609514220315,
+ -0.39925348100443947,
+ 0.030160272064653115,
+ 0.9096365169916849,
+ 1.6576406459859088,
+ 1.6943482649408472,
+ 0.9821428168244335,
+ -0.14761419537545734,
+ -1.2410194137333672,
+ -3.0137791947888126,
+ -2.3013263944648643
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.406932127960443,
+ -3.110794661559696,
+ -0.40954114956709664,
+ 0.9157866180993154,
+ 1.8516844629830955,
+ 1.9716236869181798,
+ 1.243061163589281,
+ 0.08910076510259234,
+ -0.2626298075762958,
+ -0.6516348052296745,
+ -1.4007175412452473,
+ -1.509776607391518,
+ -0.08982028954075925,
+ 1.1903502229372904,
+ 2.087077598139004,
+ 2.670760805738858,
+ 1.6640848151209644,
+ -0.6747243671701146,
+ -1.7891892112158865,
+ -1.9210028360673435,
+ -1.914410567687129,
+ -1.0829679516148547,
+ 0.22954072757732794,
+ 1.4346473668413373,
+ 2.172621406165488,
+ 2.7209669625384296,
+ 1.6149080950399592,
+ -0.909009178967736,
+ -2.0919643094135676,
+ -2.0020562235235304,
+ -1.7856133068772098,
+ -0.9691055799924865,
+ -0.8830193386636165,
+ -0.1044250485280886,
+ 1.7136011399594633,
+ 2.308142774261525,
+ 0.8994891217653728,
+ -0.4275208843175477,
+ -1.575478303517735,
+ -2.0301686498282416,
+ -1.6089665803371551,
+ -0.6432271196499227,
+ -0.5119771081783961,
+ 0.23270734633990867,
+ 2.0201467171399314,
+ 1.982415027293162,
+ -0.48362161823570615,
+ -1.636792893363926,
+ -1.7932615401412004,
+ -1.9965815882157127,
+ -1.3404650960290159,
+ -0.08994062912343938,
+ 1.190957191789065,
+ 2.087336769356787,
+ 2.722106979479182,
+ 1.8017309774925627,
+ -0.7888673740075268,
+ -1.8250722793594991,
+ -1.9222460932680225,
+ -1.9154431234343623,
+ -1.2675725190696117,
+ -1.2621074401868195,
+ -0.29990303615904285,
+ 1.658694874951077,
+ 2.4728480460925653,
+ 1.218961391141244,
+ 1.9651035873596672,
+ 1.8674737578102307,
+ 0.9440260957505212,
+ -0.37918542105087866,
+ -1.5906331128550326,
+ -2.194710388307025,
+ -1.5823505979651087,
+ -0.03740369340023876,
+ 0.7514361175166423,
+ 1.4613841196072275,
+ 2.023417209730049,
+ 1.9148704027351329,
+ 2.2205771661629505,
+ 1.17337356465779,
+ -1.8399728151158303,
+ -2.7962586177470237,
+ -1.7681655592739758,
+ -0.762052964631362,
+ 0.5762984441500641,
+ 1.663614493303081,
+ 2.02844103228837,
+ 1.7171947645540904,
+ 3.1288333388132394,
+ 2.0921483417615367,
+ -3.274726326365846,
+ -4.577790849220875,
+ -1.8528258313766226,
+ -0.9319857606808511,
+ 0.3939761967347885,
+ 1.5494673124259128,
+ 2.031094613079237,
+ 1.8371203961699183,
+ 2.101557696612538,
+ 1.0697708190366182,
+ -1.8698221493230225,
+ -2.792490346422523,
+ -1.6982242258686597,
+ -0.6370712477232434,
+ 0.6496334015567988,
+ 1.1354796233409137,
+ 1.118513428884797,
+ 0.8452350789152882,
+ 0.6143188274288612,
+ -0.5918061947962123,
+ -1.6717495830465965,
+ -2.0356055185738966,
+ -1.5006060011748883,
+ -0.32396287494237697,
+ 0.9750413210702769,
+ 1.5133072801895326,
+ 1.3016012795042498,
+ 0.6056502080379202,
+ 0.1861503160353444,
+ -0.8921853871499928,
+ -1.8340134726348674,
+ -2.1730620486287218,
+ -2.650548013121858,
+ -1.5235306136052504,
+ 1.4691360557241617,
+ 2.6023877168077543,
+ 2.0037625359359,
+ 1.3583595819026455,
+ 0.12520068902303877,
+ -1.1667460653704804,
+ -1.9484731983064152,
+ -2.0857517740547036,
+ -2.7587158363243183,
+ -1.3387174683377028,
+ 1.4313809586572204,
+ 1.5622269143553413,
+ 1.1380465991543043,
+ 1.129623514723636,
+ -0.29324154926547635,
+ -1.4787674994013071,
+ -2.0317734867881927,
+ -1.6881417943943078,
+ -0.6209677664237475,
+ 0.666909495418602,
+ 1.179221641327455,
+ 1.1707402363938264,
+ 0.8433121819890785,
+ 0.6044816129474362,
+ -0.6076370375452932,
+ -1.6805707131062202,
+ -2.203602498611351,
+ -2.691953681916564,
+ -1.5044220570581168,
+ 1.1562042976421532,
+ 2.381681703644729,
+ 2.030833756595305,
+ 1.5688199658464934,
+ 0.42908066465600214,
+ -0.903518203595576,
+ -1.8388022861761908,
+ -2.168262798366167,
+ -2.5926294159222025,
+ -1.3690581383140379,
+ 1.3334722090382805,
+ 2.560916919476259,
+ 2.0006920159644297,
+ 1.3477222718672877,
+ 0.23614068062523302,
+ -0.07592680387063179,
+ -0.5303060668813294,
+ -1.4838749756826806,
+ -1.6635145674057437,
+ -0.2247302008328023,
+ 1.0786441773714082,
+ 1.922336497647578,
+ 1.918581855772857,
+ 1.0899493557644724,
+ -0.11389346476213284,
+ -0.906445018203832,
+ -0.8718755331395185
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.3144043011268054,
+ -4.5479955547666515,
+ -1.5554572717431914,
+ -0.4056629727931602,
+ 0.9233673024795817,
+ 1.8479169006936296,
+ 1.9718122997774445,
+ 1.4358215322105339,
+ 1.5200705267312424,
+ 0.5998180604485648,
+ -1.9013435988097576,
+ -2.6440636364030725,
+ -1.3297684061775437,
+ -0.08776458419801174,
+ 1.198067330106526,
+ 1.7658840176626887,
+ 1.414836301871407,
+ 0.4202306681686645,
+ -0.1307471715878971,
+ -1.098043249317433,
+ -1.9222804733363106,
+ -1.9214989524024948,
+ -1.0712808022150209,
+ 0.23389267182667445,
+ 1.475823781205855,
+ 2.071890424419221,
+ 1.5384348551278382,
+ 0.15820061257756227,
+ -0.5600935918191026,
+ -1.3551365502047192,
+ -2.003204254081496,
+ -1.9884521701974969,
+ -2.3249514396415427,
+ -1.2009838251457907,
+ 1.6997893588161466,
+ 2.7667056433701247,
+ 1.8355109679822117,
+ 0.8959339977342499,
+ -0.43329659193238207,
+ -1.5746889133664412,
+ -2.0314720988542083,
+ -1.81223036808402,
+ -2.283122433708222,
+ -0.9461202020799472,
+ 1.7749850326033372,
+ 1.8626470002086861,
+ 0.7180828473779548,
+ 0.3302816285914739,
+ -0.8167723082963426,
+ -1.7963681590705047,
+ -2.005799817678515,
+ -1.329109637014107,
+ -0.08545834633696905,
+ 1.2013363590082473,
+ 1.8048950665123342,
+ 1.495038966762756,
+ 0.38913627974377607,
+ -0.1362180249020044,
+ -1.101300776488661,
+ -1.924964686666006,
+ -2.1140406548481616,
+ -2.488157799965636,
+ -1.256892206315358,
+ 1.4367054062174844,
+ 2.6483645823582838,
+ 1.950194955009191,
+ 1.2161601802601052,
+ 1.9683016422258135,
+ 1.8524211132170452,
+ 0.9408526272894346,
+ -0.2968861959397582,
+ -0.7150421128062926,
+ -0.8983085678457772,
+ -1.0664665781039253,
+ -1.0356702228172283,
+ 0.26616943439556456,
+ 1.4570729081764737,
+ 2.174244605188801,
+ 2.7890417484971817,
+ 1.8488693658529922,
+ -1.1272724804271246,
+ -2.1658778563135437,
+ -2.002553221251769,
+ -1.7626464991308122,
+ -0.7623654841744872,
+ 0.5777150940069912,
+ 1.6605175090308977,
+ 2.199008994460231,
+ 4.541714380086423,
+ 3.240228367140437,
+ -2.185407362659505,
+ -3.249379192692642,
+ -1.9652416775040324,
+ -1.8470030794947032,
+ -0.9325212766357688,
+ 0.39674312613907803,
+ 1.546609895334778,
+ 2.1911523846713017,
+ 2.785547795717311,
+ 1.8143052074716837,
+ -1.227622571734644,
+ -2.278897746309571,
+ -2.019780954411424,
+ -1.6944258272484851,
+ -0.7982491656240999,
+ -0.6474238136129384,
+ 0.10209535001657422,
+ 1.5558349838011791,
+ 2.1247291332238687,
+ 0.7422728281226384,
+ -0.5909110992001866,
+ -1.6746728775431343,
+ -2.0211423065919805,
+ -1.4963113377454946,
+ -0.46351898775923633,
+ -0.22118181248653992,
+ 0.36489525457301003,
+ 1.4404780906652166,
+ 1.829860866192037,
+ 0.434887341808661,
+ -0.8890344199189306,
+ -1.9308604700486844,
+ -2.5839780688807434,
+ -1.7937589210674012,
+ 0.49540716686777386,
+ 1.4341329676860572,
+ 1.7759244293029839,
+ 1.9977124016372527,
+ 1.35964310250939,
+ 0.11874114432786648,
+ -1.164982839855224,
+ -2.0728992454304773,
+ -3.000999040275399,
+ -1.8244469639366856,
+ 0.21530211210776323,
+ 0.40549144178195284,
+ 1.7815331921267434,
+ 2.6607251115693478,
+ 1.0167400300487455,
+ -0.2970022224045985,
+ -1.4878719538312035,
+ -2.0243198987812514,
+ -1.6868452867787846,
+ -0.7796847316872288,
+ -0.6329681754397277,
+ 0.06499054592787303,
+ 1.653071000113183,
+ 2.154527735116653,
+ 0.7261099317986819,
+ -0.6097257519867331,
+ -1.7570767386293233,
+ -2.3669282713651336,
+ -1.634856037765684,
+ 0.15706652680169955,
+ 1.0501437930651334,
+ 1.6148720931045208,
+ 2.030716917898738,
+ 1.5732280748679137,
+ 0.41899790430887135,
+ -0.9077234477151336,
+ -1.9454552490663828,
+ -2.5502529221990775,
+ -1.6707161434952964,
+ 0.41921356776880697,
+ 1.4350947986358205,
+ 1.7902692818945671,
+ 2.001086136059582,
+ 1.5447029782411508,
+ 1.6738543694431351,
+ 0.7198488227255774,
+ -1.9064264706863403,
+ -2.6985764952728037,
+ -1.4286007223658475,
+ -0.22092361163317184,
+ 1.0866222085568622,
+ 1.917456987900953,
+ 1.918359140329393,
+ 1.275871083832363,
+ 2.0900671180684163,
+ 1.3082751442804426
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.7954432556630535,
+ -4.028516895178546,
+ -2.034389589107275,
+ -1.5566391242708093,
+ -0.4063583326081419,
+ 0.9267726417672393,
+ 1.8525875017913218,
+ 2.1678410410483333,
+ 2.6532139870089093,
+ 1.5968194986045192,
+ -1.5836107933235373,
+ -2.6418093574828396,
+ -2.000393809810842,
+ -1.3323702287647186,
+ -0.21069793812629087,
+ 0.09629615649311951,
+ 0.5545142170379014,
+ 1.3376589258843368,
+ 1.5897235831940382,
+ 0.20130626947652608,
+ -1.1010873581528913,
+ -1.9341264721338005,
+ -1.9144741610554756,
+ -1.0718224225685997,
+ 0.1401255848885325,
+ 0.5269881495137674,
+ 0.7981647221294959,
+ 1.1608047905195802,
+ 1.2185550014621707,
+ -0.12153940391394134,
+ -1.3575400683462622,
+ -2.1536317149852873,
+ -2.769019803938625,
+ -1.7832782195150014,
+ 0.9528010971957708,
+ 2.0335287421389587,
+ 1.9830470333166792,
+ 1.8374656011149912,
+ 0.8996502248914092,
+ -0.438489999185686,
+ -1.5792268753389869,
+ -2.203580548805518,
+ -3.0755632846632017,
+ -1.7208869073285769,
+ 0.7634295449578791,
+ 0.9391019931180453,
+ 1.6141582681118571,
+ 2.16158974391465,
+ 0.5153139567739674,
+ -0.8206906612748934,
+ -1.8082825310514374,
+ -1.9992373242439343,
+ -1.3293535004230423,
+ -0.2058174870207134,
+ 0.10610736523872852,
+ 0.5424870438020364,
+ 1.403307019535218,
+ 1.6171280927662939,
+ 0.19743122460815743,
+ -1.1042728111335758,
+ -2.051589034190313,
+ -2.6452185507519435,
+ -1.675028240944829,
+ 0.5943035037767584,
+ 1.6822292491806916,
+ 1.8879375591174723,
+ 1.9521534343033609,
+ 1.220533720985625,
+ 1.96494592664229,
+ 1.859581404100452,
+ 1.1293066101719245,
+ 1.0780572208860157,
+ 0.17550391651672267,
+ -1.6390538080372155,
+ -2.3821588911806932,
+ -1.047908066908427,
+ 0.26036071282717943,
+ 1.496738718657858,
+ 2.1565127900458174,
+ 1.729233467745127,
+ 0.07404856659111592,
+ -0.5992029365360896,
+ -1.3740264734677055,
+ -2.0064005416721185,
+ -1.7767663131919533,
+ -0.7610472596847844,
+ 0.5751543703754268,
+ 1.7340179346085887,
+ 4.0005459600799815,
+ 2.994689051464394,
+ -0.14980906451623185,
+ -0.514982146375412,
+ -1.2304201322374229,
+ -1.9685080810071383,
+ -1.861325642930433,
+ -0.9310167203238126,
+ 0.39341737459262854,
+ 1.601332762940563,
+ 2.2704432146118614,
+ 1.7788514663165456,
+ -0.053759252557686606,
+ -0.7806610695544206,
+ -1.4712887547491549,
+ -2.0245595667045073,
+ -1.9067628330292252,
+ -2.157148383033337,
+ -0.961811674581246,
+ 1.5978089425411108,
+ 2.7238654325551006,
+ 1.7607387073702716,
+ 0.7484643765911113,
+ -0.590218207919755,
+ -1.671718124076512,
+ -2.027277278376313,
+ -1.7070497434104421,
+ -1.8661687962864222,
+ -0.7323762838995286,
+ 1.6568570111632965,
+ 2.6899290910078895,
+ 1.5789004365236268,
+ 0.4426028205886596,
+ -0.8550445449238534,
+ -1.4026993842782283,
+ -1.2912480916679647,
+ -0.6953035969722577,
+ -0.35664371521567895,
+ 0.7813454060275233,
+ 1.777614490742168,
+ 2.0118588471493197,
+ 1.3573837251608867,
+ 0.12363472897290537,
+ -1.1659498057533138,
+ -1.9497605189000837,
+ -1.524932864132537,
+ -1.0977711390548246,
+ -0.9300665240583569,
+ 1.658821605653882,
+ 3.0494479314609833,
+ 1.8926495520437054,
+ 1.016878613418462,
+ -0.30039310586745926,
+ -1.4885401542932453,
+ -2.0287998497096957,
+ -1.8949142586905312,
+ -2.1783161687190984,
+ -1.0725480814847428,
+ 1.7526037990196353,
+ 2.780583513281524,
+ 1.7512155917337862,
+ 0.7277366861688294,
+ -0.551196442332394,
+ -1.019928653949799,
+ -1.060609482119895,
+ -0.9132108335301341,
+ -0.7388515810163995,
+ 0.5009938207040168,
+ 1.6183226889498816,
+ 2.04272245219284,
+ 1.565293154434183,
+ 0.41802611043880206,
+ -0.8828058321575211,
+ -1.4077959999012335,
+ -1.2528109846236906,
+ -0.6789618928321707,
+ -0.3135179476948851,
+ 0.8069787088133417,
+ 1.7935921438664704,
+ 2.191474200892081,
+ 2.7076398057748796,
+ 1.6637777068830129,
+ -1.5081628292764235,
+ -2.5732501138368407,
+ -2.0203995276233386,
+ -1.429622445778406,
+ -0.22059904104770542,
+ 1.0893179268517434,
+ 1.922187392712462,
+ 2.120069129066713,
+ 4.195306962404918,
+ 2.931570209759078
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.0422992871121273,
+ -1.7310396112440976,
+ -1.6172851750410562,
+ -2.023963137085828,
+ -1.5601946358385612,
+ -0.405419737664406,
+ 0.9160063522542166,
+ 1.9456011424049846,
+ 2.6190394831557793,
+ 1.8920633643546232,
+ -0.5666527227419962,
+ -1.4744211859619725,
+ -1.7904550605086111,
+ -1.9924689464559175,
+ -1.5300656640446422,
+ -1.6199433708716995,
+ -0.5525238014315537,
+ 1.6674287037548021,
+ 2.6133766142690478,
+ 1.4151264486162771,
+ 0.20778204938131264,
+ -1.0937683816270527,
+ -1.9154258222866776,
+ -1.908093712158599,
+ -1.2607184727492937,
+ -1.2542045299564597,
+ -0.29597872688045096,
+ 1.6539610571987282,
+ 2.464229006950275,
+ 1.1687507224238847,
+ -0.11153561520487519,
+ -1.369398785842487,
+ -1.9929690997627756,
+ -1.580541840383867,
+ -0.21627816804853847,
+ 0.4016613360750863,
+ 1.2563593251161052,
+ 1.9709663074798203,
+ 1.8391552017422754,
+ 0.893944893494308,
+ -0.4293551284869314,
+ -1.6240553708408227,
+ -2.5135638201554404,
+ -1.7386203721319746,
+ -0.5873596840029803,
+ -0.4009341162382942,
+ 1.8005748881738726,
+ 3.0441449991936222,
+ 1.6234631749081192,
+ 0.5193848500607946,
+ -0.8127526291158705,
+ -1.7893082220261962,
+ -1.990070110646283,
+ -1.525721726080555,
+ -1.6437314355340729,
+ -0.6517076206083461,
+ 1.8011084496053653,
+ 2.661652418511553,
+ 1.412340837953287,
+ 0.20549998748086826,
+ -1.0841565893451484,
+ -1.63604057057893,
+ -1.355463334005659,
+ -0.5123179110576417,
+ -0.02825097093708262,
+ 0.9928761903251251,
+ 1.874133298352053,
+ 1.951340232510103,
+ 1.2111407334014634,
+ 1.9604685842396516,
+ 2.0610049235917356,
+ 2.400183994569766,
+ 1.1746017844334449,
+ -1.4901934475966172,
+ -2.6814038905997153,
+ -1.9031102320363829,
+ -1.0541772297551857,
+ 0.1574197328282577,
+ 0.5713018125206983,
+ 0.8466433742163483,
+ 1.245719781516254,
+ 1.2356665708952685,
+ -0.13792985701761262,
+ -1.3658712065428118,
+ -2.0100898784074035,
+ -1.7675127175211458,
+ -0.7665917163680499,
+ 0.5030974767811142,
+ 1.6936565129402967,
+ 1.4277746217354945,
+ 1.9569582998982926,
+ 2.4533892796592203,
+ 0.04890108370064009,
+ -1.2221349575606277,
+ -1.9715437073658246,
+ -1.8514892998039953,
+ -0.9361749707606647,
+ 0.303791168708125,
+ 0.752705200835974,
+ 0.9587717380183144,
+ 1.1467537639948604,
+ 1.0656283625725604,
+ -0.2725316751223148,
+ -1.4626172053719715,
+ -2.1771022529268858,
+ -2.719275348031537,
+ -1.6041882897852444,
+ 0.935197303395912,
+ 2.123184376918142,
+ 2.0052070958243813,
+ 1.761093463702837,
+ 0.7572601885764471,
+ -0.5841299333383332,
+ -1.6654705900068978,
+ -2.2008258783625734,
+ -2.6922304594448048,
+ -1.5093914952222922,
+ 1.1430428853197143,
+ 2.3657982167748557,
+ 2.0294272439758405,
+ 1.582371189672383,
+ 0.6005713534673045,
+ 0.4001788850776368,
+ -0.21799144677325064,
+ -1.5823422122733597,
+ -1.9946127442251156,
+ -0.5603262531782403,
+ 0.7729731203108823,
+ 1.7784054343358766,
+ 2.000471464173644,
+ 1.360952051956617,
+ 0.2574969359293089,
+ -0.03597617747406342,
+ -0.5521180440278755,
+ -1.929975104549163,
+ -1.8587755409841127,
+ 0.8042022023204913,
+ 2.0942342018798046,
+ 1.9360244040444268,
+ 1.885568993008053,
+ 1.022544315121719,
+ -0.2949184837077703,
+ -1.4768378097089154,
+ -2.1772092040134114,
+ -2.7668154447070887,
+ -1.739901386768263,
+ 1.0794247361753837,
+ 2.181874213711133,
+ 2.006537363716808,
+ 1.7475889140736771,
+ 0.9008021538933964,
+ 0.7802702894883524,
+ -0.017157366199310395,
+ -1.5834078986181825,
+ -2.2064647090456826,
+ -0.8366309946244902,
+ 0.4911577990314827,
+ 1.6124789753087045,
+ 2.024108277130016,
+ 1.5627304951172425,
+ 0.5718551917143091,
+ 0.3584116833561191,
+ -0.2813231786869159,
+ -1.4804404417439914,
+ -1.9282365563967194,
+ -0.5346816810627588,
+ 0.7945402267688821,
+ 1.8733481212203993,
+ 2.5498535651032626,
+ 1.8762837200049591,
+ -0.4437478463731305,
+ -1.3127172019431845,
+ -1.7226127934077509,
+ -2.010832109981645,
+ -1.433801681768695,
+ -0.2213237827009608,
+ 1.0782710112077845,
+ 2.0313554465044095,
+ 4.455558449364217,
+ 3.2660078054571797
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.1492837403098615,
+ 1.2982024128293252,
+ -0.5063417844704418,
+ -1.6171662755913765,
+ -2.0355413427635964,
+ -1.555237943844357,
+ -0.40943851661117037,
+ 0.8870271102789146,
+ 1.4574903197226206,
+ 1.370982119032934,
+ 0.6882894426406586,
+ 0.32088993367592267,
+ -0.8109053599583222,
+ -1.7908722343663608,
+ -2.182942575249092,
+ -2.628666045786471,
+ -1.41517797717578,
+ 1.2773841036771338,
+ 2.5058825111946854,
+ 2.0125608414296945,
+ 1.4195027351882412,
+ 0.2125517896608025,
+ -1.091727121843547,
+ -1.917961553107301,
+ -2.110553784267043,
+ -2.484957370703306,
+ -1.2562638823106869,
+ 1.4321425522901898,
+ 2.6416642248950777,
+ 1.9482774118961037,
+ 1.1751652768923633,
+ -0.00020734480311516268,
+ -0.36344618371503046,
+ -0.698526354031696,
+ -1.2853726013066704,
+ -1.3935427386314043,
+ -0.0069579370391961055,
+ 1.2551245351271527,
+ 1.9813317911577353,
+ 1.8336799375802355,
+ 0.8986092746098983,
+ -0.3487318019062437,
+ -0.8727034320037015,
+ -1.0077236068145807,
+ -1.677334254320342,
+ -1.5604804745748542,
+ 1.210697019667029,
+ 2.61092450559739,
+ 2.026151104990338,
+ 1.6279737859384638,
+ 0.5268400806862982,
+ -0.8102637400747015,
+ -1.7901214685631632,
+ -2.1810008963617413,
+ -2.6756109868692346,
+ -1.558305136308696,
+ 1.4211417147110634,
+ 2.5541219405991304,
+ 2.012056111268099,
+ 1.4191016420555589,
+ 0.3443515544919921,
+ 0.07157029375025162,
+ -0.45421067529372494,
+ -1.3918674952934404,
+ -1.7165159823525198,
+ -0.3243878360134261,
+ 0.9897039451759557,
+ 1.8824792943976152,
+ 1.9455620499304116,
+ 1.2167252735299265,
+ 2.0999072682463584,
+ 2.681194488275673,
+ 1.6621286089947205,
+ -0.7006352248928694,
+ -1.8244708196509105,
+ -1.9339424800759446,
+ -1.9071356816259257,
+ -1.2418020073805833,
+ -1.2505557298282184,
+ -0.39526462116086913,
+ 1.8741862483724876,
+ 2.5277629661767325,
+ 1.150285153997839,
+ -0.14105865498861886,
+ -1.3766400590630192,
+ -2.007097030389195,
+ -1.7704128631877092,
+ -0.9371873597256942,
+ -1.3288468955694925,
+ -0.7446315743981445,
+ 3.2088162488385383,
+ 4.348062186342266,
+ 1.2996501234663957,
+ 0.046017132194383345,
+ -1.2323077990638003,
+ -1.969433443308156,
+ -1.854902979958136,
+ -1.1169160735597796,
+ -1.0801760065825832,
+ -0.26926880768350836,
+ 1.8465004632452833,
+ 2.442282962599069,
+ 1.036513407475501,
+ -0.27427689220164714,
+ -1.5085474379354327,
+ -2.107374474647631,
+ -1.5521404132426153,
+ -0.12615059153754968,
+ 0.6119399471256307,
+ 1.3849386592662436,
+ 2.0095695866746937,
+ 1.770795995261408,
+ 0.7485513543150945,
+ -0.5887566493085468,
+ -1.7441796716981417,
+ -2.3543534015521597,
+ -1.632001505540335,
+ 0.1401358094614749,
+ 1.0250285919418891,
+ 1.603579220989274,
+ 2.0341826558582365,
+ 1.7890683160958682,
+ 2.0201723686906266,
+ 0.94280953192264,
+ -1.7829232208093846,
+ -2.764212774594409,
+ -1.6528755107089066,
+ -0.5585517788991219,
+ 0.7806700699993835,
+ 1.7785204833362172,
+ 2.0050659817193717,
+ 1.5617176732432414,
+ 1.882049273403683,
+ 0.652682631604129,
+ -1.9263778716686604,
+ -1.9817693555164677,
+ -0.3916272518405425,
+ 0.24300419779217902,
+ 1.145629733064401,
+ 1.9373614123592424,
+ 1.8974719978103476,
+ 1.0186593719882973,
+ -0.2922972598911792,
+ -1.5204944010955999,
+ -2.1606644569352884,
+ -1.6542563430358979,
+ -0.05452290430615879,
+ 0.6473221061855365,
+ 1.3964866586572424,
+ 2.0090619646666434,
+ 1.956446220608661,
+ 2.2339599120772102,
+ 1.0275490573752701,
+ -1.5679636171553604,
+ -2.7155102714342707,
+ -1.8062006175375465,
+ -0.8408406460338939,
+ 0.490544272060978,
+ 1.6087880564788337,
+ 2.0279083641307816,
+ 1.7717669802893588,
+ 1.9599324885500506,
+ 0.805573139709651,
+ -1.6398356955731883,
+ -2.703307044626868,
+ -1.6382606686426529,
+ -0.5407138458617335,
+ 0.7505589970460163,
+ 1.2952061860117698,
+ 1.279747005054269,
+ 0.8054585521484957,
+ 0.5055726243834682,
+ -0.6849397922271818,
+ -1.7229065185443264,
+ -2.0225814436277645,
+ -1.4289761597027872,
+ -0.22491348004640818,
+ 1.0686047392132987,
+ 2.796039593653595,
+ 2.1923692519572384
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.3159138702185014,
+ 4.379423016316819,
+ 0.9162418572394085,
+ -0.6698708039850789,
+ -1.9735173809397768,
+ -2.4083724141832508,
+ -1.8048553561748333,
+ -0.5889745076908158,
+ -0.30628155010646796,
+ 0.3661712797030052,
+ 1.9199518009898338,
+ 2.280573883560439,
+ 0.5519610346592763,
+ -1.026757509412985,
+ -2.2802542193000264,
+ -3.0006046878051635,
+ -1.9812841944022244,
+ 0.45045387318023655,
+ 1.636562043572768,
+ 2.097141795922861,
+ 2.3839272867847314,
+ 1.6447094167268532,
+ 0.17635433042641682,
+ -1.3580800532659958,
+ -2.454897035357346,
+ -3.1538695177981486,
+ -1.9814614531797576,
+ 0.7517074756973493,
+ 2.058091043532416,
+ 2.2604582076791164,
+ 2.2981902926640445,
+ 1.5672851654857307,
+ 1.610244844579949,
+ 0.5192173001402172,
+ -2.126463485249162,
+ -3.03366110224775,
+ -1.451113285970061,
+ 0.06185629131215895,
+ 1.554041602557158,
+ 2.363395435481869,
+ 2.151232964384211,
+ 1.2150949087320178,
+ 1.2656262911162406,
+ 0.12910285740326694,
+ -2.4256027236770215,
+ -2.4231929358187636,
+ 0.17486058998085846,
+ 1.3374383576187103,
+ 1.8837477729664165,
+ 2.412251184830119,
+ 1.9034892205015908,
+ 0.5518338879532381,
+ -1.0281159737046948,
+ -2.2816457482662456,
+ -3.0600902531584118,
+ -2.1320928655497156,
+ 0.562938258816634,
+ 1.6703959075970298,
+ 2.0994038887042263,
+ 2.385798820695888,
+ 1.8771367842754956,
+ 2.005104464259176,
+ 0.7127975719603739,
+ -1.984258815621661,
+ -3.1380305670531303,
+ -1.7357681000496394,
+ -0.31751882726027947,
+ 1.243036990269678,
+ 2.2584354644276896,
+ 2.2960782167777873,
+ 1.5640786510458864,
+ 2.204419790294061,
+ 1.7252501218513328,
+ 0.41189274283539135,
+ -0.30012813359356894,
+ -1.3933019130993063,
+ -2.3156356374498364,
+ -2.4737955219400587,
+ -2.9637701475031006,
+ -1.6992704182526812,
+ 2.035504741736398,
+ 3.254157490074644,
+ 2.2824537618398564,
+ 1.30309732259983,
+ -0.2415048839014853,
+ -1.6836469717919216,
+ -2.392333537385079,
+ -2.3069046718973754,
+ -4.393226754097672,
+ -3.0098157251238664,
+ 3.686331036491717,
+ 5.222195506488646,
+ 2.344447170565435,
+ 1.484075206728816,
+ -0.019053161973350084,
+ -1.5179453145109394,
+ -2.354248683379515,
+ -2.4106981451478897,
+ -2.856750758582979,
+ -1.594922462032864,
+ 2.0976617862401543,
+ 3.2909346152577106,
+ 2.2264101991857084,
+ 1.167799234119381,
+ -0.29394180552945925,
+ -0.7792915769350477,
+ -1.030321169264847,
+ -1.303597954796372,
+ -1.3003504358077267,
+ 0.26242133815544744,
+ 1.6955624522385342,
+ 2.4037260170508774,
+ 2.0512612603507847,
+ 0.8191852077038563,
+ -0.7019921038020138,
+ -1.2664201542923526,
+ -1.2863461427431921,
+ -1.0497110537382344,
+ -0.815124841407612,
+ 0.6385190673592342,
+ 1.9456214724422847,
+ 2.616848370975708,
+ 3.273099046865575,
+ 1.9909038453449934,
+ -1.481580768497761,
+ -2.822050245217368,
+ -2.411374499710384,
+ -1.916521890964292,
+ -0.5940118704958259,
+ 0.9947814650038148,
+ 2.1453222051238288,
+ 2.589682171120623,
+ 3.5172919149201283,
+ 1.8375476194845157,
+ -1.348576210131834,
+ -1.5323914804575667,
+ -1.643966194656149,
+ -1.948625471088229,
+ -0.10037642933358185,
+ 1.4196981135584221,
+ 2.3339964591762006,
+ 2.2190607388067516,
+ 1.1507956244706523,
+ -0.31588704749288293,
+ -0.823300080199731,
+ -1.0635641813351857,
+ -1.3364126886011207,
+ -1.3021872660103453,
+ 0.28222944079947915,
+ 1.7100829859951316,
+ 2.582290222206329,
+ 3.232835784972113,
+ 1.9175022353699163,
+ -1.0833364446695064,
+ -2.489567615836663,
+ -2.3782532305535473,
+ -2.11528474102667,
+ -0.9399173921385091,
+ 0.6542320934868557,
+ 1.9565141456975184,
+ 2.617765758368544,
+ 3.2096504297426387,
+ 1.8099314232895478,
+ -1.3339573623964305,
+ -2.785536656271959,
+ -2.4137391511622823,
+ -1.9082659431210487,
+ -0.7583141313440327,
+ -0.5268143669025805,
+ 0.2157243456282296,
+ 1.9956625369636252,
+ 2.436562957298642,
+ 0.7069521022225737,
+ -0.8802014492204787,
+ -2.0942721655166427,
+ -2.385921432632048,
+ -1.6497998285335853,
+ -0.3517742665568283,
+ 0.06358063015133358,
+ 0.3103896968973997
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.767295153909737,
+ 3.737509101565505,
+ 1.0746567977684864,
+ -0.03791672317067392,
+ -1.1384661488443,
+ -1.7388067216473242,
+ -1.5875594024171267,
+ -0.9020948126468268,
+ -0.8439520725701729,
+ -0.16251121913889305,
+ 1.5937013664144624,
+ 2.079926922030115,
+ 0.8377363766721234,
+ -0.31693921664542246,
+ -1.3789938112974314,
+ -1.9063951173590061,
+ -1.3793819301902668,
+ -0.0459640476186068,
+ 0.6363440469311774,
+ 1.2664060702686488,
+ 1.766289920707139,
+ 1.507105743281709,
+ 0.5809539591337158,
+ -0.5888336424999375,
+ -1.5747549129470406,
+ -2.1083621453185533,
+ -1.4393465972519162,
+ 0.18650399447214197,
+ 0.9920136402631142,
+ 1.4481879748871285,
+ 1.775492479560084,
+ 1.5124482674670885,
+ 1.6905766466913525,
+ 0.763855727229261,
+ -1.568315927054153,
+ -2.403025664115175,
+ -1.3976508771960414,
+ -0.4125704158759642,
+ 0.7540853266729052,
+ 1.5906372732846668,
+ 1.7377422209168518,
+ 1.30373564808604,
+ 1.5496483842358932,
+ 0.5037504240787889,
+ -1.7094920490966485,
+ -1.7511346980977642,
+ -0.2868090827174639,
+ 0.3081773112224902,
+ 1.0553747470793957,
+ 1.7151809334914172,
+ 1.6385636633692702,
+ 0.8373724889767302,
+ -0.3185326482740769,
+ -1.381066625503012,
+ -1.946131135016261,
+ -1.4710530349908608,
+ 0.008488073372044488,
+ 0.6508414732288514,
+ 1.2687782162313506,
+ 1.7682471411943759,
+ 1.681798366315302,
+ 1.9079201794719751,
+ 0.8587261718630985,
+ -1.3910229986284348,
+ -2.3822157888681494,
+ -1.5528943122724357,
+ -0.6787844788000574,
+ 0.4911721802546833,
+ 1.4472569706400573,
+ 1.7747493885383359,
+ 1.5108213595534075,
+ 1.6575437305697622,
+ 1.039400085487363,
+ 0.6610851732613389,
+ 0.3968721639443502,
+ -0.6168082701222208,
+ -1.5169119109578428,
+ -1.9198720171474153,
+ -2.3893850338296083,
+ -1.4910072257328635,
+ 1.2589937399959863,
+ 2.189029984676145,
+ 1.7696690345912087,
+ 1.310514768858746,
+ 0.2849383853605094,
+ -0.8694546269819073,
+ -1.642366881954763,
+ -1.8734446359657189,
+ -3.7392995140205993,
+ -2.624179070095171,
+ 2.349803675014145,
+ 3.4031976758179003,
+ 1.7732891434886977,
+ 1.4147614027401505,
+ 0.44528868850531794,
+ -0.7237306085726571,
+ -1.5738255942743435,
+ -1.9059752463445214,
+ -2.350222826258195,
+ -1.4377227511313575,
+ 1.32939037194353,
+ 2.256681451289792,
+ 1.758397214415648,
+ 1.2300823909135459,
+ 0.28397086841985153,
+ 0.04094448416372639,
+ -0.4102045382917751,
+ -1.2104562165575394,
+ -1.4850399688900653,
+ -0.26787723057069024,
+ 0.8800223417910623,
+ 1.6532153167778993,
+ 1.6977359812956931,
+ 1.0120110253539565,
+ -0.02112190488151419,
+ -0.33618627943676976,
+ -0.6272097324217375,
+ -1.0656596514035692,
+ -1.1722467480114582,
+ 0.012775917474777031,
+ 1.1120585010586341,
+ 1.8519952229645167,
+ 2.398296292847673,
+ 1.566400124098156,
+ -0.7588173763410188,
+ -1.6830934123974122,
+ -1.7049653899680182,
+ -1.639207384209019,
+ -0.8669377322770389,
+ 0.2907311987891756,
+ 1.315717490980777,
+ 1.9113250666343724,
+ 2.6859041276882043,
+ 1.5275820821249508,
+ -0.5764959227369332,
+ -0.7330287471537807,
+ -1.439009373583212,
+ -1.9717832265110944,
+ -0.5279198081816199,
+ 0.6409930964117391,
+ 1.5382658520376256,
+ 1.7580235582233412,
+ 1.2204550834978656,
+ 0.26728992783009137,
+ 0.01852946806144052,
+ -0.4038602110036828,
+ -1.2690721209199005,
+ -1.5001254909716686,
+ -0.2531084465976308,
+ 0.8942254126968342,
+ 1.7556700952287139,
+ 2.279003229748504,
+ 1.4636861908039367,
+ -0.45540848543139073,
+ -1.380586762871332,
+ -1.6153140017637613,
+ -1.724790559132472,
+ -1.091559023003815,
+ 0.025978316872577484,
+ 1.1249309970348274,
+ 1.8593909350343487,
+ 2.3597373315314822,
+ 1.4434062253665259,
+ -0.6702051859625635,
+ -1.6707776457639822,
+ -1.712746290097608,
+ -1.6379521628180278,
+ -1.0141530146174673,
+ -0.9956960376019087,
+ -0.2733582071063383,
+ 1.622672225090149,
+ 2.160960947327511,
+ 0.9399004722447262,
+ -0.2010915153637948,
+ -1.2598663884060113,
+ -1.7646497150796732,
+ -1.5073669667031269,
+ -0.7415271578417089,
+ -0.9906982843932732,
+ -0.5253974248348002
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.3640558013116237,
+ 4.627377475255494,
+ 1.6209940511079084,
+ 0.48273326291813545,
+ -0.8679257187914248,
+ -1.8386704280015314,
+ -2.0124337753914934,
+ -1.5132647909985049,
+ -1.6229900750602166,
+ -0.6725750241251943,
+ 1.9286592787898926,
+ 2.707745197359729,
+ 1.4010640826602483,
+ 0.16263546066957393,
+ -1.144634406087507,
+ -1.7109116221493768,
+ -1.3986936775511123,
+ -0.4840024739445064,
+ 0.03333990974510545,
+ 1.0485904920830214,
+ 1.9206717398463216,
+ 1.9686122206466992,
+ 1.1464250588909142,
+ -0.16321393817362262,
+ -1.4333626425038484,
+ -2.0315856224855473,
+ -1.5322895710968014,
+ -0.2206258442775411,
+ 0.469649646885006,
+ 1.3157319576628745,
+ 2.0138059658823,
+ 2.046097803075014,
+ 2.407018688073606,
+ 1.2640087598387144,
+ -1.697146961549094,
+ -2.790613114087641,
+ -1.888434747097656,
+ -0.9725944675360573,
+ 0.36583948302534613,
+ 1.5462796935915972,
+ 2.0540625067245646,
+ 1.8788439932802097,
+ 2.384540542001031,
+ 1.0142445484109202,
+ -1.7586937357294514,
+ -1.8536153761706606,
+ -0.7877943572212167,
+ -0.44528932767887525,
+ 0.7586207962138016,
+ 1.7826894417892798,
+ 2.0426635215935716,
+ 1.4003602801601418,
+ 0.160231821031163,
+ -1.1480797475733706,
+ -1.7491631031464574,
+ -1.4754423993707342,
+ -0.457812235859218,
+ 0.03702201321926508,
+ 1.0519662510755974,
+ 1.9234531170761286,
+ 2.1614131164322536,
+ 2.5573873018287725,
+ 1.3116703925838071,
+ -1.4221392249393623,
+ -2.6558131132768796,
+ -1.9936246406261888,
+ -1.2450789068324577,
+ 0.04281505996174414,
+ 1.3153680897479523,
+ 2.013938819617406,
+ 2.045185272739072,
+ 2.361087885114762,
+ 1.1247375023948962,
+ 1.1256779304168707,
+ 1.1393696440889742,
+ -0.1957803214493451,
+ -1.422287337817326,
+ -2.1871180727829733,
+ -2.8193807189253057,
+ -1.886499300539659,
+ 1.0842578404331233,
+ 2.1265795623585295,
+ 2.0141453444199304,
+ 1.8194365934503518,
+ 0.8400620134126606,
+ -0.5134008629010586,
+ -1.637151914751125,
+ -2.2249025452333826,
+ -4.619682292251691,
+ -3.304077358199827,
+ 2.1191705904554876,
+ 3.1679888448317644,
+ 1.9697177505925998,
+ 1.898683990632668,
+ 1.0093209246055486,
+ -0.32870412604929306,
+ -1.5165284075419379,
+ -2.209557940422971,
+ -2.822664755914761,
+ -1.856022717919218,
+ 1.1886321382706218,
+ 2.246324667491792,
+ 2.036466495169495,
+ 1.7546199782148275,
+ 0.8823121227047489,
+ 0.7512947203040755,
+ -0.04236846342116468,
+ -1.5958389679859646,
+ -2.211028947958732,
+ -0.8197222048169711,
+ 0.5268807179315116,
+ 1.6516995078498247,
+ 2.049497487489235,
+ 1.563463412840142,
+ 0.547396281755258,
+ 0.3226737816485244,
+ -0.3095588868049244,
+ -1.4878940579225175,
+ -1.9242965176140991,
+ -0.5122569331382263,
+ 0.8326489145642949,
+ 1.9145733848796203,
+ 2.5772902792541164,
+ 1.8076776117301805,
+ -0.4377591615283176,
+ -1.3640659124086278,
+ -1.7606467014903033,
+ -2.03306222728139,
+ -1.4305836574879767,
+ -0.1940102969300427,
+ 1.1177722787221416,
+ 2.0699110890549366,
+ 3.011975328499552,
+ 1.8509718275490132,
+ -0.14374402224274874,
+ -0.3372088756723886,
+ -1.8173580903353335,
+ -2.7476609366829856,
+ -1.0924806631374224,
+ 0.22736819943488196,
+ 1.4543655317533055,
+ 2.0418572991138944,
+ 1.7475470348294888,
+ 0.863691389161968,
+ 0.7385690902151556,
+ -6.500821071207318e-05,
+ -1.6987875154880934,
+ -2.243120710257209,
+ -0.8035564804905863,
+ 0.5462629568168192,
+ 1.7289945608702013,
+ 2.345313642536956,
+ 1.6407438701071184,
+ -0.0982950642792284,
+ -0.9709241184116303,
+ -1.5887362568586845,
+ -2.0556193465969415,
+ -1.6386432126557031,
+ -0.4961168733124546,
+ 0.8521363500051112,
+ 1.930293109005162,
+ 2.54502144438818,
+ 1.6866117178663205,
+ -0.36513626037901525,
+ -1.3675217281799532,
+ -1.7759992772677382,
+ -2.037254201449118,
+ -1.6197915843044133,
+ -1.7746782540712203,
+ -0.7924000399771376,
+ 1.9291583753366148,
+ 2.7563814384315477,
+ 1.497674290385707,
+ 0.2969093017427198,
+ -1.0364345853143795,
+ -1.9153241976439925,
+ -1.964884700618673,
+ -1.3560115982483436,
+ -2.263528162445769,
+ -1.4347264807237194
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.19628305447177713,
+ 0.039748544386199895,
+ 1.0670548407578395,
+ 1.9245439936584892,
+ 1.95616795892105,
+ 1.123121595958603,
+ -0.18728847218135694,
+ -1.4501459765452378,
+ -2.1099016793522978,
+ -1.714779497521895,
+ -0.14473257106469026,
+ 0.5040310448865114,
+ 1.3312805574625288,
+ 2.0137309750634245,
+ 2.0302417598498854,
+ 2.339695500019545,
+ 1.108686133458139,
+ -1.552631020786911,
+ -2.735271042532324,
+ -1.8738964239422948,
+ -0.9484804914802605,
+ 0.3891776828654734,
+ 1.5585229679366785,
+ 2.0500192480916413,
+ 1.859684175778449,
+ 2.080895955760398,
+ 0.8923408931268513,
+ -1.63897839111199,
+ -2.746178229753089,
+ -1.719041005772374,
+ -0.6513182912353903,
+ 0.646793791714408,
+ 1.1588608882128002,
+ 1.1648323808385161,
+ 0.8721402146981789,
+ 0.6451341774224773,
+ -0.5891211011514349,
+ -1.6826345812195451,
+ -2.0554259824153207,
+ -1.5206196586986702,
+ -0.335563533456726,
+ 0.9758354552928764,
+ 1.709773934007565,
+ 1.424708186762431,
+ 1.28218323727908,
+ 1.1241460544656625,
+ -1.5755566186511683,
+ -3.0016171594128633,
+ -1.9804202204126324,
+ -1.2205140695122845,
+ 0.06820113956327216,
+ 1.3303552990984666,
+ 2.012148337844007,
+ 2.0270272971454695,
+ 2.3790538031848394,
+ 1.2412636994264972,
+ -1.7018765286385187,
+ -2.786966005795149,
+ -1.8722786604172517,
+ -0.9471614614429656,
+ 0.3056851525856684,
+ 0.7297119251810389,
+ 0.9121869482383467,
+ 1.0757361345656544,
+ 1.0416274142962518,
+ -0.27453831725633293,
+ -1.477907647455051,
+ -2.0491861579324335,
+ -1.7161839348129577,
+ -0.6475061431882395,
+ 0.6507767512192641,
+ 1.1402166984482944,
+ 1.125808183468289,
+ 1.123430646339338,
+ 2.3591944145222428,
+ 2.0572398518513566,
+ 1.6402903370737205,
+ 0.669569390565555,
+ 0.47936777257794977,
+ -0.1630249536343787,
+ -1.7110039077154486,
+ -2.0977826961047192,
+ -0.6239493745114437,
+ 0.7295064970742576,
+ 1.7739048241448128,
+ 2.0370313110941214,
+ 1.4225787698792092,
+ 0.32384929495536297,
+ -0.003738528679153539,
+ -0.22815892926679238,
+ -2.8463877135397153,
+ -3.7632840252527,
+ -0.8016551125863353,
+ 0.5495603178847281,
+ 1.6692386226115554,
+ 2.054124708076165,
+ 1.5532756910967915,
+ 0.5256363143500125,
+ 0.29163847069381627,
+ -0.2914514541285978,
+ -1.6476843034293547,
+ -1.9662799320152806,
+ -0.4922317786236311,
+ 0.8549957720757214,
+ 1.9317927835473074,
+ 2.5465532559007418,
+ 1.6873599884356587,
+ -0.36605611510750685,
+ -1.369213913587403,
+ -1.7765712163480831,
+ -2.035480268408024,
+ -1.418404113298315,
+ -0.17257834200812427,
+ 1.139180162307314,
+ 2.0841531955603934,
+ 2.6817368451025363,
+ 1.6904369340657415,
+ -0.6237276847474487,
+ -1.7312457575783429,
+ -1.9189864464516653,
+ -1.965828843838634,
+ -1.3553572368319529,
+ -1.3991694508404733,
+ -0.46185300405669794,
+ 1.8152963240412066,
+ 2.5978313493142644,
+ 1.2547651274675682,
+ -0.030417494674504185,
+ -1.307478928497253,
+ -2.010109891409904,
+ -1.843826216372062,
+ -1.0571519693831497,
+ -1.110461700352018,
+ -0.13026574733302085,
+ 2.0653945554296564,
+ 2.0649549514248675,
+ -0.14516206622363212,
+ -1.1345289066660094,
+ -1.6005390735595713,
+ -2.051004844361909,
+ -1.619563290362953,
+ -0.47096292290518144,
+ 0.8725070719223674,
+ 1.9389975049346986,
+ 2.6009209225435144,
+ 1.8126201506440252,
+ -0.47707245972004686,
+ -1.418123733673077,
+ -1.784114361873692,
+ -2.0287975412973234,
+ -1.597401110308312,
+ -1.7067290444332088,
+ -0.6074548487102844,
+ 1.6870250572559218,
+ 2.6686906923477283,
+ 1.477093032654913,
+ 0.2717696701853414,
+ -1.0553212868255162,
+ -1.9195931989198682,
+ -1.9527924432172463,
+ -1.331430171974028,
+ -1.343357508189524,
+ -0.3497326930413012,
+ 1.6814577077444655,
+ 2.529994234852746,
+ 1.2338996415471313,
+ -0.05128677524101404,
+ -1.3342734107558363,
+ -1.9800121387750433,
+ -1.6526731115047724,
+ -0.27296448264557477,
+ 0.317034235780675,
+ 1.2237828669188116,
+ 1.9816875433614425,
+ 1.8887183694242837,
+ 0.9605502989925171,
+ -0.3744543483540211,
+ -1.5994160025051174,
+ -3.779018700672335,
+ -2.8556487684793903
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.9083417721161081,
+ -0.998686055631611,
+ 0.5027781055030256,
+ 1.4505848766459497,
+ 1.7770814673347932,
+ 1.3188994026384482,
+ 0.29669094882284325,
+ -0.8369310227466805,
+ -1.3466299650814664,
+ -1.2384653577910913,
+ -0.5468349858151348,
+ -0.19515209959389204,
+ 0.76569232397035,
+ 1.5941009392761214,
+ 1.8986962902076754,
+ 2.275385289895483,
+ 1.2091958844841983,
+ -1.149198702924383,
+ -2.221923935919825,
+ -1.750721966117297,
+ -1.1957760253187506,
+ -0.12347748207960733,
+ 1.0063975957476443,
+ 1.696071761645931,
+ 1.8249331647928968,
+ 2.137297166644551,
+ 1.0638029328241005,
+ -1.2777803227862987,
+ -2.3279535663756947,
+ -1.6848625199233938,
+ -0.9759392739837572,
+ 0.06782874405779044,
+ 0.4019980219937771,
+ 0.6614672142047546,
+ 1.084174817217373,
+ 1.1439860122373422,
+ -0.05625997462710763,
+ -1.145604176956174,
+ -1.745589690482304,
+ -1.5755790061647696,
+ -0.7292698294719829,
+ 0.3714836535164593,
+ 0.8530292698119041,
+ 0.9275064985716865,
+ 1.4298594430413682,
+ 1.3230576091458641,
+ -1.1000821428645027,
+ -2.330932365788472,
+ -1.7723651658169435,
+ -1.385277299063242,
+ -0.39983951747313295,
+ 0.765100421498823,
+ 1.5933554382342898,
+ 1.8968604408846654,
+ 2.31576919764826,
+ 1.3336295829807627,
+ -1.275863159726606,
+ -2.2645963538873115,
+ -1.7501632167435437,
+ -1.1953279261747969,
+ -0.23402498756730214,
+ 0.021057211206451012,
+ 0.44630601630832784,
+ 1.1877421358194962,
+ 1.434959975261128,
+ 0.22186255232532218,
+ -0.9191531652921814,
+ -1.6685752882158698,
+ -1.6824672256931774,
+ -0.9728827597793263,
+ 0.07125669865891812,
+ 0.3971358958631083,
+ 0.6608993220206909,
+ 1.0383709879463003,
+ 1.656199261630958,
+ 1.7091724019842658,
+ 1.6448427012177456,
+ 1.0293252003628335,
+ 1.0161890628227381,
+ 0.28827976081608486,
+ -1.6267880394951701,
+ -2.17213073768731,
+ -0.9538568052627207,
+ 0.1852883493620242,
+ 1.2490221983573389,
+ 1.7635692793788227,
+ 1.5164486972919002,
+ 0.7578450487794263,
+ 1.0261258093144987,
+ 0.5513485960381239,
+ -2.776554540629417,
+ -3.7525288705342117,
+ -1.0878311616067609,
+ 0.021947967737000508,
+ 1.1265770149750924,
+ 1.7362630284657243,
+ 1.5953898515409508,
+ 0.9177947824546459,
+ 0.8649334958911636,
+ 0.17751520915175112,
+ -1.5987764539944873,
+ -2.0923412307251907,
+ -0.852189736956482,
+ 0.301324857322806,
+ 1.3674372709879556,
+ 1.8943397497805312,
+ 1.37553873934007,
+ 0.05915204534886558,
+ -0.6159633674924144,
+ -1.2557122061921435,
+ -1.7653166790630543,
+ -1.516309016183934,
+ -0.5962990487694142,
+ 0.5739880410334744,
+ 1.565400087242001,
+ 2.0992704692597384,
+ 1.4375527265947161,
+ -0.17350862640421358,
+ -0.9729445221860852,
+ -1.439508473185014,
+ -1.7770435401750528,
+ -1.523827820061431,
+ -1.7069356636022575,
+ -0.7766263254953439,
+ 1.5672002715539997,
+ 2.4071024504811778,
+ 1.4080967153131716,
+ 0.4282904930526894,
+ -0.7398467599557318,
+ -1.5841803412333113,
+ -1.7417874991997329,
+ -1.317004151432184,
+ -1.5700329104336814,
+ -0.5178156661647596,
+ 1.7041819737247947,
+ 1.7469252040483267,
+ 0.28733872527433374,
+ -0.306411931670325,
+ -1.0524311257349486,
+ -1.711161274090205,
+ -1.6352086742629979,
+ -0.8361714630011806,
+ 0.3170779202790715,
+ 1.3774183756720184,
+ 1.941190269995603,
+ 1.467526495710289,
+ -0.007793222995652407,
+ -0.6484118045854207,
+ -1.2654203711248795,
+ -1.7642248556412705,
+ -1.678446553858463,
+ -1.9042597336135714,
+ -0.8573182137741269,
+ 1.3877265273459565,
+ 2.3768909394197033,
+ 1.5497978385116247,
+ 0.6779688747577318,
+ -0.4893469009209623,
+ -1.4435945249882807,
+ -1.7708316969511746,
+ -1.5079587110893629,
+ -1.6545615055759013,
+ -0.6588824635340939,
+ 1.4426647923801097,
+ 2.352953728999253,
+ 1.3946240386188644,
+ 0.41232838606505323,
+ -0.7193881950060359,
+ -1.2076781513898498,
+ -1.1614901887880478,
+ -0.6507635782338234,
+ -0.35738115433506534,
+ 0.6571390092353523,
+ 1.5382462889572865,
+ 1.7600135587910535,
+ 1.2043565998672257,
+ 0.13456717001817,
+ -0.992813572932316,
+ -2.5552630448740885,
+ -1.9923326766825262
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.741574427367147,
+ -3.610568243802999,
+ -0.7188810694735467,
+ 0.618830581368278,
+ 1.6951051296261377,
+ 2.0250312079399038,
+ 1.482099360207949,
+ 0.4357591911839786,
+ 0.1798606775437174,
+ -0.36112181720814773,
+ -1.5884723904086995,
+ -1.8635294803478557,
+ -0.40933054748699943,
+ 0.9162482137360176,
+ 1.9506413740964759,
+ 2.555420990836731,
+ 1.6722922074212074,
+ -0.42504442971559114,
+ -1.4440620851769557,
+ -1.7942288337379575,
+ -1.9988497409175396,
+ -1.3430584005957693,
+ -0.09171379743406691,
+ 1.1907576611043944,
+ 2.0887986813357817,
+ 2.6729052431302764,
+ 1.664979731200578,
+ -0.6764794274611468,
+ -1.7920937570942537,
+ -1.9235851348925912,
+ -1.9178922303746897,
+ -1.2703194063914902,
+ -1.2880953838441345,
+ -0.38806399797795116,
+ 1.783873139265434,
+ 2.524260858497513,
+ 1.1764949527944162,
+ -0.10902954030117135,
+ -1.3525634945580531,
+ -2.001641457821985,
+ -1.785802575192596,
+ -0.9685050221706614,
+ -0.9848757662915707,
+ -0.057356273213899016,
+ 2.044727165150658,
+ 2.037290937746027,
+ -0.19853840221684255,
+ -1.206540936573833,
+ -1.621903343427612,
+ -2.031589295003224,
+ -1.5675522643664848,
+ -0.409257028624411,
+ 0.9173141521823158,
+ 1.9516775587919808,
+ 2.6058390660591,
+ 1.801242498646473,
+ -0.5229609965257421,
+ -1.473748359720011,
+ -1.7960379989200075,
+ -2.0003472630784183,
+ -1.5376309215024646,
+ -1.6285516679246004,
+ -0.5564289442903078,
+ 1.6736097830007972,
+ 2.624010031181615,
+ 1.4221114818429719,
+ 0.21091713967548537,
+ -1.0958473446175816,
+ -1.9218192069397788,
+ -1.9160181874247295,
+ -1.2675383158717612,
+ -1.261717116119455,
+ -0.2990049099797757,
+ 1.6603976630124984,
+ 2.474774887309168,
+ 1.2200562187515824,
+ 1.9663775373325032,
+ 2.0633525019470476,
+ 2.4609031658203726,
+ 1.3958540650423488,
+ -1.7377768838398997,
+ -2.756198603554537,
+ -1.9039699479086818,
+ -1.049577877046771,
+ 0.26034219313237283,
+ 1.4588228273388242,
+ 2.0221276359382685,
+ 1.9137887839295578,
+ 3.6231945203852285,
+ 2.4744849022115343,
+ -3.1384467516139916,
+ -4.43677104313277,
+ -1.9612266510614127,
+ -1.2050449301575183,
+ 0.07326562085730248,
+ 1.3227497096329854,
+ 1.995223624010878,
+ 2.006350813352552,
+ 2.36616660261999,
+ 1.305366532137799,
+ -1.7868584998452803,
+ -2.78199767996637,
+ -1.8532068645877042,
+ -0.9336656866032294,
+ 0.3090334414161216,
+ 0.7305224160575978,
+ 0.9079348057903669,
+ 1.0625226967438641,
+ 1.0252569604209123,
+ -0.2776858519745704,
+ -1.4685960349906688,
+ -2.0313810303792446,
+ -1.697729493666334,
+ -0.6363472727284998,
+ 0.6508270130166031,
+ 1.1369435710568536,
+ 1.1191988964486979,
+ 0.8442446766984865,
+ 0.6125848075709637,
+ -0.5927831399587637,
+ -1.6724325377551965,
+ -2.2049805636547246,
+ -2.7477355477063248,
+ -1.6579248620438654,
+ 1.284523905088376,
+ 2.4170605196354984,
+ 2.0320470626794336,
+ 1.5796049058396675,
+ 0.44483171907094193,
+ -0.8897507555969068,
+ -1.8329298590668024,
+ -2.172293418202884,
+ -2.9391803656370343,
+ -1.5200105446965488,
+ 1.1834496621077453,
+ 1.335036755962399,
+ 1.3508576456866366,
+ 1.5680149826178067,
+ 0.02760410418164662,
+ -1.2416117533109772,
+ -1.9808064344366598,
+ -1.846411016048053,
+ -0.919037537504894,
+ 0.32737855265784693,
+ 0.7686870651838309,
+ 0.9396704725969203,
+ 1.0857598369439108,
+ 1.0250865566648675,
+ -0.29427976483568824,
+ -1.480340717434484,
+ -2.1848226702846163,
+ -2.7251319937121443,
+ -1.6024059252257126,
+ 0.9516468905936564,
+ 2.1452826903071376,
+ 2.0123949390073834,
+ 1.7539532658661143,
+ 0.7388126273130832,
+ -0.6057612847993684,
+ -1.6809653115400223,
+ -2.2049111225817346,
+ -2.6934810684342314,
+ -1.5048011546360351,
+ 1.1581563281127811,
+ 2.384603665832906,
+ 2.033277739051244,
+ 1.5720770639630748,
+ 0.5794180217006396,
+ 0.3662243708108728,
+ -0.23489953807111633,
+ -1.6553375695954973,
+ -1.9986297572061278,
+ -0.5408662547317976,
+ 0.7942717217170445,
+ 1.7923729667468018,
+ 2.0009104423689688,
+ 1.3477645455854075,
+ 0.23498225552345275,
+ -0.18272718068262542,
+ -0.3544481934265235
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.323940862263224,
+ -4.60966088577742,
+ -1.742169729833609,
+ -0.7131691727634929,
+ 0.6270901615407171,
+ 1.6938710729293427,
+ 2.025290607840213,
+ 1.6813022273200826,
+ 1.8702945989459734,
+ 0.8767138288362937,
+ -1.9017639492211982,
+ -2.755530308759335,
+ -1.5552702413464512,
+ -0.4054167129623191,
+ 0.893492976102488,
+ 1.4195830196350774,
+ 1.25778294251535,
+ 0.6694463543193073,
+ 0.2976706563081531,
+ -0.8168273816549418,
+ -1.7965987868420235,
+ -2.006103192451442,
+ -1.3293578959714103,
+ -0.08554370615421404,
+ 1.2014471649560565,
+ 1.770002989441871,
+ 1.4168983431422173,
+ 0.417797829011207,
+ -0.13519467149874184,
+ -1.1013988844976992,
+ -1.9252238141053795,
+ -2.1143708776442303,
+ -2.5354722959830314,
+ -1.3987492252028841,
+ 1.5833948575207029,
+ 2.699000452142664,
+ 1.9504993631538505,
+ 1.1713854237664647,
+ -0.11544033288611714,
+ -1.3548242475486134,
+ -2.0034772762609805,
+ -1.9877305729490258,
+ -2.5797397508829727,
+ -1.1816345194260491,
+ 1.5950465042985102,
+ 1.7086216862757038,
+ 0.9745331400903798,
+ 0.8061873180722408,
+ -0.5153844059081598,
+ -1.6263848583249163,
+ -2.040967669943946,
+ -1.5544578039239751,
+ -0.4028337900218975,
+ 0.8973104164758663,
+ 1.452890460180337,
+ 1.3181209517460117,
+ 0.6614358441348546,
+ 0.3002591730326835,
+ -0.8203824701709552,
+ -1.7995242902085915,
+ -2.187864886304285,
+ -2.6331997469373096,
+ -1.4156190773634998,
+ 1.2851003121464166,
+ 2.51689357258963,
+ 2.017126678336238,
+ 1.4177793236439817,
+ 0.2052551992737383,
+ -1.1013851055182493,
+ -1.925814230263129,
+ -2.1139444590533776,
+ -2.487509817240786,
+ -1.2554360197981072,
+ 1.4394405377887045,
+ 2.65145127221627,
+ 1.9514378674370636,
+ 1.2169610402921796,
+ 2.0954832700989945,
+ 2.74767532827828,
+ 1.8970339691550067,
+ -0.872023808038603,
+ -1.862487943658004,
+ -1.9288705622098774,
+ -1.898817035678151,
+ -1.050537295937041,
+ 0.2645118664973577,
+ 1.4571117211482902,
+ 2.17490000078858,
+ 4.597645439919973,
+ 3.315590181025314,
+ -1.7645734480726079,
+ -2.697389653453029,
+ -1.8631664077399723,
+ -1.955913589237162,
+ -1.2063129401600816,
+ 0.07864572736298472,
+ 1.321268022256528,
+ 2.135224773515155,
+ 2.7736514079133734,
+ 1.8822410607286353,
+ -0.9835495754593282,
+ -1.9975581577812926,
+ -1.967015789233905,
+ -1.8494956747118672,
+ -1.111679188855423,
+ -1.0556584496345638,
+ -0.16193478558801222,
+ 1.6323470806555496,
+ 2.3658800832596585,
+ 1.0306183381760614,
+ -0.27811259274091027,
+ -1.4720968198279885,
+ -2.0186445247087272,
+ -1.6936433264985717,
+ -0.7968212822781261,
+ -0.6454725337672156,
+ 0.10358530655853164,
+ 1.5560938113405645,
+ 2.1243340206738903,
+ 0.7418755939382901,
+ -0.5908199519546435,
+ -1.7413173880151518,
+ -2.3955088257963264,
+ -1.7430145985177752,
+ 0.21605834384151942,
+ 1.0432113852695168,
+ 1.6003065096183744,
+ 2.026843890679215,
+ 1.5817668791022004,
+ 0.43620218167323105,
+ -0.889313006004285,
+ -1.9319679602733675,
+ -2.8629990111180486,
+ -1.8262043868117859,
+ -0.10677774298759539,
+ 0.08579915877982622,
+ 1.8260686776726882,
+ 2.871513045490637,
+ 1.2807590487593747,
+ 0.02181951111790347,
+ -1.2513907735265386,
+ -1.974951645929281,
+ -1.8445748700776237,
+ -1.0940227751621907,
+ -1.0495753915173118,
+ -0.21918415407595293,
+ 1.7482228710277112,
+ 2.4037320812792817,
+ 1.0154461212561614,
+ -0.2982066070671356,
+ -1.527362646728305,
+ -2.1274603098837597,
+ -1.5592814192017734,
+ -0.10624068450092783,
+ 0.6434003450204411,
+ 1.4023393659592636,
+ 2.0127404105342954,
+ 1.7583138965573402,
+ 0.725888382155655,
+ -0.6117851212481842,
+ -1.7598518329000192,
+ -2.3701460755119137,
+ -1.6360982852187218,
+ 0.15997696452109414,
+ 1.0548459902684946,
+ 1.6181074743402737,
+ 2.033540691051536,
+ 1.7732954416434608,
+ 2.005534117045181,
+ 0.9884441640136346,
+ -1.8867517321909515,
+ -2.7813114028381336,
+ -1.6384078838825953,
+ -0.5351618838734047,
+ 0.8029380120030655,
+ 1.789817587791272,
+ 2.000612032656235,
+ 1.54287028674591,
+ 2.709609222405675,
+ 1.7731525830726884
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.00356680011328,
+ -4.384549781805405,
+ -2.396267003043401,
+ -2.026239889262594,
+ -0.7817724085042677,
+ 0.8117603125689858,
+ 2.0457061302810886,
+ 2.60790774331206,
+ 3.2500816075318775,
+ 2.03342243017798,
+ -1.6956757036551837,
+ -2.9584110052064876,
+ -2.405277097525895,
+ -1.7980452692465052,
+ -0.5820394784052537,
+ -0.3022573957084805,
+ 0.40975502643505574,
+ 1.7236043220363426,
+ 2.2031808058462263,
+ 0.544646024760125,
+ -1.0315568601150686,
+ -2.169423903871118,
+ -2.3514305266765105,
+ -1.5212286099864498,
+ -0.1711533894281875,
+ 0.21076471401163394,
+ 0.7121441627810013,
+ 1.546439740279526,
+ 1.801741211179123,
+ 0.16689208402089345,
+ -1.3619123107955895,
+ -2.4527531639868907,
+ -3.2105266769005616,
+ -2.140398619872521,
+ 0.8836930720272166,
+ 2.0975595966323506,
+ 2.257355194651211,
+ 2.289332948430304,
+ 1.3350771485700095,
+ -0.21203726834123687,
+ -1.657725985113149,
+ -2.5642551608645014,
+ -3.6394454171888455,
+ -2.117795429267008,
+ 0.6066034157906195,
+ 0.8249836327925334,
+ 2.028051758303217,
+ 2.8709222065450613,
+ 0.904385186693944,
+ -0.6795512639294052,
+ -1.9768479230362137,
+ -2.4038587208496,
+ -1.7944924442858883,
+ -0.5761712769601954,
+ -0.29842670334315713,
+ 0.373628996282257,
+ 1.8208960723608087,
+ 2.24194862354632,
+ 0.540147464721071,
+ -1.0352479273394501,
+ -2.282543112006584,
+ -3.0013603356307477,
+ -1.978828149836838,
+ 0.45872505242089473,
+ 1.6468658266055405,
+ 2.099293930661757,
+ 2.3783556328249147,
+ 1.6337831077425575,
+ 0.16489488770506786,
+ -1.3651478541220439,
+ -2.455148961989919,
+ -3.152097150453168,
+ -1.9775333914495294,
+ 0.7590434414353068,
+ 2.066345070071232,
+ 2.260737070182281,
+ 2.2910305580959687,
+ 1.5550025146526019,
+ 2.260033472259791,
+ 1.9074414080984716,
+ 0.3780269508481306,
+ -0.2863088463976252,
+ -1.3845890512162848,
+ -2.307146729133811,
+ -2.239246557745163,
+ -1.1812626211604038,
+ 0.377594323532135,
+ 1.8279683638555881,
+ 4.347891878208901,
+ 3.2938943200169173,
+ 0.3322103424770627,
+ 0.09482434138726134,
+ -1.1976332551090203,
+ -2.234676363679359,
+ -2.312930961355664,
+ -1.3689368180737471,
+ 0.15737797387636093,
+ 1.6486932964389776,
+ 2.4164865522419827,
+ 1.9836971103138172,
+ 0.22813461067552337,
+ -0.5063614109228839,
+ -1.513188031159492,
+ -2.348705238465032,
+ -2.4079669609014096,
+ -2.7869628465583896,
+ -1.3386154237085288,
+ 1.7999381823382326,
+ 3.198041687105329,
+ 2.2222942117572413,
+ 1.16731907007107,
+ -0.39469220870617017,
+ -1.786574250884303,
+ -2.4010809014109333,
+ -2.217443560868191,
+ -2.4942749804779,
+ -1.0898316564187964,
+ 1.9089148425159477,
+ 3.2241251331440077,
+ 2.0494652655954795,
+ 0.8228380568400346,
+ -0.6934315422067708,
+ -1.280928493790493,
+ -1.3228273828816968,
+ -1.0712619186395795,
+ -0.8393330359927337,
+ 0.6308387046501561,
+ 1.9369533956012512,
+ 2.4135950194295352,
+ 1.824597221543356,
+ 0.45500853443900346,
+ -1.0831404831932154,
+ -1.9256077138992531,
+ -1.634428467751585,
+ -1.5520995170289666,
+ -1.3697848448272858,
+ 1.827820829248035,
+ 3.5110251568168684,
+ 2.3350214133669773,
+ 1.461694300075002,
+ -0.04476110228811034,
+ -1.5356304937004706,
+ -2.3563578071373326,
+ -2.3963428318867814,
+ -2.8194147449175313,
+ -1.4807325951596657,
+ 1.9874558446546666,
+ 3.2681813616435837,
+ 2.2132557856224504,
+ 1.1436339067117622,
+ -0.3211553294613736,
+ -0.8114962151570962,
+ -1.0468759259426452,
+ -1.28574335080437,
+ -1.2669895787922607,
+ 0.2875265599974688,
+ 1.711301235949725,
+ 2.4032807861131267,
+ 2.034782112465365,
+ 0.7938665936117364,
+ -0.7277586016681596,
+ -1.2961712053021863,
+ -1.3005568225062334,
+ -1.0302273160640845,
+ -0.7806796442963371,
+ 0.6623230198075792,
+ 1.9579467940296464,
+ 2.6134372647791073,
+ 3.2866350028510465,
+ 2.0953826015895554,
+ -1.5913914425519544,
+ -2.8513900217835992,
+ -2.408321311967406,
+ -1.8981545035418672,
+ -0.5681864670833094,
+ 1.0166670375232665,
+ 2.153888960183952,
+ 2.581954835344581,
+ 5.216074571771357,
+ 3.682247618160725
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.7972474641748772,
+ -2.722388601979726,
+ -1.80438631224365,
+ -1.8353046438412655,
+ -1.0756014928572872,
+ 0.1617070369661152,
+ 1.3212841144294556,
+ 2.0512167559167604,
+ 2.647961347018076,
+ 1.776225990192752,
+ -1.0043710339479759,
+ -1.9813936416238522,
+ -1.8899654377579849,
+ -1.7212501527304216,
+ -0.9745650165171238,
+ -0.8953203893581553,
+ -0.08242446885179668,
+ 1.53560980061934,
+ 2.1901762731751635,
+ 0.9041076849796839,
+ -0.350459578304435,
+ -1.4588951211168149,
+ -1.9254908108347173,
+ -1.5611220537986905,
+ -0.6689259208030711,
+ -0.49982411468908716,
+ 0.17001118273413546,
+ 1.452240851096051,
+ 1.945325535122637,
+ 0.6237044839863081,
+ -0.6446546480887538,
+ -1.7120456892230296,
+ -2.335528458059673,
+ -1.675826629123159,
+ 0.28217209873735183,
+ 1.1012750402326932,
+ 1.5737948498930514,
+ 1.9246862597308336,
+ 1.4476886371664475,
+ 0.32938198698994586,
+ -0.9231276295955746,
+ -1.880607936971018,
+ -2.7674893884643947,
+ -1.7405468074982553,
+ -0.013276648655555456,
+ 0.16957180268555988,
+ 1.7307489751755396,
+ 2.68359819164249,
+ 1.1587387925605943,
+ -0.05049057220968947,
+ -1.2426579112096687,
+ -1.88880869399247,
+ -1.7185750224331047,
+ -0.969963236263287,
+ -0.9048677533247897,
+ -0.1449017694980456,
+ 1.6409439140296185,
+ 2.229794155168222,
+ 0.9008359545916855,
+ -0.35314032230776304,
+ -1.5035384026208782,
+ -2.076280634868177,
+ -1.4994475644467975,
+ -0.04217535550488362,
+ 0.7026129914688595,
+ 1.3808298581603249,
+ 1.9177237963283194,
+ 1.6304462750936681,
+ 0.621603389787883,
+ -0.647808574598628,
+ -1.714732769506355,
+ -2.2937640928381744,
+ -1.563333284032805,
+ 0.21003281718923947,
+ 1.0878942685398596,
+ 1.576960417661266,
+ 1.9262325881800195,
+ 1.6349723506039988,
+ 1.8327676904487278,
+ 1.2284672026003969,
+ 0.7517848523096214,
+ 0.45823908461240803,
+ -0.6669599111265162,
+ -1.647083656261832,
+ -1.9213620726793506,
+ -1.3470355861170222,
+ -0.19735424487528652,
+ 1.031911268088503,
+ 2.6888237159407375,
+ 2.105239915387205,
+ 1.0672632216707287,
+ 1.1981614834074215,
+ -0.4975812799584401,
+ -1.547796443367023,
+ -1.9352172559107805,
+ -1.4682248032723577,
+ -0.3730587440159461,
+ 0.8599886484773015,
+ 1.4054637992241066,
+ 1.3144941675771167,
+ 0.6399542900178756,
+ 0.28239126937524894,
+ -0.7863397689424599,
+ -1.7107726178431215,
+ -2.0734678320824584,
+ -2.493901847609769,
+ -1.338422246884746,
+ 1.2234925397065657,
+ 2.3915072036775094,
+ 1.9116902097933635,
+ 1.337946803891024,
+ 0.18551990563105544,
+ -1.0521286189890178,
+ -1.8292023071518446,
+ -2.0018294194304342,
+ -2.353907487508796,
+ -1.1855652851190106,
+ 1.3688823019616205,
+ 2.5172570482901424,
+ 1.8479787804747323,
+ 1.103911123437708,
+ -0.01823941190026363,
+ -0.36813936134799724,
+ -0.6778653449987027,
+ -1.2118951008031635,
+ -1.305480564772148,
+ 0.010006888161086606,
+ 1.2065558397596097,
+ 1.887900275524591,
+ 1.736567592105779,
+ 0.8395903396679786,
+ -0.3494400289903225,
+ -0.8540766345220948,
+ -0.9708911215436961,
+ -1.5848605879687279,
+ -1.4720278550250607,
+ 1.173839976017856,
+ 2.5139167811460874,
+ 1.9280698810490393,
+ 1.5246183304413288,
+ 0.4627464515287054,
+ -0.80665268701585,
+ -1.7208056565768628,
+ -2.068464015301504,
+ -2.530424930009462,
+ -1.4642033148752618,
+ 1.3730249616186767,
+ 2.449675025463421,
+ 1.908387256458553,
+ 1.3212828070485965,
+ 0.28517998991176186,
+ 0.01517607495461061,
+ -0.463193698973098,
+ -1.3056374263160633,
+ -1.5913004236508292,
+ -0.26953744145284164,
+ 0.9755623018777132,
+ 1.8051690536674274,
+ 1.8390854506870462,
+ 1.0820560858741732,
+ -0.04670356181880457,
+ -0.39446151955881276,
+ -0.6980490838099948,
+ -1.146001831193799,
+ -1.2486853235077424,
+ 0.03578738392720453,
+ 1.2258527119599423,
+ 2.0195479433492234,
+ 2.6312258999744467,
+ 1.795721575639961,
+ -0.9010776782518504,
+ -1.8586136707280272,
+ -1.859296233104264,
+ -1.773431385199733,
+ -0.9231472728960232,
+ 0.33760038990684366,
+ 1.4448336194566305,
+ 2.080373928494022,
+ 4.368681433036666,
+ 3.140926618702041
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.576165895559323,
+ -2.5103516850093035,
+ -2.0431412063703163,
+ -2.3840042266764376,
+ -1.699039124216926,
+ -0.26107688401386137,
+ 1.2796014483402744,
+ 2.409053328300967,
+ 3.1965958322322776,
+ 2.2533907444691894,
+ -0.8680505715710337,
+ -2.0002239317382764,
+ -2.2178983170495385,
+ -2.3119439057401063,
+ -1.6334063170967632,
+ -1.6735379954293648,
+ -0.4796328928547334,
+ 1.9737003339838155,
+ 3.0048214596593024,
+ 1.5118310009714924,
+ 0.024380352906527843,
+ -1.4793415018988643,
+ -2.333289092892156,
+ -2.1783656789845462,
+ -1.2910380547881248,
+ -1.2166286225773117,
+ -0.16935373572540685,
+ 1.9287390924598586,
+ 2.784319557158281,
+ 1.198321892975418,
+ -0.3536373211064598,
+ -1.8053175855265615,
+ -2.5635484953560583,
+ -1.9609146079394573,
+ -0.05916376222611404,
+ 0.7745166926335056,
+ 1.65755118558093,
+ 2.3777838721381594,
+ 2.076342162100167,
+ 0.8561730684443252,
+ -0.7240177983177486,
+ -2.07977551272202,
+ -3.1603510006939395,
+ -2.1149634297722195,
+ -0.4794703378556142,
+ -0.25423896824203723,
+ 2.1609585183476954,
+ 3.5542587158244796,
+ 1.784096849476093,
+ 0.3985334665118739,
+ -1.1641149461225824,
+ -2.216501332431079,
+ -2.3089150700422874,
+ -1.6280148916478736,
+ -1.6966321124978117,
+ -0.5852304317758265,
+ 2.1246628479446135,
+ 3.059982859410941,
+ 1.508240772738679,
+ 0.021442036015471747,
+ -1.4898411865094896,
+ -2.169465877484952,
+ -1.707133890259437,
+ -0.43072356699702036,
+ 0.26452364970020864,
+ 1.3659912543877033,
+ 2.296786778418993,
+ 2.241617742034413,
+ 1.1953526435167612,
+ -0.35791832403308216,
+ -1.8092335404130546,
+ -2.518464752687706,
+ -1.8435595796891031,
+ -0.119385970963879,
+ 0.7693702300117743,
+ 1.6617474095228837,
+ 2.3797992118273816,
+ 2.30982785250005,
+ 2.698030131678297,
+ 1.4528544610527832,
+ 1.3128148057994415,
+ 1.1846579938033004,
+ -0.38406181342078083,
+ -1.7759063508986173,
+ -2.407999734862643,
+ -1.9773581175914705,
+ -0.6993999291742731,
+ 0.8280195351657693,
+ 2.4664564381285294,
+ 2.0132226653123326,
+ 2.015836799768633,
+ 2.470008297402902,
+ -0.16401114593666338,
+ -1.619298408105372,
+ -2.382556623956251,
+ -2.094694191316461,
+ -0.9081174220327136,
+ 0.5968599620821513,
+ 1.1822291994807566,
+ 1.3113394473262117,
+ 1.1872126376613978,
+ 0.9755148816634376,
+ -0.5415136042260975,
+ -1.8800316146968348,
+ -2.6049923509033714,
+ -3.214496163714915,
+ -1.842023089794208,
+ 1.255099409123432,
+ 2.691534199508191,
+ 2.4001040456227196,
+ 1.968460792156491,
+ 0.6870276961039988,
+ -0.9016857385142703,
+ -2.0921800748129096,
+ -2.5948421443805736,
+ -3.135416191496288,
+ -1.7030049582006537,
+ 1.482302208777418,
+ 2.9387663822085535,
+ 2.3935978003483642,
+ 1.728512685342982,
+ 0.4772453577943506,
+ 0.1724277255240026,
+ -0.4531367517685832,
+ -1.7726503424741853,
+ -2.1436437922268508,
+ -0.44813171920821987,
+ 1.1172467848114533,
+ 2.2073315653642314,
+ 2.324668270288185,
+ 1.441720624275946,
+ 0.0649210990230751,
+ -0.3782965064764073,
+ -0.8426289645596757,
+ -2.2057319997354443,
+ -2.102127259056829,
+ 1.1290723676855525,
+ 2.718226898888807,
+ 2.3509664192313777,
+ 2.145257629945325,
+ 1.014501518314683,
+ -0.567887359646366,
+ -1.8956118585371236,
+ -2.6030319266421307,
+ -3.267796422324947,
+ -2.002990623404771,
+ 1.4326505473606896,
+ 2.7626879793832173,
+ 2.3998264256107342,
+ 1.9507490855554763,
+ 0.8436329056510936,
+ 0.6359403153460385,
+ -0.20326140070374832,
+ -1.8118443114002039,
+ -2.431511612329075,
+ -0.7854445919201767,
+ 0.7953391479715075,
+ 2.039583470578587,
+ 2.3856653178834475,
+ 1.7037271730473103,
+ 0.442429975624219,
+ 0.12795527967783338,
+ -0.512503751391463,
+ -1.6634617801963107,
+ -2.066855693981952,
+ -0.41689179513194824,
+ 1.1425440821737924,
+ 2.337789883958323,
+ 3.1339148141422535,
+ 2.2486304423487002,
+ -0.7266177177790969,
+ -1.8195085187870788,
+ -2.1506032738187173,
+ -2.3481060965604392,
+ -1.5346878966841975,
+ -0.04056868860113902,
+ 1.461084801291005,
+ 2.490187661124258,
+ 5.382464795278996,
+ 3.9203362293807924
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.8943043786076843,
+ 5.318516177556641,
+ 1.7331206255171334,
+ 0.31780964747247015,
+ -1.2399185382087181,
+ -2.2538641063967773,
+ -2.2920256478321943,
+ -1.561904697127378,
+ -1.6067043198745437,
+ -0.5620975650445782,
+ 2.2366296467173417,
+ 3.052832914659809,
+ 1.4474977567254381,
+ -0.06144507636990393,
+ -1.5673948255985009,
+ -2.2570469094490453,
+ -1.7459248964250438,
+ -0.3651708523547009,
+ 0.3759552853088149,
+ 1.4376075547036753,
+ 2.326646635693779,
+ 2.216696054262037,
+ 1.1265087416251782,
+ -0.4407865604945938,
+ -1.87850531455818,
+ -2.5940197470239723,
+ -1.8729163579299162,
+ -0.051523117068844604,
+ 0.8792383092869438,
+ 1.7258190680837007,
+ 2.3971135188104262,
+ 2.274038229468131,
+ 2.6260458176459154,
+ 1.3103706319354735,
+ -2.0600758338396306,
+ -3.2900082363305234,
+ -2.0997778815638086,
+ -0.9112129357319416,
+ 0.6745579433498384,
+ 1.9665532083916077,
+ 2.4044536276993558,
+ 2.0410135128951055,
+ 2.5321890518051697,
+ 0.9909609092070986,
+ -2.181492174312748,
+ -2.271186292755671,
+ -0.7118307932301126,
+ -0.14179953789547636,
+ 1.1171641139479875,
+ 2.201486171614978,
+ 2.3414983738116235,
+ 1.4468008322846306,
+ -0.06401516966596105,
+ -1.570958540903099,
+ -2.305907815956328,
+ -1.8505800481848882,
+ -0.31662214274106204,
+ 0.3865702639289329,
+ 1.4412879918133006,
+ 2.3296807540898237,
+ 2.4487997135226913,
+ 2.8519981662162226,
+ 1.3963812920971586,
+ -1.76883034204113,
+ -3.18386234369792,
+ -2.2596188376090143,
+ -1.2499484891523,
+ 0.30217538435032415,
+ 1.7250495391252378,
+ 2.396791557681873,
+ 2.272497372764652,
+ 2.5755072036417324,
+ 1.1549673563894336,
+ -1.8893858141069302,
+ -3.2298939166723994,
+ -2.0999290228422156,
+ -0.9114465458262284,
+ 0.595878417220716,
+ 1.181830284715232,
+ 1.3123774221691764,
+ 1.4585320974071285,
+ 2.7053782356917195,
+ 2.394123799920954,
+ 2.003072623182284,
+ 0.7474789168631479,
+ -0.8420492027263747,
+ -2.058992500427373,
+ -2.599541728743866,
+ -5.314105373660191,
+ -3.7729124937221,
+ 2.7892609436052,
+ 4.109026167208773,
+ 2.364949445502541,
+ 2.1164521320016934,
+ 0.9551173830217584,
+ -0.6316806986052572,
+ -1.9363581242707064,
+ -2.6067978523152497,
+ -3.2832477998741116,
+ -2.0992331881173567,
+ 1.5707938075004113,
+ 2.826907653357647,
+ 2.4035461905179902,
+ 1.9130210823136942,
+ 0.7765965006789192,
+ 0.5499929674701111,
+ -0.25700311017634375,
+ -1.7907027621462337,
+ -2.3746125254144217,
+ -0.7237485503276667,
+ 0.8573633194224742,
+ 2.075217342866775,
+ 2.3790790590319153,
+ 1.6580345097230875,
+ 0.3724959925302543,
+ 0.040211828508315034,
+ -0.5647672933916181,
+ -1.6347159119362218,
+ -2.0000670553118107,
+ -0.35245637499194316,
+ 1.2005327511637955,
+ 2.3698523820226223,
+ 3.137662678782801,
+ 2.136592689389378,
+ -0.7276627593032788,
+ -1.889897843704412,
+ -2.1803554282810946,
+ -2.3351184757400607,
+ -1.4843928760453708,
+ 0.024902948425272103,
+ 1.5134864079195882,
+ 2.511748744506586,
+ 3.60209897730672,
+ 2.145470740435514,
+ -0.42028631907246267,
+ -0.6427989554504263,
+ -2.0728054260700324,
+ -3.020930282395586,
+ -1.0592682118548853,
+ 0.5147141509262234,
+ 1.8730288709710683,
+ 2.4071207054037815,
+ 1.9027216287769058,
+ 0.7542917044349498,
+ 0.5286571266369546,
+ -0.22379596544538347,
+ -1.8954355569690455,
+ -2.4054965232284125,
+ -0.7042268522832501,
+ 0.8788339282687306,
+ 2.186230145801098,
+ 2.9087539475468285,
+ 1.9625190990155117,
+ -0.3212986246581821,
+ -1.446348873844102,
+ -2.0100247383529153,
+ -2.3983669974916637,
+ -1.7548732440413821,
+ -0.3338187511523792,
+ 1.2213377625808495,
+ 2.3849793956583643,
+ 3.0936488668512325,
+ 1.9834755181105754,
+ -0.627595139824394,
+ -1.8854902492435863,
+ -2.1954407511542384,
+ -2.3373670350457023,
+ -1.6987578982645333,
+ -1.797242136427646,
+ -0.7076113887002083,
+ 2.2530337267592824,
+ 3.1318657111195094,
+ 1.571908395385533,
+ 0.0969798263217682,
+ -1.4254517348636768,
+ -2.321985003105606,
+ -2.2142239827308625,
+ -1.3625752798153914,
+ -2.1375901305132103,
+ -1.298085366183463
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.165504632291785,
+ 4.379877043916293,
+ 1.6213988030760351,
+ 0.6157521528961554,
+ -0.6590920773042538,
+ -1.6461287675960001,
+ -1.9188582383623096,
+ -1.551194422176089,
+ -1.7095418198077943,
+ -0.7779552072609298,
+ 1.812162380472108,
+ 2.602685388023291,
+ 1.435243149549743,
+ 0.32037859478256014,
+ -0.9146798259762283,
+ -1.4246733991152867,
+ -1.2311909750272803,
+ -0.5861896603366602,
+ -0.19470317953177296,
+ 0.8367727781176922,
+ 1.738131675348845,
+ 1.894110980077192,
+ 1.2132008196658741,
+ 0.015191110319896037,
+ -1.201869517576314,
+ -1.7493780578374594,
+ -1.3754425552183331,
+ -0.3442315844746838,
+ 0.21705649617578718,
+ 1.1022443258012276,
+ 1.8507973986579727,
+ 1.988703218744387,
+ 2.3724167589147602,
+ 1.291848739077768,
+ -1.5330344138866738,
+ -2.586018858087364,
+ -1.8348147836231266,
+ -1.0590565703819654,
+ 0.17600532705395813,
+ 1.3367069251440828,
+ 1.9149883991455774,
+ 1.8577287806560947,
+ 2.396722915959437,
+ 1.077114946385729,
+ -1.5573322637958273,
+ -1.66018096508971,
+ -0.875414940345677,
+ -0.6694258803042393,
+ 0.5537042481724077,
+ 1.5851284936002235,
+ 1.9375983074694103,
+ 1.4345004125935101,
+ 0.3179743505284861,
+ -0.9182018685974338,
+ -1.4575947557157067,
+ -1.2928135348330871,
+ -0.5737640612227894,
+ -0.19549726026667164,
+ 0.8400967151697067,
+ 1.7408692575806288,
+ 2.069555250939613,
+ 2.479139234297469,
+ 1.3160291291661714,
+ -1.2560911482307977,
+ -2.4257254615363433,
+ -1.9082852196345896,
+ -1.2998374816659881,
+ -0.12899524959215786,
+ 1.102137877859849,
+ 1.8512352316875442,
+ 1.9881702024027532,
+ 2.3274333387804234,
+ 1.1568983624137332,
+ -1.395692248027763,
+ -2.5401961284425476,
+ -1.8355927020993756,
+ -1.0595506752770758,
+ 0.08009511805417935,
+ 0.4572862265146829,
+ 0.7523571278825194,
+ 1.232648512572541,
+ 1.8378198636022511,
+ 1.8533803966690563,
+ 1.7811667024321431,
+ 0.9412548148659805,
+ -0.31709479574802496,
+ -1.4307623240023655,
+ -2.0775359022910953,
+ -4.369618903019863,
+ -3.143879751128467,
+ 1.7689032529575217,
+ 2.6850568937828267,
+ 1.7966644156594846,
+ 1.8412369576572054,
+ 1.092684896882679,
+ -0.14099410184039085,
+ -1.3058677175119506,
+ -2.046335177007314,
+ -2.6455686865129615,
+ -1.7795407519790565,
+ 0.9879347583281219,
+ 1.96195429231709,
+ 1.8853868910631597,
+ 1.730244346054967,
+ 0.9942738979731494,
+ 0.9212031562660328,
+ 0.09949097793852006,
+ -1.5396272628683414,
+ -2.204447562623884,
+ -0.922236303433889,
+ 0.32997073915224845,
+ 1.4448700823434582,
+ 1.9241471876310237,
+ 1.5729524932166463,
+ 0.6901089982651454,
+ 0.5269898077604438,
+ -0.15296745108190923,
+ -1.458843893778203,
+ -1.9632000102769969,
+ -0.6432130791923352,
+ 0.6249322917628194,
+ 1.6987129908178633,
+ 2.3218897388565543,
+ 1.671509552345223,
+ -0.2638929114390197,
+ -1.0752822628690628,
+ -1.5614476749607615,
+ -1.925393576894169,
+ -1.461193284217428,
+ -0.34975476250457427,
+ 0.9046942834285696,
+ 1.8702957506755846,
+ 2.756895485097184,
+ 1.7398817126852821,
+ 0.0348768427076184,
+ -0.14814041832500674,
+ -1.7308700612494659,
+ -2.6925853617428848,
+ -1.1656577963296897,
+ 0.045406326649318235,
+ 1.2415932780953112,
+ 1.8922434151801537,
+ 1.7250023043665823,
+ 0.9772631807948022,
+ 0.9136751217878009,
+ 0.1498628666409236,
+ -1.6461793510572822,
+ -2.2388467503499285,
+ -0.9075760043205761,
+ 0.34885314543094187,
+ 1.5031700149220242,
+ 2.0770481203182505,
+ 1.5015798732182952,
+ 0.04656939704945826,
+ -0.697571954478058,
+ -1.3804633941464548,
+ -1.9217347744685231,
+ -1.6371217712492845,
+ -0.6280015115931225,
+ 0.6444376863365958,
+ 1.7155566779168805,
+ 2.2959841430267214,
+ 1.5662770391533913,
+ -0.2062742781700313,
+ -1.0841525656137472,
+ -1.5776929725567277,
+ -1.9310855813951364,
+ -1.6423650814266961,
+ -1.842267080797735,
+ -0.8861495323199021,
+ 1.8020300714173403,
+ 2.633219504963859,
+ 1.5177267743401441,
+ 0.4447246094566906,
+ -0.8240491116975793,
+ -1.7320761498436061,
+ -1.8893672522693643,
+ -1.4148113821000181,
+ -2.453429258324954,
+ -1.5931685521426664
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.588353898450075,
+ 3.7671494625393156,
+ 2.022704046067955,
+ 1.6750200068410883,
+ 0.6043051122817634,
+ -0.7365393033850834,
+ -1.7518115327233836,
+ -2.191365276360148,
+ -2.7205057756418976,
+ -1.688445661758008,
+ 1.4624394070180777,
+ 2.5253309285873455,
+ 2.021313367537788,
+ 1.4758031466961443,
+ 0.4300720438566657,
+ 0.17889854955350545,
+ -0.3905145476677412,
+ -1.4277618061888075,
+ -1.7990714535057275,
+ -0.40333698825142156,
+ 0.9194153306486277,
+ 1.8511673612829265,
+ 1.9671759643861761,
+ 1.2366241919821557,
+ 0.0828103803168609,
+ -0.2530983840629666,
+ -0.6429399609564167,
+ -1.2725037080680344,
+ -1.45365680011121,
+ -0.08401043830319103,
+ 1.1930838296755135,
+ 2.0857834360499004,
+ 2.7193872744595775,
+ 1.7994044034164274,
+ -0.7896884562365031,
+ -1.8251605615952426,
+ -1.9198325211911762,
+ -1.9095122574642864,
+ -1.0764391771265662,
+ 0.2348173926749311,
+ 1.43641898137369,
+ 2.1702438967625595,
+ 3.068997704808618,
+ 1.7709924699765505,
+ -0.5657042011486634,
+ -0.7479387763362977,
+ -1.6886425003257766,
+ -2.363789300136032,
+ -0.7088539657173974,
+ 0.6262712127374205,
+ 1.6967462586286048,
+ 2.0201263190795884,
+ 1.4728038927906528,
+ 0.42514261037551615,
+ 0.1742522285978474,
+ -0.3640474933501807,
+ -1.5062248700033878,
+ -1.8306059546770255,
+ -0.39952986639789134,
+ 0.9225414594230004,
+ 1.951280267729528,
+ 2.5544456117201837,
+ 1.6692691292612618,
+ -0.4314640458574264,
+ -1.451491988155456,
+ -1.7948538257341842,
+ -1.9931051206614776,
+ -1.3333936208235362,
+ -0.0823949350322902,
+ 1.1957317499203768,
+ 2.0877042916304727,
+ 2.6698114828727886,
+ 1.660770673967184,
+ -0.6819900852480971,
+ -1.7976540928415474,
+ -1.9226160856303847,
+ -1.9109146190778994,
+ -1.259604528391876,
+ -1.2760215754816095,
+ -0.4153994790086735,
+ 1.8740877561580984,
+ 2.5357264884473274,
+ 1.211626597339682,
+ 1.9577751406799864,
+ 1.8633074071913507,
+ 0.9448714362138104,
+ -0.3737245995225525,
+ -1.5823364252326428,
+ -3.736885801750419,
+ -2.8232156422668337,
+ -0.18712795986449665,
+ 0.04861091366229067,
+ 1.057081815815457,
+ 1.901707267336772,
+ 1.9302579330220528,
+ 1.1055857247952525,
+ -0.18896752242792575,
+ -1.435225193050829,
+ -2.0870538573948285,
+ -1.6949129414938173,
+ -0.13911656851924778,
+ 0.5031967197090078,
+ 1.3176037051376697,
+ 1.9891555298351662,
+ 2.0028642365582208,
+ 2.3073574724860975,
+ 1.0922058110946316,
+ -1.5343937933199956,
+ -2.7013841999541457,
+ -1.8486443989439287,
+ -0.9329409420473593,
+ 0.3882753706810365,
+ 1.541529794799041,
+ 2.0243479682746006,
+ 1.8338413261383189,
+ 2.051117864504868,
+ 0.8782692816013445,
+ -1.619151142587992,
+ -2.711286929493322,
+ -1.6951736794557717,
+ -0.6392665506378791,
+ 0.6428636677200871,
+ 1.1493326592038826,
+ 1.1529384664821525,
+ 0.8579909113652221,
+ 0.6315938034855851,
+ -0.585587401327886,
+ -1.6637619936184296,
+ -2.029285617915767,
+ -1.4987495598435867,
+ -0.3273353466161059,
+ 0.967509326833328,
+ 1.6934538508860881,
+ 1.4092972156427632,
+ 1.262626405060094,
+ 1.1059417206594873,
+ -1.5659958112269616,
+ -2.9785066440935677,
+ -1.9516199849922502,
+ -1.1854203585678202,
+ 0.09446683591625762,
+ 1.3361589711322273,
+ 1.9951277901446847,
+ 1.992624967285148,
+ 2.3333730221644666,
+ 1.2100249783943584,
+ -1.691726772799372,
+ -2.75997814792211,
+ -1.840615908503798,
+ -0.9128142643782532,
+ 0.3312607881870253,
+ 0.7564901775901199,
+ 0.9207935462997461,
+ 1.0467744451635483,
+ 0.9967160935141528,
+ -0.29819626755434836,
+ -1.480262409849171,
+ -2.029137884137184,
+ -1.6825337605536972,
+ -0.6148156786888879,
+ 0.6715404397141108,
+ 1.1605045868654795,
+ 1.1299210195547251,
+ 0.8273494898661042,
+ 0.5835245701777217,
+ -0.6119261276030609,
+ -1.6810837529221936,
+ -2.2001237042483943,
+ -2.7564139805930803,
+ -1.7438474033818725,
+ 1.3772387783123825,
+ 2.4398102459786246,
+ 2.027646202714459,
+ 1.5629541931470843,
+ 0.42305860541611257,
+ -0.907035653616252,
+ -1.8383235578421986,
+ -2.1638982268174036,
+ -4.352577560500787,
+ -3.0661720847330254
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.725475190315846,
+ 1.3017270259582738,
+ 1.4889387626648738,
+ 2.0193770187728983,
+ 1.6818233310103659,
+ 0.599850229040377,
+ -0.7328549331581056,
+ -1.8352879479402562,
+ -2.512337798900553,
+ -1.8654372288605874,
+ 0.3843385734386772,
+ 1.2332653160657858,
+ 1.6880836506805676,
+ 2.019503853305687,
+ 1.678967599053905,
+ 1.82796188448025,
+ 0.7057526897299868,
+ -1.6549404563678871,
+ -2.673732975583882,
+ -1.5518287682585201,
+ -0.406179281368318,
+ 0.9189163986345067,
+ 1.8414846828988465,
+ 1.9661790082738124,
+ 1.4328899111375257,
+ 1.486614324292507,
+ 0.4570974646387074,
+ -1.6677631587163266,
+ -2.565370579457514,
+ -1.3270445129492445,
+ -0.0892983154568336,
+ 1.19273852812268,
+ 1.7934792931069647,
+ 1.4874263660590532,
+ 0.3922990648845085,
+ -0.12874784578566598,
+ -1.093147647472942,
+ -1.9157805879360108,
+ -1.9161909724436508,
+ -1.0695154965570952,
+ 0.2313886005079232,
+ 1.4698315322779458,
+ 2.3276984112139973,
+ 1.6741646415558071,
+ 0.777684612200312,
+ 0.5967748262980377,
+ -1.7603268910365146,
+ -3.0655828553285978,
+ -1.7354367614260404,
+ -0.7106495288253444,
+ 0.6242997259366763,
+ 1.6869849436472,
+ 2.0172965736636703,
+ 1.674873934507897,
+ 1.8561238052736306,
+ 0.8148462750833835,
+ -1.7941770608326246,
+ -2.723431160018873,
+ -1.5493200825198432,
+ -0.40412859743928486,
+ 0.8896358220179174,
+ 1.413590097433299,
+ 1.25263112194968,
+ 0.6670362571127465,
+ 0.2969354156298175,
+ -0.8132996005324864,
+ -1.7893354253561427,
+ -1.9982160752224456,
+ -1.3243383837152598,
+ -0.08552618212553492,
+ 1.1963955269696198,
+ 1.7626585809032125,
+ 1.4111459499339345,
+ 0.4163956821926766,
+ -0.13421851860775566,
+ -1.0967689024772944,
+ -1.9174936207365858,
+ -2.1060972577843327,
+ -2.5404448554023977,
+ -1.4798510684882094,
+ 1.6712016850940796,
+ 2.705676163587237,
+ 1.9428656533976032,
+ 1.2120133786369292,
+ 1.9691347044843783,
+ 1.857877783494833,
+ 0.9485579705555102,
+ -0.28949481998421944,
+ -1.2643048377678148,
+ -1.1254107833649278,
+ -2.2135252624398825,
+ -2.8266287714182177,
+ -0.24878414394135376,
+ 1.057141682339708,
+ 1.9126637121594803,
+ 1.9250456409412313,
+ 1.1096637719351141,
+ -0.08739054406180556,
+ -0.4842097311889239,
+ -0.7923392291041422,
+ -1.2917381959911742,
+ -1.3155999600744426,
+ 0.07292060513786577,
+ 1.3174091719097443,
+ 2.1355252362036907,
+ 2.702747871998849,
+ 1.64344923164119,
+ -0.7945143442885393,
+ -1.9463174700485257,
+ -1.966199328825782,
+ -1.8526792429077483,
+ -0.9404901417151259,
+ 0.3900004239099832,
+ 1.5439826715402931,
+ 2.193569918403875,
+ 2.718371657805639,
+ 1.573552754680387,
+ -1.0177897483031733,
+ -2.2231652226028795,
+ -2.0219819953717835,
+ -1.700921591248478,
+ -0.8069179877978297,
+ -0.6690468260701542,
+ 0.04028411504785778,
+ 1.6610360190326028,
+ 2.1757857773314195,
+ 0.7502589172292984,
+ -0.5846202864902854,
+ -1.6727951321662637,
+ -2.024515903649085,
+ -1.503452414077351,
+ -0.47204163426532847,
+ -0.267255552125322,
+ 0.37732838785502276,
+ 1.9865713444362574,
+ 1.9333464095481314,
+ -0.6383032800095393,
+ -1.8625698031719433,
+ -1.867973935682049,
+ -1.9496373307671158,
+ -1.19164260569489,
+ 0.09525219864688461,
+ 1.3326548845923782,
+ 2.1375115486053224,
+ 2.752601818520578,
+ 1.777852985628741,
+ -0.931495017245992,
+ -2.003046923552737,
+ -1.969187591986016,
+ -1.8408383172003482,
+ -1.0949650659863002,
+ -1.034011798035213,
+ -0.14807950207222212,
+ 1.6278597766813145,
+ 2.352581267216956,
+ 1.0152372824089695,
+ -0.29438281214269024,
+ -1.48224650969988,
+ -2.018171810093602,
+ -1.6828224260024587,
+ -0.7791629791618275,
+ -0.6231121254377476,
+ 0.11721715325294076,
+ 1.5495812769693893,
+ 2.108317750438892,
+ 0.7256048466667566,
+ -0.6062337570215196,
+ -1.7507064239119368,
+ -2.4263323866131974,
+ -1.8372217325017843,
+ 0.2587016206309947,
+ 1.0631246072036191,
+ 1.6090102669398056,
+ 2.024717948828313,
+ 1.5696832863014218,
+ 0.419476459925702,
+ -0.9034571591544522,
+ -1.9387851484358147,
+ -4.324258092725686,
+ -3.1924152949231632
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.4566368001804941,
+ -1.7335177540136937,
+ 0.31117156668624546,
+ 1.493935175303067,
+ 2.037623490823662,
+ 1.6820623932418381,
+ 0.6056496743996163,
+ -0.6864305425131166,
+ -1.2198774751633643,
+ -1.2384572642416167,
+ -0.8631940389070852,
+ -0.5951062835716736,
+ 0.6256413475082571,
+ 1.6940291808924821,
+ 2.2079588640493495,
+ 2.694217916771856,
+ 1.5013506610092378,
+ -1.1691053560026765,
+ -2.398170091337584,
+ -2.0349104381391347,
+ -1.5610919085513353,
+ -0.4128369688787982,
+ 0.9211218413651995,
+ 1.8501887567544861,
+ 2.169543907163387,
+ 2.5910539434845554,
+ 1.363725040338819,
+ -1.3450490155418389,
+ -2.5744026932331754,
+ -2.0019404453100003,
+ -1.337524197620205,
+ -0.2177768887837945,
+ 0.0908858919490041,
+ 0.5328524653534155,
+ 1.409102760529652,
+ 1.6289604980216732,
+ 0.20782810956855094,
+ -1.095782452703013,
+ -1.9323312294607227,
+ -1.9169930645514184,
+ -1.0775367747113276,
+ 0.13309139408754286,
+ 0.579929070007475,
+ 0.8549299881945294,
+ 1.7902196873158713,
+ 1.6886665719432568,
+ -1.0730149234334638,
+ -2.4475580144406646,
+ -2.0170057210518357,
+ -1.7456071465175722,
+ -0.7210562548646657,
+ 0.6251041776424962,
+ 1.6935679151088099,
+ 2.206470883107372,
+ 2.7431567804993486,
+ 1.646298633169025,
+ -1.3092692641622774,
+ -2.4446593990002383,
+ -2.0347882189752324,
+ -1.5610045441944818,
+ -0.5593224422439014,
+ -0.34083337339039815,
+ 0.29430907726246375,
+ 1.4815738796537123,
+ 1.9232353313266848,
+ 0.5223717311837662,
+ -0.8131211028529534,
+ -1.8034558712705246,
+ -1.9993089700355788,
+ -1.3342507165254265,
+ -0.2139553147244181,
+ 0.09217684627080862,
+ 0.5520370384596125,
+ 1.3389207028737196,
+ 1.5927597588975175,
+ 0.20492803752795585,
+ -1.0970691382800255,
+ -2.047095809983138,
+ -2.7134578467887795,
+ -1.909651738498372,
+ 0.7468276248737913,
+ 1.70923120735598,
+ 1.8837741113134512,
+ 1.9529879777315202,
+ 1.2260221566185243,
+ 1.9726743403755993,
+ 1.866215581445856,
+ 1.1326017284896623,
+ 1.7619825623222625,
+ 1.063561122791435,
+ -3.2921049741629873,
+ -4.492499961500567,
+ -1.451786697446269,
+ -0.2462460423388147,
+ 1.0700660648816158,
+ 1.9170066729026451,
+ 1.9341040057471786,
+ 1.3027173264069212,
+ 1.3329246804905437,
+ 0.4550426087447089,
+ -1.8911429247134903,
+ -2.57315248517729,
+ -1.2074441059072636,
+ 0.07517336146022496,
+ 1.3475722566624957,
+ 1.9337700605528283,
+ 1.4877367576152396,
+ 0.29055856677474096,
+ -0.3492256670612014,
+ -1.2361202666711535,
+ -1.9764724350229643,
+ -1.868133515805706,
+ -0.9336523007832636,
+ 0.39605538640991994,
+ 1.6084221343728986,
+ 2.215444862632553,
+ 1.592517884160781,
+ 0.024594940169506856,
+ -0.7745188950515296,
+ -1.4778080320568487,
+ -2.0325687431498247,
+ -1.9135989940465215,
+ -2.2050427944752067,
+ -1.0935267596969789,
+ 1.7503959585723663,
+ 2.7868003293326966,
+ 1.7670546008930808,
+ 0.7503394949309689,
+ -0.5936053931560693,
+ -1.6788829447164157,
+ -2.035120640688204,
+ -1.7128911135837037,
+ -2.1193600864002784,
+ -0.8208918922803267,
+ 1.8561574543312132,
+ 1.9297002872776012,
+ 0.5678464407404527,
+ 0.06049788480455979,
+ -0.9783753458841216,
+ -1.875562406126179,
+ -1.968160154706366,
+ -1.1909549327094358,
+ 0.09314822662848486,
+ 1.3609690494249018,
+ 1.9860424270216905,
+ 1.5808116307323057,
+ 0.2330798582958012,
+ -0.37961668178619173,
+ -1.2488739357127803,
+ -1.9780512009448756,
+ -2.0537728527864054,
+ -2.3846235939423543,
+ -1.1567176920070958,
+ 1.5088146247290495,
+ 2.6983712804903197,
+ 1.8952569378040103,
+ 1.022496378609111,
+ -0.29419445255425497,
+ -1.4845023764844052,
+ -2.0286469334344317,
+ -1.898739085318143,
+ -2.1440386876058226,
+ -0.9494850905841103,
+ 1.605924498831944,
+ 2.7289619621276744,
+ 1.7547243253817115,
+ 0.7337416299027186,
+ -0.5446720412977887,
+ -1.0486382356920878,
+ -1.1385082784346197,
+ -0.9752168071143191,
+ -0.7767719602138644,
+ 0.49497607605179655,
+ 1.6147772669798983,
+ 2.043191259931307,
+ 1.5695744917107495,
+ 0.424253176176155,
+ -0.8766976148675064,
+ -2.4307641707592262,
+ -1.9421812223234118
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.0017826737998297,
+ -4.0118187787479895,
+ -1.006783439263465,
+ 0.30829677898120594,
+ 1.4956475554386457,
+ 2.025134323653636,
+ 1.6803922870722199,
+ 0.768045445904775,
+ 0.61383082446011,
+ -0.0637012417189769,
+ -1.7331506875413527,
+ -2.1655922764159605,
+ -0.7153928239018472,
+ 0.6206097719360288,
+ 1.7644850316610317,
+ 2.3743974317564653,
+ 1.636789706468248,
+ -0.1664351935039629,
+ -1.0642370687836562,
+ -1.6217331816787162,
+ -2.0303975318295153,
+ -1.5658490009156694,
+ -0.40779477839267164,
+ 0.9179063676110282,
+ 1.9511962161951006,
+ 2.555513454750439,
+ 1.6711706653686458,
+ -0.4283102515428669,
+ -1.448051924969411,
+ -1.7955989780517416,
+ -1.9989792805442057,
+ -1.535777239438234,
+ -1.6560555361158253,
+ -0.6591198269540643,
+ 1.8069875006156708,
+ 2.6726407134812518,
+ 1.4204022452670018,
+ 0.2095499956902483,
+ -1.0962830728302435,
+ -1.9211281158749929,
+ -1.9145068884602428,
+ -1.2656947742778466,
+ -1.427987581176255,
+ -0.34341202582943026,
+ 2.0157373881751863,
+ 2.038528537404897,
+ 0.08925757693770796,
+ -0.7485225363348137,
+ -1.4097044851211782,
+ -2.013279549094319,
+ -1.7517696408435948,
+ -0.7151300192395675,
+ 0.6221026852415746,
+ 1.7662626157774934,
+ 2.422575386458936,
+ 1.7537543240961224,
+ -0.2457107416043965,
+ -1.0870052515528563,
+ -1.624054126544525,
+ -2.032316359731225,
+ -1.765227543437958,
+ -1.949330771486411,
+ -0.7962141742697111,
+ 1.6447213660799485,
+ 2.7053886772162983,
+ 1.6310025940393025,
+ 0.5241541853715904,
+ -0.8128173045994737,
+ -1.794200854517071,
+ -1.9976484808685884,
+ -1.5334758271951299,
+ -1.6231418118000753,
+ -0.5526923353026048,
+ 1.673242837244133,
+ 2.6215972081230032,
+ 1.4195040014809446,
+ 0.20925826861906596,
+ -1.0851020835507552,
+ -1.6901713848074211,
+ -1.4983020770309785,
+ -0.5092402310568656,
+ -0.04354406135868724,
+ 0.9937209814535799,
+ 1.8795918982546473,
+ 1.9590750586825392,
+ 1.217736637663071,
+ 1.9631014187587907,
+ 2.058740034021688,
+ 4.018749029576202,
+ 2.78894409742845,
+ -2.921448578088268,
+ -4.181196320360498,
+ -2.017510146388056,
+ -1.444294227470554,
+ -0.2465806728504898,
+ 1.0634782919282417,
+ 1.9075982431348093,
+ 2.121759366521816,
+ 2.5667399433354245,
+ 1.5048571936411932,
+ -1.6579859254327047,
+ -2.698999506546392,
+ -1.9584873251822168,
+ -1.203327630420821,
+ -0.036683004480906944,
+ 0.31000392370373986,
+ 0.6754872645076904,
+ 1.2502019033571206,
+ 1.4058873624091308,
+ 0.040961481173681494,
+ -1.2288783859233074,
+ -1.974183738233555,
+ -1.8488452198833352,
+ -0.9294218946538331,
+ 0.31243594608375475,
+ 0.7341673613799966,
+ 0.9091712809227367,
+ 1.0587429452795512,
+ 1.0193469391186607,
+ -0.2805041529310808,
+ -1.468609159492601,
+ -2.1790843344142523,
+ -2.772381169615393,
+ -1.7478909614486013,
+ 1.0679914322175208,
+ 2.1702648860031624,
+ 2.0070609546865494,
+ 1.757714962250452,
+ 0.750088934794431,
+ -0.5919350386375862,
+ -1.6705567948940225,
+ -2.201400490904119,
+ -3.041388065224344,
+ -1.6600695456771133,
+ 0.906782676241344,
+ 1.07497583704134,
+ 1.5265756384382694,
+ 1.9616996690562025,
+ 0.3449515539204052,
+ -0.9741095045409087,
+ -1.8785933485738837,
+ -1.9551284281609986,
+ -1.1905444369914244,
+ -0.017756801935732053,
+ 0.3416432796951443,
+ 0.6860805739896765,
+ 1.297774209575344,
+ 1.415304296476755,
+ 0.02404406314182313,
+ -1.2432144600928636,
+ -2.10919362612285,
+ -2.6869134770661103,
+ -1.657727572892749,
+ 0.7240274538919538,
+ 1.8549468709517247,
+ 1.9416025004967725,
+ 1.8917157167795038,
+ 1.0265836224696177,
+ -0.29477526757762146,
+ -1.4806303981387012,
+ -2.183705445924892,
+ -2.7231751940955804,
+ -1.600100547388212,
+ 0.9541370004749737,
+ 2.147590780709578,
+ 2.0125228595038824,
+ 1.753465176449044,
+ 0.9046034187653776,
+ 0.7949947241928896,
+ 0.0640792985532226,
+ -1.782118029923144,
+ -2.2786899840265673,
+ -0.8401509782231588,
+ 0.49163423725514227,
+ 1.6167632424780287,
+ 2.0303130392303697,
+ 1.5681767934892183,
+ 0.5747061771721064,
+ 0.5395282640696647,
+ 0.16775829356564761
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.245491563250528,
+ -4.549525452042143,
+ -1.8835421794077494,
+ -1.00310459430009,
+ 0.3129369214223583,
+ 1.4943096822504103,
+ 2.025360999499416,
+ 1.8833069544609349,
+ 2.1724896501491093,
+ 1.1315760350678736,
+ -1.8518219376819927,
+ -2.794498633338914,
+ -1.7405478810626516,
+ -0.7136920114561769,
+ 0.5639542868822052,
+ 1.0342078203628056,
+ 1.0667470454451011,
+ 0.9019975909263654,
+ 0.7200421325075257,
+ -0.512779375694949,
+ -1.6227991977051497,
+ -2.0379402121818164,
+ -1.5533343098273988,
+ -0.40408258008847664,
+ 0.8940825741251461,
+ 1.4199548628755796,
+ 1.2573196668693696,
+ 0.6674410359084502,
+ 0.29510790611324184,
+ -0.8174109295500142,
+ -1.7959255638740503,
+ -2.1848334889934553,
+ -2.679749415848736,
+ -1.5603163813608503,
+ 1.4245715676830648,
+ 2.5595318064061416,
+ 2.014324400220517,
+ 1.4169938500407089,
+ 0.20683351302103717,
+ -1.098137647694641,
+ -1.9223045069157536,
+ -2.1113407363747947,
+ -2.809312680360309,
+ -1.3868625427937227,
+ 1.3720954528497398,
+ 1.5086874689418683,
+ 1.2062716099674085,
+ 1.2627889035027073,
+ -0.19905400802516166,
+ -1.4126023295367125,
+ -2.0222367592916264,
+ -1.7396032384711293,
+ -0.7108991826515787,
+ 0.5682148536227607,
+ 1.0608909982209247,
+ 1.105536851363329,
+ 0.9173830290401599,
+ 0.7306578488849019,
+ -0.5165319752080196,
+ -1.6258881501572964,
+ -2.2040638809269746,
+ -2.709130347963207,
+ -1.5375345731467298,
+ 1.0988102419486556,
+ 2.318199990184881,
+ 2.0309240054525644,
+ 1.6279062451895447,
+ 0.5219411028900837,
+ -0.8178413545507336,
+ -1.7971022922323419,
+ -2.185036017080474,
+ -2.629569929310574,
+ -1.4129794010001515,
+ 1.2852193823240503,
+ 2.515715598661795,
+ 2.0158035639221574,
+ 1.4178165963305613,
+ 0.3384066932683902,
+ 0.054770785818954386,
+ -0.44430711814620133,
+ -1.538683075744167,
+ -1.7672715098634761,
+ -0.3189277235155176,
+ 0.9974080796173761,
+ 1.8891160191413245,
+ 1.9481928289011872,
+ 1.214246185840105,
+ 2.0930885731606153,
+ 4.532067719373291,
+ 3.3034683102957723,
+ -1.295200831187774,
+ -2.0715926958690867,
+ -1.7113109183855855,
+ -2.013490838257266,
+ -1.4493296481353832,
+ -0.2428932651239121,
+ 1.0599712754962856,
+ 2.0225084225766814,
+ 2.6882474309175737,
+ 1.9006176524978478,
+ -0.7123867671382971,
+ -1.6621097657336978,
+ -1.8619305755777553,
+ -1.9562476334396874,
+ -1.3970099373279317,
+ -1.4376853751964485,
+ -0.42280575990915326,
+ 1.6659561804394505,
+ 2.5454099648464967,
+ 1.292902564095254,
+ 0.04339035888931261,
+ -1.2296666562618273,
+ -1.9626776096316272,
+ -1.8469665847462646,
+ -1.1104466905995403,
+ -1.0544859401778555,
+ -0.16158475742678582,
+ 1.6309937774037107,
+ 2.363812322416888,
+ 1.0305285790487286,
+ -0.275683521333566,
+ -1.5048485037521269,
+ -2.142793297406152,
+ -1.645891350774213,
+ -0.07020508589543462,
+ 0.6229875403079428,
+ 1.3815570978927996,
+ 2.002422668497901,
+ 1.7629513265334888,
+ 0.7434703832070916,
+ -0.5889109033179758,
+ -1.739270186972776,
+ -2.648589501519031,
+ -1.779606303112667,
+ -0.4274092170294134,
+ -0.23753419471347786,
+ 1.8224348121010627,
+ 3.0071606463342935,
+ 1.5119904543163063,
+ 0.34142844400715605,
+ -0.9807615939857361,
+ -1.8730702577351186,
+ -1.9541288081066468,
+ -1.3807357193210614,
+ -1.4401796651131575,
+ -0.4987699772756623,
+ 1.797481860636888,
+ 2.5903474838760476,
+ 1.2791300058523165,
+ 0.022543625218254086,
+ -1.2562184837637151,
+ -1.8306297139074852,
+ -1.4420912571667843,
+ -0.36786226240681763,
+ 0.2178714948612932,
+ 1.151759006179166,
+ 1.9413857207906984,
+ 1.8976255935287505,
+ 1.014869320773022,
+ -0.29837962723309813,
+ -1.5268482377632195,
+ -2.1265012570396964,
+ -1.5580027833419094,
+ -0.10460428274776357,
+ 0.6450350479529624,
+ 1.402356078039096,
+ 2.0122781210027956,
+ 1.9559035132420437,
+ 2.285524076515257,
+ 1.23201148010769,
+ -1.8170233992397786,
+ -2.7907409428502503,
+ -1.8057219945595677,
+ -0.8365713074270087,
+ 0.4967768215577285,
+ 1.6142333358025054,
+ 2.0302329036986535,
+ 1.7701526193893353,
+ 3.2600829728132004,
+ 2.1930735144142957
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.5579645563945057,
+ -3.810219016695761,
+ -2.326314071962237,
+ -2.205646437575917,
+ -1.1342077151859815,
+ 0.44161486246663845,
+ 1.8171112299115189,
+ 2.599182929308418,
+ 3.3098404070313325,
+ 2.1629220120636683,
+ -1.436191742080422,
+ -2.682244221590996,
+ -2.395785356466573,
+ -2.028639229791371,
+ -0.9783450698254464,
+ -0.8080154272645912,
+ 0.09648648995852428,
+ 1.856503443689244,
+ 2.5482251355100116,
+ 0.9094437474611886,
+ -0.6729075994259148,
+ -1.9714741205881776,
+ -2.402136674384746,
+ -1.797137526616364,
+ -0.5823487509421451,
+ -0.3028861744235182,
+ 0.40911278844070115,
+ 1.7230719461949278,
+ 2.202766067953771,
+ 0.5458345338678231,
+ -1.0286373329276435,
+ -2.2772087092000626,
+ -3.053614813373071,
+ -2.1273216030875375,
+ 0.5625418232319501,
+ 1.6678090966986603,
+ 2.094361022439467,
+ 2.3772674804578826,
+ 1.6370255014453574,
+ 0.17104251112308055,
+ -1.3587602165484576,
+ -2.4506549544682064,
+ -3.5540040187031843,
+ -2.168372543549334,
+ 0.22664547119952508,
+ 0.4528375036236046,
+ 2.125776894069903,
+ 3.1892405728524857,
+ 1.246160738373653,
+ -0.30427480217497394,
+ -1.7296292682622636,
+ -2.3943401895431933,
+ -2.025189726838335,
+ -0.9725111029416681,
+ -0.8138860862014633,
+ 0.034230579166486474,
+ 1.9756735301593722,
+ 2.5938968470165404,
+ 0.9051700369158858,
+ -0.6764147467618634,
+ -2.050053290951853,
+ -2.7721435378388617,
+ -1.9282997869923189,
+ 0.14662636125791903,
+ 1.1845768577798215,
+ 1.8839267957982493,
+ 2.406664672084537,
+ 1.8945154787259566,
+ 0.5434388620185137,
+ -1.0323311974286886,
+ -2.280215065025299,
+ -2.998611997602197,
+ -1.977028607391163,
+ 0.4582699817630608,
+ 1.6453079690969528,
+ 2.0981208939433027,
+ 2.379122067944519,
+ 1.867239422144137,
+ 2.0360444119215177,
+ 0.8946086005699708,
+ -2.2589458305152488,
+ -3.214264721894001,
+ -1.7266503572089447,
+ -0.3095379080627421,
+ 1.2464380488784685,
+ 2.2557409016697414,
+ 2.2884849308417556,
+ 1.554075626252521,
+ 3.7700369969048904,
+ 2.908695746740613,
+ 0.9522226576745424,
+ 0.9603827085503721,
+ -0.8511410287817721,
+ -2.0654688456009422,
+ -2.394598451150018,
+ -1.6660733475145808,
+ -0.2260459545442084,
+ 1.306573419996142,
+ 2.0267743507678913,
+ 1.7876630924681078,
+ 0.5822745810761506,
+ 0.019893215291789768,
+ -1.1969004330948352,
+ -2.235596673834005,
+ -2.5382538579186638,
+ -3.010262329702522,
+ -1.5542011320639342,
+ 1.6457745675165698,
+ 3.0918801750907163,
+ 2.341072507463132,
+ 1.4869432336882902,
+ -0.01115231033756232,
+ -1.5084935060667468,
+ -2.3473191682477657,
+ -2.408644935566505,
+ -2.7880788867521575,
+ -1.3392502390483672,
+ 1.8003770396237555,
+ 3.1989764999331363,
+ 2.2244823332906067,
+ 1.1720609153538821,
+ -0.28484108373891615,
+ -0.7839149952780277,
+ -1.0389675689553335,
+ -1.3522886463574517,
+ -1.3338426642005259,
+ 0.2540540092148066,
+ 1.6862267467517902,
+ 2.3974422770507426,
+ 2.0508119549470014,
+ 0.8247228842738927,
+ -0.6922662676088618,
+ -1.4101567323028903,
+ -1.386473044942477,
+ -1.8274873809377747,
+ -1.669337487350129,
+ 1.6183977864918193,
+ 3.3084375450118952,
+ 2.3977171828050685,
+ 1.7457576824667558,
+ 0.3391396744771711,
+ -1.2213202179263778,
+ -2.2463173172144244,
+ -2.529859878038395,
+ -3.0510859760736175,
+ -1.7066320641533845,
+ 1.8342389198859146,
+ 3.1640975354350847,
+ 2.3349991791744187,
+ 1.4648511091880976,
+ 0.09436471009452402,
+ -0.305197225151206,
+ -0.7657711503181585,
+ -1.5082894625162913,
+ -1.721111791074981,
+ -0.09544345435500866,
+ 1.4200925002237996,
+ 2.329656539551293,
+ 2.211896842719145,
+ 1.1439032251483787,
+ -0.3201826620767544,
+ -0.8101534472601555,
+ -1.045826547072811,
+ -1.2854842543814582,
+ -1.2671645531008138,
+ 0.2862160850870132,
+ 1.7092952110585669,
+ 2.5769364201887788,
+ 3.3112176150742445,
+ 2.2021415646968228,
+ -1.3158626578937598,
+ -2.5458301530614507,
+ -2.3733385837008973,
+ -2.1079447462010736,
+ -0.9333106996992508,
+ 0.6571839300788026,
+ 1.9545713460868281,
+ 2.611519102879871,
+ 5.403654734276101,
+ 3.8585114173879504
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -4.413702290107175,
+ -6.73588241807946,
+ -4.619439987468655,
+ -4.823541491755543,
+ -2.9502109755897576,
+ 0.2325344351300661,
+ 3.294190710337979,
+ 5.2866598606426125,
+ 6.860084511715749,
+ 4.6462642926507804,
+ -2.4613263231679743,
+ -4.973188094671148,
+ -4.870337553936163,
+ -4.554869903315436,
+ -2.7114670081388024,
+ -2.561635115921958,
+ -0.36883118176477325,
+ 4.027301473800011,
+ 5.8215107618957305,
+ 2.5140131809457764,
+ -0.7251414427387296,
+ -3.664432576277113,
+ -4.991992935315162,
+ -4.164424627021398,
+ -1.9305105026336078,
+ -1.545408391488686,
+ 0.2874199490531238,
+ 3.8340642379588488,
+ 5.217846579894712,
+ 1.7977804984878039,
+ -1.4966580326781571,
+ -4.328596793386601,
+ -5.946132938480334,
+ -4.3161891047408885,
+ 0.567699227237894,
+ 2.6263803723413894,
+ 3.97824388389804,
+ 5.008482345195036,
+ 3.884812586488854,
+ 1.0406578929254133,
+ -2.2320728696400995,
+ -4.794284999573264,
+ -7.095996468271082,
+ -4.514874610039288,
+ -0.2237242284422106,
+ 0.25182003221005106,
+ 4.513113014531377,
+ 7.080941114298824,
+ 3.1593463134372652,
+ 0.056905029650011804,
+ -3.0820938933016437,
+ -4.8673408882857965,
+ -4.548020425763105,
+ -2.6996193787944076,
+ -2.5911123816913326,
+ -0.5430181612047327,
+ 4.309916279955138,
+ 5.9271468866997274,
+ 2.505691926532908,
+ -0.7319644210926667,
+ -3.762365647126593,
+ -5.241360946910253,
+ -3.842552887310818,
+ -0.2644293722795822,
+ 1.5818207971936284,
+ 3.4543820869445816,
+ 4.960789626304349,
+ 4.335674742028755,
+ 1.7921673177850843,
+ -1.5050216312287399,
+ -4.335831819866481,
+ -5.840112577660267,
+ -4.032287690014906,
+ 0.39177960756109176,
+ 2.596210671724778,
+ 3.986596939709593,
+ 5.012549343738761,
+ 4.373033425295138,
+ 4.946500056783385,
+ 2.4389300821143642,
+ -4.650235972217004,
+ -6.856137500022122,
+ -4.0403755009630125,
+ -1.3221386022909953,
+ 1.9762914114523866,
+ 4.4102603356964405,
+ 4.931875909180569,
+ 3.805464864127083,
+ 6.685045710514545,
+ 5.238275159462163,
+ 3.0621305551762807,
+ 3.5221973617053446,
+ -1.1106960518040485,
+ -3.9080833106981063,
+ -5.032521328884885,
+ -3.935384553381056,
+ -1.153490050391743,
+ 2.047687853082636,
+ 3.4309819520855904,
+ 3.2929119087369054,
+ 1.8273302028783396,
+ 0.9908430880932622,
+ -1.8705965184293563,
+ -4.3564469438800195,
+ -5.413376657201809,
+ -6.544246024391207,
+ -3.559900536202462,
+ 3.0790592789529327,
+ 6.115835096827574,
+ 4.990340252873574,
+ 3.6105553688521934,
+ 0.6698040539230323,
+ -2.575242493194697,
+ -4.691526031690199,
+ -5.258965040915031,
+ -6.218295873506175,
+ -3.182486114284072,
+ 3.476838379521186,
+ 6.480599321612871,
+ 4.854044061646462,
+ 3.021632713819099,
+ 0.1567070324198502,
+ -0.7017507906612752,
+ -1.606963232426496,
+ -3.266162751381892,
+ -3.6140205658647577,
+ -0.16208172437495003,
+ 2.9872187380361743,
+ 4.861689702151841,
+ 4.592195937258876,
+ 2.3500511704395763,
+ -0.7064433049962976,
+ -1.9460094740272205,
+ -2.3807156339114632,
+ -4.225397722832755,
+ -3.9464017654808248,
+ 2.9234271912674656,
+ 6.3835007630575324,
+ 5.004624449767551,
+ 4.074332199993058,
+ 1.385069928547763,
+ -1.9239814877208952,
+ -4.383857297376101,
+ -5.402081102687616,
+ -6.6426333079494855,
+ -3.889488889020716,
+ 3.4652419682974793,
+ 6.266911804349607,
+ 4.983299882961594,
+ 3.568364515579562,
+ 0.9428147553380363,
+ 0.2916195066806564,
+ -1.054605550923037,
+ -3.478805628070227,
+ -4.331134652504475,
+ -0.8862363959645908,
+ 2.371196767614877,
+ 4.619628291229972,
+ 4.832151977818418,
+ 2.9656619184093986,
+ 0.08277806406150622,
+ -0.7751319942942867,
+ -1.6735536666573587,
+ -3.0833448619081505,
+ -3.4635115095375117,
+ -0.09524508699932198,
+ 3.0380273290318502,
+ 5.191120336238511,
+ 6.799375007620605,
+ 4.685211528815389,
+ -2.18688191534284,
+ -4.6418246484803936,
+ -4.77851602657182,
+ -4.679092983004069,
+ -2.5632894467932696,
+ 0.6915573971198266,
+ 3.62747967542207,
+ 5.380963248768036,
+ 11.362339281376148,
+ 8.18976141976658
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.705855326358585,
+ -4.196940780027288,
+ -3.0849502142579404,
+ -3.3823474137957703,
+ -2.22361329141744,
+ -0.07866167056983313,
+ 2.085884239033092,
+ 3.5760511189243855,
+ 4.68571932699111,
+ 3.230398745634483,
+ -1.5019218747238763,
+ -3.193019028758627,
+ -3.293510657344616,
+ -3.2329913417331158,
+ -2.089864151279875,
+ -2.0582023262349924,
+ -0.4497801135125138,
+ 2.8132312468221765,
+ 4.16415280411015,
+ 1.935986752579837,
+ -0.26240835510610644,
+ -2.356272534287379,
+ -3.414342695854942,
+ -2.9973880849263765,
+ -1.5702820201014587,
+ -1.3747637231318146,
+ 0.001350472091776343,
+ 2.710223395007141,
+ 3.7909038079672666,
+ 1.4597781019168332,
+ -0.8012884029477111,
+ -2.8205282243740686,
+ -3.928269616866221,
+ -2.9157970677342098,
+ 0.1796713031026327,
+ 1.5050909185376864,
+ 2.5911789970629204,
+ 3.4492708267401295,
+ 2.824572424196348,
+ 0.9494795064040155,
+ -1.321413263855864,
+ -3.1755515464690567,
+ -4.752887954599247,
+ -3.0910214350771303,
+ -0.39402898538873954,
+ -0.06687133147159213,
+ 3.119914371940902,
+ 5.000339961717623,
+ 2.358495916227162,
+ 0.2780246875499551,
+ -1.9303065244206814,
+ -3.291462545367712,
+ -3.2284167882560006,
+ -2.081857800261224,
+ -2.0843593866164185,
+ -0.5844629296476512,
+ 3.01865911664898,
+ 4.240125003063328,
+ 1.9304909430385404,
+ -0.26691361090311305,
+ -2.4005782695493614,
+ -3.4046585440164883,
+ -2.5710171934316755,
+ -0.37830237858686094,
+ 0.7766588928332845,
+ 2.2028521820298157,
+ 3.3789105498011582,
+ 3.103722540982567,
+ 1.455719450261996,
+ -0.807247338475689,
+ -2.82581980085806,
+ -3.8586292326138385,
+ -2.7314812986257873,
+ 0.07349324842864917,
+ 1.4902117400454162,
+ 2.597079861530996,
+ 3.4521266956468732,
+ 3.161899146306763,
+ 3.6313745119538607,
+ 1.8692810954606298,
+ -3.1652658135141545,
+ -4.750555628432365,
+ -2.92032532464204,
+ -1.139804947325239,
+ 1.1387110577586212,
+ 2.9201899774042928,
+ 3.434306408830482,
+ 2.8025769333277775,
+ 5.036172516975479,
+ 3.340534063544049,
+ 2.4701883868995624,
+ 2.9385770232560207,
+ -0.5313728826850802,
+ -2.5396818999014266,
+ -3.4615576020465495,
+ -2.85576390316868,
+ -1.0261414821468011,
+ 1.1689586955929159,
+ 2.075746157413175,
+ 2.1057968302726637,
+ 1.4639695708650606,
+ 1.0070955625806086,
+ -1.0654664173193202,
+ -2.8792387767776657,
+ -3.750605666904967,
+ -4.5761034876057884,
+ -2.5493397386725625,
+ 1.9876327509910667,
+ 4.075624574662399,
+ 3.4566620883641623,
+ 2.6500473906280977,
+ 0.6985256890334898,
+ -1.5672301865961853,
+ -3.1441187449878627,
+ -3.684866094791386,
+ -4.400270021960276,
+ -2.315237958500384,
+ 2.2862350929801796,
+ 4.3744416814682765,
+ 3.4002113560117215,
+ 2.2699505927343475,
+ 0.36689779422167146,
+ -0.15826620398957134,
+ -0.9075523624142016,
+ -2.392097692267577,
+ -2.763995667706362,
+ -0.35024293034913695,
+ 1.8637931099678062,
+ 3.2833999609569395,
+ 3.255484298896116,
+ 1.828041484004845,
+ -0.22917644892220648,
+ -0.9894634259719042,
+ -1.4546661353772887,
+ -3.038363842769421,
+ -2.864769245720445,
+ 1.84693199496756,
+ 4.195431455622806,
+ 3.4305520617201686,
+ 2.9415557466783144,
+ 1.1833381613481129,
+ -1.1028941949479845,
+ -2.8997660624197787,
+ -3.7450144605473477,
+ -4.648101519787497,
+ -2.7792114525190574,
+ 2.2498693888350436,
+ 4.1793026418576265,
+ 3.4537845754524765,
+ 2.6224803982602514,
+ 0.9038948403816598,
+ 0.5206513599827327,
+ -0.5350962980676467,
+ -2.498840767729077,
+ -3.2240551028911426,
+ -0.8447919574051472,
+ 1.4206156251062452,
+ 3.0827348322555483,
+ 3.386718733557906,
+ 2.23255087948069,
+ 0.3161651413736132,
+ -0.2149968814249969,
+ -0.9712538184354892,
+ -2.25179707145566,
+ -2.656908592644156,
+ -0.3045293897293931,
+ 1.8995400746514555,
+ 3.4936003572273453,
+ 4.62214285856044,
+ 3.2422728147821855,
+ -1.3057537603570286,
+ -2.9497703063688543,
+ -3.2150368451614617,
+ -3.3038745980339805,
+ -1.9695783729790648,
+ 0.2391230076117289,
+ 2.3303645825668484,
+ 3.664372896292841,
+ 7.8174816713542805,
+ 5.660896811664779
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 5.676763041937224,
+ 7.833817359255776,
+ 2.830013468888896,
+ 0.9736674519147832,
+ -1.3093841402801134,
+ -3.019964073489264,
+ -3.420750188893844,
+ -2.678919642098583,
+ -2.9183493712650983,
+ -1.2778368023262685,
+ 3.251939505997958,
+ 4.6231796362063005,
+ 2.479366462348972,
+ 0.43925344317882503,
+ -1.7716088883088346,
+ -2.7046775492695927,
+ -2.276597724986164,
+ -0.9455165640638934,
+ -0.16639311118650735,
+ 1.6218165475967128,
+ 3.1729546032573492,
+ 3.3630426379934675,
+ 2.066968504756111,
+ -0.10920298528584972,
+ -2.2740998753410677,
+ -3.268417825212202,
+ -2.520298787822065,
+ -0.5068588509255442,
+ 0.5710549859118014,
+ 2.086495109335758,
+ 3.354766996571061,
+ 3.5151501795801545,
+ 4.167625436372094,
+ 2.233877573321543,
+ -2.800918424744286,
+ -4.669811469202446,
+ -3.2436498516755323,
+ -1.7829190848782244,
+ 0.4516525708444162,
+ 2.492792454834077,
+ 3.448610686306806,
+ 3.2589222423565074,
+ 4.174468843225682,
+ 1.8323876325728412,
+ -2.871669919474678,
+ -3.045172339698087,
+ -1.4614709540850275,
+ -0.9980492312984479,
+ 1.1224368684502595,
+ 2.917300071901327,
+ 3.462203856761357,
+ 2.4780978344894247,
+ 0.43505622805779215,
+ -1.7776952116181803,
+ -2.7661934251413327,
+ -2.3956732816045982,
+ -0.9133563353025914,
+ -0.16437535318479754,
+ 1.6276545051814355,
+ 3.1777650166199933,
+ 3.6825004783748976,
+ 4.387120888986923,
+ 2.2939479316923643,
+ -2.318955866815687,
+ -4.4093892733123266,
+ -3.39602861890882,
+ -2.2273442237927954,
+ -0.09447119026471867,
+ 2.086111329985603,
+ 3.3552960293423992,
+ 3.5139290611624214,
+ 4.088379954210946,
+ 1.995019296486985,
+ -2.55410612275127,
+ -4.586523884450035,
+ -3.2448046161518005,
+ -1.7836955303221451,
+ 0.2913245489571987,
+ 1.0039548306021775,
+ 1.464083248544084,
+ 2.113995067546641,
+ 2.0860652172631946,
+ -0.2562854475082855,
+ -2.3492216604318927,
+ -3.4381065755747815,
+ -3.0101578093509804,
+ -1.2908171399644293,
+ 0.8814707333679002,
+ 2.937043934641041,
+ 2.4701246425438486,
+ 3.354279025781605,
+ 5.054469147790805,
+ 3.2679126805972514,
+ 3.2577706055515385,
+ 1.843977146223682,
+ -0.3889212801422926,
+ -2.4397880670960195,
+ -3.696259128207151,
+ -4.752837932591359,
+ -3.1645538572538676,
+ 1.877224380232687,
+ 3.6411314963954378,
+ 3.4060692769081515,
+ 3.0388637832143948,
+ 1.650436377005233,
+ 1.4788030450608336,
+ 0.06575278604358424,
+ -2.7303404797563333,
+ -3.8531015463388285,
+ -1.5318737927179535,
+ 0.7257971893030886,
+ 2.6795153742760496,
+ 3.4541549639822895,
+ 2.7385322890895787,
+ 1.096091690696037,
+ 0.7644873512813247,
+ -0.3861465460195819,
+ -2.5686602720651006,
+ -3.397376832955152,
+ -1.023171954697648,
+ 1.2489050441553802,
+ 3.1294960099545373,
+ 4.247396165026284,
+ 3.0213801874501742,
+ -0.5929218375823331,
+ -2.0967126044677533,
+ -2.877209593946787,
+ -3.4428795344766967,
+ -2.5273775272105943,
+ -0.49205158304488084,
+ 1.7413369048068659,
+ 3.4166521510700574,
+ 5.006499336713157,
+ 3.121653021399786,
+ -0.07500311820447503,
+ -0.40242725348668484,
+ -3.0872058759489165,
+ -4.742086997305802,
+ -1.9791086584329247,
+ 0.2176876121580704,
+ 2.3291990570923446,
+ 3.416923357981489,
+ 3.0283203291958913,
+ 1.6195174940387154,
+ 1.4617105972499622,
+ 0.14754359983565832,
+ -2.913596305871462,
+ -3.911393633023934,
+ -1.5051373617251484,
+ 0.7591394731533142,
+ 2.7957366562351695,
+ 3.829789967631195,
+ 2.727031327686636,
+ -0.02891279939389247,
+ -1.425639350886274,
+ -2.5681855125181534,
+ -3.4564384862303403,
+ -2.8589227354894615,
+ -0.9959141013560125,
+ 1.2829412253533856,
+ 3.158042131855112,
+ 4.197333749910891,
+ 2.8256401500032875,
+ -0.4809272247068575,
+ -2.1080798357406003,
+ -2.9048873065892873,
+ -3.4516748061316034,
+ -2.849748002953618,
+ -3.164459036668209,
+ -1.475546953319304,
+ 3.242340138972862,
+ 4.690249630093387,
+ 2.6340958187618724,
+ 0.6638627845974214,
+ -1.6000369788410844,
+ -3.1629237770670424,
+ -3.355532812072574,
+ -2.4249709014811924,
+ -4.1382934934793525,
+ -2.660523119616967
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 8.217006624368254,
+ 11.391747266490883,
+ 4.293073665296835,
+ 1.7399892886602057,
+ -1.572674282657633,
+ -4.199345011910387,
+ -5.00306413927741,
+ -4.138166915381649,
+ -4.597527003349249,
+ -2.1466273285042075,
+ 4.701670022914645,
+ 6.804055478350207,
+ 3.8280835802947473,
+ 0.9783731913921069,
+ -2.231928054242732,
+ -3.5357274331376645,
+ -3.121432866608091,
+ -1.6362834717382941,
+ -0.7036444090490613,
+ 2.040629294785838,
+ 4.451174409980065,
+ 4.953282315254734,
+ 3.267106894000973,
+ 0.18741801688067017,
+ -2.991004755912546,
+ -4.3987171267367895,
+ -3.5121356079690225,
+ -1.0133529907938759,
+ 0.3662615279471107,
+ 2.742101506225197,
+ 4.765578380868729,
+ 5.2178396453779685,
+ 6.25255186240435,
+ 3.443207054430355,
+ -3.9233770182722996,
+ -6.677800451709975,
+ -4.81352578859625,
+ -2.875246586150998,
+ 0.3093576550501049,
+ 3.3660823094295838,
+ 4.955274437136652,
+ 4.901014246433846,
+ 6.35551353247141,
+ 2.903592212814368,
+ -3.956969193864502,
+ -4.235806515105943,
+ -2.390001024549719,
+ -1.9572757803463867,
+ 1.2968852628358691,
+ 4.033696544381431,
+ 5.043203889964061,
+ 3.826084721195299,
+ 0.9720062715431608,
+ -2.241315629665121,
+ -3.6184826559771857,
+ -3.2721036141863573,
+ -1.6147426590364742,
+ -0.709439971892582,
+ 2.049386280064021,
+ 4.458388846268356,
+ 5.403461540448273,
+ 6.499092522181737,
+ 3.4878530914050487,
+ -3.1885556503919155,
+ -6.23238234911012,
+ -4.98186682032509,
+ -3.4865727081784033,
+ -0.4832808982051487,
+ 2.742025176494196,
+ 4.766992212295919,
+ 5.216738137272702,
+ 6.134235710611568,
+ 3.089481521905786,
+ -3.567419352554476,
+ -6.5600591867752716,
+ -4.815803156288198,
+ -2.876651625960828,
+ 0.0477261458270536,
+ 0.9875719590227963,
+ 1.8283885437772611,
+ 3.3044166322330177,
+ 3.445102753947188,
+ -0.02626911035659393,
+ -3.1444570379255468,
+ -4.919939697565387,
+ -4.525435227294774,
+ -2.1878171717758934,
+ 0.9107919095144622,
+ 3.522133932886552,
+ 3.063598962723869,
+ 5.257421234858295,
+ 6.710367952597389,
+ 4.613968177309742,
+ 4.827368671072519,
+ 2.9617218512266783,
+ -0.21840894671116026,
+ -3.2835365013459676,
+ -5.283095181276618,
+ -6.858148735941334,
+ -4.648315056912305,
+ 2.45001176120274,
+ 4.9597403777068925,
+ 4.866997065833408,
+ 4.5607964529330545,
+ 2.724774464414619,
+ 2.5791323151657055,
+ 0.3804534266096434,
+ -4.0298611241543165,
+ -5.830964739303208,
+ -2.526257516313108,
+ 0.7111450492877414,
+ 3.6547076393335387,
+ 4.990853140751545,
+ 4.172301292869357,
+ 1.9448585756312256,
+ 1.563826845446657,
+ -0.27578127258975044,
+ -3.8383947315585036,
+ -5.2297775332576295,
+ -1.8109966858777011,
+ 1.4831475715891447,
+ 4.319318074630433,
+ 5.936586932571389,
+ 4.3130504653849995,
+ -0.5552105682184539,
+ -2.608575308094159,
+ -3.9696494815849377,
+ -5.008739276924988,
+ -3.893842156672476,
+ -1.0544948129151046,
+ 2.2194067377028133,
+ 4.78699659494961,
+ 7.088551308463623,
+ 4.51476482559581,
+ 0.2397171886435622,
+ -0.23620885074706,
+ -4.511205522003993,
+ -7.083320556829899,
+ -3.1465117895482853,
+ -0.029921475451425154,
+ 3.1116235499979856,
+ 4.8863635052966465,
+ 4.5484304174523995,
+ 2.6810563055553147,
+ 2.5634711657681355,
+ 0.5204706399962482,
+ -4.314934192467525,
+ -5.923939599233968,
+ -2.488674973868845,
+ 0.7607303331219581,
+ 3.793393623310256,
+ 5.277744104673423,
+ 3.860684913498279,
+ 0.24281762221359326,
+ -1.6213286073875401,
+ -3.483001526900179,
+ -4.977423302178585,
+ -4.333107987878986,
+ -1.7714844167903236,
+ 1.5348144067954819,
+ 4.364845504289716,
+ 5.873254283705074,
+ 4.047508932793888,
+ -0.41504382028321846,
+ -2.6365503806572206,
+ -4.0133970354860145,
+ -5.025044336089134,
+ -4.366871578210791,
+ -4.933272905104056,
+ -2.4234782292344508,
+ 4.66606723065778,
+ 6.869957252404462,
+ 4.034805110281604,
+ 1.2993926047106843,
+ -2.0064739076316167,
+ -4.434558622918424,
+ -4.939883488385041,
+ -3.7943018777252617,
+ -6.65230792750795,
+ -4.348735260113495
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.7700441503573336,
+ 3.995180128001564,
+ 2.0281755077538155,
+ 1.5631158388036992,
+ 0.4227837010025758,
+ -0.9076268631060833,
+ -1.8389724418338103,
+ -2.16439373679334,
+ -2.65239223513049,
+ -1.6008349838355866,
+ 1.5688824334962423,
+ 2.624796610697091,
+ 1.9971429027617176,
+ 1.3416283145187546,
+ 0.229511098071131,
+ -0.0717812625252029,
+ -0.5386311633492199,
+ -1.34220013713683,
+ -1.6041348233363617,
+ -0.2186145498396058,
+ 1.0822517958436983,
+ 1.9218774616295873,
+ 1.9142439035372576,
+ 1.0836282683444016,
+ -0.1201035121954618,
+ -0.5014888602891185,
+ -0.7824352417219205,
+ -1.1677002403518542,
+ -1.2361814719141222,
+ 0.10309742374166514,
+ 1.3395703275956536,
+ 2.142156994780407,
+ 2.7575836619526255,
+ 1.7801572329478867,
+ -0.9359812463149615,
+ -2.0099634600841974,
+ -1.9724156963448722,
+ -1.8391392949150702,
+ -0.9129513498027836,
+ 0.4194042482301732,
+ 1.5626022027760125,
+ 2.1950240825359737,
+ 3.067147104907162,
+ 1.720922175702695,
+ -0.744039437309645,
+ -0.9198426641397648,
+ -1.6166160289572162,
+ -2.1739120364463123,
+ -0.5310732933817282,
+ 0.8014462117910128,
+ 1.7938314180055313,
+ 1.9959855560687165,
+ 1.3386204326061373,
+ 0.22463937116194727,
+ -0.08111066751792102,
+ -0.5253609199215223,
+ -1.4088113846275248,
+ -1.6318334718981922,
+ -0.2147560193102204,
+ 1.085422893196363,
+ 2.0375076716127616,
+ 2.630466663491679,
+ 1.6702513289692822,
+ -0.5784209456166883,
+ -1.6575815000846124,
+ -1.8749113935542925,
+ -1.9507922173155072,
+ -1.186463372569602,
+ 0.10449021384386002,
+ 1.3419541579646919,
+ 2.143749211889944,
+ 2.707033114152792,
+ 1.6373321707142479,
+ -0.819820337479563,
+ -1.9785718776632857,
+ -1.9749732260061765,
+ -1.8404453244517263,
+ -1.0884590980614721,
+ -1.042396456193831,
+ -0.24268284140583932,
+ 1.8359723400365238,
+ 2.4183457835483786,
+ 1.0092645961337032,
+ -0.3039031164304445,
+ -1.491225817557297,
+ -2.0226385783728635,
+ -1.6808840240582017,
+ -0.771398963471197,
+ -0.9663980681775897,
+ -0.479080207701877,
+ 3.1205173449313515,
+ 4.202661039604133,
+ 1.2119900393428773,
+ 1.9575959328426078,
+ 1.8626634519552527,
+ 0.9440432382318891,
+ -0.37437832297567514,
+ -1.582594202923085,
+ -2.248473603699563,
+ -1.7669102947711741,
+ 0.036607247646257064,
+ 0.7541974578189559,
+ 1.453977732400991,
+ 2.016275337566452,
+ 1.9103826608751568,
+ 2.1649013251500415,
+ 0.9708641365862758,
+ -1.5881414971282641,
+ -2.7149398996162115,
+ -1.7640084571333972,
+ -0.7628298795688973,
+ 0.5708979350803575,
+ 1.6559687405220556,
+ 2.0218514687822386,
+ 1.7138865547336772,
+ 1.877727783419933,
+ 0.7433816834374565,
+ -1.6493062838875716,
+ -2.684957031264864,
+ -1.5851356326623989,
+ -0.45882345791867446,
+ 0.8341464091110726,
+ 1.3767722008026593,
+ 1.2757526088987101,
+ 0.7078839333147567,
+ 0.37998265437416623,
+ -0.7620834214880616,
+ -1.7630365943757398,
+ -2.0082686511475623,
+ -1.366394662504184,
+ -0.14128928590504417,
+ 1.1454703244567914,
+ 1.9221778630372457,
+ 1.5108424644923149,
+ 1.1095160084334077,
+ 0.9432108176383903,
+ -1.6464023094413207,
+ -3.0354136867988615,
+ -1.8930276488105917,
+ -1.0291550452268898,
+ 0.2814617594789773,
+ 1.4713004235697096,
+ 2.0206578331001306,
+ 1.8987037750493654,
+ 2.18643868620152,
+ 1.081942262147477,
+ -1.742764960967842,
+ -2.7716780217132566,
+ -1.7546387510398047,
+ -0.7422071824091095,
+ 0.5303897680639096,
+ 0.9940914710136421,
+ 1.0455700266529262,
+ 0.9226663541147648,
+ 0.7597072232145085,
+ -0.4818259139892753,
+ -1.602016546094895,
+ -2.036317436718069,
+ -1.571647844792542,
+ -0.4343193369034396,
+ 0.8619170146129932,
+ 1.3823911409648162,
+ 1.2387735050437083,
+ 0.6903228363386645,
+ 0.33652937841016645,
+ -0.7877131542862078,
+ -1.7790923165014734,
+ -2.1866527833726024,
+ -2.705044415905407,
+ -1.6666017496375285,
+ 1.4927659121034036,
+ 2.5549137707296805,
+ 2.015890392388506,
+ 1.437741058935839,
+ 0.2378960940584892,
+ -1.0704590140215478,
+ -1.909886537006924,
+ -2.1185333304926783,
+ -4.198483848350786,
+ -2.9359719325792426
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.02111255546138,
+ 1.702445220230213,
+ 1.6091737750745962,
+ 2.0244436236736374,
+ 1.569091957100493,
+ 0.41882591071829284,
+ -0.9038839048595806,
+ -1.9388463926569206,
+ -2.612793166368692,
+ -1.8909899029935133,
+ 0.5544518582461747,
+ 1.4585608590631787,
+ 1.7841810425017164,
+ 1.9950906848013057,
+ 1.540808111462341,
+ 1.6347458337001073,
+ 0.5631814067301056,
+ -1.667232252826193,
+ -2.6185089702699194,
+ -1.424993225097377,
+ -0.22138242817066187,
+ 1.082281576486648,
+ 1.9111393226272317,
+ 1.9127982395935068,
+ 1.2729399850033218,
+ 1.2705243989157553,
+ 0.30707184710044205,
+ -1.6555506450118103,
+ -2.4720812061714073,
+ -1.1799921547883476,
+ 0.09789575494958373,
+ 1.3578978852208046,
+ 1.9801549508121528,
+ 1.5748165905524691,
+ 0.22835577557929046,
+ -0.3832243931131038,
+ -1.2457308082762348,
+ -1.9679787977482324,
+ -1.8451244810931395,
+ -0.9062580053271858,
+ 0.41603439820038973,
+ 1.6141836206073337,
+ 2.5018822655393693,
+ 1.7349111002763316,
+ 0.600557889225158,
+ 0.41443521927187416,
+ -1.7985391095706016,
+ -3.0467925833703178,
+ -1.631727309598019,
+ -0.5326202072093857,
+ 0.8002307862324074,
+ 1.7830382178541262,
+ 1.9927045146927815,
+ 1.5364806151571249,
+ 1.6588433180049593,
+ 0.6630797749124049,
+ -1.801341891659216,
+ -2.666899628117773,
+ -1.4222265504747778,
+ -0.21911689147853466,
+ 1.0713256012956853,
+ 1.621523169822005,
+ 1.348989674412259,
+ 0.5230621659739828,
+ 0.04657511217561388,
+ -0.9810274471089098,
+ -1.8690921873389912,
+ -1.9552978744603553,
+ -1.177374663758593,
+ 0.10160435176056855,
+ 1.3613984021956198,
+ 1.9457053953961863,
+ 1.4871983523636394,
+ 0.2654862783652593,
+ -0.3839657207062013,
+ -1.2493282519582147,
+ -1.969693841413557,
+ -2.039300803811157,
+ -2.4238774209180027,
+ -1.3634512323076307,
+ 1.747553161975157,
+ 2.7555688203577096,
+ 1.8819334376356107,
+ 1.0093255685171374,
+ -0.30153723843601316,
+ -1.482754562009871,
+ -2.0186207775835503,
+ -1.883700868429196,
+ -3.550291180272898,
+ -2.4187087778886927,
+ 3.1496868231494894,
+ 4.4457969156978585,
+ 1.942688269095789,
+ 1.2113702195092013,
+ 1.9683048775963854,
+ 1.857225449421546,
+ 0.9483620380296829,
+ -0.28916228865416754,
+ -0.7346993566295182,
+ -0.9478042594265879,
+ -1.1570802926345893,
+ -1.083076241424852,
+ 0.2590351661783737,
+ 1.4532945267344475,
+ 2.1751229576306805,
+ 2.71921414799847,
+ 1.6074922451556242,
+ -0.9259780957386855,
+ -2.1119635894932474,
+ -2.0033360601898056,
+ -1.7680221914962917,
+ -0.7700412734695732,
+ 0.571130583271715,
+ 1.6578451181532923,
+ 2.201193345947777,
+ 2.6950625005692452,
+ 1.5143535608801268,
+ -1.134957008007684,
+ -2.357006163228273,
+ -2.0297158563118236,
+ -1.5910657794606267,
+ -0.6148653554717054,
+ -0.41865539822195136,
+ 0.20596665917177934,
+ 1.5883230694294352,
+ 2.0077285736258976,
+ 0.5734864043706143,
+ -0.7604403173345018,
+ -1.7719079618827813,
+ -2.00289368381203,
+ -1.371192014018577,
+ -0.27221606096583634,
+ 0.015326945841931066,
+ 0.5404242158583881,
+ 1.9345862296774698,
+ 1.8645830991060395,
+ -0.7932128226881224,
+ -2.0792637135981025,
+ -1.9321452659000045,
+ -1.8906716075786385,
+ -1.0344642112721774,
+ 0.28142845996420807,
+ 1.4675915316187471,
+ 2.175356518634483,
+ 2.7669270918215916,
+ 1.7431696090951798,
+ -1.0697666492919673,
+ -2.170541291462227,
+ -2.004778169759542,
+ -1.7546267630744579,
+ -0.9143832218246234,
+ -0.7978615149405505,
+ 0.005906133356248823,
+ 1.587057367859773,
+ 2.2172806073311784,
+ 0.8491280672262835,
+ -0.4779431677831963,
+ -1.6042365754316334,
+ -2.02449574883612,
+ -1.5715242983391002,
+ -0.5862048148258078,
+ -0.37658826218426217,
+ 0.2702502072706472,
+ 1.4857310892069713,
+ 1.941256301313297,
+ 0.5479002767742839,
+ -0.7820180713668704,
+ -1.865724247721173,
+ -2.542433974356793,
+ -1.8743583319787944,
+ 0.431310497159502,
+ 1.2962163737657935,
+ 1.7155465490387527,
+ 2.0125669030257978,
+ 1.4436200750183887,
+ 0.23491182835019528,
+ -1.0667790331072635,
+ -2.025843243747649,
+ -4.448343691070659,
+ -3.2622671490243573
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.174175262571439,
+ -1.332357853800225,
+ 0.49470264412966514,
+ 1.6141852316751557,
+ 2.0425372171480087,
+ 1.5691443854145375,
+ 0.4242335129915681,
+ -0.8762979129795123,
+ -1.4461493095715638,
+ -1.3665372178909,
+ -0.7025650242572726,
+ -0.34072465525629236,
+ 0.8009684745703051,
+ 1.7902804899590552,
+ 2.1920017824701565,
+ 2.6419958225778033,
+ 1.4258351338665378,
+ -1.27428221781833,
+ -2.5069527450737605,
+ -2.0208636258845676,
+ -1.4339637991220364,
+ -0.22696206566941451,
+ 1.0837376174305942,
+ 1.919785054585329,
+ 2.1216914431836784,
+ 2.500575226061483,
+ 1.2678402419169301,
+ -1.4310094238688669,
+ -2.645957403831147,
+ -1.9585043952448034,
+ -1.190222095463674,
+ -0.014695927205041714,
+ 0.34603165960833676,
+ 0.6895508879830318,
+ 1.2981587534203394,
+ 1.4143306366498691,
+ 0.020714894294960373,
+ -1.2484553971597192,
+ -1.9846515036002945,
+ -1.8455508112995274,
+ -0.9138684230755014,
+ 0.33516234489745955,
+ 0.8556204504362525,
+ 1.000669945578435,
+ 1.6907010093027384,
+ 1.5744996680244876,
+ -1.205359675928747,
+ -2.6085415364912996,
+ -2.0323488718712612,
+ -1.6414986107689378,
+ -0.541891520341953,
+ 0.8003321071766332,
+ 1.7895467442281696,
+ 2.1900872930469264,
+ 2.689242113026239,
+ 1.5695688951881028,
+ -1.4182779257153042,
+ -2.5552350828137835,
+ -2.0203863069643098,
+ -1.4335837096550663,
+ -0.36020985154831653,
+ -0.09022250177111675,
+ 0.444808454338498,
+ 1.4026891397256427,
+ 1.7364351784647212,
+ 0.33901773513843314,
+ -0.9809637091033815,
+ -1.8834142138811922,
+ -1.9557882692063144,
+ -1.186783515157271,
+ -0.010790967137741615,
+ 0.3425955721502821,
+ 0.6951166470126747,
+ 1.2399757600664447,
+ 1.3816667901091026,
+ 0.017625569761134812,
+ -1.2498420374111976,
+ -2.1138128845992803,
+ -2.7646224956809187,
+ -1.8999637038695911,
+ 0.9051046529738245,
+ 1.9054476850969229,
+ 1.9458800587103835,
+ 1.8916884720336622,
+ 1.022249640478312,
+ -0.30151491238666284,
+ -1.4868630612127227,
+ -2.1873324035569746,
+ -4.611703890557783,
+ -3.3217269397724887,
+ 1.8204803400628449,
+ 2.772266778611079,
+ 1.8831308875829667,
+ 1.9521570356246285,
+ 1.2253636390483091,
+ 1.9724791422834007,
+ 1.8665633358610576,
+ 1.1333831707089048,
+ 1.1011000706959118,
+ 0.2828793021574602,
+ -1.8557691908115381,
+ -2.459456254575994,
+ -1.0516921828663643,
+ 0.2615857652312279,
+ 1.5026203233727957,
+ 2.1025987905738663,
+ 1.5529630902100167,
+ 0.13781562453804597,
+ -0.596035569141651,
+ -1.379427251239443,
+ -2.014072740718223,
+ -1.7834148094935522,
+ -0.7637269378194873,
+ 0.5775628009840614,
+ 1.740770513396268,
+ 2.3527820364615506,
+ 1.6347974793936926,
+ -0.1293452158625532,
+ -1.0113493303477197,
+ -1.6003794992862206,
+ -2.040921598798382,
+ -1.8036069988084658,
+ -2.0396163234452427,
+ -0.9562899197676961,
+ 1.7867020189972065,
+ 2.7750647530369825,
+ 1.6662474912165504,
+ 0.5735462113321269,
+ -0.7705087658069065,
+ -1.777695681988144,
+ -2.0138730093807817,
+ -1.5773124431660583,
+ -1.9046153115296618,
+ -0.6663805474486885,
+ 1.928062735326177,
+ 1.9848818873722813,
+ 0.4049941100051491,
+ -0.22306463786148617,
+ -1.1380498185057024,
+ -1.939659218058762,
+ -1.908691772176431,
+ -1.033869378463662,
+ 0.27966445064703005,
+ 1.514704984307757,
+ 2.1559961463092665,
+ 1.654804183569482,
+ 0.06691571475653148,
+ -0.6311940921198114,
+ -1.3910947342581599,
+ -2.013705293510794,
+ -1.9696869712375629,
+ -2.2517819653683073,
+ -1.0398386398664836,
+ 1.5691988926674858,
+ 2.7234794888529312,
+ 1.818371211604905,
+ 0.8560904521593986,
+ -0.478770312762017,
+ -1.6057070965990026,
+ -2.0347856381251535,
+ -1.786414224490482,
+ -1.9791206468875042,
+ -0.8181254218596163,
+ 1.643038550486989,
+ 2.7141601933980524,
+ 1.6517403994253865,
+ 0.5557341091520204,
+ -0.7390077008995095,
+ -1.2827059998851127,
+ -1.2743989917575205,
+ -0.8197793668588254,
+ -0.5258251183626892,
+ 0.6742570230201658,
+ 1.721313998445084,
+ 2.0307998791070374,
+ 1.443400461441105,
+ 0.2393024463117325,
+ -1.0590804219501622,
+ -2.7804609472003894,
+ -2.182639015770355
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.8571065783663365,
+ -3.7871446073238286,
+ -0.8407418198776415,
+ 0.4909837802193841,
+ 1.6163336094213607,
+ 2.0302943755521508,
+ 1.5685744413934108,
+ 0.5753917123878701,
+ 0.36122215873717584,
+ -0.23807681557810184,
+ -1.6528731867187572,
+ -1.9942439108433248,
+ -0.5379634161834944,
+ 0.7953768254837628,
+ 1.8780735207242347,
+ 2.486553770165442,
+ 1.6618030679267395,
+ -0.3183426663514414,
+ -1.2894590164322068,
+ -1.726952214706032,
+ -2.0171508448218343,
+ -1.439385756907406,
+ -0.22370441668444907,
+ 1.0800929039638443,
+ 2.0368257813908124,
+ 2.6308637037040987,
+ 1.6718505340443028,
+ -0.5747779384961602,
+ -1.6533047035420503,
+ -1.8751952755430734,
+ -1.9566343812545135,
+ -1.3842459107998892,
+ -1.4447969549374748,
+ -0.5020495211073763,
+ 1.7981058467137216,
+ 2.5926162750249335,
+ 1.2811963428083086,
+ 0.023485127299713904,
+ -1.2492240349030108,
+ -1.9732399031307581,
+ -1.8440519701936249,
+ -1.0948811465349622,
+ -1.1721244957072872,
+ -0.17674237151362795,
+ 2.037912363515995,
+ 2.043056724504113,
+ -0.07908656834159647,
+ -1.0187294105590299,
+ -1.5376310964008444,
+ -2.0291923912723586,
+ -1.6483816023281783,
+ -0.537811096298126,
+ 0.7966237822846391,
+ 1.8794197896634675,
+ 2.5361634278495457,
+ 1.7860902955879956,
+ -0.4087410886761572,
+ -1.316337610761816,
+ -1.728977580834565,
+ -2.0188285757146667,
+ -1.636464839305235,
+ -1.7664640030397818,
+ -0.6578140792643844,
+ 1.6658802051555808,
+ 2.664694996913678,
+ 1.5128494457514692,
+ 0.3420298204731601,
+ -0.9806949147038071,
+ -1.8735756458310608,
+ -1.954983036461812,
+ -1.3816576398811025,
+ -1.4156264552483264,
+ -0.40552105104248637,
+ 1.6700307930697553,
+ 2.542356238591287,
+ 1.2799788026833232,
+ 0.02303956325859813,
+ -1.256241367793893,
+ -1.8869207014005456,
+ -1.5998657660261661,
+ -0.33863872471911727,
+ 0.21282321937513557,
+ 1.1517814579263734,
+ 1.9419576841461312,
+ 1.8985022860665486,
+ 1.015662302826286,
+ -0.2980111986111692,
+ -1.5270294653840026,
+ -3.6418485834481307,
+ -2.762002607102497,
+ -0.31495425183860254,
+ -0.12812593395119726,
+ 0.9928945188566491,
+ 1.8789385608338132,
+ 1.9588784104467398,
+ 1.2180861401761893,
+ 1.9638413735697018,
+ 2.0596268491767824,
+ 2.4558707319122077,
+ 1.3918844219881366,
+ -1.737745666099522,
+ -2.754572706415485,
+ -1.901866616153158,
+ -1.0484765232753315,
+ 0.16572236807223373,
+ 0.5571163567400573,
+ 0.8133829556118628,
+ 1.1434917627903807,
+ 1.1865626906988473,
+ -0.1455776655320954,
+ -1.3724585436866397,
+ -2.012773673612955,
+ -1.7650964755270613,
+ -0.7601515705579498,
+ 0.511450300461938,
+ 0.9719806135033583,
+ 1.0345360838971354,
+ 0.9358311341000776,
+ 0.7837198756256234,
+ -0.46414179739893563,
+ -1.5917815300845333,
+ -2.1998685800253956,
+ -2.765091710397195,
+ -1.6996977598246263,
+ 1.1975764877787756,
+ 2.320415155557028,
+ 2.026868798295554,
+ 1.6579186791738838,
+ 0.5732209631999817,
+ -0.7679042089701483,
+ -1.7699697270383168,
+ -2.190024619218623,
+ -2.9893616396746787,
+ -1.58230954474199,
+ 1.0711752068231755,
+ 1.230074940383468,
+ 1.4275847049003234,
+ 1.7361629267867262,
+ 0.15995703239488973,
+ -1.1333073036223082,
+ -1.9433069139469865,
+ -1.8964871694476155,
+ -1.0345800711566984,
+ 0.18435722722307918,
+ 0.59265939152269,
+ 0.836387843500235,
+ 1.1769323761159836,
+ 1.1903882583968874,
+ -0.1623494631055147,
+ -1.3853146859823595,
+ -2.158930328639451,
+ -2.7162268602347894,
+ -1.6295959133691755,
+ 0.8592201742178722,
+ 2.0297920544778116,
+ 1.9880731779343068,
+ 1.8158982792552447,
+ 0.8606700455111801,
+ -0.4776922140472804,
+ -1.6017925364119632,
+ -2.2017555600537086,
+ -2.712802714659009,
+ -1.548403368106558,
+ 1.0760989943956836,
+ 2.2919576278070135,
+ 2.0298663634903793,
+ 1.6517370533063267,
+ 0.7164606050210733,
+ 0.5458981424412779,
+ -0.11088003692187189,
+ -1.7124488784626712,
+ -2.120520965122059,
+ -0.6670127944021967,
+ 0.670169233156221,
+ 1.723792950410869,
+ 2.0183230747752345,
+ 1.443113508422388,
+ 0.3771975623612784,
+ 0.11788518355967369,
+ -0.13768129347155939
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.3000774789614074,
+ -4.597022683284004,
+ -1.8063730372902016,
+ -0.8369996521305431,
+ 0.4967567426934312,
+ 1.6146320801087917,
+ 2.030872629442206,
+ 1.770826417290384,
+ 2.002454565567413,
+ 0.986250763062407,
+ -1.885985007255601,
+ -2.779465007404552,
+ -1.6374171536930515,
+ -0.5361127614482778,
+ 0.7574245793598856,
+ 1.2614909249702992,
+ 1.1809299082758662,
+ 0.7690348191776976,
+ 0.4760294031365543,
+ -0.6912638380117699,
+ -1.728468213581065,
+ -2.0249856066560192,
+ -1.4271514897041715,
+ -0.21967568411503252,
+ 1.0755444603588191,
+ 1.6277203910650795,
+ 1.3537045576999058,
+ 0.5238802689272456,
+ 0.045309304199474085,
+ -0.9850482356969977,
+ -1.876152120020126,
+ -2.149787038382894,
+ -2.6030719855094175,
+ -1.4704997620752398,
+ 1.520976159964256,
+ 2.647775353242108,
+ 1.982676046050261,
+ 1.2778395905665585,
+ 0.01970864411708653,
+ -1.2506423008922987,
+ -1.974848710248923,
+ -2.0451405297890926,
+ -2.683316773414355,
+ -1.2711422224137066,
+ 1.5057028337569094,
+ 1.6292644344739085,
+ 1.0746166534383277,
+ 1.0003321438083668,
+ -0.3838274067762361,
+ -1.5409811156618092,
+ -2.038690411139147,
+ -1.6365462727086069,
+ -0.5334337182575497,
+ 0.7614355215816422,
+ 1.2920976558240513,
+ 1.23237621035282,
+ 0.7708378074129094,
+ 0.4820003773026193,
+ -0.6949081404789506,
+ -1.731470690336261,
+ -2.2006725570189087,
+ -2.6723372492603437,
+ -1.4707474832062895,
+ 1.2103159502649194,
+ 2.440273871096955,
+ 2.028456364444829,
+ 1.5099936571780488,
+ 0.3389368748535112,
+ -0.9852176312416315,
+ -1.8769908425800053,
+ -2.149623553405756,
+ -2.5540458510371535,
+ -1.3251018522709999,
+ 1.3785607223109542,
+ 2.6016657232941203,
+ 1.9838442146634307,
+ 1.2785213164462674,
+ 0.13713871095852723,
+ -0.20200281069680062,
+ -0.6127430563972052,
+ -1.429278642784716,
+ -1.5614805973370771,
+ -0.13352585116223287,
+ 1.1558622619374754,
+ 1.9522438216794316,
+ 1.8878249264971425,
+ 1.012156484367442,
+ -0.21317683807162863,
+ -1.1097778705353025,
+ -1.0164481170200765,
+ -2.3022411727058048,
+ -2.9563107642249036,
+ -0.3195806808770762,
+ 0.9972129374748173,
+ 1.889464014073542,
+ 1.948933469574357,
+ 1.2150569109520386,
+ 2.093697824599876,
+ 2.7453553210221475,
+ 1.8951255496800115,
+ -0.8722650300516711,
+ -1.86203346332724,
+ -1.9282356263071887,
+ -1.8994398984163303,
+ -1.2346670596467024,
+ -1.2191385556169179,
+ -0.27203577498066406,
+ 1.6509499729010864,
+ 2.447833602960547,
+ 1.1436960125022013,
+ -0.1437319923538912,
+ -1.3742276775320155,
+ -2.0006540964826947,
+ -1.7627367229918096,
+ -0.9308397548816951,
+ -0.8191725082562537,
+ -0.007595741784322754,
+ 1.5918443018916912,
+ 2.2308248429958595,
+ 0.8652451422307575,
+ -0.4599724811371643,
+ -1.6466932687026679,
+ -2.29585067599701,
+ -1.7069672064821466,
+ 0.0963209292593016,
+ 0.8694315945212521,
+ 1.5127439767616533,
+ 2.0221353439019087,
+ 1.6622647728413802,
+ 0.5665580063692329,
+ -0.7654767628693511,
+ -1.856265444056866,
+ -2.780724241683263,
+ -1.811623993593323,
+ -0.2418483362399851,
+ -0.04987890065184531,
+ 1.8295477470620987,
+ 2.936406624434382,
+ 1.3814699952200375,
+ 0.15622735371443738,
+ -1.141066542159168,
+ -1.9375411066994221,
+ -1.8956834523756259,
+ -1.2175436899904624,
+ -1.2166468819274878,
+ -0.33730811586672277,
+ 1.7737217180689178,
+ 2.4887679263526,
+ 1.1290710410982274,
+ -0.16419910833708398,
+ -1.417578541556071,
+ -2.0085258247527764,
+ -1.514296686800631,
+ -0.21650490580350343,
+ 0.4662987066570325,
+ 1.3008546984385307,
+ 1.9882655129964373,
+ 1.8216948180524806,
+ 0.8493538267772898,
+ -0.4817256413909331,
+ -1.6667362354615036,
+ -2.274231914110822,
+ -1.6077566250492452,
+ 0.04919912194899208,
+ 0.8854818871779002,
+ 1.5318536736490533,
+ 2.0301777680731496,
+ 1.8549179987012503,
+ 2.128730289880368,
+ 1.0935381818814474,
+ -1.8626133735758856,
+ -2.792899795984887,
+ -1.713231416286518,
+ -0.6633257583567344,
+ 0.6764470185668584,
+ 1.7209188354351508,
+ 2.0185478401513137,
+ 1.6426401866868092,
+ 2.9484453289332997,
+ 1.954534585735895
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.8244068450350275,
+ -4.155153073267308,
+ -2.373866635862324,
+ -2.1079915732241146,
+ -0.9328561377662237,
+ 0.657940886915024,
+ 1.9552989764537598,
+ 2.611981013505863,
+ 3.2849722180040377,
+ 2.0941314803115407,
+ -1.5911912691277077,
+ -2.850634897281265,
+ -2.408423786989964,
+ -1.9007246100226434,
+ -0.7510440629284064,
+ -0.5166234629002892,
+ 0.2787445947170178,
+ 1.7848256870979748,
+ 2.3553696217979048,
+ 0.7002398935823413,
+ -0.8832402088035314,
+ -2.0923204375693367,
+ -2.379824656948483,
+ -1.6422106061232464,
+ -0.34521994192567923,
+ -0.005407560043689133,
+ 0.586355245214002,
+ 1.6255925785675285,
+ 1.9763637932520175,
+ 0.3273325543128097,
+ -1.2252899373377872,
+ -2.3859503809285227,
+ -3.153840677605382,
+ -2.141244057676233,
+ 0.7507669442318207,
+ 1.9224038932871286,
+ 2.195268855369471,
+ 2.333257229025342,
+ 1.466494587706669,
+ -0.050973122190686816,
+ -1.536463727485847,
+ -2.5239306042323255,
+ -3.614203112670789,
+ -2.145441216872581,
+ 0.44802930503383553,
+ 0.6703563009918563,
+ 2.0753313594638945,
+ 3.013817344724499,
+ 1.0513367617433562,
+ -0.5231704065037414,
+ -1.8783774368616473,
+ -2.406989200164246,
+ -1.8972039356511867,
+ -0.745177747777116,
+ -0.5168876861888372,
+ 0.23148212672622015,
+ 1.891642163302269,
+ 2.397167880373905,
+ 0.6958282231270863,
+ -0.8868636635272433,
+ -2.1911963487465616,
+ -2.9135331286980475,
+ -1.9633850207718822,
+ 0.32835204099743026,
+ 1.4566291249202563,
+ 2.0146294465552534,
+ 2.3973773430391168,
+ 1.7486942571334927,
+ 0.3251659088334227,
+ -1.228726560866569,
+ -2.388608972497607,
+ -3.0966830347772296,
+ -1.9832003966382568,
+ 0.6343464906287227,
+ 1.8947705946506501,
+ 2.1988194142166035,
+ 2.335027046165963,
+ 1.6914191666524077,
+ 1.7870245111795395,
+ 0.6997797370755207,
+ -2.252180047767636,
+ -3.1276582552117373,
+ -1.565162136880273,
+ -0.08827194497529506,
+ 1.4323768146291393,
+ 2.3240600475505806,
+ 2.2105899758636474,
+ 1.3543880088853115,
+ 2.1194000180695753,
+ 1.2845428546468238,
+ -3.8916392412035252,
+ -5.313568903616481,
+ -1.726910456914981,
+ -0.3091503901120005,
+ 1.2473052321628586,
+ 2.2567082394613314,
+ 2.2891353930379634,
+ 1.55418639753553,
+ 2.259172040373614,
+ 1.9068484903771026,
+ 0.3782906580011937,
+ -0.28574104116597143,
+ -1.384182517369305,
+ -2.3079455130802304,
+ -2.4701211334622046,
+ -2.8895025420963796,
+ -1.433593087823228,
+ 1.740218986290609,
+ 3.1627402614575146,
+ 2.2790388551363807,
+ 1.3057005896794416,
+ -0.23397556415360377,
+ -1.6745107538047677,
+ -2.385527393519862,
+ -2.304743354800161,
+ -2.6257047592860308,
+ -1.1983512863648722,
+ 1.868777544188668,
+ 3.223096056907312,
+ 2.1294332970987413,
+ 0.9726889412376485,
+ -0.5230313520759425,
+ -1.0749529000700826,
+ -1.2069439237838306,
+ -1.1930655845079208,
+ -1.0505557314101217,
+ 0.47367733746032376,
+ 1.83688152417864,
+ 2.4139537203176684,
+ 1.9255056209669044,
+ 0.6124161893637489,
+ -0.9213766374659041,
+ -1.7137655000711443,
+ -1.5346281384237346,
+ -1.6729542941129638,
+ -1.5002970994152336,
+ 1.7448593507217567,
+ 3.435949870477575,
+ 2.368427690966537,
+ 1.5859422389187452,
+ 0.11714281176059782,
+ -1.4075285306370757,
+ -2.3169163930470833,
+ -2.4598248865471697,
+ -2.9255849599925856,
+ -1.580485151484162,
+ 1.928692406865693,
+ 3.2339643974253662,
+ 2.2712240178416843,
+ 1.2826156182431594,
+ -0.14672597355291114,
+ -0.6002097805785951,
+ -0.9313382516057217,
+ -1.3835021907026588,
+ -1.462432534115806,
+ 0.12673387417298898,
+ 1.5934740192428711,
+ 2.379350050914752,
+ 2.115593328345677,
+ 0.9439717395501214,
+ -0.5578890811601236,
+ -1.0948828386884648,
+ -1.1969031983053513,
+ -1.1410328169648243,
+ -0.988333597451644,
+ 0.5055403381841955,
+ 1.858812261260249,
+ 2.6058015568142756,
+ 3.3067854426261376,
+ 2.1466756277573227,
+ -1.4798219771419385,
+ -2.7308869830223514,
+ -2.400716675619349,
+ -1.9923485494874191,
+ -0.7239897650813641,
+ 0.8679555624669841,
+ 2.076160098014775,
+ 2.602111569946872,
+ 5.310761387815379,
+ 3.7675981047265763
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.6183034861042624,
+ -2.485842050786489,
+ -1.7541676058843467,
+ -1.8701502128379255,
+ -1.1808275049863093,
+ 0.032422248396830104,
+ 1.2236821586125997,
+ 2.0184073937861537,
+ 2.6299632313574963,
+ 1.7948167353709745,
+ -0.9007843368675792,
+ -1.8578789760316592,
+ -1.8592369442025707,
+ -1.7753081306566354,
+ -1.0963024447287613,
+ -1.0557409198323555,
+ -0.1886575101146583,
+ 1.5588629391072346,
+ 2.2766635376655886,
+ 1.0160637813792528,
+ -0.22237092822600613,
+ -1.3698027757850426,
+ -1.914888418633864,
+ -1.6330469141011736,
+ -0.8002116232169663,
+ -0.6687005898618534,
+ 0.06362043474780114,
+ 1.4917027111904992,
+ 2.0545690870257842,
+ 0.7445870722396273,
+ -0.5209925194421523,
+ -1.626957491712601,
+ -2.2477651386754687,
+ -1.6469813800291722,
+ 0.16793758339427722,
+ 0.9378907622446577,
+ 1.495020420040075,
+ 1.9268633790464618,
+ 1.530190632919853,
+ 0.4559652500687267,
+ -0.8071824446870389,
+ -1.814312457752909,
+ -2.6979567580839015,
+ -1.732589447438995,
+ -0.14338504675867514,
+ 0.03948448403321406,
+ 1.739102666403106,
+ 2.75374837244638,
+ 1.2591028554947727,
+ 0.07893904469941965,
+ -1.1398139223232735,
+ -1.8580871091444757,
+ -1.7727065342017405,
+ -1.091783390780552,
+ -1.0684858792536769,
+ -0.2591874042130194,
+ 1.6701693968049063,
+ 2.3180740817863805,
+ 1.0129212099906595,
+ -0.22494874036817009,
+ -1.4019513239949544,
+ -1.967490188583099,
+ -1.460322580961084,
+ -0.1485938759039757,
+ 0.5338596805417286,
+ 1.286898584480309,
+ 1.899554372304473,
+ 1.6961590618193263,
+ 0.742383624126172,
+ -0.524255995848011,
+ -1.6298132499345024,
+ -2.2077824113894278,
+ -1.5404341387320826,
+ 0.10383411133960431,
+ 0.9276891667611827,
+ 1.4982689460605279,
+ 1.9284418515029327,
+ 1.7182822275869805,
+ 1.9567079803359528,
+ 0.9835970198231359,
+ -1.7801338422006863,
+ -2.644580650201407,
+ -1.5873217528565278,
+ -0.5634131985080207,
+ 0.7072130304860469,
+ 1.6687468833284196,
+ 1.9064190512671153,
+ 1.5074635562692897,
+ 2.6751101498640857,
+ 1.7614037894220405,
+ -3.1441879289810393,
+ -4.369238800012687,
+ -1.6811938405957998,
+ -0.7304709240522747,
+ 0.5386624254753171,
+ 1.5732096994297553,
+ 1.9244873342176039,
+ 1.6344008099583534,
+ 1.8322453918863444,
+ 1.2281567091928516,
+ 0.7520968852563129,
+ 0.4587567357054707,
+ -0.6664409785158286,
+ -1.6471134309928324,
+ -2.088006596855305,
+ -2.5342247195580168,
+ -1.3928979486661173,
+ 1.1528388190893515,
+ 2.3203343943914434,
+ 1.9246342445500726,
+ 1.4281075349933465,
+ 0.31435326118449347,
+ -0.9414701642392755,
+ -1.7841739681058402,
+ -2.038299882193616,
+ -2.4204450985612285,
+ -1.2538664475538566,
+ 1.3117611798892854,
+ 2.4720381064259347,
+ 1.8811347132464198,
+ 1.20762463725552,
+ 0.12214524492407057,
+ -0.19234477358450483,
+ -0.5706645490453166,
+ -1.2906511594649046,
+ -1.456087130451992,
+ -0.11935072159550533,
+ 1.1030321057833987,
+ 1.8549163096034222,
+ 1.7888998986821414,
+ 0.9541744946232523,
+ -0.21031609792672706,
+ -0.6648940675662964,
+ -0.8717447186404315,
+ -1.65626245730716,
+ -1.5533568018416446,
+ 1.0849570613143167,
+ 2.407893343086406,
+ 1.9215421242014845,
+ 1.5998711745147083,
+ 0.5876691435279419,
+ -0.687138354988891,
+ -1.6580531102065657,
+ -2.084182689143341,
+ -2.5730887490616334,
+ -1.5203866178162828,
+ 1.300521066424563,
+ 2.3783683169747185,
+ 1.9223955157122918,
+ 1.412230638974315,
+ 0.42352830168457467,
+ 0.1885794077872713,
+ -0.3600610293195015,
+ -1.3629771447723826,
+ -1.723898511424137,
+ -0.3969524454760305,
+ 0.8615160271806661,
+ 1.7536786477485007,
+ 1.8730915311281917,
+ 1.1863639374319324,
+ 0.09374679388777143,
+ -0.2220556326616653,
+ -0.6005448944697204,
+ -1.216879305580171,
+ -1.3973598417094457,
+ -0.09371340677112423,
+ 1.1227594222031656,
+ 1.9776725495698342,
+ 2.601407024696202,
+ 1.8062288981181116,
+ -0.7934883055244903,
+ -1.7268021758318928,
+ -1.820271207725622,
+ -1.8195947802990182,
+ -1.034939918677036,
+ 0.20941382285140042,
+ 1.3554749427425399,
+ 2.060270649164697,
+ 4.369499039243939,
+ 3.15571493771747
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.3298722123754865,
+ -2.1792159324214504,
+ -1.953179263466371,
+ -2.3969292369834845,
+ -1.8096820046354636,
+ -0.4207966503530922,
+ 1.1397966898746523,
+ 2.3362926587225497,
+ 3.132268748707238,
+ 2.2475084185302183,
+ -0.7260532771049243,
+ -1.818343330115023,
+ -2.150251683077915,
+ -2.350048040807208,
+ -1.7657363699664754,
+ -1.85415276626215,
+ -0.6074223130195104,
+ 1.977341224190519,
+ 3.074820371326881,
+ 1.6334026218403528,
+ 0.18567205658529354,
+ -1.3476737843676008,
+ -2.2895312730556507,
+ -2.2407513740518734,
+ -1.4398727343060487,
+ -1.4138609204454495,
+ -0.3013816051725639,
+ 1.9534154514840787,
+ 2.88590129643851,
+ 1.3352379265351797,
+ -0.19300913262033728,
+ -1.6744569292537494,
+ -2.419439711350952,
+ -1.898989871679134,
+ -0.2025232008863384,
+ 0.558292342302226,
+ 1.536580379773349,
+ 2.349571608425525,
+ 2.1534009868029607,
+ 1.004736206506058,
+ -0.5683044115835909,
+ -1.9690517703541377,
+ -3.031472642427692,
+ -2.0773861829204177,
+ -0.6373853514418963,
+ -0.41505970856088986,
+ 2.14336214287241,
+ 3.5964912456188034,
+ 1.8874982043180677,
+ 0.5566457740409845,
+ -1.0191991397851792,
+ -2.1488803963758,
+ -2.347151014968392,
+ -1.7605196240571634,
+ -1.8809806518665404,
+ -0.7218051351876714,
+ 2.1338740436154207,
+ 3.1315258084072197,
+ 1.6300222250393794,
+ 0.18290227058439407,
+ -1.3422704981461666,
+ -2.0039574791960653,
+ -1.6355421733152855,
+ -0.5593836160706094,
+ 0.04816345740529404,
+ 1.2296931851527564,
+ 2.2439571116923633,
+ 2.2953422134980164,
+ 1.3321781543232487,
+ -0.1973717164553914,
+ -1.678534109272789,
+ -2.377190229809729,
+ -1.7906643705679992,
+ -0.25182231395642735,
+ 0.5572215171577168,
+ 1.5408268950321686,
+ 2.351602035824576,
+ 2.3848671565827826,
+ 2.819279493451847,
+ 1.564904028309728,
+ -2.098778690039214,
+ -3.2803135433989423,
+ -2.2011259175413103,
+ -1.1289584788060854,
+ 0.43377939748119976,
+ 1.8091150377920087,
+ 2.3974938601172604,
+ 2.188625225189449,
+ 4.0952442594292116,
+ 2.7790380853561696,
+ -3.771216011944172,
+ -5.310770765046263,
+ -2.279818617471708,
+ -1.3188352853468985,
+ 0.21409523102363837,
+ 1.6566551272843844,
+ 2.3773626843538858,
+ 2.309116775396614,
+ 2.697435342477553,
+ 1.4525246157661358,
+ 1.3132459533833296,
+ 1.185335052414195,
+ -0.3831875307615405,
+ -1.7752349706417583,
+ -2.589418769835592,
+ -3.2235183186827223,
+ -1.8867721557831774,
+ 1.14961457197531,
+ 2.56669065788566,
+ 2.385186242145659,
+ 2.056588051645365,
+ 0.8406317001903514,
+ -0.7503272926161326,
+ -2.0081269424235697,
+ -2.6070729241653066,
+ -3.1785452842677504,
+ -1.7670083476814955,
+ 1.3909319285489687,
+ 2.84344869874998,
+ 2.4042661532821072,
+ 1.8368639377884615,
+ 0.6481549283877811,
+ 0.391982887963901,
+ -0.3119821891452927,
+ -1.8489375751046866,
+ -2.305756565327061,
+ -0.6055075241297035,
+ 0.9720842232355575,
+ 2.136974761502743,
+ 2.360428639724883,
+ 1.5675211665370865,
+ 0.23960820955677106,
+ -0.13467966913726237,
+ -0.7065648823257729,
+ -2.2671018952009163,
+ -2.1773712410197885,
+ 1.0022280035745115,
+ 2.5490642488390804,
+ 2.31212036625816,
+ 2.2122738291637454,
+ 1.1589082475300025,
+ -0.40970230157011167,
+ -1.7917558848137223,
+ -2.5889722004376026,
+ -3.279078349076909,
+ -2.047797979274092,
+ 1.3225197301945237,
+ 2.6367490838674703,
+ 2.386254572510386,
+ 2.040099494972781,
+ 1.0072035191518967,
+ 0.8464441371218278,
+ -0.07049244522082729,
+ -1.8605998311128449,
+ -2.567153568446272,
+ -0.9359779986686396,
+ 0.6410917720360333,
+ 1.9480623578396392,
+ 2.3975104004178824,
+ 1.8131503613720166,
+ 0.6138761636174329,
+ 0.34381431480750985,
+ -0.3828098271126322,
+ -1.7312301473818736,
+ -2.2275294596488586,
+ -0.57485501210155,
+ 0.99759592032711,
+ 2.2545180595807937,
+ 3.0554890819063427,
+ 2.2326098865626047,
+ -0.5814125787991408,
+ -1.6295125883156965,
+ -2.073364842341515,
+ -2.3757777169302514,
+ -1.6557557530064138,
+ -0.20177323106781758,
+ 1.3293176159786724,
+ 2.4324010343173925,
+ 5.313412388441674,
+ 3.8879517421525773
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.928764292466476,
+ 5.390332891303031,
+ 1.8412636470971173,
+ 0.47662674082229767,
+ -1.0986577533846325,
+ -2.1926547299476473,
+ -2.3366507000800514,
+ -1.6986367061050711,
+ -1.7970567483917703,
+ -0.7072047500015516,
+ 2.253849437488475,
+ 3.1327355120762985,
+ 1.573197219924364,
+ 0.09964971585309987,
+ -1.424405130010723,
+ -2.0980834506359325,
+ -1.6793196667478647,
+ -0.4947011093053667,
+ 0.16091602383265985,
+ 1.305512041791661,
+ 2.2804117564289745,
+ 2.2765791222790974,
+ 1.2663329022123173,
+ -0.28167089836887527,
+ -1.7532397790172431,
+ -2.4602048457721355,
+ -1.8253409044079223,
+ -0.1839452034717531,
+ 0.6698190889449906,
+ 1.6098915451146885,
+ 2.375677607277239,
+ 2.3553736523794666,
+ 2.753089666802795,
+ 1.4209190604467725,
+ -2.016541522275499,
+ -3.2805890196975582,
+ -2.174228482877437,
+ -1.058238150548767,
+ 0.5180264650529336,
+ 1.8696804759487486,
+ 2.4084950913833176,
+ 2.145795636409245,
+ 2.7023137882030426,
+ 1.1182801148894121,
+ -2.106557787699698,
+ -2.2101137774062765,
+ -0.8476751534430023,
+ -0.384931481906216,
+ 0.9723676735302516,
+ 2.1317673278628866,
+ 2.377191127167061,
+ 1.572416335941069,
+ 0.09691813993582232,
+ -1.4282702470686663,
+ -2.1444007233514792,
+ -1.774668427645021,
+ -0.4575244340524505,
+ 0.16751143741117175,
+ 1.309366727915458,
+ 2.283592283308884,
+ 2.5049664904251934,
+ 2.9474577070911243,
+ 1.4877292682137786,
+ -1.7051676787463177,
+ -3.1411986184902516,
+ -2.3108396899275245,
+ -1.384887285827199,
+ 0.14133741658538232,
+ 1.609335778954876,
+ 2.3756591875264075,
+ 2.354131121584339,
+ 2.700399225412304,
+ 1.260372321954213,
+ -1.8449522217487617,
+ -3.2212725438816774,
+ -2.1746656965811932,
+ -1.0586082533101022,
+ 0.42469721864158977,
+ 0.9725805805558886,
+ 1.1867581149271247,
+ 1.3172292465473416,
+ 1.1898574856303645,
+ -0.3829922236706188,
+ -1.7785575039001684,
+ -2.413236120385046,
+ -1.9828759897187151,
+ -0.702824461780393,
+ 0.827851481012464,
+ 2.467661075269208,
+ 2.0148616266620567,
+ 2.023182350889391,
+ 2.4798122189398595,
+ -0.16243040011697374,
+ -1.621470094636555,
+ -2.387556171424356,
+ -2.1003184700059085,
+ -0.9119461652762174,
+ 0.596121093315544,
+ 1.18230753863354,
+ 1.3127763969658781,
+ 1.4586000460168267,
+ 2.7053093454586534,
+ 2.394980778162002,
+ 2.006434538674621,
+ 0.9419165829379974,
+ 0.7618112495531155,
+ -0.12467019720948522,
+ -1.8432325059897456,
+ -2.5153231614598077,
+ -0.8759092460139464,
+ 0.7047897281212606,
+ 1.9879602184584115,
+ 2.3958997013585868,
+ 1.7710049353358825,
+ 0.5448532114999376,
+ 0.2563242188163852,
+ -0.43615375955050845,
+ -1.7059480578664583,
+ -2.1650487199325115,
+ -0.511275603593499,
+ 1.0579824131247924,
+ 2.2914659355141156,
+ 3.0656621960782164,
+ 2.127025955375301,
+ -0.5911154981983928,
+ -1.705430901571629,
+ -2.1076112418092943,
+ -2.367688979217387,
+ -1.6086538618013817,
+ -0.13636930072401496,
+ 1.3847802249092676,
+ 2.459166357447679,
+ 3.5593001863680196,
+ 2.162677708898548,
+ -0.25966860598257235,
+ -0.48508675622970543,
+ -2.1112168742685,
+ -3.1511111210052465,
+ -1.2016013288606238,
+ 0.3564707352958194,
+ 1.7669969136461885,
+ 2.4003141373570416,
+ 1.997410897788718,
+ 0.919899015057034,
+ 0.7445639900108042,
+ -0.08096653704064273,
+ -1.958239816504464,
+ -2.550536099205395,
+ -0.8567374827615019,
+ 0.7270782941025264,
+ 2.0860212942066116,
+ 2.809078075633386,
+ 1.9390045707494195,
+ -0.18982294066673325,
+ -1.250479152227849,
+ -1.9172119403354693,
+ -2.4074619618886057,
+ -1.8623515235327575,
+ -0.4924455048802544,
+ 1.0801107828328176,
+ 2.3087148723909414,
+ 3.025569373667291,
+ 1.9809485861956813,
+ -0.5005163604939825,
+ -1.7064354322487871,
+ -2.124568596795455,
+ -2.3716426684427616,
+ -1.8279381738323566,
+ -1.9796082010150509,
+ -0.84960074257883,
+ 2.260153077321186,
+ 3.1977535086260884,
+ 1.6905697600810377,
+ 0.2575402779135054,
+ -1.2920067410162435,
+ -2.2747205517585516,
+ -2.2728908056654284,
+ -1.5087337015912439,
+ -2.468977953507643,
+ -1.544404482143005
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.152274229283172,
+ 4.38116904201332,
+ 1.6881102562295816,
+ 0.7367093557623051,
+ -0.5357943273156723,
+ -1.5749884248235193,
+ -1.9301142418643376,
+ -1.6420372131704375,
+ -1.8418675850207702,
+ -0.8856672729866037,
+ 1.8025516784046949,
+ 2.6336869608797744,
+ 1.5186361219121576,
+ 0.44703134445724696,
+ -0.7866504766227239,
+ -1.277032173162558,
+ -1.1610717370905357,
+ -0.683747847853549,
+ -0.3667994579302923,
+ 0.7186046700651699,
+ 1.6779548006489533,
+ 1.9180805379738755,
+ 1.3109547591065769,
+ 0.14420993309194316,
+ -1.084494545260202,
+ -1.6179319331534625,
+ -1.3188988494702591,
+ -0.4472886660117359,
+ 0.04416320742280057,
+ 0.9937495632188288,
+ 1.8092920577590026,
+ 2.028861569628961,
+ 2.4446982947112894,
+ 1.3648046942366754,
+ -1.477720247160198,
+ -2.544699324641468,
+ -1.8713857105395881,
+ -1.1646658196788549,
+ 0.04659598202051235,
+ 1.2406340860070117,
+ 1.893337543059718,
+ 1.9186332018740424,
+ 2.5036731374368006,
+ 1.1664855889084864,
+ -1.4762029749656482,
+ -1.5889695743522962,
+ -0.9743351184336537,
+ -0.8581556559418222,
+ 0.42890726093569737,
+ 1.5078727072976676,
+ 1.9413552882213485,
+ 1.5178341884925832,
+ 0.4445270602482053,
+ -0.7903716419125403,
+ -1.30746042299346,
+ -1.214334351441437,
+ -0.6807196319519689,
+ -0.3708477275271336,
+ 0.7220270629954982,
+ 1.6807756484234448,
+ 2.088221564691516,
+ 2.524380900317526,
+ 1.3730765612866478,
+ -1.1880377205700554,
+ -2.3594970143722684,
+ -1.9250354152066813,
+ -1.3924953238805151,
+ -0.2579310559705452,
+ 0.9938186140288819,
+ 1.809970768951234,
+ 2.028578211610682,
+ 2.398553080948761,
+ 1.2274343659911888,
+ -1.341436356609007,
+ -2.500120975671559,
+ -1.8723863473410214,
+ -1.1652645885039314,
+ -0.05996254857622768,
+ 0.2814031716120532,
+ 0.6405473555902269,
+ 1.3188319202279901,
+ 1.410710200373515,
+ 0.06206949273934697,
+ -1.1527227456690627,
+ -1.8755692349300528,
+ -1.7713070331544316,
+ -0.9061566796273537,
+ 0.2729846702594131,
+ 1.1985881055835959,
+ 1.0681531340062382,
+ 2.1124280141494394,
+ 2.6982948943655183,
+ 0.23967831539915543,
+ -1.005018370079566,
+ -1.82152839908804,
+ -1.835077437943256,
+ -1.0595389310230972,
+ 0.08038957480886144,
+ 0.45773799741629884,
+ 0.7527081231375414,
+ 1.23263136658586,
+ 1.8376623184628176,
+ 1.8538838523258736,
+ 1.7835772241134096,
+ 1.1155835349587757,
+ 1.0812243800675891,
+ 0.2056622371985141,
+ -1.5622401200537066,
+ -2.2900147428495554,
+ -1.0337970487891996,
+ 0.20177088738631324,
+ 1.3551980166547213,
+ 1.9127537525729947,
+ 1.644214941569541,
+ 0.8210937292726682,
+ 0.6956313368727779,
+ -0.04652976331888919,
+ -1.497696128820325,
+ -2.071618572147055,
+ -0.7638139787027655,
+ 0.5010321307886662,
+ 1.61293947878891,
+ 2.233188567612299,
+ 1.6419778867778039,
+ -0.14956829799532098,
+ -0.9114795084989348,
+ -1.4820431806990908,
+ -1.9267748963711575,
+ -1.5430790673085861,
+ -0.47616895513471674,
+ 0.788394635293719,
+ 1.803243192187791,
+ 2.6862444627173274,
+ 1.7312016413856959,
+ 0.164859275789472,
+ -0.018134810842190797,
+ -1.7395272537916426,
+ -2.7632456822484035,
+ -1.2660694353300785,
+ -0.08369317772159539,
+ 1.1393202351918803,
+ 1.8620785636648476,
+ 1.7794390237967088,
+ 1.0990284785289255,
+ 1.0771168587483786,
+ 0.26390229623058575,
+ -1.6757492987619194,
+ -2.327482106090942,
+ -1.0196128300337026,
+ 0.22107175746497887,
+ 1.4022203154441109,
+ 1.9690595895826215,
+ 1.4629329079655222,
+ 0.15273371291346174,
+ -0.5294261341104397,
+ -1.2871177811964756,
+ -1.904098900753695,
+ -1.7030887475674745,
+ -0.7486452769640339,
+ 0.5213581600977777,
+ 1.6312867625562182,
+ 2.2108040227085035,
+ 1.5438319976015247,
+ -0.10038898030677555,
+ -0.9246289434614905,
+ -1.499597360118404,
+ -1.9337781438951192,
+ -1.7258883656909207,
+ -1.9663792938989035,
+ -0.9899203374490895,
+ 1.7843499809475767,
+ 2.6524426604107463,
+ 1.5943303129350381,
+ 0.569323909530564,
+ -0.7049508321328131,
+ -1.6711416957638632,
+ -1.9124108487078524,
+ -1.5150851302966883,
+ -2.690602691632552,
+ -1.7724604837127922
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.4441071191755435,
+ 3.5835682626087255,
+ 2.008846621986993,
+ 1.7478618790652274,
+ 0.732796190587494,
+ -0.6090431547926465,
+ -1.6801196409215298,
+ -2.2001776976154654,
+ -2.75652578184635,
+ -1.7436316032698924,
+ 1.378201107103358,
+ 2.4409401127574255,
+ 2.0289287525318804,
+ 1.5657476511380686,
+ 0.5732012846167192,
+ 0.35954309513577426,
+ -0.2813431322750033,
+ -1.4827377411405802,
+ -1.9314301000417702,
+ -0.5351278832788376,
+ 0.7969952741204557,
+ 1.790902392805775,
+ 1.9958821176397845,
+ 1.341365669584014,
+ 0.22934339879905813,
+ -0.07199337671526161,
+ -0.538775739591133,
+ -1.3421705084986533,
+ -1.6040228386743554,
+ -0.21909065419138665,
+ 1.0811646854917067,
+ 2.034754149531949,
+ 2.6784211044000794,
+ 1.8045396429692546,
+ -0.6798859606935977,
+ -1.682398895746907,
+ -1.8723602179187573,
+ -1.9511317886139732,
+ -1.1895588844290321,
+ 0.09999986445397324,
+ 1.33801061749385,
+ 2.1416813225615052,
+ 3.055324110520412,
+ 1.7985872309270423,
+ -0.4337917785311782,
+ -0.6197916300045678,
+ -1.7325395296936497,
+ -2.4897229868763078,
+ -0.8341273998438763,
+ 0.49635083110764905,
+ 1.6181394354427536,
+ 2.027725201266131,
+ 1.5627680666975778,
+ 0.5682578765301975,
+ 0.3583214538334748,
+ -0.24545046279125957,
+ -1.5694002466741483,
+ -1.965589024370153,
+ -0.531380679851036,
+ 0.8000746025194176,
+ 1.8792888779101375,
+ 2.486894742118574,
+ 1.660391410031675,
+ -0.32293023618872974,
+ -1.2951449633305916,
+ -1.7280952029203183,
+ -2.0139963418898583,
+ -1.4332701930920426,
+ -0.21732784433798089,
+ 1.0839921308795677,
+ 2.036902162020559,
+ 2.6297931680238786,
+ 1.6696183181364068,
+ -0.5788413169990143,
+ -1.6578434913230218,
+ -1.8752929692621354,
+ -1.9525984529744342,
+ -1.3773786244445476,
+ -1.4389555212288685,
+ -0.5384387609993627,
+ 1.8925223867771375,
+ 2.6083265657193135,
+ 1.2748741182420464,
+ 0.017309120484116224,
+ -1.2525865771780305,
+ -1.972298908466957,
+ -1.839239822785982,
+ -1.0877668446021251,
+ -1.6657509946264637,
+ -0.9934619765211545,
+ 3.2623143244768062,
+ 4.445522170203563,
+ 1.4147063409845,
+ 0.20378268708745753,
+ -1.0996350030572568,
+ -1.9205761857319699,
+ -1.9103123198261334,
+ -1.2592289010008977,
+ -1.2754704355466764,
+ -0.41477909637856464,
+ 1.8746807730179673,
+ 2.536231892420518,
+ 1.2123966032211297,
+ 1.9597828493649643,
+ 2.0600383068165264,
+ 2.399230333503313,
+ 1.174732489070346,
+ -1.4879638708952878,
+ -2.6783508473711035,
+ -1.9008921049266139,
+ -1.0515628116957612,
+ 0.2541259441003914,
+ 1.451115218952175,
+ 2.0162510293869085,
+ 1.9117388632946888,
+ 2.166648002412294,
+ 0.9716552244904307,
+ -1.589391735340944,
+ -2.717088889840605,
+ -1.766566805261051,
+ -0.7668099776953309,
+ 0.5011980283183683,
+ 0.9790065066349436,
+ 1.0583575815186408,
+ 0.9624944353144085,
+ 0.810711719384484,
+ -0.45491017281200813,
+ -1.583728944009503,
+ -2.0345769976230454,
+ -1.5872612088846396,
+ -0.46046375000136,
+ 0.8339017724142299,
+ 1.519532592278019,
+ 1.3288659470454567,
+ 1.36732516325209,
+ 1.2183739524802066,
+ -1.5001056946350222,
+ -2.922720126738776,
+ -1.9845010302857138,
+ -1.2927820599629458,
+ -0.041405702025842615,
+ 1.2317562283104149,
+ 1.9668777628687724,
+ 2.0508888619901002,
+ 2.4283578768594527,
+ 1.2968549954220017,
+ -1.6464880401620532,
+ -2.738001007668473,
+ -1.8938711083812694,
+ -1.0318901637412516,
+ 0.18544307052718575,
+ 0.5807319650318874,
+ 0.8259305489577836,
+ 1.1315262918629414,
+ 1.1634589978597518,
+ -0.16376171678208765,
+ -1.3848498406944014,
+ -2.014010470263167,
+ -1.7546033150385743,
+ -0.7425106565291143,
+ 0.5303936103351267,
+ 0.9941468305095914,
+ 1.0455648970233367,
+ 0.922531246125,
+ 0.7595202971600264,
+ -0.481633354327542,
+ -1.6018813875699827,
+ -2.199114873316747,
+ -2.780131042290851,
+ -1.7912539654560293,
+ 1.2868360525799885,
+ 2.3445117222515193,
+ 2.0262393030368675,
+ 1.645980217006971,
+ 0.555072991110804,
+ -0.7842518779110056,
+ -1.7775030774437242,
+ -2.1861635656132687,
+ -4.4428771680072465,
+ -3.1454596168036106
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.5106457098478323,
+ 1.0090992394571532,
+ 1.3962477256544372,
+ 2.006743841792877,
+ 1.7549997421741794,
+ 0.7267275595069049,
+ -0.6071827118864228,
+ -1.7529876631307515,
+ -2.4292370435580475,
+ -1.8388315483496918,
+ 0.26087725352872915,
+ 1.0665185380674702,
+ 1.6117798310740663,
+ 2.0279689761345865,
+ 1.7703525212184905,
+ 1.9580797502727374,
+ 0.8046397999697137,
+ -1.638761709389739,
+ -2.701324718141208,
+ -1.6356760723763193,
+ -0.5366233272321296,
+ 0.7978994520991659,
+ 1.783419373036714,
+ 1.995611916325576,
+ 1.5409669654595528,
+ 1.6346273043209378,
+ 0.5624283990384739,
+ -1.6690637232379557,
+ -2.6206874963189923,
+ -1.4263628677046027,
+ -0.2228713477224213,
+ 1.0692154802254517,
+ 1.6518746195188165,
+ 1.418249501120028,
+ 0.5078785119013205,
+ 0.05395410349372044,
+ -0.9790700166244667,
+ -1.8698783562094337,
+ -1.9585013044369515,
+ -1.1815837861081113,
+ 0.09820789505741975,
+ 1.3599641145920836,
+ 2.192649237788491,
+ 1.6232218952487663,
+ 0.9009819817329339,
+ 0.7246099529308895,
+ -1.7251271932474286,
+ -3.0653527554742306,
+ -1.8019205592307186,
+ -0.8348917342361731,
+ 0.49560415348475856,
+ 1.6107162723812825,
+ 2.025898164877485,
+ 1.7664496921547779,
+ 1.9890367576612356,
+ 0.9198270638412409,
+ -1.7810481024793638,
+ -2.7517387582709727,
+ -1.6333689695597053,
+ -0.5347354481415784,
+ 0.7556339144904476,
+ 1.2584659791624366,
+ 1.1780815959239586,
+ 0.7671016239837252,
+ 0.47479245794735786,
+ -0.6896311670684198,
+ -1.7242722855158854,
+ -2.0200186562346993,
+ -1.4236106209911548,
+ -0.21907036789387765,
+ 1.0729679421276332,
+ 1.6237885875037388,
+ 1.3504232961617764,
+ 0.5225405160530869,
+ 0.04512211663624646,
+ -0.9826922387749785,
+ -1.8715833668654553,
+ -2.14450799642927,
+ -2.612533567696007,
+ -1.5565534002299126,
+ 1.609105926728069,
+ 2.6579018760162616,
+ 1.9778073768356406,
+ 1.2746584864129622,
+ 0.019595833036275292,
+ -1.2476299620276348,
+ -1.9700279921181485,
+ -2.0401067825018666,
+ -3.9684428531980522,
+ -2.7489694545455348,
+ 2.9478783653595184,
+ 4.212066828854416,
+ 2.009984328662196,
+ 1.413998353152041,
+ 0.20648028516879605,
+ -1.095684738687693,
+ -1.9181176222641032,
+ -2.1068086381895887,
+ -2.5410368031637502,
+ -1.4795219033934188,
+ 1.6737293654939724,
+ 2.708742810396805,
+ 1.9448415415129832,
+ 1.2142819563799572,
+ 2.0976604044309473,
+ 2.678903698927661,
+ 1.6618527500560947,
+ -0.696884547153517,
+ -1.819082229985453,
+ -1.9308511542481541,
+ -1.905002372729389,
+ -1.0582826440782844,
+ 0.25862919899278386,
+ 1.455606269517113,
+ 2.178330200052926,
+ 2.7229268337293457,
+ 1.6089034830241653,
+ -0.9293954176372781,
+ -2.117457687102161,
+ -2.007427251570225,
+ -1.7719566214292202,
+ -0.9407667039070629,
+ -0.8452634526159767,
+ -0.07847208161773729,
+ 1.705664967974634,
+ 2.2863561815001816,
+ 0.8734243983421819,
+ -0.45618037769667585,
+ -1.5943992737478534,
+ -2.030959372799643,
+ -1.5914041675267177,
+ -0.6129475154720904,
+ -0.4683065021640067,
+ 0.2589206626037275,
+ 2.014915805616854,
+ 1.9739358640173563,
+ -0.5245899932338517,
+ -1.699169658291586,
+ -1.8137172209896975,
+ -1.9831425702448473,
+ -1.2988122581246349,
+ -0.038415750510486825,
+ 1.2301383821564587,
+ 2.1008935974717655,
+ 2.73007288094564,
+ 1.794743970743599,
+ -0.8283816195338499,
+ -1.8742358372664931,
+ -1.9349341110314602,
+ -1.8943242505824331,
+ -1.2193161152165697,
+ -1.198404197664717,
+ -0.2576221019091082,
+ 1.6498014550765292,
+ 2.43891247139958,
+ 1.1295882687612653,
+ -0.16169896299820616,
+ -1.3883289040818012,
+ -2.004647102600874,
+ -1.7549660544303973,
+ -0.913782231031842,
+ -0.7967646207210927,
+ 0.0071716738880252175,
+ 1.5883658647531402,
+ 2.2184663600374024,
+ 0.8495478088983197,
+ -0.4777224964582035,
+ -1.6605819010158167,
+ -2.332417495065376,
+ -1.8024491073708688,
+ 0.13401325123054966,
+ 0.8915559565338487,
+ 1.525588024705426,
+ 2.024380956165766,
+ 1.6528999768577088,
+ 0.5496944343997178,
+ -0.7825394809552967,
+ -1.8678322422364948,
+ -4.216147065296409,
+ -3.1281826025395287
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.854386379791417,
+ -2.2377656292142873,
+ 0.2803323198971821,
+ 1.7071929230124774,
+ 2.4040420570646153,
+ 2.040088605050796,
+ 0.8014029258614858,
+ -0.7204933169717846,
+ -1.3331875908620232,
+ -1.4017633084134813,
+ -1.0956844424429735,
+ -0.8236039298979408,
+ 0.655608368459666,
+ 1.9548943636861864,
+ 2.615113434586179,
+ 3.206592222698797,
+ 1.8089114643438353,
+ -1.330736121270214,
+ -2.780510890713937,
+ -2.4098411154335158,
+ -1.9039732316023452,
+ -0.5758134803949371,
+ 1.0105988116071494,
+ 2.151971991403143,
+ 2.5848922611492355,
+ 3.1029255494188424,
+ 1.656051973457044,
+ -1.5476464920437853,
+ -3.006315861948418,
+ -2.384860528526726,
+ -1.6495265726850796,
+ -0.3536253285248319,
+ -0.01383078650627267,
+ 0.5548744158685237,
+ 1.7167933787549392,
+ 2.025679613740307,
+ 0.334292871828103,
+ -1.2215895788084812,
+ -2.257183495816133,
+ -2.297839377869618,
+ -1.3502602946696165,
+ 0.061219617259269825,
+ 0.5539552990302223,
+ 0.9404419785001421,
+ 2.1614558059478837,
+ 2.048480439135056,
+ -1.2043552175323202,
+ -2.814046232854184,
+ -2.374740850456599,
+ -2.110949194360515,
+ -0.936626782976258,
+ 0.6550207710846436,
+ 1.9544788370496764,
+ 2.6135592403630983,
+ 3.265191466418362,
+ 1.9806677547806175,
+ -1.4944465124291633,
+ -2.8345621741740286,
+ -2.4098659966766216,
+ -1.9040092761892198,
+ -0.7550961881349811,
+ -0.521525757824193,
+ 0.27610432962522746,
+ 1.7871553380941434,
+ 2.359992430570226,
+ 0.7039740461544008,
+ -0.8805696385391389,
+ -2.091861141304537,
+ -2.3817927203160907,
+ -1.6457390057832821,
+ -0.34915088966662655,
+ -0.010060796018402983,
+ 0.5839984321198423,
+ 1.62821198718629,
+ 1.9812476355999438,
+ 0.3309571919471887,
+ -1.2230615139910825,
+ -2.385879841976625,
+ -3.1802171223190427,
+ -2.2598449193320858,
+ 0.8068230593536068,
+ 1.925374444383141,
+ 2.1951916104242764,
+ 2.3355321021370936,
+ 1.4701488615452811,
+ -0.047551506347314296,
+ -1.5347401862936072,
+ -2.524506493579806,
+ -5.426059292867194,
+ -3.942317481265635,
+ 1.7125289141802509,
+ 2.6940108356070867,
+ 2.0945725390289676,
+ 2.3795366513686904,
+ 1.6403826000657136,
+ 0.17400609081722382,
+ -1.3574567866767204,
+ -2.4514745591672615,
+ -3.235259331309309,
+ -2.259068667940132,
+ 0.9466605331538293,
+ 2.1018528840214223,
+ 2.257315317565838,
+ 2.2936287704758627,
+ 1.5628175203433896,
+ 2.203553156383348,
+ 1.7260023125415922,
+ 0.4156727355324274,
+ -0.29522019773684355,
+ -1.391771365795314,
+ -2.316302836141566,
+ -2.246441743123069,
+ -1.183309135425515,
+ 0.3815394016736977,
+ 1.8366525905934266,
+ 2.551157199262391,
+ 1.8606416055063926,
+ 0.1021458346932203,
+ -0.8022190448631039,
+ -1.6870440118240424,
+ -2.396438668085026,
+ -2.312136955596546,
+ -2.682649862791294,
+ -1.3565920510817304,
+ 2.0499272175459597,
+ 3.2967018062946267,
+ 2.1347105267650788,
+ 0.9700826956764406,
+ -0.6170258728986809,
+ -1.9357911947739934,
+ -2.413508552918049,
+ -2.0872573437621442,
+ -2.6048837864817056,
+ -1.0428218425764813,
+ 2.157924491236288,
+ 2.2527176310055133,
+ 0.7479430877659264,
+ 0.20610761107338646,
+ -1.079611923419962,
+ -2.184548998876721,
+ -2.3525801102277444,
+ -1.481078653093607,
+ 0.021435698113700392,
+ 1.534263790333507,
+ 2.26475521211194,
+ 1.831758177837615,
+ 0.35416480882018403,
+ -0.3288475530698421,
+ -1.4073510322833864,
+ -2.3190916934668078,
+ -2.4653766329797615,
+ -2.879255337109696,
+ -1.421552156746627,
+ 1.7531944775433246,
+ 3.17477586131379,
+ 2.274754541404287,
+ 1.2865602562514091,
+ -0.25978754303528584,
+ -1.6956008080120029,
+ -2.392859162687426,
+ -2.2956961088703047,
+ -2.610364577576069,
+ -1.1836922302041883,
+ 1.8789274660307993,
+ 3.229853873500067,
+ 2.121182535416793,
+ 0.9510572754018002,
+ -0.5509595768688468,
+ -1.127258301553509,
+ -1.280017358218551,
+ -1.2255141358158248,
+ -1.0365150915621555,
+ 0.49941935974080864,
+ 1.8564157488298823,
+ 2.4188346070241513,
+ 1.9135382722646368,
+ 0.588856974916419,
+ -0.9487484475197429,
+ -2.7045757272673434,
+ -2.1794696773941986
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.9819186217313942,
+ -2.539483261404812,
+ -0.25476151804852004,
+ 0.8927012991928531,
+ 1.6599942157193597,
+ 1.6955983075530132,
+ 1.0019355356872224,
+ -0.03584601471842932,
+ -0.3727635876604179,
+ -0.6610868408959574,
+ -1.1556708586668898,
+ -1.1961854139919408,
+ 0.026349747616781695,
+ 1.1237887724823656,
+ 1.857936484224892,
+ 2.358181002477507,
+ 1.4431604078872846,
+ -0.6678084128401303,
+ -1.667300647508436,
+ -1.7104852179869097,
+ -1.6357502172471912,
+ -0.8559600737342158,
+ 0.3043963068130091,
+ 1.3261757242894685,
+ 1.9150723533370848,
+ 2.379821635538602,
+ 1.3867554708998309,
+ -0.8657623249819333,
+ -1.915579827793746,
+ -1.7651273953988018,
+ -1.5082133747964337,
+ -0.7435922609497602,
+ -0.6348556969174833,
+ 0.0019392249591117577,
+ 1.4659049697739241,
+ 1.934817416128352,
+ 0.6910166085555387,
+ -0.4755079323095207,
+ -1.4416847825083727,
+ -1.7732348921261998,
+ -1.3401756605459485,
+ -0.45259019296477265,
+ -0.2903105917709297,
+ 0.2969564779119134,
+ 1.7471764338785394,
+ 1.7044950238275869,
+ -0.5133355003360556,
+ -1.5627051197338468,
+ -1.6140605793052014,
+ -1.7232950158377303,
+ -1.0904680018053148,
+ 0.026182736856358725,
+ 1.1241667074950166,
+ 1.8579060812836996,
+ 2.403094366197882,
+ 1.565595551179342,
+ -0.7722821210413796,
+ -1.7005015594379147,
+ -1.7113786275632226,
+ -1.6364955869389113,
+ -1.0130955133327564,
+ -0.9768482255559214,
+ -0.176758700216989,
+ 1.436286005846109,
+ 2.099149180022669,
+ 0.9389211536951249,
+ -0.20115008112280514,
+ -1.2589757720281565,
+ -1.7632028217740077,
+ -1.505988297217235,
+ -0.7406856835280647,
+ -0.620649876475733,
+ 0.05556791349126927,
+ 1.3748929714507998,
+ 1.895256914737165,
+ 0.6891600596283439,
+ -0.4762871160838326,
+ -1.4959145909717302,
+ -2.0864911380885878,
+ -1.5954838752150564,
+ 0.1733031303987264,
+ 0.858289257400027,
+ 1.374588525068543,
+ 1.7745955457139606,
+ 1.4115653509412123,
+ 0.42351722325283075,
+ -0.740069981904478,
+ -1.668992837091985,
+ -3.7439566414765477,
+ -2.7707137215533897,
+ 0.5437556415701155,
+ 1.0154067311755166,
+ 1.2653675423529438,
+ 1.7646417344609262,
+ 1.5055555703887058,
+ 0.5801887807102681,
+ -0.588492722872127,
+ -1.573408152003074,
+ -2.166515793855116,
+ -1.6237170936060512,
+ 0.2839553216054681,
+ 1.0094915920560987,
+ 1.4469512165444118,
+ 1.7737991833648699,
+ 1.51086129603223,
+ 1.6580778109195446,
+ 1.040618537998999,
+ 0.6633913480491143,
+ 0.3994808859700521,
+ -0.6168208429540749,
+ -1.5188736579567041,
+ -1.7700188888256,
+ -1.2393973722897735,
+ -0.17941312782856156,
+ 0.9530929714521462,
+ 1.4378080393083716,
+ 1.1904896377593135,
+ 0.4482664458082321,
+ 0.022404500344789524,
+ -0.8729967403435193,
+ -1.646275494565946,
+ -1.877639887635368,
+ -2.2711792901117183,
+ -1.2798125393253401,
+ 1.3367755876943976,
+ 2.321640858795704,
+ 1.7317308021805913,
+ 1.1079259079558652,
+ 0.0043495132944854535,
+ -1.1042258322189116,
+ -1.7306827871642685,
+ -1.783933219632198,
+ -2.3379494295789423,
+ -1.1039134862416011,
+ 1.3246580006993198,
+ 1.4315675882772214,
+ 0.9192628012879278,
+ 0.8382293455724871,
+ -0.3596063356075518,
+ -1.362309518877227,
+ -1.781961357465685,
+ -1.4150334276224628,
+ -0.44214228791289073,
+ 0.6903730111864207,
+ 1.1586950967552276,
+ 1.0926910573254238,
+ 0.6535010088886183,
+ 0.38777609949937764,
+ -0.6303221567430057,
+ -1.5255828434268788,
+ -1.9207391697203084,
+ -2.328069019092256,
+ -1.2751052610938771,
+ 1.0713980394004585,
+ 2.146563876332863,
+ 1.7705169050964622,
+ 1.302582330739371,
+ 0.2716112587896875,
+ -0.8823021488634137,
+ -1.6492130892151684,
+ -1.8719245428436926,
+ -2.219659138161436,
+ -1.1451582026307052,
+ 1.2158656140680133,
+ 2.2826638409116455,
+ 1.7276577008614227,
+ 1.0976684460099433,
+ 0.09301516955452777,
+ -0.2104353345389796,
+ -0.5572702287923785,
+ -1.2332468265963283,
+ -1.3358518564047237,
+ -0.09196952009735407,
+ 1.030090073294105,
+ 1.7126854671513043,
+ 1.6400638419002935,
+ 0.8627702790400118,
+ -0.21294073415531778,
+ -1.0240689694859875,
+ -0.9265936000370836
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.8502286553086296,
+ -3.7691943951334883,
+ -0.8056301435708363,
+ 0.5454227886832301,
+ 1.6667220793787354,
+ 2.054343042040698,
+ 1.556119623736494,
+ 0.5301857026036063,
+ 0.29755573493003584,
+ -0.287465094736578,
+ -1.6498118599833678,
+ -1.9705855546802495,
+ -0.49641993979560867,
+ 0.8510919387201601,
+ 1.9294810834663485,
+ 2.544370642793492,
+ 1.687060325673032,
+ -0.36260497447524465,
+ -1.3642116555090502,
+ -1.7744284345581975,
+ -2.0361223510397304,
+ -1.4215645192663986,
+ -0.1768672284575855,
+ 1.1356153184638862,
+ 2.082512309461614,
+ 2.680427684138093,
+ 1.6906979349091165,
+ -0.6204457192392202,
+ -1.7267689035264875,
+ -1.9174598202996505,
+ -1.967130620987746,
+ -1.3590893216919886,
+ -1.404306844885322,
+ -0.46556159957163373,
+ 1.8157992931689566,
+ 2.6001138802323314,
+ 1.2581929080882994,
+ -0.02611601838866597,
+ -1.3041561800145927,
+ -2.009236763276712,
+ -1.8457587969089795,
+ -1.061326518280469,
+ -1.1166344224766824,
+ -0.1340501619800767,
+ 2.0666089489947326,
+ 2.067081148975006,
+ -0.12508335184510433,
+ -1.102517377815311,
+ -1.5890831440595883,
+ -2.0561130775041265,
+ -1.6390749321767943,
+ -0.4962950429987484,
+ 0.852286474664819,
+ 1.9307309555179262,
+ 2.594927804303034,
+ 1.8146976110988937,
+ -0.4569940017410972,
+ -1.3924929704095752,
+ -1.7764017723201084,
+ -2.0377543352868526,
+ -1.6202255376300494,
+ -1.7371729971998242,
+ -0.6280678217374018,
+ 1.6901515979760646,
+ 2.6835422607948276,
+ 1.4980748700567832,
+ 0.29704054416436604,
+ -1.0366325575747148,
+ -1.9157665396815526,
+ -1.9653751217037705,
+ -1.3563954962051978,
+ -1.3758139265821896,
+ -0.3706083175431384,
+ 1.6878149687964337,
+ 2.5495021524137864,
+ 1.2568767897557924,
+ -0.026607653357686827,
+ -1.3161298711222804,
+ -1.9607143131811628,
+ -1.6449453078332357,
+ -0.296700312784151,
+ 0.28390526072595157,
+ 1.2069982582913246,
+ 1.980351556839256,
+ 1.9034644853832616,
+ 0.9849058367539402,
+ -0.35102426329687875,
+ -1.584779911730881,
+ -3.755770336314728,
+ -2.8414733488933437,
+ -0.23740466522155873,
+ -0.0165593007660704,
+ 1.0485925729220464,
+ 1.9208859340474134,
+ 1.9689463192112258,
+ 1.1467324965989207,
+ -0.16306689919714468,
+ -1.4334277284488646,
+ -2.092593914615104,
+ -1.7085760009375395,
+ -0.16831477724423444,
+ 0.471707432670498,
+ 1.3157915186563338,
+ 2.0140611400216306,
+ 2.0464648607856977,
+ 2.3631566748866066,
+ 1.1269353664728725,
+ 1.1276606192576493,
+ 1.141028304849972,
+ -0.1971925655014552,
+ -1.4262592062176107,
+ -2.045589339206127,
+ -1.762356501451118,
+ -0.7232744408978085,
+ 0.5704929529630394,
+ 1.0465627327288498,
+ 1.079682046509406,
+ 0.913338994295376,
+ 0.7293195386130349,
+ -0.5185350085196965,
+ -1.6425621524558398,
+ -2.2300001141414616,
+ -2.794010322962238,
+ -1.7057594750240541,
+ 1.2456725511538407,
+ 2.386564186475652,
+ 2.0548066241948373,
+ 1.649682768484089,
+ 0.5322206655909998,
+ -0.8236344048423853,
+ -1.8163742281525692,
+ -2.211426909550627,
+ -3.0087932311919103,
+ -1.5791350604322751,
+ 1.1271895940549654,
+ 1.2853729220193455,
+ 1.4169930363736059,
+ 1.6950966265304488,
+ 0.11216579779530438,
+ -1.1886232277433026,
+ -1.9823434467612835,
+ -1.90194406026444,
+ -1.0043325027688421,
+ 0.24058061755805402,
+ 0.6665488787340348,
+ 0.8860052079819072,
+ 1.1576877821076008,
+ 1.1433980576230096,
+ -0.21411376562050652,
+ -1.438861519644312,
+ -2.196361938292502,
+ -2.754407624992381,
+ -1.6402489554599213,
+ 0.9050430546399435,
+ 2.0993115532015296,
+ 2.0227232602298995,
+ 1.815851308816703,
+ 0.8258147900121627,
+ -0.5320450895528868,
+ -1.6521445769622616,
+ -2.231174581555167,
+ -2.7403100308894173,
+ -1.5518358630153453,
+ 1.1207966600358144,
+ 2.3562340984942303,
+ 2.057177874398999,
+ 1.6429155430220819,
+ 0.6740381539579202,
+ 0.48523410680000684,
+ -0.15900464436678807,
+ -1.712898088300496,
+ -2.1018053524568194,
+ -0.6280598700934223,
+ 0.725495166057582,
+ 1.7717205218968533,
+ 2.037643438703516,
+ 1.4257087201084457,
+ 0.32847769176411673,
+ 0.006184677623231648,
+ -0.22107862640807027
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.4617757334420904,
+ -2.2986577064906313,
+ -1.7842305968619525,
+ -2.0250090413472845,
+ -1.3942419105938162,
+ -0.1453726716991721,
+ 1.15771844012578,
+ 2.087699504745109,
+ 2.7546419623749583,
+ 1.9227997610690808,
+ -0.8081236751540307,
+ -1.7920091885141236,
+ -1.9223614940142149,
+ -1.9514619356010245,
+ -1.3278536810862696,
+ -1.3387394828645665,
+ -0.3470000295660232,
+ 1.6798984438827782,
+ 2.5264173903270257,
+ 1.2294596816530974,
+ -0.05705391953141917,
+ -1.3239766817755356,
+ -2.0091489870600476,
+ -1.8259297662684344,
+ -1.0281821320290199,
+ -0.941425047019606,
+ -0.08058822543516829,
+ 1.6314367418064077,
+ 2.3232990210128697,
+ 0.9549355335318787,
+ -0.3788165762814502,
+ -1.6013306940564327,
+ -2.253758517966385,
+ -1.700642132611872,
+ 0.018767354728831814,
+ 0.7642428473284859,
+ 1.4706572863347627,
+ 2.0395596295274547,
+ 1.731918946388613,
+ 0.6577973548806617,
+ -0.6920190588740415,
+ -1.8254618539311687,
+ -2.7549050783110016,
+ -1.8201477266793897,
+ -0.3323256628990142,
+ -0.1390198485046562,
+ 1.8496949538562695,
+ 3.0079532826156044,
+ 1.4702108934862863,
+ 0.26326982215227634,
+ -1.061789603281173,
+ -1.9211583505584016,
+ -1.9488164618566308,
+ -1.3231797700052852,
+ -1.3566262855230904,
+ -0.4327316840438302,
+ 1.8058357639136182,
+ 2.572672257652127,
+ 1.2263038763408947,
+ -0.059639767935550925,
+ -1.3405971152281466,
+ -1.928314201171115,
+ -1.4890779346642027,
+ -0.3049097553637674,
+ 0.3297794608994099,
+ 1.2296330233499733,
+ 1.9824275178435158,
+ 1.8840028981791375,
+ 0.9524557774600734,
+ -0.3824260294604512,
+ -1.6045878471313166,
+ -2.213977726306543,
+ -1.5962939908660776,
+ -0.03781624009905626,
+ 0.7578945597739084,
+ 1.4742072624967775,
+ 2.0412707381325377,
+ 1.9318353772651309,
+ 2.24029111871354,
+ 1.1838063536103591,
+ -1.8561907720726187,
+ -2.8209438602052215,
+ -1.7838279240787394,
+ -0.7688770036835143,
+ 0.5812788722799006,
+ 1.6782383773269478,
+ 2.046355103495752,
+ 1.7324290899800183,
+ 3.156815570958498,
+ 2.1108118144956314,
+ -3.303594660454233,
+ -4.618159313937697,
+ -1.8692286921846268,
+ -0.9403075380777158,
+ 0.39734457210091045,
+ 1.5630766219152334,
+ 2.0490233021033237,
+ 1.8534071527092386,
+ 2.1202320102503607,
+ 1.079296351323596,
+ -1.8863118729047674,
+ -2.817156044660605,
+ -1.7132759152193304,
+ -0.642798567174021,
+ 0.6552472600798995,
+ 1.1453367556834952,
+ 1.1283258780756307,
+ 1.1202833408710342,
+ 2.3535111680907073,
+ 2.052163928547812,
+ 1.6346636313977556,
+ 0.5112516406018478,
+ -0.841300032356714,
+ -1.823160635107736,
+ -2.2049870774886204,
+ -2.6506617237292547,
+ -1.4201321084790761,
+ 1.3070571202742742,
+ 2.549913550692665,
+ 2.0342734224906405,
+ 1.4204644112612794,
+ 0.3241592057169528,
+ 0.04097132687661234,
+ -0.45419551680473425,
+ -1.473541672789487,
+ -1.7482258950299787,
+ -0.30588375066519913,
+ 1.0219728015220697,
+ 1.914665287582321,
+ 1.9634319123698034,
+ 1.1676903863657502,
+ -0.028975988205903195,
+ -0.43987010374400665,
+ -0.783600858895137,
+ -1.8497384711840517,
+ -1.7547693992290214,
+ 1.0232107445071448,
+ 2.397634695231516,
+ 2.021839999791372,
+ 1.7954884781118525,
+ 0.794701230029615,
+ -0.560186141775668,
+ -1.6652335617932785,
+ -2.224646723935925,
+ -2.778814636971805,
+ -1.6849868900446077,
+ 1.2738028385208506,
+ 2.4146635466893396,
+ 2.0512745694316323,
+ 1.6189788184577618,
+ 0.6398683431465749,
+ 0.44026068099209037,
+ -0.2372512099664237,
+ -1.5202206554183337,
+ -2.00625658122264,
+ -0.5965838916569483,
+ 0.752082988954004,
+ 1.7819502179993953,
+ 2.0269472558935653,
+ 1.3988223546950376,
+ 0.2942334286561969,
+ 0.004860947360628755,
+ -0.49924981877876795,
+ -1.3846210121609672,
+ -1.6834794201324734,
+ -0.2789831069692994,
+ 1.0434216794270743,
+ 2.03205111966493,
+ 2.708037354426277,
+ 1.9236338504997303,
+ -0.6891627085409661,
+ -1.6419475629665745,
+ -1.869651390214252,
+ -1.9873051726937205,
+ -1.2491789161191518,
+ 0.04321961186290951,
+ 1.3084684374382691,
+ 2.1496018554883065,
+ 4.619339590460654,
+ 3.3558733463782713
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.5485042026235061,
+ -1.0213281165417722,
+ -1.2650525773400523,
+ -1.760970856829068,
+ -1.500094944537464,
+ -0.5753524646630546,
+ 0.5906329393793932,
+ 1.5721059347079687,
+ 2.1638920083005866,
+ 1.6207546238444304,
+ -0.28672560863370244,
+ -1.0118273392274235,
+ -1.4457692035996992,
+ -1.7695221172552713,
+ -1.5048824043981042,
+ -1.6506780026449355,
+ -0.6567700684425926,
+ 1.4408387364931012,
+ 2.3493211166336354,
+ 1.390679673802325,
+ 0.4074071520306428,
+ -0.7552123523967076,
+ -1.5872221465419996,
+ -1.7312753664581124,
+ -1.2963571942149528,
+ -1.359318789949274,
+ -0.4418911170834145,
+ 1.4590451085513947,
+ 2.2656443745152437,
+ 1.200286653842315,
+ 0.13153585335200277,
+ -0.9936781922542574,
+ -1.5118160337235762,
+ -1.2731379790343615,
+ -0.389321615148977,
+ 0.0394949263831449,
+ 0.9103612345428255,
+ 1.6570623798705688,
+ 1.6927102476409,
+ 0.9801673162716361,
+ -0.1490740205732343,
+ -1.2414708756627753,
+ -1.9816346293253193,
+ -1.4437433518457583,
+ -0.7294437289382346,
+ -0.573046925771506,
+ 1.5253937964147293,
+ 2.680878001570699,
+ 1.5443043250214925,
+ 0.6711972910400124,
+ -0.4944874926792328,
+ -1.44482304666175,
+ -1.7676463974829677,
+ -1.5013775818070079,
+ -1.6764233789562961,
+ -0.7546137087932853,
+ 1.5638264724733089,
+ 2.393070110250177,
+ 1.3885651706536415,
+ 0.40567724206464056,
+ -0.7244117953666123,
+ -1.174179055407175,
+ -1.0656512492834584,
+ -0.62338219041971,
+ -0.33083566126375336,
+ 0.6617865330826339,
+ 1.538815687987453,
+ 1.7562407194123821,
+ 1.197902001256948,
+ 0.1282224172813464,
+ -0.9969159180671411,
+ -1.485957007090046,
+ -1.2098104874303894,
+ -0.40662038059813715,
+ 0.04563083150587972,
+ 0.9135287441367551,
+ 1.6585569965129554,
+ 1.8572311736641556,
+ 2.2505567390959027,
+ 1.3248731908863718,
+ -1.4366894883796912,
+ -2.3471067832118617,
+ -1.7130912636161209,
+ -1.0636633036212033,
+ 0.04656262608091594,
+ 1.139302237189756,
+ 1.7349458931732806,
+ 1.7556391116792769,
+ 3.39247777053655,
+ 2.3419415226901115,
+ -2.62172852817525,
+ -3.7352102776235507,
+ -1.746942960224392,
+ -1.1892072905679398,
+ -0.11693982513468675,
+ 1.0100157275972554,
+ 1.695233512125557,
+ 1.819865667515324,
+ 2.1827350078802152,
+ 1.2544359993929732,
+ -1.4896770359894789,
+ -2.3858773692584294,
+ -1.6802080000819755,
+ -0.9690986911993023,
+ 0.07459105536894395,
+ 0.40082049914853624,
+ 0.6624482097101507,
+ 1.03538128245388,
+ 1.6512287537798394,
+ 1.7053777990438883,
+ 1.641172914881105,
+ 0.8696210379577046,
+ -0.2885133168738517,
+ -1.3149181949270055,
+ -1.9122667031858889,
+ -2.379144667088915,
+ -1.3902770752670464,
+ 0.8547345793526929,
+ 1.9019567834962123,
+ 1.762480618387429,
+ 1.5159419972746204,
+ 0.7592315719577053,
+ 0.6556081678784634,
+ 0.012281226561675527,
+ -1.470496374841195,
+ -1.9470454868120783,
+ -0.7054067733187694,
+ 0.45988851519276425,
+ 1.4315629394914353,
+ 1.7730965055688268,
+ 1.3500154196653809,
+ 0.4691928267154713,
+ 0.31416341517175905,
+ -0.2826168003475671,
+ -1.748673953658311,
+ -1.7070254601403094,
+ 0.5127282799771827,
+ 1.5635192980507504,
+ 1.6119114501297573,
+ 1.7184384818117837,
+ 1.085014079917411,
+ -0.02982445445185138,
+ -1.1244460625790973,
+ -1.85468888285677,
+ -2.3982441837036195,
+ -1.5615598092956502,
+ 0.7733767422954377,
+ 1.70021075333336,
+ 1.7084289896906217,
+ 1.6312821214443542,
+ 1.0073385308793419,
+ 0.970053402202338,
+ 0.17332701829342775,
+ -1.4324052275010963,
+ -2.0919580567273557,
+ -0.933612730817614,
+ 0.20436491944807847,
+ 1.2587103416076728,
+ 1.7595600386374617,
+ 1.5005555963344182,
+ 0.7352652034298233,
+ 0.6144098070575288,
+ -0.05848556775653052,
+ -1.3706865114895708,
+ -1.887870156695563,
+ -0.6841561471545142,
+ 0.4787613158932521,
+ 1.4950062460780875,
+ 2.084350979682708,
+ 1.5928122120025945,
+ -0.1763598801394682,
+ -0.8611038976643522,
+ -1.3737687831636025,
+ -1.7705610086611472,
+ -1.4060415088766094,
+ -0.418946350012121,
+ 0.7417340091144852,
+ 1.6671588074343462,
+ 3.7384788430959306,
+ 2.766194437850548
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.478857975800511,
+ 1.7663288574332496,
+ -0.29208173117670405,
+ -1.4766529149757448,
+ -2.029600372114659,
+ -1.6868723639256102,
+ -0.6211371728581141,
+ 0.6653319578130641,
+ 1.1932426566514232,
+ 1.2213548540558,
+ 0.8756973513477632,
+ 0.6177666777553498,
+ -0.6061897516096741,
+ -1.6783510409803715,
+ -2.2013455378408877,
+ -2.6893496396459877,
+ -1.5031730769353573,
+ 1.154499216027114,
+ 2.3786592936786985,
+ 2.028751492706614,
+ 1.567737999654934,
+ 0.4294753769204854,
+ -0.9018213735473025,
+ -1.8365381474005524,
+ -2.1661909646126265,
+ -2.5903084123472047,
+ -1.368049054751092,
+ 1.3316705202921504,
+ 2.5578784074045533,
+ 1.9987761116980336,
+ 1.3469713329205304,
+ 0.2368195818486694,
+ -0.0656107345503344,
+ -0.5155659576297408,
+ -1.4147303293431335,
+ -1.6439142338680293,
+ -0.22534634557189154,
+ 1.0768058884032468,
+ 1.920065652019997,
+ 1.916878761442695,
+ 1.0895459785889363,
+ -0.11284895848576841,
+ -0.5508334631336048,
+ -0.8375230440315302,
+ -1.7933192385446697,
+ -1.693574003973974,
+ 1.0561098952606691,
+ 2.4227602206660124,
+ 2.008038723699503,
+ 1.7493207104208792,
+ 0.7358971350682508,
+ -0.6056656110818954,
+ -1.6779186114566906,
+ -2.1999029637252745,
+ -2.738268792879315,
+ -1.6477028370066418,
+ 1.293769207393398,
+ 2.424800505171097,
+ 2.028662473400435,
+ 1.5676782330558672,
+ 0.5767109654756681,
+ 0.36406662623975256,
+ -0.2785123527173682,
+ -1.4837981179642918,
+ -1.9343715945735116,
+ -0.5383569680940783,
+ 0.7937082608203208,
+ 1.7889654553823566,
+ 1.9961614245766057,
+ 1.3437231902449767,
+ 0.23301808530800708,
+ -0.06736046797110216,
+ -0.536011779557095,
+ -1.343634773438993,
+ -1.6074949108164032,
+ -0.2224750014945296,
+ 1.078076929185678,
+ 2.032996579752283,
+ 2.6984106590903023,
+ 1.903529665816666,
+ -0.728593849401369,
+ -1.683723259139392,
+ -1.8707307170139473,
+ -1.9517497186568238,
+ -1.1921675403564835,
+ 0.09655004577328843,
+ 1.3352070669403333,
+ 2.1404705369282633,
+ 4.581264573995594,
+ 3.3222828722421007,
+ -1.5247403725248085,
+ -2.3788195176469706,
+ -1.790696286235039,
+ -1.993886306780031,
+ -1.3387981078811746,
+ -0.09004188354413177,
+ 1.1891415924146014,
+ 2.0843952810315693,
+ 2.739687161810416,
+ 1.899318701895233,
+ -0.8449106268401155,
+ -1.829088059319893,
+ -1.9195366700273822,
+ -1.9128955334935756,
+ -1.2660383422394308,
+ -1.2606497724257035,
+ -0.2996759783018378,
+ 1.65644626002653,
+ 2.4695865734460374,
+ 1.2175386849454495,
+ 1.9654810938427436,
+ 1.8694979357297867,
+ 0.9468029895378006,
+ -0.3768518030763346,
+ -1.589532301412349,
+ -2.1938180211630187,
+ -1.5824905064692087,
+ -0.03954672547284022,
+ 0.7485061154787461,
+ 1.4603583459068994,
+ 2.024228020734334,
+ 1.9172664638529167,
+ 2.213050738688103,
+ 1.1028909843562402,
+ -1.740368592453387,
+ -2.7776297364766664,
+ -1.7703665920538834,
+ -0.7648398831448144,
+ 0.5741206820610412,
+ 1.6630118656581,
+ 2.029663301346998,
+ 1.7198025596583375,
+ 2.1325078400674102,
+ 0.8329538946871964,
+ -1.8422587018244674,
+ -1.9171635876828887,
+ -0.5816596627556927,
+ -0.08798949923708997,
+ 0.9591503154676099,
+ 1.86235484866918,
+ 1.9666880794057677,
+ 1.2018993433180785,
+ -0.07457552513013578,
+ -1.340907623879353,
+ -1.9620801618052304,
+ -1.567729599441617,
+ -0.2484557072786022,
+ 0.3536231649954728,
+ 1.2303529433637275,
+ 1.96724489120382,
+ 2.054389177978153,
+ 2.3887824650092973,
+ 1.1638595605569344,
+ -1.4973285465117399,
+ -2.6859278046421866,
+ -1.8957555924739171,
+ -1.034976311355813,
+ 0.27506766559680834,
+ 1.4671612223126567,
+ 2.020538039068287,
+ 1.9026886170330055,
+ 2.152222285966902,
+ 0.9588073963716072,
+ -1.596352883666192,
+ -2.720307068593991,
+ -1.75829402130595,
+ -0.7484224569492197,
+ 0.5236629516204941,
+ 1.0218773045576017,
+ 1.1210143136855737,
+ 0.9867979164698276,
+ 0.798423480625657,
+ -0.47562261872527734,
+ -1.5983888118277387,
+ -2.036839305690744,
+ -1.5760969168000678,
+ -0.44075687958249693,
+ 0.8556280834268017,
+ 2.387570082844738,
+ 1.9114855630851135
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.0120191295921983,
+ 4.027808467865949,
+ 1.0188472397296753,
+ -0.2948395645904582,
+ -1.4865909759168165,
+ -2.0244904414295894,
+ -1.6883831570163739,
+ -0.7820962604731552,
+ -0.632309704346234,
+ 0.050885001959166766,
+ 1.738818014646099,
+ 2.1778945420090685,
+ 0.7283313242220284,
+ -0.6076930564224936,
+ -1.7559142785642465,
+ -2.3658553588778353,
+ -1.6347387751388422,
+ 0.15525695456484265,
+ 1.0475580047663728,
+ 1.6137946886408474,
+ 2.031104748316424,
+ 1.5749314522647002,
+ 0.4212596085050636,
+ -0.9058766743115698,
+ -1.9446529216834385,
+ -2.549647791069159,
+ -1.6709007472384023,
+ 0.4174996553222038,
+ 1.4327929481686008,
+ 1.7895194329522146,
+ 2.0018264674112944,
+ 1.5467048725469397,
+ 1.6713562404837767,
+ 0.6705693266368618,
+ -1.807402341109635,
+ -2.678168586765548,
+ -1.4304392533985415,
+ -0.2231873566770925,
+ 1.0849105634347451,
+ 1.9170517524546966,
+ 1.9194298368669687,
+ 1.2780743243773116,
+ 1.4465970627517655,
+ 0.3556068775885549,
+ -2.013845815893908,
+ -2.037929459527685,
+ -0.10160849220006518,
+ 0.7285788625434553,
+ 1.4001272557769633,
+ 2.0118477815886244,
+ 1.759131163942233,
+ 0.7280587029962051,
+ -0.6092044837125768,
+ -1.7577247284682351,
+ -2.413924139026838,
+ -1.7511513543280015,
+ 0.2337048102587379,
+ 1.0700211846374894,
+ 1.6161385937615744,
+ 2.033041851208688,
+ 1.7744514812255803,
+ 1.9625056947802408,
+ 0.8062726885071019,
+ -1.6429528633918906,
+ -2.708026830490865,
+ -1.6394653463832272,
+ -0.5374608030129759,
+ 0.8003825765967437,
+ 1.7881373486429648,
+ 2.000520091104211,
+ 1.5444239477750241,
+ 1.638170697005432,
+ 0.5634273734248052,
+ -1.6732589932846806,
+ -2.6270745002184395,
+ -1.429564722875029,
+ -0.22290849875197072,
+ 1.072391136713128,
+ 1.6755017821655247,
+ 1.4906491305000278,
+ 0.5217044021764253,
+ 0.0623717418558321,
+ -0.9819826584760153,
+ -1.8747680223587269,
+ -1.9632662036377795,
+ -1.1841186355635251,
+ 0.09897676812323068,
+ 1.36381882653859,
+ 3.3480322984231776,
+ 2.5668919612485768,
+ 0.6395715177432048,
+ 0.5806128881076374,
+ -0.8140782902654272,
+ -1.7947107509560063,
+ -2.005893188394666,
+ -1.330923545236435,
+ -0.08819903827387159,
+ 1.1985803773952948,
+ 1.8212725427125322,
+ 1.5666723619118488,
+ 0.397752339785033,
+ -0.12478897805461535,
+ -1.0987546237918078,
+ -1.923680765409256,
+ -2.1144604337226363,
+ -2.4891555764290825,
+ -1.2581355483418328,
+ 1.4352444635608872,
+ 2.6469538344498553,
+ 1.9505719852753045,
+ 1.2181742312386399,
+ 1.9710923833246587,
+ 1.8547521289383881,
+ 0.9417306343255215,
+ -0.2977763943352313,
+ -0.7166010314758223,
+ -0.8998441367827852,
+ -1.0676288687715496,
+ -1.0365189257897351,
+ 0.2669794605544524,
+ 1.459370436384738,
+ 2.177273433527577,
+ 2.772556942721709,
+ 1.7512008940944694,
+ -1.0583343404700156,
+ -2.1589539360010623,
+ -2.005343751504482,
+ -1.7648128438787032,
+ -0.7629786459019328,
+ 0.5789359331122212,
+ 1.663037128525472,
+ 2.2019480516662213,
+ 3.0448147306921682,
+ 1.6655615811386186,
+ -0.8945916322025502,
+ -1.063445135353008,
+ -1.5336442064894784,
+ -1.9780091454866973,
+ -0.3584912800582198,
+ 0.9622907562442448,
+ 1.8735952375423257,
+ 1.9591783105224958,
+ 1.2018422203989507,
+ 0.03259630086726011,
+ -0.32316600348583313,
+ -0.6749541336891632,
+ -1.3064782696389308,
+ -1.431639120149516,
+ -0.03772830944311873,
+ 1.23261899808198,
+ 2.1052667711024236,
+ 2.6844120049339963,
+ 1.6595751368736937,
+ -0.7140060633317412,
+ -1.8418713632865173,
+ -1.9379371077769492,
+ -1.8970348003053086,
+ -1.0386334680986042,
+ 0.2813022587196194,
+ 1.4715409375289776,
+ 2.182095754260979,
+ 2.723583606831314,
+ 1.603686696991586,
+ -0.945055188355145,
+ -2.136713419865225,
+ -2.010986515273689,
+ -1.7607061766958265,
+ -0.9183035977549641,
+ -0.8131897783298536,
+ -0.07691928727063865,
+ 1.7870009998352252,
+ 2.29000984214609,
+ 0.8527570357069221,
+ -0.4784591756372675,
+ -1.6086928831374234,
+ -2.030927560874041,
+ -1.5771553635045172,
+ -0.5891369485592444,
+ -0.5704451932305019,
+ -0.19017497959049323
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.2512951167852164,
+ 4.559767220349782,
+ 1.894797049461943,
+ 1.0181566359925376,
+ -0.3005604851824174,
+ -1.490083825294082,
+ -2.0310467979950797,
+ -1.897120701148722,
+ -2.19134688023096,
+ -1.145509736606412,
+ 1.854911058635864,
+ 2.803985632913672,
+ 1.7532540707916564,
+ 0.7287055725502027,
+ -0.5516343391942035,
+ -1.0208578603988028,
+ -1.06167975590898,
+ -0.9143447993396299,
+ -0.7398858229126826,
+ 0.5013900129311462,
+ 1.6200209268352896,
+ 2.045004042189888,
+ 1.5671451057867385,
+ 0.4186583909214242,
+ -0.883625213681274,
+ -1.4091784876333049,
+ -1.254115239753232,
+ -0.6798488091476727,
+ -0.3140894685710417,
+ 0.8077235440518237,
+ 1.7955117124379096,
+ 2.1939401027207492,
+ 2.693360376819305,
+ 1.5715150797191668,
+ -1.4218681655140057,
+ -2.5608376435887816,
+ -2.022671824617555,
+ -1.4313365797894846,
+ -0.22101214755531456,
+ 1.090390233358209,
+ 1.9242763500393694,
+ 2.1224843078624507,
+ 2.8268893461340188,
+ 1.39941642723381,
+ -1.366540416277467,
+ -1.5044868315328035,
+ -1.2194372495658874,
+ -1.2856016651408282,
+ 0.18626588217053613,
+ 1.4075478057543709,
+ 2.0271206797056998,
+ 1.752299590643702,
+ 0.7258956866721702,
+ -0.5559261445775888,
+ -1.047337739213287,
+ -1.0996695546535828,
+ -0.9307607080427597,
+ -0.7508697415544829,
+ 0.5051621341417122,
+ 1.6231243160987283,
+ 2.210931429336671,
+ 2.7199380445217116,
+ 1.5469946659966334,
+ -1.0940331270655126,
+ -2.3163242553151893,
+ -2.037204930171859,
+ -1.6413443093378224,
+ -0.5367703099051967,
+ 0.808174019648178,
+ 1.7967137360691303,
+ 2.1941668832491876,
+ 2.6429446352026083,
+ 1.4235930238125967,
+ -1.282318686964381,
+ -2.5170486903498195,
+ -2.0241773824471587,
+ -1.4321735387933046,
+ -0.354007587408156,
+ -0.07353608894433548,
+ 0.4334396310864196,
+ 1.5512375343010927,
+ 1.7874991236262139,
+ 0.3333207981373883,
+ -0.9889270377192025,
+ -1.890218861779799,
+ -1.958422942987172,
+ -1.1841442360698908,
+ -0.0036954137532840626,
+ 0.666589460326484,
+ 0.7018218338106991,
+ 2.5353872005920044,
+ 3.29967868392346,
+ 0.5169753604731827,
+ -0.8207901725704441,
+ -1.8101029601310248,
+ -2.0019869515551245,
+ -1.331840028838914,
+ -0.20719902354442224,
+ 0.11421370618083761,
+ 0.5571821809525594,
+ 1.4730856615479988,
+ 1.6391244467093384,
+ 0.19871578292969852,
+ -1.1048100096621392,
+ -2.053788621564502,
+ -2.648250942143695,
+ -1.6772111608761464,
+ 0.5942623812422726,
+ 1.6832815320405357,
+ 1.8899581081491506,
+ 1.9549417670320375,
+ 1.2228901605613522,
+ 1.9658226991972394,
+ 1.8586196026901864,
+ 1.1268024709260518,
+ 1.074710478393818,
+ 0.17322986382473235,
+ -1.6387301986062337,
+ -2.3805523847211596,
+ -1.0456052918888863,
+ 0.2631596318052555,
+ 1.499096994574888,
+ 2.138150649541652,
+ 1.6464117627860722,
+ 0.08248307998015283,
+ -0.6070108820454283,
+ -1.3762060002116685,
+ -2.007010656545391,
+ -1.775544817128545,
+ -0.7585235277918687,
+ 0.5778890765745098,
+ 1.7360228985532036,
+ 2.6469838492721496,
+ 1.7826337631250584,
+ 0.44213930349001157,
+ 0.2518451261168402,
+ -1.8273949505608846,
+ -3.021323168606179,
+ -1.5259906699892718,
+ -0.35587422140118297,
+ 0.9720965347080747,
+ 1.874027984171455,
+ 1.9642359250765744,
+ 1.3967089617979667,
+ 1.460702034905767,
+ 0.5119679593563082,
+ -1.8046044950983615,
+ -2.6054925953558943,
+ -1.2938465955325182,
+ -0.036140326449855556,
+ 1.2483059148952969,
+ 1.8232506251456624,
+ 1.4411933949630842,
+ 0.3799345244269368,
+ -0.20053484650680362,
+ -1.1444197249679118,
+ -1.9438240824685322,
+ -1.9088298469840244,
+ -1.0299143694246577,
+ 0.2859937821184813,
+ 1.521303785500304,
+ 2.122194354881648,
+ 1.559078334908002,
+ 0.11606376734964749,
+ -0.6295609492528531,
+ -1.3971895322231047,
+ -2.0170276238586298,
+ -1.969100096816308,
+ -2.3037587664143135,
+ -1.2457485186183697,
+ 1.81918024113671,
+ 2.7989697069646713,
+ 1.8178515847664178,
+ 0.8516394588306796,
+ -0.48525359999080014,
+ -1.6113561973608703,
+ -2.037178555168343,
+ -1.7847131212069496,
+ -3.292473367281117,
+ -2.2169534272676983
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.057232504432223,
+ 3.0820495349375765,
+ 1.9372647239396588,
+ 1.8853967584114741,
+ 1.0209986165317055,
+ -0.297157492574912,
+ -1.4788037521178543,
+ -2.1782371911309837,
+ -2.7878238149621275,
+ -1.8396882127135405,
+ 1.15321140507635,
+ 2.1949871911862906,
+ 2.007493868777163,
+ 1.7470649043677606,
+ 0.8989526852429874,
+ 0.7777435541902648,
+ -0.018945530131497818,
+ -1.5833652811350631,
+ -2.205489380563091,
+ -0.8349319997224761,
+ 0.49341837964363167,
+ 1.6143313376620108,
+ 2.0247339002014715,
+ 1.5618670203807294,
+ 0.5697714156986293,
+ 0.3556473803431769,
+ -0.28317360729406466,
+ -1.4801078205799552,
+ -1.9268220950105324,
+ -0.5327669504706799,
+ 0.7967921130153435,
+ 1.8751882826454291,
+ 2.5300560945255643,
+ 1.7816210468441909,
+ -0.40827206840848046,
+ -1.3137863103223864,
+ -1.724315161653172,
+ -2.0112402899831117,
+ -1.432731149482862,
+ -0.21924365501815726,
+ 1.0804562143865757,
+ 2.032916006967956,
+ 2.9638803227685666,
+ 1.8286467252463903,
+ -0.1149186203701917,
+ -0.306173415396384,
+ -1.8022495467489763,
+ -2.737829997237982,
+ -1.1127858696815272,
+ 0.18095319970779353,
+ 1.4017484122931705,
+ 2.0062781732141635,
+ 1.7441927798427763,
+ 0.894066459989867,
+ 0.7845863485734484,
+ 0.03843817400259214,
+ -1.6876424448969252,
+ -2.2451598811190054,
+ -0.8313920711501208,
+ 0.4963237687588321,
+ 1.6734050306839137,
+ 2.279678392994385,
+ 1.6072910089535528,
+ -0.061229469442651174,
+ -0.9020595686949356,
+ -1.5374595245991682,
+ -2.024100060737991,
+ -1.640536492989796,
+ -0.5306789044405053,
+ 0.7999816894174208,
+ 1.8778311162038321,
+ 2.484603365796816,
+ 1.6580568685328942,
+ -0.32484910139634293,
+ -1.2966405836113355,
+ -1.7275429450955109,
+ -2.012825752003115,
+ -1.6278478978155189,
+ -1.7945218413888575,
+ -0.8175803861343286,
+ 1.8991954725823261,
+ 2.7285945820086397,
+ 1.504911291169365,
+ 0.335285219250301,
+ -0.9833332292181379,
+ -1.870930337327271,
+ -1.9482278495127723,
+ -1.3730046429097533,
+ -2.315559235090235,
+ -1.4774489778828548,
+ 3.317753448503731,
+ 4.57028403049662,
+ 1.6233567130259485,
+ 0.5175683731555616,
+ -0.8155007475260129,
+ -1.791783469599863,
+ -1.9912056355414707,
+ -1.5251162224290695,
+ -1.6474924571372964,
+ -0.7005745455600189,
+ 1.9014278135315454,
+ 2.6845413190609055,
+ 1.4117942721711083,
+ 0.20337404418788785,
+ -1.0871698912094343,
+ -1.6397735805679792,
+ -1.3576246205323772,
+ -0.5109174427183204,
+ -0.025192718817353292,
+ 0.9956528402553241,
+ 1.876466256535221,
+ 1.952221232375277,
+ 1.210173463817332,
+ 1.958087221680268,
+ 2.057986603291175,
+ 2.3965197049634392,
+ 1.1725901811304018,
+ -1.4885233560508966,
+ -2.678045441880534,
+ -1.9003262282693745,
+ -1.0521102841961119,
+ 0.15806414336419072,
+ 0.5591525957326063,
+ 0.8152319284204984,
+ 1.1897792310489892,
+ 1.2165341902141384,
+ -0.13853428095582054,
+ -1.3646510668793423,
+ -2.0075684518047847,
+ -1.7647962287343628,
+ -0.764847839680065,
+ 0.5032801061001247,
+ 1.0807405086804696,
+ 1.1137926683937107,
+ 1.5872181980449311,
+ 1.4593563195165014,
+ -1.3159341460743683,
+ -2.734742753804177,
+ -2.023397994100017,
+ -1.5203866133969457,
+ -0.36039049183465477,
+ 0.9621496500611026,
+ 1.8622400820893414,
+ 2.148239985285646,
+ 2.6048175274865444,
+ 1.4760662401953082,
+ -1.508081771229092,
+ -2.6331722516547904,
+ -1.982478384708703,
+ -1.2921380309047894,
+ -0.16134974253400072,
+ 0.15581163184153748,
+ 0.5866451027181208,
+ 1.3090500229773097,
+ 1.533355530825419,
+ 0.1558161748178563,
+ -1.1334324831819842,
+ -1.9393429248406364,
+ -1.8901844197479574,
+ -1.0286561303941653,
+ 0.18790656392488472,
+ 0.5833343541518301,
+ 0.8267483160712205,
+ 1.12865165772898,
+ 1.1590252256237636,
+ -0.16564293840627178,
+ -1.3844083811552355,
+ -2.154083545515645,
+ -2.782019743716551,
+ -1.8680847872676138,
+ 1.0491143922888955,
+ 2.0747599154993,
+ 1.9836242348952235,
+ 1.8094651570403222,
+ 0.855014021474312,
+ -0.4800659669570194,
+ -1.5998853334129328,
+ -2.1961605590836766,
+ -4.5692286147279,
+ -3.2710528845700373
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.015505967233319515,
+ 0.2861171008957659,
+ 1.145437291393216,
+ 1.9358231292363148,
+ 1.8952209598359768,
+ 1.0166932836408622,
+ -0.2931389235951366,
+ -1.5199118602656765,
+ -2.180565209103135,
+ -1.7377507612851497,
+ -0.040855482742867016,
+ 0.6445671366359251,
+ 1.3959584576973805,
+ 2.007278682700096,
+ 1.9539887104437734,
+ 2.230932045935295,
+ 1.02581719857616,
+ -1.56676937503846,
+ -2.7129530057314444,
+ -1.8039371697970328,
+ -0.8389941108074768,
+ 0.4911756187392164,
+ 1.607926513969265,
+ 2.025927879415793,
+ 1.7693230654154346,
+ 1.95698481265589,
+ 0.8039764313548167,
+ -1.6384331543137345,
+ -2.700522993342671,
+ -1.6360070980429255,
+ -0.5391000222171944,
+ 0.7509890226116527,
+ 1.2784543581923131,
+ 1.2234547903179585,
+ 0.7751404858766618,
+ 0.49155757577057346,
+ -0.685345653983578,
+ -1.7218399102575148,
+ -2.0204948271783265,
+ -1.4267898941040624,
+ -0.22357140094530337,
+ 1.0686471173985124,
+ 1.8240377405171513,
+ 1.4680691559016548,
+ 1.1788233288612306,
+ 1.0169141632818934,
+ -1.6057159779060775,
+ -3.002812308879626,
+ -1.9251171933532645,
+ -1.116338463361705,
+ 0.17655717737676216,
+ 1.3950042602824784,
+ 2.0055802313184565,
+ 1.9506162507239122,
+ 2.2679577998500977,
+ 1.1533083983225136,
+ -1.713498456294389,
+ -2.764063363980735,
+ -1.8021532596481058,
+ -0.8375365123471455,
+ 0.41858857611983336,
+ 0.8605408119033966,
+ 0.9752468177130648,
+ 0.9918654993971354,
+ 0.8922560602799867,
+ -0.37873120045558,
+ -1.5331724810691034,
+ -2.0315176980085234,
+ -1.6331912643413324,
+ -0.5353083351211567,
+ 0.7548952996830104,
+ 1.257502938893604,
+ 1.1773018813890486,
+ 0.7668505880117057,
+ 0.47483701734751355,
+ -0.6888964257569299,
+ -1.7234883798045808,
+ -2.1933674431733006,
+ -2.732800813506687,
+ -1.7092554740412196,
+ 1.427453043500956,
+ 2.489428258199279,
+ 2.021709141223554,
+ 1.5073645068418042,
+ 0.34157628975774,
+ -0.9784635890905191,
+ -1.8690546749269656,
+ -2.1431485656590556,
+ -4.283265888975503,
+ -3.00782841685089,
+ 2.6671444952974586,
+ 3.8658087002369412,
+ 2.0243341531720813,
+ 1.6252330130049462,
+ 0.5243527460344388,
+ -0.8114005617714467,
+ -1.7894259258426173,
+ -2.1786820316523294,
+ -2.689552512591924,
+ -1.6493222321360457,
+ 1.5086332310367065,
+ 2.568047836623059,
+ 2.0099256064363815,
+ 1.4163116295439704,
+ 0.34182644235049764,
+ 0.06874725620328005,
+ -0.45542042417242934,
+ -1.3896368506352734,
+ -1.7127800317877937,
+ -0.32205481068779584,
+ 0.9905810986098089,
+ 1.8815159644301698,
+ 1.9431785167074749,
+ 1.213958012564998,
+ 2.097677945884249,
+ 2.6787937846114063,
+ 1.6612445045438655,
+ -0.6983457603027245,
+ -1.8208170187529393,
+ -1.9318792427594251,
+ -1.9066874740407491,
+ -1.2431388685073832,
+ -1.2512972457756366,
+ -0.3620438182434885,
+ 1.7783333552480403,
+ 2.505611879104215,
+ 1.151506865562705,
+ -0.1385449048466427,
+ -1.3739116470709913,
+ -2.0053586900220823,
+ -1.7704055151707918,
+ -0.9388946607125026,
+ -0.9415877753945144,
+ -0.03063797527195889,
+ 2.04222483570914,
+ 2.0314765568117217,
+ -0.24093112267530656,
+ -1.2724664991446313,
+ -1.6467522962233345,
+ -2.023485643711455,
+ -1.529887647104236,
+ -0.358603148060979,
+ 0.9590968055663274,
+ 1.9704762665583442,
+ 2.6207632637299305,
+ 1.7990080968827868,
+ -0.5640301178913477,
+ -1.5270375717246891,
+ -1.8135499069306742,
+ -1.9844499008432706,
+ -1.4932549230227254,
+ -1.5689095453750714,
+ -0.5154492365711174,
+ 1.6691209921196948,
+ 2.5968995752395125,
+ 1.3813271279985722,
+ 0.1601722283321463,
+ -1.1347349672683056,
+ -1.9316223761296698,
+ -1.8927122162386254,
+ -1.2185536372224177,
+ -1.1976244720849003,
+ -0.2572173201005758,
+ 1.649371467782406,
+ 2.4381038625997453,
+ 1.1299800697442568,
+ -0.15948025557870896,
+ -1.4105883654591098,
+ -2.0597380090317094,
+ -1.6824991724215832,
+ -0.1680989701091551,
+ 0.4615664108384806,
+ 1.2944177187288686,
+ 1.9826335934053285,
+ 1.819296082402742,
+ 0.8512581630189405,
+ -0.4763661483292474,
+ -1.6596822616367994,
+ -3.871321878706139,
+ -2.9106853982057563
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.383728301648392,
+ -2.9998331791954773,
+ -0.10215439931482292,
+ 1.4170513296424285,
+ 2.331610593611374,
+ 2.2179939620220632,
+ 1.1514918612651892,
+ -0.3136300029233232,
+ -0.8359972725572041,
+ -1.1035402348267749,
+ -1.3956389170044192,
+ -1.3222888148971212,
+ 0.2801554079262056,
+ 1.7073881505285775,
+ 2.5798717679947885,
+ 3.230141722941251,
+ 1.9163512463556451,
+ -1.0811784128475683,
+ -2.485961718795998,
+ -2.3760202008047364,
+ -2.114462144667779,
+ -0.9408725063047316,
+ 0.651921588222944,
+ 1.9538455207416607,
+ 2.615640245733351,
+ 3.2073749157509654,
+ 1.8091008064355383,
+ -1.3317473616584825,
+ -2.7820174771723702,
+ -2.4117706771622474,
+ -1.9078623245512052,
+ -0.7596276857724675,
+ -0.5350944097385358,
+ 0.2201208037903764,
+ 1.8990529276882735,
+ 2.411899162671445,
+ 0.7081521048783194,
+ -0.8777640420264732,
+ -2.091645571279537,
+ -2.3842643444652967,
+ -1.6498218078094573,
+ -0.35348410810895686,
+ -0.024048719125661155,
+ 0.6180857604265907,
+ 2.3088185757813027,
+ 2.2287215035153887,
+ -0.9025358231841287,
+ -2.4119086438581667,
+ -2.2817489828633453,
+ -2.269005908867041,
+ -1.2786038940001676,
+ 0.27978590017011684,
+ 1.7075402275437015,
+ 2.5792319404802293,
+ 3.29068426942691,
+ 2.086132982330594,
+ -1.2328075386734036,
+ -2.5349456608550063,
+ -2.376772700283901,
+ -2.115096023302346,
+ -1.1425657510858456,
+ -1.020342301079325,
+ -0.03874204847410383,
+ 1.9020480265767703,
+ 2.6806409499755346,
+ 1.0605531070246585,
+ -0.5145792864171422,
+ -1.8741101324248932,
+ -2.4089563665066858,
+ -1.9045105767243045,
+ -0.755438828080891,
+ -0.5217575712348075,
+ 0.2763319761697279,
+ 1.7882396100550833,
+ 2.361388990393715,
+ 0.7052894233348569,
+ -0.878993054677996,
+ -2.1875691676387006,
+ -2.993089581164694,
+ -2.2210065520548294,
+ 0.462303540045288,
+ 1.4742652177834281,
+ 2.01125587572195,
+ 2.4002429703549333,
+ 1.7565897064242149,
+ 0.3346121609975354,
+ -1.2218013057622439,
+ -2.3865567559621383,
+ -5.260307113292696,
+ -3.8640394928890163,
+ 1.1280453435530273,
+ 1.9080794762535593,
+ 1.8805115109016848,
+ 2.4092677471611603,
+ 1.9020412268389901,
+ 0.5525680290935774,
+ -1.025529353210537,
+ -2.278053071320717,
+ -3.081529572602763,
+ -2.244256964091433,
+ 0.6096879593817988,
+ 1.669907924505477,
+ 2.0960918959536974,
+ 2.383078524196621,
+ 1.8759224587248313,
+ 2.0041637410924746,
+ 0.713037379704414,
+ -1.9817413733819755,
+ -3.1346299397897024,
+ -1.7346376665061214,
+ -0.31856952618661966,
+ 1.2402476243653302,
+ 2.2551384988927112,
+ 2.2936927207273876,
+ 1.5634164648235853,
+ 2.2041806251206233,
+ 1.7259198961455036,
+ 0.4142097367039661,
+ -0.2972232697546533,
+ -1.392677895170136,
+ -2.3171724124049997,
+ -2.4770008566702035,
+ -2.9512289983575974,
+ -1.6019525530651066,
+ 1.9225052325088579,
+ 3.2351434411762803,
+ 2.285401208144617,
+ 1.30634329032344,
+ -0.239351869457047,
+ -1.683544651186496,
+ -2.394314567298667,
+ -2.310266259211599,
+ -2.976307751856373,
+ -1.3316414270272188,
+ 1.95492316965479,
+ 2.081445912077253,
+ 1.0614676606792837,
+ 0.7804771228320629,
+ -0.7251586991747262,
+ -1.9968200925625001,
+ -2.413103947431666,
+ -1.7637874299006893,
+ -0.3604343204756055,
+ 1.1801534370873576,
+ 1.8585360037130403,
+ 1.6329532651716487,
+ 0.6846789295324228,
+ 0.19401286912838656,
+ -1.080075249738062,
+ -2.186019616922599,
+ -2.573301816059405,
+ -3.0761157713014073,
+ -1.6236073214341162,
+ 1.5842498373801788,
+ 3.0410615491702027,
+ 2.372906827362828,
+ 1.5933719002616211,
+ 0.12430070024341008,
+ -1.4038094098447176,
+ -2.3182128974460863,
+ -2.4657562578724628,
+ -2.8797801160733782,
+ -1.421524458021286,
+ 1.7542917973378735,
+ 3.1762990784401093,
+ 2.2766748176745844,
+ 1.290294014874247,
+ -0.13936192526467878,
+ -0.6194753811511187,
+ -0.9689854539387696,
+ -1.5114856963309027,
+ -1.522652566095407,
+ 0.11993709172208682,
+ 1.5904370079011925,
+ 2.381396659616128,
+ 2.121828494088515,
+ 0.9516878660751611,
+ -0.5512646087282062,
+ -1.919466675287093,
+ -1.6313205526187031
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.294375032354127,
+ -3.0023849872728747,
+ -0.5295631789803212,
+ 0.6390181503360418,
+ 1.5368103572336353,
+ 1.7577337305322356,
+ 1.2214439649914133,
+ 0.2692486187979112,
+ 0.013764697553458848,
+ -0.411019724488444,
+ -1.3313661399795045,
+ -1.5184872768264412,
+ -0.25491099173252124,
+ 0.8922960323737151,
+ 1.7542605401659184,
+ 2.277542102160268,
+ 1.4632272489777716,
+ -0.4537754718157934,
+ -1.3780690237104127,
+ -1.614010450827516,
+ -1.7246920761569364,
+ -1.0927188100995782,
+ 0.0240731220821396,
+ 1.1231008562879534,
+ 1.8582590616317973,
+ 2.3586503265662744,
+ 1.4432056692235018,
+ -0.6686003575179363,
+ -1.6684285943623611,
+ -1.7116945059495825,
+ -1.6381707197844633,
+ -1.0155829349524552,
+ -0.9973835673797018,
+ -0.24793500281117353,
+ 1.5408556767227561,
+ 2.142436779170548,
+ 0.9412115723809602,
+ -0.19914087195479097,
+ -1.2581165849665275,
+ -1.7638736499311911,
+ -1.5078940230771694,
+ -0.7431933026473133,
+ -0.7095276739525547,
+ 0.04404621358292477,
+ 1.784372876495852,
+ 1.7680029944350752,
+ -0.26673799751133,
+ -1.1975470000988249,
+ -1.4774473631993816,
+ -1.7694660155286186,
+ -1.3002362973621568,
+ -0.2549084739434829,
+ 0.8930816862581848,
+ 1.7549128983702316,
+ 2.3220340226928737,
+ 1.5790895945965566,
+ -0.5448829668171717,
+ -1.4061058904156745,
+ -1.615408719989236,
+ -1.7258519619769976,
+ -1.2600328025283691,
+ -1.3083830611472447,
+ -0.40433577040404445,
+ 1.462200337597868,
+ 2.2509931813265527,
+ 1.1658969399809784,
+ 0.08032973248438013,
+ -1.0440560060123878,
+ -1.7100393038695394,
+ -1.6363626869980463,
+ -1.0130105166176109,
+ -0.9766306118671129,
+ -0.17632757489064368,
+ 1.4370444166295426,
+ 2.099986612828609,
+ 0.9397852848479209,
+ -0.19970659517844716,
+ -1.2856338446990256,
+ -1.859960550850516,
+ -1.5000538532317242,
+ -0.09099525403496944,
+ 0.48592549967621834,
+ 1.1800871215443771,
+ 1.7489745787342528,
+ 1.5665193812305158,
+ 0.6910496464763266,
+ -0.4757321026440726,
+ -1.4965449408480642,
+ -3.464354930650553,
+ -2.59691199820239,
+ 0.08496784400893238,
+ 0.3866559776943338,
+ 1.0529358254171675,
+ 1.7133337182821837,
+ 1.638102478238341,
+ 0.8385086582025845,
+ -0.3162985291233061,
+ -1.3784727938519683,
+ -1.9615744772697243,
+ -1.5450407949866336,
+ 0.020679818727934254,
+ 0.6451313228574284,
+ 1.2663843053509172,
+ 1.7666721972274433,
+ 1.6815768481466227,
+ 1.9080749839400537,
+ 0.8594128695316887,
+ -1.389433173806201,
+ -2.3803402875702866,
+ -1.5526814315056818,
+ -0.6801285648788867,
+ 0.488843174293829,
+ 1.4449727267640569,
+ 1.7734888312204748,
+ 1.5110213451705676,
+ 1.6582164416396123,
+ 1.0403791682939374,
+ 0.6624595381732424,
+ 0.3983003853576228,
+ -0.6169824914341369,
+ -1.5185639690625796,
+ -1.922462798789254,
+ -2.3770057590116216,
+ -1.4095993298110856,
+ 1.1860197499441596,
+ 2.179017958204211,
+ 1.7720540959206437,
+ 1.312701357484388,
+ 0.28598932158499285,
+ -0.8700101535896902,
+ -1.6442817582049447,
+ -1.8760466383858807,
+ -2.5177391097549062,
+ -1.2734554208488562,
+ 1.1180089388042016,
+ 1.2441428222896602,
+ 1.1149298765242082,
+ 1.23191552138582,
+ -0.08013550581930876,
+ -1.165488821445694,
+ -1.7529102167065924,
+ -1.5670582544408704,
+ -0.7086799788201142,
+ 0.3973821285625913,
+ 0.8073155049055585,
+ 0.8988338252063754,
+ 0.8729140820738199,
+ 0.7617858035266843,
+ -0.35985635163977386,
+ -1.3627465022683727,
+ -1.9212789017699046,
+ -2.378009803600815,
+ -1.3727738046633255,
+ 0.9007091344290001,
+ 1.9573861214891952,
+ 1.7700200892978561,
+ 1.4772762871026304,
+ 0.5469064623485655,
+ -0.6278210541616176,
+ -1.5248256148837267,
+ -1.9208622679470715,
+ -2.328255045981751,
+ -1.2749352216877694,
+ 1.0722241516327007,
+ 2.1476342934872483,
+ 1.7717332638570082,
+ 1.3050919182440994,
+ 0.3962760511017542,
+ 0.1772370213939824,
+ -0.3019685463918973,
+ -1.3952771059949252,
+ -1.6429740453477972,
+ -0.3713093360761869,
+ 0.7887153199536089,
+ 1.6134197906632957,
+ 1.727185684593701,
+ 1.0975826721877375,
+ 0.09253085287223752,
+ -0.3955700640538053,
+ -0.47897367457665424
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.0986987873548753,
+ -4.156095421932353,
+ -1.0946403952929653,
+ 0.22520464029145848,
+ 1.453139908657294,
+ 2.0421147495987237,
+ 1.7491631783171437,
+ 0.8661487424646157,
+ 0.7386949752877418,
+ 0.01782149507301011,
+ -1.787572443519843,
+ -2.2670521859333577,
+ -0.805820545510677,
+ 0.5442412384870488,
+ 1.7278988030749038,
+ 2.3443370587939327,
+ 1.6406955429307397,
+ -0.09648002770251304,
+ -0.9683604278600788,
+ -1.5877199248915899,
+ -2.056097618119828,
+ -1.6404215796212287,
+ -0.49840976503740586,
+ 0.8503135962383356,
+ 1.9295691527852419,
+ 2.5445258290775685,
+ 1.6868684932687295,
+ -0.3634280200811433,
+ -1.365261076264987,
+ -1.7753208260425557,
+ -2.0380847913204314,
+ -1.6218689104354798,
+ -1.771430313078821,
+ -0.7394186767703719,
+ 1.828490318394471,
+ 2.7359547483522952,
+ 1.499582675360739,
+ 0.2991960734507876,
+ -1.0347554022682766,
+ -1.914997060026671,
+ -1.9660426188918432,
+ -1.3582799138363193,
+ -1.5621850786949236,
+ -0.4252059450660666,
+ 2.024613860374758,
+ 2.055935178501802,
+ 0.16940432307075998,
+ -0.6284328309788451,
+ -1.3629620666920526,
+ -2.0250820727833787,
+ -1.8172545813971799,
+ -0.8055020498295488,
+ 0.5458646347584207,
+ 1.7298953544739744,
+ 2.3923005420436785,
+ 1.7553322304734222,
+ -0.17127638268026346,
+ -0.9894108860074134,
+ -1.5902010078589968,
+ -2.0581470461537563,
+ -1.8427921630991626,
+ -2.0541434507307836,
+ -0.8690323971557606,
+ 1.650518250508367,
+ 2.750485744736537,
+ 1.7022842004885879,
+ 0.6149595474952304,
+ -0.7415365684739408,
+ -1.774013036636865,
+ -2.0368893619769093,
+ -1.6196785140101833,
+ -1.7364369700838693,
+ -0.6273078358579888,
+ 1.6907927756412202,
+ 2.6840462094348707,
+ 1.4988257725972483,
+ 0.2989749103637427,
+ -1.0148954495150837,
+ -1.613707330290612,
+ -1.4648261032394698,
+ -0.5944765740347994,
+ -0.16471131403572142,
+ 0.9287980403536187,
+ 1.8682334553976996,
+ 2.006381248277425,
+ 1.25795951311429,
+ -0.02636102116344754,
+ -1.316797928451816,
+ -3.2721199998588624,
+ -2.5198307526952943,
+ -0.7658103676194759,
+ -0.7535168920632849,
+ 0.7559217239893905,
+ 1.7810965852849854,
+ 2.0428615486152,
+ 1.4022726607650944,
+ 0.16302443403365077,
+ -1.145337017621262,
+ -1.765451971963656,
+ -1.5454769267098274,
+ -0.4702110524828009,
+ 0.024699161958742572,
+ 1.049431655497943,
+ 1.9222440582424485,
+ 2.1619476095481627,
+ 2.5585297804711526,
+ 1.312999063302921,
+ -1.4207250118699206,
+ -2.654509183666095,
+ -1.9941073318793592,
+ -1.2471870894316106,
+ 0.03998287185401823,
+ 1.3130651239522673,
+ 2.013147216475597,
+ 2.046192425540165,
+ 2.362791498111653,
+ 1.1263544143697108,
+ 1.1267810886436136,
+ 1.1400951590053519,
+ -0.1966975430613726,
+ -1.4246713604382422,
+ -2.1901830199529653,
+ -2.8023922290446635,
+ -1.7873421305243515,
+ 1.0171922580019264,
+ 2.120352539669991,
+ 2.0169697527777615,
+ 1.8215649425040996,
+ 0.840582725372584,
+ -0.5147263799043927,
+ -1.639745638043576,
+ -2.2278600955452457,
+ -3.0950496615360263,
+ -1.7126051545187881,
+ 0.8380440586772547,
+ 1.012226725460317,
+ 1.5878311574924557,
+ 2.086726100449949,
+ 0.4353900879200516,
+ -0.9084628995905392,
+ -1.8661208059274035,
+ -2.001487612421732,
+ -1.275414261791684,
+ -0.11312256056012522,
+ 0.22669173733224268,
+ 0.6218606587933332,
+ 1.3671289038088035,
+ 1.534802966274688,
+ 0.1120662615182602,
+ -1.1882011012013431,
+ -2.1059856094366656,
+ -2.698866960225008,
+ -1.6868664184886588,
+ 0.6672896589023286,
+ 1.7903792419760651,
+ 1.9383250484676917,
+ 1.9455579463654111,
+ 1.1145679345925525,
+ -0.21144487320985916,
+ -1.4377549339046465,
+ -2.1961350204761634,
+ -2.7541656990549352,
+ -1.6397848313837258,
+ 0.9058364870805519,
+ 2.1001848358496518,
+ 2.023644058883761,
+ 1.8181846942419126,
+ 1.0018894664834574,
+ 0.9199394083172174,
+ 0.1471003095325839,
+ -1.8320125818539903,
+ -2.375025851592961,
+ -0.9297523454586102,
+ 0.4122556736878177,
+ 1.581849172128431,
+ 2.055421250144557,
+ 1.6421102378101828,
+ 0.6732416252784064,
+ 0.7432788374165944,
+ 0.3132252683485525
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.9622009774404298,
+ -1.626842888020272,
+ -1.6010115922998658,
+ -2.0500021804111204,
+ -1.617484931371311,
+ -0.46872873235472023,
+ 0.873941277574235,
+ 1.9391365388225585,
+ 2.6227676119564345,
+ 1.909760647708764,
+ -0.520105321399334,
+ -1.4226711880682201,
+ -1.7842518536619958,
+ -2.0274829619398824,
+ -1.5950566460610651,
+ -1.7037233483153935,
+ -0.6055727464541534,
+ 1.6862905438481803,
+ 2.6667019013584095,
+ 1.474935703286889,
+ 0.26959509272500587,
+ -1.0565761589792324,
+ -1.9193744579488983,
+ -1.951199703592378,
+ -1.3289829211438082,
+ -1.3402869697589646,
+ -0.347902126342244,
+ 1.6804612396310354,
+ 2.527661602039551,
+ 1.2316458043935699,
+ -0.053318680739561405,
+ -1.3354016868952496,
+ -1.9606308220255189,
+ -1.5742492115268387,
+ -0.2715537856956503,
+ 0.32593981771592057,
+ 1.2248309316210537,
+ 1.9812421089314172,
+ 1.8869643931243414,
+ 0.9582570490704275,
+ -0.37629250309145634,
+ -1.6001794776171656,
+ -2.4923289021464927,
+ -1.742993357070244,
+ -0.6519095089326332,
+ -0.4646012371809347,
+ 1.8129859899376022,
+ 3.0917303351916976,
+ 1.6787378652356468,
+ 0.5832943843750897,
+ -0.7677127495044616,
+ -1.7831062823211485,
+ -2.025109669632523,
+ -1.5907270244631266,
+ -1.7291290827874848,
+ -0.7090454678081912,
+ 1.8234318445244004,
+ 2.716052919163502,
+ 1.4721932791994978,
+ 0.26735008507342856,
+ -1.0409884957309774,
+ -1.5920413834079299,
+ -1.343234777648601,
+ -0.565265030777395,
+ -0.1085271735221955,
+ 0.9529148102956252,
+ 1.8742918359392766,
+ 1.991697995052428,
+ 1.2289698613105013,
+ -0.05709641718937924,
+ -1.3389911611268128,
+ -1.9266161080443884,
+ -1.4882510868557326,
+ -0.3059815587627542,
+ 0.32785952156893317,
+ 1.228483125858505,
+ 1.982977694696786,
+ 2.0826616648878855,
+ 2.4845188935468028,
+ 1.4100218814893581,
+ -1.7519769239650345,
+ -2.7798241018877206,
+ -1.9217752305986306,
+ -1.0613251157839634,
+ 0.25973635844692067,
+ 1.4696602014094367,
+ 2.039675177162591,
+ 1.932233715587341,
+ 3.6593774650860316,
+ 2.4995423161041885,
+ -3.1645030660578484,
+ -4.474051200915986,
+ -1.9792810997756114,
+ -1.2180128477407235,
+ 0.07098913637734479,
+ 1.3322056216729579,
+ 2.0122686242291987,
+ 2.0253513503731684,
+ 2.389179292547479,
+ 1.3188635313245396,
+ -1.8016627430085985,
+ -2.8061175404033807,
+ -1.870743585031204,
+ -0.9444852912700409,
+ 0.3086211666394457,
+ 0.7331663770216881,
+ 0.9139322007780383,
+ 1.0737383044385136,
+ 1.0379439749252652,
+ -0.2772473666054967,
+ -1.479534249884129,
+ -2.0490245231747872,
+ -1.7142986108664453,
+ -0.6447232421133497,
+ 0.6535376147107378,
+ 1.1433844573468492,
+ 1.1272884966796783,
+ 1.1212710190452089,
+ 2.355420729757111,
+ 2.054688734192531,
+ 1.6390439251474742,
+ 0.6700635273087249,
+ 0.48554471782998415,
+ -0.16809361816175966,
+ -1.6271656560306986,
+ -2.0754741038500493,
+ -0.6243940754871893,
+ 0.7274244925278199,
+ 1.77108008519097,
+ 2.0347072829616217,
+ 1.4217492134398595,
+ 0.32478417338259225,
+ 0.05370248170547399,
+ -0.507611317297396,
+ -1.9729333381312575,
+ -1.9061140325254118,
+ 0.7657531886872789,
+ 2.05370496987129,
+ 1.9420032273055816,
+ 1.930147340039861,
+ 1.0866731668268765,
+ -0.23953243184212455,
+ -1.4539556867210601,
+ -2.1948854216972453,
+ -2.800052696201406,
+ -1.7747455499082636,
+ 1.050045839472759,
+ 2.1582411363559286,
+ 2.0226002152571625,
+ 1.7989790914939419,
+ 0.9707351043852582,
+ 0.8662826207991727,
+ 0.03175200245558907,
+ -1.6180658040097025,
+ -2.279779912057141,
+ -0.9010702597277104,
+ 0.43928714972584915,
+ 1.5955828935663157,
+ 2.049746121572368,
+ 1.619599296166393,
+ 0.64124445365625,
+ 0.4419736476421231,
+ -0.23632779963152098,
+ -1.5210443734824761,
+ -2.007882883539035,
+ -0.5986966370394208,
+ 0.7492968314993863,
+ 1.8622409636531392,
+ 2.5476461328457387,
+ 1.8900726481299086,
+ -0.3947239822755126,
+ -1.2562701023635285,
+ -1.7121521683976189,
+ -2.0421874619654483,
+ -1.4936191387059314,
+ -0.283247998682581,
+ 1.0408834205132051,
+ 2.031331493887279,
+ 4.476858325581943,
+ 3.288346064526457
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.08869190887053059,
+ -0.39123069392346344,
+ -1.0523334503241242,
+ -1.7098682586114073,
+ -1.6332526333938286,
+ -0.8344198669535661,
+ 0.31787928984015434,
+ 1.3769847488832216,
+ 1.9588519087685974,
+ 1.542188022790574,
+ -0.0228539722787063,
+ -0.6467633456146987,
+ -1.2650282863514604,
+ -1.7627102215096675,
+ -1.6763037555750435,
+ -1.9016079134555213,
+ -0.8557836681538147,
+ 1.3867276231738699,
+ 2.3747088791228927,
+ 1.547824376675176,
+ 0.6763149599809483,
+ -0.4899672638516525,
+ -1.4429073261306504,
+ -1.769135726791198,
+ -1.5058157273552448,
+ -1.6519647792348504,
+ -0.6574576703037035,
+ 1.4414774225361042,
+ 2.3505603777283657,
+ 1.392647942042376,
+ 0.4108684457349976,
+ -0.7198397163961266,
+ -1.192712277085073,
+ -1.1098009874240673,
+ -0.627195206768767,
+ -0.3456205004560009,
+ 0.6575629731373223,
+ 1.5373761262108827,
+ 1.7582188368571983,
+ 1.2024272804912208,
+ 0.13333682602658697,
+ -0.9929271410401604,
+ -1.6697942451333732,
+ -1.3164159079515918,
+ -0.9788260384318762,
+ -0.8341573600173893,
+ 1.430068777529938,
+ 2.6430880831785273,
+ 1.662754677050861,
+ 0.9233789726525378,
+ -0.21670643421426555,
+ -1.264171229665816,
+ -1.7611500858186167,
+ -1.6732441333428543,
+ -1.932863607948667,
+ -0.9650941894759538,
+ 1.5144215415712863,
+ 2.4193537879447464,
+ 1.5461577963108795,
+ 0.674953899151504,
+ -0.4322638084789101,
+ -0.8313171383446435,
+ -0.893894368021487,
+ -0.8253386614135193,
+ -0.7006058845914019,
+ 0.3922604811372934,
+ 1.3804434988020269,
+ 1.7776906884386114,
+ 1.390191012643177,
+ 0.4075436202669268,
+ -0.7232337528851415,
+ -1.172969155487179,
+ -1.0651515151141102,
+ -0.624392633218631,
+ -0.3325023537771199,
+ 0.6606885913864975,
+ 1.5388309019743092,
+ 1.9122333847800532,
+ 2.3709798967569986,
+ 1.4678922828775378,
+ -1.2859805496965364,
+ -2.2138753621297984,
+ -1.7627980182347578,
+ -1.2754538675347862,
+ -0.23668818079045428,
+ 0.9096064515160034,
+ 1.6572104754013957,
+ 1.8577021105970368,
+ 3.691603499813962,
+ 2.5850051087670445,
+ -2.391404335783693,
+ -3.4543629788954937,
+ -1.7708422563846353,
+ -1.382897774353024,
+ -0.39762645452143924,
+ 0.76617247861936,
+ 1.5928311948349299,
+ 1.8948933534654806,
+ 2.327596962248249,
+ 1.4120571804319355,
+ -1.3538891287543444,
+ -2.2773580720440694,
+ -1.7483564464493786,
+ -1.1928921313237248,
+ -0.23176703075563623,
+ 0.023599515970879288,
+ 0.44742306147603755,
+ 1.185809756823443,
+ 1.4316875782486274,
+ 0.21977681074365046,
+ -0.9200006520312886,
+ -1.6678140851276446,
+ -1.6804282552787406,
+ -0.9704534333120144,
+ 0.07326759052272132,
+ 0.3993211861285807,
+ 0.661737706268571,
+ 1.0363768596056617,
+ 1.6529826903055682,
+ 1.7073115525673712,
+ 1.6443652906653357,
+ 1.0304084245249057,
+ 1.0174058308693823,
+ 0.26208632810946336,
+ -1.5439716869335849,
+ -2.1526835949850742,
+ -0.9548463175835576,
+ 0.18312865221894226,
+ 1.2466192649225196,
+ 1.7619833567946515,
+ 1.5163554068799856,
+ 0.7592609791050283,
+ 0.732979800202236,
+ -0.02943959169174272,
+ -1.7839983990869264,
+ -1.7687045992580852,
+ 0.26622999999038793,
+ 1.1978259270887375,
+ 1.475267737421216,
+ 1.7650461698109452,
+ 1.2955051126163417,
+ 0.2519552692569317,
+ -0.8930035654578418,
+ -1.7517962693466314,
+ -2.31744680376003,
+ -1.5753831314376856,
+ 0.5455630704403016,
+ 1.4054140106766477,
+ 1.6125481135061803,
+ 1.7211693728721678,
+ 1.2550769255218348,
+ 1.302591057697227,
+ 0.40149940650719224,
+ -1.4586550061589794,
+ -2.24457926851283,
+ -1.1613252778963228,
+ -0.07777243185945214,
+ 1.0434987746171414,
+ 1.706596326805806,
+ 1.631536542545794,
+ 1.0084020238549725,
+ 0.9713865195697194,
+ 0.17397119626680996,
+ -1.433247967621209,
+ -2.093466317409352,
+ -0.935528365731929,
+ 0.20158985969136986,
+ 1.2844897714822974,
+ 1.8576562279354125,
+ 1.497447582228376,
+ 0.08855589897777119,
+ -0.48798963874149737,
+ -1.179046814165186,
+ -1.745211104220101,
+ -1.5616430709180211,
+ -0.6872177410505999,
+ 0.4768859493479802,
+ 1.4946012443056345,
+ 3.4589170520555705,
+ 2.5924934157808397
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.9328038534748,
+ 2.418015857870324,
+ 0.029051952438674825,
+ -1.2393951516427761,
+ -1.9787671805322125,
+ -1.8454548569928002,
+ -0.919561088181434,
+ 0.3255249310451161,
+ 0.7799179054954108,
+ 0.975991109649153,
+ 1.1331223092909937,
+ 1.0415040974467153,
+ -0.29257657400940307,
+ -1.4780742072133906,
+ -2.182747640272822,
+ -2.7228068750303778,
+ -1.601391914872442,
+ 0.9498426896689187,
+ 2.1422431298107116,
+ 2.010479011325851,
+ 1.7531998832971056,
+ 0.7395556603551556,
+ -0.6038504970979937,
+ -1.6787107241963275,
+ -2.2030738302263035,
+ -2.6914985559380598,
+ -1.5040529356708912,
+ 1.156300145056383,
+ 2.3816230906338287,
+ 2.03157642965975,
+ 1.5716733456097653,
+ 0.5804611431713711,
+ 0.3737187949964537,
+ -0.23582251181015382,
+ -1.575609292309322,
+ -1.9779786710047809,
+ -0.541819062518574,
+ 0.7922470315379768,
+ 1.7901472295302283,
+ 1.9994643085990245,
+ 1.3477180289950543,
+ 0.23636498385850763,
+ -0.0660983613174062,
+ -0.5698621678901297,
+ -1.926677277524302,
+ -1.8541590017820377,
+ 0.8068761211489113,
+ 2.0958228184590646,
+ 1.9397555230360837,
+ 1.8914760058885265,
+ 1.0280610156756889,
+ -0.292232224730821,
+ -1.4781178623035758,
+ -2.1820706411752955,
+ -2.7736139544059566,
+ -1.7449875095968248,
+ 1.079627842232156,
+ 2.184344550042339,
+ 2.0110050653342166,
+ 1.7536452895873476,
+ 0.906439865336422,
+ 0.7866366828911785,
+ -0.014359228926864986,
+ -1.588205075248138,
+ -2.214601936782788,
+ -0.8418362490725589,
+ 0.4890211266051162,
+ 1.614344805854646,
+ 2.0291619350365258,
+ 1.5687783886754945,
+ 0.5768811907152411,
+ 0.3638915593368528,
+ -0.2792181859734544,
+ -1.485402372411394,
+ -1.9362533915966655,
+ -0.5393313521816454,
+ 0.7933200906950013,
+ 1.8760062479065618,
+ 2.5542157339510148,
+ 1.8803933710282483,
+ -0.44169047177664517,
+ -1.3117462972194942,
+ -1.7250445814891247,
+ -2.0161968536562345,
+ -1.4397937474771474,
+ -0.225300564287199,
+ 1.0780070763336858,
+ 2.0349355709459855,
+ 4.464621426245433,
+ 3.27305295803145,
+ -1.0394627186552414,
+ -1.7279500366207263,
+ -1.6191949010048594,
+ -2.029041719492361,
+ -1.5662621681406284,
+ -0.40979829240720583,
+ 0.9151862385067427,
+ 1.9486564746627841,
+ 2.623869257333243,
+ 1.8964252130459016,
+ -0.5649588774708534,
+ -1.474008296324189,
+ -1.793253415479595,
+ -1.9980110087338283,
+ -1.53652809343316,
+ -1.6276568363027246,
+ -0.5565667217139553,
+ 1.6714644210066167,
+ 2.6210776756002474,
+ 1.4210856607754503,
+ 0.21172813980693253,
+ -1.0935411406332618,
+ -1.9190351892403426,
+ -1.913954600710335,
+ -1.2668970730936047,
+ -1.2614111563382406,
+ -0.2995062786759597,
+ 1.6584127629817567,
+ 2.472250368675955,
+ 1.2194532620151082,
+ 1.9676011700793323,
+ 2.066011909859687,
+ 2.4507705442330505,
+ 1.3154158165925947,
+ -1.6416894948695016,
+ -2.739745851914292,
+ -1.906415306655881,
+ -1.0523269599589666,
+ 0.2584695641228349,
+ 1.4586590151483378,
+ 2.0237323610090527,
+ 1.916592686818339,
+ 2.456564472218362,
+ 1.080771188408582,
+ -1.6803485531086684,
+ -1.7823942967938333,
+ -0.8490445489745988,
+ -0.5728868998676709,
+ 0.6650345812474399,
+ 1.7134276270267406,
+ 2.0276775793173285,
+ 1.4464269648564356,
+ 0.24713779752842116,
+ -1.0490109715547995,
+ -1.6293748314573393,
+ -1.407970689234636,
+ -0.5284847554608746,
+ -0.0855970997162002,
+ 0.9605308455256937,
+ 1.8649488494126876,
+ 2.1558039665544726,
+ 2.566899381112503,
+ 1.340167325280454,
+ -1.3624007671195428,
+ -2.5867247402930342,
+ -1.98812544217509,
+ -1.298989979211181,
+ -0.04750307474821068,
+ 1.2284653516795379,
+ 1.967790515530556,
+ 2.055744916715662,
+ 2.3903411787995474,
+ 1.1642553767441677,
+ -1.4992967265949917,
+ -2.688886882947923,
+ -1.8983321130582598,
+ -1.0383355182748208,
+ 0.17914716902404457,
+ 0.5987526731076026,
+ 0.8643384465341556,
+ 1.232988691980353,
+ 1.212490699400332,
+ -0.1579511648897124,
+ -1.3821255290911214,
+ -2.0155573914970133,
+ -1.7597463964574558,
+ -0.7490157812625226,
+ 0.5246940167855376,
+ 1.7374420785775913,
+ 1.45881246226419
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.1999942301375572,
+ 4.332631886058058,
+ 1.2829645862517365,
+ 0.023850959234115454,
+ -1.250423529167473,
+ -1.975478479845422,
+ -1.8463559384403263,
+ -1.0964835562692108,
+ -1.0523404399568408,
+ -0.24873219422258472,
+ 1.8417799415990488,
+ 2.4280947392332943,
+ 1.0177144908319138,
+ -0.29635626249579955,
+ -1.5265574022668098,
+ -2.1268530066051405,
+ -1.5594609338414729,
+ -0.10795698002706235,
+ 0.6410962492937737,
+ 1.4015896535418026,
+ 2.013478440746547,
+ 1.7602346642318047,
+ 0.7281422292462328,
+ -0.610167022132633,
+ -1.759427723260446,
+ -2.3700235061432453,
+ -1.6365747597694655,
+ 0.15839891579578091,
+ 1.0528849601861945,
+ 1.6177046205037666,
+ 2.0346112385541733,
+ 1.775498681355845,
+ 1.9999571131668608,
+ 0.9262344522801336,
+ -1.7867428674925008,
+ -2.7620573602417506,
+ -1.6404335362210576,
+ -0.5373821692724123,
+ 0.8014818291463175,
+ 1.7897689742838017,
+ 2.0019852358392267,
+ 1.545219779171827,
+ 1.8560434424667074,
+ 0.6339614902229709,
+ -1.9359049559326063,
+ -1.989729537048551,
+ -0.3878706186599356,
+ 0.2514147592671211,
+ 1.1532754887102243,
+ 1.944670073430795,
+ 1.9012676746325576,
+ 1.0172584736864272,
+ -0.2982592438332297,
+ -1.5290683243676397,
+ -2.171509062881919,
+ -1.6610247853444735,
+ -0.050112544360969576,
+ 0.6560751532712362,
+ 1.4043908077848977,
+ 2.0157903539527475,
+ 1.9597346211142073,
+ 2.236710688562137,
+ 1.0272747123483923,
+ -1.5741109887863873,
+ -2.723968246802489,
+ -1.8092574711590046,
+ -0.8386735039406856,
+ 0.49702032979660754,
+ 1.6167251936544613,
+ 2.0338796669553463,
+ 1.7737521613968905,
+ 1.961019296088764,
+ 0.8042665225506896,
+ -1.6455511482722045,
+ -2.710635821375158,
+ -1.6401216268547512,
+ -0.53737291265747,
+ 0.7580451296088295,
+ 1.3053364329642125,
+ 1.2871464158426966,
+ 0.8034956306085217,
+ 0.5001454106732114,
+ -0.6918268655204015,
+ -1.7307670798358477,
+ -2.0280301219691856,
+ -1.429600566142729,
+ -0.2204774101500811,
+ 1.0766739550425748,
+ 2.813587556316542,
+ 2.2052346647203187,
+ 1.1448500427018495,
+ 1.2910107931289556,
+ -0.5128354907704952,
+ -1.625101059765658,
+ -2.0415023849172202,
+ -1.5565843953863219,
+ -0.4056263342251726,
+ 0.8947829727847731,
+ 1.4678733218685251,
+ 1.3784284402173186,
+ 0.6858440149399992,
+ 0.3148376145631847,
+ -0.8180453563307184,
+ -1.798645066240064,
+ -2.1887520556770714,
+ -2.6347545393798835,
+ -1.4171525270674075,
+ 1.2839344840864464,
+ 2.516042712046901,
+ 2.0179345519624112,
+ 1.4200744762693485,
+ 0.20805481116360683,
+ -1.0993216341386256,
+ -1.925363964191767,
+ -2.115280588626266,
+ -2.4895884390482124,
+ -1.2572244587670278,
+ 1.43860451807908,
+ 2.6511883624914727,
+ 1.9526585292008198,
+ 1.219482934706933,
+ 2.0984718325125686,
+ 2.730019285386151,
+ 1.7989723231921595,
+ -0.8154248245617222,
+ -1.8589877039842013,
+ -1.9316260118215793,
+ -1.9006832602674297,
+ -1.0507133765503394,
+ 0.26611277788641324,
+ 1.4597930266609649,
+ 2.1777289585183848,
+ 3.073484670198446,
+ 1.7656664872224814,
+ -0.5953276839896976,
+ -0.7767442551343968,
+ -1.6727237837912785,
+ -2.3249743118009163,
+ -0.6681655026194058,
+ 0.6705784445295627,
+ 1.7255971868503517,
+ 2.0207165927042556,
+ 1.4450700030900554,
+ 0.3780535006282834,
+ 0.11308845545841974,
+ -0.4041693670281392,
+ -1.4874825060208745,
+ -1.7883830255162774,
+ -0.3561640248300482,
+ 0.9648228549843217,
+ 1.978318456922937,
+ 2.5809464853644952,
+ 1.6748138647157935,
+ -0.46832852359311,
+ -1.5059182289941482,
+ -1.8199000202264628,
+ -1.9892209277022987,
+ -1.3021371971112008,
+ -0.03751311245228633,
+ 1.2348581541973427,
+ 2.1078823414600905,
+ 2.6872985495582276,
+ 1.6603873261776234,
+ -0.7174475076190749,
+ -1.8471007380125772,
+ -1.9413764657501418,
+ -1.8999646259958465,
+ -1.2222613486689595,
+ -1.2236148422571886,
+ -0.37499914778867244,
+ 1.8708372034745804,
+ 2.515414870306036,
+ 1.1323214465490405,
+ -0.16323528517931452,
+ -1.3934877088739828,
+ -2.0111538650347995,
+ -1.7600164520140247,
+ -0.9156656029910069,
+ -1.2811585227555038,
+ -0.7094431214402548
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.7003908402501953,
+ 5.23784058002149,
+ 2.337436985503373,
+ 1.462910079871686,
+ -0.045308606890415395,
+ -1.5377006711038683,
+ -2.35904758976876,
+ -2.398765027013385,
+ -2.837376407281173,
+ -1.5769108782549277,
+ 2.1061125702648167,
+ 3.294397418164087,
+ 2.2154951965124097,
+ 1.1444583244170319,
+ -0.3220443068214631,
+ -0.8130391748165589,
+ -1.0483687223437654,
+ -1.2868491704030245,
+ -1.2677673326763055,
+ 0.28833600227460193,
+ 1.7135273916432094,
+ 2.405976581290636,
+ 2.0367577396893264,
+ 0.7942755485172472,
+ -0.7290805597765853,
+ -1.298218647080334,
+ -1.3022946624893073,
+ -1.0310182816021107,
+ -0.7808908332692645,
+ 0.6635278812730501,
+ 1.960386693339763,
+ 2.6163114655712194,
+ 3.267744212799373,
+ 1.9814852426766594,
+ -1.4978638898677443,
+ -2.839450318178604,
+ -2.4109717027504485,
+ -1.8999390334668167,
+ -0.5683290207376399,
+ 1.0182322409445625,
+ 2.15647802917217,
+ 2.5847112233741596,
+ 3.5053110849730222,
+ 1.8238191512092956,
+ -1.3715912299867135,
+ -1.5540675724942534,
+ -1.6404152002858596,
+ -1.9346899130723272,
+ -0.08954543526082345,
+ 1.4280857061801588,
+ 2.3363090580285775,
+ 2.214259270852877,
+ 1.140991911848524,
+ -0.32745647185394455,
+ -0.8373860615860835,
+ -1.071655547700692,
+ -1.3285381082239538,
+ -1.288286022030149,
+ 0.29290698749841454,
+ 1.7172890433243988,
+ 2.5835731209028516,
+ 3.2325250481485877,
+ 1.914664761759211,
+ -1.090534144535714,
+ -2.4981821790599215,
+ -2.379473701500708,
+ -2.1095467735857834,
+ -0.9296660811606694,
+ 0.6644794738999101,
+ 1.962348030382702,
+ 2.6171812273124146,
+ 3.2070440462717764,
+ 1.8057884364860146,
+ -1.3402320294232326,
+ -2.792197373806809,
+ -2.4132421240318314,
+ -1.9011501309754955,
+ -0.7468829111397168,
+ -0.5119848849383548,
+ 0.22578306858573657,
+ 1.9903590008374494,
+ 2.425843980120359,
+ 0.6964244478224938,
+ -0.8900530742135847,
+ -2.0991984360260973,
+ -2.383733772108372,
+ -1.6414869111959653,
+ -0.3400513484561632,
+ 0.08800813265388781,
+ 0.3279598861615595,
+ 3.3054399628558153,
+ 4.363683596440265,
+ 0.9059945444743547,
+ -0.6800950892089132,
+ -1.9793127471093068,
+ -2.4071681153867543,
+ -1.7972157791618824,
+ -0.5773832810309615,
+ -0.2913820192054487,
+ 0.3761034105679668,
+ 1.9140757831526307,
+ 2.2691830391611796,
+ 0.5412785254209111,
+ -1.0362976869511655,
+ -2.285445159462196,
+ -3.0052574385961033,
+ -1.981503465462173,
+ 0.4590269519950706,
+ 1.6486508272488225,
+ 2.10196159400997,
+ 2.3816675234269127,
+ 1.6363158809776475,
+ 0.16552140911826904,
+ -1.3666779166130123,
+ -2.4583527316833496,
+ -3.156288980587662,
+ -1.980264410153718,
+ 0.7597703401045449,
+ 2.068749006934718,
+ 2.2636828582529778,
+ 2.2942894041881554,
+ 1.557479806515709,
+ 2.2390060648052064,
+ 1.8183237802345948,
+ 0.37261291414963793,
+ -0.2986748700005727,
+ -1.3868809980365315,
+ -2.307447740227152,
+ -2.2374278128097873,
+ -1.1781168378735487,
+ 0.3807111898822285,
+ 1.8299857921187486,
+ 2.867037536301514,
+ 2.0253988858976,
+ 0.8235711525304774,
+ 0.6051649096579527,
+ -2.1189329439718083,
+ -3.6403131205009376,
+ -1.9959721652826061,
+ -0.722389135394026,
+ 0.8673583973539013,
+ 2.0780912952545045,
+ 2.3873187063351837,
+ 1.8994653831665553,
+ 2.0742459307169847,
+ 0.8649850289492147,
+ -2.143608314725443,
+ -3.2066277181454437,
+ -1.7577271600214568,
+ -0.3521346367543899,
+ 1.1876662975524832,
+ 1.830605567729234,
+ 1.5605682868391582,
+ 0.6942625749360849,
+ 0.17855994104435402,
+ -1.0868902862870453,
+ -2.188676984177673,
+ -2.3517417151879956,
+ -1.475642786969615,
+ 0.029113280873959427,
+ 1.5416227228038941,
+ 2.229244765377369,
+ 1.735289381427078,
+ 0.39064966395034373,
+ -0.33493518324749627,
+ -1.4141509609011569,
+ -2.322135578942133,
+ -2.4636091476283752,
+ -2.946466157190689,
+ -1.6824127116833043,
+ 2.0454775165814434,
+ 3.2600065827022373,
+ 2.2731518023544366,
+ 1.2806025492156756,
+ -0.26755048907246576,
+ -1.7017387566266238,
+ -2.394743154063655,
+ -2.292650057511877,
+ -4.3563427077218035,
+ -2.9809471429860084
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.5042744836556845,
+ 3.6217149479114044,
+ 1.870461665249323,
+ 1.4751419309268123,
+ 0.44272004180120567,
+ -0.7882899542540923,
+ -1.672202791254261,
+ -2.005574859793799,
+ -2.4679013371619365,
+ -1.5029336559400113,
+ 1.4173294146908928,
+ 2.3939767312072626,
+ 1.8503894703544461,
+ 1.2771432636852293,
+ 0.26982710262839954,
+ 0.006208811819646419,
+ -0.4543387623319803,
+ -1.2636163189652487,
+ -1.537001462306114,
+ -0.2551915694882711,
+ 0.9518561731679653,
+ 1.7534821208545186,
+ 1.7821896746900519,
+ 1.0444458877246696,
+ -0.0521945097219495,
+ -0.3910817265457109,
+ -0.6818679789339884,
+ -1.1081143811748704,
+ -1.2038887215128447,
+ 0.041064895374931264,
+ 1.1940934637854574,
+ 1.960950270089708,
+ 2.5342575531653178,
+ 1.6486841902021412,
+ -0.8216289227846314,
+ -1.8018052965437965,
+ -1.8053717431786684,
+ -1.7179092302282406,
+ -0.8899407813806511,
+ 0.333748150691696,
+ 1.405825316740536,
+ 2.0188830835101736,
+ 2.831570014080347,
+ 1.6029221148339723,
+ -0.635199807075339,
+ -0.7993286638560773,
+ -1.5129943309556217,
+ -2.061453193742342,
+ -0.5415931333240218,
+ 0.689101018922321,
+ 1.6276679177814428,
+ 1.8493130204313808,
+ 1.2743693471245408,
+ 0.26531654353517287,
+ -0.001044248066602662,
+ -0.43827493432523607,
+ -1.32852671504342,
+ -1.563676729003331,
+ -0.2516480167430499,
+ 0.954769489095844,
+ 1.855725021952534,
+ 2.4059896385635624,
+ 1.5413895387645966,
+ -0.49139990973711073,
+ -1.4703943116631766,
+ -1.7074289757968901,
+ -1.8128528914583766,
+ -1.1376107179034423,
+ 0.04241339548845889,
+ 1.1963691754403083,
+ 1.9625151782898695,
+ 2.4878805649847955,
+ 1.5180665014945616,
+ -0.7168559781255666,
+ -1.773951750770991,
+ -1.8077976490953516,
+ -1.7191421172221086,
+ -1.0541495724634455,
+ -1.0296854712398875,
+ -0.2739388651455538,
+ 1.7056582686693216,
+ 2.2661165736553035,
+ 0.9770679341736502,
+ -0.22673984464004945,
+ -1.3375221945581717,
+ -1.860131194188298,
+ -1.5795035904428478,
+ -0.7658519713708317,
+ -1.01031366763751,
+ -0.5290680546513272,
+ 2.906706360262401,
+ 3.9234200146003904,
+ 1.1197714006568866,
+ -0.05498552396193379,
+ -1.210605027010883,
+ -1.8342819728908066,
+ -1.665165996916013,
+ -0.9355931197615643,
+ -0.8693558302173368,
+ -0.15707913591175773,
+ 1.6742316220087334,
+ 2.1795699839660134,
+ 0.8689654781503905,
+ -0.3486108402468156,
+ -1.4636987717570515,
+ -2.019807362551905,
+ -1.4568396203362382,
+ -0.036003335372298155,
+ 0.6896088552083595,
+ 1.344271394238964,
+ 1.8617577626577415,
+ 1.5791114768370362,
+ 0.597601813426529,
+ -0.6343337067728401,
+ -1.6678682793154527,
+ -2.229798884998032,
+ -1.5180860103255513,
+ 0.20872204667805208,
+ 1.0630782231493658,
+ 1.5338868320269636,
+ 1.869075209344393,
+ 1.5826880536004142,
+ 1.7656576150679983,
+ 1.1420309665649049,
+ 0.6967907119075752,
+ 0.42346286497052377,
+ -0.6523871344731452,
+ -1.5986100941172858,
+ -1.8597475589540116,
+ -1.2994774654524088,
+ -0.18420275318155807,
+ 1.0058372168078187,
+ 1.708084613611818,
+ 1.3651735220506236,
+ 1.0683736686781764,
+ 0.9176516614301601,
+ -1.4964099518342315,
+ -2.7852909488488233,
+ -1.7642439885617924,
+ -0.995110797562448,
+ 0.20573135816335641,
+ 1.3189623552708862,
+ 1.8577230819774033,
+ 1.7796981191700814,
+ 2.060608675011924,
+ 1.0356880845607455,
+ -1.5938462078881304,
+ -2.5549288331887796,
+ -1.644426561336017,
+ -0.7343989418337797,
+ 0.43198860066593225,
+ 0.8488784023790169,
+ 0.9290017997709873,
+ 0.8875254921251092,
+ 0.7697401723129732,
+ -0.39164177944222517,
+ -1.4434866983184524,
+ -1.8774836003218656,
+ -1.4827230993108291,
+ -0.4530705844974882,
+ 0.740523135966936,
+ 1.2118257797367071,
+ 1.1119353518209618,
+ 0.6768012855613046,
+ 0.3820224309182692,
+ -0.6762481317094332,
+ -1.6137955378480633,
+ -2.0222171544651295,
+ -2.511660008428359,
+ -1.5606411319348892,
+ 1.3444451141641982,
+ 2.324952126818725,
+ 1.864104240267737,
+ 1.3632659985164604,
+ 0.27311688064437223,
+ -0.9408023273422775,
+ -1.742167968779235,
+ -1.9685641466080914,
+ -3.9198214672961287,
+ -2.7475998916672024
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.5056176075957457,
+ 3.7121457468208874,
+ 2.203285558705912,
+ 2.0337256866101017,
+ 0.9872737764060573,
+ -0.49853357126683995,
+ -1.7601363185038001,
+ -2.4461066735495227,
+ -3.0989712651292054,
+ -2.004777061160188,
+ 1.4088877432873756,
+ 2.584365928632384,
+ 2.2550136143851023,
+ 1.8557623024500605,
+ 0.8308351186018702,
+ 0.6460322830408023,
+ -0.16119414301274335,
+ -1.7158703704133769,
+ -2.3186006788653866,
+ -0.7731324247655063,
+ 0.7134406021054324,
+ 1.8983998026183566,
+ 2.2474449180613445,
+ 1.6278753660860237,
+ 0.45510878741767474,
+ 0.16925747985049294,
+ -0.4528718117340579,
+ -1.5805611357990856,
+ -1.9811533334942055,
+ -0.42803081344782645,
+ 1.0422453370263887,
+ 2.1808592791323567,
+ 2.9067637822116366,
+ 2.0033694781147906,
+ -0.60122494591227,
+ -1.6649986856109869,
+ -2.006094952040543,
+ -2.215685767565201,
+ -1.4714549552817364,
+ -0.07467037234584377,
+ 1.3449576141236035,
+ 2.330026984167728,
+ 3.361231746489443,
+ 2.0276538730121465,
+ -0.2985928480392924,
+ -0.5095350972233755,
+ -1.9769939143976123,
+ -2.9273932883387963,
+ -1.0949493960238261,
+ 0.37053881917395365,
+ 1.6820637298158552,
+ 2.2536601421828126,
+ 1.8524946856369156,
+ 0.8253473476542371,
+ 0.6493814609728236,
+ -0.10852956259013345,
+ -1.8230114207493187,
+ -2.3599956753859908,
+ -0.7690695107596421,
+ 0.7167776596447035,
+ 1.9800601580510557,
+ 2.6583451618602205,
+ 1.8246424369994556,
+ -0.2080779007089643,
+ -1.217900583798263,
+ -1.8199911565739693,
+ -2.2567408682785137,
+ -1.7228586337628173,
+ -0.4258713914613406,
+ 1.0456117584653486,
+ 2.183546927485666,
+ 2.8542700762177486,
+ 1.8592130013514752,
+ -0.498587383118184,
+ -1.641871343330171,
+ -2.0095447300613904,
+ -2.217394831297306,
+ -1.6856215276039133,
+ -1.8158043743190144,
+ -0.7647696101918907,
+ 2.118980284410759,
+ 2.9852978687825433,
+ 1.5591318884385605,
+ 0.20503399260444322,
+ -1.2426521587659205,
+ -2.145044148498148,
+ -2.1191802249325464,
+ -1.3822553709555132,
+ -2.241042918918849,
+ -1.3929049078004443,
+ 3.6783367678308725,
+ 5.041165863652676,
+ 1.7029179037085915,
+ 0.41098827339038346,
+ -1.0630232049793302,
+ -2.0712220626673084,
+ -2.1822037594161845,
+ -1.5625792892108168,
+ -1.6427008114321473,
+ -0.6304511461921735,
+ 2.110761641144783,
+ 2.9210982415335645,
+ 1.4474001187259153,
+ 0.05676763353358559,
+ -1.369048431037838,
+ -2.0047580168004995,
+ -1.5908165446762939,
+ -0.4346207433714374,
+ 0.19999366376273606,
+ 1.2550151105004275,
+ 2.1501498006931112,
+ 2.1223613091742646,
+ 1.1562672197319477,
+ -0.3005535999819805,
+ -1.6735395277513432,
+ -2.3387924579433608,
+ -1.7234839964163544,
+ -0.14239725837943507,
+ 0.6761875895425945,
+ 1.5369139913932173,
+ 2.233879985573039,
+ 2.1913996767565855,
+ 2.554143623047184,
+ 1.3079784150210108,
+ 1.2084091400558565,
+ 1.1430247876609794,
+ -0.32365423399656207,
+ -1.6420373465800921,
+ -2.258069044461551,
+ -1.8775970931599768,
+ -0.692362810223342,
+ 0.7388963517052314,
+ 1.441994661078683,
+ 1.3595415134623905,
+ 1.656532368408183,
+ 1.5023795453852034,
+ -1.5689643777955218,
+ -3.156659211474428,
+ -2.240592923900137,
+ -1.5777260027389561,
+ -0.23254966365419244,
+ 1.2191664232935933,
+ 2.1370758149046174,
+ 2.3489234974583937,
+ 2.8169788851854918,
+ 1.5540188702782698,
+ -1.7592879638058623,
+ -2.9987732074517095,
+ -2.1683345012790505,
+ -1.3052165195060554,
+ 0.004735814672893757,
+ 0.40089273827333544,
+ 0.7833229507521229,
+ 1.3682638226036075,
+ 1.5162838140393373,
+ 0.003604488469296389,
+ -1.4008871662671032,
+ -2.2072532027985883,
+ -2.040120081037443,
+ -0.9969286796381853,
+ 0.39276463428828484,
+ 0.8711589761037402,
+ 1.0407368504782335,
+ 1.1513886750912528,
+ 1.082129007516539,
+ -0.35374367139577073,
+ -1.6632624582004467,
+ -2.4314339780426004,
+ -3.108178606686337,
+ -2.046771518382438,
+ 1.2993432159901817,
+ 2.462698228807416,
+ 2.239638879283471,
+ 1.9350156367907616,
+ 0.7955040484180868,
+ -0.6988443222116903,
+ -1.882810704883129,
+ -2.4490941891558977,
+ -5.039139350591263,
+ -3.588706176639686
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.207982971819489,
+ -4.2573054033742785,
+ -0.9631366294682595,
+ 0.5191085213961392,
+ 1.783445969042261,
+ 2.2629049577179754,
+ 1.7662339449762665,
+ 0.6714050497027266,
+ 0.4419027458436674,
+ -0.2384136000006938,
+ -1.855336792034119,
+ -2.2500587002177834,
+ -0.6273146847255261,
+ 0.8597231972783543,
+ 2.076377507096542,
+ 2.755038911322592,
+ 1.8489720349229526,
+ -0.33138836005376565,
+ -1.4027925268545254,
+ -1.909178429294641,
+ -2.251103077594711,
+ -1.624465203181188,
+ -0.2779576939147956,
+ 1.1791228447712583,
+ 2.257714345978532,
+ 2.9216433835470665,
+ 1.8639473266406663,
+ -0.6181504361348281,
+ -1.8115656274864365,
+ -2.0784365646493477,
+ -2.188140831679718,
+ -1.5668718551668923,
+ -1.643634269917522,
+ -0.5841167753440719,
+ 2.006199583683904,
+ 2.903077799480308,
+ 1.4500658032897418,
+ 0.05502810347982698,
+ -1.369131848645295,
+ -2.1920136397390815,
+ -2.0669728881546225,
+ -1.2472301622016002,
+ -1.3465245841998346,
+ -0.2228993628653764,
+ 2.2687612846729355,
+ 2.2772323711107707,
+ -0.062081146618964314,
+ -1.0939725433411214,
+ -1.6945734407059658,
+ -2.2600095189381997,
+ -1.8539106731275024,
+ -0.6271268562111019,
+ 0.8611517320606268,
+ 2.077946661858324,
+ 2.8101317504007866,
+ 1.9864130102158426,
+ -0.43045625041943797,
+ -1.4321254270485435,
+ -1.9114838605665805,
+ -2.253010179713855,
+ -1.844554522109136,
+ -1.9978812886684865,
+ -0.7548948926105719,
+ 1.8541152274468407,
+ 2.977342715552123,
+ 1.7050847613547966,
+ 0.4095847740643769,
+ -1.0674147381843517,
+ -2.0766650089336585,
+ -2.186346982183081,
+ -1.5640271806230581,
+ -1.610529083577954,
+ -0.47495553388004313,
+ 1.8625213092203587,
+ 2.846912483411482,
+ 1.4487566917526316,
+ 0.05455640570229687,
+ -1.37413379780087,
+ -2.073355108653115,
+ -1.768048417139203,
+ -0.404017856518997,
+ 0.19755660708562847,
+ 1.2596910212464487,
+ 2.155545738125788,
+ 2.1261492624471585,
+ 1.1567754694289696,
+ -0.3035312158891385,
+ -1.6790399138845546,
+ -4.018225240599545,
+ -3.051423562200694,
+ -0.3980362252874061,
+ -0.20814495051095983,
+ 1.0812307706731816,
+ 2.082819580086166,
+ 2.1909038946574677,
+ 1.3307641927741178,
+ -0.09583525679270762,
+ -1.5069068887293835,
+ -2.223944982872494,
+ -1.8426214722291754,
+ -0.2634629607223992,
+ 0.4051259989430882,
+ 1.3827472913475403,
+ 2.1979592332018068,
+ 2.287124685930582,
+ 2.657038806768757,
+ 1.291022419156624,
+ -1.675181084670317,
+ -2.999333392013936,
+ -2.1105676910631024,
+ -1.1438384650341809,
+ 0.31946083408379716,
+ 1.6456246799720788,
+ 2.255441929498364,
+ 2.115912992570839,
+ 2.3908643785735952,
+ 1.0611997777236482,
+ -1.784125596026006,
+ -3.035006970642029,
+ -1.9553885402162752,
+ -0.8232510727314826,
+ 0.597562414984379,
+ 1.1390921309679434,
+ 1.2077939479270952,
+ 1.3151634971448365,
+ 2.5639093022044435,
+ 2.2568151545327395,
+ 1.8639862977956196,
+ 0.6665368647826477,
+ -0.8289072031669141,
+ -1.9580413860649435,
+ -2.443561807879292,
+ -3.3410930406887123,
+ -1.7762709076417194,
+ 1.1688375702455973,
+ 1.3474454448402566,
+ 1.6070489954737956,
+ 1.9707001169593692,
+ 0.20701978468658955,
+ -1.2389173629427992,
+ -2.1566857140363678,
+ -2.1236034921434497,
+ -1.1776939229433347,
+ 0.1742253596157666,
+ 0.6218964812122943,
+ 0.9092409104618152,
+ 1.330967857865286,
+ 1.3620925405690392,
+ -0.15212241669552282,
+ -1.5225487634155637,
+ -2.399420768249146,
+ -3.0239548513203256,
+ -1.8213013807177965,
+ 0.9370415322142623,
+ 2.236050973967682,
+ 2.20942652798357,
+ 2.0364134033057013,
+ 0.9853326916373585,
+ -0.5042535778797825,
+ -1.7671590817884253,
+ -2.452080294304891,
+ -3.0262856889519463,
+ -1.7344260877217548,
+ 1.1809024528249537,
+ 2.5330786637393565,
+ 2.260539094393424,
+ 1.8573933309167554,
+ 0.8279896791073045,
+ 0.6472621463594315,
+ -0.09650467410218215,
+ -1.9201163035582065,
+ -2.3888086868683405,
+ -0.7705331984742374,
+ 0.7195370333900892,
+ 1.9053757049691782,
+ 2.2522157612244684,
+ 1.6284013780279971,
+ 0.4511760348286353,
+ 0.19673067036908506,
+ -0.10618198327962412
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.9203500537196208,
+ -3.944665099697616,
+ -1.1358125781005266,
+ 0.03712917972451801,
+ 1.1986240811053355,
+ 1.8334830410644816,
+ 1.67581519327376,
+ 0.9542626897770451,
+ 0.8938855417162236,
+ 0.1740924853330757,
+ -1.6818008522232357,
+ -2.1959387642164168,
+ -0.8861596579937938,
+ 0.33148076753352,
+ 1.4523732868791128,
+ 2.0085467656061335,
+ 1.4541596741551996,
+ 0.05084290436598056,
+ -0.6675115804508038,
+ -1.3337792927897942,
+ -1.8627503620148993,
+ -1.5912076651811653,
+ -0.615486734912648,
+ 0.6183895345789603,
+ 1.6592402337208274,
+ 2.2220955694440083,
+ 1.5177736369492465,
+ -0.19437873121734084,
+ -1.0428772244656794,
+ -1.5258676805740767,
+ -1.8729095717975708,
+ -1.5972321942722663,
+ -1.7859956683085085,
+ -0.8079352412510414,
+ 1.6539198163708224,
+ 2.5352310331194627,
+ 1.475987136579969,
+ 0.43795941524367293,
+ -0.7927920099019503,
+ -1.6765064219670998,
+ -1.8335403374550985,
+ -1.377447419779827,
+ -1.6380824319648322,
+ -0.5338054581360911,
+ 1.8023057962385554,
+ 1.8464929715935854,
+ 0.3050685357149826,
+ -0.3207607462171955,
+ -1.1108903166957904,
+ -1.8084025549832585,
+ -1.7294676657762713,
+ -0.8857730120066306,
+ 0.333165253489802,
+ 1.4545635731506743,
+ 2.050422761811731,
+ 1.5507120329649446,
+ -0.00640270687232354,
+ -0.6827349854345699,
+ -1.3362829122727844,
+ -1.8648161249067146,
+ -1.775452992033639,
+ -2.0147392186905315,
+ -0.9076829045453534,
+ 1.4664945814901316,
+ 2.512667527498637,
+ 1.6393601627773295,
+ 0.718618283328611,
+ -0.5153169642164657,
+ -1.5248886182706822,
+ -1.8721273854135994,
+ -1.5955190552062282,
+ -1.7511034972465422,
+ -0.6980476452989549,
+ 1.5248352228628093,
+ 2.487803402730905,
+ 1.4755939972350036,
+ 0.43790091617820354,
+ -0.7584161576267916,
+ -1.2742100833576295,
+ -1.2264746532947268,
+ -0.689734403283646,
+ -0.38062922889568784,
+ 0.6927719769030362,
+ 1.6251204956807477,
+ 1.860895873158593,
+ 1.2746926136130126,
+ 0.14431581494385357,
+ -1.0476260815751042,
+ -2.6976080092239547,
+ -2.103703459468368,
+ -0.9634952800706545,
+ -1.060395556057264,
+ 0.5295274503843282,
+ 1.5322896017210879,
+ 1.878749117036884,
+ 1.3956428840898003,
+ 0.3156807719695225,
+ -0.8827366667074995,
+ -1.421202329732622,
+ -1.3079419007066924,
+ -0.579912364240691,
+ -0.20915181500853572,
+ 0.8075827221462095,
+ 1.684286014248668,
+ 2.007556548973336,
+ 2.406210358787514,
+ 1.2792454135647626,
+ -1.2138196390443434,
+ -2.347905316882229,
+ -1.8510904965042176,
+ -1.2656310792835173,
+ -0.1326034662842926,
+ 1.0622084991822858,
+ 1.7923877447909382,
+ 1.9299250866169002,
+ 2.2606457419306802,
+ 1.12575679818105,
+ -1.3499728305817589,
+ -2.460415623929256,
+ -1.781785842447839,
+ -1.0334352134908973,
+ 0.06946221447573181,
+ 0.4221749437425081,
+ 0.6975993009639634,
+ 1.147460149958874,
+ 1.7724844998064782,
+ 1.797570113199691,
+ 1.7300901820441943,
+ 0.9169413422259635,
+ -0.3038264891021812,
+ -1.3858679696894598,
+ -2.015662008947747,
+ -2.833088695845449,
+ -1.612039297249115,
+ 0.6053449270879839,
+ 0.7705537512461357,
+ 1.5189707666169212,
+ 2.0827435695702,
+ 0.5595772105523127,
+ -0.6734381755402902,
+ -1.621087114587034,
+ -1.8547406016836114,
+ -1.2893964128641786,
+ -0.28501167034060676,
+ -0.0234548591949068,
+ 0.42352039697689825,
+ 1.3401147260737647,
+ 1.5853787178929006,
+ 0.2698127391687219,
+ -0.9407384623129057,
+ -1.850572513478104,
+ -2.40274986787452,
+ -1.5438883541286506,
+ 0.47811272169046165,
+ 1.4531022574906862,
+ 1.702616482283963,
+ 1.8199654072203335,
+ 1.153631850917852,
+ -0.02453600328061335,
+ -1.184344425030332,
+ -1.9604380906008632,
+ -2.4884975547942694,
+ -1.522868825805662,
+ 0.7048224328818558,
+ 1.7595859506465867,
+ 1.8058124936654145,
+ 1.7287971155757555,
+ 1.072355499748294,
+ 1.0538421927703427,
+ 0.29098772355731994,
+ -1.7121849360570747,
+ -2.2811822424723007,
+ -0.9938230849414603,
+ 0.20926207322839907,
+ 1.32685436612204,
+ 1.8610022216102111,
+ 1.591458954625414,
+ 0.7850199447556473,
+ 1.051234529644672,
+ 0.5587893556841437
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.1472235243671407,
+ -4.445684480593696,
+ -1.9536794206699073,
+ -1.1864987563252924,
+ 0.09486367384800987,
+ 1.337858901469528,
+ 1.9973901466147919,
+ 1.994700833936781,
+ 2.3480527363184787,
+ 1.2893309315529884,
+ -1.7922246059604212,
+ -2.7823538300497206,
+ -1.842534937930479,
+ -0.9135673284380399,
+ 0.3319411798864518,
+ 0.7577066897098035,
+ 0.9220101070166405,
+ 1.0477496464875138,
+ 0.9974523311856426,
+ -0.2988153355178626,
+ -1.482098616749848,
+ -2.0314114888351247,
+ -1.684238208224141,
+ -0.6152220086192578,
+ 0.672588856224565,
+ 1.1621519774386742,
+ 1.1313502166365188,
+ 0.8280632133693566,
+ 0.5837875580785006,
+ -0.6128816504650021,
+ -1.6831097119825962,
+ -2.2025550979062403,
+ -2.7408470668578464,
+ -1.6486633738016085,
+ 1.296802546956026,
+ 2.4292390409153977,
+ 2.029887979858649,
+ 1.564503135590652,
+ 0.4232421083092757,
+ -0.9083009385172818,
+ -1.8404850969849187,
+ -2.166240879717858,
+ -2.926654189832776,
+ -1.5073154631772314,
+ 1.2014216245866562,
+ 1.3517842797714765,
+ 1.347259394304972,
+ 1.5559765853360028,
+ 0.018924268222154157,
+ -1.2476062188478798,
+ -1.9815184714642071,
+ -1.8415125618734685,
+ -0.9106703864644006,
+ 0.33644648834875174,
+ 0.7795174173001707,
+ 0.9456027441428468,
+ 1.0788391285593935,
+ 1.013380912375688,
+ -0.30265284439526724,
+ -1.4852549766533156,
+ -2.1845949520743684,
+ -2.723319038418127,
+ -1.599218374077872,
+ 0.956858660711679,
+ 2.1509427466396183,
+ 2.012216150158663,
+ 1.748360102113634,
+ 0.7301904444932963,
+ -0.6136088569170104,
+ -1.6846661920341752,
+ -2.2031786471359065,
+ -2.6898511404722623,
+ -1.5006247336380598,
+ 1.162508705197203,
+ 2.388561171159532,
+ 2.0317131319279533,
+ 1.5654840476264575,
+ 0.5699434954690202,
+ 0.35415619884659755,
+ -0.24280872214990984,
+ -1.6501457279915108,
+ -1.988908108481621,
+ -0.5321369511724997,
+ 0.8016933612142935,
+ 1.795283276094898,
+ 1.9980128263413697,
+ 1.340342082955747,
+ 0.22547195217866178,
+ -0.20215556188264153,
+ -0.3682968095012113,
+ -2.731624977049313,
+ -3.595909733822681,
+ -0.7102758268398445,
+ 0.626651549119112,
+ 1.6987671979079961,
+ 2.0229067836864756,
+ 1.4751395595094496,
+ 0.42624119214195905,
+ 0.16784573777950892,
+ -0.3688567763291969,
+ -1.5828628256523656,
+ -1.8533495897600702,
+ -0.40055396491512246,
+ 0.9233512059894187,
+ 1.9536723622284102,
+ 2.5576745104877863,
+ 1.6715079439720355,
+ -0.43165486611947784,
+ -1.4528990648376081,
+ -1.7970525720438433,
+ -1.9958953395925798,
+ -1.3355759519179806,
+ -0.08299742689096094,
+ 1.1969505627567563,
+ 2.0903619916430327,
+ 2.673304138498699,
+ 1.663066908268591,
+ -0.6825403928234758,
+ -1.7995890491047517,
+ -1.9250595293365735,
+ -1.9136728317169127,
+ -1.2617511925379479,
+ -1.2767213199460197,
+ -0.3802629218552759,
+ 1.7813740314904485,
+ 2.5175779898487844,
+ 1.2136111476209035,
+ 1.9581052790384166,
+ 1.8618419262397388,
+ 0.9422471755353469,
+ -0.3763748924651111,
+ -1.5841017748099562,
+ -2.466075382004486,
+ -1.723283062632147,
+ -0.6396500657760935,
+ -0.45424009226450307,
+ 1.7947514890771123,
+ 3.0578528264810103,
+ 1.6483993115071778,
+ 0.5541634868624341,
+ -0.783061699944781,
+ -1.7778398858012838,
+ -2.001636857819843,
+ -1.556708084379288,
+ -1.6860069099996542,
+ -0.6820978459213887,
+ 1.8061315101054183,
+ 2.681485170701339,
+ 1.440840630589666,
+ 0.24046447016017553,
+ -1.0543592886416835,
+ -1.6033529688642556,
+ -1.3424067405252995,
+ -0.5407774327648082,
+ -0.07465328501879571,
+ 0.9653348694893343,
+ 1.8659821437313497,
+ 1.966161877565449,
+ 1.1974504630689244,
+ -0.08101580245482215,
+ -1.3471947274250573,
+ -1.9313159231349535,
+ -1.48331281636302,
+ -0.2831777390926436,
+ 0.3572925594238225,
+ 1.2361619727282345,
+ 1.9699734234683173,
+ 2.053092687093004,
+ 2.4444124316181632,
+ 1.3806910886436008,
+ -1.7444438651261378,
+ -2.758547855549757,
+ -1.8945834512700555,
+ -1.0300762218347153,
+ 0.28159716203598795,
+ 1.4724375406572512,
+ 2.022299131251043,
+ 1.9003069328345459,
+ 3.589500662160079,
+ 2.4484379742385562
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.7893273192131407,
+ -2.729764591887709,
+ -1.8690258646422298,
+ -1.949244262033648,
+ -1.189938127916563,
+ 0.09751413067304704,
+ 1.3344993376310892,
+ 2.1383165300843423,
+ 2.774061139257418,
+ 1.878010409780659,
+ -0.9979296218718843,
+ -2.0140288062104954,
+ -1.9699385552488136,
+ -1.8400980451711164,
+ -1.092962644342333,
+ -1.0313285518646687,
+ -0.1462478637338865,
+ 1.6276338722002448,
+ 2.351323390548688,
+ 1.0133969879569518,
+ -0.2966434878302377,
+ -1.4839602411920894,
+ -2.018580972376566,
+ -1.681754450253306,
+ -0.7769583900182785,
+ -0.6202339747022683,
+ 0.11908311998533826,
+ 1.5490685677243818,
+ 2.106640285535949,
+ 0.7235784526636545,
+ -0.6084526584594906,
+ -1.7523786863035415,
+ -2.4064318300280902,
+ -1.7458419521737187,
+ 0.2326145200673868,
+ 1.0662836530028468,
+ 1.6105580378270878,
+ 2.024901723835139,
+ 1.568418473195111,
+ 0.4173180891758441,
+ -0.9055752468794894,
+ -1.9401517319955106,
+ -2.870837056728585,
+ -1.8256073311368466,
+ -0.08693256678329016,
+ 0.10533177033310567,
+ 1.824453845510009,
+ 2.860960851516775,
+ 1.2746256892408627,
+ 0.019504975716529763,
+ -1.2488905064192974,
+ -1.9687272379033405,
+ -1.8373266325399618,
+ -1.088173103590881,
+ -1.0431649015299334,
+ -0.21645427243904602,
+ 1.7417350984437021,
+ 2.3939839940198957,
+ 1.0100321698072832,
+ -0.29940419939685015,
+ -1.5238937295679271,
+ -2.122056954676376,
+ -1.5546261923130573,
+ -0.10403372733626735,
+ 0.644105361024269,
+ 1.3991663976160702,
+ 2.006169900604126,
+ 1.7511601251975102,
+ 0.7213137999454208,
+ -0.611830187306748,
+ -1.7552988301436372,
+ -2.3635189561618466,
+ -1.6308982330798085,
+ 0.1612706957784821,
+ 1.0539981521788095,
+ 1.6139325186979694,
+ 2.0265449434382403,
+ 1.7657860486859378,
+ 1.996531742702284,
+ 0.9832638049688425,
+ -1.8806108008767695,
+ -2.7714736434596206,
+ -1.6314787076644168,
+ -0.5311695549043214,
+ 0.8022605564301619,
+ 1.784759140333419,
+ 1.9933758592171216,
+ 1.5358579335594995,
+ 2.6962960880087175,
+ 1.7640010800928083,
+ -3.312808123100277,
+ -4.593882476554863,
+ -1.7350573276288297,
+ -0.7086323766096541,
+ 0.6270854551270693,
+ 1.68931845083612,
+ 2.0181748879811963,
+ 1.6739796599196142,
+ 1.8616119660083719,
+ 0.8718468381353399,
+ -1.8954330745072003,
+ -2.7455769082823562,
+ -1.5485069597759253,
+ -0.40183327747447894,
+ 0.8926592103120804,
+ 1.4172838293176786,
+ 1.2547030674861261,
+ 0.6654620984136702,
+ 0.2936772552028166,
+ -0.8160874512655136,
+ -1.7915033765367983,
+ -1.9988313810129918,
+ -1.3231182795592742,
+ -0.08301302871087464,
+ 1.1993773990133325,
+ 1.7662275652546706,
+ 1.413039821593848,
+ 0.41457921675216614,
+ -0.13772020739499397,
+ -1.099518856319608,
+ -1.9193658791809087,
+ -2.1064488626805646,
+ -2.5255567274700668,
+ -1.3927012675305304,
+ 1.5789461822045678,
+ 2.6904915853010882,
+ 1.94319934780421,
+ 1.2105489362511013,
+ 1.9665039206445192,
+ 1.8552360828332752,
+ 0.9470369565287107,
+ -0.28938389046899826,
+ -0.7919070582081359,
+ -0.9652180668306543,
+ -1.7064204050497138,
+ -1.5933513887971689,
+ 1.184362043738999,
+ 2.5837559654070827,
+ 2.023577668477925,
+ 1.645239264885351,
+ 0.5566078573618441,
+ -0.7811091049114052,
+ -1.7741169907641061,
+ -2.1836698416127764,
+ -2.684501115138398,
+ -1.5710237293632838,
+ 1.402977762247269,
+ 2.5356799633269027,
+ 2.014400451710924,
+ 1.4402479101904042,
+ 0.3774382529655741,
+ 0.11320205570316119,
+ -0.4291726347626007,
+ -1.4049517533151274,
+ -1.7475034462143355,
+ -0.3548617549361624,
+ 0.9617735387556117,
+ 1.869136513629748,
+ 1.9527485708527401,
+ 1.1962090725982395,
+ 0.02966585600472527,
+ -0.3180603684654747,
+ -0.6792632110472123,
+ -1.2446970159609014,
+ -1.396280307418833,
+ -0.035004280032051846,
+ 1.2310787696962142,
+ 2.0999343825658703,
+ 2.749836247756448,
+ 1.8939760606918332,
+ -0.8870767605386802,
+ -1.8802798690038929,
+ -1.9330388046917344,
+ -1.890535878068674,
+ -1.0333248771876087,
+ 0.283068685342844,
+ 1.4690267703129076,
+ 2.1761007306901656,
+ 4.593836894430722,
+ 3.3107684101165518
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.3449324970374129,
+ 0.16935192676760952,
+ -0.9779617971283956,
+ -1.873861255229322,
+ -1.9658793106554184,
+ -1.1891048682569545,
+ 0.09377785936118838,
+ 1.3601502749836887,
+ 2.005046082125602,
+ 1.6586921977549887,
+ 0.22947785402831777,
+ -0.3744284651548868,
+ -1.2481279147499555,
+ -1.9761318413940914,
+ -2.051308636903052,
+ -2.3816275399427216,
+ -1.1550590203507871,
+ 1.5074810582666351,
+ 2.695656737053917,
+ 1.8929858400100092,
+ 1.0207848719540098,
+ -0.2946066322460815,
+ -1.4834347448892895,
+ -2.0265610122032665,
+ -1.896326035472986,
+ -2.1411679162110318,
+ -0.9479856563355541,
+ 1.6044025184188295,
+ 2.726063073484703,
+ 1.7524979311663063,
+ 0.7322861548903654,
+ -0.5448605961402514,
+ -1.032970917971125,
+ -1.0903580086345819,
+ -0.9355184801103401,
+ -0.7611987083144927,
+ 0.4951595100798453,
+ 1.613512711374041,
+ 2.0410198041220275,
+ 1.5674509226442845,
+ 0.42309244266999246,
+ -0.876495015445071,
+ -1.576620391103435,
+ -1.3575860482809126,
+ -1.3421709688127699,
+ -1.1907873400303979,
+ 1.5163726574543626,
+ 2.936430369553986,
+ 1.9848402851878004,
+ 1.2825101197859439,
+ 0.024880720313468777,
+ -1.2472506732552235,
+ -1.9746823847844215,
+ -2.048298314189867,
+ -2.4221175052664723,
+ -1.2891029519841928,
+ 1.655662663382371,
+ 2.746739552418084,
+ 1.8915450983477786,
+ 1.0196119271996529,
+ -0.20368269154754395,
+ -0.6034959754614765,
+ -0.8393637489034632,
+ -1.1236613258532266,
+ -1.1456601539381543,
+ 0.18056392507861863,
+ 1.3995840132679613,
+ 2.0203138310575985,
+ 1.7496661071429696,
+ 0.7285381414382588,
+ -0.5488255913328631,
+ -1.0166774890325279,
+ -1.0581980566149032,
+ -0.9129273193479472,
+ -0.7396962514905792,
+ 0.4986327234034707,
+ 1.6151110129776156,
+ 2.204098269436215,
+ 2.7833731423905386,
+ 1.7894161822047305,
+ -1.3007392357998553,
+ -2.3613429469433185,
+ -2.0308900183249183,
+ -1.6394664904001193,
+ -0.5401569600559493,
+ 0.8010034337006241,
+ 1.788873105375818,
+ 2.188272558184288,
+ 4.441672080752536,
+ 3.1427214715656504,
+ -2.467130882965138,
+ -3.613875878420922,
+ -2.0149815591464977,
+ -1.742817358211191,
+ -0.7187045405390262,
+ 0.6259836479458883,
+ 1.6926045716478473,
+ 2.203961445552126,
+ 2.7582109658352865,
+ 1.740734261957767,
+ -1.391554381905004,
+ -2.4566511491996397,
+ -2.032481249196237,
+ -1.5582085936903647,
+ -0.5569692334523623,
+ -0.33826530944258076,
+ 0.2953202163395934,
+ 1.4792905759664514,
+ 1.9195253921966726,
+ 0.5201948492183595,
+ -0.8137300199099631,
+ -1.802232633765277,
+ -1.9967856355610065,
+ -1.331522911621002,
+ -0.21193353532734263,
+ 0.09428466737247067,
+ 0.5527107449985311,
+ 1.3366172914528869,
+ 1.5891966257856733,
+ 0.20305618262105268,
+ -1.0972447815703745,
+ -2.045494089255343,
+ -2.6893493869902803,
+ -1.8079001570030888,
+ 0.6948220042345158,
+ 1.7035687486670628,
+ 1.8823072915461692,
+ 1.9503551099966874,
+ 1.2233577410500682,
+ 1.971153954393429,
+ 1.8664830859780466,
+ 1.1345474370813096,
+ 1.22950561731859,
+ 0.21172754752025924,
+ -2.0408265147382454,
+ -2.049111679993844,
+ 0.06107585073734262,
+ 0.9936577245099377,
+ 1.52724905683905,
+ 2.0304211240429355,
+ 1.6607629253194565,
+ 0.5559062553819798,
+ -0.7806363380428235,
+ -1.8709317815869295,
+ -2.5285456560985917,
+ -1.7853795208748946,
+ 0.3933405395246639,
+ 1.2957244161207984,
+ 1.7210859412336716,
+ 2.0229223541787817,
+ 1.6513112100415717,
+ 1.786766788393409,
+ 0.6722699527982496,
+ -1.6660987332793982,
+ -2.672331746557451,
+ -1.5264915791659472,
+ -0.3603266395620978,
+ 0.9656112648261003,
+ 1.8683800002776165,
+ 1.9618436981238465,
+ 1.398411191258595,
+ 1.4378596931335668,
+ 0.4204894174793225,
+ -1.672638851444736,
+ -2.553590788421557,
+ -1.295393368691343,
+ -0.041299266459630384,
+ 1.241219686121085,
+ 1.8702751729914817,
+ 1.5921225725433001,
+ 0.3558062904458722,
+ -0.18804958830866036,
+ -1.1378927371108993,
+ -1.9385215959832187,
+ -1.9070371659727259,
+ -1.032431771638804,
+ 0.2802735169526506,
+ 1.5142656448488867,
+ 3.6202336545623752,
+ 2.748072482325716
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.3324096093096607,
+ 3.001039260753986,
+ 0.3466510557112072,
+ -0.9718483205097395,
+ -1.8767388049929683,
+ -1.9545058969167808,
+ -1.1914104703190602,
+ -0.019840733271614338,
+ 0.3498074460851521,
+ 0.7072811612913651,
+ 1.358750896037501,
+ 1.434414980087558,
+ 0.025960496299745478,
+ -1.2409601989030254,
+ -2.107351048231436,
+ -2.6849206769963025,
+ -1.656972869119126,
+ 0.7221723249285646,
+ 1.8519696899532698,
+ 1.9398994925977546,
+ 1.8913085209380773,
+ 1.0276580419358483,
+ -0.2926994482453559,
+ -1.47844382805593,
+ -2.1821452860070485,
+ -2.721573587168086,
+ -1.5996292354152828,
+ 0.9522748549597958,
+ 2.1447445216448173,
+ 2.011076298599606,
+ 1.7534166928544552,
+ 0.905985313176742,
+ 0.7995076834274764,
+ 0.047655382501222913,
+ -1.6939778217719426,
+ -2.2575398290343225,
+ -0.8414161261753419,
+ 0.4894755628271816,
+ 1.614640017408315,
+ 2.0291604559250334,
+ 1.5684878917401885,
+ 0.5763922212252642,
+ 0.4161843221653962,
+ -0.28964725623290477,
+ -2.008605764372511,
+ -1.9649708324367858,
+ 0.5387439895187619,
+ 1.7170186775326466,
+ 1.8214473541287093,
+ 1.983043546370364,
+ 1.2908685346495925,
+ 0.026116132411918274,
+ -1.2414749607902913,
+ -2.107454532965949,
+ -2.7362832524204697,
+ -1.7958961033204592,
+ 0.8391668800961105,
+ 1.888967312285303,
+ 1.9410257823432115,
+ 1.892245158751738,
+ 1.2096663514040664,
+ 1.1850321727863202,
+ 0.24788066594931268,
+ -1.6502668913260528,
+ -2.434630454912779,
+ -1.1207258568508704,
+ 0.17421050369007535,
+ 1.3991094099883992,
+ 2.0089262360215634,
+ 1.750951038831917,
+ 0.9027214418115507,
+ 0.7819289362757063,
+ -0.017359612999680796,
+ -1.5871803800276152,
+ -2.211649438763269,
+ -0.8393756791968452,
+ 0.49032391459927466,
+ 1.6714201443992782,
+ 2.3446150727129558,
+ 1.8083888889952293,
+ -0.14574189235670826,
+ -0.9087491115999244,
+ -1.5356044394879418,
+ -2.0274732276525107,
+ -1.6477070755261825,
+ -0.5384881692218145,
+ 0.7949006182279381,
+ 1.8772126881665294,
+ 4.232481162674867,
+ 3.1388396351456027,
+ -0.5312426359111286,
+ -1.0375720686065446,
+ -1.406924941193719,
+ -2.0109452152929936,
+ -1.750889800705901,
+ -0.716096100208865,
+ 0.619718681731859,
+ 1.7632416507261137,
+ 2.440581466086355,
+ 1.844069073419287,
+ -0.2726871178616365,
+ -1.083530589299236,
+ -1.621267983252573,
+ -2.030251896335479,
+ -1.7645839350838108,
+ -1.9490235910556277,
+ -0.7967124667755161,
+ 1.6427345852474717,
+ 2.702862823080117,
+ 1.6303982217718849,
+ 0.5253769604888752,
+ -0.8102905355957292,
+ -1.7914847029581251,
+ -1.9959087791778778,
+ -1.5333081372559763,
+ -1.6234283506618972,
+ -0.5535390199966208,
+ 1.671467326227784,
+ 2.61954411330283,
+ 1.4193379634649286,
+ 0.21086104953137366,
+ -1.0822482119862054,
+ -1.6674512157483434,
+ -1.4267879555480025,
+ -0.49795867552501477,
+ -0.03716304400081054,
+ 0.991095638300364,
+ 1.876948270103433,
+ 1.9575523405285817,
+ 1.2180113739609577,
+ 1.9650439412870722,
+ 2.061666771949416,
+ 2.7137224886627678,
+ 1.2982408871049569,
+ -1.4759913458394887,
+ -1.6022802301507564,
+ -1.091960212707929,
+ -1.0386619433002626,
+ 0.3561059490958344,
+ 1.5210777803903024,
+ 2.03522354950838,
+ 1.6510945120509948,
+ 0.5596217063062188,
+ -0.7322629269008538,
+ -1.2570231862126586,
+ -1.2128543388081285,
+ -0.7923029173173337,
+ -0.5187978211980977,
+ 0.6679763318850344,
+ 1.7148730871294968,
+ 2.200084098156232,
+ 2.676490640059601,
+ 1.4799743129505132,
+ -1.1930899159941657,
+ -2.420880943476225,
+ -2.0278160852135323,
+ -1.526820013811893,
+ -0.3660466691840189,
+ 0.959777142617256,
+ 1.8641498440278317,
+ 2.1538329406488286,
+ 2.564027143095956,
+ 1.337544903255143,
+ -1.3639567936312886,
+ -2.5875707794131593,
+ -1.987622341050392,
+ -1.2986494812394573,
+ -0.1670684824855069,
+ 0.16365282258484873,
+ 0.5873288422191096,
+ 1.4448785027447621,
+ 1.591355849811686,
+ 0.16109689884227038,
+ -1.1316679889003194,
+ -1.9418631832371012,
+ -1.895885492045479,
+ -1.0350678906303892,
+ 0.1829271257163328,
+ 1.0475474048639404,
+ 0.9719714549370367
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.3040351483188264,
+ 4.524044990800942,
+ 1.5142358586774014,
+ 0.3432732829532813,
+ -0.9801305803346803,
+ -1.873937241135527,
+ -1.9561076476193517,
+ -1.3831796164390575,
+ -1.4463060750405938,
+ -0.5430440975498771,
+ 1.8964050445286675,
+ 2.6150681438918317,
+ 1.281384390434106,
+ 0.024161127200650112,
+ -1.2557885124739725,
+ -1.8304961295037472,
+ -1.4425613931752035,
+ -0.36943763030187937,
+ 0.21591298401970882,
+ 1.1513550506679944,
+ 1.9424526795592005,
+ 1.8997148029535225,
+ 1.0170536853659613,
+ -0.29703362254630455,
+ -1.5268098191931287,
+ -2.126855913215122,
+ -1.5587576153344933,
+ -0.10600335901351363,
+ 0.6434655078005214,
+ 1.4023091489734927,
+ 2.0136507230030363,
+ 1.9582513641627626,
+ 2.2770043263617006,
+ 1.1584636390036762,
+ -1.718673657304036,
+ -2.7731543955091893,
+ -1.8078823867922365,
+ -0.8386895485252407,
+ 0.4956151479993311,
+ 1.6145429085418483,
+ 2.0318735690432796,
+ 1.7725869810743644,
+ 2.2180969885258452,
+ 0.896717022496539,
+ -1.8063608750232805,
+ -1.8886277944675245,
+ -0.6650845758731116,
+ -0.2344553410668893,
+ 0.8748270283737033,
+ 1.8257025412229324,
+ 1.993659108803732,
+ 1.2807554885984638,
+ 0.021915325042829482,
+ -1.2589408614751751,
+ -1.87055086945603,
+ -1.526523947354391,
+ -0.33381665679105255,
+ 0.2229792813621829,
+ 1.1545460995862218,
+ 1.9450814536310814,
+ 2.0939111004916713,
+ 2.4528570480142973,
+ 1.222015362182064,
+ -1.4632884867355478,
+ -2.667842664815744,
+ -1.9318617410927896,
+ -1.118964284391374,
+ 0.17919756004928414,
+ 1.4017622484223293,
+ 2.0135183126988125,
+ 1.957088430749409,
+ 2.2333201717076396,
+ 1.024835515793781,
+ -1.5741437968435636,
+ -2.722770019885553,
+ -1.8081443879669326,
+ -0.838951949471595,
+ 0.42227722163322223,
+ 0.8990113672485717,
+ 1.0486852812040905,
+ 1.0652138567716873,
+ 0.9265520014728482,
+ -0.38210695134108297,
+ -1.5403127241765342,
+ -2.0393616805254973,
+ -1.6382725632271538,
+ -0.5354590284251559,
+ 0.7597857596895474,
+ 2.2023164179789276,
+ 1.783620267244313,
+ 1.6219844730183322,
+ 1.9702979739412334,
+ -0.19672002609312458,
+ -1.4117268038370439,
+ -2.023198898913474,
+ -1.7419871809396872,
+ -0.7136693741632971,
+ 0.5659857873857681,
+ 1.0740795873834152,
+ 1.152872120664156,
+ 0.957004484988588,
+ 0.7480127611505417,
+ -0.5144686670466105,
+ -1.62543906186604,
+ -2.20539592365312,
+ -2.7112016681853026,
+ -1.5393187708676546,
+ 1.0979731219344615,
+ 2.3179359275893994,
+ 2.032142437506649,
+ 1.6304235595907672,
+ 0.5246758760772525,
+ -0.8161023555473018,
+ -1.7970926060050214,
+ -2.1867831025819644,
+ -2.632112682968318,
+ -1.414973004511748,
+ 1.2847325155941547,
+ 2.516044863853903,
+ 2.017404410554265,
+ 1.420497500883265,
+ 0.34127640615486304,
+ 0.06632846763981054,
+ -0.4336417927715109,
+ -1.4693432958759063,
+ -1.7516652605065453,
+ -0.321574278325624,
+ 0.9958914234786923,
+ 1.8893824533839672,
+ 1.9501334837728033,
+ 1.2170179403544918,
+ 2.0957309950908374,
+ 3.0208813046838063,
+ 1.8194379687695794,
+ -0.27901747654413545,
+ -0.46824587126177886,
+ -1.768098495968825,
+ -2.6118604458221033,
+ -0.9614686817720008,
+ 0.35985889020109396,
+ 1.5312622003838214,
+ 2.029001943253728,
+ 1.6510688896045598,
+ 0.7149756735156896,
+ 0.5482146856717738,
+ -0.12152365976707039,
+ -1.629868086642245,
+ -2.099297054884499,
+ -0.6665284005043307,
+ 0.6703299960766099,
+ 1.7984320544918253,
+ 2.4086811303342324,
+ 1.6457605732238094,
+ -0.20919952531073815,
+ -1.1286455242592148,
+ -1.653160203594572,
+ -2.029118245609249,
+ -1.5322840469592698,
+ -0.35669877748476553,
+ 0.9644587781705176,
+ 1.9775268385555913,
+ 2.5796881657652366,
+ 1.6733577407784541,
+ -0.4698656155784769,
+ -1.507326741146137,
+ -1.820053896810844,
+ -1.9895027718420668,
+ -1.4951519474517332,
+ -1.6033971109388736,
+ -0.664422407557729,
+ 1.905487221664771,
+ 2.675175420426147,
+ 1.3830952317894742,
+ 0.15766047939598035,
+ -1.1404560723513892,
+ -1.9380317357568988,
+ -1.8970503989922982,
+ -1.2193426421793228,
+ -1.9610213866312722,
+ -1.2121552117266003
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.4322868685182772,
+ 4.920160222769831,
+ 2.3998744209516976,
+ 1.7465618331880715,
+ 0.33820512500769023,
+ -1.2235842302671824,
+ -2.2489266735812103,
+ -2.531946770908118,
+ -3.071703838532129,
+ -1.812656088640219,
+ 1.947090053364566,
+ 3.1878068986358192,
+ 2.336930809744425,
+ 1.465252429775574,
+ 0.09307995047515309,
+ -0.30718537037049687,
+ -0.7674648349175871,
+ -1.5090613842974683,
+ -1.7213204385506036,
+ -0.09426788715175659,
+ 1.4224752372959077,
+ 2.332230550386159,
+ 2.2135235629729832,
+ 1.143889349060716,
+ -0.32185869380233023,
+ -0.812585367406428,
+ -1.0477175200836606,
+ -1.2859295699757174,
+ -1.2668161203455248,
+ 0.287749685686258,
+ 1.7118287619791022,
+ 2.5796335653068154,
+ 3.290248936613149,
+ 2.08506691802242,
+ -1.2350670975350204,
+ -2.537480714530701,
+ -2.375827542727816,
+ -2.1093589343790344,
+ -0.933034257932267,
+ 0.6590330790811566,
+ 1.9571877267253928,
+ 2.6140331287517435,
+ 3.6202712723173294,
+ 1.9877729437145775,
+ -1.036840604579903,
+ -1.2387356751807381,
+ -1.8451211566696448,
+ -2.3986380436459065,
+ -0.46939884191478365,
+ 1.1018265402192793,
+ 2.20442469748998,
+ 2.33559218510213,
+ 1.4616939243074418,
+ 0.08737583131323227,
+ -0.3223655096014495,
+ -0.7635035141633149,
+ -1.5772044384078152,
+ -1.7506235370882062,
+ -0.08966315594114438,
+ 1.4262601567996807,
+ 2.482544393033708,
+ 3.173699797008577,
+ 1.9732303281375778,
+ -0.8134236764947356,
+ -2.14025357250888,
+ -2.2850638250714526,
+ -2.2661021331764943,
+ -1.2707058729595553,
+ 0.28920004622648515,
+ 1.7144105172998436,
+ 2.5812242597977035,
+ 3.2296915712114598,
+ 1.9126916191443057,
+ -1.090387408879359,
+ -2.496966217977144,
+ -2.378647607722517,
+ -2.1108140502025163,
+ -1.1334867095190522,
+ -1.0236448697714982,
+ -0.1333423059519019,
+ 2.1342364809041627,
+ 2.7516120073734385,
+ 1.0521997923847997,
+ -0.523865412225025,
+ -1.880332432584814,
+ -2.409353251313299,
+ -1.8989525245844965,
+ -0.7457134632965944,
+ -0.7777004446079199,
+ -0.2990312656268363,
+ 3.6038765965512196,
+ 4.8268317093414135,
+ 1.2472897929875941,
+ -0.3052938040348575,
+ -1.732358915031242,
+ -2.3975884649011023,
+ -2.0275528118182744,
+ -0.9731801763911336,
+ -0.81016379620452,
+ 0.018238296677205453,
+ 2.0797050374750823,
+ 2.6219457362340957,
+ 0.905800725885197,
+ -0.6779069831215421,
+ -2.0531914215364266,
+ -2.776248966646404,
+ -1.9309806748956653,
+ 0.14732754052239516,
+ 1.1869229796837413,
+ 1.8868143544303568,
+ 2.409865989522459,
+ 1.896653899474868,
+ 0.5435591953972475,
+ -1.0342586926532793,
+ -2.2835741509686924,
+ -3.002908437497469,
+ -1.9796998481255668,
+ 0.45937079432536576,
+ 1.6482031825555417,
+ 2.1012121546188234,
+ 2.382194701013694,
+ 1.8692571503973334,
+ 2.0313722607426588,
+ 0.8324465772771764,
+ -2.14374784503714,
+ -3.1926892291629274,
+ -1.7285186847263607,
+ -0.3093355427081612,
+ 1.2486246620534767,
+ 2.2589554541801826,
+ 2.2913428839561565,
+ 1.5555488883529036,
+ 2.4727958493946938,
+ 1.8742065600599853,
+ 1.174356686052157,
+ 0.9694348973450971,
+ -2.0155318920280823,
+ -3.6349352540346493,
+ -2.1834475181185677,
+ -1.0766609375307166,
+ 0.4982756252180162,
+ 1.857320377388657,
+ 2.4087951006225268,
+ 2.1588050537448096,
+ 2.451542201967802,
+ 1.1640053126735286,
+ -2.1032688386472325,
+ -3.2833852623762203,
+ -1.9957311389456576,
+ -0.7250898018186144,
+ 0.8029964988642043,
+ 1.3847136185665165,
+ 1.3453873574247577,
+ 0.9794465261152996,
+ 0.6868286541715095,
+ -0.731895892200891,
+ -1.999801245876026,
+ -2.411006775004912,
+ -1.7575389068273948,
+ -0.35273837912993655,
+ 1.1867235808687264,
+ 1.8293030548921674,
+ 1.5594100971601346,
+ 0.6936151146987302,
+ 0.1782476452019616,
+ -1.0861526295850534,
+ -2.1878400072592856,
+ -2.5702114523651955,
+ -3.148737624254071,
+ -1.8995171782310174,
+ 1.8652666379814429,
+ 3.119160517772742,
+ 2.370084508052757,
+ 1.5867033156224726,
+ 0.11664567432662758,
+ -1.4090697212913483,
+ -2.3188296668768134,
+ -2.4614745911868914,
+ -4.821119713391281,
+ -3.3514829499752175
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.73248995815633,
+ 5.436490492934987,
+ 2.9322256314295085,
+ 2.4413619394510375,
+ 0.8967282274599968,
+ -1.0486216979243677,
+ -2.5302065067255075,
+ -3.18044499913241,
+ -3.9523266591990933,
+ -2.4580843126826006,
+ 2.1084493946682827,
+ 3.6503908415299318,
+ 2.9335597679277265,
+ 2.155020380540871,
+ 0.6462428754707599,
+ 0.28769494212896535,
+ -0.5494893764432923,
+ -2.0798721519847696,
+ -2.6305974045445533,
+ -0.6056916575129282,
+ 1.3147138449817595,
+ 2.6761277246468347,
+ 2.858314383132566,
+ 1.8103455879595316,
+ 0.1429918504959092,
+ -0.33894158308664984,
+ -0.91647162357387,
+ -1.8569283258165679,
+ -2.132301704978255,
+ -0.14294990783795294,
+ 1.7133708587275076,
+ 3.0179347993555585,
+ 3.938692394323033,
+ 2.6112437562365063,
+ -1.1284847131421547,
+ -2.625536895629405,
+ -2.7777403728946823,
+ -2.7766747189202485,
+ -1.5792676551340923,
+ 0.31961877205618716,
+ 2.068489877359718,
+ 3.143970985997665,
+ 4.450141526181361,
+ 2.5735324837094176,
+ -0.8000969317838748,
+ -1.0650561548289403,
+ -2.456609462984232,
+ -3.448841968944877,
+ -1.0478990783127273,
+ 0.8882737126537164,
+ 2.4492449834766585,
+ 2.931836130504797,
+ 2.1506724958079544,
+ 0.6390924572156015,
+ 0.28149333809808286,
+ -0.5096232522087487,
+ -2.194979277826914,
+ -2.6767535175525206,
+ -0.6001811892151042,
+ 1.3192407506687096,
+ 2.819535534509376,
+ 3.695259616240359,
+ 2.420267055704082,
+ -0.6089939063210883,
+ -2.0813233124126813,
+ -2.5934188737733357,
+ -2.8947111391887366,
+ -1.9499724566463708,
+ -0.14058540838519024,
+ 1.7172385680441125,
+ 3.0207559657753533,
+ 3.8669193553101087,
+ 2.4107041118663544,
+ -0.973280330582874,
+ -2.5860894830126666,
+ -2.781800945719607,
+ -2.7787186362697884,
+ -1.8457132004259182,
+ -1.8765559136833787,
+ -0.6218295042248491,
+ 2.721664439014964,
+ 3.689967105566079,
+ 1.70934427985791,
+ -0.14998881221030755,
+ -1.9519074934142766,
+ -2.8959817258273173,
+ -2.5886538783915847,
+ -1.4095309719479028,
+ -2.0411627142963935,
+ -1.1643477906119697,
+ 4.6674074574006585,
+ 6.33313892889379,
+ 1.9224751851561237,
+ 0.12084472632669736,
+ -1.739834836569865,
+ -2.836584520238977,
+ -2.706458021255319,
+ -1.6670881737234458,
+ -1.6320731873030965,
+ -0.44008627541928264,
+ 2.684933151682026,
+ 3.5707204985504752,
+ 1.5466699838987483,
+ -0.34308961539452276,
+ -2.1400334592528636,
+ -3.003396670685457,
+ -2.229306218600576,
+ -0.22712622789470838,
+ 0.8145920893867507,
+ 1.9644082577293547,
+ 2.8999192762047317,
+ 2.589625964040607,
+ 1.1336760419039087,
+ -0.8000368951982183,
+ -2.487947706995658,
+ -3.370309368098641,
+ -2.3516578815109415,
+ 0.15823900987187287,
+ 1.4158468482089783,
+ 2.2871364029109476,
+ 2.944078092387277,
+ 2.6234444545563775,
+ 2.9743406316751453,
+ 1.4055511466797161,
+ -2.5720015665542073,
+ -4.00737071988602,
+ -2.4234945346674457,
+ -0.8604602179245823,
+ 1.0793605071374084,
+ 2.547443820098993,
+ 2.910511029268158,
+ 2.3015665506034786,
+ 2.7886335827381523,
+ 2.0319487004203935,
+ 1.8480607240285845,
+ 1.6219601036368902,
+ -2.2615448027834804,
+ -4.312291307278796,
+ -2.836397488183862,
+ -1.736471218055556,
+ 0.11584803670205317,
+ 1.9221054971874982,
+ 2.889973380919237,
+ 2.8998449777021373,
+ 3.3998995663051925,
+ 1.7689656960777838,
+ -2.44716826120098,
+ -4.00054166906184,
+ -2.678540714637439,
+ -1.3428218922129855,
+ 0.45782035647943353,
+ 1.0700526004067579,
+ 1.3210124721288334,
+ 1.5318110098056112,
+ 1.4719586517660246,
+ -0.41162443891397604,
+ -2.132563827451724,
+ -2.9413611613396404,
+ -2.4521415951675065,
+ -0.9118513133091998,
+ 0.9521983593080187,
+ 1.657626851712917,
+ 1.626036541697122,
+ 1.215111754034027,
+ 0.8739709845616676,
+ -0.8674048533186257,
+ -2.4264270364464,
+ -3.1916179680560273,
+ -4.002500545314585,
+ -2.537244093821865,
+ 1.9838824598402256,
+ 3.524620890317806,
+ 2.941338583592137,
+ 2.280374014263365,
+ 0.6343380568170057,
+ -1.2966989694126212,
+ -2.6574078264008545,
+ -3.1426977904927393,
+ -6.328458222468723,
+ -4.460536546084536
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.819683978800072,
+ 2.7894181759964325,
+ 1.9507237038376068,
+ 2.0663504720993746,
+ 1.2921345831037916,
+ -0.05544765264767621,
+ -1.3702494623613684,
+ -2.2407992098216756,
+ -2.9159981793596943,
+ -1.9853562891615555,
+ 1.0134707530651963,
+ 2.0766848486350686,
+ 2.064167647072401,
+ 1.9583874391412865,
+ 1.1960069188984797,
+ 1.1452222084038621,
+ 0.19293370264380197,
+ -1.723281479784688,
+ -2.508846523222826,
+ -1.1086041477982151,
+ 0.26567672349996385,
+ 1.5308242768557998,
+ 2.122777002785973,
+ 1.798102044796303,
+ 0.8665762681300271,
+ 0.7152094120195124,
+ -0.08654517352415377,
+ -1.646438910271791,
+ -2.259386884650749,
+ -0.8065337853443871,
+ 0.5957988644104939,
+ 1.8150785563048943,
+ 2.5031718674983168,
+ 1.8287619464597085,
+ -0.20328593504080442,
+ -1.0636159566882737,
+ -1.6679740046700426,
+ -2.1341096718275514,
+ -1.6825680519435706,
+ -0.48596004891561956,
+ 0.911651800125423,
+ 2.019778198720871,
+ 2.9991090991271814,
+ 1.9204387203442634,
+ 0.1391745919852846,
+ -0.06339121274925295,
+ -1.925189460325784,
+ -3.0397931392715414,
+ -1.3795766483529643,
+ -0.06788877681767433,
+ 1.2781399231478743,
+ 2.062894893610844,
+ 1.9554951978116903,
+ 1.1909892016886872,
+ 1.1588571773707879,
+ 0.2698442447271829,
+ -1.8456752867460302,
+ -2.5544459698655224,
+ -1.1051042139329847,
+ 0.2685476772216541,
+ 1.56832678922331,
+ 2.195881939014828,
+ 1.6235497106456318,
+ 0.1485267217466082,
+ -0.616871267706608,
+ -1.4397212021794006,
+ -2.1069338354867364,
+ -1.868951326634684,
+ -0.8041085056492373,
+ 0.5993974646937955,
+ 1.8182170066973995,
+ 2.458613281276179,
+ 1.7098394358178983,
+ -0.13106168424781864,
+ -1.0518356714965378,
+ -1.6715593937037245,
+ -2.135851961726848,
+ -1.8907962454705447,
+ -2.148757683702358,
+ -1.073873911589307,
+ 1.9746467226833377,
+ 2.926658337285619,
+ 1.7467729311514777,
+ 0.605253034953723,
+ -0.8014671847006116,
+ -1.8578103369286596,
+ -2.108372914453909,
+ -1.6547210760273914,
+ -2.9273730675028635,
+ -1.9240302184156086,
+ 3.4850268114909917,
+ 4.8398981210535315,
+ 1.8522602420184462,
+ 0.7908649248457007,
+ -0.6153885732743529,
+ -1.7535249974489193,
+ -2.130175001624595,
+ -1.796766392433633,
+ -2.0096373619059795,
+ -0.957945451151129,
+ 1.9932207027069022,
+ 2.903696934106611,
+ 1.661855720579421,
+ 0.46975535240930166,
+ -0.8934226589487054,
+ -1.438896618716807,
+ -1.2960536561925264,
+ -0.736806998697076,
+ -0.3724817615873286,
+ 0.816374256864157,
+ 1.865192484562936,
+ 2.1144596798351416,
+ 1.429687720513394,
+ 0.13476267052749583,
+ -1.2204428319402298,
+ -1.8124321603736246,
+ -1.467832919208119,
+ -0.47453197242790524,
+ 0.08168043727299341,
+ 1.118502322374669,
+ 2.006737098001775,
+ 2.2337660369175905,
+ 2.687054327848914,
+ 1.4938952907376593,
+ -1.643057379380618,
+ -2.819148691257735,
+ -2.060475374111723,
+ -1.2665759750746495,
+ 0.07610352176926419,
+ 1.3888862483732025,
+ 2.095808570646893,
+ 2.107987286227721,
+ 2.7456066665555476,
+ 1.271944523754229,
+ 1.8238967253973655,
+ 1.7084050466740508,
+ -1.2152626211743884,
+ -2.6833129639966478,
+ -2.129530394504392,
+ -1.7608484482944864,
+ -0.6321011452145482,
+ 0.7792164964772385,
+ 1.846149815636922,
+ 2.306330786095999,
+ 2.8438312142949402,
+ 1.6756857363091695,
+ -1.451573176753187,
+ -2.6453585884763022,
+ -2.127373197327774,
+ -1.5506242085819364,
+ -0.44824868054800254,
+ -0.18268525865361224,
+ 0.41442820390803714,
+ 1.5011443892695864,
+ 1.8895645580133047,
+ 0.42046411119600346,
+ -0.9715534020200536,
+ -1.9503756260245093,
+ -2.069734083045907,
+ -1.2984064842239926,
+ -0.08262466843316126,
+ 0.27203280211591835,
+ 0.6799676128800125,
+ 1.3372616197956073,
+ 1.5254177291245945,
+ 0.08424391238985315,
+ -1.2592834466007294,
+ -2.197046408243625,
+ -2.8861530990870055,
+ -1.9992214727968096,
+ 0.895219212499959,
+ 1.9327412217110886,
+ 2.0222579763343487,
+ 2.00863970999952,
+ 1.1295385444027248,
+ -0.2513391574854159,
+ -1.5149944272748928,
+ -2.2852540305388525,
+ -4.840088065772997,
+ -3.4934322432349196
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.3646457702045796,
+ -3.0256571190294568,
+ -0.2882714592299161,
+ 1.0914725942984955,
+ 2.0063056549909204,
+ 2.036767240471738,
+ 1.19131007331954,
+ -0.06354929178566718,
+ -0.4745375577358294,
+ -0.8124451956071596,
+ -1.3792862976706837,
+ -1.4182372598511797,
+ 0.050523805385433614,
+ 1.3681396320460968,
+ 2.2432552828812318,
+ 2.843838752735888,
+ 1.7357323406193428,
+ -0.8181230184016024,
+ -2.0262096025527097,
+ -2.065291302114537,
+ -1.9629392351999624,
+ -1.01445326384019,
+ 0.38513588363814993,
+ 1.609844442737436,
+ 2.3088929451968254,
+ 2.865909207693782,
+ 1.6654078651660467,
+ -1.0552660337270285,
+ -2.322239593888966,
+ -2.128183687047153,
+ -1.8066864293789984,
+ -0.8768436499669952,
+ -0.7398980201095222,
+ 0.01904161389576098,
+ 1.759438822707102,
+ 2.314976065965577,
+ 0.815019188842493,
+ -0.5908311059795344,
+ -1.7475726287552658,
+ -2.134997182392282,
+ -1.6019020098013648,
+ -0.5253314380531016,
+ -0.32138543587226037,
+ 0.374344957498253,
+ 2.100518878084912,
+ 2.047385519629727,
+ -0.6343699551410725,
+ -1.9053996599935685,
+ -1.9519172438896135,
+ -2.0711736668625953,
+ -1.2985248767411317,
+ 0.05031155354305623,
+ 1.3685666779152765,
+ 2.2431765610355217,
+ 2.897934496736041,
+ 1.8835416690509323,
+ -0.944769629530058,
+ -2.0665197797396435,
+ -2.0663368065061394,
+ -1.9638076929109538,
+ -1.2029070745492736,
+ -1.153615003260085,
+ -0.1975423645479667,
+ 1.7270676099357591,
+ 2.5165020990771914,
+ 1.114963010700712,
+ -0.2609369421339392,
+ -1.5297503127123417,
+ -2.1258518599412723,
+ -1.8039780806752517,
+ -0.8733202127928631,
+ -0.723236520574307,
+ 0.08239053774151273,
+ 1.6507477753883522,
+ 2.26754665667554,
+ 0.812754953166647,
+ -0.5917828153849659,
+ -1.8146346011003673,
+ -2.526578127194548,
+ -1.9268004103510668,
+ 0.22627041826041494,
+ 1.0580011568277703,
+ 1.6675426903112935,
+ 2.1377212294337227,
+ 1.6886821593407355,
+ 0.491881713768056,
+ -0.9084704632455997,
+ -2.0204321486257903,
+ -4.525180854458728,
+ -3.3466283260654506,
+ 0.6851978299616196,
+ 1.2643298274173642,
+ 1.537274793722854,
+ 2.1274587985431848,
+ 1.8033128890297443,
+ 0.6810752664084292,
+ -0.7265471283655008,
+ -1.9068825496801218,
+ -2.621454824885657,
+ -1.959663466183165,
+ 0.35938941736549523,
+ 1.2394596447460424,
+ 1.7537100560448444,
+ 2.135527215857478,
+ 1.8071454607646114,
+ 1.9790357527441413,
+ 0.7823686787817946,
+ -1.741325466302428,
+ -2.8335057923191225,
+ -1.6700663505666973,
+ -0.477925914339699,
+ 0.9247520772156739,
+ 1.9225429271292909,
+ 2.087107722838318,
+ 1.5535955883590093,
+ 1.6253478569093096,
+ 0.5222448048391114,
+ -1.7614383340288517,
+ -2.7295171766637636,
+ -1.4385395188664312,
+ -0.1445180133203325,
+ 1.212929449303308,
+ 1.8404289116512733,
+ 1.5445229845075423,
+ 0.45767824348255404,
+ -0.06722046926272314,
+ -1.1113281663581258,
+ -2.0055632275262023,
+ -2.0391679892857195,
+ -1.171415475975285,
+ 0.19423339356074273,
+ 1.5106309305952137,
+ 2.407009314222067,
+ 1.7488134766764536,
+ 1.6082569360137167,
+ 1.7356538138089748,
+ 1.0933960314006224,
+ 0.9825975449991723,
+ -0.45153559383194963,
+ -1.6529189096358745,
+ -2.1468158297561493,
+ -1.6930525234276728,
+ -0.5143647910780943,
+ 0.8505720924679132,
+ 1.4181885406719752,
+ 1.328190225531114,
+ 0.7719214782265115,
+ 0.44172790081651736,
+ -0.7767827647106089,
+ -1.8471712597094592,
+ -2.3118788620626742,
+ -2.798860954747303,
+ -1.5282625901677607,
+ 1.3010126307914949,
+ 2.59638776929487,
+ 2.131132619263394,
+ 1.556184742196326,
+ 0.3085174366163846,
+ -1.079010194956032,
+ -1.9934078167388585,
+ -2.2498864819053574,
+ -2.6644486180180325,
+ -1.3697030278514633,
+ 1.4730918172201568,
+ 2.7565804661828084,
+ 2.0765646719006177,
+ 1.3073482528323912,
+ 0.09167662158602886,
+ -0.2792277855598038,
+ -0.6878350180452152,
+ -1.4735751683007525,
+ -1.5873621336595765,
+ -0.09201989564570152,
+ 1.2560172762738178,
+ 2.068127463036476,
+ 1.968253061135202,
+ 1.0227779492317444,
+ -0.27673824753963316,
+ -1.2747457264862219,
+ -1.1452635229480694
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.3387872586013247,
+ -4.512222503153817,
+ -1.3074045321339225,
+ 0.027573691541651773,
+ 1.3558502262189724,
+ 2.0884516805128834,
+ 1.9182541143341982,
+ 1.1027105806359947,
+ 1.038752532214859,
+ 0.21239787831692625,
+ -1.9225308368151495,
+ -2.515622465937527,
+ -1.0238951056019587,
+ 0.36356429015244207,
+ 1.6455149867093557,
+ 2.279271794172995,
+ 1.6546927730283223,
+ 0.0701722069641453,
+ -0.7423334186768403,
+ -1.511076050495431,
+ -2.1232807846555937,
+ -1.8230415549978398,
+ -0.716058755429432,
+ 0.6914497782356847,
+ 1.883449760806421,
+ 2.5255330165841388,
+ 1.7291288054102902,
+ -0.20964474338411532,
+ -1.171592922517559,
+ -1.7319860147702375,
+ -2.1372004196331504,
+ -1.831925925204157,
+ -2.0517944701867235,
+ -0.933134410885015,
+ 1.885009421169664,
+ 2.894813496095935,
+ 1.6927994974480032,
+ 0.5139619782636946,
+ -0.8908884895638599,
+ -1.9058253622457453,
+ -2.0946138101318246,
+ -1.5830816150708953,
+ -1.8868712658923432,
+ -0.6215960588275059,
+ 2.0515611436324988,
+ 2.103325737290965,
+ 0.3611333479472674,
+ -0.3436623173475192,
+ -1.255314361017069,
+ -2.0590118039627656,
+ -1.9787003993197012,
+ -1.0234469057739544,
+ 0.36550235034933753,
+ 1.648048525240951,
+ 2.3268724417459374,
+ 1.7641035551410835,
+ 0.005848066215288829,
+ -0.7593475538414355,
+ -1.513955968197977,
+ -2.125654109832644,
+ -2.0331364109597567,
+ -2.3101127993194397,
+ -1.045272577767738,
+ 1.6690574391738833,
+ 2.8659389553281316,
+ 1.877231843999608,
+ 0.8333976440226677,
+ -0.573561591315915,
+ -1.7308911238368423,
+ -2.1363358375558033,
+ -1.8299974860549748,
+ -2.0117410098530177,
+ -0.807143195817851,
+ 1.73748801933021,
+ 2.840717985949661,
+ 1.6923771186477266,
+ 0.5139069679036875,
+ -0.8502596035023268,
+ -1.43583356076541,
+ -1.3891212418570402,
+ -0.7995594107360131,
+ -0.45430680711491844,
+ 0.7765255037636203,
+ 1.8464540816351422,
+ 2.1249834074794642,
+ 1.464907104348008,
+ 0.1793623403075888,
+ -1.1813058026647498,
+ -3.0513270638578804,
+ -2.3821012777259263,
+ -1.1220740233425988,
+ -1.2420515372140024,
+ 0.5898627717122191,
+ 1.7394130852594065,
+ 2.1439911047612075,
+ 1.6019092005753435,
+ 0.37467706320433747,
+ -0.9925097685641859,
+ -1.6042242779044473,
+ -1.4827259395830479,
+ -0.6746227382982726,
+ -0.2588583764811371,
+ 0.9078812801491218,
+ 1.9148004585311669,
+ 2.292662192309426,
+ 2.750551266263937,
+ 1.4660933382396126,
+ -1.377108223882209,
+ -2.6712536678856265,
+ -2.1139224888648123,
+ -1.4546395297978976,
+ -0.16606828528723758,
+ 1.1995140765955146,
+ 2.040297457562144,
+ 2.206579755810668,
+ 2.587433875534389,
+ 1.2925163602676208,
+ -1.534034858376004,
+ -2.8026208023088923,
+ -2.0371463108274916,
+ -1.1912121613981215,
+ 0.06320336831999313,
+ 0.4616646061698055,
+ 0.7838227254649722,
+ 1.3184807957047195,
+ 1.400193230110769,
+ -0.05071126692101407,
+ -1.368409979090543,
+ -2.10163654435241,
+ -1.9078424702489258,
+ -0.8950542993685696,
+ 0.4297420922830203,
+ 1.0040966105821134,
+ 1.1059892322304539,
+ 1.7339333034274762,
+ 1.6058895576724554,
+ 1.7385289966807782,
+ 2.3910263321098735,
+ 0.6524325412560456,
+ -0.7544076708846089,
+ -1.84166846699969,
+ -2.117814906618365,
+ -1.4815693429658703,
+ -0.3410022834868854,
+ -0.04695094210620997,
+ 0.4703939396737782,
+ 1.5365211621970574,
+ 1.8243338854095696,
+ 0.32241974240271815,
+ -1.0603166425001245,
+ -2.104327265050367,
+ -2.73506378573078,
+ -1.7612038518585271,
+ 0.5338102766190885,
+ 1.6414084916493021,
+ 1.9360267283078465,
+ 2.0795803582478896,
+ 1.3276959579584575,
+ -0.013209610701266245,
+ -1.3395416511682547,
+ -2.232051670879012,
+ -2.835955975438169,
+ -1.7391572738746908,
+ 0.7931639088360644,
+ 1.9930367697161766,
+ 2.0559456832111067,
+ 1.9778024266996586,
+ 1.2368890090777376,
+ 1.2207066013543768,
+ 0.34562422828020184,
+ -1.9562921035676355,
+ -2.6116777442478454,
+ -1.1462091753594974,
+ 0.22401580886616018,
+ 1.5030416854018198,
+ 2.1211873370571896,
+ 1.823215528462228,
+ 0.9102856278273582,
+ 1.231617918288828,
+ 0.6612338124396927
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.931734491698374,
+ -2.937192980363576,
+ -1.9808886892763287,
+ -2.042375445164957,
+ -1.2241391808947315,
+ 0.13752759554598767,
+ 1.4310298472005025,
+ 2.2596468127007294,
+ 2.9248360093007846,
+ 1.9717800782670085,
+ -1.078371533782488,
+ -2.1532953230989293,
+ -2.081850544023359,
+ -1.9223042004298565,
+ -1.1176065359356429,
+ -1.0422900479626085,
+ -0.12527819482619595,
+ 1.7069760027388194,
+ 2.451669683472501,
+ 1.0364949156958447,
+ -0.34680761924197806,
+ -1.586056410434633,
+ -2.127621822397515,
+ -1.7508109414115158,
+ -0.7824028508658075,
+ -0.6072883999034463,
+ 0.1540530189363886,
+ 1.6199048247476397,
+ 2.1879757156098596,
+ 0.7290226375866409,
+ -0.6738250521154602,
+ -1.8675145685614816,
+ -2.5566936642326548,
+ -1.8454580393258866,
+ 0.27567319276302477,
+ 1.1664598025309758,
+ 1.71653025502424,
+ 2.1308268051799484,
+ 1.6286594528430933,
+ 0.40511568247162216,
+ -0.9844939129597667,
+ -2.060094122698057,
+ -3.0406085002151815,
+ -1.9237839513840962,
+ -0.05640008600383612,
+ 0.1459721206474563,
+ 1.9181688499057865,
+ 2.9925221921321747,
+ 1.3145937101503817,
+ -0.014391315300919322,
+ -1.3423337848106764,
+ -2.0805741426777162,
+ -1.9193672485146334,
+ -1.1125440793036523,
+ -1.0538892518742269,
+ -0.19700480323153682,
+ 1.8254674261159507,
+ 2.4960904638538914,
+ 1.03291971795922,
+ -0.3497407399732885,
+ -1.6314624923362921,
+ -2.263035080319128,
+ -1.646958571930952,
+ -0.08079421190590481,
+ 0.7235191685985695,
+ 1.4981079351221327,
+ 2.1166002342815444,
+ 1.8255434971021687,
+ 0.7266675595303611,
+ -0.6773495798643565,
+ -1.8705419083226098,
+ -2.511042581526996,
+ -1.7228637782928788,
+ 0.1984075393444515,
+ 1.1526680366797672,
+ 1.7200592162495163,
+ 2.1325476226655367,
+ 1.836190423959143,
+ 2.06810882853737,
+ 1.0069781938321125,
+ -1.9844382434442736,
+ -2.9122365166951676,
+ -1.6966816220933545,
+ -0.5254384442156389,
+ 0.8767320377031902,
+ 1.8952407138668383,
+ 2.0921263220424455,
+ 1.589621553871975,
+ 2.7741345692582344,
+ 1.8084017310642235,
+ -3.4908622846201083,
+ -4.835480043142476,
+ -1.8083918108347277,
+ -0.7132332510728968,
+ 0.6934667177953713,
+ 1.7975349884964562,
+ 2.121420608098953,
+ 1.7375693834488388,
+ 1.92386164581424,
+ 0.8886272299518456,
+ -1.9978595665035,
+ -2.8817904420722913,
+ -1.6075036779094676,
+ -0.38873511301350266,
+ 0.9743085505495903,
+ 1.5318723537451486,
+ 1.3397520325514347,
+ 0.6741197266964033,
+ 0.26258632791780073,
+ -0.8910360413594345,
+ -1.90213457445184,
+ -2.0976192840804866,
+ -1.366359305049594,
+ -0.05248304059602706,
+ 1.294298722722006,
+ 1.8948124985492323,
+ 1.502756047481694,
+ 0.40853554883100485,
+ -0.19174799412209245,
+ -1.1867782564693723,
+ -2.0316810591019823,
+ -2.2065262199638247,
+ -2.639017287899961,
+ -1.4463154678761347,
+ 1.6770681183537157,
+ 2.8433706155745666,
+ 2.035649254976353,
+ 1.1983663368623734,
+ -0.1584767542251266,
+ -1.4490480082427275,
+ -2.1080395217667873,
+ -2.0676269765046986,
+ -2.675443170123061,
+ -1.2140661938487347,
+ 1.6951317857213843,
+ 1.811080905685736,
+ 1.2706429873125047,
+ 2.7482719941894223,
+ 2.13178109434176,
+ 1.7114770138044044,
+ 0.5521787321779977,
+ -0.8544438701308837,
+ -1.8843690736817702,
+ -2.294292221428362,
+ -2.8141970293995717,
+ -1.6385031797824192,
+ 1.49633792714865,
+ 2.688299288464548,
+ 2.1165806600979034,
+ 1.4914681352358863,
+ 0.35996210305816195,
+ 0.07236503161709298,
+ -0.47957502382758777,
+ -1.4633837241770389,
+ -1.803646120171868,
+ -0.33914923526498847,
+ 1.043136871945486,
+ 1.9813479339086275,
+ 2.0462903300839645,
+ 1.230987378381105,
+ -0.0066702453718623525,
+ -0.3813122574522406,
+ -0.7413008310296554,
+ -1.2910465068117447,
+ -1.4296089129641152,
+ -0.0019041393917916542,
+ 1.3236505277558535,
+ 2.221691448959081,
+ 2.9025260706137685,
+ 1.9907669166261805,
+ -0.9627663091508053,
+ -2.014749090155364,
+ -2.0452481194118484,
+ -1.9775254824472241,
+ -1.0575155902910054,
+ 0.33254590182084315,
+ 1.5704087209111794,
+ 2.295990115492634,
+ 4.835254755790727,
+ 3.48092727170049
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.1791178131139954,
+ -2.061399121666785,
+ -2.2161617946805596,
+ -2.939496549511115,
+ -2.3991495230480213,
+ -0.796714767925211,
+ 1.1376391974916584,
+ 2.712976471060274,
+ 3.696515293710249,
+ 2.724158134534165,
+ -0.6303054656274728,
+ -1.8882707268560885,
+ -2.495727671547641,
+ -2.9273329397423815,
+ -2.384340837906308,
+ -2.5779915231820514,
+ -0.9668707670493913,
+ 2.4124152597351847,
+ 3.8660574111338923,
+ 2.2041505163535033,
+ 0.5134253491897947,
+ -1.4050729316191226,
+ -2.7077886934803916,
+ -2.837632318241926,
+ -2.0172703659578084,
+ -2.07188996351859,
+ -0.6020564612692404,
+ 2.420803354265826,
+ 3.6924859574390476,
+ 1.8687127817324531,
+ 0.05148831302207101,
+ -1.8041271576165925,
+ -2.686980993584052,
+ -2.2002045085707236,
+ -0.5019697785468459,
+ 0.29387172314042476,
+ 1.6539940274201475,
+ 2.808547644717251,
+ 2.7575102750772014,
+ 1.487328715209651,
+ -0.41391191908531444,
+ -2.1984709770653867,
+ -3.4588268220403133,
+ -2.460673941958822,
+ -1.0570259935433564,
+ -0.7916928486260366,
+ 2.576566761463357,
+ 4.451303845792343,
+ 2.4809164242003954,
+ 0.9591393401597816,
+ -0.9817903353010482,
+ -2.494111076288207,
+ -2.9240466837065013,
+ -2.3782921146533917,
+ -2.6172609689081656,
+ -1.1217045954345157,
+ 2.6128012883927325,
+ 3.937800819323992,
+ 2.2003975404984564,
+ 0.5103522628126488,
+ -1.3701591273295468,
+ -2.1432993664574695,
+ -1.862428193952178,
+ -0.9099680931519315,
+ -0.32704928850668696,
+ 1.2532708158407186,
+ 2.636163869016806,
+ 2.8886159433833436,
+ 1.8648176340113491,
+ 0.046027820540120674,
+ -1.8093808028333929,
+ -2.6406287204504646,
+ -2.0844982923090654,
+ -0.5424817248018162,
+ 0.29984852143390733,
+ 1.6592510691438165,
+ 2.8110404696665996,
+ 3.0355360267859,
+ 3.6464758670662487,
+ 2.103826525437682,
+ -2.462900482899763,
+ -3.956563443101796,
+ -2.8005577783657554,
+ -1.6314793782708894,
+ 0.2450553874138997,
+ 2.0184960309869813,
+ 2.9123124363666206,
+ 2.8397690549798296,
+ 5.426806444029165,
+ 3.7246304319758456,
+ -4.467888701700567,
+ -6.3374128578480775,
+ -2.8717986987898225,
+ -1.8496231941563932,
+ -0.026577141043686487,
+ 1.8133078226283363,
+ 2.8613477709048802,
+ 2.961917702871381,
+ 3.519921623940707,
+ 1.9787915664342646,
+ -2.5415796321593795,
+ -4.00594213540023,
+ -2.7352855952476873,
+ -1.468129206740744,
+ 0.30507746353548687,
+ 0.8860882914631013,
+ 1.222010247641229,
+ 1.6211812071035412,
+ 1.6473297891175906,
+ -0.2708136714533117,
+ -2.033259304569458,
+ -2.926510719522061,
+ -2.528535135673753,
+ -1.046053784299803,
+ 0.8045304838156895,
+ 1.483738686246512,
+ 1.538163110354108,
+ 1.3153159858265406,
+ 1.0588563418134285,
+ -0.7310946846634462,
+ -2.3442276460457303,
+ -3.191651955508726,
+ -4.000942335440558,
+ -2.4452979410532034,
+ 1.775566545780859,
+ 3.40780248812468,
+ 2.9408695820881037,
+ 2.3681980434908,
+ 0.7729721756352133,
+ -1.1684103885879256,
+ -2.5945611491665543,
+ -3.1670462559864325,
+ -4.311245333219519,
+ -2.2658228749280815,
+ 1.6037604520629922,
+ 1.8308243100139026,
+ 2.034977589011062,
+ 2.800057900332057,
+ 2.7440235896892724,
+ 2.811232217551029,
+ 1.667517054690285,
+ -0.21653143688304502,
+ -1.994989321544398,
+ -3.1250652084551853,
+ -4.009920888634375,
+ -2.5715268125675226,
+ 1.41285861732798,
+ 2.9837831307383222,
+ 2.879277364438611,
+ 2.6415591668753535,
+ 1.5170866017875804,
+ 1.4051387614052364,
+ 0.1509015995887227,
+ -2.3507862662653927,
+ -3.365362780665983,
+ -1.4071812187724235,
+ 0.5050902809490013,
+ 2.207162439485413,
+ 2.93827127249182,
+ 2.401201495833168,
+ 1.0525415175423127,
+ 0.8031053940986526,
+ -0.23459683294898628,
+ -2.227268622572733,
+ -2.9967512180742863,
+ -0.9810289484934034,
+ 0.9554477370499606,
+ 2.5947440627479867,
+ 3.5779663020119177,
+ 2.6879673208362385,
+ -0.44859797101440674,
+ -1.644049749330348,
+ -2.3850799263208544,
+ -2.940052363379562,
+ -2.230446319379755,
+ -0.5328637088130856,
+ 1.382567944852354,
+ 2.8566120696585546,
+ 6.34205142751771,
+ 4.672936555569675
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0142236552531203,
+ 1.1074282346500495,
+ -0.5899976992899415,
+ -1.6677803475921915,
+ -2.0311778000897465,
+ -1.497673189529444,
+ -0.32377822251607813,
+ 0.9723877062886721,
+ 1.5579205692931735,
+ 1.4260397932093647,
+ 0.6113811704158331,
+ 0.201593944580011,
+ -0.8897538192432733,
+ -1.829764026043764,
+ -2.1683946237035188,
+ -2.5958002788232424,
+ -1.3754592138543622,
+ 1.3220995682187882,
+ 2.5482648503805705,
+ 1.9994568456896245,
+ 1.355779814240005,
+ 0.1254619261681884,
+ -1.1637499300784324,
+ -1.9440474937668344,
+ -2.0814164232135575,
+ -2.4347793379718343,
+ -1.2075960038866056,
+ 1.4674200463650913,
+ 2.6662961689444193,
+ 1.9217227886272876,
+ 1.1028618529911587,
+ -0.09460391347685485,
+ -0.480868232547505,
+ -0.7690806682311327,
+ -1.229608208369117,
+ -1.2892245234646507,
+ 0.08003813956157255,
+ 1.321992263433221,
+ 1.9991787475282814,
+ 1.79448608009518,
+ 0.819602726699277,
+ -0.44152208082537703,
+ -0.9980225648436719,
+ -1.072175066273811,
+ -1.6256023760517284,
+ -1.502321512245339,
+ 1.2682591602938917,
+ 2.677236029016077,
+ 2.0266684260245036,
+ 1.574269524205217,
+ 0.44184049276537113,
+ -0.889068354050311,
+ -1.8288883174816277,
+ -2.166265767185281,
+ -2.6418166088192114,
+ -1.517553858409585,
+ 1.46716998273984,
+ 2.597181600612515,
+ 1.998793899625172,
+ 1.3552439459036807,
+ 0.250675491785861,
+ -0.0451626974828873,
+ -0.5226808915306226,
+ -1.3506608566034248,
+ -1.6240839984516662,
+ -0.23810452723782666,
+ 1.0644900511788156,
+ 1.9134978760780732,
+ 1.9189820125223929,
+ 1.0993564374626863,
+ -0.09852800670716665,
+ -0.47491304732557643,
+ -0.7672847711943708,
+ -1.1782766456197404,
+ -1.2586832191809465,
+ 0.08320829744705,
+ 1.3234232513310018,
+ 2.135197820574642,
+ 2.7731832849592264,
+ 1.8817303024888528,
+ -0.9840069479939791,
+ -1.9979083194269749,
+ -1.9659360000540067,
+ -1.8457601973645548,
+ -0.9298720507358746,
+ 0.3996377849555443,
+ 1.5485051868729365,
+ 2.191390853051322,
+ 4.5866431281958215,
+ 3.292634396741487,
+ -1.9500720570958199,
+ -2.941689419124557,
+ -1.9122261677719883,
+ -1.914714623175889,
+ -1.0922586528155085,
+ 0.21534615205889554,
+ 1.4216881580680942,
+ 2.16525275371924,
+ 2.7865883837207606,
+ 1.8584128357770968,
+ -1.091052600783786,
+ -2.1238991593058416,
+ -1.9952130440519118,
+ -1.7881927985880568,
+ -0.9803550770089214,
+ -0.8835254271299327,
+ -0.04910581153530734,
+ 1.604130524689506,
+ 2.269120780514345,
+ 0.9098213329399385,
+ -0.41310391160643994,
+ -1.5631738588041497,
+ -2.025422013285085,
+ -1.6137692942812478,
+ -0.6560804333583072,
+ -0.46529050578923514,
+ 0.21599794519752932,
+ 1.5108863777565131,
+ 2.0040226380061164,
+ 0.6122636482048048,
+ -0.7204379023120164,
+ -1.827559869675385,
+ -2.483129680169442,
+ -1.7697133702158383,
+ 0.33652713137203877,
+ 1.2138577240771147,
+ 1.6801785371358493,
+ 2.0200736273301145,
+ 1.4909402187820857,
+ 0.3012328680560159,
+ -1.0101023961164621,
+ -1.9978919252584608,
+ -2.930281999524934,
+ -1.8306111788588584,
+ 0.031105369396467863,
+ 0.22320316213600533,
+ 1.8121213797354936,
+ 2.789215948488047,
+ 1.216109283517921,
+ 1.9608286424575834,
+ 1.8636316094193295,
+ 0.9423190634060981,
+ -0.37803892280263673,
+ -1.5869910641310407,
+ -2.232615370097745,
+ -1.6832458441746447,
+ 0.022887816128850567,
+ 0.7621589423974656,
+ 1.4580342730581843,
+ 2.0190719928859786,
+ 1.9109713728192692,
+ 2.1649130019626677,
+ 0.9698683344984392,
+ -1.590910745642772,
+ -2.7183091849357277,
+ -1.7645658631954988,
+ -0.7607474137761037,
+ 0.5747371408375008,
+ 1.6598743578457205,
+ 2.024137020031579,
+ 1.7137714564379323,
+ 1.8768723941415089,
+ 0.7418883709295031,
+ -1.6517316144813063,
+ -2.6875916501505372,
+ -1.5850453262854174,
+ -0.4562106425658563,
+ 0.8384415126131233,
+ 1.3997900788933135,
+ 1.3387324308088704,
+ 0.7305840191373387,
+ 0.3872724904677798,
+ -0.7660369433981822,
+ -1.7667996851636691,
+ -2.010215745006754,
+ -1.3656646377285353,
+ -0.13821317630977978,
+ 1.14989332860778,
+ 2.949541995399433,
+ 2.2970047822045956
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.7620753969590055,
+ 3.6434050187370293,
+ 0.7462629007646151,
+ -0.5864728436671018,
+ -1.6716950664188728,
+ -2.0209419062936704,
+ -1.4989604469955187,
+ -0.46815710500940805,
+ -0.22295061741024563,
+ 0.33060022822326174,
+ 1.5997489364802577,
+ 1.8900024766809165,
+ 0.4391575747883792,
+ -0.8847815019642925,
+ -1.9280469147871462,
+ -2.532120857322628,
+ -1.665349782432472,
+ 0.3982761974863353,
+ 1.4031027918689214,
+ 1.773317327177861,
+ 1.997963087042631,
+ 1.3626537871664042,
+ 0.12319027008454936,
+ -1.1610167943994842,
+ -2.0707879002764993,
+ -2.6557407930121344,
+ -1.662229081118989,
+ 0.6502478653718609,
+ 1.7540140513818887,
+ 1.9068702518260896,
+ 1.9221320057658202,
+ 1.2943359998374946,
+ 1.3223344034448257,
+ 0.4144296411697101,
+ -1.7825770493698911,
+ -2.53401140924571,
+ -1.198544473328089,
+ 0.07689786144572987,
+ 1.3241531106741447,
+ 1.9895246701326377,
+ 1.7950786936106324,
+ 0.996311360567114,
+ 1.0272490683009468,
+ 0.08589615381991447,
+ -2.0376843460913516,
+ -2.0332907552898996,
+ 0.1693063209564057,
+ 1.1582417779539198,
+ 1.597367157168426,
+ 2.025642773018866,
+ 1.582832349228991,
+ 0.43906746003830616,
+ -0.8858867419056582,
+ -1.9291578113399315,
+ -2.582218206537574,
+ -1.7928384751866908,
+ 0.4941301513088874,
+ 1.432038993306299,
+ 1.7751769356647873,
+ 1.999499421244231,
+ 1.5573143608709294,
+ 1.6573795850362558,
+ 0.5793251827669728,
+ -1.6673274147030794,
+ -2.626847678815068,
+ -1.4401552887122815,
+ -0.24186890463222743,
+ 1.0652792600317922,
+ 1.9051469942028132,
+ 1.9203155130012026,
+ 1.291607755933077,
+ 1.2953561269324423,
+ 0.3238124872638746,
+ -1.658322601851468,
+ -2.48446886289762,
+ -1.1971616868225299,
+ 0.07742506039071835,
+ 1.3409400732701324,
+ 1.9816570378885345,
+ 1.645021899843453,
+ 0.24470342264524744,
+ -0.34969179701695174,
+ -1.2300551474830415,
+ -1.9639513851748693,
+ -1.8545255813086654,
+ -0.9249703324162001,
+ 0.396118657875315,
+ 1.5997322190091467,
+ 3.767413275465166,
+ 2.843281270907769,
+ 0.1500750322345542,
+ -0.09989295190734797,
+ -1.0766518972348043,
+ -1.9098673750882356,
+ -1.9234472563878373,
+ -1.0867725329401432,
+ 0.21161689246716478,
+ 1.454150569239807,
+ 2.1081398309522053,
+ 1.7048805454920037,
+ 0.11787953288556409,
+ -0.5340095036722486,
+ -1.3351128521398166,
+ -1.9938863841411743,
+ -1.9930874718467533,
+ -2.291748859389704,
+ -1.0782570510661058,
+ 1.542029354818602,
+ 2.704983014594554,
+ 1.8397061993304207,
+ 0.9129612401072188,
+ -0.41072866521592416,
+ -1.556538563331712,
+ -2.0255088522773392,
+ -1.8206084845613988,
+ -2.0315734256801776,
+ -0.8625228359345594,
+ 1.6239841035533498,
+ 2.710055994297498,
+ 1.683040803039865,
+ 0.6178229276520887,
+ -0.6665462658876858,
+ -1.1777508767553186,
+ -1.1686860469300764,
+ -0.840383361687826,
+ -0.6015367255761617,
+ 0.6074380464012613,
+ 1.6770177444791106,
+ 2.028201331805425,
+ 1.4837630283904015,
+ 0.3049855705480929,
+ -0.9898091538555156,
+ -1.7224067310425282,
+ -1.422646218716463,
+ -1.2449498176666896,
+ -1.0869840341566468,
+ 1.5768916018890122,
+ 2.987562412280251,
+ 1.9459177665194916,
+ 1.212304950848374,
+ 1.9665577126561364,
+ 1.853562980491211,
+ 0.9443722957140703,
+ -0.29214879970157887,
+ -0.7243724550921588,
+ -0.912364086528083,
+ -1.1047983020715328,
+ -1.0620860005215012,
+ 0.26180038594165467,
+ 1.4535908588420525,
+ 2.172824790103174,
+ 2.7157906369219753,
+ 1.6047038215056206,
+ -0.9269188456211734,
+ -2.1118662306801927,
+ -2.0012300949826445,
+ -1.764202379244951,
+ -0.7661409841588064,
+ 0.5733875882347911,
+ 1.6574943587261444,
+ 2.1983237969972005,
+ 2.6910041571800343,
+ 1.5113008644860566,
+ -1.135373724593405,
+ -2.3560418489984816,
+ -2.0270828331488837,
+ -1.5870621892107168,
+ -0.6108133628265804,
+ -0.40841588885621466,
+ 0.20447458372661692,
+ 1.6646846040879983,
+ 2.0226257793097835,
+ 0.5697479020900946,
+ -0.7623475430236041,
+ -1.771154229254106,
+ -1.999805111431561,
+ -1.3671124385906293,
+ -0.2685318231728484,
+ 0.11011323721138927,
+ 0.3014570472035277
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.324593195337227,
+ 4.616611616005885,
+ 1.7651921243770534,
+ 0.7514362782860668,
+ -0.5900107394050921,
+ -1.67437270104961,
+ -2.0316369248202717,
+ -1.7116679879734205,
+ -1.913695020691515,
+ -0.911133507013941,
+ 1.901509027310198,
+ 2.7689906889303013,
+ 1.5831644478954296,
+ 0.4449986547397447,
+ -0.8553389101508971,
+ -1.3761499045640226,
+ -1.237974929120549,
+ -0.7004481296765255,
+ -0.3510819101793694,
+ 0.7815985225281818,
+ 1.7806214937898335,
+ 2.0163362618884593,
+ 1.3613578263585087,
+ 0.12540019382805015,
+ -1.1670137207492906,
+ -1.7320571792324815,
+ -1.4014989866951468,
+ -0.45013665193410557,
+ 0.08215440487016293,
+ 1.0695543341689193,
+ 1.91518049327919,
+ 2.129744773303283,
+ 2.5613330061430157,
+ 1.4232081891423205,
+ -1.56861186477655,
+ -2.6901192149282505,
+ -1.9645363761046042,
+ -1.2055780927487378,
+ 0.07574837491326186,
+ 1.327164251929537,
+ 1.9996582277462267,
+ 2.009314099425963,
+ 2.6163350871040647,
+ 1.2108427806700999,
+ -1.572330746456137,
+ -1.6891217305097388,
+ -1.0063880492050608,
+ -0.865435063055675,
+ 0.477684713755401,
+ 1.604906607864823,
+ 2.045029330968914,
+ 1.5823352151072463,
+ 0.442382345725801,
+ -0.859222456146004,
+ -1.4087371893725606,
+ -1.2958245554030685,
+ -0.6953182143391984,
+ -0.3546738198778324,
+ 0.7851883290550216,
+ 1.7835760109266523,
+ 2.1967252734384313,
+ 2.650876111589364,
+ 1.4352058327195676,
+ -1.2659666480585126,
+ -2.500080759338004,
+ -2.0251531096482798,
+ -1.4483356496550106,
+ -0.2452560237975654,
+ 1.0695949046696662,
+ 1.915844814928541,
+ 2.129394368976224,
+ 2.5129458564624296,
+ 1.2789476845289887,
+ -1.4247772426080774,
+ -2.6428840796285265,
+ -1.9655437227624852,
+ -1.206185056147583,
+ -0.034341751239121615,
+ 0.3327806222597817,
+ 0.6980316921807278,
+ 1.3720361869105677,
+ 1.4549247279383855,
+ 0.03882838502595766,
+ -1.2355126807440306,
+ -1.9824738737597485,
+ -1.8551331965462061,
+ -0.9310123086194539,
+ 0.3161216952635343,
+ 1.3205634445450367,
+ 1.16612903190306,
+ 2.192606541271114,
+ 2.794607211119353,
+ 0.22610168826654256,
+ -1.08129854902552,
+ -1.9278893877651002,
+ -1.9245871460080206,
+ -1.0938203173895573,
+ 0.11347902279978934,
+ 0.5181729728519976,
+ 0.8155305392684711,
+ 1.2800651486807122,
+ 1.291577234149964,
+ -0.09695609155216958,
+ -1.3403346733316683,
+ -2.1496530271121856,
+ -2.716336527645453,
+ -1.6458523837694246,
+ 0.8146569091391888,
+ 1.9756935716781925,
+ 1.9792951432701167,
+ 1.8497656383355523,
+ 0.9227623809901551,
+ -0.41474918189400783,
+ -1.565063543629523,
+ -2.2038709406322132,
+ -2.726963855777371,
+ -1.5726978769777267,
+ 1.0370590117769365,
+ 2.2496660136315034,
+ 2.0315670825551955,
+ 1.6941539244067092,
+ 0.7858739250104346,
+ 0.6400013515734434,
+ -0.06158065156451283,
+ -1.6588304499970254,
+ -2.163639648831823,
+ -0.7309172183976185,
+ 0.6095201308439051,
+ 1.6925425892018318,
+ 2.0303668891468227,
+ 1.4929888145647112,
+ 0.44858248196898876,
+ 0.23241678643982272,
+ -0.3997274538652641,
+ -1.9883917616601083,
+ -1.9328023494170026,
+ 0.6607689347224358,
+ 1.898079609502938,
+ 1.8840969408789852,
+ 1.9504114464817501,
+ 1.2216764040429007,
+ 1.9684711470060066,
+ 1.863963555806033,
+ 1.1330791502074646,
+ 1.1013924489697655,
+ 0.25462130205390887,
+ -1.7598152927658304,
+ -2.4344411872559353,
+ -1.0513962968740722,
+ 0.2592766342803141,
+ 1.4984496730247838,
+ 2.0972432716016174,
+ 1.5495969818155138,
+ 0.1390918342211105,
+ -0.5925452382620001,
+ -1.375587429876523,
+ -2.010173022220654,
+ -1.7811310211339195,
+ -0.7640748852738551,
+ 0.5747504565272734,
+ 1.7364051046868267,
+ 2.347294176927004,
+ 1.631511775465601,
+ -0.12759191347128773,
+ -1.0072340011698395,
+ -1.5963586975372788,
+ -2.03726050864783,
+ -1.801538028292642,
+ -2.046598437946377,
+ -1.0218120714475538,
+ 1.8839880046637465,
+ 2.7911814348234647,
+ 1.6643294508671462,
+ 0.5742989281266113,
+ -0.7674028450799646,
+ -1.7735983628281409,
+ -2.0105528612770938,
+ -1.5759450383770115,
+ -2.786419614435995,
+ -1.830863499085698
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.4222533455461206,
+ 3.5561620082856527,
+ 2.0081594641179303,
+ 1.7612850492936443,
+ 0.754599222837759,
+ -0.5884742533524353,
+ -1.669620200119839,
+ -2.203385913834178,
+ -2.7646663946263,
+ -1.7541343095225033,
+ 1.3653886210573511,
+ 2.4289545368119456,
+ 2.0318034705982124,
+ 1.5818485423132702,
+ 0.5972919018018988,
+ 0.38964994889276444,
+ -0.26353678886184895,
+ -1.4930006116125372,
+ -1.9548197516780863,
+ -0.5573180348850583,
+ 0.7774155782405306,
+ 1.7823781869478854,
+ 2.002216516914326,
+ 1.3597327512576494,
+ 0.25372030432029397,
+ -0.04215855374929441,
+ -0.5220033282277079,
+ -1.3547497024585073,
+ -1.6301253128615143,
+ -0.24157206525804553,
+ 1.0635465885460016,
+ 2.027950389611731,
+ 2.6737935099607113,
+ 1.8068264045719715,
+ -0.6622944366486013,
+ -1.6601779781340023,
+ -1.8660139181471862,
+ -1.9595615217677322,
+ -1.2091905753341798,
+ 0.0778159877011851,
+ 1.322828172811535,
+ 2.1386727203057463,
+ 3.0555024955887715,
+ 1.8045801159241865,
+ -0.4123557278087837,
+ -0.5991256971038961,
+ -1.7411722990930991,
+ -2.512491774066034,
+ -0.8554784943257967,
+ 0.47529366697093495,
+ 1.6064490786795589,
+ 2.0305978849640924,
+ 1.5788710511348627,
+ 0.5923413320598774,
+ 0.38898766799589335,
+ -0.22605874751049856,
+ -1.5810847765698324,
+ -1.989437255481628,
+ -0.5535766970593852,
+ 0.7804879975987622,
+ 1.868899772183843,
+ 2.4777264262173353,
+ 1.660250502524104,
+ -0.30526263901199596,
+ -1.2703671529587544,
+ -1.7184486521386302,
+ -2.0190539878358313,
+ -1.4509065039835864,
+ -0.23978038420613906,
+ 1.0664033912825974,
+ 2.0301375214749866,
+ 2.6252835659666873,
+ 1.6724116805036322,
+ -0.5622673526374167,
+ -1.6360845010789205,
+ -1.8689733183737487,
+ -1.9610384311118791,
+ -1.3979220301899526,
+ -1.4669938582858624,
+ -0.5591881501935533,
+ 1.8970747634994998,
+ 2.622387290840864,
+ 1.2937650718358764,
+ 0.03965791340089898,
+ -1.2363977805186757,
+ -1.9694436129337949,
+ -1.8508566053518722,
+ -1.1101248961532615,
+ -1.7148317094469505,
+ -1.0295293633052554,
+ 3.2732362876631216,
+ 4.4638377171138846,
+ 1.4323988072869347,
+ 0.22623821102066774,
+ -1.0820719720778766,
+ -1.9156851628171985,
+ -1.9201119631149035,
+ -1.2805986343832785,
+ -1.3043092128335503,
+ -0.4357257373529082,
+ 1.8806052080320736,
+ 2.5521043125738108,
+ 1.1870627959617006,
+ -0.0940090314618426,
+ -1.358533415905333,
+ -1.9439809388763711,
+ -1.4889877318110865,
+ -0.2738312909391573,
+ 0.37322273952960344,
+ 1.2462901079164532,
+ 1.9731019200573838,
+ 1.8526213954516455,
+ 0.9128195233597114,
+ -0.413213881347046,
+ -1.6161037442642996,
+ -2.2214028902795335,
+ -1.5910337370680445,
+ -0.008717833845812789,
+ 0.7959360894840385,
+ 1.484968672926473,
+ 2.0259963727789847,
+ 1.8953322649195412,
+ 2.1800420180544897,
+ 1.075456779633839,
+ -1.7477211663081167,
+ -2.77541137671392,
+ -1.7502627827930257,
+ -0.7294719391255415,
+ 0.6095682802643694,
+ 1.6828730287474687,
+ 2.0255050092013125,
+ 1.6927349460920462,
+ 2.089631638974814,
+ 0.8020477826417564,
+ -1.8567422022307107,
+ -1.9283024771245365,
+ -0.5490718092496923,
+ -0.031255469395021405,
+ 0.9911658303062371,
+ 1.8752763892139706,
+ 1.9548719618965438,
+ 1.2154980086094458,
+ 1.9637811931597964,
+ 2.0621466826709773,
+ 2.445975385008553,
+ 1.3122316646837229,
+ -1.6403294889468554,
+ -2.736555827000973,
+ -1.904177132355293,
+ -1.0523792222115305,
+ 0.16151312321578937,
+ 0.5521842784047645,
+ 0.8109220803454299,
+ 1.146427556595615,
+ 1.1919153163015583,
+ -0.14169250926344068,
+ -1.370198774347547,
+ -2.0131185802750564,
+ -1.7679023464642756,
+ -0.7641914825244269,
+ 0.5075098175993922,
+ 0.9674787527198074,
+ 1.0324659712151876,
+ 0.9389865771257003,
+ 0.7891798003455401,
+ -0.46050248903454205,
+ -1.5900794060564276,
+ -2.2007010806668807,
+ -2.786260590236388,
+ -1.8005128210173218,
+ 1.2729328420605928,
+ 2.330648760611211,
+ 2.0276223155056012,
+ 1.6610055796622984,
+ 0.577315522639933,
+ -0.7646025981484075,
+ -1.7688764194162738,
+ -2.191583268317215,
+ -4.461298649356367,
+ -3.1610483865510024
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.482365198676399,
+ 0.9709159976260826,
+ 1.3851272170688798,
+ 2.0069142607183306,
+ 1.76642973436979,
+ 0.7443977283874966,
+ -0.5909107418769131,
+ -1.7435911894580352,
+ -2.4203664106546294,
+ -1.836973442753801,
+ 0.24457954065861043,
+ 1.0451800198053467,
+ 1.60305445742826,
+ 2.0309844923629945,
+ 1.7842343880159715,
+ 1.97731744614376,
+ 0.8186349814546771,
+ -1.6381153885118607,
+ -2.7075264438191966,
+ -1.6484247533629997,
+ -0.5545949503829511,
+ 0.7824283222755515,
+ 1.7772974252271376,
+ 2.001406283213279,
+ 1.5568711776917235,
+ 1.6559596636459664,
+ 0.5770614577931117,
+ -1.6707874975206776,
+ -2.630525981365738,
+ -1.4409897310836013,
+ -0.24097036603598568,
+ 1.0536626588554263,
+ 1.6344477546003047,
+ 1.4102979487453755,
+ 0.5238336585023831,
+ 0.07846576266461741,
+ -0.9646972931283777,
+ -1.8654655137611111,
+ -1.9659868577941153,
+ -1.197691969565462,
+ 0.0804589867145248,
+ 1.3465106880757234,
+ 2.1766079053955667,
+ 1.6179044126181428,
+ 0.9183335249952955,
+ 0.7424058510053625,
+ -1.7220132848961398,
+ -3.0681680315578825,
+ -1.812496995872228,
+ -0.8523086052792598,
+ 0.4788244199691476,
+ 1.6019952666674404,
+ 2.0289305583553654,
+ 1.780353078405991,
+ 2.0086754135188127,
+ 0.9347450209913669,
+ -1.780941891842363,
+ -2.7580823650575224,
+ -1.6461420293016653,
+ -0.5527279627720714,
+ 0.7383856434776649,
+ 1.2388628026194548,
+ 1.1691876388762168,
+ 0.7812199352537437,
+ 0.49905011895536844,
+ -0.6737041143827914,
+ -1.71715861093007,
+ -2.024813518747183,
+ -1.4382277398134777,
+ -0.23716363781452668,
+ 1.0574305537598496,
+ 1.6067009585955356,
+ 1.3435409495704893,
+ 0.5372462603145308,
+ 0.06917966826965434,
+ -0.9683225022867785,
+ -1.86717060532577,
+ -2.1516416756481553,
+ -2.624607395958141,
+ -1.5682725292305593,
+ 1.602280506973422,
+ 2.6539724899868493,
+ 1.9843225175224397,
+ 1.2902606982897096,
+ 0.037598991330327555,
+ -1.2351798835139056,
+ -1.968446066696121,
+ -2.0500477810181845,
+ -3.994103780270639,
+ -2.7690407698941963,
+ 2.9382930608185696,
+ 4.201452862446948,
+ 2.014917600036788,
+ 1.428688463081024,
+ 0.22463864538469985,
+ -1.0820781309037675,
+ -1.914883108639738,
+ -2.115148326806971,
+ -2.554538101835541,
+ -1.4920355367213167,
+ 1.6679612223572673,
+ 2.706467191277446,
+ 1.952470350267251,
+ 1.1854656765888294,
+ 0.012824920704371683,
+ -0.3392251339220499,
+ -0.6919916821564449,
+ -1.2380303978423104,
+ -1.380513875317744,
+ -0.018970792979013728,
+ 1.2462350564914624,
+ 1.979407991990224,
+ 1.839590697175165,
+ 0.9097671839691217,
+ -0.33601207575533554,
+ -0.7624369210308666,
+ -0.9242760331657359,
+ -1.0445953498743648,
+ -0.9919242413902601,
+ 0.30226117819886156,
+ 1.4836393708576217,
+ 2.182275677205928,
+ 2.7724614048580714,
+ 1.7427961674010173,
+ -1.083645580194753,
+ -2.188695905618452,
+ -2.010079449038173,
+ -1.7465357141732738,
+ -0.7294784512922201,
+ 0.6128946623843876,
+ 1.682853465007754,
+ 2.2008049301088293,
+ 3.036286217403081,
+ 1.6514555086398066,
+ -0.9264840654438344,
+ -1.0936383206895965,
+ -1.515410953108319,
+ -1.9357955111177536,
+ -0.32324441424510686,
+ 0.9932214444644176,
+ 1.8868664898567018,
+ 1.9488720705086735,
+ 1.2175471640140862,
+ 2.097938884455875,
+ 2.729590528709564,
+ 1.798672834290106,
+ -0.8153354593463951,
+ -1.8587283475423075,
+ -1.9321414651889963,
+ -1.9032469029640025,
+ -1.2371026302265948,
+ -1.2215260968845678,
+ -0.2725371068064486,
+ 1.6542719064526974,
+ 2.452734753524948,
+ 1.1459537037981473,
+ -0.14407556750291994,
+ -1.3770363940088837,
+ -2.004695065173242,
+ -1.7662583038457857,
+ -0.9326611766834738,
+ -0.8207553779645825,
+ -0.007566010033220422,
+ 1.5950354327095584,
+ 2.235272292929953,
+ 0.8669382815612336,
+ -0.4609501331615828,
+ -1.6500511664980513,
+ -2.322008543441293,
+ -1.7994642646104162,
+ 0.11743312935781122,
+ 0.8694090361700342,
+ 1.5158288114885108,
+ 2.0262154998439925,
+ 1.6655799890898126,
+ 0.5676472760484107,
+ -0.7670668813434257,
+ -1.8600622471657735,
+ -4.205619963705261,
+ -3.122491346777572
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.8820421297445162,
+ -2.2777816244197298,
+ 0.2593887784546178,
+ 1.690435304325492,
+ 2.3987052553923096,
+ 2.0485631680762504,
+ 0.8199572104962807,
+ -0.6979722525735114,
+ -1.3054156700784685,
+ -1.3847447990092996,
+ -1.1113438351585188,
+ -0.8502059158149944,
+ 0.6348289944196444,
+ 1.9403092023232917,
+ 2.6116715152585437,
+ 3.2059960796881817,
+ 1.8136951897509868,
+ -1.316398513560759,
+ -2.7628943378154904,
+ -2.406594661233723,
+ -1.914299506676288,
+ -0.5953119086186293,
+ 0.9905228145909754,
+ 2.139953992833861,
+ 2.585050981887272,
+ 3.1067818425097067,
+ 1.6634016560318126,
+ -1.5350122775670605,
+ -2.992383152755683,
+ -2.3849279087909405,
+ -1.6625994486468747,
+ -0.3754757512670724,
+ -0.0421296240065791,
+ 0.5363623497076929,
+ 1.7256942379310753,
+ 2.045471460117887,
+ 0.3544103407820975,
+ -1.202198483701872,
+ -2.2468727927050898,
+ -2.301195366746226,
+ -1.3657482720583647,
+ 0.03865488107354925,
+ 0.5222532255889072,
+ 0.9223780372007248,
+ 2.1682019669309405,
+ 2.057078523443112,
+ -1.1872536373472462,
+ -2.790578788323526,
+ -2.368307279742123,
+ -2.1183054881912704,
+ -0.9546611863124497,
+ 0.6342523027988943,
+ 1.939923648076178,
+ 2.610173909535098,
+ 3.2646787659296668,
+ 1.985244046817563,
+ -1.4793598133976444,
+ -2.8166417951685467,
+ -2.406665673288674,
+ -1.914369081917683,
+ -0.7757066443586635,
+ -0.5483124118827725,
+ 0.25883352337737,
+ 1.7923583373626135,
+ 2.3760344173035133,
+ 0.7229376333767537,
+ -0.8601705746650845,
+ -2.0788118907548285,
+ -2.3818797178264712,
+ -1.6588396633803935,
+ -0.3710196655043365,
+ -0.0378436137103294,
+ 0.5669399960374277,
+ 1.6359579197883034,
+ 2.0007394488418866,
+ 0.35110213238262344,
+ -1.203657029288452,
+ -2.373716353121642,
+ -3.1682000418163994,
+ -2.2564164252655896,
+ 0.7876351857957807,
+ 1.8997626437783324,
+ 2.1839185242012413,
+ 2.3376845947045983,
+ 1.484854819090585,
+ -0.026760290346133284,
+ -1.5168463992697325,
+ -2.515540922186398,
+ -5.413909120720345,
+ -3.9357704133720017,
+ 1.6798102110750932,
+ 2.6498546283490714,
+ 2.081719289429594,
+ 2.379763607932523,
+ 1.6536435119220536,
+ 0.1944731729543355,
+ -1.3386330834380122,
+ -2.440622329945818,
+ -3.2250208853664515,
+ -2.256945546183296,
+ 0.9277994151998603,
+ 2.0771764862718762,
+ 2.2472385471234584,
+ 2.2971504789327764,
+ 1.5789167382990517,
+ 1.5988996362629129,
+ 0.426477258984197,
+ -1.973137425089711,
+ -2.9770400055728974,
+ -1.461773412127688,
+ 0.04299156683984219,
+ 1.5350699298608874,
+ 2.3527040814244735,
+ 2.153362839209799,
+ 1.2294849495183626,
+ 1.1348254566441707,
+ 0.11427466995659032,
+ -1.919366818017787,
+ -2.7432404234010845,
+ -1.141700634913408,
+ 0.4209180040743334,
+ 1.8608666484787364,
+ 2.6249958621582588,
+ 1.9877402314831336,
+ -0.0007042791962950514,
+ -0.8652202093028266,
+ -1.7088977243093977,
+ -2.3907263880343526,
+ -2.0451571669433397,
+ -0.7945248431053461,
+ 0.789424330902136,
+ 2.1270203256674187,
+ 3.215774074499105,
+ 2.1320309890624696,
+ 0.4143748730277523,
+ 0.1875658245278118,
+ -2.1703632418730865,
+ -3.5395936017077188,
+ -1.731698540634896,
+ -0.3123302004362212,
+ 1.2470930849990913,
+ 2.2595563913895846,
+ 2.2938040570735287,
+ 1.559136309963789,
+ 2.241385020688152,
+ 1.819887607032063,
+ 0.3719175992417449,
+ -0.3002634249379534,
+ -1.3887528190287528,
+ -2.3105091831034974,
+ -2.46979977965409,
+ -2.88826406871645,
+ -1.4317016465346994,
+ 1.7429938660823951,
+ 3.1656638536091264,
+ 2.2787602051402107,
+ 1.3024789756820605,
+ -0.23876876808637454,
+ -1.6787624614291021,
+ -2.387406222675869,
+ -2.3035956313457446,
+ -2.6234733271943,
+ -1.1959264660657836,
+ 1.871058663211173,
+ 3.2250577176220725,
+ 2.1283936556457865,
+ 0.9689345445580108,
+ -0.5282801330768476,
+ -1.0990309317805187,
+ -1.2623719143153997,
+ -1.2403386590939456,
+ -1.0623120878912993,
+ 0.4785119561351752,
+ 1.8408814122917199,
+ 2.415388374282177,
+ 1.9237382352881827,
+ 0.6082272388937823,
+ -0.9266041881100142,
+ -2.660462204596524,
+ -2.1484561124889385
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.0979045310485964,
+ -2.6903407104937687,
+ -0.27821756255540275,
+ 0.9305866260016074,
+ 1.743134959060437,
+ 1.7873673529174947,
+ 1.0628206001596057,
+ -0.02663025738863465,
+ -0.37837894975992037,
+ -0.686877644129249,
+ -1.2230763035874623,
+ -1.2710582676492244,
+ 0.01749845481096887,
+ 1.1746812240234699,
+ 1.9522353913502244,
+ 2.4797255835332273,
+ 1.5200725203918422,
+ -0.6952623057815459,
+ -1.7447874269521926,
+ -1.797261399827504,
+ -1.725337215750813,
+ -0.9097669088742464,
+ 0.3102553532468265,
+ 1.3887860074357898,
+ 2.0140927844155545,
+ 2.5046723338241863,
+ 1.4620147951313327,
+ -0.904281053571603,
+ -2.007704437666418,
+ -1.8563556328708073,
+ -1.5925613530456135,
+ -0.7927496159332614,
+ -0.6815608639409781,
+ -0.0070597436884333176,
+ 1.546016330697116,
+ 2.044508016243279,
+ 0.7366064412450786,
+ -0.49054459278192175,
+ -1.5111014995523788,
+ -1.8664989366388884,
+ -1.4170288035741372,
+ -0.4870638173252535,
+ -0.3208838895627627,
+ 0.3034192861769037,
+ 1.8407605019374258,
+ 1.7967842388064115,
+ -0.5314507196101961,
+ -1.6319175797735417,
+ -1.6942897113993924,
+ -1.815945124864553,
+ -1.155672483717012,
+ 0.017327422042772617,
+ 1.1750930380175335,
+ 1.9522321602180128,
+ 2.5270020989609048,
+ 1.6487314717925852,
+ -0.8047665396214208,
+ -1.7795554377729006,
+ -1.7982246741088705,
+ -1.7261376501055297,
+ -1.0755677094086264,
+ -1.040481387981124,
+ -0.1943815199639148,
+ 1.5130490657440145,
+ 2.2154872584720176,
+ 0.9967516037801984,
+ -0.20151526646116533,
+ -1.3176072959866791,
+ -1.8543416825669934,
+ -1.5902350481442222,
+ -0.789701493373803,
+ -0.666367886656823,
+ 0.050053753818119655,
+ 1.4497342844779204,
+ 2.0027564634013477,
+ 0.7346670248761371,
+ -0.49135778302416017,
+ -1.5672236882826105,
+ -2.1883874757316724,
+ -1.676229197677153,
+ 0.172826130157293,
+ 0.8900522724200247,
+ 1.4400660296655154,
+ 1.8673381992078815,
+ 1.4917227730780713,
+ 0.45561781182678757,
+ -0.7695119090132067,
+ -1.7508156652127935,
+ -3.931444757837113,
+ -2.910652983742654,
+ 0.5557801182182714,
+ 1.0462080847896833,
+ 1.3244248768059401,
+ 1.8559236953766547,
+ 1.5898584472914095,
+ 0.6202247125437405,
+ -0.6096457047273045,
+ -1.6493648438834214,
+ -2.2734201620352916,
+ -1.7065627036392186,
+ 0.2893548167891666,
+ 1.0495251932174452,
+ 1.5167550419152125,
+ 1.8671737493228202,
+ 1.59683366680785,
+ 1.7547049012471003,
+ 0.7031335967711791,
+ -1.5179108935538186,
+ -2.4807034050041823,
+ -1.4755872213554018,
+ -0.4434716632565455,
+ 0.7837157689339087,
+ 1.6678711145618372,
+ 1.8290541059473593,
+ 1.3786695060816976,
+ 1.4493025109518922,
+ 0.4771849935076848,
+ -1.5389627626714337,
+ -2.3953875163909317,
+ -1.2764188984703067,
+ -0.1528458338022842,
+ 1.0349535808247394,
+ 1.5795066578781962,
+ 1.335438904746645,
+ 0.4228254858894426,
+ -0.022339111655981105,
+ -0.9480802374814187,
+ -1.74281578140094,
+ -1.7897427183662362,
+ -1.0456111158747963,
+ 0.14314963781093357,
+ 1.2977302982733308,
+ 2.0757490234218072,
+ 1.5175256425058594,
+ 0.7825061526109763,
+ 0.617735192747167,
+ -1.6095871715696104,
+ -2.8343956218768147,
+ -1.6305067261042812,
+ -0.7050637417681589,
+ 0.5277268474075686,
+ 1.5306584002968153,
+ 1.8688280894945162,
+ 1.584152016794247,
+ 1.7677033604128756,
+ 1.1433096980107569,
+ 0.6959901839247089,
+ 0.42185504735537416,
+ -0.6537478226877218,
+ -1.60018370578485,
+ -2.022148770948452,
+ -2.4527783584938545,
+ -1.3459728877139345,
+ 1.1217377329648126,
+ 2.2529911571008205,
+ 1.8639598125078343,
+ 1.3777055576587283,
+ 0.2959747555230338,
+ -0.919611331427888,
+ -1.731739284156177,
+ -1.9725209784370357,
+ -2.3407824154540147,
+ -1.2103368106630996,
+ 1.2748147927175153,
+ 2.398242800885117,
+ 1.8204618910111152,
+ 1.1631665108035356,
+ 0.10896622001276472,
+ -0.20744011393440523,
+ -0.5773883311387847,
+ -1.3042491457830843,
+ -1.4175450150958817,
+ -0.10699667783433213,
+ 1.0756739731049716,
+ 1.7994774344122706,
+ 1.7298116752243866,
+ 0.9168659238848739,
+ -0.21305994999289693,
+ -1.0553408032184635,
+ -0.9592378005366993
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.046606510558915,
+ -4.012584674033796,
+ -0.8001262149776454,
+ 0.6855705427956895,
+ 1.8816520698858747,
+ 2.249253313170769,
+ 1.6473387110220048,
+ 0.48590733090693905,
+ 0.20224450132449695,
+ -0.3994022645004589,
+ -1.7651842407456382,
+ -2.0715832900578772,
+ -0.4564048998982889,
+ 1.0160048207279895,
+ 2.16555885613553,
+ 2.837338634505036,
+ 1.8572518396064617,
+ -0.47062064766708,
+ -1.6017877512273435,
+ -1.9919035960709077,
+ -2.220351911706475,
+ -1.4930409487152516,
+ -0.10367939865231575,
+ 1.321039955197893,
+ 2.3192905336489584,
+ 2.9681923210541545,
+ 1.8493673405726976,
+ -0.7499571190514809,
+ -1.98856155549129,
+ -2.1358386971283903,
+ -2.130713023807294,
+ -1.4124919121560122,
+ -1.4328112640091124,
+ -0.4325855457350009,
+ 1.9815238856601614,
+ 2.804601824623544,
+ 1.308157616967132,
+ -0.11927713391725903,
+ -1.500856407055845,
+ -2.2228122064607656,
+ -1.984269347270989,
+ -1.0774413850113587,
+ -1.0964387208103619,
+ -0.06534829327591671,
+ 2.2709623640176724,
+ 2.2628756122560305,
+ -0.21887020063763943,
+ -1.3375326246448005,
+ -1.8002732029828958,
+ -2.2564306061014543,
+ -1.7421748511775477,
+ -0.4563237168459513,
+ 1.017190632376803,
+ 2.1667170149977393,
+ 2.8933309408372465,
+ 2.000412754331422,
+ -0.5792745732934091,
+ -1.6347240052072645,
+ -1.9939193236095383,
+ -2.2220193752073683,
+ -1.7091859565008047,
+ -1.8106991422485108,
+ -0.6194168051716333,
+ 1.8587533975278485,
+ 2.915020287246066,
+ 1.5807688849161365,
+ 0.23606731671138154,
+ -1.215561988438978,
+ -2.1338792641247766,
+ -2.128637153704379,
+ -1.4094051809563093,
+ -1.4034763984139096,
+ -0.3335671223377922,
+ 1.8443172530321015,
+ 2.7496335252354394,
+ 1.306561658054162,
+ -0.11989048527594127,
+ -1.5228264557040143,
+ -2.240269924251181,
+ -1.8485122954791529,
+ -0.2413113720325347,
+ 0.4355049923453392,
+ 1.3970959874943316,
+ 2.196220777352455,
+ 2.052198012803852,
+ 1.0005648010836636,
+ -0.4742920577225713,
+ -1.8072446621322056,
+ -4.2408173424135285,
+ -3.196062665838604,
+ -0.1121285546116276,
+ 0.1875613379652742,
+ 1.227959422206309,
+ 2.138928531242483,
+ 2.1318707006712083,
+ 1.1823610090816588,
+ -0.26921131712363755,
+ -1.6473918944394912,
+ -2.3789015988867317,
+ -1.9133276569900661,
+ -0.09981090246466892,
+ 0.6403623092300145,
+ 1.5127280006859571,
+ 2.22741064391463,
+ 2.205023483906243,
+ 2.528951824442539,
+ 1.1800956848313289,
+ -1.7285235550861782,
+ -3.0176180911692954,
+ -2.035463327738961,
+ -0.9870776788695151,
+ 0.49065338306206874,
+ 1.755607184494334,
+ 2.2573377060842543,
+ 2.007825816006313,
+ 2.233377094817943,
+ 0.9371865482270817,
+ -1.815637696608949,
+ -3.0161047892514006,
+ -1.856265834282508,
+ -0.6562368500489849,
+ 0.7773643019543911,
+ 1.3536898031566909,
+ 1.3247794345093364,
+ 0.9097725305021579,
+ 0.6252896031292139,
+ -0.7088203188482199,
+ -1.8871749549846129,
+ -2.2570118647264263,
+ -1.6301239679313255,
+ -0.30651867258721444,
+ 1.13530291908643,
+ 1.9610346974643775,
+ 1.6040419182997867,
+ 1.3601929891037003,
+ 1.1823830231287464,
+ -1.7721761510950773,
+ -3.3403941705195495,
+ -2.158534975962843,
+ -1.2730769663533699,
+ 0.1642948412999063,
+ 1.5330397710159793,
+ 2.2335725735542753,
+ 2.193146248676814,
+ 2.556557163377468,
+ 1.3093982989497073,
+ 1.2071938839971896,
+ 1.1408067847991337,
+ -0.3250427948360746,
+ -1.6428919582838002,
+ -2.426304379264825,
+ -3.0266557383190826,
+ -1.7801486382371565,
+ 1.0557116261913915,
+ 2.381166193604971,
+ 2.2348114820640617,
+ 1.9489478925405093,
+ 0.8222635856519241,
+ -0.6710534122394928,
+ -1.8659407411985243,
+ -2.448929423338232,
+ -2.9918888733253497,
+ -1.671966580897257,
+ 1.2852194287068823,
+ 2.647287612817255,
+ 2.2582926501000764,
+ 1.7471816780499356,
+ 0.6454308668963189,
+ 0.4092117689441969,
+ -0.25919421774601575,
+ -1.8393488247464935,
+ -2.221517804651993,
+ -0.6024653446301521,
+ 0.880480760670333,
+ 1.9898253166185067,
+ 2.2226281988946717,
+ 1.4982555939691007,
+ 0.262941885108863,
+ -0.19894517058157618,
+ -0.3907414460379371
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.4045870014749071,
+ -2.257394257480128,
+ -1.8967644892395557,
+ -2.2523096635152955,
+ -1.6388227344960493,
+ -0.2991588351267752,
+ 1.1602400007337352,
+ 2.24751198609599,
+ 2.992936635895107,
+ 2.122909489186819,
+ -0.7714375571350889,
+ -1.825808555314968,
+ -2.068955168803212,
+ -2.1927108240731386,
+ -1.5841221201376787,
+ -1.6379653447641078,
+ -0.49466373477970915,
+ 1.8623300816529669,
+ 2.8566378006823943,
+ 1.4659143147319809,
+ 0.0764890024463659,
+ -1.3512870281513665,
+ -2.1856863977202314,
+ -2.074803928617262,
+ -1.2667550360767783,
+ -1.2126287882043068,
+ -0.20348667807207493,
+ 1.8269094850494167,
+ 2.6591846069139264,
+ 1.175376625338424,
+ -0.2801893081083153,
+ -1.6589408419187384,
+ -2.36953449694991,
+ -1.8285260249389115,
+ -0.10333874013890776,
+ 0.658633831242408,
+ 1.5228818294106825,
+ 2.2328001295483126,
+ 1.9834643436076953,
+ 0.8566126584220063,
+ -0.6310720299713292,
+ -1.924423813919608,
+ -2.9373534179588066,
+ -1.9818641141914306,
+ -0.5044997942003635,
+ -0.2930793073021403,
+ 2.031862808887295,
+ 3.3655288404725705,
+ 1.7166298762830978,
+ 0.4282446823893952,
+ -1.0496490590835292,
+ -2.067646076590889,
+ -2.189897698098216,
+ -1.579102061228549,
+ -1.6609933346356347,
+ -0.5971511284612836,
+ 2.006529860861976,
+ 2.9091654905804383,
+ 1.4626049248230397,
+ 0.07377581195975949,
+ -1.355914046598279,
+ -1.9908323033256528,
+ -1.5860141861052337,
+ -0.44883556106359374,
+ 0.17767420944563994,
+ 1.242865309041287,
+ 2.148259051238144,
+ 2.1315758160848683,
+ 1.1725520740090507,
+ -0.2842498398543095,
+ -1.662683909850283,
+ -2.3279605576206466,
+ -1.720858525059566,
+ -0.1565055686786808,
+ 0.6551253280758469,
+ 1.5268538883315665,
+ 2.2347063038553774,
+ 2.2029635626750226,
+ 2.584337610335455,
+ 1.4071478033211118,
+ -2.010197025634285,
+ -3.1051264197699875,
+ -2.033618007409832,
+ -0.9761473041572902,
+ 0.5059951562448844,
+ 1.768591732115939,
+ 2.26239935579972,
+ 2.003164819568026,
+ 3.7092911572717364,
+ 2.5027740343853053,
+ -3.5975289495628298,
+ -5.050579493411726,
+ -2.116227557639021,
+ -1.1596131177590459,
+ 0.30032601491459304,
+ 1.6315773812767063,
+ 2.2524949581808213,
+ 2.1251717322893806,
+ 2.4620000453107567,
+ 1.2971651684819658,
+ -2.0519020377075567,
+ -3.1137922690765287,
+ -1.9638629732094788,
+ -0.8405315708795679,
+ 0.5771534760050578,
+ 1.0916499438813516,
+ 1.1573651074473785,
+ 1.03845339805185,
+ 0.864928441211965,
+ -0.5241133085636778,
+ -1.7783884842823277,
+ -2.2713097529967827,
+ -1.761529177020874,
+ -0.49776247387483025,
+ 0.9476697355774922,
+ 1.5260220540037897,
+ 1.3740869213179374,
+ 0.7801892101043024,
+ 0.3935505815503213,
+ -0.865951450827896,
+ -1.9776889865998861,
+ -2.4405405467313446,
+ -3.0021659650994503,
+ -1.759819424212665,
+ 1.56020729927067,
+ 2.825381629414586,
+ 2.2499019810848226,
+ 1.6131845522801511,
+ 0.2789623886316657,
+ -1.1823031708076104,
+ -2.125548719297893,
+ -2.3668200914543545,
+ -3.159216871211893,
+ -1.5738549338682994,
+ 1.4904745723184234,
+ 1.6456202957170427,
+ 1.3634881587909606,
+ 1.4523335911776685,
+ -0.187776399420757,
+ -1.5480832492745245,
+ -2.246680610832029,
+ -1.954034263379759,
+ -0.8231910843186142,
+ 0.5969064686265748,
+ 1.138057960285002,
+ 1.2067623914179735,
+ 1.3144009165965818,
+ 2.563340159803321,
+ 2.258440483054255,
+ 1.8691121021021868,
+ 0.8497596420946429,
+ 0.6694696580735419,
+ -0.14762972480115322,
+ -1.72467033538291,
+ -2.337794202502747,
+ -0.790571046893086,
+ 0.6988136983786872,
+ 1.8928904781838438,
+ 2.2535189741920436,
+ 1.642836618895171,
+ 0.4740567479534825,
+ 0.19224153110891481,
+ -0.4402490565068997,
+ -1.5910570930045287,
+ -2.0022355143201556,
+ -0.4455065095653519,
+ 1.02929334141855,
+ 2.1768251802879077,
+ 2.929153756800728,
+ 2.115056840147518,
+ -0.637004323914601,
+ -1.6527065525950142,
+ -2.0023160102884296,
+ -2.223348779357497,
+ -1.4873022590282052,
+ -0.09172290582781023,
+ 1.3340361290468161,
+ 2.3289838223171655,
+ 5.052578882721004,
+ 3.685989325275329
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.5389337834117973,
+ -1.0239259725488423,
+ -1.319391258085522,
+ -1.8587049497917154,
+ -1.599285210074385,
+ -0.6321537837511713,
+ 0.6003581300476968,
+ 1.6458777352247314,
+ 2.2711684699001027,
+ 1.7078633514985642,
+ -0.2795905334648565,
+ -1.0377140539917673,
+ -1.5134939467895343,
+ -1.8717477437745997,
+ -1.6077988360260511,
+ -1.7692314984887183,
+ -0.7128905239693392,
+ 1.519695623598648,
+ 2.4881453759401126,
+ 1.4856715395221038,
+ 0.4553366855240817,
+ -0.7751821502048345,
+ -1.6664505770811298,
+ -1.8353067199430282,
+ -1.390582654129403,
+ -1.4646967484864923,
+ -0.4870129280076394,
+ 1.5422557406050563,
+ 2.4049730391670274,
+ 1.2873892251922918,
+ 0.16436906344501306,
+ -1.0267340969507017,
+ -1.5709078350212367,
+ -1.332397840751296,
+ -0.43340050363916977,
+ 0.007075653753339752,
+ 0.940470779742858,
+ 1.742572047605872,
+ 1.7969932374784874,
+ 1.0571779058149515,
+ -0.13227134180910563,
+ -1.2912088338876593,
+ -2.068691263752016,
+ -1.5161655564650869,
+ -0.7943276170126834,
+ -0.6298986929109711,
+ 1.6054475347085062,
+ 2.833277450937267,
+ 1.6447390331802212,
+ 0.7329479569640105,
+ -0.4981733539697247,
+ -1.5124996707518825,
+ -1.8697910650474847,
+ -1.6041345894109484,
+ -1.7969775818804286,
+ -0.8174553466187112,
+ 1.650256133049854,
+ 2.534518412375225,
+ 1.483479043266265,
+ 0.4535427224275677,
+ -0.7401638628740265,
+ -1.2115049865868455,
+ -1.1120921047360397,
+ -0.6778292052961916,
+ -0.3834108825984876,
+ 0.6759383056363654,
+ 1.613964701903854,
+ 1.8602429212174416,
+ 1.2848612784100943,
+ 0.16086820774732502,
+ -1.0301704250057435,
+ -1.544094963859553,
+ -1.2670727673729048,
+ -0.44989335303836764,
+ 0.014183655117569525,
+ 0.9438175353078407,
+ 1.7441508340502176,
+ 1.9701279672536924,
+ 2.392207436858949,
+ 1.4147697980087195,
+ -1.506594635118897,
+ -2.4715042671854976,
+ -1.8171336540258523,
+ -1.1445810918680963,
+ 0.023722376941355615,
+ 1.1848006870097811,
+ 1.8287658893207162,
+ 1.866875493989699,
+ 3.6165709497876426,
+ 2.4999543896980594,
+ -2.7533398436063763,
+ -3.927003826727409,
+ -1.850624614216334,
+ -1.275788141072909,
+ -0.14905224564217712,
+ 1.0467217483012765,
+ 1.784520608617213,
+ 1.9323953342077753,
+ 2.322645307254752,
+ 1.341554155394083,
+ -1.5640060611068296,
+ -2.5147558671354204,
+ -1.7840016305237782,
+ -1.0456018425550215,
+ 0.05129683878017145,
+ 0.39009889802595177,
+ 0.6815525748680462,
+ 1.1091213221403056,
+ 1.205475312469638,
+ -0.040677266765833664,
+ -1.194760426628433,
+ -1.8385564703413153,
+ -1.6713791676054213,
+ -0.7867015296137826,
+ 0.3721335733583462,
+ 0.7777247871579962,
+ 0.8919886707011696,
+ 0.9255749184706545,
+ 0.8418169229449042,
+ -0.3361923824900457,
+ -1.4074637388892228,
+ -2.0202006058234496,
+ -2.5560443012493326,
+ -1.5931511748025122,
+ 1.0403638812028604,
+ 2.0664806694101006,
+ 1.860999903437588,
+ 1.5805066006309711,
+ 0.6179690826870041,
+ -0.620439718216437,
+ -1.5838802484488832,
+ -2.027267175053267,
+ -2.7855372193141594,
+ -1.4996432963746973,
+ 0.9061983804231131,
+ 1.057543379344081,
+ 1.3674850304283626,
+ 1.7159301902210324,
+ 0.24057746852057282,
+ -0.966161069063224,
+ -1.7613096154457455,
+ -1.7800506663808169,
+ -1.0333340138524474,
+ 0.06864462231320394,
+ 0.4209463866274879,
+ 0.696550408917366,
+ 1.1470892325457969,
+ 1.7724411827803352,
+ 1.7990703754839013,
+ 1.73419406332636,
+ 1.088222036338541,
+ 1.0564084924237398,
+ 0.20397834883156893,
+ -1.5180208385167484,
+ -2.2272980378139975,
+ -1.008408204855235,
+ 0.19079946903807177,
+ 1.312452760730316,
+ 1.8570450267352963,
+ 1.599575252209243,
+ 0.8026291883057587,
+ 0.6823037140639701,
+ -0.04091608168211757,
+ -1.4559891274456462,
+ -2.0161219971526654,
+ -0.7465876075366789,
+ 0.48158674022106795,
+ 1.5629070272076706,
+ 2.1850506257841285,
+ 1.6767807661347722,
+ -0.16271524323945225,
+ -0.8775026071024025,
+ -1.4360470895983743,
+ -1.8711741847157612,
+ -1.5017882903024056,
+ -0.4674869946162447,
+ 0.7609523346732191,
+ 1.7484878072172778,
+ 3.9305759981184645,
+ 2.9113034937923046
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.5028137641902737,
+ 1.800645543640408,
+ -0.2752375677558651,
+ -1.464315773651224,
+ -2.0271051076747617,
+ -1.6953484051262815,
+ -0.6368717857915169,
+ 0.6475416767164475,
+ 1.1716488969679737,
+ 1.2085710876822744,
+ 0.8892991482578626,
+ 0.6400735042663374,
+ -0.5897675241865602,
+ -1.6679752140440933,
+ -2.200556000547655,
+ -2.6913334731136236,
+ -1.5084649904748946,
+ 1.1438439298866552,
+ 2.366449063613526,
+ 2.027962650945242,
+ 1.5776181437363417,
+ 0.44580274369568285,
+ -0.8862420794749896,
+ -1.8284049113693677,
+ -2.1683106543388195,
+ -2.595837939198476,
+ -1.3753114488239349,
+ 1.3225685414364807,
+ 2.5488428857519456,
+ 2.000667664199653,
+ 1.3588903141095554,
+ 0.2548912765392492,
+ -0.042547411685377394,
+ -0.5009124542911659,
+ -1.4233039352682344,
+ -1.6615916426727175,
+ -0.24199203898740063,
+ 1.0619486765868762,
+ 1.9134037079997883,
+ 1.9213845853355023,
+ 1.1032012329383758,
+ -0.09451463210722547,
+ -0.5254363312047512,
+ -0.8235304468685172,
+ -1.800481131214391,
+ -1.70215713754147,
+ 1.0431043663901225,
+ 2.4058094420585974,
+ 2.0046281407744644,
+ 1.7569403122414131,
+ 0.7513114590605721,
+ -0.589250146145737,
+ -1.6675663318137515,
+ -2.199160255291775,
+ -2.7403700708063816,
+ -1.652958788077114,
+ 1.2826301070169326,
+ 2.4123848469672895,
+ 2.027913337070565,
+ 1.5775878971860597,
+ 0.5940852586638362,
+ 0.38628981835953263,
+ -0.2646543306742013,
+ -1.489415668671849,
+ -1.9492639442661501,
+ -0.5543496597160025,
+ 0.7777679114336722,
+ 1.7799459854646558,
+ 1.9980677675999234,
+ 1.3556663339455615,
+ 0.2511047240566135,
+ -0.044718355733114445,
+ -0.5225631574488426,
+ -1.3511997917177867,
+ -1.6249040201506448,
+ -0.23914129740253823,
+ 1.0632113631146711,
+ 2.0249259792381644,
+ 2.6910709267965442,
+ 1.9024779415920312,
+ -0.7135848554948783,
+ -1.6643430486316382,
+ -1.8632383499878358,
+ -1.9553034316123608,
+ -1.2052816460006737,
+ 0.07964947592736547,
+ 1.3218114979656976,
+ 2.1351117804723874,
+ 4.575544432574542,
+ 3.3199867539870174,
+ -1.4994099967334538,
+ -2.344929849829815,
+ -1.7818390632580654,
+ -1.9959049802261764,
+ -1.3508668719273789,
+ -0.10685177597247172,
+ 1.1748517001299024,
+ 2.0774431977878334,
+ 2.7338382635901475,
+ 1.899329644630716,
+ -0.8302735750445269,
+ -1.8106059778802979,
+ -1.9130666689802083,
+ -1.9175320078574254,
+ -1.2803591274615744,
+ -1.2800368954210704,
+ -0.3132018756520104,
+ 1.657376257224571,
+ 2.4777550595039566,
+ 1.1856991869922038,
+ -0.09332350187732961,
+ -1.3370983000930445,
+ -1.9932524050687594,
+ -1.7880519285850955,
+ -0.9807648116557668,
+ -0.8840300473940321,
+ -0.049251505074398995,
+ 1.6047177111273303,
+ 2.270020972870986,
+ 0.9111978044707065,
+ -0.4107848261957823,
+ -1.610684698644229,
+ -2.257725777233768,
+ -1.692897264163881,
+ 0.05141926154802166,
+ 0.8039911664753876,
+ 1.4794294044824061,
+ 2.019704546879653,
+ 1.6918889694049561,
+ 0.615227026206233,
+ -0.7188177432137288,
+ -1.8272789273446737,
+ -2.748947683417507,
+ -1.805562913317405,
+ -0.29238861750349515,
+ -0.10070972639600559,
+ 1.8302489129699404,
+ 2.9597768558558704,
+ 1.4187596101634528,
+ 0.20654662717515923,
+ -1.099341325720117,
+ -1.9228813681964212,
+ -1.9142135737740884,
+ -1.2634405381975087,
+ -1.278889857186211,
+ -0.38146330789491306,
+ 1.782692572051138,
+ 2.519833063708885,
+ 1.2162834678849301,
+ 1.9620390367955782,
+ 2.059892164124996,
+ 2.3983384261435137,
+ 1.1732226002748727,
+ -1.4903686144515245,
+ -2.680949877976536,
+ -1.9007723260856293,
+ -1.048934537258871,
+ 0.25814313827981566,
+ 1.4547502844173723,
+ 2.017938817279112,
+ 1.9108941063488034,
+ 2.164913280189692,
+ 0.9696881958564713,
+ -1.5913901253475236,
+ -2.718887175134735,
+ -1.7658037253468246,
+ -0.763720441247492,
+ 0.5056110480187961,
+ 0.9997519629761535,
+ 1.1076240436397782,
+ 0.9998202146106125,
+ 0.8202408337614114,
+ -0.45897463200909283,
+ -1.5871625615064318,
+ -2.035895254888786,
+ -1.5858803376684776,
+ -0.45699375768813416,
+ 0.8383180398107306,
+ 2.3537196000160683,
+ 1.8878996782142712
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.020999817190355,
+ 4.043260314661435,
+ 1.034897536730266,
+ -0.2738498253086413,
+ -1.4696871368756312,
+ -2.019157779462382,
+ -1.6968383656452757,
+ -0.8016563831496396,
+ -0.6588696307730018,
+ 0.03139371701300856,
+ 1.7436509074121223,
+ 2.191802543124655,
+ 0.7463293443052136,
+ -0.5868485445270832,
+ -1.7391647180184164,
+ -2.347833324606619,
+ -1.6281162266847675,
+ 0.1380106857116094,
+ 1.0200805583072952,
+ 1.5983070856834172,
+ 2.0278016806574284,
+ 1.585277511004587,
+ 0.4407239423595758,
+ -0.8857276025944624,
+ -1.930564455224754,
+ -2.5352802836132504,
+ -1.6668952681754972,
+ 0.4002413921366378,
+ 1.406628011936295,
+ 1.7764658419931505,
+ 2.001823659132832,
+ 1.5599023559189806,
+ 1.6908873482573807,
+ 0.6864439013216549,
+ -1.8041396782782821,
+ -2.6807566999890424,
+ -1.4425425887166972,
+ -0.2433344357457902,
+ 1.065365749394338,
+ 1.9067556192981459,
+ 1.9227430086113617,
+ 1.2940456916256422,
+ 1.4716030098503303,
+ 0.373291143391515,
+ -2.0066474912591987,
+ -2.032634899268298,
+ -0.12007568781184255,
+ 0.696867332010543,
+ 1.3826249865733637,
+ 2.005349505900679,
+ 1.7664853631157464,
+ 0.7460483902433644,
+ -0.5883822267369607,
+ -1.7410236908497774,
+ -2.3956390977385364,
+ -1.7434424400248947,
+ 0.21504159765302744,
+ 1.0420376837024072,
+ 1.6006836837609362,
+ 2.029763003767055,
+ 1.7845870596837217,
+ 1.9782038633774428,
+ 0.8197588212883821,
+ -1.6367401048792485,
+ -2.7061849580801334,
+ -1.648738822741428,
+ -0.5564347488258887,
+ 0.7798492952568188,
+ 1.7751139376945821,
+ 2.000559632273673,
+ 1.557659772588471,
+ 1.65736632834382,
+ 0.5784561268556616,
+ -1.669681724694136,
+ -2.6297044382468946,
+ -1.4417047797125542,
+ -0.24307151614026476,
+ 1.0508577915999793,
+ 1.6497105365394849,
+ 1.4758592046776478,
+ 0.5394301881817782,
+ 0.0906873827063124,
+ -0.9621126851852865,
+ -1.8634309820000767,
+ -1.9653817998340035,
+ -1.198786586417462,
+ 0.078148249757222,
+ 1.3437396676185507,
+ 3.309849729439124,
+ 2.5407126104520694,
+ 0.6716395490417395,
+ 0.625977622042853,
+ -0.7936655329532954,
+ -1.7817971744089682,
+ -2.006071688123313,
+ -1.3441516701681255,
+ -0.10869895649100818,
+ 1.1775947769581252,
+ 1.7964111807449412,
+ 1.5527911507507426,
+ 0.41602287260496973,
+ -0.09615077149441478,
+ -1.0793720961018438,
+ -1.9135220589221464,
+ -2.117033476584654,
+ -2.495955776734883,
+ -1.267116312622764,
+ 1.4238981857228745,
+ 2.6356476800932733,
+ 1.9528705402810727,
+ 1.1879445313455277,
+ -0.09177265887362668,
+ -1.3344910820675675,
+ -1.995195156435325,
+ -1.9944260632976887,
+ -2.2930591048835502,
+ -1.0782034410858388,
+ 1.54475409264935,
+ 2.708764588680023,
+ 1.8422686257594898,
+ 0.9154934237748423,
+ -0.3284316739687289,
+ -0.7691451669962099,
+ -0.9389502540701183,
+ -1.0824366920498576,
+ -1.0210457576147636,
+ 0.2955908124753027,
+ 1.4788134589008144,
+ 2.02947937660378,
+ 1.684510525584203,
+ 0.6175690304561895,
+ -0.6689305210678508,
+ -1.30230375418494,
+ -1.2249082814742602,
+ -1.4852268818085208,
+ -1.346390652199761,
+ 1.412628105735633,
+ 2.839345225276912,
+ 2.0127797572904087,
+ 1.4142966171582163,
+ 0.204169991172757,
+ -1.0995856811358622,
+ -1.9219237982925075,
+ -2.109245273101666,
+ -2.5286546145987456,
+ -1.3937182369101864,
+ 1.5829593081454199,
+ 2.696229879896091,
+ 1.9471002443655892,
+ 1.213932042726462,
+ 2.0947909384463936,
+ 2.674844128212188,
+ 1.658799312827912,
+ -0.6973060821786904,
+ -1.8181220788878458,
+ -1.92821791819212,
+ -1.9009990878741598,
+ -1.0546248152219273,
+ 0.26032201070405064,
+ 1.4546175634041725,
+ 2.174961316431436,
+ 2.718334384421127,
+ 1.605662602708241,
+ -0.9292800752317993,
+ -2.1156524539044392,
+ -2.0043318321176504,
+ -1.767869227931102,
+ -0.9370428417703565,
+ -0.8389350363748592,
+ -0.09617866712317939,
+ 1.7905403155760793,
+ 2.3021916166551737,
+ 0.8699862240642673,
+ -0.4574958268803369,
+ -1.5930176716311584,
+ -2.027484440016454,
+ -1.5873431900201669,
+ -0.6096912523216192,
+ -0.6158374467587524,
+ -0.22362502012114174
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.861889456666033,
+ 5.409892483443471,
+ 2.227398050797779,
+ 1.1702959537722106,
+ -0.3951342163122827,
+ -1.7902485979118419,
+ -2.406383934390473,
+ -2.222616373422163,
+ -2.558759656692376,
+ -1.3255409606902588,
+ 2.2039103446481643,
+ 3.3173270816328984,
+ 2.0542428235508114,
+ 0.8250740950635228,
+ -0.6945179464856025,
+ -1.2573986232601266,
+ -1.2816138409108226,
+ -1.054432586631251,
+ -0.8241370333172386,
+ 0.6318185055268815,
+ 1.94099805477538,
+ 2.4189712400492196,
+ 1.8289357100335213,
+ 0.4564541673938049,
+ -1.0851045784971403,
+ -1.7130885718604287,
+ -1.5057012693806224,
+ -0.7744763902404127,
+ -0.318664698352139,
+ 0.9922716690934814,
+ 2.1433891110455043,
+ 2.5906331887970135,
+ 3.1731729400087105,
+ 1.8418652949013858,
+ -1.704363785598891,
+ -3.0514111761201366,
+ -2.3885396852257585,
+ -1.6653401207886782,
+ -0.2218192342746272,
+ 1.3237887262432972,
+ 2.289970474723784,
+ 2.4993698354025535,
+ 3.320775542943284,
+ 1.632540356582093,
+ -1.646779591586678,
+ -1.8073589760460513,
+ -1.4160066005625085,
+ -1.4664381937165436,
+ 0.25999057004810994,
+ 1.6942255243091213,
+ 2.404069129625769,
+ 2.0531309449470023,
+ 0.8217721189893812,
+ -0.6995533498410748,
+ -1.2896052695253701,
+ -1.3293031489288312,
+ -1.0709728278955195,
+ -0.8361502341959086,
+ 0.6362692565150959,
+ 1.944657670485697,
+ 2.617508855308175,
+ 3.213157688552944,
+ 1.8177430338348721,
+ -1.3193577371581708,
+ -2.769082324610912,
+ -2.411974264287838,
+ -1.9185691620236274,
+ -0.5966241972664238,
+ 0.9927519147761402,
+ 2.1447455958757846,
+ 2.590825195948688,
+ 3.1137174772781617,
+ 1.667108097321868,
+ -1.538453205701904,
+ -2.9990773046976407,
+ -2.3902558195085852,
+ -1.6662998642323765,
+ -0.37629601430825815,
+ -0.032310626246443624,
+ 0.5492098759434325,
+ 1.8136731159473904,
+ 2.0728856189444924,
+ 0.35518460265912144,
+ -1.2049015987785225,
+ -2.2519000852673705,
+ -2.3063302970832624,
+ -1.3687823219896122,
+ 0.038760698724681394,
+ 0.8780329560548268,
+ 0.8941384577151767,
+ 2.957570599197116,
+ 3.8411305298305236,
+ 0.5732618302173853,
+ -1.0075769413640376,
+ -2.160425932511438,
+ -2.3614366707286734,
+ -1.5458065125736375,
+ -0.2022292252381325,
+ 0.18980696055532523,
+ 0.6949707618903357,
+ 1.7192205581993498,
+ 1.8950800807872865,
+ 0.19555229337237262,
+ -1.340701793283148,
+ -2.446178591691019,
+ -3.1467293763941204,
+ -1.9828638745038398,
+ 0.7337821123790347,
+ 2.03373215698853,
+ 2.251198215791392,
+ 2.301950564924265,
+ 1.3611066680876087,
+ -0.18406917352023394,
+ -1.63984665467877,
+ -2.5625897466420753,
+ -3.2251501334476576,
+ -1.935949749174121,
+ 1.0173870623315309,
+ 2.4066512582270025,
+ 2.3610690541781056,
+ 2.1619311329527178,
+ 1.2369987692589564,
+ 1.1633578997563905,
+ 0.20298141215929177,
+ -2.0590184523754926,
+ -2.80710743480343,
+ -1.147424215160604,
+ 0.42046993752641904,
+ 1.8132836307824223,
+ 2.4083835457893192,
+ 1.9640495342915452,
+ 0.8557692598829124,
+ 0.7405153576512175,
+ -0.1964421041322919,
+ -2.409720524194766,
+ -2.372605481131758,
+ 0.5150561864182382,
+ 1.8583221186553784,
+ 2.0951000132795743,
+ 2.3769236941958654,
+ 1.6357771514023551,
+ 0.16943664042493584,
+ -1.3600255860796726,
+ -2.4511582391243185,
+ -3.2084691189753665,
+ -2.1386584255033454,
+ 0.8842403171720381,
+ 2.097508312206215,
+ 2.2570416432435634,
+ 2.290400023613043,
+ 1.557683026033092,
+ 2.197073336156482,
+ 1.722088248558168,
+ 0.4176463452254322,
+ -0.29047240140429287,
+ -1.3870433461092446,
+ -2.311913679237157,
+ -2.2442816934402123,
+ -1.1843426376335366,
+ 0.37778082916844846,
+ 1.8313951137576192,
+ 2.5446576050259067,
+ 1.8569049194428682,
+ 0.10464655437725771,
+ -0.7968258069661278,
+ -1.6821985319430028,
+ -2.3924232215559655,
+ -2.3103078202046032,
+ -2.6947049105499987,
+ -1.4457100658172128,
+ 2.1640333346041576,
+ 3.315055932644012,
+ 2.133010101990916,
+ 0.9715828491556104,
+ -0.6129642776815772,
+ -1.930952497823135,
+ -2.4099777787871197,
+ -2.0862958049216513,
+ -3.8324566426780926,
+ -2.5744550096978216
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.5907365903906103,
+ 3.700203680567486,
+ 1.7604367313196883,
+ 1.232564217359004,
+ 0.17158967266203545,
+ -0.968193277535068,
+ -1.6841371394734748,
+ -1.8435768214143748,
+ -2.2217337489512174,
+ -1.2911787838776145,
+ 1.4711035794131424,
+ 2.377122444334493,
+ 1.701884716712022,
+ 1.0171312000079407,
+ -0.015976265628445497,
+ -0.33024223944723385,
+ -0.6244025153445296,
+ -1.0696284471724073,
+ -1.1792274229368565,
+ 0.008457654015756825,
+ 1.1104390430633728,
+ 1.738259831772095,
+ 1.5994081429046478,
+ 0.7738030176640004,
+ -0.3209445053093098,
+ -0.699533333661832,
+ -0.826094008651608,
+ -0.8980866233797011,
+ -0.836798453888115,
+ 0.2893238830396324,
+ 1.3155545563610764,
+ 1.913490026651995,
+ 2.4264563391189085,
+ 1.5194364832386136,
+ -0.9661992943201947,
+ -1.936503654980325,
+ -1.7625918330916255,
+ -1.5157773100764795,
+ -0.6149291039483792,
+ 0.5602720384328842,
+ 1.486783441207469,
+ 1.9254325240919978,
+ 2.651422187455857,
+ 1.4352249717715928,
+ -0.8344282785498511,
+ -0.9796365902583876,
+ -1.321504318915246,
+ -1.6775478200052927,
+ -0.269269134596087,
+ 0.8807099150628404,
+ 1.6556993925554768,
+ 1.7009176885197574,
+ 1.0145214179277267,
+ -0.02013669516046135,
+ -0.34333979977415957,
+ -0.6270398849900803,
+ -1.1145746064537039,
+ -1.1990831860246165,
+ 0.011859035002237098,
+ 1.1132331664751214,
+ 1.854893404772645,
+ 2.356947865603936,
+ 1.4459962836551927,
+ -0.6575867660037458,
+ -1.6544407938524062,
+ -1.7076298170603532,
+ -1.6423843235014908,
+ -0.8692543795914555,
+ 0.2902958288932978,
+ 1.3173392311171426,
+ 1.9145188515869458,
+ 2.381683924134773,
+ 1.3913963747604736,
+ -0.8566566545496727,
+ -1.9052006769113206,
+ -1.7645631180899528,
+ -1.516802361689663,
+ -0.7585660769420565,
+ -0.6518772433264306,
+ -0.025203290811678616,
+ 1.5475391084874723,
+ 1.9665583240228637,
+ 0.7048003957893981,
+ -0.46182694301088306,
+ -1.4339967254889,
+ -1.7749577031547612,
+ -1.3505049706705565,
+ -0.4681623025026867,
+ -0.39786041448818754,
+ -0.0929337209564346,
+ 2.6018489098161797,
+ 3.4718129822578714,
+ 0.8519042010843945,
+ -0.30208995875169325,
+ -1.330399235584157,
+ -1.773451976627753,
+ -1.4510630680939447,
+ -0.6382467263578142,
+ -0.49269205802913957,
+ 0.08653508943083552,
+ 1.5028082965385725,
+ 1.8652432076107297,
+ 0.5948467965611107,
+ -0.5740501827933931,
+ -1.5644500495612836,
+ -2.098032118872038,
+ -1.4370494962988263,
+ 0.17248963102870463,
+ 0.9712448384353776,
+ 1.4380268825022957,
+ 1.7748094418921898,
+ 1.3482230812839608,
+ 0.3244359060049938,
+ -0.8320456870884523,
+ -1.7229370506928667,
+ -2.2500607119407117,
+ -1.46284732532141,
+ 0.40074414726239466,
+ 1.303663915610788,
+ 1.585683983713496,
+ 1.7421757889346143,
+ 1.3174798302619262,
+ 1.4122192913682075,
+ 0.5491843923285703,
+ -1.5800364679105314,
+ -2.325166175015594,
+ -1.218669326234551,
+ -0.1505702047597658,
+ 0.9865420882260986,
+ 1.6907050693315475,
+ 1.663278882042036,
+ 1.0776402312962314,
+ 1.2047031141529434,
+ 0.2712641908277434,
+ -1.7669748704707968,
+ -1.783389006961855,
+ -0.03437700203732567,
+ 0.7253048235464697,
+ 1.2648245930971116,
+ 1.7620076406557068,
+ 1.5019799055007605,
+ 0.5772461583235724,
+ -0.589539781245125,
+ -1.5721855704808334,
+ -2.1453166357995554,
+ -1.5397839417974957,
+ 0.25786106806368964,
+ 1.0100056210501993,
+ 1.4458367813205462,
+ 1.7708141730354596,
+ 1.5069853088106333,
+ 1.6533514681679913,
+ 1.0379898109182315,
+ 0.665454691682976,
+ 0.40370197362485744,
+ -0.6132482949901966,
+ -1.5161438499772038,
+ -1.769310009679293,
+ -1.241031510121933,
+ -0.1826687594816481,
+ 0.9492861940825171,
+ 1.4332629667329697,
+ 1.1881024132602156,
+ 0.4506365939212006,
+ 0.026930614358085782,
+ -0.869484750076483,
+ -1.64393755981246,
+ -1.8772753641378037,
+ -2.2851952484174114,
+ -1.3591641620253316,
+ 1.4149731214210293,
+ 2.333396900127523,
+ 1.7313831857896722,
+ 1.1098688272043955,
+ 0.007749743909106028,
+ -1.100862950987513,
+ -1.7288024023475614,
+ -1.784230289530474,
+ -3.467255644975686,
+ -2.4006396913217367
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.508148763908903,
+ 3.671871623126113,
+ 2.0403422110979905,
+ 1.7581354661930322,
+ 0.717337209369887,
+ -0.6434701267272571,
+ -1.7185886973658815,
+ -2.229831762361814,
+ -2.7886366323289873,
+ -1.757405587900819,
+ 1.4148877065463716,
+ 2.4928455056663537,
+ 2.056378197137164,
+ 1.5699668935964535,
+ 0.5525078976669315,
+ 0.32821779261721706,
+ -0.30738835505869405,
+ -1.4928312979094012,
+ -1.932309261432699,
+ -0.5161817011145774,
+ 0.8330830212233716,
+ 1.8286468608896806,
+ 2.018607319117209,
+ 1.3393939788722427,
+ 0.20305150005928235,
+ -0.10957605484023586,
+ -0.567487464072638,
+ -1.3472913107271842,
+ -1.596587596464627,
+ -0.1949655491063389,
+ 1.1191926872591658,
+ 2.074121693113928,
+ 2.724957398943713,
+ 1.8292838406460303,
+ -0.7117526979409385,
+ -1.7352486745595832,
+ -1.9086893719456728,
+ -1.9706100598279281,
+ -1.1837295209776173,
+ 0.12863283751925136,
+ 1.3769810882201743,
+ 2.178043940930781,
+ 3.1017392462000433,
+ 1.8187176432672796,
+ -0.4666066823490948,
+ -0.6545035950009047,
+ -1.7484366898101442,
+ -2.4998686172286173,
+ -0.820762821750886,
+ 0.529657056384339,
+ 1.6571202901383153,
+ 2.0551635725444934,
+ 1.5669422512308153,
+ 0.5474924962465116,
+ 0.32627863387340905,
+ -0.27288612732492906,
+ -1.579074736926879,
+ -1.9664233786701653,
+ -0.512364231571701,
+ 0.8362166552059563,
+ 1.9206660576052352,
+ 2.536062043863965,
+ 1.6859069402250535,
+ -0.34944144206863303,
+ -1.3452067105058987,
+ -1.766253899579998,
+ -2.038559033552114,
+ -1.4335933141207164,
+ -0.19320483428739843,
+ 1.1220256929602315,
+ 2.0762544116210115,
+ 2.675443777787038,
+ 1.6916865865920385,
+ -0.6079210389865196,
+ -1.709749514693739,
+ -1.9116328427193667,
+ -1.9720832361766802,
+ -1.3732892247775,
+ -1.4266232815466173,
+ -0.5213051076303833,
+ 1.9158393354772645,
+ 2.6309333470091474,
+ 1.2712450585667954,
+ -0.009733099085758807,
+ -1.2914829794246323,
+ -2.005888721895568,
+ -1.8531120789754658,
+ -1.0770404774129219,
+ -1.6309616243474376,
+ -0.964473503524416,
+ 3.298740761891391,
+ 4.490929477901748,
+ 1.4146785047844148,
+ 0.17945254326002452,
+ -1.1378762193360634,
+ -1.9558650404212405,
+ -1.9274926907138044,
+ -1.2523278900261712,
+ -1.2596645113777114,
+ -0.3955130062734196,
+ 1.8960555944262427,
+ 2.5555262469199174,
+ 1.161180435837946,
+ -0.14504149418272058,
+ -1.4179321741656215,
+ -2.0148155418083196,
+ -1.5261209133812488,
+ -0.23666144313184426,
+ 0.44408561707608796,
+ 1.3010668943372738,
+ 2.0092666860328,
+ 1.8545222854083396,
+ 0.8795170251940809,
+ -0.4671637037929364,
+ -1.6728501663164943,
+ -2.2874994984403743,
+ -1.6233904556564558,
+ 0.03228429306304017,
+ 0.8697320008379757,
+ 1.5373677779378583,
+ 2.055052099985162,
+ 1.8910498930946869,
+ 2.1647236439207496,
+ 1.0530411185760256,
+ -1.7805576716322074,
+ -2.809029964676722,
+ -1.7465121477663699,
+ -0.6919093548305604,
+ 0.6648896153745932,
+ 1.731544567540715,
+ 2.046648297181967,
+ 1.6789361857934038,
+ 2.0599453877533263,
+ 0.7713975702496007,
+ -1.9005286202456704,
+ -1.9685700124613554,
+ -0.5128441236993453,
+ 0.044069188429517674,
+ 1.0469341647669244,
+ 1.9172229633942806,
+ 1.9648710042077953,
+ 1.1440386562305591,
+ -0.163226559066791,
+ -1.4309676879970614,
+ -2.0679950821541953,
+ -1.623333797854349,
+ -0.17365752837539178,
+ 0.47653166901582256,
+ 1.3135366961922845,
+ 2.010136954146437,
+ 2.0421676202663623,
+ 2.3581019974541406,
+ 1.124386577162278,
+ 1.1305914267342816,
+ 1.1464226991944064,
+ -0.19322791501612915,
+ -1.4238870430027897,
+ -2.0458367807003635,
+ -1.7651258403513992,
+ -0.727353130138824,
+ 0.5664541860048623,
+ 1.041928913158203,
+ 1.0775216492942332,
+ 0.9165077914613153,
+ 0.7348477819280645,
+ -0.514804823912044,
+ -1.6407472110031949,
+ -2.2307352019808637,
+ -2.815062217917087,
+ -1.8072814176217213,
+ 1.3234595863590874,
+ 2.3972410089993494,
+ 2.0554707020839413,
+ 1.65274593452847,
+ 0.5363652491899408,
+ -0.8202308146696792,
+ -1.8151693530196915,
+ -2.2129032475124215,
+ -4.488110071402899,
+ -3.1743873528259363
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.514280933815417,
+ -3.265318715201621,
+ -0.48730172380089193,
+ 0.8566327043143129,
+ 1.8367023215994658,
+ 2.0075569136417926,
+ 1.3141227390574806,
+ 0.17186155585442509,
+ -0.16146279719512896,
+ -0.590871411746683,
+ -1.4615577315175865,
+ -1.611019696734078,
+ -0.16619421170345042,
+ 1.1398346811455442,
+ 2.079631693774788,
+ 2.675202984974884,
+ 1.6857245765225652,
+ -0.6238570172720855,
+ -1.7290346871665272,
+ -1.9138657023925554,
+ -1.956983386523435,
+ -1.1570948940194192,
+ 0.15653411717675292,
+ 1.394145136348784,
+ 2.178589405674058,
+ 2.741859428602949,
+ 1.6458321329097982,
+ -0.8649563064809295,
+ -2.046060584653216,
+ -2.0072642582300846,
+ -1.837933805256756,
+ -1.0515724186891446,
+ -0.9889324545429837,
+ -0.17252030973907884,
+ 1.7504542712401425,
+ 2.3864003090581227,
+ 0.9754290277926158,
+ -0.35751005987037837,
+ -1.5415867897039937,
+ -2.0474852331539655,
+ -1.669697843723266,
+ -0.7275074723225315,
+ -0.6294689113959635,
+ 0.1670889767515193,
+ 2.049863122539789,
+ 2.0188248913405036,
+ -0.42214705657156637,
+ -1.5547813867516922,
+ -1.7741052656077683,
+ -2.0284762086408374,
+ -1.4098595429316056,
+ -0.1662705571224288,
+ 1.1405564950784843,
+ 2.0800803503355283,
+ 2.72694841473436,
+ 1.8229511320237517,
+ -0.7355276145698274,
+ -1.7638836743880761,
+ -1.9152606600895383,
+ -1.9581389902511512,
+ -1.3462324754306987,
+ -1.3634046513055886,
+ -0.3639217140244061,
+ 1.681853824212255,
+ 2.537761005362385,
+ 1.2463525257479726,
+ -0.036131398784614674,
+ -1.3080195409379614,
+ -2.0052283708020653,
+ -1.835652586331591,
+ -1.048442670905366,
+ -0.9679005909555009,
+ -0.0978270028880601,
+ 1.6360800946536889,
+ 2.338564171153189,
+ 0.9735805563279213,
+ -0.358264722590263,
+ -1.5857248137969169,
+ -2.2584594507767934,
+ -1.7813870173927169,
+ 0.01589251517487851,
+ 0.7337780603328032,
+ 1.4562209521418599,
+ 2.0376867192952064,
+ 1.7434672713344537,
+ 0.6776967599844345,
+ -0.6723806258541359,
+ -1.8126710303522706,
+ -4.141304026615202,
+ -3.0879168288469283,
+ 0.30900632321286625,
+ 0.7365282944703495,
+ 1.3171624269599067,
+ 2.0081917127673616,
+ 1.8366712658848654,
+ 0.8527363884168627,
+ -0.49130520420372664,
+ -1.6862206981126195,
+ -2.366253439367829,
+ -1.825808989770784,
+ 0.14478012854370403,
+ 0.9145205482481011,
+ 1.5497875870585203,
+ 2.0497003011977566,
+ 1.869510036947148,
+ 2.0954853902249955,
+ 0.9044517810204511,
+ -1.6343468727175239,
+ -2.7458544341743765,
+ -1.726729371010637,
+ -0.6647543971553036,
+ 0.6877503098945554,
+ 1.7399941584035485,
+ 2.0371442626530842,
+ 1.6545115139762028,
+ 1.7869301018600563,
+ 0.6667574616247662,
+ -1.6815417523852167,
+ -2.691147155633457,
+ -1.5307756982386123,
+ -0.3518745937316451,
+ 0.958498369985723,
+ 1.5278138966612702,
+ 1.3617588362036617,
+ 0.621626346858153,
+ 0.22871758707157488,
+ -0.8767631904555335,
+ -1.8386454132342653,
+ -2.0120795774163596,
+ -1.296520233617535,
+ -0.02825865256681762,
+ 1.2642346827261055,
+ 2.078534470168655,
+ 1.5857463128923703,
+ 1.0247606999659118,
+ 0.8511657420015691,
+ -1.7094589995263576,
+ -3.0956072538064805,
+ -1.8728166997126385,
+ -0.9417933309000294,
+ 0.398585003534812,
+ 1.5664957806357787,
+ 2.053142686724691,
+ 1.8568566526128758,
+ 2.114463670256774,
+ 1.012319878955316,
+ -1.7885959882056504,
+ -2.8019290964303787,
+ -1.716465434346815,
+ -0.6436588937762232,
+ 0.6570295008366618,
+ 1.1481840108659196,
+ 1.1308633548892724,
+ 1.1216729982663287,
+ 2.3541684630365194,
+ 2.0505355518870094,
+ 1.6310295095284373,
+ 0.507167544839871,
+ -0.8440306412675808,
+ -1.8233696072745496,
+ -2.2025764327468584,
+ -2.6470988273046654,
+ -1.4172669674526293,
+ 1.3079342650569963,
+ 2.549687612204633,
+ 2.0320645678690874,
+ 1.4165631085651638,
+ 0.31984737423069115,
+ 0.027372200499702893,
+ -0.46695168274793236,
+ -1.5418631457163,
+ -1.7621891117769648,
+ -0.30190706020365443,
+ 1.024384211991864,
+ 1.914464480046744,
+ 1.9607050434788336,
+ 1.1636257196464044,
+ -0.033010813698602606,
+ -0.7467365378479993,
+ -0.7602758468104296
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.5943361360789834,
+ -3.461631976103941,
+ -0.8490621106796689,
+ 0.3018671126167885,
+ 1.3272034936207966,
+ 1.7686840786116786,
+ 1.446784138191738,
+ 0.6358927538425041,
+ 0.49051874349881364,
+ -0.08686711157672604,
+ -1.4984917427344264,
+ -1.859639588091052,
+ -0.592663189622217,
+ 0.5730689855118606,
+ 1.5606014063272942,
+ 2.0927472621682246,
+ 1.4332545660324807,
+ -0.17251340296859133,
+ -0.9693693662516217,
+ -1.4344888682347396,
+ -1.7699797782396534,
+ -1.3441713479721353,
+ -0.32296525240861157,
+ 0.830326783282513,
+ 1.7185690592813347,
+ 2.24424291777624,
+ 1.458901523857835,
+ -0.4001320367512481,
+ -1.300826325181664,
+ -1.5816642932643903,
+ -1.7373351513963888,
+ -1.3134256794766102,
+ -1.4077022530919896,
+ -0.5471937427910879,
+ 1.5757434698624784,
+ 2.3186204550921903,
+ 1.2149250521570811,
+ 0.1495608392659457,
+ -0.9843752143261321,
+ -1.6863163201822597,
+ -1.6585587432686997,
+ -1.0742114117792152,
+ -1.2006155632122173,
+ -0.26988939430934483,
+ 1.7635337858458124,
+ 1.7802639916123342,
+ 0.047735357091507793,
+ -0.7018539229226309,
+ -1.2534831360758052,
+ -1.760264996071687,
+ -1.5106003982820977,
+ -0.5924544881429709,
+ 0.5743273193656568,
+ 1.5620806524091424,
+ 2.1350697334230566,
+ 1.5366679297350818,
+ -0.24370975846861986,
+ -0.9899833118592906,
+ -1.4364672513660113,
+ -1.7716132449982254,
+ -1.5177985832582426,
+ -1.6687970341675054,
+ -0.6702132264700329,
+ 1.439488680304302,
+ 2.354269488859055,
+ 1.4025354374891934,
+ 0.42488911489197434,
+ -0.7396135543721198,
+ -1.5804071821171648,
+ -1.736119013503103,
+ -1.3113666599078058,
+ -1.3796442118793728,
+ -0.45606810028074485,
+ 1.4600136908695571,
+ 2.2742108219284445,
+ 1.2140840286515757,
+ 0.14927805859297974,
+ -0.9778801773230984,
+ -1.510650103102331,
+ -1.3260910917137547,
+ -0.4139356258779706,
+ 0.007964796862904805,
+ 0.8957658516885311,
+ 1.6518958981340606,
+ 1.6992361855566498,
+ 0.9955322393398579,
+ -0.13153653546697006,
+ -1.227614497795833,
+ -2.989492253612172,
+ -2.285139635444811,
+ -0.48470505525477475,
+ -0.40417007751120526,
+ 0.7512298391938218,
+ 1.58587028057101,
+ 1.7404745265290429,
+ 1.1261016846058025,
+ 0.031633694007933574,
+ -1.086190009060473,
+ -1.6351156398779922,
+ -1.390078855558117,
+ -0.3051798393555217,
+ 0.17109436925460447,
+ 0.9960380260783869,
+ 1.6917652417435525,
+ 1.829451265443088,
+ 2.1453740221736353,
+ 1.0722340115230364,
+ -1.2704582812368148,
+ -2.3219966988726246,
+ -1.6878204723072874,
+ -0.9858063409610318,
+ 0.14366598550249907,
+ 1.2127781582451231,
+ 1.753360529116041,
+ 1.7121768654039708,
+ 1.9563134157152415,
+ 0.9014644676801954,
+ -1.3685815014050962,
+ -2.3725282583432383,
+ -1.5818169700118563,
+ -0.742696384709123,
+ 0.3547285472613459,
+ 0.7546832528662963,
+ 0.867899157471362,
+ 0.8999389242136724,
+ 0.8109555683899999,
+ -0.32075450847508774,
+ -1.3344414318097713,
+ -1.777116552861669,
+ -1.4354189955402719,
+ -0.47882194056762717,
+ 0.6495089855585513,
+ 1.2238932986648943,
+ 1.11198454086816,
+ 1.253046123457611,
+ 1.1276603084968877,
+ -1.2697425292988054,
+ -2.516044475666481,
+ -1.7494779641091007,
+ -1.1895942748913857,
+ -0.11502764492650155,
+ 1.0133838823988126,
+ 1.6986034891887267,
+ 1.8221098538638287,
+ 2.172584136897975,
+ 1.1812213888500083,
+ -1.409374959341721,
+ -2.3746229187033707,
+ -1.6822874345658196,
+ -0.9689208760984968,
+ 0.07699131326134602,
+ 0.4042518761811324,
+ 0.6650705079198045,
+ 1.0358532465691381,
+ 1.650558328546238,
+ 1.7031763110097309,
+ 1.637702626710151,
+ 0.8663696327926608,
+ -0.29010689877226714,
+ -1.314178408540118,
+ -1.909415580723992,
+ -2.3752285733543537,
+ -1.387476353742527,
+ 0.8547385897216566,
+ 1.9005417245364362,
+ 1.7598614115293314,
+ 1.5123792549028994,
+ 0.7559044843864108,
+ 0.6492880913841458,
+ 0.024570336368903916,
+ -1.5431389381191984,
+ -1.9607287936403293,
+ -0.7023352265744988,
+ 0.46115854404238665,
+ 1.4304768209308814,
+ 1.7701300564112203,
+ 1.3464561409789757,
+ 0.46625511842102374,
+ 0.39527738966513104,
+ 0.09165061782091538
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.269764013726378,
+ -4.571643705142636,
+ -1.8529790489509792,
+ -0.9355506881521837,
+ 0.3885221350818333,
+ 1.544529967917304,
+ 2.0287934777851575,
+ 1.8382578442066326,
+ 2.103992354547304,
+ 1.0726205262137132,
+ -1.866906624821162,
+ -2.789946264363925,
+ -1.6992524974511058,
+ -0.6412628006822411,
+ 0.6436442873533149,
+ 1.1280496524530266,
+ 1.1142004951580935,
+ 0.8479837131171449,
+ 0.6203548091745849,
+ -0.5862889594064633,
+ -1.667084267807724,
+ -2.033805630378278,
+ -1.5024751130640939,
+ -0.3286729557325143,
+ 0.969036800189009,
+ 1.5060121589537088,
+ 1.297582252642004,
+ 0.6089428446344041,
+ 0.19279805153332036,
+ -0.8866474192863473,
+ -1.82987359005091,
+ -2.171722016971397,
+ -2.6498433680665583,
+ -1.5243789634937164,
+ 1.4649391510216005,
+ 2.597214741376195,
+ 2.002508604035303,
+ 1.360734704408151,
+ 0.13019562513867883,
+ -1.1613320000378322,
+ -1.944970701687578,
+ -2.0854079903211242,
+ -2.7592470659771173,
+ -1.340200387758451,
+ 1.427696634258382,
+ 1.5590221319443998,
+ 1.1529685319751488,
+ 1.1558400838477592,
+ -0.27496665291156064,
+ -1.4660817368835224,
+ -2.030155810405389,
+ -1.6983381314385972,
+ -0.6385158803152894,
+ 0.6478094580173673,
+ 1.156368388800323,
+ 1.158205345117602,
+ 0.8578043679356843,
+ 0.6290683287961669,
+ -0.590004324915992,
+ -1.670139645741408,
+ -2.2039475534367234,
+ -2.695603444272888,
+ -1.5110316539297903,
+ 1.1451851978679157,
+ 2.369623481142208,
+ 2.0310866845435838,
+ 1.5804845199744915,
+ 0.4471755124524594,
+ -0.8869742796633182,
+ -1.8309121702513202,
+ -2.171773512399589,
+ -2.600107943191545,
+ -1.3777522466792258,
+ 1.3242497809413414,
+ 2.5524309241594803,
+ 2.0038606027782895,
+ 1.361499946986538,
+ 0.256040388494142,
+ -0.05054092807171903,
+ -0.5136559015848702,
+ -1.4946980739598665,
+ -1.6838682028194556,
+ -0.2430612296013685,
+ 1.0629833648006397,
+ 1.9161038118995957,
+ 1.9245587822361296,
+ 1.1054851191005761,
+ -0.09389808616485477,
+ -0.8653966967957777,
+ -0.8426738312619473,
+ -2.4277397130118397,
+ -3.1415581771724774,
+ -0.42760083966067375,
+ 0.8992966321624224,
+ 1.843875065469768,
+ 1.9759712901676074,
+ 1.2576158596419877,
+ 0.10909995693817749,
+ -0.23734502708870292,
+ -0.6353446393623806,
+ -1.4124241584345494,
+ -1.5311030111130686,
+ -0.10825817531482483,
+ 1.1753525257647428,
+ 2.080579106001747,
+ 2.665853390032655,
+ 1.6656333486289219,
+ -0.6607980384755826,
+ -1.7704928663388197,
+ -1.9149527345072315,
+ -1.9205062259082464,
+ -1.0986301018152667,
+ 0.21120904640780885,
+ 1.4215456493226266,
+ 2.1692047914149217,
+ 2.7199621750522547,
+ 1.6188330144126515,
+ -0.8962210006073342,
+ -2.076067239852822,
+ -1.9988371838731518,
+ -1.7943776581991933,
+ -0.9870598597057252,
+ -0.9068929302009145,
+ -0.12080884094835309,
+ 1.718751976660202,
+ 2.322068143367309,
+ 0.9160057157640762,
+ -0.4094762377992511,
+ -1.5636742562351773,
+ -2.029840882531667,
+ -1.620179773202268,
+ -0.6623165144781605,
+ -0.5394698755423998,
+ 0.21613953299261834,
+ 2.0216568263800214,
+ 1.9851259791460922,
+ -0.48304068370207626,
+ -1.6378324294288578,
+ -1.791254621363586,
+ -1.9917829243714753,
+ -1.3349582082376825,
+ -0.08615802576530089,
+ 1.191400607020819,
+ 2.084253468852867,
+ 2.7174053229687574,
+ 1.7977606928847263,
+ -0.7901112545734306,
+ -1.8249883415822266,
+ -1.9194210047948332,
+ -1.9102633992604576,
+ -1.2617440876845785,
+ -1.2552091102489007,
+ -0.2963619029867499,
+ 1.6548673131839384,
+ 2.465694539946306,
+ 1.2135854673930033,
+ 1.9617387655935974,
+ 1.8675775335822047,
+ 0.9475621649501782,
+ -0.373760080991095,
+ -1.5851160286402457,
+ -2.1883388834118156,
+ -1.5793121401845056,
+ -0.04157855607604565,
+ 0.7440520708611215,
+ 1.4562885499319518,
+ 2.020784715302364,
+ 1.9156105899039557,
+ 2.222523080902759,
+ 1.1759258405933326,
+ -1.836775717389301,
+ -2.7932393777927733,
+ -1.7688282330238387,
+ -0.7659934267538365,
+ 0.5707651021219081,
+ 1.6589299555092265,
+ 2.026613923044223,
+ 1.7188710698348126,
+ 3.1340611510334875,
+ 2.0964701387738027
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.1862471141538165,
+ -3.2513763192406273,
+ -1.9688023741440726,
+ -1.8524290429548418,
+ -0.9374820896548915,
+ 0.3944418723060664,
+ 1.54794006053841,
+ 2.195709961880558,
+ 2.791942642734501,
+ 1.8192387117497153,
+ -1.2280164160951228,
+ -2.28137237372232,
+ -2.0239697942078996,
+ -1.6999635035987015,
+ -0.8032983279710337,
+ -0.6530827644217219,
+ 0.09965377394391381,
+ 1.5602509810822236,
+ 2.1321472687804284,
+ 0.7469363642026269,
+ -0.5891178349844247,
+ -1.6765336838107738,
+ -2.02584470836491,
+ -1.5018146847016811,
+ -0.4679868848793265,
+ -0.22600665915254506,
+ 0.363096033314626,
+ 1.4450212745274702,
+ 1.8371306650161139,
+ 0.43902108953126057,
+ -0.8880865785918052,
+ -1.933452829028099,
+ -2.5881090750437585,
+ -1.797439612109756,
+ 0.49373012469661165,
+ 1.4335189890557773,
+ 1.7782957335406548,
+ 2.0026810404762654,
+ 1.3650784659275508,
+ 0.12224171069721447,
+ -1.164909350087871,
+ -2.0763499320859586,
+ -3.006583471623162,
+ -1.8284210134425816,
+ 0.2134533369917665,
+ 0.40403573137559157,
+ 1.7897114823980036,
+ 2.675079083652515,
+ 1.0326519446464932,
+ -0.2787452702508105,
+ -1.475137177069364,
+ -2.022752321008516,
+ -1.697044911874951,
+ -0.7983676703100617,
+ -0.6574748946701556,
+ 0.04859053660830651,
+ 1.6596284885178572,
+ 2.1703177919719727,
+ 0.7433122171372903,
+ -0.5920904033647142,
+ -1.7449047213479436,
+ -2.354580012359225,
+ -1.6315244000177147,
+ 0.14193245544141722,
+ 1.0272791636682843,
+ 1.6036035895865184,
+ 2.0309697573232057,
+ 1.5849380945372369,
+ 0.43702035417601814,
+ -0.8911792623989357,
+ -1.9359552157975561,
+ -2.541455828255388,
+ -1.6697768278860803,
+ 0.4044818818513427,
+ 1.4140081677133982,
+ 1.7814481637081838,
+ 2.004237695492773,
+ 1.5589119797668078,
+ 1.6941101551556306,
+ 0.735847126290601,
+ -1.9065016926394829,
+ -2.7050810847989823,
+ -1.441648963979369,
+ -0.2392450807405867,
+ 1.0709008806562055,
+ 1.9112928656379125,
+ 1.9243391902302613,
+ 1.2921310589973944,
+ 2.127244592927653,
+ 1.3360049449372278,
+ -3.317066014351454,
+ -4.554458991121415,
+ -1.5672501823050136,
+ -0.42371256962392845,
+ 0.9068134369069183,
+ 1.8401807553520457,
+ 1.9761616463503346,
+ 1.4509384321045544,
+ 1.5413014840892592,
+ 0.616220216314295,
+ -1.9025783882718095,
+ -2.652195991927982,
+ -1.3436618110803251,
+ -0.10619881883161796,
+ 1.1812082837315003,
+ 1.7469721548080341,
+ 1.4066503715001213,
+ 0.43491697073548474,
+ -0.10604325497037215,
+ -1.0824720620462274,
+ -1.9162326070521118,
+ -1.9276171449257544,
+ -1.0868943041216814,
+ 0.21555997659804768,
+ 1.4608887409895077,
+ 2.055743068157097,
+ 1.5323825988444153,
+ 0.17332070461007432,
+ -0.5358665415664369,
+ -1.3413188331716541,
+ -1.9999679180985306,
+ -1.9970034812124875,
+ -2.3386119575223807,
+ -1.2131904518404586,
+ 1.6941373444132442,
+ 2.7645499487827627,
+ 1.8433324542760012,
+ 0.9124411066022748,
+ -0.4151822840116181,
+ -1.5629706005953183,
+ -2.031145728077286,
+ -1.8234868972885647,
+ -2.3017247411357262,
+ -0.9605681240836409,
+ 1.7641574665057547,
+ 1.8530039374058154,
+ 0.718649519099127,
+ 0.33434154016148815,
+ -0.8119930120087008,
+ -1.7908883424536115,
+ -2.0019929035410047,
+ -1.3286632817459814,
+ -0.08854215064236443,
+ 1.1957156169231113,
+ 1.7975269394213582,
+ 1.4901140840342957,
+ 0.3911257588593115,
+ -0.13144953486962566,
+ -1.0961254086407763,
+ -1.9196753118239058,
+ -2.1104059918593356,
+ -2.4844775826699927,
+ -1.2559112927968417,
+ 1.4321618365724904,
+ 2.64150985508486,
+ 1.946829938404733,
+ 1.2162606599872403,
+ 1.9718377177575315,
+ 1.8578390907253732,
+ 0.9458106683452147,
+ -0.2940563394509441,
+ -0.7124306985259509,
+ -0.8980466125578632,
+ -1.0708861038882538,
+ -1.0419862877268358,
+ 0.2635415961063576,
+ 1.4580436512073556,
+ 2.178530872391357,
+ 2.795145647272271,
+ 1.8536830470941512,
+ -1.127318094622445,
+ -2.167864235202756,
+ -2.006489445366818,
+ -1.7681518939500083,
+ -0.7670742600304954,
+ 0.5758868252394644,
+ 1.6623368125324238,
+ 2.203908006095873,
+ 4.552905565826584,
+ 3.248572612092006
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.15610845546507013,
+ -0.5242900108048276,
+ -1.23586417954335,
+ -1.973461172417373,
+ -1.8636518912509588,
+ -0.9296803798153264,
+ 0.39781749529145277,
+ 1.6073564395877942,
+ 2.2780536776928804,
+ 1.7837480275080706,
+ -0.057303854478181475,
+ -0.7871042153107234,
+ -1.4768422774993033,
+ -2.029059520242904,
+ -1.9086911009767293,
+ -2.1585895337476133,
+ -0.9613224668319027,
+ 1.6019933362062582,
+ 2.729470945285921,
+ 1.7625342198127203,
+ 0.7466023858009113,
+ -0.5949495997772125,
+ -1.6772353067090071,
+ -2.031202960969627,
+ -1.7080487512830456,
+ -1.8664339726313692,
+ -0.731172138638168,
+ 1.6606955009090552,
+ 2.6946875615071844,
+ 1.5798422724500154,
+ 0.43993895956015355,
+ -0.8604646018174605,
+ -1.4099008491432974,
+ -1.296183277614719,
+ -0.693728894912737,
+ -0.3524183864247999,
+ 0.7863315372345256,
+ 1.7830424906765903,
+ 2.0153918210318764,
+ 1.35745447172486,
+ 0.12023585668632378,
+ -1.1717196015510194,
+ -1.958006864321033,
+ -1.5296925013894307,
+ -1.0969807402622136,
+ -0.9291393651587118,
+ 1.6567059893543088,
+ 3.0457079943328327,
+ 1.8993275530806455,
+ 1.0328513592798312,
+ -0.2819960469641412,
+ -1.4758447879079875,
+ -2.027226839569779,
+ -1.9051206274374735,
+ -2.1939121082475,
+ -1.0857529285966316,
+ 1.7483713276577335,
+ 2.780736636570168,
+ 1.7605665485603632,
+ 0.7449945791203211,
+ -0.5317146928675821,
+ -0.9968539226529133,
+ -1.0487397872259596,
+ -0.9259464617200278,
+ -0.7626977104423985,
+ 0.48302491111883433,
+ 1.6070159848566798,
+ 2.042975330544942,
+ 1.577025965558873,
+ 0.43611816953008037,
+ -0.8643482705992911,
+ -1.3864622463903615,
+ -1.2426106434813906,
+ -0.6928676930862627,
+ -0.3381532352264974,
+ 0.7899317474051692,
+ 1.7847221881576227,
+ 2.193844713665141,
+ 2.7140115893239583,
+ 1.6722217621327207,
+ -1.497421199444036,
+ -2.5630531010527937,
+ -2.0225192312769327,
+ -1.4427114476691938,
+ -0.2390605495772233,
+ 1.073630119734477,
+ 1.91600000918178,
+ 2.1255679695137046,
+ 4.212565463638346,
+ 2.9458630516354596,
+ -2.778749417880152,
+ -4.007809937758306,
+ -2.034808053845973,
+ -1.5684687331086737,
+ -0.42454660690424895,
+ 0.9102483351093519,
+ 1.8448209075208886,
+ 2.1715390290385286,
+ 2.6612202724746448,
+ 1.606259673404146,
+ -1.5738055949296308,
+ -2.633195275971634,
+ -2.003734966282161,
+ -1.3463018853717312,
+ -0.23068133404175686,
+ 0.07148907258759869,
+ 0.5400913836217986,
+ 1.3467734844096746,
+ 1.6098005374292448,
+ 0.2197149436759409,
+ -1.0854631858171908,
+ -1.9280294499655994,
+ -1.9206260433443487,
+ -1.0874968812603119,
+ 0.12007456264780512,
+ 0.5026112466852858,
+ 0.7847117609373745,
+ 1.1717433420707115,
+ 1.240691086595357,
+ -0.10304666502094251,
+ -1.3436581172919941,
+ -2.1490598489752695,
+ -2.7665406359667943,
+ -1.7860286840694386,
+ 0.9387472770587072,
+ 2.0161671264444574,
+ 1.9787703965768955,
+ 1.8453103275661924,
+ 0.9162834379375203,
+ -0.42039661354277136,
+ -1.5674624974038536,
+ -2.2021225654263636,
+ -3.0772215849898386,
+ -1.7269762512618834,
+ 0.7448923800327198,
+ 0.9212220556609291,
+ 1.614466227559843,
+ 2.1690153958675524,
+ 0.5208137114267584,
+ -0.8168908425897625,
+ -1.807823285375457,
+ -2.0023310757335966,
+ -1.3346464534815843,
+ -0.21156003182928582,
+ 0.09924162195559762,
+ 0.5387284422490135,
+ 1.4076827816424609,
+ 1.624540382386751,
+ 0.20273269363524507,
+ -1.1011547201128387,
+ -2.0517232003556125,
+ -2.6463546151106923,
+ -1.677039317096838,
+ 0.5910011443877272,
+ 1.6786307008546566,
+ 1.8880415993781678,
+ 1.955687659965718,
+ 1.2259886739625967,
+ 1.969915434875336,
+ 1.8619321172072678,
+ 1.1282195743808725,
+ 1.075769455934852,
+ 0.17286695157678353,
+ -1.641812657287567,
+ -2.384679161786586,
+ -1.0469263857351372,
+ 0.26452826329148527,
+ 1.5027344866773522,
+ 2.1641562805072,
+ 1.73424010328988,
+ 0.0707688866373292,
+ -0.6053552675330236,
+ -1.3795497032348565,
+ -2.01110168969757,
+ -1.778616785074532,
+ -0.7592210081427134,
+ 0.5798478318944393,
+ 1.7400376921724066,
+ 4.012894413596494,
+ 3.0034706643950515
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.9479638562515957,
+ 2.4408574715991023,
+ 0.043969991888141005,
+ -1.2244295127347833,
+ -1.970202863960728,
+ -1.8470956371325276,
+ -0.9306378242650601,
+ 0.30862795485507005,
+ 0.7581778416982067,
+ 0.9614717083030706,
+ 1.1416138126628064,
+ 1.0580484268519652,
+ -0.2770039897904934,
+ -1.4640922064645412,
+ -2.175051403486145,
+ -2.715852586516604,
+ -1.6009767276118516,
+ 0.9373040434466565,
+ 2.124500515225366,
+ 2.003335532964312,
+ 1.7563882776626856,
+ 0.7517377400418828,
+ -0.588030646832106,
+ -1.666083299549585,
+ -2.1979067294432464,
+ -2.6878076247997904,
+ -1.5057075342788029,
+ 1.1444819979249454,
+ 2.3659404333142144,
+ 2.0267538049706024,
+ 1.5772614403175111,
+ 0.5947069627147543,
+ 0.39307539434775,
+ -0.22200766942077033,
+ -1.5782021283602454,
+ -1.987399510201941,
+ -0.5549178134193573,
+ 0.7764676832636905,
+ 1.7784731043702953,
+ 1.9970726242622607,
+ 1.3555711468602885,
+ 0.25194691603621877,
+ -0.043254153157595565,
+ -0.5555660602510284,
+ -1.926887536913138,
+ -1.8558684718967255,
+ 0.7926999714490293,
+ 2.074004559833096,
+ 1.9305001704947433,
+ 1.8922072522056599,
+ 1.0385040573097026,
+ -0.2766665563455739,
+ -1.4641564591285232,
+ -2.1744164439670977,
+ -2.7665999926159883,
+ -1.7440792478491027,
+ 1.0662419648465702,
+ 2.1662837942176334,
+ 2.0038932486725995,
+ 1.7568570156661545,
+ 0.919019771627329,
+ 0.8039215951675668,
+ -0.001963182296546172,
+ -1.5881221853313072,
+ -2.2207777098978125,
+ -0.8533921360934189,
+ 0.4732492387245931,
+ 1.6011345234390102,
+ 2.024361129969384,
+ 1.57439501401923,
+ 0.5911522614424572,
+ 0.3829045810750338,
+ -0.2663373316588163,
+ -1.4873853182041146,
+ -1.9455642700813685,
+ -0.5524567634235977,
+ 0.7775306054732893,
+ 1.8628050602694672,
+ 2.539496497583673,
+ 1.8734305035674852,
+ -0.4268997048604882,
+ -1.2902739934910967,
+ -1.7128417581712176,
+ -2.0129028275732574,
+ -1.4468680121269921,
+ -0.23964025377415474,
+ 1.0626145912698701,
+ 2.0236410694229825,
+ 4.445237014698558,
+ 3.260526568076714,
+ -1.0135638713148973,
+ -1.6922264256506594,
+ -1.6061161710025287,
+ -2.0243399128822586,
+ -1.5719996884306384,
+ -0.4234664007770447,
+ 0.8995188146680756,
+ 1.9362207192827434,
+ 2.6102570249782877,
+ 1.8903606897907408,
+ -0.5501043123168683,
+ -1.4528178094611652,
+ -1.7817440070076171,
+ -1.9957423972203163,
+ -1.5443678008001867,
+ -1.6397195699389613,
+ -0.5668381571563698,
+ 1.6669377334883226,
+ 2.6199603832191167,
+ 1.428260800209964,
+ 0.22611570363841252,
+ -1.0781145491517057,
+ -1.9093792323106158,
+ -1.9141902664747912,
+ -1.277055050174341,
+ -1.276080496583314,
+ -0.3109176976728186,
+ 1.6558832980944893,
+ 2.474506055201793,
+ 1.1837742027295242,
+ -0.09310379376268911,
+ -1.3536872405431966,
+ -1.9754032799068684,
+ -1.5725994300735524,
+ -0.23255660364264286,
+ 0.37671269908973176,
+ 1.2418404207733271,
+ 1.9666671884747524,
+ 1.8469677323687623,
+ 0.9104494572783537,
+ -0.4113125682782071,
+ -1.6104940803822758,
+ -2.497504420766029,
+ -1.7336446139652304,
+ -0.6054502001518218,
+ -0.4191858735918918,
+ 1.8004876559709067,
+ 3.0516697897242406,
+ 1.6272595849157436,
+ 0.5198246037227067,
+ -0.8158519979756357,
+ -1.7945864982071589,
+ -1.9952433442560664,
+ -1.5290536931166165,
+ -1.6470654795245714,
+ -0.6526393359800136,
+ 1.805946593263857,
+ 2.6684459981604474,
+ 1.41543057275774,
+ 0.20506615815066737,
+ -1.0880098809548666,
+ -1.6415039910705949,
+ -1.3595869476811586,
+ -0.5129194880226454,
+ -0.02699807315921725,
+ 0.9964121094052527,
+ 1.8795511535150533,
+ 1.9563130213343913,
+ 1.2134689181922897,
+ 1.9591687107672595,
+ 2.056470629477685,
+ 2.393993795101377,
+ 1.1702216414311344,
+ -1.4900707191325566,
+ -2.6790073880941048,
+ -1.8989429628429704,
+ -1.04864291157901,
+ 0.16248492008792798,
+ 0.5771176820126381,
+ 0.8496353318952218,
+ 1.240644398045104,
+ 1.2280512702703108,
+ -0.14260811360618803,
+ -1.367692726753341,
+ -2.0082587877114983,
+ -1.7628282395563464,
+ -0.7610868967300941,
+ 0.5075858434417716,
+ 1.7017189995722843,
+ 1.4331216806399587
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.2010149449922096,
+ 4.337720655890723,
+ 1.2973519607553043,
+ 0.04735336916181189,
+ -1.2278986681649688,
+ -1.9638920120302368,
+ -1.8506193933742718,
+ -1.1153415911624656,
+ -1.0791847748363654,
+ -0.26991494339866806,
+ 1.841987429881423,
+ 2.4368362964958585,
+ 1.0350414167484545,
+ -0.27210968324658275,
+ -1.5034237900188423,
+ -2.100589943822585,
+ -1.5476051562856596,
+ -0.12701630765112393,
+ 0.608425290445309,
+ 1.380227328215296,
+ 2.00406361945109,
+ 1.7668647201337413,
+ 0.7479369782468926,
+ -0.5858120682436402,
+ -1.7386221638001143,
+ -2.347174243734828,
+ -1.6274383591549013,
+ 0.1385700693296399,
+ 1.0205204584539913,
+ 1.5984627361252544,
+ 2.0288412866613306,
+ 1.785287004200684,
+ 2.0162245519940787,
+ 0.9414359785856369,
+ -1.7780152475872038,
+ -2.757134690690832,
+ -1.6493757419115211,
+ -0.5584838033612588,
+ 0.7772636624621426,
+ 1.773135720252692,
+ 2.0000313262428406,
+ 1.5587755920193849,
+ 1.8788673750360898,
+ 0.6520230008842118,
+ -1.9223359055343645,
+ -1.9781455743137824,
+ -0.4075088914794074,
+ 0.21509115439586998,
+ 1.1303533038922309,
+ 1.931862103615681,
+ 1.9041376381135637,
+ 1.0345772091754095,
+ -0.27403252816818763,
+ -1.505981259317456,
+ -2.1448232954991813,
+ -1.6476615921963627,
+ -0.07092780533517042,
+ 0.6227927460111926,
+ 1.3830563310152606,
+ 2.0063970862889615,
+ 1.9655639511767529,
+ 2.2480018466586755,
+ 1.0395066502691865,
+ -1.562674084026865,
+ -2.7141841219232865,
+ -1.814544944915735,
+ -0.8576020970982086,
+ 0.47255474579577894,
+ 1.5975195698904914,
+ 2.028161251904329,
+ 1.7835906878324803,
+ 1.9770210614768504,
+ 0.8188645240110659,
+ -1.6368705979573686,
+ -2.705910150693731,
+ -1.6491068974775098,
+ -0.5584921461693053,
+ 0.731717337911563,
+ 1.2726775765157599,
+ 1.2668912974310766,
+ 0.8211236766843754,
+ 0.5305275897166049,
+ -0.6675546049684625,
+ -1.713132213582488,
+ -2.0246588992277896,
+ -1.4420200566664823,
+ -0.2432427457764552,
+ 1.051076044347886,
+ 2.7627438388737446,
+ 2.1695899544564874,
+ 1.1776184649439168,
+ 1.3383051324609276,
+ -0.48846199063467655,
+ -1.6059953194394017,
+ -2.0359183056076606,
+ -1.5670284135506596,
+ -0.42749737527440385,
+ 0.8686836752598076,
+ 1.435798863798424,
+ 1.3589351374886596,
+ 0.7044168539461897,
+ 0.34610535686957744,
+ -0.7939632810018507,
+ -1.7821408125709073,
+ -2.1854393990693644,
+ -2.6349267861986667,
+ -1.423221746176958,
+ 1.2675554274135057,
+ 2.496217922239224,
+ 2.0147971807261715,
+ 1.4326367623013774,
+ 0.23096681835034183,
+ -1.0761569497497787,
+ -1.9119117639672054,
+ -2.1161644022811954,
+ -2.494928900976859,
+ -1.2662484507675371,
+ 1.4242738951278255,
+ 2.6357274313606025,
+ 1.9533840109550251,
+ 1.1901847673284205,
+ 0.01981413455378565,
+ -0.3384449423520777,
+ -0.6833733450509493,
+ -1.2968542374747956,
+ -1.4152926274369553,
+ -0.025408106833173332,
+ 1.2406038194095508,
+ 1.9770119890898563,
+ 1.8414993427946587,
+ 0.9151252344763215,
+ -0.32897684958818607,
+ -0.8459444308077367,
+ -0.9938899659744822,
+ -1.687192246094615,
+ -1.5712439410733887,
+ 1.2102544775970367,
+ 2.6153082751533607,
+ 2.0266197188094255,
+ 1.6248838907418954,
+ 0.5215373817820762,
+ -0.8154412602456188,
+ -1.7929484777539348,
+ -2.180501946694686,
+ -2.67399868191852,
+ -1.5560254475941748,
+ 1.4243565666192133,
+ 2.5573756615290257,
+ 2.0116168892442063,
+ 1.4153235403559592,
+ 0.3384599505312492,
+ 0.06415711161061499,
+ -0.4586590781096608,
+ -1.3895251636800554,
+ -1.7109795546802526,
+ -0.3189625245714525,
+ 0.9946618331491885,
+ 1.8848318395733077,
+ 1.9442620749282875,
+ 1.2123558840240236,
+ 2.093898092485695,
+ 2.6737898062697236,
+ 1.6579013024286284,
+ -0.6977006884555608,
+ -1.8182181636618657,
+ -1.928402461529545,
+ -1.9026253136097135,
+ -1.2398426504506808,
+ -1.2490606579757915,
+ -0.39556362733436967,
+ 1.8695108161345102,
+ 2.521971909829141,
+ 1.1484610370156547,
+ -0.13923324933425676,
+ -1.37193736641731,
+ -2.00158792762841,
+ -1.7664714433782815,
+ -0.9361537618936339,
+ -1.3285163539100224,
+ -0.7450009645578997
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.6822188974291703,
+ 5.217441181873483,
+ 2.3458475717234166,
+ 1.48916998383642,
+ -0.012444549745357258,
+ -1.5127401870357102,
+ -2.352675839847098,
+ -2.4133272101969085,
+ -2.8611850010708264,
+ -1.5992067533504264,
+ 2.0952104598954278,
+ 3.2895521880324545,
+ 2.2288113171854302,
+ 1.1734905866817031,
+ -0.2868262908644534,
+ -0.7706789662296545,
+ -1.0256211738403385,
+ -1.307608679917366,
+ -1.3083486368014356,
+ 0.25586212570015593,
+ 1.6907794510854315,
+ 2.4027870613990427,
+ 2.054592001677052,
+ 0.8253252149325768,
+ -0.695069265067463,
+ -1.2582235256060683,
+ -1.2821354303423964,
+ -1.0542504164453257,
+ -0.8236140932457168,
+ 0.6321295200680198,
+ 1.9416056256197407,
+ 2.6165778506203115,
+ 3.2739395143522936,
+ 1.9929646443851015,
+ -1.4772553402043285,
+ -2.81723474344414,
+ -2.411102012227003,
+ -1.9203968701516798,
+ -0.6003809073386219,
+ 0.9887268346610041,
+ 2.142183276180726,
+ 2.5906018055423976,
+ 3.5197467745805695,
+ 1.8402765372061718,
+ -1.3446453524213404,
+ -1.529026374268127,
+ -1.6601316567936855,
+ -1.977021705229061,
+ -0.12226767691437097,
+ 1.401941588975137,
+ 2.3280373103364806,
+ 2.2275661214500073,
+ 1.1700127877949977,
+ -0.29227860780548215,
+ -0.7942882693003768,
+ -1.0466010371167842,
+ -1.3516207659631552,
+ -1.329644843804662,
+ 0.2604507841045428,
+ 1.6945510160088253,
+ 2.5782752688017156,
+ 3.2316953776958046,
+ 1.9221935798376808,
+ -1.068169919094851,
+ -2.470732944700879,
+ -2.3744771707578876,
+ -2.1257413287406512,
+ -0.9601567282252973,
+ 0.6331299020894557,
+ 1.9436278615390379,
+ 2.6175129520847387,
+ 3.213173646575932,
+ 1.8173247598868494,
+ -1.3205304935382811,
+ -2.770508087334821,
+ -2.4134233069529794,
+ -1.9216297424218642,
+ -0.7810447906202955,
+ -0.5565677337218546,
+ 0.19524640278050673,
+ 2.005308213448414,
+ 2.456961634969146,
+ 0.7278764777979118,
+ -0.8597779540861544,
+ -2.083151071454617,
+ -2.389044842255362,
+ -1.6657303694055485,
+ -0.37531815335872015,
+ 0.013899362179586178,
+ 0.2745914056071426,
+ 3.3353516647196324,
+ 4.409059142871459,
+ 0.9364793721627286,
+ -0.6488069097610161,
+ -1.9606993956633803,
+ -2.409489632024595,
+ -1.8193349975882136,
+ -0.6121159291353061,
+ -0.3362913012364075,
+ 0.34586989867843565,
+ 1.9307944052860695,
+ 2.3024150313422904,
+ 0.5732804531758133,
+ -1.006883316356019,
+ -2.2684929616230463,
+ -2.989528724809695,
+ -1.9797540335276533,
+ 0.43286255009138147,
+ 1.6111746884802283,
+ 2.086236280632644,
+ 2.387197497036087,
+ 1.6608013240519621,
+ 0.1981900912145667,
+ -1.339926954897448,
+ -2.4465579024299373,
+ -3.147243533688927,
+ -1.9828008474791223,
+ 0.7349736537538271,
+ 2.0353608582328566,
+ 2.252691357329075,
+ 2.304830513921133,
+ 1.586278070803372,
+ 1.636312542709495,
+ 0.5381122639567311,
+ -2.1290345254583123,
+ -3.0452718999468424,
+ -1.468569331323832,
+ 0.0399583583856178,
+ 1.5371193459790402,
+ 2.3589435807114305,
+ 2.1610827564141886,
+ 1.236057130691076,
+ 1.2966650975905056,
+ 0.1489571456976007,
+ -2.4231005314927083,
+ -2.422178543152256,
+ 0.17414309387440377,
+ 1.336920935670219,
+ 1.8802672546850632,
+ 2.406040793988488,
+ 1.8972433666581254,
+ 0.5483136043052724,
+ -1.0274151910524079,
+ -2.2769098424625467,
+ -3.0532956390208086,
+ -2.1268157160800247,
+ 0.5633374142361064,
+ 1.6686283604398302,
+ 2.095055592401811,
+ 2.3793173800675422,
+ 1.8706663071048621,
+ 1.9976669223247252,
+ 0.709302122114689,
+ -1.979243891332209,
+ -3.129239167059132,
+ -1.7297955267338077,
+ -0.31456399169770727,
+ 1.241689351071464,
+ 2.253369179490845,
+ 2.2894961145114596,
+ 1.5581705871617828,
+ 2.197829883173316,
+ 1.7224566939955488,
+ 0.41717227952983765,
+ -0.2913230511953951,
+ -1.3878402068871747,
+ -2.313640680567876,
+ -2.4759752005612508,
+ -2.967666736874722,
+ -1.7032478291998059,
+ 2.032679527465124,
+ 3.252179410676329,
+ 2.2844402693527655,
+ 1.3085540576337285,
+ -0.2349152920259959,
+ -1.6788344634292791,
+ -2.3913556543287675,
+ -2.310133867085463,
+ -4.40184613215341,
+ -3.0166192380116565
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.3487709715250746,
+ 3.4025010836010856,
+ 1.7755051941326783,
+ 1.4191748889015368,
+ 0.4500067441104991,
+ -0.7207929056350059,
+ -1.573919624128683,
+ -1.9091046157307945,
+ -2.3548746662626376,
+ -1.4416138094069204,
+ 1.328723029569716,
+ 2.257396845910411,
+ 1.7612680604610256,
+ 1.2347588843716326,
+ 0.2889092173837974,
+ 0.046702540601630343,
+ -0.40737568082584463,
+ -1.2140006761987983,
+ -1.491435489107228,
+ -0.2724339101791732,
+ 0.8774786306625653,
+ 1.653788460920332,
+ 1.7011811935421413,
+ 1.0168279568483,
+ -0.016532727921106737,
+ -0.33097811584259756,
+ -0.6248635093458841,
+ -1.0694508329700427,
+ -1.178742302110412,
+ 0.008535403288368548,
+ 1.1101931324450447,
+ 1.8531569573727276,
+ 2.400592741814845,
+ 1.5689055366089382,
+ -0.7564902010845246,
+ -1.681109870575385,
+ -1.7060192908050216,
+ -1.6429721706930112,
+ -0.8718018990451132,
+ 0.28691480975271777,
+ 1.3145829073916346,
+ 1.9133194821601482,
+ 2.6894702163933633,
+ 1.53046358169917,
+ -0.5742236463480215,
+ -0.7311450505637204,
+ -1.4486327266142076,
+ -1.988681811953343,
+ -0.5432960390718636,
+ 0.6259279284836314,
+ 1.5300074491518685,
+ 1.7602416034900903,
+ 1.2321265353100788,
+ 0.28461038090363366,
+ 0.04056427469322179,
+ -0.38997279585165545,
+ -1.2775747458999867,
+ -1.5173914659799619,
+ -0.2690706549582973,
+ 0.8802403510787887,
+ 1.7483651309667982,
+ 2.2726192854629232,
+ 1.4637139369429646,
+ -0.4427636333274479,
+ -1.3629110005656402,
+ -1.6085305654230988,
+ -1.7285740216417909,
+ -1.1043203820276906,
+ 0.009855451752074735,
+ 1.1124010678589014,
+ 1.8546981356219723,
+ 2.3567072650376257,
+ 1.4455394322117152,
+ -0.6583644323288458,
+ -1.6552961818947713,
+ -1.708360452883053,
+ -1.6441583681311558,
+ -1.0289977741693264,
+ -1.0159301655296593,
+ -0.2882814876657259,
+ 1.6260856971241306,
+ 2.1712552157671374,
+ 0.953550257365935,
+ -0.18506134918720338,
+ -1.2483532788427072,
+ -1.7627557221941796,
+ -1.5158426717313913,
+ -0.7576506728052195,
+ -1.0261107443893402,
+ -0.5513703374850528,
+ 2.775390529937279,
+ 3.751017616508478,
+ 1.0874576860165328,
+ -0.021794111035908916,
+ -1.12595544107398,
+ -1.735448451724395,
+ -1.5947367917358557,
+ -0.9175234045087668,
+ -0.8647485897370264,
+ -0.17756841366278292,
+ 1.5980958910097016,
+ 2.091515126321266,
+ 0.8519340878359264,
+ -0.30104671088557344,
+ -1.3667051736305063,
+ -1.893351527179321,
+ -1.3748787925213255,
+ -0.059240815885078395,
+ 0.6154826656460954,
+ 1.2550412026728974,
+ 1.7645036741594187,
+ 1.5157048905307027,
+ 0.5961661264172279,
+ -0.5735929182692351,
+ -1.564596882817607,
+ -2.098216376238986,
+ -1.4368822167299637,
+ 0.1733171926759786,
+ 0.9723136832206172,
+ 1.4387718213547176,
+ 1.7762487324098124,
+ 1.5232423171686276,
+ 1.7063238909553882,
+ 0.7763870980081926,
+ -1.5664767450839956,
+ -2.406045921355923,
+ -1.4075531441205522,
+ -0.4282374470643685,
+ 0.7393813797221525,
+ 1.5833992311551919,
+ 1.7410325186106563,
+ 1.3165302968440165,
+ 1.5695311711348041,
+ 0.517703940800572,
+ -1.7033683076418924,
+ -1.7461059285447156,
+ -0.28733492666103977,
+ 0.30602855485046426,
+ 1.0518398543089897,
+ 1.7103507575195567,
+ 1.6345318661840982,
+ 0.8359236683721142,
+ -0.31679271383458685,
+ -1.3766843913337186,
+ -1.9401812386922155,
+ -1.4668185510531944,
+ 0.007663605968453378,
+ 0.6479115927633354,
+ 1.264747537598084,
+ 1.7634143602765855,
+ 1.6777714016043608,
+ 1.9035325486350587,
+ 0.8570269724545916,
+ -1.3870651242270378,
+ -2.375815576550624,
+ -1.5491723591648372,
+ -0.6777986544372265,
+ 0.48898657796028383,
+ 1.442857330989124,
+ 1.770041952655027,
+ 1.5073813428195466,
+ 1.653970844148968,
+ 1.0382951205882232,
+ 0.6650755607636761,
+ 0.4030160743126801,
+ -0.6136224482313877,
+ -1.5166839478409095,
+ -1.9227125629602921,
+ -2.393707639142793,
+ -1.4947327724782848,
+ 1.258026718169748,
+ 2.1893001898018523,
+ 1.7722722911203608,
+ 1.3150934749348477,
+ 0.28952762986205416,
+ -0.8668836242686986,
+ -1.642906283505177,
+ -1.8769495957190447,
+ -3.747741278970519,
+ -2.6306052187110267
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.120349748911616,
+ 3.1704615842147117,
+ 1.973474525500278,
+ 1.9042132682570012,
+ 1.0142474787490974,
+ -0.32655993133256467,
+ -1.5180701619398191,
+ -2.2143112728651237,
+ -2.8292850788608894,
+ -1.8610731476623665,
+ 1.189219674014671,
+ 2.249091085294001,
+ 2.0408362528218893,
+ 1.7602306439429896,
+ 0.8873007366311866,
+ 0.7568437678756746,
+ -0.04003924997070332,
+ -1.6003480128669774,
+ -2.21852014519217,
+ -0.8243306550202645,
+ 0.5252578000849386,
+ 1.6537730623976805,
+ 2.0543610447608383,
+ 1.5690073568457505,
+ 0.5517692655402175,
+ 0.3273486188304795,
+ -0.30789179393298044,
+ -1.4925057041655443,
+ -1.9315949701701018,
+ -0.516303886477057,
+ 0.831889306020339,
+ 1.917393667088024,
+ 2.5817006010151906,
+ 1.8115205040129994,
+ -0.4362317017406422,
+ -1.3637199426237006,
+ -1.7632281285317895,
+ -2.0381776614932767,
+ -1.4360389935848663,
+ -0.19739491221772779,
+ 1.1178999846335296,
+ 2.0735806810057453,
+ 3.0178502911963023,
+ 1.8550877339037541,
+ -0.14200484873568572,
+ -0.3358572754554828,
+ -1.8251320011540768,
+ -2.7613036556433825,
+ -1.1082368918578114,
+ 0.20880414901994757,
+ 1.4409924743640175,
+ 2.0396014062656316,
+ 1.7573046432065256,
+ 0.8823298069947179,
+ 0.763146513555379,
+ 0.016544058440508786,
+ -1.7048725159523583,
+ -2.2583778115655737,
+ -0.8207150436658016,
+ 0.5282240624675798,
+ 1.7161015773734964,
+ 2.3320405319295805,
+ 1.6368327269205658,
+ -0.0829359193539777,
+ -0.9474504018464026,
+ -1.576804184856138,
+ -2.055202556329322,
+ -1.6499661211953134,
+ -0.5142066486764718,
+ 0.8351024406969767,
+ 1.9200402661822435,
+ 2.5352793593087077,
+ 1.6851083800530264,
+ -0.3500973174176748,
+ -1.345718918417922,
+ -1.7664844719473891,
+ -2.039779093654124,
+ -1.633651503601324,
+ -1.7946113434004465,
+ -0.8083428976385973,
+ 1.9286030987659042,
+ 2.7620667179431244,
+ 1.510398619982294,
+ 0.3153670992369944,
+ -1.0201737106625033,
+ -1.9084546132130242,
+ -1.9702978145947458,
+ -1.372034985694178,
+ -2.3004387957873864,
+ -1.4623401778988396,
+ 3.3656503647866645,
+ 4.632408801571241,
+ 1.6324066624957718,
+ 0.500854908534967,
+ -0.8508768427964742,
+ -1.8302338971311263,
+ -2.016179834026644,
+ -1.5280790346009776,
+ -1.6439604016797795,
+ -0.6889660885813933,
+ 1.9292785121727867,
+ 2.715094907241532,
+ 1.4146759644556868,
+ 0.18125140866678696,
+ -1.1271859188609368,
+ -1.6911989178610238,
+ -1.389945624994775,
+ -0.4987175340990415,
+ 0.008310251365089442,
+ 1.0324776879723736,
+ 1.913918158516263,
+ 1.974164000713631,
+ 1.1618623433351245,
+ -0.14459416967404756,
+ -1.4177681780167672,
+ -2.0145676796147116,
+ -1.525658632293404,
+ -0.23586645406811121,
+ 0.444960144354844,
+ 1.3013075349158993,
+ 2.0098692279921857,
+ 2.054088340179226,
+ 2.420065428002938,
+ 1.2759572255219438,
+ -1.690867425691213,
+ -2.787516567094007,
+ -1.8957377744379607,
+ -0.9889936381256902,
+ 0.3473745770563912,
+ 1.5339059780709974,
+ 2.0530596356573825,
+ 1.8896289420484556,
+ 2.4026013559688915,
+ 1.0285525773521131,
+ -1.7471542479331237,
+ -1.8432581486288868,
+ -0.7883595777179234,
+ -0.4496437650192645,
+ 0.7536840756315365,
+ 1.7771755636639477,
+ 2.038960397533229,
+ 1.4001100651746767,
+ 0.16351913459981404,
+ -1.1423162626744103,
+ -1.7416465545216657,
+ -1.470466822746248,
+ -0.45998918933717786,
+ 0.031984048309680976,
+ 1.0466586206139197,
+ 1.9181629696782585,
+ 2.15791099729973,
+ 2.5538997335290228,
+ 1.310840692390092,
+ -1.417558527959433,
+ -2.6489831747910015,
+ -1.9903811646176552,
+ -1.2453825030323349,
+ 0.03908153040605935,
+ 1.3098455703229985,
+ 2.0090134906824875,
+ 2.042516003368603,
+ 2.3586997024226393,
+ 1.1246386673892825,
+ 1.1301070449435469,
+ 1.1456163076403105,
+ -0.19330000470771888,
+ -1.4234683862548572,
+ -2.1916077876321465,
+ -2.825722047563513,
+ -1.891440465525327,
+ 1.0844936022952376,
+ 2.128857467429173,
+ 2.018269392207455,
+ 1.8250278455296698,
+ 0.844717370917742,
+ -0.5117420662451155,
+ -1.6391831793698608,
+ -2.229985366628438,
+ -4.631211514426307,
+ -3.3126486636383676
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.8374668761682624,
+ -3.7511709915892495,
+ -0.7979497939039248,
+ 0.5498433849406879,
+ 1.6659641482317504,
+ 2.0487302855832303,
+ 1.5480947849940134,
+ 0.5224090611274234,
+ 0.2884603675480877,
+ -0.2923393705759202,
+ -1.642553520139908,
+ -1.9594376309034363,
+ -0.48923803123891163,
+ 0.8543940293264278,
+ 1.9277549903236852,
+ 2.540872669495474,
+ 1.6831265443758185,
+ -0.3665323659114584,
+ -1.3677299683696145,
+ -1.772865079510495,
+ -2.029959982596171,
+ -1.4134412066623159,
+ -0.1703682616476971,
+ 1.137705546033987,
+ 2.0794454543121224,
+ 2.675347576420022,
+ 1.6859636868699373,
+ -0.6234693147208276,
+ -1.7286123143589143,
+ -1.9146589308739232,
+ -1.9602161011216994,
+ -1.3503226844137755,
+ -1.3934500115395714,
+ -0.45913360281046084,
+ 1.8104011212791966,
+ 2.5901849038624807,
+ 1.2501145508072664,
+ -0.03210844354373552,
+ -1.3054702759890986,
+ -2.0052791233665204,
+ -1.8382691697529856,
+ -1.0527686216301633,
+ -1.1051187044466064,
+ -0.1282423404739459,
+ 2.061515184351279,
+ 2.06141132918148,
+ -0.13021641635140727,
+ -1.1082544995781685,
+ -1.5887789896227247,
+ -2.050845223092202,
+ -1.631093023312322,
+ -0.4891176696729784,
+ 0.855577017421725,
+ 1.928984552620122,
+ 2.5913294987184012,
+ 1.8106424533282197,
+ -0.4610197515817813,
+ -1.3960671078859475,
+ -1.7748202588221431,
+ -2.031577789966027,
+ -1.6114659957353563,
+ -1.726309743828565,
+ -0.6217932378411167,
+ 1.6860825498115708,
+ 2.6746552137823696,
+ 1.4900068169632976,
+ 0.29026765102090607,
+ -1.0391874232219727,
+ -1.9129621602084588,
+ -1.9584522440801513,
+ -1.3476258344361687,
+ -1.3651607392541336,
+ -0.3647717009565173,
+ 1.68296101530902,
+ 2.5397362434617623,
+ 1.248791021168488,
+ -0.032604167082859334,
+ -1.3180075116258083,
+ -1.9616254050096222,
+ -1.643624495537032,
+ -0.2903049245853979,
+ 0.291486536063226,
+ 1.2087540418351193,
+ 1.9768100708583762,
+ 1.8961331591616464,
+ 0.9770138771451211,
+ -0.3560807215102187,
+ -1.585272433057767,
+ -3.7541988487849016,
+ -2.8394143882483323,
+ -0.22682680020850945,
+ -0.0026038728284640475,
+ 1.0510695443837965,
+ 1.918029909186011,
+ 1.9619684375805462,
+ 1.1387068822107491,
+ -0.16868435085643757,
+ -1.4347275591392135,
+ -2.092759997758653,
+ -1.7067586412806386,
+ -0.16220840139248993,
+ 0.47872392499111605,
+ 1.3170177254265194,
+ 2.0100461877059566,
+ 2.0384913546404335,
+ 2.3527848812338914,
+ 1.120264431097747,
+ -1.546511268912929,
+ -2.7325904806922106,
+ -1.8814385287314543,
+ -0.965006162005445,
+ 0.37075388045387003,
+ 1.5463402483475241,
+ 2.0492740595801413,
+ 1.8707598401258172,
+ 2.0971998992698904,
+ 0.9053768165169416,
+ -1.6351723913426204,
+ -2.7474748769763857,
+ -1.7291946533340834,
+ -0.6690198355498972,
+ 0.6273803908077298,
+ 1.1355887221063823,
+ 1.152004274035777,
+ 0.8867054908287358,
+ 0.6699450578311855,
+ -0.5712121962265376,
+ -1.6719057327375477,
+ -2.056527487091848,
+ -1.5330978124795598,
+ -0.3539777290065986,
+ 0.9575971355596286,
+ 1.686160163725777,
+ 1.4140714038797906,
+ 1.2966315631929894,
+ 1.1392129597317224,
+ -1.575250307023948,
+ -3.007796603603535,
+ -1.982493698246967,
+ -1.218870726648914,
+ 0.07284135215841864,
+ 1.3359494642139613,
+ 2.016284794311592,
+ 2.0283018311326244,
+ 2.3796623546699327,
+ 1.2403380270636664,
+ -1.7060870918116664,
+ -2.792123215401701,
+ -1.8734745930000953,
+ -0.9446933145117957,
+ 0.31103418764697227,
+ 0.7367328325616407,
+ 0.9167990742837491,
+ 1.0746170323215385,
+ 1.0377191480359047,
+ -0.27945814868811997,
+ -1.4834361558461524,
+ -2.0529437280089153,
+ -1.716504614260356,
+ -0.6442748132358845,
+ 0.6565177998061433,
+ 1.1475757090260756,
+ 1.1304089933800747,
+ 1.121614746259398,
+ 2.3543170769696546,
+ 2.051953192997178,
+ 1.6349749165458878,
+ 0.6660037110874705,
+ 0.4757257528764576,
+ -0.164258714929156,
+ -1.7058063268166663,
+ -2.090717358810568,
+ -0.6206474284559662,
+ 0.729273151037304,
+ 1.770222979749142,
+ 2.0315189155592677,
+ 1.417618100299479,
+ 0.3211105875314554,
+ -0.0077437733649566975,
+ -0.23046262661925296
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.769594858911565,
+ -3.743272955142895,
+ -1.085668223375348,
+ 0.020945352390077148,
+ 1.1228284585783845,
+ 1.731417990093811,
+ 1.5915388152587502,
+ 0.9162408984866461,
+ 0.8638353242485929,
+ 0.1779214577573469,
+ -1.5947534185465315,
+ -2.087417937063268,
+ -0.8507394503153226,
+ 0.29958776219705296,
+ 1.363056902873011,
+ 1.888504515101608,
+ 1.3715924193775413,
+ 0.059770974015915544,
+ -0.6130931008078067,
+ -1.2516850412878016,
+ -1.7604858686745488,
+ -1.512752946299132,
+ -0.5955932318643276,
+ 0.5715591259787426,
+ 1.5606144751643753,
+ 2.0930562401391484,
+ 1.4335597676536442,
+ -0.17227208578497724,
+ -0.9691865527041424,
+ -1.4351033226381387,
+ -1.772330201768183,
+ -1.520380098282204,
+ -1.7032876747707402,
+ -0.7752807787839352,
+ 1.562896797187783,
+ 2.4008347649924233,
+ 1.4049066515830633,
+ 0.4280610811278651,
+ -0.7370052234475816,
+ -1.5795153044952708,
+ -1.7373169228734693,
+ -1.3142728544455538,
+ -1.5670159778573785,
+ -0.5170944231114212,
+ 1.700653761858995,
+ 1.743755158488611,
+ 0.30117068504637057,
+ -0.2821006904775978,
+ -1.0393999725338048,
+ -1.706896437704616,
+ -1.6415640444195272,
+ -0.8503671312787912,
+ 0.3011974528515715,
+ 1.3651596381302271,
+ 1.9279497607002953,
+ 1.4622252484524003,
+ 0.006558767772764262,
+ -0.6271556734180533,
+ -1.2540732934340708,
+ -1.7624571508255364,
+ -1.6869613499704905,
+ -1.917155480509682,
+ -0.8680553814774127,
+ 1.3835418304832532,
+ 2.3764905100631704,
+ 1.5575947599613114,
+ 0.6928521378575346,
+ -0.4737623267675216,
+ -1.4341960388719925,
+ -1.7716191844710532,
+ -1.5187867573124911,
+ -1.6700432588379253,
+ -0.6707232586411433,
+ 1.4405315760696928,
+ 2.355983808245118,
+ 1.4045605419026452,
+ 0.42801645746201816,
+ -0.703131547258149,
+ -1.1883515189586205,
+ -1.1506126840868596,
+ -0.6646788303657438,
+ -0.37933131280176036,
+ 0.6421368857703377,
+ 1.5301855111908407,
+ 1.7623941053149412,
+ 1.2161552599657621,
+ 0.15064851682131603,
+ -0.9777932142884951,
+ -2.526946013999532,
+ -1.9730375868687113,
+ -0.9334254461947131,
+ -1.0340957491823402,
+ 0.4872938328666357,
+ 1.4412739725844177,
+ 1.7779795101985532,
+ 1.329637918998697,
+ 0.31258752711119026,
+ -0.8211479049770078,
+ -1.3280802677178327,
+ -1.2283200913086714,
+ -0.5611215103928494,
+ -0.21727827838615033,
+ 0.7511126313287054,
+ 1.5869705386075836,
+ 1.901488131140315,
+ 2.281591044773971,
+ 1.2166209093230846,
+ -1.1409659499372895,
+ -2.2141777565845486,
+ -1.753238575468729,
+ -1.2076507991186802,
+ -0.1396303385798969,
+ 0.9930953176343126,
+ 1.6913204285389967,
+ 1.8304260397552576,
+ 2.1467057727603143,
+ 1.0728797032391038,
+ -1.2713037240885585,
+ -2.3235031446388374,
+ -1.6898695842899827,
+ -0.9893935701725248,
+ 0.05033140037387212,
+ 0.38025019285360934,
+ 0.6484196529785445,
+ 1.0945680520149041,
+ 1.1633832453150168,
+ -0.0401338424246484,
+ -1.1332646864085494,
+ -1.7423679539963923,
+ -1.5829248515872247,
+ -0.7439546865254224,
+ 0.3543151374402573,
+ 0.8298878657548308,
+ 0.9157073946106091,
+ 1.4389861953072083,
+ 1.332948547484425,
+ -1.0997082325038903,
+ -2.3349652182150944,
+ -1.7729440844296134,
+ -1.3827184771180103,
+ -0.3952577960712926,
+ 0.7696852444725161,
+ 1.5959720102746902,
+ 1.8966083468002268,
+ 2.3145873776461667,
+ 1.3317717141335454,
+ -1.2787870892323905,
+ -2.267649328015731,
+ -1.7499490401624855,
+ -1.192151179121703,
+ -0.22891417755912744,
+ 0.02751834196763721,
+ 0.45022486906640413,
+ 1.185815635368062,
+ 1.430274270963413,
+ 0.21715684956934422,
+ -0.9235614580899435,
+ -1.6707857043772343,
+ -1.6814965654796676,
+ -0.9691694054608407,
+ 0.07649934705704571,
+ 0.4036258412088457,
+ 0.6646461934295057,
+ 1.0359141227349224,
+ 1.6508589288889475,
+ 1.7043397323115237,
+ 1.6408024065837885,
+ 1.0274385964543016,
+ 1.0146531470995055,
+ 0.2883816686892013,
+ -1.6226325628774252,
+ -2.166918055249925,
+ -0.952102260351137,
+ 0.18385383552924148,
+ 1.2450042500598184,
+ 1.758736868424394,
+ 1.5128850189409884,
+ 0.7567600976757949,
+ 1.0254515596978666,
+ 0.551392981889527
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.1347476703974264,
+ -4.4324322142923736,
+ -1.9622538888185874,
+ -1.209237101183721,
+ 0.06770228546983409,
+ 1.3182707932568039,
+ 1.9937477850919607,
+ 2.008407884291933,
+ 2.3697142097320696,
+ 1.3088694072059248,
+ -1.7846598624422625,
+ -2.7806216104481196,
+ -1.8550839817712743,
+ -0.9383803854724153,
+ 0.3030257222697512,
+ 0.7232233470204646,
+ 0.9039125310374996,
+ 1.0658141289536525,
+ 1.0319046392420541,
+ -0.2721483702628035,
+ -1.4644609292012836,
+ -2.030435511959714,
+ -1.7004003271186932,
+ -0.6414620823952512,
+ 0.644955099855751,
+ 1.1299631356062956,
+ 1.1155718778588026,
+ 0.8479974283161281,
+ 0.6196771038081925,
+ -0.5873641638644187,
+ -1.6689269435105305,
+ -2.2045838634244768,
+ -2.7482315238240407,
+ -1.6595307566017155,
+ 1.280787730356075,
+ 2.4128252918099085,
+ 2.0316619809409273,
+ 1.582742506474177,
+ 0.4501538273229774,
+ -0.8845906626833498,
+ -1.830149426506104,
+ -2.1729007572996992,
+ -2.941020807234652,
+ -1.5221914621062562,
+ 1.1800739522450348,
+ 1.332139221974214,
+ 1.3647054349041257,
+ 1.5923406632997839,
+ 0.04606435837898225,
+ -1.2269615180836453,
+ -1.976289134987752,
+ -1.8540518067051908,
+ -0.9354706166172231,
+ 0.3075622804035281,
+ 0.7444289003951312,
+ 0.9256119168657371,
+ 1.0988561800028227,
+ 1.0484926419214673,
+ -0.27599738127277873,
+ -1.4676265408806914,
+ -2.1819962446440253,
+ -2.7248665430298753,
+ -1.6067694950195432,
+ 0.9391057713973007,
+ 2.12995433030651,
+ 2.0097258517792524,
+ 1.7632151605292288,
+ 0.7560612840482942,
+ -0.5881286097188334,
+ -1.6705324431243882,
+ -2.205261007749334,
+ -2.69713859823647,
+ -1.5114173416545222,
+ 1.1471343194130266,
+ 2.3725446461072432,
+ 2.0335306668426467,
+ 1.5837430308392695,
+ 0.5987259432904718,
+ 0.3913973599734972,
+ -0.21769838273766945,
+ -1.663890730342587,
+ -2.016334442077967,
+ -0.5586417980742155,
+ 0.7772592682809367,
+ 1.783456446493387,
+ 2.0040541269949625,
+ 1.3615367609488198,
+ 0.254887704969413,
+ -0.14089709817819274,
+ -0.32436389724099934,
+ -2.7586589482247956,
+ -3.636471104095088,
+ -0.736123116217583,
+ 0.6012335261651708,
+ 1.6847334277176627,
+ 2.026489992635129,
+ 1.4946829023843708,
+ 0.4553766772504989,
+ 0.20520221080239737,
+ -0.34410169474741814,
+ -1.598017389025053,
+ -1.882415536854736,
+ -0.42740549599216865,
+ 0.8997299003217952,
+ 1.9412256545147768,
+ 2.546737312100847,
+ 1.671429393551491,
+ -0.41032498252605687,
+ -1.4230314070405203,
+ -1.7854945143264813,
+ -2.0021166293616677,
+ -1.3569654499206514,
+ -0.11014286226274171,
+ 1.1757601659568522,
+ 2.082302819534852,
+ 2.6680025604105806,
+ 1.666533864379494,
+ -0.6625469778489204,
+ -1.7733916778498175,
+ -1.9175294789677753,
+ -1.923979105012299,
+ -1.2866531690956668,
+ -1.3103971002781432,
+ -0.4040899138637902,
+ 1.7864958035176641,
+ 2.5346923957341296,
+ 1.1915093189331638,
+ -0.09059931458965875,
+ -1.338644804270726,
+ -1.9983999785623803,
+ -1.794561122688731,
+ -0.9864224533857261,
+ -1.0112891510861264,
+ -0.0740978323085511,
+ 2.0431616180899925,
+ 2.0369737939289565,
+ -0.19793607424541862,
+ -1.206327146367975,
+ -1.6191042455966342,
+ -2.026410606522466,
+ -1.5622409971274438,
+ -0.4061607997230564,
+ 0.9168787702176008,
+ 1.947815533750635,
+ 2.600256145399385,
+ 1.7968582444765635,
+ -0.5234353515748799,
+ -1.4724683092346655,
+ -1.792492953327533,
+ -1.9949165876933335,
+ -1.5321099461162697,
+ -1.6221754441171283,
+ -0.5533870474757032,
+ 1.6694351299849512,
+ 2.6166245493032525,
+ 1.4170159523562949,
+ 0.20828952693618372,
+ -1.0948654027075675,
+ -1.9176518313050004,
+ -1.9104781776107835,
+ -1.2624676731556073,
+ -1.2560283266244443,
+ -0.29654239984541114,
+ 1.6559807530777721,
+ 2.4673447718158377,
+ 1.215369413643347,
+ 1.9645489261422813,
+ 2.0650272677299686,
+ 2.463991345578144,
+ 1.3990919102341746,
+ -1.7352675807165014,
+ -2.7543235653040634,
+ -1.9054944856078624,
+ -1.0540863732792005,
+ 0.2547804984619466,
+ 1.4546636514569975,
+ 2.0211500832980587,
+ 1.9163576542964986,
+ 3.6301653976215076,
+ 2.480016738760639
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.7668258388409992,
+ -2.701315315512296,
+ -1.8673530668090648,
+ -1.961450191534645,
+ -1.2108194237302736,
+ 0.07716446369049872,
+ 1.3234289121605205,
+ 2.14034531734713,
+ 2.7806239126853742,
+ 1.8873743103572376,
+ -0.9847548435251042,
+ -2.001138693991857,
+ -1.9717263802316938,
+ -1.855006243021506,
+ -1.1161551039841744,
+ -1.0604933438940958,
+ -0.1637405869157818,
+ 1.6368917787914108,
+ 2.373155310862355,
+ 1.0347560656278363,
+ -0.2771652945877672,
+ -1.4747605561088,
+ -2.023751711727724,
+ -1.6989819099959644,
+ -0.8006035405986599,
+ -0.6493517785780181,
+ 0.10246738667951688,
+ 1.560651750816985,
+ 2.1312783965483697,
+ 0.7453793984683074,
+ -0.5907429234440864,
+ -1.7447328688961827,
+ -2.400589419389144,
+ -1.7471677074744256,
+ 0.215130427714852,
+ 1.0437919638302615,
+ 1.6034378648333105,
+ 2.032138948128348,
+ 1.5869526858376133,
+ 0.438985980937088,
+ -0.8901122408045645,
+ -1.9361498572701965,
+ -2.8694915869130506,
+ -1.8305449935175673,
+ -0.10803919288073839,
+ 0.08488278110461048,
+ 1.8319969831145808,
+ 2.8819112700938128,
+ 1.2950160860270044,
+ 0.04027392629376156,
+ -1.2366882108758463,
+ -1.9705108397366624,
+ -1.852237172778011,
+ -1.1113593020574553,
+ -1.0728730108782298,
+ -0.23547315778868858,
+ 1.7523365807683569,
+ 2.4162469824669066,
+ 1.031396956892289,
+ -0.27991919866720794,
+ -1.5128311676321653,
+ -2.1118834042639363,
+ -1.553655016137313,
+ -0.12141108184937532,
+ 0.619319325631217,
+ 1.3889033580782522,
+ 2.010088246032336,
+ 1.767630175001466,
+ 0.7430880535560338,
+ -0.5941494971694667,
+ -1.747689928822694,
+ -2.357814206284248,
+ -1.6327832108287343,
+ 0.14482937065718707,
+ 1.0319708521832323,
+ 1.6068377858838194,
+ 2.033793540573508,
+ 1.7851204128778393,
+ 2.0231461515143514,
+ 1.0032149071576795,
+ -1.8841017526896442,
+ -2.78387889097556,
+ -1.6492524296555908,
+ -0.5529398735813956,
+ 0.785859387002514,
+ 1.7809901034086018,
+ 2.0037763930268273,
+ 1.5571048945742132,
+ 2.7433378866239155,
+ 1.7986681732744088,
+ -3.321833327086405,
+ -4.609545175571728,
+ -1.7515932696895933,
+ -0.7304146944415504,
+ 0.6094226195179285,
+ 1.6835904821494534,
+ 2.026768157433441,
+ 1.6941793997837409,
+ 1.8890894424351488,
+ 0.89205494505349,
+ -1.900266372661586,
+ -2.7597832029647518,
+ -1.5670906779436222,
+ -0.42349636904157856,
+ 0.8751315357153497,
+ 1.3983829517699684,
+ 1.2476770028825195,
+ 0.6833495567770236,
+ 0.32225428831842917,
+ -0.7998807190911543,
+ -1.7878792130079242,
+ -2.0093994998588816,
+ -1.343246413808006,
+ -0.10398272498526252,
+ 1.1845889182200915,
+ 1.7510958002161912,
+ 1.4087229305847044,
+ 0.43250387923803535,
+ -0.11046844624675675,
+ -1.0858165090444585,
+ -1.919165170364302,
+ -2.119974362395772,
+ -2.545640600363578,
+ -1.4090878823484498,
+ 1.575384142929341,
+ 2.6929180630807528,
+ 1.955600660225566,
+ 1.186407023417903,
+ -0.09693205142186637,
+ -1.3410014258656076,
+ -2.000252024942414,
+ -1.9962569829082915,
+ -2.594856369371043,
+ -1.1945862918704073,
+ 1.5818155717955267,
+ 1.6964924497854872,
+ 0.9750585680845255,
+ 0.8112681004735712,
+ -0.5102208919416376,
+ -1.6210966007337702,
+ -2.0378438445242715,
+ -1.5548854616323144,
+ -0.4066054599606379,
+ 0.8914208000718296,
+ 1.4453368612761663,
+ 1.3132815627184744,
+ 0.6641115107872904,
+ 0.30589649038735534,
+ -0.814956007110472,
+ -1.79455844628516,
+ -2.185026818346317,
+ -2.630578373363177,
+ -1.4153512823604997,
+ 1.2806772786166187,
+ 2.5105696409335243,
+ 2.0144940731519134,
+ 1.4187501558860969,
+ 0.20942508582052746,
+ -1.0958506778608463,
+ -1.9213037451656731,
+ -2.1119825952906957,
+ -2.486023368805801,
+ -1.2558941637600878,
+ 1.4352526288174694,
+ 2.6458250010419295,
+ 1.9496090949464986,
+ 1.2187792574820806,
+ 2.1003824045117017,
+ 2.7544262964993798,
+ 1.9021003075509422,
+ -0.8728870888889292,
+ -1.8656092928269934,
+ -1.933373912853384,
+ -1.9043528438370219,
+ -1.0547246334925826,
+ 0.2635278938651369,
+ 1.4597330907631572,
+ 2.180289331201815,
+ 4.60960295122275,
+ 3.324398403103455
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.3238136578102455,
+ 0.08260335058223701,
+ -1.2041935301813165,
+ -2.240107933877904,
+ -2.3148893526628984,
+ -1.3665465514552129,
+ 0.1630604416952574,
+ 1.6558003003750519,
+ 2.4253093408965074,
+ 1.9891724547833192,
+ 0.22339051904803814,
+ -0.5145529475189663,
+ -1.5197435140124456,
+ -2.353490516441223,
+ -2.409360141551612,
+ -2.7875410402770346,
+ -1.337347601089879,
+ 1.8045680260558157,
+ 3.203874894223711,
+ 2.2236007991220297,
+ 1.164335716117205,
+ -0.4006967540582997,
+ -1.792953922996858,
+ -2.4050903294920336,
+ -2.217710451643874,
+ -2.4934520675269276,
+ -1.0877452315326257,
+ 1.9130410382058,
+ 3.228837988479963,
+ 2.0497361380921806,
+ 0.8189672488370883,
+ -0.7001969042540239,
+ -1.2897487840590465,
+ -1.328663221687545,
+ -1.068699439749356,
+ -0.8334118077712919,
+ 0.6370657485886134,
+ 1.943145882762548,
+ 2.4170848295878233,
+ 1.823834014711277,
+ 0.45034869210210343,
+ -1.090172644871167,
+ -1.9354979952543419,
+ -1.639952485119634,
+ -1.5505660024076877,
+ -1.368161104470973,
+ 1.8229226158493188,
+ 3.502391683082137,
+ 2.3402329699292004,
+ 1.4790235434587975,
+ -0.022764637747675457,
+ -1.5186776209792523,
+ -2.351704120544174,
+ -2.4056924050066457,
+ -2.834694382679884,
+ -1.4947378607704802,
+ 1.980064809241176,
+ 3.2645118641333024,
+ 2.2218008109404845,
+ 1.1628709048695305,
+ -0.29753931162068686,
+ -0.7830166725409382,
+ -1.0314839744311888,
+ -1.299418771677008,
+ -1.2939395053164922,
+ 0.26575466123710245,
+ 1.6957976576938076,
+ 2.40074969845699,
+ 2.0463785567177704,
+ 0.8145108099797742,
+ -0.7048849652797137,
+ -1.269196979626459,
+ -1.2868570489316424,
+ -1.0455996524287587,
+ -0.8091439894213598,
+ 0.6412090334608174,
+ 1.9450590340553087,
+ 2.613184394886816,
+ 3.290361387528011,
+ 2.1029847872583303,
+ -1.5767032326908272,
+ -2.835866302677151,
+ -2.4080110259805316,
+ -1.9115295808170991,
+ -0.5895373416421807,
+ 0.9967565410416471,
+ 2.1439699665979104,
+ 2.585470513463277,
+ 5.230512879207772,
+ 3.6949560139184485,
+ -2.9801144051741497,
+ -4.354682912065657,
+ -2.393941685090463,
+ -2.0379618262799832,
+ -0.8025456377787079,
+ 0.7910935732947412,
+ 2.0340309725381025,
+ 2.609244777242614,
+ 3.2558006821551877,
+ 2.042285824941279,
+ -1.6819814962654898,
+ -2.9446491878641217,
+ -2.4064273364021074,
+ -1.8125434757056516,
+ -0.6051892986685506,
+ -0.3314905329675836,
+ 0.39206872814420335,
+ 1.7324444658578848,
+ 2.2245315471871323,
+ 0.5659616280577355,
+ -1.0117047158843955,
+ -2.159594370879942,
+ -2.355996826532154,
+ -1.5381318607122163,
+ -0.19486816677235627,
+ 0.18144000140386862,
+ 0.695258269934114,
+ 1.5576643440996203,
+ 1.8260211843568528,
+ 0.18875320686368072,
+ -1.34374884199223,
+ -2.4444088377278557,
+ -3.203785339364625,
+ -2.1411564826332095,
+ 0.8658882822017977,
+ 2.074378575116752,
+ 2.249593336122557,
+ 2.295991661676923,
+ 1.3533433714468652,
+ -0.19020586503082568,
+ -1.641739652712056,
+ -2.5594989383837596,
+ -3.637140739447908,
+ -2.122562616565181,
+ 0.5839471446288514,
+ 0.8029339591740549,
+ 2.0283331272442395,
+ 2.88006589176542,
+ 0.9107221166836116,
+ -0.6757079494579077,
+ -1.9771558797428133,
+ -2.408193468177484,
+ -1.8009634254653446,
+ -0.5826330979353228,
+ -0.30599323048785876,
+ 0.3697056583087231,
+ 1.8263832823475585,
+ 2.250900044832731,
+ 0.5461163296906941,
+ -1.032288844954435,
+ -2.2836191600399527,
+ -3.00381586330569,
+ -1.9818156208662228,
+ 0.4553311148672159,
+ 1.6436350469752057,
+ 2.100262592972658,
+ 2.3831576056602453,
+ 1.6403642324649412,
+ 0.17035081827509796,
+ -1.3631553610531233,
+ -2.457328547476721,
+ -3.1558628583721866,
+ -1.9811989980411817,
+ 0.7563613074236395,
+ 2.0644545435806916,
+ 2.262723179781861,
+ 2.2964836727825384,
+ 1.5621380418639281,
+ 2.268972840279152,
+ 1.9130965032919922,
+ 0.3735591498575974,
+ -0.2942230742173602,
+ -1.3911652131952243,
+ -2.3122147015183088,
+ -2.2406170987367617,
+ -1.1783194803348187,
+ 0.38355724568975974,
+ 1.8349861308224593,
+ 4.362007269091843,
+ 3.3038376933353346
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0593714469193554,
+ 1.1869390693968394,
+ -0.5027585734621597,
+ -1.5512397350772462,
+ -1.9354363168174489,
+ -1.4651137683712883,
+ -0.36797726049604346,
+ 0.8653591473996038,
+ 1.4118800484768639,
+ 1.3181476723556529,
+ 0.6354680464188109,
+ 0.27525569248806564,
+ -0.7912986312693587,
+ -1.7135484709245694,
+ -2.0731063660582665,
+ -2.492539139002713,
+ -1.3363566128101594,
+ 1.2264987326082668,
+ 2.3946637093288103,
+ 1.9113756444084722,
+ 1.334431034448442,
+ 0.18030533819724476,
+ -1.0567414994267676,
+ -1.8312342481033999,
+ -2.0005688654190172,
+ -2.3514640856036375,
+ -1.18292101514528,
+ 1.3713547108403055,
+ 2.519372920621158,
+ 1.8468358198386163,
+ 1.0998187727230266,
+ -0.023945978828811974,
+ -0.3753235893320676,
+ -0.6822962781240015,
+ -1.2088287779555473,
+ -1.2995049112240116,
+ 0.015264419003608065,
+ 1.2108958155230876,
+ 1.8894492980011661,
+ 1.7346330141515693,
+ 0.8350271032697176,
+ -0.35511433286751376,
+ -0.8618083023353601,
+ -0.9749185461680537,
+ -1.5827379298147668,
+ -1.4699510902620612,
+ 1.1662864451215085,
+ 2.500623824119847,
+ 1.927730416504801,
+ 1.5352822388047191,
+ 0.47983505068768645,
+ -0.7906757272545433,
+ -1.7128023885618595,
+ -2.0712115530034163,
+ -2.536965854514073,
+ -1.472261940757802,
+ 1.3635952473342563,
+ 2.4407277774953124,
+ 1.9108551273669163,
+ 1.3340162213185756,
+ 0.304037393281803,
+ 0.03871012944416858,
+ -0.4493372559850777,
+ -1.3138056214706058,
+ -1.6097658919248534,
+ -0.2869063220230502,
+ 0.9603773014238381,
+ 1.7987189827100112,
+ 1.8442459878560922,
+ 1.096531332903961,
+ -0.02765985640886145,
+ -0.37118499218949,
+ -0.685026521708061,
+ -1.1559595971100955,
+ -1.269230781022935,
+ 0.018226371186104103,
+ 1.2122287973562957,
+ 2.014466199162267,
+ 2.627961775294652,
+ 1.7976809519047285,
+ -0.8867472208370419,
+ -1.841281512235349,
+ -1.8545535900683405,
+ -1.780222383629287,
+ -0.9385907644109999,
+ 0.32030725234434754,
+ 1.4331384309359085,
+ 2.0782644049462724,
+ 4.370091058390907,
+ 3.143866585861456,
+ -1.7735012912858965,
+ -2.691101495565011,
+ -1.798108432521996,
+ -1.8405781635579377,
+ -1.0901990865012843,
+ 0.14421236815604913,
+ 1.3084335414064459,
+ 2.047374452389806,
+ 2.646306037874171,
+ 1.7792762164157525,
+ -0.9906140224280446,
+ -1.9652234634536978,
+ -1.8863575821671303,
+ -1.7290965827327909,
+ -0.9913733291934413,
+ -0.9173546830431838,
+ -0.09686340382259422,
+ 1.5392213118403901,
+ 2.2025627577156945,
+ 0.9195679244196301,
+ -0.3331837073136039,
+ -1.4472400457781074,
+ -1.924624488901924,
+ -1.5713453113753342,
+ -0.6869392146467004,
+ -0.5228883968489133,
+ 0.15562564879571592,
+ 1.4580269594760782,
+ 1.9607270799126222,
+ 0.6402927344537443,
+ -0.6280665844933122,
+ -1.7010090446738444,
+ -2.3243142494113673,
+ -1.6724106661333533,
+ 0.26675543649712946,
+ 1.0794325832560963,
+ 1.5635738354767683,
+ 1.9255536332505652,
+ 1.4593136188325988,
+ 0.346655741063139,
+ -0.9076695880072083,
+ -1.8721451334807202,
+ -2.758914303246195,
+ -1.7402727897406607,
+ -0.03165687804559973,
+ 0.15137923699845493,
+ 1.730830153044842,
+ 2.691121631389831,
+ 1.1632838854189058,
+ -0.04861241105703479,
+ -1.2442533708455088,
+ -1.893182214827103,
+ -1.7238276693725365,
+ -0.9743436061921001,
+ -0.9097293416242609,
+ -0.14704671512455084,
+ 1.6456108720739515,
+ 2.2368892026779412,
+ 0.9048877980416338,
+ -0.3520585126124226,
+ -1.5058232995724834,
+ -2.0799245257437917,
+ -1.5026908848351632,
+ -0.04393447731625485,
+ 0.7017993050490186,
+ 1.3829184057584192,
+ 1.9223662569984232,
+ 1.6356522779695972,
+ 0.6250731240884833,
+ -0.6475553690508227,
+ -1.7178185321756947,
+ -2.2983202646137575,
+ -1.5669923728039976,
+ 0.20892469912602152,
+ 1.0882025154394135,
+ 1.5797889871180033,
+ 1.9312130284000784,
+ 1.6404629610919101,
+ 1.8393964814817358,
+ 1.2323365446876349,
+ 0.747449178930524,
+ 0.4512074070135349,
+ -0.6720248803838174,
+ -1.650145811967522,
+ -1.9210943955435937,
+ -1.3435470691544489,
+ -0.19216608792861084,
+ 1.037078667745697,
+ 2.6987621256780647,
+ 2.1120840929218856
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.005350450677859,
+ 2.4553050570560417,
+ -0.1701080769159366,
+ -1.6225583610290781,
+ -2.3815640463433625,
+ -2.089875991105229,
+ -0.9015705501553547,
+ 0.6029597940716773,
+ 1.1892698659879086,
+ 1.3150125653498268,
+ 1.1812297416840047,
+ 0.9664793194803192,
+ -0.5471509460336872,
+ -1.8823571909835128,
+ -2.603189357795736,
+ -3.211176505810194,
+ -1.8385864267004737,
+ 1.2580290396482152,
+ 2.6938872389563646,
+ 2.3984649297921177,
+ 1.9632256627918931,
+ 0.6804382646037672,
+ -0.9067202750239594,
+ -2.093505512541835,
+ -2.5919707155521494,
+ -3.130847495340553,
+ -1.6989504188032485,
+ 1.4844747339666449,
+ 2.939746432614786,
+ 2.3909727527532767,
+ 1.7227152621224349,
+ 0.47017875390213204,
+ 0.16375679691316283,
+ -0.4581901032261445,
+ -1.7680550769363237,
+ -2.135378584616915,
+ -0.4416167296967164,
+ 1.1218419249537226,
+ 2.2080196285990925,
+ 2.3211340523473085,
+ 1.4355117929134844,
+ 0.058121404861731014,
+ -0.3873321381233787,
+ -0.8470587227805189,
+ -2.2023720977820234,
+ -2.098931799000446,
+ 1.1167003088837542,
+ 2.696464081808861,
+ 2.346369171107372,
+ 2.154976069054379,
+ 1.0343702776631019,
+ -0.5466232100414653,
+ -1.8821042480460508,
+ -2.6019015843820514,
+ -3.2702974958747575,
+ -2.009657941731333,
+ 1.41815494528554,
+ 2.746446498045446,
+ 2.398701676572496,
+ 1.9634362839557522,
+ 0.8660472421537943,
+ 0.6646524092047061,
+ -0.18533222071626956,
+ -1.8189893686157523,
+ -2.450614474520919,
+ -0.8060747372151105,
+ 0.774675965770938,
+ 2.0277899968705815,
+ 2.3879797670658127,
+ 1.7190607321630678,
+ 0.46579168235392676,
+ 0.15724129553426028,
+ -0.49508371362414966,
+ -1.6731388809085477,
+ -2.089242164594521,
+ -0.4384188234864138,
+ 1.123244795028938,
+ 2.327202769757155,
+ 3.124221136262824,
+ 2.2471289689624205,
+ -0.7071598486526275,
+ -1.7943074913090873,
+ -2.1407779052153724,
+ -2.352554428394972,
+ -1.5515487361006015,
+ -0.06242312711067816,
+ 1.443666348749658,
+ 2.4830989577944726,
+ 5.374711455595829,
+ 3.917114910414169,
+ -1.5432637413779873,
+ -2.4662322360302107,
+ -2.0315597546461825,
+ -2.386464876356236,
+ -1.71453611790061,
+ -0.2827959961480745,
+ 1.2610397489875884,
+ 2.3999114019978993,
+ 3.1888308848804363,
+ 2.253263941234519,
+ -0.849069079135541,
+ -1.976175882319654,
+ -2.209392488816966,
+ -2.317794535577527,
+ -1.6518226650641283,
+ -1.6985093643290103,
+ -0.4970901638712059,
+ 1.9747809646921675,
+ 3.015200395506946,
+ 1.528753592357544,
+ 0.046241595273603,
+ -1.4619415534479259,
+ -2.3280547811258696,
+ -2.1874667158144456,
+ -1.3115890773997338,
+ -1.2437158063845866,
+ -0.18729327951880956,
+ 1.9326566436676504,
+ 2.79891219882001,
+ 1.2172304223330683,
+ -0.33197810324157934,
+ -1.7881239299080618,
+ -2.5447856723664137,
+ -1.9531075999208922,
+ -0.07860602531391428,
+ 0.7454492743624935,
+ 1.6416536203540681,
+ 2.374668886840178,
+ 2.087401328014365,
+ 0.8765572400730265,
+ -0.7031348457126998,
+ -2.0653697977468575,
+ -3.143883201169624,
+ -2.1108355709786735,
+ -0.5015869413195686,
+ -0.2764089661199078,
+ 2.160921310053624,
+ 3.563408325231112,
+ 1.789019448470684,
+ 0.3996564202236453,
+ -1.1672688017803212,
+ -2.222549774682827,
+ -2.3152382232278303,
+ -1.6324952933592631,
+ -1.7013109663734312,
+ -0.5868595334915303,
+ 2.130476049114415,
+ 3.0683671481510477,
+ 1.5123913357834728,
+ 0.021534300885988924,
+ -1.493885441223305,
+ -2.175365366164846,
+ -1.7117882579956367,
+ -0.4319284543901482,
+ 0.2652020487458474,
+ 1.3696990722768398,
+ 2.3030578566090276,
+ 2.2477600436829612,
+ 1.1986505374215382,
+ -0.35886386190853764,
+ -1.8141548947901147,
+ -2.525323843004253,
+ -1.8485909978323902,
+ -0.11974007004463398,
+ 0.7714303921019211,
+ 1.666267366695067,
+ 2.386302481861503,
+ 2.3161611481657376,
+ 2.705434731988775,
+ 1.4568515039070387,
+ 1.3069456125824372,
+ 1.1756364172795495,
+ -0.3899087577578379,
+ -1.7786286710486865,
+ -2.4064124548998485,
+ -1.9721508574595354,
+ -0.6928355275189337,
+ 0.8337551166814778,
+ 2.4770277434359307,
+ 2.020336996508845
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.78951629773143,
+ 4.110375421915974,
+ 2.3688139659931866,
+ 2.1227781861295814,
+ 0.9611890879370464,
+ -0.6285481802756145,
+ -1.9374922910851853,
+ -2.6118678469504855,
+ -3.290471694241728,
+ -2.1049337240991344,
+ 1.5708364274667104,
+ 2.8292455995355796,
+ 2.408203731007652,
+ 1.9195499662198436,
+ 0.7828338109020595,
+ 0.5570777260025668,
+ -0.25380105548254933,
+ -1.7958312684032995,
+ -2.383413658845001,
+ -0.7295075985113185,
+ 0.8548149581845051,
+ 2.0769902185167646,
+ 2.384401378935838,
+ 1.664594345936748,
+ 0.3781077733564557,
+ 0.046378384439870746,
+ -0.5622973206254843,
+ -1.6400531161229175,
+ -2.0087883120909087,
+ -0.3576461652705619,
+ 1.1989661082457235,
+ 2.372475439453531,
+ 3.1420303689355804,
+ 2.140677977947978,
+ -0.7253013545963032,
+ -1.8885560382168443,
+ -2.182751113727564,
+ -2.340794655869459,
+ -1.490916680048444,
+ 0.02041304569458349,
+ 1.5129474285105933,
+ 2.515429254286255,
+ 3.6081980906607085,
+ 2.149956006426735,
+ -0.4178067866557099,
+ -0.6408067248739012,
+ -2.0835933717958737,
+ -3.0398679561967143,
+ -1.078845863019826,
+ 0.49333794968677513,
+ 1.859067288201059,
+ 2.4067663079237254,
+ 1.9160365312303216,
+ 0.7769694438330806,
+ 0.5581151612038638,
+ -0.2044444809936723,
+ -1.9044171638385479,
+ -2.4257707980581924,
+ -0.7251134417203138,
+ 0.8584247245595487,
+ 2.1731337254116214,
+ 2.89590104919544,
+ 1.9597894103489166,
+ -0.30351280438069095,
+ -1.4200801993570977,
+ -1.997891690765551,
+ -2.4001707272343165,
+ -1.7698906045188476,
+ -0.3554480119688393,
+ 1.2024401052325557,
+ 2.3751832632690504,
+ 3.085132501929634,
+ 1.9836022600457595,
+ -0.610479548368674,
+ -1.8616100812452947,
+ -2.1863326982640605,
+ -2.3425776654762234,
+ -1.7167101607569546,
+ -1.8224427711981737,
+ -0.7270691225744748,
+ 2.2545352104529797,
+ 3.141559434478401,
+ 1.5884015886485756,
+ 0.11881602344492136,
+ -1.4076599925084559,
+ -2.316114173896465,
+ -2.2227190931325973,
+ -1.3827544710095494,
+ -2.1831154907501458,
+ -1.331856183315054,
+ 3.899908881137325,
+ 5.329532150758584,
+ 1.7482228869772918,
+ 0.3394611349789145,
+ -1.221020992523825,
+ -2.2460822019692306,
+ -2.2986314224867037,
+ -1.5808502586081166,
+ -1.632944595554121,
+ -0.5819441307200728,
+ 2.2394990220068416,
+ 3.0644116979261535,
+ 1.4649174768417352,
+ -0.03957410317288748,
+ -1.5483398512362592,
+ -2.23598443324678,
+ -1.7372900007381278,
+ -0.3828546547211695,
+ 0.34682977646144264,
+ 1.4200019006419613,
+ 2.32091688846413,
+ 2.2253569243976354,
+ 1.1457716497761086,
+ -0.41927399975416163,
+ -1.8619321040827235,
+ -2.5764542395243266,
+ -1.8668969973351717,
+ -0.06952593586309078,
+ 0.8509949531839363,
+ 1.7104781095727204,
+ 2.3947695173302876,
+ 2.2856268216354256,
+ 2.6439273501180875,
+ 1.3256996557041172,
+ -2.0546494914485183,
+ -3.289508414935283,
+ -2.110389858602211,
+ -0.9314030040424607,
+ 0.653451459628824,
+ 1.9538582936789155,
+ 2.4055727672615737,
+ 2.05567178143958,
+ 2.555880946801138,
+ 1.0087339383474987,
+ -2.170000183577408,
+ -2.261130773427692,
+ -0.7125188662446575,
+ -0.14604652439791335,
+ 1.1117406607613858,
+ 2.1949400717668532,
+ 2.3366655148178253,
+ 1.4458225314178246,
+ -0.06074385176723376,
+ -1.5644853543535975,
+ -2.29733564113578,
+ -1.844741792215486,
+ -0.31860691321580886,
+ 0.3814108215875267,
+ 1.43532955362868,
+ 2.3232902520591,
+ 2.444110595143664,
+ 2.8471194082454585,
+ 1.3948575319991958,
+ -1.7634224969419063,
+ -3.1755227129904586,
+ -2.2552802357000923,
+ -1.2496154021324524,
+ 0.2983439620349862,
+ 1.7187358841805298,
+ 2.3907265598738796,
+ 2.2687179839627287,
+ 2.571851465515164,
+ 1.154285798461126,
+ -1.8840663463051508,
+ -3.2221056910413055,
+ -2.096423121499099,
+ -0.9121491918577296,
+ 0.5911534317116689,
+ 1.1749845358509052,
+ 1.3068452915359967,
+ 1.4581617931331199,
+ 2.707126635523393,
+ 2.398460621872291,
+ 2.0095337037111607,
+ 0.7532889160083349,
+ -0.8394605209576569,
+ -2.060716983973866,
+ -2.605051063510323,
+ -5.326874414287957,
+ -3.7824887624805252
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.7707562446740235,
+ 2.688397155296859,
+ 1.8005240400235938,
+ 1.8464899861581683,
+ 1.0970735776562501,
+ -0.13941229715091477,
+ -1.3077543934753686,
+ -2.051097816161189,
+ -2.652093074026974,
+ -1.7843909187763458,
+ 0.9889147997407365,
+ 1.9651366363093028,
+ 1.8897674296911653,
+ 1.7355011636564108,
+ 0.9986581407467211,
+ 0.9259815456577268,
+ 0.1013437829460632,
+ -1.5439313248113467,
+ -2.211410006836657,
+ -0.9262884347375137,
+ 0.3288923744859149,
+ 1.4472417117657779,
+ 1.928929936401775,
+ 1.5780739933815295,
+ 0.6938555776368407,
+ 0.5308827825353433,
+ -0.15176068530016057,
+ -1.4631842317272241,
+ -1.9698850675751247,
+ -0.6466827532332525,
+ 0.6246780634466613,
+ 1.701796783843,
+ 2.326534005928351,
+ 1.6753690915187265,
+ -0.2628531220459835,
+ -1.0755874505030372,
+ -1.5642738156311722,
+ -1.9303716290840498,
+ -1.4661867995420321,
+ -0.35255633967498046,
+ 0.9052746779896607,
+ 1.874128975873367,
+ 2.762893886954413,
+ 1.7439419017126199,
+ 0.03620084866629509,
+ -0.14715520282831424,
+ -1.736986503774736,
+ -2.7033154234992747,
+ -1.1795873389401854,
+ 0.02786151955212476,
+ 1.2279913426309346,
+ 1.888608246524739,
+ 1.7328307627477555,
+ 0.9940632242179013,
+ 0.9361271632664167,
+ 0.16540822113179104,
+ -1.6506068329892178,
+ -2.251452544535332,
+ -0.9230358721364883,
+ 0.33156186740923077,
+ 1.4898124325889988,
+ 2.0628748338134293,
+ 1.4966947990750143,
+ 0.061018218786702855,
+ -0.6748768878601422,
+ -1.368109852070234,
+ -1.9198106645356943,
+ -1.6464965340183277,
+ -0.644562447985488,
+ 0.6278587480136059,
+ 1.7045199358239695,
+ 2.284966726875143,
+ 1.5636113030266443,
+ -0.19192600387971448,
+ -1.062725442669015,
+ -1.567462156351526,
+ -1.9319284114577508,
+ -1.6541284265483471,
+ -1.8595989827938308,
+ -0.9004798954351829,
+ 1.8000706799561277,
+ 2.636483610746707,
+ 1.528518409875697,
+ 0.46177865790724487,
+ -0.8080561563928561,
+ -1.7242172035720302,
+ -1.8929672886765028,
+ -1.428796474360022,
+ -2.4862861197012363,
+ -1.617942792177259,
+ 3.164486641838538,
+ 4.381133008079928,
+ 1.6308707312237716,
+ 0.6323529051060608,
+ -0.6424873257155116,
+ -1.636860417010313,
+ -1.92086252697887,
+ -1.5639304904763491,
+ -1.7279577690450239,
+ -0.792794537284755,
+ 1.8113026466453859,
+ 2.607543595279166,
+ 1.4469376030107837,
+ 0.33768089996796596,
+ -0.8974945618639749,
+ -1.4049462872984304,
+ -1.2219593707358871,
+ -0.599601048502143,
+ -0.2181546940074781,
+ 0.8209093614064055,
+ 1.7303772834965436,
+ 1.8978380550509661,
+ 1.2267937546428151,
+ 0.03274017393692933,
+ -1.1862040968526133,
+ -1.7319338784686593,
+ -1.368092812733829,
+ -0.3583314058381126,
+ 0.19359770342560623,
+ 1.0877618022093838,
+ 1.8456099786336317,
+ 1.9946550161584973,
+ 2.382831500455615,
+ 1.3020886021095455,
+ -1.5258905298727168,
+ -2.5810381837388126,
+ -1.8402407719057616,
+ -1.073679541020241,
+ 0.15844998239748403,
+ 1.323971686734063,
+ 1.9125169011231031,
+ 1.8664207097611911,
+ 2.4118516690013774,
+ 1.0897677286644334,
+ -1.5452231253766004,
+ -1.6491388713741149,
+ -0.8759242141621506,
+ -0.6740556417188751,
+ 0.5488635213413254,
+ 1.5800493690407298,
+ 1.9344796759186733,
+ 1.4347264665168333,
+ 0.32142569325923037,
+ -0.91264526758327,
+ -1.45043516170898,
+ -1.288184172948407,
+ -0.5761713310891527,
+ -0.2006889078935207,
+ 0.8349777851184277,
+ 1.7360699706591605,
+ 2.0666853495973427,
+ 2.4764213565816675,
+ 1.3156258639101635,
+ -1.2518512712361634,
+ -2.4195889687556016,
+ -1.9056244403086704,
+ -1.3005818999859942,
+ -0.132837290655599,
+ 1.0968881173702798,
+ 1.8468441190940548,
+ 1.986120429073352,
+ 2.325783228695356,
+ 1.1571854210526795,
+ -1.3916533672291267,
+ -2.534691453516524,
+ -1.8336840802131362,
+ -1.0611073585196615,
+ 0.07555378518883597,
+ 0.45098726994975163,
+ 0.7475817078099031,
+ 1.2333013753164235,
+ 1.8405586015676796,
+ 1.8575540263034531,
+ 1.7864356292196313,
+ 0.9453533079321547,
+ -0.31598182707686334,
+ -1.4330937595147772,
+ -2.0825697623326267,
+ -4.380854522424716,
+ -3.1521770717965967
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.18021948676291535,
+ 0.0586958703805677,
+ 1.0625922492247297,
+ 1.9063659165850388,
+ 1.9320543751301142,
+ 1.1037177858823595,
+ -0.19367247108105343,
+ -1.4412220637173048,
+ -2.094527126010287,
+ -1.699588296892131,
+ -0.13521641830023595,
+ 0.5100007196635417,
+ 1.3231346237575006,
+ 1.993289282341135,
+ 2.004201269427632,
+ 2.3080508149608674,
+ 1.0912624692628539,
+ -1.538356681755478,
+ -2.7064491535073407,
+ -1.8498955417757024,
+ -0.9305675927517079,
+ 0.39326467988874697,
+ 1.5469367114387855,
+ 2.0278450581371135,
+ 1.834233472000979,
+ 2.050631451804883,
+ 0.8766306457394315,
+ -1.6227065449918472,
+ -2.715428680057384,
+ -1.6955561067983809,
+ -0.6361336397213547,
+ 0.648504412330422,
+ 1.1567159040815689,
+ 1.1578603421945644,
+ 0.8559576976710065,
+ 0.6267688746730393,
+ -0.5907787475839478,
+ -1.6690259711082178,
+ -2.032354561196726,
+ -1.4982605839962537,
+ -0.32352233809241704,
+ 0.9734019034921352,
+ 1.7017697553808955,
+ 1.413975152349056,
+ 1.2614424519108933,
+ 1.1046686125074388,
+ -1.562302501941202,
+ -2.9719945217717143,
+ -1.9565058736299874,
+ -1.200320385198906,
+ 0.07595944226272655,
+ 1.3222156104819065,
+ 1.9917132493822498,
+ 2.00100708330039,
+ 2.346837443586862,
+ 1.2221308974595582,
+ -1.6859291447481455,
+ -2.75758674513621,
+ -1.8482816666259543,
+ -0.9292523788699181,
+ 0.3114490256856062,
+ 0.7326888891355657,
+ 0.9080598597844822,
+ 1.0585610679005455,
+ 1.0196734176509217,
+ -0.2799297321116126,
+ -1.467576589744275,
+ -2.02752019012548,
+ -1.6927301566901036,
+ -0.6323637527230649,
+ 0.6524404215542753,
+ 1.1380739640595496,
+ 1.11866597696123,
+ 0.8405100691108685,
+ 0.607652958621376,
+ -0.5942934435550824,
+ -1.6706526012062404,
+ -2.2004686973308014,
+ -2.7602524646580755,
+ -1.7506943200981466,
+ 1.3652137385374703,
+ 2.4273508211357018,
+ 2.0278990832803894,
+ 1.574618726489749,
+ 0.4411533864970242,
+ -0.8904917390349231,
+ -1.8304333849122492,
+ -2.1674089179526526,
+ -4.365845321793466,
+ -3.0776561879329174,
+ 2.569252508496375,
+ 3.742943101108261,
+ 2.0212580803767946,
+ 1.6853202353584302,
+ 0.6219592147031453,
+ -0.7193150315125115,
+ -1.7424199109211342,
+ -2.193047500612419,
+ -2.7260139426126337,
+ -1.6963410522634934,
+ 1.4512734065344615,
+ 2.5143775525287424,
+ 2.0227950916477364,
+ 1.4883917677068168,
+ 0.4496841637165072,
+ 0.2035719853737174,
+ -0.3757134298985188,
+ -1.435571501265022,
+ -1.8175151398579341,
+ -0.42139704942691086,
+ 0.9029237112021619,
+ 1.843355817300302,
+ 1.9715218865132762,
+ 1.2511783280792934,
+ 0.10281037378141519,
+ -0.22845738593808965,
+ -0.628877196102388,
+ -1.282282849572463,
+ -1.474480658889539,
+ -0.10244908180334798,
+ 1.1780842933589575,
+ 2.0792826514814293,
+ 2.7143976602004005,
+ 1.8004992790299892,
+ -0.7748887702053477,
+ -1.8060942130220077,
+ -1.9137803513757647,
+ -1.9156063455414856,
+ -1.0921009544307119,
+ 0.2164846517286986,
+ 1.4233153296875258,
+ 2.1667864629928375,
+ 3.067833209622424,
+ 1.7754576135168445,
+ -0.5467305956495995,
+ -0.7295079306346011,
+ -1.6888949301366387,
+ -2.3714347251091517,
+ -0.7142289038510793,
+ 0.6229110601005103,
+ 1.6968505291416398,
+ 2.0236586376963905,
+ 1.4782227183026027,
+ 0.43065251480044336,
+ 0.1807346684919762,
+ -0.3606433732098422,
+ -1.5107955748123756,
+ -1.8381214644932495,
+ -0.404618782293537,
+ 0.9199128053820762,
+ 1.9520202207462025,
+ 2.5563134330871304,
+ 1.6716774116716977,
+ -0.4285082712570361,
+ -1.4485800566743767,
+ -1.7955163182295484,
+ -1.9970412884844986,
+ -1.338920216685543,
+ -0.08707323952768647,
+ 1.193907499475188,
+ 2.0893791826973995,
+ 2.6727937137398485,
+ 1.6637622092232283,
+ -0.6796220106233459,
+ -1.795860600985996,
+ -1.9241403867492277,
+ -1.9154178164738522,
+ -1.265614274096496,
+ -1.283579113959027,
+ -0.4202173973249657,
+ 1.877748136879904,
+ 2.5422844613356332,
+ 1.217164633147083,
+ 1.9621391354978188,
+ 1.8646126750851655,
+ 0.9425323767687801,
+ -0.3786782153688788,
+ -1.5882734919744241,
+ -3.748879337066424,
+ -2.8316822703201017
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.2044537690900357,
+ -2.814073457954036,
+ -0.24412472322127718,
+ 1.0589281697036628,
+ 1.9107963756936355,
+ 1.9203397530061073,
+ 1.1041615023540865,
+ -0.09185300952274038,
+ -0.489133459970595,
+ -0.7945882968568059,
+ -1.2865454604409434,
+ -1.3081339834641468,
+ 0.07704937222168706,
+ 1.318350023034579,
+ 2.1329261567035025,
+ 2.6986904194388526,
+ 1.639932543316706,
+ -0.7962119036008791,
+ -1.9469062139189548,
+ -1.963821813990221,
+ -1.8477076552988365,
+ -0.9350565732441797,
+ 0.3934953002008855,
+ 1.5440491766946676,
+ 2.190145751832015,
+ 2.713380578049413,
+ 1.5696202019240297,
+ -1.0187947677988076,
+ -2.222573904721358,
+ -2.0188417890613892,
+ -1.6956237583209064,
+ -0.8012103926077268,
+ -0.6622336142098343,
+ 0.04400002758175393,
+ 1.656651482121256,
+ 2.168380376070129,
+ 0.744993101644414,
+ -0.5876747242812733,
+ -1.672313655616896,
+ -2.0207013311468676,
+ -1.497967072520369,
+ -0.46674098712556006,
+ -0.2604118858452918,
+ 0.3804361553479616,
+ 1.9832409225143384,
+ 1.9302395392741982,
+ -0.6257655146373281,
+ -1.8405219332208227,
+ -1.860738903375905,
+ -1.9545466143692156,
+ -1.2066005704718181,
+ 0.07682991866786724,
+ 1.3187120689710439,
+ 2.1327766676812883,
+ 2.7499010906737866,
+ 1.780445538501114,
+ -0.9174105485293914,
+ -1.9855765299712942,
+ -1.9647539522509163,
+ -1.8484877941000104,
+ -1.1122785861394864,
+ -1.0568391031568785,
+ -0.16321028275729887,
+ 1.6311265974866378,
+ 2.364837109248633,
+ 1.0311595445928443,
+ -0.276125735988519,
+ -1.4695117643518707,
+ -2.016604327511769,
+ -1.6930220099031612,
+ -0.7978459704302141,
+ -0.6471557952317555,
+ 0.1020562209214982,
+ 1.5551596438248192,
+ 2.1238226712194366,
+ 0.7428071464629254,
+ -0.5885983194707433,
+ -1.7385345009433393,
+ -2.4137375958168654,
+ -1.8326971267912098,
+ 0.24154210938544862,
+ 1.0396180976999327,
+ 1.5977418153784437,
+ 2.02497082439991,
+ 1.5813932511474005,
+ 0.4374989710580087,
+ -0.8869129091329601,
+ -1.9292852429786944,
+ -4.3099866547880215,
+ -3.184027590834155,
+ 0.6959521591653761,
+ 1.2615594981167744,
+ 1.4763742406191445,
+ 2.01793293275726,
+ 1.6921649759968864,
+ 0.6174389021753011,
+ -0.7156297012454019,
+ -1.8242076959279647,
+ -2.5012472582957264,
+ -1.862043014741971,
+ 0.3673667491690916,
+ 1.2104489623093497,
+ 1.6778087156273906,
+ 2.0209697146017014,
+ 1.69182045064901,
+ 1.8461796233977463,
+ 0.7194961989429837,
+ -1.6529535199973402,
+ -2.67793404619763,
+ -1.563623196603279,
+ -0.4242310536276451,
+ 0.9023607991085545,
+ 1.8337480690058308,
+ 1.9705291397067883,
+ 1.4480086986341407,
+ 1.5072495965152564,
+ 0.47169291342622194,
+ -1.668189020992052,
+ -2.573379783051667,
+ -1.340939682468679,
+ -0.10773473867746623,
+ 1.1758777871782298,
+ 1.7742135044357243,
+ 1.4781047253322541,
+ 0.4082986752519878,
+ -0.10356768367709827,
+ -1.077574945386192,
+ -1.9097324814002232,
+ -1.922310135074833,
+ -1.0851310050168028,
+ 0.21305379161818605,
+ 1.4548858855048261,
+ 2.309465832278009,
+ 1.6676361863617948,
+ 0.7950048560853925,
+ 0.6143791704299107,
+ -1.7601806946675687,
+ -3.0728321441659143,
+ -1.7388176413363028,
+ -0.7105423224080825,
+ 0.6278404786463571,
+ 1.692403591469588,
+ 2.022250796510506,
+ 1.6776967988688831,
+ 1.8587718379766243,
+ 0.8152960923942124,
+ -1.7989009599508625,
+ -2.729864323581972,
+ -1.5519414491595902,
+ -0.40315133819251,
+ 0.8939266628505204,
+ 1.4195247347749096,
+ 1.256928423868499,
+ 0.667188593126126,
+ 0.29496580254242416,
+ -0.8172400369438084,
+ -1.7948408046280782,
+ -2.0029204398294427,
+ -1.3261599094080438,
+ -0.08370081248145331,
+ 1.201298131222958,
+ 1.7692248404728899,
+ 1.415631592942453,
+ 0.4158232192874368,
+ -0.13729779250126978,
+ -1.101277383610248,
+ -1.923029418096001,
+ -2.1108197652613265,
+ -2.5457475431562155,
+ -1.4824095530834436,
+ 1.6763639409148612,
+ 2.7132275986295977,
+ 1.9472296552959127,
+ 1.2133102657883104,
+ 1.9667938091211747,
+ 1.852923744845627,
+ 0.9431381454560082,
+ -0.29356801694425033,
+ -1.271379379669434,
+ -1.1300092658878158
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -3.2847757044609036,
+ -4.482881095202291,
+ -1.4499908171959885,
+ -0.248112001135637,
+ 1.0653278927396612,
+ 1.9114828697749238,
+ 1.9301748683864055,
+ 1.3017191683801543,
+ 1.3326827888975201,
+ 0.45619811026902546,
+ -1.886892874118129,
+ -2.568242413418135,
+ -1.2065030172081028,
+ 0.07250466274765927,
+ 1.3421446837250175,
+ 1.9266956713671732,
+ 1.4831547457571888,
+ 0.2918662049086898,
+ -0.34506904658920673,
+ -1.2311271934152628,
+ -1.9710380558198037,
+ -1.864597707900509,
+ -0.9335833270995746,
+ 0.3926509573470894,
+ 1.6026455411774316,
+ 2.2080864796272404,
+ 1.5879797456297537,
+ 0.02658244549185505,
+ -0.7694334479993198,
+ -1.4724876076417508,
+ -2.0273836150492754,
+ -1.9102860392054382,
+ -2.2017401300347372,
+ -1.0926236042237394,
+ 1.7455431862912667,
+ 2.779999677977694,
+ 1.7639852396958733,
+ 0.7508195052045016,
+ -0.5897690907731746,
+ -1.673376725683485,
+ -2.0303231429975623,
+ -1.7104706076384402,
+ -2.116945375649873,
+ -0.8207000304505764,
+ 1.8521097004426403,
+ 1.9260934358243473,
+ 0.583851102800323,
+ 0.08862491339894747,
+ -0.9620986981151527,
+ -1.8683295736991397,
+ -1.973105164157277,
+ -1.205925712883236,
+ 0.07465497510389198,
+ 1.345114756583573,
+ 1.9682864101955375,
+ 1.5727402911093913,
+ 0.24940461913645376,
+ -0.3545511351832366,
+ -1.234212014681314,
+ -1.9735828898278247,
+ -2.0611122110294398,
+ -2.396628057664706,
+ -1.167727714142251,
+ 1.502123676984509,
+ 2.694603218461285,
+ 1.9019595948318357,
+ 1.0384692554327946,
+ -0.27579744383671484,
+ -1.471807075886817,
+ -2.0270738955567613,
+ -1.9089455465373253,
+ -2.1593307116816742,
+ -0.9620261830935563,
+ 1.601488896749582,
+ 2.729126721515999,
+ 1.7640753318142044,
+ 0.7509995716636026,
+ -0.5251904716751689,
+ -1.0249864962774673,
+ -1.1245249810907503,
+ -0.9901272500630817,
+ -0.8012246059243934,
+ 0.4770072764801159,
+ 1.6034706201471929,
+ 2.0434441277313247,
+ 1.581307414772008,
+ 0.44234527996538725,
+ -0.858240246816055,
+ -2.3950151771705652,
+ -1.9174717767236606,
+ -1.4838834427084964,
+ -1.7723761796477637,
+ 0.29286984451518583,
+ 1.4813296873962485,
+ 2.0361674059692443,
+ 1.6924306004812624,
+ 0.6233057920023465,
+ -0.6673234014917726,
+ -1.1969151981630926,
+ -1.2251990028223696,
+ -0.8786713657040208,
+ -0.6199851134809937,
+ 0.6080014256617431,
+ 1.6837022315261407,
+ 2.2084859572737074,
+ 2.698100584938243,
+ 1.5081053131174762,
+ -1.1581454656138095,
+ -2.3862681716359098,
+ -2.035330925889025,
+ -1.5729233048558675,
+ -0.43102582089156954,
+ 0.9045984766099544,
+ 1.8424239578714883,
+ 2.1732440762678746,
+ 2.598769762144008,
+ 1.3725598867843787,
+ -1.3359061252389026,
+ -2.566099245806197,
+ -2.0052836224197854,
+ -1.3514574556616241,
+ -0.23776065787123976,
+ 0.06560485955009933,
+ 0.5170993768413382,
+ 1.4194056432977236,
+ 1.6494149163789875,
+ 0.22623709976826586,
+ -1.08015946025113,
+ -1.926236102950116,
+ -1.9231470435386218,
+ -1.0932126194922696,
+ 0.1130646378427853,
+ 0.5524342166666648,
+ 0.8401863312461062,
+ 1.7984106368377235,
+ 1.697848757412007,
+ -1.0725318021854593,
+ -2.4512831640812833,
+ -2.0169275781118103,
+ -1.7420670389037411,
+ -0.7155944902810083,
+ 0.630078470035529,
+ 1.69591917069563,
+ 2.2053800616718484,
+ 2.740815272256048,
+ 1.6435900991388803,
+ -1.312109437060965,
+ -2.4472318774103528,
+ -2.0338030432409324,
+ -1.5568306156609164,
+ -0.5533193115913541,
+ -0.33337774453346536,
+ 0.2986483655517991,
+ 1.4788475453651795,
+ 1.9172170900847711,
+ 0.5168417438347604,
+ -0.8178265190919894,
+ -1.8053061906309018,
+ -1.9974783781359498,
+ -1.3295506176226304,
+ -0.20792855062005167,
+ 0.0995072456825187,
+ 0.5560871812465638,
+ 1.3356446149871413,
+ 1.5861192702873355,
+ 0.19936976766031705,
+ -1.1012534228041442,
+ -2.0484898650263004,
+ -2.71421095130495,
+ -1.9088396234692229,
+ 0.7512703548014515,
+ 1.7145225150145718,
+ 1.8850778728033455,
+ 1.9506479761940636,
+ 1.2210323461212838,
+ 1.9672331350148242,
+ 1.8626655636446412,
+ 1.1321555311948193,
+ 1.7628950351879857,
+ 1.0648272891289596
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -2.9190983017370185,
+ -4.178763316930104,
+ -2.0193770065612306,
+ -1.4489988197855175,
+ -0.25210715600168193,
+ 1.0595707234508833,
+ 1.90697905224562,
+ 2.124674393653777,
+ 2.5712982626717173,
+ 1.508916164875053,
+ -1.656555331841508,
+ -2.6988171956233136,
+ -1.9611569355822807,
+ -1.2084379216989618,
+ -0.04255238982931191,
+ 0.3030251147406011,
+ 0.6718581035221551,
+ 1.253945546770809,
+ 1.4129680082468634,
+ 0.0463745319273666,
+ -1.2253768173189397,
+ -1.9741098449014007,
+ -1.8522411407942958,
+ -0.9348044701612981,
+ 0.30684872992530987,
+ 0.7276810703979874,
+ 0.9060275272787741,
+ 1.0628539063494848,
+ 1.0266948996614527,
+ -0.2753445537994858,
+ -1.4658238420458523,
+ -2.1796331237442326,
+ -2.7740543871941923,
+ -1.750205919596261,
+ 1.0648095006088878,
+ 2.167069814440104,
+ 2.007547231005436,
+ 1.7615265621962595,
+ 0.755596513939212,
+ -0.5871613906539465,
+ -1.668564725836362,
+ -2.20293484751471,
+ -3.044478317776328,
+ -1.6628855042821453,
+ 0.90380101581601,
+ 1.072458518170324,
+ 1.5389972366734765,
+ 1.9835160176189925,
+ 0.36311383436001904,
+ -0.9578940946607867,
+ -1.8713193868925888,
+ -1.9600363999406982,
+ -1.2054433096560988,
+ -0.03776600160463511,
+ 0.3166253687784334,
+ 0.6708783952519087,
+ 1.309145044554411,
+ 1.4369291743713946,
+ 0.04249341264303711,
+ -1.22856869771001,
+ -2.1032968999465087,
+ -2.682773558773956,
+ -1.659750694003356,
+ 0.7103047573703019,
+ 1.8367766025106487,
+ 1.936106326272162,
+ 1.89835405265269,
+ 1.0425433073819474,
+ -0.27652338962920014,
+ -1.4679490125644359,
+ -2.1809127052608415,
+ -2.7229492856099795,
+ -1.6044841492987096,
+ 0.9416186081193483,
+ 2.1323042596880706,
+ 2.00987875643733,
+ 1.7627332796794102,
+ 0.9228208348999538,
+ 0.8192997946892052,
+ 0.0813778193168103,
+ -1.7881977087495682,
+ -2.293306602998751,
+ -0.8569119917111357,
+ 0.4737257602938383,
+ 1.605418777927293,
+ 2.0305659685084194,
+ 1.5798413340173427,
+ 0.5940030453192533,
+ 0.5810419337555374,
+ 0.19793254534810864,
+ -3.0147304595243685,
+ -4.032226871349545,
+ -1.022764993042348,
+ 0.29006142132843704,
+ 1.4830063635169815,
+ 2.0236912187152445,
+ 1.6906933694775685,
+ 0.7867726158260008,
+ 0.6385673498100892,
+ -0.046401620145959055,
+ -1.7403037065993607,
+ -2.1815662600504195,
+ -0.732636313433462,
+ 0.603015042631934,
+ 1.752423010037242,
+ 2.3621966958591574,
+ 1.6335589369176255,
+ -0.15131359054589397,
+ -1.0414410000358427,
+ -1.6105657795004231,
+ -2.0307748835574326,
+ -1.5776532367492626,
+ -0.4258394810085236,
+ 0.9014208554148091,
+ 1.941817243740843,
+ 2.54687448251415,
+ 1.6703339883286823,
+ -0.4136070011514606,
+ -1.4270570892171766,
+ -1.786889262655979,
+ -2.0022530184290197,
+ -1.5500782836161748,
+ -1.6762170094966247,
+ -0.6743727695393583,
+ 1.807035436266718,
+ 2.6793364044182866,
+ 1.4335355860231738,
+ 0.2278815309175149,
+ -1.0806312311008381,
+ -1.9150827191758542,
+ -1.9206034828016576,
+ -1.2819828300190066,
+ -1.452641661355916,
+ -0.35988896167494255,
+ 2.0111636466804517,
+ 2.035217769454837,
+ 0.08986539703137518,
+ -0.7470717476560735,
+ -1.4061930966502731,
+ -2.0078592527531387,
+ -1.7467908945678048,
+ -0.7127950412858156,
+ 0.6208074509603356,
+ 1.76172937327331,
+ 2.4162644874933115,
+ 1.7490740862530736,
+ -0.2454098404652557,
+ -1.0845727767436504,
+ -1.619887858381755,
+ -2.0267786170859807,
+ -1.7601554466343459,
+ -1.9436385581985323,
+ -0.7937465788739161,
+ 1.6403115710087017,
+ 2.697965960756341,
+ 1.6263180133626374,
+ 0.5223259945759521,
+ -0.8109903555370135,
+ -1.7895163430676173,
+ -1.9921393781957597,
+ -1.5289801221368449,
+ -1.6182783415726605,
+ -0.5508650464259683,
+ 1.6687012292695713,
+ 2.6143153081018946,
+ 1.4153447213091102,
+ 0.2082743075381923,
+ -1.0825444979798726,
+ -1.6860313159720088,
+ -1.4944690770816846,
+ -0.507478239230126,
+ -0.04285222041934066,
+ 0.9913818145543257,
+ 1.8746379191249505,
+ 1.9536303985745398,
+ 1.214206818140802,
+ 1.962991562901802,
+ 2.062126690326334,
+ 4.027265968177238,
+ 2.795531132708065
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -1.298812202869837,
+ -2.0773509849322336,
+ -1.7160152879078832,
+ -2.018991925069136,
+ -1.4532604903887214,
+ -0.24351177560397522,
+ 1.0629091815617853,
+ 2.028058675947901,
+ 2.695615334954488,
+ 1.9058155404791566,
+ -0.7143749844835223,
+ -1.6667059933535036,
+ -1.867040354205667,
+ -1.961585043601534,
+ -1.4007915887270412,
+ -1.4415645749785193,
+ -0.42392521368380054,
+ 1.6705097726074143,
+ 2.552349032905278,
+ 1.2964026396853527,
+ 0.04346295210485847,
+ -1.2330661704080266,
+ -1.9680560478032827,
+ -1.851998324766987,
+ -1.1134401762322874,
+ -1.057312721026676,
+ -0.1619888414667842,
+ 1.6354458336213338,
+ 2.3702459901589674,
+ 1.0333069338554504,
+ -0.27648307655278176,
+ -1.5090001127664543,
+ -2.1486928768312836,
+ -1.6504088769802532,
+ -0.07035608218943903,
+ 0.6247524366243712,
+ 1.3853687851741812,
+ 2.0079052975315705,
+ 1.7677491796221354,
+ 0.7454605746514491,
+ -0.5905654250048264,
+ -1.7440756171002132,
+ -2.6558220367127823,
+ -1.784200069602052,
+ -0.4280473660363669,
+ -0.237884614267664,
+ 1.8259465281881622,
+ 3.0133107538091655,
+ 1.5242079018466461,
+ 0.35959242868409014,
+ -0.9644721538794042,
+ -1.8658615308406405,
+ -1.9590400038761902,
+ -1.3962608800527487,
+ -1.4616458952097897,
+ -0.5145161106678983,
+ 1.7990323891621505,
+ 2.599241724377497,
+ 1.2934015566169852,
+ 0.0410015972658056,
+ -1.2397022120243986,
+ -1.812222721231614,
+ -1.4343092863025058,
+ -0.3826673697807954,
+ 0.19320650878639037,
+ 1.136501986043062,
+ 1.935886370010985,
+ 1.9042911492766306,
+ 1.0307871547516343,
+ -0.28011490003211836,
+ -1.5123350824709305,
+ -2.11094593060491,
+ -1.5523895722758476,
+ -0.11976841825791612,
+ 0.620969398443808,
+ 1.3889257493192588,
+ 2.009613143889823,
+ 1.9650210564810924,
+ 2.3000145608064737,
+ 1.2451582190834556,
+ -1.8117067274311571,
+ -2.789286417987614,
+ -1.81406619740854,
+ -0.853332687781882,
+ 0.47878733161932585,
+ 1.6029648552181663,
+ 2.0304857097366753,
+ 1.781976177410988,
+ 3.2894545416460903,
+ 2.2156895547498574,
+ -3.2386500958391733,
+ -4.5428052425323155,
+ -1.8903366489300513,
+ -1.019085879432406,
+ 0.29461877780305584,
+ 1.4817459961259656,
+ 2.0239153375283276,
+ 1.8935937686983604,
+ 2.188340163402624,
+ 1.1454452681105338,
+ -1.847619981367542,
+ -2.794742802827925,
+ -1.7499734228712316,
+ -0.7309367595783909,
+ 0.5445702203461861,
+ 1.0112710377275604,
+ 1.0549804947259915,
+ 0.9147461455649588,
+ 0.7438539445579201,
+ -0.4949001038099171,
+ -1.6116273773244971,
+ -2.0383152653049934,
+ -1.5651226331602035,
+ -0.42214006099487145,
+ 0.8757392853592502,
+ 1.3987766147230953,
+ 1.247228528265118,
+ 0.6813417977970297,
+ 0.3196806558314226,
+ -0.8004689700462498,
+ -1.7871929917373062,
+ -2.1873281513330025,
+ -2.686141252010819,
+ -1.5685052671058513,
+ 1.414404201564303,
+ 2.5496669533853757,
+ 2.0165587838722185,
+ 1.4301257446628828,
+ 0.22524732934860545,
+ -1.0825673200096089,
+ -1.9162533873775567,
+ -2.116899546434404,
+ -2.820528311946347,
+ -1.397968760008408,
+ 1.3568012023215186,
+ 1.494382583722819,
+ 1.2067417148760504,
+ 1.268760596162482,
+ -0.19364132206644424,
+ -1.4076464888093534,
+ -2.0198816699338074,
+ -1.7408973436836883,
+ -0.7152618354367051,
+ 0.562211132770964,
+ 1.0533510910133215,
+ 1.1009114765467398,
+ 0.920676997939722,
+ 0.7370185902056756,
+ -0.5109970199469173,
+ -1.6213787471766221,
+ -2.2021009979586714,
+ -2.70764180420509,
+ -1.5379900401789661,
+ 1.0946254144908654,
+ 2.3125766738942395,
+ 2.0290966863201434,
+ 1.6297254648544062,
+ 0.5266371459187502,
+ -0.8123365240594238,
+ -1.7931607398510407,
+ -2.1839978780933587,
+ -2.629252723932558,
+ -1.4141486019992715,
+ 1.2813749825964147,
+ 2.510931056156248,
+ 2.0148257282757465,
+ 1.420437779248438,
+ 0.3437915655256666,
+ 0.061992812898440934,
+ -0.4391212169830291,
+ -1.540344660218788,
+ -1.7714499738577627,
+ -0.32388131806261,
+ 0.9919883200467602,
+ 1.8855632429051843,
+ 1.948082852771039,
+ 1.2176035994451067,
+ 2.098827549883563,
+ 4.544477981089117,
+ 3.3125091576858887
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.9428619696412242,
+ 0.946962025166003,
+ -0.8576927377688806,
+ -2.0702434881838347,
+ -2.3955320177721195,
+ -1.6627423997534985,
+ -0.21991086873268534,
+ 1.3134875241892037,
+ 2.035164386197904,
+ 1.7926168255429733,
+ 0.5769646619832742,
+ 0.011195389803330251,
+ -1.2032819413193696,
+ -2.239604570031354,
+ -2.538519321882681,
+ -3.0094379272738503,
+ -1.5521141350512113,
+ 1.6498992816661648,
+ 3.0965906578719955,
+ 2.34134030396315,
+ 1.4830687698982248,
+ -0.017515729470036795,
+ -1.5145397437272756,
+ -2.3504507919266144,
+ -2.407777690781106,
+ -2.7858745029029546,
+ -1.3363976501363555,
+ 1.8038937146900715,
+ 3.2024475048230556,
+ 2.223707273363031,
+ 1.1673955607180664,
+ -0.29188076172203953,
+ -0.7928958817159353,
+ -1.0446612044060026,
+ -1.3489249063733286,
+ -1.3269252588447804,
+ 0.26053742861207574,
+ 1.6919895671674483,
+ 2.399998823811161,
+ 2.0490230101059197,
+ 0.8193865218584685,
+ -0.6993852751015203,
+ -1.4199773452743942,
+ -1.3917339561824125,
+ -1.8252526785791405,
+ -1.6671029225011647,
+ 1.610663813127903,
+ 3.294821787588786,
+ 2.3994906554064332,
+ 1.7607430073736323,
+ 0.360898831150377,
+ -1.2023872728170257,
+ -2.2383322247114217,
+ -2.535628285752656,
+ -3.0620934869461376,
+ -1.7183115922465992,
+ 1.8240855773769042,
+ 3.155769282113997,
+ 2.3402378835728164,
+ 1.4821763148674896,
+ 0.1181194629177328,
+ -0.275939132618508,
+ -0.7490819575634193,
+ -1.519924620352301,
+ -1.745866391744267,
+ -0.11733093428100502,
+ 1.40233584262637,
+ 2.323697310290448,
+ 2.22040226099632,
+ 1.1631203164544315,
+ -0.2965742244627959,
+ -0.7816816377882956,
+ -1.0304407771337523,
+ -1.2991612208791055,
+ -1.2941135120707266,
+ 0.2644374490826205,
+ 1.6937630807194493,
+ 2.572921345825252,
+ 3.310157223918525,
+ 2.2066202280961837,
+ -1.2990829492860925,
+ -2.526410863131049,
+ -2.369562424388844,
+ -2.118401287354987,
+ -0.9535499390798738,
+ 0.6360817063199292,
+ 1.9416849179578959,
+ 2.611266229082969,
+ 5.410379360686819,
+ 3.865739771817261,
+ -2.530506096569938,
+ -3.774444215169816,
+ -2.32056790175816,
+ -2.2142879549518764,
+ -1.1535694818797912,
+ 0.4200620194105485,
+ 1.80264861875618,
+ 2.5967439104411896,
+ 3.3107980262701107,
+ 2.1687338444936253,
+ -1.42024214435288,
+ -2.6644084714666527,
+ -2.393454073594339,
+ -2.0403477195502866,
+ -1.0003386152158156,
+ -0.8364119859251353,
+ 0.07845243999327495,
+ 1.8627387732711655,
+ 2.566108418340254,
+ 0.9296821173086026,
+ -0.6518414651743433,
+ -1.958653543899695,
+ -2.403252172318615,
+ -1.8116169227324888,
+ -0.6054915417778232,
+ -0.33211225721015647,
+ 0.39143245805453836,
+ 1.731914280976661,
+ 2.224116793423999,
+ 0.5671552399754209,
+ -1.0087607014234559,
+ -2.265444720475449,
+ -3.042339953600774,
+ -2.124984980254925,
+ 0.5437080117278479,
+ 1.6419237352871805,
+ 2.083453060761382,
+ 2.3805361540875003,
+ 1.6531174048757609,
+ 0.19287991682901404,
+ -1.3406046122672226,
+ -2.4422756848033256,
+ -3.546495566854155,
+ -2.1700229545425027,
+ 0.20363322485382482,
+ 0.43020675796060504,
+ 2.125949335015686,
+ 3.1986092544237192,
+ 1.252138066267014,
+ -0.30132654030965444,
+ -1.7309790801566562,
+ -2.3994034172740544,
+ -2.031764672296629,
+ -0.9784102612913737,
+ -0.8205875231974062,
+ 0.031045475066396995,
+ 1.9814129424214906,
+ 2.602860299961352,
+ 0.9106235009933055,
+ -0.6744255091829147,
+ -2.0522343776972805,
+ -2.775910634817924,
+ -1.9319658974532237,
+ 0.14394534360733496,
+ 1.1826881614677025,
+ 1.885914633743545,
+ 2.412117609182261,
+ 1.9010974916869416,
+ 0.5482434162431561,
+ -1.0313579899515692,
+ -2.283444284474061,
+ -3.003593784771127,
+ -1.9812799507091605,
+ 0.4563686210275862,
+ 1.6448072703524161,
+ 2.101076348929103,
+ 2.385089748780318,
+ 1.8742572722675641,
+ 2.0446438461184315,
+ 0.8997988889360895,
+ -2.264031841622759,
+ -3.222774225673384,
+ -1.7331216906595712,
+ -0.31387684965423124,
+ 1.2461091248416643,
+ 2.259578669404886,
+ 2.294811749330865,
+ 1.5607983720174696,
+ 3.7832081982281176,
+ 2.9178531751463486
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 3.041293541912159,
+ 3.4926518535639035,
+ -1.1240463142519317,
+ -3.9166375148586376,
+ -5.032575330829751,
+ -3.9268907148895873,
+ -1.1401569427673235,
+ 2.0614445561446746,
+ 3.4473164992986414,
+ 3.3020758119409144,
+ 1.8154760354622201,
+ 0.9721848775753387,
+ -1.8833008726898774,
+ -4.363219458020892,
+ -5.411881912926606,
+ -6.540031566007247,
+ -3.5541638310019845,
+ 3.0865617087193,
+ 6.123417302808967,
+ 4.989010831700019,
+ 3.6010422558764117,
+ 0.6561744137280822,
+ -2.586974917745978,
+ -4.696329590790729,
+ -5.255147941203569,
+ -6.21130434926338,
+ -3.175283284026149,
+ 3.482911887366128,
+ 6.485437856128579,
+ 4.850574277960062,
+ 3.010680500842831,
+ 0.14185047671988063,
+ -0.7203621642328689,
+ -1.6183216685871424,
+ -3.257853767877036,
+ -3.5981099600512,
+ -0.14839236788951524,
+ 2.998199221139488,
+ 4.86521994535002,
+ 4.5866942812924965,
+ 2.337943195211792,
+ -0.7211231636715052,
+ -1.965918117840148,
+ -2.3909729674577993,
+ -4.219572759592342,
+ -3.9407402455224347,
+ 2.902529116835049,
+ 6.346727733924081,
+ 5.0020343127140015,
+ 4.100670335153184,
+ 1.4290307791747345,
+ -1.8817822818467709,
+ -4.361551974602897,
+ -5.407382386910693,
+ -6.657374875915258,
+ -3.909115915150509,
+ 3.4395409780626336,
+ 6.241509647630526,
+ 4.988016834335054,
+ 3.600256343386041,
+ 0.9915256831557784,
+ 0.35271272212399746,
+ -1.0182166405381643,
+ -3.4988576228608608,
+ -4.377670645005658,
+ -0.931096208610921,
+ 2.330904242197512,
+ 4.601281124285905,
+ 4.84392187726904,
+ 3.0022884114503574,
+ 0.13226680795985912,
+ -0.7143444737325246,
+ -1.6391218349959558,
+ -3.1081849688606433,
+ -3.5157518235683898,
+ -0.14087431017622712,
+ 3.0015664027427262,
+ 5.176136106224364,
+ 6.788568352312049,
+ 4.688708023238531,
+ -2.1488742060077013,
+ -4.5951745375903315,
+ -4.764554263684022,
+ -4.6951546394695916,
+ -2.6025708168643362,
+ 0.6463563077371604,
+ 3.5958327132811245,
+ 5.3736425562893135,
+ 11.362129100984884,
+ 8.194612233216873,
+ -4.350452433218283,
+ -6.652232680656463,
+ -4.60154061436709,
+ -4.835608145263353,
+ -2.9871608706987653,
+ 0.1869659242829572,
+ 3.25965325251981,
+ 5.274865807354169,
+ 6.853440348881976,
+ 4.652610440437212,
+ -2.424716087125185,
+ -4.929446348200273,
+ -4.859295118369295,
+ -4.573718202622063,
+ -2.754246607764926,
+ -2.6180543170038604,
+ -0.4062491172082141,
+ 4.035318233722699,
+ 5.851731979537882,
+ 2.5533549084257112,
+ -0.6799737895041297,
+ -3.6328773082724943,
+ -4.988037491879769,
+ -4.189586284309692,
+ -1.976689666295737,
+ -1.6048523992987846,
+ 0.24991700823123505,
+ 3.847801229061582,
+ 5.256113353184385,
+ 1.840299568092674,
+ -1.453015621432382,
+ -4.298423019625125,
+ -5.914945720885693,
+ -4.305834645626529,
+ 0.5274195593301578,
+ 2.5686901913235776,
+ 3.9503103985061965,
+ 5.0090291699619645,
+ 3.9137143720160648,
+ 1.0852176820430535,
+ -2.1911178295403846,
+ -4.7706489061362385,
+ -7.071282547652127,
+ -4.512613547600775,
+ -0.27131266296604434,
+ 0.20460341012063094,
+ 4.51326809225043,
+ 7.10045967631372,
+ 3.1708908526875605,
+ 0.061303342606240416,
+ -3.086728841807953,
+ -4.878985445994195,
+ -4.5616212152882625,
+ -2.7106377724594535,
+ -2.603221287758096,
+ -0.5481828193778316,
+ 4.322080236232493,
+ 5.9454542329840585,
+ 2.5158864568194197,
+ -0.7296575738195653,
+ -3.768810496534259,
+ -5.251414253558865,
+ -3.8512572922992097,
+ -0.2686114173912276,
+ 1.5803911962489285,
+ 3.460277650635771,
+ 4.973089241135782,
+ 4.3491038173377605,
+ 1.8007925248665042,
+ -1.5048767866362756,
+ -4.344314843247848,
+ -5.852471458425423,
+ -4.042018225804517,
+ 0.3893106201400571,
+ 2.59769884872869,
+ 3.9943764995812603,
+ 5.0256527439754155,
+ 4.3871375145664215,
+ 4.963429229244928,
+ 2.4486790952086603,
+ -4.661727908369611,
+ -6.87457214883052,
+ -4.053387994414579,
+ -1.3296737477291118,
+ 1.9775012700671182,
+ 4.419704928714806,
+ 4.945439942846856,
+ 3.8186467716756223,
+ 6.710210450910591,
+ 5.25553741492215
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.4554564570794635,
+ 2.917794725547957,
+ -0.5404120025023113,
+ -2.545058025022901,
+ -3.4609402217236926,
+ -2.8494091998373876,
+ -1.0168196963841416,
+ 1.1781555470378748,
+ 2.086536408608889,
+ 2.1116723716571024,
+ 1.4555775000751732,
+ 0.9941318233746644,
+ -1.0739623913243568,
+ -2.8833309710710378,
+ -3.748873376869669,
+ -4.572353224380824,
+ -2.544930487897277,
+ 1.9923931791164935,
+ 4.080044932705076,
+ 3.455098546693311,
+ 2.6430337804769257,
+ 0.6890628248717823,
+ -1.5749659222718646,
+ -3.1468129174638326,
+ -3.6815563521979633,
+ -4.394651824317531,
+ -2.3098692581823443,
+ 2.2899608342344386,
+ 4.37692723334724,
+ 3.3971931993889712,
+ 2.2620236320970717,
+ 0.35665767151569194,
+ -0.1709775981940567,
+ -0.9151567705714683,
+ -2.3859571944035163,
+ -2.752580798607256,
+ -0.3408050198525998,
+ 1.8709580166645314,
+ 3.2851960932232,
+ 3.251102475534407,
+ 1.8194068280249134,
+ -0.2391772290710394,
+ -1.002906763926047,
+ -1.4614474051147606,
+ -3.0339700898598627,
+ -2.8605438855339016,
+ 1.8309643558820305,
+ 4.167339063468179,
+ 3.426603367157773,
+ 2.957903654401986,
+ 1.212969417756859,
+ -1.0730414598458249,
+ -2.882528756232933,
+ -3.7463207539870993,
+ -4.655362505491634,
+ -2.791024297933808,
+ 2.230694737110958,
+ 4.159120261421307,
+ 3.454870381261672,
+ 2.642866575560122,
+ 0.9369841500805917,
+ 0.5625377231390329,
+ -0.5096156614918291,
+ -2.51112370091928,
+ -3.2541814966992386,
+ -0.8752574331651389,
+ 1.3918804218929606,
+ 3.068117375278509,
+ 3.3927201734530095,
+ 2.2564539856566137,
+ 0.35016177024751033,
+ -0.17285879368886287,
+ -0.9468509981650985,
+ -2.2675439457180957,
+ -2.691333444397582,
+ -0.3358665025284137,
+ 1.8731510226190977,
+ 3.481048053897844,
+ 4.611766958114848,
+ 3.2426484230581525,
+ -1.2786695831242492,
+ -2.91567984250589,
+ -3.20336634256119,
+ -3.312893676326778,
+ -1.9954814352149228,
+ 0.20773960591476157,
+ 2.307030745675631,
+ 3.657008447944594,
+ 7.812416778436697,
+ 5.6606861417733105,
+ -2.6604483142766675,
+ -4.136499582797554,
+ -3.070640778778808,
+ -3.3885566563070015,
+ -2.2477454961276573,
+ -0.11009896613843223,
+ 2.060706988991165,
+ 3.5656512629864774,
+ 4.6781795978192875,
+ 3.232750872369608,
+ -1.4756798733985126,
+ -3.1607850935654205,
+ -3.2838079594830405,
+ -3.2439805388247795,
+ -2.118108712903108,
+ -2.0958914691183734,
+ -0.475352007020123,
+ 2.8170002578668503,
+ 4.182414433984064,
+ 1.9619526546813009,
+ -0.2310333982429064,
+ -2.3329857512128718,
+ -3.4094609052249645,
+ -3.0128879344532886,
+ -1.6012025761696183,
+ -1.4149730305303159,
+ -0.024564053413143848,
+ 2.718009774188655,
+ 3.8149596158227683,
+ 1.4882391551674168,
+ -0.770628236805569,
+ -2.7979038613909077,
+ -3.904247873951451,
+ -2.906807441871005,
+ 0.1517259056858704,
+ 1.4642811558959288,
+ 2.5702469585190935,
+ 3.4474780176431725,
+ 2.842765369376539,
+ 0.97967179872602,
+ -1.2922826937593754,
+ -3.1572265600447587,
+ -4.7328240351224125,
+ -3.0875007098413523,
+ -0.4264964527175868,
+ -0.09923053934579895,
+ 3.11994992511876,
+ 5.013707014122117,
+ 2.366087659216201,
+ 0.28043329919573906,
+ -1.934111453159277,
+ -3.299816383995726,
+ -3.2376974226177224,
+ -2.088963505611172,
+ -2.09201089100741,
+ -0.5874908014531274,
+ 3.027060918914678,
+ 4.252535575903846,
+ 1.9370686598679516,
+ -0.2659696477837442,
+ -2.405649680039881,
+ -3.4123064037831647,
+ -2.577347326471555,
+ -0.38068071138535603,
+ 0.7765467749098585,
+ 2.207496668544166,
+ 3.387658712305472,
+ 3.112821065782249,
+ 1.4611472063414306,
+ -0.8077996402160035,
+ -2.832236677801913,
+ -3.8677781382692284,
+ -2.7384473310651973,
+ 0.07231878565058572,
+ 1.4921068308400427,
+ 2.6029689270146372,
+ 3.461332372120818,
+ 3.1713793204372447,
+ 3.6426267887210813,
+ 1.8755892685055031,
+ -3.1734458991547583,
+ -4.763424695918232,
+ -2.929074197031434,
+ -1.14444465605308,
+ 1.1401954023346128,
+ 2.9271594011710858,
+ 3.44372803868973,
+ 2.8113192016260986,
+ 5.052618756069655,
+ 3.351727442969951
+ ]
+ ],
+ "variable_names": [
+ "SH1_COR_001.hcorrector",
+ "SH2_HCOR_001.hcorrector",
+ "SXF11_HCOR_001.hcorrector",
+ "SXF1_HCOR_001.hcorrector",
+ "SXF13_HCOR_001.hcorrector",
+ "SXF13_HCOR_002.hcorrector",
+ "SXF1_HCOR_002.hcorrector",
+ "SXF12_HCOR_001.hcorrector",
+ "SH6_COR_001.hcorrector",
+ "SH4_COR_001.hcorrector",
+ "SH4_COR_002.hcorrector",
+ "SH6_COR_002.hcorrector",
+ "SXF21_HCOR_001.hcorrector",
+ "SXF2_HCOR_001.hcorrector",
+ "SXF22_HCOR_001.hcorrector",
+ "SH9_COR_001.hcorrector",
+ "SH7_COR_001.hcorrector",
+ "SH7_COR_002.hcorrector",
+ "SH9_COR_002.hcorrector",
+ "SXF31_HCOR_001.hcorrector",
+ "SXF3_HCOR_001.hcorrector",
+ "SXF33_HCOR_001.hcorrector",
+ "SXF33_HCOR_002.hcorrector",
+ "SXF3_HCOR_002.hcorrector",
+ "SXF32_HCOR_001.hcorrector",
+ "SH9_COR_003.hcorrector",
+ "SH7_COR_003.hcorrector",
+ "SH7_COR_004.hcorrector",
+ "SH9_COR_004.hcorrector",
+ "SXF41_HCOR_001.hcorrector",
+ "SXF4_HCOR_001.hcorrector",
+ "SXF42_HCOR_001.hcorrector",
+ "SH12_COR_001.hcorrector",
+ "SH10_COR_001.hcorrector",
+ "SH10_COR_002.hcorrector",
+ "SH12_COR_002.hcorrector",
+ "SXF51_HCOR_001.hcorrector",
+ "SXF5_HCOR_001.hcorrector",
+ "SXF53_HCOR_001.hcorrector",
+ "SXF53_HCOR_002.hcorrector",
+ "SXF5_HCOR_002.hcorrector",
+ "SXF52_HCOR_001.hcorrector",
+ "SH14_HCOR_001.hcorrector",
+ "SH13_COR_001.hcorrector",
+ "SH16_COR_001.hcorrector",
+ "SH16_COR_002.hcorrector",
+ "SH13_COR_002.hcorrector",
+ "SH14_HCOR_002.hcorrector",
+ "SXF52_HCOR_002.hcorrector",
+ "SXF5_HCOR_003.hcorrector",
+ "SXF53_HCOR_003.hcorrector",
+ "SXF53_HCOR_004.hcorrector",
+ "SXF5_HCOR_004.hcorrector",
+ "SXF51_HCOR_002.hcorrector",
+ "SH12_COR_003.hcorrector",
+ "SH10_COR_003.hcorrector",
+ "SH10_COR_004.hcorrector",
+ "SH12_COR_004.hcorrector",
+ "SXF42_HCOR_002.hcorrector",
+ "SXF4_HCOR_002.hcorrector",
+ "SXF41_HCOR_002.hcorrector",
+ "SH9_COR_005.hcorrector",
+ "SH7_COR_005.hcorrector",
+ "SH7_COR_006.hcorrector",
+ "SH9_COR_006.hcorrector",
+ "SXF32_HCOR_002.hcorrector",
+ "SXF3_HCOR_003.hcorrector",
+ "SXF33_HCOR_003.hcorrector",
+ "SXF33_HCOR_004.hcorrector",
+ "SXF3_HCOR_004.hcorrector",
+ "SXF31_HCOR_002.hcorrector",
+ "SH9_COR_007.hcorrector",
+ "SH7_COR_007.hcorrector",
+ "SH7_COR_008.hcorrector",
+ "SH9_COR_008.hcorrector",
+ "SXF22_HCOR_002.hcorrector",
+ "SXF2_HCOR_002.hcorrector",
+ "SXF21_HCOR_002.hcorrector",
+ "SH6_COR_003.hcorrector",
+ "SH4_COR_003.hcorrector",
+ "SH4_COR_004.hcorrector",
+ "SH6_COR_004.hcorrector",
+ "SXF12_HCOR_002.hcorrector",
+ "SXF1_HCOR_003.hcorrector",
+ "SXF13_HCOR_003.hcorrector",
+ "SXF13_HCOR_004.hcorrector",
+ "SXF1_HCOR_004.hcorrector",
+ "SXF11_HCOR_002.hcorrector",
+ "SH2_HCOR_002.hcorrector",
+ "SH1_COR_002.hcorrector",
+ "SH1_COR_003.hcorrector",
+ "SH2_HCOR_003.hcorrector",
+ "SXF11_HCOR_003.hcorrector",
+ "SXF1_HCOR_005.hcorrector",
+ "SXF13_HCOR_005.hcorrector",
+ "SXF13_HCOR_006.hcorrector",
+ "SXF1_HCOR_006.hcorrector",
+ "SXF12_HCOR_003.hcorrector",
+ "SH6_COR_005.hcorrector",
+ "SH4_COR_005.hcorrector",
+ "SH4_COR_006.hcorrector",
+ "SH6_COR_006.hcorrector",
+ "SXF21_HCOR_003.hcorrector",
+ "SXF2_HCOR_003.hcorrector",
+ "SXF22_HCOR_003.hcorrector",
+ "SH9_COR_009.hcorrector",
+ "SH7_COR_009.hcorrector",
+ "SH7_COR_010.hcorrector",
+ "SH9_COR_010.hcorrector",
+ "SXF31_HCOR_003.hcorrector",
+ "SXF3_HCOR_005.hcorrector",
+ "SXF33_HCOR_005.hcorrector",
+ "SXF33_HCOR_006.hcorrector",
+ "SXF3_HCOR_006.hcorrector",
+ "SXF32_HCOR_003.hcorrector",
+ "SH9_COR_011.hcorrector",
+ "SH7_COR_011.hcorrector",
+ "SH7_COR_012.hcorrector",
+ "SH9_COR_012.hcorrector",
+ "SXF41_HCOR_003.hcorrector",
+ "SXF4_HCOR_003.hcorrector",
+ "SXF42_HCOR_003.hcorrector",
+ "SH12_COR_005.hcorrector",
+ "SH10_COR_005.hcorrector",
+ "SH10_COR_006.hcorrector",
+ "SH12_COR_006.hcorrector",
+ "SXF51_HCOR_003.hcorrector",
+ "SXF5_HCOR_005.hcorrector",
+ "SXF53_HCOR_005.hcorrector",
+ "SXF53_HCOR_006.hcorrector",
+ "SXF5_HCOR_006.hcorrector",
+ "SXF52_HCOR_003.hcorrector",
+ "SH14_HCOR_003.hcorrector",
+ "SH13_COR_003.hcorrector",
+ "SH16_COR_003.hcorrector",
+ "SH16_COR_004.hcorrector",
+ "SH13_COR_004.hcorrector",
+ "SH14_HCOR_004.hcorrector",
+ "SXF52_HCOR_004.hcorrector",
+ "SXF5_HCOR_007.hcorrector",
+ "SXF53_HCOR_007.hcorrector",
+ "SXF53_HCOR_008.hcorrector",
+ "SXF5_HCOR_008.hcorrector",
+ "SXF51_HCOR_004.hcorrector",
+ "SH12_COR_007.hcorrector",
+ "SH10_COR_007.hcorrector",
+ "SH10_COR_008.hcorrector",
+ "SH12_COR_008.hcorrector",
+ "SXF42_HCOR_004.hcorrector",
+ "SXF4_HCOR_004.hcorrector",
+ "SXF41_HCOR_004.hcorrector",
+ "SH9_COR_013.hcorrector",
+ "SH7_COR_013.hcorrector",
+ "SH7_COR_014.hcorrector",
+ "SH9_COR_014.hcorrector",
+ "SXF32_HCOR_004.hcorrector",
+ "SXF3_HCOR_007.hcorrector",
+ "SXF33_HCOR_007.hcorrector",
+ "SXF33_HCOR_008.hcorrector",
+ "SXF3_HCOR_008.hcorrector",
+ "SXF31_HCOR_004.hcorrector",
+ "SH9_COR_015.hcorrector",
+ "SH7_COR_015.hcorrector",
+ "SH7_COR_016.hcorrector",
+ "SH9_COR_016.hcorrector",
+ "SXF22_HCOR_004.hcorrector",
+ "SXF2_HCOR_004.hcorrector",
+ "SXF21_HCOR_004.hcorrector",
+ "SH6_COR_007.hcorrector",
+ "SH4_COR_007.hcorrector",
+ "SH4_COR_008.hcorrector",
+ "SH6_COR_008.hcorrector",
+ "SXF12_HCOR_004.hcorrector",
+ "SXF1_HCOR_007.hcorrector",
+ "SXF13_HCOR_007.hcorrector",
+ "SXF13_HCOR_008.hcorrector",
+ "SXF1_HCOR_008.hcorrector",
+ "SXF11_HCOR_004.hcorrector",
+ "SH2_HCOR_004.hcorrector",
+ "SH1_COR_004.hcorrector",
+ "SH1_COR_001.vcorrector",
+ "SH3_VCOR_001.vcorrector",
+ "SXD11_VCOR_001.vcorrector",
+ "SXD1_VCOR_001.vcorrector",
+ "SXD13_VCOR_001.vcorrector",
+ "SXD1_VCOR_002.vcorrector",
+ "SXD1_VCOR_003.vcorrector",
+ "SXD12_VCOR_001.vcorrector",
+ "SH6_COR_001.vcorrector",
+ "SH4_COR_001.vcorrector",
+ "SH4_COR_002.vcorrector",
+ "SH6_COR_002.vcorrector",
+ "SXD21_VCOR_001.vcorrector",
+ "SXD2_VCOR_001.vcorrector",
+ "SXD22_VCOR_001.vcorrector",
+ "SH9_COR_001.vcorrector",
+ "SH7_COR_001.vcorrector",
+ "SH7_COR_002.vcorrector",
+ "SH9_COR_002.vcorrector",
+ "SXD31_VCOR_001.vcorrector",
+ "SXD3_VCOR_001.vcorrector",
+ "SXD33_VCOR_001.vcorrector",
+ "SXD3_VCOR_002.vcorrector",
+ "SXD3_VCOR_003.vcorrector",
+ "SXD32_VCOR_001.vcorrector",
+ "SH9_COR_003.vcorrector",
+ "SH7_COR_003.vcorrector",
+ "SH7_COR_004.vcorrector",
+ "SH9_COR_004.vcorrector",
+ "SXD41_VCOR_001.vcorrector",
+ "SXD4_VCOR_001.vcorrector",
+ "SXD42_VCOR_001.vcorrector",
+ "SH12_COR_001.vcorrector",
+ "SH10_COR_001.vcorrector",
+ "SH10_COR_002.vcorrector",
+ "SH12_COR_002.vcorrector",
+ "SXD51_VCOR_001.vcorrector",
+ "SXD5_VCOR_001.vcorrector",
+ "SXD53_VCOR_001.vcorrector",
+ "SXD5_VCOR_002.vcorrector",
+ "SXD5_VCOR_003.vcorrector",
+ "SXD52_VCOR_001.vcorrector",
+ "SH15_VCOR_001.vcorrector",
+ "SH13_COR_001.vcorrector",
+ "SH16_COR_001.vcorrector",
+ "SH16_COR_002.vcorrector",
+ "SH13_COR_002.vcorrector",
+ "SH15_VCOR_002.vcorrector",
+ "SXD52_VCOR_002.vcorrector",
+ "SXD5_VCOR_004.vcorrector",
+ "SXD53_VCOR_002.vcorrector",
+ "SXD5_VCOR_005.vcorrector",
+ "SXD5_VCOR_006.vcorrector",
+ "SXD51_VCOR_002.vcorrector",
+ "SH12_COR_003.vcorrector",
+ "SH10_COR_003.vcorrector",
+ "SH10_COR_004.vcorrector",
+ "SH12_COR_004.vcorrector",
+ "SXD42_VCOR_002.vcorrector",
+ "SXD4_VCOR_002.vcorrector",
+ "SXD41_VCOR_002.vcorrector",
+ "SH9_COR_005.vcorrector",
+ "SH7_COR_005.vcorrector",
+ "SH7_COR_006.vcorrector",
+ "SH9_COR_006.vcorrector",
+ "SXD32_VCOR_002.vcorrector",
+ "SXD3_VCOR_004.vcorrector",
+ "SXD33_VCOR_002.vcorrector",
+ "SXD3_VCOR_005.vcorrector",
+ "SXD3_VCOR_006.vcorrector",
+ "SXD31_VCOR_002.vcorrector",
+ "SH9_COR_007.vcorrector",
+ "SH7_COR_007.vcorrector",
+ "SH7_COR_008.vcorrector",
+ "SH9_COR_008.vcorrector",
+ "SXD22_VCOR_002.vcorrector",
+ "SXD2_VCOR_002.vcorrector",
+ "SXD21_VCOR_002.vcorrector",
+ "SH6_COR_003.vcorrector",
+ "SH4_COR_003.vcorrector",
+ "SH4_COR_004.vcorrector",
+ "SH6_COR_004.vcorrector",
+ "SXD12_VCOR_002.vcorrector",
+ "SXD1_VCOR_004.vcorrector",
+ "SXD13_VCOR_002.vcorrector",
+ "SXD1_VCOR_005.vcorrector",
+ "SXD1_VCOR_006.vcorrector",
+ "SXD11_VCOR_002.vcorrector",
+ "SH3_VCOR_002.vcorrector",
+ "SH1_COR_002.vcorrector",
+ "SH1_COR_003.vcorrector",
+ "SH3_VCOR_003.vcorrector",
+ "SXD11_VCOR_003.vcorrector",
+ "SXD1_VCOR_007.vcorrector",
+ "SXD13_VCOR_003.vcorrector",
+ "SXD1_VCOR_008.vcorrector",
+ "SXD1_VCOR_009.vcorrector",
+ "SXD12_VCOR_003.vcorrector",
+ "SH6_COR_005.vcorrector",
+ "SH4_COR_005.vcorrector",
+ "SH4_COR_006.vcorrector",
+ "SH6_COR_006.vcorrector",
+ "SXD21_VCOR_003.vcorrector",
+ "SXD2_VCOR_003.vcorrector",
+ "SXD22_VCOR_003.vcorrector",
+ "SH9_COR_009.vcorrector",
+ "SH7_COR_009.vcorrector",
+ "SH7_COR_010.vcorrector",
+ "SH9_COR_010.vcorrector",
+ "SXD31_VCOR_003.vcorrector",
+ "SXD3_VCOR_007.vcorrector",
+ "SXD33_VCOR_003.vcorrector",
+ "SXD3_VCOR_008.vcorrector",
+ "SXD3_VCOR_009.vcorrector",
+ "SXD32_VCOR_003.vcorrector",
+ "SH9_COR_011.vcorrector",
+ "SH7_COR_011.vcorrector",
+ "SH7_COR_012.vcorrector",
+ "SH9_COR_012.vcorrector",
+ "SXD41_VCOR_003.vcorrector",
+ "SXD4_VCOR_003.vcorrector",
+ "SXD42_VCOR_003.vcorrector",
+ "SH12_COR_005.vcorrector",
+ "SH10_COR_005.vcorrector",
+ "SH10_COR_006.vcorrector",
+ "SH12_COR_006.vcorrector",
+ "SXD51_VCOR_003.vcorrector",
+ "SXD5_VCOR_007.vcorrector",
+ "SXD53_VCOR_003.vcorrector",
+ "SXD5_VCOR_008.vcorrector",
+ "SXD5_VCOR_009.vcorrector",
+ "SXD52_VCOR_003.vcorrector",
+ "SH15_VCOR_003.vcorrector",
+ "SH13_COR_003.vcorrector",
+ "SH16_COR_003.vcorrector",
+ "SH16_COR_004.vcorrector",
+ "SH13_COR_004.vcorrector",
+ "SH15_VCOR_004.vcorrector",
+ "SXD52_VCOR_004.vcorrector",
+ "SXD5_VCOR_010.vcorrector",
+ "SXD53_VCOR_004.vcorrector",
+ "SXD5_VCOR_011.vcorrector",
+ "SXD5_VCOR_012.vcorrector",
+ "SXD51_VCOR_004.vcorrector",
+ "SH12_COR_007.vcorrector",
+ "SH10_COR_007.vcorrector",
+ "SH10_COR_008.vcorrector",
+ "SH12_COR_008.vcorrector",
+ "SXD42_VCOR_004.vcorrector",
+ "SXD4_VCOR_004.vcorrector",
+ "SXD41_VCOR_004.vcorrector",
+ "SH9_COR_013.vcorrector",
+ "SH7_COR_013.vcorrector",
+ "SH7_COR_014.vcorrector",
+ "SH9_COR_014.vcorrector",
+ "SXD32_VCOR_004.vcorrector",
+ "SXD3_VCOR_010.vcorrector",
+ "SXD33_VCOR_004.vcorrector",
+ "SXD3_VCOR_011.vcorrector",
+ "SXD3_VCOR_012.vcorrector",
+ "SXD31_VCOR_004.vcorrector",
+ "SH9_COR_015.vcorrector",
+ "SH7_COR_015.vcorrector",
+ "SH7_COR_016.vcorrector",
+ "SH9_COR_016.vcorrector",
+ "SXD22_VCOR_004.vcorrector",
+ "SXD2_VCOR_004.vcorrector",
+ "SXD21_VCOR_004.vcorrector",
+ "SH6_COR_007.vcorrector",
+ "SH4_COR_007.vcorrector",
+ "SH4_COR_008.vcorrector",
+ "SH6_COR_008.vcorrector",
+ "SXD12_VCOR_004.vcorrector",
+ "SXD1_VCOR_010.vcorrector",
+ "SXD13_VCOR_004.vcorrector",
+ "SXD1_VCOR_011.vcorrector",
+ "SXD1_VCOR_012.vcorrector",
+ "SXD11_VCOR_004.vcorrector",
+ "SH3_VCOR_004.vcorrector",
+ "SH1_COR_004.vcorrector"
+ ],
+ "observable_names": [
+ "BPM_001",
+ "BPM_002",
+ "BPM_003",
+ "BPM_004",
+ "BPM_005",
+ "BPM_006",
+ "BPM_007",
+ "BPM_008",
+ "BPM_009",
+ "BPM_010",
+ "BPM_011",
+ "BPM_012",
+ "BPM_013",
+ "BPM_014",
+ "BPM_015",
+ "BPM_016",
+ "BPM_017",
+ "BPM_018",
+ "BPM_019",
+ "BPM_020",
+ "BPM_021",
+ "BPM_022",
+ "BPM_023",
+ "BPM_024",
+ "BPM_025",
+ "BPM_026",
+ "BPM_027",
+ "BPM_028",
+ "BPM_029",
+ "BPM_030",
+ "BPM_031",
+ "BPM_032",
+ "BPM_033",
+ "BPM_034",
+ "BPM_035",
+ "BPM_036",
+ "BPM_037",
+ "BPM_038",
+ "BPM_039",
+ "BPM_040",
+ "BPM_041",
+ "BPM_042",
+ "BPM_043",
+ "BPM_044",
+ "BPM_045",
+ "BPM_046",
+ "BPM_047",
+ "BPM_048",
+ "BPM_049",
+ "BPM_050",
+ "BPM_051",
+ "BPM_052",
+ "BPM_053",
+ "BPM_054",
+ "BPM_055",
+ "BPM_056",
+ "BPM_057",
+ "BPM_058",
+ "BPM_059",
+ "BPM_060",
+ "BPM_061",
+ "BPM_062",
+ "BPM_063",
+ "BPM_064",
+ "BPM_065",
+ "BPM_066",
+ "BPM_067",
+ "BPM_068",
+ "BPM_069",
+ "BPM_070",
+ "BPM_071",
+ "BPM_072",
+ "BPM_073",
+ "BPM_074",
+ "BPM_075",
+ "BPM_076",
+ "BPM_077",
+ "BPM_078",
+ "BPM_079",
+ "BPM_080",
+ "BPM_081",
+ "BPM_082",
+ "BPM_083",
+ "BPM_084",
+ "BPM_085",
+ "BPM_086",
+ "BPM_087",
+ "BPM_088",
+ "BPM_089",
+ "BPM_090",
+ "BPM_091",
+ "BPM_092",
+ "BPM_093",
+ "BPM_094",
+ "BPM_095",
+ "BPM_096",
+ "BPM_097",
+ "BPM_098",
+ "BPM_099",
+ "BPM_100",
+ "BPM_101",
+ "BPM_102",
+ "BPM_103",
+ "BPM_104",
+ "BPM_105",
+ "BPM_106",
+ "BPM_107",
+ "BPM_108",
+ "BPM_109",
+ "BPM_110",
+ "BPM_111",
+ "BPM_112",
+ "BPM_113",
+ "BPM_114",
+ "BPM_115",
+ "BPM_116",
+ "BPM_117",
+ "BPM_118",
+ "BPM_119",
+ "BPM_120",
+ "BPM_121",
+ "BPM_122",
+ "BPM_123",
+ "BPM_124",
+ "BPM_125",
+ "BPM_126",
+ "BPM_127",
+ "BPM_128",
+ "BPM_129",
+ "BPM_130",
+ "BPM_131",
+ "BPM_132",
+ "BPM_133",
+ "BPM_134",
+ "BPM_135",
+ "BPM_136",
+ "BPM_137",
+ "BPM_138",
+ "BPM_139",
+ "BPM_140",
+ "BPM_141",
+ "BPM_142",
+ "BPM_143",
+ "BPM_144",
+ "BPM_145",
+ "BPM_146",
+ "BPM_147",
+ "BPM_148",
+ "BPM_149",
+ "BPM_150",
+ "BPM_151",
+ "BPM_152",
+ "BPM_153",
+ "BPM_154",
+ "BPM_155",
+ "BPM_156",
+ "BPM_157",
+ "BPM_158",
+ "BPM_159",
+ "BPM_160",
+ "BPM_161",
+ "BPM_162",
+ "BPM_163",
+ "BPM_164",
+ "BPM_165",
+ "BPM_166",
+ "BPM_167",
+ "BPM_168",
+ "BPM_169",
+ "BPM_170",
+ "BPM_171",
+ "BPM_172",
+ "BPM_173",
+ "BPM_174",
+ "BPM_175",
+ "BPM_176",
+ "BPM_177",
+ "BPM_178",
+ "BPM_179",
+ "BPM_180",
+ "BPM_001",
+ "BPM_002",
+ "BPM_003",
+ "BPM_004",
+ "BPM_005",
+ "BPM_006",
+ "BPM_007",
+ "BPM_008",
+ "BPM_009",
+ "BPM_010",
+ "BPM_011",
+ "BPM_012",
+ "BPM_013",
+ "BPM_014",
+ "BPM_015",
+ "BPM_016",
+ "BPM_017",
+ "BPM_018",
+ "BPM_019",
+ "BPM_020",
+ "BPM_021",
+ "BPM_022",
+ "BPM_023",
+ "BPM_024",
+ "BPM_025",
+ "BPM_026",
+ "BPM_027",
+ "BPM_028",
+ "BPM_029",
+ "BPM_030",
+ "BPM_031",
+ "BPM_032",
+ "BPM_033",
+ "BPM_034",
+ "BPM_035",
+ "BPM_036",
+ "BPM_037",
+ "BPM_038",
+ "BPM_039",
+ "BPM_040",
+ "BPM_041",
+ "BPM_042",
+ "BPM_043",
+ "BPM_044",
+ "BPM_045",
+ "BPM_046",
+ "BPM_047",
+ "BPM_048",
+ "BPM_049",
+ "BPM_050",
+ "BPM_051",
+ "BPM_052",
+ "BPM_053",
+ "BPM_054",
+ "BPM_055",
+ "BPM_056",
+ "BPM_057",
+ "BPM_058",
+ "BPM_059",
+ "BPM_060",
+ "BPM_061",
+ "BPM_062",
+ "BPM_063",
+ "BPM_064",
+ "BPM_065",
+ "BPM_066",
+ "BPM_067",
+ "BPM_068",
+ "BPM_069",
+ "BPM_070",
+ "BPM_071",
+ "BPM_072",
+ "BPM_073",
+ "BPM_074",
+ "BPM_075",
+ "BPM_076",
+ "BPM_077",
+ "BPM_078",
+ "BPM_079",
+ "BPM_080",
+ "BPM_081",
+ "BPM_082",
+ "BPM_083",
+ "BPM_084",
+ "BPM_085",
+ "BPM_086",
+ "BPM_087",
+ "BPM_088",
+ "BPM_089",
+ "BPM_090",
+ "BPM_091",
+ "BPM_092",
+ "BPM_093",
+ "BPM_094",
+ "BPM_095",
+ "BPM_096",
+ "BPM_097",
+ "BPM_098",
+ "BPM_099",
+ "BPM_100",
+ "BPM_101",
+ "BPM_102",
+ "BPM_103",
+ "BPM_104",
+ "BPM_105",
+ "BPM_106",
+ "BPM_107",
+ "BPM_108",
+ "BPM_109",
+ "BPM_110",
+ "BPM_111",
+ "BPM_112",
+ "BPM_113",
+ "BPM_114",
+ "BPM_115",
+ "BPM_116",
+ "BPM_117",
+ "BPM_118",
+ "BPM_119",
+ "BPM_120",
+ "BPM_121",
+ "BPM_122",
+ "BPM_123",
+ "BPM_124",
+ "BPM_125",
+ "BPM_126",
+ "BPM_127",
+ "BPM_128",
+ "BPM_129",
+ "BPM_130",
+ "BPM_131",
+ "BPM_132",
+ "BPM_133",
+ "BPM_134",
+ "BPM_135",
+ "BPM_136",
+ "BPM_137",
+ "BPM_138",
+ "BPM_139",
+ "BPM_140",
+ "BPM_141",
+ "BPM_142",
+ "BPM_143",
+ "BPM_144",
+ "BPM_145",
+ "BPM_146",
+ "BPM_147",
+ "BPM_148",
+ "BPM_149",
+ "BPM_150",
+ "BPM_151",
+ "BPM_152",
+ "BPM_153",
+ "BPM_154",
+ "BPM_155",
+ "BPM_156",
+ "BPM_157",
+ "BPM_158",
+ "BPM_159",
+ "BPM_160",
+ "BPM_161",
+ "BPM_162",
+ "BPM_163",
+ "BPM_164",
+ "BPM_165",
+ "BPM_166",
+ "BPM_167",
+ "BPM_168",
+ "BPM_169",
+ "BPM_170",
+ "BPM_171",
+ "BPM_172",
+ "BPM_173",
+ "BPM_174",
+ "BPM_175",
+ "BPM_176",
+ "BPM_177",
+ "BPM_178",
+ "BPM_179",
+ "BPM_180"
+ ],
+ "rf_response": null,
+ "variable_planes": [
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V"
+ ],
+ "observable_planes": [
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "H",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V",
+ "V"
+ ]
+}
diff --git a/examples/use_cases/config/soleil_ii/orm.npz b/examples/use_cases/config/soleil_ii/orm.npz
new file mode 100644
index 000000000..22942a749
Binary files /dev/null and b/examples/use_cases/config/soleil_ii/orm.npz differ
diff --git a/examples/use_cases/config/soleil_ii/orm.yaml b/examples/use_cases/config/soleil_ii/orm.yaml
new file mode 100644
index 000000000..ef25a9b03
--- /dev/null
+++ b/examples/use_cases/config/soleil_ii/orm.yaml
@@ -0,0 +1,131047 @@
+matrix:
+- - 9.785136025743885
+ - 8.166997442718808
+ - -4.667136475492239
+ - 1.209631548494242
+ - 2.63414374219137
+ - -5.75007649374703
+ - 6.801355577643622
+ - -5.651153463901545
+ - 2.0998085447793233
+ - 5.138173391603675
+ - 5.6300201758107455
+ - 2.384084703554862
+ - -5.900579654982784
+ - 6.791300733021701
+ - -5.371972872084978
+ - 1.6205393024880723
+ - 4.0117219665576584
+ - 5.314676059627708
+ - 2.442989447146
+ - -6.123194115653844
+ - 6.747344656678406
+ - -5.188279859879225
+ - 1.7355346929734645
+ - 2.129620317707283
+ - -5.3105310181781915
+ - 4.383608795208916
+ - 7.429535281538629
+ - -4.299818126620348
+ - -3.019969457716797
+ - 1.4528807494970275
+ - 2.5773195906925612
+ - -5.595616681198574
+ - 4.440829078420237
+ - 8.232731865927772
+ - -4.171197168900242
+ - -2.779509198274058
+ - 0.983368875688298
+ - 2.849388787456939
+ - -5.755481322586247
+ - 6.794077282812312
+ - -5.5202331829840166
+ - 2.4562791577199863
+ - -0.09179698087829105
+ - -0.40538020258995877
+ - -5.332141699304326
+ - -5.578599303005041
+ - -11.480984162863011
+ - -11.506272923851117
+ - 6.799678303953825
+ - -5.595715868123708
+ - 2.583012995776884
+ - 1.4844631234993486
+ - -4.863023946525205
+ - 6.670731209512181
+ - -4.210477580926731
+ - -8.33785639902316
+ - 0.907532906709433
+ - 1.1712256467162145
+ - 1.7670374484987557
+ - -5.066078574385941
+ - 6.747804072418122
+ - -4.0620327171331185
+ - -7.56259663833561
+ - 0.283914770143909
+ - 0.8906843727759804
+ - 2.223177884768355
+ - -5.37163859200029
+ - 6.777893804045112
+ - -5.884089989873968
+ - 3.073013492609719
+ - 0.7370250148646503
+ - -2.65823562171691
+ - -3.5835973407749218
+ - 7.637190282815535
+ - 4.424383264018562
+ - -5.73323570703857
+ - 2.6401875293920907
+ - 1.2093445486088614
+ - -2.9773810197033677
+ - -4.5993123759159955
+ - 8.563689867752874
+ - 4.628107853558869
+ - -5.462309843302001
+ - 2.3641546002732783
+ - 1.4943169348204488
+ - -5.024409512376875
+ - 6.711619916591478
+ - -6.227425701651645
+ - 7.960060976843377
+ - 9.990964870912508
+ - 12.10276349521571
+ - 9.863941730054991
+ - -6.689392577114604
+ - 4.930155782669
+ - -1.5788388990523607
+ - -2.4937261324625664
+ - 5.540397882989603
+ - -6.79674110691394
+ - 4.154824588901308
+ - 8.435340306788772
+ - 0.47516518787387607
+ - -0.44448696580368696
+ - -2.7622091732115663
+ - 5.707477770735229
+ - -6.8000507165387996
+ - 3.7411306638749116
+ - 7.182323845061837
+ - 0.9239067687291497
+ - -0.2092254774820258
+ - -3.1911876572545546
+ - 5.952646172751691
+ - -6.785043882551569
+ - 5.285482041613812
+ - -2.097579552603907
+ - -1.7744474817676053
+ - 3.1739350405180105
+ - 4.610786973182935
+ - -7.3074396012413185
+ - -4.348880894535316
+ - 5.0979698183654385
+ - -1.6388705168645656
+ - -2.2305582719296075
+ - 3.3839853995945557
+ - 5.4810387319942
+ - -7.716802539678148
+ - -4.2984925023357805
+ - 4.769513740105125
+ - -1.3492188625620376
+ - -2.503124489886805
+ - 5.673284747119906
+ - -6.80227708785706
+ - 5.729164046160178
+ - -7.269402656195106
+ - -7.440634731643847
+ - -6.679107057613016
+ - -6.67155853298799
+ - -7.101246062036204
+ - -6.9196083087319105
+ - 5.598587187359839
+ - -6.805451248729096
+ - 5.808996004725231
+ - -2.730594518777958
+ - -1.110159252097648
+ - 4.596307202444593
+ - -4.2574235800374955
+ - -7.593345952455268
+ - 5.713553894068121
+ - 3.4885370955350243
+ - -2.461633493557112
+ - -1.4021925805381215
+ - 4.937249908296855
+ - -4.319962148288654
+ - -7.211787740895754
+ - 4.837018215684585
+ - 3.285271573647298
+ - -2.0104785117893975
+ - -1.8657051731997114
+ - 5.132777076380734
+ - -6.768883824228191
+ - 6.071877499590575
+ - -3.407394322980926
+ - -0.0505500743697746
+ - 1.2017301953744377
+ - 7.075277128302257
+ - 3.6568628292289382
+ - -6.794321187000156
+ - 5.841352743421126
+ - -2.9858403739544723
+ - -0.277898297252574
+ - 0.7940684693951453
+ - 8.335534857053066
+ - 4.07947140135681
+ - -6.808136850511566
+ - 5.683043306993048
+ - -2.7213245604392364
+ - -1.341640126417627
+ - 4.762841319995336
+ - -6.646236390642953
+ - 9.878385987094305
+ - 12.10617239854447
+ - -1.6245827230541462e-15
+ - -3.516841092330452e-15
+ - -7.295733002717703e-16
+ - -2.9149844786368695e-16
+ - 2.2888087549342276e-16
+ - 2.6974359775354232e-16
+ - 5.367574994856597e-16
+ - 7.219632386362825e-16
+ - 5.247633806036408e-16
+ - 2.9083670337364453e-16
+ - -1.9027222040251017e-16
+ - -1.3476426539713925e-15
+ - 1.859502017019206e-16
+ - -3.0837293235976867e-16
+ - 2.6883369907973396e-17
+ - 5.911032657303936e-16
+ - 1.8173158057790016e-16
+ - 2.2151896804170079e-16
+ - 4.56520980068016e-16
+ - -1.9289851884736603e-16
+ - 5.4180330122223307e-17
+ - 3.093655490948323e-16
+ - 3.2309674726321256e-16
+ - -6.028078713980189e-17
+ - -2.3657365519016588e-17
+ - 1.2013971216720174e-15
+ - -1.621274000603934e-16
+ - -8.106370003019671e-18
+ - -7.369352077234923e-16
+ - -6.607208540343877e-16
+ - 3.5866551360299275e-16
+ - 6.766337410683766e-17
+ - -6.526455033043387e-16
+ - -3.3169942563376405e-16
+ - 7.229558553713462e-17
+ - 1.087907941629742e-15
+ - 1.313562812734208e-16
+ - -2.811380106914603e-16
+ - 2.843846945957309e-16
+ - -1.1546614170627713e-15
+ - 5.072271516175166e-16
+ - -3.9092555749256083e-16
+ - -6.544653006519554e-16
+ - -2.177552962545845e-17
+ - -6.443736971788086e-17
+ - 3.8265375136703055e-16
+ - 2.4104043049795226e-16
+ - 4.979627287569226e-17
+ - -8.400019120475995e-17
+ - -4.632211430296955e-18
+ - 1.8197973476166606e-16
+ - -1.449634023499181e-16
+ - -2.5559880927888555e-16
+ - -1.908719263466111e-16
+ - -1.435985543392056e-16
+ - 3.490702184973777e-17
+ - -3.838118042246048e-16
+ - 3.0754575174721564e-16
+ - -1.4047594752681792e-16
+ - -3.2872157542857315e-16
+ - -2.4128858468171817e-16
+ - 4.764560328305439e-17
+ - -2.871971086784112e-16
+ - 1.5966653773804814e-16
+ - 4.840660944660318e-16
+ - 3.9825644567131204e-16
+ - -4.9299964508160443e-17
+ - 5.1202479917032407e-17
+ - -9.165161187087545e-17
+ - -1.5005056311711922e-16
+ - 3.141218376170122e-16
+ - 1.3809780326572797e-16
+ - -1.4388806755359916e-16
+ - 1.0654086289682995e-16
+ - 1.8363409598677212e-16
+ - -2.7958704704292335e-17
+ - -1.465764045443965e-16
+ - -2.7330047438752034e-16
+ - -2.2631661559450837e-16
+ - 2.0787048793457583e-16
+ - 3.596581303380564e-16
+ - 3.8480442095966843e-16
+ - 3.29217883796105e-17
+ - -3.374896899216353e-17
+ - 1.388422658170257e-16
+ - 2.069605892607675e-16
+ - 2.7718822326651957e-16
+ - 8.139457227521791e-17
+ - -5.111976185577711e-16
+ - 1.287093033132511e-16
+ - -4.294721740375319e-16
+ - -1.1626850690045357e-15
+ - -8.076591500967761e-16
+ - 1.0091603473146936e-16
+ - 2.319362738810405e-16
+ - -9.711100391372544e-17
+ - 4.413008567970402e-16
+ - 1.555099551599692e-17
+ - 7.477712737479369e-16
+ - 3.8844401565490175e-16
+ - -2.562812332842418e-16
+ - 5.290647197889165e-16
+ - -9.065899513581182e-17
+ - 2.6486323213947946e-16
+ - 1.8454399466058045e-16
+ - -1.6560155863311612e-16
+ - 4.1028158382630167e-17
+ - -1.6254099036666994e-17
+ - 3.226004388956808e-17
+ - 6.203854594147708e-17
+ - 1.9901965538025843e-16
+ - -1.6907571720583883e-16
+ - -2.2548943498195534e-16
+ - 2.3082474993292237e-16
+ - -2.6107888083704932e-18
+ - 8.42069863578982e-17
+ - 2.3161057151484772e-17
+ - 6.418921553411495e-17
+ - -3.5304068543763216e-16
+ - 2.3326493273995377e-17
+ - -2.3161057151484775e-18
+ - 1.9554549680753572e-16
+ - -5.515640324503589e-16
+ - -2.283018490646356e-17
+ - -5.275344356556934e-16
+ - 3.719004034038412e-16
+ - 2.2664748783952955e-17
+ - -3.520428988237401e-17
+ - 3.4112928461686856e-16
+ - 3.69044045351119e-16
+ - -1.1712877473750872e-16
+ - 6.038418471637102e-17
+ - 3.269017780809565e-16
+ - 8.313165156157927e-17
+ - 2.450108974382068e-16
+ - 6.782881022934826e-18
+ - 9.769003034251256e-17
+ - 4.579271871093561e-16
+ - 2.332649327399538e-16
+ - 2.845501307182415e-17
+ - 3.6065074707312e-16
+ - -2.2093994161291367e-16
+ - -6.337754455804729e-17
+ - 3.077111878697263e-17
+ - 1.654361225106055e-16
+ - -4.0655927106981304e-17
+ - -2.4385284458063256e-16
+ - -3.427836458419746e-16
+ - 2.4104043049795226e-16
+ - -1.2949253995576225e-16
+ - -4.587130086912815e-16
+ - -4.888223829882117e-16
+ - -1.8214517088417667e-16
+ - -7.080666043453917e-17
+ - -1.3301064249852685e-16
+ - -6.435465165662555e-17
+ - -1.1563984963491327e-16
+ - -5.577265280138789e-17
+ - 2.9712327602904754e-16
+ - -2.7718822326651957e-16
+ - -1.8743912680451605e-16
+ - 1.1530897738989206e-16
+ - -9.510509092828434e-17
+ - 9.363684534100272e-17
+ - 4.2690791413861753e-16
+ - 1.8495758496685696e-16
+ - 3.3203029787878526e-16
+ - -1.2904017555827232e-16
+ - 5.765448869494603e-16
+ - -3.3782056216665645e-16
+ - 5.479244377551255e-16
+ - -1.0733495628488087e-15
+ - 2.2135353191919018e-16
+ - -1.4095157637903592e-16
+ - 3.9539233280034717e-17
+ - 2.873625448009218e-16
+ - 2.1754850110144625e-16
+ - 2.6693118367086203e-16
+ - 1.7326952291148269e-15
+ - 5.624828165360588e-16
+- - 4.244921104448929
+ - 3.4034287962306062
+ - -1.4599659319293634
+ - 0.009198695967165006
+ - 1.4424570020571081
+ - -2.4626342919641666
+ - 2.613648731695737
+ - -1.9182933100824247
+ - 0.5245885137015258
+ - 1.4836315974381569
+ - 2.6383568440040004
+ - 1.1918161412538517
+ - -2.5036197518548655
+ - 2.589536257567768
+ - -1.784355459032272
+ - 0.34310347679311215
+ - 1.0894997045799337
+ - 2.4356763277062976
+ - 1.1928217065309443
+ - -2.56056192253595
+ - 2.540183951573781
+ - -1.6982191796434132
+ - 0.21973410495001633
+ - 1.261026095330032
+ - -2.3354455727799754
+ - 1.7303914736884647
+ - 3.0215178174435193
+ - -1.2128649496506865
+ - -0.9423510888203677
+ - 0.10617838823306142
+ - 1.4222081188230324
+ - -2.41913684276448
+ - 1.7335037140314846
+ - 3.3052352329013734
+ - -1.1040498584621115
+ - -0.833141631593096
+ - -0.08048418433668994
+ - 1.5189041117599285
+ - -2.464133207828054
+ - 2.594812692984106
+ - -1.855022281309852
+ - 0.5132681909096056
+ - 0.795752883540004
+ - 0.6655237842008116
+ - -1.7792480739777488
+ - -1.8980119492809526
+ - -4.671648241800606
+ - -4.704692600711536
+ - 2.6062889008038708
+ - -1.8914008234512363
+ - 0.5655659844520844
+ - 1.024659896297017
+ - -2.1975622107159825
+ - 2.6601652625389858
+ - -1.5226983189068328
+ - -3.1118989509558785
+ - -0.224660994504911
+ - 0.15793787362234196
+ - 1.1287844460141814
+ - -2.2609981258541696
+ - 2.657716099687944
+ - -1.4445009951660335
+ - -2.785143469951332
+ - -0.4218335005571251
+ - 0.047212625284531656
+ - 1.2949076580824022
+ - -2.3536920677124433
+ - 2.6495612830630106
+ - -2.0335149394188106
+ - 0.7695857763486855
+ - 0.7452499120723498
+ - -1.2653645617715612
+ - -1.8522440104810887
+ - 2.8365510932442746
+ - 1.6942261018259985
+ - -1.9584414880395105
+ - 0.58918162219903
+ - 0.9225227705450251
+ - -1.3917736338227535
+ - -2.2909740910107916
+ - 3.134324320269463
+ - 1.7429297065790539
+ - -1.8272929552249975
+ - 0.47543151354109375
+ - 1.0283073695253593
+ - -2.248049258523218
+ - 2.660502559877753
+ - -2.2118366877728013
+ - 2.6678098924052676
+ - 3.3821835110141247
+ - 4.663963389950989
+ - 3.82339227118037
+ - -2.492230014732031
+ - 1.5792249805847265
+ - -0.15673379428970607
+ - -1.3922757739410883
+ - 2.403291141712262
+ - -2.6372368946355307
+ - 1.4556655671900516
+ - 3.0564182814279786
+ - 0.7890279081241132
+ - 0.14558829690520866
+ - -1.4880507955161375
+ - 2.450908330359634
+ - -2.6059513100841256
+ - 1.2795186034911168
+ - 2.560461340425916
+ - 0.8836288578215344
+ - 0.22108395671469974
+ - -1.6390149451537168
+ - 2.5174078271000426
+ - -2.5803561809160627
+ - 1.7437246385312615
+ - -0.366471581230411
+ - -1.1314874905361916
+ - 1.43305334461218
+ - 2.2044026943572894
+ - -2.630269125174161
+ - -1.6186056648248774
+ - 1.6563271461930174
+ - -0.18082584095789853
+ - -1.2975904174163693
+ - 1.5009943940602741
+ - 2.5512757971721367
+ - -2.734934838120115
+ - -1.5761188700862605
+ - 1.5061951850613555
+ - -0.06482868317458379
+ - -1.3956393800825304
+ - 2.441239314769929
+ - -2.6237304303302897
+ - 1.9565213770343235
+ - -2.133094442029239
+ - -2.219316807757587
+ - -2.5660426874229962
+ - -2.592301421591752
+ - -3.399279085970603
+ - -3.3491465966298803
+ - 2.4206279514824716
+ - -2.6346443483743704
+ - 1.9960433004803926
+ - -0.6271651153738228
+ - -0.8851553196058328
+ - 2.1127418353143916
+ - -1.7300431223263222
+ - -3.181101732301147
+ - 1.7749903144730756
+ - 1.1549018406177634
+ - -0.5159602277612801
+ - -0.9939389581372695
+ - 2.221301131050926
+ - -1.7312141294917571
+ - -2.980183669036309
+ - 1.4468425067768995
+ - 1.0631354266050397
+ - -0.3314822356944525
+ - -1.1646740845803378
+ - 2.2819325083083055
+ - -2.6571960670442536
+ - 2.1293828887205852
+ - -0.9111948561235541
+ - -0.3212149378037901
+ - -0.06178075825692256
+ - 2.9488734504898995
+ - 1.5791308184321402
+ - -2.64723867502347
+ - 2.0121003355453264
+ - -0.7335062626915057
+ - -0.4244712844677229
+ - -0.2980524422380209
+ - 3.424109521309585
+ - 1.7261653101730936
+ - -2.620050862881492
+ - 1.9340028368315143
+ - -0.6233235799691327
+ - -0.9714322434019922
+ - 2.166131813187109
+ - -2.66091551059327
+ - 3.8055837211185257
+ - 4.6909794543581045
+ - -7.325511504769612e-16
+ - -1.5414924305231945e-15
+ - -2.8595633775958167e-16
+ - -1.491406644433109e-16
+ - 7.696915599805921e-17
+ - 1.155778110889718e-16
+ - 2.5237280488992874e-16
+ - 2.129162896711493e-16
+ - 2.1473608701876596e-16
+ - 7.916118462132474e-17
+ - -1.0270739774552951e-16
+ - -5.042906604429533e-16
+ - 1.402071138277382e-17
+ - -1.1934148287608807e-16
+ - 3.72282974437147e-17
+ - 3.048574147564183e-16
+ - 8.102234099956905e-17
+ - 5.349790611686706e-17
+ - 2.1548054957006368e-16
+ - -5.689968638599139e-17
+ - -3.3500814808397617e-18
+ - 7.287461196592174e-17
+ - 1.3962808739895107e-16
+ - -4.6983858793011966e-17
+ - -1.4475660719677984e-17
+ - 5.325388783616392e-16
+ - -4.9961708998202865e-17
+ - 3.30872245021211e-19
+ - -4.0614568076353654e-16
+ - -3.061395447058755e-16
+ - 9.90135193225974e-17
+ - 1.0174321534402239e-17
+ - -1.8576408606409617e-16
+ - -8.05053531167234e-17
+ - 1.8611563782443123e-17
+ - 4.496553809838258e-16
+ - 1.0223952371155421e-16
+ - -5.662051292925474e-17
+ - 1.1481266902236024e-16
+ - -4.880365614062863e-16
+ - 1.5865324148767068e-16
+ - -1.3727062265317494e-16
+ - -4.0275424025206913e-16
+ - -1.675040740419881e-17
+ - -3.05850031491482e-17
+ - 1.5451733842490555e-16
+ - 9.098986738083303e-17
+ - 1.8942436027464331e-16
+ - 6.452008777913615e-18
+ - -2.2871543937091212e-17
+ - 4.503998435351235e-17
+ - -2.812414082680294e-17
+ - -1.1762508310504054e-16
+ - -2.7214242152994607e-17
+ - -4.7811039405564993e-17
+ - 2.374008358027189e-17
+ - -7.277121438935261e-17
+ - 5.740633451118012e-17
+ - -3.8587975575598735e-17
+ - -1.1712877473750872e-16
+ - -9.330597309598151e-17
+ - -3.618915179919496e-17
+ - -1.2316719320914582e-16
+ - 6.028078713980189e-17
+ - 2.1936829844906291e-16
+ - 1.6998561587964716e-16
+ - -2.2457953630814698e-17
+ - 3.929107909626881e-19
+ - -1.4475660719677984e-17
+ - -5.070617154950059e-17
+ - 1.5054687148465104e-17
+ - 1.3069453678337836e-17
+ - -9.876536513883149e-17
+ - 4.619803721108659e-17
+ - 6.551270451419979e-17
+ - 4.340630264372012e-17
+ - -3.5403330217269584e-17
+ - -1.152676183592644e-16
+ - -7.734138727370808e-17
+ - 9.984069993515043e-17
+ - 9.028676386016296e-17
+ - 6.650532124926343e-17
+ - 5.331179047904263e-17
+ - -2.919947562312188e-17
+ - 6.493367808541267e-17
+ - 8.218039385714329e-17
+ - 7.829264497814406e-17
+ - 5.02305426972826e-17
+ - -1.1907264917700833e-16
+ - 1.3276248831476094e-16
+ - 9.512577044359817e-17
+ - -5.172360370294082e-16
+ - -2.505530075423121e-16
+ - 7.327786251454134e-17
+ - 8.670920771087111e-17
+ - 3.3004506440865804e-17
+ - 1.8574340654878234e-16
+ - 5.4428484305989215e-17
+ - 2.1771393722395686e-16
+ - 1.436812724004609e-16
+ - -1.0596183646804283e-16
+ - 1.0025429024142694e-16
+ - -1.3731198168380258e-17
+ - 1.079470699381701e-16
+ - 8.164272645898382e-17
+ - -3.498973991099307e-17
+ - 4.011825970882184e-18
+ - -3.7543660052250544e-17
+ - 7.031035206700734e-19
+ - 2.014184791566622e-17
+ - 7.965749298885655e-17
+ - -1.1506082320612615e-16
+ - -1.2631047953684733e-16
+ - 7.287461196592174e-17
+ - 2.885826362044375e-17
+ - 9.295442133564648e-18
+ - 4.673570460924606e-17
+ - 3.680953725860973e-17
+ - -1.5112589791343813e-16
+ - -1.1580528575742387e-18
+ - 1.6543612251060552e-18
+ - 3.6209831314508786e-17
+ - -1.1820410953382765e-16
+ - 3.345945577776997e-17
+ - -1.8020129644467705e-16
+ - 3.474158572722716e-18
+ - 4.9527439176612524e-18
+ - -4.503998435351235e-17
+ - 1.6766951016449869e-16
+ - 1.3338287377417571e-16
+ - -1.0670629901934055e-17
+ - 5.398387472674196e-17
+ - 7.0827339949853e-17
+ - 6.1335442420807e-17
+ - 1.0596183646804283e-16
+ - 1.6543612251060553e-17
+ - 6.373426619721078e-17
+ - 1.79498192924007e-17
+ - 8.1146418091452e-17
+ - -1.1208297300093523e-17
+ - 1.5443462036365024e-16
+ - -1.1158666463340343e-16
+ - -6.348611201344487e-18
+ - 5.848166930749906e-17
+ - 3.3087224502121103e-18
+ - 1.1745964698252991e-17
+ - -9.520848850485347e-17
+ - -1.7335637687580075e-16
+ - 1.019913695277883e-16
+ - -4.433688083284228e-17
+ - -1.887626157846009e-16
+ - -2.685028268347128e-16
+ - -8.569591146049365e-17
+ - 3.1432863277015048e-18
+ - 7.113753267956038e-17
+ - -3.9601271825976194e-17
+ - -8.726755462434441e-17
+ - 1.5556165394825377e-17
+ - 1.531111313835654e-16
+ - -9.355412727974742e-17
+ - -2.8868603378100666e-17
+ - 1.1514354126738145e-16
+ - -1.3172851254906964e-17
+ - 3.999418261693888e-17
+ - 1.3251433413099503e-16
+ - 1.2924697071141056e-17
+ - 1.4459117107426924e-16
+ - -4.524677950665061e-17
+ - 2.252826398288171e-16
+ - -1.709782326147108e-16
+ - 1.5526180097620327e-16
+ - -3.395576414530178e-16
+ - 6.915229920943311e-17
+ - -8.172544452023912e-17
+ - 1.170460566762534e-17
+ - 1.1847811311173585e-16
+ - 1.1433704017014225e-16
+ - 1.0236360080343716e-16
+ - 7.54636872832127e-16
+ - 2.447627432544409e-16
+- - -3.899230672445171
+ - -3.086518632493559
+ - 2.486686603224779
+ - -0.776341264016763
+ - -0.9201475767795303
+ - 2.300584178222203
+ - -2.9243450987526316
+ - 2.523693429700389
+ - -1.0442400453148977
+ - -2.4504351349544486
+ - -2.154310589012234
+ - -0.8731809630714477
+ - 2.3745908451855637
+ - -2.9297325969508994
+ - 2.419428228997819
+ - -0.8382554848259858
+ - -1.949309453144876
+ - -2.062417618959092
+ - -0.9096606273680699
+ - 2.483671207038192
+ - -2.928917629145276
+ - 2.3482297903151688
+ - -0.996362739484535
+ - -0.6983030362203826
+ - 2.0911100700939524
+ - -1.8470870480621202
+ - -3.0840106005396444
+ - 2.0656334222967185
+ - 1.4033731488728665
+ - -0.877366688801316
+ - -0.8941578774845308
+ - 2.227281737788079
+ - -1.8813999123029228
+ - -3.4399114012966208
+ - 2.04185082166149
+ - 1.3095385342430654
+ - -0.6811600941706542
+ - -1.0153381209355854
+ - 2.303196330903778
+ - -2.9296161807769034
+ - 2.4745690965511042
+ - -1.2953240779851156
+ - 0.4746477744368503
+ - 0.6034030516637795
+ - 2.4173505616401196
+ - 2.509943969915821
+ - 4.764464018749609
+ - 4.763041723513931
+ - -2.927118808507031
+ - 2.5029237644646156
+ - -1.3475356729405286
+ - -0.416839893163452
+ - 1.8822032051674942
+ - -2.8178809303738763
+ - 1.8471513852908241
+ - 3.6072503302907735
+ - -0.6878589589578608
+ - -0.6530195422190288
+ - -0.5388587898894979
+ - 1.9774576733671023
+ - -2.8666514618027925
+ - 1.7948755210387306
+ - 3.291451368360671
+ - -0.399419195662329
+ - -0.5348044362920608
+ - -0.7392917904899661
+ - 2.1199060097438407
+ - -2.8907636385137043
+ - 2.609646825153899
+ - -1.5484811240970127
+ - -0.0937018904796714
+ - 1.0068591774610263
+ - 1.28064136634851
+ - -3.3113900724112026
+ - -1.8916529742550565
+ - 2.5551541520650467
+ - -1.3701733108517071
+ - -0.29659375058646653
+ - 1.141112238379863
+ - 1.688827636852815
+ - -3.7374001030870962
+ - -1.994117367048443
+ - 2.452745182451788
+ - -1.2573049829813294
+ - -0.42111946311694437
+ - 1.9571643488868253
+ - -2.84343242872942
+ - 2.7318969380232243
+ - -3.6026522329559687
+ - -4.504159510101159
+ - -5.159156342521753
+ - -4.193158111995016
+ - 2.875181475961446
+ - -2.2908960175610886
+ - 0.8884878883658378
+ - 0.8158019801971946
+ - -2.2424377031802853
+ - 2.866632371678408
+ - -1.8473247853423558
+ - -3.6975932395688114
+ - 0.11493732049412243
+ - 0.3555134481766971
+ - 0.9352142007064653
+ - -2.321515421246978
+ - 2.8860390760844936
+ - -1.6797369935309256
+ - -3.170311720949648
+ - -0.11739656953879928
+ - 0.24727822332078753
+ - 1.1246652179197083
+ - -2.4416227253500473
+ - 2.8890868176711266
+ - -2.427880717626089
+ - 1.1044287987473922
+ - 0.5006043007187893
+ - -1.242972917204759
+ - -1.7414336076543064
+ - 3.2123148940490607
+ - 1.8838442860593487
+ - -2.354944819476611
+ - 0.9144779777835806
+ - 0.701029713877124
+ - -1.3393241572233165
+ - -2.106366827492329
+ - 3.414630781485884
+ - 1.8744505961145337
+ - -2.228206842848808
+ - 0.7923651518564435
+ - 0.8199453437034733
+ - -2.3060072040059434
+ - 2.8771525467818457
+ - -2.5952085998743133
+ - 3.4494794362435908
+ - 3.5118927166695104
+ - 2.858858873380768
+ - 2.842317501618004
+ - 2.6798751400351604
+ - 2.590820302392832
+ - -2.2696759743582393
+ - 2.8734286703448406
+ - -2.6245384601964976
+ - 1.3655179824914374
+ - 0.21234157998377295
+ - -1.801574794236509
+ - 1.767995709786857
+ - 3.1032890907528423
+ - -2.6591981352303025
+ - -1.5863528774608713
+ - 1.2557613936290406
+ - 0.33972977022493434
+ - -1.9579401458835777
+ - 1.8066712249198915
+ - 2.9688744402468927
+ - -2.2805071117039395
+ - -1.5067484388317312
+ - 1.068076873358192
+ - 0.5405124361917294
+ - -2.049935423534507
+ - 2.8386710074609693
+ - -2.719845335124313
+ - 1.6418594424902302
+ - -0.13656258017116957
+ - -0.787312454157579
+ - -2.899540408348093
+ - -1.4698055323727655
+ - 2.8608054905795295
+ - -2.6355463895001066
+ - 1.4710754842380727
+ - -0.047845216203046576
+ - -0.6550200829291408
+ - -3.442227332502379
+ - -1.6582479374590964
+ - 2.8827965355866803
+ - -2.577949336877547
+ - 1.3617048309372528
+ - 0.3125812084525087
+ - -1.8782531376528169
+ - 2.759679880362501
+ - -4.211562523840653
+ - -5.147139648811708
+ - 6.124445255342616e-16
+ - 1.6948930751211535e-15
+ - 2.3786612489728e-16
+ - 1.2937104780329353e-16
+ - -7.535615380358081e-17
+ - -1.633268119485953e-16
+ - -3.0754575174721564e-16
+ - -1.246767978270551e-16
+ - -5.67445900211377e-17
+ - -9.300612012393104e-17
+ - 9.562207881112999e-17
+ - 4.614013456820788e-16
+ - 1.937670584905467e-17
+ - 1.0443155233481973e-16
+ - -1.2029274058052405e-16
+ - -4.293067379150213e-16
+ - -1.0253679174419045e-16
+ - 5.959836313444564e-17
+ - -1.492233825045662e-16
+ - 1.3549218433618593e-16
+ - 2.1382618834495762e-17
+ - 3.9291079096268815e-18
+ - -2.655249766295219e-16
+ - 5.9557004103817985e-18
+ - -5.4138971091595655e-17
+ - -6.215435122723449e-16
+ - 4.6983858793011966e-17
+ - 3.970466940254532e-17
+ - 5.399835038746165e-16
+ - 3.5103477245219107e-16
+ - -1.2622776147559202e-16
+ - 3.8515597272000345e-17
+ - -1.6874484496081765e-17
+ - -1.7246715771730627e-17
+ - -8.658513061898816e-17
+ - -4.288104295474895e-16
+ - -1.750934561621621e-16
+ - 3.805030817743927e-18
+ - -2.7131524091739305e-17
+ - 5.239775590217154e-16
+ - -1.6328545291796764e-16
+ - 2.3491929396505983e-17
+ - 5.13348288150409e-16
+ - -3.1432863277015048e-18
+ - -1.2159555004529505e-17
+ - -1.799117832302835e-16
+ - -8.172544452023912e-17
+ - -1.8148342639413425e-16
+ - 6.150087854331761e-17
+ - 1.2242273065784808e-17
+ - -8.189088064274973e-17
+ - -4.7314731038033177e-17
+ - 1.6849669077705171e-16
+ - -2.1940965747969056e-17
+ - 1.505158522116803e-16
+ - -2.953034786814309e-17
+ - 3.623051082982261e-17
+ - 3.556876633978019e-17
+ - 6.050826180825397e-17
+ - 2.2052635130663715e-16
+ - 1.2771668657818747e-16
+ - 1.6394719740801006e-16
+ - 1.8661194619196302e-16
+ - -8.547877654969849e-17
+ - -2.7603017040894534e-16
+ - -2.0700194829139515e-16
+ - 1.493888186270768e-16
+ - -1.9025154088719637e-18
+ - 3.407984123718474e-17
+ - 3.730584562614155e-17
+ - 1.7073007843094489e-16
+ - -3.970466940254533e-18
+ - 1.7618947047379487e-16
+ - -5.575197328607407e-17
+ - -6.452008777913615e-18
+ - -7.353635645596416e-17
+ - 1.0381116687540496e-17
+ - 2.1145838384152459e-16
+ - 6.218330254867386e-17
+ - -8.400019120475995e-17
+ - -4.984280178514837e-17
+ - -1.522012327097571e-17
+ - -1.0608591355992579e-16
+ - -4.748016716054378e-17
+ - -7.692779696743156e-17
+ - -8.201495773463268e-17
+ - 6.865599084190129e-18
+ - -4.011825970882184e-18
+ - 5.057382265149211e-16
+ - -8.482737181731298e-17
+ - -4.1822251770681074e-16
+ - 7.219632386362825e-16
+ - 1.733150178451731e-16
+ - -1.0160879849448252e-16
+ - -7.066965864558507e-17
+ - -1.3251433413099503e-16
+ - -2.4641710447954694e-16
+ - -2.518764965223969e-17
+ - -1.419028340834719e-16
+ - -1.4277137372665258e-16
+ - 1.0323214044661784e-16
+ - -9.371956340225802e-17
+ - -9.272694666719439e-17
+ - -1.3507859402990942e-16
+ - -1.227536029028693e-16
+ - -1.1911400820763597e-17
+ - 2.0327963553490652e-17
+ - 3.842253945308813e-17
+ - 2.2457953630814698e-17
+ - 1.819797347616661e-18
+ - -1.1328238488913714e-16
+ - 1.8431651999212837e-16
+ - 2.0944213109842658e-16
+ - -1.148643678106448e-16
+ - 1.943874439499615e-18
+ - 4.6073960119203635e-17
+ - -3.8629334606226386e-17
+ - -2.192028623265523e-17
+ - 1.418201160222166e-16
+ - -4.5412215629161213e-17
+ - -2.5725317050399158e-17
+ - 5.806807900122254e-17
+ - 5.2608686958372554e-17
+ - -6.579187797093644e-17
+ - 2.3533288427133637e-16
+ - 2.400891727935163e-16
+ - 2.1175823681357505e-17
+ - 7.31641251803153e-17
+ - -1.134891800422754e-16
+ - -8.358660089848343e-17
+ - 6.354815055938635e-17
+ - -1.985233470127266e-17
+ - 6.319659879905131e-17
+ - -1.3937993321518516e-16
+ - -1.5613034061938395e-18
+ - 1.887005772386594e-17
+ - -1.5021599923962983e-16
+ - 2.9985297205047253e-17
+ - -1.1597072187993448e-16
+ - 4.823496946949842e-17
+ - -2.784289941853491e-16
+ - 1.9918509150276904e-16
+ - 1.7580172956166066e-17
+ - 2.4401828070314313e-17
+ - -1.0902240473448904e-16
+ - -6.766337410683766e-17
+ - 4.0738645168236607e-17
+ - 8.428970441915351e-17
+ - -1.1282743555223297e-16
+ - 1.3392054117233518e-16
+ - 3.604853109506094e-16
+ - 4.574308787418243e-16
+ - 1.4723814903443893e-16
+ - -8.189088064274974e-18
+ - -6.56781406367104e-17
+ - 2.5642598989143854e-18
+ - 2.2515856273693413e-16
+ - 3.9746028433172974e-17
+ - -1.833859418030062e-16
+ - 1.4260593760414197e-16
+ - -3.3583532869652924e-17
+ - -1.7238443965605094e-16
+ - 3.548604827852489e-17
+ - -4.284795573024683e-17
+ - -2.1241998130361748e-16
+ - -1.819797347616661e-18
+ - -2.0878038660838416e-16
+ - 3.821574429994987e-17
+ - -2.8496372102451803e-16
+ - 2.6784108234467036e-16
+ - -6.675347543302933e-17
+ - 2.515456242773757e-16
+ - -9.156889380962015e-17
+ - 1.2738581433316626e-16
+ - -3.7719435932418056e-17
+ - -2.0323827650427888e-16
+ - -1.2784076367007043e-16
+ - -1.1563984963491327e-16
+ - -6.5136854323371e-16
+ - -3.336846591038913e-16
+- - 1.412466043661834
+ - 1.0173761172739115
+ - -1.3182451448325707
+ - 2.4881158361024984
+ - -0.775090147326783
+ - -1.0137474636515527
+ - 2.3032971613428295
+ - -2.9267661293546783
+ - 1.803236990158661
+ - 3.6435241680275983
+ - 0.09842335619070453
+ - -0.2450834403314743
+ - -1.1290391260383705
+ - 2.3786366790834226
+ - -2.9328881115930523
+ - 1.6290962399505524
+ - 3.1095743291295643
+ - 0.304018859404573
+ - -0.14178115746027992
+ - -1.316035642905913
+ - 2.487469272006482
+ - -2.9308311478091396
+ - 2.291453435619234
+ - -0.9954190362886154
+ - -0.7030917638196672
+ - 1.3219280220976295
+ - 1.8991194013860635
+ - -3.159395495048767
+ - -1.8710269659142609
+ - 2.2147645998677485
+ - -0.7997124214543732
+ - -0.8990281718181495
+ - 1.4140718517737894
+ - 2.2695358881033334
+ - -3.343782505293057
+ - -1.8534601297373394
+ - 2.077347884755681
+ - -0.677452510705839
+ - -1.0178081917450026
+ - 2.362486339491848
+ - -2.9318834266243057
+ - 2.474093872786685
+ - -3.2267328645506734
+ - -3.296520108115807
+ - -2.859798599951443
+ - -2.8515411748535513
+ - -2.9253856874405466
+ - -2.8442862277434404
+ - 2.3285611058517466
+ - -2.9293463099840067
+ - 2.50357905922844
+ - -1.260327519865682
+ - -0.4191107065254426
+ - 1.8868008208910454
+ - -1.8055256250868426
+ - -3.2041678520210923
+ - 2.5149620379840623
+ - 1.5236047977096447
+ - -1.1456510648114007
+ - -0.543687504289095
+ - 2.0373667346263966
+ - -1.8361211897158989
+ - -3.0500767465651455
+ - 2.1385072693595903
+ - 1.4389391846830264
+ - -0.9554497075801963
+ - -0.7441438424260197
+ - 2.122522971796273
+ - -2.9075248233090103
+ - 2.610570589945638
+ - -1.5458384454463214
+ - 0.029095691814802527
+ - 0.6021014336079793
+ - 2.98810643719173
+ - 1.5351688660644665
+ - -2.9207852255710534
+ - 2.517716271949723
+ - -1.367209703930915
+ - -0.06549183924401139
+ - 0.4410914771510468
+ - 3.5287590108645936
+ - 1.7185419178385508
+ - -2.9330927289124147
+ - 2.4519638679285354
+ - -1.256423640156061
+ - -0.5185623317142327
+ - 1.9598125356607827
+ - -2.8465035939314185
+ - 4.224339797019216
+ - 5.172438358835456
+ - 4.08603126189629
+ - 3.244899666130795
+ - -2.6088567193007024
+ - 2.8762627706262203
+ - -2.2910598435900402
+ - 0.7951616372371032
+ - 0.8179734919022241
+ - -2.2466195182658018
+ - 1.9620158867462687
+ - 3.5947955851526894
+ - -2.169383883314255
+ - -1.3684888737454073
+ - 0.6758896510173169
+ - 0.9397825840045478
+ - -2.371988439136146
+ - 1.8866593828121498
+ - 3.2221184200343047
+ - -1.7167060409728223
+ - -1.2307506396159407
+ - 0.47495827788356154
+ - 1.1291852495722576
+ - -2.4440460005940663
+ - 2.8902809758869354
+ - -2.4284268644240252
+ - 1.1010536260851789
+ - 0.2643603453384718
+ - -0.08737747386363656
+ - -3.1813512242580924
+ - -1.6885584014192527
+ - 2.8861174127212994
+ - -2.3067449740910932
+ - 0.9108304438612586
+ - 0.3852859807662699
+ - 0.16218836176632592
+ - -3.523688246695351
+ - -1.7602504533025274
+ - 2.8648763181127355
+ - -2.2267171073335383
+ - 0.7910024135832726
+ - 0.9138293501478061
+ - -2.308660711814526
+ - 2.879182481674555
+ - -5.0232856844077505
+ - -5.003298019841482
+ - -2.2775219494600836
+ - -2.1608604963415616
+ - 0.15072965911888356
+ - 0.2872247015903929
+ - 0.8573877270897721
+ - -2.272464933885158
+ - 2.8725660209601322
+ - -2.5776953708172408
+ - 1.3624445279100608
+ - 0.21751131177966357
+ - -1.093680248314119
+ - -1.5835187784262457
+ - 3.5701174221649596
+ - 1.9062646124108247
+ - -2.5150088053128856
+ - 1.2503426044280541
+ - 0.4213246424314267
+ - -1.2029571998810915
+ - -1.661873351183241
+ - 3.237110431358127
+ - 1.8892923389020804
+ - -2.404461362301777
+ - 1.0625957533691566
+ - 0.5429943496481024
+ - -2.119192994171322
+ - 2.838102962333598
+ - -2.7169296468650344
+ - 1.1431262611685595
+ - 2.423948190003077
+ - 1.5338839237935988
+ - 0.5813086181972228
+ - -2.2028112981855985
+ - 2.870612608625035
+ - -2.6322675489489242
+ - 1.1265252768863228
+ - 2.590742229840917
+ - 1.9994184993668302
+ - 0.7848262943686541
+ - -2.3334341780648753
+ - 2.881962319837555
+ - -2.575613367739299
+ - 1.273067174482018
+ - 0.31515632008123695
+ - -1.8817367157134086
+ - 3.3396606329614684
+ - 3.9883677489115392
+ - 5.467663848975513e-16
+ - 4.8902917814135e-16
+ - -5.0003068028830517e-17
+ - 4.665815642681921e-17
+ - 0.0
+ - 5.841963076155758e-17
+ - 1.134891800422754e-16
+ - 9.043152046735974e-17
+ - -1.76292868050364e-16
+ - 1.4608009617686469e-16
+ - 9.524984753548112e-17
+ - -7.943001832040447e-17
+ - 6.615376948892839e-17
+ - -1.495542547495874e-16
+ - -3.8629334606226386e-17
+ - -1.0228088274218186e-16
+ - -3.58996385848014e-17
+ - -2.91374370771804e-17
+ - 1.1241384524595646e-16
+ - 1.9686898578762056e-17
+ - 9.90962373838527e-17
+ - 5.649643583737179e-17
+ - 3.037407209294717e-16
+ - 5.444916382130304e-17
+ - 5.0871607672011196e-17
+ - 1.710609506759661e-16
+ - -6.476824196290207e-17
+ - -3.077111878697263e-17
+ - -3.310790401743493e-17
+ - -1.5121895573235037e-17
+ - 2.603964568316931e-16
+ - 8.478601278668534e-18
+ - 1.8553661139564408e-16
+ - 7.902159789295641e-17
+ - 1.306686873892361e-16
+ - -5.1450634100798315e-17
+ - 8.69366823793232e-17
+ - -1.1745964698252991e-17
+ - -5.848166930749906e-17
+ - -1.6353360710173355e-16
+ - 2.367390913126765e-16
+ - 1.252351447405284e-16
+ - -5.4097612060968004e-17
+ - 4.177262093392789e-17
+ - -1.108422020821057e-17
+ - -2.6552497662952185e-17
+ - 6.989676176073084e-17
+ - -7.690711745211774e-17
+ - -1.922367743573236e-16
+ - 1.2490427249550718e-16
+ - 2.0232837783047054e-16
+ - 1.1398548840980721e-16
+ - -7.728968848542351e-17
+ - -1.2308447514789052e-16
+ - -3.5304068543763216e-16
+ - -2.5435803836005598e-17
+ - -1.7941547486275168e-16
+ - 2.1241998130361748e-16
+ - -1.1034589371457388e-16
+ - -2.814688829364815e-16
+ - -5.277412308088316e-17
+ - -7.82512859475164e-17
+ - -1.3367238698856927e-16
+ - 4.764560328305439e-17
+ - 2.84136540411965e-17
+ - 1.0774027478503184e-16
+ - -3.146595050151717e-16
+ - 6.174903272708352e-17
+ - -4.0035541647566533e-17
+ - 7.95334158969736e-17
+ - -1.1911400820763599e-16
+ - 8.42069863578982e-17
+ - -6.282436752340245e-17
+ - 1.819797347616661e-17
+ - -2.719769854074355e-16
+ - -5.957768361913182e-17
+ - -6.26175723702642e-17
+ - -1.6328545291796764e-16
+ - 9.429858983104514e-17
+ - -7.982292911136717e-18
+ - 1.2664135178186854e-16
+ - 1.9579365099130163e-16
+ - -2.5642598989143854e-18
+ - 1.0217748516561273e-16
+ - -7.113753267956038e-18
+ - 1.0339757656912844e-17
+ - -4.35510592509169e-17
+ - -6.121136532892405e-17
+ - -6.217089483948555e-16
+ - -2.4319110009059014e-16
+ - 2.187892720202758e-16
+ - -7.209706219012188e-16
+ - -1.9004474573405808e-16
+ - -4.6322114302969544e-17
+ - -7.312276614968765e-17
+ - 1.670904837357116e-17
+ - 2.95882505110218e-16
+ - -4.7893757466820296e-17
+ - 2.6453235989445825e-16
+ - 7.394994676224067e-17
+ - 1.9604180517506753e-17
+ - 3.0626362179775845e-16
+ - 7.81685678862611e-17
+ - 9.330597309598151e-17
+ - 3.614779276856731e-17
+ - -1.341686953561011e-16
+ - -4.939302232707266e-17
+ - 7.225939638533542e-17
+ - 1.2771668657818747e-16
+ - 1.952146245625145e-17
+ - 1.7015105200215777e-16
+ - -7.696915599805921e-17
+ - -1.6839329320048258e-16
+ - 1.1779051922755114e-16
+ - -1.3226617994722913e-16
+ - -1.9686898578762056e-16
+ - -9.516712947422582e-17
+ - -2.322309569742625e-17
+ - 3.29217883796105e-17
+ - 1.5054687148465104e-16
+ - 1.1903129014638068e-16
+ - -7.899574849881414e-18
+ - 7.528377549998243e-17
+ - 5.335314950967028e-17
+ - -3.2210413052814893e-16
+ - -2.9232562847624e-16
+ - -1.2796484076195338e-16
+ - -5.872982349126496e-18
+ - -2.895132143935597e-17
+ - 6.628818633846826e-17
+ - -7.140636637864011e-17
+ - -4.115223547451312e-17
+ - 1.8640515103882476e-16
+ - 7.285393245060791e-17
+ - -1.7237733107266182e-16
+ - -6.627784658081134e-17
+ - 1.1481266902236024e-16
+ - 5.717472393966527e-16
+ - 1.7784383169890093e-16
+ - 6.121136532892404e-18
+ - 3.983701830055381e-16
+ - -9.710066415606852e-17
+ - -8.983181452325879e-17
+ - -2.0613340864821447e-16
+ - 2.723078576524567e-16
+ - 4.768696231368204e-17
+ - -5.459392042849982e-18
+ - 9.628382330117241e-17
+ - 9.132073962585424e-17
+ - -1.4597669860029556e-16
+ - -2.4021324988539924e-16
+ - -2.627125625468416e-16
+ - -5.484207461226573e-17
+ - -7.138568686332629e-17
+ - -1.5763994523729322e-16
+ - 5.349790611686706e-17
+ - -2.2499312661442353e-16
+ - -2.4931223662348254e-16
+ - 1.163015941249557e-16
+ - -7.82512859475164e-17
+ - 6.715672598164893e-17
+ - 1.495439149919305e-16
+ - -3.350081480839762e-17
+ - -2.158941398763402e-17
+ - 5.823351512373315e-17
+ - 3.701633241174799e-17
+ - 6.385834328909374e-17
+ - -1.1729421086001932e-16
+ - 1.8197973476166606e-16
+ - -2.9616167856695465e-16
+ - 1.462455322993753e-16
+ - -1.3995895964397228e-16
+ - 2.1423977865123414e-16
+ - -1.1497810514487085e-16
+ - 1.1497810514487083e-17
+ - 4.8100552619958553e-17
+ - -7.080666043453917e-17
+ - 1.5054687148465104e-17
+ - -3.479121656398034e-16
+ - 2.1440521477374475e-16
+- - 1.5198719341866769
+ - 1.370913333415187
+ - -0.3511334624425186
+ - -1.3125028964092131
+ - 2.47175925792274
+ - -0.6738075785462969
+ - -1.011012208375291
+ - 2.293017168526686
+ - -1.967955653715744
+ - -3.638066548858761
+ - 1.976439016330777
+ - 1.2760630080969508
+ - -0.5517594110416445
+ - -1.1278288406763106
+ - 2.410237327328674
+ - -1.8823632054110264
+ - -3.2459959154579536
+ - 1.5424531267488455
+ - 1.140124801330626
+ - -0.351870225239325
+ - -1.3134646322786605
+ - 2.4741208447162477
+ - -2.906796090541897
+ - 2.2752160340357706
+ - -0.9834332835481073
+ - -0.3680461925707312
+ - -0.10109925592464357
+ - 3.2133959370338645
+ - 1.7240861003525194
+ - -2.8937897631367338
+ - 2.1470497067240926
+ - -0.7887530756276208
+ - -0.48752028433133365
+ - -0.36484914602972957
+ - 3.544333443266783
+ - 1.7880320376578962
+ - -2.8631091985963852
+ - 2.0602642197148713
+ - -0.6696248176157156
+ - -1.1043435568366535
+ - 2.3502273621202585
+ - -2.914141224997039
+ - 4.906388379080213
+ - 4.894742189775961
+ - 2.364575920457237
+ - 2.2588151414073643
+ - 0.14187854461477883
+ - 0.008130299876106105
+ - -1.0502758650749406
+ - 2.3178305846595255
+ - -2.911416920890645
+ - 2.4371883796615923
+ - -1.249294760928981
+ - -0.4225225255907074
+ - 1.1739746803149023
+ - 1.756313295762577
+ - -3.5082755609426317
+ - -1.8905793416133856
+ - 2.370712825562035
+ - -1.1328899558077954
+ - -0.6216093769541162
+ - 1.2769165531404254
+ - 1.8132595854419766
+ - -3.167450544458719
+ - -1.8669353111716844
+ - 2.2494395653532977
+ - -0.9437354314489299
+ - -0.7430007954745019
+ - 2.175536715405552
+ - -2.8902062744573818
+ - 2.59199374005349
+ - -1.0489163874752936
+ - -2.2759992578699237
+ - -1.6902220206677563
+ - -0.6791736207652647
+ - 2.2552117043081803
+ - -2.909172380867563
+ - 2.499262076597721
+ - -1.0246516183465586
+ - -2.413206036467568
+ - -2.168101412204157
+ - -0.8830096991061072
+ - 2.374054003078754
+ - -2.9151248141511714
+ - 2.434919547610905
+ - -1.1579031263003068
+ - -0.5189699530608364
+ - 1.9523929732532503
+ - -3.461291670239134
+ - -4.145849825847735
+ - -1.684377496628798
+ - -1.2421733512672661
+ - 1.4139371303109813
+ - -2.595393736070809
+ - 2.858150421384671
+ - -2.213420139475558
+ - 0.787009275460201
+ - 0.8186786330324478
+ - -1.4346543448659295
+ - -2.3177025788562893
+ - 3.5014558605236297
+ - 1.9276101823043847
+ - -2.129858710574426
+ - 0.665970026102498
+ - 1.0117620387174842
+ - -1.4755519605796925
+ - -2.2204022445980396
+ - 2.977812126771733
+ - 1.8055726617092431
+ - -1.9866109514488095
+ - 0.46620907027117325
+ - 1.125410309809433
+ - -2.4825136539912904
+ - 2.8724102935299327
+ - -2.4100701237862925
+ - 0.7943499178069716
+ - 1.8758228389489517
+ - 2.110663733911231
+ - 0.9425750533747075
+ - -2.5446092686112274
+ - 2.8617611181707034
+ - -2.288761951547492
+ - 0.6885439281279365
+ - 1.8224685881986906
+ - 2.4801975151253766
+ - 1.0713871209246912
+ - -2.6385273251458425
+ - 2.846290612951815
+ - -2.21062071413377
+ - 0.6905118504655617
+ - 0.9114968971929726
+ - -2.2981491391520974
+ - 4.946906684526328
+ - 4.851630919465411
+ - 0.9832723121940032
+ - 0.812435611002574
+ - -2.913721657289573
+ - -3.057193822801204
+ - 0.7492371925966868
+ - 0.8548827274600236
+ - -2.257579501469359
+ - 2.8618826837642626
+ - -2.559425803707785
+ - 1.3498783886899353
+ - 0.0661920148091885
+ - -0.4440999485475711
+ - -3.308171108419355
+ - -1.6009977585917077
+ - 2.869886467767077
+ - -2.495748659408813
+ - 1.1689508226301262
+ - 0.20990348017996704
+ - -0.17995076474059898
+ - -3.1294343773396713
+ - -1.6518132373917926
+ - 2.8687022185196627
+ - -2.385736191981386
+ - 1.0541501821891697
+ - 0.6340656979104264
+ - -2.105580048027447
+ - 2.819400026400781
+ - -1.7695569172705994
+ - -3.257730498713569
+ - 0.3243241540365086
+ - 0.4914712770040888
+ - 0.7548674592125717
+ - -2.2400885135406656
+ - 2.851381847781268
+ - -1.8300293615246817
+ - -3.6671625219507176
+ - 0.0875867055205993
+ - 0.33948989185297984
+ - 0.9473114571881908
+ - -2.319634789762187
+ - 2.8622045336329194
+ - -2.509948893122976
+ - 1.2631929336151608
+ - 0.3168005433106501
+ - -1.381810588286418
+ - -1.5335129937284755
+ - -4.432033722059122e-16
+ - -5.806807900122254e-17
+ - -9.181704799338606e-17
+ - -8.482737181731298e-17
+ - 7.734138727370809e-18
+ - 3.90429249125029e-17
+ - -1.435158362779503e-17
+ - 1.3369306650388308e-17
+ - 3.53536993805164e-16
+ - -1.378082900513344e-16
+ - -1.5451733842490555e-16
+ - -1.678142667716955e-17
+ - -8.000387487036313e-17
+ - -2.10103875588469e-17
+ - -1.2242273065784808e-17
+ - 4.566036981292712e-17
+ - -3.447275202814743e-17
+ - 1.7296346608483806e-16
+ - 1.6882756302207292e-16
+ - 3.4327995420950644e-16
+ - -1.2896779725467393e-16
+ - -2.072087434445334e-17
+ - -2.962133773552392e-16
+ - -1.0599285574101357e-16
+ - -1.8859717966209028e-17
+ - 2.132471619161705e-16
+ - 2.1982324778596707e-17
+ - 8.681260528744024e-17
+ - -1.522012327097571e-17
+ - 0.0
+ - -2.1151008262980915e-16
+ - 3.019209235818551e-17
+ - -2.367390913126765e-16
+ - -1.0967380946687454e-16
+ - -2.096075672209372e-16
+ - 1.6932387138960474e-16
+ - -6.5843576759221e-17
+ - 1.2159555004529505e-17
+ - 1.1812139147257235e-16
+ - 7.890269067990192e-17
+ - -2.489503451054906e-16
+ - -1.9372569945991906e-16
+ - -2.099384394659584e-16
+ - -7.585246217111263e-17
+ - -1.7825742200517746e-17
+ - 5.670323099051005e-17
+ - 3.7223127564886245e-18
+ - 3.87348001343269e-16
+ - 1.8793543517204786e-16
+ - -6.625716706549752e-17
+ - -1.435985543392056e-16
+ - -1.318525896409526e-16
+ - 9.229267684560405e-17
+ - 7.46116912522831e-17
+ - 2.33595804984975e-16
+ - 5.0928476339124216e-17
+ - 1.0517601488611746e-16
+ - 1.0592047743741518e-16
+ - 3.523789409475898e-17
+ - 2.863078895199167e-16
+ - 7.113753267956038e-17
+ - 8.453785860291942e-17
+ - 1.0273583207908602e-16
+ - -3.5403330217269584e-17
+ - 9.198248411589667e-17
+ - -1.0056448297113433e-16
+ - 3.1019272970738533e-16
+ - -5.160314552623778e-17
+ - 1.5501364679243736e-16
+ - 2.1217182711985157e-17
+ - 1.048037836104686e-16
+ - -5.062345348824529e-17
+ - 4.328222555183717e-17
+ - -1.8301371052735737e-17
+ - 2.4666525866331285e-16
+ - 1.0507261730954833e-16
+ - 1.427920532419664e-17
+ - 2.421157652942712e-16
+ - 7.32468432415706e-17
+ - 4.980661263334917e-17
+ - -6.509911420792328e-17
+ - -1.164670302474663e-16
+ - -4.6756384124559883e-17
+ - -1.6113478332532977e-16
+ - 3.4576149604716557e-17
+ - 1.3565762045869652e-17
+ - 1.0885696861197843e-16
+ - 1.5232530980164002e-16
+ - 8.645691762404244e-16
+ - 1.093946360101379e-16
+ - -1.0637542677431935e-16
+ - 3.515517603350367e-16
+ - 4.8803656140628625e-18
+ - 3.9079114064302095e-17
+ - 2.5456483351319424e-17
+ - 8.271806125530277e-18
+ - -1.0399728251322939e-16
+ - 2.2491040855316822e-16
+ - -1.0455562942670269e-16
+ - -1.0660290144277143e-16
+ - -3.879477072873699e-17
+ - -2.8942015657464747e-16
+ - -1.7031648812466837e-16
+ - 1.7267395287044453e-17
+ - 6.774609216809297e-17
+ - 1.8032537353656e-16
+ - -5.583469134732937e-19
+ - -9.140345768710955e-17
+ - 1.8611563782443123e-17
+ - -4.119359450514077e-17
+ - -1.1005638050018032e-16
+ - 2.2044363324538184e-17
+ - 3.106063200136619e-17
+ - -1.574538295994688e-16
+ - 1.0703717126436177e-16
+ - 1.6345088904047824e-16
+ - 1.5062958954590634e-16
+ - 7.955409541228742e-17
+ - 1.3420488450790028e-16
+ - -1.5253210495477828e-16
+ - -9.330597309598151e-17
+ - 9.934439156761861e-17
+ - 1.74038800881157e-16
+ - 6.581772736507872e-17
+ - 2.362427829451447e-16
+ - 2.567568621364598e-16
+ - 5.517294685728694e-17
+ - -3.316735762396218e-17
+ - 1.148643678106448e-16
+ - -5.025122221259642e-18
+ - 1.7652034271881608e-16
+ - 1.3036366453835716e-16
+ - 2.2813641294212503e-16
+ - -1.3044638259961246e-16
+ - 2.4689273333176494e-16
+ - 4.7811039405564993e-17
+ - -8.933550615572698e-17
+ - -2.79390591647442e-16
+ - -4.450231695535288e-17
+ - -2.5353085774750295e-17
+ - -2.845501307182415e-16
+ - 1.2875066234387876e-16
+ - 5.037529930447938e-17
+ - 2.569222982589704e-16
+ - -2.5543337315637495e-16
+ - -4.140038965827903e-17
+ - -7.681922951203398e-17
+ - -1.0978754680110059e-16
+ - -4.086272226011956e-17
+ - 1.8164886251664485e-16
+ - 3.616847228388113e-16
+ - 1.6857940883830702e-16
+ - 9.818633871004437e-17
+ - 1.0066788054770346e-16
+ - 2.5890753172909766e-16
+ - -9.362650558334581e-17
+ - 2.0497535579064023e-16
+ - 8.715381729011837e-17
+ - -5.376673981594679e-17
+ - 9.970628308561056e-17
+ - -3.258186884663949e-17
+ - -2.249931266144235e-17
+ - 1.0836066024444661e-16
+ - 3.350081480839762e-17
+ - -1.608452701109362e-16
+ - -1.0327349947724549e-16
+ - -1.0960660104210461e-16
+ - 9.347140921849213e-18
+ - -1.1282743555223297e-16
+ - 1.0511139140076175e-16
+ - -4.4181784467988585e-17
+ - 6.799424635185887e-17
+ - -4.619803721108659e-17
+ - 3.494838088036542e-17
+ - -4.7852398436192645e-17
+ - -1.6105206526407446e-16
+ - 3.639594695233322e-17
+ - -4.83797260766952e-17
+ - 3.093655490948323e-16
+ - 3.1391504246387395e-16
+- - -4.0006935640027566
+ - -3.349069825089031
+ - 1.8489074295650705
+ - -0.3731382830285914
+ - -1.2992897912294292
+ - 2.521728668556307
+ - -0.6965059527354505
+ - -0.9996816061290401
+ - 1.5072310538467129
+ - 2.472863806048581
+ - -3.4445579613814785
+ - -1.9118512877535188
+ - 2.0005255553315053
+ - -0.5715372285484455
+ - -1.1884300192008603
+ - 1.5384751493405433
+ - 2.3492785102228835
+ - -2.917970651366231
+ - -1.786250620693832
+ - 1.847866668357585
+ - -0.37086699890455527
+ - -1.3020883668423286
+ - 2.5241143620293314
+ - -2.922659786716099
+ - 2.2969518129970643
+ - -0.7138363655068981
+ - -1.7492908868823345
+ - -2.2437851016605443
+ - -1.0259708692874998
+ - 2.5831168372331583
+ - -2.9001747570245224
+ - 2.1690325037537246
+ - -0.6047994339287754
+ - -1.6774600764730647
+ - -2.617455948799924
+ - -1.1519694759979602
+ - 2.66671096491737
+ - -2.8803740493454404
+ - 2.08406235373185
+ - -0.5982954594583456
+ - -1.0914664876568718
+ - 2.3518931169770014
+ - -5.041087200210728
+ - -4.950867247716386
+ - -1.110161847045192
+ - -0.9395149429233869
+ - 2.717907016721961
+ - 2.862255828487945
+ - -0.6554940702142416
+ - -1.039189215053026
+ - 2.3174523790601236
+ - -2.92882112975868
+ - 2.459642528941852
+ - -1.2712217261743408
+ - -0.1611776554139981
+ - 0.26754282641580224
+ - 3.394505250410348
+ - 1.6590655537375203
+ - -2.9288044430392666
+ - 2.3920474058306764
+ - -1.0830866590722013
+ - -0.3044560751606419
+ - 0.015354872181937648
+ - 3.1983106311288094
+ - 1.7046511363948633
+ - -2.9193327383995085
+ - 2.2711631548159703
+ - -0.96720317233994
+ - -0.8203210609848641
+ - 2.1732311483212263
+ - -2.902099026295373
+ - 1.7458069783049968
+ - 3.2431535903926703
+ - -0.16098355711834872
+ - -0.40289443755890086
+ - -0.9382939390031229
+ - 2.3026928325953153
+ - -2.9223420696680567
+ - 1.8003907662521659
+ - 3.6381758543250684
+ - 0.10106490593694946
+ - -0.2433484849110358
+ - -1.1304357742142452
+ - 2.3758156525258416
+ - -2.928925837866128
+ - 2.4056399388272824
+ - -1.1819483421383825
+ - -0.5043466794820851
+ - 1.5863515806928372
+ - 1.7861492992784462
+ - -1.2811679324479361
+ - -1.178991059402414
+ - 0.16665080845596073
+ - 1.4056034258374344
+ - -2.5990140039551126
+ - 2.8636835379666317
+ - -2.237653910859657
+ - 0.8078029509789373
+ - 0.4440904624418971
+ - 0.287492744708515
+ - -3.732468100163052
+ - -1.8786172747166843
+ - 2.846315700447259
+ - -2.152519672543403
+ - 0.6112340947035578
+ - 0.5895234452654878
+ - 0.49970521641350646
+ - -3.3039684776515865
+ - -1.8113615361081623
+ - 2.8036035410993096
+ - -2.009404887488568
+ - 0.48829829078256826
+ - 1.2005053667527386
+ - -2.4843752464300066
+ - 2.887192572599634
+ - -1.6117530889159013
+ - -3.0864395204504165
+ - -0.35525992748991203
+ - 0.11218719403225351
+ - 1.3132795246045776
+ - -2.5859374056118374
+ - 2.877674936302221
+ - -1.5549513369836512
+ - -3.2484770105383642
+ - -0.6345336737264952
+ - -0.033337860099280366
+ - 1.4902778679778097
+ - -2.6441252546791456
+ - 2.86311940487191
+ - -2.1711383250124583
+ - 0.7133175883452207
+ - 0.8993053134236505
+ - -3.2909721044457
+ - -3.1498687538931467
+ - 0.6669827095213756
+ - 0.8453923794292718
+ - 4.778999351854515
+ - 4.879323315263354
+ - -2.2126902468776986
+ - 0.7725375174432202
+ - 0.8377413199015182
+ - -2.3155289743310266
+ - 2.875552586821791
+ - -2.582971967674572
+ - 0.9938890026296593
+ - 2.352828109869823
+ - 1.98887300080197
+ - 0.7820248571869883
+ - -2.388989869198019
+ - 2.884581315743773
+ - -2.479413720055008
+ - 0.8611712659084616
+ - 1.9850217610887286
+ - 2.0230875158410724
+ - 0.8851830462386823
+ - -2.502217047201041
+ - 2.8847809665226913
+ - -2.4116129134612194
+ - 0.9913871641051616
+ - 0.6152052971555139
+ - -2.102799752048926
+ - 1.838995007457619
+ - 3.0625076577819415
+ - -2.1000047855889292
+ - -1.4196390206742413
+ - 0.8749464919740473
+ - 0.813437608931714
+ - -2.2390927935933114
+ - 1.9581373335706953
+ - 3.5868026244039393
+ - -2.1701042070463266
+ - -1.3682233267379196
+ - 0.6778836000517757
+ - 0.9331406528520088
+ - -2.3181509635958912
+ - 2.8823065439707665
+ - -2.5351402573099566
+ - 1.288246583630604
+ - -1.038480269308594
+ - -1.4377302895095914
+ - 1.427548301144015e-15
+ - 2.1597272203453276e-15
+ - 3.250406217027122e-16
+ - 2.5882481366784236e-16
+ - -1.4277137372665258e-16
+ - -1.2456047555341483e-16
+ - -2.6511138632324537e-16
+ - -1.1950691899859867e-16
+ - -3.480414126105148e-16
+ - 1.1419228356294547e-16
+ - 2.2559283255852447e-16
+ - 5.217855303984499e-16
+ - 1.2374621963793294e-16
+ - 6.530590936106153e-17
+ - -5.016850415134112e-17
+ - -3.8095803111129685e-16
+ - -1.1431636065482842e-16
+ - -2.1390890640621293e-16
+ - -1.6564291766374377e-16
+ - -5.302227726464907e-17
+ - 1.5178764240348055e-16
+ - 1.7288074802358278e-17
+ - 2.1051746589474552e-16
+ - 9.479489819857696e-17
+ - 5.10370437945218e-17
+ - -4.553629272104417e-16
+ - -9.847585192443793e-17
+ - -7.730002824308042e-17
+ - 3.691707073824162e-16
+ - 2.6751021009964915e-16
+ - 1.919989599312146e-16
+ - 1.0763687720846271e-17
+ - 4.840247354354041e-16
+ - 8.366931895973874e-17
+ - 4.714929491552257e-18
+ - -5.010646560539965e-16
+ - -1.6106240502173138e-16
+ - -3.288042934898285e-17
+ - -1.4582160223544187e-16
+ - 3.540333021726958e-16
+ - 8.048467360140958e-17
+ - 3.360007648190398e-16
+ - 3.3951628242239016e-16
+ - 1.120416139703076e-16
+ - 5.815079706247785e-17
+ - -5.600012746983997e-17
+ - -7.869589552676366e-17
+ - -3.753021836729655e-16
+ - -1.7834014006643274e-16
+ - 1.7345977445236988e-16
+ - 2.101865936497243e-16
+ - 1.0927055891825494e-16
+ - -2.997495744739034e-17
+ - -3.9539233280034717e-17
+ - -4.377439801630622e-16
+ - -9.363684534100272e-17
+ - -3.46898869389426e-17
+ - -8.174612403555295e-17
+ - 1.7701665108634792e-17
+ - 8.933550615572699e-18
+ - 7.031035206700735e-17
+ - -1.9128551665288762e-17
+ - -2.0265925007549175e-17
+ - 8.271806125530277e-18
+ - -2.607273290767143e-16
+ - -1.8843174353957968e-16
+ - -2.131644438549152e-16
+ - 5.03132607585379e-17
+ - -7.370179257847477e-17
+ - 7.246102165964522e-17
+ - 1.0587911840678753e-17
+ - 2.357464745776129e-16
+ - -6.2865726554030096e-18
+ - -8.151864936710087e-17
+ - -2.041481751780872e-16
+ - -1.6642873924566914e-16
+ - -1.943874439499615e-18
+ - -1.386768296945151e-16
+ - 4.95067596612987e-17
+ - -1.0678901708059586e-16
+ - 2.7421037306132864e-17
+ - 5.591740940858467e-17
+ - 2.1837568171399928e-17
+ - 2.1188231390545801e-16
+ - -8.337980574534518e-17
+ - -1.0997366243892502e-16
+ - -1.6262370842792522e-16
+ - -1.7953955195463463e-16
+ - -7.030208026088181e-16
+ - -2.1374347028370233e-16
+ - -6.394106135034904e-17
+ - 1.2209185841282688e-16
+ - 1.6766951016449869e-16
+ - -6.86559908419013e-17
+ - -1.108422020821057e-16
+ - 5.7489052572435416e-18
+ - -1.3098404999777193e-16
+ - -1.9885421925774783e-16
+ - -2.225115847767644e-17
+ - -7.052748697780252e-17
+ - 9.363684534100272e-17
+ - 2.2010759112153218e-16
+ - 1.886798977233456e-16
+ - -2.3491929396505983e-17
+ - -3.407984123718474e-17
+ - -2.547716286663325e-17
+ - -9.041084095204591e-17
+ - 9.826905677129968e-17
+ - 1.4086885831778061e-16
+ - -7.651420666115506e-18
+ - 5.24846098664896e-17
+ - 1.0356301269163905e-16
+ - -2.3657365519016588e-17
+ - 8.784658105313153e-17
+ - -2.3427822899033126e-16
+ - -1.0285990917096898e-16
+ - -1.648570960818184e-16
+ - -7.643148859989974e-17
+ - 2.266474878395296e-16
+ - 9.496033432108756e-17
+ - 8.12291361527073e-17
+ - -7.601789829362323e-17
+ - -5.1202479917032407e-17
+ - -3.0026656235674905e-17
+ - -1.4579058296247113e-16
+ - -1.7900188455647516e-16
+ - -6.170767369645586e-17
+ - 1.9356026333740845e-17
+ - -2.842192584732203e-16
+ - -1.2490427249550718e-16
+ - -1.9686898578762056e-16
+ - -1.2432524606672006e-16
+ - -2.190374262040417e-16
+ - 1.0458923363908765e-16
+ - -3.180509455266391e-16
+ - -2.460655527192119e-16
+ - 9.905487835322505e-17
+ - 4.384057246531046e-17
+ - 1.1613615800244509e-16
+ - 3.3087224502121103e-18
+ - 1.5695752123193698e-16
+ - -2.7689871005212598e-17
+ - -4.359241828154455e-17
+ - -3.3997123175929433e-16
+ - 4.0928896709123804e-16
+ - -2.067951531382569e-17
+ - 1.8262079973639466e-16
+ - 4.868785085487121e-16
+ - -2.9778502051908996e-17
+ - -1.4608009617686469e-16
+ - -2.3151751369593553e-16
+ - 1.0240495983406481e-16
+ - -1.819797347616661e-17
+ - -1.0240495983406481e-16
+ - -5.32208006116618e-16
+ - 5.3068806174105176e-17
+ - -2.392206331503356e-16
+ - -2.747893994901158e-16
+ - -1.9968139987030086e-16
+ - -6.27002904315195e-17
+ - 9.206520217715197e-17
+ - 5.711682129678656e-17
+ - -4.313746894464039e-17
+ - -4.528813853727826e-17
+ - 2.2003004293910534e-16
+ - 5.190558343770248e-17
+ - -5.0062521635357766e-17
+ - -4.032505486196009e-17
+ - -1.2730309627191096e-16
+ - 6.782881022934827e-17
+ - -5.558653716356346e-17
+ - 3.963849495354108e-16
+ - 8.275942028593041e-17
+ - 3.623051082982261e-17
+ - 9.098986738083304e-19
+ - 1.2242273065784808e-17
+ - -1.8479214884434636e-16
+ - -6.799424635185887e-17
+ - -1.2043749718772083e-15
+ - 5.922613185879678e-17
+- - 5.145290505354718
+ - 4.209085287779495
+ - -2.8050210072971384
+ - 1.8496568029104756
+ - -0.3754158012991095
+ - -1.3840892390539183
+ - 2.5224332770639086
+ - -0.6960622519844469
+ - -0.5497032679645715
+ - -0.4945280069854582
+ - 3.76539467617391
+ - 1.9116960854301486
+ - -2.8543216358599217
+ - 1.9994587569156574
+ - -0.4952029889403582
+ - -0.686876456358078
+ - -0.6790445065301146
+ - 3.32096696412439
+ - 1.8379586823004008
+ - -2.802625127812722
+ - 1.8468450031685932
+ - -0.37304893879676154
+ - -1.3851238063041051
+ - 2.5217974281742763
+ - -2.921407241233095
+ - 1.5542946816114267
+ - 3.0118653946447718
+ - 0.5358681307474898
+ - -0.008531550765665178
+ - -1.4928312160334336
+ - 2.6153665667965327
+ - -2.898884591030817
+ - 1.4917517736681087
+ - 3.154860013299301
+ - 0.8283330415057047
+ - 0.13750425905416339
+ - -1.665883853409453
+ - 2.665384666876233
+ - -2.8794797573746083
+ - 2.0173273336248543
+ - -0.6003805755087485
+ - -1.091169407455075
+ - 3.5060593758792993
+ - 3.3674567769831762
+ - -0.5059313439214185
+ - -0.6846641710441833
+ - -4.664722322312606
+ - -4.771809394808771
+ - 2.058714171667462
+ - -0.655133668105853
+ - -1.0365756223635663
+ - 2.370921585016307
+ - -2.9276476074710605
+ - 2.4586347423965225
+ - -0.9002328848127658
+ - -2.193373794067038
+ - -2.1574331723656655
+ - -0.8793760364829885
+ - 2.440496394413505
+ - -2.927607987109239
+ - 2.3470841512931298
+ - -0.7642330700356014
+ - -1.8303217262453615
+ - -2.170168326973105
+ - -0.9787819136633444
+ - 2.5420321424581687
+ - -2.918114795207973
+ - 2.271620278560946
+ - -0.8776454643016861
+ - -0.8178008830977764
+ - 2.1724039405988105
+ - -1.8614471428070356
+ - -3.1320785615545588
+ - 1.9501668077929215
+ - 1.3464766376098407
+ - -0.7571917739135222
+ - -1.0109602676362348
+ - 2.3017993784404744
+ - -1.9764318819772222
+ - -3.6529310883013606
+ - 1.9896665753725153
+ - 1.283821102262202
+ - -0.5591122808543699
+ - -1.1301403629165065
+ - 2.3733840108328033
+ - -2.928625136323561
+ - 2.4059143979418516
+ - -1.1813927691660289
+ - 0.8048774152516739
+ - 1.1536775778979116
+ - 3.8086119755798076
+ - 3.198419482714004
+ - -1.7621640267562813
+ - 0.1662833766937204
+ - 1.4030653709078456
+ - -2.640320726750872
+ - 2.863006472690001
+ - -2.236731538290295
+ - 0.6888160566190376
+ - 1.8282974712328905
+ - 2.726609759102154
+ - 1.2078717374421195
+ - -2.69117212055624
+ - 2.8452037577885285
+ - -2.098362064231619
+ - 0.48750017482153735
+ - 1.378302132154544
+ - 2.5346778344219745
+ - 1.2174015784888574
+ - -2.7660727670615137
+ - 2.8024301396201956
+ - -2.0103055258198554
+ - 0.39537435510517305
+ - 1.1979736189572598
+ - -2.4837077143006168
+ - 1.8916817639733106
+ - 3.2694996688555156
+ - -1.5095281551956345
+ - -1.1248519685994394
+ - 0.2729183996118659
+ - 1.3810052107261617
+ - -2.5851979128653677
+ - 1.9024706051481814
+ - 3.5923098154518507
+ - -1.4125632886706345
+ - -1.0108806996733677
+ - 0.06842828484845594
+ - 1.4898348350803299
+ - -2.6421861413596517
+ - 2.848472505356626
+ - -2.1719889585628396
+ - 0.7127383541840622
+ - 0.5552061104801388
+ - 0.41530507311962606
+ - -2.0608668750284678
+ - -2.180585943801814
+ - -5.053309533181581
+ - -5.081860456362073
+ - 2.8599379429840113
+ - -2.214207569425569
+ - 0.775226674989569
+ - 0.9275413219281842
+ - -2.315782618012692
+ - 2.8775919517380424
+ - -1.7199419683072679
+ - -3.473703221860801
+ - -0.01732816345503953
+ - 0.2919998248174918
+ - 1.0452586523906018
+ - -2.3907748891219347
+ - 2.888724789781106
+ - -1.642096983365362
+ - -3.124461233450321
+ - -0.2521726895625812
+ - 0.170891648951995
+ - 1.2314694901950387
+ - -2.5040306009086306
+ - 2.886719986202489
+ - -2.358520448894199
+ - 0.9941742465003762
+ - 0.6158302727552555
+ - -1.2992541900559598
+ - -1.8542867094075013
+ - 3.172063122286984
+ - 1.8734152917274163
+ - -2.281553312541124
+ - 0.8015608254883103
+ - 0.8142295561275731
+ - -1.437334369255271
+ - -2.3193065023523123
+ - 3.5243321024291445
+ - 1.9391023013423372
+ - -2.148544048074253
+ - 0.6781078980057657
+ - 0.9316134406445726
+ - -2.3761438541077706
+ - 2.884097938454735
+ - -2.5367677767586954
+ - 3.1035435700644713
+ - 3.918993897752165
+ - -1.1937870600365295e-15
+ - -1.770290587955362e-15
+ - -3.223936437425425e-16
+ - -2.434806133049837e-16
+ - 1.5426918424113966e-17
+ - 6.170767369645586e-17
+ - 2.2420730503249815e-16
+ - 3.0556051827708837e-16
+ - 4.513097422089319e-16
+ - 8.519960309296185e-18
+ - -1.352233506371062e-16
+ - -5.776202217457792e-16
+ - 2.6304343479186277e-17
+ - -1.3454092663174995e-16
+ - -6.30673518283399e-17
+ - 2.2118809579667958e-16
+ - 7.295733002717704e-17
+ - 1.9959868180904555e-16
+ - 3.1383232440261865e-16
+ - 1.530284133223101e-18
+ - -1.7205356741102976e-17
+ - 1.3888362484765335e-16
+ - -4.933098378113118e-17
+ - -1.1692197958437046e-16
+ - -1.3979352352146168e-16
+ - 4.312919713851486e-16
+ - -1.7701665108634792e-17
+ - 4.830734777309681e-17
+ - -3.456787779859102e-16
+ - -3.0076287072428086e-16
+ - 3.1515581338270354e-17
+ - 4.4585035016608186e-17
+ - -5.1855952600949305e-16
+ - -1.9413928976619557e-16
+ - -6.063233890013693e-17
+ - 5.042493014123257e-16
+ - 6.038418471637102e-17
+ - -8.087758439237227e-17
+ - 2.289222345240504e-16
+ - -5.073925877400272e-16
+ - 1.1200025493967995e-16
+ - -3.207806415480641e-16
+ - -3.7090778666877756e-16
+ - -7.767225951872929e-17
+ - -1.0960143116327615e-16
+ - 1.1785255777349262e-16
+ - 9.928235302167713e-17
+ - 2.544407564213113e-16
+ - 1.5187036046473586e-16
+ - -1.0449359088076121e-16
+ - -5.153335216205362e-17
+ - -1.4541835168682227e-16
+ - -5.750973208774925e-17
+ - -4.8141911650586205e-17
+ - 1.7966362904651759e-16
+ - 3.259091613458929e-17
+ - -7.717595115119747e-17
+ - 1.2023070203458257e-16
+ - -1.8363409598677214e-17
+ - 3.010937429693021e-17
+ - -5.542110104105285e-17
+ - 1.0439019330419208e-16
+ - -3.192917164454687e-17
+ - 2.0348643068804478e-17
+ - 1.8131799027162364e-16
+ - 1.67752228225754e-16
+ - 1.7635490659630548e-16
+ - -3.4203918329067694e-17
+ - 5.794400190933959e-17
+ - -1.0008885411891634e-16
+ - 2.1101377426227734e-16
+ - -5.728225741929717e-17
+ - -1.5716431638507526e-17
+ - 5.765448869494603e-17
+ - 2.6205081805679917e-16
+ - 4.350970022028925e-17
+ - -3.9456515218779414e-17
+ - -8.147729033647323e-18
+ - -9.90135193225974e-17
+ - 1.3350695086605867e-16
+ - 1.019913695277883e-16
+ - 9.446402595355575e-17
+ - -8.850832554317396e-18
+ - -1.6609786700064793e-16
+ - 5.939156798130739e-17
+ - 7.775497757998459e-17
+ - 1.9848198798209897e-16
+ - 1.508674039720153e-16
+ - 5.927576269554996e-16
+ - 2.834747959219226e-16
+ - -1.8495758496685696e-16
+ - -2.567568621364598e-16
+ - -3.067185711346626e-16
+ - 6.203854594147708e-17
+ - 1.2043749718772083e-16
+ - -8.83299647235922e-17
+ - 9.326461406535386e-17
+ - 1.0405932105917087e-16
+ - 2.0927669497591598e-16
+ - 1.7697529205572025e-16
+ - -1.152676183592644e-16
+ - -6.617444900424221e-18
+ - -1.8057352772032592e-16
+ - 4.702521782363962e-17
+ - 2.402959679466545e-17
+ - -1.0910512279574434e-16
+ - 6.097355090281505e-17
+ - -6.55230442718567e-17
+ - -3.143286327701505e-17
+ - 5.436644576004774e-17
+ - 2.4484546131569616e-17
+ - -7.758954145747398e-17
+ - -8.106370003019671e-18
+ - -1.464109684218859e-17
+ - 1.390077019395363e-16
+ - 5.517294685728694e-17
+ - 1.166324663699769e-16
+ - 6.203854594147708e-17
+ - -2.597347123416507e-16
+ - -5.817147657779167e-17
+ - -4.020097777007714e-17
+ - 1.3830459841886623e-16
+ - -2.1208910905859627e-16
+ - 2.3161057151484775e-18
+ - -3.842253945308813e-17
+ - 3.034098486844505e-16
+ - 3.2673634195844593e-17
+ - -2.3243775212740075e-17
+ - 2.957997870489627e-16
+ - 1.9951596374779025e-16
+ - 1.2722037821065566e-16
+ - 1.1572256769616857e-16
+ - 2.298734922284864e-16
+ - -3.4576149604716557e-17
+ - 2.9464173419138846e-16
+ - 1.3334151474354806e-16
+ - -4.582580593543773e-17
+ - -2.3491929396505983e-17
+ - -3.2260043889568075e-18
+ - 1.894243602746433e-17
+ - -2.7710550520526424e-17
+ - -1.7572418137923382e-17
+ - 4.0076900678194185e-17
+ - 2.602310207091825e-16
+ - -1.6948930751211535e-16
+ - -1.9025154088719633e-17
+ - -1.8950707833589862e-16
+ - -3.7090778666877756e-16
+ - 6.782881022934827e-17
+ - 9.553936074987468e-17
+ - 7.336058057579664e-17
+ - -5.724089838866952e-17
+ - -6.291742534231466e-18
+ - 4.575342763183934e-17
+ - 1.99309168594652e-16
+ - -9.098986738083303e-17
+ - 1.369190708928399e-16
+ - 1.7594131629002896e-16
+ - 1.3946265127644047e-16
+ - -2.4070955825293102e-17
+ - -9.165161187087545e-17
+ - 7.957477492760125e-17
+ - 2.7669191489898773e-17
+ - 4.8183270681213856e-17
+ - -6.576085869796569e-18
+ - -1.9769616640017358e-17
+ - 8.366931895973874e-17
+ - -2.885826362044375e-17
+ - 1.5759858620666557e-16
+ - -5.6827308082393e-17
+ - 2.27309232329572e-16
+ - -4.1663019502764616e-16
+ - -2.657317717826601e-18
+ - -4.7314731038033177e-17
+ - -1.7246715771730627e-17
+ - 1.6543612251060553e-17
+ - 1.5348336265921426e-16
+ - 8.197359870400503e-17
+ - 1.1070985318409722e-15
+ - 2.919947562312188e-17
+- - -3.3296815472292813
+ - -2.6758015930599974
+ - 1.9719932703899714
+ - -1.9197076826014436
+ - 1.1921801462319237
+ - -0.06644933589546836
+ - -1.0803155943435592
+ - 1.8242609412927169
+ - -0.3239708213479686
+ - -0.9945104301205296
+ - -2.111369042279521
+ - -0.9693213049921403
+ - 1.9348341536885474
+ - -1.962751363418803
+ - 1.2608817395741847
+ - -0.1877270261491693
+ - -0.7069965506967524
+ - -1.937718203249923
+ - -0.9645776693832082
+ - 1.9698707351472946
+ - -1.9179199127807125
+ - 1.1912820327710183
+ - -0.06682754006654665
+ - -1.0788440382094264
+ - 1.8222037652623984
+ - -1.3171995340351859
+ - -2.322007064203154
+ - 0.8032809419886012
+ - 0.6554795496453887
+ - 0.020755151453547078
+ - -1.1970395138874488
+ - 1.8794214652130339
+ - -1.3147422966333246
+ - -2.5297083605223807
+ - 0.7060769700041107
+ - 0.5688074832884494
+ - 0.16252469264145877
+ - -1.2686445151459265
+ - 1.9085305556048124
+ - -1.9684348063237376
+ - 1.317006300788931
+ - -0.29250567425840274
+ - -0.8117777392564071
+ - -0.7110465767091763
+ - 1.273759396846005
+ - 1.3694823801971083
+ - 3.5906526465136626
+ - 3.621547756852626
+ - -1.9794585191134604
+ - 1.3463212882402642
+ - -0.33287858377535395
+ - -0.9034355136486263
+ - 1.726826787781256
+ - -2.04641901538832
+ - 1.124590452356286
+ - 2.3243858899283767
+ - 0.31536193387396944
+ - -0.04484271730238177
+ - -0.9802063899109031
+ - 1.771628263388339
+ - -2.03576780582934
+ - 1.0602134878942278
+ - 2.070529103532742
+ - 0.45332019591944817
+ - 0.039437649642943114
+ - -1.1038595783450011
+ - 1.8346145976531294
+ - -2.025257440643667
+ - 1.4615330006123894
+ - -0.4908256238417894
+ - -0.6946116265157867
+ - 1.016718319071819
+ - 1.5183322227482265
+ - -2.115112307515459
+ - -1.2767284325077248
+ - 1.401194755262598
+ - -0.3504786037105644
+ - -0.8266312964432512
+ - 1.113051766466481
+ - 1.8616588625222414
+ - -2.3249684332213825
+ - -1.3059524900636077
+ - 1.294713417590434
+ - -0.26335316620128857
+ - -0.9061462604350462
+ - 1.7620122663172475
+ - -2.042811828627027
+ - 1.6078785700241287
+ - -1.9133253016894796
+ - -2.4355193793893357
+ - -3.5222110763104473
+ - -2.8930281341543367
+ - 1.8456011986657708
+ - -1.1260982146528657
+ - -0.01103025439662427
+ - 1.1460372326591215
+ - -1.8977928401979836
+ - 1.981392869793805
+ - -1.0624081098676321
+ - -2.258923993550063
+ - -0.7495861700716068
+ - -0.19034003084912515
+ - 1.2170688515988488
+ - -1.9288550093194696
+ - 1.950164233692381
+ - -0.9251372741802859
+ - -1.8810483258673536
+ - -0.8011600475559041
+ - -0.2435078063221944
+ - 1.3267885367401382
+ - -1.9726393975972885
+ - 1.9251508480916444
+ - -1.2572876983569927
+ - 0.14983270415040467
+ - 0.9532597107094515
+ - -1.1354898261103066
+ - -1.773221502589837
+ - 1.939232534325168
+ - 1.2078217565463552
+ - -1.186792838080037
+ - 0.008035624077616996
+ - 1.0768984745279984
+ - -1.1834956791395055
+ - -2.0380877366061982
+ - 2.004808434262214
+ - 1.1698823432273937
+ - -1.068086840691861
+ - -0.08132707236333796
+ - 1.1485188966152928
+ - -1.9230819335145364
+ - 1.9672024616124626
+ - -1.4286736939734066
+ - 1.44175634518811
+ - 1.5120152086959238
+ - 1.9411712164324988
+ - 1.9697683414983658
+ - 2.7352417940727216
+ - 2.7015822085957226
+ - -1.9094442856107487
+ - 1.9779023523705095
+ - -1.460665949354495
+ - 0.3509789192409748
+ - 0.7696608961281366
+ - -1.6969537354801394
+ - 1.3291895814395411
+ - 2.4670017970451887
+ - -1.2321813849403989
+ - -0.8241059991049774
+ - 0.265731457977781
+ - 0.8515132446542731
+ - -1.7724960670179204
+ - 1.3242581906951947
+ - 2.3016023957898875
+ - -0.9868163135880569
+ - -0.7513993021056514
+ - 0.12306898008019493
+ - 0.9777965841631909
+ - -1.8152029988056109
+ - 2.00425287712332
+ - -1.5695126239338326
+ - 0.5713636301896516
+ - 0.3191252383906851
+ - 0.179810557738248
+ - -2.283371513354568
+ - -1.235650352878239
+ - 1.9923782190919797
+ - -1.4730627130034204
+ - 0.43395682986356315
+ - 0.4010738382119999
+ - 0.3783256158064194
+ - -2.6396332744354187
+ - -1.3426784708613202
+ - 1.9629401730670935
+ - -1.410392312711336
+ - 0.3480025279275313
+ - 0.8340969835471922
+ - -1.7345752314109406
+ - 2.020003816496042
+ - -2.873650185955383
+ - -3.5491338143340165
+ - 7.6022034196686e-16
+ - 1.6374867406099734e-15
+ - 2.0948801377302913e-16
+ - 8.478601278668532e-17
+ - -9.117598301865746e-17
+ - -1.5087774372967222e-16
+ - -2.2830184906463564e-16
+ - -1.5180832191879438e-16
+ - -1.8936232172870184e-16
+ - -4.5760536215228465e-17
+ - 9.953050720544304e-17
+ - 3.999004671387612e-16
+ - -6.720842476993349e-19
+ - 6.365154813595548e-17
+ - -5.0830248641383544e-17
+ - -3.456787779859102e-16
+ - -8.511688503170654e-17
+ - 8.737095220091355e-19
+ - -1.314389993346761e-16
+ - 1.3571965900463802e-16
+ - 2.99439381744196e-17
+ - -2.1134464650729854e-17
+ - -1.2176098616780567e-16
+ - 4.748016716054378e-17
+ - 2.148601641106489e-17
+ - -4.378266982243175e-16
+ - 2.0927669497591597e-17
+ - 2.2995621028974166e-17
+ - 4.2732150444489405e-16
+ - 2.952414401354894e-16
+ - -6.129408339017935e-17
+ - 2.225115847767644e-17
+ - 1.5300773380699627e-16
+ - 5.791944498490442e-17
+ - -2.3057659574915643e-17
+ - -3.844735487146472e-16
+ - -1.1034589371457388e-16
+ - 4.053185001509835e-17
+ - -8.139457227521791e-17
+ - 4.511443060864213e-16
+ - -1.0951871310202085e-16
+ - 1.1167972245231565e-16
+ - 3.654483946259276e-16
+ - 2.311969812085712e-17
+ - 1.429213002126778e-17
+ - -1.4988512699460861e-16
+ - -6.344475298281722e-17
+ - -1.6295458067294643e-16
+ - -3.176373552203626e-17
+ - 7.31641251803153e-17
+ - -1.2490427249550716e-17
+ - 2.99439381744196e-17
+ - 1.0943599504076555e-16
+ - -1.431022459716738e-17
+ - -1.555099551599692e-17
+ - -1.6874484496081765e-17
+ - 1.0350097414569757e-17
+ - 4.6652986547990755e-17
+ - 2.580803511165446e-17
+ - 8.205631676526033e-17
+ - 7.878895334567587e-17
+ - 4.6694345578618406e-17
+ - 1.0674765804996821e-16
+ - -5.422168915285096e-17
+ - -2.0464448354561902e-16
+ - -1.5013328117837452e-16
+ - -1.654361225106055e-19
+ - 1.1787323728880643e-17
+ - 3.680953725860973e-18
+ - 8.040195554015428e-17
+ - 1.0753347963189358e-17
+ - 5.872982349126496e-18
+ - 1.1075948402085039e-16
+ - -5.0106465605399645e-17
+ - -1.5062958954590634e-16
+ - -5.397353496908505e-17
+ - 2.39882377640378e-18
+ - 1.225054487191034e-16
+ - 9.690420876058718e-17
+ - -8.644037401179138e-17
+ - -3.6127113253253484e-17
+ - -1.654361225106055e-19
+ - -7.635911029630135e-17
+ - 2.0596797252570386e-17
+ - -5.709614178147274e-17
+ - -7.297800954249087e-17
+ - -5.608284553109528e-17
+ - -3.263227516521694e-17
+ - 8.983181452325879e-17
+ - -2.1175823681357506e-16
+ - -1.7079211697688636e-16
+ - 3.35504456451508e-16
+ - 1.6396787692332389e-16
+ - -9.202384314652432e-17
+ - -8.908735197196107e-17
+ - -5.343586757092558e-17
+ - -1.1005638050018032e-16
+ - -2.3946878733410148e-17
+ - -9.36161658256889e-17
+ - -1.3507859402990942e-16
+ - 1.0029564927205459e-16
+ - -2.2664748783952955e-17
+ - -1.1384073180261042e-17
+ - -6.873353902432814e-17
+ - -7.175791813897515e-17
+ - 1.2407709188295413e-18
+ - -1.923194924185789e-17
+ - 3.610643373793966e-17
+ - 7.097209655704977e-17
+ - -1.1663246636997689e-17
+ - -3.9048094791331357e-17
+ - 1.2424252800546476e-16
+ - 9.859992901632089e-17
+ - -5.1409275070170664e-17
+ - -5.235019301694973e-17
+ - -2.2302857265961006e-17
+ - -6.344475298281722e-17
+ - -2.1837568171399928e-17
+ - 1.9438744394996148e-16
+ - -2.8951321439355965e-18
+ - 3.1515581338270354e-17
+ - -1.943874439499615e-18
+ - 1.348304398461435e-16
+ - -1.8146274687882045e-17
+ - 9.45881030454387e-17
+ - 5.70754622661589e-18
+ - -3.265295468053077e-17
+ - 5.430440721410626e-17
+ - -1.4740358515694953e-16
+ - -8.87151206963122e-17
+ - 1.4889251025954498e-17
+ - -3.6023715676684355e-17
+ - 4.9382682569415746e-17
+ - -7.378451063973007e-17
+ - -9.485693674451844e-17
+ - -2.5497842381947075e-17
+ - -6.59262948204763e-17
+ - 1.2126467780027386e-16
+ - -5.1347236524229187e-17
+ - 3.21980053436266e-17
+ - -1.1464723289984964e-16
+ - 1.225054487191034e-16
+ - -1.8363409598677214e-17
+ - -7.856147867722379e-17
+ - -1.8363409598677214e-17
+ - -2.576667608102681e-17
+ - 6.692925131319685e-17
+ - 1.299914332627083e-16
+ - -7.0351711097635e-17
+ - 3.5155176033503676e-17
+ - 1.9976411793155616e-16
+ - 2.776845316340514e-16
+ - 8.867376166568455e-17
+ - -2.6366382025127754e-17
+ - -7.593518023236793e-17
+ - 3.490702184973777e-17
+ - 6.609173094298691e-17
+ - -6.822172102031096e-17
+ - -1.3259705219225034e-16
+ - 8.974909646200349e-17
+ - 1.522012327097571e-17
+ - -9.89308012613421e-17
+ - 2.0844951436336294e-17
+ - -4.68313473675725e-17
+ - -1.617965278153722e-16
+ - 4.549493369041652e-18
+ - -1.4847116513502578e-16
+ - 4.632211430296955e-18
+ - -1.9024120112953943e-16
+ - 1.1948623948328485e-16
+ - -5.81921560931055e-17
+ - 2.1905681324964842e-16
+ - -1.2387029672981588e-17
+ - 6.667075737177403e-17
+ - -2.3864160672154845e-17
+ - -1.419028340834719e-16
+ - -1.4893386929017263e-16
+ - -8.62956174045946e-17
+ - -7.45868758339065e-16
+ - -1.5395899151143225e-16
+- - 4.978004536454041
+ - 3.8521997030084187
+ - -3.5424045355333504
+ - 4.9906451945434736
+ - -4.822764705249744
+ - 2.959076593526024
+ - -0.19925964170998772
+ - -2.6290488773303533
+ - 3.05282241369145
+ - 5.544424771084937
+ - 2.15250908278934
+ - 0.6226278173049469
+ - -3.268959781406413
+ - 4.893587030969826
+ - -4.893339679834313
+ - 2.2321629894292574
+ - 4.595687270409792
+ - 2.2446241629179546
+ - 0.7481796030745479
+ - -3.5375889446211346
+ - 4.988130030525153
+ - -4.823331255866931
+ - 2.9627435947774217
+ - -0.20463721218625153
+ - -2.6237282860616755
+ - 2.930471233650707
+ - 4.622826244418904
+ - -4.7509331666430015
+ - -2.986270399012299
+ - 2.7814545574443086
+ - 0.1548543107118846
+ - -2.9260219448226183
+ - 3.0441627367544077
+ - 5.288914751391878
+ - -4.889765741342913
+ - -2.880871016075938
+ - 2.4727217842676588
+ - 0.37818774481922146
+ - -3.103042320238494
+ - 4.8792401011344015
+ - -4.94542510890192
+ - 3.409591471264593
+ - -3.2840478994091433
+ - -3.46871211582304
+ - -4.825620973810296
+ - -4.9071900092222345
+ - -7.1342596294811225
+ - -7.061766567225614
+ - 4.847109846668434
+ - -4.970403076956689
+ - 3.4855195259885168
+ - -0.7068310305059089
+ - -2.1744042870348212
+ - 4.355057122891887
+ - -3.3544816457382565
+ - -6.268771353559358
+ - 2.8645294356783717
+ - 1.9620174294099177
+ - -0.4891896250348181
+ - -2.374897637690859
+ - 4.533902050836646
+ - -3.331164664622649
+ - -5.830794505906271
+ - 2.2578523080840163
+ - 1.7744107162951483
+ - -0.13028036713911836
+ - -2.6873384038429196
+ - 4.631600324580792
+ - -5.0536232979145135
+ - 3.77204597870533
+ - -1.267052364632497
+ - -0.9401915504871131
+ - -0.7004419193042976
+ - 5.795587309735358
+ - 3.1601554887544046
+ - -5.0129056306198585
+ - 3.519705205108637
+ - -0.9157807918278553
+ - -1.1518757339973729
+ - -1.233082337198472
+ - 6.678143376803319
+ - 3.419185743866063
+ - -4.925554749023111
+ - 3.353734564623982
+ - -0.6993003380129945
+ - -2.3334763785038395
+ - 4.443542608632307
+ - -5.1173734889076545
+ - 7.158720728268956
+ - 8.85453288580854
+ - 8.530275548214194
+ - 6.866411988697344
+ - -5.046456392288317
+ - 4.717026522184071
+ - -2.8624031484290007
+ - -0.087091661537931
+ - 2.866128332392405
+ - -4.720699676500881
+ - 3.491840517043576
+ - 6.69785332756946
+ - -2.012081144849932
+ - -1.540691205388327
+ - -0.30610762124540036
+ - 3.048828325066471
+ - -4.849136426694222
+ - 3.26504329655041
+ - 5.865426262890744
+ - -1.3923907695558548
+ - -1.3161298937815382
+ - -0.6640376509528909
+ - 3.329981505778292
+ - -4.91531211298255
+ - 4.86071565319398
+ - -3.189944948372605
+ - 0.4833872454599941
+ - 1.42391400286345
+ - 1.5936278229293976
+ - -5.869973716288219
+ - -3.287131239304729
+ - 4.7871876541635485
+ - -2.901006780402442
+ - 0.12447250053237216
+ - 1.6223390162293592
+ - 2.162424280182925
+ - -6.364133268839272
+ - -3.34097188664426
+ - 4.646934235842434
+ - -2.713806321982476
+ - -0.09470314146100337
+ - 3.0111164805536568
+ - -4.785181785396265
+ - 5.011463443499812
+ - -7.712186900496258
+ - -7.754531689655499
+ - -4.737983223915651
+ - -4.619683691387655
+ - -2.4381123459696363
+ - -2.233130247933667
+ - 2.92680978486881
+ - -4.749877034502039
+ - 5.03380074236795
+ - -3.571213363827315
+ - 0.9890162294570047
+ - 1.9168704499824996
+ - -2.6545068876229085
+ - -4.364612272106044
+ - 5.680306282271972
+ - 3.1926650046396094
+ - -3.410912527509403
+ - 0.7686375805392542
+ - 2.2455935939891725
+ - -2.787401073267734
+ - -4.3043915282620855
+ - 5.025152793123191
+ - 3.101433962727333
+ - -3.134064888230606
+ - 0.41139529183512374
+ - 2.440414765358932
+ - -4.582166986818576
+ - 5.094993892506281
+ - -3.958321953711688
+ - 1.1331208212753427
+ - 2.8801295607034043
+ - 4.125685669403217
+ - 1.9193320353868903
+ - -4.6766208584324005
+ - 5.042730050273794
+ - -3.720227132342263
+ - 1.0334774061354544
+ - 2.8994744850461602
+ - 5.054291027346469
+ - 2.2784862915639637
+ - -4.812311304182118
+ - 4.997369781482115
+ - -3.565739399537976
+ - 0.8145254682284678
+ - 2.076000517723718
+ - -4.29822952390877
+ - 6.967140350844759
+ - 8.433130660490747
+ - -8.371067799036639e-17
+ - -1.130259588992457e-15
+ - -2.6767564622215976e-16
+ - 3.7119729988317117e-17
+ - 5.0757870337785155e-17
+ - 4.896909226313923e-17
+ - 3.1912628032295803e-16
+ - 3.185472538941709e-16
+ - -1.406207041340147e-17
+ - 2.359119107001235e-16
+ - -4.17726209339279e-18
+ - -4.842883992556554e-16
+ - 9.988205896577808e-17
+ - -2.4989126305226966e-16
+ - 2.9116757561866574e-17
+ - 2.914958629242727e-16
+ - 2.4401828070314313e-17
+ - -2.3905519702782497e-17
+ - 2.43563331366239e-16
+ - -1.207270104021144e-16
+ - 7.444625512977249e-17
+ - 7.974021105011186e-17
+ - 5.111976185577711e-16
+ - 4.3199507490581864e-17
+ - 1.0075059860895876e-16
+ - 7.497565072180642e-16
+ - -1.3284520637601624e-16
+ - -8.238718901028154e-17
+ - -5.063172529437082e-16
+ - -3.0842463114805323e-16
+ - 3.7984133728435026e-16
+ - -2.163077301826167e-17
+ - 2.4732700315335524e-17
+ - -1.7494869955496535e-17
+ - 1.381184827810418e-16
+ - 3.6065074707312e-16
+ - 1.9769127924909356e-16
+ - -9.256151054468378e-17
+ - -2.9116757561866574e-17
+ - -6.438567092959628e-16
+ - 3.7322389238392604e-16
+ - 2.1713491079516973e-17
+ - -4.1822251770681074e-16
+ - 5.591740940858467e-17
+ - 3.523789409475898e-17
+ - 1.3698110943878138e-16
+ - 1.6378176128549945e-16
+ - -1.0836066024444661e-17
+ - -2.862044919433476e-16
+ - 1.9686898578762056e-17
+ - 2.754511439801582e-16
+ - 5.4759356551010426e-17
+ - -1.9550413777690807e-16
+ - -1.3019822841584656e-16
+ - -4.480010197587198e-16
+ - -1.0132962503774587e-17
+ - -2.50801161726078e-16
+ - 2.3001824883568317e-16
+ - -2.0944213109842658e-16
+ - -3.8885760596117826e-16
+ - -1.3003279229333595e-16
+ - -1.3681567331627078e-16
+ - -2.6701390173211733e-16
+ - 1.1233112718470116e-16
+ - 2.7483075852074344e-16
+ - 2.476578753983765e-16
+ - -3.3434640359393374e-16
+ - 6.935909436257137e-17
+ - -1.0587911840678753e-17
+ - 1.5302841332231012e-17
+ - -8.222175288777094e-17
+ - 1.3350695086605867e-16
+ - -1.8470943078309106e-16
+ - 7.17165591083475e-17
+ - -9.926167350636331e-17
+ - -2.3781442610899543e-17
+ - -8.39588321741323e-17
+ - -3.0539508215457777e-16
+ - 2.69660879692287e-17
+ - 5.245359059351886e-17
+ - 1.8677738231447362e-16
+ - 2.785117122466044e-16
+ - 6.476824196290207e-17
+ - 1.4789989352448135e-16
+ - 4.2806596699619176e-17
+ - 7.634877053864444e-17
+ - -1.5096046179092753e-18
+ - -4.135903062765138e-17
+ - -8.566282423599154e-16
+ - -1.5418646617988433e-16
+ - 2.649045911701071e-16
+ - -1.1276126110322873e-15
+ - -4.2500539872974557e-16
+ - 1.406207041340147e-17
+ - -2.4815418376590826e-18
+ - 7.494256349730431e-17
+ - 4.294721740375319e-16
+ - -3.29217883796105e-17
+ - 3.752091258540533e-16
+ - 2.0514079191315084e-16
+ - -8.189088064274973e-17
+ - 4.307543039869891e-16
+ - 9.876536513883149e-17
+ - 2.2929446579969927e-16
+ - 1.7354249251362518e-16
+ - -5.872982349126496e-17
+ - -2.831025646462737e-17
+ - 4.4729791623804965e-17
+ - 6.253485430900889e-17
+ - 2.0514079191315083e-17
+ - 2.0835645654445073e-16
+ - -2.3194144375986896e-16
+ - -2.7983520122668926e-16
+ - 1.710609506759661e-16
+ - -1.255660169855496e-16
+ - -1.4574922393184348e-16
+ - -4.394397004187959e-17
+ - -6.038418471637101e-18
+ - -4.8803656140628627e-17
+ - 1.7635490659630548e-16
+ - 6.915229920943311e-17
+ - -5.012714512071347e-17
+ - -1.1818343001851383e-16
+ - 6.104592920641344e-17
+ - -4.585889315993985e-16
+ - -2.602310207091825e-16
+ - -1.316044354571867e-16
+ - -4.4915907261629397e-17
+ - 1.0273583207908602e-16
+ - 1.3833561769183697e-16
+ - -1.2018934300395492e-16
+ - -3.370760996153588e-17
+ - 2.5585730322030837e-16
+ - 1.435985543392056e-16
+ - -1.0430747524293678e-16
+ - -7.411538288475128e-17
+ - 2.074362181129855e-16
+ - 5.811770983797572e-16
+ - 3.394749233917625e-16
+ - -4.2517083485225616e-17
+ - 5.7538683409188605e-16
+ - -2.379385032008784e-16
+ - -9.694556779121483e-17
+ - -1.9356026333740845e-16
+ - 4.516406144539531e-16
+ - 7.349499742533651e-17
+ - -7.047578818951796e-17
+ - 4.268251960773622e-17
+ - 1.981924747677054e-16
+ - -2.0844951436336295e-16
+ - -5.227781471335135e-16
+ - -4.999479622270499e-16
+ - -1.495542547495874e-16
+ - -5.062345348824529e-17
+ - -1.842544814461869e-16
+ - 3.6354587921705566e-17
+ - -3.2872157542857315e-16
+ - -2.7669191489898776e-16
+ - 2.481541837659083e-16
+ - -2.1771393722395686e-16
+ - 2.808278179617529e-17
+ - 1.5162220628096995e-16
+ - -1.0244631886469247e-16
+ - 3.647866501358852e-17
+ - 3.5237894094758974e-16
+ - 4.359241828154455e-17
+ - 2.3508473008757047e-16
+ - -1.593149859777131e-16
+ - 4.01348033210729e-16
+ - -4.496217767714409e-16
+ - 2.456726419282492e-16
+ - -4.0300239443583503e-16
+ - 2.63374307036884e-16
+ - -1.9008610476468574e-16
+ - 6.352747104407253e-17
+ - 2.2259430283801975e-16
+ - 1.0273583207908602e-16
+ - 9.446402595355575e-17
+ - 2.873625448009218e-16
+ - 6.160841202294949e-16
+- - 4.095758353864241
+ - 3.197223046467971
+ - -2.807517245199776
+ - 3.7050945625874867
+ - -3.403100901231036
+ - 1.895239639566668
+ - 0.1715049500409805
+ - -2.185648496834549
+ - 2.3298571987938748
+ - 4.088353216445262
+ - 1.958961616059916
+ - 0.6669891971620939
+ - -2.6231384416388766
+ - 3.6556312501041135
+ - -3.466997697710376
+ - 1.471291068016038
+ - 3.118851106052621
+ - 1.968916015314369
+ - 0.7454619359946986
+ - -2.8038652466186647
+ - 3.7029956453430413
+ - -3.403206274500216
+ - 1.8976718031137976
+ - 0.16767966938073822
+ - -2.1816946702490596
+ - 2.231198616861821
+ - 3.5880343408943847
+ - -3.2444717662809266
+ - -2.081494973515813
+ - 1.7581188411298077
+ - 0.42942919911342137
+ - -2.389661728603573
+ - 2.3027734523148644
+ - 4.069520842876966
+ - -3.3055135958814015
+ - -1.9902500634281504
+ - 1.522034912443028
+ - 0.5912349288836604
+ - -2.510503931861451
+ - 3.6479271580533124
+ - -3.5159968213065294
+ - 2.244840370411948
+ - -1.8601771137714413
+ - -2.0057362985701657
+ - -3.4236002230154416
+ - -3.502231825775838
+ - -5.539310205396246
+ - -5.501880041115309
+ - 3.630590140785192
+ - -3.540076125260417
+ - 2.304397765416078
+ - -0.200594174836152
+ - -1.8694211866254318
+ - 3.336580090316934
+ - -2.4468027368245764
+ - -4.634863580041715
+ - 1.7324403386592244
+ - 1.2596034639790668
+ - -0.04059590606748528
+ - -2.0092092250102276
+ - 3.447455009906011
+ - -2.4139671893622787
+ - -4.2854477228348165
+ - 1.308231883300094
+ - 1.1167761647024013
+ - 0.2219469224283738
+ - -2.2256040442499376
+ - 3.506428010562811
+ - -3.6252046499443593
+ - 2.530706374442386
+ - -0.6151049310257195
+ - -0.8820967301726368
+ - -0.8700815340881018
+ - 4.275542871243687
+ - 2.3658604055528554
+ - -3.5822578418272624
+ - 2.3312268303393457
+ - -0.35471161544516333
+ - -1.0435997888592612
+ - -1.3047006045980136
+ - 4.895217748781947
+ - 2.538677065445358
+ - -3.497122215058286
+ - 2.2011727594265853
+ - -0.19504858338167683
+ - -1.980367271947683
+ - 3.39180593833427
+ - -3.706676286675567
+ - 5.0854778715495295
+ - 6.309457845318802
+ - 6.407453334014666
+ - 5.1738403803104775
+ - -3.7281237038724853
+ - 3.3091057545404534
+ - -1.8203992558912576
+ - -0.38019630324578113
+ - 2.348620746945465
+ - -3.5590714933538234
+ - 2.5167047420278585
+ - 4.88926353028144
+ - -1.0691216692577417
+ - -0.9260000432276094
+ - -0.5390968110247534
+ - 2.4736192876570495
+ - -3.631785267716797
+ - 2.334140334287871
+ - 4.254433079794314
+ - -0.6608153981896909
+ - -0.7683913389199156
+ - -0.7974816425541817
+ - 2.66439008142995
+ - -3.667029367581565
+ - 3.4371502126807427
+ - -2.073604203568615
+ - 0.036345945284354586
+ - 1.2227831857255749
+ - 1.5091091197704924
+ - -4.273608287644265
+ - -2.4272850586770693
+ - 3.3708714731896747
+ - -1.8500943988512908
+ - -0.22619602017065646
+ - 1.3623359679502094
+ - 1.944754269288691
+ - -4.606045883926582
+ - -2.450889940866058
+ - 3.2483267306105343
+ - -1.706285628612514
+ - -0.3857280593014634
+ - 2.4478582287501935
+ - -3.596091778449417
+ - 3.580902190331606
+ - -5.305198712645447
+ - -5.351765362093184
+ - -3.5531735608771413
+ - -3.4856022161451334
+ - -2.3150605653169625
+ - -2.1755928125220665
+ - 2.3904970208992884
+ - -3.5766468705566297
+ - 3.604074576713713
+ - -2.3722196755483846
+ - 0.40909399168977484
+ - 1.6890785339589598
+ - -2.0591523793708117
+ - -3.464490645364458
+ - 3.9551970261523115
+ - 2.259865189909847
+ - -2.246295681914373
+ - 0.24629913886523538
+ - 1.9193358026542247
+ - -2.142239365144924
+ - -3.379929306792983
+ - 3.4701220549443903
+ - 2.181532949529173
+ - -2.030591799280351
+ - -0.016284337933342666
+ - 2.054932022527332
+ - -3.477417680371079
+ - 3.673422120363195
+ - -2.6799353960775942
+ - 0.630908974772302
+ - 1.7802896863836772
+ - 3.2612392949147333
+ - 1.5656986648668623
+ - -3.5339473992674995
+ - 3.6133953165386896
+ - -2.489969852270212
+ - 0.5446444392439383
+ - 1.737035564992186
+ - 3.9511520939039495
+ - 1.8239261287352104
+ - -3.6121360946995815
+ - 3.5668446005243895
+ - -2.367907545439785
+ - 0.2801628508637921
+ - 1.8007422505233048
+ - -3.3013544281552867
+ - 5.232439945699639
+ - 6.353240993505808
+ - -1.8429584047681454e-16
+ - -9.787201007727423e-16
+ - -2.2991485125911404e-16
+ - 2.1093105620102206e-18
+ - 4.2837615972589915e-17
+ - 3.821574429994987e-17
+ - 2.547716286663325e-16
+ - 2.5841122336156585e-16
+ - 3.8050308177439267e-17
+ - 1.6163109169286158e-16
+ - -2.518764965223969e-17
+ - -4.072416950751693e-16
+ - 6.526455033043388e-17
+ - -1.94801034256238e-16
+ - 1.9438744394996147e-17
+ - 2.382693754458996e-16
+ - 2.2706107814580607e-17
+ - 1.8906246875665136e-17
+ - 1.982648530713038e-16
+ - -6.29484446152854e-17
+ - 3.838118042246048e-17
+ - 6.311388073779601e-17
+ - 3.4741585727227157e-16
+ - 2.1982324778596707e-17
+ - 7.146840492458159e-17
+ - 6.018566136935829e-16
+ - -8.867376166568455e-17
+ - -5.1781506345819526e-17
+ - -3.9167002004385855e-16
+ - -2.4294294590682423e-16
+ - 2.628779986693522e-16
+ - -1.377255719900791e-17
+ - -4.293067379150213e-17
+ - -2.787598664303703e-17
+ - 9.60356691174065e-17
+ - 3.123433993000232e-16
+ - 1.5380389514657856e-16
+ - -7.039307012826266e-17
+ - -1.819797347616661e-18
+ - -4.971458879020265e-16
+ - 2.7098436867237187e-16
+ - -2.3864160672154845e-17
+ - -3.3227845206255117e-16
+ - 2.6304343479186277e-17
+ - 2.134125980386811e-17
+ - 1.0257039595657542e-16
+ - 1.3019822841584656e-16
+ - 2.2912902967718864e-17
+ - -2.0042586242159858e-16
+ - 2.150669592637872e-18
+ - 1.833032237417509e-16
+ - 2.1837568171399928e-17
+ - -1.354986466847215e-16
+ - -9.769003034251256e-17
+ - -2.9166388398619756e-16
+ - 5.666187195988239e-18
+ - -1.936016223680361e-16
+ - 2.01087606911641e-16
+ - -1.5964585822273432e-16
+ - -2.8264761530936956e-16
+ - -1.048865016717239e-16
+ - -8.883919778819516e-17
+ - -1.890934880296221e-16
+ - 7.990564717262246e-17
+ - 2.2813641294212503e-16
+ - 1.967449086957376e-16
+ - -2.235869195730834e-16
+ - 4.754220570648526e-17
+ - 9.59529510561512e-18
+ - 6.948317145445432e-18
+ - -4.946540063067105e-17
+ - 7.709323308994217e-17
+ - -1.256487350468049e-16
+ - 6.112864726766875e-17
+ - -5.426304818347861e-17
+ - -5.4904113158207204e-18
+ - -6.621580803486987e-17
+ - -2.0265925007549176e-16
+ - 2.3657365519016588e-17
+ - 4.516535391510242e-17
+ - 1.3913177903141925e-16
+ - 2.1167551875231976e-16
+ - 3.498973991099307e-17
+ - 8.577862952174896e-17
+ - 4.006656092053727e-17
+ - 6.55954225754551e-17
+ - 2.3404041456422224e-17
+ - -1.141509245323178e-17
+ - -5.346895479542771e-16
+ - -9.959254575138452e-17
+ - 1.7333181995136558e-16
+ - -8.476946917443427e-16
+ - -3.393094872692519e-16
+ - 1.0091603473146936e-17
+ - 6.865599084190129e-18
+ - 4.863822001811802e-17
+ - 3.326093243075724e-16
+ - -3.639594695233322e-18
+ - 2.8008335541045517e-16
+ - 1.5799149699762826e-16
+ - -6.815968247436948e-17
+ - 3.010523839386744e-16
+ - 3.9787387463800625e-17
+ - 1.7834014006643274e-16
+ - 1.3387918214170753e-16
+ - -3.821574429994987e-17
+ - -1.2190574277500244e-17
+ - 2.3471249881192157e-17
+ - 4.015961873944949e-17
+ - 1.522012327097571e-17
+ - 1.4807566940464887e-16
+ - -1.7668577884132669e-16
+ - -2.013357610954069e-16
+ - 1.1539169545114736e-16
+ - -7.130296880207099e-17
+ - -9.578751493364059e-17
+ - -1.565439309256605e-17
+ - 4.4667753077863494e-18
+ - -4.417144471033167e-17
+ - 1.1762508310504054e-16
+ - 4.510202289945383e-17
+ - -2.2956846937760743e-17
+ - -7.947137735103212e-17
+ - 4.648755042548015e-17
+ - -3.2342761950823377e-16
+ - -1.5471896369921535e-16
+ - -9.582887396426824e-17
+ - -2.961306592939839e-17
+ - 1.0538281003925571e-16
+ - 1.1605343994118978e-16
+ - -6.452008777913616e-17
+ - -1.2449068218923065e-17
+ - 2.489606848631475e-16
+ - 8.362795992911109e-17
+ - -3.9787387463800625e-17
+ - -2.91374370771804e-17
+ - 1.3778761053602058e-16
+ - 4.493245087388046e-16
+ - 2.4120586662046287e-16
+ - -3.077111878697263e-17
+ - 4.0581480851851533e-16
+ - -1.6423671062240362e-16
+ - -6.973132563822023e-17
+ - -1.01908651466533e-16
+ - 2.934836813338142e-16
+ - 5.211237859084074e-17
+ - -7.775497757998459e-17
+ - -1.6874484496081765e-17
+ - 1.5071230760716162e-16
+ - -1.348304398461435e-16
+ - -3.4667139472097385e-16
+ - -3.603198748280988e-16
+ - -1.0075059860895876e-16
+ - -2.5063572560356735e-17
+ - -8.610950176677017e-17
+ - 2.2799165633492822e-17
+ - -2.0811864211834174e-16
+ - -1.8768728098828195e-16
+ - 2.0348643068804478e-16
+ - -1.492233825045662e-16
+ - 5.4800715581638076e-18
+ - 9.390567904008245e-17
+ - -6.927637630131607e-17
+ - 3.149490182295653e-17
+ - 2.2896359355467806e-16
+ - 2.7379678275505213e-17
+ - 1.6940658945086004e-16
+ - -1.1994118882018901e-16
+ - 3.0142461521432324e-16
+ - -3.368796442198774e-16
+ - 1.9852334701272662e-16
+ - -3.394749233917625e-16
+ - 1.9372569945991906e-16
+ - -1.3921449709267456e-16
+ - 4.408872664907637e-17
+ - 1.5197375804130498e-16
+ - 8.486873084794063e-17
+ - 6.8573272780646e-17
+ - 3.098618574623641e-16
+ - 4.681842267050137e-16
+- - 4.476115531749718
+ - 3.7806560999403374
+ - -1.962578981218122
+ - -0.09237626141886718
+ - 2.114602335861608
+ - -3.498842844365732
+ - 3.6514434552795656
+ - -2.6214221159071944
+ - 0.6676875869932525
+ - 1.9592675641398836
+ - 4.081648251992188
+ - 2.3265321530569647
+ - -2.1803924229026217
+ - 0.16747046473866603
+ - 1.9845707848462082
+ - -2.1639847050700984
+ - -3.4311973544350605
+ - 3.4126899036881286
+ - 2.15591308235315
+ - -1.9618065083828673
+ - -0.0949571901961765
+ - 2.118195262363059
+ - -3.502236520763178
+ - 3.653450907809681
+ - -2.6214785712040816
+ - 0.580610603665714
+ - 1.6959924672976687
+ - 3.3157102499311017
+ - 1.6030054126980953
+ - -3.5555530157213306
+ - 3.5881032962651664
+ - -2.427932418291695
+ - 0.43199430513317194
+ - 1.5349716747284392
+ - 3.7982290684487534
+ - 1.7494568275835958
+ - -3.6283838437022706
+ - 3.538307545811078
+ - -2.303854327051828
+ - 0.20137289261280056
+ - 1.8675556541424212
+ - -3.3343652508078336
+ - 6.660324697553292
+ - 6.567090883772829
+ - 1.9047559253540993
+ - 1.6998711257907761
+ - -2.640359119087257
+ - -2.82879629476656
+ - 0.2763955491793835
+ - 1.804796664248607
+ - -3.299369893122286
+ - 3.714806524338051
+ - -2.8731187331906165
+ - 1.0996270759421256
+ - 0.5598756860182214
+ - 0.3343925679919187
+ - -4.5546137784426755
+ - -2.28607546620022
+ - 3.6927294869270755
+ - -2.7659446662885894
+ - 0.8462156806962099
+ - 0.7367269603017879
+ - 0.6032988128359967
+ - -4.244280481928289
+ - -2.32310576736213
+ - 3.6413878558813906
+ - -2.582446650733492
+ - 0.6895659225337569
+ - 1.5397622465017289
+ - -3.1494932431310994
+ - 3.741181491199234
+ - -2.084796573504049
+ - -3.9845800035031855
+ - -0.4172772394644118
+ - 0.1668898205417733
+ - 1.684247405535706
+ - -3.283428239544366
+ - 3.730184579193328
+ - -2.130516913790732
+ - -4.422159321418596
+ - -0.8395040691819291
+ - -0.060466800132685586
+ - 1.9142589902677867
+ - -3.358405413880007
+ - 3.71414473491851
+ - -2.7885108671932866
+ - 0.978412724241862
+ - 1.151069694930198
+ - -2.749944925829565
+ - -3.181097412431018
+ - 0.6928986276640998
+ - 0.7426185907463189
+ - 0.30362330010285593
+ - -2.289564060247991
+ - 3.5321381312937827
+ - -3.6016314033252295
+ - 2.4681964390638185
+ - -0.5336651075235936
+ - -0.9286720172274261
+ - -1.0749566952575493
+ - 4.8866066489542535
+ - 2.515889652749293
+ - -3.555341720949822
+ - 2.3433055526756363
+ - -0.27275124130607464
+ - -1.0864894865876278
+ - -1.2517052246071325
+ - 4.284109501172478
+ - 2.4077310726917576
+ - -3.464837141948796
+ - 2.1329941622898616
+ - -0.11297744153654911
+ - -2.0481669524919472
+ - 3.4235830693279237
+ - -3.6919615647184476
+ - 1.8653505525285692
+ - 3.693056253439126
+ - 1.0713723715378143
+ - 0.21052472544408368
+ - -2.18030034265939
+ - 3.5210211322686433
+ - -3.6405640876459784
+ - 1.7730718152629303
+ - 3.835163950437453
+ - 1.4736866107513464
+ - 0.39841934410804086
+ - -2.3880348317030036
+ - 3.572702168249478
+ - -3.6001278270220376
+ - 2.3695201913223474
+ - -0.40855623175175115
+ - -1.6873980894354752
+ - 4.94328587760461
+ - 4.771238734707816
+ - -0.31947800070949345
+ - -0.5529666854055225
+ - -5.721465387003974
+ - -5.870422905734326
+ - 2.4307909448877174
+ - -0.486456507009844
+ - -1.6125819738917877
+ - 3.2529759482910463
+ - -3.7314080138172545
+ - 3.001823190623677
+ - -0.9606191099345204
+ - -2.479031430609853
+ - -3.0958920954465583
+ - -1.3197075982420508
+ - 3.328984809718331
+ - -3.71801310992564
+ - 2.838272320765406
+ - -0.7803082847626314
+ - -2.0250662960927444
+ - -3.0687615570776283
+ - -1.4390872757227184
+ - 3.4399858081685966
+ - -3.6812980655071654
+ - 2.7314320281867985
+ - -0.7782477604488207
+ - -1.3406109839470048
+ - 3.0280574097535697
+ - -2.4227840677170027
+ - -4.14073971836838
+ - 2.1880461381041907
+ - 1.5719932318119918
+ - -0.621253076566064
+ - -1.5819952667362278
+ - 3.174401782810425
+ - -2.5612680276935547
+ - -4.799040567257934
+ - 2.176651345526776
+ - 1.4692897912604865
+ - -0.36126697990202705
+ - -1.7281581347211261
+ - 3.2556944056811976
+ - -3.7211906914608486
+ - 2.9249133067143207
+ - -1.1801317335868626
+ - 0.5559808134083928
+ - 0.8992269200935019
+ - -1.8986483395082782e-15
+ - -2.4765787539837645e-15
+ - -3.6345799127697185e-16
+ - -4.0961983933625926e-16
+ - 6.8573272780646e-17
+ - 1.4636960939125825e-16
+ - 2.2565487110446595e-16
+ - 1.727566709316998e-16
+ - 6.731595824956538e-16
+ - -1.4022779334305202e-16
+ - -2.2143624998044548e-16
+ - -6.101284198191131e-16
+ - -9.041084095204591e-17
+ - -7.320548421094295e-18
+ - -4.078000419886426e-17
+ - 3.117643728712361e-16
+ - 1.533592855673313e-16
+ - 2.8471556684075213e-16
+ - 1.9968139987030086e-16
+ - -4.061456807635365e-17
+ - -1.2705494208814505e-16
+ - 8.677124625681259e-17
+ - -3.545296105402276e-16
+ - -1.979443205839395e-16
+ - -2.377006887747694e-16
+ - 2.0530622803566144e-16
+ - 1.1030453468394623e-16
+ - 9.054525780158578e-17
+ - -3.544468924789723e-16
+ - -3.3289883752196594e-16
+ - -2.072914615057887e-16
+ - 3.8008949146811615e-17
+ - -7.230385734326014e-16
+ - -1.816902215472725e-16
+ - -5.782250975687086e-17
+ - 5.336969312192135e-16
+ - 8.668852819555729e-17
+ - -3.7512640779279805e-17
+ - 3.366625093090822e-16
+ - -4.324500242427228e-16
+ - 4.963083675318166e-19
+ - -4.582580593543773e-16
+ - -2.843846945957309e-16
+ - -1.589841137326919e-16
+ - -1.5981129434524492e-16
+ - 5.2608686958372554e-17
+ - 6.493367808541267e-17
+ - 3.2921788379610497e-16
+ - 3.4377626257703825e-16
+ - -1.8065624578158122e-16
+ - -2.9067126725113392e-16
+ - -2.0522350997440614e-16
+ - 8.644037401179139e-18
+ - 1.2242273065784808e-17
+ - 5.604975830659316e-16
+ - 9.479489819857696e-17
+ - 3.93634573998672e-17
+ - 1.1022181662269092e-17
+ - 9.562207881112999e-17
+ - 1.197757526976784e-16
+ - -9.024540482953531e-17
+ - 1.8239332506794258e-16
+ - 9.90962373838527e-17
+ - -2.812414082680294e-17
+ - 1.6973746169588125e-16
+ - 2.0332099456553418e-16
+ - 3.3153398951125344e-16
+ - -6.070471720373532e-17
+ - 9.198248411589667e-17
+ - -1.859502017019206e-16
+ - 1.6580835378625437e-16
+ - -2.621748951486821e-16
+ - 8.288349737781336e-17
+ - 9.562207881112999e-17
+ - 3.2921788379610497e-16
+ - 1.2819231543040546e-16
+ - -8.561319339923836e-18
+ - 1.419855521447272e-16
+ - -2.018941080088802e-16
+ - 1.463282503606306e-16
+ - -1.6233419521353168e-17
+ - -5.5496064284065466e-17
+ - -4.092476080606104e-17
+ - -3.034098486844505e-16
+ - 8.428970441915351e-17
+ - 9.562207881112999e-17
+ - 2.585353004534488e-16
+ - 1.922367743573236e-16
+ - 1.229190390253799e-15
+ - 6.134371422693252e-16
+ - -1.9719985803264177e-16
+ - 8.768114493062092e-17
+ - -1.6427806965303127e-16
+ - 8.801201717564213e-17
+ - 1.890934880296221e-16
+ - -1.393385741845575e-16
+ - -9.471218013732165e-18
+ - 1.401243957664829e-16
+ - 3.159829939952566e-17
+ - 1.9256764660234482e-16
+ - -1.1853498177884887e-16
+ - -2.896786505160703e-16
+ - -2.916225249555699e-16
+ - -3.523789409475898e-17
+ - -9.30578189122156e-17
+ - -1.2655863372061323e-16
+ - 1.4285409178790788e-16
+ - -1.272152083318272e-16
+ - -1.8032537353656e-16
+ - 5.506954928071781e-17
+ - -7.974021105011186e-17
+ - -3.4245277359695346e-17
+ - 1.3044638259961246e-16
+ - -9.396771758602393e-17
+ - 3.240066459370209e-16
+ - 1.0571368228427692e-16
+ - 1.8727369068200544e-16
+ - 9.098986738083303e-17
+ - -4.642137597647591e-16
+ - -1.570609188085061e-16
+ - -8.801201717564213e-17
+ - 1.7354249251362518e-16
+ - -1.4740358515694953e-16
+ - -4.507100362648309e-17
+ - 1.9620724129757814e-16
+ - 4.2748694056740465e-16
+ - 1.2324991127040112e-16
+ - 1.5468277454741618e-17
+ - 4.049876279059623e-16
+ - 2.071260253832781e-16
+ - 2.455072058057386e-16
+ - 1.4525291556431166e-16
+ - 1.7834014006643274e-16
+ - -1.209751645858803e-16
+ - 4.533363347096868e-16
+ - 3.301484619852271e-16
+ - -1.7205356741102973e-16
+ - -2.4980854499101436e-16
+ - -2.5311726744122647e-16
+ - 3.426595687500917e-17
+ - -2.9414542582385664e-16
+ - 8.466193569480237e-17
+ - 1.1547441351240266e-16
+ - 5.386600148945316e-16
+ - -6.53803556161913e-16
+ - -3.556876633978019e-17
+ - -2.7404493693881807e-16
+ - -7.120370712856461e-16
+ - 1.2242273065784808e-17
+ - 2.3202416182112426e-16
+ - 3.268190600197012e-16
+ - 5.856438736875436e-17
+ - 6.187310981896647e-17
+ - 1.134891800422754e-16
+ - 5.608284553109528e-16
+ - -1.020740875890436e-16
+ - 3.927453548401775e-16
+ - 4.896909226313924e-16
+ - 1.8512302108936757e-16
+ - 1.1142122851089283e-16
+ - -1.4732086709569423e-16
+ - -5.641371777611649e-17
+ - 6.410649747285964e-17
+ - 4.566036981292712e-17
+ - -2.8153092148242297e-16
+ - -6.046690277762632e-17
+ - 1.5054687148465104e-17
+ - 8.668852819555729e-17
+ - 5.657915389862709e-17
+ - 9.016268676828e-17
+ - 1.3861479114857361e-16
+ - -4.0366413892587746e-16
+ - -1.862810739469418e-16
+ - 4.326154603652334e-17
+ - -3.879477072873699e-17
+ - -3.5734202462290796e-17
+ - 2.043136113005978e-16
+ - 7.031035206700735e-17
+ - 1.57098141936071e-15
+ - -4.638828875197379e-16
+- - 5.5339999738447245
+ - 4.705031107613189
+ - -2.3073340589340057
+ - -0.560239641720729
+ - 3.2426377502817108
+ - -4.925631011897525
+ - 4.887485716568732
+ - -3.266035150243225
+ - 0.623175275152399
+ - 2.152132531529871
+ - 5.535454942940753
+ - 3.0484366268781993
+ - -2.6217840246984982
+ - -0.2051750248824009
+ - 3.0753929091917582
+ - -3.0816366862793165
+ - -4.9787293014273075
+ - 4.355036922891242
+ - 2.809882311710551
+ - -2.306727040249502
+ - -0.5634618829641543
+ - 3.2474806388239967
+ - -4.930475310297568
+ - 4.890627552271703
+ - -3.266577249609755
+ - 0.5177530370794878
+ - 1.8571705554938598
+ - 4.83829601247239
+ - 2.3994830795013096
+ - -4.985706969341135
+ - 4.771993364654808
+ - -2.98196793943329
+ - 0.3095832375091947
+ - 1.584083161064111
+ - 5.493999815529062
+ - 2.585579206971048
+ - -5.055805847722373
+ - 4.686021976776543
+ - -2.800981558977265
+ - -0.15870219432649804
+ - 2.9238860907741118
+ - -4.745707902764254
+ - 9.170632563104007
+ - 9.062444595839633
+ - 2.9630101116393615
+ - 2.6968929389597744
+ - -2.8967810085060264
+ - -3.1544521802688275
+ - -0.05582845790670118
+ - 2.842371937965887
+ - -4.705684696219282
+ - 5.016435150833648
+ - -3.6415429791824256
+ - 1.085229031123673
+ - 1.0404767701831636
+ - 0.9949517500565713
+ - -6.325453049373726
+ - -3.2208143877914
+ - 4.96793449447661
+ - -3.4810458775644006
+ - 0.7315850326014735
+ - 1.2743062011547437
+ - 1.3152452434473993
+ - -5.858429401175276
+ - -3.2537742021143505
+ - 4.868027984472301
+ - -3.2089489645837026
+ - 0.5141008007163299
+ - 2.4961747781619876
+ - -4.53088454316489
+ - 5.10067258587423
+ - -2.6982159764729428
+ - -5.253003230246673
+ - -1.0640597299846293
+ - -0.05415173814610546
+ - 2.685314001347505
+ - -4.687417432511667
+ - 5.055244986905206
+ - -2.7406575433298155
+ - -5.789973804730311
+ - -1.7044828039067745
+ - -0.3800671592809105
+ - 2.984436367535546
+ - -4.772881353711966
+ - 5.014895510064633
+ - -3.514769928778782
+ - 0.9158124097638571
+ - 1.9833478838368888
+ - -4.294574089827952
+ - -5.018122002992597
+ - 0.17713549606056417
+ - 0.38915462371936543
+ - 0.8468738944641364
+ - -3.4667281203572373
+ - 4.961574730302488
+ - -4.795965968483408
+ - 3.040914980800658
+ - -0.2983683969152716
+ - -1.5443786583655876
+ - -2.0202375152218184
+ - 6.693601908415422
+ - 3.490431469321001
+ - -4.715049945745672
+ - 2.858345648269916
+ - 0.060867331437842606
+ - -1.7350029493267753
+ - -2.183074079754717
+ - 5.835769422490731
+ - 3.326512463637775
+ - -4.562998800324493
+ - 2.5532263948810545
+ - 0.2797571097376673
+ - -3.1573525168551293
+ - 4.8454724607747
+ - -4.966400848053844
+ - 2.3631776057768357
+ - 4.785981788638826
+ - 1.9429573943983443
+ - 0.5686395430730229
+ - -3.3271416838619907
+ - 4.950127005255923
+ - -4.866420284908629
+ - 2.2227267527631858
+ - 4.925707756903921
+ - 2.5228077231457964
+ - 0.8239545674092349
+ - -3.591919498263771
+ - 5.00266308916186
+ - -4.793299516663065
+ - 2.8966130464863533
+ - -0.1258602940495825
+ - -2.6893839482852395
+ - 7.268350538072197
+ - 7.042588343810441
+ - -0.011187528864563225
+ - -0.33295759957380905
+ - -7.417395992188722
+ - -7.634007837707489
+ - 2.9857155916845786
+ - -0.23284995624042876
+ - -2.59155683635636
+ - 4.651314242709222
+ - -5.06328776208332
+ - 3.835758446904701
+ - -1.0487469500205975
+ - -2.9241456650603856
+ - -4.626500599143468
+ - -2.0397133109396326
+ - 4.738654888178851
+ - -5.02612484154106
+ - 3.58883846126981
+ - -0.7966236386668104
+ - -2.3239506061709894
+ - -4.532944655241563
+ - -2.1909440351316265
+ - 4.862456151327782
+ - -4.94587476073327
+ - 3.4292800569200383
+ - -0.6367064768874441
+ - -2.2341821825559185
+ - 4.385236924891401
+ - -3.3305604217808833
+ - -5.774831079145139
+ - 2.5569708786680807
+ - 1.928533959315607
+ - -0.4190467820455575
+ - -2.5515460923564515
+ - 4.559571540398109
+ - -3.506534434942652
+ - -6.65452025337542
+ - 2.4604541293458997
+ - 1.760103818095494
+ - -0.060413616300733025
+ - -2.742515621387417
+ - 4.654466168160935
+ - -5.034379950517987
+ - 3.7192421737734787
+ - -1.197574898995101
+ - 0.13140923274159821
+ - 0.46082851680428255
+ - -2.500112042410898e-15
+ - -3.195564142414856e-15
+ - -4.614013456820788e-16
+ - -5.500751073477634e-16
+ - 9.899283980728357e-17
+ - 2.007567346666198e-16
+ - 2.7875986643037033e-16
+ - 2.0489263772938493e-16
+ - 8.984835813550987e-16
+ - -2.0464448354561902e-16
+ - -2.9584114607959035e-16
+ - -7.464477847678521e-16
+ - -1.4711407194255597e-16
+ - 9.140345768710956e-18
+ - -5.1781506345819526e-17
+ - 3.9770843851549566e-16
+ - 2.041481751780872e-16
+ - 3.6462121401337455e-16
+ - 2.4716156703084467e-16
+ - -4.6115319149831287e-17
+ - -1.773475233313691e-16
+ - 9.413315370853454e-17
+ - -5.062345348824529e-16
+ - -2.691645713247552e-16
+ - -3.2781684663359327e-16
+ - 2.0811864211834174e-16
+ - 1.6039032077403204e-16
+ - 1.2337398836228408e-16
+ - -4.450231695535289e-16
+ - -4.2256521592271414e-16
+ - -3.1151621868747017e-16
+ - 4.801783455870325e-17
+ - -9.25491028354955e-16
+ - -2.187996117779327e-16
+ - -8.454432095145499e-17
+ - 6.705126045354841e-16
+ - 1.1191753687842464e-16
+ - -3.259091613458929e-17
+ - 4.483732510343687e-16
+ - -5.280721030538529e-16
+ - -3.3914405114674135e-17
+ - -5.947428604256269e-16
+ - -3.6164336380818365e-16
+ - -2.127508535486387e-16
+ - -2.1672132048889323e-16
+ - 5.3270431448414976e-17
+ - 6.733250186181645e-17
+ - 4.886155878350734e-16
+ - 4.873748169162439e-16
+ - -2.4054412213042045e-16
+ - -4.1251497148019485e-16
+ - -2.6436692377194764e-16
+ - 2.2271837992990267e-17
+ - 4.0366413892587744e-17
+ - 7.848289651903126e-16
+ - 1.2970192004831474e-16
+ - 9.353344776443359e-17
+ - -2.1072426104788377e-17
+ - 1.5153948821971465e-16
+ - 1.8429584047681454e-16
+ - -1.0732668447875533e-16
+ - 2.413713027429735e-16
+ - 1.4789989352448135e-16
+ - -5.194694246833013e-17
+ - 1.9455288007247208e-16
+ - 2.5013941723603557e-16
+ - 4.575963148643349e-16
+ - -9.140345768710955e-17
+ - 1.2407709188295415e-16
+ - -2.420330472330159e-16
+ - 1.9298123690862133e-16
+ - -3.6445577789086394e-16
+ - 1.1386141131792426e-16
+ - 1.2457340025048597e-16
+ - 4.235164736271501e-16
+ - 1.8499894399748461e-16
+ - -1.3648480107124955e-18
+ - 2.0944213109842658e-16
+ - -2.7098436867237187e-16
+ - 1.9256764660234482e-16
+ - -4.9946199361717496e-17
+ - -1.257314531080602e-16
+ - -4.4295521802214626e-17
+ - -4.13921178521535e-16
+ - 1.1133851044963753e-16
+ - 1.225881667803587e-16
+ - 3.297969102248921e-16
+ - 2.546061925438219e-16
+ - 1.7020068283891095e-15
+ - 8.367759076586427e-16
+ - -2.10103875588469e-16
+ - 1.8264147925170849e-16
+ - -1.6626330312315854e-16
+ - 1.227536029028693e-16
+ - 2.448454613156962e-16
+ - -1.7585859822877366e-16
+ - -3.962195134129002e-17
+ - 1.9500782940937625e-16
+ - -8.313165156157928e-18
+ - 2.3773170804774015e-16
+ - -1.4856163801452377e-16
+ - -4.403082400619766e-16
+ - -3.831707392498762e-16
+ - -6.716706573930585e-17
+ - -1.3995895964397228e-16
+ - -1.5865324148767068e-16
+ - 1.8760456292702665e-16
+ - -1.754398380436687e-16
+ - -2.451763335607174e-16
+ - 7.078598091922534e-17
+ - -1.2015832373098418e-16
+ - -3.308722450212111e-17
+ - 1.8793543517204786e-16
+ - -1.3929721515392986e-16
+ - 4.4212803740959324e-16
+ - 1.431022459716738e-16
+ - 2.5526793703386434e-16
+ - 1.2341534739291173e-16
+ - -6.180693536996222e-16
+ - -2.1837568171399928e-16
+ - -1.2043749718772083e-16
+ - 2.2333876538931747e-16
+ - -1.5732975250758584e-16
+ - -5.738048511703784e-17
+ - 3.0241723194938687e-16
+ - 5.459392042849983e-16
+ - 1.7288074802358276e-16
+ - 1.6543612251060553e-17
+ - 5.366747814244044e-16
+ - 2.6089276519922493e-16
+ - 3.3484271196146555e-16
+ - 2.0282468619800236e-16
+ - 1.8413040435430394e-16
+ - -1.6345088904047824e-16
+ - 6.027665123673912e-16
+ - 4.450231695535289e-16
+ - -2.4070955825293105e-16
+ - -4.049876279059623e-16
+ - -3.629668527882685e-16
+ - 4.289965451853139e-17
+ - -4.253362709747668e-16
+ - 1.204064779147501e-16
+ - 1.654361225106055e-16
+ - 7.351981284371309e-16
+ - -9.17177863198797e-16
+ - -4.8803656140628627e-17
+ - -3.537024299276746e-16
+ - -9.496033432108758e-16
+ - 3.970466940254533e-18
+ - 3.242548001207868e-16
+ - 4.717411033389917e-16
+ - 8.70194004405785e-17
+ - 8.801201717564213e-17
+ - 1.5997673046775553e-16
+ - 7.85490709680355e-16
+ - -1.4202691117535485e-16
+ - 5.304709268302566e-16
+ - 6.7994246351858865e-16
+ - 2.397996595791227e-16
+ - 1.7383200572801874e-16
+ - -1.7990144347262658e-16
+ - -6.394106135034904e-17
+ - 9.89308012613421e-17
+ - 5.542110104105285e-17
+ - -4.1139827765324826e-16
+ - -9.553936074987468e-17
+ - 4.301339185275744e-18
+ - 1.2904017555827232e-16
+ - 4.0697286137608955e-17
+ - 1.4244050148163137e-16
+ - 1.4526842520079703e-16
+ - -4.804264997707985e-16
+ - -2.7048806030484005e-16
+ - 6.915229920943311e-17
+ - -5.724089838866952e-17
+ - -5.922613185879678e-17
+ - 2.7032262418232944e-16
+ - 8.536503921547244e-17
+ - 2.039496518310745e-15
+ - -6.736558908631856e-16
+- - -4.221582493712237
+ - -3.521330893701066
+ - 2.001796687029219
+ - -0.5741097124960547
+ - -1.111856032247779
+ - 2.417606655823709
+ - -2.928042903853755
+ - 2.416042407357187
+ - -0.9204319359410142
+ - -2.2360978569469037
+ - -2.368759566313193
+ - -0.9970632832957574
+ - 2.4841999471247096
+ - -0.769706958492596
+ - -0.9976258364937948
+ - 1.457200248769428
+ - 2.1775957988999144
+ - -3.023477880335853
+ - -1.8257474866653796
+ - 2.0005523679025083
+ - -0.571718417276876
+ - -1.11465455092991
+ - 2.419855221464437
+ - -2.928969193184283
+ - 2.415398857781322
+ - -0.8350912937010863
+ - -1.943900954234311
+ - -2.0653180616256273
+ - -0.9117413842479237
+ - 2.48638835013455
+ - -2.920821772183206
+ - 2.2988732755879235
+ - -0.7300290847532257
+ - -1.8983819451319053
+ - -2.4354101069927583
+ - -1.0426344427273602
+ - 2.582845307966919
+ - -2.909820577402111
+ - 2.220591860049687
+ - -0.7959921858265099
+ - -0.8980121919060369
+ - 2.2288030311445266
+ - -4.9362992093752105
+ - -4.838192852663762
+ - -0.9226619375063425
+ - -0.7478369544761877
+ - 3.018368560578025
+ - 3.1606016541979884
+ - -0.8522043725166242
+ - -0.8444599078642031
+ - 2.1911375500153683
+ - -2.9150355441959186
+ - 2.5609475524409597
+ - -1.4514935444975345
+ - -0.027583498930242527
+ - 0.520226195170302
+ - 3.297764669945331
+ - 1.589258694470111
+ - -2.9237894852609645
+ - 2.500985574458333
+ - -1.2695723798841911
+ - -0.17255973119822351
+ - 0.24913883382786553
+ - 3.1248394802941104
+ - 1.6426056530555406
+ - -2.928605855581818
+ - 2.39202360111853
+ - -1.1569434493031403
+ - -0.6210875206959078
+ - 2.0346687703361512
+ - -2.8657168504772645
+ - 1.7927849164116991
+ - 3.288495491187493
+ - -0.3941333293818764
+ - -0.5316992367775761
+ - -0.7413647251313455
+ - 2.174891066319533
+ - -2.9001939067882563
+ - 1.8561452474578128
+ - 3.70697704294581
+ - -0.16606773356692056
+ - -0.3816872190779806
+ - -0.9379898060309767
+ - 2.255104309168632
+ - -2.915444151869196
+ - 2.5130371287260806
+ - -1.3653065200742085
+ - -0.3008691299973279
+ - 1.3078951867604434
+ - 1.4407952658635166
+ - -1.6299319529679646
+ - -1.4604969196918565
+ - 0.3708645549967438
+ - 1.2250749909878242
+ - -2.4970760598874913
+ - 2.8834669066446166
+ - -2.363392058101299
+ - 1.0023721607037472
+ - 0.30650144720262174
+ - 0.020563756824312173
+ - -3.6716963554632556
+ - -1.8268664649007869
+ - 2.8747393786163684
+ - -2.28517856404638
+ - 0.8098626858615602
+ - 0.4618003485980337
+ - 0.2672787785678544
+ - -3.265751301287485
+ - -1.7682533303808865
+ - 2.846194169708728
+ - -2.1525316844873363
+ - 0.6889664751790637
+ - 1.013135918729914
+ - -2.3687010438028464
+ - 2.8842358050369072
+ - -1.6774070074588203
+ - -3.1667556651268645
+ - -0.12188059779220208
+ - 0.2445382798521684
+ - 1.12941185493625
+ - -2.4824273846673406
+ - 2.8890087840308367
+ - -1.628255616355291
+ - -3.352459409549626
+ - -0.38283720991248593
+ - 0.10039627454872803
+ - 1.3130206989448303
+ - -2.548383709698678
+ - 2.8832106001493
+ - -2.3023485430992037
+ - 0.9099684534753139
+ - 0.7042965507149651
+ - -2.9994472404077217
+ - -2.8559078849967605
+ - 0.8600676087897542
+ - 1.0345902593945357
+ - 4.902214258827878
+ - 4.994914590980366
+ - -2.340752103971207
+ - 0.9680919918249602
+ - 0.6415015957244365
+ - -2.1836732692451397
+ - 2.852268549134513
+ - -2.6725127074236474
+ - 1.1055802704783793
+ - 2.5403227650604534
+ - 1.771812426454805
+ - 0.6582284927521974
+ - -2.263995830361648
+ - 2.8701327799308864
+ - -2.581625910913273
+ - 0.9774817040477524
+ - 2.168134819875402
+ - 1.8324582792336284
+ - 0.7655909931339859
+ - -2.3888772038654755
+ - 2.884699742412057
+ - -2.521225812022085
+ - 1.1813836011574614
+ - 0.4153259657441656
+ - -1.954299792581814
+ - 1.8033681713564547
+ - 2.9633785073411136
+ - -2.276566934427839
+ - -1.5041265350030304
+ - 1.0680666452421965
+ - 0.6166723183648652
+ - -2.10091024128944
+ - 1.9271381832701868
+ - 3.489690167435093
+ - -2.384270304644064
+ - -1.4668333067681978
+ - 0.8754319944676741
+ - 0.7388835460160615
+ - -2.186536429733858
+ - 2.86605097484307
+ - -2.630807619110249
+ - 1.4684479320184458
+ - -1.323270034361404
+ - -1.783432605815915
+ - 1.5913300624295144e-15
+ - 2.544738436458134e-15
+ - 3.1885227674504984e-16
+ - 2.772709413277749e-16
+ - -1.5220123270975707e-16
+ - -2.5609511764641737e-16
+ - -3.0026656235674905e-16
+ - -1.5919090888583015e-16
+ - -5.134310062116643e-16
+ - 9.003860967639705e-17
+ - 2.3442298559752804e-16
+ - 5.161607022330893e-16
+ - 1.1013909856143562e-16
+ - 2.010048888503857e-17
+ - -5.715818032741421e-17
+ - -4.84396966711053e-16
+ - -1.6121750138658507e-16
+ - -1.0331485850787314e-16
+ - -1.464936864831412e-16
+ - 1.250800483756747e-16
+ - 1.341686953561011e-16
+ - 9.719372197498074e-18
+ - 1.5555131419059683e-16
+ - 1.533592855673313e-16
+ - 1.5049517269636647e-16
+ - -3.9084283943130553e-16
+ - -7.496324301261813e-17
+ - -2.3657365519016588e-17
+ - 5.163261383555999e-16
+ - 3.970983928137378e-16
+ - 1.508570642143584e-16
+ - 1.2583485068462932e-17
+ - 4.051530640284729e-16
+ - 7.448761416040014e-17
+ - 3.088485612119867e-17
+ - -5.414517494618981e-16
+ - -1.3381714359576605e-16
+ - 1.2407709188295413e-18
+ - -2.4898136437846133e-16
+ - 5.075580238625378e-16
+ - 1.5716431638507524e-18
+ - 3.0076287072428086e-16
+ - 4.485386871568793e-16
+ - 1.1227425851758814e-16
+ - 8.073282778517549e-17
+ - -1.4450845301301393e-16
+ - -3.643730598296087e-17
+ - -4.2963761016004253e-16
+ - -2.637051792819052e-16
+ - 1.6460894189805248e-16
+ - 2.084081553327353e-16
+ - 1.0472623542804175e-16
+ - 7.80858498250058e-17
+ - -9.065899513581182e-17
+ - -3.8579703769473206e-16
+ - -8.70194004405785e-17
+ - -1.2023070203458257e-16
+ - 1.4740358515694953e-16
+ - -8.437242248040881e-17
+ - -5.558653716356346e-17
+ - 9.715236294435309e-17
+ - -2.796904446194925e-17
+ - 9.429858983104514e-18
+ - -1.9686898578762056e-17
+ - -2.2830184906463564e-16
+ - -1.83055069557985e-16
+ - -2.156459856925743e-16
+ - 7.866487625379292e-17
+ - -5.624828165360588e-17
+ - 1.5799149699762826e-16
+ - 1.4475660719677984e-17
+ - 1.92071338234813e-16
+ - 5.790264287871194e-17
+ - -8.677124625681259e-17
+ - -2.840538223507097e-16
+ - -1.6522932735746725e-16
+ - -2.1672132048889322e-17
+ - -1.2573145310806019e-17
+ - 1.9653811354259935e-16
+ - -1.4574922393184348e-16
+ - 5.54624600716805e-17
+ - 1.773475233313691e-16
+ - -8.346252380660048e-17
+ - 1.8421312241555924e-16
+ - -9.818633871004437e-17
+ - -1.1080084305147804e-16
+ - -1.5087774372967222e-16
+ - -1.1216569106219055e-16
+ - -7.25933705576537e-16
+ - -5.747250896018436e-16
+ - -2.141984196206065e-16
+ - 1.2217457647408219e-16
+ - 9.605634863272033e-17
+ - -1.5170492434222525e-16
+ - -1.6642873924566914e-16
+ - -2.336785230462303e-17
+ - -3.3335378685887015e-17
+ - -1.1932080336077424e-16
+ - 5.062345348824529e-17
+ - -1.7925003874024107e-16
+ - 1.37203414228405e-16
+ - 2.7048806030484005e-16
+ - 1.1956895754454015e-16
+ - -2.5642598989143855e-17
+ - -4.963083675318166e-19
+ - -1.9025154088719637e-18
+ - -7.874759431504822e-17
+ - 1.2023070203458257e-16
+ - 1.7867101231145395e-16
+ - -2.0762233375080992e-17
+ - 4.5019304838198525e-17
+ - 1.0267379353314455e-16
+ - 3.970466940254533e-18
+ - 4.053185001509835e-17
+ - -2.410817895285799e-16
+ - -9.44226669229281e-17
+ - -1.7809198588266683e-16
+ - -6.319659879905131e-17
+ - 3.9506146055532597e-16
+ - 1.0726464593281385e-16
+ - 8.99145325845141e-17
+ - -6.795288732123122e-17
+ - 7.510799961981491e-17
+ - 2.522900868286734e-18
+ - -1.2043749718772083e-16
+ - -1.2457340025048597e-16
+ - -1.137373342260413e-16
+ - 5.657915389862709e-17
+ - -3.2921788379610497e-16
+ - -1.318525896409526e-16
+ - -1.402898318889935e-16
+ - -1.3936959345752825e-16
+ - 8.263534319404745e-17
+ - -5.872982349126496e-18
+ - -3.115575777180978e-16
+ - -1.9463559813372739e-16
+ - 5.955700410381799e-17
+ - 4.384057246531046e-16
+ - 1.43433118216695e-16
+ - 3.5056948335763004e-17
+ - 1.350579145145956e-16
+ - 6.964860757696493e-17
+ - -1.0439019330419208e-16
+ - -4.081309142336638e-16
+ - 4.3906746914314704e-16
+ - -4.79764755280756e-18
+ - 1.6667689342943505e-16
+ - 4.635520152747167e-16
+ - -3.7719435932418056e-17
+ - -1.2953648392580413e-16
+ - -4.946540063067105e-17
+ - 2.2855000324840155e-16
+ - 3.9311758611582634e-17
+ - -1.1423364259357312e-16
+ - -4.486627642487622e-16
+ - 9.355412727974742e-17
+ - -1.5081570518373075e-16
+ - -3.6429034176835334e-16
+ - -2.0296944280519914e-16
+ - -3.565148440103549e-17
+ - 3.7223127564886245e-17
+ - -7.088937849579447e-17
+ - -4.0697286137608955e-17
+ - -5.777856578682898e-17
+ - 6.551270451419979e-17
+ - 7.057918576608709e-17
+ - -1.1415092453231782e-16
+ - -7.444625512977249e-17
+ - -1.1613615800244509e-16
+ - 5.790264287871193e-18
+ - -7.237830359838991e-19
+ - 2.3409211335250683e-16
+ - 1.405379860727594e-16
+ - 3.7223127564886245e-18
+ - 2.7503755367388166e-18
+ - -9.009030846468161e-17
+ - -2.354156023325917e-16
+ - -8.12291361527073e-17
+ - -1.3638553939774318e-15
+ - 1.8528845721187817e-16
+- - 5.173118905672326
+ - 4.222030664498837
+ - -2.857015646972559
+ - 2.0025636849479187
+ - -0.576220556670155
+ - -1.1997400460983496
+ - 2.4184695487556613
+ - -2.9301969994854615
+ - 1.737624444157424
+ - 3.554386463601434
+ - 0.3626166943282751
+ - -0.10657565427625974
+ - -1.3115794051151266
+ - 2.48635806947704
+ - -0.6946373039746115
+ - -0.5613900645679896
+ - -0.44844480185427843
+ - 3.295727326010698
+ - 1.8019524991134444
+ - -2.8544899842782874
+ - 1.9997384422002027
+ - -0.5739614991778869
+ - -1.200569599339362
+ - 2.4176165601028523
+ - -2.928030166061576
+ - 1.6263290363876963
+ - 3.104360022207716
+ - 0.3037486579421191
+ - -0.14140423176981917
+ - -1.3123004476930897
+ - 2.523683742408073
+ - -2.9198491309272745
+ - 1.5712163860498054
+ - 3.2716570658380375
+ - 0.5789804451068924
+ - 0.0038197030454170575
+ - -1.4925835416201472
+ - 2.5817794880642424
+ - -2.9090644033602056
+ - 2.158924520822873
+ - -0.7981613864378396
+ - -0.8977757893787299
+ - 3.2272746056354786
+ - 3.0856615043388005
+ - -0.7020622064181691
+ - -0.8776863164469623
+ - -4.80681706837936
+ - -4.906647344622228
+ - 2.1973132043434638
+ - -0.8519572643809595
+ - -0.8418580201061694
+ - 2.250037687848328
+ - -2.913995607245158
+ - 2.5601946902303014
+ - -1.0158711344273363
+ - -2.390166908083012
+ - -1.9482408840618586
+ - -0.758671553039617
+ - 2.326687973481776
+ - -2.9229075448452417
+ - 2.4608270956162146
+ - -0.8839648756857982
+ - -2.02128817370949
+ - -1.9875512127601282
+ - -0.8626925240116327
+ - 2.440403349501623
+ - -2.927697970341028
+ - 2.3925773128564245
+ - -1.0697855058739418
+ - -0.6185630137398451
+ - 2.0340249532947583
+ - -1.8331188908736828
+ - -3.0450977050424237
+ - 2.1350404738352986
+ - 1.4365998343532105
+ - -0.9520699387013465
+ - -0.8156941847116513
+ - 2.1741980771533274
+ - -1.9532061080996164
+ - -3.570051657720605
+ - 2.2124131759154175
+ - 1.3878638715177298
+ - -0.7575625995992941
+ - -0.9377743048381914
+ - 2.2527422617733657
+ - -2.922035627248329
+ - 2.513425782525133
+ - -1.364915582128927
+ - 1.0937627790156288
+ - 1.5050139729497538
+ - 4.045294866950593
+ - 3.3839310447546653
+ - -1.9206047918897406
+ - 0.37052726971738953
+ - 1.2225711898412128
+ - -2.544412608795485
+ - 2.882896258503549
+ - -2.3627263627934494
+ - 0.8185587219622561
+ - 2.0580161727137147
+ - 2.533959822684174
+ - 1.0935615558610712
+ - -2.6031191989030487
+ - 2.8739126684915823
+ - -2.2353181036593464
+ - 0.6147252832762937
+ - 1.5878781669990314
+ - 2.3769065076046227
+ - 1.1127474551854446
+ - -2.6911528218863414
+ - 2.845305186069334
+ - -2.153527097926971
+ - 0.5973704029271568
+ - 1.0106130338993145
+ - -2.368268439884332
+ - 1.883788349046448
+ - 3.2171741946597
+ - -1.7143535256392093
+ - -1.2290083763175015
+ - 0.4762522586900222
+ - 1.1996157614304221
+ - -2.481943448181418
+ - 1.9030193463963556
+ - 3.5531690599154016
+ - -1.643087686062897
+ - -1.1217407109872384
+ - 0.2732315215852604
+ - 1.3126942097598282
+ - -2.5465532521790695
+ - 2.8753882316638664
+ - -2.3033028252525134
+ - 0.9094800918912221
+ - 0.19030708358440926
+ - 0.05380318791812405
+ - -2.1944470971336187
+ - -2.3043835388202654
+ - -4.971341607185944
+ - -4.989668278702112
+ - 2.8826587180372267
+ - -2.342354575261683
+ - 0.9706060405391187
+ - 0.7333803971255904
+ - -2.1841293877447394
+ - 2.8546034191440017
+ - -1.773420299537202
+ - -3.5372614838295466
+ - 0.23666249563820108
+ - 0.4233759456305027
+ - 0.8537984810296733
+ - -2.266127040246225
+ - 2.8799720566567304
+ - -1.7044406104049747
+ - -3.1985120505357596
+ - -0.01852994940114775
+ - 0.30277144092155706
+ - 1.0453351592590503
+ - -2.3910359132824945
+ - 2.8867372170459555
+ - -2.4737404677443378
+ - 1.1840203703064638
+ - 0.41617123244881427
+ - -1.1996718781941806
+ - -1.6558415345963873
+ - 3.2363475705312448
+ - 1.8883072165620407
+ - -2.4039009578132005
+ - 0.9963333096157778
+ - 0.6176983891765494
+ - -1.336984698747878
+ - -2.102451472602703
+ - 3.616739300062978
+ - 1.9675344835764066
+ - -2.2819532792091355
+ - 0.8755177833146672
+ - 0.7375494765684955
+ - -2.249996234740224
+ - 2.867967249371382
+ - -2.6326002339967935
+ - 3.2971269300234325
+ - 4.147177354601842
+ - -9.97745254861462e-16
+ - -1.4318496403292907e-15
+ - -3.299623463474027e-16
+ - -2.0625748574009743e-16
+ - 4.118325474748386e-17
+ - 5.959836313444564e-17
+ - 2.82063419001754e-16
+ - 2.4716156703084467e-16
+ - 3.843081125921366e-16
+ - -2.150669592637872e-18
+ - -1.0909478303808743e-16
+ - -6.884624238278848e-16
+ - -8.850832554317396e-18
+ - -1.692204738130356e-16
+ - -5.09543257332665e-17
+ - 2.4343925427435604e-16
+ - 5.426304818347861e-17
+ - 1.9107872149974937e-16
+ - 3.0262402710252513e-16
+ - 6.327931686030662e-17
+ - -4.9961708998202865e-17
+ - 8.309029253095162e-17
+ - -2.3905519702782497e-17
+ - -1.0984958534704206e-16
+ - -9.578751493364059e-17
+ - 5.030912485547514e-16
+ - -1.1580528575742386e-17
+ - 3.3335378685887015e-17
+ - -3.436521854851553e-16
+ - -2.7396221887756277e-16
+ - 4.135903062765138e-17
+ - 3.532061215601428e-17
+ - -4.0197875842780066e-16
+ - -1.1241384524595646e-16
+ - -3.585827955417375e-17
+ - 4.509788699639107e-16
+ - 1.0629270871306404e-16
+ - -5.374606030063297e-17
+ - 2.125854174261281e-16
+ - -4.897736406926477e-16
+ - 1.2986735617082534e-16
+ - -2.569222982589704e-16
+ - -3.9369661254461347e-16
+ - -6.829409932390935e-17
+ - -8.102234099956905e-17
+ - 8.76604654153071e-17
+ - 1.1704605667625342e-16
+ - 3.2140102700747885e-16
+ - 9.065899513581182e-17
+ - -7.206811086868254e-17
+ - -4.689080097409975e-17
+ - -1.0259107547188925e-16
+ - -7.806517030969197e-17
+ - -5.98878763488392e-17
+ - 9.89308012613421e-17
+ - 8.536503921547244e-17
+ - -6.183175078833882e-17
+ - 1.4136516668531243e-16
+ - -4.0697286137608955e-17
+ - -4.053185001509835e-17
+ - -7.17992771696028e-17
+ - 5.719695441862764e-17
+ - -2.7462396336760516e-17
+ - 3.135014521575975e-17
+ - 1.6742135598073278e-16
+ - 1.7527957179998654e-16
+ - 8.569591146049365e-17
+ - -3.1324295821617467e-17
+ - 1.0405932105917087e-16
+ - -5.153335216205362e-17
+ - 7.494256349730431e-17
+ - -8.929414712509933e-17
+ - -3.7223127564886245e-17
+ - 7.82512859475164e-17
+ - 1.4095157637903592e-16
+ - 8.449132969346331e-17
+ - -6.067369793076458e-17
+ - 7.444625512977248e-19
+ - -4.020097777007714e-17
+ - 1.0625134968243639e-16
+ - 6.964860757696493e-17
+ - 4.452299647066671e-17
+ - 2.8124140826802937e-18
+ - -1.2101652361650795e-16
+ - 7.142704589395394e-17
+ - 8.093962293831375e-17
+ - 1.7180541322726382e-16
+ - 1.3323811716697893e-16
+ - 5.401489399971271e-16
+ - 3.191676393535857e-16
+ - 4.946540063067105e-17
+ - -5.336969312192135e-16
+ - -2.8901690602602787e-16
+ - 5.060277397293146e-17
+ - 6.88214269644119e-17
+ - -4.2144852209576754e-17
+ - 1.989989758649446e-16
+ - 1.2705494208814505e-16
+ - 1.6675961149069035e-16
+ - 1.6113478332532977e-16
+ - -1.0859847467055561e-16
+ - -2.5146290621612038e-17
+ - -1.4831348383075786e-16
+ - 1.148540280529879e-16
+ - 5.074753058012824e-17
+ - -4.9961708998202865e-17
+ - 3.7264486595513897e-17
+ - -6.778745119872062e-17
+ - 9.512577044359817e-18
+ - 3.432799542095065e-17
+ - 5.026156197025334e-17
+ - -1.048865016717239e-16
+ - -5.550381910230815e-17
+ - -1.522012327097571e-17
+ - 1.1537101593583353e-16
+ - -1.9025154088719637e-18
+ - 1.1315830779725419e-16
+ - 6.617444900424221e-17
+ - -1.9438744394996148e-16
+ - -2.2085722355165836e-17
+ - 1.0918784085699964e-17
+ - 1.2316719320914582e-16
+ - -2.4815418376590827e-17
+ - 3.399712317592944e-17
+ - -6.292776509997158e-17
+ - 8.271806125530276e-17
+ - -3.399712317592944e-17
+ - -1.420682702059825e-17
+ - 3.0522964603206716e-16
+ - 1.7792654976015623e-16
+ - 1.4608009617686469e-16
+ - 9.487761625983226e-17
+ - 3.358353286965292e-16
+ - -3.2859749833669024e-17
+ - 2.40833635344814e-16
+ - 1.2995007423208065e-16
+ - -3.2384120981451033e-17
+ - 1.196103165751678e-16
+ - 5.480071558163808e-17
+ - -1.8322050568049563e-17
+ - 7.924390268258004e-17
+ - -4.0986799352002515e-17
+ - 2.5994150749478892e-17
+ - 2.9108485755741044e-16
+ - -1.9083056731598346e-16
+ - -1.9852334701272664e-18
+ - -2.0447904742310842e-16
+ - -3.35504456451508e-16
+ - 9.148617574836485e-17
+ - 1.1274471749097767e-16
+ - 1.8735640874326077e-17
+ - -1.588186776101813e-16
+ - -1.7195016983446063e-17
+ - 5.616556359235058e-17
+ - 2.749548356126264e-16
+ - -6.289674582700084e-17
+ - 6.716189586047739e-17
+ - 1.1046997080645683e-16
+ - 2.1829296365274398e-16
+ - 1.6543612251060552e-18
+ - -2.961306592939839e-17
+ - 7.016559545981057e-17
+ - 2.5559880927888552e-17
+ - 4.0883401775433387e-17
+ - -3.6065074707312007e-17
+ - -4.673570460924606e-17
+ - 8.118777712207965e-17
+ - -7.328820227219825e-17
+ - 1.5780538135980383e-16
+ - -1.492233825045662e-16
+ - 1.7668577884132669e-16
+ - -3.24585672365808e-16
+ - 4.359241828154455e-17
+ - -4.3344264097778644e-17
+ - -9.471218013732165e-18
+ - 1.2407709188295413e-18
+ - 1.4209928947895324e-16
+ - 2.808278179617529e-17
+ - 8.5927522032008505e-16
+ - 1.132410258585095e-16
+- - -3.222311259025669
+ - -2.582107666558774
+ - 1.937164239979153
+ - -1.9647057890212303
+ - 1.3047329853890586
+ - -0.20813457108177902
+ - -0.9557511574313858
+ - 1.7595893197769092
+ - -1.3955470034412265
+ - -2.6322802278955155
+ - 1.0787897557257335
+ - 0.7486891692923088
+ - -0.12073638654210427
+ - -1.0329610183861513
+ - 1.82585486529016
+ - -0.27919031653671944
+ - -0.8610207090487909
+ - -1.842631424297052
+ - -0.8987972125988316
+ - 1.935024757085138
+ - -1.9629791429105095
+ - 1.303955418457056
+ - -0.20865816435826517
+ - -0.9541659449613203
+ - 1.7574853388137002
+ - -1.3227540684328
+ - -2.3046586820991317
+ - 0.9547642068598419
+ - 0.7345973982994183
+ - -0.12134463058518713
+ - -1.0776435687232269
+ - 1.823731930862975
+ - -1.326239980612765
+ - -2.5234255615314005
+ - 0.8748943796412534
+ - 0.6519287072570982
+ - 0.02064694110081248
+ - -1.152790185171611
+ - 1.8585312876166464
+ - -2.0026457938626145
+ - 1.4223355625529148
+ - -0.43253098775018617
+ - -0.5608713031408783
+ - -0.46168189990193
+ - 1.3786590683252713
+ - 1.4682201348196462
+ - 3.5631018228351903
+ - 3.5870802887538265
+ - -2.010883278805925
+ - 1.4497604511901374
+ - -0.4723786418487769
+ - -0.7724232809322302
+ - 1.6498555561038364
+ - -2.0460949971245
+ - 1.1719353243876125
+ - 2.3890286507240535
+ - 0.13849598840347824
+ - -0.1380896647635385
+ - -0.8518178670632974
+ - 1.699926426396433
+ - -2.0454798520040716
+ - 1.1132786837714095
+ - 2.140438485189413
+ - 0.2920123044551575
+ - -0.053449053279692335
+ - -0.9802200918976413
+ - 1.771745313153937
+ - -2.041018131138343
+ - 1.5568121739530556
+ - -0.627750441142217
+ - -0.5579396548875153
+ - 0.9549557677801614
+ - 1.3909384317287783
+ - -2.1784954205716804
+ - -1.2980890612703144
+ - 1.500934566103466
+ - -0.48976264778801926
+ - -0.6933510318077138
+ - 1.051564478746044
+ - 1.7241622995192785
+ - -2.4100103587710073
+ - -1.33713233013733
+ - 1.401434176237048
+ - -0.4037023026860835
+ - -0.7752201547882176
+ - 1.6892306360723979
+ - -2.047305347584519
+ - 1.69069456570745
+ - -2.0663969629789154
+ - -2.617472959514184
+ - -3.57175441779766
+ - -2.9267191296707105
+ - 1.8994502204135977
+ - -1.2423015032428293
+ - 0.13224659956662285
+ - 1.0268807079925546
+ - -1.8389636969227185
+ - 2.004437697872514
+ - -1.1232666789527146
+ - -2.3520157282322534
+ - -0.5688793498156683
+ - -0.09299474029785867
+ - 1.1013007762525249
+ - -1.8757947997554458
+ - 1.98301058972524
+ - -0.9893437088225416
+ - -1.9729562703426984
+ - -0.6458992807234499
+ - -0.1516972127466845
+ - 1.2171312148782134
+ - -1.9289903311899426
+ - 1.9639357696023982
+ - -1.3666336038401514
+ - 0.2922701841869852
+ - 0.8262170313472773
+ - -1.0851973217516175
+ - -1.6632032042619065
+ - 2.025144092478268
+ - 1.2428996754813406
+ - -1.2999637684254048
+ - 0.1512425092290202
+ - 0.9546085806720096
+ - -1.137983481862081
+ - -1.928162752450324
+ - 2.1083996295031966
+ - 1.2117085624801562
+ - -1.1869865503877928
+ - 0.06204119276318689
+ - 1.0294816862488907
+ - -1.8687983035014963
+ - 1.9949854279037693
+ - -1.5272283778580868
+ - 1.6729308503371971
+ - 1.7377912144201475
+ - 1.9706473527347592
+ - 1.9903607337537983
+ - 2.564539632234864
+ - 2.524184807338926
+ - -1.8523971667520052
+ - 2.002777408952545
+ - -1.5569104323918588
+ - 0.4909581150730008
+ - 0.6369874339873421
+ - -1.612175904486479
+ - 1.3196742067302947
+ - 2.421247942323033
+ - -1.3842304331899227
+ - -0.8955012664518198
+ - 0.4068585530843502
+ - 0.7211391477723028
+ - -1.6960238443550406
+ - 1.321910917076574
+ - 2.2705276138850796
+ - -1.132374680451736
+ - -0.8260128832672786
+ - 0.26557888622129106
+ - 0.8517260499496275
+ - -1.7439386845410578
+ - 2.0179301991642618
+ - -1.657175893085602
+ - 0.7071146495832611
+ - 0.2283706092404961
+ - 0.016664097538215194
+ - -2.245317522532389
+ - -1.1994007709969665
+ - 2.0120891510203154
+ - -1.5683845281854125
+ - 0.5725452669939031
+ - 0.30653386070502203
+ - 0.19298451584071993
+ - -2.609880600692881
+ - -1.3129293190565459
+ - 1.9925364139543604
+ - -1.5101881227436862
+ - 0.4880219638334091
+ - 0.7032529423524815
+ - -1.65372977422967
+ - 2.0178106895175874
+ - -2.914446444258119
+ - -3.590942827298063
+ - 7.789973418718137e-16
+ - 1.5499296727712354e-15
+ - 2.2012310075801755e-16
+ - 9.10415661691176e-17
+ - -5.223645568272369e-17
+ - -1.0922919988762729e-16
+ - -2.1311274506663064e-16
+ - -1.571436368697614e-16
+ - -1.6559768122399477e-16
+ - -4.0986799352002515e-17
+ - 9.599431008677885e-17
+ - 4.450231695535289e-16
+ - -8.494110915153902e-17
+ - 8.741231123154119e-17
+ - -3.750230102162289e-17
+ - -2.826889743399972e-16
+ - -7.765158000341546e-17
+ - -7.262645778215583e-17
+ - -1.0213370275428424e-16
+ - 1.338585026263937e-16
+ - 3.4348674936264474e-17
+ - -5.724089838866952e-17
+ - -8.255262513279215e-17
+ - 3.3624891900280575e-17
+ - 2.4195032917176056e-17
+ - -3.9456515218779415e-16
+ - 1.7288074802358278e-17
+ - 1.2159555004529505e-17
+ - 3.510554519675049e-16
+ - 2.6173545544826333e-16
+ - -8.246990707153685e-17
+ - 3.4327995420950645e-18
+ - 2.749548356126264e-16
+ - 9.165161187087545e-17
+ - -3.781766363015873e-17
+ - -3.8827857953239114e-16
+ - -9.661469554619362e-17
+ - 5.82748741543608e-17
+ - -8.39588321741323e-17
+ - 4.435342444509334e-16
+ - -1.4459117107426924e-16
+ - 1.4355719530857795e-16
+ - 2.427775097843136e-16
+ - 2.0441700887716693e-17
+ - 1.3959965306539456e-17
+ - -1.217816656831195e-16
+ - -8.91080314872749e-17
+ - 6.2969124130599224e-18
+ - 7.610061635487855e-18
+ - 5.488343364289338e-17
+ - -4.218621124020441e-18
+ - 5.593744268904494e-17
+ - 8.266119258818973e-17
+ - 4.6652986547990755e-17
+ - -1.075334796318936e-18
+ - -6.005331247134981e-17
+ - 8.176680355086677e-17
+ - -1.6286410779344846e-17
+ - 5.612420456172293e-17
+ - 1.254832989242943e-16
+ - 8.929414712509933e-17
+ - 7.411021300592282e-18
+ - 5.979481852992699e-17
+ - -5.877118252189262e-17
+ - -1.74038800881157e-16
+ - -1.738733647586464e-16
+ - -6.276232897746097e-18
+ - -1.651776285691827e-18
+ - -4.135903062765138e-20
+ - 8.586134758300426e-17
+ - -5.463527945912747e-17
+ - 3.955991279534854e-17
+ - 6.088049308390284e-17
+ - -5.939156798130739e-17
+ - -1.558408274049904e-16
+ - -3.081247781760028e-17
+ - 2.9695783990653694e-17
+ - 1.0410068008979852e-16
+ - 8.081554584643079e-17
+ - -6.026010762448807e-17
+ - -7.345363839470886e-17
+ - -8.581998855237661e-17
+ - -2.1465336895751065e-17
+ - 1.406207041340147e-17
+ - -6.526455033043388e-17
+ - -5.939156798130739e-17
+ - -1.0567878560218484e-16
+ - -3.830880211886209e-17
+ - 4.963083675318165e-18
+ - -2.0735866993055864e-16
+ - 3.987010552505593e-17
+ - 4.2120036791200164e-16
+ - 2.1548054957006368e-16
+ - -5.033394027385173e-17
+ - -7.64728476305274e-17
+ - 2.7462396336760516e-17
+ - -1.2683522223793565e-16
+ - -9.098986738083304e-19
+ - -1.4459117107426924e-16
+ - -1.2742717336379391e-16
+ - 9.403621848050098e-17
+ - -1.018259334052777e-16
+ - 4.404736761844872e-17
+ - -8.735027268559971e-17
+ - -5.1698788284564224e-17
+ - 2.845501307182415e-17
+ - -3.8618994848569473e-17
+ - 2.5353085774750295e-17
+ - 4.5164061445395305e-17
+ - -1.6957202557337067e-17
+ - -4.206213414832145e-17
+ - 9.380228146351333e-17
+ - 5.136791603954301e-17
+ - -5.54624600716805e-17
+ - -5.1523012404396705e-17
+ - -5.407693254565418e-18
+ - -4.1855338995183194e-17
+ - -2.547716286663325e-17
+ - 1.9165774792853649e-16
+ - -6.1624955635200554e-18
+ - -1.0918784085699964e-17
+ - -4.7521526191171434e-17
+ - 1.7358385154425283e-16
+ - 8.850832554317396e-18
+ - 1.018259334052777e-16
+ - -7.113753267956038e-17
+ - 9.719372197498074e-18
+ - 2.5642598989143854e-18
+ - -1.6146565557035098e-16
+ - -1.0443155233481973e-16
+ - -1.6626330312315856e-17
+ - -1.19941188820189e-18
+ - -1.0453494991138886e-16
+ - -3.5444689247897236e-17
+ - -1.1075948402085039e-16
+ - -6.675347543302933e-17
+ - -2.3161057151484772e-17
+ - -1.1572256769616857e-16
+ - -6.919365824006077e-17
+ - 1.4392942658422682e-17
+ - -9.181704799338606e-17
+ - 8.048467360140958e-17
+ - -1.3855275260263212e-17
+ - -1.112351128730684e-16
+ - -5.9557004103817985e-18
+ - -1.1580528575742386e-17
+ - 1.0381116687540496e-16
+ - 1.5857052342641538e-16
+ - -6.057030035419545e-17
+ - -1.170460566762534e-17
+ - 1.6200332296851045e-16
+ - 1.9031357943313782e-16
+ - 7.059986528140091e-17
+ - -7.982292911136717e-18
+ - -7.051714722014561e-17
+ - 3.45347905740889e-18
+ - -1.2407709188295414e-17
+ - -6.480960099352972e-17
+ - -1.282957130069746e-16
+ - 8.300757446969631e-17
+ - 5.867683223327329e-17
+ - -1.416288305055637e-17
+ - 4.241368590865649e-17
+ - -3.914632248907203e-17
+ - -1.4301952791041848e-16
+ - -3.788487205492866e-17
+ - -1.2659999275124089e-16
+ - 2.115514416604368e-17
+ - -1.9134497025941487e-16
+ - 1.048865016717239e-16
+ - -1.2713766014940035e-16
+ - 2.8603905582083697e-16
+ - -3.236344146613721e-17
+ - 2.2003004293910533e-17
+ - -3.215406137358472e-17
+ - -1.1715979401047946e-16
+ - -1.2976395859425622e-16
+ - -6.675864531185779e-17
+ - -7.050060360789454e-16
+ - -5.687383699184911e-17
+- - 3.833641814499361
+ - 2.931029294471988
+ - -2.8656290996699165
+ - 4.3585838151112135
+ - -4.4397559241463505
+ - 2.9716909077673432
+ - -0.5843020449558547
+ - -1.9957497636693078
+ - 2.5847312627083734
+ - 4.366201289124314
+ - -5.1342530299429185
+ - -2.904585797126129
+ - 2.8195877059049934
+ - -0.38515772063087883
+ - -2.280745903912666
+ - 2.599566676933304
+ - 4.389997012468831
+ - 1.5718160496619487
+ - 0.409378647629576
+ - -2.861521538595922
+ - 4.3566811327435335
+ - -4.440652575880897
+ - 2.9752645867340104
+ - -0.5892116498847311
+ - -1.9911086316193736
+ - 2.4879249303833317
+ - 3.8369462306999385
+ - -4.512269260518152
+ - -2.7821439172051097
+ - 2.823310291301459
+ - -0.26864780909786395
+ - -2.276254933268358
+ - 2.603697257026761
+ - 4.4353920248298175
+ - -4.68749784537791
+ - -2.7067846888320926
+ - 2.5625139039242444
+ - -0.06846531538787384
+ - -2.4444404121090173
+ - 4.228476521919374
+ - -4.518840497434042
+ - 3.3457116072147794
+ - -3.6103710777858593
+ - -3.7607849516779757
+ - -4.418648803828552
+ - -4.466672360440943
+ - -5.918777368105747
+ - -5.834416082328407
+ - 4.192045494953603
+ - -4.5335428595565475
+ - 3.4079270484063264
+ - -1.0336546505423652
+ - -1.5713250943237498
+ - 3.6707394362023344
+ - -2.985628229128446
+ - -5.49937113733713
+ - 3.0080510478221836
+ - 1.9665747796833597
+ - -0.8415486875879294
+ - -1.7580620588745808
+ - 3.8550633447340825
+ - -2.9852046676714923
+ - -5.148030140704122
+ - 2.444567315039632
+ - 1.8072826457070976
+ - -0.5230699787400729
+ - -2.0509194016912895
+ - 3.9578046703111935
+ - -4.576238676765358
+ - 3.6407113350845037
+ - -1.5247265994678771
+ - -0.5846720458630017
+ - -0.16210309617140753
+ - 5.096430949746243
+ - 2.734576153541325
+ - -4.557011494426078
+ - 3.4359253450425413
+ - -1.2174399480004294
+ - -0.7639631703140631
+ - -0.5769542083673185
+ - 5.912854827698143
+ - 2.9858327586903792
+ - -4.506781726782659
+ - 3.2997578583246616
+ - -1.0270238290113824
+ - -1.719434773113888
+ - 3.761461426353521
+ - -4.588061122616726
+ - 6.546459963337566
+ - 8.072431655009343
+ - 7.354131281435963
+ - 5.898917717573057
+ - -4.430954955813648
+ - 4.3673199589883005
+ - -2.891187016180403
+ - 0.32922018715445817
+ - 2.219551848951994
+ - -4.052958808957075
+ - 3.146788780281579
+ - 5.956516126354229
+ - -2.302675986038282
+ - -1.6253307565142219
+ - 0.13319147936024409
+ - 2.3927783049072535
+ - -4.194206742948938
+ - 2.966939563390392
+ - 5.25114288152352
+ - -1.6949988958355646
+ - -1.4175132365074214
+ - -0.18884152785230743
+ - 2.6613913343818316
+ - -4.269834274304057
+ - 4.465368461555556
+ - -3.164362426324096
+ - 0.8364163650859647
+ - 1.0308055151718853
+ - 0.9730925084504471
+ - -5.234821314609242
+ - -2.887654580780509
+ - 4.416172158345349
+ - -2.923574209614844
+ - 0.5179232995478374
+ - 1.2140657118877884
+ - 1.452675191957466
+ - -5.7106207202869665
+ - -2.95569867697764
+ - 4.317342638377665
+ - -2.766285685803417
+ - 0.32241411699241823
+ - 2.356969629579917
+ - -4.123213752431015
+ - 4.556140991385678
+ - -7.275372812390559
+ - -7.292935992142502
+ - -4.092115814895013
+ - -3.9627823317410527
+ - -1.4806867825990135
+ - -1.285344049195369
+ - 2.2766244441331462
+ - -4.0836871029361115
+ - 4.5671829304753135
+ - -3.4773614796040273
+ - 1.2813916145074256
+ - 1.3324742019126588
+ - -2.204742196550661
+ - -3.5238862884317075
+ - 5.297296733716899
+ - 2.930112272298031
+ - -3.3462421560521824
+ - 1.0878740935648141
+ - 1.6372740436348556
+ - -2.3408097736051565
+ - -3.5224865687697386
+ - 4.723427035938109
+ - 2.864052006519544
+ - -3.1175203440306967
+ - 0.7724929802121678
+ - 1.8190324069349235
+ - -3.904748169348273
+ - 4.589903472822334
+ - -3.789341320481549
+ - 1.259757676567202
+ - 2.9750973735755246
+ - 3.3484550943499527
+ - 1.4954429961793614
+ - -4.004699816960624
+ - 4.571523253043936
+ - -3.598356217117524
+ - 1.1885161869733893
+ - 3.0659856847102502
+ - 4.158787897064394
+ - 1.8199141032343575
+ - -4.152168578932795
+ - 4.548445277327476
+ - -3.472897537776112
+ - 1.1282116008978436
+ - 1.479770410413346
+ - -3.612159674705573
+ - 6.007678338783779
+ - 7.246292450927141
+ - -1.985233470127266e-17
+ - -8.594406564425957e-16
+ - -1.132410258585095e-16
+ - 2.3425754947501744e-16
+ - -5.277412308088316e-17
+ - 7.543887186483611e-17
+ - 2.693300074472658e-16
+ - 8.3876114112877e-17
+ - -2.8885146990351726e-16
+ - 1.4823076576950256e-16
+ - 7.4859845436049e-18
+ - -4.566036981292713e-16
+ - 1.6857940883830702e-16
+ - -3.211115137930853e-16
+ - 5.608284553109528e-17
+ - 2.765678378071048e-16
+ - -4.714929491552257e-18
+ - -9.615974620928945e-18
+ - 1.6071085326139634e-16
+ - -1.390077019395363e-16
+ - 4.384057246531046e-17
+ - 1.952146245625145e-16
+ - 3.8488713902092373e-16
+ - 3.542400973258341e-17
+ - 1.2912289361952762e-16
+ - 7.6663099171414595e-16
+ - -2.1109649232353264e-16
+ - -8.337980574534518e-17
+ - -4.404736761844872e-16
+ - -2.665899716681839e-16
+ - 3.7653261483413815e-16
+ - 3.5072457972248373e-17
+ - -1.1613615800244509e-16
+ - -2.268129239620402e-16
+ - -6.633988512675282e-17
+ - 4.599124205794834e-16
+ - -3.937379715752411e-17
+ - -1.8992066864217513e-16
+ - -2.729696021424991e-17
+ - -5.434163034167115e-16
+ - 2.9216019235372937e-16
+ - -2.134125980386811e-17
+ - -2.875279809234324e-16
+ - 5.730293693461099e-17
+ - 1.1299287167474358e-16
+ - 3.748782536090321e-16
+ - 1.4847891995326847e-16
+ - -3.9770843851549566e-16
+ - -2.57087734381481e-16
+ - 7.543887186483611e-17
+ - 3.284320622141796e-16
+ - -2.4732700315335524e-17
+ - -1.826621587670223e-16
+ - -1.3334151474354806e-16
+ - -5.280721030538529e-16
+ - 1.2593824826119845e-17
+ - -2.506357256035674e-16
+ - 6.832511859688009e-17
+ - -1.8462671272183575e-16
+ - -1.223400125965928e-16
+ - -8.867376166568455e-17
+ - -7.46116912522831e-17
+ - -1.729221070542104e-16
+ - 1.8826630741706907e-16
+ - 2.2499312661442353e-16
+ - 6.683619349428464e-17
+ - -1.0041972636393755e-16
+ - 6.017738956323276e-17
+ - -1.3234889800848441e-17
+ - -7.436353706851719e-17
+ - 3.179682274653838e-16
+ - 3.240893639982762e-16
+ - -1.840270067777348e-16
+ - -2.5973471234165066e-17
+ - 4.0697286137608957e-16
+ - -1.2639319759810263e-16
+ - -4.433688083284228e-17
+ - -3.325266062463171e-16
+ - -3.705769144237564e-17
+ - 1.3524403015242001e-17
+ - 2.448454613156962e-16
+ - 3.6131249156316244e-16
+ - 5.343586757092558e-17
+ - 2.192028623265523e-16
+ - 4.350970022028925e-17
+ - 3.0936554909483235e-17
+ - 1.0066788054770346e-16
+ - -4.896909226313923e-17
+ - -8.410772468439184e-16
+ - -1.0257039595657542e-17
+ - -3.897675046349866e-16
+ - -7.011182871999462e-16
+ - -3.8281918748954116e-16
+ - 7.254373972090053e-17
+ - 4.8472783895607416e-17
+ - 1.046124980938157e-17
+ - 6.915229920943311e-17
+ - -1.257314531080602e-16
+ - 3.2028433318053227e-16
+ - 1.0935327697951025e-16
+ - -1.469693153353592e-16
+ - 5.143409048854726e-16
+ - 9.231335636091788e-17
+ - 2.567568621364598e-16
+ - 3.265709058359353e-16
+ - 9.082443125832243e-17
+ - -6.501639614666798e-17
+ - 4.8658899533431847e-17
+ - 1.9620724129757814e-16
+ - -3.5692843431663144e-17
+ - 1.3085997290588898e-16
+ - -1.0422475718168147e-16
+ - -2.1101377426227734e-16
+ - 2.006740166053645e-16
+ - -2.1821024559148868e-16
+ - 5.823351512373315e-17
+ - -2.762783245927112e-17
+ - -1.0112282988460762e-17
+ - 1.3615392882622836e-16
+ - 7.28074035411518e-17
+ - 5.004442705945817e-17
+ - 6.460280584039146e-17
+ - -4.345179757741054e-16
+ - 0.0
+ - -3.654587343835845e-16
+ - 2.5262095907369465e-16
+ - -7.876504265609426e-17
+ - -2.6924728938601048e-17
+ - -5.7065122508502e-17
+ - 2.0183206946293872e-17
+ - -1.9571093293004632e-16
+ - -1.1603276042587596e-16
+ - 1.3899219230305093e-16
+ - 1.6345088904047824e-16
+ - -4.532949756790591e-17
+ - -3.0208635970436566e-16
+ - 1.8439923805338367e-16
+ - 2.395515053953568e-16
+ - 4.016789054557502e-16
+ - -3.2756352257099896e-17
+ - 2.901749588836021e-16
+ - -1.8905212899899445e-16
+ - -4.532949756790591e-17
+ - -1.7767839557639032e-16
+ - 7.318894059869188e-16
+ - -1.2076836943274203e-17
+ - 2.0348643068804478e-17
+ - 4.109433283163441e-16
+ - 7.543887186483611e-17
+ - -1.1828682759508296e-16
+ - -5.848166930749906e-16
+ - -2.9166388398619756e-16
+ - -1.6047303883528734e-16
+ - -6.154223757394526e-17
+ - -5.939156798130739e-16
+ - 2.134125980386811e-17
+ - -2.68833699079734e-16
+ - -4.054839362734941e-16
+ - -6.617444900424221e-17
+ - -3.3695202252347577e-16
+ - -8.036059650952663e-17
+ - 1.0288575856511126e-16
+ - -1.1849362274822121e-16
+ - 9.669741360744892e-17
+ - 6.761374327008447e-16
+ - 1.4227506535912076e-16
+ - 2.486504921334401e-16
+ - -1.8859717966209029e-16
+ - 2.752857078576476e-16
+ - -1.2688950596563445e-16
+ - 2.4104043049795226e-16
+ - -1.3995895964397228e-16
+ - 2.3773170804774015e-16
+ - -3.474158572722716e-17
+ - 6.778745119872062e-17
+ - 2.5295183131871586e-16
+ - 7.543887186483611e-17
+ - 6.154223757394526e-17
+ - 2.785944303078597e-16
+ - 8.32474568473367e-16
+- - 3.2626531690765965
+ - 2.5321104663780747
+ - -2.2935477624303613
+ - 3.1652812051741632
+ - -3.012054121470335
+ - 1.7972819141624372
+ - -0.04218383857653014
+ - -1.7290744405734284
+ - 1.952944994205236
+ - 3.3862835902583552
+ - -3.3414212482838455
+ - -1.9342915210602003
+ - 1.6808802586618574
+ - 0.09885282571391595
+ - -1.9163825807550607
+ - 1.937190958186814
+ - 3.1234796017493176
+ - 1.5033534675616373
+ - 0.5246061616435301
+ - -2.2904723471072614
+ - 3.163621836931218
+ - -3.0123275304910395
+ - 1.7995304096811269
+ - -0.0455499309653598
+ - -1.7256992792907662
+ - 1.8732822705794347
+ - 2.973099388224771
+ - -2.938739693058656
+ - -1.8582985704414532
+ - 1.6832421696345923
+ - 0.18110053870962484
+ - -1.9130890241941614
+ - 1.9420085535697014
+ - 3.392122282116828
+ - -3.015714530081967
+ - -1.7880246629046095
+ - 1.485618969097834
+ - 0.32169283761530415
+ - -2.0225725715278617
+ - 3.10134902277794
+ - -3.0956042623136875
+ - 2.087009115560901
+ - -1.930532841208327
+ - -2.0498906095177034
+ - -3.0187114534750665
+ - -3.0752094364110807
+ - -4.588772962855214
+ - -4.547116972540795
+ - 3.0826879467151085
+ - -3.1129032339328337
+ - 2.136004541635449
+ - -0.36285867287439355
+ - -1.446336120575051
+ - 2.7893965596086763
+ - -2.1160675970768135
+ - -3.970866663243935
+ - 1.7129016420573435
+ - 1.1924710404409347
+ - -0.2252384696280069
+ - -1.5711098026843686
+ - 2.8970555512176763
+ - -2.0971873629412396
+ - -3.686695038508815
+ - 1.3350260544899368
+ - 1.0725476101864941
+ - 0.0013636573472105976
+ - -1.7651688486807187
+ - 2.9554474276263307
+ - -3.171838422005492
+ - 2.3213131324762677
+ - -0.7178063928520557
+ - -0.644829400478496
+ - -0.5365129821693215
+ - 3.6686431996612043
+ - 2.009507705247542
+ - -3.142661155038791
+ - 2.158070479182627
+ - -0.4951199717830358
+ - -0.7802343668906165
+ - -0.8846609152216742
+ - 4.219026506238258
+ - 2.168659350915249
+ - -3.0819146739703234
+ - 2.051004654717182
+ - -0.358096961787828
+ - -1.5453425576932311
+ - 2.842760906756066
+ - -3.221270725793205
+ - 4.479941523356019
+ - 5.546252844352152
+ - 5.429847967869341
+ - 4.375017063210359
+ - -3.1958213622038425
+ - 2.9409124602563166
+ - -1.7351486661763056
+ - -0.13839785906319063
+ - 1.8760050590449766
+ - -3.0083961165754514
+ - 2.1947338078039977
+ - 4.22610502148936
+ - -1.1642128357180814
+ - -0.919761445518793
+ - -0.2763325816468581
+ - 1.9890776693626446
+ - -3.0838902495248743
+ - 2.0471501874487186
+ - 3.6937148103713637
+ - -0.7848247834370353
+ - -0.7797359810351809
+ - -0.5014115640174477
+ - 2.1626646499269486
+ - -3.1222007999901447
+ - 3.037679212699986
+ - -1.9455381845830455
+ - 0.22157985380207915
+ - 0.9467682121859009
+ - 1.0966610397043361
+ - -3.7007627300903865
+ - -2.0813856829224475
+ - 2.9879656883022028
+ - -1.7599074670488553
+ - -0.005026913010996671
+ - 1.070572205446856
+ - 1.4609336421405106
+ - -4.005106691652765
+ - -2.1112205708484577
+ - 2.8941581917315093
+ - -1.6399038314643961
+ - -0.14319844735250256
+ - 1.9657491758582044
+ - -3.0464341644168464
+ - 3.1416850370407143
+ - -4.7805789937322904
+ - -4.811431920142279
+ - -3.01442538351103
+ - -2.944732815341071
+ - -1.6794307084437943
+ - -1.5527770123120608
+ - 1.913656250790912
+ - -3.0258235498719586
+ - 3.15758679513376
+ - -2.191456945988544
+ - 0.5415765141134516
+ - 1.28586081812291
+ - -1.7069076875531997
+ - -2.827288457364861
+ - 3.53366375676172
+ - 1.9958319802134183
+ - -2.0879630137036997
+ - 0.4020169514818383
+ - 1.4907156444217926
+ - -1.7870900764041886
+ - -2.778593935522327
+ - 3.118485222660342
+ - 1.9351751909405297
+ - -1.90969457680523
+ - 0.17613491099044007
+ - 1.6118963823694754
+ - -2.9261177730334587
+ - 3.2027000677654387
+ - -2.4423348134876717
+ - 0.6632391969387542
+ - 1.7323572267044551
+ - 2.6689367623822156
+ - 1.25442379132993
+ - -2.982442629396814
+ - 3.1639582388474796
+ - -2.2878439730982745
+ - 0.5968015866355896
+ - 1.7294349967652405
+ - 3.2580255837990735
+ - 1.4799978026684848
+ - -3.062560671354031
+ - 3.1317954052048718
+ - -2.187917485829105
+ - 0.4310669561924877
+ - 1.3850832479395807
+ - -2.755188195581685
+ - 4.434641423282315
+ - 5.372957641027573
+ - -1.3689839137752608e-16
+ - -7.551331811996589e-16
+ - -1.0422475718168147e-16
+ - 1.682485365932858e-16
+ - -2.3491929396505983e-17
+ - 7.386722870098537e-17
+ - 2.3475385784254925e-16
+ - 6.749793798432706e-17
+ - -1.8082168190409183e-16
+ - 8.271806125530276e-17
+ - -1.6005944852901086e-17
+ - -4.0366413892587746e-16
+ - 7.411538288475128e-17
+ - -2.6684846560960673e-16
+ - 4.586716496606538e-17
+ - 2.4699613090833406e-16
+ - 5.045801736573468e-18
+ - 1.2697222402688973e-17
+ - 1.4001065843225685e-16
+ - -6.828375956625243e-17
+ - 2.9778502051908992e-18
+ - 1.3565762045869654e-16
+ - 2.515456242773757e-16
+ - 9.326461406535387e-18
+ - 9.330597309598151e-17
+ - 6.440428249337872e-16
+ - -1.5402103005737373e-16
+ - -5.434576624473391e-17
+ - -3.541987382952064e-16
+ - -2.1700049394562987e-16
+ - 2.418676111105053e-16
+ - 2.4815418376590827e-17
+ - -1.252351447405284e-16
+ - -1.9405657170494027e-16
+ - -8.031923747889897e-17
+ - 3.927453548401775e-16
+ - -3.821574429994987e-17
+ - -1.444774337400432e-16
+ - 1.0670629901934055e-17
+ - -4.161132071448005e-16
+ - 1.7800926782141153e-16
+ - -5.757177063369073e-17
+ - -2.658558488745431e-16
+ - 2.508425207567056e-17
+ - 8.900463391070577e-17
+ - 3.068840072571732e-16
+ - 1.1013909856143562e-16
+ - -2.31817366667986e-16
+ - -1.647743780205631e-16
+ - 4.5494933690416516e-17
+ - 2.2189119931734965e-16
+ - -3.532061215601428e-17
+ - -1.352957289407046e-16
+ - -7.618333441613384e-17
+ - -3.518826325800579e-16
+ - 1.7189847104617606e-17
+ - -1.6882756302207292e-16
+ - 4.940336208472957e-17
+ - -1.2713766014940035e-16
+ - -4.35510592509169e-17
+ - -6.741521992307176e-17
+ - -4.946540063067105e-17
+ - -1.2482155443425188e-16
+ - 1.403725499502488e-16
+ - 1.9025154088719634e-16
+ - 3.490702184973777e-17
+ - -2.93390623514902e-17
+ - 3.382134729576192e-17
+ - 1.3234889800848441e-17
+ - -6.137680145143465e-17
+ - 2.547716286663325e-16
+ - 2.393860692728462e-16
+ - -1.4051730655744558e-16
+ - -2.249931266144235e-17
+ - 3.6156064574692835e-16
+ - -6.964860757696493e-17
+ - -2.605618929542037e-17
+ - -2.2590302528823186e-16
+ - -2.862044919433476e-17
+ - 2.304731981725873e-17
+ - 1.743696731261782e-16
+ - 2.481541837659083e-16
+ - 4.1276312566396075e-17
+ - 1.4264729663476962e-16
+ - 3.714040950363094e-17
+ - 3.010937429693021e-17
+ - 9.58702329948959e-17
+ - -1.5137405209720406e-17
+ - -5.315462616265756e-16
+ - 1.852884572118782e-17
+ - -2.9381455357883543e-16
+ - -4.896909226313924e-16
+ - -2.896786505160703e-16
+ - 7.246102165964522e-17
+ - 5.2939559203393765e-17
+ - 2.10103875588469e-17
+ - 3.73472046567692e-17
+ - -6.063233890013693e-17
+ - 2.2118809579667958e-16
+ - 8.834288942066334e-17
+ - -1.2491978213199255e-16
+ - 3.422873374744428e-16
+ - 4.888637420188393e-17
+ - 2.0778776987332053e-16
+ - 2.7942161092041275e-16
+ - 1.0281855014034133e-16
+ - -4.6404832364224846e-17
+ - 1.8895907118008223e-17
+ - 1.5137405209720404e-16
+ - -3.817438526932222e-17
+ - 7.924390268258004e-17
+ - -7.990564717262246e-17
+ - -1.6138293750909567e-16
+ - 1.3565762045869654e-16
+ - -1.4798261158573665e-16
+ - 7.328820227219825e-17
+ - 8.602678370551488e-18
+ - -2.522900868286734e-18
+ - 1.1001502146955267e-16
+ - 2.9488988837515437e-17
+ - 9.760731228125725e-18
+ - 6.193514836490795e-17
+ - -3.124261173612785e-16
+ - 5.045801736573468e-18
+ - -2.4240527850866476e-16
+ - 2.4302566396807953e-16
+ - -4.344766167434777e-17
+ - -3.087451636354176e-17
+ - -1.9097532392318023e-17
+ - 1.2242273065784808e-17
+ - -1.3334151474354806e-16
+ - -6.440635044491012e-17
+ - 1.2133705610387225e-16
+ - 1.0740940254001063e-16
+ - 8.602678370551488e-18
+ - -2.3194144375986896e-16
+ - 1.282129949457193e-16
+ - 1.0273583207908602e-16
+ - 2.838883862281991e-16
+ - -3.0936554909483235e-17
+ - 1.7842285812768804e-16
+ - -1.3937993321518516e-16
+ - -2.5642598989143855e-17
+ - -8.40415502353876e-17
+ - 5.174841912131741e-16
+ - -1.522012327097571e-17
+ - 4.0531850015098356e-18
+ - 2.93152809088793e-16
+ - 6.021874859386041e-17
+ - -7.17165591083475e-17
+ - -4.0711761798328635e-16
+ - -2.1899606717341405e-16
+ - -1.1398548840980721e-16
+ - -2.8785885316845363e-17
+ - -4.0349870280336685e-16
+ - 2.8951321439355965e-18
+ - -1.8413040435430394e-16
+ - -2.929046549050271e-16
+ - -4.4006008587821066e-17
+ - -2.4488682034632384e-16
+ - -6.491299857009885e-17
+ - 7.894921958935802e-17
+ - -7.465305028291075e-17
+ - 8.569591146049365e-17
+ - 4.922965415609344e-16
+ - 9.392635855539628e-17
+ - 1.8404768629304863e-16
+ - -1.407861402565253e-16
+ - 1.9951596374779025e-16
+ - -7.701051502868686e-17
+ - 1.6411263353052067e-16
+ - -1.0058516248644815e-16
+ - 1.6692504761320096e-16
+ - -2.3036980059601818e-17
+ - 4.599124205794833e-17
+ - 1.7978770613840054e-16
+ - 6.336203492156192e-17
+ - 3.987010552505593e-17
+ - 2.9712327602904754e-16
+ - 6.865599084190129e-16
+- - 4.197064972647805
+ - 3.5262548733532246
+ - -1.912252735329304
+ - 0.1832522678104962
+ - 1.6025983905560635
+ - -2.9177187558200184
+ - 3.1980177739855193
+ - -2.4427864141629794
+ - 0.7484508765854921
+ - 2.0005897932083996
+ - 3.0490209543310693
+ - 1.3542245105815343
+ - -2.974224885674684
+ - 3.176156189483138
+ - -2.2889655594064227
+ - 0.5253744439613156
+ - 1.5037308952404862
+ - 3.1177075287627303
+ - 1.9340681299878322
+ - -1.9113103597018757
+ - 0.18084108683525874
+ - 1.6057346141874858
+ - -2.9205008633974625
+ - 3.1994936534241707
+ - -2.4425521557561907
+ - 0.665449635697957
+ - 1.7352347417047254
+ - 2.661852784837174
+ - 1.2503652446019433
+ - -2.9769518823320866
+ - 3.1611209691002324
+ - -2.288502997678698
+ - 0.5408798326905898
+ - 1.6290330188413233
+ - 3.078488582698666
+ - 1.3846375666599682
+ - -3.05730429530601
+ - 3.1291964142600737
+ - -2.188852273926459
+ - 0.4354565228181658
+ - 1.3790197273767777
+ - -2.7493102970948935
+ - 5.678534547297419
+ - 5.586820199925385
+ - 1.4180649469424484
+ - 1.2337074281103555
+ - -2.698186165029726
+ - -2.8599573565342338
+ - 0.4996726129560127
+ - 1.3225550226117802
+ - -2.7145381154437356
+ - 3.226800179726292
+ - -2.639865338023954
+ - 1.196991651940131
+ - 0.3142409391008251
+ - -0.038314496844106934
+ - -3.8504369962018647
+ - -1.9048553536590984
+ - 3.2189331840459636
+ - -2.556316630426386
+ - 0.9837942736230246
+ - 0.47087835332753075
+ - 0.2211884948955769
+ - -3.6098822280382175
+ - -1.9473328952770412
+ - 3.1928328388637466
+ - -2.4116237913973997
+ - 0.8513235907899287
+ - 1.0852488844409085
+ - -2.5676615825086677
+ - 3.2202949870779265
+ - -1.8817503923033234
+ - -3.538416698991854
+ - -0.05959125432614258
+ - 0.31407641347935256
+ - 1.2143647061950655
+ - -2.6987280563045157
+ - 3.2292437528178524
+ - -1.9331427828523242
+ - -3.9511533750473107
+ - -0.3838320236880776
+ - 0.12802154556469442
+ - 1.4211154125802987
+ - -2.77340991022093
+ - 3.2266193241415766
+ - -2.5739546171046706
+ - 1.0951921448156052
+ - 0.7403121927368846
+ - -2.0371372234026897
+ - -2.3261290728591306
+ - 1.0609197299804383
+ - 1.0163925253410795
+ - -0.0006008300783142588
+ - -1.7619530748891323
+ - 2.9520811633683635
+ - -3.1694188257885485
+ - 2.320682257763085
+ - -0.7190735399729828
+ - -0.6310350961771879
+ - -0.5896846308412883
+ - 4.187332941164634
+ - 2.1291190510833355
+ - -3.140347675878193
+ - 2.2206264449495583
+ - -0.4966166743735512
+ - -0.7817304108707508
+ - -0.7891206044436642
+ - 3.6907392359840117
+ - 2.0459764670109477
+ - -3.0797863632523996
+ - 2.050729709122054
+ - -0.3597216714228437
+ - -1.5422371123326537
+ - 2.8393442977597854
+ - -3.2185693234862005
+ - 1.7145511815374694
+ - 3.3295851021566474
+ - 0.6304176518954441
+ - 0.010828530887202523
+ - -1.6622420791839858
+ - 2.9402683068428432
+ - -3.1924230057332506
+ - 1.6439768013884468
+ - 3.4845995041279005
+ - 0.9577545030683475
+ - 0.17308181106606457
+ - -1.852214827693228
+ - 2.9956016951121764
+ - -3.1685075906744515
+ - 2.241674981964441
+ - -0.6125534432280118
+ - -1.217239367952983
+ - 3.935150611228742
+ - 3.781743479583626
+ - -0.5317711559116999
+ - -0.7306741806800221
+ - -5.156772611080638
+ - -5.276802612965027
+ - 2.291046503009089
+ - -0.6791394790721395
+ - -1.150309787020494
+ - 2.669225111668169
+ - -3.2264420341997306
+ - 2.7393070357394063
+ - -0.9847554394604672
+ - -2.4096478834586375
+ - -2.419470653830847
+ - -0.9904989623577175
+ - 2.7445075387160323
+ - -3.2263479535984647
+ - 2.6130109268518584
+ - -0.8333541370185005
+ - -2.007539040960464
+ - -2.430332525925718
+ - -1.1002310337407033
+ - 2.8567160767691684
+ - -3.213014725667766
+ - 2.529450005803526
+ - -0.9266543298497802
+ - -0.9080769766187686
+ - 2.4510802970242955
+ - -2.0688985044733887
+ - -3.485939249351948
+ - 2.1412832571376716
+ - 1.4830216061860741
+ - -0.7937115714015811
+ - -1.1229684683629968
+ - 2.5922942349561895
+ - -2.195864997650054
+ - -4.063373838924962
+ - 2.180490669044184
+ - 1.4118050930878647
+ - -0.5724379140109414
+ - -1.2538170687130992
+ - 2.671913892087115
+ - -3.226708717694603
+ - 2.6801640845591232
+ - -1.2647573878249385
+ - 0.857722037057087
+ - 1.237071389858687
+ - -1.0477896819209202e-15
+ - -1.2084074773634041e-15
+ - -2.450108974382068e-16
+ - -1.2149215246872594e-16
+ - 1.5211851464850176e-16
+ - 1.4603873714623704e-16
+ - 3.262813926215417e-16
+ - 1.56006263527501e-16
+ - 3.839772403471154e-16
+ - -1.6270642648918052e-16
+ - -1.807467186610792e-16
+ - -6.246661190847326e-16
+ - -2.922429104149847e-16
+ - -1.8648786910008006e-16
+ - -8.602678370551488e-18
+ - 2.93152809088793e-16
+ - 6.894550405629486e-17
+ - 1.5005056311711922e-16
+ - 2.1320580288554286e-16
+ - 2.3806258029276136e-16
+ - -2.0250415371063806e-16
+ - -1.0697513271842029e-16
+ - -1.8164886251664485e-16
+ - -1.2035477912646553e-16
+ - -3.441071348220595e-17
+ - 6.3808712452340545e-16
+ - 3.101927297073854e-17
+ - 6.220398206398768e-17
+ - -3.2028433318053227e-16
+ - -2.102693117109796e-16
+ - -2.4947767274599315e-16
+ - -2.072087434445334e-17
+ - -2.7611288847020064e-16
+ - -1.1444043774671138e-16
+ - -1.4409486270673742e-16
+ - 4.403909581232319e-16
+ - 1.0339757656912844e-17
+ - -4.218621124020441e-18
+ - 2.425913941464892e-16
+ - -2.3893111993594204e-16
+ - -2.008394527278751e-16
+ - -2.8537731133079455e-16
+ - -4.932891582959981e-16
+ - -1.1569154842319783e-16
+ - 1.41654679899706e-17
+ - 1.5180832191879438e-16
+ - 2.3946878733410148e-17
+ - 6.169113008420479e-16
+ - 1.861156378244312e-16
+ - -8.544775727672775e-17
+ - -1.8446127659932515e-16
+ - -1.0957041189030542e-16
+ - -2.808278179617529e-17
+ - 1.4591466005435408e-16
+ - 2.9149844786368695e-16
+ - 8.735027268559971e-17
+ - 1.16384312186211e-16
+ - 2.3905519702782497e-17
+ - 4.9299964508160443e-17
+ - 2.1490152314127657e-16
+ - -3.898088636656142e-17
+ - 9.926167350636332e-19
+ - -5.6248281653605874e-18
+ - 1.141509245323178e-17
+ - 2.1969917069408413e-16
+ - -6.410649747285964e-18
+ - 2.5584696346265146e-16
+ - -9.942710962887391e-17
+ - 1.7891916649521986e-16
+ - -2.6640385603035944e-17
+ - 1.108422020821057e-17
+ - -8.987317355388644e-17
+ - -6.154223757394526e-17
+ - 3.230140292019573e-17
+ - 3.0001840817298314e-16
+ - 2.199266453625362e-16
+ - 1.2986735617082533e-17
+ - 1.3325879668229276e-16
+ - -1.861156378244312e-19
+ - 1.1353053907290305e-16
+ - -6.840783665813539e-17
+ - -1.9091328537723876e-16
+ - 3.5403330217269584e-17
+ - -1.6622194409253089e-16
+ - 7.02689930363797e-17
+ - 9.628382330117241e-17
+ - 1.4558378780933287e-16
+ - 1.6965474363462595e-16
+ - 6.692718336166546e-16
+ - 2.5510250091135373e-16
+ - 2.3516744814882577e-16
+ - -7.841672207002701e-17
+ - -9.396771758602393e-17
+ - 1.3245229558505356e-16
+ - 1.050519377942345e-16
+ - 1.2738581433316626e-16
+ - 5.0209863181968774e-17
+ - 2.6742749203839385e-16
+ - -8.519960309296184e-17
+ - 8.488941036325445e-17
+ - -1.1753202528612832e-16
+ - -3.0415431123574823e-16
+ - -1.3985556206740315e-16
+ - 1.473725658839788e-16
+ - 2.261925385026254e-16
+ - 2.0770505181206522e-16
+ - -1.1580528575742387e-18
+ - -1.316044354571867e-16
+ - 1.0050244442519285e-17
+ - -5.0292581243224076e-17
+ - -7.788939442952446e-17
+ - -8.203563724994651e-17
+ - -7.105481461830508e-17
+ - -9.380228146351333e-17
+ - 1.3847003454137683e-16
+ - 1.3383782311107988e-16
+ - 2.1821024559148868e-16
+ - 5.219509665209604e-17
+ - -4.359241828154455e-17
+ - -1.4839620189201316e-16
+ - -1.5435190230239494e-16
+ - 7.473576834416605e-17
+ - 1.748453019783962e-16
+ - 6.143367011854767e-17
+ - 1.5269754107728888e-16
+ - 1.6394719740801006e-16
+ - 6.716706573930585e-17
+ - -8.590270661363191e-17
+ - 2.753684259189029e-16
+ - 4.119359450514077e-17
+ - 1.4690727678941772e-16
+ - 1.8044945062844296e-16
+ - 1.9774786518845815e-16
+ - -8.705041971354924e-17
+ - 2.965442496002604e-16
+ - 3.875341169810934e-17
+ - -5.430440721410626e-17
+ - -3.8877488789992296e-16
+ - -9.330597309598151e-17
+ - -7.758954145747398e-17
+ - -1.3869750920982892e-16
+ - -4.173126190330024e-17
+ - 5.543144079870976e-17
+ - 3.899329407574972e-16
+ - -2.6188538193428856e-16
+ - -9.429858983104514e-18
+ - -1.3091167169417354e-16
+ - -2.0532690755097527e-16
+ - 8.205631676526033e-17
+ - 1.050519377942345e-16
+ - 1.7039920618592368e-16
+ - -1.6081425083796547e-16
+ - 1.5385559393486315e-17
+ - 1.2755125045567687e-16
+ - 4.3890203302063643e-16
+ - -9.363684534100272e-17
+ - 7.146840492458159e-17
+ - 1.0674765804996821e-16
+ - 1.6063847495779795e-16
+ - 5.939156798130739e-17
+ - 1.4227506535912076e-17
+ - 4.954811869192635e-17
+ - 9.405043564727923e-17
+ - 8.408290926601525e-17
+ - -1.315217173959314e-16
+ - -1.1310660900896962e-16
+ - 3.099859345542471e-17
+ - -1.493061005658215e-17
+ - 3.962195134129002e-17
+ - -2.3946878733410148e-17
+ - -8.342116477597283e-17
+ - -5.906069573628618e-17
+ - -3.7181768534258594e-17
+ - -3.470022669659951e-17
+ - -2.3802122126213368e-17
+ - -4.648755042548015e-17
+ - 1.0670629901934056e-16
+ - -4.030437534664627e-17
+ - 7.284979654754514e-16
+ - 3.793036698861908e-16
+- - 5.282864643260694
+ - 4.472889353805485
+ - -2.2742670654197825
+ - -0.266348392713563
+ - 2.717265328906313
+ - -4.340971547155264
+ - 4.441047567203941
+ - -3.102671642102199
+ - 0.7166390943924098
+ - 2.2170817271555596
+ - 4.776909044412098
+ - 2.195688060433443
+ - -4.400180067638137
+ - 4.387545732076875
+ - -2.8585980867973437
+ - 0.4099302440096571
+ - 1.5713887118434697
+ - 4.382057664139972
+ - 2.5953631710177176
+ - -2.2734678094974905
+ - -0.2694187603245396
+ - 2.721660178704298
+ - -4.345195283342942
+ - 4.443640296202512
+ - -3.1029027632066493
+ - 0.6146550039976522
+ - 1.9171014384314717
+ - 4.173882934138181
+ - 2.039190769643771
+ - -4.404343277339252
+ - 4.353173010757634
+ - -2.8585012668283296
+ - 0.43063691496463574
+ - 1.7009559577833155
+ - 4.764208552081897
+ - 2.2138070069308085
+ - -4.483258922805473
+ - 4.285793199351654
+ - -2.7023347277590597
+ - 0.09384881662299013
+ - 2.4210070625808706
+ - -4.155099292234704
+ - 8.19078737822813
+ - 8.083237466087398
+ - 2.462501905658859
+ - 2.2161767677442157
+ - -2.9866108487859164
+ - -3.2177570832198064
+ - 0.1859538918397064
+ - 2.3455640080764444
+ - -4.114944718576188
+ - 4.5336708187520465
+ - -3.4224120258801505
+ - 1.2010216548679316
+ - 0.7836209527443418
+ - 0.5997605448138383
+ - -5.620318178900765
+ - -2.8371750533688673
+ - 4.500139153256795
+ - -3.2860565120502536
+ - 0.8877183325414253
+ - 0.9976969366713137
+ - 0.9128425678927119
+ - -5.224658947026316
+ - -2.8763535914012506
+ - 4.426692238057466
+ - -3.053530558115902
+ - 0.6944442331785428
+ - 2.026224082355133
+ - -3.941768981651727
+ - 4.5830129010496785
+ - -2.5030549672003484
+ - -4.817858959969952
+ - -0.6858171860582865
+ - 0.10507193625838578
+ - 2.200448781978759
+ - -4.096653222496228
+ - 4.5588074116424435
+ - -2.552048693116337
+ - -5.332885997595334
+ - -1.2258755397205825
+ - -0.1790636915781699
+ - 2.4771234549777716
+ - -4.182596750382682
+ - 4.532640250436698
+ - -3.314748054137777
+ - 1.051100354939968
+ - 1.5560916531207438
+ - -3.561106358025745
+ - -4.1371188185098955
+ - 0.5782156231594
+ - 0.6899116084848546
+ - 0.524618967146638
+ - -2.9265152550846842
+ - 4.37840144789597
+ - -4.371695312551781
+ - 2.909216391759048
+ - -0.5023713022735015
+ - -1.2357949876811858
+ - -1.5124563655722043
+ - 5.997227068775867
+ - 3.103285485955393
+ - -4.308709763614306
+ - 2.7518963681455464
+ - -0.18151851630060445
+ - -1.4204707986423475
+ - -1.701442222889408
+ - 5.246314334911713
+ - 2.964984315396734
+ - -4.18773467082685
+ - 2.48779041949086
+ - 0.014587498329020475
+ - -2.637785716937104
+ - 4.256679507517614
+ - -4.499032079753462
+ - 2.221589055731097
+ - 4.436220431931711
+ - 1.4825569877366938
+ - 0.3572321749395738
+ - -2.795999125332724
+ - 4.366092424328433
+ - -4.4255213510779745
+ - 2.1033808805073075
+ - 4.591260166332734
+ - 1.9864528446519456
+ - 0.5871043168367653
+ - -3.0439747303311853
+ - 4.423083545286698
+ - -4.369647930132261
+ - 2.7849182165623443
+ - -0.3484249796812373
+ - -2.20426965587564
+ - 6.242150417774223
+ - 6.034516506692149
+ - -0.24168211735754155
+ - -0.5289232333440308
+ - -6.873850771878952
+ - -7.061090944560902
+ - 2.8619391160809324
+ - -0.44413699021961484
+ - -2.1140861219760105
+ - 4.06123668901189
+ - -4.562558803630679
+ - 3.58668166518178
+ - -1.0847324903182796
+ - -2.8761628070139404
+ - -3.9356285467282874
+ - -1.7014934625233973
+ - 4.148603949834187
+ - -4.539483043789872
+ - 3.3778866571582684
+ - -0.8616284515753361
+ - -2.326635724318275
+ - -3.8824272820210504
+ - -1.8436655719959267
+ - 4.274872749510806
+ - -4.483859106238634
+ - 3.2421014670069748
+ - -0.8037133692853405
+ - -1.7856454021713704
+ - 3.800027297192188
+ - -2.9776095249864487
+ - -5.118142125527156
+ - 2.530104105101404
+ - 1.8499842349250781
+ - -0.6101253708486435
+ - -2.0772262368026633
+ - 3.9704232632196272
+ - -3.1427270876891766
+ - -5.9182858553362045
+ - 2.4876074344796137
+ - 1.7141523847086306
+ - -0.29015292233773693
+ - -2.2533623328573746
+ - 4.064388711825677
+ - -4.544758131950882
+ - 3.4883601134762743
+ - -1.3006027154871886
+ - 0.4601083129035973
+ - 0.8318053683593418
+ - -1.4957079836183844e-15
+ - -1.6806655685852414e-15
+ - -3.235930556307444e-16
+ - -2.1188231390545801e-16
+ - 2.162250121213614e-16
+ - 2.0894582273089477e-16
+ - 4.108606102550888e-16
+ - 1.9670354966510996e-16
+ - 5.747250896018436e-16
+ - -2.365736551901659e-16
+ - -2.556194887941994e-16
+ - -7.603444190587429e-16
+ - -4.082136322949191e-16
+ - -2.065573387121479e-16
+ - -1.919059021123024e-17
+ - 3.664410113609912e-16
+ - 8.652309207304668e-17
+ - 1.9269172369422777e-16
+ - 2.7057077836609535e-16
+ - 2.9397998970134604e-16
+ - -2.718115492849249e-16
+ - -1.647743780205631e-16
+ - -2.9029903597548506e-16
+ - -1.7834014006643274e-16
+ - -8.70194004405785e-17
+ - 7.343709478245779e-16
+ - 7.097209655704977e-17
+ - 9.173432993213076e-17
+ - -4.1292856178647137e-16
+ - -2.7975248316543396e-16
+ - -3.7727707738543587e-16
+ - -3.325266062463171e-17
+ - -3.685089628923738e-16
+ - -1.2738581433316626e-16
+ - -1.8413040435430394e-16
+ - 5.530529575529543e-16
+ - 2.278882587583591e-17
+ - 1.6378176128549948e-17
+ - 3.4795352467043104e-16
+ - -2.901749588836021e-16
+ - -2.936904764869525e-16
+ - -3.871205266748169e-16
+ - -6.418301167952079e-16
+ - -1.6427806965303127e-16
+ - -1.0836066024444661e-17
+ - 1.6522932735746725e-16
+ - 1.1063540692896744e-17
+ - 8.907080835971002e-16
+ - 3.067185711346626e-16
+ - -1.3350695086605867e-16
+ - -2.966269676615157e-16
+ - -1.4522189629134092e-16
+ - -2.5063572560356735e-17
+ - 2.1771393722395686e-16
+ - 4.708312046651834e-16
+ - 1.1266199942972237e-16
+ - 2.008394527278751e-16
+ - -9.26442286059391e-18
+ - 1.0819522412193601e-16
+ - 3.06553135012152e-16
+ - -4.455401574363745e-17
+ - 1.5633713577252223e-17
+ - 1.2076836943274203e-17
+ - -7.940933880509066e-18
+ - 2.623816903018204e-16
+ - -5.2112378590840736e-18
+ - 3.6147792768567304e-16
+ - -1.433504001554397e-16
+ - 2.335130869237197e-16
+ - -4.12969920817099e-17
+ - -2.3574647457761286e-17
+ - -1.6758679210324338e-16
+ - -6.609173094298691e-17
+ - 4.9010451293766884e-17
+ - 3.6407320685755817e-16
+ - 3.1432863277015047e-16
+ - 2.779326858178173e-17
+ - 1.9951596374779025e-16
+ - -2.374008358027189e-17
+ - 1.6278914455043582e-16
+ - -1.252351447405284e-16
+ - -3.153212495052141e-16
+ - 5.5338382979797545e-17
+ - -2.582044282084276e-16
+ - 9.041084095204591e-17
+ - 1.2738581433316626e-16
+ - 1.8694281843698423e-16
+ - 2.302870825347629e-16
+ - 1.0280200652809028e-15
+ - 4.07634605866132e-16
+ - 3.7951046503932905e-16
+ - -9.92616735063633e-18
+ - -7.47771273747937e-17
+ - 1.8115255414911304e-16
+ - 1.4608009617686469e-16
+ - 1.6675961149069035e-16
+ - 4.2765237668991525e-17
+ - 3.6855032192300143e-16
+ - -1.5848780536516008e-16
+ - 1.1890721305449773e-16
+ - -1.4564582635527435e-16
+ - -4.835697860985e-16
+ - -1.960107859020968e-16
+ - 1.5476549260867145e-16
+ - 2.4753379830649353e-16
+ - 2.4563128289762157e-16
+ - 1.2738581433316625e-17
+ - -1.890107699683668e-16
+ - -2.5166970136925864e-17
+ - -5.69100261436483e-17
+ - -1.209751645858803e-16
+ - -9.897216029196975e-17
+ - -6.435465165662555e-17
+ - -1.4459117107426924e-16
+ - 2.21849840286722e-16
+ - 1.6907571720583883e-16
+ - 3.012591790918127e-16
+ - 7.080666043453917e-17
+ - -1.2291903902537991e-16
+ - -2.0878038660838416e-16
+ - -2.2069178742914776e-16
+ - 9.148617574836485e-17
+ - 2.5890753172909766e-16
+ - 7.641080908458592e-17
+ - 2.5278639519620526e-16
+ - 1.9025154088719634e-16
+ - 1.135718981035307e-16
+ - -1.1836954565633826e-16
+ - 3.925799187176669e-16
+ - 6.534726839168919e-17
+ - 2.2284245702178566e-16
+ - 2.62547126424331e-16
+ - 2.006740166053645e-16
+ - -1.2102686337416486e-16
+ - 4.1330079306212023e-16
+ - 9.889978198837136e-17
+ - -9.644925942368301e-17
+ - -6.091358030840495e-16
+ - -1.8942436027464331e-16
+ - -1.0047142515222211e-16
+ - -2.275573865133379e-16
+ - -4.168990287267259e-17
+ - 9.016268676828e-17
+ - 5.69100261436483e-16
+ - -4.645446320097803e-16
+ - -1.1911400820763597e-17
+ - -1.8111119511848538e-16
+ - -3.568457162553761e-16
+ - 9.859992901632089e-17
+ - 1.5766062475260705e-16
+ - 2.844674126569862e-16
+ - -1.956437245052764e-16
+ - 3.2425480012078685e-17
+ - 1.833032237417509e-16
+ - 6.736558908631856e-16
+ - -1.3540946627493063e-16
+ - 1.3358966892731397e-16
+ - 2.3305813758681555e-16
+ - 2.3227231600489017e-16
+ - 1.2291903902537991e-16
+ - 3.110199103199384e-17
+ - 7.568702604860202e-17
+ - 1.407861402565253e-16
+ - 1.0083331667021406e-16
+ - -2.567568621364598e-16
+ - -1.72260362564168e-16
+ - 1.732943383298593e-17
+ - 1.406207041340147e-17
+ - 2.895132143935597e-17
+ - -4.714929491552257e-18
+ - -1.4249220026991593e-16
+ - -6.650532124926343e-17
+ - -9.719372197498074e-17
+ - -3.879477072873699e-17
+ - -4.0738645168236607e-17
+ - -7.717595115119747e-17
+ - 1.4872707413703438e-16
+ - -4.954811869192635e-17
+ - 1.0180938979302665e-15
+ - 3.4427257094457007e-16
+- - -4.421299341296818
+ - -3.675923411093601
+ - 2.1426608179167848
+ - -0.7741316437336917
+ - -0.9208685833785862
+ - 2.299442333193378
+ - -2.9218685731758676
+ - 2.5206108372347984
+ - -1.0423765032785082
+ - -2.446606605340293
+ - -2.154109383512866
+ - -0.8733695556355986
+ - 2.3733251949181824
+ - -2.9271770830539516
+ - 2.416343708507278
+ - -0.836578635749804
+ - -1.9460587976986936
+ - -2.062000875287534
+ - -0.9097435650307526
+ - 2.4822067268308468
+ - -0.7716289839969995
+ - -0.9236533471879055
+ - 2.3015398076784828
+ - -2.922578188727303
+ - 2.519752268130533
+ - -0.9521312159446739
+ - -2.1287314178625865
+ - -1.8765560683858404
+ - -0.7929772375803213
+ - 2.375354863880166
+ - -2.928718909033454
+ - 2.415289030185862
+ - -0.8515682938901009
+ - -2.1097469298066036
+ - -2.2412170379018876
+ - -0.9281081457243142
+ - 2.4841016136559153
+ - -2.9266557774099704
+ - 2.343998781980519
+ - -0.9916209131399359
+ - -0.7020779852384896
+ - 2.092618295779608
+ - -4.8068258124643135
+ - -4.70132657235989
+ - -0.7305897724341296
+ - -0.5524627582696371
+ - 3.303664437327456
+ - 3.4430779062536057
+ - -1.0465638533825607
+ - -0.6475206466685921
+ - 2.05191746234096
+ - -2.888623544976653
+ - 2.6474317008900323
+ - -1.6264170285536077
+ - 0.1061135310572819
+ - 0.7702501263360643
+ - 3.18453685415625
+ - 1.5115123015823018
+ - -2.9060145534494133
+ - 2.5954885002887047
+ - -1.4515342730741998
+ - -0.03983390818356272
+ - 0.4816228703708555
+ - 3.035739815721754
+ - 1.572351025892175
+ - -2.9251767840349414
+ - 2.49890359664692
+ - -1.3428114677835155
+ - -0.42075852107519357
+ - 1.883985149243047
+ - -2.816960720527384
+ - 1.8307707856411644
+ - 3.3173545272792424
+ - -0.6252592919938232
+ - -0.6578068546683709
+ - -0.5426504895539077
+ - 2.034350722617286
+ - -2.865408070261556
+ - 1.902588523998692
+ - 3.7571943737689266
+ - -0.4323190041727931
+ - -0.5180787258492476
+ - -0.7428613833959976
+ - 2.1211648928898086
+ - -2.8893321998954686
+ - 2.605856413164998
+ - -1.5437570008173245
+ - -0.09789814963975073
+ - 1.0229481268542473
+ - 1.0882826143526105
+ - -1.970502122927182
+ - -1.7346431203207944
+ - 0.5712102439424086
+ - 1.0364866220212012
+ - -2.3846300209593263
+ - 2.8868363011667966
+ - -2.479228625720689
+ - 1.1899117074639722
+ - 0.16741366631448007
+ - -0.24641889625564356
+ - -3.592556781202412
+ - -1.765982216414222
+ - 2.886877300636085
+ - -2.4082414966294863
+ - 1.002513090160271
+ - 0.3317993079962344
+ - 0.033564367549977624
+ - -3.21119196505317
+ - -1.7163028620336065
+ - 2.872552441982222
+ - -2.2868141886980027
+ - 0.8841731407803116
+ - 0.818774545494914
+ - -2.2431687820320785
+ - 2.86486905385891
+ - -1.7346427218762526
+ - -3.231192781819797
+ - 0.11205740509796668
+ - 0.3756305773949092
+ - 0.9380563766251178
+ - -2.368399548100026
+ - 2.883991576458695
+ - -1.6933852453878415
+ - -3.4396260553522655
+ - -0.12927743979590037
+ - 0.23359287225645928
+ - 1.127269269335669
+ - -2.441878683018024
+ - 2.8868905261255966
+ - -2.4239629799688993
+ - 1.1000490242910603
+ - 0.5038331493738253
+ - -2.6929226696839526
+ - -2.5476652163387667
+ - 1.0495069995822872
+ - 1.2194512868022591
+ - 5.000854123116966
+ - 5.0853584089622474
+ - -2.459006702774179
+ - 1.1567851905952937
+ - 0.44013161573220355
+ - -2.042887028729582
+ - 2.812737791494979
+ - -2.7506121529166867
+ - 1.2117060798175847
+ - 2.715056371446746
+ - 1.5459355388236344
+ - 0.5311701073813941
+ - -2.129580705227022
+ - 2.8394323621600095
+ - -2.672763054408665
+ - 1.0888671841378403
+ - 2.340350099015849
+ - 1.632702819526408
+ - 0.642197766724538
+ - -2.265574692794453
+ - 2.8682022938485554
+ - -2.620151454914871
+ - 1.3634551911739357
+ - 0.2114456930544045
+ - -1.7980221764952782
+ - 1.7587202818739476
+ - 2.849438378731088
+ - -2.4416909380645353
+ - -1.581058604246889
+ - 1.253916883117118
+ - 0.414987120219498
+ - -1.954127655277704
+ - 1.8864970743161134
+ - 3.37513121089398
+ - -2.5864586058130348
+ - -1.5580719062133175
+ - 1.0665857441831792
+ - 0.5390096820923425
+ - -2.045978316232532
+ - 2.8334810521254417
+ - -2.715248299008816
+ - 1.6392905782501532
+ - -1.6013870044300353
+ - -2.120173304550774
+ - 1.6982017975713656e-15
+ - 2.5953618899463792e-15
+ - 3.225487401073962e-16
+ - 2.602310207091825e-16
+ - -1.6121750138658507e-16
+ - -2.603964568316931e-16
+ - -3.100272935848747e-16
+ - -1.709782326147108e-16
+ - -5.08716076720112e-16
+ - 1.0751280011657976e-16
+ - 2.299562102897417e-16
+ - 5.302227726464907e-16
+ - 1.191967262688913e-16
+ - 7.086869898048065e-17
+ - -4.979627287569226e-17
+ - -4.384057246531046e-16
+ - -7.304004808843234e-17
+ - -2.374008358027189e-17
+ - -1.4070342219527e-16
+ - 1.4969901135678418e-16
+ - 1.4111701250154652e-16
+ - 4.475047113911879e-17
+ - 1.3040502356898481e-16
+ - 1.4277137372665258e-16
+ - 1.570971079603053e-16
+ - -3.9522689667783657e-16
+ - -6.89041450256672e-17
+ - -3.3583532869652924e-17
+ - 5.351858563218089e-16
+ - 4.106227958289798e-16
+ - 1.6345088904047824e-16
+ - 4.04904909844707e-17
+ - 4.795450354305467e-16
+ - 1.3966944642957872e-16
+ - 2.812414082680294e-17
+ - -5.683144398545577e-16
+ - -9.793818452627846e-17
+ - 3.226004388956808e-17
+ - -2.809105360230082e-16
+ - 5.262523057062362e-16
+ - 2.903403950061127e-17
+ - 3.4030210400431554e-16
+ - 4.3699951761176447e-16
+ - 1.0833998072913279e-16
+ - 7.196471329211341e-17
+ - -1.5460005648616085e-16
+ - -4.268251960773622e-17
+ - -3.7041147830124574e-16
+ - -2.3988237764037803e-16
+ - 1.5029871730088513e-16
+ - 1.9951596374779025e-16
+ - 1.2324991127040112e-16
+ - 7.717595115119747e-17
+ - -1.01908651466533e-16
+ - -3.6462121401337455e-16
+ - -7.709323308994217e-17
+ - -9.351276824911977e-17
+ - 1.3813916229635562e-16
+ - -1.01908651466533e-16
+ - -5.1119761855777104e-17
+ - 9.529120656610878e-17
+ - -4.830734777309681e-17
+ - 1.670904837357116e-17
+ - -1.5054687148465104e-17
+ - -2.0613340864821447e-16
+ - -1.7031648812466837e-16
+ - -2.188719900815311e-16
+ - 6.129408339017935e-17
+ - -5.376673981594679e-17
+ - 1.467418406669071e-16
+ - -3.614779276856731e-17
+ - 1.9145095277539823e-16
+ - 5.5007510734776334e-17
+ - -7.796177273312285e-17
+ - -3.0804206011474746e-16
+ - -1.7883644843396456e-16
+ - -2.5559880927888552e-17
+ - 3.780215399367336e-17
+ - 1.8131799027162364e-16
+ - -1.593149859777131e-16
+ - 3.360421238496675e-17
+ - 1.2324991127040112e-16
+ - -6.26175723702642e-17
+ - 1.8214517088417667e-16
+ - -8.834288942066334e-17
+ - -9.665605457682127e-17
+ - -1.7618947047379487e-16
+ - -1.2109924167776325e-16
+ - -6.346129659506827e-16
+ - -5.816734067472891e-16
+ - -1.1605343994118978e-16
+ - 1.370017889540952e-16
+ - 1.303223055077295e-16
+ - -1.5220123270975707e-16
+ - -1.7039920618592368e-16
+ - -1.1818343001851381e-17
+ - -1.6957202557337067e-17
+ - -1.22433070415505e-16
+ - 1.3937993321518516e-17
+ - -2.1423977865123414e-16
+ - 1.4144788474656773e-16
+ - 2.240005098793599e-16
+ - 1.3460296517769143e-16
+ - -5.078888961075589e-17
+ - -3.995282358631123e-17
+ - 2.2747466845208258e-17
+ - -8.945958324760993e-17
+ - 1.3574033851995184e-16
+ - 1.7370792863613579e-16
+ - -1.5943906306959608e-17
+ - 6.911611005763392e-17
+ - 9.301645988158795e-17
+ - -6.452008777913615e-18
+ - 6.121136532892404e-18
+ - -2.278055406971038e-16
+ - -8.056739166266488e-17
+ - -1.7767839557639032e-16
+ - -3.937379715752411e-17
+ - 4.3112653526263797e-16
+ - 1.044108728195059e-16
+ - 1.341686953561011e-16
+ - -7.531479477295317e-17
+ - 1.4397078561485447e-16
+ - 1.890107699683668e-17
+ - -1.0575504131490458e-16
+ - -2.1639044824387202e-16
+ - -1.2126467780027386e-16
+ - 5.2939559203393765e-17
+ - -3.5568766339780185e-16
+ - -1.463282503606306e-16
+ - -1.167979024924875e-16
+ - -1.3545082530555828e-16
+ - 4.2765237668991525e-17
+ - -5.2112378590840736e-18
+ - -3.225590798650531e-16
+ - -1.822485684607458e-16
+ - 6.319659879905131e-17
+ - 4.165681564817047e-16
+ - 1.7602403435128426e-16
+ - 4.841074534966594e-17
+ - 1.3851139357200448e-16
+ - 6.228670012524298e-17
+ - -9.098986738083303e-17
+ - -4.465120946561243e-16
+ - 3.752091258540533e-16
+ - -9.92616735063633e-18
+ - 1.7197084934977443e-16
+ - 4.3377351322280766e-16
+ - -6.27002904315195e-17
+ - -1.0058516248644815e-16
+ - -1.8073896384283655e-17
+ - 2.1082248874562445e-16
+ - 5.539008176808211e-17
+ - -9.545664268861938e-17
+ - -4.582580593543773e-16
+ - 7.659692472241035e-17
+ - -1.5832236924264947e-16
+ - -3.934070993302199e-16
+ - -2.2867925021911296e-16
+ - -2.6469779601696883e-17
+ - 5.715818032741421e-17
+ - -6.733250186181645e-17
+ - -3.399712317592944e-17
+ - -6.145951951268996e-17
+ - 5.757177063369073e-17
+ - 4.5453574659788865e-17
+ - -8.784658105313153e-17
+ - -8.222175288777094e-17
+ - -1.7519685373873124e-16
+ - -1.6874484496081765e-17
+ - -1.1870041790135946e-17
+ - 2.8885146990351726e-16
+ - 1.3367238698856927e-16
+ - -8.602678370551488e-18
+ - -4.081619335066346e-18
+ - -9.82070182253582e-17
+ - -1.950491884400039e-16
+ - -8.966637840074819e-17
+ - -1.1831991481958508e-15
+ - 2.299562102897417e-16
+- - 5.1750751120474945
+ - 4.213860433037044
+ - -2.89668392319796
+ - 2.1434564727432686
+ - -0.7760661064891663
+ - -1.0114054389290716
+ - 2.300464260889335
+ - -2.9242984290778096
+ - 1.8022606452304204
+ - 3.641178747632472
+ - 0.09622502607923086
+ - -0.24600957955098082
+ - -1.1266260584713064
+ - 2.375795009828886
+ - -2.930523512087639
+ - 1.6283229663986114
+ - 3.1077178407352624
+ - 0.3019162728157852
+ - -0.14273807836941574
+ - -1.3135153177461967
+ - 2.4846252557975217
+ - -0.7739246750221858
+ - -1.0120286897751298
+ - 2.2994035223827294
+ - -2.9219808144275095
+ - 1.690214536031527
+ - 3.1813141807349945
+ - 0.07016716352738427
+ - -0.27353650124906154
+ - -1.127137341306656
+ - 2.417521239338575
+ - -2.9280930687623163
+ - 1.6428059885427577
+ - 3.3720733271107957
+ - 0.3267941381420021
+ - -0.12985028570042775
+ - -1.313834600048069
+ - 2.4833152014361692
+ - -2.9260660136753818
+ - 2.287729310897248
+ - -0.9938762732224544
+ - -0.7019122445214844
+ - 2.9324188718422084
+ - 2.7885076605493135
+ - -0.8946380011590851
+ - -1.0662766734213989
+ - -4.924859943240649
+ - -5.0169387555591
+ - 2.3229280616311723
+ - -1.0464462388563307
+ - -0.64494984314243
+ - 2.1159673780899833
+ - -2.8877493853865657
+ - 2.6469642780272618
+ - -1.1264029816130035
+ - -2.5749732630245363
+ - -1.7293632006745445
+ - -0.6342064037967589
+ - 2.199393633890859
+ - -2.905479581581327
+ - 2.5603608574619336
+ - -0.9992483355789734
+ - -2.202110733828367
+ - -1.7950453666120656
+ - -0.7423213907251903
+ - 2.324630593055893
+ - -2.9246125112817833
+ - 2.4995788804702546
+ - -1.2585011476924004
+ - -0.41825415881442435
+ - 1.8835439042512507
+ - -1.7956340557426853
+ - -2.9429137478274714
+ - 2.3092017453074845
+ - 1.5195185702932072
+ - -1.1440246722434961
+ - -0.6182847797986283
+ - 2.0338767780700637
+ - -1.920221857100782
+ - -3.4693410164507337
+ - 2.4240561305630286
+ - 1.4849425418607625
+ - -0.9541462773861069
+ - -0.7427407169571209
+ - 2.118898713942284
+ - -2.902807558154634
+ - 2.606378643611163
+ - -1.5435414091634398
+ - 1.3771180836897656
+ - 1.8487632795406392
+ - 4.261728053353518
+ - 3.552493991770776
+ - -2.0713778747322538
+ - 0.5708992085064218
+ - 1.0340417321387962
+ - -2.4377732048292886
+ - 2.8863949497371433
+ - -2.4788502421661045
+ - 0.9441765241680842
+ - 2.2774013642551867
+ - 2.3286845474006665
+ - 0.9738126025465297
+ - -2.5039525602407746
+ - 2.886360795801066
+ - -2.362952060093317
+ - 0.7388449052567259
+ - 1.7894705625712586
+ - 2.2072867878031794
+ - 1.002555936361715
+ - -2.6047620273634795
+ - 2.87197419079073
+ - -2.287920202044933
+ - 0.7943637127074332
+ - 0.8162764416802911
+ - -2.242983366738802
+ - 1.8664773744993026
+ - 3.148771265221524
+ - -1.9105659627252785
+ - -1.326995718290597
+ - 0.6752744824674707
+ - 1.0103901081009925
+ - -2.368185468763897
+ - 1.8940523730868097
+ - 3.496266255274542
+ - -1.8653513323573363
+ - -1.2269664510013465
+ - 0.47465034987848376
+ - 1.127064033165298
+ - -2.4401773885724216
+ - 2.8859526497537575
+ - -2.4250451818671657
+ - 1.0996500437748447
+ - -0.1754128579915036
+ - -0.30783377438379717
+ - -2.316323066452969
+ - -2.4157476560857623
+ - -4.864514921099501
+ - -4.872643893528285
+ - 2.889011101741698
+ - -2.4607351290308843
+ - 1.1591194323223262
+ - 0.5336342402599078
+ - -2.04355880841903
+ - 2.8153772900143217
+ - -1.8180203123318182
+ - -3.5831228173305187
+ - 0.4894084851279012
+ - 0.5526018982266667
+ - 0.6562364763626417
+ - -2.1320633381791105
+ - 2.854938729730068
+ - -1.7582485137495023
+ - -3.2565573803795003
+ - 0.21514716014232269
+ - 0.43310359484501154
+ - 0.8520538058301915
+ - -2.2680834378261805
+ - 2.8703521726317884
+ - -2.5785374896240505
+ - 1.365932971519134
+ - 0.21251380716001636
+ - -1.094117617980014
+ - -1.449168053384236
+ - 3.2844376382034652
+ - 1.8937538170449952
+ - -2.5160869170860938
+ - 1.1841946452719303
+ - 0.41624675291750474
+ - -1.2299764556557955
+ - -1.8751376173387784
+ - 3.691047711619739
+ - 1.9861221454929758
+ - -2.4058937733741206
+ - 1.0665325495648195
+ - 0.5378782002773518
+ - -2.1145979645271913
+ - 2.835530378359311
+ - -2.717219613935491
+ - 3.474194670314915
+ - 4.354603836568784
+ - -1.058832543098503e-15
+ - -1.48627812463528e-15
+ - -2.2598574334948716e-16
+ - -6.253485430900889e-17
+ - 1.737079286361358e-17
+ - 1.56006263527501e-16
+ - 3.028308222556634e-16
+ - 9.644925942368301e-17
+ - 2.2879815743216745e-16
+ - -6.385834328909374e-17
+ - -1.0960143116327615e-16
+ - -5.533114514943771e-16
+ - -1.1125579238838222e-16
+ - -2.779326858178173e-16
+ - 4.301339185275744e-18
+ - 3.278943948160201e-16
+ - 1.8073896384283655e-17
+ - 3.101927297073854e-17
+ - 3.212769499155959e-16
+ - 5.7489052572435416e-18
+ - -5.893661864440322e-17
+ - 1.1696333861499811e-16
+ - 1.468245587281624e-18
+ - -1.3251433413099503e-16
+ - -1.0885696861197843e-16
+ - 6.147606312494101e-16
+ - -6.782881022934827e-17
+ - 1.9604180517506753e-17
+ - -4.822462971184151e-16
+ - -3.338294157110881e-16
+ - 2.779326858178173e-17
+ - 3.8050308177439267e-17
+ - -4.203731872994486e-16
+ - -2.654422585682666e-16
+ - -1.7486598149371003e-16
+ - 5.489170544901892e-16
+ - -4.714929491552257e-17
+ - -1.3316573886338054e-16
+ - 2.774363774502855e-16
+ - -5.149199313142597e-16
+ - 6.716706573930585e-17
+ - -2.933182452113036e-16
+ - -4.384057246531046e-16
+ - -7.643148859989974e-17
+ - -8.964569888543437e-18
+ - 3.115989367487255e-16
+ - 9.029193373899141e-17
+ - 1.829723514967297e-16
+ - 1.164670302474663e-16
+ - -2.283018490646356e-17
+ - 1.670904837357116e-17
+ - -1.2647591565935793e-16
+ - -1.2957784295643179e-16
+ - 3.523789409475898e-17
+ - -8.271806125530276e-19
+ - 4.0945440321374864e-17
+ - -2.562191947383003e-17
+ - -2.2416594600187047e-17
+ - 2.4153673886548405e-17
+ - 1.7213628547228503e-16
+ - -4.714929491552257e-17
+ - 7.47771273747937e-17
+ - -6.435465165662555e-17
+ - 9.032812289079061e-17
+ - 1.3276248831476094e-16
+ - 5.633099971486118e-17
+ - 1.887626157846009e-16
+ - -1.6915843526709416e-17
+ - 8.923210857915785e-17
+ - -1.0937395649482407e-16
+ - 3.05725954399599e-16
+ - 9.446402595355575e-17
+ - -9.814497967941672e-17
+ - -1.1787323728880643e-17
+ - 5.015196053909007e-16
+ - 4.5164061445395305e-17
+ - 1.406207041340147e-17
+ - -1.3839765623777844e-16
+ - -1.0386286566368953e-16
+ - 1.3681567331627078e-16
+ - 1.0041972636393755e-16
+ - 1.0153642019088413e-16
+ - 4.651339981962243e-17
+ - -6.832511859688009e-17
+ - 4.9961708998202865e-17
+ - 4.5494933690416516e-17
+ - 2.1498424120253187e-16
+ - 1.0410068008979852e-16
+ - 3.7421650911898967e-16
+ - 5.075580238625378e-16
+ - -2.385588886602932e-16
+ - -2.666830294870961e-16
+ - -2.659385669357984e-16
+ - 1.4603873714623704e-16
+ - 1.4599737811560938e-16
+ - -1.6295458067294645e-17
+ - -5.591740940858467e-17
+ - 6.667075737177403e-17
+ - 1.270135830575174e-16
+ - 2.0505807385189554e-16
+ - -1.7039920618592368e-16
+ - 5.2112378590840736e-18
+ - -1.0405932105917087e-16
+ - 1.5122929549000726e-16
+ - 2.069605892607675e-16
+ - -2.2582030722697652e-17
+ - 1.6874484496081765e-17
+ - -9.589091251020972e-17
+ - 2.134125980386811e-17
+ - -1.9852334701272664e-18
+ - -1.919059021123024e-17
+ - -6.468552390164676e-17
+ - -7.543887186483611e-17
+ - 3.374896899216353e-17
+ - 2.1837568171399928e-17
+ - 8.569591146049365e-17
+ - 1.4459117107426924e-16
+ - 3.2094607767057474e-17
+ - -1.652706863880949e-16
+ - -5.66618719598824e-17
+ - -1.0174321534402239e-16
+ - 1.5170492434222525e-16
+ - -2.8682487740276235e-16
+ - 3.4327995420950645e-18
+ - -5.2029660529585435e-17
+ - 3.990319274955805e-16
+ - 6.088049308390284e-17
+ - -5.715818032741421e-17
+ - 2.3442298559752804e-16
+ - 1.0918784085699964e-16
+ - 2.613890735667567e-17
+ - 9.351276824911977e-17
+ - 1.0383184639071879e-16
+ - 4.913452838564984e-17
+ - 2.564259898914386e-16
+ - -8.271806125530276e-17
+ - 4.714929491552257e-18
+ - -3.1424591470889516e-16
+ - 3.867069363685404e-17
+ - -4.615667818045894e-17
+ - -4.293067379150213e-17
+ - -7.535615380358081e-17
+ - 7.043442915889031e-17
+ - 3.270672142034671e-16
+ - 9.082443125832243e-17
+ - -3.874307194045243e-17
+ - -1.203340996111517e-16
+ - -7.16338410470922e-17
+ - 8.759842686936562e-17
+ - 6.892482454098103e-17
+ - -1.56006263527501e-16
+ - -1.5902547276331955e-16
+ - -7.0351711097635e-17
+ - 7.82512859475164e-17
+ - -1.5137405209720406e-17
+ - -9.543596317330556e-17
+ - -7.444625512977248e-19
+ - 5.564857570950494e-17
+ - 6.071505696139223e-17
+ - -9.651129796962449e-17
+ - -7.17992771696028e-17
+ - 1.7056464230843428e-16
+ - 3.234276195082338e-17
+ - 9.016268676828e-17
+ - 2.1504627974847335e-16
+ - -8.768114493062093e-18
+ - 1.104389515334861e-16
+ - -6.179039175771117e-17
+ - 1.1398548840980721e-16
+ - 3.7895211812585574e-17
+ - 1.3962808739895107e-16
+ - -1.3878022727108422e-16
+ - 1.2449068218923065e-17
+ - 1.2335330884697024e-17
+ - -9.843449289381028e-18
+ - 9.955118672075687e-17
+ - 1.0563096422302162e-16
+ - 5.1491993131425967e-17
+ - 8.769768854287198e-16
+ - 3.1135078256495957e-16
+- - -4.232484680627635
+ - -3.37098332382509
+ - 2.6214648391669857
+ - -2.8810777279331203
+ - 2.130877227356137
+ - -0.676581877560802
+ - -1.008739111464891
+ - 2.291945655581856
+ - -1.968181147818951
+ - -3.637947509727382
+ - 1.97990111691408
+ - 1.2777932844940658
+ - -0.5545307370307241
+ - -1.1256149189683775
+ - 2.409337669978714
+ - -1.8827434748732579
+ - -3.246129961289205
+ - 1.5455433226764033
+ - 1.1418018057316723
+ - -0.35462632766834323
+ - -1.311353021170011
+ - 2.4733464559865688
+ - -0.6777080453003298
+ - -1.0061997585667684
+ - 2.288867261650428
+ - -1.8710778279528921
+ - -3.187240633154734
+ - 1.7476471880324589
+ - 1.2438378474205793
+ - -0.5557770805878066
+ - -1.1935548068878103
+ - 2.4062628452078796
+ - -1.8919742237773778
+ - -3.5240268776399595
+ - 1.6822449105143267
+ - 1.138614045815084
+ - -0.35606360554347777
+ - -1.3086744109739048
+ - 2.470290224474765
+ - -2.9052938014152576
+ - 2.2764503659280066
+ - -0.9869841479742412
+ - -0.11138013586993517
+ - 0.023648400690738782
+ - 2.217021671947812
+ - 2.326103569502322
+ - 4.925667763064279
+ - 4.940649322955851
+ - -2.9093574868400074
+ - 2.3098533734229867
+ - -1.0414869479465119
+ - -0.7341098220887984
+ - 2.104839255519281
+ - -2.8732764744243635
+ - 1.7719621540345694
+ - 3.5264004529840727
+ - -0.2819109476313902
+ - -0.4448518466982929
+ - -0.8524523305287138
+ - 2.1894170898011245
+ - -2.8992999198360847
+ - 1.7050570214074858
+ - 3.1917513809700635
+ - -0.02459684864681396
+ - -0.3251121984217583
+ - -1.0455518273670437
+ - 2.313854444814247
+ - -2.909451451944202
+ - 2.4380939658521705
+ - -1.2525805872068068
+ - -0.417904640800325
+ - 1.1737092255600887
+ - 1.6087683493179334
+ - -3.227580779894328
+ - -1.87902601682376
+ - 2.371826919225882
+ - -1.0651775893865263
+ - -0.6169200993920333
+ - 1.3100121326641074
+ - 2.0491491871452783
+ - -3.6107555525688664
+ - -1.9602490226377753
+ - 2.2508780165498683
+ - -0.9474187551867561
+ - -0.7382736302776448
+ - 2.1713678495396156
+ - -2.8879185993659826
+ - 2.592392560827026
+ - -3.3118035265434793
+ - -4.162857588383004
+ - -5.14533314665799
+ - -4.19754759438233
+ - 2.8073167684591436
+ - -2.0591244315398614
+ - 0.5683661075661162
+ - 1.1170951761033103
+ - -2.4251025895189664
+ - 2.8717011667524774
+ - -1.7400627388600864
+ - -3.551046581376194
+ - -0.3116731954556415
+ - 0.1316242923131426
+ - 1.230778630871239
+ - -2.492175995370741
+ - 2.868148367563168
+ - -1.5611557390936621
+ - -3.015966866095477
+ - -0.4882752528875368
+ - 0.03434788065356642
+ - 1.409633129626816
+ - -2.5922790401867424
+ - 2.8572486312299126
+ - -2.2151363606952086
+ - 0.7906522601742603
+ - 0.8142795803772286
+ - -1.38735498651656
+ - -2.0376044208894455
+ - 3.0730489641411873
+ - 1.8385087114581513
+ - -2.131750436822296
+ - 0.5949607525501514
+ - 1.0073679647069025
+ - -1.4742988577742702
+ - -2.4096573845896914
+ - 3.237476807777181
+ - 1.8129106231065537
+ - -1.9887771876395235
+ - 0.47009540988629084
+ - 1.1210556337137103
+ - -2.4791797375694986
+ - 2.8711898776415294
+ - -2.4114427362818813
+ - 2.9700874414810214
+ - 3.046577369690023
+ - 2.8456904236111544
+ - 2.8497093995631633
+ - 3.138976338261292
+ - 3.064134796006541
+ - -2.4486982482773727
+ - 2.874293814649123
+ - -2.4468543786511816
+ - 1.0628356882648915
+ - 0.5335814111001815
+ - -2.036976123622208
+ - 1.8261660461964415
+ - 3.2743310072565923
+ - -2.3518181520552686
+ - -1.4488316098568461
+ - 0.9480494347868843
+ - 0.6579868329618802
+ - -2.1768634551868176
+ - 1.8486064127224748
+ - 3.1023681362355724
+ - -1.9809218313881842
+ - -1.3599880366724317
+ - 0.7533960946918425
+ - 0.8526878518574389
+ - -2.2582535331146283
+ - 2.865408133878461
+ - -2.5644437078316704
+ - 1.3547697386283686
+ - 0.07608532841972941
+ - -0.4159242944495114
+ - -3.048202300728587
+ - -1.5854207590555731
+ - 2.8735826021463446
+ - -2.4603547411885454
+ - 1.1737158555407727
+ - 0.17557299863218398
+ - -0.22827560258005375
+ - -3.582103115236137
+ - -1.7622275686963347
+ - 2.8726417147998755
+ - -2.390882123556653
+ - 1.0588337396968157
+ - 0.6314940946951103
+ - -2.1058602794591144
+ - 2.8224997861489136
+ - -4.199458294268816
+ - -5.151430679836025
+ - 7.867728396298122e-16
+ - 1.6676374739375312e-15
+ - 2.540478456303486e-16
+ - 4.2217230513175144e-17
+ - -1.1937767202788726e-16
+ - -1.3259705219225034e-16
+ - -2.920619646559887e-16
+ - -2.4207440626364355e-16
+ - -1.403725499502488e-16
+ - -5.939156798130739e-17
+ - 9.074171319706712e-17
+ - 6.15008785433176e-16
+ - -1.3077725484463368e-16
+ - 1.4996784505586392e-16
+ - -7.940933880509066e-18
+ - -3.1432863277015047e-16
+ - -5.469731800506895e-17
+ - -6.807696441311418e-17
+ - -1.228363209641246e-16
+ - 2.9149844786368695e-16
+ - 6.104592920641344e-17
+ - 3.805030817743927e-18
+ - -2.1192367293608567e-16
+ - -1.1580528575742386e-17
+ - -1.6626330312315856e-17
+ - -6.21295358088579e-16
+ - 3.7223127564886245e-17
+ - 2.3657365519016588e-17
+ - 5.450293056111899e-16
+ - 3.1453025804446027e-16
+ - -1.3036366453835716e-16
+ - 4.9382682569415746e-17
+ - 1.7494869955496533e-16
+ - 5.459392042849982e-17
+ - -9.696624730652866e-17
+ - -4.347661299578713e-16
+ - -1.2196778132094393e-16
+ - 5.6827308082393e-17
+ - -8.437242248040881e-17
+ - 5.649643583737179e-16
+ - -1.7536228986124184e-16
+ - 1.1593970260696374e-16
+ - 4.3393894934531827e-16
+ - -1.0174321534402239e-17
+ - -4.5743087874182424e-17
+ - -1.6882756302207292e-16
+ - -1.0877425055072313e-16
+ - -6.625716706549752e-17
+ - 8.466193569480237e-17
+ - 2.98612201131643e-17
+ - -6.609173094298691e-17
+ - 2.5146290621612038e-17
+ - 1.3946265127644047e-16
+ - 1.6192060490725517e-17
+ - 7.796177273312285e-17
+ - -8.826017135940804e-17
+ - 7.630741150801679e-17
+ - -2.6552497662952185e-17
+ - 9.570479687238529e-17
+ - 2.127508535486387e-16
+ - 1.3880090678639804e-16
+ - 7.213014941462401e-17
+ - 1.4169603893033364e-16
+ - -9.14913456271933e-17
+ - -2.772709413277749e-16
+ - -2.2085722355165836e-16
+ - 8.362795992911109e-17
+ - -1.0960143116327617e-18
+ - -1.5054687148465104e-17
+ - 5.2691405019627857e-17
+ - 5.285684114213846e-17
+ - 4.350970022028925e-17
+ - 1.4541835168682227e-16
+ - -8.362795992911109e-17
+ - -1.134891800422754e-16
+ - -8.671954746852803e-17
+ - 2.4226052190146795e-17
+ - 1.8334458277237856e-16
+ - 2.4070955825293102e-17
+ - -6.749793798432706e-17
+ - -7.113753267956038e-17
+ - -8.381407556693552e-17
+ - -5.078888961075589e-17
+ - -2.671793378546279e-17
+ - -8.900463391070577e-17
+ - -5.870914397595114e-17
+ - -1.2262952581098635e-16
+ - -4.648755042548015e-17
+ - 2.973300711821858e-16
+ - -2.510493159098439e-16
+ - -2.0353812947632935e-16
+ - 7.601789829362323e-16
+ - 2.6403605152692643e-16
+ - -7.915084486366782e-17
+ - -4.241368590865649e-17
+ - -8.205631676526033e-17
+ - -2.0377594390243834e-16
+ - -1.8446127659932517e-17
+ - -1.3640208300999426e-16
+ - -1.6278914455043582e-16
+ - 1.1770780116629584e-16
+ - -1.1765610237801127e-16
+ - -1.2490427249550716e-17
+ - -1.7751295945387971e-16
+ - -1.2655863372061323e-16
+ - -5.012714512071347e-17
+ - -1.356834698528388e-17
+ - 3.937379715752411e-17
+ - 2.533240625943647e-17
+ - -1.737079286361358e-17
+ - -7.805483055203506e-17
+ - 1.7296346608483806e-16
+ - 1.3276248831476094e-16
+ - -9.650095821196758e-17
+ - -1.3979352352146168e-17
+ - 4.350970022028925e-17
+ - -5.4180330122223307e-17
+ - -4.0118259708821836e-17
+ - 1.949664703787486e-16
+ - 1.4062070413401469e-18
+ - 3.924972006564116e-17
+ - 1.2293971854069372e-17
+ - 9.183772750869989e-17
+ - -1.377255719900791e-17
+ - 1.7238443965605094e-16
+ - 9.247879248342848e-17
+ - 3.98494260097421e-17
+ - 1.981097567064501e-17
+ - -2.161422940601061e-16
+ - -8.987317355388644e-17
+ - -8.271806125530277e-18
+ - -2.2085722355165836e-17
+ - -1.22670884841614e-16
+ - -7.543887186483611e-17
+ - -1.0397660299791557e-16
+ - -4.466775307786349e-17
+ - -6.12527243595517e-17
+ - -1.7853659546191409e-16
+ - -1.0041972636393755e-16
+ - 4.239300639334266e-17
+ - -2.1390890640621293e-16
+ - 1.5323520847544835e-16
+ - 7.196471329211341e-18
+ - -1.020740875890436e-16
+ - -1.9314667303113194e-16
+ - -5.4759356551010426e-17
+ - 1.0120554794586292e-16
+ - 7.006219788324144e-17
+ - -1.2002390688144432e-16
+ - 3.2756352257099896e-17
+ - 2.9761958439657936e-16
+ - 3.628014166657579e-16
+ - 1.2473883637299657e-16
+ - 3.201188970580217e-17
+ - -6.542998645294449e-17
+ - -6.121136532892404e-18
+ - 1.3334151474354806e-16
+ - 1.4062070413401469e-18
+ - -2.1688675661140383e-16
+ - 1.1142122851089283e-16
+ - 1.9769616640017358e-17
+ - -5.558653716356346e-17
+ - 2.8248217918685895e-17
+ - -5.1915923195359393e-17
+ - -2.1126192844604324e-16
+ - -2.6480119359353795e-17
+ - -1.8644651006945241e-16
+ - 6.501639614666798e-17
+ - -3.034098486844505e-16
+ - 2.0844951436336295e-16
+ - -9.89308012613421e-17
+ - 2.6411876958818174e-16
+ - -1.0381116687540496e-16
+ - 7.692779696743156e-17
+ - -5.39321759384574e-17
+ - -1.6874484496081762e-16
+ - -1.1030453468394623e-16
+ - -7.337092033345355e-17
+ - -5.313187869581235e-16
+ - -1.3582305658120714e-16
+- - 1.9302301147850451
+ - 1.4441685009915533
+ - -1.5859956538548696
+ - 2.6301047729199256
+ - -2.900051436832404
+ - 2.0893893067054976
+ - -0.6974812869474415
+ - -1.0003903285067564
+ - 1.508603302787578
+ - 2.475076841695202
+ - -3.4482224011344966
+ - -1.9138473468517203
+ - 2.002787404697334
+ - -0.5724007194064282
+ - -1.1893266520883203
+ - 1.5399013765941774
+ - 2.35140388123575
+ - -2.9210945780634496
+ - -1.788124676505624
+ - 1.849993979691339
+ - -0.37155033495538303
+ - -1.3031168940641689
+ - 2.5265122225119283
+ - -0.7006211950611235
+ - -0.9975902372703712
+ - 1.4575791493426136
+ - 2.1773498927501023
+ - -3.0286968816719266
+ - -1.8285017166145727
+ - 2.005320782449265
+ - -0.49952407581599634
+ - -1.1866430246787047
+ - 1.5408916009921487
+ - 2.5544722815076635
+ - -3.177502276841485
+ - -1.7957138166544235
+ - 1.8526554997297244
+ - -0.3746688473156086
+ - -1.3005132389997685
+ - 2.5253467758709465
+ - -2.9262507858871345
+ - 2.301695129769171
+ - -2.7766060748686847
+ - -2.859615065875509
+ - -2.847547644263846
+ - -2.8586096608596687
+ - -3.3566538035603
+ - -3.2888694163201624
+ - 2.4966437423981107
+ - -2.9296349188918698
+ - 2.336336682757495
+ - -0.9755310986870919
+ - -0.7208635987193209
+ - 2.1079340580632575
+ - -1.8599480527037644
+ - -3.3645070037172187
+ - 2.225694886806266
+ - 1.394126523077301
+ - -0.8561469120868352
+ - -0.8426228397259703
+ - 2.242983105068771
+ - -1.8752789470954299
+ - -3.1751391662474866
+ - 1.8566154763715192
+ - 1.30078785048315
+ - -0.6594158526098411
+ - -1.037333953381799
+ - 2.3181611014419063
+ - -2.9321309531598425
+ - 2.464259326903458
+ - -1.2756528731808436
+ - -0.17078461067432252
+ - 0.25294341371417706
+ - 3.1274328236658864
+ - 1.6436280681074882
+ - -2.9322712487623304
+ - 2.352814269436244
+ - -1.0874023931174215
+ - -0.27548045813430105
+ - 0.03993731542924256
+ - 3.6597543048178554
+ - 1.816037609002549
+ - -2.9230210914377173
+ - 2.275916390333995
+ - -0.9714470693719028
+ - -0.8181085264178861
+ - 2.173590649558713
+ - -2.90502982030443
+ - 4.212410388041377
+ - 5.175815931391121
+ - 4.398707532691103
+ - 3.511833769529029
+ - -2.7350479585171237
+ - 2.8290940469894044
+ - -2.085900775154908
+ - 0.4959524299222192
+ - 1.1071961856103785
+ - -2.432009185634017
+ - 1.9901842085931118
+ - 3.7069878516220514
+ - -1.8272159708459175
+ - -1.2074521617216782
+ - 0.37392711776225546
+ - 1.2241869774150682
+ - -2.539733397791074
+ - 1.8950338910835882
+ - 3.294813930995998
+ - -1.4055876835951482
+ - -1.071891663149728
+ - 0.16972539174332738
+ - 1.4046856525505862
+ - -2.600618712270612
+ - 2.867310827866884
+ - -2.2420292545553573
+ - 0.8115001515221256
+ - 0.4606679191135438
+ - 0.2645429937708151
+ - -3.269034749724037
+ - -1.7697333082508016
+ - 2.8500618199302
+ - -2.1036613715098835
+ - 0.6147555970182744
+ - 0.5799412413355032
+ - 0.5428591733179392
+ - -3.593049011779612
+ - -1.8275642732418833
+ - 2.8075119568900235
+ - -2.013764652821788
+ - 0.49168897566166514
+ - 1.1992564004854727
+ - -2.485677543564942
+ - 2.8904481471489607
+ - -4.847300926603712
+ - -4.8427677862488805
+ - -2.4458363680212765
+ - -2.3448615605572547
+ - -0.3935456773228197
+ - -0.26315724140396923
+ - 1.145338899444051
+ - -2.4548399529322626
+ - 2.890659058548195
+ - -2.4167772723626273
+ - 1.0847975141566404
+ - 0.522227594459112
+ - -1.2523484880655595
+ - -1.9184760251510282
+ - 3.4853934588132263
+ - 1.8932634684795675
+ - -2.3430248801571425
+ - 0.9671934527177193
+ - 0.7224166754755139
+ - -1.3507580649922224
+ - -1.957641426204065
+ - 3.134979754561743
+ - 1.863723624454191
+ - -2.2150374653471516
+ - 0.7717630466409237
+ - 0.8411232388130044
+ - -2.3205692552421184
+ - 2.8804274690890472
+ - -2.5861388872818414
+ - 0.9775447014186671
+ - 2.1692311936471222
+ - 1.8377183728472997
+ - 0.7683018000930439
+ - -2.3940868251843566
+ - 2.8914988526767185
+ - -2.482288694705441
+ - 0.9465518907664807
+ - 2.2823829056418408
+ - 2.3301293664755534
+ - 0.9741226560599308
+ - -2.5073716615674453
+ - 2.889458595903173
+ - -2.414306366434088
+ - 0.9910352927006733
+ - 0.6182880986488722
+ - -2.1076978521648067
+ - 3.5942434397877343
+ - 4.315120766248375
+ - 6.518183226917858e-17
+ - -1.852884572118782e-17
+ - -1.292676502267244e-16
+ - -3.7207617928400876e-17
+ - -1.0604455452929814e-16
+ - -1.9678626772636526e-16
+ - -2.8124140826802937e-18
+ - 2.2492074831082514e-16
+ - -3.987010552505593e-17
+ - 1.5153948821971465e-16
+ - 8.478601278668532e-17
+ - -3.427836458419746e-16
+ - 3.0457824129968165e-16
+ - -4.034573437727392e-17
+ - -4.3923290526565763e-17
+ - 5.6827308082393e-17
+ - 7.543887186483611e-17
+ - -4.1607184811417286e-17
+ - 1.2159555004529507e-16
+ - -3.3796531877385323e-16
+ - 1.7354249251362518e-16
+ - 1.6659417536817975e-16
+ - 1.7813334491329449e-16
+ - 8.437242248040881e-17
+ - -4.623939624171424e-17
+ - 5.98878763488392e-17
+ - -8.172544452023912e-17
+ - 9.905487835322505e-18
+ - 3.6561383074843823e-17
+ - 1.8756320389639903e-17
+ - 3.161070710871395e-16
+ - 2.1382618834495762e-17
+ - -3.5014555329369657e-16
+ - -1.1406820647106252e-16
+ - 1.753209308306142e-16
+ - 2.6883369907973396e-17
+ - 8.416562732727055e-17
+ - -8.39588321741323e-17
+ - -5.509022879603164e-17
+ - -3.0018384429549374e-16
+ - 3.330229146138489e-16
+ - -3.4245277359695346e-17
+ - 1.0852609636695722e-16
+ - 3.416255929844004e-17
+ - -1.406207041340147e-17
+ - -9.388499952476863e-17
+ - 1.466591226056518e-16
+ - -3.7090778666877756e-16
+ - -2.03817302933066e-16
+ - 7.088937849579447e-17
+ - 1.9653811354259935e-16
+ - -4.1276312566396075e-17
+ - -1.985233470127266e-17
+ - -3.0473333766453535e-16
+ - -2.388897609053144e-16
+ - 5.3849457877202095e-17
+ - -3.067185711346626e-16
+ - 3.153212495052141e-16
+ - -1.8396496823179333e-16
+ - -3.148249411376823e-16
+ - -6.452008777913616e-17
+ - 9.210656120777962e-17
+ - -4.913452838564984e-17
+ - 2.1506695926378716e-17
+ - 4.7852398436192645e-17
+ - 1.844199175686975e-16
+ - -2.2566521086212286e-16
+ - 8.70194004405785e-17
+ - -9.26442286059391e-18
+ - 2.6221625417930974e-17
+ - 1.499471655405501e-16
+ - 1.6326477340265384e-17
+ - 4.863822001811802e-17
+ - 7.624537296207531e-17
+ - -1.7073007843094489e-16
+ - -1.286265852519958e-16
+ - -8.023651941764367e-17
+ - -9.264422860593909e-17
+ - 3.010937429693021e-17
+ - -2.3243775212740075e-17
+ - 2.246622543694023e-16
+ - 4.526332311890167e-16
+ - -1.401243957664829e-16
+ - 5.668255147519622e-17
+ - 1.1787323728880643e-17
+ - -1.848748669056017e-17
+ - 1.1398548840980721e-16
+ - 2.283018490646356e-17
+ - -8.073282778517549e-17
+ - -2.7363134663254155e-16
+ - -4.413835748582955e-16
+ - -7.140223047557734e-16
+ - -3.689225531986503e-16
+ - -1.6907571720583883e-16
+ - -7.754818242684633e-17
+ - -1.9711713997138647e-16
+ - 2.8554274745330515e-16
+ - -1.5385559393486312e-16
+ - 4.0366413892587746e-16
+ - 8.867376166568455e-17
+ - -1.1539169545114735e-17
+ - 3.90429249125029e-16
+ - -8.321436962283457e-17
+ - 1.0745076157063828e-16
+ - -5.459392042849982e-17
+ - -1.8743912680451605e-16
+ - 3.114335006262149e-17
+ - 7.095141704173595e-17
+ - 1.4031051140430732e-16
+ - 7.138568686332629e-17
+ - 1.283784310682299e-16
+ - -2.0017770823783267e-17
+ - -4.963083675318166e-19
+ - 1.0339757656912845e-16
+ - -6.319659879905131e-17
+ - -1.5997673046775553e-16
+ - -1.139027703485519e-16
+ - 5.4531881882558343e-17
+ - -7.326752275688443e-17
+ - 1.13654616164786e-16
+ - 1.4554242877870522e-16
+ - 1.1249656330721176e-16
+ - -1.651052502655843e-16
+ - -3.970466940254533e-18
+ - -2.632088709143734e-16
+ - -9.098986738083304e-18
+ - -1.890934880296221e-16
+ - 1.4177875699158894e-16
+ - 1.2746853239442156e-16
+ - 1.5258380374306284e-16
+ - 1.7205356741102976e-17
+ - -1.3946265127644047e-16
+ - 4.8869830589632875e-16
+ - -4.1276312566396075e-17
+ - -1.579914969976283e-17
+ - 8.883919778819516e-17
+ - 3.929107909626881e-17
+ - 8.963329117624608e-16
+ - 1.5865324148767068e-16
+ - 6.509911420792328e-17
+ - 2.8804496880627806e-16
+ - 4.119359450514077e-17
+ - -1.0257039595657542e-16
+ - -1.0538281003925571e-16
+ - 2.80579663777987e-16
+ - 1.2872998282856492e-17
+ - -1.4186147505284425e-16
+ - -3.316994256337641e-17
+ - 7.535615380358081e-17
+ - -5.542110104105285e-18
+ - -1.406207041340147e-16
+ - 5.525566491854224e-17
+ - -7.403266482349598e-18
+ - -9.628382330117241e-17
+ - -1.5170492434222525e-16
+ - 7.014491594449675e-17
+ - 3.7295505868484635e-17
+ - -1.3937993321518516e-16
+ - 7.891303043755883e-17
+ - -5.1409275070170664e-17
+ - -9.644925942368301e-17
+ - -6.716706573930585e-17
+ - -1.0339757656912845e-16
+ - -3.841736957425967e-17
+ - 1.4086885831778061e-16
+ - 1.1845226371759356e-16
+ - 2.99439381744196e-17
+ - -1.4169603893033364e-16
+ - 2.284259261565186e-16
+ - -1.9990887453875294e-16
+ - 3.656138307484382e-16
+ - -4.2153124015702285e-16
+ - 2.1783801431583981e-16
+ - -2.5642598989143855e-17
+ - 2.924083465374953e-17
+ - 3.556876633978019e-18
+ - -3.3583532869652924e-17
+ - 2.3161057151484772e-17
+ - -1.7470054537119942e-16
+ - -1.6448486480616953e-16
+- - 1.0001451886650108
+ - 0.9516327627123878
+ - -0.04720571867762939
+ - -1.5872355683631092
+ - 2.627958133371103
+ - -2.8813604452890846
+ - 2.0870929969853274
+ - -0.6938216128186858
+ - -0.5517608643801809
+ - -0.4983097769628877
+ - 3.7680047602761904
+ - 1.9132901602607597
+ - -2.8552986282867803
+ - 1.9986705937730114
+ - -0.4928227076843087
+ - -0.6888713721288523
+ - -0.6824386467719632
+ - 3.3230550768443035
+ - 1.8394027696715323
+ - -2.803390081220921
+ - 1.84586243739203
+ - -0.3705746786665532
+ - -1.3882341543195478
+ - 2.5245565410184834
+ - -0.6954812731748904
+ - -0.5634776427190523
+ - -0.45136986191649753
+ - 3.301068817892378
+ - 1.8050933505127558
+ - -2.858356883535317
+ - 1.945096439300998
+ - -0.49428666724588816
+ - -0.6813236508331216
+ - -0.7437739548762208
+ - 3.613805716985256
+ - 1.855250515502591
+ - -2.8064664280758564
+ - 1.848471002078777
+ - -0.3719196649177303
+ - -1.3886755962942805
+ - 2.526600333201037
+ - -2.92581012885423
+ - 4.731847525624667
+ - 4.735576239083302
+ - 2.5323805356104265
+ - 2.4422178478629637
+ - 0.683653746188696
+ - 0.5559385758415512
+ - -1.3368559366664903
+ - 2.498987999690899
+ - -2.9292220294719673
+ - 2.276687640405654
+ - -0.9729739704392536
+ - -0.7258481922843769
+ - 1.331757690535683
+ - 2.089486828779028
+ - -3.4235879110877354
+ - -1.8774415242414302
+ - 2.1992081657063287
+ - -0.8511031981594459
+ - -0.9212998708118804
+ - 1.4238735531458795
+ - 2.1074233906139663
+ - -3.065475472937011
+ - -1.8412925746004623
+ - 2.0605843356346973
+ - -0.6543203610461634
+ - -1.0397292681439074
+ - 2.3756139074441442
+ - -2.932130541063193
+ - 2.461451452098846
+ - -0.8840224080131179
+ - -2.0222726866064344
+ - -1.992424246160201
+ - -0.865200267276866
+ - 2.4452324875145073
+ - -2.9297542992155674
+ - 2.349637540786086
+ - -0.8454396389496266
+ - -2.106091003709393
+ - -2.4969953415491615
+ - -1.0713055068800692
+ - 2.546805114442324
+ - -2.9223850389522763
+ - 2.27402351217371
+ - -0.8772351132652386
+ - -0.8206873178750481
+ - 2.176954480402258
+ - -3.7143040612928147
+ - -4.470619249072748
+ - -2.199440643593797
+ - -1.666771699893703
+ - 1.6801349762003108
+ - -2.7365334934441843
+ - 2.828231821807796
+ - -2.014803167826759
+ - 0.4934221837756183
+ - 1.1117063648350813
+ - -1.5802871924130788
+ - -2.6350248566146974
+ - 3.3511286156152167
+ - 1.8784931721728562
+ - -1.9214567236642641
+ - 0.36888800361237645
+ - 1.297934261350798
+ - -1.5999875856162105
+ - -2.4816018468868064
+ - 2.8251983272529873
+ - 1.7496973245468133
+ - -1.7630366920713212
+ - 0.16470915850159315
+ - 1.406691726989947
+ - -2.6447181070381554
+ - 2.866693125799494
+ - -2.2385493648088572
+ - 0.6141658060735002
+ - 1.5877487330186746
+ - 2.3818243736896396
+ - 1.1153882573701621
+ - -2.6955799947876833
+ - 2.834611904365384
+ - -2.099898761961478
+ - 0.5022093567976043
+ - 1.4948792022310986
+ - 2.757384007559646
+ - 1.2371026209920322
+ - -2.7704692533981823
+ - 2.805866806948388
+ - -2.011660609494841
+ - 0.39413938408937266
+ - 1.2014016110992154
+ - -2.4882249255521054
+ - 5.112872129237988
+ - 5.0292583834645335
+ - 1.2659313626936881
+ - 1.1010476132670421
+ - -2.4691611533953313
+ - -2.616125696632048
+ - 0.45428479162557966
+ - 1.1470008755398275
+ - -2.4529266858082965
+ - 2.886708360892294
+ - -2.414111302244437
+ - 1.0807594660012572
+ - 0.26660436116608766
+ - -0.06618018267422238
+ - -3.459764750285768
+ - -1.7088276381022278
+ - 2.88164163298271
+ - -2.3388034478228676
+ - 0.890232014663671
+ - 0.40805522429072444
+ - 0.17016664607284554
+ - -3.2457753482354943
+ - -1.7481036139116963
+ - 2.8589693294516794
+ - -2.2107570734264756
+ - 0.7702663885944462
+ - 0.9324928043223978
+ - -2.318988489523762
+ - 2.878020491057516
+ - -1.7026208978324877
+ - -3.1961916114692164
+ - -0.0245550175540275
+ - 0.299325006790632
+ - 1.05013316309375
+ - -2.4375890362255626
+ - 2.8887945234795085
+ - -1.7500563131611677
+ - -3.571267047628072
+ - -0.31267434755346535
+ - 0.1327547414397521
+ - 1.236192066340573
+ - -2.50674476774386
+ - 2.8865804250451297
+ - -2.3554121436205846
+ - 0.9893252782977137
+ - 0.6209466582154753
+ - -1.8020084665785392
+ - -2.0542411638901066
+ - -9.628382330117241e-17
+ - 5.023467860034537e-16
+ - 5.790264287871193e-18
+ - 1.3648480107124955e-17
+ - 7.15511229858369e-17
+ - 4.181397996455554e-17
+ - 1.2740649384848009e-16
+ - -2.2995621028974166e-17
+ - 1.647743780205631e-16
+ - -1.8119391317974069e-16
+ - -6.385834328909374e-17
+ - -1.507743461531031e-16
+ - -3.364970731865716e-16
+ - -1.4428097834456185e-16
+ - -7.159248201646455e-17
+ - -9.355412727974742e-17
+ - 6.865599084190129e-18
+ - 1.828069153742191e-16
+ - 1.4344733538347325e-16
+ - 1.9476226016502457e-16
+ - -2.5642598989143855e-17
+ - 2.4732700315335524e-17
+ - -1.9784383106421138e-16
+ - -7.378451063973007e-17
+ - 2.99439381744196e-17
+ - 3.093655490948323e-16
+ - 4.681842267050136e-17
+ - 4.5034814474683894e-17
+ - -6.61744490042422e-19
+ - 4.615667818045894e-17
+ - -3.0787662399223685e-16
+ - 7.325718299922751e-18
+ - 1.8032537353656e-16
+ - 2.8537731133079455e-17
+ - -1.9041697700970695e-16
+ - 4.119359450514077e-17
+ - -9.395737782836702e-17
+ - 5.0540735426989985e-17
+ - 1.240357328523265e-16
+ - 2.0150119721791752e-16
+ - -3.380893958657362e-16
+ - -9.043152046735974e-17
+ - -2.655249766295219e-16
+ - -7.549057065312068e-17
+ - 4.252742324288253e-17
+ - 5.616556359235058e-17
+ - -7.0351711097635e-17
+ - 6.352747104407252e-16
+ - 1.5385559393486312e-16
+ - -3.8298462361205175e-17
+ - -1.743696731261782e-16
+ - -2.6904049423287222e-17
+ - 5.39321759384574e-17
+ - 2.294599019222099e-16
+ - 2.0232837783047054e-16
+ - -1.3069453678337836e-17
+ - 2.1754850110144625e-16
+ - 5.591740940858467e-17
+ - 8.950094227823758e-17
+ - 3.2115287282371295e-16
+ - 7.328820227219825e-17
+ - -5.0871607672011196e-17
+ - 4.615667818045894e-17
+ - -2.895132143935597e-17
+ - 5.169878828456422e-18
+ - -1.7932241704383946e-16
+ - 2.366563732514212e-16
+ - -1.0439019330419208e-16
+ - 1.7825742200517744e-16
+ - 9.876536513883149e-17
+ - -9.992341799640573e-17
+ - -2.8000063734919987e-17
+ - -2.613890735667567e-17
+ - -2.580803511165446e-17
+ - 1.5203579658724646e-16
+ - 1.8967251445840922e-16
+ - 9.760731228125725e-18
+ - 2.2540671692070004e-16
+ - 5.335314950967028e-17
+ - 6.266927115854876e-17
+ - -1.528629771997995e-16
+ - -3.3715881767661403e-16
+ - 4.830734777309681e-17
+ - -1.285438671907405e-16
+ - -2.9778502051908992e-18
+ - 3.334571844354393e-17
+ - 1.5054687148465104e-17
+ - 1.0819522412193601e-16
+ - 4.903113080908072e-16
+ - 4.648755042548015e-17
+ - 3.785178483042654e-16
+ - 2.4286022784556893e-16
+ - 1.4136516668531243e-16
+ - 7.947137735103212e-17
+ - 1.881835893558138e-17
+ - 1.8967251445840922e-16
+ - -7.610061635487853e-17
+ - 2.6478051407822416e-16
+ - -2.579872932976324e-16
+ - -8.056739166266488e-17
+ - -3.3087224502121103e-18
+ - -4.02175213823282e-16
+ - -5.786128384808429e-17
+ - 5.847132954984214e-17
+ - 1.9910237344151374e-16
+ - 2.3442298559752804e-16
+ - -5.2898200172766114e-17
+ - -9.173432993213076e-17
+ - 1.1431636065482842e-16
+ - -7.146840492458159e-17
+ - -8.768114493062092e-17
+ - -1.2738581433316625e-17
+ - -6.35429806805579e-17
+ - -1.3110812708965489e-16
+ - 3.441071348220595e-17
+ - 1.0257039595657542e-16
+ - 1.725085167479339e-16
+ - 1.8963115542778156e-17
+ - 2.448454613156962e-16
+ - -1.3913177903141925e-16
+ - -1.2047885621834848e-16
+ - 1.4868571510640672e-17
+ - 4.3071294495636146e-16
+ - 1.1617751703307274e-16
+ - 2.1663860242763792e-16
+ - 5.889525961377557e-17
+ - 7.495290325496122e-17
+ - -1.154950930277165e-16
+ - 2.5890753172909763e-17
+ - -9.719372197498074e-17
+ - 1.2353942448479468e-16
+ - 1.5567022140365133e-16
+ - 5.703410323553126e-17
+ - -8.304893350032397e-17
+ - 1.3309336055978215e-16
+ - -6.356883007470018e-17
+ - -6.830443908156626e-17
+ - -5.33159263821054e-16
+ - -7.585246217111263e-17
+ - -8.462057666417472e-17
+ - -1.665528163375521e-16
+ - -3.80347985409539e-17
+ - 3.106063200136619e-17
+ - 2.2573758916572125e-16
+ - -2.3161057151484775e-16
+ - -1.5385559393486315e-17
+ - 2.274746684520826e-18
+ - -7.77549775799846e-18
+ - 1.464109684218859e-17
+ - 8.271806125530276e-17
+ - 2.803315095942211e-16
+ - -6.11700062982964e-17
+ - 5.0292581243224076e-17
+ - 1.0902240473448904e-16
+ - 3.0738031562470503e-16
+ - -1.1588800381867918e-16
+ - -8.933550615572699e-18
+ - -4.824530922715533e-17
+ - 6.494401784306959e-17
+ - 1.1820410953382765e-16
+ - 1.3929721515392986e-16
+ - 8.222175288777094e-17
+ - 1.3516131209116472e-16
+ - 4.6797743155187535e-17
+ - -2.658558488745431e-16
+ - -1.623755542441593e-16
+ - -6.704298864742289e-17
+ - -6.90695811481778e-18
+ - -2.3161057151484775e-16
+ - 4.9775593360378434e-17
+ - -1.9653811354259935e-16
+ - 3.1623114817902243e-16
+ - -4.748016716054378e-17
+ - -3.399712317592944e-17
+ - -4.7604244252426737e-17
+ - -1.67276599373536e-16
+ - -5.045801736573468e-18
+ - -1.198584707589337e-16
+ - 3.044024654195142e-17
+ - 5.287338475438953e-16
+- - -2.351732430737377
+ - -1.9906319940276875
+ - 0.9996659949386971
+ - 0.09609019665036857
+ - -1.2136588146209508
+ - 1.9073440165640323
+ - -1.9853966327284487
+ - 1.36596452869962
+ - -0.3224960964889432
+ - -0.9916075006980868
+ - -2.1120591241238245
+ - -0.9698811365877752
+ - 1.9345373987781143
+ - -1.961333875987855
+ - 1.2587444726816919
+ - -0.18635748674570016
+ - -0.7044775802726094
+ - -1.9381498803932222
+ - -0.9650439921292796
+ - 1.969419068685676
+ - -1.916391982456476
+ - 1.1891212182549928
+ - -0.06480134495130786
+ - -1.0801105704072722
+ - 1.822244392776502
+ - -0.27705256333638295
+ - -0.8575187481154727
+ - -1.845381791513489
+ - -0.9006029206656732
+ - 1.9363777808272375
+ - -1.9462640831693716
+ - 1.2586716551055575
+ - -0.19555295896157976
+ - -0.7625621908905091
+ - -2.1071669588811
+ - -0.9782507889198991
+ - 1.9712029541587532
+ - -1.9173373547272659
+ - 1.1889656028939135
+ - -0.0635667554385906
+ - -1.0820157598893991
+ - 1.824203495021996
+ - -3.6302016259898404
+ - -3.582226048824485
+ - -1.0857873776693172
+ - -0.9763528702931462
+ - 1.3357469148101941
+ - 1.4382313033127248
+ - -0.10439197696398754
+ - -1.048496645356107
+ - 1.8062683995637083
+ - -2.0257542357568554
+ - 1.5071642827849865
+ - -0.5541432017991208
+ - -0.3428653362464025
+ - -0.25703358875788024
+ - 2.4900460216934537
+ - 1.256232618363941
+ - -2.0105288156341845
+ - 1.4475925546494108
+ - -0.4147175412598178
+ - -0.4379011660719071
+ - -0.3966052654422773
+ - 2.3153338463267916
+ - 1.2738914488837771
+ - -1.9791082606119441
+ - 1.344203323004842
+ - -0.32974447725984657
+ - -0.9066365374918625
+ - 1.7289692443352147
+ - -2.0468235394955765
+ - 1.1121891692339532
+ - 2.1391102491187786
+ - 0.2958954263157877
+ - -0.051244474290912896
+ - -0.9833612296484656
+ - 1.7987253261051293
+ - -2.035941228468317
+ - 1.134241739179214
+ - 2.368444890696034
+ - 0.5342753140215657
+ - 0.0744700844374593
+ - -1.1069230667557304
+ - 1.8364560699876868
+ - -2.0252945688179795
+ - 1.4596381101102527
+ - -0.4877699434268658
+ - -0.6979032423756734
+ - 1.5699148811512265
+ - 1.823074543437039
+ - -0.26904662159289044
+ - -0.3161954610976398
+ - -0.2402533238998079
+ - 1.277037110418441
+ - -1.9536983574376932
+ - 1.9254208196207943
+ - -1.3100679037858973
+ - 0.21503465199490107
+ - 0.5433255104801663
+ - 0.661425105666776
+ - -2.658550921915924
+ - -1.374944914739752
+ - 1.8984388249960567
+ - -1.2398680740246992
+ - 0.07348382671203531
+ - 0.6256151969669325
+ - 0.7465104545804879
+ - -2.326207355770585
+ - -1.3138971160179056
+ - 1.844622588075503
+ - -1.1237272488690204
+ - -0.014102962076034302
+ - 1.1487137094863926
+ - -1.8992253351344688
+ - 1.981098763014451
+ - -0.9879878491553101
+ - -1.9710492095417622
+ - -0.6493763859575875
+ - -0.15373632384368602
+ - 1.219688205141725
+ - -1.9475510276381862
+ - 1.9496515556021983
+ - -0.9358161468662433
+ - -2.0406717257739966
+ - -0.8722823378099342
+ - -0.25567331992102166
+ - 1.32929221723531
+ - -1.9737639046202524
+ - 1.9245145142733588
+ - -1.2550935064002264
+ - 0.1467879517888148
+ - 0.9560292609721166
+ - -2.758589022465829
+ - -2.666365989560598
+ - 0.11947695790053335
+ - 0.24814479031183237
+ - 3.0540301557872316
+ - 3.13600221861364
+ - -1.2890025183626357
+ - 0.18920737629257742
+ - 0.9160524548817153
+ - -1.811922503651221
+ - 2.00853709756925
+ - -1.609302275365357
+ - 0.48526266568640375
+ - 1.28274865384505
+ - 1.7382924261024557
+ - 0.7504367895440365
+ - -1.850270604155779
+ - 1.999268947478217
+ - -1.5164757956574197
+ - 0.38644841083436565
+ - 1.0388001113731953
+ - 1.7156342145682244
+ - 0.8136628371699344
+ - -1.9073590097391262
+ - 1.9744471941952746
+ - -1.4571595346059052
+ - 0.3485633310809738
+ - 0.7701825869984129
+ - -1.6954264132903547
+ - 1.3197666124383713
+ - 2.267152627182095
+ - -1.128847227375105
+ - -0.823800203764463
+ - 0.26344152330496023
+ - 0.9003098603904224
+ - -1.7707397686425095
+ - 1.3931912734406395
+ - 2.622219044962503
+ - -1.1113500167690438
+ - -0.7640478334662265
+ - 0.12098891658506272
+ - 0.977890771848924
+ - -1.8133158144339268
+ - 2.000917848363839
+ - -1.5659439402915176
+ - 0.5686657321685653
+ - -0.21436428915674788
+ - -0.3814542016805009
+ - 9.808294113347526e-16
+ - 1.3972734907245742e-15
+ - 1.8855582063146263e-16
+ - 1.4074478122589766e-16
+ - -1.2076836943274204e-16
+ - -1.603489617434044e-16
+ - -1.8082168190409183e-16
+ - -8.882885803053825e-17
+ - -3.0997123271132865e-16
+ - 7.711262013554888e-17
+ - 1.435985543392056e-16
+ - 2.9488988837515437e-16
+ - 1.2364023712194958e-16
+ - 4.2434365423970314e-17
+ - -1.7163997710475324e-17
+ - -2.1366075222244702e-16
+ - -5.513158782665929e-17
+ - -6.690857179788303e-17
+ - -7.949205686634595e-17
+ - 8.027787844827132e-17
+ - 1.072232869021862e-16
+ - 2.8723846770903886e-17
+ - 8.635765595053608e-17
+ - 6.385834328909374e-17
+ - 6.528522984574771e-17
+ - -3.026860656484666e-16
+ - -7.127194952910025e-17
+ - -2.336785230462303e-17
+ - 2.928219368437718e-16
+ - 1.9380841752117436e-16
+ - 1.8245536361388405e-16
+ - 4.3778533919368984e-17
+ - 1.9732393512452473e-16
+ - 4.9051810324394535e-17
+ - 3.563080488572167e-17
+ - -3.129198407893961e-16
+ - -5.71840297215565e-17
+ - -8.147729033647323e-18
+ - -1.481066886776196e-16
+ - 2.158941398763402e-16
+ - 1.1524693884395058e-16
+ - 1.859036727924645e-16
+ - 2.6639351627270256e-16
+ - 7.37690010032447e-17
+ - 3.3004506440865804e-17
+ - -6.617444900424221e-17
+ - -3.184645358329156e-18
+ - -3.181336635878944e-16
+ - -1.4740358515694953e-16
+ - 9.992341799640573e-17
+ - 1.6241691327478696e-16
+ - 6.985540273010319e-17
+ - 2.283018490646356e-17
+ - -1.2639319759810263e-16
+ - -2.815722805130506e-16
+ - -4.888637420188393e-17
+ - -1.0728532544812768e-16
+ - 4.954811869192635e-17
+ - -4.8472783895607416e-17
+ - -5.897797767503087e-17
+ - 3.0316169450068464e-17
+ - 2.320758606094088e-17
+ - 5.37667398159468e-19
+ - 1.6212740006039342e-17
+ - -1.313562812734208e-16
+ - -6.162495563520056e-17
+ - -1.593977040389684e-16
+ - 5.153335216205362e-17
+ - -7.014491594449675e-17
+ - 8.532368018484479e-17
+ - 4.830734777309681e-17
+ - 1.5153948821971465e-16
+ - 3.135014521575975e-17
+ - -4.209315342129219e-17
+ - -1.403725499502488e-16
+ - -1.7767839557639032e-16
+ - -3.7223127564886245e-18
+ - -5.2691405019627857e-17
+ - 7.328820227219825e-17
+ - -1.0132962503774588e-16
+ - 7.353635645596416e-17
+ - 1.6576699475562672e-16
+ - -2.9695783990653694e-17
+ - 1.43433118216695e-16
+ - -5.3187713387159673e-17
+ - -6.275198921980406e-17
+ - -9.065899513581182e-17
+ - -7.990564717262246e-17
+ - -4.221929846470653e-16
+ - -3.0440246541951414e-16
+ - -1.857020475181547e-16
+ - 7.725866921245277e-17
+ - 2.4236391947803708e-17
+ - -8.784658105313153e-17
+ - -7.965749298885655e-17
+ - -5.822834524490469e-17
+ - -1.141509245323178e-17
+ - -1.3021890793116038e-16
+ - 1.0087467570084171e-16
+ - -9.177568896275841e-17
+ - 6.188603451603761e-17
+ - 2.3483657590380456e-16
+ - 9.793818452627846e-17
+ - -3.2094607767057474e-17
+ - -5.4469843336616866e-17
+ - -4.702521782363962e-17
+ - -4.35510592509169e-17
+ - 8.391747314350465e-17
+ - 9.438130789230045e-17
+ - 5.3559944662808534e-18
+ - 5.66618719598824e-17
+ - 6.346543249813105e-17
+ - 1.6295458067294645e-17
+ - 3.383168705341883e-17
+ - -1.5042279439276808e-16
+ - -6.59262948204763e-17
+ - -1.2167826810655037e-16
+ - -2.0265925007549175e-17
+ - 1.9736529415515238e-16
+ - 8.724687510903058e-17
+ - 8.55718343686107e-17
+ - -3.443139299751978e-17
+ - -8.681260528744024e-17
+ - -2.134125980386811e-17
+ - -1.3019822841584656e-16
+ - -1.1514354126738145e-16
+ - -8.193223967337738e-17
+ - 4.946540063067105e-17
+ - -1.923194924185789e-16
+ - -5.2029660529585435e-17
+ - -1.0219816468092656e-16
+ - -1.0141234309900118e-16
+ - 9.843449289381028e-18
+ - 4.7604244252426737e-17
+ - -2.0137712012603456e-16
+ - -1.3689839137752608e-16
+ - 5.703410323553126e-17
+ - 2.746239633676052e-16
+ - 1.2771668657818747e-16
+ - 5.492479267352103e-17
+ - 1.0453494991138886e-16
+ - 4.623939624171424e-17
+ - -3.9456515218779414e-17
+ - -2.845501307182415e-16
+ - 2.785944303078597e-16
+ - -1.646089418980525e-17
+ - 8.896327488007811e-17
+ - 2.568395801977151e-16
+ - -5.39321759384574e-17
+ - -6.418921553411495e-17
+ - -9.061763610518417e-17
+ - 1.593977040389684e-16
+ - 1.5902547276331957e-17
+ - -7.213014941462401e-17
+ - -3.720658395263518e-16
+ - 6.460280584039146e-17
+ - -8.954230130886523e-17
+ - -2.1936829844906291e-16
+ - -1.8018061692936323e-16
+ - -6.005331247134981e-17
+ - -1.406207041340147e-17
+ - -2.0844951436336294e-17
+ - -4.375785440405516e-17
+ - -3.866552375802558e-17
+ - 1.3226617994722913e-16
+ - 6.048758229294015e-17
+ - -4.293067379150213e-17
+ - -6.129408339017935e-17
+ - -5.96397221650733e-17
+ - 2.8951321439355965e-18
+ - 5.854370785344053e-17
+ - 8.99972506457694e-17
+ - 9.29751008509603e-17
+ - 3.192917164454687e-17
+ - -7.506664058918726e-18
+ - -1.0960143116327617e-18
+ - -1.1522625932863676e-16
+ - -1.555099551599692e-17
+ - -6.101284198191131e-16
+ - 4.450231695535288e-17
+- - 7.900242723891397
+ - 6.494077333976889
+ - -4.153378144755333
+ - 2.4196463638357697
+ - 0.09427386069386429
+ - -2.70184258373624
+ - 4.284536347724914
+ - -4.481538469714229
+ - 2.3498998175980805
+ - 5.022516845391371
+ - 1.8191524754713646
+ - 0.49897441951228566
+ - -2.8579496748432356
+ - 4.351843659047881
+ - -4.402619269953146
+ - 2.038204430752831
+ - 4.171992671719308
+ - 1.9169860870101216
+ - 0.6147776059433043
+ - -3.1022360461868184
+ - 4.442210717474432
+ - -4.343482384156439
+ - 2.720230252439299
+ - -0.26882115100874243
+ - -2.273152766529758
+ - 2.594629812503045
+ - 4.381043138730463
+ - 1.5733052866949302
+ - 0.411046723441201
+ - -2.859992336558365
+ - 4.388004430383569
+ - -4.399743650072319
+ - 2.0624262035624774
+ - 4.525392346598961
+ - 2.082429050414308
+ - 0.6403840876892867
+ - -3.1040043880982844
+ - 4.441440676080794
+ - -4.340485825978015
+ - 2.715944253988298
+ - -0.26463162985815103
+ - -2.2758241585187653
+ - 6.334177752587629
+ - 6.128529991602913
+ - -0.15919945757250012
+ - -0.446636575354016
+ - -6.788766323372746
+ - -6.9783603046914315
+ - 2.7897519554670476
+ - -0.35266129190266127
+ - -2.195300103999532
+ - 4.103239394093598
+ - -4.553300143277121
+ - 3.5289921586711257
+ - -1.0285096582112232
+ - -2.777054984606455
+ - -4.0177940197714275
+ - -1.750800795391375
+ - 4.187091219811675
+ - -4.526251177644199
+ - 3.3153224063261053
+ - -0.8042800549177622
+ - -2.232001255593553
+ - -3.9526895059760205
+ - -1.8904034583380211
+ - 4.307412608775799
+ - -4.464283243546929
+ - 3.176721397894465
+ - -0.713189748121211
+ - -1.8700147414412562
+ - 3.8508561277689455
+ - -2.9806612890486313
+ - -5.140814941458125
+ - 2.4375728999288095
+ - 1.8028424232111708
+ - -0.5190127645162269
+ - -2.158835324112824
+ - 4.015767443012574
+ - -3.1429140145587833
+ - -5.9364638501872795
+ - 2.3779835343508418
+ - 1.6611256496382523
+ - -0.19845623594524758
+ - -2.333049352487826
+ - 4.106275016120776
+ - -4.53235365198068
+ - 3.4283072447209912
+ - -1.2123652696100824
+ - 0.32708493810307454
+ - 0.6691197373728962
+ - 5.157662381759106
+ - 4.373653493882696
+ - -2.1942355228288237
+ - -0.35802246527872295
+ - 2.79084967223696
+ - -4.369867253350003
+ - 4.4177161033315295
+ - -3.034667020775933
+ - 0.6552125886569973
+ - 2.1051887007543155
+ - 4.848811650064291
+ - 2.2404669064329883
+ - -4.4253288266506345
+ - 4.360367239836545
+ - -2.786433334290506
+ - 0.35066322062450833
+ - 1.4707960747409157
+ - 4.439396070504129
+ - 2.2244309605172106
+ - -4.498126726405803
+ - 4.250349654928178
+ - -2.6280860788770704
+ - 0.004744012990162401
+ - 2.494388134176504
+ - -4.189096207509054
+ - 2.962386853252079
+ - 5.2436178992372104
+ - -1.6896904737267175
+ - -1.4139457686072723
+ - -0.19123632206746125
+ - 2.757921269872794
+ - -4.3093586944821105
+ - 2.9521696649642784
+ - 5.7027227564655165
+ - -1.4570628975287456
+ - -1.2155769611783371
+ - -0.5118526562862463
+ - 2.91492178774496
+ - -4.371943174720103
+ - 4.372750378602679
+ - -2.9170990225619846
+ - 0.5144854839553712
+ - 2.0266220660424765
+ - 1.7985205071545598
+ - -2.7861837874134374
+ - -3.0066302520036174
+ - -8.108137912692724
+ - -8.183083204640734
+ - 4.4035927990506964
+ - -2.992767203453435
+ - 0.6156724312281715
+ - 2.0961403149862
+ - -3.980083096500758
+ - 4.577320631971142
+ - -2.499758397897951
+ - -5.190609005183383
+ - -0.83805747175987
+ - 0.03385674682159646
+ - 2.268719161083794
+ - -4.07574287284359
+ - 4.547570037171261
+ - -2.3505822113470147
+ - -4.614823082742017
+ - -1.137660302436753
+ - -0.15578027395855576
+ - 2.542420303712193
+ - -4.212796838070484
+ - 4.518029750047641
+ - -3.2581776250142225
+ - 0.9733556222369076
+ - 1.6297259734938088
+ - -2.3352997740842576
+ - -3.512822595872812
+ - 4.71995358268601
+ - 2.8612577229097966
+ - -3.1175243404767516
+ - 0.6569208812322169
+ - 1.9262319675966137
+ - -2.552150173379038
+ - -4.293677796956894
+ - 5.177142595857336
+ - 2.9200215382476586
+ - -2.874061649518238
+ - 0.45835780776401824
+ - 2.1022096165564617
+ - -4.056287073882694
+ - 4.5656333333078924
+ - -3.5968897897379164
+ - 4.200558755317202
+ - 5.356200690872129
+ - -2.282253348579745e-15
+ - -3.225011772221744e-15
+ - -4.57348160680569e-16
+ - -2.1440521477374475e-16
+ - 1.2027206106521022e-16
+ - 3.3236117012380647e-16
+ - 4.902699490601795e-16
+ - 1.8801815323330317e-16
+ - 4.966392397768378e-16
+ - -1.6030760271277674e-16
+ - -2.658558488745431e-16
+ - -9.09236929318288e-16
+ - -1.9281580078611073e-16
+ - -3.096964213398535e-16
+ - 8.3876114112877e-17
+ - 6.76106413427874e-16
+ - 8.174612403555295e-17
+ - 5.744769354180777e-17
+ - 3.39888513698039e-16
+ - -1.1539169545114736e-16
+ - -1.50670948576534e-16
+ - 2.8124140826802937e-18
+ - 6.088049308390284e-17
+ - -4.322018700589569e-17
+ - -1.4583194199309878e-16
+ - 9.62507360766703e-16
+ - 8.768114493062093e-18
+ - 4.284795573024683e-17
+ - -8.228792733677518e-16
+ - -5.62937765872963e-16
+ - -1.5550995515996918e-16
+ - -2.1837568171399928e-17
+ - -7.590209300786581e-16
+ - -3.897675046349866e-16
+ - -2.067124350770016e-16
+ - 9.254496693243274e-16
+ - 1.5385559393486315e-17
+ - -1.29761373654842e-16
+ - 4.0366413892587746e-16
+ - -8.10637000301967e-16
+ - 5.6248281653605874e-18
+ - -5.624828165360588e-16
+ - -6.620753622874433e-16
+ - -1.4459117107426924e-16
+ - -4.79764755280756e-17
+ - 4.23413076050581e-16
+ - 1.458888106602118e-16
+ - 3.397230775755284e-16
+ - 2.3690452743518713e-16
+ - -1.2666203129718236e-16
+ - -1.1745964698252993e-16
+ - -2.5791491499403403e-16
+ - -1.7221900353354034e-16
+ - 1.1745964698252993e-16
+ - 2.871971086784112e-16
+ - 1.0819522412193601e-16
+ - 1.6450554432148338e-17
+ - -4.301339185275743e-17
+ - 2.6469779601696883e-17
+ - 1.771820872088585e-16
+ - -7.916118462132474e-17
+ - 5.955700410381799e-17
+ - -6.849055471939069e-17
+ - 7.593518023236793e-17
+ - 2.689991352022446e-16
+ - 1.6659417536817975e-16
+ - 3.8298462361205176e-16
+ - -2.7958704704292335e-17
+ - 1.345822856623776e-16
+ - -2.069605892607675e-16
+ - 3.2638479019811085e-16
+ - -6.485096002415737e-17
+ - -1.0711988932561707e-16
+ - 1.3937993321518516e-17
+ - 6.739040450469515e-16
+ - 1.828896334354744e-16
+ - 3.391440511467413e-18
+ - -8.970773743137584e-17
+ - -1.9662083160385465e-16
+ - 2.6403605152692643e-16
+ - 3.672681919735443e-17
+ - 8.530300066953097e-17
+ - 9.347140921849213e-18
+ - -2.1721762885642504e-16
+ - 1.27179019180028e-16
+ - 1.2986735617082534e-16
+ - 3.208633596093194e-16
+ - 1.9322939109238724e-16
+ - 8.086517668318398e-16
+ - 8.2784235704307e-16
+ - -2.484850560109295e-16
+ - -4.681842267050137e-16
+ - -3.667718836060124e-16
+ - 2.0613340864821447e-16
+ - 2.387243247828038e-16
+ - -1.6626330312315856e-17
+ - -1.8285861416250368e-17
+ - 1.681658185320305e-16
+ - 6.700162961679524e-17
+ - 3.3611450215326583e-16
+ - -2.71563395101159e-16
+ - -1.513326930665764e-16
+ - -2.669725427014897e-16
+ - 1.800772193527941e-16
+ - 2.1281289209458017e-16
+ - -9.864128804694853e-18
+ - 9.773138937314021e-17
+ - -1.7735883244130636e-16
+ - -1.4558378780933287e-17
+ - 1.708127964922002e-17
+ - -7.262645778215583e-17
+ - -1.1315830779725419e-16
+ - -8.668852819555729e-17
+ - 3.805030817743927e-18
+ - 1.654361225106055e-16
+ - 1.5517908291494797e-16
+ - 2.7991791928794457e-16
+ - 7.246102165964522e-17
+ - -4.618976540496107e-16
+ - -1.3061181872212307e-16
+ - -1.3962808739895107e-16
+ - 2.474924392758659e-16
+ - -2.4674797672456816e-16
+ - 9.657333651556597e-18
+ - 6.253485430900889e-17
+ - 6.028492304286465e-16
+ - 1.282129949457193e-16
+ - -6.716706573930585e-17
+ - 4.355933105704243e-16
+ - 1.7408015991178465e-16
+ - 9.396771758602393e-17
+ - 1.7503141761622063e-16
+ - 1.5083121482021612e-16
+ - -3.28390703183552e-17
+ - 4.744707993604167e-16
+ - 6.28657265540301e-17
+ - -5.806807900122254e-17
+ - -4.0697286137608957e-16
+ - -6.460280584039146e-17
+ - -7.378451063973007e-17
+ - -1.8896941093773915e-16
+ - -1.019913695277883e-16
+ - 8.99145325845141e-17
+ - 6.078123141039646e-16
+ - -1.0989094437766971e-16
+ - -3.2094607767057474e-17
+ - -2.416401364420532e-16
+ - -3.834809319795836e-16
+ - 1.530284133223101e-16
+ - 1.593977040389684e-16
+ - -4.582580593543773e-17
+ - -3.1664473848529894e-16
+ - -7.560430798734672e-17
+ - 1.491406644433109e-16
+ - 3.1060632001366184e-16
+ - -1.4524257580665475e-16
+ - 1.4252321954288667e-16
+ - 2.984467650091324e-16
+ - 2.3756627192522955e-16
+ - -5.765448869494603e-17
+ - -1.0637542677431935e-16
+ - 1.493888186270768e-16
+ - 4.615667818045894e-17
+ - 1.2308447514789052e-16
+ - 1.2182302471374715e-16
+ - -3.2094607767057474e-17
+ - 1.7221900353354034e-16
+ - 4.446095792472524e-18
+ - 2.361600648838894e-16
+ - 5.839895124624375e-17
+ - 1.492233825045662e-16
+ - -3.1738920103659667e-16
+ - -5.920545234348296e-17
+ - 2.5973471234165066e-17
+ - 1.3400325923359047e-17
+ - 9.58702329948959e-17
+ - 2.3210687988237957e-16
+ - 1.0620999065180874e-16
+ - 1.5366534239397593e-15
+ - 2.780154038790726e-16
+- - 5.361260921391872
+ - 4.425272188829066
+ - -2.7480817225044105
+ - 1.3779842866665117
+ - 0.43589129166900714
+ - -2.1886338896628996
+ - 3.128400507041572
+ - -3.0561056416835823
+ - 1.4749263525284435
+ - 3.248444146070556
+ - 1.7334145623460813
+ - 0.5995252401124371
+ - -2.2882408143217723
+ - 3.1602752799453984
+ - -2.9757460975922694
+ - 1.2496319410289107
+ - 2.6604779980631172
+ - 1.7353103724460932
+ - 0.6656243018280507
+ - -2.442205805426233
+ - 3.19857190610853
+ - -2.919297076542021
+ - 1.604658701424109
+ - 0.18139203013717312
+ - -1.9112197459567857
+ - 1.9336216288850563
+ - 3.11712814503213
+ - 1.5051166150748456
+ - 0.5261656233364052
+ - -2.2900235442369707
+ - 3.176613913813841
+ - -2.974047078998344
+ - 1.26670035180736
+ - 2.8853365609504267
+ - 1.885634437704514
+ - 0.6847779315484741
+ - -2.443810540959511
+ - 3.198427677691227
+ - -2.9175005992353786
+ - 1.6017630013285287
+ - 0.1844468920973418
+ - -1.9134070159030165
+ - 4.852721369648049
+ - 4.717370618670483
+ - 0.25193173983275446
+ - 0.04928768722745802
+ - -4.389363134384537
+ - -4.532654340749578
+ - 1.6578398116132347
+ - 0.12238487426669817
+ - -1.860679014651929
+ - 3.0353446230050776
+ - -3.142883783094515
+ - 2.2324704533025894
+ - -0.4917962409928385
+ - -1.5403179061636063
+ - -3.1376341764033513
+ - -1.4216346183755884
+ - 3.079689747650233
+ - -3.1079548658934275
+ - 2.06359068013463
+ - -0.33064262288191404
+ - -1.1776363403807157
+ - -3.0441103843820394
+ - -1.5087811073044615
+ - 3.1397767966362977
+ - -3.039125387439473
+ - 1.955439464649286
+ - -0.13324282353299155
+ - -1.6461447831699183
+ - 2.8946315400854825
+ - -2.0941897349261773
+ - -3.682065525016238
+ - 1.3296909429275479
+ - 1.0692458705349117
+ - 0.004748376486990572
+ - -1.8367851964662645
+ - 2.9876987621867377
+ - -2.195959927141868
+ - -4.219621890379656
+ - 1.2191614586612374
+ - 0.9465391380456274
+ - 0.2310173944255811
+ - -1.9507291417718111
+ - 3.0369709077608187
+ - -3.1155457321901188
+ - 2.1525733479739952
+ - -0.4910978250256253
+ - -0.30767363084222554
+ - -0.18832557156894383
+ - 3.0978437040722144
+ - 2.6549143524050605
+ - -1.209948421338446
+ - -0.6194866400122288
+ - 2.2459397530777796
+ - -3.168604001357361
+ - 2.991659393316243
+ - -1.845439159499996
+ - 0.21008684238020994
+ - 1.019442424165482
+ - 3.6765191229002
+ - 1.7453370809389692
+ - -3.1922184287618
+ - 2.936071604849407
+ - -1.6552839954504657
+ - 0.006071875177178939
+ - 0.621891583315903
+ - 3.3318221556299137
+ - 1.7165779389334714
+ - -3.217847927119085
+ - 2.8347145818312223
+ - -1.5351835480221934
+ - -0.36683868994252294
+ - 2.0554773496359586
+ - -3.0807095598540277
+ - 2.0440581836180107
+ - 3.688713748397837
+ - -0.7805986061652361
+ - -0.7769931760710337
+ - -0.5036415884945102
+ - 2.2249548530215777
+ - -3.1407539299603635
+ - 2.021518046298223
+ - 3.9789744668370712
+ - -0.573922202999383
+ - -0.6287527378865835
+ - -0.7259245868193008
+ - 2.3247724345833998
+ - -3.1695290202179423
+ - 2.9479408505140574
+ - -1.7551007485894967
+ - -0.007934366754565401
+ - 2.0600918455966957
+ - 1.8975771348985937
+ - -1.6635660872047833
+ - -1.8327586012139112
+ - -5.705774865987144
+ - -5.775857728639744
+ - 2.9767718610003553
+ - -1.8127703305654013
+ - 0.06388903868885805
+ - 1.7951497136423191
+ - -2.9673563978369124
+ - 3.179941373633507
+ - -1.6141602473423167
+ - -3.439109847705795
+ - -1.041670284546314
+ - -0.21861301523029253
+ - 1.9083354257987293
+ - -3.0200764097467276
+ - 3.1332842400806205
+ - -1.4956421940381728
+ - -3.0253224596431516
+ - -1.2094593729880445
+ - -0.34945752531390817
+ - 2.0861217088362
+ - -3.092445793958082
+ - 3.0969810547168244
+ - -2.0184006721598733
+ - 0.31912799092543026
+ - 1.485730382721177
+ - -1.7831982033708196
+ - -2.771893281737177
+ - 3.1153260173075217
+ - 1.9328362962031762
+ - -1.9090035775233816
+ - 0.09318107725137822
+ - 1.6830384555188913
+ - -1.9331757002288694
+ - -3.3407499991920204
+ - 3.3767924217722727
+ - 1.9481761814304304
+ - -1.7217611303392109
+ - -0.047643491633670466
+ - 1.7991374305049164
+ - -3.0094369225159916
+ - 3.1593350229597026
+ - -2.2861467257866868
+ - 2.5214690142206493
+ - 3.2495100955633216
+ - -1.552121701394501e-15
+ - -2.1155971346656236e-15
+ - -2.902576769448574e-16
+ - -1.1634295315558334e-16
+ - 8.631629691990843e-17
+ - 2.477405934596318e-16
+ - 3.537024299276746e-16
+ - 9.60356691174065e-17
+ - 3.206152054255535e-16
+ - -1.4277137372665258e-16
+ - -1.9347754527615315e-16
+ - -6.217503074254832e-16
+ - -1.9637267742008875e-16
+ - -2.3748355386397425e-16
+ - 7.014491594449675e-17
+ - 4.711258877584054e-16
+ - 4.972389457209387e-17
+ - 5.4180330122223307e-17
+ - 2.307833909022947e-16
+ - -1.1001502146955267e-17
+ - -1.1528829787457823e-16
+ - -5.70754622661589e-18
+ - 2.5311726744122644e-17
+ - -2.729696021424991e-17
+ - -7.519071768107022e-17
+ - 7.082320404679022e-16
+ - 7.279189390466644e-18
+ - 3.1515581338270354e-17
+ - -5.600012746983997e-16
+ - -3.7864192539614837e-16
+ - -1.6312001679545703e-16
+ - -3.1432863277015048e-18
+ - -4.895254865088818e-16
+ - -2.747066814288605e-16
+ - -1.9000338670343043e-16
+ - 6.561196618770615e-16
+ - -2.580803511165446e-17
+ - -8.770182444593475e-17
+ - 2.9125029367992104e-16
+ - -5.115284908027923e-16
+ - -5.2939559203393765e-17
+ - -4.0068628872068656e-16
+ - -4.746362354829273e-16
+ - -1.0984958534704206e-16
+ - -1.3896634290890865e-17
+ - 3.3389662413585803e-16
+ - 8.799133766032831e-17
+ - 2.839711042894544e-16
+ - 1.7569316210626305e-16
+ - -8.46826152101162e-17
+ - -1.01908651466533e-16
+ - -1.8446127659932515e-16
+ - -1.1468859193047729e-16
+ - 1.3698110943878138e-16
+ - 2.0017770823783267e-16
+ - 6.964860757696493e-17
+ - 4.308577015635582e-17
+ - -4.599124205794833e-17
+ - 2.8289576949313546e-17
+ - 1.9372569945991906e-16
+ - -4.317882797526804e-17
+ - 3.110199103199384e-17
+ - -3.871205266748169e-17
+ - 5.872982349126496e-17
+ - 1.9322939109238724e-16
+ - 7.262645778215583e-17
+ - 3.1432863277015047e-16
+ - -3.0357528480696116e-17
+ - 1.1113171529649927e-16
+ - -1.3226617994722913e-16
+ - 2.403373269772822e-16
+ - -2.0844951436336294e-17
+ - -8.073282778517549e-17
+ - -1.1042861177582918e-17
+ - 5.342888823450717e-16
+ - 1.3210074382471852e-16
+ - 1.3276248831476093e-17
+ - -3.685089628923738e-17
+ - -1.301568693852189e-16
+ - 1.83055069557985e-16
+ - 6.1624955635200554e-18
+ - 1.8446127659932517e-17
+ - 1.7784383169890095e-17
+ - -1.494715366883321e-16
+ - 8.486873084794063e-17
+ - 9.165161187087545e-17
+ - 2.1754850110144625e-16
+ - 1.404552680115041e-16
+ - 5.810116622572466e-16
+ - 5.735670367442694e-16
+ - -1.6692504761320096e-16
+ - -2.187065539590205e-16
+ - -2.1730034691768035e-16
+ - 1.6005944852901083e-16
+ - 1.7705801011697555e-16
+ - 1.4144788474656773e-17
+ - -5.397353496908505e-17
+ - 1.43433118216695e-16
+ - -9.719372197498075e-19
+ - 2.0967994552453558e-16
+ - -1.9554549680753572e-16
+ - -1.4815838746590417e-16
+ - -1.8319982616518178e-16
+ - 1.2858522622136815e-16
+ - 1.8942436027464331e-16
+ - 4.317882797526804e-17
+ - 5.506954928071781e-17
+ - -1.3461330493534834e-16
+ - 8.933550615572699e-18
+ - -8.35452418678558e-18
+ - -7.072394237328387e-17
+ - -6.55954225754551e-17
+ - -6.435465165662555e-17
+ - -1.2986735617082533e-17
+ - 1.0405932105917087e-16
+ - 1.4095157637903592e-16
+ - 2.1738306497893565e-16
+ - 4.79764755280756e-17
+ - -2.565914260139492e-16
+ - -1.135718981035307e-16
+ - -1.1464723289984964e-16
+ - 1.7271531190107215e-16
+ - -1.4614213472280616e-16
+ - 1.6067983398842563e-17
+ - 7.643148859989974e-17
+ - 4.589198038444198e-16
+ - 1.0910512279574434e-16
+ - -6.840783665813539e-17
+ - 2.7396221887756277e-16
+ - 8.54891163073554e-17
+ - 6.452008777913616e-17
+ - 1.3561626142806889e-16
+ - 8.151864936710087e-17
+ - -2.613890735667567e-17
+ - 3.394749233917625e-16
+ - -1.819797347616661e-18
+ - -4.5412215629161213e-17
+ - -4.025060860683032e-16
+ - -4.739744909928848e-17
+ - -6.088049308390284e-17
+ - -1.8235196603731493e-16
+ - -7.506664058918726e-17
+ - 7.299868905780469e-17
+ - 4.376612621018069e-16
+ - -7.554226944140524e-17
+ - -3.197053067517452e-17
+ - -1.4639028890657207e-16
+ - -2.2044363324538185e-16
+ - 9.376092243288567e-17
+ - 1.138200522872966e-16
+ - -3.9291079096268815e-18
+ - -2.1415706058997884e-16
+ - -4.673570460924606e-17
+ - 1.2377723891090368e-16
+ - 2.0439632936185311e-16
+ - -1.14130245017004e-16
+ - 9.223063829966257e-17
+ - 1.787123713420816e-16
+ - 1.2953648392580413e-16
+ - -4.067660662229513e-17
+ - -6.849055471939069e-17
+ - 1.0753347963189359e-16
+ - 4.8720938079373324e-17
+ - 9.553936074987468e-17
+ - 8.290417689312719e-17
+ - -3.565148440103549e-17
+ - 1.1286879458286063e-16
+ - 5.004442705945817e-18
+ - 1.1315830779725419e-16
+ - 7.920254365195239e-17
+ - 6.389970231972139e-17
+ - -1.5029871730088513e-16
+ - -5.211237859084074e-17
+ - 2.6552497662952185e-17
+ - 2.853773113307945e-18
+ - 5.600012746983997e-17
+ - 1.5699888026256463e-16
+ - 6.200752666850634e-17
+ - 1.0700408403985966e-15
+ - 3.274808045097436e-16
+- - -2.8388532256100256
+ - -2.179548084483584
+ - 2.0868764205664423
+ - -3.096068588922576
+ - 3.102427175898957
+ - -2.0237191933565373
+ - 0.32266825054780396
+ - 1.4852237675807445
+ - -1.8543556381515993
+ - -3.153532808050978
+ - 3.5534715421791647
+ - 2.0209238878462097
+ - -1.914239361295914
+ - 0.18208297631876208
+ - 1.6829104703824729
+ - -1.8584837783084522
+ - -2.938831402426504
+ - 2.9744358861157685
+ - 1.874008869207057
+ - -1.726839392703943
+ - -0.04460666179086658
+ - 1.7992523451353373
+ - -3.0127055508173948
+ - 3.1646332724055823
+ - -2.291625305729509
+ - 0.5253059449676925
+ - 1.5046560425589817
+ - 3.1235108926591373
+ - 1.9370729274997291
+ - -1.9168206189224652
+ - 0.09990657803455824
+ - 1.6797243180382577
+ - -1.8618593554661071
+ - -3.191970457757471
+ - 3.2358394523386917
+ - 1.879786840933713
+ - -1.72958606086352
+ - -0.04113657741916002
+ - 1.7961435215483197
+ - -3.0110397863793104
+ - 3.1649137659934192
+ - -2.29379819936098
+ - 2.397529168598107
+ - 2.5068504333110866
+ - 3.0927603659408653
+ - 3.132097918603635
+ - 4.274581699453693
+ - 4.219386070487963
+ - -2.987046851241109
+ - 3.1769536569161936
+ - -2.3389077981204673
+ - 0.64052847690453
+ - 1.189895867703416
+ - -2.637357668582868
+ - 2.108194274545307
+ - 3.9008759307635743
+ - -2.022789252490935
+ - -1.3399824831333917
+ - 0.5045150370193812
+ - 1.3199282241937738
+ - -2.761955295314664
+ - 2.103405485205474
+ - 3.6442877384955894
+ - -1.6300936517183497
+ - -1.2258065884063196
+ - 0.2794212188776571
+ - 1.5234575614876176
+ - -2.8310133533463087
+ - 3.214033743857877
+ - -2.5081818929534676
+ - 0.9889397790304933
+ - 0.46852136203387507
+ - 0.21633379294214866
+ - -3.6123290327044133
+ - -1.9481693331449121
+ - 3.1966996264498166
+ - -2.359206745095188
+ - 0.7707741273826244
+ - 0.597135839861153
+ - 0.52235381152503
+ - -4.181988990958327
+ - -2.1210116329812547
+ - 3.155154184939403
+ - -2.2605059836751744
+ - 0.6358153416714856
+ - 1.2930388887303528
+ - -2.6987719531328787
+ - 3.2323032763246657
+ - -4.583909887822776
+ - -5.6577364998271085
+ - -5.245467704190935
+ - -4.2122407747575945
+ - 3.142126315476258
+ - -3.046528064652966
+ - 1.9656173618496995
+ - -0.1426631982479956
+ - -1.640475682291307
+ - 2.894665346495765
+ - -2.21339980711108
+ - -4.2070493762620975
+ - 1.5129001314110386
+ - 1.0915610359523775
+ - -0.004483288177147054
+ - -1.7604482758707998
+ - 2.988454256140699
+ - -2.0815452748934176
+ - -3.7011306058280984
+ - 1.096206692277554
+ - 0.9465729789524253
+ - 0.22214645850209117
+ - -1.9460602120573844
+ - 3.0381617269387373
+ - -3.1223487818140487
+ - 2.162566409859492
+ - -0.5009197646070782
+ - -0.7801084727514757
+ - -0.7854777469672505
+ - 3.6941040868451767
+ - 2.0474120133905265
+ - -3.0840252861677935
+ - 1.9889252704957774
+ - -0.27581719102933305
+ - -0.9080424164668796
+ - -1.1300204947116548
+ - 4.022128137891993
+ - 2.0910147748794983
+ - -3.0085010913566874
+ - 1.875796569273653
+ - -0.13784949541392202
+ - -1.7356664764992422
+ - 2.941429754374694
+ - -3.1960333177505884
+ - 5.046424439597075
+ - 5.063281233547219
+ - 2.9170872444299283
+ - 2.8310749072632944
+ - 1.1978727429180027
+ - 1.0627555952045937
+ - -1.6801112438891654
+ - 2.915314433635008
+ - -3.205780763895031
+ - 2.3894073662269775
+ - -0.8162453861040917
+ - -1.0234294120690253
+ - 1.5916653386505348
+ - 2.567967064581195
+ - -3.68714355925711
+ - -2.0494487330822304
+ - 2.294263223027382
+ - -0.6790176029443592
+ - -1.2359483043027764
+ - 1.6838160473783346
+ - 2.555439701328435
+ - -3.279886491198015
+ - -1.9994600748465592
+ - 2.1288519430627844
+ - -0.4557460889363752
+ - -1.3624373168173038
+ - 2.795511872774881
+ - -3.22883292826967
+ - 2.6168826246608337
+ - -0.834053975823799
+ - -2.0098420657329226
+ - -2.435860883890884
+ - -1.1029599616476589
+ - 2.862583174613804
+ - -3.209637571067455
+ - 2.4773983020894406
+ - -0.7798972509384711
+ - -2.057742315032172
+ - -3.011614549133612
+ - -1.3310099318131565
+ - 2.96081575701124
+ - -3.1895205842842693
+ - 2.3861458971732064
+ - -0.7076176153858971
+ - -1.1261662714516716
+ - 2.5977157822076378
+ - -4.284811788805195
+ - -5.1740328059228995
+ - 8.615086079739782e-16
+ - 1.832618647111233e-15
+ - 2.8190315275807183e-16
+ - 2.354156023325917e-16
+ - 5.360130369343619e-17
+ - 3.0316169450068464e-17
+ - -4.8183270681213854e-18
+ - -2.334303688624644e-16
+ - -1.862810739469418e-16
+ - -1.8421312241555924e-16
+ - -9.59529510561512e-18
+ - 2.833920778606673e-16
+ - -4.107778921938335e-16
+ - -5.631032019954736e-17
+ - -1.4475660719677984e-17
+ - -2.990257914379195e-16
+ - -6.468552390164676e-17
+ - 1.6758679210324338e-16
+ - -1.1398548840980721e-16
+ - 4.653511331070195e-16
+ - -4.8472783895607416e-17
+ - -6.315523976842366e-17
+ - -1.9008610476468574e-16
+ - 1.9893693731900312e-17
+ - 1.4049662704213175e-16
+ - -1.4111701250154652e-16
+ - 3.532061215601428e-17
+ - 9.884808320008679e-18
+ - 2.7321775632626504e-16
+ - 2.3533288427133637e-16
+ - -3.7541592100719156e-16
+ - 4.044913195384305e-17
+ - 6.655081618295383e-16
+ - 1.861156378244312e-16
+ - -2.2234614865425384e-16
+ - -2.2019547906161594e-16
+ - -2.0244211516469659e-16
+ - 9.89308012613421e-17
+ - -1.5385559393486315e-17
+ - 6.010294330810299e-16
+ - -4.6102911440643e-16
+ - 1.3383782311107988e-16
+ - -3.5403330217269584e-17
+ - -3.461750863534421e-17
+ - 1.3698110943878138e-16
+ - 7.965749298885655e-17
+ - -1.696961026652536e-16
+ - 5.102050018227075e-16
+ - 5.914341379754148e-17
+ - 3.5403330217269584e-17
+ - -1.6742135598073278e-16
+ - 7.192335426148576e-17
+ - 9.59529510561512e-17
+ - 3.7475417651714914e-16
+ - 2.804142276554764e-17
+ - -5.509022879603164e-17
+ - 3.0473333766453535e-16
+ - -8.586134758300426e-17
+ - 1.0240495983406481e-16
+ - 4.1574097586915166e-16
+ - 8.966637840074819e-17
+ - -1.4004167770522759e-16
+ - 7.419810094600658e-17
+ - 7.444625512977248e-19
+ - -2.0844951436336294e-17
+ - -3.1639658430153304e-16
+ - 1.8770796050359578e-16
+ - -1.1787323728880644e-16
+ - 1.133237439197648e-16
+ - 1.651052502655843e-16
+ - -1.9236085144920656e-16
+ - 3.6861236046894296e-17
+ - -5.699274420490361e-17
+ - -1.0348029463038375e-16
+ - 1.31687153518442e-16
+ - 1.1940352142202954e-16
+ - 5.39321759384574e-17
+ - 2.413713027429735e-16
+ - 1.227536029028693e-16
+ - -6.327931686030662e-17
+ - -2.244968182468917e-16
+ - -5.07888896107559e-16
+ - 1.2093380555525265e-16
+ - 3.1267427154504446e-17
+ - -5.1119761855777104e-17
+ - -1.3896634290890865e-17
+ - -1.5550995515996918e-16
+ - 6.782881022934826e-18
+ - -8.577862952174896e-17
+ - -2.0265925007549176e-16
+ - 5.052419181473893e-16
+ - 7.636531415089551e-16
+ - 4.3311176873276524e-16
+ - 7.783769564123989e-17
+ - -2.4649982254080222e-17
+ - 2.9480717031389906e-16
+ - -2.1093105620102203e-16
+ - 2.3723539968020834e-16
+ - -4.435342444509334e-16
+ - -2.7032262418232944e-16
+ - 6.054962083888163e-17
+ - -4.13921178521535e-16
+ - 1.2904017555827232e-16
+ - -2.216844041642114e-17
+ - 2.514629062161204e-16
+ - 3.9175273810511386e-16
+ - -1.3308302080212524e-16
+ - -5.1202479917032407e-17
+ - 1.1911400820763599e-16
+ - -1.593149859777131e-16
+ - -1.1233112718470116e-16
+ - 5.343586757092558e-17
+ - -5.2650045989000205e-17
+ - -1.3880090678639804e-16
+ - -8.08982639076861e-17
+ - 1.0356301269163905e-16
+ - 9.340937067255064e-17
+ - -3.556876633978019e-17
+ - 5.39321759384574e-16
+ - -1.3830459841886623e-16
+ - -1.3913177903141925e-16
+ - -1.3565762045869654e-16
+ - 4.643791958872697e-16
+ - 1.0769891575440419e-16
+ - 2.553920141257473e-16
+ - -1.3069453678337837e-16
+ - 1.0620999065180874e-16
+ - -1.7142284219395805e-16
+ - -2.569222982589704e-16
+ - -3.0051471654051495e-16
+ - 3.1267427154504446e-17
+ - 1.0257039595657542e-16
+ - -2.236696376343387e-16
+ - -4.963083675318165e-18
+ - -5.1450634100798315e-17
+ - -2.594038400966295e-16
+ - -3.325266062463171e-17
+ - -7.889648682530777e-16
+ - -3.73472046567692e-17
+ - -7.357771548659181e-17
+ - -2.289222345240504e-16
+ - -4.2765237668991525e-17
+ - 4.4585035016608186e-17
+ - -3.1903322250404586e-17
+ - -9.338869115723681e-17
+ - -4.756288522179908e-18
+ - 2.0948349012905423e-16
+ - 3.507245797224837e-16
+ - -1.0668561950402673e-16
+ - -2.2003004293910533e-17
+ - 2.508838797873333e-16
+ - 9.760731228125725e-18
+ - 5.1450634100798315e-17
+ - 9.413315370853454e-17
+ - 4.681842267050136e-17
+ - -7.064122431202856e-17
+ - -1.4086885831778061e-16
+ - -2.3450570365878335e-16
+ - -1.6489845511244604e-16
+ - 8.875647972693986e-17
+ - 1.7552772598375245e-16
+ - 2.5642598989143855e-17
+ - 1.4268865566539727e-16
+ - 3.6282209618107176e-17
+ - -2.3831073447652727e-16
+ - -1.5120861597469343e-16
+ - -9.628382330117241e-17
+ - 1.6874484496081765e-17
+ - -4.283141211799577e-16
+ - 1.6080391108030856e-16
+ - -4.109433283163441e-16
+ - 6.461107764651698e-16
+ - -7.4859845436049e-17
+ - -4.301339185275743e-17
+ - -4.9630836753181654e-17
+ - -1.2622776147559202e-16
+ - -8.25939841634198e-17
+ - -1.5005056311711922e-16
+ - -4.3410438546782887e-16
+ - 7.950860047859701e-16
+- - -4.817602333172189
+ - -3.7495721426558006
+ - 3.3453248987731277
+ - -4.519315881663059
+ - 4.229899964261174
+ - -2.446062955819026
+ - -0.06698230744265524
+ - 2.561766614781783
+ - -2.8135989620303365
+ - -4.90652842658977
+ - 4.6419354376465005
+ - 2.7034711769936
+ - -2.277891183369652
+ - -0.2671465585478748
+ - 2.8226505817855427
+ - -2.7822794706395264
+ - -4.512167023765349
+ - 3.838783172927235
+ - 2.4889029110729357
+ - -1.992744877699272
+ - -0.5877519478809635
+ - 2.9746793054620917
+ - -4.440997398694739
+ - 4.357990208918687
+ - -2.8631331442290695
+ - 0.41042216636698453
+ - 1.5737157532871655
+ - 4.389809052812108
+ - 2.599272231783536
+ - -2.281177773690506
+ - -0.38377180599410227
+ - 2.8179539337328743
+ - -2.789765761721269
+ - -4.900116931889081
+ - 4.176508507376473
+ - 2.4937654449851543
+ - -1.9962886779595854
+ - -0.5829167721854577
+ - 2.9700733247290616
+ - -4.438212060530222
+ - 4.357879551651425
+ - -2.8657858408076615
+ - 2.526328676545864
+ - 2.700156902103458
+ - 4.246740154729354
+ - 4.334600875115552
+ - 6.648460670708087
+ - 6.595497058136785
+ - -4.414164214616774
+ - 4.3847761651178665
+ - -2.9370007790172226
+ - 0.38903620596104926
+ - 2.1665576924728063
+ - -4.023794440026901
+ - 3.003907255391196
+ - 5.6618848498172225
+ - -2.2887405856207446
+ - -1.6241634580027022
+ - 0.19316019882617053
+ - 2.341107413066906
+ - -4.168785017599435
+ - 2.970770799801741
+ - 5.246489513095468
+ - -1.759640885713115
+ - -1.4515286319784428
+ - -0.12881531752867434
+ - 2.611985994820202
+ - -4.246753918804446
+ - 4.478219752656078
+ - -3.206975360261227
+ - 0.8952489833049804
+ - 0.9939356193558532
+ - 0.9053488905817102
+ - -5.227179216886558
+ - -2.8769713817463605
+ - 4.431498708791508
+ - -2.9690712541229423
+ - 0.5774567505279252
+ - 1.1889947414162532
+ - 1.418034067637569
+ - -5.998851726952727
+ - -3.0964454693767913
+ - 4.336689808287993
+ - -2.8134846456869855
+ - 0.3822331238111916
+ - 2.305073651498161
+ - -4.095816455746472
+ - 4.5623910785866135
+ - -6.305072636745888
+ - -7.813574904168125
+ - -7.782272692647551
+ - -6.276856603429378
+ - 4.555551999152059
+ - -4.122206092467913
+ - 2.3560864128057597
+ - 0.32317200274537494
+ - -2.7664251693387785
+ - 4.316927043383188
+ - -3.103456483412327
+ - -6.00076028244543
+ - 1.4931694748079445
+ - 1.2265010501473887
+ - 0.5186430907588618
+ - -2.923631180972257
+ - 4.4157040761910515
+ - -2.8870933949887787
+ - -5.233927572524073
+ - 0.9720931696064691
+ - 1.0302011427843276
+ - 0.8370827781728046
+ - -3.1643227253749098
+ - 4.464876314696469
+ - -4.268867807371446
+ - 2.660472289193612
+ - -0.18800744998812433
+ - -1.4177138211720062
+ - -1.6955693781575163
+ - 5.250279496431466
+ - 2.9665233268936246
+ - -4.193237461494458
+ - 2.3918526173722454
+ - 0.133972976106393
+ - -1.5913900396702354
+ - -2.221006750321845
+ - 5.671107544195996
+ - 3.002605737474699
+ - -4.051973290643299
+ - 2.2185853507935596
+ - 0.32999851206488023
+ - -2.8912250284595444
+ - 4.366912832414115
+ - -4.430041142186817
+ - 6.658216116068956
+ - 6.70830171272535
+ - 4.318110918814804
+ - 4.22667189029246
+ - 2.5990014233394936
+ - 2.4231829182434503
+ - -2.818936981128665
+ - 4.34018698403321
+ - -4.455366855673084
+ - 3.017794429490631
+ - -0.643848333717781
+ - -1.9418413332624997
+ - 2.4722686733473718
+ - 4.125983056479231
+ - -4.9410050674492565
+ - -2.80564782158627
+ - 2.8672666010877523
+ - -0.4449121523515714
+ - -2.2288309734090013
+ - 2.5805504294550676
+ - 4.040578339556798
+ - -4.348752605749051
+ - -2.7148250494741504
+ - 2.608688663490293
+ - -0.12344378963548587
+ - -2.398240768907893
+ - 4.207887348813497
+ - -4.529297211689195
+ - 3.384066296753762
+ - -0.8632378926791672
+ - -2.330923127636941
+ - -3.889578509209077
+ - -1.8470654465535015
+ - 4.282897963618848
+ - -4.465528714150127
+ - 3.1582269657351305
+ - -0.7634898900670141
+ - -2.3038068697909124
+ - -4.730861552474083
+ - -2.165782834326445
+ - 4.388310709119544
+ - -4.414479498445379
+ - 3.0126150334781037
+ - -0.48631593380312865
+ - -2.0809013241229852
+ - 3.977663449799165
+ - -6.355534919318491
+ - -7.708160525139128
+ - 1.3835422925561939e-15
+ - 2.772295822971472e-15
+ - 4.324500242427228e-16
+ - 3.243375181820421e-16
+ - 5.856438736875436e-17
+ - 1.555099551599692e-17
+ - -6.9343584726086e-17
+ - -3.459269321696761e-16
+ - -2.7991791928794457e-16
+ - -2.2476565194597144e-16
+ - 1.3400325923359047e-17
+ - 5.329524686679157e-16
+ - -5.193039885607908e-16
+ - -2.738484815433367e-17
+ - -3.250819807333399e-17
+ - -4.918415922240303e-16
+ - -1.0323214044661784e-16
+ - 2.0911125885340537e-16
+ - -1.9356026333740845e-16
+ - 6.489748893361347e-16
+ - -5.922613185879678e-17
+ - -9.892046150368518e-17
+ - -2.607273290767143e-16
+ - 2.5394444805377947e-17
+ - 2.1279221257926634e-16
+ - -2.9770230245783466e-16
+ - 4.433688083284228e-17
+ - 6.658803931051872e-18
+ - 4.473392752686774e-16
+ - 3.664410113609912e-16
+ - -4.892359732944882e-16
+ - 5.575197328607407e-17
+ - 9.863301624082302e-16
+ - 3.0076287072428086e-16
+ - -2.7379678275505216e-16
+ - -4.0347802328805302e-16
+ - -2.6974359775354232e-16
+ - 1.4988512699460861e-16
+ - -5.426304818347861e-17
+ - 8.978218368650562e-16
+ - -6.140988867593676e-16
+ - 2.4889864631720603e-16
+ - 2.9778502051908996e-17
+ - -3.0605682664462024e-17
+ - 1.7370792863613579e-16
+ - 5.434576624473391e-17
+ - -2.509665978485886e-16
+ - 6.4751698350651e-16
+ - 7.088937849579447e-17
+ - 5.777856578682898e-17
+ - -2.1986460681659473e-16
+ - 1.3036366453835716e-16
+ - 1.401243957664829e-16
+ - 4.9519167370487e-16
+ - 1.2118195973901854e-17
+ - -8.751570880811032e-17
+ - 4.2417821811719254e-16
+ - -1.4260593760414197e-16
+ - 1.5224259174038472e-16
+ - 5.346895479542771e-16
+ - 1.346650037236329e-16
+ - -1.9016882282594104e-16
+ - 1.1067676595959509e-16
+ - -1.348304398461435e-17
+ - -6.88214269644119e-17
+ - -4.414662929195508e-16
+ - 2.1035202977223491e-16
+ - -1.5418646617988433e-16
+ - 1.2391165576044355e-16
+ - 2.33595804984975e-16
+ - -3.030789764394293e-16
+ - 5.0644133003559113e-17
+ - -6.650532124926343e-17
+ - -1.4442573495175863e-16
+ - 8.602678370551487e-17
+ - 1.4194419311409955e-16
+ - 7.576974410985732e-17
+ - 3.209460776705747e-16
+ - 1.6940658945086004e-16
+ - -1.1249656330721176e-16
+ - -3.087038046047899e-16
+ - -7.08728348835434e-16
+ - 1.7321162026860397e-16
+ - 5.790264287871194e-17
+ - -8.817745329815274e-17
+ - -3.523789409475898e-17
+ - -2.5592968152390676e-16
+ - -2.1837568171399928e-17
+ - -2.013357610954069e-16
+ - -3.1350145215759744e-16
+ - 7.365216174172157e-16
+ - 1.1090837653110995e-15
+ - 6.42884772076213e-16
+ - 9.198248411589667e-17
+ - -5.2939559203393765e-17
+ - 3.937379715752411e-16
+ - -2.9497260643640967e-16
+ - 2.957997870489627e-16
+ - -6.147606312494101e-16
+ - -3.8894032402243356e-16
+ - 1.1539169545114736e-16
+ - -5.512331602053376e-16
+ - 2.0894582273089477e-16
+ - -7.17165591083475e-17
+ - 2.8686623643339e-16
+ - 5.055727903924105e-16
+ - -1.865912666766492e-16
+ - -5.194694246833013e-17
+ - 1.3896634290890865e-16
+ - -2.0911125885340537e-16
+ - -1.4260593760414197e-16
+ - 8.569591146049365e-17
+ - -5.5338382979797545e-17
+ - -1.8528845721187817e-16
+ - -1.163015941249557e-16
+ - 1.2473883637299657e-16
+ - 8.974909646200349e-17
+ - -6.154223757394526e-17
+ - 7.398303398674279e-16
+ - -1.710609506759661e-16
+ - -1.7370792863613579e-16
+ - -2.1754850110144625e-16
+ - 6.316351157454918e-16
+ - 1.3516131209116472e-16
+ - 3.427009277807193e-16
+ - -2.5609511764641737e-16
+ - 1.401243957664829e-16
+ - -2.275832359074802e-16
+ - -3.9208361035013507e-16
+ - -4.141693327053009e-16
+ - 3.110199103199384e-17
+ - 1.2490427249550718e-16
+ - -3.656138307484382e-16
+ - 9.057627707455653e-18
+ - -1.2300175708663522e-16
+ - -3.4377626257703825e-16
+ - -4.0945440321374864e-17
+ - -1.0559787699851951e-15
+ - -6.05289413235678e-17
+ - -8.917007003321637e-17
+ - -2.928426163590856e-16
+ - -4.493658677694322e-17
+ - 5.97224402263286e-17
+ - -1.036767500258651e-16
+ - -1.4483932525803515e-16
+ - -2.4815418376590826e-18
+ - 3.1255019445316146e-16
+ - 4.920070283465409e-16
+ - -1.6303729873420173e-16
+ - -4.863822001811802e-17
+ - 3.4063297624933675e-16
+ - 4.417144471033167e-17
+ - 7.304004808843234e-17
+ - 1.0852609636695722e-16
+ - 3.5734202462290796e-17
+ - -8.40415502353876e-17
+ - -2.0464448354561902e-16
+ - -3.12012527055002e-16
+ - -2.479887476433977e-16
+ - 1.3065317775275072e-16
+ - 2.5245552295118405e-16
+ - 2.7462396336760516e-17
+ - 1.8950707833589862e-16
+ - 3.221868485894043e-17
+ - -3.424527735969534e-16
+ - -2.0613340864821447e-16
+ - -1.5046415342339573e-16
+ - 3.987010552505593e-17
+ - -6.051653361437949e-16
+ - 2.2069178742914776e-16
+ - -5.786955565420982e-16
+ - 9.085751848282456e-16
+ - -1.1158666463340343e-16
+ - -5.69100261436483e-17
+ - -7.014491594449675e-17
+ - -1.7205356741102973e-16
+ - -1.315217173959314e-16
+ - -2.0249381395298115e-16
+ - -7.438008068076824e-16
+ - 9.62507360766703e-16
+- - 1.5887365783372902
+ - 1.1625027826042678
+ - -1.409173634473548
+ - 2.540154771230351
+ - -2.9225059430854725
+ - 2.2255673492945047
+ - -0.893220079229834
+ - -0.8049522712524542
+ - 1.4132380644099292
+ - 2.2662695322273794
+ - -3.552774157736442
+ - -1.9489649411242156
+ - 2.1453426985524127
+ - -0.7703754221263679
+ - -0.9987312040463513
+ - 1.4587257050102374
+ - 2.1799220826093935
+ - -3.0265201909128305
+ - -1.8275990167390532
+ - 2.00253668933687
+ - -0.5721986056885968
+ - -1.1158870348847592
+ - 2.4223896753873095
+ - -2.931976941019763
+ - 2.4178283871022908
+ - -0.8358911969637987
+ - -1.9457750932741606
+ - -2.067532485436845
+ - -0.9127169882115131
+ - 2.48898995748756
+ - -0.6986425813839996
+ - -0.9961619497889795
+ - 1.458636208580743
+ - 2.368496138408679
+ - -3.2920744980188177
+ - -1.8363895142852833
+ - 2.005312280596273
+ - -0.5753058094111072
+ - -1.1134050898181804
+ - 2.4214082523318154
+ - -2.932781029848159
+ - 2.4201922612237974
+ - -3.0792499788916956
+ - -3.1536092310516683
+ - -2.859359712861465
+ - -2.857601587997258
+ - -3.0745204353201516
+ - -2.9977774153825023
+ - 2.389203480229745
+ - -2.932235381762937
+ - 2.451448653320504
+ - -1.1650073602882685
+ - -0.520341962351271
+ - 1.964749555882178
+ - -1.8261911998728901
+ - -3.262336205054702
+ - 2.420754994273629
+ - 1.4819447283948286
+ - -1.0486309222876111
+ - -0.6441747088454184
+ - 2.110234027555913
+ - -1.8516825809306565
+ - -3.09615658465956
+ - 2.0462895279527444
+ - 1.3942460768149185
+ - -0.8559420994170697
+ - -0.8429147041859364
+ - 2.192176197233198
+ - -2.918580343305509
+ - 2.565626994659613
+ - -1.4558037825485173
+ - -0.038218547004406224
+ - 0.48522853243603825
+ - 3.0389128205198643
+ - 1.5737000192603285
+ - -2.927476189555191
+ - 2.466352562764996
+ - -1.273743855630075
+ - -0.13633427891516445
+ - 0.3064880217666524
+ - 3.577450668069164
+ - 1.7536136820788872
+ - -2.9324981090434807
+ - 2.396806741148202
+ - -1.161027608176602
+ - -0.6191772070509276
+ - 2.0353593235561034
+ - -2.868905900711807
+ - 4.22578868082129
+ - 5.180271241703128
+ - 4.196657736146685
+ - 3.3390377399382065
+ - -2.653751922068079
+ - 2.8650645109847592
+ - -2.223891280045958
+ - 0.6963468594125529
+ - 0.9174894335871893
+ - -2.3109997883542333
+ - 1.9740407310342933
+ - 3.6372372949644642
+ - -2.0568762544202577
+ - -1.3159844829871779
+ - 0.5759474380624642
+ - 1.0377844589365528
+ - -2.4306224178326192
+ - 1.891918584964649
+ - 3.2507764535604196
+ - -1.61407230419847
+ - -1.1788020818412723
+ - 0.37369633662520846
+ - 1.2244660530076485
+ - -2.4989691133682883
+ - 2.887264196710789
+ - -2.367764991096761
+ - 1.0058830416720028
+ - 0.3308574190047118
+ - 0.031111119658489617
+ - -3.2150061780850705
+ - -1.7180878437561116
+ - 2.8786472949721875
+ - -2.240341336137408
+ - 0.8131758384839206
+ - 0.45138303183317113
+ - 0.290693299716041
+ - -3.5516156521830933
+ - -1.7852015982975176
+ - 2.850245080124545
+ - -2.156839394426776
+ - 0.6921372104656366
+ - 1.0121822060957266
+ - -2.3702973057727577
+ - 2.8877004757093006
+ - -4.9705417966935395
+ - -4.955761657961265
+ - -2.3375268965469957
+ - -2.226091384371723
+ - -0.03252916767729823
+ - 0.10216625275181626
+ - 0.9565140011172456
+ - -2.33586058054755
+ - 2.883366330336855
+ - -2.5258196954847256
+ - 1.271630198446991
+ - 0.321473205948433
+ - -1.1485550422790356
+ - -1.6984310961558116
+ - 3.5462019578612405
+ - 1.904348486499888
+ - -2.4593579096861578
+ - 1.157484903743828
+ - 0.524280166787342
+ - -1.254310928299968
+ - -1.7636790884206464
+ - 3.2068892169908008
+ - 1.8831183432044118
+ - -2.342748452146955
+ - 0.9669448329902272
+ - 0.6451458132673004
+ - -2.1887931461170624
+ - 2.857019602911977
+ - -2.675380387407535
+ - 1.088805621086076
+ - 2.341248165239086
+ - 1.6382431181025752
+ - 0.6450736269313176
+ - -2.2691555087912376
+ - 2.8823118563539167
+ - -2.5841839801865865
+ - 1.0673334409207493
+ - 2.490178121416612
+ - 2.1134245708538337
+ - 0.8496278490125813
+ - -2.3940676901196585
+ - 2.889211625861581
+ - -2.5235934851926998
+ - 1.1806612234999443
+ - 0.41869063447861593
+ - -1.9593107120361124
+ - 3.4297594724031377
+ - 4.103609085607584
+ - 1.7834014006643274e-16
+ - 5.09543257332665e-17
+ - -6.43132926259979e-17
+ - 2.1093105620102203e-17
+ - -9.678013166870423e-17
+ - -1.565025718950328e-16
+ - -2.1175823681357505e-17
+ - 1.39400612730499e-16
+ - -1.5981129434524492e-16
+ - 1.0381116687540496e-16
+ - 1.0439019330419208e-16
+ - -2.476578753983765e-16
+ - 2.40006454732261e-16
+ - -6.088049308390284e-17
+ - -2.5559880927888552e-17
+ - 7.428081900726189e-17
+ - 2.216844041642114e-17
+ - -6.683619349428464e-17
+ - 1.0542416906988336e-16
+ - -2.430773627563641e-16
+ - 1.4095157637903592e-16
+ - 1.1026317565331858e-16
+ - 1.6326477340265381e-16
+ - 4.359241828154455e-17
+ - -1.148281786588456e-16
+ - -8.923210857915785e-17
+ - -3.415221954078313e-17
+ - 7.858215819253763e-18
+ - 3.639594695233322e-18
+ - 1.5819829215076652e-18
+ - 3.3839958859544357e-16
+ - 5.872982349126496e-18
+ - -2.6784108234467036e-16
+ - -1.346650037236329e-16
+ - 1.0873289152009548e-16
+ - -2.99439381744196e-17
+ - 5.699274420490361e-17
+ - -8.41242682966429e-17
+ - -7.70958180293564e-17
+ - -2.7580269574049325e-16
+ - 2.954689148039415e-16
+ - -1.4806532964699195e-17
+ - 4.946540063067105e-17
+ - 5.649643583737179e-17
+ - 6.782881022934826e-18
+ - -2.936491174563248e-17
+ - 1.3230753897785678e-16
+ - -3.8281918748954116e-16
+ - -1.6444350577554188e-16
+ - 5.69100261436483e-17
+ - 2.4922951856222724e-16
+ - -2.754511439801582e-17
+ - -3.6313228891077915e-17
+ - -2.989430733766642e-16
+ - -2.2036091518412655e-16
+ - -9.564275832644381e-18
+ - -2.8239946112560365e-16
+ - 2.1953373457157352e-16
+ - -1.5799149699762826e-16
+ - -2.2058838985257863e-16
+ - -6.154223757394526e-17
+ - 7.956443516994434e-17
+ - -7.746546436559103e-17
+ - 4.566036981292712e-17
+ - -2.3161057151484772e-17
+ - 1.2970192004831474e-16
+ - -1.9906618428971454e-16
+ - 8.519960309296184e-17
+ - -2.9116757561866574e-17
+ - 2.0472720160687432e-17
+ - 1.7482462246308237e-16
+ - 9.562207881112999e-17
+ - 2.311969812085712e-17
+ - 4.4254162771586974e-17
+ - -5.244325083586195e-17
+ - -1.5517908291494797e-16
+ - -5.525566491854224e-17
+ - -1.2755125045567687e-16
+ - 4.830734777309681e-17
+ - -6.452008777913615e-18
+ - 1.8379953210928272e-16
+ - 4.532949756790592e-16
+ - -1.1828682759508296e-16
+ - 8.569591146049365e-17
+ - 1.9759276882360446e-17
+ - -1.0381116687540496e-17
+ - 9.363684534100272e-17
+ - 1.1580528575742387e-18
+ - -1.8661194619196302e-16
+ - -1.8992066864217513e-16
+ - -4.2748694056740465e-16
+ - -6.081431863489858e-16
+ - -3.36331637064061e-16
+ - -1.0389388493666026e-16
+ - -5.24018918052343e-17
+ - -1.5886003664080894e-16
+ - 1.7296346608483806e-16
+ - -1.4707271291192832e-16
+ - 3.6759906421856545e-16
+ - 7.907846656006943e-17
+ - -2.609754832604802e-17
+ - 3.9473058831030476e-16
+ - -2.9778502051908996e-17
+ - 1.1522625932863676e-16
+ - -2.6759292816090442e-17
+ - -1.592322679164578e-16
+ - 2.3657365519016588e-17
+ - 7.955926529111588e-17
+ - 1.3822188035761092e-16
+ - 5.790264287871194e-17
+ - 1.020740875890436e-16
+ - -2.762783245927112e-17
+ - -3.29217883796105e-17
+ - 1.080297879994254e-16
+ - -1.0596183646804283e-16
+ - -1.133237439197648e-16
+ - -7.045510867420413e-17
+ - 4.320984724823878e-17
+ - -2.9488988837515437e-17
+ - 1.2300175708663522e-16
+ - 1.0265311401783072e-16
+ - 9.239607442217318e-17
+ - -2.067951531382569e-16
+ - -1.9025154088719633e-17
+ - -2.6614536208893665e-16
+ - 4.566036981292712e-17
+ - -1.5691616220130933e-16
+ - 1.2746853239442156e-16
+ - 4.446095792472523e-17
+ - 9.504305238234287e-17
+ - -8.602678370551487e-17
+ - -1.0910512279574434e-16
+ - 3.5006283523244126e-16
+ - -4.0531850015098356e-18
+ - -7.113753267956038e-17
+ - -1.579914969976283e-17
+ - 8.002972426450542e-17
+ - 7.270917584341112e-16
+ - 1.8528845721187817e-16
+ - 5.434576624473391e-17
+ - 2.5351017823218916e-16
+ - 2.4815418376590827e-17
+ - -7.837536303939936e-17
+ - -1.3201802576346322e-16
+ - 3.927453548401775e-16
+ - -9.057627707455653e-18
+ - -9.89308012613421e-17
+ - 2.3822801641527194e-17
+ - 5.98878763488392e-17
+ - -3.970466940254533e-18
+ - -2.1481880508002126e-16
+ - 4.2517083485225616e-17
+ - -2.0307284038176826e-17
+ - -8.883919778819516e-17
+ - -2.898440866385809e-16
+ - 6.915229920943311e-17
+ - -2.7214242152994607e-17
+ - -1.7809198588266683e-16
+ - 2.225115847767644e-17
+ - -1.1158666463340343e-16
+ - -9.330597309598151e-17
+ - -8.933550615572699e-18
+ - -1.018259334052777e-16
+ - -1.699856158796472e-17
+ - 2.60644611015459e-16
+ - 1.13654616164786e-16
+ - 5.1119761855777104e-17
+ - -1.4392942658422682e-16
+ - 2.232146882974345e-16
+ - -1.552824804915171e-16
+ - 3.1317057991257623e-16
+ - -2.8289576949313546e-16
+ - 1.9959868180904555e-16
+ - 2.010048888503857e-17
+ - 2.1093105620102203e-17
+ - 2.7379678275505213e-17
+ - -4.268251960773622e-17
+ - 3.532061215601428e-17
+ - -1.2382893769918824e-16
+ - -3.5734202462290796e-17
+- - 1.3538488749830817
+ - 1.23771355649042
+ - -0.25029234154887475
+ - -1.4103411907643535
+ - 2.5378708888704726
+ - -2.910454259128087
+ - 2.223307382205538
+ - -0.8897482677994911
+ - -0.41587051421233345
+ - -0.2324714510395204
+ - 3.7216906441118582
+ - 1.8688143318140376
+ - -2.8930460476936575
+ - 2.141394470709513
+ - -0.6921223131144035
+ - -0.5634101442177043
+ - -0.45191721135532253
+ - 3.2976385490927647
+ - 1.8033097352918377
+ - -2.8550623221836022
+ - 1.9985740108685361
+ - -0.5713618426924318
+ - -1.2036937662993248
+ - 2.4202813697352576
+ - -2.929276996239843
+ - 1.6260908381145216
+ - 3.1045066658949447
+ - 0.3071737004339421
+ - -0.13961861372217466
+ - -1.3154241304864178
+ - 2.5262203677272885
+ - -0.6933902508268881
+ - -0.5549403127286954
+ - -0.49360380385980734
+ - 3.586054629038235
+ - 1.819849270056464
+ - -2.858113691259213
+ - 2.001049956032958
+ - -0.5725081271041532
+ - -1.2043340688276203
+ - 2.4224616057661494
+ - -2.93227886044217
+ - 4.873516428254272
+ - 4.8669609607457085
+ - 2.4330682829317536
+ - 2.331977926406001
+ - 0.32399301546244647
+ - 0.19153525703641258
+ - -1.1507428093657035
+ - 2.3915032636775044
+ - -2.9315946739334438
+ - 2.397114743088218
+ - -1.1623609544796765
+ - -0.5253223257713837
+ - 1.2329068857285037
+ - 1.8769946856276587
+ - -3.4982045353420737
+ - -1.8960327928302225
+ - 2.3265627851671593
+ - -1.0435633821689876
+ - -0.7242671530126896
+ - 1.3327609659930009
+ - 1.9211763861171365
+ - -3.14981603081394
+ - -1.8680792436743416
+ - 2.198889736026546
+ - -0.8508216969905009
+ - -0.8452512843089375
+ - 2.2547942969603354
+ - -2.918346125074709
+ - 2.5627487991617524
+ - -0.9991851212834684
+ - -2.202919565976036
+ - -1.800186372718932
+ - -0.7449859222011784
+ - 2.331475361007506
+ - -2.9303103449427943
+ - 2.463101805632103
+ - -0.9700024253946373
+ - -2.3229697369972797
+ - -2.289479984048346
+ - -0.9506413031011633
+ - 2.4452015992793963
+ - -2.9317931896381526
+ - 2.3946911729135945
+ - -1.0690455655962796
+ - -0.6217085105526563
+ - 2.0386782756950113
+ - -3.5640216774884883
+ - -4.276157130608056
+ - -1.8655226605412618
+ - -1.3907610633659202
+ - 1.5113475145896258
+ - -2.6552050524839443
+ - 2.8639786048057103
+ - -2.1575080784902947
+ - 0.6937689214616287
+ - 0.9219725977250438
+ - -1.490879549022175
+ - -2.43598254131453
+ - 3.4693685220566177
+ - 1.9212116096989553
+ - -2.0702780979894677
+ - 0.5708947193617757
+ - 1.1137187552760273
+ - -1.5248962494716805
+ - -2.3193993494760003
+ - 2.9422310091776183
+ - 1.7962754892943091
+ - -1.9211660094209877
+ - 0.36866774654081164
+ - 1.22637030285223
+ - -2.548798347289611
+ - 2.886416763669215
+ - -2.364255314883684
+ - 0.7381711550326665
+ - 1.7891589442532456
+ - 2.2124235463215234
+ - 1.0053308106959995
+ - -2.607498778147454
+ - 2.868494585726016
+ - -2.236555287036557
+ - 0.6297535184693139
+ - 1.7222935035459186
+ - 2.5858965863364882
+ - 1.1324380348155534
+ - -2.6954952312771843
+ - 2.8485412157596857
+ - -2.1545838680110285
+ - 0.5958491429722811
+ - 1.014228817243914
+ - -2.372796481444174
+ - 5.028213634339914
+ - 4.936350985914677
+ - 1.0826634335870675
+ - 0.9128412265369333
+ - -2.780063673640343
+ - -2.9254146921266613
+ - 0.6553422482147715
+ - 0.9580629104057833
+ - -2.333783720441191
+ - 2.886057429648573
+ - -2.5231618669433242
+ - 1.2677671904015233
+ - 0.13361853672437154
+ - -0.31991982040466277
+ - -3.3761591772914636
+ - -1.6454376104461175
+ - 2.8896845402194686
+ - -2.45530315289731
+ - 1.0826453158367433
+ - 0.27732208165463285
+ - -0.06369974516445975
+ - -3.1846863502454155
+ - -1.6926538727962495
+ - 2.881342753299286
+ - -2.338635020604107
+ - 0.9655628523675611
+ - 0.7382024305049317
+ - -2.187035094458234
+ - 2.8546664712907095
+ - -1.7563698903847604
+ - -3.2541005183961884
+ - 0.20924075230145964
+ - 0.4297108034737535
+ - 0.8585289681789707
+ - -2.3169708106475047
+ - 2.8796749564201742
+ - -1.8127937896273993
+ - -3.6541622405132355
+ - -0.04591432885127641
+ - 0.2720565784658076
+ - 1.049887667660659
+ - -2.393417889374254
+ - 2.886232127725881
+ - -2.4703454979366306
+ - 1.179062047807643
+ - 0.4211927205763916
+ - -1.529650444418233
+ - -1.7157615153553811
+ - -6.006985608360087e-16
+ - -3.4410713482205946e-16
+ - -3.7553999809907456e-17
+ - -5.509022879603164e-17
+ - 2.754511439801582e-17
+ - 1.6684232955194566e-16
+ - 1.3549218433618593e-16
+ - -1.079470699381701e-16
+ - 2.2333876538931747e-16
+ - -1.6063847495779795e-16
+ - -1.1435771968545608e-16
+ - -5.575197328607407e-17
+ - -3.279771128772754e-16
+ - -1.0993230340829737e-16
+ - -7.072394237328387e-18
+ - 3.835016114948974e-17
+ - -3.0026656235674905e-17
+ - 7.031035206700735e-17
+ - 1.3598849270371775e-16
+ - 3.1011001164613003e-16
+ - -9.520848850485347e-17
+ - -4.217587148254749e-17
+ - -1.0819522412193601e-16
+ - -6.348094213461642e-17
+ - 2.613890735667567e-17
+ - 3.5932725809303517e-16
+ - -9.429858983104514e-18
+ - 1.0174321534402239e-17
+ - -9.681115094167496e-17
+ - -1.0137098406837353e-16
+ - -2.987776372541536e-16
+ - 5.4759356551010426e-17
+ - -3.0605682664462024e-17
+ - -8.226311191839859e-17
+ - -2.6453235989445825e-16
+ - 2.569222982589704e-16
+ - -1.3110812708965489e-16
+ - 2.3161057151484775e-18
+ - 2.3860024769092083e-16
+ - 5.715818032741421e-17
+ - -2.3324425322464e-16
+ - -1.9389113558242966e-16
+ - -2.2921174773844397e-16
+ - -9.735915809749135e-17
+ - -1.79498192924007e-17
+ - 2.0009499017657737e-16
+ - -4.848312365326433e-17
+ - 4.415490109808061e-16
+ - 2.332649327399538e-16
+ - -3.416255929844004e-17
+ - -2.1771393722395686e-16
+ - -7.419810094600658e-17
+ - -3.407984123718474e-17
+ - 2.683373907122022e-16
+ - 1.74038800881157e-16
+ - 1.5096046179092755e-17
+ - 2.187892720202758e-16
+ - -1.3234889800848443e-16
+ - 1.6295458067294643e-16
+ - 3.6790925694827283e-16
+ - 9.628382330117241e-17
+ - 2.4153673886548405e-17
+ - 7.16338410470922e-17
+ - -1.8363409598677214e-17
+ - -7.77549775799846e-18
+ - -1.6014216659026613e-16
+ - 3.545296105402276e-16
+ - -6.989676176073084e-17
+ - 9.247879248342848e-17
+ - -4.648755042548015e-17
+ - 9.89308012613421e-17
+ - 2.99439381744196e-17
+ - -2.5725317050399158e-17
+ - -9.696624730652866e-17
+ - 3.1697561073032016e-16
+ - 1.0029564927205459e-16
+ - 5.037529930447938e-17
+ - 6.964860757696493e-17
+ - -8.70194004405785e-17
+ - 9.529120656610878e-17
+ - -8.073282778517549e-17
+ - -2.663521572420749e-16
+ - 9.280966472844969e-17
+ - -1.3977284400614785e-16
+ - -2.0927669497591597e-17
+ - 2.2333876538931744e-17
+ - 2.067951531382569e-17
+ - 7.47771273747937e-17
+ - 6.299807545203858e-16
+ - 4.132594340314926e-16
+ - 1.2796484076195338e-16
+ - 4.868785085487121e-16
+ - 1.3239025703911208e-16
+ - 1.2970192004831474e-16
+ - 1.0587911840678753e-16
+ - 7.312276614968765e-17
+ - -2.2606846141074246e-16
+ - 1.5757790669135175e-16
+ - -2.4683069478582346e-16
+ - 1.7784383169890095e-17
+ - -6.948317145445432e-17
+ - -3.3782056216665645e-16
+ - -1.1067676595959509e-16
+ - -3.1515581338270354e-17
+ - 9.61183871786618e-17
+ - 7.80858498250058e-17
+ - -1.1565018939257017e-17
+ - -1.191346877229498e-16
+ - -5.2112378590840736e-18
+ - -5.575197328607407e-17
+ - -1.0304602480879341e-16
+ - 4.350970022028925e-17
+ - 1.654361225106055e-19
+ - -1.1836954565633826e-16
+ - 7.097209655704977e-17
+ - 1.6642873924566914e-16
+ - 1.6444350577554188e-16
+ - 1.6543612251060552e-18
+ - -1.7743024139262444e-17
+ - -1.6146565557035098e-16
+ - -1.0265311401783072e-16
+ - 7.557328871437598e-17
+ - 7.783769564123989e-17
+ - 3.763671787116276e-17
+ - 2.269783600845508e-16
+ - 2.7991791928794457e-16
+ - 1.6758679210324338e-16
+ - -1.3962808739895107e-16
+ - 7.339159984876738e-17
+ - -4.126597280873916e-17
+ - 1.2151283198403977e-16
+ - 1.5180832191879438e-16
+ - -1.738733647586464e-16
+ - -1.5592354546624572e-17
+ - 1.9451152104184443e-16
+ - -7.345363839470886e-17
+ - -8.288349737781336e-17
+ - -8.141111588746897e-16
+ - -1.4177875699158894e-16
+ - -4.7811039405564993e-17
+ - -3.12839707667555e-16
+ - -2.4484546131569616e-17
+ - 9.60356691174065e-17
+ - 3.272326503259777e-16
+ - -2.933182452113036e-16
+ - -6.379630474315226e-17
+ - 1.431022459716738e-17
+ - -5.070617154950059e-17
+ - -8.437242248040882e-18
+ - 9.148617574836485e-17
+ - 2.3764898998648485e-16
+ - -1.7267395287044453e-17
+ - 2.8537731133079455e-17
+ - 1.4293680984916318e-16
+ - 2.0290740425925766e-16
+ - -1.3921449709267456e-16
+ - 6.352747104407253e-17
+ - 1.5096046179092753e-16
+ - -2.938559126094631e-17
+ - 7.424979973429115e-17
+ - 4.441959889409758e-17
+ - 1.3516131209116472e-16
+ - 1.2705494208814505e-16
+ - 5.649643583737179e-17
+ - -1.4570786490121582e-16
+ - -1.3301064249852685e-16
+ - -3.7967590116183964e-17
+ - 7.535615380358081e-17
+ - -2.275573865133379e-16
+ - 2.2220139204705706e-16
+ - -1.4459117107426924e-16
+ - 2.5841122336156585e-16
+ - -1.490682861397125e-16
+ - 4.8472783895607416e-17
+ - -5.1119761855777104e-17
+ - -5.91640933128553e-17
+ - 5.012714512071347e-17
+ - -8.230447094902625e-18
+ - 4.3575874669293493e-16
+ - 3.3935084629987955e-16
+- - -2.5387962041015935
+ - -2.1384916498038957
+ - 1.1214883118239238
+ - -0.04603780600512825
+ - -1.0948339497854103
+ - 1.8569946859065962
+ - -2.0147022794470097
+ - 1.4679337728779551
+ - -0.41691503049127604
+ - -1.1623158354539578
+ - -1.9935970747815848
+ - -0.8972271191429245
+ - 1.8899079659111422
+ - -1.9967334325838368
+ - 1.3674950593365667
+ - -0.27785462362045976
+ - -0.8585398367634445
+ - -1.8428924138014167
+ - -0.8991747009902159
+ - 1.9344313375063318
+ - -1.9613623567258052
+ - 1.3017800381411013
+ - -0.20670211140182865
+ - -0.955302650415151
+ - 1.75737657733369
+ - -1.321981710234905
+ - -2.3036556733358444
+ - 0.9522673160128073
+ - 0.7331828054265275
+ - -0.11943154955785337
+ - -1.0786440083254456
+ - 1.8234710964139083
+ - -0.28741854674778905
+ - -0.9298300513023833
+ - -2.0035085380972495
+ - -0.912413758170913
+ - 1.9361280178858133
+ - -1.9621674321351614
+ - 1.3014726373757777
+ - -0.20535756390377863
+ - -0.9572426535170769
+ - 1.7592788566255624
+ - -3.600739364403858
+ - -3.546532349351027
+ - -0.9654755756114947
+ - -0.8516906147807274
+ - 1.566927133726259
+ - 1.6691652371023018
+ - -0.24599202703423054
+ - -0.9223915486521568
+ - 1.7388161532382165
+ - -2.041074186248124
+ - 1.5985080944219638
+ - -0.689624948459224
+ - -0.25176456502378053
+ - -0.0798325011288726
+ - 2.452090519335968
+ - 1.2220937174021096
+ - -2.031926634299208
+ - 1.5436309298840878
+ - -0.5528987221820164
+ - -0.3492003395674022
+ - -0.23463831127936025
+ - 2.291817989114527
+ - 1.2455170192190235
+ - -2.0103087008169305
+ - 1.447470875884224
+ - -0.4691787872399101
+ - -0.7755471527459916
+ - 1.6518033591593997
+ - -2.04626864326075
+ - 1.1596421543302422
+ - 2.198233689711575
+ - 0.1331250931545531
+ - -0.1438576196808058
+ - -0.8548873662508555
+ - 1.7300998816259727
+ - -2.0454192723802795
+ - 1.188235976121302
+ - 2.4471801573955494
+ - 0.35022626624848163
+ - -0.023377224473331428
+ - -0.9831790962121549
+ - 1.7733667750671176
+ - -2.0408189958579697
+ - 1.5547322433049462
+ - -0.6246078681679383
+ - -0.5611826886236143
+ - 1.3906803255530453
+ - 1.5992277160484474
+ - -0.5213803298795915
+ - -0.5211276188868865
+ - -0.0972904974085824
+ - 1.1642636458301079
+ - -1.9051692527865243
+ - 1.9637877706424687
+ - -1.416063648915213
+ - 0.3568065376909914
+ - 0.4518727899078502
+ - 0.4791055306610061
+ - -2.6483842706492995
+ - -1.3551841736359396
+ - 1.9426313015081067
+ - -1.3499303663010522
+ - 0.2163723528979223
+ - 0.5422334868382404
+ - 0.5898781530081136
+ - -2.3279962611815312
+ - -1.2995438180393377
+ - 1.8982652496766612
+ - -1.2397978428898624
+ - 0.1291575592450647
+ - 1.0294357200488655
+ - -1.840197941257927
+ - 2.003925656090641
+ - -1.047219187640224
+ - -2.0530335728805764
+ - -0.49085027972301915
+ - -0.06115890228068945
+ - 1.1037868970461413
+ - -1.8978276298208239
+ - 1.982282489649627
+ - -0.999857661152938
+ - -2.1404175570608093
+ - -0.7034564997208322
+ - -0.16338219207553561
+ - 1.2194854176299408
+ - -1.9299056756769977
+ - 1.9630880474264052
+ - -1.3642952730720463
+ - 0.2891962060499222
+ - 0.8288835047854501
+ - -2.584836088420839
+ - -2.4897008048259894
+ - 0.2587712826942834
+ - 0.3862552479678083
+ - 3.1801424982723527
+ - 3.257712709612851
+ - -1.3963818847370455
+ - 0.3313561800185205
+ - 0.7875321292813617
+ - -1.7402516889994435
+ - 2.0171918398637447
+ - -1.6931842827510735
+ - 0.5710771208839324
+ - 1.4326316388801734
+ - 1.6049959440687716
+ - 0.6714169296289273
+ - -1.783989122201556
+ - 2.0141109351399598
+ - -1.6082512162881508
+ - 0.4743261668202712
+ - 1.18251449655025
+ - 1.600942813261527
+ - 0.7384374587239115
+ - -1.8501030359062265
+ - 1.9992425079338731
+ - -1.5534716618506719
+ - 0.488737851866189
+ - 0.6372475335110117
+ - -1.610411199568921
+ - 1.3108293299922336
+ - 2.2247009661864263
+ - -1.2690101384397112
+ - -0.8944266372563744
+ - 0.40476986511336654
+ - 0.7712050629575011
+ - -1.6940373630007801
+ - 1.3884772915086845
+ - 2.5856436257806843
+ - -1.2781335392246738
+ - -0.8440102782124083
+ - 0.26371317842145875
+ - 0.8515460310927732
+ - -1.741827113444944
+ - 2.0144979668150818
+ - -1.653657390300259
+ - 0.7045946480640025
+ - -0.42037751994184575
+ - -0.6330166254183979
+ - 9.349622463686872e-16
+ - 1.3517785570341576e-15
+ - 1.8958979639715392e-16
+ - 1.102838551686324e-16
+ - -1.0397660299791557e-16
+ - -1.7635490659630548e-16
+ - -2.2102265967416897e-16
+ - -8.333844671471753e-17
+ - -2.9898443240729185e-16
+ - 7.71966306665113e-17
+ - 1.4301952791041848e-16
+ - 3.7090778666877756e-16
+ - 1.4500476138054575e-16
+ - 8.89529351224212e-17
+ - -2.1548054957006368e-17
+ - -2.1548054957006368e-16
+ - -5.124383894766006e-17
+ - -9.851721095506558e-17
+ - -7.601789829362323e-17
+ - 2.3802122126213368e-17
+ - 1.2494563152613483e-16
+ - 3.513449651818985e-17
+ - 5.426304818347861e-17
+ - 2.725560118362226e-17
+ - 5.57002744977895e-17
+ - -3.3819796332113377e-16
+ - -3.714040950363094e-17
+ - -1.1828682759508294e-17
+ - 2.301216464122523e-16
+ - 1.549722877618097e-16
+ - 1.8011857838342175e-16
+ - 2.2003004293910533e-17
+ - 1.1803867341131705e-16
+ - 4.9589477722554e-17
+ - 7.787905467186754e-17
+ - -3.5237894094758974e-16
+ - -1.3358966892731395e-17
+ - -8.437242248040882e-18
+ - -1.535247216898419e-16
+ - 2.0514079191315084e-16
+ - 1.3873886824045657e-16
+ - 1.8747014607748679e-16
+ - 3.0465061960328004e-16
+ - 7.145806516692468e-17
+ - -2.7710550520526423e-18
+ - -1.312735632121655e-16
+ - -5.790264287871194e-19
+ - -3.206152054255535e-16
+ - -1.2010662494269962e-16
+ - 7.758954145747398e-17
+ - 1.529456952610548e-16
+ - 6.837681738516465e-17
+ - 4.987899093694756e-17
+ - -1.6725591985822217e-16
+ - -2.0646428089323568e-16
+ - -6.361018910532783e-17
+ - -1.1497810514487085e-16
+ - 6.154223757394526e-17
+ - -5.67445900211377e-17
+ - -8.197359870400503e-17
+ - 3.759535884053511e-17
+ - 3.548604827852489e-17
+ - 2.5311726744122644e-17
+ - -8.519960309296185e-18
+ - -1.167979024924875e-16
+ - -5.910205476691383e-17
+ - -1.8020129644467705e-16
+ - 5.566925522481876e-17
+ - -5.0292581243224076e-17
+ - 6.315523976842366e-17
+ - 3.552740730915254e-17
+ - 1.418201160222166e-16
+ - 6.89041450256672e-17
+ - -1.7427661530726602e-17
+ - -2.0811864211834174e-16
+ - -2.0234905734578437e-16
+ - 7.279189390466644e-18
+ - 4.714929491552257e-18
+ - 7.734138727370808e-17
+ - -9.496033432108756e-17
+ - 5.939156798130739e-17
+ - 2.162250121213614e-16
+ - -6.766337410683766e-17
+ - 1.0800910848411158e-16
+ - -4.645911609192364e-17
+ - -5.564857570950494e-17
+ - -6.815968247436948e-17
+ - -7.246102165964522e-17
+ - -3.4410713482205946e-16
+ - -3.2855613930606254e-16
+ - -2.6387061540441583e-16
+ - 8.172544452023912e-17
+ - 2.096902852821925e-17
+ - -9.777274840376786e-17
+ - -8.743299074685501e-17
+ - -9.161800765849049e-17
+ - 6.948317145445432e-18
+ - -1.3106676805902724e-16
+ - 1.2519378570990074e-16
+ - -6.898686308692251e-17
+ - 7.186131571554428e-17
+ - 2.383934525377826e-16
+ - 9.367820437163037e-17
+ - -5.161607022330892e-17
+ - -1.1042344189700073e-16
+ - -9.397030252543816e-17
+ - -2.2706107814580607e-17
+ - 9.585989323723898e-17
+ - 7.275053487403878e-17
+ - 3.7181768534258594e-17
+ - 5.455256139787217e-17
+ - 7.417742143069276e-17
+ - 5.0540735426989985e-17
+ - 5.3270431448414976e-17
+ - -1.0348029463038375e-16
+ - -6.121136532892405e-17
+ - -1.2324991127040112e-16
+ - -2.605618929542037e-17
+ - 1.709782326147108e-16
+ - 1.1361325713415835e-16
+ - 8.586134758300426e-17
+ - -1.4775513691728457e-17
+ - -8.288349737781336e-17
+ - -3.705769144237564e-17
+ - -1.2262952581098635e-16
+ - -1.0612727259055344e-16
+ - -9.349467367322017e-17
+ - 9.00799687070247e-17
+ - -1.6948930751211535e-16
+ - -2.837229501056885e-17
+ - -1.3259705219225034e-16
+ - -9.910657714150962e-17
+ - 2.9695783990653694e-17
+ - 8.602678370551488e-18
+ - -2.0737417956704401e-16
+ - -7.238864335604683e-17
+ - 3.730584562614155e-17
+ - 3.5883094972550336e-16
+ - 8.271806125530276e-17
+ - 7.097209655704977e-17
+ - 1.139027703485519e-16
+ - 9.318189600409856e-17
+ - -3.941515618815176e-17
+ - -2.656904127520325e-16
+ - 2.0778776987332053e-16
+ - -2.9116757561866574e-17
+ - 5.722021887335569e-17
+ - 1.6940658945086004e-16
+ - -4.714929491552257e-17
+ - -5.161607022330892e-17
+ - -6.840783665813539e-17
+ - 2.1039338880286256e-16
+ - 2.988965444672081e-17
+ - -8.031923747889897e-17
+ - -2.8769341704594303e-16
+ - 7.17992771696028e-17
+ - -4.7893757466820296e-17
+ - -1.6692504761320096e-16
+ - -1.6052990750240036e-16
+ - -4.466775307786349e-17
+ - -3.6065074707312007e-17
+ - -7.552158992609141e-17
+ - -5.773720675620133e-17
+ - -5.263970623134329e-17
+ - 1.1257928136846707e-16
+ - 6.27002904315195e-17
+ - -6.017738956323276e-17
+ - -4.779035989025117e-17
+ - -2.1594583866462476e-17
+ - -1.94801034256238e-17
+ - 6.582289724390718e-17
+ - 1.9107872149974936e-17
+ - 9.330597309598151e-17
+ - 3.2756352257099896e-17
+ - -1.0918784085699964e-17
+ - -2.94579695645447e-17
+ - -1.0075059860895876e-16
+ - -1.2986735617082533e-17
+ - -6.369290716658312e-16
+ - -1.2924697071141057e-16
+- - 8.50131027188521
+ - 6.973614917415247
+ - -4.52555056470651
+ - 2.8141790486104146
+ - -0.19494873663219747
+ - -2.6243715459231036
+ - 4.434528888022718
+ - -4.8106792262442095
+ - 2.6241391726865197
+ - 5.53211508471055
+ - 1.5599159331466075
+ - 0.32900445188365973
+ - -2.7974068038172053
+ - 4.5179586261300875
+ - -4.747115409070919
+ - 2.2997060521732604
+ - 4.625480873040591
+ - 1.7166121501271077
+ - 0.46357021474702714
+ - -3.0697011301923522
+ - 4.633555663503377
+ - -4.6964819079545626
+ - 3.119557482925838
+ - -0.5792311578767757
+ - -2.15231385363881
+ - 2.6542861818579637
+ - 4.103992840927739
+ - -4.757062184418878
+ - -2.938846421950306
+ - 2.9572158102290578
+ - -0.23905999527005184
+ - -2.4531394440673027
+ - 2.775516995462231
+ - 5.017699811242045
+ - 1.8643075852156468
+ - 0.48970986673517697
+ - -3.071273994026472
+ - 4.632426241869514
+ - -4.693068933696026
+ - 3.1149312550068897
+ - -0.5748829726150123
+ - -2.154882572499363
+ - 6.374320250374288
+ - 6.149663090604007
+ - -0.45819979329284927
+ - -0.7614614809749138
+ - -7.478738000909508
+ - -7.671080033473102
+ - 3.189585138509498
+ - -0.6677593306609501
+ - -2.0667052707007523
+ - 4.215550143112217
+ - -4.8575542595727965
+ - 3.9269164396857894
+ - -1.271069170457908
+ - -3.262700062971873
+ - -3.9958317955129283
+ - -1.6979096631486923
+ - 4.315791989993161
+ - -4.841653589008573
+ - 3.7160177543649358
+ - -1.0369419257212273
+ - -2.6704376919541235
+ - -3.965116226120603
+ - -1.8541858055128952
+ - 4.46245559299268
+ - -4.796313854469401
+ - 3.57810208813875
+ - -1.0469751590771563
+ - -1.7117227040106298
+ - 3.9196065400141884
+ - -3.1505009085775386
+ - -5.3778102020283605
+ - 2.881646539162939
+ - 2.0629044616357572
+ - -0.8429746401549183
+ - -2.0267766385119153
+ - 4.11208160261341
+ - -3.331742826475392
+ - -6.235893980827911
+ - 2.8733800205432627
+ - 1.9315505820602437
+ - -0.5049993547121024
+ - -2.217648840617849
+ - 4.219156382961974
+ - -4.845468569934398
+ - 3.8277712837330147
+ - -1.568894655018658
+ - 0.7741270741936653
+ - 1.2320771854475558
+ - 5.8706555965285645
+ - 4.955982818576138
+ - -2.583601190814193
+ - -0.08517499795768238
+ - 2.7226487636011556
+ - -4.540452529449198
+ - 4.758865552381188
+ - -3.436056159906253
+ - 0.8919970179917335
+ - 2.591468142992963
+ - 4.910056527528941
+ - 2.231686225066094
+ - -4.611312877819348
+ - 4.710434026776963
+ - -3.1862226067154373
+ - 0.5621604443989994
+ - 1.8825485259373524
+ - 4.52279060947704
+ - 2.2286771662653524
+ - -4.708598434982826
+ - 4.613315670699582
+ - -3.0259065500695033
+ - 0.3000570792127835
+ - 2.3950731992200054
+ - -4.318211320571195
+ - 3.160904464783335
+ - 5.538738041421283
+ - -2.1099990556472945
+ - -1.6669976409505811
+ - 0.09220563881225939
+ - 2.6861265624191626
+ - -4.464814790383771
+ - 3.162347810638276
+ - 6.04974367244447
+ - -1.8985844983367937
+ - -1.4643938853889358
+ - -0.249048528857641
+ - 2.8604310832792565
+ - -4.543076147269922
+ - 4.720988407710766
+ - -3.317957828106847
+ - 0.838243519220351
+ - 1.6349274072588125
+ - 1.3955939293496231
+ - -3.1792342571796004
+ - -3.400837478541284
+ - -8.562884744155884
+ - -8.628209226824318
+ - 4.7478817686384795
+ - -3.394338556492452
+ - 0.9446070868516773
+ - 1.9586101588915397
+ - -4.070587611302249
+ - 4.866868950313468
+ - -2.7554796074078203
+ - -5.651940896624483
+ - -0.5248389500356849
+ - 0.22897918495759667
+ - 2.147458404904922
+ - -4.1832494698503035
+ - 4.855947328457042
+ - -2.608728564062594
+ - -5.050720083462598
+ - -0.8755726170401618
+ - 0.026627271395096727
+ - 2.4483186951483376
+ - -4.347178183592259
+ - 4.83711597071391
+ - -3.6596096890348795
+ - 1.3195255070661462
+ - 1.4510527092636405
+ - -2.354847111841256
+ - -3.470823637797093
+ - 5.148978127044767
+ - 3.086026380600401
+ - -3.51936390360684
+ - 0.9879615470427972
+ - 1.7732285224496946
+ - -2.5859509941536825
+ - -4.280036432484788
+ - 5.679833658941334
+ - 3.168816884969966
+ - -3.274937573220325
+ - 0.7791420016570861
+ - 1.9652431617930048
+ - -4.16026930283587
+ - 4.864389984778377
+ - -3.993892787297748
+ - 4.782463657253328
+ - 6.07081723255505
+ - -2.296584252692226e-15
+ - -3.555884017242955e-15
+ - -6.93425507503203e-16
+ - -4.1772620933927893e-16
+ - 1.1055268886771214e-16
+ - 1.5272856035025962e-16
+ - 4.578961678363854e-16
+ - 5.333660589741922e-16
+ - 8.252987766594694e-16
+ - -3.763671787116276e-17
+ - -2.356637565163576e-16
+ - -1.2104961084101005e-15
+ - -1.2076836943274203e-17
+ - -2.285913622790292e-16
+ - -2.391585946043941e-17
+ - 6.452008777913615e-16
+ - 2.388070428440591e-16
+ - 1.7834014006643274e-16
+ - 3.7702892320166996e-16
+ - -5.973071203245413e-16
+ - -7.378451063973007e-17
+ - 1.6278914455043582e-16
+ - 1.7536228986124187e-17
+ - -1.0670629901934056e-16
+ - -4.145829230115774e-16
+ - 6.733250186181644e-16
+ - 3.0605682664462024e-17
+ - 2.3161057151484772e-17
+ - -7.351981284371309e-16
+ - -5.589672989327085e-16
+ - 4.963083675318165e-18
+ - -5.252596889711725e-17
+ - -9.115530350334365e-16
+ - -2.8289576949313546e-16
+ - 3.399712317592944e-17
+ - 7.838363484552489e-16
+ - 1.9248492854108952e-16
+ - -7.318480469562912e-17
+ - 2.7474804045948814e-16
+ - -7.962440576435443e-16
+ - 1.1166938269465872e-17
+ - -5.380809884657445e-16
+ - -5.525566491854225e-16
+ - -1.3139764030404845e-16
+ - -8.12291361527073e-17
+ - 2.9406270776260134e-17
+ - 1.8799747371798934e-16
+ - 3.6792993646358666e-16
+ - 1.0769891575440419e-16
+ - -1.446325301048969e-16
+ - -1.7296346608483806e-16
+ - -2.4335653621310074e-16
+ - -8.437242248040881e-17
+ - -4.1524466750161983e-17
+ - 4.923379005915621e-16
+ - 1.713918229209873e-16
+ - -1.3334151474354806e-16
+ - 3.0473333766453535e-16
+ - -1.3681567331627078e-16
+ - -1.6907571720583883e-16
+ - -1.4128244862405713e-16
+ - 8.937686518635463e-17
+ - -8.189088064274973e-17
+ - -1.1745964698252991e-17
+ - 2.216844041642114e-16
+ - 3.8017220952937147e-16
+ - 2.241659460018705e-16
+ - -6.90695811481778e-18
+ - 1.519117194953635e-16
+ - -1.315217173959314e-16
+ - 1.1282743555223297e-16
+ - -3.1135078256495957e-16
+ - 5.6248281653605874e-18
+ - 2.01563235763859e-16
+ - 2.388897609053144e-16
+ - 3.2301402920195726e-16
+ - -6.832511859688009e-17
+ - -1.6543612251060553e-17
+ - -1.2308447514789052e-16
+ - 2.551438599419814e-16
+ - 1.34416849539867e-16
+ - 1.7180541322726382e-16
+ - -7.328820227219825e-17
+ - -2.745412453063499e-16
+ - 1.3210074382471852e-16
+ - 1.1878313596261477e-16
+ - 3.4146015686188977e-16
+ - 2.6081004713796963e-16
+ - 1.1320793863400737e-15
+ - 4.082963503561744e-16
+ - 3.2425480012078685e-17
+ - -1.0763274130539996e-15
+ - -5.8432038470745875e-16
+ - -2.1465336895751065e-17
+ - 9.959254575138452e-17
+ - -1.0306670432410724e-16
+ - 3.4636120199126646e-16
+ - 9.661469554619362e-17
+ - 2.355810384551023e-16
+ - 2.74293091122584e-16
+ - -1.6022488465152144e-16
+ - -1.8363409598677212e-16
+ - -4.2384734587217133e-16
+ - 2.638292563737882e-16
+ - 1.401243957664829e-16
+ - -1.0885696861197843e-16
+ - 1.402898318889935e-16
+ - -1.1779051922755114e-16
+ - -2.779326858178173e-17
+ - 2.7958704704292335e-17
+ - 7.604245521805841e-18
+ - -1.829723514967297e-16
+ - -6.336203492156192e-17
+ - -4.764560328305439e-17
+ - 2.242951929725819e-16
+ - -4.849346341092124e-17
+ - 1.8479214884434636e-16
+ - 1.5815693312013887e-16
+ - -5.836586402174163e-16
+ - -1.2515242667927309e-16
+ - 2.0844951436336294e-17
+ - 2.071260253832781e-16
+ - 1.287093033132511e-16
+ - 7.444625512977249e-17
+ - 2.096902852821925e-17
+ - 3.689225531986503e-16
+ - -1.985233470127266e-17
+ - 4.833836704606755e-17
+ - 6.316351157454918e-16
+ - 3.2326218338572317e-16
+ - 3.7984133728435026e-16
+ - 6.203854594147708e-17
+ - 6.051653361437949e-16
+ - -2.2110537773542427e-16
+ - 5.152921625899086e-16
+ - 4.1179118844421095e-16
+ - -7.605925732425088e-17
+ - 4.403909581232319e-16
+ - -4.350970022028925e-17
+ - -9.303713939690178e-17
+ - 4.863822001811802e-17
+ - -7.643148859989974e-17
+ - -5.628964068423353e-17
+ - 5.839895124624375e-16
+ - -3.2888701155108375e-16
+ - 7.46116912522831e-17
+ - -3.9535097376971953e-16
+ - -6.675347543302932e-16
+ - 2.0613340864821447e-16
+ - 1.530284133223101e-16
+ - 1.2643455662873028e-16
+ - -3.1664473848529894e-16
+ - -3.58996385848014e-17
+ - 8.495144890919593e-17
+ - 7.08728348835434e-16
+ - -1.0910512279574434e-16
+ - 2.6436692377194764e-16
+ - 3.099445755236194e-16
+ - 5.561135258194005e-16
+ - 1.0058516248644815e-16
+ - -7.754818242684633e-17
+ - 8.007108329513307e-17
+ - -3.639594695233322e-18
+ - 6.199718691084942e-17
+ - -1.8462671272183575e-16
+ - -5.724089838866952e-17
+ - 1.5104317985218283e-16
+ - -7.672617169312176e-17
+ - 3.4683683084348445e-16
+ - -2.0265925007549176e-16
+ - 3.416255929844004e-16
+ - -7.170001549609643e-16
+ - -2.793802518897851e-17
+ - -8.238718901028154e-17
+ - 4.3933630284222676e-17
+ - -3.1267427154504446e-17
+ - 2.0218362122327376e-16
+ - 7.444625512977248e-19
+ - 1.4187801866509529e-15
+ - -1.5021599923962983e-16
+- - 6.026377498778718
+ - 4.959581042540335
+ - -3.1457266127320125
+ - 1.7614140564322254
+ - 0.19069443400837593
+ - -2.174382517530466
+ - 3.338815444199103
+ - -3.423304739698519
+ - 1.7542828878524104
+ - 3.780151067877212
+ - 1.546970738810102
+ - 0.4639503743576817
+ - -2.291445226669017
+ - 3.385752254814506
+ - -3.3545430053897767
+ - 1.5121214639956517
+ - 3.127923995224038
+ - 1.6010148781224207
+ - 0.5482981950021792
+ - -2.4740225809113507
+ - 3.447332162562902
+ - -3.3042200794186343
+ - 1.997956738805473
+ - -0.08887378501004614
+ - -1.8516930674482703
+ - 2.034418313264051
+ - 3.2205464454925994
+ - -3.2369209997366353
+ - -2.04156450358831
+ - 1.8718548643722281
+ - 0.15872774429340936
+ - -2.057905349040604
+ - 2.1108856674479255
+ - 3.6787698931078565
+ - 1.7393618957709878
+ - 0.5683990946712474
+ - -2.4754953551400813
+ - 3.4468661333186064
+ - -3.302010390698842
+ - 1.9946885953019444
+ - -0.0856037934585134
+ - -1.8538450518250593
+ - 5.008712772724096
+ - 4.853177314895242
+ - -0.006483287974531064
+ - -0.22816439218776885
+ - -5.109044822677786
+ - -5.258327896983817
+ - 2.052905669333824
+ - -0.15349619169573175
+ - -1.7930337202593027
+ - 3.2100946225900664
+ - -3.4902076472747376
+ - 2.640108648822342
+ - -0.7187113461632078
+ - -2.0084274309547014
+ - -3.1960732991438476
+ - -1.4101005170837613
+ - 3.270048212851331
+ - -3.4642801974815125
+ - 2.4694906331452127
+ - -0.5447968346578841
+ - -1.5949566578829417
+ - -3.1306659065565547
+ - -1.5141685726593934
+ - 3.354944066369786
+ - -3.4084607341535547
+ - 2.3592620068052885
+ - -0.4320103066760273
+ - -1.5468871832389801
+ - 3.0273307440865067
+ - -2.2965035896560897
+ - -3.98323602210063
+ - 1.7557752470547825
+ - 1.3259842913203168
+ - -0.2818997433241927
+ - -1.7654821843311692
+ - 3.1471071170819003
+ - -2.4176085520475636
+ - -4.589401275712418
+ - 1.6879324182323594
+ - 1.209405409036856
+ - -0.03459484328191853
+ - -1.8970009279592626
+ - 3.212267242741164
+ - -3.4700350325271994
+ - 2.559594541955716
+ - -0.8188807774678424
+ - 0.08039389057996182
+ - 0.3053049661987378
+ - 3.8058487781748447
+ - 3.2362676782747855
+ - -1.584638281138203
+ - -0.3933444770984224
+ - 2.241311386961098
+ - -3.3982469439974103
+ - 3.367885023639013
+ - -2.246542915500815
+ - 0.42489723147083414
+ - 1.4751855535559586
+ - 3.821985628782561
+ - 1.7808819693067235
+ - -3.436077628941005
+ - 3.3188115866459986
+ - -2.0502530098342717
+ - 0.19343475600081808
+ - 1.0017977002878826
+ - 3.4883372727113113
+ - 1.762940214925718
+ - -3.4840187442370905
+ - 3.226357875158458
+ - -1.9254285434175966
+ - -0.11454299933949764
+ - 2.0185821337199723
+ - -3.271462090244167
+ - 2.270513044440966
+ - 4.041499501320765
+ - -1.172017309126524
+ - -1.0202739984860691
+ - -0.26525001899008643
+ - 2.216625027036301
+ - -3.3563129932772684
+ - 2.2577350874188276
+ - 4.384906140424849
+ - -0.9789869480541612
+ - -0.8646056774810998
+ - -0.5113186417141456
+ - 2.334237451335951
+ - -3.3996791127841592
+ - 3.3293578805408917
+ - -2.153492423770663
+ - 0.27844643443497336
+ - 1.7645216314538066
+ - 1.5880357641437117
+ - -2.052772952813454
+ - -2.2271886798825564
+ - -6.249927899659066
+ - -6.313234974769851
+ - 3.355408768469474
+ - -2.2132252387881883
+ - 0.3566355700215654
+ - 1.7179660181347067
+ - -3.1211189141548514
+ - 3.51516580551889
+ - -1.8805813193016998
+ - -3.9328272991311426
+ - -0.7902776355549709
+ - -0.051321672670854544
+ - 1.84836114849964
+ - -3.19019679886455
+ - 3.4840177245272965
+ - -1.7612683681451065
+ - -3.4862547723929334
+ - -1.0074875776248038
+ - -0.19666816427911327
+ - 2.0546011612713646
+ - -3.2881514599871515
+ - 3.4562926360403137
+ - -2.4238352567381583
+ - 0.6334670151914737
+ - 1.364447773459196
+ - -1.8447585445197512
+ - -2.803517213547456
+ - 3.572408954075195
+ - 2.179767521904011
+ - -2.312084697775226
+ - 0.388518337807334
+ - 1.589375817877595
+ - -2.0110751781817475
+ - -3.411596011055546
+ - 3.905572446225966
+ - 2.2167560688495307
+ - -2.1193409532324456
+ - 0.23511858103839572
+ - 1.7225520198345152
+ - -3.1761737424842944
+ - 3.5021996173666547
+ - -2.6943067533268863
+ - 3.099133181417585
+ - 3.9627143592347025
+ - -1.6884410663432399e-15
+ - -2.5546646038087703e-15
+ - -4.966392397768378e-16
+ - -3.01341897153068e-16
+ - 7.94506978357183e-17
+ - 1.1733556989064698e-16
+ - 3.251155849457248e-16
+ - 3.69667015749948e-16
+ - 6.072332876751775e-16
+ - -4.4585035016608186e-17
+ - -1.7904324358710282e-16
+ - -8.556356256248517e-16
+ - -4.2475724454597965e-17
+ - -1.6214807957570723e-16
+ - -9.688352924527335e-18
+ - 4.769937002287034e-16
+ - 1.7552772598375245e-16
+ - 1.2883338040513406e-16
+ - 2.69660879692287e-16
+ - -4.0429486414294914e-16
+ - -5.707546226615891e-17
+ - 1.2126467780027386e-16
+ - -8.271806125530276e-19
+ - -8.528232115421714e-17
+ - -2.838056681669438e-16
+ - 5.262523057062362e-16
+ - 2.067951531382569e-17
+ - 1.7867101231145398e-17
+ - -5.461046404075089e-16
+ - -4.26380586498115e-16
+ - -3.5072457972248373e-17
+ - -3.1846453583291565e-17
+ - -6.597178975416671e-16
+ - -2.1527375441692543e-16
+ - 2.729696021424991e-18
+ - 5.770411953169921e-16
+ - 1.270135830575174e-16
+ - -5.572095401310333e-17
+ - 2.0685137557051636e-16
+ - -5.371710897919362e-16
+ - -2.1423977865123414e-17
+ - -4.0655927106981305e-16
+ - -3.9100827555381613e-16
+ - -1.0604455452929814e-16
+ - -6.038418471637102e-17
+ - 2.547716286663325e-17
+ - 1.3083929339057515e-16
+ - 2.846328487794968e-16
+ - 9.198248411589667e-17
+ - -1.0683037611122351e-16
+ - -1.5336962532498822e-16
+ - -1.845026356299528e-16
+ - -5.0209863181968774e-17
+ - -1.1580528575742386e-17
+ - 3.8579703769473206e-16
+ - 1.2937104780329353e-16
+ - -8.234582997965389e-17
+ - 2.2102265967416897e-16
+ - -8.883919778819516e-17
+ - -8.751570880811032e-17
+ - -8.205631676526033e-17
+ - 7.194403377679958e-17
+ - -3.672681919735443e-17
+ - -1.290401755582723e-17
+ - 1.5120861597469343e-16
+ - 2.5013941723603557e-16
+ - 2.0232837783047054e-16
+ - -7.4859845436049e-18
+ - 1.2430456655140623e-16
+ - -9.628382330117241e-17
+ - 1.0530009197800041e-16
+ - -2.1064154298662847e-16
+ - 2.2333876538931744e-17
+ - 1.3783930932430515e-16
+ - 1.9620724129757814e-16
+ - 2.2356624005776955e-16
+ - -3.399712317592944e-17
+ - 2.0017770823783267e-17
+ - -8.933550615572698e-17
+ - 1.8770796050359578e-16
+ - 9.516712947422582e-17
+ - 1.2271224387224166e-16
+ - -5.434576624473391e-17
+ - -2.1076562007851143e-16
+ - 9.173432993213076e-17
+ - 8.288349737781336e-17
+ - 2.4643778399486077e-16
+ - 1.968276267569929e-16
+ - 8.953402950273972e-16
+ - 2.8765205801531537e-16
+ - -2.216844041642114e-17
+ - -6.941699700545007e-16
+ - -4.111087644388547e-16
+ - -1.6005944852901086e-17
+ - 8.08982639076861e-17
+ - -7.883031237630353e-17
+ - 2.27309232329572e-16
+ - 8.007108329513307e-17
+ - 1.4988512699460861e-16
+ - 1.9083056731598346e-16
+ - -1.178318782581788e-16
+ - -1.6047303883528734e-16
+ - -3.2508198073333983e-16
+ - 1.8376851283631199e-16
+ - 1.0728532544812768e-16
+ - -6.402377941160434e-17
+ - 1.0654086289682995e-16
+ - -9.496033432108756e-17
+ - -2.3657365519016588e-17
+ - 1.1745964698252991e-17
+ - -8.297655519672559e-18
+ - -1.1431636065482842e-16
+ - -2.9778502051908996e-17
+ - -4.566036981292712e-17
+ - 1.7118502776784905e-16
+ - -8.809473523689745e-18
+ - 1.5087774372967222e-16
+ - 1.108422020821057e-16
+ - -4.106124560713229e-16
+ - -1.0422475718168147e-16
+ - 1.0422475718168147e-17
+ - 1.6593243087813733e-16
+ - 9.992341799640573e-17
+ - 5.062345348824529e-17
+ - 4.619803721108659e-17
+ - 3.2028433318053227e-16
+ - 3.805030817743927e-18
+ - 3.6168472283881135e-17
+ - 4.541221562916122e-16
+ - 2.2267702089927505e-16
+ - 2.9381455357883543e-16
+ - 4.317882797526804e-17
+ - 4.3608961893795614e-16
+ - -1.8074930360049344e-16
+ - 3.8459762580653017e-16
+ - 2.9505532449766497e-16
+ - -6.86559908419013e-17
+ - 2.6478051407822416e-16
+ - -4.681842267050136e-17
+ - -6.609173094298691e-17
+ - -5.7489052572435416e-18
+ - -3.875341169810934e-17
+ - -3.871205266748169e-17
+ - 4.435342444509334e-16
+ - -2.7694006908275367e-16
+ - 3.8546616544971083e-17
+ - -2.843019765344756e-16
+ - -4.810882442608409e-16
+ - 1.3863547066388744e-16
+ - 1.2424252800546476e-16
+ - 1.3389986165702135e-16
+ - -1.98357910890216e-16
+ - -1.6378176128549948e-17
+ - 7.634877053864444e-17
+ - 5.408106844871695e-16
+ - -8.342116477597283e-17
+ - 2.1126192844604324e-16
+ - 2.324377521274008e-16
+ - 3.825296742751476e-16
+ - 7.717595115119747e-17
+ - -6.87387089031566e-17
+ - 4.4254162771586974e-17
+ - 4.4667753077863494e-18
+ - 4.714929491552257e-17
+ - -1.5244938689352298e-16
+ - -4.9630836753181654e-17
+ - 9.454674401481105e-17
+ - -4.6926990125898945e-17
+ - 2.1940965747969057e-16
+ - -1.1828682759508296e-16
+ - 2.4087499437544166e-16
+ - -5.1558167580430215e-16
+ - -3.7838343145472554e-17
+ - -4.863822001811802e-17
+ - 2.5642598989143855e-17
+ - -3.7719435932418056e-17
+ - 1.489131897748588e-16
+ - -6.2865726554030096e-18
+ - 1.0366227436514543e-15
+ - -7.378451063973007e-17
+- - -2.7760354206600115
+ - -2.1111646106016737
+ - 2.118547984892223
+ - -3.3191041071961456
+ - 3.4444024170749383
+ - -2.3710084513688536
+ - 0.5593411574558763
+ - 1.435991811701177
+ - -1.9455678665243519
+ - -3.2603725467481413
+ - 4.025670699382367
+ - 2.2642698355722852
+ - -2.2569603953452666
+ - 0.40662430085592993
+ - 1.6589032436481657
+ - -1.9648071359351575
+ - -3.062322493044503
+ - 3.388234195263907
+ - 2.1068176289837806
+ - -2.060663016968527
+ - 0.15951864281037148
+ - 1.790684578972557
+ - -3.212527825498121
+ - 3.4962947344884143
+ - -2.647891869487583
+ - 0.704514125377265
+ - 1.8600522244706321
+ - 2.943676971159231
+ - 1.3884855574013837
+ - -3.272811937201466
+ - 3.451639651879656
+ - -2.4773271719987573
+ - 0.56758280967809
+ - 1.7389407361726732
+ - 3.6858698775888534
+ - 2.1144298165053668
+ - -2.063793421525358
+ - 0.16333122400796116
+ - 1.7873734356778355
+ - -3.2108783768293874
+ - 3.4968053332361744
+ - -2.6504301858398023
+ - 2.9564393871509944
+ - 3.0679774750686137
+ - 3.421763340878739
+ - 3.4518591423346083
+ - 4.420268090003885
+ - 4.350154870012274
+ - -3.180800567493086
+ - 3.5060117049429196
+ - -2.69665956830906
+ - 0.9032487307068247
+ - 1.1051547593341255
+ - -2.75828965041934
+ - 2.2891823425871873
+ - 4.194652038438108
+ - -2.431895727133608
+ - -1.5681321900807865
+ - 0.7563828986598252
+ - 1.2506079660438953
+ - -2.906497297802403
+ - 2.29442071566329
+ - 3.9357903931462674
+ - -1.9934052573486116
+ - -1.4481007520769584
+ - 0.5124599996067354
+ - 1.47919529418435
+ - -2.989592091170274
+ - 3.5301690651924043
+ - -2.8690462526588973
+ - 1.2776959149161946
+ - 0.37928204325091486
+ - -0.00198207294767126
+ - -3.8906844955151154
+ - -2.0753216239610204
+ - 3.520081739904496
+ - -2.71745137670301
+ - 1.0435542593202125
+ - 0.5142571804549432
+ - 0.2998927216487706
+ - -4.525128339016874
+ - -2.2736358227800073
+ - 3.4890952237650583
+ - -2.616209169324666
+ - 0.898171025255939
+ - 1.2205074823161803
+ - -2.8311294782448364
+ - 3.5269435582788677
+ - -5.067258717503095
+ - -6.241835642303142
+ - -5.5735589462513895
+ - -4.464791747486373
+ - 3.3807702604869942
+ - -3.394835231344253
+ - 2.31076461000757
+ - -0.36376672293069545
+ - -1.6111334325568891
+ - 3.066850410259098
+ - -2.4233943737733665
+ - -4.565751003729201
+ - 1.9056326608941092
+ - 1.3157173299565905
+ - -0.21316100638726368
+ - -1.7468598673607434
+ - 3.1825231740922844
+ - -2.291520417515002
+ - -4.0346298150807405
+ - 1.4243318753711505
+ - 1.154200192038058
+ - 0.03470312749792674
+ - -1.9578467364151344
+ - 3.2450862880940323
+ - -3.46184055414679
+ - 2.515195999175199
+ - -0.7524956310670962
+ - -0.7256284061614372
+ - -0.6242499201768701
+ - 4.016542044830462
+ - 2.2036571287181985
+ - -3.4285671216648925
+ - 2.3350596027912043
+ - -0.5085581094925729
+ - -0.8679617822031394
+ - -0.9846747062225593
+ - 4.391199990586603
+ - 2.2613351439067904
+ - -3.359908084580111
+ - 2.2170092350550896
+ - -0.3585241071479565
+ - -1.718801434499617
+ - 3.1242352672258225
+ - -3.519563948631553
+ - 5.690842038581027
+ - 5.698803865193844
+ - 3.103404538593851
+ - 2.9976639152610187
+ - 0.9466891321613842
+ - 0.7933470094037515
+ - -1.6557487378070477
+ - 3.0917165348842284
+ - -3.5256121622848795
+ - 2.747982043174379
+ - -1.0922960986246455
+ - -0.919443692226256
+ - 1.6472484544516997
+ - 2.6031805506971115
+ - -4.127734277839939
+ - -2.2708347361281334
+ - 2.650603333231263
+ - -0.9446370232067142
+ - -1.1564863609664582
+ - 1.7564428120049445
+ - 2.6163815056741004
+ - -3.69025828877549
+ - -2.2243278130270805
+ - 2.4800718803755126
+ - -0.7035228131101335
+ - -1.2981290433909052
+ - 2.946396741029354
+ - -3.5343446111182746
+ - 2.978261890160014
+ - -1.0346551851792092
+ - -2.393776925112087
+ - -2.4788461498163787
+ - -1.0883641034152771
+ - 3.027382190472988
+ - -3.5279442782102617
+ - 2.8375515422779145
+ - -0.9848076392038576
+ - -2.4836344766367953
+ - -3.095737108773536
+ - -1.3384622474294494
+ - 3.14775309465185
+ - -3.514978101354756
+ - 2.7446503877698003
+ - -0.975433129605251
+ - -1.0339157982572977
+ - 2.711146759338815
+ - -4.55340414694952
+ - -5.4850160968344195
+ - -6.551270451419979e-17
+ - 5.280721030538529e-16
+ - 2.3381810977459864e-16
+ - 6.658803931051873e-17
+ - 3.899381106363257e-18
+ - 1.849524150880285e-16
+ - -1.0703717126436177e-16
+ - -3.934898173914752e-16
+ - -2.4815418376590827e-17
+ - -1.613312387208111e-16
+ - -8.09809819689414e-17
+ - 5.234398916235559e-16
+ - -3.439830577301765e-16
+ - 6.605037191235926e-17
+ - 7.213014941462401e-17
+ - -8.685396431806789e-17
+ - -9.471218013732166e-17
+ - -6.981404369947554e-17
+ - -1.0554824616176632e-16
+ - 5.646334861286967e-16
+ - -1.3251433413099503e-16
+ - -1.4905794638205559e-16
+ - -1.4227506535912076e-16
+ - -4.6363473333597195e-17
+ - 3.0159005133683384e-16
+ - 2.9100213949615514e-16
+ - -3.28390703183552e-17
+ - 7.031035206700735e-18
+ - 4.5494933690416516e-17
+ - 3.8546616544971083e-17
+ - -4.646687091016633e-16
+ - 8.362795992911109e-17
+ - 6.615790539199114e-16
+ - 2.067951531382569e-20
+ - -2.8376430913631614e-16
+ - 4.896909226313923e-17
+ - -1.8189701670041076e-16
+ - -5.85230283381267e-18
+ - 1.4689176715293235e-16
+ - 4.257498612810433e-16
+ - -2.482369018271636e-16
+ - -3.8298462361205175e-17
+ - 7.858215819253762e-17
+ - -9.247879248342848e-17
+ - -4.0945440321374864e-17
+ - 1.861983558856865e-16
+ - -1.4124108959342948e-16
+ - 2.187065539590205e-16
+ - 2.511320339710992e-16
+ - -2.671793378546279e-17
+ - -2.6221625417930977e-16
+ - 5.9557004103817985e-18
+ - 3.2094607767057474e-17
+ - 3.0241723194938687e-16
+ - 9.727644003623604e-17
+ - -1.573711115382135e-17
+ - 3.2326218338572317e-16
+ - -3.3103768114372163e-16
+ - 2.665175933645855e-16
+ - 4.3981193169444477e-16
+ - 2.10103875588469e-16
+ - 2.4153673886548405e-17
+ - 1.8644651006945241e-16
+ - -3.730584562614155e-17
+ - -1.377255719900791e-16
+ - -3.306240908374451e-16
+ - 3.7074235054626695e-16
+ - -4.020097777007714e-17
+ - 2.0183206946293872e-17
+ - -7.527343574232552e-17
+ - 1.4591466005435408e-16
+ - 1.8462671272183575e-16
+ - 5.790264287871194e-17
+ - -1.8516438011999522e-16
+ - 2.663521572420749e-16
+ - -1.0538281003925571e-16
+ - 1.2424252800546476e-16
+ - 1.4856163801452377e-16
+ - -6.915229920943311e-17
+ - -2.2333876538931747e-18
+ - -1.4608009617686469e-16
+ - -2.933182452113036e-16
+ - 8.801201717564213e-17
+ - -7.86441967384791e-17
+ - -7.659692472241035e-17
+ - -3.780215399367336e-17
+ - -1.1448179677733903e-16
+ - -6.849055471939069e-17
+ - 3.90429249125029e-16
+ - 3.2293131114070195e-16
+ - -2.0820136017959704e-16
+ - 1.1619199269379241e-15
+ - 3.6213967217571547e-16
+ - 1.5062958954590634e-16
+ - 1.2229865356596514e-16
+ - 5.939156798130739e-17
+ - -4.4026688103134893e-16
+ - 1.2308447514789052e-16
+ - -3.7421650911898967e-16
+ - -6.485096002415737e-17
+ - -1.9025154088719633e-17
+ - -2.6817195458969157e-16
+ - -2.3657365519016588e-17
+ - -2.1390890640621293e-16
+ - -2.6635215724207488e-17
+ - 1.0554824616176632e-16
+ - 3.3087224502121103e-18
+ - -1.3216278237066e-16
+ - -1.2639319759810263e-16
+ - -7.16338410470922e-17
+ - -1.4210962923661015e-16
+ - 1.7784383169890093e-16
+ - 1.1472995096110494e-16
+ - -1.0132962503774588e-16
+ - 6.253485430900889e-17
+ - 2.7958704704292335e-16
+ - 1.3218346188597382e-16
+ - -9.844483265146719e-17
+ - 8.501348745513741e-17
+ - -1.2010662494269962e-16
+ - -1.2680678790437914e-16
+ - 6.997947982198614e-17
+ - -1.647743780205631e-16
+ - -6.650532124926343e-17
+ - 3.121779631775126e-16
+ - 3.3120311726623223e-16
+ - 2.6879234004910634e-16
+ - -1.1216569106219055e-16
+ - -1.6560155863311612e-16
+ - -1.6287186261169112e-16
+ - -7.444625512977248e-19
+ - 8.271806125530276e-17
+ - -4.996170899820287e-16
+ - 3.494838088036542e-17
+ - 2.1858247686713753e-17
+ - -1.7172269516600852e-16
+ - -1.1208297300093525e-16
+ - -1.1434944787933055e-15
+ - -2.1126192844604324e-16
+ - 8.726755462434442e-18
+ - -4.618976540496107e-16
+ - 9.851721095506558e-17
+ - 1.346650037236329e-16
+ - 1.649398141430737e-16
+ - -3.632977250332897e-16
+ - -1.4401214464548212e-16
+ - 1.56006263527501e-16
+ - 1.3267977025350564e-16
+ - -1.3069453678337837e-16
+ - 7.990564717262246e-17
+ - 2.6269188303152776e-16
+ - 2.201541200309883e-16
+ - 5.848166930749906e-17
+ - 1.3590577464246245e-16
+ - 6.551270451419979e-17
+ - -5.765448869494603e-17
+ - 6.878006793378425e-17
+ - 1.8975523251966452e-16
+ - -3.1559008320429383e-16
+ - 1.2324991127040111e-17
+ - -2.2333876538931744e-17
+ - 8.933550615572699e-18
+ - 1.1075948402085039e-16
+ - 3.027481041944081e-17
+ - -8.950094227823758e-17
+ - -9.132073962585424e-17
+ - -1.3880090678639804e-16
+ - 2.069605892607675e-16
+ - -3.833361753723868e-16
+ - 4.0085172484319716e-16
+ - -2.569222982589704e-16
+ - 4.354278744479137e-16
+ - -2.397169415178674e-16
+ - 1.2672406984312384e-16
+ - -8.470329472543002e-17
+ - -2.6345702509813928e-17
+ - 1.7701665108634792e-17
+ - 2.6883369907973396e-17
+ - 3.474158572722716e-18
+ - 2.359946287613788e-16
+- - -4.539694228012991
+ - -3.501878559769377
+ - 3.2736019418545212
+ - -4.712733640268194
+ - 4.625501911609881
+ - -2.9156683838531956
+ - 0.31665705359996305
+ - 2.3884892888509923
+ - -2.8572813915789443
+ - -4.898595870658005
+ - 5.23216149296771
+ - 2.9962220930441794
+ - -2.7463085003349876
+ - 0.10429784653812013
+ - 2.680427631187912
+ - -2.8514493846182987
+ - -4.545521725782848
+ - 4.364414126867469
+ - 2.7725547360776863
+ - -2.4572928271932573
+ - -0.23742632336625144
+ - 2.8517458506369184
+ - -4.599903444407179
+ - 4.73228296277765
+ - -3.331896647457707
+ - 0.6839983991470716
+ - 2.0883793808556033
+ - 4.399645894541963
+ - 2.1428574729482315
+ - -4.664731720939562
+ - 4.6394706257426455
+ - -3.074519329854271
+ - 0.4890731210571886
+ - 1.8646702386000424
+ - 5.027215768146454
+ - 2.780192715167515
+ - -2.4613249620159596
+ - -0.23221744592705876
+ - 2.846985056095714
+ - -4.597247840862844
+ - 4.732545475278405
+ - -3.3350403109371616
+ - 3.3338115461724174
+ - 3.5048347531234088
+ - 4.620831667420798
+ - 4.690584169840147
+ - 6.63920353657959
+ - 6.5641522575802815
+ - -4.5642831487792614
+ - 4.753892586751561
+ - -3.4054460044020898
+ - 0.797900332028302
+ - 1.9505888669394198
+ - -4.070948180438968
+ - 3.1852010984986143
+ - 5.927322691193603
+ - -2.8636781465585086
+ - -1.9320364973508606
+ - 0.5917308349605244
+ - 2.143571333055143
+ - -4.248644693059495
+ - 3.1694301292859337
+ - 5.523504321303421
+ - -2.280232902515362
+ - -1.7563042060620069
+ - 0.2512411436212043
+ - 2.4448714195202275
+ - -4.346359407234961
+ - 4.823093312532261
+ - -3.670529468844066
+ - 1.3274744056734018
+ - 0.8137410769366393
+ - 0.5205185212408338
+ - -5.483727324993601
+ - -2.9762145740472135
+ - 4.7897580990965105
+ - -3.437134485326382
+ - 0.9956094288080751
+ - 1.0118883701350303
+ - 1.0077212732057854
+ - -6.331429267017503
+ - -3.228661591213307
+ - 4.715434730530031
+ - -3.2831628394976855
+ - 0.790757953801188
+ - 2.1036868208919044
+ - -4.158725374836409
+ - 4.869555977387206
+ - -6.8522405193509215
+ - -8.467667640419743
+ - -8.02518427598714
+ - -6.453334531075731
+ - 4.772778671726007
+ - -4.531957347711258
+ - 2.8255425888419925
+ - -0.044791336230864544
+ - -2.617678068734185
+ - 4.435870184985442
+ - -3.327816767448763
+ - -6.358331744801652
+ - 2.0709191381012633
+ - 1.542531151412469
+ - 0.16352150563206413
+ - -2.7944883442757065
+ - 4.566268134200479
+ - -3.1193605225365872
+ - -5.5790422131848585
+ - 1.4649047356261489
+ - 1.3268111759803505
+ - 0.5044783504133398
+ - -3.0672161937835867
+ - 4.63434255973644
+ - -4.659041793037071
+ - 3.130813079391725
+ - -0.5862963446452137
+ - -1.2779558015710977
+ - -1.373694448056414
+ - 5.576978816067657
+ - 3.109337096325571
+ - -4.5943200653457446
+ - 2.8615866112699857
+ - -0.24579327592863234
+ - -1.4684522596871457
+ - -1.905436831336818
+ - 6.057476630353871
+ - 3.166765493786912
+ - -4.469296032133035
+ - 2.686749016336498
+ - -0.037525120344856604
+ - -2.7579922654191784
+ - 4.501127011626652
+ - -4.788595236800839
+ - 7.451845353604078
+ - 7.485769022468009
+ - 4.459772064327075
+ - 4.339913254155317
+ - 2.099118545958607
+ - 1.9003954156405527
+ - -2.676281732689119
+ - 4.465068632044073
+ - -4.80703322718096
+ - 3.484601340516214
+ - -1.06483338604405
+ - -1.703124053754191
+ - 2.4710884212218414
+ - 4.031327440859343
+ - -5.469351549744451
+ - -3.059281687882546
+ - 3.335996863136788
+ - -0.8563950663779493
+ - -2.0190820290906606
+ - 2.602848131789468
+ - 3.9904927480997383
+ - -4.850155956586668
+ - -2.977398580206868
+ - 3.0786588716024332
+ - -0.5179823154765139
+ - -2.206682487582197
+ - 4.296523959899736
+ - -4.855187635012807
+ - 3.8419534670680093
+ - -1.1546573423103983
+ - -2.863772790732634
+ - -3.816112043401099
+ - -1.7557930382031075
+ - 4.391192126421776
+ - -4.814368276495552
+ - 3.6224248346130494
+ - -1.0655091264148135
+ - -2.9052252683205952
+ - -4.69278546843729
+ - -2.0983280483965876
+ - 4.528395048843458
+ - -4.776710259839079
+ - 3.479499287941089
+ - -0.8998172147227641
+ - -1.8559796863220501
+ - 4.014422617070634
+ - -6.554962250344358
+ - -7.926236596519957
+ - 1.495542547495874e-16
+ - 1.0733495628488087e-15
+ - 3.7155919140116307e-16
+ - 1.1770780116629584e-16
+ - 2.667657475483514e-18
+ - 2.2718515523768905e-16
+ - -1.8512302108936757e-16
+ - -5.630618429648459e-16
+ - -9.29751008509603e-17
+ - -2.035071102033586e-16
+ - -8.470329472543002e-17
+ - 8.225484011227306e-16
+ - -4.466775307786349e-16
+ - 1.1460587386922198e-16
+ - 8.743299074685501e-17
+ - -2.0613340864821447e-16
+ - -1.492233825045662e-16
+ - -1.0306670432410724e-16
+ - -1.8231060700668727e-16
+ - 7.949205686634595e-16
+ - -1.7006833394090247e-16
+ - -2.1341259803868112e-16
+ - -1.9562821486879102e-16
+ - -5.2898200172766114e-17
+ - 4.2186211240204406e-16
+ - 2.845501307182415e-16
+ - -4.2925503912673674e-17
+ - 7.361907451721946e-18
+ - 1.3896634290890865e-16
+ - 1.1497810514487085e-16
+ - -6.209644858435578e-16
+ - 1.1836954565633826e-16
+ - 9.722680919948287e-16
+ - 1.5096046179092755e-17
+ - -3.676404232491931e-16
+ - -2.928219368437718e-17
+ - -2.5022213529729087e-16
+ - 9.181704799338607e-18
+ - 1.6720163613052338e-16
+ - 6.442909791175532e-16
+ - -3.326920423688277e-16
+ - 1.819797347616661e-17
+ - 1.4392942658422682e-16
+ - -1.0298398626285193e-16
+ - -5.4759356551010426e-17
+ - 2.220152764092326e-16
+ - -2.1262677645675574e-16
+ - 2.9182932010870816e-16
+ - 3.2524741685585043e-16
+ - -2.5973471234165066e-17
+ - -3.3517358420648676e-16
+ - 3.6065074707312007e-17
+ - 5.1781506345819526e-17
+ - 4.132594340314926e-16
+ - 8.602678370551487e-17
+ - -3.548604827852489e-17
+ - 4.53791284046591e-16
+ - -4.757942883405015e-16
+ - 3.7289302013890483e-16
+ - 5.851475653200118e-16
+ - 2.895132143935597e-16
+ - 1.0587911840678753e-17
+ - 2.5212465070616284e-16
+ - -5.3518585632180884e-17
+ - -2.071260253832781e-16
+ - -4.630557069071849e-16
+ - 4.509788699639107e-16
+ - -6.303116267654071e-17
+ - 1.0587911840678753e-17
+ - -8.321436962283457e-17
+ - 1.464109684218859e-16
+ - 2.5311726744122647e-16
+ - 6.716706573930585e-17
+ - -2.557228863707685e-16
+ - 2.9414542582385664e-16
+ - -1.4872707413703438e-16
+ - 1.6725591985822217e-16
+ - 2.0348643068804478e-16
+ - -7.80858498250058e-17
+ - -2.754511439801582e-17
+ - -2.190374262040417e-16
+ - -4.4270706383838036e-16
+ - 1.343341314786117e-16
+ - -8.313165156157927e-17
+ - -1.13654616164786e-16
+ - -6.253485430900889e-17
+ - -1.947183161949827e-16
+ - -1.1613615800244509e-16
+ - 3.8513529320468964e-16
+ - 4.016789054557502e-16
+ - -1.981924747677054e-16
+ - 1.6201159477463598e-15
+ - 5.505714157152952e-16
+ - 2.013357610954069e-16
+ - 1.451288384724287e-16
+ - 9.793818452627846e-17
+ - -6.033041797655506e-16
+ - 1.6742135598073278e-16
+ - -5.31380825504065e-16
+ - -1.1547441351240266e-16
+ - 1.5716431638507524e-18
+ - -3.626359805432473e-16
+ - 2.0844951436336294e-17
+ - -3.151558133827035e-16
+ - -5.558653716356346e-17
+ - 1.5153948821971465e-16
+ - -1.1166938269465872e-17
+ - -1.6568427669437142e-16
+ - -1.7213628547228503e-16
+ - -9.098986738083303e-17
+ - -1.8706689552886718e-16
+ - 2.4302566396807953e-16
+ - 1.5393831199611843e-16
+ - -1.3234889800848443e-16
+ - 7.262645778215583e-17
+ - 3.5270981319261095e-16
+ - 1.5170492434222525e-16
+ - -1.4727950806506658e-16
+ - 1.558408274049904e-16
+ - -1.4426029882924803e-16
+ - -1.6891028108332823e-16
+ - 5.757177063369073e-17
+ - -1.9422200782745087e-16
+ - -9.330597309598151e-17
+ - 4.109433283163441e-16
+ - 3.5142768324315376e-16
+ - 3.578383329904397e-16
+ - -1.5997673046775553e-16
+ - -2.7032262418232944e-16
+ - -2.4368740845812195e-16
+ - -2.192028623265523e-17
+ - 1.1051132983708449e-16
+ - -7.285806835367067e-16
+ - 7.304004808843234e-17
+ - -2.388484018746867e-17
+ - -2.4914680050097194e-16
+ - -1.4177875699158894e-16
+ - -1.5594008907849676e-15
+ - -2.8471556684075213e-16
+ - 1.5302841332231012e-17
+ - -6.000368163459663e-16
+ - 1.282957130069746e-16
+ - 1.8255876119045318e-16
+ - 1.6022488465152144e-16
+ - -4.73478182625353e-16
+ - -1.8735640874326074e-16
+ - 2.4649982254080225e-16
+ - 2.2565487110446595e-16
+ - -1.8983795058091983e-16
+ - 8.801201717564213e-17
+ - 3.3596974554606905e-16
+ - 3.0051471654051495e-16
+ - 7.899574849881413e-17
+ - 1.6667689342943505e-16
+ - 4.421280374095932e-17
+ - -6.87387089031566e-17
+ - 5.542110104105285e-17
+ - 2.3434026753627274e-16
+ - -4.476287884830709e-16
+ - 1.8859717966209028e-17
+ - -4.963083675318165e-18
+ - 1.0422475718168147e-17
+ - 1.528629771997995e-16
+ - 3.0936554909483235e-17
+ - -1.4277137372665258e-16
+ - -1.252351447405284e-16
+ - -1.9653811354259935e-16
+ - 2.8306120561564607e-16
+ - -5.359716779037343e-16
+ - 5.358476008118513e-16
+ - -3.8811314340988054e-16
+ - 6.604210010623372e-16
+ - -3.1920899838421333e-16
+ - 1.591495498552025e-16
+ - -1.1175210075591404e-16
+ - -3.0688400725717327e-17
+ - 4.632211430296955e-18
+ - 2.837229501056885e-17
+ - -1.4756902127946014e-16
+ - 2.8343343689129493e-16
+- - 1.239301080582757
+ - 0.8750433334126112
+ - -1.2273067400541573
+ - 2.4355355447119553
+ - -2.932285266423067
+ - 2.3486028748141194
+ - -1.086433087960513
+ - -0.6074942948185892
+ - 1.3108190457414195
+ - 2.0461550129109973
+ - -3.639513224033301
+ - -1.9743129551463479
+ - 2.2752429474249443
+ - -0.9663483121543623
+ - -0.8050628277255385
+ - 1.370264826511697
+ - 1.9975609560363918
+ - -3.1167700749848875
+ - -1.8579112079940474
+ - 2.1430504220488373
+ - -0.7719164562135319
+ - -0.9250799463574474
+ - 2.304190510428461
+ - -2.9255976869806064
+ - 2.5220704272506547
+ - -0.9528151670967631
+ - -2.130418264671246
+ - -1.8789575066503623
+ - -0.7940744154402903
+ - 2.3780695736623265
+ - -2.931706539768911
+ - 2.4174703415014265
+ - -0.852137742315656
+ - -2.11132664021229
+ - -2.244019380991202
+ - -0.9293337324878486
+ - 2.4869021098647477
+ - -0.774994593505087
+ - -0.9227234477287524
+ - 2.303394380564729
+ - -2.9265903723994886
+ - 2.524559644228727
+ - -3.366430030972685
+ - -3.4317463862993565
+ - -2.856848159469014
+ - -2.842282101521267
+ - -2.7769828659491473
+ - -2.6916752318202137
+ - 2.267848209429591
+ - -2.92212022154716
+ - 2.55227843394806
+ - -1.3505705569847541
+ - -0.3192321281687015
+ - 1.8097823914733306
+ - -1.783297323660351
+ - -3.143844868232074
+ - 2.603637343590306
+ - 1.5623126670452678
+ - -1.2377046591987706
+ - -0.4444289820125939
+ - 1.9650599559484987
+ - -1.818818599687564
+ - -3.001684003856607
+ - 2.225664812183837
+ - 1.4806919212061995
+ - -1.0501079280375873
+ - -0.6462865176764794
+ - 2.0532707897644302
+ - -2.8923830531240533
+ - 2.6521454083421734
+ - -1.6305914866015254
+ - 0.09450141998250522
+ - 0.7150338754332087
+ - 2.9351900496242602
+ - 1.495907572233134
+ - -2.9099016918192473
+ - 2.5656210325440623
+ - -1.4555491317253646
+ - 0.0034565933192567686
+ - 0.5714605202281323
+ - 3.4772448963310927
+ - 1.682422326479873
+ - -2.9292522549131608
+ - 2.5036873947515788
+ - -1.3467250724905542
+ - -0.419159256454389
+ - 1.884993663995338
+ - -2.820389770994874
+ - 4.217993223642566
+ - 5.158773170221366
+ - 3.9736114870139088
+ - 3.149544773829665
+ - -2.561153259363207
+ - 2.8847030328287793
+ - -2.352682767197546
+ - 0.891242548155033
+ - 0.7212484635980914
+ - -2.1804130546007796
+ - 1.9480133498411973
+ - 3.5492833399391386
+ - -2.2762032625116726
+ - -1.417900163477823
+ - 0.773159952694206
+ - 0.8443326395104107
+ - -2.311247554549282
+ - 1.8793271405595717
+ - 3.1904659103953796
+ - -1.8144419804386525
+ - -1.2797838235675913
+ - 0.5737869381154883
+ - 1.0361780590415552
+ - -2.3867966778677405
+ - 2.890781051565807
+ - -2.4835834725114254
+ - 1.193219876007423
+ - 0.19941845945443185
+ - -0.20244753396082774
+ - -3.144887835126419
+ - -1.6578517301899656
+ - 2.890921808008511
+ - -2.3676547057426216
+ - 1.0055996704820087
+ - 0.3205920157242686
+ - 0.03709240912414541
+ - -3.4924020998224825
+ - -1.733909863199636
+ - 2.8767179369380123
+ - -2.291053796702552
+ - 0.8871155575013212
+ - 0.8181007177609478
+ - -2.2450464740857736
+ - 2.8685071401652436
+ - -5.068799168203171
+ - -5.043837002001467
+ - -2.216831493960249
+ - -2.0953136606911933
+ - 0.32869463024976486
+ - 0.4668908402487441
+ - 0.7609762008143011
+ - -2.2071807779571717
+ - 2.8596625722927134
+ - -2.6241483824154357
+ - 1.4500803167530616
+ - 0.11716823872291295
+ - -1.039037317748701
+ - -1.4699122494670955
+ - 3.5892260026690215
+ - 1.90589051129624
+ - -2.5652266835759123
+ - 1.3400521072872122
+ - 0.32166669247415675
+ - -1.1516081986686095
+ - -1.5609199703648886
+ - 3.2627120337764826
+ - 1.8930737826073338
+ - -2.4606642303460022
+ - 1.1552743556127405
+ - 0.44400397199984604
+ - -2.0480556525678653
+ - 2.8173353683480493
+ - -2.7531676983666924
+ - 1.194582586774508
+ - 2.5015018025971147
+ - 1.4305985930079494
+ - 0.5186436276639981
+ - -2.1347723492501394
+ - 2.8568040228702545
+ - -2.6749959501637504
+ - 1.1827364814526975
+ - 2.685466038319735
+ - 1.886174160116729
+ - 0.7209079623583783
+ - -2.270768713692152
+ - 2.8725206213162546
+ - -2.6221884629504832
+ - 1.362360075946719
+ - 0.21506702434410754
+ - -1.8031160233255
+ - 3.2481263995997605
+ - 3.8715739432196794
+ - 3.364970731865716e-16
+ - 1.5153948821971465e-16
+ - -8.672988722618494e-17
+ - -5.273276405025551e-18
+ - -1.1415092453231782e-16
+ - -2.1796209140772277e-16
+ - -6.021874859386041e-17
+ - 2.0777226023683516e-16
+ - -1.1224840912344586e-16
+ - 1.296605610176871e-16
+ - 1.2424252800546476e-16
+ - -2.041481751780872e-16
+ - 2.898259920626813e-16
+ - -1.4806532964699195e-17
+ - -7.312276614968765e-17
+ - 4.896909226313923e-17
+ - 3.7719435932418056e-17
+ - -4.475047113911879e-17
+ - 1.1915536723826364e-16
+ - -3.513656446972123e-16
+ - 1.6973746169588125e-16
+ - 1.4401214464548212e-16
+ - 1.4115837153217417e-16
+ - 1.8735640874326077e-17
+ - -1.38924983878281e-16
+ - -2.3831073447652727e-16
+ - -2.6239719993830572e-17
+ - -1.9604180517506753e-17
+ - 1.2407709188295414e-17
+ - -3.039888751132377e-17
+ - 4.3182963878330805e-16
+ - -2.7524434882701993e-17
+ - -3.9167002004385855e-16
+ - 7.349499742533651e-17
+ - 8.135321324459026e-17
+ - -1.34416849539867e-16
+ - 9.427791031573132e-17
+ - -3.697497338112034e-17
+ - -1.1572256769616857e-16
+ - -2.357464745776129e-16
+ - 2.905058311286233e-16
+ - 1.261450434143367e-17
+ - 1.5840508730390478e-16
+ - 5.732361644992482e-17
+ - 7.444625512977249e-18
+ - -1.431849640329291e-16
+ - 1.464936864831412e-16
+ - -4.453540417985501e-16
+ - -2.1754850110144625e-16
+ - 6.56781406367104e-17
+ - 2.514629062161204e-16
+ - -5.583469134732936e-18
+ - -6.2865726554030096e-18
+ - -3.3848230665669888e-16
+ - -1.4525291556431166e-16
+ - -2.7539944519187362e-17
+ - -3.450997515571231e-16
+ - 2.9480717031389906e-16
+ - -2.2085722355165836e-16
+ - -2.756786186486103e-16
+ - -9.454674401481105e-17
+ - 9.967526381263982e-17
+ - -7.312276614968765e-17
+ - 1.8363409598677214e-17
+ - 2.4153673886548405e-17
+ - 1.7020275079044233e-16
+ - -2.4068887873761723e-16
+ - 8.70194004405785e-17
+ - -3.192917164454687e-17
+ - 4.3344264097778644e-17
+ - 8.850832554317395e-17
+ - 1.7412151894241233e-17
+ - 5.852302833812671e-17
+ - 9.082443125832243e-17
+ - -1.7949819292400698e-16
+ - -1.282129949457193e-16
+ - -6.633988512675282e-17
+ - -1.1712877473750872e-16
+ - 6.981404369947554e-17
+ - -1.8859717966209028e-17
+ - 1.9670354966510996e-16
+ - 5.01602323452156e-16
+ - -1.4508747944180105e-16
+ - 7.312276614968765e-17
+ - 1.7122638679847673e-17
+ - -5.190558343770248e-18
+ - 1.2176098616780567e-16
+ - 3.407984123718474e-17
+ - -1.680831004707752e-16
+ - -3.368279454315928e-16
+ - -3.2260043889568074e-16
+ - -6.849055471939068e-16
+ - -3.331883507363595e-16
+ - -1.6386447934675476e-16
+ - -9.295442133564647e-17
+ - -1.7900188455647516e-16
+ - 2.451763335607174e-16
+ - -2.192028623265523e-16
+ - 4.1259768954145015e-16
+ - 4.748016716054378e-17
+ - 1.2407709188295415e-19
+ - 3.77856103814223e-16
+ - -2.9778502051908996e-17
+ - 1.2473883637299657e-16
+ - -6.327931686030662e-17
+ - -2.2582030722697656e-16
+ - 1.2324991127040111e-17
+ - 1.3333117498589115e-16
+ - 1.4545971071744992e-16
+ - 8.08982639076861e-17
+ - 1.0902240473448904e-16
+ - -2.6469779601696883e-17
+ - -1.8859717966209028e-17
+ - 8.875647972693986e-17
+ - -1.1274471749097767e-16
+ - -1.654361225106055e-16
+ - -1.4119973056280182e-16
+ - 6.317591928373749e-17
+ - -8.127049518333497e-18
+ - 1.3797372617384502e-16
+ - 1.4872707413703438e-16
+ - 4.7314731038033177e-17
+ - -7.907846656006943e-17
+ - 1.985233470127266e-17
+ - -2.7685735102149836e-16
+ - -4.119359450514077e-17
+ - -2.4029596794665454e-16
+ - 1.684139727157964e-16
+ - 5.463527945912747e-17
+ - 1.3431345196329787e-16
+ - -9.247879248342848e-17
+ - -1.2722037821065566e-16
+ - 3.9704669402545323e-16
+ - -5.719953935804186e-17
+ - -7.725866921245277e-17
+ - 6.542998645294449e-17
+ - 7.957477492760125e-17
+ - 9.800435897528272e-16
+ - 1.8098711802660243e-16
+ - 5.645507680674414e-17
+ - 2.865353641883688e-16
+ - 4.9630836753181654e-17
+ - -1.0149506116025648e-16
+ - -1.7470054537119942e-16
+ - 3.545296105402276e-16
+ - 2.4649982254080222e-17
+ - -1.2391165576044355e-16
+ - -4.1524466750161983e-17
+ - 6.137680145143465e-17
+ - -5.128519797828771e-17
+ - -1.6675961149069035e-16
+ - 6.915229920943311e-17
+ - -4.4667753077863494e-18
+ - -1.078643518769148e-16
+ - -2.0861495048587355e-16
+ - 6.948317145445432e-17
+ - 1.8285861416250368e-17
+ - -1.859502017019206e-16
+ - 6.89041450256672e-17
+ - -6.005331247134981e-17
+ - -8.007108329513307e-17
+ - -3.044024654195142e-17
+ - -1.2391165576044355e-16
+ - -4.075156986530775e-17
+ - 2.3773170804774015e-16
+ - 1.1481266902236024e-16
+ - 3.374896899216353e-17
+ - -1.6584971281688202e-16
+ - 2.327065858264805e-16
+ - -2.1051746589474552e-16
+ - 3.1068903807491715e-16
+ - -3.7024604217873514e-16
+ - 2.1006251655784135e-16
+ - -1.2407709188295413e-18
+ - 3.474158572722716e-17
+ - -3.2094607767057474e-17
+ - -5.459392042849982e-17
+ - 6.245213624775358e-18
+ - -2.0352778971867243e-16
+ - -2.1730034691768035e-16
+- - 1.7007666568631878
+ - 1.5175762494948455
+ - -0.45404947514374905
+ - -1.2284072191432036
+ - 2.433135844257564
+ - -2.9269715693176166
+ - 2.346428493696462
+ - -1.083154640620633
+ - -0.27793513077740056
+ - 0.034475800836141414
+ - 3.656773754241445
+ - 1.8150029049628722
+ - -2.918213723064406
+ - 2.271515646426063
+ - -0.8897986623551096
+ - -0.43516438850237943
+ - -0.21918898630578834
+ - 3.255738160153588
+ - 1.7582072836762168
+ - -2.8944252620244844
+ - 2.139302812670674
+ - -0.7712180248802442
+ - -1.0151467518752053
+ - 2.301953745701663
+ - -2.923047604778337
+ - 1.6898552722866904
+ - 3.181256645812372
+ - 0.07365693385881698
+ - -0.27168992803210434
+ - -1.1302495755996664
+ - 2.4199292703825956
+ - -2.928950956876944
+ - 1.642317973343362
+ - 3.371731534843994
+ - 0.33066296170677084
+ - -0.12793108340603385
+ - -1.3169176661666468
+ - 2.485632253277997
+ - -0.7721687490579865
+ - -1.0159757333125699
+ - 2.3042564159241756
+ - -2.9260608073349212
+ - 4.9908452949018764
+ - 4.974037465343503
+ - 2.321607307564467
+ - 2.210096692295039
+ - -0.03727859306249846
+ - -0.1738161743560552
+ - -0.9608810590772897
+ - 2.270106543061451
+ - -2.9212837505564364
+ - 2.503572723524125
+ - -1.3478716966154705
+ - -0.32417736193086544
+ - 1.1279128894325456
+ - 1.6551447297288662
+ - -3.555336139006919
+ - -1.9051448419099382
+ - 2.440390039206106
+ - -1.232654882881494
+ - -0.5255344816462009
+ - 1.235004772205707
+ - 1.7253534299137328
+ - -3.2184066927864876
+ - -1.885523799229357
+ - 2.3242190223076724
+ - -1.0450034996399633
+ - -0.6485569869313356
+ - 2.120751743999376
+ - -2.8919494744042673
+ - 2.6492584912199204
+ - -1.1093273155722763
+ - -2.3725353711920625
+ - -1.5989801292148151
+ - -0.6210770079339372
+ - 2.204193108437713
+ - -2.918113647196562
+ - 2.562364238279837
+ - -1.0896884952570205
+ - -2.528220749325914
+ - -2.0705428002066304
+ - -0.8252538709954162
+ - 2.3294208185081033
+ - -2.928532294983914
+ - 2.5014126703936426
+ - -1.2574426078965872
+ - -0.4216283268236766
+ - 1.888260351358839
+ - -3.3959392112841065
+ - -4.060311809897885
+ - -1.5223039253310935
+ - -1.1078394851619988
+ - 1.3330659325363516
+ - -2.5625843090504286
+ - 2.8834319882186406
+ - -2.2913787049719234
+ - 0.8886419660630921
+ - 0.7257011729341694
+ - -1.3940409696171774
+ - -2.2247893251086324
+ - 3.5702686786767437
+ - 1.954318109809856
+ - -2.210612383814839
+ - 0.7681275593293829
+ - 0.9220903500143305
+ - -1.4422021375493093
+ - -2.145632779204133
+ - 3.044552586945511
+ - 1.8338661291086622
+ - -2.071636092065622
+ - 0.5687749393240126
+ - 1.0379845735552127
+ - -2.4421282688434673
+ - 2.889741577406364
+ - -2.480094522004752
+ - 0.8584601774752944
+ - 1.9816032395785723
+ - 2.0319944316029614
+ - 0.890272319626365
+ - -2.508289430174153
+ - 2.886147846748005
+ - -2.3638922427250115
+ - 0.7541229209688182
+ - 1.9410804129932402
+ - 2.4015142999176518
+ - 1.0221357201106758
+ - -2.6090398416803833
+ - 2.8750008720884765
+ - -2.288684375721927
+ - 0.7925805324244972
+ - 0.820056678986231
+ - -2.2475197483853133
+ - 4.918475457435311
+ - 4.81884614196689
+ - 0.8947269209781346
+ - 0.7209975526892299
+ - -3.077103512937809
+ - -3.2202192212412677
+ - 0.8511459585513196
+ - 0.7623997663051914
+ - -2.2049738925617937
+ - 2.8690122377675493
+ - -2.621556756662079
+ - 1.4464456666881738
+ - -4.330573657610917e-06
+ - -0.5720270910597564
+ - -3.2757015579166735
+ - -1.5738413554653132
+ - 2.8813980030670625
+ - -2.5613962236270678
+ - 1.2677373185631082
+ - 0.1452338891457547
+ - -0.29720811351070053
+ - -3.107694240005338
+ - -1.6287590796777056
+ - 2.8873438195681387
+ - -2.4567777270244346
+ - 1.1540322552675708
+ - 0.5382951085719918
+ - -2.0461487205242515
+ - 2.815079600199822
+ - -1.8013304332319586
+ - -3.2957481726159505
+ - 0.441949703435388
+ - 0.5579189515783542
+ - 0.6607892937175117
+ - -2.1866862401677394
+ - 2.854284161376765
+ - -1.8664579352003108
+ - -3.7187972408534757
+ - 0.22102985650508197
+ - 0.40996571493249456
+ - 0.8564053650244305
+ - -2.2701306202720968
+ - 2.869492574432609
+ - -2.574879089864728
+ - 1.360899697141226
+ - 0.21740782449720064
+ - -1.2496941074791827
+ - -1.368745833855528
+ - -6.205922545679089e-16
+ - -3.5601853564282306e-16
+ - -1.1563984963491327e-16
+ - -1.2176615604663413e-16
+ - 3.8546616544971083e-17
+ - 1.1197957542436612e-16
+ - 1.3813916229635562e-16
+ - -7.940933880509066e-18
+ - 3.153212495052141e-16
+ - -1.3098404999777193e-16
+ - -9.900834944376894e-17
+ - -1.2043749718772083e-16
+ - -2.740862959694457e-16
+ - -1.1692197958437046e-16
+ - -9.197214435823976e-18
+ - 4.0366413892587744e-17
+ - 3.29217883796105e-17
+ - 8.41242682966429e-17
+ - 1.157432472114824e-16
+ - 1.635749661323612e-16
+ - -6.377562522783843e-17
+ - 3.2714993226472245e-17
+ - -1.0885696861197843e-16
+ - -8.3876114112877e-17
+ - -7.833400400877171e-17
+ - 3.0556051827708837e-16
+ - -7.113753267956038e-18
+ - 3.813302623869457e-17
+ - -1.7776111363764562e-16
+ - -1.5695752123193698e-16
+ - -2.725560118362226e-16
+ - 3.697497338112034e-17
+ - -7.545955138014994e-17
+ - -1.3452024711643613e-16
+ - -1.4277137372665258e-16
+ - 3.9506146055532597e-16
+ - -7.572838507922967e-17
+ - -1.8404768629304866e-17
+ - 1.9830621210193145e-16
+ - 4.648755042548015e-17
+ - -2.1543919053943603e-16
+ - -1.9976411793155616e-16
+ - -2.491881595315996e-16
+ - -9.090714931957773e-17
+ - -6.361018910532783e-17
+ - 6.878006793378425e-17
+ - -4.9920349967575214e-17
+ - 5.254251250936832e-16
+ - 2.1969917069408413e-16
+ - -4.801783455870325e-17
+ - -2.1473608701876596e-16
+ - -9.657333651556597e-17
+ - 4.921724644690514e-18
+ - 2.067951531382569e-16
+ - 2.3161057151484775e-16
+ - 4.524677950665061e-17
+ - 1.9736529415515238e-16
+ - -3.077111878697263e-17
+ - 1.2672406984312384e-16
+ - 2.5175241943051397e-16
+ - 1.0645814483557465e-16
+ - 3.639594695233322e-18
+ - 7.080666043453917e-17
+ - -3.110199103199384e-17
+ - -6.633988512675282e-17
+ - -9.620110523991711e-17
+ - 2.8587361969832636e-16
+ - -6.989676176073084e-17
+ - 1.4475660719677984e-16
+ - 7.031035206700734e-19
+ - 6.619512851955604e-17
+ - 1.064995038662023e-17
+ - 1.766030607800714e-17
+ - -3.402297257007172e-17
+ - 1.9864742410460957e-16
+ - 1.2587620971525699e-16
+ - 2.249931266144235e-17
+ - 1.5253210495477828e-16
+ - -5.600012746983997e-17
+ - 1.0244631886469247e-16
+ - -6.89041450256672e-17
+ - -2.240005098793599e-16
+ - 6.162495563520056e-17
+ - -1.590668317939472e-16
+ - -1.5633713577252223e-17
+ - 1.819797347616661e-17
+ - 1.1911400820763597e-17
+ - 8.172544452023912e-17
+ - 6.941699700545007e-16
+ - 2.8289576949313546e-16
+ - 1.0608591355992579e-16
+ - 2.426947917230583e-16
+ - 2.4153673886548405e-17
+ - 6.112864726766875e-17
+ - 6.964860757696493e-17
+ - 2.0927669497591597e-17
+ - -8.400019120475995e-17
+ - 2.0361050777992774e-16
+ - -2.2548943498195534e-16
+ - 3.3004506440865804e-17
+ - -3.048160557257907e-17
+ - -3.3715881767661403e-16
+ - -1.7647898368818843e-16
+ - -4.714929491552257e-18
+ - 8.081554584643079e-17
+ - 9.065899513581182e-17
+ - 1.1580528575742386e-17
+ - -1.2176098616780567e-16
+ - 8.768114493062093e-18
+ - -4.7232012976777874e-17
+ - -6.176971224239734e-17
+ - 3.192917164454687e-17
+ - 1.890107699683668e-17
+ - -1.0439019330419208e-16
+ - 1.2639319759810263e-16
+ - 9.711100391372544e-17
+ - 1.7668577884132669e-16
+ - 1.6957202557337067e-17
+ - -6.997947982198614e-17
+ - -1.678349462870093e-16
+ - -7.246102165964522e-17
+ - 7.65555656917827e-17
+ - 1.7147454098224261e-16
+ - 2.456726419282492e-17
+ - 2.132471619161705e-16
+ - 2.0547166415817205e-16
+ - 1.4289545081853553e-16
+ - -9.644925942368301e-17
+ - 1.4876843316766203e-16
+ - 5.045801736573468e-18
+ - 2.385588886602932e-16
+ - 1.1750100601315758e-16
+ - 2.4774059345963176e-17
+ - -9.356963691623279e-17
+ - 2.2921174773844397e-16
+ - 2.633665522186413e-17
+ - -9.839313386318263e-17
+ - -5.446157153049134e-16
+ - -1.4823076576950256e-16
+ - -3.9598686886561966e-17
+ - -2.1060018395600082e-16
+ - 4.342698215903395e-18
+ - 4.028369583133244e-17
+ - 3.364970731865716e-16
+ - -3.596581303380564e-16
+ - -3.441071348220595e-17
+ - -4.1524466750161983e-17
+ - -1.2738581433316626e-16
+ - 2.216844041642114e-17
+ - 1.3052910066086777e-16
+ - 2.7685735102149836e-16
+ - 5.2112378590840736e-18
+ - 3.879477072873699e-17
+ - 1.163015941249557e-16
+ - 3.537024299276746e-16
+ - -1.1200025493967995e-16
+ - 7.610061635487853e-17
+ - 1.5563403225185213e-16
+ - 7.014491594449675e-17
+ - 1.0893968667323373e-16
+ - 2.2582030722697652e-17
+ - 7.891303043755883e-17
+ - 1.2457340025048597e-16
+ - 4.6694345578618406e-17
+ - -3.260332384377758e-16
+ - -1.5550995515996918e-16
+ - -4.561901078229947e-17
+ - 3.0460926057265244e-17
+ - -1.7426627554960908e-16
+ - 1.3623664688748366e-16
+ - -6.538862742231684e-17
+ - 1.020740875890436e-16
+ - -1.363607239793666e-16
+ - 1.6957202557337065e-18
+ - -5.350049105628129e-17
+ - -9.578751493364059e-17
+ - 4.3344264097778644e-17
+ - -6.605037191235926e-17
+ - 3.7678076901790406e-16
+ - 2.1849975880588224e-16
+- - -4.0662298946718245
+ - -3.3989376297344576
+ - 1.8987161710054412
+ - -0.45031575012711605
+ - -1.219337427974291
+ - 2.4672334111484844
+ - -2.90902908465564
+ - 2.3313955911405033
+ - -0.8392621597582627
+ - -2.0906597727333125
+ - -2.4785276961504037
+ - -1.0633789955758148
+ - 2.528946678232316
+ - -2.9000801198390302
+ - 2.2088442123216945
+ - -0.6362596767005909
+ - -1.6195615792063245
+ - -2.329528676081525
+ - -1.0843830022337757
+ - 2.6172419802385267
+ - -2.876333827037255
+ - 2.1270319835050637
+ - -0.6751425939394488
+ - -1.0074538124506216
+ - 2.288340396958097
+ - -1.8697959418467585
+ - -3.185455887808111
+ - 1.7442179450457782
+ - 1.2418507655751791
+ - -0.5532838647875082
+ - -1.1946031412603366
+ - 2.405524001360154
+ - -1.8905911035998189
+ - -3.5218683478480246
+ - 1.6785817738070163
+ - 1.1366335685013829
+ - -0.35370308976252807
+ - -1.3095986538789368
+ - 2.4694311953910364
+ - -0.6729722140041957
+ - -1.010255858750783
+ - 2.2908390154357283
+ - -4.973327421902265
+ - -4.880465074126186
+ - -1.0308214053600313
+ - -0.8594394802122312
+ - 2.8213542845334447
+ - 2.964153931972474
+ - -0.7294762385330706
+ - -0.9577688745864801
+ - 2.255322346422107
+ - -2.9083249186383933
+ - 2.485998458680929
+ - -1.3355189470237454
+ - -0.10797337924011015
+ - 0.36515335677883515
+ - 3.338631892401131
+ - 1.6229438488789043
+ - -2.9117348217478196
+ - 2.42177417937358
+ - -1.1507984152955077
+ - -0.2511603713834308
+ - 0.10689122899450328
+ - 3.1526071329981358
+ - 1.6713310366994372
+ - -2.907925818935944
+ - 2.306175517071178
+ - -1.0368238869011586
+ - -0.7382800954049871
+ - 2.107072127892573
+ - -2.8728857753733146
+ - 1.7549993152179042
+ - 3.2437936687856643
+ - -0.2515054150578023
+ - -0.4512393624520846
+ - -0.8565176355742208
+ - 2.2400808458272397
+ - -2.8985825177387112
+ - 1.8127374310520996
+ - 3.6459345481020535
+ - -0.0041750195658872445
+ - -0.296274834074634
+ - -1.0494207553927262
+ - 2.3155789114105185
+ - -2.9085441556187237
+ - 2.434679291480336
+ - -1.2479562062899248
+ - -0.42230403956571416
+ - 1.4688369840547202
+ - 1.6413362555110014
+ - -1.4111679685597396
+ - -1.2831198557233383
+ - 0.24545035611889843
+ - 1.3270508301511896
+ - -2.5457162657422594
+ - 2.8559326829568534
+ - -2.2754764445103914
+ - 0.8794339310687712
+ - 0.3878287949479137
+ - 0.181339438326263
+ - -3.6889312976117137
+ - -1.8484211588632598
+ - 2.8420642413877713
+ - -2.193498316841839
+ - 0.6855177273817644
+ - 0.536361654026537
+ - 0.4059686558359285
+ - -3.2715421382448686
+ - -1.7849076259111791
+ - 2.8051224354260755
+ - -2.0552719439566354
+ - 0.5640047070021182
+ - 1.1203680267491687
+ - -2.426295469592715
+ - 2.870414641123457
+ - -1.6289763474249672
+ - -3.1016390480498726
+ - -0.2619126591658593
+ - 0.16346426426195648
+ - 1.2339297516834407
+ - -2.5320737285942037
+ - 2.866568920098208
+ - -1.5754704269231152
+ - -3.272098656667161
+ - -0.5325212874636659
+ - 0.019250030855621277
+ - 1.4125647776622914
+ - -2.5930184983569378
+ - 2.855515095810511
+ - -2.2114813179410815
+ - 0.7862633366762019
+ - 0.8177554014556487
+ - -3.1592576085284683
+ - -3.0179403238783546
+ - 0.7392747311736861
+ - 0.9152545228209708
+ - 4.802131732305827
+ - 4.8989145607028695
+ - -2.2515760731124748
+ - 0.8447399410791507
+ - 0.7560371972033629
+ - -2.2519888824217147
+ - 2.8508626551966625
+ - -2.6048085740589944
+ - 1.032418970043516
+ - 2.413926278468775
+ - 1.8932903160947379
+ - 0.7293839149402133
+ - -2.327743181978998
+ - 2.863327990022625
+ - -2.5067463574810938
+ - 0.9022109427210316
+ - 2.0463292891102305
+ - 1.9376831580285763
+ - 0.8336430029678735
+ - -2.4449574181579203
+ - 2.8691422231407238
+ - -2.442216977361045
+ - 1.06025957509062
+ - 0.5332515893731902
+ - -2.0338716073773857
+ - 1.8153205180009164
+ - 3.0074740221307095
+ - -2.1581392347226545
+ - -1.445254271563401
+ - 0.9456810229649518
+ - 0.7316870431868292
+ - -2.1734780848528237
+ - 1.9356475140263238
+ - 3.5297865579212413
+ - -2.2426277660236487
+ - -1.3996466570107942
+ - 0.7513672441088136
+ - 0.8517346198514517
+ - -2.2547128238240495
+ - 2.860339134413547
+ - -2.5596416872828893
+ - 1.3517229351214792
+ - -1.1446380850666467
+ - -1.5657105900077792
+ - 1.6123404499883613e-15
+ - 2.3141204816783502e-15
+ - 2.6945408453914877e-16
+ - 2.0435497033122546e-16
+ - -1.3528538918304768e-16
+ - -3.1681017460780955e-16
+ - -3.239239278757656e-16
+ - -7.572838507922967e-17
+ - -4.831148367615958e-16
+ - 9.946846865950157e-17
+ - 2.3533288427133637e-16
+ - 5.206274775408756e-16
+ - 1.7187262165203376e-16
+ - 1.4572854441652965e-16
+ - -8.588202709831809e-17
+ - -3.905946852475396e-16
+ - -7.974021105011186e-17
+ - -4.9847971663976824e-17
+ - -8.486873084794063e-17
+ - 2.6149247114332584e-17
+ - 1.9554549680753572e-16
+ - 6.580221772859335e-17
+ - 3.407984123718474e-17
+ - 3.1846453583291565e-17
+ - 5.587605037795702e-17
+ - -5.982273587560065e-16
+ - -3.474158572722716e-17
+ - -3.192917164454687e-17
+ - 3.8827857953239114e-16
+ - 1.979443205839395e-16
+ - 2.5832850530031054e-16
+ - 3.197053067517452e-17
+ - -5.6248281653605874e-18
+ - 1.242735472784355e-16
+ - -1.2531786280178368e-17
+ - -4.914693609483814e-16
+ - 8.036059650952663e-17
+ - 4.582580593543773e-17
+ - -2.603964568316931e-16
+ - 4.195460066868956e-16
+ - 9.864128804694854e-17
+ - 3.1904356226170272e-16
+ - 4.782137916322191e-16
+ - 1.1004087086369495e-16
+ - 6.071505696139223e-17
+ - -2.716461131624143e-16
+ - 9.512577044359817e-18
+ - -3.090346768498111e-16
+ - -2.862044919433476e-16
+ - 1.256487350468049e-16
+ - 1.950491884400039e-16
+ - 1.188038154779286e-16
+ - 1.0091603473146936e-16
+ - -2.246622543694023e-16
+ - -2.4616895029578104e-16
+ - -1.0174321534402239e-16
+ - -1.8255876119045318e-16
+ - 2.0646428089323568e-16
+ - -1.1911400820763599e-16
+ - -9.429858983104514e-17
+ - 2.352294866947672e-17
+ - 3.90429249125029e-17
+ - 6.27002904315195e-17
+ - -1.0918784085699964e-17
+ - -1.67752228225754e-16
+ - -1.0906376376511669e-16
+ - -2.750375536738817e-16
+ - 6.104592920641344e-17
+ - -5.67445900211377e-17
+ - 1.6436078771428657e-16
+ - -5.223645568272369e-17
+ - 1.1898993111575303e-16
+ - 8.859104360442925e-17
+ - 8.788794008375919e-18
+ - -3.662755752384806e-16
+ - -2.2071246694446158e-16
+ - 4.4915907261629397e-17
+ - 8.850832554317395e-17
+ - 1.948837523174933e-16
+ - -1.495542547495874e-16
+ - 7.407402385412363e-17
+ - 2.807450999004976e-16
+ - -1.2738581433316626e-16
+ - 1.4541835168682227e-16
+ - -5.238121228992047e-17
+ - -8.280077931655806e-17
+ - -8.536503921547244e-17
+ - -1.2738581433316625e-17
+ - -4.0631111688604714e-16
+ - -6.878833973990977e-16
+ - -1.4417758076799272e-16
+ - 8.768114493062092e-17
+ - 8.417596708492747e-17
+ - -1.7023377006341307e-16
+ - -1.6915843526709413e-16
+ - -3.056432363383437e-17
+ - 6.898686308692251e-17
+ - -1.3904906097016395e-16
+ - 2.0927669497591598e-16
+ - -1.7569316210626305e-16
+ - 1.282233347033762e-16
+ - 2.455072058057386e-16
+ - 1.463282503606306e-16
+ - -3.3914405114674135e-17
+ - -7.239898311370375e-17
+ - -5.494547218883486e-17
+ - -5.434576624473391e-17
+ - 1.6812445950140285e-16
+ - 1.6427806965303127e-16
+ - 2.957170689877074e-17
+ - 5.92274243285039e-17
+ - 7.427564912843343e-17
+ - 5.806807900122254e-17
+ - 4.301339185275743e-17
+ - -1.7594131629002896e-16
+ - -1.0604455452929814e-16
+ - -2.0894582273089477e-16
+ - -1.9356026333740845e-17
+ - 3.7603630646660633e-16
+ - 1.742869550649229e-16
+ - 1.2904017555827232e-16
+ - -5.796468142465341e-17
+ - 1.1150394657214813e-16
+ - 5.459392042849982e-18
+ - -1.531938494448207e-16
+ - -2.7114980479488247e-16
+ - -1.8134900954459438e-16
+ - 1.283784310682299e-16
+ - -2.7660919683773245e-16
+ - -8.859104360442925e-17
+ - -1.62292836182904e-16
+ - -1.5453801794021937e-16
+ - 5.012714512071347e-17
+ - -3.159829939952566e-17
+ - -3.3031195940317706e-16
+ - -9.303713939690178e-17
+ - 6.435465165662555e-17
+ - 5.872982349126496e-16
+ - 1.4194419311409955e-16
+ - 7.46116912522831e-17
+ - 1.771717474512016e-16
+ - 9.471218013732166e-17
+ - -8.164272645898382e-17
+ - -4.3327720485527585e-16
+ - 3.0539508215457777e-16
+ - -1.7701665108634792e-17
+ - 8.213903482651564e-17
+ - 2.7313503826500974e-16
+ - -7.295733002717704e-17
+ - -9.537392462736408e-17
+ - -5.1450634100798315e-17
+ - 2.782635580628385e-16
+ - 5.2029660529585435e-17
+ - -1.132410258585095e-16
+ - -3.5039370747746247e-16
+ - 8.586134758300426e-17
+ - -7.34122793640812e-17
+ - -3.3244388818506177e-16
+ - -1.8814223032518612e-16
+ - -4.284795573024683e-17
+ - 8.271806125530277e-18
+ - -1.2804755882320868e-16
+ - -6.766337410683766e-17
+ - -9.417451273916219e-17
+ - 6.815968247436948e-17
+ - 6.8573272780646e-17
+ - -1.1704605667625342e-16
+ - -1.0620999065180874e-16
+ - -6.774609216809297e-17
+ - -8.147729033647321e-17
+ - 7.940933880509064e-17
+ - 4.4006008587821066e-17
+ - 1.5435190230239494e-16
+ - -4.135903062765138e-18
+ - 7.372247209378859e-18
+ - -1.3718790459191964e-16
+ - -1.5815693312013887e-16
+ - -1.0554824616176632e-16
+ - -1.0498576334523027e-15
+ - -6.187310981896647e-17
+- - 5.1619503933364435
+ - 4.217872551488591
+ - -2.832670563420011
+ - 1.9256553721458602
+ - -0.4750124176914126
+ - -1.294449112716427
+ - 2.472241994236629
+ - -2.9288456480054994
+ - 1.7013739388424585
+ - 3.5033129405491565
+ - 0.49719717552686093
+ - -0.035543546785995125
+ - -1.4042918507386608
+ - 2.5362798710442926
+ - -2.913490996061999
+ - 1.5168023521672787
+ - 2.9625379378277663
+ - 0.6505200598723625
+ - 0.057425436931897424
+ - -1.5812144499963985
+ - 2.626303917865592
+ - -2.8983978669776986
+ - 2.0906441419245945
+ - -0.7010770402480905
+ - -0.9956341336275729
+ - 1.4557799375894436
+ - 2.1744206156037635
+ - -3.0264148162134417
+ - -1.8270042758531535
+ - 2.0042471671475504
+ - -0.5001836866810663
+ - -1.1845396224424931
+ - 1.5390518871555883
+ - 2.551210310911726
+ - -3.1752044785459272
+ - -1.7943005579084124
+ - 1.851777838039435
+ - -0.3754453247975857
+ - -1.298343346168174
+ - 2.5225014925329994
+ - -0.6986152945728723
+ - -0.9968720529079963
+ - 3.3706374920535938
+ - 3.230421202196264
+ - -0.6028744843228724
+ - -0.7801753590809761
+ - -4.737374451793306
+ - -4.8409724873443905
+ - 2.1277522198185705
+ - -0.7529120641280895
+ - -0.9416034811522351
+ - 2.312290718020985
+ - -2.923016226315126
+ - 2.5096529683994784
+ - -0.9577310292423721
+ - -2.2915871275000144
+ - -2.055538016526049
+ - -0.8203871509098791
+ - 2.3854207662919142
+ - -2.9273750485011956
+ - 2.404062387405162
+ - -0.8236717865765302
+ - -1.9254654246468637
+ - -2.0813975152927155
+ - -0.9221267586160076
+ - 2.4929921467333567
+ - -2.9249251120919397
+ - 2.332096398404996
+ - -0.973252303845984
+ - -0.7204899193257726
+ - 2.1050387154676624
+ - -1.8485496763851519
+ - -3.090998721652359
+ - 2.0423765893690486
+ - 1.3916536139188707
+ - -0.8540557511181273
+ - -0.9156891792619275
+ - 2.2398352877950267
+ - -1.966117183889141
+ - -3.6141787773387772
+ - 2.100571382950277
+ - 1.3358234874416264
+ - -0.6576454915274205
+ - -1.0363800705948925
+ - 2.3148718312022174
+ - -2.9274822568386245
+ - 2.4598528529138255
+ - -1.2729264242951792
+ - 0.9477236878591625
+ - 1.3275167537196684
+ - 3.9274217403813934
+ - 3.291656195302676
+ - -1.8416755793457122
+ - 0.26662293351939026
+ - 1.3145168141516221
+ - -2.59497515932384
+ - 2.8740092134086197
+ - -2.3005198474870303
+ - 0.7531461591181876
+ - 1.9425609632034202
+ - 2.6332390552645877
+ - 1.1522386892561431
+ - -2.6497145866595315
+ - 2.860568668011444
+ - -2.1674604510727007
+ - 0.5504754938194975
+ - 1.4823810542169726
+ - 2.458389754190876
+ - 1.166532023746659
+ - -2.7311578124476923
+ - 2.8247420359831126
+ - -2.082453811606854
+ - 0.494735259161435
+ - 1.1059084111847255
+ - -2.4286630579695117
+ - 1.8888779659212176
+ - 3.2456050929371805
+ - -1.611340073988234
+ - -1.1768230877218928
+ - 0.3728974616030686
+ - 1.2920142283389109
+ - -2.5362008043660937
+ - 1.9038309409982883
+ - 3.575096456361734
+ - -1.5270020823943888
+ - -1.0660915156365542
+ - 0.16900212207017964
+ - 1.4029860853568277
+ - -2.5970093111707757
+ - 2.8629512238056813
+ - -2.2383648104202023
+ - 0.809703051477603
+ - 0.3756009839006278
+ - 0.2372645967980079
+ - -2.127722869402948
+ - -2.2426501108457657
+ - -5.015886365741068
+ - -5.039429464620936
+ - 2.8723623912044163
+ - -2.2790426664444055
+ - 0.8715523702309745
+ - 0.8319546804207197
+ - -2.2526428303846235
+ - 2.867503431978041
+ - -1.7472811304198346
+ - -3.507019853104192
+ - 0.10787023270636448
+ - 0.35691333572665274
+ - 0.9511060716590606
+ - -2.3311187566246967
+ - 2.885671436756082
+ - -1.6737595375164065
+ - -3.1627398316198816
+ - -0.1371474052913014
+ - 0.2359849634968566
+ - 1.1400308724544528
+ - -2.45020275346865
+ - 2.887961513653493
+ - -2.4170696075474742
+ - 1.0878874509723218
+ - 0.5173704815293809
+ - -1.2509201887770078
+ - -1.75754328611542
+ - 3.2055572350982704
+ - 1.8818243852209902
+ - -2.3435568163017138
+ - 0.8976044264494982
+ - 0.7174510465847569
+ - -1.3887021887192204
+ - -2.2137627444614276
+ - 3.5718893788447024
+ - 1.9542214919817609
+ - -2.2159361401613134
+ - 0.7753560401282531
+ - 0.8361051476499913
+ - -2.315753732741775
+ - 2.8773919811572743
+ - -2.58587006476972
+ - 3.2007095103047756
+ - 4.033685525105407
+ - -8.96663784007482e-16
+ - -1.244245077402264e-15
+ - -2.4956039080724845e-16
+ - -7.833400400877171e-17
+ - 3.7078370957689466e-17
+ - 1.1142122851089283e-16
+ - 3.7822833508987186e-16
+ - 1.9289851884736603e-16
+ - 2.534481396862477e-16
+ - -7.543887186483611e-17
+ - -7.829264497814406e-17
+ - -6.662112653502084e-16
+ - -1.0902240473448904e-16
+ - -2.721424215299461e-16
+ - -3.817438526932222e-17
+ - 2.0778776987332053e-16
+ - 5.735463572289556e-17
+ - 1.3349661110840175e-16
+ - 2.49022723409089e-16
+ - -7.957477492760125e-17
+ - -2.689370966563031e-17
+ - 8.41242682966429e-17
+ - 4.6983858793011966e-17
+ - 1.8575374630643928e-17
+ - -2.1771393722395686e-16
+ - 2.894304963323044e-16
+ - 2.043136113005978e-17
+ - 3.5734202462290796e-17
+ - -1.6295458067294643e-16
+ - -1.0538281003925571e-16
+ - 5.219509665209604e-17
+ - -5.976379925695625e-17
+ - -4.0358142086462215e-16
+ - -1.3317607862103744e-17
+ - 1.2341534739291173e-16
+ - 2.867008003108794e-16
+ - 7.055850625077326e-17
+ - 3.722312756488624e-19
+ - 1.9058241313221755e-16
+ - -4.549493369041652e-16
+ - -2.5973471234165066e-17
+ - -2.564259898914386e-16
+ - -5.008578609008583e-16
+ - -6.702230913210907e-17
+ - 2.7958704704292335e-17
+ - 2.422812014167818e-16
+ - 5.3518585632180884e-17
+ - 3.087038046047899e-16
+ - 1.0819522412193601e-16
+ - -2.1672132048889322e-17
+ - 3.532061215601428e-17
+ - -7.93783195321199e-17
+ - -1.0889832764260608e-16
+ - 7.676236084492096e-17
+ - 2.2995621028974166e-17
+ - 6.154223757394526e-17
+ - 3.5837600038859924e-17
+ - 4.648755042548015e-17
+ - 1.654361225106055e-19
+ - 6.443736971788086e-17
+ - -9.980451078335123e-17
+ - 1.3234889800848441e-17
+ - -1.4599737811560938e-16
+ - 5.492479267352103e-17
+ - 1.343341314786117e-16
+ - 1.2000839724495895e-16
+ - 1.2755125045567687e-16
+ - -5.4428484305989215e-17
+ - 9.979934090452278e-17
+ - 2.9737143021281345e-17
+ - 7.874759431504822e-17
+ - -1.1248622354955485e-16
+ - -1.1779051922755114e-16
+ - 1.1745964698252991e-17
+ - 3.1834045874103265e-16
+ - 2.2499312661442353e-16
+ - -1.2461475928111362e-16
+ - -1.0922919988762729e-16
+ - -5.906069573628618e-17
+ - 1.3131492224279314e-16
+ - 1.0339757656912846e-18
+ - -1.2333262933165643e-16
+ - 9.232369611857479e-17
+ - -4.5412215629161213e-17
+ - 4.892773323251158e-17
+ - 7.254373972090053e-17
+ - 1.311908451509102e-16
+ - 8.826017135940804e-17
+ - 2.564259898914386e-16
+ - 3.8054444080502033e-16
+ - 1.4628689133000294e-16
+ - -5.381637065269998e-16
+ - -2.2342148345057277e-16
+ - 7.014491594449675e-17
+ - 5.901933670565852e-17
+ - 4.768696231368204e-17
+ - 7.221286747587932e-17
+ - 1.2722037821065566e-16
+ - -3.639594695233322e-17
+ - 1.5534451903745857e-16
+ - -1.156605291502271e-16
+ - -8.817745329815274e-17
+ - -8.70194004405785e-17
+ - 1.726739528704445e-16
+ - 2.1490152314127657e-16
+ - 5.242257132054812e-17
+ - -2.4799908740105458e-17
+ - -4.954811869192635e-17
+ - 1.3753945635225468e-16
+ - -3.321130159400406e-17
+ - 2.1961645263282882e-17
+ - -1.1216569106219055e-16
+ - -1.528629771997995e-16
+ - -1.3152171739593138e-17
+ - 1.1580528575742386e-17
+ - 2.646977960169688e-18
+ - 1.5699888026256463e-16
+ - 8.180816258149442e-17
+ - -1.0426611621230913e-16
+ - -1.561716996500116e-16
+ - -7.907846656006943e-17
+ - 6.571949966733805e-17
+ - 9.59529510561512e-17
+ - 7.138568686332629e-17
+ - -1.823933250679426e-17
+ - 1.5104317985218283e-16
+ - 1.1725285182939166e-17
+ - -1.465764045443965e-16
+ - 2.130817257936599e-16
+ - 7.109617364893273e-17
+ - 1.0670629901934056e-16
+ - 1.176044035897267e-16
+ - 2.7321775632626504e-16
+ - 4.342698215903395e-18
+ - 2.585353004534488e-16
+ - -4.582580593543773e-17
+ - 1.3069453678337836e-17
+ - -1.122897681540735e-16
+ - 6.497503711604032e-17
+ - -8.528232115421714e-17
+ - 5.40148939997127e-17
+ - -1.565025718950328e-16
+ - 1.2335330884697024e-17
+ - 3.0353392577633346e-16
+ - 8.87151206963122e-17
+ - 2.456726419282492e-17
+ - -8.586134758300426e-17
+ - -9.926167350636331e-17
+ - 1.2304311611726287e-16
+ - 8.12291361527073e-17
+ - -4.0118259708821836e-17
+ - -2.9141572980243165e-16
+ - -4.2765237668991525e-17
+ - 5.89159391290894e-17
+ - 8.652309207304668e-17
+ - -8.337980574534518e-17
+ - -6.03635052010572e-17
+ - -1.3389986165702134e-17
+ - 2.4649982254080225e-16
+ - 4.226892930145971e-17
+ - 5.815079706247785e-17
+ - 2.1680403855014853e-16
+ - 6.220398206398768e-17
+ - 8.41242682966429e-17
+ - 8.271806125530276e-17
+ - -6.283470728105936e-17
+ - 1.2639319759810263e-16
+ - -1.1266199942972237e-16
+ - 8.834288942066334e-17
+ - -6.267961091620567e-17
+ - 7.750682339621868e-17
+ - -4.884501517125628e-17
+ - 5.67445900211377e-17
+ - -1.6957202557337067e-17
+ - -2.4257071463117533e-17
+ - 5.568993474013259e-17
+ - 6.218330254867386e-17
+ - -1.2738581433316625e-17
+ - 6.230324373749403e-16
+ - 4.661989932348864e-16
+- - -4.54367499339407
+ - -3.63663517287054
+ - 2.7469755223057652
+ - -2.8343011005071963
+ - 1.92666377665278
+ - -0.37898982196989034
+ - -1.2966327156631978
+ - 2.476347903857862
+ - -1.996235864718167
+ - -3.7496453849296962
+ - 1.6394733367518357
+ - 1.1175701963184468
+ - -0.2541884070810717
+ - -1.408718242454601
+ - 2.576196562856644
+ - -1.891100014228631
+ - -3.3185149848461166
+ - 1.2359910434260857
+ - 0.9837419014420624
+ - -0.05102616916775602
+ - -1.5856115072116381
+ - 2.629081949359271
+ - -2.8849671022409127
+ - 2.091879304916647
+ - -0.6982178266275714
+ - -0.5617518796049357
+ - -0.44823966207935817
+ - 3.3006871443056958
+ - 1.8045797848300813
+ - -2.8590490669688906
+ - 1.9472325944428817
+ - -0.4970601190805759
+ - -0.6796303012395304
+ - -0.7404472853666161
+ - 3.6136337559940954
+ - 1.854871183623835
+ - -2.80735063037178
+ - 1.85067751480227
+ - -0.3746862285160542
+ - -1.3862517680370128
+ - 2.5253051496612917
+ - -0.6987250963856778
+ - -0.6593445109687311
+ - -0.5184348316195341
+ - 2.029370205463329
+ - 2.1538593351915245
+ - 5.075863568330313
+ - 5.106196397158567
+ - -2.8926079169365235
+ - 2.128738315615358
+ - -0.7553592600632447
+ - -1.0309897854556542
+ - 2.3125812484281663
+ - -2.9249608147273705
+ - 1.7014061962270728
+ - 3.4503385791639856
+ - 0.0977587025131668
+ - -0.2500953364984538
+ - -1.1458757573643035
+ - 2.3871761912986016
+ - -2.9296969569622027
+ - 1.6208271125770306
+ - 3.0981040425972184
+ - 0.3259536427418615
+ - -0.12894242131449488
+ - -1.3320984827278648
+ - 2.494739426724692
+ - -2.926803475386488
+ - 2.2770971633156267
+ - -0.975906152972572
+ - -0.7213091474893861
+ - 1.329620757466724
+ - 1.9154508221124207
+ - -3.1487929162176673
+ - -1.8669770688889584
+ - 2.199827755033382
+ - -0.7800210942796101
+ - -0.9166595475542716
+ - 1.4678252620462644
+ - 2.3858866171222144
+ - -3.491860729691545
+ - -1.9283218196932097
+ - 2.0615470540263554
+ - -0.6577202541872621
+ - -1.035039455168156
+ - 2.3712196009127005
+ - -2.9294044344354497
+ - 2.4613465541821498
+ - -3.039387892540306
+ - -3.8431795486850318
+ - -5.131828453260058
+ - -4.201158698533083
+ - 2.743259510552498
+ - -1.8423209580525468
+ - 0.26863990388854686
+ - 1.3985113503711575
+ - -2.5958773173116114
+ - 2.8758567594569757
+ - -1.6395152913107096
+ - -3.4135542664000367
+ - -0.7106176922522025
+ - -0.07780854464936408
+ - 1.5068381427471207
+ - -2.65170925808097
+ - 2.8508417520974345
+ - -1.4500450918914074
+ - -2.8712446794219066
+ - -0.8350903753622594
+ - -0.16482255097713533
+ - 1.675756719577403
+ - -2.7331051681203946
+ - 2.8268859963820776
+ - -2.0161172809274395
+ - 0.4968440830093563
+ - 1.1073253883414238
+ - -1.5222288040972831
+ - -2.314367795559787
+ - 2.9424237353662406
+ - 1.7958712982661231
+ - -1.9229640634104501
+ - 0.2958104109845442
+ - 1.2935395410769601
+ - -1.6003616992576613
+ - -2.6930327877228444
+ - 3.07140599066261
+ - 1.7551198005759892
+ - -1.7648366308253123
+ - 0.16837544128852558
+ - 1.4023208393885152
+ - -2.641080777572545
+ - 2.8650311593972106
+ - -2.2395139905452353
+ - 2.521463023878747
+ - 2.6111382447559683
+ - 2.8331077870361288
+ - 2.8563783281504125
+ - 3.5679862797703055
+ - 3.50642261665715
+ - -2.6160722811252803
+ - 2.8745147787771037
+ - -2.2806049278479756
+ - 0.7793784444034958
+ - 0.8337297429432408
+ - -2.257134704212269
+ - 1.8803466066932493
+ - 3.4339176542380314
+ - -2.064065587761793
+ - -1.3200228193960453
+ - 0.659898005400981
+ - 0.9553450846966883
+ - -2.3815815368526008
+ - 1.8875987245243695
+ - 3.2268532592395656
+ - -1.7004877158486003
+ - -1.2225477450647897
+ - 0.45874222453709396
+ - 1.1443242077589058
+ - -2.4530500074669352
+ - 2.889835626711446
+ - -2.419010251555167
+ - 1.085844516927887
+ - 0.27496966769845693
+ - -0.06853043541132615
+ - -3.186881244522874
+ - -1.6933612257328834
+ - 2.8849602376587122
+ - -2.296413713931879
+ - 0.8952175216119759
+ - 0.3845184905444424
+ - 0.1708566036417245
+ - -3.7125074462990812
+ - -1.8592630429082493
+ - 2.86255775568905
+ - -2.2158511184828167
+ - 0.7751843031792907
+ - 0.9294557031670045
+ - -2.3187221705094787
+ - 2.880681612681095
+ - -4.187648436524257
+ - -5.1548795324765475
+ - 7.884685598855459e-16
+ - 1.6940658945086005e-15
+ - 3.3033457762305155e-16
+ - 1.2018934300395492e-16
+ - -1.1439907871608373e-16
+ - -2.1423977865123414e-17
+ - -3.360007648190398e-16
+ - -3.990319274955805e-16
+ - -2.717288312236696e-16
+ - -4.044913195384305e-17
+ - 6.669143688708786e-17
+ - 8.121259254045625e-16
+ - -1.0869153248946782e-16
+ - 1.4421893979862038e-16
+ - -7.610061635487855e-18
+ - -2.694954435697764e-16
+ - -1.297432790789424e-16
+ - -1.5377287587360782e-16
+ - -1.0124690697649058e-16
+ - 4.501516893513577e-16
+ - 7.610061635487855e-18
+ - -9.016268676828e-17
+ - -5.98878763488392e-17
+ - -5.136791603954301e-17
+ - 3.0440246541951414e-16
+ - -4.384057246531046e-17
+ - -7.124093025612951e-17
+ - -2.7379678275505213e-17
+ - 2.3094882702480533e-16
+ - 1.4442573495175863e-16
+ - -2.0931805400654363e-16
+ - 1.1121443335775457e-16
+ - 6.878006793378424e-16
+ - 9.351276824911977e-17
+ - -3.0746303368596034e-16
+ - -2.5609511764641737e-16
+ - -1.3826323938823858e-16
+ - 6.27830084927748e-17
+ - -1.0571368228427692e-16
+ - 5.463424548336179e-16
+ - -7.81685678862611e-17
+ - 1.0108147085397997e-16
+ - 4.051530640284729e-16
+ - -3.077111878697263e-17
+ - -4.772832134430969e-17
+ - -2.3243775212740075e-17
+ - -9.628382330117241e-17
+ - -1.10924920143361e-16
+ - 9.591159202552355e-17
+ - 3.962195134129002e-17
+ - -7.601789829362323e-17
+ - 2.953034786814309e-17
+ - 7.010097197445487e-17
+ - 6.977268466884788e-17
+ - -8.652309207304668e-17
+ - -9.264422860593909e-17
+ - 1.1135918996495135e-16
+ - -1.7052328327780663e-16
+ - 1.5716431638507523e-16
+ - 3.125088354225338e-16
+ - 2.1539783150880838e-16
+ - 7.345363839470886e-17
+ - 2.271437962070614e-16
+ - -6.023425823034578e-17
+ - -2.7594745234769003e-16
+ - -3.236757736919997e-16
+ - 1.6709048373571157e-16
+ - 3.6602742105471475e-17
+ - -4.086272226011956e-17
+ - -4.350970022028925e-17
+ - 1.6014216659026613e-16
+ - 2.8306120561564607e-16
+ - 1.4153060280782304e-16
+ - -1.563371357725222e-16
+ - -1.0918784085699964e-17
+ - -3.12012527055002e-16
+ - 1.450461204111734e-16
+ - 1.2109924167776325e-16
+ - -7.610061635487855e-18
+ - -7.181995668491663e-17
+ - -4.0883401775433387e-17
+ - 6.340339395218957e-17
+ - -2.928219368437718e-17
+ - 2.791734567366468e-18
+ - -1.163015941249557e-16
+ - -7.899574849881413e-17
+ - -1.494715366883321e-16
+ - -1.0025429024142694e-16
+ - 2.0613340864821447e-16
+ - -2.5973471234165066e-17
+ - -4.450231695535289e-16
+ - 1.0604455452929815e-15
+ - 2.8909962408728317e-16
+ - 1.2159555004529505e-17
+ - 8.644037401179139e-18
+ - -8.156000839772852e-17
+ - -3.808339540194139e-16
+ - -3.6892255319865034e-17
+ - -1.2341534739291173e-16
+ - -1.3532674821367533e-16
+ - 5.10370437945218e-17
+ - 8.708660886534844e-18
+ - 6.782881022934826e-18
+ - -2.455072058057386e-16
+ - -1.8669466425321832e-16
+ - -6.253485430900889e-17
+ - 7.816856788626112e-18
+ - -2.5890753172909763e-17
+ - -2.967510447533987e-17
+ - -2.646977960169688e-18
+ - -7.113753267956038e-17
+ - 2.330167785561879e-16
+ - 1.5042279439276808e-16
+ - -4.916037777979212e-17
+ - -2.249931266144235e-17
+ - 1.3979352352146168e-16
+ - -3.1701696976094786e-17
+ - -1.0265311401783072e-16
+ - 2.0162527430980047e-16
+ - 2.862044919433476e-17
+ - -4.280659669961918e-18
+ - 6.27830084927748e-17
+ - -2.6122363744424614e-16
+ - -7.394994676224067e-17
+ - 1.3871818872514274e-16
+ - 2.1201673075499788e-16
+ - 1.2424252800546476e-16
+ - 4.239300639334266e-17
+ - -2.6684846560960673e-16
+ - -1.5104317985218283e-16
+ - -1.2382893769918824e-16
+ - 7.858215819253762e-19
+ - -4.048221917834517e-16
+ - 3.0011146599189535e-17
+ - -1.5542723709871388e-16
+ - -1.6361632516298885e-16
+ - -7.374315160910242e-17
+ - -6.053307722663056e-16
+ - -1.1874177693198712e-16
+ - 7.175791813897515e-17
+ - -3.1019272970738533e-16
+ - 1.942530271004216e-16
+ - 6.629852609612517e-17
+ - -1.0236360080343716e-16
+ - -1.4831348383075786e-16
+ - -1.4177875699158894e-16
+ - 1.467418406669071e-16
+ - 1.9571093293004632e-16
+ - -1.545121685460771e-16
+ - 2.8785885316845363e-17
+ - 2.0836679630210765e-16
+ - 3.9456515218779415e-16
+ - 7.494256349730431e-17
+ - 4.616701793811585e-17
+ - -1.621274000603934e-16
+ - -1.522012327097571e-17
+ - 5.943292701193504e-17
+ - 6.43132926259979e-17
+ - -4.40142803939466e-16
+ - -3.6561383074843823e-17
+ - -5.711682129678656e-17
+ - -5.2562158048916446e-17
+ - 4.005622116288036e-17
+ - -2.779326858178173e-17
+ - 2.5146290621612038e-17
+ - -2.547716286663325e-17
+ - -1.8512302108936757e-16
+ - 1.256487350468049e-16
+ - -3.4989739910993066e-16
+ - 3.034098486844505e-16
+ - -1.2308447514789052e-16
+ - 3.5039370747746247e-16
+ - -1.0753347963189359e-16
+ - 1.5832236924264947e-16
+ - -7.527343574232552e-17
+ - -9.37816019481995e-17
+ - -7.990564717262246e-17
+ - 3.556876633978019e-17
+ - -6.255139792125994e-16
+ - -5.802671997059489e-17
+- - 1.9148216614971008
+ - 1.478202976776873
+ - -1.3912737548982952
+ - 1.9567758303184395
+ - -1.9429737926539519
+ - 1.1932064569958818
+ - -0.13481434786108493
+ - -1.0231822102982038
+ - 1.1978358376241394
+ - 2.056386507882839
+ - -2.1762834945693994
+ - -1.2477649548760288
+ - 1.1228077455928198
+ - -0.04543631219448451
+ - -1.1440231082909025
+ - 1.1945323052058425
+ - 1.906805333342823
+ - -1.8142209383679218
+ - -1.1541909328402118
+ - 1.0009712819448282
+ - 0.09663683405918509
+ - -1.2159333801364383
+ - 1.9106057899358073
+ - -1.98854318533716
+ - 1.3679369879192709
+ - -0.2778811659423783
+ - -0.8592378556524127
+ - -1.8463791269729082
+ - -0.9009605462682827
+ - 1.9378434053637041
+ - -1.9482888010049546
+ - 1.2605127399458094
+ - -0.19631874965452117
+ - -0.7642925462854411
+ - -2.1084115508157146
+ - -0.978707772701363
+ - 1.9727661342206357
+ - -1.9193696920956904
+ - 1.1907553971548621
+ - -0.06452606160175237
+ - -1.0821915796827735
+ - 1.8254355133661109
+ - -1.3721570936849579
+ - -1.4440521878486792
+ - -1.9269404882195367
+ - -1.956828250522015
+ - -2.7870496483372054
+ - -2.756285087731282
+ - 1.8959480336162762
+ - -1.9977714062926606
+ - 1.3988105435841416
+ - -0.33592249705364935
+ - -0.8408527060836729
+ - 1.6923485088792423
+ - -1.3308390630145872
+ - -2.4789825281085225
+ - 1.1826264195615421
+ - 0.8005680245664831
+ - -0.24907833734887438
+ - -0.9205810329587985
+ - 1.7664809766671357
+ - -1.3236325514271927
+ - -2.3090948852638125
+ - 0.9395478353427033
+ - 0.7269068858909162
+ - -0.1074370505728592
+ - -1.0466742508592763
+ - 1.8061777146179123
+ - -2.02761281662188
+ - 1.5102168342132538
+ - -0.557418801360862
+ - -0.34764408467317026
+ - -0.23146995972922552
+ - 2.2930766270999285
+ - 1.2458861831123866
+ - -2.012510943695315
+ - 1.4127619602552157
+ - -0.4179491003008311
+ - -0.4307088109667836
+ - -0.4368252753795513
+ - 2.646320459024495
+ - 1.3507327216538862
+ - -1.9812821165986556
+ - 1.347435427183641
+ - -0.3329429443321215
+ - -0.9045990013522589
+ - 1.7286254597929276
+ - -2.048376577089423
+ - 2.8577264757557903
+ - 3.53219222656437
+ - 3.3602691957682076
+ - 2.7027523810542893
+ - -2.0107888763849817
+ - 1.8736007431443722
+ - -1.1849637223014329
+ - -0.008406273894994768
+ - 1.0889336316494063
+ - -1.8726941003581365
+ - 1.3892462974216606
+ - 2.65677744810761
+ - -0.8497885982962003
+ - -0.6368047316155917
+ - -0.0947602145234494
+ - 1.1631363172748175
+ - -1.925707617768308
+ - 1.301486881389777
+ - 2.3301104278659435
+ - -0.5982777057299673
+ - -0.5469154389427655
+ - -0.2377667046850958
+ - 1.2758760615670868
+ - -1.9542979371330522
+ - 1.9276393603925897
+ - -1.3131018332315048
+ - 0.21786084960278232
+ - 0.5411173296555498
+ - 0.5874379598190037
+ - -2.329876081860052
+ - -1.300293072218125
+ - 1.9007639612200025
+ - -1.1994577309815468
+ - 0.07621076356820503
+ - 0.6205102456291349
+ - 0.810417885824201
+ - -2.5295617672181625
+ - -1.3236804840613876
+ - 1.847093172940149
+ - -1.1267769922684767
+ - -0.011449064953022565
+ - 1.147321615294479
+ - -1.899597732994087
+ - 1.9830162994719571
+ - -3.100805069788782
+ - -3.11559667954558
+ - -1.861856530299171
+ - -1.8111367937748077
+ - -0.8978966925686322
+ - -0.8161075644422442
+ - 1.1134858520231523
+ - -1.8847699922611219
+ - 1.991060457574918
+ - -1.46170259778166
+ - 0.41793861118984926
+ - 0.7081120563156873
+ - -1.0372527661655189
+ - -1.6952925989547805
+ - 2.277928982582464
+ - 1.275553710659967
+ - -1.3986025418872674
+ - 0.3314170937449534
+ - 0.8404046753082585
+ - -1.0917646002662167
+ - -1.6766514456035932
+ - 2.018917159827195
+ - 1.2408795330896423
+ - -1.2911986513311404
+ - 0.18929272398648034
+ - 0.9178823131443572
+ - -1.8152292770094582
+ - 2.0121100353173627
+ - -1.611992803204901
+ - 0.47482809062010767
+ - 1.1840866427947505
+ - 1.6042344176710066
+ - 0.7400493807087533
+ - -1.8536455333615385
+ - 1.9948640174942642
+ - -1.5189868543762188
+ - 0.4370522527470623
+ - 1.1991796368893683
+ - 1.9710089799580475
+ - 0.8830192897308994
+ - -1.9108181369092785
+ - 1.9779601935934843
+ - -1.4595571832349201
+ - 0.3489458706293678
+ - 0.7717817793860909
+ - -1.6985641161011364
+ - 2.7446448526481344
+ - 3.31958682916576
+ - 1.0587911840678753e-17
+ - -2.2036091518412655e-16
+ - -1.3373442553451075e-16
+ - -3.794691060087014e-17
+ - -4.6073960119203635e-17
+ - -1.3946265127644047e-16
+ - 3.647866501358852e-17
+ - 2.376696695017987e-16
+ - 5.2060679802556173e-17
+ - 8.005040377981924e-17
+ - 4.9341323538788095e-17
+ - -3.4675411278222915e-16
+ - 1.6278914455043582e-16
+ - -5.90632806757004e-17
+ - -6.401860953277589e-17
+ - 1.0312874287004871e-16
+ - 4.9299964508160443e-17
+ - 2.605618929542037e-17
+ - 1.258141711693155e-16
+ - -3.0700808434905617e-16
+ - 9.2892382789705e-17
+ - 1.2614504341433672e-16
+ - 7.936797977446299e-17
+ - 1.0507778718837678e-17
+ - -1.87087575044181e-16
+ - -1.409308968637221e-16
+ - 3.805030817743927e-18
+ - 2.005912985441092e-18
+ - -4.925860547753279e-17
+ - -6.766337410683766e-17
+ - 2.8144820342116767e-16
+ - -3.705769144237564e-17
+ - -4.376612621018069e-16
+ - -4.115223547451313e-18
+ - 1.0059550224410507e-16
+ - 1.2490427249550716e-17
+ - 7.711391260525599e-17
+ - -2.5063572560356735e-17
+ - -7.816856788626112e-18
+ - -2.714806770399037e-16
+ - 1.6626330312315854e-16
+ - -3.4219427965553064e-17
+ - 3.5258573610072805e-18
+ - 3.7315539148944904e-17
+ - -4.963083675318165e-18
+ - -9.16929709015031e-17
+ - 9.407111516259306e-17
+ - -1.7288074802358276e-16
+ - -1.3913177903141925e-16
+ - 3.250819807333399e-17
+ - 1.6022488465152144e-16
+ - -1.8068726505455198e-17
+ - 4.0531850015098356e-18
+ - -2.0811864211834174e-16
+ - -1.9686898578762056e-17
+ - 1.646089418980525e-17
+ - -2.1854111783650989e-16
+ - 2.5526793703386434e-16
+ - -1.5675072607879872e-16
+ - -2.096075672209372e-16
+ - -8.726755462434441e-17
+ - 4.690114073175666e-17
+ - -8.499280793982358e-17
+ - 2.5146290621612038e-17
+ - 6.046690277762632e-17
+ - 1.6460894189805248e-16
+ - -1.630993372801432e-16
+ - 3.2177325828312777e-17
+ - 2.1506695926378716e-17
+ - 5.724089838866952e-17
+ - 3.234276195082338e-17
+ - -2.5270367713494992e-17
+ - 1.9381875727883127e-17
+ - 8.983181452325879e-17
+ - -1.164670302474663e-16
+ - 7.938348941094837e-18
+ - -6.650532124926343e-17
+ - -7.444625512977249e-17
+ - 5.3270431448414976e-17
+ - 1.5426918424113966e-17
+ - 1.2217457647408219e-16
+ - 2.637051792819052e-16
+ - -7.576974410985732e-17
+ - 1.4051730655744558e-17
+ - 3.89602068512476e-17
+ - 1.2645523614404409e-17
+ - 1.2515242667927309e-16
+ - 7.031035206700735e-17
+ - -7.411538288475128e-17
+ - -1.9322939109238724e-16
+ - -8.12291361527073e-17
+ - -6.7696461331339775e-16
+ - -2.6701390173211733e-16
+ - -1.0166049728276709e-16
+ - -6.24159470959544e-17
+ - -9.462946207606635e-17
+ - 2.384761705990379e-16
+ - -1.1282743555223297e-16
+ - 2.815722805130506e-16
+ - 7.16338410470922e-17
+ - 6.97933641841617e-19
+ - 1.8346865986426151e-16
+ - -5.67445900211377e-17
+ - 1.4301952791041848e-16
+ - 5.459392042849982e-18
+ - -1.2440796412797536e-16
+ - -1.303778817051354e-18
+ - 7.984360862668098e-17
+ - 1.0087467570084171e-16
+ - 3.8050308177439267e-17
+ - 6.846987520407687e-17
+ - -4.6322114302969544e-17
+ - -2.4070955825293102e-17
+ - 5.033394027385173e-17
+ - -4.9299964508160443e-17
+ - -1.3863547066388744e-16
+ - -6.492333832775576e-17
+ - 6.918848836123231e-17
+ - -5.176599670933416e-17
+ - 6.55954225754551e-17
+ - 8.945958324760993e-17
+ - 2.4815418376590827e-17
+ - 5.4428484305989215e-17
+ - 4.226892930145971e-17
+ - -1.797463471077729e-16
+ - -8.346252380660048e-17
+ - -1.7221900353354034e-16
+ - 9.082443125832243e-17
+ - 1.196930346364231e-16
+ - 1.167979024924875e-16
+ - 1.3648480107124955e-17
+ - -6.27830084927748e-17
+ - 3.5337155768265337e-16
+ - -7.084801946516682e-17
+ - -4.859686098749037e-18
+ - 7.94506978357183e-17
+ - 5.852302833812671e-17
+ - 7.409883927250021e-16
+ - 1.1836954565633826e-16
+ - 6.782881022934826e-18
+ - 2.231319702361792e-16
+ - -8.023651941764368e-18
+ - -6.981404369947554e-17
+ - -4.748016716054378e-17
+ - 1.9405657170494027e-16
+ - 3.120538860856297e-17
+ - -1.2101652361650795e-16
+ - -9.065899513581182e-17
+ - 7.514935865044256e-17
+ - -3.239187579969372e-17
+ - -1.1096627917398865e-16
+ - -2.7958704704292335e-17
+ - -1.966621906344823e-17
+ - -6.352747104407253e-17
+ - -3.867069363685404e-17
+ - 2.4153673886548405e-17
+ - 1.56957521231937e-17
+ - -1.282129949457193e-16
+ - 1.5873595954892599e-16
+ - 7.444625512977248e-19
+ - -1.4475660719677984e-17
+ - -7.940933880509066e-18
+ - -7.196471329211341e-17
+ - -1.1539169545114735e-17
+ - 8.513756454702036e-17
+ - 6.129408339017935e-17
+ - 4.615667818045894e-17
+ - -1.4070342219527e-16
+ - 2.0997979849658605e-16
+ - -1.9149231180602588e-16
+ - 2.0861495048587355e-16
+ - -3.0010112623423844e-16
+ - 1.358644156118348e-16
+ - -4.408872664907637e-17
+ - 3.0042165872160274e-17
+ - -3.383168705341883e-17
+ - -1.670904837357116e-17
+ - -2.6883369907973396e-17
+ - 1.522012327097571e-17
+ - -1.2746853239442156e-16
+- - 0.2585693687783592
+ - 0.41977153824180263
+ - 0.6639363342335741
+ - -2.916898013040619
+ - 4.223242830163198
+ - -4.117868775578048
+ - 2.6460471584432246
+ - -0.315054454243152
+ - -1.2820823079988701
+ - -1.6505186171854809
+ - 5.72059104339786
+ - 2.976909740933409
+ - -4.0511459710016595
+ - 2.4916241631059584
+ - -0.008305921207733852
+ - -1.4485454139971063
+ - -1.8006960888395807
+ - 4.991964532151459
+ - 2.83900562552997
+ - -3.925097721672799
+ - 2.233243944103548
+ - 0.17877115308975577
+ - -2.649550293298787
+ - 4.119496937844452
+ - -4.257050992291019
+ - 2.0462953300525513
+ - 4.128107812730135
+ - 1.5945242916420794
+ - 0.4470671859638996
+ - -2.7962161936704315
+ - 4.212935648199768
+ - -4.175715153292337
+ - 1.9282086086036494
+ - 4.255131608301719
+ - 2.0860937646749065
+ - 0.6655543497188927
+ - -3.025252610274723
+ - 4.260366553876066
+ - -4.115676193918782
+ - 2.5240103994616216
+ - -0.16778523574198803
+ - -2.2459766147465796
+ - 6.496078403409633
+ - 6.536994912748383
+ - 4.079376722164949
+ - 3.9839235058015916
+ - 2.247143484334824
+ - 2.0750017641995497
+ - -2.5791336044883377
+ - 4.092800151751289
+ - -4.280479111158802
+ - 2.980154201904969
+ - -0.7494911451874211
+ - -1.7269717690431616
+ - 2.3057968226190715
+ - 3.8153308140327464
+ - -4.795973080528534
+ - -2.706884374044326
+ - 2.8404270864659584
+ - -0.5605577070990466
+ - -2.0049356300149554
+ - 2.415108534721863
+ - 3.7514476847147615
+ - -4.23396367265347
+ - -2.6253207572828514
+ - 2.5996587679536707
+ - -0.2547009803346561
+ - -2.1694117828991892
+ - 3.9565779792080544
+ - -4.340327050259501
+ - 3.3186772544567456
+ - -0.9082990988793384
+ - -2.3628165023193564
+ - -3.6023216865159977
+ - -1.6907278949617708
+ - 4.033496848472878
+ - -4.288963921583136
+ - 3.1102524888830865
+ - -0.8189994782639354
+ - -2.361803286475724
+ - -4.399608087907305
+ - -1.9964616457631352
+ - 4.143071692630179
+ - -4.246086733916486
+ - 2.9753798182901616
+ - -0.5998888811446772
+ - -1.8615970952782268
+ - 3.7234712189792765
+ - -5.9991490834205115
+ - -7.267487431221256
+ - -4.395627746168772
+ - -3.4100693504722868
+ - 3.0952542002302743
+ - -4.284170294299776
+ - 4.085657729382959
+ - -2.4478679304195037
+ - 0.07321907787631092
+ - 2.328409884850913
+ - -2.6400656789199157
+ - -4.574151802455756
+ - 4.538903862786742
+ - 2.62540341174789
+ - -2.2905684399323145
+ - -0.11782289692174854
+ - 2.582761319058976
+ - -2.619862970231111
+ - -4.220890567572239
+ - 3.766845339456183
+ - 2.4220310893832453
+ - -2.023201665404927
+ - -0.42437943520612315
+ - 2.7313908867064263
+ - -4.198912608669813
+ - 4.1976140884967315
+ - -2.836611625691331
+ - 0.4796000968764642
+ - 1.6500627027650152
+ - 4.098434975870741
+ - 2.0250328336430203
+ - -4.24851285426771
+ - 4.100017591249725
+ - -2.5958036290665505
+ - 0.3021796726736046
+ - 1.4234680634392725
+ - 4.659900763964431
+ - 2.1861087250457785
+ - -4.3123988644660765
+ - 4.028845027385608
+ - -2.442469252109946
+ - -0.07808592102742115
+ - 2.4520278499229096
+ - -4.034906254924465
+ - 7.836534576883311
+ - 7.741443050593975
+ - 2.4868496137456564
+ - 2.257309787453487
+ - -2.574026165412744
+ - -2.7945259708707346
+ - 0.012592229156769585
+ - 2.3778270780441195
+ - -3.995790509316731
+ - 4.297251955761427
+ - -3.153003872754209
+ - 0.9859044998837114
+ - 0.8512494657263462
+ - 0.7758100742207462
+ - -5.393961568659473
+ - -2.7402191384978827
+ - 4.258324561055587
+ - -3.0177387843038375
+ - 0.6845810778581922
+ - 1.0522566289286837
+ - 1.0562029683919663
+ - -5.000639509850603
+ - -2.7708535397433445
+ - 4.177045072104298
+ - -2.7880629685896663
+ - 0.4991275202302123
+ - 2.079607010022869
+ - -3.8421648609933503
+ - 4.362556002667854
+ - -2.3278596198244945
+ - -4.517863554379117
+ - -0.8410255292493597
+ - -0.007031947510562705
+ - 2.2424696534972868
+ - -3.979685318015367
+ - 4.327938534510658
+ - -2.3669352989772614
+ - -4.985438481321358
+ - -1.3797318569512576
+ - -0.2835568486804503
+ - 2.500331202719509
+ - -4.055118593489759
+ - 4.296000477026547
+ - -3.0461776257387156
+ - 0.8416238510027443
+ - 1.6385995581814057
+ - -3.597074763685582
+ - -4.197007282862003
+ - -7.110444545505825e-16
+ - -3.685916809536291e-16
+ - -2.5394444805377947e-17
+ - -8.697804140995085e-17
+ - 1.1200025493967995e-16
+ - 2.706948554579783e-16
+ - 1.6444350577554188e-16
+ - -2.4732700315335527e-16
+ - 2.3756627192522955e-16
+ - -2.3136241733108184e-16
+ - -1.535247216898419e-16
+ - 1.4558378780933287e-16
+ - -4.451472466454118e-16
+ - -7.01862749751244e-17
+ - 9.388499952476863e-17
+ - 2.4887796680189217e-17
+ - 3.805030817743927e-18
+ - 5.492479267352103e-17
+ - -1.0753347963189358e-17
+ - 4.1813979964555544e-16
+ - -1.6047303883528734e-16
+ - -5.3808098846574444e-17
+ - -1.74038800881157e-16
+ - -7.763090048810163e-17
+ - 1.1497810514487085e-16
+ - 5.097086934551757e-16
+ - 1.819797347616661e-17
+ - 2.547716286663325e-17
+ - -1.6551884057186081e-16
+ - -1.3565762045869654e-16
+ - -5.46683666836296e-16
+ - 9.082443125832243e-17
+ - 2.3884840187468674e-16
+ - -1.2752023118270613e-16
+ - -2.220152764092326e-16
+ - 4.403082400619766e-16
+ - -1.3793236714321736e-16
+ - 9.931337229464787e-18
+ - 2.860804148514646e-16
+ - 8.271806125530276e-17
+ - -2.1502560023315952e-16
+ - -2.0613340864821447e-16
+ - -2.644910008638306e-16
+ - -1.2622776147559202e-16
+ - -3.308722450212111e-17
+ - 1.7519685373873124e-16
+ - -1.4486000477334897e-16
+ - 7.163384104709219e-16
+ - 3.212769499155959e-16
+ - -8.735027268559971e-17
+ - -3.6826080870860787e-16
+ - -1.1444043774671138e-16
+ - 1.6543612251060552e-18
+ - 4.284795573024683e-16
+ - 3.1432863277015047e-16
+ - 1.6212740006039342e-17
+ - 3.876168350423487e-16
+ - -2.719769854074355e-16
+ - 2.4616895029578104e-16
+ - 4.173281286694878e-16
+ - 1.679176643482646e-16
+ - -2.5973471234165066e-17
+ - 1.2755125045567687e-16
+ - -5.757177063369073e-17
+ - -6.886278599503955e-17
+ - -2.4736836218398293e-16
+ - 4.698385879301197e-16
+ - -8.668852819555729e-17
+ - 1.1216569106219055e-16
+ - -6.59262948204763e-17
+ - 3.867069363685404e-17
+ - 4.259980154648092e-17
+ - -7.237830359838992e-18
+ - -1.0357852232812442e-16
+ - 3.8910576014494417e-16
+ - 1.1531931714754897e-16
+ - 9.678013166870423e-17
+ - 2.3094882702480533e-16
+ - -6.981404369947554e-17
+ - 1.2085108749399734e-16
+ - -1.9322939109238724e-16
+ - -4.572654426193137e-16
+ - 1.2953648392580413e-16
+ - -1.6613922603127558e-16
+ - -5.558653716356346e-17
+ - 1.819797347616661e-17
+ - -7.543887186483611e-17
+ - 1.952146245625145e-17
+ - 8.424007358240033e-16
+ - 4.453540417985501e-16
+ - 1.67752228225754e-16
+ - 7.351981284371309e-16
+ - 2.3434026753627274e-16
+ - 1.3292792443727155e-16
+ - 1.493061005658215e-16
+ - 8.652309207304668e-17
+ - -3.1697561073032016e-16
+ - 3.3815143441167766e-16
+ - -5.336969312192135e-16
+ - -1.6212740006039342e-17
+ - -4.6322114302969544e-17
+ - -5.254251250936832e-16
+ - -1.3102540902839958e-16
+ - -1.196103165751678e-16
+ - 1.2680678790437914e-16
+ - 2.478233115208871e-16
+ - 1.8032537353656003e-17
+ - -1.8561932945689939e-16
+ - -7.771361854935694e-17
+ - -8.3876114112877e-17
+ - -1.3003279229333595e-16
+ - 6.352747104407253e-17
+ - 4.963083675318166e-19
+ - -1.5699888026256463e-16
+ - 1.5997673046775553e-16
+ - 2.537790119312689e-16
+ - 2.6138907356675675e-16
+ - -5.2029660529585435e-17
+ - -5.033394027385173e-17
+ - -2.479887476433977e-16
+ - -1.6584971281688202e-16
+ - 3.43693544515783e-17
+ - 1.3631936494873896e-16
+ - -2.547716286663325e-17
+ - 3.995282358631123e-16
+ - 3.7653261483413815e-16
+ - 3.0475401717984917e-16
+ - -1.7800926782141153e-16
+ - 2.8785885316845363e-17
+ - -1.0362505123758053e-16
+ - 2.0346575117273096e-16
+ - 1.8197973476166606e-16
+ - -2.481541837659083e-16
+ - -3.958059231066237e-17
+ - 2.549991033347846e-16
+ - -6.048192773797152e-17
+ - -1.741215189424123e-16
+ - -1.2328299849490322e-15
+ - -2.244968182468917e-16
+ - -4.7345750311003915e-17
+ - -4.3393894934531827e-16
+ - -2.2912902967718864e-17
+ - 1.0116418891523527e-16
+ - 3.899329407574972e-16
+ - -5.045801736573469e-16
+ - -7.32468432415706e-17
+ - 6.633988512675282e-17
+ - -3.705769144237564e-17
+ - -3.8546616544971083e-17
+ - 1.7511413567747593e-16
+ - 3.7764930866108474e-16
+ - 5.2898200172766114e-17
+ - 5.724089838866952e-17
+ - 1.9140959374477058e-16
+ - 4.1193594505140773e-16
+ - -1.346650037236329e-16
+ - 6.385834328909374e-17
+ - 2.478233115208871e-16
+ - -8.313165156157927e-17
+ - 1.0023361072611312e-16
+ - -6.61744490042422e-19
+ - 1.737079286361358e-17
+ - 2.0613340864821447e-16
+ - 7.779633661061224e-17
+ - -3.839669005894585e-16
+ - -1.7536228986124184e-16
+ - -7.626605247738914e-17
+ - 1.9074784925472816e-16
+ - -3.7893143861054193e-16
+ - 3.2302436895961417e-16
+ - -2.5295183131871586e-16
+ - 2.6205081805679917e-16
+ - -2.59817430402906e-16
+ - 7.105481461830508e-17
+ - -6.871802938784277e-17
+ - -6.201786642616325e-17
+ - 6.021874859386041e-17
+ - -5.839895124624375e-17
+ - 4.541221562916122e-16
+ - 4.715653274588242e-16
+- - -0.5668248614613007
+ - -0.1965597096639967
+ - 1.337769487925697
+ - -4.068306014043869
+ - 5.4791187541098845
+ - -5.044133096270435
+ - 2.9499656938963
+ - 0.10266196246701098
+ - -1.9351901903396345
+ - -2.7195939198092476
+ - 7.22843617656722
+ - 3.8127277271067337
+ - -4.939552994955051
+ - 2.741532817250406
+ - 0.49239239599206164
+ - -2.11595566485963
+ - -2.8176060960038316
+ - 6.270085546783792
+ - 3.6202268542379463
+ - -4.747775094455885
+ - 2.395328339613021
+ - 0.7288188415130381
+ - -3.755130216177139
+ - 5.385762981252042
+ - -5.274050183711422
+ - 2.3634772126248076
+ - 4.900530189921126
+ - 2.5650785311548705
+ - 0.8893035668130532
+ - -3.9274911374775643
+ - 5.4704748314507805
+ - -5.137041330052667
+ - 2.198003665067638
+ - 4.99744552391359
+ - 3.219516730404624
+ - 1.162995345691479
+ - -4.194014357105195
+ - 5.5092733006192685
+ - -5.040639949591866
+ - 2.785178590310789
+ - 0.29006228440958426
+ - -3.2755243433424153
+ - 8.337424067831455
+ - 8.103381078620115
+ - 5.3210810749367266
+ - 5.229850342946913
+ - 3.6970230453088506
+ - 3.4949187467665546
+ - -3.67153486311143
+ - 5.360634424388755
+ - -5.313410888644596
+ - 3.4050007011681647
+ - -0.45387097217231037
+ - -2.6482793338763972
+ - 3.114912143037649
+ - 5.277037330312827
+ - -5.775221812937963
+ - -3.3186461375529364
+ - 3.213780520907457
+ - -0.21136292520144792
+ - -2.985189941138366
+ - 3.231381739941833
+ - 5.131702134346815
+ - -5.052081148712387
+ - -3.1966621012644802
+ - 2.887049610167342
+ - 0.1791447616513807
+ - -3.183156407667251
+ - 5.2247623893714605
+ - -5.428383033186463
+ - 3.873904302856214
+ - -0.8400495947194944
+ - -2.4839261853461365
+ - -4.961344329956405
+ - -2.4038735226041
+ - 5.302553361726719
+ - -5.328613796901572
+ - 3.5841213639853193
+ - -0.7054218682514278
+ - -2.3916703041828877
+ - -5.9909441665488385
+ - -2.785106464594148
+ - 5.408361530501999
+ - -5.252971326678233
+ - 3.398452778422678
+ - -0.26179300736072164
+ - -2.8117686444680023
+ - 4.978788484427935
+ - -7.835851163131682
+ - -9.523694226588173
+ - -6.303469237720343
+ - -4.932714753375709
+ - 4.2743768256023165
+ - -5.528186997622977
+ - 4.992066187932507
+ - -2.6826056778377487
+ - -0.4097416708222726
+ - 3.3735962657300145
+ - -3.5067756011745237
+ - -6.18666630162867
+ - 5.346058450052776
+ - 3.156755162728625
+ - -2.47178665165771
+ - -0.651526957315542
+ - 3.6758607069071663
+ - -3.4457074404496035
+ - -5.654952237502886
+ - 4.389228067863992
+ - 2.894219746012946
+ - -2.1159062930270442
+ - -1.037452350242989
+ - 3.8509701270640315
+ - -5.458830393161697
+ - 5.171495467890182
+ - -3.208600232322064
+ - 0.284861146183395
+ - 1.545643197756994
+ - 5.520787251374321
+ - 2.793994136605397
+ - -5.500913580192226
+ - 5.014500482606281
+ - -2.8818202600346363
+ - 0.05539600763346252
+ - 1.1986154255456765
+ - 6.224071828864305
+ - 2.9807089724326663
+ - -5.54732055997298
+ - 4.904037702250701
+ - -2.675340831843883
+ - -0.6012859038862177
+ - 3.520855868893488
+ - -5.303903711522241
+ - 9.955352729065606
+ - 9.857836310928036
+ - 3.551161739055463
+ - 3.2779723568910804
+ - -2.4193284731691658
+ - -2.6973970038940625
+ - -0.48693615877329993
+ - 3.4330429909687203
+ - -5.26461601604848
+ - 5.346537046777948
+ - -3.643778771783486
+ - 0.7584387529624841
+ - 1.3922662394849137
+ - 1.6017443125374824
+ - -6.915996874242327
+ - -3.5659555761359423
+ - 5.276202581990048
+ - -3.4570074117451455
+ - 0.370141943865907
+ - 1.6365108017311911
+ - 1.90042711760909
+ - -6.370452555619726
+ - -3.58410262544742
+ - 5.139265403467678
+ - -3.1427821153499966
+ - 0.13244271024428997
+ - 3.0757174836932655
+ - -5.1057869649351515
+ - 5.484732398602024
+ - -2.7591357789614066
+ - -5.471407968426899
+ - -1.6327287490856432
+ - -0.33616507626599096
+ - 3.27134814968351
+ - -5.248392860067833
+ - 5.4058436927421365
+ - -2.78514570469722
+ - -5.989974328168075
+ - -2.385259821911464
+ - -0.7023429647695422
+ - 3.578725189322073
+ - -5.3237592233227575
+ - 5.344212363233502
+ - -3.496200134536409
+ - 0.5722201366120536
+ - 2.5411525619380524
+ - -5.156031153048507
+ - -6.0679803345267604
+ - -6.97809564749734e-16
+ - -1.4756902127946014e-16
+ - 2.067951531382569e-17
+ - -8.499280793982358e-17
+ - 1.284611491294852e-16
+ - 3.1755463715910728e-16
+ - 1.3896634290890865e-16
+ - -3.568457162553761e-16
+ - 2.388897609053144e-16
+ - -2.8603905582083697e-16
+ - -1.7660306078007138e-16
+ - 3.0142461521432324e-16
+ - -5.588018628101978e-16
+ - -5.316703387184585e-17
+ - 1.180800324419447e-16
+ - -1.5344200362858663e-17
+ - -1.3731198168380258e-17
+ - 4.913452838564984e-17
+ - -4.582580593543773e-17
+ - 5.702583142940573e-16
+ - -1.9306395496987663e-16
+ - -7.924390268258004e-17
+ - -2.288395164627951e-16
+ - -1.019913695277883e-16
+ - 1.8992066864217513e-16
+ - 5.995405079784345e-16
+ - 1.3731198168380258e-17
+ - 2.8206858888058244e-17
+ - -1.65022532204329e-16
+ - -1.4558378780933287e-16
+ - -7.025244942412863e-16
+ - 1.2771668657818747e-16
+ - 3.698324518724586e-16
+ - -1.5000920408649157e-16
+ - -3.0965506230922586e-16
+ - 4.972182662056249e-16
+ - -1.8371681404802742e-16
+ - 1.9447791682945946e-17
+ - 3.285147802754349e-16
+ - 1.9405657170494027e-16
+ - -2.6701390173211733e-16
+ - -2.274746684520826e-16
+ - -2.5286911325746056e-16
+ - -1.530284133223101e-16
+ - -3.9539233280034717e-17
+ - 1.887626157846009e-16
+ - -1.939118150977435e-16
+ - 8.6523092073046685e-16
+ - 3.894366323899654e-16
+ - -1.0422475718168147e-16
+ - -4.698385879301197e-16
+ - -1.3267977025350564e-16
+ - 1.8363409598677214e-17
+ - 5.409761206096801e-16
+ - 3.7653261483413815e-16
+ - 5.583469134732936e-18
+ - 4.858858918136485e-16
+ - -3.566802801328655e-16
+ - 3.159829939952565e-16
+ - 5.405211712727759e-16
+ - 2.4070955825293105e-16
+ - -2.9116757561866574e-17
+ - 1.9356026333740845e-16
+ - -8.321436962283457e-17
+ - -1.1979643221299223e-16
+ - -3.5006283523244126e-16
+ - 5.874636710351603e-16
+ - -9.496033432108756e-17
+ - 1.3995895964397228e-16
+ - -8.337980574534518e-17
+ - 4.9630836753181654e-17
+ - 8.139457227521791e-17
+ - 1.3441684953986698e-17
+ - -1.4226472560146385e-16
+ - 4.506479977188895e-16
+ - 9.976573669213781e-17
+ - 1.4442573495175863e-16
+ - 3.0804206011474746e-16
+ - -6.815968247436948e-17
+ - 1.3102540902839958e-16
+ - -2.4385284458063256e-16
+ - -5.641371777611649e-16
+ - 1.5021599923962983e-16
+ - -1.9893693731900313e-16
+ - -8.553047533798305e-17
+ - 9.347140921849213e-18
+ - -1.197757526976784e-16
+ - 1.1249656330721175e-17
+ - 1.0422475718168149e-15
+ - 4.996170899820287e-16
+ - 1.5964585822273432e-16
+ - 1.064416012233236e-15
+ - 3.3798599828916706e-16
+ - 1.4988512699460861e-16
+ - 1.7722344623948615e-16
+ - 1.0273583207908602e-16
+ - -4.3079566301761676e-16
+ - 4.1193594505140773e-16
+ - -6.660458292276978e-16
+ - -5.39321759384574e-17
+ - -4.053185001509835e-17
+ - -6.448700055463403e-16
+ - -1.5766062475260705e-16
+ - -1.7916732067898577e-16
+ - 1.344995676011223e-16
+ - 2.9679240378402633e-16
+ - 2.3243775212740075e-17
+ - -2.256962301350936e-16
+ - -1.0178457437465004e-16
+ - -9.826905677129968e-17
+ - -1.7073007843094489e-16
+ - 1.0902240473448904e-16
+ - 2.7958704704292335e-17
+ - -2.008394527278751e-16
+ - 1.862810739469418e-16
+ - 3.209460776705747e-16
+ - 3.0812477817600276e-16
+ - -7.829264497814406e-17
+ - -2.072087434445334e-17
+ - -2.9977025398921723e-16
+ - -2.011703249728963e-16
+ - 4.020097777007714e-17
+ - 1.5501364679243736e-16
+ - -3.490702184973777e-17
+ - 5.116939269253029e-16
+ - 4.660335571123758e-16
+ - 3.87823630195487e-16
+ - -2.041481751780872e-16
+ - -1.2324991127040111e-17
+ - -1.5468277454741615e-16
+ - 2.3594292997309423e-16
+ - 2.1051746589474552e-16
+ - -3.5899638584801396e-16
+ - -5.215373762146839e-17
+ - 2.8016607347171047e-16
+ - -8.86685917868561e-17
+ - -2.248276904919129e-16
+ - -1.5676726969104979e-15
+ - -2.895132143935597e-16
+ - -4.491332232221517e-17
+ - -5.684385169464406e-16
+ - 1.323488980084844e-18
+ - 1.256487350468049e-16
+ - 4.446922973085077e-16
+ - -6.495022169766372e-16
+ - -1.0397660299791557e-16
+ - 1.078643518769148e-16
+ - -7.279189390466644e-18
+ - -7.725866921245277e-17
+ - 2.1117921038478794e-16
+ - 4.918829512546579e-16
+ - 1.2995007423208065e-16
+ - 8.660581013430199e-17
+ - 2.4104043049795226e-16
+ - 4.835697860985e-16
+ - -1.5997673046775553e-16
+ - 8.685396431806789e-17
+ - 2.985294830703877e-16
+ - -1.6167245072348923e-16
+ - 1.1804901316897396e-16
+ - -8.768114493062093e-18
+ - -1.1911400820763597e-17
+ - 2.5278639519620526e-16
+ - 8.610950176677017e-17
+ - -4.865269567883771e-16
+ - -2.2234614865425384e-16
+ - -1.25400580863039e-16
+ - 2.5319998550248177e-16
+ - -5.117559654712444e-16
+ - 4.31478087022973e-16
+ - -3.3484271196146555e-16
+ - 3.626359805432473e-16
+ - -3.3314699170573185e-16
+ - 9.380228146351333e-17
+ - -9.14448167177372e-17
+ - -9.520848850485347e-17
+ - 5.657915389862709e-17
+ - -7.734138727370808e-17
+ - 4.3658592730548796e-16
+ - 5.6790084954828115e-16
+- - -4.247406441748432
+ - -3.3594406694126726
+ - 2.7423817190655235
+ - -3.2089879734032443
+ - 2.6369445043553883
+ - -1.113610167935194
+ - -0.7076619545727948
+ - 2.3021698784050777
+ - -2.1288693081137153
+ - -3.8561052298033425
+ - 2.627264021354758
+ - 1.6172046175410268
+ - -0.9839321805467054
+ - -0.8435982621746272
+ - 2.453452812607595
+ - -2.0608087005514264
+ - -3.4767507955746866
+ - 2.1085884129787784
+ - 1.4647056138925159
+ - -0.7672267889596864
+ - -1.058620076091895
+ - 2.539566080303299
+ - -3.206593349310013
+ - 2.7736574615344733
+ - -1.4416576297121737
+ - -0.14583916311269746
+ - 0.3534758604499547
+ - 3.421090492847105
+ - 1.7904373090129513
+ - -3.21058807436174
+ - 2.6535992533781836
+ - -1.2370240156636285
+ - -0.2795314799521054
+ - 0.10110658477248384
+ - 3.8095479465825908
+ - 1.8791300067925933
+ - -3.2039503501262554
+ - 2.572122190706831
+ - -1.1091346627111751
+ - -0.8153980913417199
+ - 2.376224674413494
+ - -3.169477525180125
+ - 5.632777348856713
+ - 5.599592210344332
+ - 2.686898319971558
+ - 2.786634548551599
+ - 5.222465833056538
+ - 5.21871996130068
+ - -3.20057010406514
+ - 2.8034733273006998
+ - -1.5000613098322493
+ - -0.3936373097644914
+ - 2.0655728290983872
+ - -3.0707104610162674
+ - 2.042863997338493
+ - 3.9807456457626245
+ - -0.8105301713494253
+ - -0.746125181799723
+ - -0.5294526097175392
+ - 2.170791258729248
+ - -3.128404272389074
+ - 1.9872535335963384
+ - 3.6356636197935654
+ - -0.4889618233739421
+ - -0.6162147745944889
+ - -0.7499841148428681
+ - 2.3309698765939975
+ - -3.155748822697337
+ - 2.918066415489901
+ - -1.7198382322312955
+ - -0.037094207256370006
+ - 1.0861699580430229
+ - 1.3662354850600014
+ - -3.6554977959647412
+ - -2.0836001850996455
+ - 2.8586071995035844
+ - -1.5258331700493866
+ - -0.26192733663366996
+ - 1.2336555560963076
+ - 1.8112285546227387
+ - -4.129978962323122
+ - -2.199163975891499
+ - 2.749371048081205
+ - -1.401236917265186
+ - -0.39836792769223206
+ - 2.1491503883812366
+ - -3.10021543449413
+ - 3.048385527581174
+ - -4.003299068459099
+ - -5.0020781737618485
+ - -5.679833684723784
+ - -4.6143186702272105
+ - 3.196653065911414
+ - -2.528482362660247
+ - 1.0433467668424576
+ - 0.8814976422566104
+ - -2.4205702853448634
+ - 3.1776436449276755
+ - -2.0472713765151
+ - -4.088794292090442
+ - 0.18270633307381579
+ - 0.42076337519534873
+ - 1.012651573060919
+ - -2.51020909031053
+ - 3.200997038299379
+ - -1.8643224583172144
+ - -3.5095247957273954
+ - -0.08034108720044304
+ - 0.30020008611304255
+ - 1.2235840913152023
+ - -2.64400156346249
+ - 3.20721879616954
+ - -2.6767884021543917
+ - 1.2802202546005224
+ - 0.5329706258886044
+ - -1.3489841139987697
+ - -1.877573290212001
+ - 3.5537852626332755
+ - 2.079314741886356
+ - -2.5989293452881492
+ - 1.0708844957857144
+ - 0.7534968728293369
+ - -1.4562693410678504
+ - -2.2782767906186705
+ - 3.781449810765515
+ - 2.0711135730838164
+ - -2.460562081930995
+ - 0.9378766841540903
+ - 0.8861009081529414
+ - -2.4918169842037825
+ - 3.1907141061793296
+ - -2.857024558138943
+ - 3.85899248921167
+ - 3.9258380491484055
+ - 3.1397964290800378
+ - 3.1167265814179563
+ - 2.888883323376994
+ - 2.7903129766030568
+ - -2.451292079165122
+ - 3.185712897725546
+ - -2.8886205057141288
+ - 1.566088658097003
+ - 0.21474304667475438
+ - -1.928452986253342
+ - 1.9381809892333415
+ - 3.3929057640099822
+ - -2.967179950150232
+ - -1.7640453185029243
+ - 1.4449124885923128
+ - 0.35431424735491823
+ - -2.10373757287495
+ - 1.9828831002629632
+ - 3.249916564979976
+ - -2.549359717829305
+ - -1.677646578264803
+ - 1.2402942911080217
+ - 0.5771242858797495
+ - -2.2053487129387626
+ - 3.144016212505326
+ - -2.9905356077554064
+ - 1.8681578249492463
+ - -0.1783103891176166
+ - -0.9154243246939572
+ - -3.171591532476889
+ - -1.6024216732591023
+ - 3.1691848369423474
+ - -2.901398233416559
+ - 1.6805207149484098
+ - -0.08208981739028681
+ - -0.7771163297345488
+ - -3.7700025465880236
+ - -1.8113476495761467
+ - 3.1974394742377017
+ - -2.838548171620824
+ - 1.5619003755852958
+ - 0.3253363678940875
+ - -2.013815015993968
+ - 3.0523190612803823
+ - -4.636751430116726
+ - -5.664227319266178
+ - 3.599890025830776e-16
+ - 1.0296744265060088e-15
+ - 2.8537731133079455e-16
+ - 3.6602742105471475e-17
+ - -1.973859736704662e-17
+ - 1.0099875279272467e-16
+ - -2.8239946112560365e-16
+ - -4.0895809484621683e-16
+ - -1.1580528575742387e-16
+ - -5.765448869494603e-17
+ - -1.8280691537421912e-17
+ - 7.606752913037642e-16
+ - -1.432676820941844e-16
+ - 1.5670936704817107e-16
+ - 3.7553999809907456e-17
+ - -2.6436692377194764e-16
+ - -1.3110812708965489e-16
+ - -1.4450845301301393e-16
+ - -1.7023377006341307e-16
+ - 4.769523411980758e-16
+ - -9.016268676828e-17
+ - -1.889280519071115e-16
+ - -9.413315370853454e-17
+ - -5.67445900211377e-17
+ - 3.2921788379610497e-16
+ - 7.783769564123989e-17
+ - -4.95067596612987e-17
+ - -1.493061005658215e-17
+ - 1.4608009617686469e-16
+ - 1.5054687148465104e-16
+ - -3.658619849322041e-16
+ - 1.0397660299791557e-16
+ - 8.725101101209335e-16
+ - 2.9447629806887785e-17
+ - -2.639119744350435e-16
+ - -1.742042370036676e-16
+ - -1.8073896384283652e-16
+ - 2.2302857265961006e-17
+ - -3.052296460320672e-17
+ - 5.493306447964657e-16
+ - -1.9587636905255693e-16
+ - 1.4248186051225902e-16
+ - 1.2060293331023143e-16
+ - -4.450231695535288e-17
+ - -7.113753267956038e-17
+ - 1.290401755582723e-17
+ - -1.3205938479409087e-16
+ - 1.0472106554921329e-16
+ - 2.6138907356675675e-16
+ - -1.8363409598677214e-17
+ - -2.01087606911641e-16
+ - 2.5932112203537415e-17
+ - 1.5468277454741618e-17
+ - 1.9571093293004632e-16
+ - -3.2425480012078685e-17
+ - -6.305184219185453e-17
+ - 2.1481880508002126e-16
+ - -3.4344539033201704e-16
+ - 2.360773468226341e-16
+ - 2.9745414827406875e-16
+ - 2.0828407824085234e-16
+ - 8.271806125530276e-19
+ - 2.0646428089323568e-16
+ - -5.823351512373315e-17
+ - -2.3152785345359245e-16
+ - -2.9075398531238923e-16
+ - 1.9546277874628041e-16
+ - 5.045801736573468e-18
+ - -2.812414082680294e-17
+ - -1.1150394657214813e-16
+ - 4.615667818045894e-17
+ - 1.6444350577554188e-16
+ - 6.700162961679524e-17
+ - -1.5402103005737373e-16
+ - -9.760731228125725e-18
+ - -1.8634311249288328e-16
+ - 1.2482155443425188e-16
+ - 8.238718901028154e-17
+ - -9.694556779121483e-17
+ - -3.9456515218779414e-17
+ - -1.163015941249557e-16
+ - -2.102693117109796e-16
+ - 7.097209655704977e-17
+ - -3.1774075279693176e-17
+ - -1.0168117679808091e-16
+ - -5.635167923017501e-17
+ - -2.1370211125307468e-16
+ - -1.1613615800244509e-16
+ - 2.4352197233561135e-16
+ - 2.666830294870961e-16
+ - -1.8967251445840922e-16
+ - 1.2225729453533747e-15
+ - 3.930762270851987e-16
+ - 8.486873084794063e-17
+ - 5.485241436992264e-17
+ - 1.4558378780933287e-17
+ - -4.0397433165558484e-16
+ - 2.3822801641527194e-17
+ - -2.6205081805679917e-16
+ - -9.529120656610878e-17
+ - 3.1846453583291565e-17
+ - -1.4409486270673742e-16
+ - 1.6212740006039342e-17
+ - -2.7594745234769003e-16
+ - -1.936843404292914e-16
+ - -2.9447629806887785e-17
+ - 2.4236391947803708e-17
+ - -9.504305238234287e-17
+ - -1.7585859822877366e-16
+ - 2.0596797252570386e-17
+ - -8.840751290601905e-17
+ - 1.6328545291796764e-16
+ - 1.3605053124965923e-16
+ - -6.112864726766875e-17
+ - 6.203854594147708e-17
+ - 2.1142736456855385e-16
+ - 1.5426918424113966e-17
+ - -1.1805935292663087e-16
+ - 4.9010451293766884e-17
+ - -3.3087224502121103e-18
+ - -5.790264287871194e-17
+ - 5.6248281653605874e-18
+ - -2.2879815743216745e-16
+ - -8.735027268559971e-17
+ - 2.0605069058695917e-16
+ - 1.4690727678941772e-16
+ - 2.21849840286722e-16
+ - -3.341809674714232e-17
+ - -1.9273308272485542e-16
+ - -1.3507859402990942e-16
+ - -5.98051582875839e-17
+ - 4.475047113911879e-17
+ - -5.714163671516315e-16
+ - 1.0381116687540496e-16
+ - -8.615086079739782e-17
+ - -9.055559755924269e-17
+ - -9.950982769012922e-17
+ - -9.429858983104515e-16
+ - -2.0844951436336295e-16
+ - 5.4387125275361563e-17
+ - -3.3426368553267843e-16
+ - 1.6154837363160628e-16
+ - 9.851721095506558e-17
+ - -3.838118042246048e-17
+ - -3.5634940788784427e-16
+ - -1.0372844881414966e-16
+ - 1.7205356741102973e-16
+ - 1.227536029028693e-16
+ - -1.493888186270768e-16
+ - 3.58169205235461e-17
+ - 1.8768728098828195e-16
+ - 2.56136476677045e-16
+ - 4.3054750883385084e-17
+ - 7.676236084492096e-17
+ - 8.271806125530276e-20
+ - -2.2416594600187047e-17
+ - 4.642551187953867e-17
+ - 2.3185872569861366e-16
+ - -3.5337155768265337e-16
+ - -9.843449289381028e-18
+ - -1.7205356741102976e-17
+ - -1.4558378780933287e-17
+ - 6.402377941160434e-17
+ - -2.388484018746867e-17
+ - -1.1580528575742387e-16
+ - -8.362795992911109e-17
+ - -1.318525896409526e-16
+ - 2.4087499437544166e-16
+ - -3.277289586935095e-16
+ - 3.148249411376823e-16
+ - -2.4931223662348254e-16
+ - 3.725621478938836e-16
+ - -2.036518668105554e-16
+ - 9.859992901632089e-17
+ - -6.11700062982964e-17
+ - -1.0174321534402239e-17
+ - -1.852884572118782e-17
+ - 7.494256349730431e-17
+ - -3.329401965525936e-16
+ - -2.1241998130361748e-16
+- - -5.001271287793617
+ - -4.002424474182913
+ - 3.048776787111662
+ - -3.1030227423362913
+ - 2.153462148109935
+ - -0.4027515709215632
+ - -1.398244782455758
+ - 2.7487416601703933
+ - -2.200309403426249
+ - -4.131316473222137
+ - 1.8171851247971056
+ - 1.2367245875202588
+ - -0.2662536403751527
+ - -1.5229937860564253
+ - 2.8582959765406426
+ - -2.084936755164943
+ - -3.657046839813223
+ - 1.3714560027529634
+ - 1.0891063459089323
+ - -0.04130881813194265
+ - -1.7172560028570654
+ - 2.917949958103768
+ - -3.1582630065483195
+ - 2.3351508732748685
+ - -0.7544799951470061
+ - -0.6139502649581914
+ - -0.4844733470728153
+ - 3.636993107794627
+ - 1.987523883214407
+ - -3.1310789200980955
+ - 2.1750895356434103
+ - -0.5338844728719713
+ - -0.7439738204998559
+ - -0.8058709592371975
+ - 3.9825670216561564
+ - 2.0433632979033147
+ - -3.0736372721786225
+ - 2.0699331570914983
+ - -0.3980191305426619
+ - -1.4971897903089584
+ - 2.802996570067535
+ - -3.2026456974571564
+ - 5.224770385461203
+ - 5.228307143639771
+ - 2.7862660568382247
+ - 2.686245084883339
+ - 5.592638000155875
+ - 5.625641064479087
+ - -3.166535187390419
+ - 2.3756604793194684
+ - -0.8173915047493476
+ - -1.1051527646267525
+ - 2.567573323443168
+ - -3.200306807938625
+ - 1.8779761478921304
+ - 3.8065551756275684
+ - 0.09730323958149856
+ - -0.28115731491992935
+ - -1.2329506299759787
+ - 2.6490679512692403
+ - -3.2071455044723414
+ - 1.7895037789277521
+ - 3.4186501391581787
+ - 0.34970961460512917
+ - -0.14760978387808527
+ - -1.4374508142774112
+ - 2.769172901926336
+ - -3.2032819500176966
+ - 2.5386456665430597
+ - -1.0602827107299522
+ - -0.7635164974374338
+ - 1.4617490754616786
+ - 2.103529980123248
+ - -3.4741108930867175
+ - -2.0589060713943237
+ - 2.452724109328446
+ - -0.8455544791502639
+ - -0.9800451307021443
+ - 1.6140800359328336
+ - 2.6214039587534117
+ - -3.853484622623206
+ - -2.1270938661682393
+ - 2.3017585797486606
+ - -0.7097958395985682
+ - -1.1096250100208283
+ - 2.6324089373865953
+ - -3.205438905338662
+ - 2.740970269160566
+ - -3.358805024479791
+ - -4.246361317594402
+ - -5.658805700133949
+ - -4.632170522140581
+ - 3.0499503929083764
+ - -2.0139569725686117
+ - 0.3279396731070469
+ - 1.5576227641562488
+ - -2.8341011662747673
+ - 3.194263241453591
+ - -1.8105528524902395
+ - -3.7676480283508873
+ - -0.7724629626642647
+ - -0.07996656983636524
+ - 1.6761793205311204
+ - -2.8969992520307586
+ - 3.1662456685620195
+ - -1.6019347637147343
+ - -3.1698943526437087
+ - -0.9111441194547766
+ - -0.17619293890575083
+ - 1.8637295219318863
+ - -2.9862317283874225
+ - 3.1412289616132942
+ - -2.205129757632001
+ - 0.5794233298120277
+ - 1.236218821769455
+ - -1.6746865630130134
+ - -2.5441613481075915
+ - 3.2480050501479747
+ - 1.9813552290293859
+ - -2.1037135680661976
+ - 0.3568836648354979
+ - 1.44070356985495
+ - -1.7610865095705082
+ - -2.961507380677032
+ - 3.3912000758377894
+ - 1.9368447693495083
+ - -1.9287487164347112
+ - 0.2174741481086165
+ - 1.5618088507244536
+ - -2.884210996532977
+ - 3.182648793789537
+ - -2.450570779424022
+ - 2.7919743716836276
+ - 2.8904368483965843
+ - 3.1158086234200466
+ - 3.1387713306799907
+ - 3.922151884052348
+ - 3.8552492668019354
+ - -2.8567108080127532
+ - 3.1929323973698938
+ - -2.495848156733794
+ - 0.8906256111322585
+ - 0.9343888389810837
+ - -2.4592421393895605
+ - 2.071809465657399
+ - 3.7818836347019236
+ - -2.283833056844341
+ - -1.4590604713725985
+ - 0.7579937179446535
+ - 1.0675278589108264
+ - -2.597918594093745
+ - 2.0802258229713333
+ - 3.5545446343524576
+ - -1.8827490855137676
+ - -1.351819481007124
+ - 0.5374034272215431
+ - 1.2770882051801533
+ - -2.6759687549153464
+ - 3.209114898049405
+ - -2.6478515554076547
+ - 1.228143256241996
+ - 0.2976664487075698
+ - -0.0851880300105149
+ - -3.510057534250314
+ - -1.8641328077318091
+ - 3.2030688204779283
+ - -2.5142209386420538
+ - 1.0171959061129447
+ - 0.4181749729236442
+ - 0.1773289882740954
+ - -4.089844928355632
+ - -2.0473596129899168
+ - 3.179995003165659
+ - -2.424672679213608
+ - 0.8860216415664217
+ - 1.0399624660219
+ - -2.5273105158008904
+ - 3.198076263152335
+ - -4.617697311146519
+ - -5.6837449527024155
+ - 5.525566491854225e-16
+ - 1.265255464961111e-15
+ - 3.396403595142731e-16
+ - 5.932952943536591e-17
+ - -4.750084667585761e-17
+ - 6.317591928373749e-17
+ - -3.6462121401337455e-16
+ - -4.255017070972774e-16
+ - -1.8413040435430394e-16
+ - -1.4227506535912076e-17
+ - 1.1580528575742386e-17
+ - 8.473638194993215e-16
+ - -6.931773533194372e-17
+ - 1.9844062895147131e-16
+ - 2.2912902967718864e-17
+ - -3.186299719554262e-16
+ - -1.565025718950328e-16
+ - -1.8123527221036834e-16
+ - -2.0265925007549176e-16
+ - 4.643791958872697e-16
+ - -6.948317145445432e-17
+ - -2.1357803416119172e-16
+ - -7.109617364893273e-17
+ - -4.987899093694756e-17
+ - 3.6106433737939653e-16
+ - -1.8363409598677214e-17
+ - -6.27830084927748e-17
+ - -2.192028623265523e-17
+ - 2.041481751780872e-16
+ - 2.043136113005978e-16
+ - -3.092001129723217e-16
+ - 1.0306670432410724e-16
+ - 9.800435897528272e-16
+ - 6.410649747285964e-17
+ - -2.602413604668394e-16
+ - -3.030789764394293e-16
+ - -1.828896334354744e-16
+ - 2.313520775734249e-17
+ - -9.578751493364059e-17
+ - 6.264652369170354e-16
+ - -1.8115255414911304e-16
+ - 2.1217182711985157e-16
+ - 1.9140959374477058e-16
+ - -2.5849394142282112e-17
+ - -7.510799961981491e-17
+ - -1.5054687148465104e-17
+ - -1.213060368309015e-16
+ - -3.3914405114674135e-17
+ - 2.416194569267394e-16
+ - -3.970466940254533e-18
+ - -1.5195307852599116e-16
+ - 5.81094380318502e-17
+ - 1.9025154088719633e-17
+ - 1.3011551035459125e-16
+ - -1.197757526976784e-16
+ - -7.688643793680391e-17
+ - 1.6866212689956232e-16
+ - -3.4907021849737763e-16
+ - 2.27309232329572e-16
+ - 2.581217101471723e-16
+ - 2.0050858048285388e-16
+ - 6.534726839168918e-18
+ - 2.1204775002796862e-16
+ - -5.244325083586195e-17
+ - -2.572531705039916e-16
+ - -2.8612177388209227e-16
+ - 1.25400580863039e-16
+ - 2.192028623265523e-17
+ - -5.856438736875436e-17
+ - -1.1770780116629584e-16
+ - 4.648755042548015e-17
+ - 1.8446127659932515e-16
+ - 7.924390268258004e-17
+ - -1.5848780536516008e-16
+ - -1.0075059860895876e-16
+ - -2.423639194780371e-16
+ - 1.2453204121985832e-16
+ - 4.6983858793011966e-17
+ - -1.1878313596261477e-16
+ - -7.204743135336871e-17
+ - -9.58702329948959e-17
+ - -1.4608009617686469e-16
+ - 5.724089838866952e-17
+ - -1.0960143116327617e-18
+ - -1.0608591355992579e-16
+ - -6.904890163286399e-17
+ - -2.356844360316714e-16
+ - -1.4574922393184348e-16
+ - 9.727644003623604e-17
+ - 2.33595804984975e-16
+ - -2.5535065509511964e-16
+ - 1.274023579454173e-15
+ - 4.0680742525357896e-16
+ - 7.593518023236793e-17
+ - 3.294246789492433e-17
+ - -3.805030817743927e-18
+ - -4.058348417989756e-16
+ - -5.161607022330892e-17
+ - -1.9256764660234482e-16
+ - -9.644925942368301e-17
+ - 4.6032601088575984e-17
+ - -5.161607022330892e-17
+ - 4.8472783895607416e-17
+ - -3.034098486844505e-16
+ - -2.5729452953461926e-16
+ - -9.198248411589667e-17
+ - 2.4836097891904653e-17
+ - -7.15511229858369e-17
+ - -2.0050858048285388e-16
+ - 4.293067379150213e-17
+ - -7.468923943470994e-17
+ - 1.7470054537119942e-16
+ - 1.5814659336248195e-16
+ - -3.5982356646056704e-17
+ - 4.0366413892587744e-17
+ - 1.9422200782745087e-16
+ - -3.871205266748169e-17
+ - -1.268481469350068e-16
+ - 6.071505696139223e-17
+ - 5.09543257332665e-17
+ - -3.2094607767057474e-17
+ - -3.30872245021211e-19
+ - -3.0043199847925965e-16
+ - -1.0323214044661784e-16
+ - 1.5253210495477828e-16
+ - 9.678013166870423e-17
+ - 1.9438744394996148e-16
+ - -4.632211430296955e-18
+ - -2.302870825347629e-16
+ - -1.344995676011223e-16
+ - -1.134891800422754e-16
+ - 2.067951531382569e-17
+ - -6.107901643091555e-16
+ - 1.3536810724430298e-16
+ - -1.5618203940766851e-16
+ - -9.2416753937487e-17
+ - -7.858215819253762e-17
+ - -8.371067799036639e-16
+ - -1.9901965538025843e-16
+ - 7.394994676224067e-17
+ - -2.9761958439657936e-16
+ - 1.9256764660234482e-16
+ - 9.818633871004437e-17
+ - -1.2680678790437914e-16
+ - -3.03823438990727e-16
+ - -1.0778163381565949e-16
+ - 1.9107872149974937e-16
+ - 1.493888186270768e-16
+ - -1.6717320179696687e-16
+ - 6.038418471637101e-18
+ - 1.341686953561011e-16
+ - 2.8401246332008205e-16
+ - 3.4927701365051594e-17
+ - 4.79764755280756e-17
+ - -8.99972506457694e-17
+ - 2.6056189295420368e-18
+ - 4.0655927106981304e-17
+ - 2.238350737568493e-16
+ - -3.935725354527305e-16
+ - -3.226004388956808e-17
+ - -2.039000209943213e-17
+ - -1.5137405209720406e-17
+ - 3.0357528480696116e-17
+ - -4.448163744003906e-17
+ - -5.078888961075589e-17
+ - -5.699274420490361e-17
+ - -1.3383782311107988e-16
+ - 2.4004781376288863e-16
+ - -2.9397998970134604e-16
+ - 2.974955073046964e-16
+ - -2.4021324988539924e-16
+ - 3.7917959279430784e-16
+ - -1.8727369068200544e-16
+ - 9.644925942368301e-17
+ - -5.624828165360588e-17
+ - 5.790264287871193e-18
+ - -3.0936554909483235e-17
+ - 1.0612727259055344e-16
+ - -4.815845526283727e-16
+ - -3.596581303380564e-16
+- - -9.51283527380354
+ - -7.826760053097222
+ - 4.973717596124127
+ - -2.8108312084011975
+ - -0.2582998269402428
+ - 3.3915280306033577
+ - -5.245085667560537
+ - 5.402067846157611
+ - -2.7829599711494657
+ - -5.985487881387864
+ - -2.384658512361798
+ - -0.7023764204732884
+ - 3.5770394257483895
+ - -5.320760346266914
+ - 5.2966105262381005
+ - -2.4022799692557406
+ - -4.9571544568845045
+ - -2.477363216071807
+ - -0.8369579573629445
+ - 3.8665934872741836
+ - -5.420613551000122
+ - 5.21904828140108
+ - -3.1816006897265074
+ - 0.18206566640036045
+ - 2.8805921534699466
+ - -3.1915328048204423
+ - -5.043297646131576
+ - 5.127165170144773
+ - 3.2281028278797064
+ - -2.9839669516722243
+ - -0.20793410994503256
+ - 3.207018803124252
+ - -3.3134696769623115
+ - -5.7655321332916465
+ - 5.272710288039839
+ - 3.1119292134277274
+ - -2.6476070085565313
+ - -0.4501348181050084
+ - 3.398070194177537
+ - -5.30554968590197
+ - 5.354505652381991
+ - -3.6691264906051644
+ - 3.4956616457426257
+ - 3.6973923398351127
+ - 5.223943160794663
+ - 5.314863565773581
+ - 8.089805161417297
+ - 8.323795419269553
+ - -3.2676471792685513
+ - 0.28383821823532046
+ - 2.7877377500273406
+ - -5.038455268635062
+ - 5.50329977752943
+ - -4.186181334446786
+ - 1.1582107214760198
+ - 3.20994298798691
+ - 4.997912294663545
+ - 2.1990635525050184
+ - -5.134533613576701
+ - 5.464280738902156
+ - -3.919601300348996
+ - 0.8847126074109734
+ - 2.556433004414423
+ - 4.900317293156548
+ - 2.364208826777495
+ - -5.271023018816977
+ - 5.379239737719194
+ - -3.7472254882744327
+ - 0.7222285419758476
+ - 2.398471559752952
+ - -4.746448965197433
+ - 3.6168960929178153
+ - 6.265446015015465
+ - -2.8088508990704786
+ - -2.110831872817457
+ - 0.4859945696967986
+ - 2.7441597860084284
+ - -4.937683620508668
+ - 3.8090230730190684
+ - 7.22256962611761
+ - -2.7098238769608685
+ - -1.9298603893720025
+ - 0.0966059625486406
+ - 2.95226476470472
+ - -5.04193711730356
+ - 5.472969684546456
+ - -4.060441083954582
+ - 1.3307339170503538
+ - -0.18772901904779268
+ - -0.5557062648522126
+ - -6.053933037443252
+ - -5.144560223869927
+ - 2.533476391746589
+ - 0.5776149953298795
+ - -3.497571323941394
+ - 5.3408780763817925
+ - -5.31705571756179
+ - 3.570818731201314
+ - -0.6976694492419466
+ - -2.375667772768711
+ - -5.988804018391846
+ - -2.785338174806186
+ - 5.4022057654947995
+ - -5.241512565221977
+ - 3.2634709816534735
+ - -0.3319887695852705
+ - -1.6246044781003082
+ - -5.469797059922307
+ - -2.759070705554171
+ - 5.4806113681828865
+ - -5.0986506103102
+ - 3.0678778367985804
+ - 0.1382778547771495
+ - -3.1447651589175054
+ - 5.136749243629858
+ - -3.580204988374303
+ - -6.364665476078369
+ - 1.8921355223973602
+ - 1.6315220746277392
+ - 0.3757438944787546
+ - -3.4584490704446766
+ - 5.273166990098054
+ - -3.5618273842017665
+ - -6.909187930064224
+ - 1.593031919301958
+ - 1.3873595532864893
+ - 0.7636354258953868
+ - -3.644880001253933
+ - 5.343192325551816
+ - -5.2577716470586955
+ - 3.425145910771332
+ - -0.48057267813806814
+ - -2.7068042633647025
+ - -2.4291271009992044
+ - 3.266501749226428
+ - 3.5395743636505435
+ - 9.842327200136102
+ - 9.940055239114264
+ - -5.297984398067871
+ - 3.518715805538745
+ - -0.6036406047373063
+ - -2.6690899692290375
+ - 4.8961587602972445
+ - -5.5403630464866485
+ - 2.9780169824335383
+ - 6.217691183552491
+ - 1.1931866354402965
+ - 0.053257634705092594
+ - -2.875367886737136
+ - 5.006600319451305
+ - -5.494236224107208
+ - 2.7916634997769574
+ - 5.515406522122619
+ - 1.54012400569648
+ - 0.2824426925067384
+ - -3.201843664515328
+ - 5.16359335221821
+ - -5.452340584408754
+ - 3.8482346309785345
+ - -1.0392024861536864
+ - -2.1102323429972616
+ - 2.889215837122
+ - 4.380891765736772
+ - -5.649258243075488
+ - -3.4418551011398
+ - 3.673444722083038
+ - -0.6538131983849227
+ - -2.4657404804943184
+ - 3.151427706592822
+ - 5.336296801124929
+ - -6.180785361896648
+ - -3.503064459069461
+ - 3.3717140511404993
+ - -0.41235572052293856
+ - -2.6763475409818946
+ - 4.984169412214324
+ - -5.52136029051443
+ - 4.270833219607445
+ - -4.929918544928497
+ - -6.299593405260407
+ - 1.7258296300306367e-15
+ - 2.6476397046597306e-15
+ - 6.547961728969766e-16
+ - 1.88571330267948e-16
+ - -2.0150119721791752e-16
+ - -1.3565762045869654e-16
+ - -8.39588321741323e-16
+ - -5.373365259144468e-16
+ - -5.489170544901892e-16
+ - 2.1192367293608567e-16
+ - 1.6915843526709413e-16
+ - 1.422088909101165e-15
+ - 3.206152054255535e-16
+ - 4.3964649557193416e-16
+ - -5.078888961075589e-17
+ - -6.078123141039646e-16
+ - -2.9843642525147547e-16
+ - -3.995282358631123e-16
+ - -3.692534254436715e-16
+ - 4.496553809838258e-16
+ - 2.9116757561866574e-17
+ - -3.4973196298742005e-16
+ - 4.6322114302969544e-17
+ - -1.5468277454741618e-17
+ - 5.637856260008298e-16
+ - -5.338520275840671e-16
+ - -1.344995676011223e-16
+ - -6.402377941160434e-17
+ - 5.426304818347862e-16
+ - 5.464355126525301e-16
+ - -2.9778502051908996e-17
+ - 9.727644003623604e-17
+ - 1.6295458067294643e-15
+ - 2.5857665948407645e-16
+ - -2.6155450968926735e-16
+ - -1.0005576689441423e-15
+ - -2.1936829844906291e-16
+ - 2.953034786814309e-17
+ - -4.73478182625353e-16
+ - 1.083275730199445e-15
+ - -1.3929721515392986e-16
+ - 6.144297590043889e-16
+ - 5.859747459325648e-16
+ - 7.990564717262246e-17
+ - -1.0538281003925571e-16
+ - -1.768512149638373e-16
+ - -8.39588321741323e-17
+ - -7.711804850831876e-16
+ - 1.5385559393486312e-16
+ - 8.007108329513307e-17
+ - 8.12291361527073e-17
+ - 2.248276904919129e-16
+ - 2.874452628621771e-17
+ - -1.8231060700668727e-16
+ - -5.385772968332763e-16
+ - -1.5840508730390478e-16
+ - -6.891965466215257e-17
+ - -4.082963503561744e-16
+ - 1.977788844614289e-16
+ - 6.948317145445432e-17
+ - 2.1796209140772277e-16
+ - 4.4543675985980534e-17
+ - 2.718942673461802e-16
+ - -3.9208361035013506e-17
+ - -4.1838795382932135e-16
+ - -2.773536593890302e-16
+ - -2.4095771243669696e-16
+ - 1.239530147910712e-16
+ - -2.4054412213042045e-16
+ - -1.5782606087511766e-16
+ - 4.0697286137608955e-17
+ - 3.039061570519823e-16
+ - 1.4574922393184348e-16
+ - -1.9455288007247208e-16
+ - -5.900486104493885e-16
+ - -5.666807581447654e-16
+ - 1.2308447514789052e-16
+ - -1.5269754107728888e-16
+ - -2.1639044824387202e-16
+ - -2.455072058057386e-16
+ - 1.4248186051225902e-17
+ - 1.708955145534555e-16
+ - -2.5642598989143855e-17
+ - 1.6386447934675476e-16
+ - -1.435158362779503e-16
+ - -1.4616281423812e-16
+ - -3.6792993646358666e-16
+ - -2.9232562847624e-16
+ - -6.452008777913615e-16
+ - 4.9630836753181654e-17
+ - -6.36474122328927e-16
+ - 1.662798467354096e-15
+ - 5.178150634581953e-16
+ - 1.7205356741102976e-17
+ - -8.164272645898382e-17
+ - -8.883919778819516e-17
+ - -4.506479977188895e-16
+ - -4.516406144539531e-16
+ - 1.7933275680149638e-16
+ - -1.4756902127946014e-16
+ - 1.2515242667927309e-16
+ - 4.331531277633929e-16
+ - 2.0894582273089477e-16
+ - -4.612359095595682e-16
+ - -6.263411598251525e-16
+ - -4.258532588576124e-16
+ - 3.1515581338270354e-17
+ - 4.0697286137608955e-17
+ - -3.189608442004474e-16
+ - 1.6419535159177597e-16
+ - -7.031035206700735e-18
+ - 2.746239633676052e-16
+ - 2.929046549050271e-16
+ - 1.0517601488611746e-16
+ - -7.312276614968765e-17
+ - 1.2738581433316626e-16
+ - -3.361662009415504e-16
+ - -1.8793543517204786e-16
+ - 1.3367238698856927e-16
+ - 3.6213967217571547e-16
+ - 1.0240495983406481e-16
+ - -4.764560328305439e-17
+ - -7.2676088618909e-16
+ - -1.5716431638507523e-16
+ - -1.1675654346185986e-16
+ - -1.7966362904651759e-16
+ - 7.113753267956038e-17
+ - 1.5410374811862903e-16
+ - -4.478355836362092e-16
+ - -1.4591466005435408e-16
+ - -4.3377351322280766e-16
+ - -1.318525896409526e-16
+ - -9.052664623780335e-16
+ - 3.1118534644244896e-16
+ - -5.439003333220258e-16
+ - -1.0720260738687237e-16
+ - 3.1556940368898006e-17
+ - -3.513863242125261e-16
+ - -1.5226327125569854e-16
+ - 1.8487486690560166e-16
+ - -1.1514354126738145e-16
+ - 3.8331549585707298e-16
+ - 8.321436962283457e-17
+ - -6.199718691084941e-16
+ - -8.007108329513307e-17
+ - -1.3052910066086777e-16
+ - 2.996048178667066e-16
+ - 3.06553135012152e-16
+ - -2.7114980479488247e-16
+ - -1.743696731261782e-16
+ - -1.402071138277382e-16
+ - 4.613186276208235e-16
+ - 1.4475660719677982e-18
+ - -1.1009773953080797e-16
+ - -5.793573010321406e-16
+ - 1.356989794893242e-16
+ - 1.0257039595657542e-17
+ - 2.0952484915968189e-16
+ - -6.493367808541266e-16
+ - -1.6576699475562672e-16
+ - -3.101927297073854e-17
+ - -1.2738581433316625e-17
+ - -1.435158362779503e-16
+ - -1.6254099036666991e-16
+ - 3.0539508215457777e-16
+ - 7.386722870098537e-17
+ - -1.4856163801452377e-16
+ - 2.623816903018204e-16
+ - -1.5054687148465104e-16
+ - 2.3247911115802843e-16
+ - -1.8661194619196302e-16
+ - 4.800956275257773e-16
+ - -9.89308012613421e-17
+ - 1.3532674821367533e-16
+ - -3.3335378685887015e-17
+ - 9.396771758602393e-17
+ - -1.1200025493967995e-16
+ - 2.726387298974779e-16
+ - -1.318525896409526e-15
+ - -1.1941179322815508e-15
+- - -7.258344303841989
+ - -5.991529279754994
+ - 3.7190671612228896
+ - -1.8603043721594967
+ - -0.5976566733901895
+ - 2.9702262500055334
+ - -4.239868101647584
+ - 4.137800746185177
+ - -1.9944259687550427
+ - -4.394708935616174
+ - -2.3568505073039594
+ - -0.8169326359979752
+ - 3.1049544821741106
+ - -4.282746084053879
+ - 4.028470192446632
+ - -1.6891315355149508
+ - -3.598468296558629
+ - -2.358118661626005
+ - -0.906169555316101
+ - 3.313164001928966
+ - -4.334135982649676
+ - 3.951712819563574
+ - -2.167641716897702
+ - -0.25293518945885735
+ - 2.594924340375103
+ - -2.6213314611616223
+ - -4.227239204491561
+ - 3.747335961465992
+ - 2.4122577598660517
+ - -2.003421968452231
+ - -0.5583781716601108
+ - 2.8354213123447862
+ - -2.7028349592930914
+ - -4.788503744607999
+ - 3.8113124981999134
+ - 2.303159049775617
+ - -1.72588480213754
+ - -0.7470596948829825
+ - 2.974995364367971
+ - -4.274260256085578
+ - 4.0876434955383765
+ - -2.5767112562554346
+ - 2.074578276333483
+ - 2.246437149424405
+ - 3.978937352836345
+ - 4.074175065386578
+ - 6.526604516344204
+ - 6.485674717880851
+ - -2.2397565097689984
+ - -0.17300808806757959
+ - 2.526547296860705
+ - -4.114505028970587
+ - 4.25605516425565
+ - -3.0191929397938053
+ - 0.6616653932248175
+ - 2.0784319139242426
+ - 4.256196219084588
+ - 1.9293993045947262
+ - -4.17428380295393
+ - 4.2084325928881965
+ - -2.79007277135618
+ - 0.44330525886602123
+ - 1.5875593854153236
+ - 4.1285848114207555
+ - 2.0472306853852085
+ - -4.255198871732991
+ - 4.114704298929733
+ - -2.643371168511141
+ - 0.17329749414379678
+ - 2.2362223210309873
+ - -3.924613107539333
+ - 2.836675157652433
+ - 4.988882882747122
+ - -1.7936723213051045
+ - -1.4444974920197537
+ - -0.013648559578580096
+ - 2.494212519414884
+ - -4.050227813437122
+ - 2.974288995241624
+ - 5.716600563951947
+ - -1.6426237641288206
+ - -1.2778359888695547
+ - -0.32016037065740555
+ - 2.648386251600303
+ - -4.11668853786313
+ - 4.21877901067323
+ - -2.910794486896381
+ - 0.6581678869326986
+ - 0.42721056456924544
+ - 0.2678929125729051
+ - -4.185945487263563
+ - -3.5880686798836985
+ - 1.6324508843869183
+ - 0.8462612983255529
+ - -3.0478055108318687
+ - 4.293898202505477
+ - -4.050165267146889
+ - 2.494126952453394
+ - -0.27970005963169253
+ - -1.371942611233662
+ - -4.985252131354617
+ - -2.367471383044088
+ - 4.3255878004581
+ - -3.9745724158551865
+ - 2.2362489503200425
+ - -0.003546399482257853
+ - -0.8343762236281038
+ - -4.517235187176089
+ - -2.3281744901295562
+ - 4.359807409934343
+ - -3.8368163589918325
+ - 2.0733918184899043
+ - 0.5040782610991779
+ - -2.7901607572187532
+ - 4.175606894086573
+ - -2.7680390057472732
+ - -4.996601186426972
+ - 1.049448111855345
+ - 1.0482586043491267
+ - 0.6893665532175376
+ - -3.0194209954937423
+ - 4.256465617412385
+ - -2.737207272790022
+ - -5.38913254941071
+ - 0.7686594079732907
+ - 0.8472880497916022
+ - 0.9903994083083678
+ - -3.1544233062635834
+ - 4.295141106918858
+ - -3.9907101426786906
+ - 2.3716112206498523
+ - 0.017906810801602495
+ - -2.8028598323316882
+ - -2.5826758353112447
+ - 2.2476630536614923
+ - 2.477121748744885
+ - 7.728828050785146
+ - 7.824110326055195
+ - -4.0299001801731436
+ - 2.4498099639704014
+ - -0.07939382515414248
+ - -2.437916462431879
+ - 4.022718847748132
+ - -4.306681191581763
+ - 2.183685311679605
+ - 4.654369474449318
+ - 1.4197986615188232
+ - 0.3008397490511454
+ - -2.5910736855322805
+ - 4.093850308949792
+ - -4.242980605349575
+ - 2.022880722263732
+ - 4.093701620676383
+ - 1.646249439235305
+ - 0.4780284440112854
+ - -2.8316104004226696
+ - 4.191405860707052
+ - -4.193507251869457
+ - 2.7287202760000193
+ - -0.4252021408111153
+ - -2.019148191203359
+ - 2.4181960756681087
+ - 3.7605659283887465
+ - -4.215929013784948
+ - -2.616602411463605
+ - 2.580333149592296
+ - -0.11907564766193984
+ - -2.286194123750282
+ - 2.621301344913723
+ - 4.5314985904268825
+ - -4.568939786518759
+ - -2.636877216415949
+ - 2.3263891656664386
+ - 0.07170189734646816
+ - -2.443308825663457
+ - 4.079498173544904
+ - -4.27853850354778
+ - 3.091975405135361
+ - -3.4070874221752128
+ - -4.3916295625198805
+ - 1.324812469064929e-15
+ - 2.0037623158484542e-15
+ - 5.085506405976014e-16
+ - 1.4570641087279532e-16
+ - -1.6427806965303127e-16
+ - -1.094773540713932e-16
+ - -6.576085869796569e-16
+ - -4.0399501117089867e-16
+ - -4.258325793422986e-16
+ - 1.8346865986426151e-16
+ - 1.3607121076497305e-16
+ - 1.092540153060039e-15
+ - 2.961306592939839e-16
+ - 3.4121200267812387e-16
+ - -4.748016716054378e-17
+ - -4.73478182625353e-16
+ - -2.362065937933455e-16
+ - -3.190849212923304e-16
+ - -2.8239946112560365e-16
+ - 3.1962258869048984e-16
+ - 2.845501307182415e-17
+ - -2.7660919683773245e-16
+ - 5.600012746983997e-17
+ - -3.805030817743927e-18
+ - 4.300925594969467e-16
+ - -4.425829867464974e-16
+ - -1.1597072187993448e-16
+ - -4.450231695535288e-17
+ - 4.3046479077259555e-16
+ - 4.513097422089319e-16
+ - 2.3161057151484772e-17
+ - 6.617444900424221e-17
+ - 1.2947030947679987e-15
+ - 2.1854111783650989e-16
+ - -1.788778074645922e-16
+ - -8.165927007123488e-16
+ - -1.7006833394090247e-16
+ - 2.0296944280519913e-17
+ - -3.9175273810511386e-16
+ - 8.304066169419844e-16
+ - -1.0687173514185116e-16
+ - 5.019331956971772e-16
+ - 4.344352577128501e-16
+ - 7.02689930363797e-17
+ - -6.733250186181645e-17
+ - -1.6907571720583883e-16
+ - -5.488343364289338e-17
+ - -6.598006156029224e-16
+ - 1.1224840912344586e-16
+ - 6.633988512675282e-17
+ - 9.578751493364059e-17
+ - 1.876459219576543e-16
+ - 7.961613395822891e-18
+ - -1.7321162026860397e-16
+ - -4.577617509868455e-16
+ - -1.2192642229031628e-16
+ - -7.386722870098537e-17
+ - -3.1970530675174515e-16
+ - 1.4698999485067302e-16
+ - 2.4980854499101433e-17
+ - 1.5236666883226767e-16
+ - 3.7512640779279805e-17
+ - 1.923194924185789e-16
+ - -2.7048806030484002e-17
+ - -3.146595050151717e-16
+ - -1.8843174353957968e-16
+ - -2.271437962070614e-16
+ - 9.89308012613421e-17
+ - -2.0762233375080992e-16
+ - -1.2973293932128548e-16
+ - 2.580803511165446e-17
+ - 2.270610781458061e-16
+ - 1.0223952371155421e-16
+ - -1.4723814903443893e-16
+ - -4.806332949239367e-16
+ - -4.416730880726891e-16
+ - 7.837536303939936e-17
+ - -1.6270642648918052e-16
+ - -1.919059021123024e-16
+ - -1.9856470604335427e-16
+ - 2.2871543937091212e-17
+ - 1.492233825045662e-16
+ - -2.3657365519016588e-17
+ - 1.3979352352146168e-16
+ - -1.0397660299791557e-16
+ - -1.11876177847797e-16
+ - -2.8206858888058244e-16
+ - -2.420330472330159e-16
+ - -5.810116622572466e-16
+ - 6.815968247436948e-17
+ - -4.920794066501393e-16
+ - 1.2292731083150542e-15
+ - 3.8496985708217903e-16
+ - 1.9769616640017358e-17
+ - -6.768405362215149e-17
+ - -7.287461196592174e-17
+ - -3.3459455777769965e-16
+ - -3.77856103814223e-16
+ - 1.9653811354259935e-16
+ - -9.89308012613421e-17
+ - 9.254083102936996e-17
+ - 3.884853746855294e-16
+ - 1.8264147925170849e-16
+ - -3.548604827852488e-16
+ - -5.089642309038779e-16
+ - -3.623361275711968e-16
+ - 2.249931266144235e-17
+ - 4.1028158382630167e-17
+ - -2.57087734381481e-16
+ - 1.3623664688748366e-16
+ - 7.672100181429332e-18
+ - 2.041481751780872e-16
+ - 2.221393535011156e-16
+ - 9.88480832000868e-17
+ - -6.518183226917858e-17
+ - 7.924390268258004e-17
+ - -2.7892530255288093e-16
+ - -1.4508747944180105e-16
+ - 8.317301059220692e-17
+ - 3.0440246541951414e-16
+ - 8.983181452325879e-17
+ - -4.0035541647566533e-17
+ - -6.006985608360087e-16
+ - -1.1994118882018901e-16
+ - -1.2635183856747498e-16
+ - -1.7337705639111458e-16
+ - 3.738856368739685e-17
+ - 1.2076836943274204e-16
+ - -3.4030210400431554e-16
+ - -9.793818452627846e-17
+ - -3.5816920523546093e-16
+ - -1.050519377942345e-16
+ - -7.113753267956037e-16
+ - 2.6453235989445825e-16
+ - -4.376974512536061e-16
+ - -7.870623528442057e-17
+ - 4.231028833208736e-17
+ - -2.1374347028370233e-16
+ - -1.0699581223373412e-16
+ - 1.446325301048969e-16
+ - -5.643439729143031e-17
+ - 2.934836813338142e-16
+ - 6.27002904315195e-17
+ - -5.030912485547514e-16
+ - -2.1837568171399928e-17
+ - -9.165161187087545e-17
+ - 2.2251158477676444e-16
+ - 2.246622543694023e-16
+ - -2.0332099456553418e-16
+ - -1.4426029882924803e-16
+ - -1.531111313835654e-16
+ - 3.268190600197012e-16
+ - -1.0753347963189358e-17
+ - -1.0323214044661784e-16
+ - -4.863822001811803e-16
+ - 1.1539169545114736e-16
+ - -4.301339185275744e-18
+ - 1.7015105200215777e-16
+ - -4.905181032439454e-16
+ - -1.3880090678639804e-16
+ - -1.1870041790135946e-17
+ - 1.5426918424113966e-17
+ - -1.2738581433316626e-16
+ - -1.300741513239636e-16
+ - 2.809105360230082e-16
+ - 7.196471329211341e-17
+ - -9.562207881112999e-17
+ - 1.9356026333740845e-16
+ - -7.543887186483611e-17
+ - 1.5704023929319228e-16
+ - -1.315217173959314e-16
+ - 3.7686348707915936e-16
+ - -6.220398206398768e-17
+ - 1.0166049728276709e-16
+ - -1.8859717966209028e-17
+ - 9.727644003623604e-17
+ - -8.743299074685501e-17
+ - 2.3723539968020834e-16
+ - -1.03000529875103e-15
+ - -9.989033077190362e-16
+- - 5.165036992986327
+ - 4.219361389673006
+ - -2.838277354371913
+ - 1.9415805292926391
+ - -0.49608875812233266
+ - -1.275342653964492
+ - 2.461361973244846
+ - -2.9297330496932963
+ - 1.7090831914135993
+ - 3.514340782037404
+ - 0.46960912275495237
+ - -0.050170498979317565
+ - -1.3856008441246541
+ - 2.526206710716872
+ - -2.9158696540136844
+ - 1.525172722399145
+ - 2.973844549901052
+ - 0.6266109845004382
+ - 0.04355144616177819
+ - -1.563282533892056
+ - 2.6175711725451216
+ - -2.9016822446570845
+ - 2.105397191789736
+ - -0.7218282379321879
+ - -0.9755890546761029
+ - 1.4469591945787799
+ - 2.15600473493719
+ - -3.0367649056558412
+ - -1.8307239455276487
+ - 2.019640535445512
+ - -0.5212287715000512
+ - -1.1650508678435005
+ - 1.5308803926562766
+ - 2.53249080919253
+ - -3.188082550573271
+ - -1.7990639137346929
+ - 1.868163199962685
+ - -0.39661945967523526
+ - -1.2792361513065111
+ - 2.5122542591763146
+ - -2.9252389268931993
+ - 2.313159053617966
+ - -2.808032457791902
+ - -2.8900210566178344
+ - -2.847063181270443
+ - -2.8567107545564423
+ - -3.3237717253426267
+ - -3.2550127860975553
+ - 2.4831889621539673
+ - -0.7735817775200892
+ - -0.9214062696217071
+ - 2.299633819697875
+ - -2.921766853305144
+ - 2.52024196255593
+ - -0.9698403085654383
+ - -2.312209306056642
+ - -2.0337788036631212
+ - -0.8078039830030469
+ - 2.373508098654578
+ - -2.927057247809016
+ - 2.4159243096763072
+ - -0.8362041214784095
+ - -1.945463382157202
+ - -2.0623976529039436
+ - -0.9100264479167364
+ - 2.4823517215110913
+ - -2.9261053869138935
+ - 2.344703400907276
+ - -0.9934386104602261
+ - -0.699812126238814
+ - 2.090552580214835
+ - -1.8456393864066651
+ - -3.082004940945336
+ - 2.0617433173463664
+ - 1.4011075326708617
+ - -0.8745246207590115
+ - -0.8954352958149128
+ - 2.2264853493133643
+ - -1.9637431617250387
+ - -3.605632683059841
+ - 2.1238893006531296
+ - 1.346729989301296
+ - -0.6784796036836096
+ - -1.0164419580492836
+ - 2.302248072127659
+ - -2.9269706583219812
+ - 2.4710642940311742
+ - -1.2922276516795264
+ - 0.9778657278797173
+ - 1.364150218767969
+ - 3.952256077656042
+ - 3.311128800254496
+ - -1.8583743046421897
+ - 0.2878567666675506
+ - 1.2956078874274923
+ - -2.5851308997490596
+ - 2.876078230042851
+ - -2.3138428931668065
+ - 0.7667183161387813
+ - 1.9665929505713067
+ - 2.613213882837366
+ - 1.1403274608041176
+ - -2.6406855329179284
+ - 2.8635621851481745
+ - -2.181920541164946
+ - 0.5637775627478201
+ - 1.5042948507265983
+ - 2.441989959819827
+ - 1.155629948905445
+ - -2.7235035006388952
+ - 2.829209734522594
+ - -2.09757004131812
+ - 0.5157319835527826
+ - 1.086286621979282
+ - -2.416769102304977
+ - 1.8881051693920354
+ - 3.2402338196246734
+ - -1.6327626440618623
+ - -1.1877380564297764
+ - 0.39402940317981716
+ - 1.2730181976527282
+ - -2.5255761958615897
+ - 1.9039414736583682
+ - 3.5711185652933612
+ - -1.5510919189053365
+ - -1.0777029141062915
+ - 0.1902741833402912
+ - 1.3844331458845782
+ - -2.587185695319999
+ - 2.865754913824858
+ - -2.252238166086107
+ - 0.8301527663176387
+ - 0.3376537874311412
+ - 0.19968772226565126
+ - -2.1417025360909068
+ - -2.255604007914
+ - -5.007501442359287
+ - -5.029979099511471
+ - 2.874729554396364
+ - -2.2925932311871264
+ - 0.8918665549591703
+ - 0.8116182386653564
+ - -2.2390541947668017
+ - 2.865091399431527
+ - -1.7529174522269753
+ - -3.513772121392503
+ - 0.13434773942346392
+ - 0.37064080666633864
+ - 0.9310519632777975
+ - -2.318256297909265
+ - 2.88475201512323
+ - -1.6803197252486717
+ - -3.1705736033132093
+ - -0.11278338424224997
+ - 0.24976279165894072
+ - 1.1205352688712311
+ - -2.4385664665786346
+ - 2.887954086400977
+ - -2.4292704955272644
+ - 1.1076382580687545
+ - 0.49644856433273443
+ - -1.24055270701154
+ - -1.73688872866907
+ - 3.212371724695683
+ - 1.8834327639624455
+ - -2.3564977699631298
+ - 0.9178626762859513
+ - 0.6968658594206465
+ - -1.3782576575246215
+ - -2.191206348702074
+ - 3.5816532447032103
+ - 1.9572464299612091
+ - -2.2300303644341004
+ - 0.7958790718847534
+ - 0.8157763423572515
+ - -2.3027386577976534
+ - 2.875692643856099
+ - -2.5960515278754475
+ - 3.2210131081150295
+ - 4.057626183587749
+ - -3.4741585727227157e-16
+ - -6.273337765602161e-16
+ - -3.2028433318053227e-16
+ - -9.719372197498074e-18
+ - 5.39321759384574e-17
+ - -7.084801946516682e-17
+ - 4.65537248744844e-16
+ - 3.3484271196146555e-16
+ - 1.4723814903443893e-16
+ - -1.1034589371457388e-16
+ - 1.3152171739593138e-17
+ - -8.013725774413731e-16
+ - -1.8049080965907061e-16
+ - -2.8008335541045517e-16
+ - -4.0035541647566533e-17
+ - 1.9074784925472816e-16
+ - 1.5257346398540593e-16
+ - 2.8262693579405573e-16
+ - 2.602310207091825e-16
+ - -2.4666525866331285e-16
+ - 8.958366033949288e-17
+ - 2.812414082680294e-16
+ - -1.0029564927205459e-17
+ - 2.6511138632324534e-17
+ - -3.9125642973758204e-16
+ - 7.080666043453917e-17
+ - 7.436353706851719e-17
+ - 4.466775307786349e-17
+ - -1.6626330312315854e-16
+ - -2.392206331503356e-16
+ - 1.7751295945387971e-16
+ - -5.2939559203393765e-17
+ - -1.172611236355172e-15
+ - -1.0075059860895876e-16
+ - 1.9978479744686998e-16
+ - 4.109433283163441e-16
+ - 2.03817302933066e-16
+ - 1.3731198168380258e-17
+ - 2.1423977865123414e-16
+ - -5.950944121859619e-16
+ - 1.9124415762225997e-16
+ - -2.957997870489627e-16
+ - -1.535247216898419e-16
+ - 1.9025154088719633e-17
+ - -7.692779696743157e-18
+ - 1.431022459716738e-17
+ - 8.032957723655589e-17
+ - 4.488902389172143e-16
+ - -2.1151008262980915e-16
+ - 7.610061635487855e-18
+ - 5.616556359235058e-17
+ - -8.735027268559971e-17
+ - 1.5633713577252223e-17
+ - 4.9961708998202865e-17
+ - 2.0927669497591598e-16
+ - 6.063233890013693e-17
+ - -3.004733575098873e-17
+ - 3.7421650911898967e-16
+ - -1.575365476607241e-16
+ - -3.6892255319865034e-17
+ - -1.6448486480616953e-16
+ - -1.631613758260847e-17
+ - -1.651879683268396e-16
+ - 4.174160166095715e-17
+ - 1.981924747677054e-16
+ - 1.4060002461870088e-16
+ - 4.5122702414767654e-17
+ - -6.55954225754551e-17
+ - 1.712263867984767e-16
+ - 2.212087753119934e-16
+ - -4.6073960119203635e-17
+ - -1.6618058506190324e-16
+ - -9.074171319706712e-17
+ - 1.282129949457193e-16
+ - 2.6486323213947946e-16
+ - 3.139486466762589e-16
+ - -9.823803749832894e-17
+ - 1.495542547495874e-16
+ - 2.537790119312689e-16
+ - 9.843449289381028e-17
+ - 2.635604226747084e-17
+ - -2.4360469039686662e-17
+ - -2.067951531382569e-17
+ - -2.2664748783952955e-17
+ - 5.939156798130739e-17
+ - 6.445804923319468e-17
+ - 2.1043474783349022e-16
+ - 2.1837568171399928e-16
+ - 2.7330047438752034e-16
+ - -3.576728968679291e-16
+ - 3.8886794571883517e-16
+ - -1.087659787445976e-15
+ - -3.278943948160201e-16
+ - -1.0885696861197843e-16
+ - -3.519653506413133e-17
+ - 8.726755462434441e-17
+ - 3.344704806858167e-16
+ - 2.8206858888058244e-16
+ - -3.341809674714232e-17
+ - 1.3069453678337836e-17
+ - -3.927039958095498e-17
+ - -2.0346575117273096e-16
+ - -6.220398206398768e-17
+ - 3.214423860381065e-16
+ - 4.516406144539531e-16
+ - 2.8810700735221954e-16
+ - -6.685687300959846e-17
+ - 5.922613185879678e-17
+ - 3.6693731972852303e-16
+ - -1.0323214044661784e-16
+ - 4.768696231368204e-17
+ - -1.6378176128549945e-16
+ - -2.111378513541603e-16
+ - -4.301339185275743e-17
+ - -5.459392042849982e-17
+ - -1.1894857208512538e-16
+ - 1.4566650587058817e-16
+ - 1.3470636275426056e-16
+ - 1.4161332086907834e-16
+ - -1.981924747677054e-16
+ - -3.234276195082338e-17
+ - 1.555099551599692e-17
+ - 5.714163671516315e-16
+ - 1.3019822841584656e-16
+ - -1.7148488073989955e-17
+ - -3.474158572722716e-18
+ - -1.317698715796973e-16
+ - -8.983181452325879e-17
+ - 1.6249963133604226e-16
+ - 5.107840282514945e-17
+ - 2.326031882499114e-16
+ - 3.871205266748169e-17
+ - 6.815968247436947e-16
+ - -2.1986460681659473e-16
+ - 2.3706996355769773e-16
+ - -2.4195032917176056e-17
+ - 2.1672132048889322e-17
+ - 4.8902917814135e-16
+ - 2.0811864211834174e-16
+ - -1.0960143116327615e-16
+ - 1.888453338458562e-16
+ - -2.636224612206499e-16
+ - -8.652309207304668e-17
+ - 2.4190897014113294e-16
+ - 2.4736836218398293e-16
+ - 9.371956340225802e-17
+ - -1.3400325923359048e-16
+ - -3.176373552203626e-17
+ - 1.546414155167885e-16
+ - 8.271806125530276e-17
+ - 5.277412308088316e-17
+ - -2.348779349344322e-16
+ - 2.2747466845208258e-17
+ - 2.3719404064958065e-17
+ - 1.771820872088585e-16
+ - -7.093073752642212e-17
+ - -9.644925942368301e-17
+ - -3.446034431895913e-16
+ - 3.6065074707312e-16
+ - 1.0439019330419208e-16
+ - 4.889671395954084e-17
+ - 1.4558378780933287e-17
+ - 8.495144890919593e-17
+ - 7.703119454400069e-17
+ - -1.432676820941844e-16
+ - -4.9382682569415746e-17
+ - 5.343586757092558e-17
+ - -2.756165801026688e-16
+ - 5.757177063369073e-17
+ - -1.9604180517506753e-16
+ - 1.6642873924566914e-16
+ - -2.415367388654841e-16
+ - 1.594804221002237e-16
+ - -9.553936074987468e-17
+ - 9.512577044359817e-18
+ - -1.2316719320914582e-16
+ - -9.926167350636332e-19
+ - -2.4368740845812195e-16
+ - 4.3410438546782887e-16
+ - 9.562207881113e-16
+- - -4.525584055778612
+ - -3.6209907354299675
+ - 2.74037346671495
+ - -2.839753306273855
+ - 1.942394856087458
+ - -0.3999913707597324
+ - -1.2776023871374447
+ - 2.4654378681638422
+ - -1.9958350887176004
+ - -3.744783688656163
+ - 1.664436748487212
+ - 1.1296045949466285
+ - -0.27528770330719377
+ - -1.3901038858454398
+ - 2.5665816430622326
+ - -1.8919898077516724
+ - -3.316054024068581
+ - 1.258502368407046
+ - 0.9955217585543439
+ - -0.0721985332745905
+ - -1.5677438769130527
+ - 2.620287146017635
+ - -2.8887862403908655
+ - 2.1064352607522023
+ - -0.7188073259734209
+ - -0.5485791229981619
+ - -0.4242098205397546
+ - 3.297174531698607
+ - 1.8003535894648368
+ - -2.8637519713293966
+ - 1.9628338437364674
+ - -0.5179466525042159
+ - -0.6666652591392422
+ - -0.7146640220325484
+ - 3.611628022016775
+ - 1.8516444438344928
+ - -2.813487781791042
+ - 1.8668898366271385
+ - -0.3957050250321688
+ - -1.36754165064383
+ - 2.515012039958734
+ - -2.9275468118051933
+ - 4.749924544117941
+ - 4.752437972640919
+ - 2.521463342154224
+ - 2.4299897418107634
+ - 0.6418657296733965
+ - 0.5135072155824149
+ - -1.3155062303328366
+ - 2.4870126683188687
+ - -0.7758610212926745
+ - -1.0111083354380588
+ - 2.2999163923881922
+ - -2.9236398111166153
+ - 1.7076486423667725
+ - 3.458329917769949
+ - 0.07141323776264111
+ - -0.2638579846812084
+ - -1.1263280838946532
+ - 2.375265834537465
+ - -2.9298607057326946
+ - 1.6279588786004655
+ - 3.107039884800242
+ - 0.3018019509153677
+ - -0.14271063667556624
+ - -1.3131750443957755
+ - 2.4840910247430004
+ - -2.927869488257578
+ - 2.2900899932600987
+ - -0.9959214877777758
+ - -0.7007374273986424
+ - 1.3197909839841664
+ - 1.8955894025550977
+ - -3.1567342228758912
+ - -1.8692707558448851
+ - 2.2135298501506777
+ - -0.800469079294929
+ - -0.8964999377848498
+ - 1.4579709105787437
+ - 2.3643092734564
+ - -3.5028591528241213
+ - -1.9320480387767045
+ - 2.0763449941771377
+ - -0.6783843077838758
+ - -1.0151819009204461
+ - 2.359149702523429
+ - -2.928794136544384
+ - 2.472400853565897
+ - -3.060695958595078
+ - -3.8683806546857173
+ - -5.136768486076303
+ - -4.20418206694944
+ - 2.749864926181955
+ - -1.858845565883971
+ - 0.28972988125310534
+ - 1.3800137122790674
+ - -2.586008739393212
+ - 2.8778129908173122
+ - -1.6477960225478514
+ - -3.425779190106576
+ - -0.6834162081715871
+ - -0.06327861088594271
+ - 1.488795978800867
+ - -2.642665339730219
+ - 2.8542723066670295
+ - -1.458913286835065
+ - -2.883549808741641
+ - -0.8116037275658933
+ - -0.1510756103293989
+ - 1.6585356229757664
+ - -2.7254237757211106
+ - 2.8312092468564725
+ - -2.0315314934927255
+ - 0.5176939731160867
+ - 1.0877871184058487
+ - -1.5140197247796459
+ - -2.296908632053843
+ - 2.9538026655950422
+ - 1.8002407236570481
+ - -1.938983555048733
+ - 0.31688002342062666
+ - 1.274622338949843
+ - -1.5928284464552827
+ - -2.6754202684179926
+ - 3.085345321482376
+ - 1.7605127800590676
+ - -1.781786698443766
+ - 0.1895226904127705
+ - 1.3838340625062044
+ - -2.6318657540933175
+ - 2.8676934342830225
+ - -2.2532108195004734
+ - 2.554579670107251
+ - 2.643395249238598
+ - 2.836186826590513
+ - 2.8581350200637
+ - 3.540979739169943
+ - 3.4784302507026936
+ - -2.6064594517117574
+ - 2.876747575870319
+ - -2.293940772950751
+ - 0.799728940368842
+ - 0.813484411268751
+ - -2.2435653662518438
+ - 1.878035422061528
+ - 3.4254928254515513
+ - -2.085684458158302
+ - -1.3300212074286397
+ - 0.6804852187451371
+ - 0.935386001338105
+ - -2.3691831475063667
+ - 1.8863509486187862
+ - 3.220703915904414
+ - -1.721326329243964
+ - -1.2330726111470265
+ - 0.47962395513510414
+ - 1.1249156796554611
+ - -2.4413949178426457
+ - 2.890389401739026
+ - -2.4310095611786147
+ - 1.1054224951919953
+ - 0.26132813967363805
+ - -0.0927603723475639
+ - -3.179712233499661
+ - -1.6871612498100474
+ - 2.886420234998983
+ - -2.3096037751525613
+ - 0.9153107434573917
+ - 0.37026095902549905
+ - 0.1432224868136274
+ - -3.706321592009759
+ - -1.8539508789186223
+ - 2.8654950563729606
+ - -2.2297486579159007
+ - 0.7955414015704817
+ - 0.909433338589405
+ - -2.3056962117200364
+ - 2.878876285795448
+ - -4.191725918619843
+ - -5.158644551003514
+ - 8.185779341824761e-16
+ - 1.7926658235249216e-15
+ - 3.675577051879378e-16
+ - 1.3102540902839958e-16
+ - -1.048865016717239e-16
+ - 6.327931686030661e-18
+ - -3.2872157542857315e-16
+ - -3.929935090239434e-16
+ - -3.3273340139945533e-16
+ - -2.8000063734919987e-17
+ - 5.761312966431838e-17
+ - 8.068319694842231e-16
+ - -1.2358078351542233e-16
+ - 1.357816975505795e-16
+ - -1.919059021123024e-17
+ - -2.9695783990653694e-16
+ - -1.6167245072348923e-16
+ - -1.4872707413703438e-16
+ - -1.258968892305708e-16
+ - 4.948194424292212e-16
+ - -1.0339757656912844e-17
+ - -1.3665023719376017e-16
+ - -6.650532124926343e-17
+ - -4.475047113911879e-17
+ - 3.479121656398034e-16
+ - -2.431911000905901e-17
+ - -7.510799961981491e-17
+ - -2.804142276554764e-17
+ - 3.0142461521432324e-16
+ - 1.9091328537723876e-16
+ - -2.4641710447954694e-16
+ - 1.021568056502989e-16
+ - 7.8276101365893e-16
+ - 1.2639319759810263e-16
+ - -2.8765205801531537e-16
+ - -2.838883862281991e-16
+ - -1.4806532964699195e-16
+ - 7.986428814199481e-17
+ - -1.2324991127040112e-16
+ - 5.877118252189262e-16
+ - -5.790264287871194e-17
+ - 1.8179361912384163e-16
+ - 2.571497729274225e-16
+ - 2.6883369907973396e-17
+ - -9.446402595355575e-17
+ - 3.6065074707312007e-17
+ - -1.108422020821057e-16
+ - 2.307833909022947e-16
+ - 1.7197084934977443e-16
+ - 6.038418471637102e-17
+ - -8.900463391070577e-17
+ - 3.9539233280034717e-17
+ - 3.3004506440865804e-17
+ - 1.0984958534704206e-16
+ - -1.8065624578158122e-16
+ - -8.917007003321637e-17
+ - 1.168806205537428e-16
+ - -2.3210687988237957e-16
+ - 1.8193837573103841e-16
+ - 3.4907021849737763e-16
+ - 2.0166663334042812e-16
+ - 4.384057246531046e-17
+ - 2.26482051717019e-16
+ - -2.069244001089683e-17
+ - -2.7611288847020064e-16
+ - -3.487393462523564e-16
+ - 1.678349462870093e-16
+ - 3.3335378685887015e-17
+ - -2.150669592637872e-18
+ - -4.301339185275743e-17
+ - 1.5749518863009644e-16
+ - 2.693300074472658e-16
+ - 1.1448179677733903e-16
+ - -1.7941547486275168e-16
+ - -7.113753267956038e-18
+ - -2.9977025398921723e-16
+ - 1.33170908742209e-16
+ - 7.361907451721946e-17
+ - -5.0292581243224076e-17
+ - -6.658803931051873e-17
+ - -6.29484446152854e-17
+ - -3.54136699749265e-17
+ - 2.605618929542037e-17
+ - 1.5158084725034232e-17
+ - -1.282957130069746e-16
+ - -7.560430798734672e-17
+ - -2.0185274897825255e-16
+ - -1.0554824616176632e-16
+ - 2.4683069478582346e-16
+ - 8.271806125530276e-17
+ - -4.538946816231601e-16
+ - 1.263104795368473e-15
+ - 3.513863242125261e-16
+ - 2.99439381744196e-17
+ - 1.7453510924868884e-17
+ - -3.143286327701505e-17
+ - -4.237232687802884e-16
+ - -8.304893350032397e-17
+ - -1.108422020821057e-16
+ - -8.503416697045123e-17
+ - 2.6469779601696883e-17
+ - 2.8124140826802937e-18
+ - -8.768114493062093e-18
+ - -2.503875714198015e-16
+ - -1.741215189424123e-16
+ - -7.874759431504822e-17
+ - 1.1580528575742387e-18
+ - -4.297203282212978e-17
+ - -4.278591718430535e-17
+ - 1.737079286361358e-17
+ - -6.642260318800812e-17
+ - 2.192028623265523e-16
+ - 1.3789100811258971e-16
+ - -3.846906836254424e-17
+ - -1.6378176128549948e-17
+ - 2.03817302933066e-16
+ - -1.852884572118782e-17
+ - -1.1200025493967995e-16
+ - 2.2325604732806217e-16
+ - 6.782881022934826e-18
+ - -3.0388547753666854e-17
+ - 4.772832134430969e-17
+ - -2.60644611015459e-16
+ - -7.312276614968765e-17
+ - 1.2391165576044355e-16
+ - 2.203195561534989e-16
+ - 1.5406238908800138e-16
+ - -4.135903062765138e-18
+ - -2.862044919433476e-16
+ - -1.8661194619196302e-16
+ - -1.7908460261773047e-16
+ - 1.4558378780933287e-17
+ - -4.4303793608340157e-16
+ - 9.103122641146068e-17
+ - -1.6030760271277674e-16
+ - -1.9984683599281146e-16
+ - -5.761312966431838e-17
+ - -7.472749653804051e-16
+ - -1.237875786685606e-16
+ - 5.153335216205362e-17
+ - -3.1714104685283076e-16
+ - 2.0121168400352396e-16
+ - 8.921142906384402e-17
+ - -1.2229865356596514e-16
+ - -1.393385741845575e-16
+ - -1.3036366453835716e-16
+ - 2.1531511344755308e-16
+ - 2.6097548326048023e-16
+ - -1.7759567751513502e-16
+ - 3.6561383074843823e-17
+ - 1.680831004707752e-16
+ - 3.7154885164350616e-16
+ - 5.897797767503087e-17
+ - 6.256587358197963e-17
+ - -1.6146565557035098e-16
+ - -1.471347514578698e-17
+ - 3.326817026111708e-17
+ - 5.4759356551010426e-17
+ - -4.606155241001535e-16
+ - -9.016268676828e-17
+ - -2.651630851115299e-17
+ - -5.0871607672011194e-18
+ - 4.2144852209576754e-17
+ - -1.823933250679426e-17
+ - 5.39321759384574e-17
+ - -5.748905257243542e-17
+ - -1.531938494448207e-16
+ - 1.5145677015845934e-16
+ - -3.5585309952031246e-16
+ - 3.1408047858638456e-16
+ - -1.3962808739895107e-16
+ - 3.6991516993371393e-16
+ - -1.0455562942670269e-16
+ - 1.5104317985218283e-16
+ - -8.139457227521791e-17
+ - -5.215373762146839e-17
+ - -6.675347543302933e-17
+ - 6.265893140089185e-17
+ - -7.126988157756885e-16
+ - -8.271806125530277e-18
+- - 2.4106570748256795
+ - 1.8426161284495821
+ - -1.8247409189341965
+ - 2.726075974526688
+ - -2.822010005955614
+ - 1.8562848914350336
+ - -0.3939628525764643
+ - -1.2756586049534748
+ - 1.6282345979573214
+ - 2.749421396202942
+ - -3.240762125577362
+ - -1.8328559476625763
+ - 1.761414309414352
+ - -0.26747910518355916
+ - -1.4545919234912963
+ - 1.6379071944977854
+ - 2.571936518957119
+ - -2.7201993367502695
+ - -1.7025149769353358
+ - 1.596066339233405
+ - -0.06560956397725436
+ - -1.5616203684096275
+ - 2.6451689284240505
+ - -2.8712455893127276
+ - 2.0898232809569963
+ - -0.5234316549554836
+ - -1.4352591888772939
+ - -2.4780137860205858
+ - -1.1815932013921755
+ - 2.692081250332854
+ - -2.827802405243371
+ - 1.9467057055790764
+ - -0.40999529554532965
+ - -1.3252303695364211
+ - -2.851779483991572
+ - -1.2985453838503742
+ - 2.755415773373134
+ - -2.7951253388746458
+ - 1.8530019395888173
+ - -0.2945290780100261
+ - -1.362879405645841
+ - 2.5033655858962596
+ - -5.126609875701689
+ - -5.049380202533675
+ - -1.3736582463558242
+ - -1.2116144139569074
+ - 2.2327263496626917
+ - 2.378341819658922
+ - -0.35237433249547184
+ - -1.3132578442562126
+ - 2.474207676681762
+ - -0.6772551143476205
+ - -1.007884272269552
+ - 2.291106874400434
+ - -1.88245857061069
+ - -3.4665318712794306
+ - 1.9016421949859914
+ - 1.2423530735622639
+ - -0.5552017574986546
+ - -1.1247913110273744
+ - 2.408520859601034
+ - -1.8824114022115994
+ - -3.2454197215667757
+ - 1.54608504698963
+ - 1.1419987452765223
+ - -0.35533814646952105
+ - -1.310533599956071
+ - 2.472536750657852
+ - -2.9072937970847015
+ - 2.2774695262438946
+ - -0.9867841130758728
+ - -0.3658841778932215
+ - -0.0971736498495071
+ - 3.212650180910738
+ - 1.7233116588970747
+ - -2.8944221465075266
+ - 2.1495046100846356
+ - -0.7921657610669648
+ - -0.4788286515863522
+ - -0.35810884950773186
+ - 3.727737444663179
+ - 1.8819522786194556
+ - -2.863983672534
+ - 2.0628517197145677
+ - -0.6730568066667134
+ - -1.10131102130447
+ - 2.348390409219676
+ - -2.914250178115237
+ - 4.129481276526511
+ - 5.091788073994339
+ - 4.634238843044001
+ - 3.7169885726044964
+ - -2.81416924272881
+ - 2.7343441041963437
+ - -1.8477628714718397
+ - 0.1909323175403281
+ - 1.3747127552996088
+ - -2.574883878904315
+ - 1.9844886457009525
+ - 3.755551866332064
+ - -1.4574568898961477
+ - -1.0275615705861159
+ - 0.06824803275358902
+ - 1.4849755282751196
+ - -2.6633052561555477
+ - 1.8713381987698658
+ - 3.311207542486179
+ - -1.0736933326561526
+ - -0.896445501913142
+ - -0.13576524965656606
+ - 1.653603770671874
+ - -2.712104933577785
+ - 2.795873471289614
+ - -2.019842402656018
+ - 0.5107163368945079
+ - 0.6473440618453856
+ - 0.6086957151451085
+ - -3.3007099447907273
+ - -1.820267836990094
+ - 2.7659698150162093
+ - -1.8672696492207195
+ - 0.31084162888112704
+ - 0.762967274136752
+ - 0.9108098975024919
+ - -3.601106804921779
+ - -1.8633925438853718
+ - 2.7030205141595927
+ - -1.7691232983071288
+ - 0.1866184930295863
+ - 1.4614829540899366
+ - -2.61935274613048
+ - 2.8525297533035907
+ - -4.591196716332914
+ - -4.602047592486058
+ - -2.5711791847693775
+ - -2.4874232377942884
+ - -0.9261772786250158
+ - -0.8040370167971742
+ - 1.4109788564272094
+ - -2.5943466057720372
+ - 2.8595027431875852
+ - -2.21688808730058
+ - 0.7912016990346413
+ - 0.8149862435785221
+ - -1.3883788533014958
+ - -2.2179354676484326
+ - 3.3426446484685335
+ - 1.848425589108578
+ - -2.1333989449580253
+ - 0.6701411962494799
+ - 1.0082191651712928
+ - -1.474361949985226
+ - -2.2176029041461534
+ - 2.9809070585828157
+ - 1.806937750618239
+ - -1.99030781442428
+ - 0.4703793570273061
+ - 1.1219706426949203
+ - -2.4811667109283717
+ - 2.8734417630844753
+ - -2.413217766108358
+ - 0.7970389874232328
+ - 1.8803280957398305
+ - 2.1076954120530904
+ - 0.9405573473414344
+ - -2.5434281722011205
+ - 2.863092615616481
+ - -2.2920978796683547
+ - 0.752314326924464
+ - 1.9384381966731214
+ - 2.6184310721427018
+ - 1.145185798421099
+ - -2.637628763912519
+ - 2.84780329573829
+ - -2.2140523165180466
+ - 0.6946788486397919
+ - 0.9078549609092581
+ - -2.2962445758213867
+ - 3.785765418913003
+ - 4.566007053376606
+ - -1.6866212689956232e-16
+ - -4.859272508442761e-16
+ - -9.065899513581182e-17
+ - -9.548766196159012e-18
+ - -8.180816258149442e-17
+ - -7.006219788324144e-17
+ - 4.3054750883385084e-17
+ - 1.4144788474656773e-16
+ - 6.88214269644119e-17
+ - 9.30578189122156e-17
+ - 4.79764755280756e-17
+ - -3.21855976344383e-16
+ - 2.6025170022449633e-16
+ - -8.209767579588798e-17
+ - -1.0685105562653734e-16
+ - 4.6322114302969544e-17
+ - -6.782881022934826e-18
+ - -9.098986738083304e-18
+ - 1.9018950234125486e-16
+ - -2.160595759988508e-16
+ - 7.783769564123989e-17
+ - 5.608284553109528e-17
+ - 1.6777290774106781e-16
+ - 3.8546616544971083e-17
+ - -1.3317607862103746e-16
+ - -8.99972506457694e-17
+ - -3.2094607767057474e-17
+ - 3.474158572722716e-18
+ - -4.702521782363962e-17
+ - 8.809473523689744e-17
+ - 3.5850007748048214e-16
+ - -7.064122431202856e-17
+ - -1.0720260738687237e-16
+ - 1.041265294839408e-16
+ - 1.31687153518442e-16
+ - -2.0522350997440614e-16
+ - 7.725866921245277e-17
+ - -1.518651905859074e-18
+ - -9.562207881112999e-17
+ - -2.3483657590380456e-16
+ - 3.600303616137053e-17
+ - 1.3540946627493063e-16
+ - -1.5997673046775553e-16
+ - 6.853191375001834e-17
+ - 1.256487350468049e-16
+ - -6.472688293227442e-17
+ - 9.905487835322505e-17
+ - -9.355412727974742e-17
+ - -1.829723514967297e-16
+ - 3.7967590116183964e-17
+ - 2.8537731133079455e-16
+ - 4.013893922413566e-17
+ - -8.507552600107888e-17
+ - -2.505530075423121e-16
+ - -1.8958979639715392e-16
+ - 1.1332374391976478e-17
+ - -1.917404659897918e-16
+ - 1.228363209641246e-16
+ - -8.428970441915351e-17
+ - -1.493061005658215e-16
+ - -1.1555713157365797e-16
+ - 6.538862742231684e-17
+ - -1.3615392882622836e-16
+ - 3.072975975634498e-17
+ - 5.0209863181968774e-17
+ - 2.0540962561223057e-16
+ - -1.669664066438286e-16
+ - 3.101927297073854e-17
+ - -1.0281855014034133e-16
+ - -1.49719690872098e-17
+ - 8.54063982461001e-17
+ - -5.066481251887294e-18
+ - -5.154886179853899e-17
+ - 2.4474206373912703e-17
+ - -1.919059021123024e-17
+ - -3.1184709093249143e-17
+ - -1.2465611831174127e-16
+ - -2.575013246877575e-16
+ - -7.229558553713462e-17
+ - 8.892191584945048e-19
+ - 1.252351447405284e-16
+ - 2.7412765500007337e-16
+ - -2.7958704704292335e-17
+ - 6.940045339319902e-17
+ - 3.966331037191767e-17
+ - 2.0327963553490652e-17
+ - 1.1034589371457388e-16
+ - -1.8446127659932517e-17
+ - -3.8257103330577525e-16
+ - 1.467418406669071e-16
+ - -1.8462671272183575e-16
+ - -6.127753977792828e-16
+ - -2.782635580628385e-16
+ - 1.0887764812729225e-17
+ - -1.8135934930225132e-17
+ - -8.304893350032397e-17
+ - 1.2895745749701701e-16
+ - -1.2912289361952762e-16
+ - 2.627125625468416e-16
+ - 8.354524186785578e-17
+ - -6.449940826382233e-17
+ - 3.7636717871162754e-16
+ - 6.468552390164676e-17
+ - 9.797954355690612e-17
+ - -9.967526381263982e-17
+ - -2.3425754947501744e-16
+ - -5.045801736573468e-18
+ - 7.051714722014561e-17
+ - 8.900463391070577e-17
+ - 3.763671787116276e-17
+ - 9.181704799338606e-17
+ - -3.705769144237564e-17
+ - -5.5048869765403986e-17
+ - 1.060600641657835e-16
+ - -1.1415092453231782e-16
+ - -2.0249381395298115e-16
+ - -7.703119454400069e-17
+ - 5.897797767503087e-17
+ - -9.810362064878907e-17
+ - 1.197757526976784e-16
+ - 5.1740147315191875e-17
+ - 4.177262093392789e-17
+ - -2.072914615057887e-16
+ - 2.7710550520526424e-17
+ - -2.49022723409089e-16
+ - -5.10370437945218e-17
+ - -1.4519087701837018e-16
+ - 3.6892255319865034e-17
+ - 9.719372197498074e-17
+ - 1.502676980279144e-16
+ - -7.080666043453917e-17
+ - -1.108422020821057e-17
+ - 1.344995676011223e-16
+ - 7.002083885261379e-17
+ - -4.21034931789491e-17
+ - -2.150669592637872e-18
+ - 9.640790039305536e-17
+ - 5.301193750699216e-16
+ - 1.2308447514789052e-16
+ - -5.293955920339376e-18
+ - 2.2590302528823186e-16
+ - -3.135014521575975e-17
+ - -3.56980133104916e-17
+ - -3.027481041944081e-17
+ - 3.4907021849737763e-16
+ - 1.783608195817466e-17
+ - -1.3259705219225034e-16
+ - -9.062797586284108e-17
+ - 8.238718901028154e-17
+ - -5.194694246833013e-17
+ - -2.43801145792348e-16
+ - -1.423784629356899e-16
+ - -6.906958114817781e-17
+ - -1.0306670432410724e-16
+ - -2.924083465374953e-16
+ - 2.7214242152994607e-17
+ - -5.624828165360588e-17
+ - -2.0234905734578436e-17
+ - 9.769003034251256e-17
+ - -1.0660290144277143e-17
+ - 3.4824303788482465e-17
+ - 1.6266506745855287e-16
+ - -8.697804140995085e-17
+ - 2.1196503196671334e-18
+ - 3.2494756388379996e-16
+ - 1.0008885411891634e-16
+ - 1.0331485850787314e-16
+ - -1.5178764240348055e-16
+ - 2.5761506202198356e-16
+ - -1.69055037690525e-16
+ - 1.530284133223101e-16
+ - -8.503416697045123e-17
+ - 1.4856163801452377e-16
+ - -1.0422475718168147e-17
+ - 1.9076852877004198e-17
+ - 7.694330660391693e-17
+ - -1.4227506535912076e-17
+ - 1.1183481881716934e-16
+ - 2.216844041642114e-17
+ - -2.6684846560960673e-16
+- - 0.49598670684609947
+ - 0.5427090007273285
+ - 0.23900243823864084
+ - -1.8208860386741343
+ - 2.733653723537096
+ - -2.815567591111459
+ - 1.8800223844224402
+ - -0.4122933640623111
+ - -0.7376637151960432
+ - -0.8668157680765455
+ - 3.8017379665783073
+ - 1.9598017074159055
+ - -2.777645766751805
+ - 1.7831635891508466
+ - -0.20828602733890397
+ - -0.8590207049835037
+ - -0.9999074566785363
+ - 3.3311773110337595
+ - 1.874774400940286
+ - -2.706603767397109
+ - 1.6176816243082797
+ - -0.08490621298591204
+ - -1.6342486456824217
+ - 2.6509830935733607
+ - -2.8884522837940088
+ - 1.440528621214033
+ - 2.8579412033183265
+ - 0.8599790369027491
+ - 0.17937974336286286
+ - -1.7354891546205822
+ - 2.726117296475535
+ - -2.845890711941186
+ - 1.3679532801810592
+ - 2.965418789650068
+ - 1.1745700946733242
+ - 0.3254421078886772
+ - -1.8969372783428702
+ - 2.7643756892699876
+ - -2.814374377680981
+ - 1.8028010243715218
+ - -0.31493602713506996
+ - -1.3550330711467606
+ - 3.873524591717193
+ - 3.740229105099232
+ - -0.2247368865175055
+ - -0.4064919645774474
+ - -4.4277251644747935
+ - -4.544358441003758
+ - 1.848090851928166
+ - -0.3705989449322226
+ - -1.3027329592809176
+ - 2.5248882475749137
+ - -0.6983029143163494
+ - -0.9997598898065704
+ - 1.4592955857005507
+ - 2.370056308782176
+ - -3.2906761768649067
+ - -1.8358526679238154
+ - 2.0036005032159356
+ - -0.5731792223696857
+ - -1.188748956175963
+ - 1.5398029288406814
+ - 2.35105082873128
+ - -2.921897083216746
+ - -1.7885166252541045
+ - 1.850825584535914
+ - -0.37230910556632946
+ - -1.302564406620012
+ - 2.5264708889518523
+ - -2.9260321164373395
+ - 2.3002509211662576
+ - -0.7152941698681035
+ - -1.7523228579152264
+ - -2.245401077004997
+ - -1.0265377200554424
+ - 2.5855662220720697
+ - -2.9036175714201553
+ - 2.172250957851877
+ - -0.6638533097738697
+ - -1.7846419008437495
+ - -2.767217258737158
+ - -1.2315687603696388
+ - 2.669306711567102
+ - -2.883843316504735
+ - 2.087212119429315
+ - -0.5999567643137812
+ - -1.091653303287185
+ - 2.3539263168234315
+ - -3.8942127818943653
+ - -4.706210577253848
+ - -2.6493378308005964
+ - -2.0398772014612736
+ - 1.9039820387497841
+ - -2.826734875197935
+ - 2.755884333157975
+ - -1.7969397764395303
+ - 0.20966689527442836
+ - 1.3696120093239508
+ - -1.6925278059195805
+ - -2.892222481569102
+ - 3.157638052167082
+ - 1.8030724424979239
+ - -1.695843105331334
+ - 0.08378406325681263
+ - 1.5465169853116758
+ - -1.6919974530645956
+ - -2.6884223838898262
+ - 2.637756304597632
+ - 1.6699308578381922
+ - -1.5256363276549763
+ - -0.12139050119883184
+ - 1.6489683385097675
+ - -2.7561181109011232
+ - 2.8164828925433625
+ - -2.0426638198437437
+ - 0.43526619326983174
+ - 1.2922649926819263
+ - 2.5995602746527706
+ - 1.2604231525546967
+ - -2.795620465381956
+ - 2.7647741983593703
+ - -1.8898642012753994
+ - 0.319274854343267
+ - 1.163692939159761
+ - 2.9749329948749823
+ - 1.3735710061278736
+ - -2.8514648382871557
+ - 2.723988797527719
+ - -1.793509678674976
+ - 0.10927907482864611
+ - 1.4549729310997375
+ - -2.628250114825354
+ - 5.189196894108796
+ - 5.117819216915039
+ - 1.511925494894544
+ - 1.3552230210528795
+ - -2.012765470098854
+ - -2.1607372426478775
+ - 0.16982577352814343
+ - 1.4035075144626614
+ - -2.5984615801865263
+ - 2.8648991792014167
+ - -2.240121615527293
+ - 0.8108211135746523
+ - 0.4507992798404866
+ - 0.29007191213640177
+ - -3.5483110884147515
+ - -1.7835342572411486
+ - 2.8476345089013018
+ - -2.1550475252929715
+ - 0.6142455297496725
+ - 0.5879212142466491
+ - 0.49658863604401254
+ - -3.304539270928534
+ - -1.81135763460752
+ - 2.8051085667838773
+ - -2.0120512465726885
+ - 0.49128945810409896
+ - 1.198270395275018
+ - -2.483589285428163
+ - 2.888096489343168
+ - -1.6131969030383548
+ - -3.088562665246452
+ - -0.3520827035355984
+ - 0.11408989333471625
+ - 1.3111243508876653
+ - -2.585361346729174
+ - 2.8787728363329648
+ - -1.647642271415609
+ - -3.425504140648771
+ - -0.6840248998695511
+ - -0.06359747151772495
+ - 1.4882598855833216
+ - -2.6436671820620687
+ - 2.8643306668368105
+ - -2.1736697666417717
+ - 0.7163376585790681
+ - 0.8969595452324302
+ - -2.1688610493969733
+ - -2.5117140706979573
+ - -4.235164736271501e-17
+ - 3.8844401565490175e-16
+ - -1.1034589371457388e-16
+ - -7.950756650283132e-17
+ - 3.999418261693888e-17
+ - -2.2995621028974166e-17
+ - 9.553936074987468e-17
+ - 3.432799542095065e-17
+ - 1.0852609636695722e-16
+ - -1.3712586604597816e-16
+ - -1.6626330312315856e-17
+ - -2.7462396336760516e-17
+ - -3.337673771651466e-16
+ - -6.156808696808754e-17
+ - 1.5633713577252223e-17
+ - 8.553047533798305e-17
+ - 7.667964278366565e-17
+ - 8.883919778819516e-17
+ - 3.8877488789992295e-17
+ - 6.385834328909374e-17
+ - 2.0514079191315083e-17
+ - 1.6130021944784037e-16
+ - -1.6134157847846802e-16
+ - -8.615086079739782e-17
+ - -9.115530350334364e-17
+ - 1.8197973476166606e-16
+ - 3.6892255319865034e-17
+ - 1.2324991127040111e-17
+ - -1.2068565137148674e-16
+ - -3.0092830684679147e-16
+ - -2.4649982254080225e-16
+ - 1.1580528575742387e-16
+ - -5.009405789621136e-16
+ - -1.8607427879380355e-16
+ - -1.8065624578158122e-16
+ - 5.002788344720711e-16
+ - -4.0366413892587744e-17
+ - -5.6506775595028695e-18
+ - 2.749548356126264e-16
+ - -1.2163690907592272e-16
+ - 1.43433118216695e-16
+ - -3.247511084883186e-16
+ - 7.378451063973007e-17
+ - -7.386722870098537e-17
+ - -1.3036366453835716e-16
+ - 3.1441135083140577e-16
+ - -7.357771548659181e-17
+ - 5.254044455783694e-16
+ - 1.2920561168078292e-16
+ - 1.761894704737949e-17
+ - -2.4319110009059014e-16
+ - -1.6924115332834944e-16
+ - 1.3342423280480336e-16
+ - 1.908719263466111e-16
+ - 3.576728968679291e-16
+ - -3.1019272970738534e-18
+ - 7.383103954918618e-17
+ - 1.9893693731900313e-16
+ - -1.2159555004529505e-17
+ - 1.6010080755963848e-16
+ - 1.2060293331023143e-16
+ - 5.459392042849982e-17
+ - 1.255660169855496e-16
+ - -5.310499532590437e-17
+ - -7.256441923621435e-17
+ - -1.6300110958240254e-16
+ - 2.7627832459271124e-16
+ - 3.30872245021211e-19
+ - 2.3202416182112426e-16
+ - 9.545664268861938e-17
+ - 7.870623528442057e-17
+ - 9.024540482953531e-17
+ - 1.376428539288238e-16
+ - 2.9985297205047253e-17
+ - 1.2358078351542233e-16
+ - 4.373717488874133e-17
+ - 1.175113457708145e-16
+ - 3.596581303380564e-16
+ - 1.7056464230843428e-16
+ - 9.520848850485347e-17
+ - -4.313746894464039e-17
+ - -3.1184709093249143e-17
+ - -4.3096109914012736e-17
+ - -1.680831004707752e-16
+ - -3.6644101136099126e-17
+ - -1.2035477912646551e-17
+ - 7.237830359838992e-17
+ - 1.7006833394090247e-16
+ - 8.801201717564213e-16
+ - -3.0804206011474746e-16
+ - -5.542110104105285e-18
+ - 2.9778502051908996e-17
+ - 5.790264287871193e-18
+ - -1.254832989242943e-16
+ - 7.093073752642212e-18
+ - -5.227781471335134e-17
+ - 1.381391622963556e-17
+ - 1.9107872149974937e-16
+ - -1.5517908291494797e-16
+ - -1.981097567064501e-17
+ - 5.128519797828771e-17
+ - -4.3625505506046675e-16
+ - -2.754511439801582e-16
+ - 4.241368590865649e-17
+ - 1.9000338670343043e-16
+ - 1.8082168190409183e-16
+ - 1.7825742200517746e-17
+ - -4.532949756790591e-17
+ - 1.0869153248946782e-16
+ - -5.2608686958372554e-17
+ - -8.015380135638837e-17
+ - 8.358660089848343e-17
+ - 4.1607184811417286e-17
+ - -1.5406238908800138e-16
+ - 9.711100391372544e-17
+ - 9.545664268861938e-17
+ - 1.6154837363160628e-16
+ - 2.1672132048889322e-17
+ - 7.287461196592174e-17
+ - -1.7585859822877366e-16
+ - 3.970466940254533e-18
+ - 7.16338410470922e-17
+ - 3.866242183072851e-16
+ - 3.6602742105471475e-17
+ - 2.4418371682565377e-16
+ - 2.511320339710992e-16
+ - 6.551270451419979e-17
+ - 2.7214242152994607e-17
+ - 6.435465165662555e-17
+ - -4.9051810324394535e-17
+ - 2.3425754947501744e-16
+ - 4.235164736271501e-17
+ - 3.48077601762314e-16
+ - -2.809105360230082e-16
+ - 1.843371995074422e-16
+ - 4.5179571081880674e-17
+ - -1.4161332086907834e-16
+ - -1.222572945353375e-16
+ - -6.352747104407253e-17
+ - -7.051714722014561e-18
+ - -1.7470054537119942e-16
+ - 2.9447629806887785e-17
+ - -1.6378176128549948e-17
+ - 2.2317332926680687e-16
+ - -3.1747191909785197e-16
+ - -5.831623318498845e-17
+ - -2.1754850110144625e-17
+ - -4.384057246531046e-17
+ - -6.948317145445432e-18
+ - 1.2763396851693217e-16
+ - 3.80585799835648e-16
+ - 2.807450999004976e-16
+ - 1.1894857208512538e-16
+ - 1.3598849270371775e-16
+ - 4.618149359883554e-16
+ - -9.498101383640139e-17
+ - 1.2473883637299657e-16
+ - -9.632518233180006e-17
+ - 4.466775307786349e-17
+ - 8.172544452023912e-17
+ - -9.156889380962015e-17
+ - -2.1076562007851143e-16
+ - 1.2560737601617725e-16
+ - 2.5270367713494992e-17
+ - -4.113569186226206e-16
+ - -1.0893968667323373e-16
+ - -1.407861402565253e-16
+ - 9.760731228125725e-18
+ - -2.4997398111352496e-16
+ - 1.1383039204495352e-16
+ - 6.497503711604032e-17
+ - -1.5443462036365024e-16
+ - -7.593518023236793e-17
+ - 1.3441684953986698e-17
+ - -5.604148650046762e-17
+ - -2.455072058057386e-16
+ - -1.0081263715490023e-17
+ - -2.3933437048456164e-16
+ - 1.0405932105917087e-16
+ - 4.932529691441989e-16
+- - -3.2251026093767052
+ - -2.737415965737933
+ - 1.341015717641726
+ - 0.23932486976745326
+ - -1.81816230979064
+ - 2.760678183980407
+ - -2.8144329733474085
+ - 1.8784163111424894
+ - -0.3930562135547203
+ - -1.2941519123273588
+ - -3.101444023051338
+ - -1.437293510219728
+ - 2.795412517361477
+ - -2.7757201225306747
+ - 1.7204020214640277
+ - -0.2006994818261689
+ - -0.8959603677311626
+ - -2.836449836062536
+ - -1.4255287091084656
+ - 2.8383550561638584
+ - -2.7046649354753245
+ - 1.6181747048197161
+ - 0.009352371367951171
+ - -1.6316861655933497
+ - 2.6495242433023996
+ - -1.8764607883345992
+ - -3.3278563640837553
+ - 1.0352953109658916
+ - 0.8775919966524305
+ - 0.1345741696301994
+ - -1.7965595997810104
+ - 2.724555008922
+ - -1.8685775129980005
+ - -3.6162313532473287
+ - 0.8837444788828918
+ - 0.7509050449120088
+ - 0.3368269465423721
+ - -1.896164470014686
+ - 2.7619368887897036
+ - -2.784765746015415
+ - 1.8030799834500104
+ - -0.31417764060605136
+ - -1.3438454261064832
+ - -1.1988924883797236
+ - 1.7413051626570366
+ - 1.8825035426801415
+ - 5.14654241855418
+ - 5.195767502168741
+ - -2.8025508299259076
+ - 1.8463196161011128
+ - -0.3722028914260553
+ - -1.3859251736439515
+ - 2.522379674272568
+ - -0.6941752053993092
+ - -0.5549187287203161
+ - -0.49393572250453316
+ - 3.583732109553028
+ - 1.818732012827736
+ - -2.8560120206965482
+ - 1.9992362358236027
+ - -0.49311378732398214
+ - -0.6889424779082876
+ - -0.682385799322806
+ - 3.3238600814691504
+ - 1.8398302198214742
+ - -2.8041034698603173
+ - 1.8464076602602648
+ - -0.37083126958467894
+ - -1.3884131065688663
+ - 2.525098411374079
+ - -2.9235469712802695
+ - 1.5546027047084863
+ - 3.0130186143474544
+ - 0.5391172933162273
+ - -0.0069161426460169866
+ - -1.4961466808024895
+ - 2.618599792262019
+ - -2.900837766010639
+ - 1.581418345631149
+ - 3.3265390771623498
+ - 0.8948270154208106
+ - 0.17639090148179745
+ - -1.6692259453338982
+ - 2.668541773895157
+ - -2.8812863195057186
+ - 2.017130527469354
+ - -0.5983891373964125
+ - -1.0943106649542085
+ - 2.3705714642243687
+ - 2.7640701868431936
+ - -0.2036892023469383
+ - -0.3049643158057716
+ - -0.4451118380851766
+ - 1.9050820740719308
+ - -2.824865662598625
+ - 2.723018640700337
+ - -1.7949748197115922
+ - 0.206038032500648
+ - 0.8414878851605965
+ - 1.0751967148151227
+ - -3.8045187679865773
+ - -1.9780006870917968
+ - 2.6802953650608177
+ - -1.6918097135730399
+ - 0.0030399201507701193
+ - 0.9532464959336401
+ - 1.1783391459044168
+ - -3.3212764023980386
+ - -1.8869349827406248
+ - 2.596681618142751
+ - -1.5216033486382339
+ - -0.12230983156994635
+ - 1.7264393685080563
+ - -2.754568771265258
+ - 2.8136668431879115
+ - -1.3687709654458742
+ - -2.756604014462546
+ - -1.040956464242013
+ - -0.2858395891081198
+ - 1.8253792728430693
+ - -2.8169548798957766
+ - 2.7617176594434776
+ - -1.290810644461437
+ - -2.8433293451706385
+ - -1.366701175958572
+ - -0.4312326652449392
+ - 1.9775815808388821
+ - -2.8501801073718536
+ - 2.721573135975836
+ - -1.714149049197248
+ - 0.10810702979946375
+ - 1.4568542125671176
+ - -4.06442605921338
+ - -3.93477552761753
+ - 0.07083170817683355
+ - 0.2554224952642602
+ - 4.271820761295629
+ - 4.3920791794956715
+ - -1.7638900016518895
+ - 0.16887647902553596
+ - 1.4007394848740045
+ - -2.638923183804168
+ - 2.8629998807083608
+ - -2.238194280653347
+ - 0.6316935212713317
+ - 1.7248880221287053
+ - 2.578197407505311
+ - 1.1284084778764598
+ - -2.689856978153299
+ - 2.845318698648753
+ - -2.099974675959618
+ - 0.48907906025267966
+ - 1.3808733048152564
+ - 2.53253153184444
+ - 1.2160013208245677
+ - -2.7649210423854256
+ - 2.8027559560620148
+ - -2.0119904493479437
+ - 0.3979002707620062
+ - 1.1955546926446903
+ - -2.4820766422697593
+ - 1.891443696198421
+ - 3.268584534992476
+ - -1.512030151997657
+ - -1.1261039743471015
+ - 0.2754747050187364
+ - 1.378652005315003
+ - -2.5837126650458413
+ - 1.9932953806563534
+ - 3.771522152148564
+ - -1.4679833745347575
+ - -1.0340769731289852
+ - 0.07103015956046095
+ - 1.4874973480196463
+ - -2.640776497707785
+ - 2.8485927455487143
+ - -2.1735214140218884
+ - 0.7153124078483446
+ - -0.1587501503422573
+ - -0.3648001411341295
+ - 1.093367333672592e-15
+ - 1.4647714287089012e-15
+ - 2.7065349642735066e-16
+ - 1.059217699071223e-16
+ - -1.45211556533684e-16
+ - -1.6164918626876118e-16
+ - -3.3926812823862425e-16
+ - -1.3400325923359048e-16
+ - -2.623816903018204e-16
+ - 1.5807421505888356e-16
+ - 1.481066886776196e-16
+ - 4.870439446712227e-16
+ - 2.814895624517953e-16
+ - 1.311908451509102e-16
+ - -1.2283373602471038e-16
+ - -3.8120618529506275e-16
+ - -1.4177875699158894e-16
+ - -1.36195287856856e-16
+ - -2.4887796680189217e-17
+ - 9.376092243288567e-17
+ - 1.0629270871306404e-16
+ - -9.132073962585424e-17
+ - 9.868264707757619e-17
+ - 2.1961645263282882e-17
+ - 1.1315830779725419e-16
+ - -4.3360807710029706e-16
+ - -7.328820227219825e-17
+ - -2.1423977865123414e-17
+ - 3.1408047858638456e-16
+ - 3.4013666788180493e-16
+ - 2.450108974382068e-16
+ - 2.4484546131569616e-17
+ - 5.50240543470274e-16
+ - 1.772648052701138e-16
+ - 2.671793378546279e-17
+ - -6.713397851480372e-16
+ - -2.374008358027189e-17
+ - 1.2025138154989638e-17
+ - -2.6792380040592566e-16
+ - 3.747128174865215e-16
+ - 1.819797347616661e-17
+ - 3.568457162553761e-16
+ - 2.6089276519922493e-16
+ - 8.123689097094999e-17
+ - -3.966331037191767e-17
+ - -2.663521572420749e-16
+ - 2.2747466845208258e-17
+ - -5.258800744305873e-16
+ - 1.0157777922151179e-16
+ - 5.3187713387159673e-17
+ - 1.87563203896399e-16
+ - 1.6125886041721272e-16
+ - -2.3254114970396987e-17
+ - -2.1440521477374475e-16
+ - -4.2665975995485163e-16
+ - -7.072394237328387e-17
+ - -1.2705494208814505e-16
+ - -4.417144471033167e-17
+ - 5.39321759384574e-17
+ - -7.820992691688875e-17
+ - 3.614779276856731e-17
+ - 8.106370003019671e-18
+ - 2.2003004293910533e-17
+ - 7.940933880509066e-18
+ - -1.684139727157964e-16
+ - -2.6366382025127754e-17
+ - -2.8818972541347484e-16
+ - 3.879477072873699e-17
+ - -1.5615102013469777e-16
+ - -4.756288522179909e-19
+ - -3.441071348220595e-17
+ - 8.306961301563779e-17
+ - 1.2407709188295413e-18
+ - -3.3004506440865804e-17
+ - -3.785178483042654e-16
+ - -2.138882268908991e-16
+ - -1.919059021123024e-17
+ - -1.7215696498759886e-16
+ - -5.823351512373315e-17
+ - -1.2068565137148674e-16
+ - 7.097209655704977e-17
+ - 1.5766062475260705e-16
+ - -5.0830248641383544e-17
+ - 1.5269754107728888e-16
+ - -5.868846446063731e-17
+ - -6.005331247134981e-17
+ - -1.3665023719376017e-16
+ - -1.0544484858519719e-16
+ - -4.538740021078463e-16
+ - -3.3624891900280575e-17
+ - -1.8123527221036834e-16
+ - 2.649666297160486e-16
+ - 1.22670884841614e-16
+ - -2.249931266144235e-17
+ - -1.1865905887073182e-16
+ - -2.5146290621612038e-17
+ - -6.840783665813539e-17
+ - -1.9918509150276904e-16
+ - 2.296253380447205e-16
+ - -4.100747886731634e-17
+ - 5.595876843921232e-17
+ - 3.720658395263518e-16
+ - 1.9637267742008875e-16
+ - -1.185556612941627e-16
+ - -2.7090165061111656e-16
+ - -2.661867211195643e-16
+ - -2.6469779601696883e-17
+ - 8.933550615572698e-17
+ - -1.0670629901934055e-17
+ - 1.1241384524595646e-16
+ - 7.279706378349489e-17
+ - 6.613308997361456e-17
+ - 5.568993474013259e-17
+ - 9.859992901632089e-17
+ - -1.110076382046163e-16
+ - -8.586134758300426e-17
+ - -2.3756627192522955e-16
+ - -4.623939624171424e-17
+ - 1.0153642019088413e-16
+ - 2.297907741672311e-16
+ - 9.098986738083303e-17
+ - -1.952146245625145e-17
+ - -2.8529459326953925e-16
+ - -4.4874548231001745e-17
+ - -2.096075672209372e-16
+ - -2.605618929542037e-16
+ - -7.626605247738914e-17
+ - 5.201932077192852e-17
+ - -1.5598558401218717e-16
+ - 6.121136532892404e-18
+ - -2.0547166415817205e-16
+ - -7.138568686332629e-17
+ - -3.5254437707010035e-16
+ - 1.5807421505888356e-16
+ - -2.996306672608489e-16
+ - -5.672391050582387e-17
+ - 9.618042572460328e-17
+ - 2.1072426104788378e-16
+ - 5.360130369343619e-17
+ - 7.678304036023478e-17
+ - 1.6692504761320096e-16
+ - 1.1059404789833979e-16
+ - 1.8404768629304866e-18
+ - -3.5833464135797154e-16
+ - 1.7155725904349792e-16
+ - 2.9778502051908992e-18
+ - 7.241966262901757e-17
+ - 1.468245587281624e-16
+ - -6.758065604558236e-17
+ - -1.0356301269163905e-16
+ - -2.0974198407047706e-16
+ - 1.2953648392580413e-16
+ - -1.9356026333740845e-17
+ - -1.3499587596865412e-16
+ - -4.3327720485527585e-16
+ - 7.353635645596416e-17
+ - -8.933550615572698e-17
+ - -1.7722344623948618e-17
+ - -2.1043474783349022e-16
+ - -3.3583532869652924e-17
+ - 6.352747104407253e-17
+ - 1.1408888598637634e-16
+ - -8.164272645898382e-17
+ - -9.206520217715197e-17
+ - 2.545234744825666e-16
+ - 5.699274420490361e-17
+ - -1.94801034256238e-17
+ - -1.0174321534402239e-17
+ - 2.0183206946293872e-17
+ - -2.9302873199691005e-17
+ - -2.8868603378100666e-17
+ - 2.0539928585457366e-16
+ - 6.361018910532783e-17
+ - 5.99705944100945e-18
+ - -1.1461621362687888e-17
+ - 5.566925522481876e-17
+ - -8.09809819689414e-17
+ - 1.2949512489517648e-16
+ - -7.284979654754514e-16
+ - -6.046276687456355e-16
+- - 3.3530660210707337
+ - 2.7694240605923066
+ - -1.7267306811235021
+ - 0.8216753676418586
+ - 0.2934961377655037
+ - -1.4176774057873378
+ - 1.9629583102602461
+ - -1.927567912485247
+ - 0.9109579730750452
+ - 2.0162953468531533
+ - 1.1319587283067931
+ - 0.39998033636249364
+ - -1.4787150390519952
+ - 1.982215322334081
+ - -1.87408232692716
+ - 0.768736087723588
+ - 1.647539847870406
+ - 1.126960300597581
+ - 0.4401210750954667
+ - -1.574523888822946
+ - 2.0032990054951276
+ - -1.8378684758824584
+ - 0.9656502383704173
+ - 0.13352637848868726
+ - -1.2454664249909007
+ - 1.2259070638956902
+ - 1.9832888558886783
+ - -1.7178623400814892
+ - -1.110267969481783
+ - 0.8893603870948018
+ - 0.2759126602220339
+ - -1.3552246220872761
+ - 1.2626339578838082
+ - 2.243401496353483
+ - -1.7436304865057155
+ - -1.0582251076622164
+ - 0.7588207630878414
+ - 0.36273471778123784
+ - -1.4198559252815564
+ - 1.9779081940476377
+ - -1.9033050674113812
+ - 1.1576065684693735
+ - -0.9107167606718015
+ - -0.991558394038716
+ - -1.8375432536393355
+ - -1.8836195605016444
+ - -3.0623112047329806
+ - -3.0448070861204397
+ - 1.9696254509585913
+ - -1.9174211202788085
+ - 1.1906322364098794
+ - -0.06635010137252072
+ - -1.0790942823800471
+ - 1.8220896195634797
+ - -0.2878033198779411
+ - -0.9303478632087141
+ - -2.001795586724275
+ - -0.9115288704662591
+ - 1.9348360106735512
+ - -1.9614421596456508
+ - 1.2586217829816955
+ - -0.18614984137398893
+ - -0.7041990612056337
+ - -1.9385743021587512
+ - -0.965305818907721
+ - 1.9696989816453685
+ - -1.916480736734644
+ - 1.1889720803550965
+ - -0.06447646693631791
+ - -1.0805333366036676
+ - 1.8225832554229537
+ - -1.3166148000011217
+ - -2.321426116379781
+ - 0.800490229067725
+ - 0.6539367512459299
+ - 0.02307544291842228
+ - -1.1985997000942863
+ - 1.8796344001679586
+ - -1.3794627603846215
+ - -2.6574038056417764
+ - 0.7246334107626166
+ - 0.5746440997619937
+ - 0.16477702935788646
+ - -1.270104020053781
+ - 1.90863513418443
+ - -1.9671460721670457
+ - 1.3147702103714907
+ - -0.2901158641313986
+ - -0.24324030651380452
+ - -0.17940776601479078
+ - 1.8988792773677867
+ - 1.6304058927159435
+ - -0.7447383549157579
+ - -0.4383780142601057
+ - 1.423641649946091
+ - -2.016004668327715
+ - 1.8556538905007163
+ - -1.1484421053808387
+ - 0.10888585023987568
+ - 0.5983197228330885
+ - 2.3364208344537363
+ - 1.1131504315537393
+ - -2.02877702443966
+ - 1.8199351394192493
+ - -1.02677953698931
+ - -0.018452306585227004
+ - 0.35284763315754597
+ - 2.114423630147872
+ - 1.0934480674216125
+ - -2.0431741778289063
+ - 1.7533242329176608
+ - -0.9511090562497091
+ - -0.2797210943587418
+ - 1.3055286022593833
+ - -1.964366377562145
+ - 1.2816356060619671
+ - 2.3195168318977157
+ - -0.4530923143232617
+ - -0.46843634116261507
+ - -0.3649944338539025
+ - 1.4112769973266464
+ - -1.9991981483599097
+ - 1.266043916455386
+ - 2.499022327554669
+ - -0.31915191442885404
+ - -0.3744178180326733
+ - -0.5051164797260961
+ - 1.472411383760814
+ - -2.0165369061861327
+ - 1.8270604146380192
+ - -1.0909515394043698
+ - -0.05408718174243264
+ - 1.3544772021940414
+ - 1.252114209586089
+ - -1.0133336779966442
+ - -1.1196643072721546
+ - -3.5880948515168756
+ - -3.634599916712364
+ - 1.84599802729852
+ - -1.1276298678764136
+ - -0.008785871527426764
+ - 1.1436815818841233
+ - -1.8962235149805278
+ - 1.9811036189352684
+ - -1.001643907206715
+ - -2.1429224869444576
+ - -0.696853720360963
+ - -0.15990392170045972
+ - 1.214748037051817
+ - -1.927374046034236
+ - 1.950029973987713
+ - -0.9258599538529375
+ - -1.8819097120564325
+ - -0.7983899283649674
+ - -0.24194541569526032
+ - 1.3245291813187134
+ - -1.9713118848111506
+ - 1.9251090587890252
+ - -1.2586581752804584
+ - 0.15202418586291247
+ - 0.9508496936107741
+ - -1.1342906829963337
+ - -1.7708413553685978
+ - 1.9399787005279245
+ - 1.2079875267788018
+ - -1.188247007915998
+ - 0.010291464537505915
+ - 1.074526517078909
+ - -1.228358350945786
+ - -2.1303556733939724
+ - 2.0988171328152307
+ - 1.2152235822262067
+ - -1.0696819210634725
+ - -0.07901465161594445
+ - 1.1461676632713607
+ - -1.9215915737911664
+ - 1.966956848638562
+ - -1.429741283919075
+ - 1.5454081776607758
+ - 1.9953505371969458
+ - -3.48077601762314e-16
+ - -4.976318565119014e-16
+ - -2.0166663334042812e-16
+ - -2.3243775212740075e-17
+ - 4.231028833208736e-17
+ - -3.45347905740889e-18
+ - 3.157348398114906e-16
+ - 1.8264147925170849e-16
+ - 1.1315830779725419e-16
+ - -9.173432993213076e-17
+ - -1.6626330312315856e-17
+ - -4.484973281262516e-16
+ - -1.801599374140494e-16
+ - -1.8309642858861265e-16
+ - -5.9557004103817985e-18
+ - 1.435158362779503e-16
+ - 8.739163171622736e-17
+ - 1.7916732067898577e-16
+ - 1.546414155167885e-16
+ - -9.773138937314021e-17
+ - 2.907539853123892e-17
+ - 1.6411263353052067e-16
+ - -2.920981538077879e-17
+ - -1.861156378244312e-19
+ - -2.2710243717643375e-16
+ - 1.1183481881716934e-16
+ - 4.21034931789491e-17
+ - 2.39882377640378e-17
+ - -1.0844337830570192e-16
+ - -1.784642171583157e-16
+ - 2.2664748783952955e-17
+ - -4.301339185275744e-18
+ - -6.921847365843735e-16
+ - -6.220398206398768e-17
+ - 7.767225951872929e-17
+ - 3.278943948160201e-16
+ - 1.0041972636393755e-16
+ - 2.0803592405708643e-17
+ - 1.829723514967297e-16
+ - -3.5883094972550336e-16
+ - 9.165161187087545e-17
+ - -2.297907741672311e-16
+ - -1.3019822841584656e-16
+ - -5.045801736573468e-18
+ - 4.135903062765138e-20
+ - 6.758065604558236e-17
+ - 2.7193562637680782e-17
+ - 4.541221562916122e-16
+ - -1.45687185385902e-16
+ - -1.2407709188295414e-17
+ - -5.310499532590437e-17
+ - -1.348304398461435e-16
+ - 5.573129377076023e-18
+ - 9.977866138920895e-17
+ - 1.4666946236330872e-16
+ - 3.0605682664462024e-17
+ - 2.740682013935461e-17
+ - 2.039827390555766e-16
+ - -7.809618958266271e-17
+ - 4.7128615400208746e-17
+ - -8.156000839772852e-17
+ - 2.4112314855920754e-17
+ - -7.287461196592174e-17
+ - 2.6593856693579837e-17
+ - 1.0402313190737167e-16
+ - 4.323311170296683e-17
+ - 1.2047885621834848e-16
+ - -4.3819892949996635e-17
+ - 1.493888186270768e-16
+ - 1.2978463810957004e-16
+ - 2.4525905162197267e-17
+ - -8.735027268559971e-17
+ - -3.8339821391832827e-17
+ - 5.657915389862709e-17
+ - 2.338439591687409e-16
+ - 1.8565034872987012e-16
+ - -5.3808098846574444e-17
+ - 1.22670884841614e-16
+ - 1.4591466005435408e-16
+ - 7.916118462132474e-17
+ - -3.515517603350368e-18
+ - -4.80591935893309e-17
+ - 1.3441684953986698e-17
+ - -5.641371777611649e-17
+ - 2.192028623265523e-17
+ - 3.9167002004385854e-17
+ - 1.341686953561011e-16
+ - 1.318525896409526e-16
+ - 3.146595050151717e-16
+ - -1.3036366453835716e-16
+ - 2.100211575272137e-16
+ - -5.368815765775426e-16
+ - -2.0315555844302357e-16
+ - -5.881254155252027e-17
+ - -1.2200914035157156e-18
+ - 4.1374540264136747e-17
+ - 1.556133527365383e-16
+ - 2.0547166415817205e-16
+ - -9.363684534100272e-17
+ - 1.290401755582723e-17
+ - -3.280417363626312e-17
+ - -1.8754252438108517e-16
+ - -9.31405369734709e-17
+ - 1.7834014006643274e-16
+ - 3.087865226660452e-16
+ - 1.768512149638373e-16
+ - -4.148310771953433e-17
+ - 5.790264287871193e-18
+ - 2.1837568171399928e-16
+ - -7.841672207002701e-17
+ - 1.3648480107124955e-17
+ - -8.987317355388644e-17
+ - -1.1331857404093634e-16
+ - -5.69100261436483e-17
+ - -8.68539643180679e-18
+ - -2.1672132048889322e-17
+ - 1.4732086709569423e-16
+ - 8.29145166507841e-17
+ - 6.8573272780646e-17
+ - -1.617965278153722e-16
+ - -4.284795573024683e-17
+ - 2.431911000905901e-17
+ - 3.5312340349888747e-16
+ - 8.39588321741323e-17
+ - 3.5692843431663144e-17
+ - 7.891303043755883e-17
+ - -4.9051810324394535e-17
+ - -7.130296880207099e-17
+ - 1.0337689705381462e-16
+ - 9.471218013732165e-18
+ - 1.5823965118139417e-16
+ - 4.971355481443696e-17
+ - 4.4287249996089097e-16
+ - -1.4918202347393854e-16
+ - 1.8870057723865941e-16
+ - -3.207392825174365e-17
+ - -1.7867101231145398e-17
+ - 1.192794443301466e-16
+ - 9.405043564727923e-17
+ - -7.068258334265621e-17
+ - 3.4782944757854814e-17
+ - -1.4074478122589766e-16
+ - -4.384057246531046e-17
+ - 2.1385591514822125e-16
+ - 1.2320855223977347e-16
+ - 2.460862322345257e-17
+ - -8.065010972392019e-17
+ - -3.2756352257099896e-17
+ - 9.179636847807223e-17
+ - 7.543887186483611e-17
+ - 1.0058516248644815e-16
+ - -1.287920213745064e-16
+ - 2.7421037306132864e-17
+ - 4.7314731038033177e-17
+ - 1.5038143536214043e-16
+ - -6.458212632507764e-17
+ - -2.9116757561866574e-17
+ - -1.7370792863613579e-16
+ - 2.0811864211834174e-16
+ - 4.5494933690416516e-17
+ - 1.6295458067294645e-17
+ - 1.0381116687540496e-17
+ - 7.51849015673882e-17
+ - 6.483028050884354e-17
+ - -1.404552680115041e-16
+ - -5.074753058012824e-17
+ - 2.0844951436336294e-17
+ - -1.4409486270673742e-16
+ - -7.77549775799846e-18
+ - -6.058064011185236e-17
+ - 1.0405932105917087e-16
+ - -1.3516131209116472e-16
+ - 8.222175288777094e-17
+ - -2.442250758562814e-17
+ - 2.088631046696395e-18
+ - -9.239607442217318e-17
+ - 4.4667753077863494e-18
+ - -1.498024089333533e-16
+ - 3.4079841237184735e-16
+ - 6.562850979995721e-16
+- - -8.46301575943611
+ - -6.848142609942422
+ - 4.86816848269475
+ - -4.161263382562279
+ - 2.1093236496454764
+ - 0.783838177500178
+ - -3.277326192904432
+ - 4.712573384424602
+ - -3.229075409424153
+ - -6.330872753384725
+ - 1.0162789246293824
+ - 1.0160976028072484
+ - 0.9886928358932362
+ - -3.431465264393576
+ - 4.787345502154012
+ - -2.9770185811972385
+ - -5.4838333159798
+ - 0.5281658846767812
+ - 0.8178310560148078
+ - 1.3205912641040596
+ - -3.665152593968424
+ - 4.820960341191737
+ - -4.3483799830706875
+ - 2.450172913996663
+ - 0.24437138783006573
+ - -1.7521825441375554
+ - -2.2725508420012033
+ - 5.523263642920054
+ - 3.168550697058273
+ - -4.250946490605758
+ - 2.1491716855936307
+ - 0.5848192473938743
+ - -1.9280138250562298
+ - -2.8555022255333866
+ - 5.927658574162932
+ - 3.1846599205545103
+ - -4.073701710034026
+ - 1.9563609454038766
+ - 0.7909803822100242
+ - -3.399741205524751
+ - 4.7512453054598005
+ - -4.565555047856687
+ - 6.570596094384741
+ - 6.645302003591929
+ - 4.688125620108362
+ - 4.617972798300714
+ - 3.4929438930991896
+ - 3.32171602087138
+ - -3.3292575892592553
+ - 4.72977542950716
+ - -4.598382727690814
+ - 2.8518236413145686
+ - -0.23897081008348764
+ - -2.454841354914571
+ - 2.7773273934936022
+ - 5.020783650748187
+ - 1.8609486292645128
+ - 0.4877854520112694
+ - -3.069473394377579
+ - 4.632657527239212
+ - -4.658433443498587
+ - 2.1402855326496515
+ - 4.394105344514129
+ - 2.084456122858144
+ - 0.6824470921013496
+ - -3.326531295202972
+ - 4.72540162883634
+ - -4.5937339365742105
+ - 2.848482662621899
+ - -0.23801729867692326
+ - -2.4530343610479903
+ - 2.768359885767725
+ - 4.357610322877312
+ - -4.539738621184413
+ - -2.8476994529562965
+ - 2.67742815972454
+ - 0.10322494289768129
+ - -2.741677950195331
+ - 2.99172375658452
+ - 5.224106103159633
+ - -4.892474813126685
+ - -2.8535888076051292
+ - 2.3859346059214968
+ - 0.3152870452935035
+ - -2.910822469165731
+ - 4.618700308972997
+ - -4.706335293322888
+ - 3.2696800907979426
+ - -3.498116726906132
+ - -4.534707673112672
+ - -7.91574610129441
+ - -6.54623874746264
+ - 4.009296925834221
+ - -1.8542232952060052
+ - -0.897640531617313
+ - 3.4739533757293577
+ - -4.769803771911977
+ - 4.522363045017242
+ - -2.0958687636596767
+ - -4.686999007080823
+ - -2.900058146970146
+ - -1.063407497354494
+ - 3.6167067268405235
+ - -4.807448539131214
+ - 4.38541266453225
+ - -1.7538235844886587
+ - -3.811514531092364
+ - -2.8588316483476555
+ - -1.1524708637370489
+ - 3.835976278158895
+ - -4.8482748076930795
+ - 4.290912958923942
+ - -2.204402162784124
+ - -0.5163321669443316
+ - 3.07360785158051
+ - -2.9730003858198963
+ - -4.842804711120789
+ - 3.9856172743635
+ - 2.5995287146623665
+ - -2.0170830887003754
+ - -0.8542778470246808
+ - 3.3306264086856965
+ - -3.054803470264587
+ - -5.461155629120635
+ - 4.026513966204709
+ - 2.4679937429400285
+ - -1.7015946431412765
+ - -1.0624309778371794
+ - 3.479049500729193
+ - -4.800115385704562
+ - 4.459154502048356
+ - -2.67330180067111
+ - 1.8987766315152577
+ - 2.0972521046751047
+ - 4.334933150364166
+ - 4.454639972182404
+ - 7.47653632497122
+ - 7.442629344093098
+ - -4.7861884698253245
+ - 4.502639308534504
+ - -2.76294111050615
+ - -0.030698733098046792
+ - 2.6804082238551663
+ - -4.465495130109884
+ - 3.16652773470791
+ - 6.055670990166606
+ - -1.9130274694026632
+ - -1.4720578288920982
+ - -0.23892432537873196
+ - 2.8553724028651044
+ - -4.590933828570385
+ - 3.109446570159558
+ - 5.575858238449569
+ - -1.3809282096835818
+ - -1.2817052893958285
+ - -0.5793856136670686
+ - 3.124827666477164
+ - -4.655916922631358
+ - 4.635315789130085
+ - -3.071766837052968
+ - 0.5111366061836478
+ - 1.3224587211021155
+ - 1.4570140331586265
+ - -5.577579660021645
+ - -3.1178089704165473
+ - 4.567533484858764
+ - -2.799393312152044
+ - 0.17029580059764668
+ - 1.5380087002730596
+ - 2.061984068140175
+ - -6.357332456212558
+ - -3.326598916236828
+ - 4.437609319190342
+ - -2.622791085359912
+ - -0.03796310711649039
+ - 2.819301307471688
+ - -4.528353870591436
+ - 4.772983881662789
+ - -6.455801109249792
+ - -8.027814497453122
+ - 1.0230569816055846e-15
+ - 2.1215528350760054e-15
+ - 5.869673626676284e-16
+ - 1.402071138277382e-16
+ - -1.4732086709569423e-16
+ - 3.8877488789992295e-17
+ - -7.019454678124992e-16
+ - -5.959009132832011e-16
+ - -4.1491379525659863e-16
+ - 5.1119761855777104e-17
+ - 6.452008777913616e-17
+ - 1.3129010682441653e-15
+ - 4.7314731038033177e-17
+ - 3.573342698046652e-16
+ - 5.459392042849982e-18
+ - -4.738090548703743e-16
+ - -2.3202416182112426e-16
+ - -3.7314117432267073e-16
+ - -3.2624003359091407e-16
+ - 5.793573010321406e-16
+ - -7.229558553713462e-17
+ - -3.35504456451508e-16
+ - -5.4428484305989215e-17
+ - -5.277412308088316e-17
+ - 6.612481816748902e-16
+ - -4.4833189200374094e-17
+ - -1.1266199942972237e-16
+ - -6.402377941160434e-17
+ - 3.603198748280988e-16
+ - 3.366625093090822e-16
+ - -3.3815143441167766e-16
+ - 6.915229920943311e-17
+ - 1.6080391108030856e-15
+ - 1.25400580863039e-16
+ - -4.506479977188895e-16
+ - -5.118593630478135e-16
+ - -2.9067126725113392e-16
+ - 5.535906249511137e-17
+ - -3.242548001207868e-16
+ - 9.918722725123355e-16
+ - -1.4558378780933287e-16
+ - 4.255017070972774e-16
+ - 3.8546616544971085e-16
+ - 2.5973471234165066e-17
+ - -1.0521737391674511e-16
+ - 6.832511859688009e-17
+ - -1.4823076576950256e-16
+ - -2.2052635130663715e-16
+ - 3.7926231085556314e-16
+ - 6.518183226917858e-17
+ - -1.217816656831195e-16
+ - 2.5295183131871586e-16
+ - 1.3094269096714428e-16
+ - 1.9686898578762056e-17
+ - -2.539444480537795e-16
+ - -1.0563096422302162e-16
+ - 9.367820437163037e-17
+ - -4.987899093694757e-16
+ - 2.785117122466044e-16
+ - 3.2872157542857315e-16
+ - 3.2624003359091407e-16
+ - 9.098986738083304e-18
+ - 3.417083110456557e-16
+ - -8.463220889153875e-17
+ - -4.140866146440456e-16
+ - -4.0300239443583503e-16
+ - 7.974021105011186e-17
+ - 9.694556779121483e-17
+ - -1.435985543392056e-16
+ - -2.1432249671248945e-16
+ - 1.4177875699158894e-16
+ - 4.2153124015702285e-16
+ - 2.0795320599583113e-16
+ - -2.6502866826199007e-16
+ - -2.4716156703084467e-16
+ - -5.361784730568725e-16
+ - 2.3605666730732027e-16
+ - -4.2186211240204405e-17
+ - -2.4385284458063256e-16
+ - -1.348304398461435e-16
+ - -8.64610535271052e-17
+ - 3.143286327701505e-17
+ - 2.4815418376590826e-18
+ - 5.509022879603164e-17
+ - -1.296437589114946e-16
+ - -1.2506970861801778e-16
+ - -3.4625780441469734e-16
+ - -2.488159282559507e-16
+ - -3.176373552203626e-17
+ - 1.8661194619196302e-16
+ - -7.958718263678955e-16
+ - 2.0464448354561905e-15
+ - 6.187310981896646e-16
+ - 1.0620999065180874e-16
+ - 4.7387109341631567e-17
+ - -9.578751493364059e-17
+ - -6.562850979995721e-16
+ - -3.5304068543763216e-16
+ - -3.374896899216353e-17
+ - -8.503416697045123e-17
+ - 5.781992481745663e-17
+ - 1.5135337258189021e-16
+ - 4.3344264097778644e-17
+ - -4.741399271153955e-16
+ - -5.541696513799009e-16
+ - -2.6502866826199007e-16
+ - 6.782881022934827e-17
+ - -7.858215819253762e-17
+ - -2.966269676615157e-16
+ - 1.0753347963189359e-16
+ - -1.2143011392278446e-16
+ - 3.8827857953239114e-16
+ - 2.907953443430169e-16
+ - 1.2986735617082533e-17
+ - 1.95628214868791e-17
+ - 2.332649327399538e-16
+ - -1.7172269516600852e-16
+ - -2.2515856273693413e-16
+ - 1.4831348383075786e-16
+ - 1.7817470394392214e-16
+ - -6.989676176073084e-18
+ - 4.301339185275743e-17
+ - -7.029380845475628e-16
+ - -1.8760456292702665e-16
+ - 1.377255719900791e-16
+ - 1.164670302474663e-16
+ - 2.5882481366784236e-16
+ - 9.529120656610878e-17
+ - -3.750436897315427e-16
+ - -2.0464448354561902e-16
+ - -3.604853109506094e-16
+ - -2.812414082680294e-17
+ - -9.810362064878908e-16
+ - 2.393033512115909e-16
+ - -3.58045128143578e-16
+ - -1.3931789466924369e-16
+ - -6.245213624775359e-17
+ - -1.0068442415995453e-15
+ - -2.4426643488690907e-16
+ - 1.2995007423208065e-16
+ - -4.116050728063865e-16
+ - 3.656138307484382e-16
+ - 1.5104317985218283e-16
+ - -3.167688155771819e-16
+ - -4.2239202498196085e-16
+ - -1.7618947047379487e-16
+ - 3.148249411376823e-16
+ - 2.8256489724811425e-16
+ - -3.121779631775126e-16
+ - -1.290401755582723e-17
+ - 9.413315370853454e-17
+ - 5.585743881417458e-16
+ - 2.8641128709648583e-17
+ - 2.8827244347473014e-17
+ - -2.6469779601696886e-16
+ - 5.579333231670172e-17
+ - 1.0025429024142694e-16
+ - 3.060568266446202e-16
+ - -7.335437672120248e-16
+ - -1.3995895964397228e-16
+ - -7.845808110065466e-17
+ - -8.048467360140958e-17
+ - -3.647866501358852e-17
+ - -9.562207881112999e-17
+ - 2.1043474783349022e-16
+ - 1.141509245323178e-17
+ - -1.9753073027766298e-16
+ - 3.6495208625839576e-16
+ - -3.937379715752411e-16
+ - 4.116877908676418e-16
+ - -2.7296960214249913e-16
+ - 4.221929846470653e-16
+ - -2.2863272130965685e-16
+ - 2.0282468619800236e-16
+ - -9.132073962585424e-17
+ - 5.66618719598824e-17
+ - -5.1450634100798315e-17
+ - 2.4931223662348254e-16
+ - -9.904660654709953e-16
+ - -7.318894059869188e-16
+- - -6.237699488499979
+ - -5.063674777777217
+ - 3.5254796895504272
+ - -2.8325238557785406
+ - 1.2243049037574973
+ - 0.89317800129507
+ - -2.6117407439686495
+ - 3.48659956534342
+ - -2.273612664829711
+ - -4.524111149225446
+ - 0.3058725460212749
+ - 0.5171477657593291
+ - 1.03854338093218
+ - -2.7130867556788143
+ - 3.5178975398946566
+ - -2.0756004251136613
+ - -3.8902211688520336
+ - 0.0033989934501211755
+ - 0.38210738038070297
+ - 1.2726762090723354
+ - -2.864866370774241
+ - 3.528180208309745
+ - -2.990600490092679
+ - 1.4827210141963665
+ - 0.5075555011286771
+ - -1.4450004951107918
+ - -1.9877244906843154
+ - 3.9350769022793624
+ - 2.293484730345945
+ - -2.907715061672151
+ - 1.2543755691034366
+ - 0.7514152443998151
+ - -1.565084985319344
+ - -2.4258068386342213
+ - 4.194308447899513
+ - 2.288485084961404
+ - -2.75984575517925
+ - 1.109063298145662
+ - 0.8982548843350424
+ - -2.692272778991274
+ - 3.503664314748806
+ - -3.1812557594826347
+ - 4.3540875121626845
+ - 4.423948018575622
+ - 3.449652044407044
+ - 3.4192787333249375
+ - 3.059186814795408
+ - 2.9475201650176994
+ - -2.645994961733902
+ - 3.494372829365797
+ - -3.2112329950553735
+ - 1.7905308389684595
+ - 0.15855688122259465
+ - -2.058946154268526
+ - 2.112121418049496
+ - 3.680834567368331
+ - 1.7367820136786525
+ - 0.5669487800560321
+ - -2.474005640182155
+ - 3.4468020058125517
+ - -3.2680679558072887
+ - 1.3863762941038729
+ - 2.9392895039223927
+ - 1.8576879526819354
+ - 0.7036817684216693
+ - -2.6443147520581642
+ - 3.491375069238055
+ - -3.207858700515596
+ - 1.7879122398362381
+ - 0.15956149254863708
+ - -2.057959139589125
+ - 2.103899761363684
+ - 3.3835974231220085
+ - -3.0577767308381656
+ - -1.9619290562850318
+ - 1.6563122149701002
+ - 0.4063151431451603
+ - -2.253966563912318
+ - 2.261124166935535
+ - 4.020134037054724
+ - -3.255497917769308
+ - -1.942698071192464
+ - 1.4337087447552288
+ - 0.5588137794403755
+ - -2.36784526368254
+ - 3.4395772813277135
+ - -3.3143036419678897
+ - 2.1153272578386746
+ - -2.107813667661341
+ - -2.771667303468861
+ - -5.477000659652249
+ - -4.546765218987237
+ - 2.70712827744531
+ - -1.0321914392533138
+ - -0.9743085341464514
+ - 2.7409270876910266
+ - -3.5100207967127957
+ - 3.143165678376724
+ - -1.33640973261945
+ - -3.0910842061844668
+ - -2.4804087900246694
+ - -0.9835796480818891
+ - 2.833687493743385
+ - -3.5229568699227096
+ - 3.0229489269693754
+ - -1.0866659114964676
+ - -2.4750860629705587
+ - -2.390630515423089
+ - -1.033344278067424
+ - 2.9741827762946262
+ - -3.529329152546127
+ - 2.942068560189066
+ - -1.296037193870602
+ - -0.702788814626451
+ - 2.4767462522509063
+ - -2.2212175587321243
+ - -3.685151147739748
+ - 2.612434778619428
+ - 1.7538382125666143
+ - -1.1545914646621345
+ - -0.9435567116674743
+ - 2.647022112259882
+ - -2.267647831720157
+ - -4.121995458563416
+ - 2.5992178932781864
+ - 1.6447880663889942
+ - -0.9178794711104864
+ - -1.091003091772869
+ - 2.74425390618019
+ - -3.5206304022307515
+ - 3.0872005294207274
+ - -1.6531736791199063
+ - 0.7912005127026881
+ - 0.944345867162675
+ - 2.993255314831595
+ - 3.0988908481897615
+ - 5.691354030949182
+ - 5.683428723682778
+ - -3.5173861611943082
+ - 3.1248673979502044
+ - -1.722045893351253
+ - -0.3536714120342609
+ - 2.2122412808675014
+ - -3.356769210491491
+ - 2.260855223152438
+ - 4.389322396047441
+ - -0.9898794558995542
+ - -0.8703787202618307
+ - -0.5036547324313944
+ - 2.33036440298221
+ - -3.4257105153939555
+ - 2.2034294994450523
+ - 4.015198269906253
+ - -0.6292533965037319
+ - -0.7281662855296993
+ - -0.7475291354143784
+ - 2.510636870024725
+ - -3.4591632427113836
+ - 3.245322418911527
+ - -1.9607779728791224
+ - 0.03938315811893795
+ - 1.1509781827160395
+ - 1.4185829920671245
+ - -4.0330429247089015
+ - -2.2901119202950024
+ - 3.1829735007809736
+ - -1.7500695816378258
+ - -0.20836506528740895
+ - 1.3123533799539961
+ - 1.899082423314744
+ - -4.564416638867155
+ - -2.4222024419923818
+ - 3.0676500951068837
+ - -1.6145082974068075
+ - -0.358912012156162
+ - 2.3060537070371736
+ - -3.3918304276056044
+ - 3.3804472521786795
+ - -4.465909997197658
+ - -5.574639022482998
+ - 8.470329472543002e-16
+ - 1.6153183001935522e-15
+ - 4.614013456820788e-16
+ - 1.378082900513344e-16
+ - -1.2366350157667764e-16
+ - 2.0183206946293872e-17
+ - -5.083852044750908e-16
+ - -4.38240288530594e-16
+ - -3.6098161931814123e-16
+ - 4.49986253228847e-17
+ - 5.848166930749906e-17
+ - 9.681321889320636e-16
+ - 4.979627287569226e-17
+ - 2.5735656808056074e-16
+ - -8.271806125530276e-19
+ - -3.5601853564282306e-16
+ - -1.792707182555549e-16
+ - -2.711084457642548e-16
+ - -2.3508473008757047e-16
+ - 4.3360807710029706e-16
+ - -4.6073960119203635e-17
+ - -2.455072058057386e-16
+ - -2.340921133525068e-17
+ - -2.4649982254080222e-17
+ - 5.027603763097302e-16
+ - -5.492479267352103e-17
+ - -8.883919778819516e-17
+ - -5.1781506345819526e-17
+ - 3.0175548745934445e-16
+ - 2.842192584732203e-16
+ - -2.0878038660838416e-16
+ - 3.90429249125029e-17
+ - 1.1800558618681493e-15
+ - 1.3317607862103746e-16
+ - -3.0658415428512275e-16
+ - -4.37413107918041e-16
+ - -1.9091328537723876e-16
+ - 5.858506688406819e-17
+ - -2.785944303078597e-16
+ - 7.394167495611513e-16
+ - -1.0587911840678753e-16
+ - 3.4625780441469734e-16
+ - 2.987776372541536e-16
+ - 4.086272226011956e-17
+ - -6.460280584039146e-17
+ - 1.6626330312315856e-17
+ - -9.61183871786618e-17
+ - -1.7039920618592368e-16
+ - 2.508218412413918e-16
+ - 4.896909226313923e-17
+ - -6.628818633846826e-17
+ - 1.976961664001736e-16
+ - 9.496033432108756e-17
+ - -2.9571706898770736e-18
+ - -2.363255010064e-16
+ - -7.841672207002701e-17
+ - 5.2071019560213086e-17
+ - -3.635458792170556e-16
+ - 2.022870187998429e-16
+ - 2.487332101946954e-16
+ - 2.1787937334646746e-16
+ - 4.632211430296955e-18
+ - 2.3851752962966553e-16
+ - -4.7997155043389425e-17
+ - -2.961306592939839e-16
+ - -2.929873729662824e-16
+ - 3.716108901894477e-17
+ - 7.126160977144333e-17
+ - -1.222572945353375e-16
+ - -1.4285409178790788e-16
+ - 1.0439019330419208e-16
+ - 3.034098486844505e-16
+ - 1.4111701250154652e-16
+ - -1.9959868180904555e-16
+ - -1.6692504761320096e-16
+ - -4.0391229310964336e-16
+ - 1.6061779544248412e-16
+ - -5.608284553109528e-17
+ - -1.684139727157964e-16
+ - -1.1286879458286063e-16
+ - -5.795757284126429e-17
+ - 3.7471281748652154e-17
+ - -9.926167350636332e-19
+ - 7.275053487403878e-17
+ - -9.922031447573566e-17
+ - -8.954230130886523e-17
+ - -2.57087734381481e-16
+ - -1.862810739469418e-16
+ - -9.330597309598151e-17
+ - 1.2440796412797536e-16
+ - -6.117414220135915e-16
+ - 1.5165529350547207e-15
+ - 4.441959889409759e-16
+ - 7.47771273747937e-17
+ - 2.3616006488388937e-17
+ - -5.757177063369073e-17
+ - -4.887810239575841e-16
+ - -2.693300074472658e-16
+ - 1.6543612251060552e-18
+ - -6.650532124926343e-17
+ - 3.374896899216353e-17
+ - 1.638954986197255e-16
+ - 6.452008777913616e-17
+ - -3.389786150242307e-16
+ - -3.888162469305506e-16
+ - -1.9107872149974937e-16
+ - 3.705769144237564e-17
+ - -4.028369583133244e-17
+ - -1.8942436027464331e-16
+ - 7.752750291153251e-17
+ - -7.841672207002701e-17
+ - 2.8306120561564607e-16
+ - 1.989162578036893e-16
+ - 2.5435803836005598e-17
+ - -1.2056157427960377e-17
+ - 1.7064736036968958e-16
+ - -1.3582305658120714e-16
+ - -1.589841137326919e-16
+ - 1.5395899151143225e-16
+ - 1.3797372617384502e-16
+ - -1.2200914035157157e-17
+ - 2.787598664303703e-17
+ - -5.416378650997225e-16
+ - -1.3251433413099503e-16
+ - 6.799424635185887e-17
+ - 7.080666043453917e-17
+ - 1.7867101231145395e-16
+ - 5.707546226615891e-17
+ - -3.0489877378704595e-16
+ - -1.649398141430737e-16
+ - -2.962960954164945e-16
+ - -3.2094607767057474e-17
+ - -7.328820227219824e-16
+ - 1.8987930961154748e-16
+ - -2.8740390383154947e-16
+ - -1.3991760061334463e-16
+ - -2.4401828070314313e-17
+ - -7.312276614968764e-16
+ - -1.4885115122891733e-16
+ - 8.869444118099838e-17
+ - -2.8537731133079455e-16
+ - 2.5824578723905524e-16
+ - 1.0869153248946782e-16
+ - -2.6430488522600617e-16
+ - -2.270610781458061e-16
+ - -1.283784310682299e-16
+ - 2.426947917230583e-16
+ - 2.5328270356373707e-16
+ - -2.295426199834652e-16
+ - -1.7205356741102976e-17
+ - 3.110199103199384e-17
+ - 3.9046026839799975e-16
+ - 1.3379646408045221e-17
+ - 7.692779696743157e-18
+ - -2.756165801026688e-16
+ - 5.02305426972826e-17
+ - 4.8803656140628627e-17
+ - 1.8810087129455847e-16
+ - -5.621519442910376e-16
+ - -1.1415092453231782e-16
+ - -4.925860547753279e-17
+ - -4.044913195384305e-17
+ - -3.513449651818985e-17
+ - -6.878006793378425e-17
+ - 2.243313821243811e-16
+ - 1.9025154088719633e-17
+ - -1.2788212270069808e-16
+ - 2.421984833555265e-16
+ - -2.7942161092041275e-16
+ - 2.95882505110218e-16
+ - -1.9852334701272662e-16
+ - 3.4146015686188977e-16
+ - -1.4177875699158894e-16
+ - 1.593149859777131e-16
+ - -6.5843576759221e-17
+ - 5.376673981594679e-17
+ - -4.1028158382630167e-17
+ - 1.951319065012592e-16
+ - -7.892130224368436e-16
+ - -4.764560328305439e-16
+- - 0.31240509384439585
+ - 0.08603536318496467
+ - -0.8233648172290469
+ - 2.5645838556538316
+ - -3.4739150330700976
+ - 3.2136249719401153
+ - -1.8955050116483096
+ - -0.038464056170726055
+ - 1.212793969766899
+ - 1.6941514142682674
+ - -4.59308492989575
+ - -2.4199415242398827
+ - 3.1482570680956306
+ - -1.7637785912982464
+ - -0.2859838880552956
+ - 1.3292395662078542
+ - 1.7613448431152747
+ - -3.9861442176197297
+ - -2.2985993687816455
+ - 3.0281352535980255
+ - -1.544856783251368
+ - -0.43621530149259036
+ - 2.3642796133524664
+ - -3.4125807374925494
+ - 3.356830866033274
+ - -1.5136796203435545
+ - -3.130757622063887
+ - -1.6004584520929073
+ - -0.5477227012207959
+ - 2.4744971751231692
+ - -3.468189071257943
+ - 3.2716042898442455
+ - -1.4094032802359404
+ - -3.1957298264052736
+ - -2.0145164962645765
+ - -0.7217584997439153
+ - 2.645076475889638
+ - -3.4939752172511
+ - 3.2114451337008845
+ - -1.7913730454379269
+ - -0.15747113819938324
+ - 2.0579100347379558
+ - -5.266961892081644
+ - -5.117647295071607
+ - -0.23213408647920375
+ - -0.010257825111416485
+ - 4.8533447579589275
+ - 5.009116746194572
+ - -1.8522797956458934
+ - -0.08951891184030301
+ - 1.9996836294518638
+ - -3.3063921497854247
+ - 3.449204698416533
+ - -2.475030633568288
+ - 0.5664849494435361
+ - 1.7365722793858056
+ - 3.684913467492812
+ - 2.1141716978378184
+ - -2.062178524668375
+ - 0.16087039069645032
+ - 1.872668871368343
+ - -2.0436652873328516
+ - -3.239839113628763
+ - 3.2261123407942183
+ - 2.037672833159882
+ - -1.855770856291042
+ - -0.08705464376688474
+ - 1.9989817281010662
+ - -3.3078741313235485
+ - 3.4522718941934945
+ - -2.478649606595663
+ - 0.5502412419654079
+ - 1.6051516296428445
+ - 3.1306226849384307
+ - 1.513156697793657
+ - -3.358341073458022
+ - 3.3907426659664544
+ - -2.295924516582555
+ - 0.46586229628874487
+ - 1.5513858928653759
+ - 3.7836574468254067
+ - 1.755669595352368
+ - -3.42732348750767
+ - 3.3438246572506105
+ - -2.1787605699068697
+ - 0.19287807087959422
+ - 1.7620470228861556
+ - -3.148975205415126
+ - 4.965386485370149
+ - 6.033314713881241
+ - 3.9652402806701312
+ - 3.100962020419312
+ - -2.696590546776552
+ - 3.5065529443116006
+ - -3.1811854228612835
+ - 1.726502034040511
+ - 0.2334947979154651
+ - -2.1205728841407683
+ - 2.2191312061565673
+ - 3.9093471190916724
+ - -3.4177771725769537
+ - -2.0144526355493424
+ - 1.5931899824802214
+ - 0.38710322061037733
+ - -2.3136548096219447
+ - 2.1822296952595455
+ - 3.5760578697695475
+ - -2.8087928111364167
+ - -1.8479296717788078
+ - 1.3680236263337626
+ - 0.6323929890816216
+ - -2.4256076629390853
+ - 3.4604345999741275
+ - -3.293169544484441
+ - 2.0588710686307286
+ - -0.19818176583881444
+ - -1.0109571297158584
+ - -3.4897059533789694
+ - -1.7627701111638583
+ - 3.488277404495043
+ - -3.1952109762464587
+ - 1.8524357006582892
+ - -0.05265663174908445
+ - -0.793684900361586
+ - -3.9369143188232245
+ - -1.882311682921389
+ - 3.5196010492580236
+ - -3.1261179666833936
+ - 1.7219113334484204
+ - 0.3551769118583204
+ - -2.2146205554903227
+ - 3.359191512809008
+ - -6.322975318238593
+ - -6.259805335091957
+ - -2.234590798942117
+ - -2.0600984695931537
+ - 1.5817491310712017
+ - 1.7584830930514301
+ - 0.2825089173647043
+ - -2.1585080355212467
+ - 3.3336841840257923
+ - -3.401768177984638
+ - 2.33350071992122
+ - -0.5079908138183236
+ - -0.8677287489256496
+ - -0.9845401060509638
+ - 4.389194878414176
+ - 2.2603409738726783
+ - -3.3582051472522014
+ - 2.215672426919953
+ - -0.2616666994867294
+ - -1.0234472891097384
+ - -1.1772988916701386
+ - 4.045140124846941
+ - 2.2729714222495225
+ - -3.2730235415750606
+ - 2.017286419638078
+ - -0.11081279034565777
+ - -1.9304106962983671
+ - 3.230872196989296
+ - -3.486602683202437
+ - 1.7629568066003596
+ - 3.4893172318041277
+ - 1.006974778455949
+ - 0.19610063765542415
+ - -2.055257358652835
+ - 3.323161003760662
+ - -3.438353557832847
+ - 1.780733735643803
+ - 3.8226793375380144
+ - 1.4812937964330106
+ - 0.4278775458950829
+ - -2.2515632152871214
+ - 3.372120795265767
+ - -3.40032938860062
+ - 2.24040345890206
+ - -0.3898916589287558
+ - -1.5895207929758501
+ - 3.243551570508456
+ - 3.8147707718320283
+ - 8.734200087947418e-16
+ - 4.1507923137910924e-16
+ - 1.373119816838026e-16
+ - 1.8189701670041076e-16
+ - -8.740197147388427e-17
+ - -1.4880979219828968e-16
+ - 8.519960309296184e-17
+ - 1.2353942448479468e-16
+ - -3.2276587501819135e-16
+ - 1.329692834678992e-16
+ - 1.1580528575742387e-16
+ - -5.161607022330892e-17
+ - 2.312383402391989e-16
+ - -2.8682487740276235e-17
+ - -7.46116912522831e-17
+ - -1.4690727678941772e-16
+ - -5.69100261436483e-17
+ - 6.220398206398768e-17
+ - 7.804449079437815e-17
+ - -1.0058516248644815e-16
+ - 9.950982769012922e-17
+ - 3.2756352257099896e-17
+ - 1.4301952791041848e-16
+ - 9.930303253699096e-17
+ - -7.213014941462401e-17
+ - -4.605741650695258e-16
+ - -1.670904837357116e-17
+ - -7.444625512977249e-18
+ - 3.293419608879879e-16
+ - 3.146595050151717e-16
+ - 4.638828875197379e-16
+ - -8.03399169942128e-17
+ - -1.5013328117837452e-16
+ - 2.4860913310281247e-16
+ - 3.7289302013890483e-16
+ - -6.200545871697494e-16
+ - 2.0472720160687432e-16
+ - 7.345363839470886e-17
+ - -2.3355444595434736e-16
+ - 7.4859845436049e-18
+ - 6.352747104407253e-17
+ - 2.5728418977696235e-16
+ - 1.7544500792249715e-16
+ - 1.3307268104446833e-16
+ - 6.352747104407253e-17
+ - -4.949021604904765e-16
+ - 1.2597960729182611e-16
+ - -4.931650812041151e-16
+ - -2.012530430341516e-16
+ - -2.067951531382569e-17
+ - 2.5762540177964047e-16
+ - 7.366043354784711e-17
+ - -7.915601474249628e-17
+ - -3.270672142034671e-16
+ - -2.815722805130506e-16
+ - -2.8124140826802937e-18
+ - -1.4500476138054575e-16
+ - 9.711100391372544e-17
+ - -5.98878763488392e-17
+ - -1.6675961149069035e-16
+ - -1.9968139987030086e-16
+ - -6.915229920943311e-17
+ - -1.890934880296221e-16
+ - 1.078643518769148e-16
+ - 8.900463391070577e-17
+ - 1.5025735827025748e-16
+ - -3.9506146055532597e-16
+ - -3.010420441810175e-17
+ - -1.7850557618894335e-16
+ - 1.292314610749252e-16
+ - -1.9356026333740845e-16
+ - -2.3425754947501744e-16
+ - -1.8818358935581377e-16
+ - 6.476824196290207e-17
+ - -1.5402103005737373e-16
+ - 1.0695445320310647e-16
+ - -1.7526923204232963e-16
+ - -2.2888087549342276e-16
+ - 1.134064619810201e-16
+ - -1.267654288737515e-16
+ - 6.356883007470018e-17
+ - -3.908428394313056e-18
+ - -2.1961645263282882e-17
+ - 2.549267250311862e-16
+ - 1.1787323728880642e-18
+ - 2.0844951436336294e-17
+ - -3.6023715676684355e-17
+ - -9.429858983104514e-18
+ - -7.394994676224066e-16
+ - -1.462455322993753e-16
+ - 3.154866856277247e-16
+ - -4.764560328305439e-16
+ - -1.2271224387224166e-16
+ - -5.558653716356346e-17
+ - -1.8379953210928272e-16
+ - 1.5766062475260705e-16
+ - 1.9455288007247208e-16
+ - -2.729696021424991e-18
+ - 2.3467113978129395e-16
+ - -1.819797347616661e-17
+ - -1.9356026333740845e-17
+ - 4.0101716096570777e-16
+ - 3.500214762018136e-16
+ - 1.2126467780027386e-16
+ - 1.3844160020782032e-16
+ - 3.259091613458929e-17
+ - -1.1547441351240266e-16
+ - 1.728393889929551e-16
+ - 2.0265925007549176e-16
+ - 2.283018490646356e-17
+ - 1.6026624368214909e-16
+ - -1.7751295945387971e-16
+ - -1.6167245072348923e-16
+ - 1.464109684218859e-16
+ - -1.7221900353354034e-16
+ - -1.5071230760716162e-16
+ - -1.4475660719677984e-16
+ - 7.597653926299558e-17
+ - 2.0894582273089477e-16
+ - 1.3052910066086777e-16
+ - 2.779326858178173e-17
+ - -1.1762508310504054e-16
+ - 1.348304398461435e-17
+ - 7.17165591083475e-17
+ - -3.513863242125261e-16
+ - -3.8248831524451995e-16
+ - -2.0150119721791752e-16
+ - -1.1307558973599888e-16
+ - -1.1257928136846707e-16
+ - -2.2664748783952955e-17
+ - -1.2664135178186854e-16
+ - -9.082443125832243e-17
+ - -2.5725317050399158e-17
+ - 1.3214210285534617e-16
+ - -1.9068581070878668e-16
+ - -1.7932241704383946e-16
+ - 2.1409502204403736e-16
+ - 4.294721740375319e-16
+ - 2.484850560109295e-16
+ - -4.369581585811368e-17
+ - 3.664410113609912e-16
+ - -1.5244938689352298e-16
+ - -6.236941818649829e-17
+ - -3.2855613930606254e-16
+ - 6.485096002415736e-16
+ - 1.0683037611122351e-16
+ - 4.235164736271501e-17
+ - 2.2532399885944474e-16
+ - 6.815968247436948e-17
+ - -1.2262952581098635e-16
+ - -3.963849495354108e-16
+ - -3.1912628032295803e-16
+ - -7.16338410470922e-17
+ - -1.8760456292702665e-16
+ - -5.761312966431838e-16
+ - 9.260286957531144e-17
+ - -2.6205081805679917e-16
+ - -2.959652231714733e-16
+ - 7.833400400877171e-17
+ - -2.2333876538931744e-17
+ - 1.5373151684298017e-16
+ - 2.2540671692070004e-16
+ - -7.705187405931452e-17
+ - -2.862044919433476e-17
+ - 3.515517603350367e-16
+ - 5.5338382979797545e-17
+ - 1.7205356741102973e-16
+ - -2.365736551901659e-16
+ - 2.3177600763735835e-16
+ - -2.1117921038478794e-16
+ - 1.2076836943274203e-17
+ - 1.981924747677054e-16
+ - 2.1680403855014853e-16
+ - -5.405625303034035e-17
+ - 3.970466940254532e-17
+ - 1.0976686728578676e-16
+ - -3.788487205492866e-17
+ - 4.284795573024683e-17
+ - -4.738090548703743e-16
+ - 1.2722037821065566e-16
+- - 1.2411203314949908
+ - 0.7812733104724684
+ - -1.5747566194719658
+ - 3.834690878484998
+ - -4.851206047906904
+ - 4.221645386078715
+ - -2.216216012154388
+ - -0.5098956712503854
+ - 1.936122693727617
+ - 2.881643151681402
+ - -6.24165302416508
+ - -3.3352724253911883
+ - 4.114292413825719
+ - -2.0250497747395286
+ - -0.8482020625326592
+ - 2.0673362784644462
+ - 2.8891056226066762
+ - -5.382443592448247
+ - -3.153701686633776
+ - 3.9213521025877096
+ - -1.7095303266221205
+ - -1.0523914082623333
+ - 3.5850091942728306
+ - -4.802339705907058
+ - 4.465647305799682
+ - -1.8539328510801758
+ - -3.9659862228097476
+ - -2.6777723777074334
+ - -1.0407694185263547
+ - 3.7229374318605735
+ - -4.847426138209754
+ - 4.318545458241603
+ - -1.6973685201886712
+ - -3.9961678179849613
+ - -3.2708762665321207
+ - -1.2750917795356425
+ - 3.9338282915057
+ - -4.8631545380826156
+ - 4.218029500059436
+ - -2.065039270397233
+ - -0.6728178860662896
+ - 3.196401720515177
+ - -7.683254080636553
+ - -7.4908363291720885
+ - -0.7665313681261916
+ - -0.4629697324536913
+ - 6.151043815168713
+ - 6.376037211818187
+ - -2.1533517663736683
+ - -0.5798495642366684
+ - 3.1217220228669755
+ - -4.699399825853644
+ - 4.636210822864074
+ - -3.0712832252377593
+ - 0.4874286404887522
+ - 1.8612024965083886
+ - 5.026278304290957
+ - 2.7800370033054946
+ - -2.459345271333694
+ - -0.23553162459601046
+ - 2.9576917402501763
+ - -2.941405799324765
+ - -4.76042586221308
+ - 4.111818345087255
+ - 2.658789692436988
+ - -2.1582894462314295
+ - -0.5761288009275968
+ - 3.120328109147665
+ - -4.701051387391685
+ - 4.640219545419941
+ - -3.0763035965115706
+ - 0.4665769310475375
+ - 1.7228065399805974
+ - 4.628527491302541
+ - 2.3007257651159643
+ - -4.751903143581623
+ - 4.52473718418254
+ - -2.8038478921280245
+ - 0.3319990650323445
+ - 1.5666044208836205
+ - 5.536209030636233
+ - 2.6256345253517943
+ - -4.8158053751355325
+ - 4.441361503179987
+ - -2.6306981942772096
+ - -0.19136666553506892
+ - 2.8144031256615585
+ - -4.529513701219917
+ - 6.981013169368754
+ - 8.510103019927374
+ - 6.07317484720523
+ - 4.784060890627322
+ - -3.9964484915246143
+ - 4.870041247006805
+ - -4.167183672641118
+ - 1.9710654293798053
+ - 0.7762984667549652
+ - -3.275998345079492
+ - 3.1717541435189744
+ - 5.6843189837124894
+ - -4.288805789429788
+ - -2.590672448919008
+ - 1.77888585642138
+ - 0.9853957955714479
+ - -3.520901529435637
+ - 3.0891276950430466
+ - 5.153410932554482
+ - -3.478359910792456
+ - -2.3593008771299044
+ - 1.4564165279716055
+ - 1.3174166062941164
+ - -3.6614342504174195
+ - 4.842433592000015
+ - -4.354049912286515
+ - 2.4545206384775855
+ - 0.02417511435028989
+ - -0.880927940073461
+ - -5.054861403196442
+ - -2.610414070086704
+ - 4.861449768177338
+ - -4.190161399773789
+ - 2.1534301507716784
+ - 0.22675815819046913
+ - -0.5301931433027446
+ - -5.656938633378781
+ - -2.7574927344948654
+ - 4.872651871037256
+ - -4.077507057501385
+ - 1.9644267035419616
+ - 0.9419832900674664
+ - -3.395629313175879
+ - 4.752650926305848
+ - -8.64107852740937
+ - -8.575913381909542
+ - -3.4102525624446023
+ - -3.188532130670407
+ - 1.388084382772214
+ - 1.627748010000945
+ - 0.8434425293853324
+ - -3.3248128182659884
+ - 4.727255839655287
+ - -4.546534157502349
+ - 2.8600626283097377
+ - -0.24496766426557373
+ - -1.4685475408481314
+ - -1.905835609598417
+ - 6.056217893951029
+ - 3.1661836858944588
+ - -4.468013593855386
+ - 2.6854570913409423
+ - 0.09666853695269853
+ - -1.6712522402722172
+ - -2.1169536145592156
+ - 5.544310742034598
+ - 3.1645570605846403
+ - -4.3209719080627105
+ - 2.3939225924113403
+ - 0.3047418553535241
+ - -3.0326643523676244
+ - 4.6197958162726325
+ - -4.712701941594072
+ - 2.229122775392762
+ - 4.52486884151616
+ - 1.8893300477352697
+ - 0.5655748476858032
+ - -3.19303850447155
+ - 4.716728115068847
+ - -4.61501574764926
+ - 2.231927934398614
+ - 4.911853530864872
+ - 2.5995400670146283
+ - 0.8958644060893375
+ - -3.4429394907473476
+ - 4.765027901464501
+ - -4.543901884615309
+ - 2.7220416681866966
+ - -0.08090776445988353
+ - -2.5901510107196026
+ - 4.965964250299016
+ - 5.8828437361473425
+ - 9.88728986184634e-16
+ - 2.7098436867237187e-16
+ - 1.2373587988027603e-16
+ - 2.131644438549152e-16
+ - -1.0252903692594777e-16
+ - -1.9091328537723876e-16
+ - 1.6758679210324338e-16
+ - 2.0621612670946977e-16
+ - -3.604853109506094e-16
+ - 1.7759567751513502e-16
+ - 1.3863547066388744e-16
+ - -1.8462671272183575e-16
+ - 3.2218684858940423e-16
+ - -6.768405362215149e-17
+ - -1.0025429024142694e-16
+ - -1.5683344414005402e-16
+ - -6.02445979880027e-17
+ - 1.0265311401783072e-16
+ - 1.3813916229635562e-16
+ - -1.8561932945689939e-16
+ - 1.316044354571867e-16
+ - 5.616556359235058e-17
+ - 2.03817302933066e-16
+ - 1.3495451693802647e-16
+ - -1.5253210495477828e-16
+ - -6.048344638987737e-16
+ - -1.2738581433316625e-17
+ - -4.4667753077863494e-18
+ - 3.95888641167879e-16
+ - 4.0035541647566535e-16
+ - 6.405686663610645e-16
+ - -1.1996186833550284e-16
+ - -2.7925617479790214e-16
+ - 3.1920899838421333e-16
+ - 5.33035186729171e-16
+ - -7.921081545807792e-16
+ - 2.8521187520828394e-16
+ - 8.263534319404745e-17
+ - -2.765678378071048e-16
+ - -7.390858773161302e-17
+ - 7.560430798734672e-17
+ - 3.1759599618973493e-16
+ - 1.5501364679243736e-16
+ - 1.7087483503814167e-16
+ - 1.0290126820159663e-16
+ - -6.744003534144834e-16
+ - 1.8011857838342175e-16
+ - -6.539689922844236e-16
+ - -3.060568266446202e-16
+ - -3.374896899216353e-17
+ - 3.6420762370709804e-16
+ - 8.689532334869554e-17
+ - -1.2498699055676248e-16
+ - -4.403909581232319e-16
+ - -3.4907021849737763e-16
+ - 6.121136532892404e-18
+ - -1.9165774792853649e-16
+ - 1.4409486270673742e-16
+ - -9.363684534100272e-17
+ - -2.5824578723905524e-16
+ - -2.9397998970134604e-16
+ - -8.801201717564213e-17
+ - -2.8818972541347484e-16
+ - 1.4459117107426924e-16
+ - 1.5501364679243736e-16
+ - 2.4697545139302024e-16
+ - -5.370056536694256e-16
+ - -4.7531865948828347e-17
+ - -2.3723539968020834e-16
+ - 1.7358385154425283e-16
+ - -2.7363134663254155e-16
+ - -3.5502591890775943e-16
+ - -2.746239633676052e-16
+ - 1.0447291136544738e-16
+ - -1.859502017019206e-16
+ - 1.91595709382595e-16
+ - -2.6041713634700694e-16
+ - -3.267363419584459e-16
+ - 1.465764045443965e-16
+ - -1.531111313835654e-16
+ - 9.036948192141826e-17
+ - -2.2850864421777386e-17
+ - -1.8611563782443123e-17
+ - 3.2839070318355194e-16
+ - 1.598526533758726e-17
+ - 3.8877488789992295e-17
+ - -2.0974198407047705e-17
+ - -9.760731228125725e-18
+ - -1.0025429024142695e-15
+ - -1.343341314786117e-16
+ - 5.105358740677287e-16
+ - -7.894611766206095e-16
+ - -2.126681354873834e-16
+ - -5.947428604256269e-17
+ - -2.365736551901659e-16
+ - 2.1093105620102203e-16
+ - 3.0853836848227927e-16
+ - 1.522012327097571e-17
+ - 3.1730648297534137e-16
+ - -3.970466940254533e-18
+ - -3.7719435932418056e-17
+ - 5.302641316771184e-16
+ - 4.712447949714599e-16
+ - 1.892589241521327e-16
+ - 2.0094285030444422e-16
+ - 4.0697286137608955e-17
+ - -1.546414155167885e-16
+ - 2.2830184906463564e-16
+ - 2.7098436867237187e-16
+ - 2.6304343479186277e-17
+ - 2.2606846141074246e-16
+ - -2.7402425742350424e-16
+ - -2.384761705990379e-16
+ - 1.9703442191013117e-16
+ - -2.2598574334948716e-16
+ - -2.3094882702480533e-16
+ - -1.797463471077729e-16
+ - 1.1803867341131705e-16
+ - 2.248276904919129e-16
+ - 1.6709048373571157e-16
+ - 3.8050308177439267e-17
+ - -1.6080391108030856e-16
+ - 5.1119761855777104e-17
+ - 1.0790571090754245e-16
+ - -4.830734777309682e-16
+ - -5.221164026434711e-16
+ - -2.8769341704594303e-16
+ - -1.5873595954892599e-16
+ - -1.0368708978352201e-16
+ - 2.39882377640378e-18
+ - -1.3507859402990942e-16
+ - -1.1398548840980721e-16
+ - 2.4649982254080222e-17
+ - 1.797463471077729e-16
+ - -2.1874791298964814e-16
+ - -2.141984196206065e-16
+ - 2.8947185536293203e-16
+ - 6.306424990104282e-16
+ - 3.41791029106911e-16
+ - -6.778745119872062e-17
+ - 5.254251250936832e-16
+ - -2.336785230462303e-16
+ - -8.644037401179138e-17
+ - -4.016789054557502e-16
+ - 8.81112788491485e-16
+ - 1.5790877893637296e-16
+ - 2.431911000905901e-17
+ - 2.5013941723603557e-16
+ - 1.2440796412797536e-16
+ - -1.6363183479947422e-16
+ - -5.469318210200619e-16
+ - -4.883674336513075e-16
+ - -1.0405932105917087e-16
+ - -2.509665978485886e-16
+ - -7.408126168448346e-16
+ - 1.1828682759508296e-16
+ - -3.570111523778867e-16
+ - -3.8000677340686086e-16
+ - 1.7652034271881608e-16
+ - -1.555099551599692e-17
+ - 2.1746578304019095e-16
+ - 3.2905244767359436e-16
+ - -1.0265311401783072e-16
+ - -3.0605682664462024e-17
+ - 4.54618464659144e-16
+ - 7.150976395520924e-17
+ - 2.546061925438219e-16
+ - -3.3500814808397616e-16
+ - 3.5916182197052457e-16
+ - -3.2301402920195726e-16
+ - 3.705769144237564e-17
+ - 2.392206331503356e-16
+ - 2.9977025398921723e-16
+ - -9.380228146351333e-17
+ - 6.402377941160434e-17
+ - 1.5683344414005402e-16
+ - -4.235164736271501e-17
+ - 4.7811039405564993e-17
+ - -5.059036626374317e-16
+ - 1.5782606087511766e-16
+- - 0.8562741305237708
+ - 0.8350742984539232
+ - 0.03597855503132694
+ - -1.6550326491485619
+ - 2.662000668652618
+ - -2.8644156323935803
+ - 2.0306790417169274
+ - -0.612639786482091
+ - -0.6057572565154601
+ - -0.6047257189160613
+ - 3.7815530775627306
+ - 1.9286153231954184
+ - -2.8349621209113387
+ - 1.9397010337461014
+ - -0.4106158755888878
+ - -0.7384804389049554
+ - -0.7743785516327037
+ - 3.3287870633948606
+ - 1.8514504079316425
+ - -2.7774600909171094
+ - 1.7831401643747575
+ - -0.28787234433939446
+ - -1.4593862205151316
+ - 2.5644502157154725
+ - -2.914960901427442
+ - 1.5231033878366431
+ - 2.970962660808945
+ - 0.6319501882643411
+ - 0.04669337232384339
+ - -1.5653915931060054
+ - 2.65269152014106
+ - -2.886562542173542
+ - 1.457517832067895
+ - 3.1037021330953434
+ - 0.9313488561641259
+ - 0.19294856107586084
+ - -1.7352397529700792
+ - 2.699366778591902
+ - -2.863519581054687
+ - 1.9581642557011423
+ - -0.5163290785741453
+ - -1.1693352072318866
+ - 3.6192796168371038
+ - 3.4820374760039448
+ - -0.4239903784426146
+ - -0.603870522312195
+ - -4.601699916401249
+ - -4.711784651528589
+ - 2.00075173233224
+ - -0.5714228556548933
+ - -1.1153362438254415
+ - 2.4206421091285577
+ - -2.9296307719446837
+ - 2.4157548195411933
+ - -0.8514585558706228
+ - -2.109746153576698
+ - -2.242698310093862
+ - -0.9288381492176003
+ - 2.4871571682192024
+ - -0.7711595255306354
+ - -0.99818230138397
+ - 1.458650815656921
+ - 2.179603935146381
+ - -3.0273400601134925
+ - -1.8280039922695432
+ - 2.0033744559126494
+ - -0.5729562054429367
+ - -1.115362231838999
+ - 2.422379373213744
+ - -2.932396484569843
+ - 2.4186077187576656
+ - -0.8364286455834076
+ - -1.9467485002043803
+ - -2.067173579467671
+ - -0.9124573077764715
+ - 2.489002823176757
+ - -2.924297137008879
+ - 2.3019824146654093
+ - -0.7941110752176148
+ - -2.0158512801785338
+ - -2.5772146300916985
+ - -1.118463801643801
+ - 2.585594134194032
+ - -2.9133089474220357
+ - 2.223624029476632
+ - -0.7974631067144444
+ - -0.8984321155764817
+ - 2.2310218727510005
+ - -3.769806697461423
+ - -4.542900679008694
+ - -2.330983789082409
+ - -1.7757067749459308
+ - 1.7471643659770706
+ - -2.7642805590844604
+ - 2.811306651871604
+ - -1.9532637694036405
+ - 0.41334065329786746
+ - 1.187942855728619
+ - -1.614162122485396
+ - -2.711638155724199
+ - 3.2989377916086204
+ - 1.8587346561216513
+ - -1.8576381862905682
+ - 0.2882500087151197
+ - 1.371638867344329
+ - -1.6280675888795715
+ - -2.5435801702718206
+ - 2.7742067482324795
+ - 1.728557411543075
+ - -1.69562749577444
+ - 0.08362136236173118
+ - 1.4787401231455561
+ - -2.678462648775855
+ - 2.8561674281522587
+ - -2.183558195230634
+ - 0.5633712962854369
+ - 1.504440138975763
+ - 2.4468382875807895
+ - 1.1582152830586288
+ - -2.7261516056097674
+ - 2.818371398055531
+ - -2.0407438576547823
+ - 0.45013998015489415
+ - 1.4012105734551576
+ - 2.8227232411261176
+ - 1.2775913684536964
+ - -2.7955984412528667
+ - 2.7861780437117236
+ - -1.9500387422693053
+ - 0.31363712552545564
+ - 1.276484138740064
+ - -2.530025911298345
+ - 5.1400038552678975
+ - 5.059810109132794
+ - 1.3375788152365595
+ - 1.174788392667565
+ - -2.3405000180854683
+ - -2.487857327177402
+ - 0.3739487244929153
+ - 1.2228753619888637
+ - -2.496283132693701
+ - 2.884365827700516
+ - -2.3655917438971423
+ - 1.0052469219156759
+ - 0.31981915530707555
+ - 0.03614874727129056
+ - -3.4887427081361158
+ - -1.7320441678710436
+ - 2.8757460390548437
+ - -2.287444422561311
+ - 0.8127442288021626
+ - 0.46017011007054187
+ - 0.26416272059511836
+ - -3.265976742200218
+ - -1.7680685804662706
+ - 2.847385093275799
+ - -2.15492463230909
+ - 0.6918408478403085
+ - 1.010809391181088
+ - -2.3676883859272255
+ - 2.8848321503540557
+ - -1.6786563381239477
+ - -3.168518329640623
+ - -0.11871922038654253
+ - 0.24638800651613157
+ - 1.1271510649698202
+ - -2.481614880308899
+ - 2.8897979130826488
+ - -1.722407348846646
+ - -3.5330188751937595
+ - -0.4197218067329722
+ - 0.0764534089688219
+ - 1.310877680796386
+ - -2.547679463818274
+ - 2.8841104167492904
+ - -2.304608573482411
+ - 0.9128512835569302
+ - 0.7018842838967204
+ - -1.9092798297902238
+ - -2.1878042431578466
+ - -2.269783600845508e-16
+ - 2.474924392758659e-16
+ - -1.1448179677733903e-16
+ - -4.5784446904810076e-17
+ - 4.350970022028925e-17
+ - 3.135014521575975e-17
+ - 1.1870041790135947e-16
+ - 2.2333876538931744e-17
+ - 1.1894857208512538e-16
+ - -1.5290433623042714e-16
+ - -1.2573145310806019e-17
+ - -6.931773533194372e-17
+ - -3.24585672365808e-16
+ - -9.29751008509603e-17
+ - 9.760731228125725e-18
+ - 5.732361644992482e-17
+ - 6.610465564005805e-17
+ - 1.0943599504076555e-16
+ - 2.936491174563248e-17
+ - 9.438130789230045e-17
+ - -4.549493369041652e-18
+ - 1.1779051922755114e-16
+ - -1.349028181497419e-16
+ - -6.413751674583038e-17
+ - -7.097209655704977e-17
+ - 2.6171994581177796e-16
+ - 2.845501307182415e-17
+ - 2.2995621028974166e-17
+ - -1.3915762842556154e-16
+ - -2.718115492849249e-16
+ - -2.506357256035674e-16
+ - 6.88214269644119e-17
+ - -3.570111523778867e-16
+ - -1.5766062475260705e-16
+ - -1.952146245625145e-16
+ - 5.03256684677262e-16
+ - -5.39321759384574e-17
+ - 5.583469134732937e-19
+ - 2.1957509360220117e-16
+ - -1.1967235512110928e-16
+ - 1.0124690697649058e-16
+ - -3.067185711346626e-16
+ - 3.010937429693021e-17
+ - -6.493367808541267e-17
+ - -1.0393524396728792e-16
+ - 3.2615731552965876e-16
+ - -7.934730025914917e-17
+ - 6.786189745385038e-16
+ - 8.139457227521791e-17
+ - 2.216844041642114e-17
+ - -2.3748355386397425e-16
+ - -1.5137405209720404e-16
+ - 1.0844337830570192e-16
+ - 2.6081004713796963e-16
+ - 2.3508473008757047e-16
+ - 1.4062070413401469e-18
+ - 4.408872664907637e-17
+ - 1.2614504341433672e-16
+ - 3.556876633978019e-18
+ - 2.235869195730834e-16
+ - 1.0141234309900118e-16
+ - 5.525566491854224e-17
+ - 1.2060293331023143e-16
+ - -2.3905519702782497e-17
+ - -7.101345558767743e-17
+ - -1.6427806965303127e-16
+ - 3.2624003359091407e-16
+ - -1.675040740419881e-17
+ - 2.842192584732203e-16
+ - 5.897797767503087e-17
+ - 1.5985265337587257e-16
+ - 1.4558378780933287e-16
+ - 1.160741194565036e-16
+ - -1.3276248831476093e-17
+ - 2.008394527278751e-16
+ - 7.01035569138691e-18
+ - 1.0341567114502804e-16
+ - 3.2145789567459187e-16
+ - 9.727644003623604e-17
+ - 1.0240495983406481e-16
+ - -4.7232012976777874e-17
+ - -1.3855275260263212e-17
+ - 2.274746684520826e-19
+ - -1.5848780536516008e-16
+ - -1.7205356741102976e-17
+ - -6.203854594147707e-18
+ - 6.638124415738047e-17
+ - 1.1844192395993665e-16
+ - 6.984713092397765e-16
+ - -2.467066176939405e-16
+ - -1.2895745749701701e-16
+ - 8.99972506457694e-17
+ - 2.067951531382569e-18
+ - -7.622469344676149e-17
+ - 5.4645619216784385e-17
+ - -2.845501307182415e-17
+ - -5.3187713387159673e-17
+ - 1.7478326343245472e-16
+ - -2.450936154994621e-16
+ - -4.7780020132594255e-17
+ - 1.952146245625145e-17
+ - -3.9229040550327333e-16
+ - -2.784289941853491e-16
+ - 3.4493431543461254e-17
+ - 1.8561932945689939e-16
+ - 1.4541835168682227e-16
+ - 1.0774027478503184e-17
+ - -7.46944093135384e-17
+ - 1.0720260738687237e-16
+ - -5.806807900122254e-17
+ - -9.043152046735974e-17
+ - 8.590270661363191e-17
+ - 2.928219368437718e-17
+ - -1.411893908051449e-16
+ - 6.220398206398768e-17
+ - 1.3830459841886623e-16
+ - 1.6907571720583883e-16
+ - -6.968996660759258e-18
+ - 1.0091603473146936e-16
+ - -1.9935052762527964e-16
+ - -5.078888961075589e-17
+ - 8.172544452023912e-17
+ - 3.0423702929700353e-16
+ - 1.5592354546624572e-17
+ - 2.534481396862477e-16
+ - 2.5295183131871586e-16
+ - 8.586134758300426e-17
+ - 1.654361225106055e-19
+ - 3.0605682664462024e-17
+ - -5.485241436992264e-17
+ - 1.4459117107426924e-16
+ - 8.99972506457694e-17
+ - 2.957997870489627e-16
+ - -2.276401045745932e-16
+ - 1.8567102824518395e-16
+ - 5.293955920339376e-18
+ - -1.5575810934373509e-16
+ - -2.3508473008757047e-16
+ - -3.89602068512476e-17
+ - -8.809473523689745e-18
+ - -2.2830184906463564e-16
+ - 2.10103875588469e-17
+ - -7.444625512977249e-18
+ - 2.6163722775052265e-16
+ - -2.8587361969832636e-16
+ - -6.06116593848231e-17
+ - -8.54063982461001e-18
+ - -2.4732700315335524e-17
+ - -3.250819807333399e-17
+ - 1.3292792443727155e-16
+ - 3.5527407309152534e-16
+ - 2.1374347028370233e-16
+ - 9.942710962887391e-17
+ - 1.3069453678337837e-16
+ - 3.8629334606226387e-16
+ - -1.0296330674753811e-16
+ - 1.0836066024444661e-16
+ - -5.506954928071781e-17
+ - -1.1663246636997689e-17
+ - 3.091587539416941e-17
+ - -7.550091041077759e-17
+ - -1.6882756302207292e-16
+ - 1.193725021490588e-16
+ - 5.509022879603164e-17
+ - -3.1904356226170272e-16
+ - -8.536503921547244e-17
+ - -1.533592855673313e-16
+ - 1.9769616640017358e-17
+ - -2.746239633676052e-16
+ - 1.4072410171058383e-16
+ - 3.101927297073854e-17
+ - -1.7368724912082196e-16
+ - -5.5379742010425197e-17
+ - 3.4824303788482465e-17
+ - -4.839006583435211e-17
+ - -1.831377876192403e-16
+ - -1.9935052762527964e-17
+ - -1.55530634675283e-16
+ - 2.125854174261281e-16
+ - 5.704237504165679e-16
+- - -3.501329412159747
+ - -2.9562011473515786
+ - 1.519036899788132
+ - 0.036238368987048304
+ - -1.6522979925611048
+ - 2.6954300145005257
+ - -2.863392675679651
+ - 2.0293125196256163
+ - -0.5293767942416184
+ - -1.5420904630155239
+ - -2.9393585349190787
+ - -1.3367218854820189
+ - 2.738445015674477
+ - -2.833319121871027
+ - 1.8806236493120512
+ - -0.3323520008104531
+ - -1.1190351556230589
+ - -2.7069639911517003
+ - -1.334653837335707
+ - 2.7953136121943403
+ - -2.7758015118638504
+ - 1.7837491119442863
+ - -0.19397568867348763
+ - -1.4567885244721646
+ - 2.5631833497572627
+ - -1.888981347945032
+ - -3.311054159286637
+ - 1.2550644534799327
+ - 0.9931837553817743
+ - -0.068837257246403
+ - -1.6296371010945945
+ - 2.6513396658423285
+ - -1.8896033044338392
+ - -3.6160081343093986
+ - 1.1280077288238264
+ - 0.8719301937399736
+ - 0.13422776299778033
+ - -1.734563107059744
+ - 2.6969816107426947
+ - -2.8405450752367685
+ - 1.9585657721096799
+ - -0.5157000942357735
+ - -0.9872233013721615
+ - -0.84413566409057
+ - 1.8959751487219645
+ - 2.028679572708176
+ - 5.119543473759477
+ - 5.158940857415038
+ - -2.854381143041535
+ - 1.999206003274772
+ - -0.573114205856154
+ - -1.2013433968355784
+ - 2.4181566451278784
+ - -2.9281058921922614
+ - 1.642429315644293
+ - 3.37154008217996
+ - 0.32822635704071756
+ - -0.12910436593567817
+ - -1.3130566880670826
+ - 2.4859249535591252
+ - -0.6923660596003538
+ - -0.5635074476797011
+ - -0.45190884384677643
+ - 3.29841138396675
+ - 1.803728997324667
+ - -2.8557451395856606
+ - 1.9990857400152282
+ - -0.571573150041743
+ - -1.2039018343025194
+ - 2.420820441114828
+ - -2.9299659697608624
+ - 1.6264856694049052
+ - 3.1052590731804277
+ - 0.30713069994581804
+ - -0.1396869443784591
+ - -1.3156528271176255
+ - 2.5267976325680404
+ - -2.9215862580265077
+ - 1.6627455339671318
+ - 3.4476793508357884
+ - 0.6332174279318146
+ - 0.03657197376813722
+ - -1.495944495541182
+ - 2.584804861869088
+ - -2.9106525014709836
+ - 2.158518222468694
+ - -0.795984524669941
+ - -0.9009905818367177
+ - 2.1195571685703083
+ - 2.4500844512059476
+ - -0.5659549133366346
+ - -0.5995049815881708
+ - -0.24122613232479032
+ - 1.7482180585645157
+ - -2.76227181185647
+ - 2.7848379841460953
+ - -1.9513250680369345
+ - 0.40983423922496437
+ - 0.7124901602995461
+ - 0.8165176380655406
+ - -3.7994106857314094
+ - -1.954592171202451
+ - 2.7503572090988624
+ - -1.8537378676048473
+ - 0.2079319499872593
+ - 0.8360972377719667
+ - 0.9567471808550454
+ - -3.3321026597289225
+ - -1.87105167386916
+ - 2.6800855328950384
+ - -1.6917220269045903
+ - 0.08280379133436652
+ - 1.5598167141515094
+ - -2.676755167039919
+ - 2.8534355837368706
+ - -1.4570795390878002
+ - -2.8809893966614863
+ - -0.8163076386168939
+ - -0.15384496059228978
+ - 1.6638413098590352
+ - -2.7526320472864634
+ - 2.815408519373734
+ - -1.3858205937897359
+ - -2.9933985072479246
+ - -1.128100012568419
+ - -0.3000101200202735
+ - 1.825161178272439
+ - -2.7943470167578277
+ - 2.7836894748931313
+ - -1.8749033074105244
+ - 0.31256970426512515
+ - 1.2782850137522888
+ - -3.8254951404333246
+ - -3.691357303891933
+ - 0.27066443608827867
+ - 0.4540134118294851
+ - 4.463281482622171
+ - 4.57752299894857
+ - -1.9221572216212865
+ - 0.37312297498957175
+ - 1.2200580704106048
+ - -2.5426955625275953
+ - 2.8825751057994804
+ - -2.363955239457674
+ - 0.7562757219982366
+ - 1.9440536086585574
+ - 2.3935513492610268
+ - 1.0179479737103223
+ - -2.6014834140094005
+ - 2.8737164990449244
+ - -2.2367089112991936
+ - 0.6162637325447474
+ - 1.5903310207020307
+ - 2.3744334009986368
+ - 1.1111963552133284
+ - -2.68967078463048
+ - 2.845320823930775
+ - -2.1550044689807595
+ - 0.5998843771277043
+ - 1.008031212595767
+ - -2.366334175812386
+ - 1.8833333777415882
+ - 3.215863923596072
+ - -1.7167230575692978
+ - -1.2301426452393909
+ - 0.47880919849959713
+ - 1.1970792465074445
+ - -2.4801441250116665
+ - 1.9914915030733742
+ - 3.7284771097692926
+ - -1.7107351772416761
+ - -1.1512698168347095
+ - 0.27585515971251073
+ - 1.3101589513392637
+ - -2.5448225842301766
+ - 2.8751908561321833
+ - -2.30461094038883
+ - 0.9120027637374245
+ - -0.4544706643384057
+ - -0.7263552377918041
+ - 9.899697571034635e-16
+ - 1.396942618479553e-15
+ - 3.5320612156014277e-16
+ - 1.4008303673585524e-16
+ - -1.7900188455647516e-16
+ - -1.0844337830570192e-16
+ - -3.6147792768567304e-16
+ - -2.278055406971038e-16
+ - -3.934070993302199e-16
+ - 1.4467388913552454e-16
+ - 1.1266199942972237e-16
+ - 5.960663494057117e-16
+ - 2.328513424336773e-16
+ - 1.4370195191577473e-16
+ - -8.867376166568455e-17
+ - -3.6826080870860787e-16
+ - -1.7317026123797632e-16
+ - -2.0280400668268854e-16
+ - -1.6378176128549948e-17
+ - 2.1905810571935553e-16
+ - 6.997947982198614e-17
+ - -1.194448804526572e-16
+ - 9.727644003623604e-17
+ - 2.812414082680294e-17
+ - 2.6196809999554386e-16
+ - -2.9464173419138846e-16
+ - -9.446402595355575e-17
+ - -4.8472783895607416e-17
+ - 3.626359805432473e-16
+ - 4.155341807160134e-16
+ - 1.6560155863311612e-16
+ - 2.3161057151484775e-18
+ - 7.239484721064097e-16
+ - 2.3508473008757047e-16
+ - -5.997059441009451e-17
+ - -7.388377231323642e-16
+ - -2.69660879692287e-17
+ - 7.345363839470886e-17
+ - -3.1978802481300045e-16
+ - 4.66364429357397e-16
+ - -3.937379715752411e-17
+ - 4.377439801630622e-16
+ - 1.831377876192403e-16
+ - 1.2260884629567253e-16
+ - 1.1580528575742387e-18
+ - -2.506357256035674e-16
+ - 3.6313228891077915e-17
+ - -3.667718836060124e-16
+ - 4.524677950665061e-17
+ - 5.1450634100798315e-17
+ - 1.8247604312919788e-16
+ - 2.1883063105090345e-16
+ - -2.5311726744122644e-17
+ - -2.0026042629908798e-16
+ - -4.657854029286099e-16
+ - -7.014491594449675e-17
+ - -8.395883217413231e-18
+ - -4.566036981292712e-17
+ - 9.363684534100272e-17
+ - 6.344475298281722e-17
+ - 3.259091613458929e-17
+ - 3.263227516521694e-17
+ - 5.1450634100798315e-17
+ - 1.4062070413401469e-18
+ - -1.7304618414609336e-16
+ - -7.80031317637505e-17
+ - -2.2821913100338034e-16
+ - 5.606216601578145e-17
+ - -2.2941854289158223e-16
+ - -3.3873046084046483e-17
+ - -9.59529510561512e-18
+ - 1.0538281003925571e-16
+ - 1.0918784085699964e-17
+ - -9.967526381263982e-17
+ - -2.312486799968558e-16
+ - -2.6411876958818174e-16
+ - -1.3400325923359047e-17
+ - -2.51628342338631e-16
+ - -9.942710962887391e-17
+ - -1.3921449709267456e-16
+ - 4.1524466750161983e-17
+ - 1.3284520637601624e-16
+ - -2.493949546847378e-17
+ - 1.7337705639111458e-16
+ - -9.119666253397129e-17
+ - -6.123204484423787e-17
+ - -1.5476549260867145e-16
+ - -1.4277137372665258e-16
+ - -4.595815483344622e-16
+ - 2.0861495048587355e-16
+ - -3.2365509417668585e-16
+ - 6.96155203524628e-16
+ - 1.8098711802660243e-16
+ - 1.9438744394996147e-17
+ - -8.234582997965389e-17
+ - -5.879186203720644e-17
+ - -2.2871543937091215e-16
+ - -2.537790119312689e-16
+ - 2.544407564213113e-16
+ - -1.2407709188295413e-18
+ - 1.1208297300093523e-17
+ - 4.265770418935963e-16
+ - 2.1812752753023337e-16
+ - -1.6618058506190324e-16
+ - -2.952311003778325e-16
+ - -2.2929446579969927e-16
+ - -2.0514079191315083e-17
+ - 8.41242682966429e-17
+ - 2.456726419282492e-17
+ - 9.984069993515043e-17
+ - 4.65289094561078e-17
+ - 1.2784076367007043e-16
+ - 6.586425627453483e-17
+ - 1.2012730445801344e-16
+ - -1.0174321534402239e-16
+ - -4.384057246531046e-17
+ - -1.9744801221640768e-16
+ - -4.566036981292712e-17
+ - 8.900463391070577e-17
+ - 1.9662083160385465e-16
+ - 5.368402175469149e-17
+ - 2.283018490646356e-17
+ - -4.622285262946319e-16
+ - -5.4097612060968004e-17
+ - -2.1221318615047923e-16
+ - -1.3863547066388744e-16
+ - -1.464109684218859e-17
+ - 3.135014521575975e-17
+ - -1.8899009045305297e-16
+ - -4.6322114302969544e-17
+ - -2.6436692377194764e-16
+ - -7.907846656006943e-17
+ - -4.635520152747167e-16
+ - 2.3086610896355e-16
+ - -3.1755463715910728e-16
+ - -1.5538587806808622e-16
+ - 1.258968892305708e-16
+ - -1.5766062475260705e-16
+ - 5.128519797828771e-18
+ - 4.197941608706615e-17
+ - 8.486873084794063e-17
+ - 1.2126467780027386e-16
+ - 4.6983858793011966e-17
+ - -3.510554519675049e-16
+ - 2.2896359355467806e-16
+ - -5.39321759384574e-17
+ - 1.1770780116629584e-16
+ - 2.360773468226341e-16
+ - -7.378451063973007e-17
+ - -8.08982639076861e-17
+ - -2.190374262040417e-16
+ - 1.373946997450579e-16
+ - -3.8877488789992295e-17
+ - -9.181704799338606e-17
+ - -5.495787989802316e-16
+ - 7.711391260525599e-17
+ - -1.0372844881414966e-16
+ - 1.646089418980525e-17
+ - -3.109216826221977e-16
+ - -7.932662074383534e-17
+ - 4.6260075757028067e-17
+ - 1.7470054537119942e-16
+ - -7.750682339621868e-17
+ - -7.708289333228525e-17
+ - 4.0035541647566535e-16
+ - 5.517294685728694e-17
+ - 1.2821299494571927e-17
+ - 6.121136532892404e-18
+ - -2.522900868286734e-17
+ - 7.32468432415706e-17
+ - -4.921724644690514e-17
+ - 3.4634052247595264e-16
+ - 3.7553999809907456e-17
+ - 1.0025429024142694e-16
+ - -1.2407709188295414e-17
+ - 8.892191584945046e-17
+ - -4.1855338995183194e-17
+ - 1.81333499908109e-16
+ - -8.763564999693051e-16
+ - -4.681842267050137e-16
+- - 3.440233428236855
+ - 2.8340640913955095
+ - -1.7989759834267587
+ - 0.9504067952013542
+ - 0.15238474768152216
+ - -1.3104827225505649
+ - 1.9260863221770805
+ - -1.970669737004988
+ - 0.9828714605014547
+ - 2.133127918743732
+ - 0.9604574375673737
+ - 0.30530757441989337
+ - -1.3757030085049082
+ - 1.9513590207087839
+ - -1.9266351058433628
+ - 0.8424976971283237
+ - 1.7591264071933455
+ - 0.9813081416291299
+ - 0.3515207251927625
+ - -1.478716137298093
+ - 1.9823138403327778
+ - -1.8960034016399154
+ - 1.0889830410015917
+ - -0.008483751941209667
+ - -1.1283597104339533
+ - 1.188167764077229
+ - 1.8930654864467253
+ - -1.824116445599254
+ - -1.1581303031735017
+ - 1.0156855650641343
+ - 0.13461649785867036
+ - -1.244222102817351
+ - 1.2301615320566095
+ - 2.1561213151951746
+ - -1.8681605323193788
+ - -1.1123837863432904
+ - 0.8896106445181581
+ - 0.22229024029717748
+ - -1.3128069296225255
+ - 1.9458203395992564
+ - -1.9509604882915346
+ - 1.2720670186009457
+ - -1.156010470102264
+ - -1.2322487671265367
+ - -1.8879198956003662
+ - -1.9255225977420516
+ - -2.9221448381985047
+ - -2.8975932412458216
+ - 1.9347505583199798
+ - -1.9624805873710152
+ - 1.303328842192265
+ - -0.20822171041155618
+ - -0.9543733779806898
+ - 1.7573367200452155
+ - -1.3307035932885598
+ - -2.503890569904681
+ - 1.0384951579096027
+ - 0.731322944922438
+ - -0.12092034440384146
+ - -1.0315160287543221
+ - 1.8235382945175296
+ - -0.27763490422861037
+ - -0.8582378737067552
+ - -1.843287682505666
+ - -0.8994224313982228
+ - 1.9346770541024128
+ - -1.9614135911147201
+ - 1.3015989317751357
+ - -0.2063669427223766
+ - -0.9557127732907312
+ - 1.7576860394888711
+ - -1.3220699813524628
+ - -2.303886676311205
+ - 0.9519789083969485
+ - 0.7330351945575819
+ - -0.11908830954964401
+ - -1.079049749973373
+ - 1.823762798351089
+ - -1.389909576344054
+ - -2.649556828882181
+ - 0.9023792090213438
+ - 0.662367290227718
+ - 0.022823580089247154
+ - -1.1540895784695124
+ - 1.8584543855025009
+ - -2.001226589383405
+ - 1.4200355202250028
+ - -0.43017801537846956
+ - -0.036254470965902105
+ - 0.07466042629379441
+ - 2.1102417962163686
+ - 1.79889828944721
+ - -0.8754642489662287
+ - -0.29710411258227104
+ - 1.3199222980992562
+ - -1.9855761733858273
+ - 1.9074629534760184
+ - -1.2634244581226919
+ - 0.20617460612434393
+ - 0.778662239954321
+ - 2.2416890500112006
+ - 1.0515144115206034
+ - -2.0043740723155574
+ - 1.87748388692421
+ - -1.1473826045441624
+ - 0.07445552611295234
+ - 0.5135339163977926
+ - 2.0408521694472275
+ - 1.038499050534831
+ - -2.0286750015019517
+ - 1.819939297426802
+ - -1.0747895423957556
+ - -0.13692637577818034
+ - 1.1944200911490503
+ - -1.9185893818600004
+ - 1.301374024236551
+ - 2.327343416695913
+ - -0.61229186491405
+ - -0.5541244540731249
+ - -0.22292768594650778
+ - 1.306643524591526
+ - -1.9630595831804925
+ - 1.2916613482608794
+ - 2.520087742405564
+ - -0.4945302513291888
+ - -0.4631480990267258
+ - -0.3647504480621082
+ - 1.372120290260087
+ - -1.9863172121281543
+ - 1.883440756429392
+ - -1.208689254023564
+ - 0.08935221881972512
+ - 1.11384420583274
+ - 1.0119251918340126
+ - -1.1315431668239089
+ - -1.2328429672225107
+ - -3.5994181479273917
+ - -3.639338017725083
+ - 1.8996776894965617
+ - -1.2437730872129726
+ - 0.1345533007262484
+ - 1.0243664049807462
+ - -1.8372010831279766
+ - 2.003964232222608
+ - -1.060797985286719
+ - -2.232191150005258
+ - -0.5244925127136107
+ - -0.06676905645485383
+ - 1.0988173222832414
+ - -1.8741198646599617
+ - 1.982697318832436
+ - -0.9900044646573679
+ - -1.973676700600112
+ - -0.6429798973748508
+ - -0.15007652817178394
+ - 1.2146993237476613
+ - -1.9274638149398282
+ - 1.9637226144930606
+ - -1.3679348943230025
+ - 0.29450674816219413
+ - 0.8236614245700454
+ - -1.0838741742546978
+ - -1.6606039541973214
+ - 2.0257416196675813
+ - 1.2429645545211092
+ - -1.3013551234581673
+ - 0.1535591409136681
+ - 0.9520802595916298
+ - -1.1792526638352587
+ - -2.0137716144052376
+ - 2.208361678738402
+ - 1.2602714457746726
+ - -1.1885318633972297
+ - 0.06442464849954635
+ - 1.0269671528632842
+ - -1.8671117173978569
+ - 1.9945619768674836
+ - -1.5282088303465111
+ - 1.718129953894873
+ - 2.2024073652599045
+ - -4.999479622270499e-16
+ - -6.495022169766372e-16
+ - -2.0050858048285388e-16
+ - -2.5435803836005598e-17
+ - 2.9052780311364426e-17
+ - 3.4751925484884075e-17
+ - 3.0353392577633346e-16
+ - 1.530284133223101e-16
+ - 1.467418406669071e-16
+ - -9.719372197498074e-17
+ - -2.5849394142282112e-17
+ - -4.412181387357849e-16
+ - -1.4095157637903592e-16
+ - -1.7503141761622063e-16
+ - -2.8289576949313546e-17
+ - 2.0795320599583113e-16
+ - 8.184952161212208e-17
+ - 1.5997673046775553e-16
+ - 1.4289545081853553e-16
+ - -1.0241529959172173e-16
+ - 1.5302841332231012e-17
+ - 1.3929721515392986e-16
+ - 2.9571706898770736e-18
+ - 1.1425432210888693e-17
+ - -1.9575229196067397e-16
+ - 1.3590577464246245e-16
+ - 2.7379678275505213e-17
+ - 1.708127964922002e-17
+ - -1.4330904112481204e-16
+ - -2.0206988388904772e-16
+ - 2.2995621028974166e-17
+ - -2.613890735667567e-17
+ - -5.302227726464907e-16
+ - -3.052296460320672e-17
+ - 6.048758229294015e-17
+ - 3.4443800706708067e-16
+ - 7.146840492458159e-17
+ - 6.1624955635200554e-18
+ - 1.4690727678941772e-16
+ - -3.4701260672365197e-16
+ - 6.137680145143465e-17
+ - -2.0588525446444856e-16
+ - -2.008394527278751e-16
+ - 8.644037401179139e-18
+ - 4.19380570564385e-17
+ - 1.3011551035459125e-16
+ - 3.056432363383437e-17
+ - 5.013541692683901e-16
+ - -1.4438437592113098e-16
+ - 2.3161057151484775e-18
+ - -2.1511865805207173e-17
+ - -9.897216029196975e-17
+ - 4.549493369041652e-18
+ - 1.478585344938537e-16
+ - 6.145951951268996e-17
+ - 2.8206858888058244e-17
+ - 3.7471281748652154e-17
+ - 1.2631047953684733e-16
+ - -3.6561383074843823e-17
+ - 6.780813071403444e-17
+ - -8.180816258149442e-17
+ - 4.549493369041652e-18
+ - -7.560430798734672e-17
+ - 3.106063200136619e-17
+ - 9.784512670736625e-17
+ - 5.0871607672011196e-17
+ - 1.770993691476032e-16
+ - -2.7338319244877562e-17
+ - 1.373119816838026e-16
+ - 7.957477492760125e-17
+ - 9.649029533688389e-17
+ - 3.184645358329156e-18
+ - -2.0059129854410918e-17
+ - 2.6304343479186277e-17
+ - 2.806623818392423e-16
+ - 1.1795595535006175e-16
+ - -4.9268945235189705e-17
+ - 6.832511859688009e-17
+ - 7.957477492760125e-17
+ - 8.94389037322961e-17
+ - 4.79764755280756e-18
+ - 1.8135934930225132e-17
+ - 1.1456451483859432e-17
+ - -4.917588741627749e-17
+ - 2.8206858888058244e-17
+ - 5.575197328607407e-17
+ - 1.5170492434222525e-16
+ - 1.0128826600711823e-16
+ - 2.9513804255892027e-16
+ - -8.073282778517549e-17
+ - 2.1423977865123414e-17
+ - -4.865476363036909e-16
+ - -2.1663860242763792e-16
+ - -1.7701665108634792e-17
+ - 3.4534790574088905e-17
+ - 2.92201551384357e-17
+ - 9.399356698016621e-17
+ - 1.593977040389684e-16
+ - -8.172544452023912e-17
+ - 1.8776999904953728e-17
+ - -4.822462971184151e-17
+ - -1.2444932315860301e-16
+ - -1.0472106554921329e-16
+ - 1.6733863791947747e-16
+ - 2.575840427490128e-16
+ - 7.643148859989974e-17
+ - -2.92563442902349e-17
+ - -1.1580528575742386e-17
+ - 1.4525291556431166e-16
+ - -7.229558553713462e-17
+ - 5.500751073477633e-18
+ - -5.906069573628618e-17
+ - -9.637688112008462e-17
+ - -4.3385623128406295e-17
+ - -2.895132143935597e-17
+ - -7.113753267956038e-18
+ - 1.4070342219527e-16
+ - 6.894550405629486e-17
+ - 3.924972006564116e-17
+ - -1.2597960729182611e-16
+ - -4.5743087874182424e-17
+ - 3.383168705341883e-17
+ - 2.0861495048587355e-16
+ - 6.741521992307176e-17
+ - 4.350970022028925e-17
+ - 1.1233112718470116e-16
+ - -2.870316725559006e-17
+ - -6.518183226917858e-17
+ - 7.584212241345571e-17
+ - 3.004733575098873e-17
+ - 1.0670629901934056e-16
+ - 5.583469134732937e-17
+ - 3.755399980990745e-16
+ - -1.2358078351542233e-16
+ - 1.7809198588266683e-16
+ - -2.4236391947803708e-17
+ - -3.8587975575598735e-17
+ - 1.133237439197648e-16
+ - 9.822769774067202e-17
+ - -5.244325083586195e-17
+ - -3.94461754611225e-17
+ - -9.409179467790689e-17
+ - -3.3666250930908226e-17
+ - 2.4706850921193245e-16
+ - 9.622178475523093e-17
+ - -1.6005944852901086e-17
+ - -8.156000839772852e-17
+ - -5.641371777611649e-17
+ - 6.846987520407687e-17
+ - 7.651420666115505e-17
+ - 7.350533718299342e-17
+ - -1.162188760637004e-16
+ - 1.155984906042856e-17
+ - 3.2425480012078685e-17
+ - 1.288747394357617e-16
+ - -6.694993082851068e-17
+ - 1.108422020821057e-17
+ - -1.051346558554898e-16
+ - 1.3896634290890865e-16
+ - 1.8983795058091982e-17
+ - 7.157697237997918e-18
+ - 7.444625512977248e-19
+ - 4.655475885025008e-17
+ - 7.65555656917827e-17
+ - -2.225115847767644e-17
+ - -2.4484546131569616e-17
+ - 2.0348643068804478e-17
+ - -1.1249656330721176e-16
+ - 3.1267427154504446e-17
+ - -3.553774706680945e-17
+ - 9.876536513883149e-17
+ - -1.3036366453835716e-16
+ - 7.692779696743156e-17
+ - 2.212708138579349e-18
+ - -2.5652938746800768e-17
+ - -6.112864726766875e-17
+ - -1.5178764240348058e-17
+ - -1.0331485850787314e-16
+ - 4.046567556609411e-16
+ - 5.876291071576709e-16
+- - -7.810061641409982
+ - -6.301911967441107
+ - 4.561596859288926
+ - -4.098683528376889
+ - 2.3106692823232824
+ - 0.375729046787846
+ - -2.808281773462441
+ - 4.3344753620807195
+ - -3.0971890023074917
+ - -5.999007140522637
+ - 1.4262925913345883
+ - 1.1931126854077545
+ - 0.570977866461221
+ - -2.964044484150722
+ - 4.429719652507119
+ - -2.878059168600096
+ - -5.227873761383051
+ - 0.9126878119386861
+ - 0.9979185544405043
+ - 0.8888378622657721
+ - -3.202252247561339
+ - 4.4767106083832875
+ - -4.249148568896101
+ - 2.6172992378157756
+ - -0.13533017458187288
+ - -1.4477936845737067
+ - -1.7525720533300018
+ - 5.246858245693162
+ - 2.9702763642170025
+ - -4.171436905398335
+ - 2.34667262956187
+ - 0.18664236452809121
+ - -1.6205418038361956
+ - -2.28126462306303
+ - 5.662846372756883
+ - 3.0037366431565635
+ - -4.026857277867015
+ - 2.1722655582568855
+ - 0.38253273500577206
+ - -2.931936711321387
+ - 4.382769767499824
+ - -4.415869506253179
+ - 6.602344237419636
+ - 6.654987139953271
+ - 4.332767323714498
+ - 4.244517827588679
+ - 2.6892125221645955
+ - 2.515170831546976
+ - -2.860639945642693
+ - 4.355753935898564
+ - -4.439790446626977
+ - 2.974989270570029
+ - -0.5893731117927203
+ - -1.9903807551647366
+ - 2.4913377208912353
+ - 4.170897156911055
+ - -4.9041954221605435
+ - -2.791301306717909
+ - 2.82304871531462
+ - -0.3902620603693972
+ - -2.2754775524356994
+ - 2.5971341111040216
+ - 4.385030726238427
+ - 1.5695139578942896
+ - 0.40864777029987664
+ - -2.85776580965164
+ - 4.351471981793165
+ - -4.435438124527827
+ - 2.9720725705982454
+ - -0.5888246394271757
+ - -1.9883357490739504
+ - 2.4848399947673045
+ - 3.8320877556599027
+ - -4.507142272410112
+ - -2.7789446567788083
+ - 2.820301614171726
+ - -0.2686675260889041
+ - -2.2731559918680007
+ - 2.699132724515007
+ - 4.63406010639129
+ - -4.901279739201286
+ - -2.810354524004608
+ - 2.5598500316711674
+ - -0.06877829957510466
+ - -2.4411407223692487
+ - 4.223415927710342
+ - -4.513504293660772
+ - 3.342069431084773
+ - -3.7467380194812505
+ - -4.8137643197792555
+ - -7.69879150368595
+ - -6.34771491399837
+ - 3.973198311463904
+ - -2.07975416780566
+ - -0.48377845836381883
+ - 3.007095512347208
+ - -4.407959091786738
+ - 4.382899979949012
+ - -2.1637776492731526
+ - -4.725949110383485
+ - -2.2983961493227447
+ - -0.7611966323086871
+ - 3.1525637765210694
+ - -4.459018494507488
+ - 4.27775555178412
+ - -1.8455196982665927
+ - -3.8857451152065408
+ - -2.325817163635957
+ - -0.8608887896397663
+ - 3.3781905830505785
+ - -4.522829894357162
+ - 4.2029214333270835
+ - -2.3965895080534816
+ - -0.12138943970132367
+ - 2.603589580782372
+ - -2.7106213192406234
+ - -4.341625671124572
+ - 4.036468324983605
+ - 2.5776612283994385
+ - -2.227450903385909
+ - -0.44242904853755693
+ - 2.861894942410862
+ - -2.8013897089772506
+ - -4.933108647782288
+ - 4.121998216005036
+ - 2.4696104952094533
+ - -1.940911542147282
+ - -0.6411047972790472
+ - 3.012269955152218
+ - -4.4488537024664385
+ - 4.334902091074806
+ - -2.8166042797961883
+ - 2.4227401744245682
+ - 2.5983459313788195
+ - 4.222889628640195
+ - 4.314180031200441
+ - 6.700492076578005
+ - 6.6503953571707655
+ - -4.428265178604746
+ - 4.36884022026878
+ - -2.896236331411387
+ - 0.3364952333421694
+ - 2.2128378165117595
+ - -4.048837446179477
+ - 3.00272207335591
+ - 5.670043758084549
+ - -2.228441605879427
+ - -1.5949825492036214
+ - 0.1404876926673329
+ - 2.3862445426391146
+ - -4.190510040118673
+ - 2.966964117073127
+ - 5.249816078867547
+ - -1.7026067849573159
+ - -1.4214227602697416
+ - -0.18148979965444634
+ - 2.6551112492064024
+ - -4.266396291653411
+ - 4.466304766624469
+ - -3.168988277222302
+ - 0.8434780531483387
+ - 1.02619991575834
+ - 0.9647373721257063
+ - -5.233138694189068
+ - -2.885953482129478
+ - 4.417403329135289
+ - -2.9286046532883785
+ - 0.5251119753522641
+ - 1.2223612829504937
+ - 1.4848846888712424
+ - -6.0004969466160265
+ - -3.1026569146532523
+ - 4.319063371751818
+ - -2.7715776404411
+ - 0.3296697054231498
+ - 2.3504486701285083
+ - -4.11926503701825
+ - 4.556264032832217
+ - -6.279904162230991
+ - -7.7856463703355745
+ - 9.07582568093182e-16
+ - 1.8735640874326077e-15
+ - 2.719769854074355e-16
+ - -1.3301064249852685e-16
+ - -4.5164061445395305e-17
+ - -9.496033432108756e-17
+ - -8.724687510903058e-16
+ - -3.0738031562470503e-16
+ - -1.3896634290890865e-17
+ - 1.3267977025350564e-16
+ - 1.0356301269163905e-16
+ - 9.13869140748585e-16
+ - 1.287093033132511e-16
+ - 4.1888426219685317e-16
+ - 2.067951531382569e-17
+ - -2.7296960214249913e-16
+ - -6.675347543302933e-17
+ - -4.192978525031297e-16
+ - -2.714186384939622e-16
+ - 1.6642873924566914e-16
+ - -1.464109684218859e-17
+ - -1.7916732067898577e-16
+ - -1.3040502356898481e-16
+ - -1.4918202347393854e-16
+ - 3.54364174417717e-16
+ - 6.5843576759221e-17
+ - -7.361907451721946e-17
+ - -3.532061215601428e-17
+ - -7.4859845436049e-17
+ - -7.279189390466644e-18
+ - -2.6242304933244803e-16
+ - 2.785944303078597e-16
+ - 8.384302688837488e-16
+ - -1.976961664001736e-16
+ - -5.466009487750407e-16
+ - -2.0996945873892914e-16
+ - -3.326093243075724e-16
+ - -9.975798187389513e-17
+ - -1.2606232535308142e-16
+ - 5.767103230719709e-16
+ - 1.290401755582723e-17
+ - 8.222175288777094e-17
+ - 6.263411598251525e-16
+ - -1.435158362779503e-16
+ - -1.887626157846009e-16
+ - 4.109433283163441e-16
+ - -1.7205356741102973e-16
+ - -6.792807190285462e-16
+ - 6.473515473839994e-16
+ - 8.478601278668532e-17
+ - -1.2457340025048597e-16
+ - 8.321436962283457e-17
+ - -3.565148440103549e-17
+ - -4.9051810324394535e-17
+ - -2.2195323786329113e-16
+ - -8.354524186785578e-17
+ - 6.5843576759221e-17
+ - -5.014368873296454e-16
+ - 2.32768624372422e-16
+ - 2.776018135727961e-16
+ - 4.3866421859452744e-16
+ - 1.4268865566539727e-16
+ - 3.8674829539916804e-16
+ - -1.679176643482646e-16
+ - -3.987010552505593e-16
+ - -2.3239639309677313e-16
+ - -8.213903482651564e-17
+ - 1.4144788474656773e-16
+ - -6.551270451419979e-17
+ - -2.1949237554094587e-16
+ - 1.0761619769314889e-16
+ - 3.8530072932720024e-16
+ - 3.7951046503932905e-16
+ - -3.0605682664462024e-17
+ - -6.850709833164174e-16
+ - -5.151680854980256e-16
+ - 3.189608442004474e-16
+ - 1.7987042419965584e-16
+ - -8.069146875454784e-17
+ - -6.452008777913616e-17
+ - 3.534129167132811e-17
+ - 4.48331892003741e-16
+ - -2.223875076848815e-16
+ - -2.0851155290930443e-16
+ - -7.229558553713462e-17
+ - -1.4434301689050333e-16
+ - -1.3929721515392986e-16
+ - -1.3110812708965487e-17
+ - 4.2603937449543685e-16
+ - -3.0010112623423844e-16
+ - -7.699397141643581e-16
+ - 9.85999290163209e-16
+ - 3.682194496779802e-16
+ - -1.493061005658215e-16
+ - -5.9557004103817985e-18
+ - -3.924144825951563e-16
+ - -2.511320339710992e-16
+ - -4.2748694056740465e-16
+ - 2.772709413277749e-16
+ - -5.1781506345819526e-17
+ - 2.3409211335250683e-16
+ - -7.841672207002701e-17
+ - -3.3612484191092275e-16
+ - -4.253362709747668e-16
+ - -7.125333796531779e-16
+ - -3.302105005311686e-16
+ - 1.9219541532669596e-16
+ - -6.435465165662555e-17
+ - -3.7653261483413815e-16
+ - 1.713918229209873e-16
+ - -1.5325588799076218e-16
+ - 4.063731554319886e-16
+ - 4.223584207695759e-16
+ - -7.130296880207099e-17
+ - 1.976961664001736e-16
+ - 6.435465165662555e-17
+ - -2.4087499437544166e-16
+ - -1.8669466425321832e-16
+ - -1.8561932945689939e-16
+ - 2.127508535486387e-16
+ - 2.0952484915968189e-16
+ - 1.3408597729484579e-16
+ - -4.3311176873276524e-16
+ - -1.8247604312919788e-16
+ - 1.7064736036968958e-16
+ - 2.336785230462303e-16
+ - 1.346650037236329e-16
+ - 4.1782960691584805e-16
+ - 1.6440214674491423e-18
+ - 4.503998435351235e-17
+ - -4.2765237668991525e-17
+ - -1.0910512279574434e-16
+ - -4.412181387357849e-16
+ - -1.0927055891825494e-16
+ - -2.810759721455188e-16
+ - 3.517171964575473e-16
+ - -1.5513772388432032e-16
+ - 1.2904017555827232e-16
+ - -3.808339540194139e-16
+ - 2.305352367185288e-16
+ - -1.1514354126738145e-16
+ - 4.976318565119014e-16
+ - 3.6892255319865034e-17
+ - -2.957997870489627e-16
+ - -7.441316790527036e-16
+ - -1.183281866257106e-16
+ - 2.249931266144235e-17
+ - -1.588186776101813e-16
+ - -2.1374347028370233e-16
+ - -7.345363839470886e-17
+ - 2.607273290767143e-16
+ - 9.472872374957273e-16
+ - 9.694556779121483e-17
+ - 8.875647972693986e-17
+ - 4.198768789319168e-16
+ - 4.6983858793011966e-17
+ - 2.80579663777987e-16
+ - 2.93152809088793e-16
+ - -3.692534254436715e-16
+ - 4.0035541647566533e-17
+ - -2.57087734381481e-16
+ - -4.3046479077259555e-16
+ - -8.246990707153685e-17
+ - -1.8189701670041076e-16
+ - -1.654361225106055e-16
+ - 5.211237859084074e-17
+ - -2.8595633775958167e-16
+ - 3.6528295850341697e-16
+ - -2.6999175193730823e-16
+ - 2.0464448354561902e-16
+ - -1.3731198168380258e-17
+ - -1.492233825045662e-16
+ - -2.871971086784112e-16
+ - 5.773720675620133e-17
+ - -3.970466940254532e-17
+ - -1.5137405209720404e-16
+ - 1.5716431638507526e-17
+ - 8.437242248040881e-17
+ - -7.715940753894641e-16
+ - -1.4902485915755345e-15
+- - -5.654387315069723
+ - -4.580979855380039
+ - 3.231225854720289
+ - -2.7003053394818006
+ - 1.2966832743310255
+ - 0.6312285733188241
+ - -2.2565495694591657
+ - 3.1531106169959586
+ - -2.121176254913539
+ - -4.181410294233795
+ - 0.5279598009287017
+ - 0.5998759443426581
+ - 0.7661825958293649
+ - -2.355355511522033
+ - 3.194949305911479
+ - -1.9485995531624407
+ - -3.612215319118348
+ - 0.22135618778796443
+ - 0.4711895120446838
+ - 0.9843591802817614
+ - -2.5045155051639876
+ - 3.212466587336673
+ - -2.8321994718796035
+ - 1.5268695604492033
+ - 0.27488547099071325
+ - -1.223031513190345
+ - -1.6249546470532785
+ - 3.6439442327462275
+ - 2.1027198005262253
+ - -2.7633300321225005
+ - 1.3235472522236535
+ - 0.499940327217113
+ - -1.3372667600246924
+ - -2.0173052485802327
+ - 3.9008989080197622
+ - 2.107730982064899
+ - -2.639036067199145
+ - 1.1936345292460118
+ - 0.6359413590703028
+ - -2.33503417991003
+ - 3.1750498879169906
+ - -2.9877323014375343
+ - 4.22341325405779
+ - 4.278378797634184
+ - 3.130320638803979
+ - 3.0907215986170775
+ - 2.498896726078994
+ - 2.3894462988260186
+ - -2.2898755852842494
+ - 3.162929797216823
+ - -3.0116338254028965
+ - 1.7992369926677363
+ - -0.04557943650581765
+ - -1.725230800668795
+ - 1.8778054395284616
+ - 3.231441558515147
+ - -3.194257896699221
+ - -1.8626123201913867
+ - 1.6829601368879128
+ - 0.0954172164356447
+ - -1.9125777924422038
+ - 1.9352817197132766
+ - 3.1197055154933397
+ - 1.5022145291740965
+ - 0.5243754910423666
+ - -2.288169216703526
+ - 3.1600875237712023
+ - -3.008541933992611
+ - 1.7969469714631814
+ - -0.04483848185453084
+ - -1.7241423994848097
+ - 1.8712654653611525
+ - 2.970018919134061
+ - -2.93487093907904
+ - -1.8559393981320869
+ - 1.68077684189642
+ - 0.1815302524529387
+ - -1.9112884157307846
+ - 2.0179763137364706
+ - 3.5482260636595497
+ - -3.149319374344326
+ - -1.8518379911378577
+ - 1.4833805530110291
+ - 0.3219172791575902
+ - -2.0206207379106518
+ - 3.0979469101816974
+ - -3.0917648078868063
+ - 2.084143598684416
+ - -2.176837730532423
+ - -2.835285696994675
+ - -5.1669270488954195
+ - -4.278911931986827
+ - 2.594209135766878
+ - -1.124846321093878
+ - -0.7063267988381802
+ - 2.3825647052779737
+ - -3.1849515068352847
+ - 2.95673732212063
+ - -1.3292850372478882
+ - -3.007616215630766
+ - -2.0544886137901734
+ - -0.7786025157879407
+ - 2.4736973474206985
+ - -3.205052711838605
+ - 2.8586625791838163
+ - -1.101560053968638
+ - -2.432662553603538
+ - -2.006709617989957
+ - -0.8326956053381686
+ - 2.613000353676551
+ - -3.2242413923221602
+ - 2.7916973273701147
+ - -1.3607736676907205
+ - -0.4548079085000391
+ - 2.1256126205893797
+ - -1.9965663146361061
+ - -3.275080960119936
+ - 2.5520618612176413
+ - 1.6815443741882716
+ - -1.2344691041102362
+ - -0.6777666691337196
+ - 2.290803611753292
+ - -2.0464954803538804
+ - -3.6817705560909793
+ - 2.564609675486378
+ - 1.5895365169043925
+ - -1.022258680194603
+ - -0.8148030603544564
+ - 2.3858220588952674
+ - -3.201198623386531
+ - 2.911309489325185
+ - -1.6779911871328763
+ - 1.0613494860308696
+ - 1.196296385356966
+ - 2.827496189223492
+ - 2.9134088980760615
+ - 5.056892818731734
+ - 5.040055524278389
+ - -3.194287635515183
+ - 2.9422757116249594
+ - -1.738835573697719
+ - -0.13334946811904203
+ - 1.8715278799206307
+ - -3.0058465660621816
+ - 2.0907520552001007
+ - 4.020735377203722
+ - -1.1349591852114542
+ - -0.9103694172175895
+ - -0.27128214616287016
+ - 1.984734153022082
+ - -3.081639850732414
+ - 2.047380052311681
+ - 3.693178889193149
+ - -0.7901990168033179
+ - -0.7825366938798324
+ - -0.49634578750076447
+ - 2.1585170589388114
+ - -3.120133422191116
+ - 3.038647966267254
+ - -1.948956526262718
+ - 0.2265175384188072
+ - 0.9436601837988104
+ - 1.090957475955966
+ - -3.699979956699136
+ - -2.0804183224273616
+ - 2.9891352833662537
+ - -1.7635872475828756
+ - -2.4317256995067538e-05
+ - 1.0885289866532686
+ - 1.5069423587391988
+ - -4.206177952102885
+ - -2.2124857924622874
+ - 2.8956629888861545
+ - -1.6437576940017107
+ - -0.13816170779399756
+ - 1.9614096065746949
+ - -3.044001535663014
+ - 3.142101769394464
+ - -4.213650357814949
+ - -5.246932582162288
+ - 7.098864016930083e-16
+ - 1.3766766934720038e-15
+ - 2.1374347028370233e-16
+ - -7.576974410985732e-17
+ - -4.9382682569415746e-17
+ - -6.964860757696493e-17
+ - -6.430295286834098e-16
+ - -2.2267702089927505e-16
+ - -6.154223757394526e-17
+ - 1.0472106554921329e-16
+ - 8.842560748191865e-17
+ - 6.422230275861706e-16
+ - 1.2076836943274204e-16
+ - 3.090346768498111e-16
+ - 6.782881022934826e-18
+ - -1.8363409598677212e-16
+ - -5.0871607672011196e-17
+ - -3.1602435302588417e-16
+ - -1.879948887785751e-16
+ - 1.1282743555223297e-16
+ - -7.444625512977249e-18
+ - -1.2490427249550718e-16
+ - -7.47771273747937e-17
+ - -9.643181108263697e-17
+ - 2.694954435697764e-16
+ - 4.301339185275743e-17
+ - -6.160427611988674e-17
+ - -3.474158572722716e-17
+ - -3.788487205492866e-17
+ - 1.4558378780933287e-17
+ - -1.5021599923962983e-16
+ - 1.9935052762527964e-16
+ - 6.005331247134981e-16
+ - -1.0703717126436177e-16
+ - -3.843081125921366e-16
+ - -2.0852189266696134e-16
+ - -2.266474878395296e-16
+ - -6.121136532892405e-17
+ - -1.285438671907405e-16
+ - 4.162372842366835e-16
+ - 1.8115255414911306e-17
+ - 9.115530350334364e-17
+ - 4.516406144539531e-16
+ - -8.544775727672775e-17
+ - -1.165497483087216e-16
+ - 2.957997870489627e-16
+ - -1.0989094437766971e-16
+ - -5.161607022330893e-16
+ - 4.482491739424857e-16
+ - 6.501639614666798e-17
+ - -5.161607022330892e-17
+ - 7.783769564123989e-17
+ - -3.9208361035013506e-17
+ - -5.13575762818861e-17
+ - -2.3161057151484775e-16
+ - -6.104592920641344e-17
+ - 5.360130369343619e-17
+ - -3.6834352676986317e-16
+ - 1.810207222389874e-16
+ - 2.337612411074856e-16
+ - 3.007835502395947e-16
+ - 9.777274840376786e-17
+ - 2.6684846560960673e-16
+ - -1.1363393664947218e-16
+ - -2.7950432898166805e-16
+ - -1.5325588799076218e-16
+ - -7.883031237630353e-17
+ - 1.134891800422754e-16
+ - -7.312276614968765e-17
+ - -1.56006263527501e-16
+ - 8.792929911438683e-17
+ - 2.899268046998362e-16
+ - 2.74293091122584e-16
+ - -2.2664748783952955e-17
+ - -4.894427684476265e-16
+ - -3.9820474688302747e-16
+ - 2.2284245702178566e-16
+ - 9.74832351893743e-17
+ - -5.976379925695625e-17
+ - -5.889525961377557e-17
+ - 3.7553999809907456e-17
+ - 3.8480442095966843e-16
+ - -1.770166510863479e-16
+ - -1.2955716344111796e-16
+ - -5.67445900211377e-17
+ - -1.0161913825213944e-16
+ - -9.198248411589667e-17
+ - -9.802090258753376e-18
+ - 2.434806133049837e-16
+ - -2.247449724306576e-16
+ - -6.399069218710221e-16
+ - 6.954934590345856e-16
+ - 2.4569332144356305e-16
+ - -1.1787323728880644e-16
+ - -1.3234889800848441e-17
+ - -2.932355271500483e-16
+ - -1.828069153742191e-16
+ - -3.349667890533485e-16
+ - 2.4319110009059014e-16
+ - -3.441071348220595e-17
+ - 1.6709048373571157e-16
+ - 1.9852334701272664e-18
+ - -2.273919503908273e-16
+ - -3.0175548745934445e-16
+ - -5.221164026434711e-16
+ - -2.6138907356675675e-16
+ - 1.3760149489819615e-16
+ - -2.957170689877074e-17
+ - -2.6155450968926735e-16
+ - 1.288747394357617e-16
+ - -1.0409551021097006e-16
+ - 3.017141284287168e-16
+ - 3.062222627671308e-16
+ - -3.4824303788482465e-17
+ - 1.1878313596261477e-16
+ - 3.970466940254532e-17
+ - -1.923194924185789e-16
+ - -1.2746853239442156e-16
+ - -1.2010662494269962e-16
+ - 1.739560828199017e-16
+ - 1.5637849480314986e-16
+ - 1.0579640034553223e-16
+ - -3.7653261483413815e-16
+ - -1.2993973447442373e-16
+ - 8.801201717564213e-17
+ - 1.742869550649229e-16
+ - 8.437242248040881e-17
+ - 3.096964213398535e-16
+ - -1.2288801975240916e-17
+ - 3.6295618991318485e-17
+ - -5.3270431448414976e-17
+ - -9.777274840376786e-17
+ - -3.30045064408658e-16
+ - -7.072394237328387e-17
+ - -2.325204701886561e-16
+ - 2.3917927411970795e-16
+ - -9.628382330117241e-17
+ - 1.49719690872098e-16
+ - -2.602310207091825e-16
+ - 1.684139727157964e-16
+ - -7.841672207002701e-17
+ - 3.6710275585103363e-16
+ - 2.4070955825293102e-17
+ - -2.3740083580271894e-16
+ - -4.721546936452682e-16
+ - -9.231335636091788e-17
+ - 1.8776999904953728e-17
+ - -1.0008885411891634e-16
+ - -1.4823076576950256e-16
+ - -6.038418471637102e-17
+ - 1.4889251025954498e-16
+ - 6.974786925047128e-16
+ - 6.964860757696493e-17
+ - 5.3518585632180884e-17
+ - 2.476578753983765e-16
+ - 4.417144471033167e-17
+ - 1.9860606507398192e-16
+ - 1.9008610476468574e-16
+ - -2.957997870489627e-16
+ - 1.141509245323178e-17
+ - -1.887626157846009e-16
+ - -3.096964213398535e-16
+ - -7.883031237630353e-17
+ - -1.3114948612028254e-16
+ - -2.547716286663325e-17
+ - 5.566925522481876e-17
+ - -1.8752184486577135e-16
+ - 2.455072058057386e-16
+ - -1.7337705639111458e-16
+ - 1.403725499502488e-16
+ - -1.5716431638507524e-18
+ - -9.810362064878907e-17
+ - -1.917404659897918e-16
+ - 5.451120236724452e-17
+ - -3.0605682664462024e-17
+ - -9.644925942368301e-17
+ - 8.023651941764368e-18
+ - 7.924390268258004e-17
+ - -6.035109749186889e-16
+ - -1.0819522412193602e-15
+- - -0.18145047960392927
+ - -0.3021885987684864
+ - -0.4953530401394887
+ - 2.157080129121229
+ - -3.1188459930223447
+ - 3.037849545721779
+ - -1.9490095071567748
+ - 0.22725270388301064
+ - 0.9496731057550399
+ - 1.2249867131682224
+ - -4.22257615091104
+ - -2.1978985375842406
+ - 2.988384000039771
+ - -1.8348814353262672
+ - 0.0008085071117205776
+ - 1.0722338683603172
+ - 1.334874136780119
+ - -3.684348113747919
+ - -2.0959140095736495
+ - 2.89499681424612
+ - -1.6439528865426694
+ - -0.13727968999643933
+ - 1.960001473452615
+ - -3.042667933868991
+ - 3.1411511881778704
+ - -1.5080954458865694
+ - -3.0437669494940254
+ - -1.1827757292723857
+ - -0.3334177137755174
+ - 2.0681266619747056
+ - -3.1112840425093147
+ - 3.0807536802391238
+ - -1.4207604200029313
+ - -3.1368576677333406
+ - -1.5459722252557893
+ - -0.49466544482478386
+ - 2.236945133526552
+ - -3.1460717188952567
+ - 3.0362165619576422
+ - -1.8588132755047082
+ - 0.11853365016129336
+ - 1.6624312502730691
+ - -4.540338586599082
+ - -4.39703723367203
+ - 0.04545189350399069
+ - 0.24825541747785396
+ - 4.716862700986688
+ - 4.852422468832455
+ - -1.9116258121620582
+ - 0.18064451904762827
+ - 1.6063534146165785
+ - -2.9213128577267757
+ - 3.2002294709371797
+ - -2.44301558207844
+ - 0.6828345841528985
+ - 1.8826762127442933
+ - 2.8908525818330966
+ - 1.2696899914208812
+ - -2.9777466046787078
+ - 3.178229819141054
+ - -2.2889134619992855
+ - 0.5240647665544894
+ - 1.5020884745124643
+ - 3.122094719880301
+ - 1.9365671988695825
+ - -1.9147194028379613
+ - 0.18270265461728383
+ - 1.605958128416795
+ - -2.9228836864791887
+ - 3.2031411629743207
+ - -2.4462789626454846
+ - 0.6672004156007779
+ - 1.7387846110101408
+ - 2.6633152387458643
+ - 1.250805818354086
+ - -2.9794521617673886
+ - 3.1648648387102205
+ - -2.2921555558989084
+ - 0.6010554194221923
+ - 1.737078311937367
+ - 3.2520527511036144
+ - 1.4764244838509524
+ - -3.059992470699791
+ - 3.13299099030969
+ - -2.192442290546529
+ - 0.4375460232822043
+ - 1.3789312087988745
+ - -2.7513273432159444
+ - 4.430891036287018
+ - 5.368002600454529
+ - 3.252449272893132
+ - 2.5236600406792946
+ - -2.288560660359852
+ - 3.163488985084492
+ - -3.0139846868762077
+ - 1.80250788966801
+ - -0.048770683518739935
+ - -1.7232456865355232
+ - 1.95052635425701
+ - 3.3806322637599484
+ - -3.346220321952855
+ - -1.9362050882032051
+ - 1.686272743101312
+ - 0.09224900427621366
+ - -1.9107890834654664
+ - 1.9352402121180292
+ - 3.1189823103973917
+ - -2.7765325537151226
+ - -1.7860306195076618
+ - 1.4887281952220306
+ - 0.3185132726651249
+ - -2.0203652726098325
+ - 3.1009673561444524
+ - -3.0970289063129086
+ - 2.089817877926608
+ - -0.35062216954198666
+ - -1.2122814344664672
+ - -3.028810065030136
+ - -1.497226656443403
+ - 3.137364499103872
+ - -3.024629812538855
+ - 1.9118317564381389
+ - -0.2196067447190005
+ - -1.0443871003562049
+ - -3.443186367011729
+ - -1.6159451620352359
+ - 3.1841589821269882
+ - -2.971879787042902
+ - 1.7985155122711443
+ - 0.06291626191893508
+ - -1.8144005178834948
+ - 2.980462475909419
+ - -5.785022662159085
+ - -5.715081479370759
+ - -1.8399333687460744
+ - -1.67067740818351
+ - 1.8912039109773193
+ - 2.0539506810177848
+ - -0.004014920688084018
+ - -1.7596893107935907
+ - 2.951695303125382
+ - -3.1710943081394403
+ - 2.3237320246445496
+ - -0.7226118202302672
+ - -0.6316757450306111
+ - -0.5791969469662602
+ - 3.982546431919587
+ - 2.0237446135760533
+ - -3.142133375108064
+ - 2.2237203871239095
+ - -0.5001139443099238
+ - -0.7799435819572381
+ - -0.7855820210427976
+ - 3.6917018258942953
+ - 2.0461392912112557
+ - -3.0817785531150297
+ - 2.053935950881597
+ - -0.3631888038546171
+ - -1.5397710285632795
+ - 2.838666451219099
+ - -3.219883638298555
+ - 1.7163504164793528
+ - 3.3322946570828202
+ - 0.626796726552226
+ - 0.008642274897034915
+ - -1.65987585394603
+ - 2.9398500287865432
+ - -3.1939606865070775
+ - 1.7449465061080511
+ - 3.6766666320750194
+ - 1.0251892625814727
+ - 0.2129315617161312
+ - -1.8500194050115821
+ - 2.995320303324581
+ - -3.1701629789405508
+ - 2.2447454069871275
+ - -0.6160684787512613
+ - -1.2144859628055404
+ - 2.661562911914105
+ - 3.1060093416678805
+ - 2.569222982589704e-16
+ - 1.1249656330721175e-17
+ - 1.9273308272485542e-16
+ - 1.74038800881157e-16
+ - -1.495542547495874e-16
+ - 2.0183206946293872e-17
+ - -8.530300066953097e-17
+ - -1.0273583207908602e-16
+ - -3.996936719856229e-16
+ - 1.0319078141599019e-16
+ - 4.7232012976777874e-17
+ - -2.3574647457761285e-18
+ - 2.5328270356373707e-16
+ - 3.6065074707312007e-17
+ - -6.555406354482744e-17
+ - 1.613002194478404e-17
+ - -9.814497967941672e-17
+ - -1.148540280529879e-16
+ - 6.104592920641344e-17
+ - 4.177262093392789e-17
+ - 2.8951321439355965e-18
+ - -5.657915389862709e-17
+ - 1.8710825455949484e-16
+ - 1.048865016717239e-16
+ - 1.565025718950328e-16
+ - -1.1828682759508296e-16
+ - -7.014491594449675e-17
+ - -6.898686308692251e-17
+ - 2.33595804984975e-16
+ - 3.149903772601929e-16
+ - 2.895132143935597e-16
+ - -9.876536513883149e-17
+ - 3.5494320084650413e-16
+ - 3.3097564259778015e-16
+ - 1.3962808739895107e-16
+ - -5.671150279663558e-16
+ - 8.519960309296184e-17
+ - 9.388499952476863e-17
+ - -3.2905244767359436e-16
+ - 1.437639904617162e-16
+ - -6.667075737177403e-17
+ - 3.9489602443281536e-16
+ - -1.7767839557639032e-16
+ - 1.7185194213671993e-16
+ - 1.635853058900181e-16
+ - -2.1680403855014853e-16
+ - 1.208097284633697e-16
+ - -2.0878038660838416e-16
+ - -2.192028623265523e-16
+ - 1.406207041340147e-17
+ - 3.240893639982762e-16
+ - 2.135573546458779e-16
+ - -9.041084095204591e-17
+ - -1.5865324148767068e-16
+ - -5.14175468762962e-16
+ - -1.9686898578762056e-17
+ - 4.293067379150213e-17
+ - 3.970466940254533e-18
+ - 4.6322114302969544e-17
+ - 1.3549218433618593e-16
+ - -1.9773752543080124e-16
+ - -8.321436962283457e-17
+ - -1.194448804526572e-16
+ - 5.922613185879678e-17
+ - 6.27002904315195e-17
+ - 1.0927055891825494e-16
+ - -1.8479214884434636e-16
+ - 5.728225741929717e-17
+ - -2.8769341704594303e-16
+ - -1.9438744394996147e-17
+ - 2.0348643068804478e-17
+ - 1.9107872149974936e-17
+ - -8.027787844827132e-17
+ - -6.973132563822023e-17
+ - 7.177859765428898e-17
+ - -1.4798261158573665e-16
+ - -1.1398548840980721e-16
+ - -3.6486936819714046e-16
+ - -1.2750989142504922e-16
+ - -1.2490427249550718e-16
+ - 5.872982349126496e-17
+ - 1.9273308272485542e-16
+ - -1.283163925222884e-17
+ - 2.3417483141376213e-16
+ - -3.8836129759364643e-17
+ - 1.6957202557337067e-17
+ - -2.456726419282492e-17
+ - -1.3148035836530375e-16
+ - -6.968169480146704e-16
+ - 3.6888119416802264e-16
+ - -3.8836129759364644e-16
+ - 1.1075948402085039e-16
+ - -5.1119761855777104e-17
+ - 7.46944093135384e-17
+ - -3.623051082982261e-17
+ - -8.478601278668533e-19
+ - -1.018259334052777e-16
+ - -2.0468584257624667e-16
+ - 2.599001484641613e-16
+ - 7.051714722014561e-17
+ - -8.244922755622302e-17
+ - 5.504886976540399e-16
+ - 2.8512915714702864e-16
+ - -2.1299900773240463e-18
+ - -1.1480232926470333e-16
+ - -2.100211575272137e-16
+ - -3.498973991099307e-17
+ - 1.0364573075289436e-16
+ - 3.0357528480696116e-17
+ - 4.599124205794833e-17
+ - 7.907846656006943e-17
+ - 2.3719404064958065e-17
+ - -2.3574647457761286e-17
+ - 1.8247604312919788e-16
+ - -1.831377876192403e-16
+ - -5.620692262297823e-17
+ - -1.34892478392085e-16
+ - 3.714040950363094e-17
+ - 4.9299964508160443e-17
+ - 1.6733863791947747e-16
+ - -1.3400325923359047e-17
+ - 3.2673634195844593e-17
+ - -5.623173804135482e-16
+ - 4.518474096070914e-18
+ - -3.0601546761399254e-16
+ - -7.548023089546376e-17
+ - -7.676236084492096e-17
+ - -3.527925312538663e-17
+ - -1.5025735827025748e-16
+ - 1.1745964698252991e-17
+ - -2.359946287613788e-16
+ - -1.1216569106219055e-16
+ - -3.1747191909785197e-16
+ - 2.536135758087583e-16
+ - -2.418676111105053e-16
+ - -1.980270386451948e-16
+ - 1.7006833394090247e-16
+ - 8.84669665125463e-17
+ - 1.0389388493666026e-16
+ - -5.6248281653605874e-18
+ - 4.6983858793011966e-17
+ - -9.26442286059391e-18
+ - 1.919059021123024e-17
+ - -2.0745689762829932e-16
+ - 5.290647197889165e-16
+ - -3.5734202462290796e-17
+ - 7.024831352106588e-17
+ - 1.698511990301073e-16
+ - 4.268251960773622e-17
+ - -6.898686308692251e-17
+ - -3.7041147830124574e-16
+ - -1.3267977025350564e-16
+ - -5.1450634100798315e-17
+ - -1.0058516248644815e-16
+ - -6.187310981896646e-16
+ - 8.474465375605767e-17
+ - -1.0257039595657542e-16
+ - -3.594099761542905e-17
+ - -2.483196198884189e-16
+ - -1.617965278153722e-16
+ - 5.784060433277046e-17
+ - 2.33595804984975e-16
+ - -1.3717756483426273e-16
+ - 5.004442705945817e-18
+ - 7.346191020083438e-16
+ - 1.167979024924875e-16
+ - 1.8735640874326074e-16
+ - -1.1989982978956136e-16
+ - 2.0491331724469876e-16
+ - -3.8629334606226386e-17
+ - -1.7856761473488485e-17
+ - 2.569222982589704e-16
+ - 1.1114205505415618e-16
+ - 9.88480832000868e-17
+ - 1.6957202557337067e-17
+ - 2.0034314436034328e-16
+ - -1.919059021123024e-17
+ - 2.0141847915666221e-16
+ - -3.540333021726958e-16
+ - -1.4508747944180105e-16
+- - 0.6781014899997486
+ - 0.3342082704619836
+ - -1.2180880461097026
+ - 3.4348080786354562
+ - -4.537528727054715
+ - 4.108247415238332
+ - -2.3313155602277833
+ - -0.20334004031034922
+ - 1.665498014548532
+ - 2.385965192162159
+ - -5.941481725975608
+ - -3.146052453771024
+ - 4.017472472880493
+ - -2.156828942799033
+ - -0.5241876731420153
+ - 1.8070560699199605
+ - 2.4447407898344444
+ - -5.144805579081955
+ - -2.9834907192710918
+ - 3.8521157239186787
+ - -1.8675784611680468
+ - -0.7185292597244445
+ - 3.1832417167804423
+ - -4.46975605578774
+ - 4.310063987021047
+ - -1.8899090534698644
+ - -3.953058282264554
+ - -2.2390706323016762
+ - -0.8080150243169075
+ - 3.321837660586521
+ - -4.531462178092156
+ - 4.189318541977503
+ - -1.7500352230674059
+ - -4.017619059466826
+ - -2.784898587257848
+ - -1.0324116828765408
+ - 3.535472349713598
+ - -4.55833498368431
+ - 4.105202553391384
+ - -2.193350126339412
+ - -0.3576880655305005
+ - 2.79623077672511
+ - -6.989676837276611
+ - -6.800030991937483
+ - -0.4516627490307304
+ - -0.1639615272258805
+ - 6.1291335180961015
+ - 6.3350923107810395
+ - -2.2739994472589466
+ - -0.2695774786407171
+ - 2.7224066193624314
+ - -4.346280228795682
+ - 4.444669381392837
+ - -3.103618257059527
+ - 0.638015384032071
+ - 2.0790505263285244
+ - 4.533416528801997
+ - 2.0666951967648473
+ - -4.405405140252341
+ - 4.390983040021033
+ - -2.859150793368017
+ - 0.40842835872327
+ - 1.5697323993078902
+ - 4.3883308274251815
+ - 2.5988668852643615
+ - -2.2785733533061623
+ - -0.26625654375677743
+ - 2.7213473542609288
+ - -4.348076244631773
+ - 4.448584184501979
+ - -3.1083269979263037
+ - 0.6174139818822527
+ - 1.9225294192062914
+ - 4.17527537861112
+ - 2.0394136881606864
+ - -4.407406986097759
+ - 4.358298051985475
+ - -2.8638627415893767
+ - 0.5015806756333303
+ - 1.8250947967209241
+ - 5.026827470097732
+ - 2.3515630541435533
+ - -4.486624575785829
+ - 4.291024626396944
+ - -2.707632464747696
+ - 0.09730481110422685
+ - 2.4202516672764665
+ - -4.157428931635141
+ - 6.501422350805032
+ - 7.9090036370575225
+ - 5.3591076077490705
+ - 4.20262661267034
+ - -3.599660200982617
+ - 4.571175841965724
+ - -4.0628048623882345
+ - 2.1074716288940176
+ - 0.456043695679294
+ - -2.8754494471048857
+ - 2.922996489457594
+ - 5.181809210785311
+ - -4.30179746699719
+ - -2.5565633457741344
+ - 1.9313248670633485
+ - 0.6548747115586521
+ - -3.119355363276137
+ - 2.8643606254080605
+ - 4.724497242302265
+ - -3.5197700646252983
+ - -2.339450306210491
+ - 1.6345208069270944
+ - 0.9717483741475496
+ - -3.2602744022728514
+ - 4.5232832913315955
+ - -4.219305674471554
+ - 2.5480777061920876
+ - -0.15787085904635326
+ - -1.1423632527504783
+ - -4.619103346465991
+ - -2.35240559142624
+ - 4.552984190775895
+ - -4.082261927334916
+ - 2.274135697978353
+ - 0.031993355956465803
+ - -0.842707796315104
+ - -5.195709185032837
+ - -2.5018831966879977
+ - 4.582975945447862
+ - -3.9865920050584682
+ - 2.1013965271098027
+ - 0.61357027297506
+ - -2.9943690095309243
+ - 4.408361338503663
+ - -8.195559352446795
+ - -8.120782627129893
+ - -3.015989772243073
+ - -2.7954389661385455
+ - 1.7907343087822056
+ - 2.019154379658194
+ - 0.5196328308831533
+ - -2.923600230122006
+ - 4.37847704672199
+ - -4.374853365997392
+ - 2.914181092547795
+ - -0.5076959061507914
+ - -1.219586559933987
+ - -1.4641474088067798
+ - 5.708487380654114
+ - 2.9556394454102315
+ - -4.312016971358638
+ - 2.7568987597068695
+ - -0.18673739770358924
+ - -1.4180312979317473
+ - -1.6964479348978039
+ - 5.248537194291544
+ - 2.9656715918963874
+ - -4.191330440150727
+ - 2.49291674917585
+ - 0.009440393356187524
+ - -2.6345266444956827
+ - 4.256305192153757
+ - -4.501667975310724
+ - 2.2245944139228713
+ - 4.440914277173157
+ - 1.4774079388491657
+ - 0.3540418295268575
+ - -2.7929119897318615
+ - 4.366122203911344
+ - -4.428477655092039
+ - 2.2404238923671764
+ - 4.849995754527573
+ - 2.113013494238201
+ - 0.6590065567649386
+ - -3.0411816396415987
+ - 4.423331660150214
+ - -4.372768955899857
+ - 2.7898855219518697
+ - -0.3536985366397346
+ - -2.200522858470698
+ - 4.383103595298632
+ - 5.16922501590781
+ - 2.4021324988539924e-16
+ - -2.2036091518412655e-16
+ - 2.190374262040417e-16
+ - 2.358291926388682e-16
+ - -1.8859717966209029e-16
+ - 2.812414082680294e-17
+ - -1.823933250679426e-17
+ - -9.446402595355575e-17
+ - -5.099154886083139e-16
+ - 1.3267977025350564e-16
+ - 4.8472783895607416e-17
+ - -1.1481266902236024e-16
+ - 3.4120166292046695e-16
+ - 1.1580528575742387e-18
+ - -9.37816019481995e-17
+ - 2.9447629806887785e-17
+ - -1.2486291346487953e-16
+ - -1.0339757656912845e-16
+ - 1.1613615800244509e-16
+ - 2.4815418376590827e-17
+ - 1.0670629901934055e-17
+ - -5.897797767503087e-17
+ - 2.6742749203839385e-16
+ - 1.5104317985218283e-16
+ - 1.435985543392056e-16
+ - -2.0547166415817205e-16
+ - -8.519960309296184e-17
+ - -8.784658105313153e-17
+ - 3.216078221606171e-16
+ - 4.342698215903395e-16
+ - 4.261634515873198e-16
+ - -1.6560155863311612e-16
+ - 3.907601213700502e-16
+ - 4.586871592971392e-16
+ - 2.714806770399037e-16
+ - -7.623296525288702e-16
+ - 1.4988512699460861e-16
+ - 1.2647591565935793e-16
+ - -4.106124560713229e-16
+ - 1.2308447514789052e-16
+ - -9.429858983104514e-17
+ - 5.252596889711726e-16
+ - -3.097791394011088e-16
+ - 2.3868296575217614e-16
+ - 2.3578783360824054e-16
+ - -3.7115594085254347e-16
+ - 1.8206245282292137e-16
+ - -2.6999175193730823e-16
+ - -3.6462121401337455e-16
+ - 6.369290716658312e-18
+ - 4.584234954768879e-16
+ - 2.7611288847020064e-16
+ - -1.3011551035459125e-16
+ - -2.415367388654841e-16
+ - -6.415612830961282e-16
+ - -1.4806532964699195e-17
+ - 3.970466940254532e-17
+ - 4.8472783895607416e-17
+ - 2.8785885316845363e-17
+ - 1.3085997290588898e-16
+ - -3.2533013491710574e-16
+ - -1.2639319759810263e-16
+ - -2.0629884477072508e-16
+ - 9.396771758602393e-17
+ - 1.3052910066086777e-16
+ - 1.8942436027464331e-16
+ - -2.6519410438450067e-16
+ - 5.583469134732937e-17
+ - -3.9224904647264567e-16
+ - -1.4475660719677982e-18
+ - -9.26442286059391e-18
+ - -4.954811869192635e-17
+ - -1.6731795840416365e-16
+ - -7.926458219789386e-17
+ - 1.4128244862405713e-16
+ - -1.2043749718772083e-16
+ - -2.0224565976921524e-16
+ - -5.184974874635516e-16
+ - -1.6312001679545703e-16
+ - -1.6163109169286158e-16
+ - 7.725866921245277e-17
+ - 1.8826630741706907e-16
+ - 1.3286588589133005e-17
+ - 3.366625093090822e-16
+ - -4.0573209045726e-17
+ - 3.73472046567692e-17
+ - -2.5146290621612038e-17
+ - -1.8037707232484457e-16
+ - -1.0071751138445665e-15
+ - 5.505300566846676e-16
+ - -3.6197423605320486e-16
+ - -1.108422020821057e-17
+ - -1.081125060606807e-16
+ - 1.2159555004529507e-16
+ - -5.426304818347861e-17
+ - 5.1450634100798315e-17
+ - -8.295587568141175e-17
+ - -2.220566354398603e-16
+ - 3.187126900166815e-16
+ - 1.0571368228427692e-16
+ - -1.3292792443727155e-16
+ - 7.457860402778097e-16
+ - 4.3761990307117924e-16
+ - 4.3344264097778644e-17
+ - -8.528232115421714e-17
+ - -2.500980582054079e-16
+ - -7.130296880207099e-17
+ - 1.4789989352448135e-16
+ - 6.815968247436948e-17
+ - 4.5494933690416516e-17
+ - 1.3350695086605867e-16
+ - -3.3728289476849703e-17
+ - -8.371067799036639e-17
+ - 2.5485434672758783e-16
+ - -2.6469779601696886e-16
+ - -1.0331485850787314e-16
+ - -1.6278914455043582e-16
+ - 7.18819952308581e-17
+ - 6.402377941160434e-17
+ - 2.129162896711493e-16
+ - -3.1805094552663914e-17
+ - 1.6378176128549948e-17
+ - -6.847401110713962e-16
+ - 2.903403950061127e-17
+ - -4.3956377751067886e-16
+ - -1.6758679210324338e-16
+ - -1.2440796412797536e-16
+ - -9.793818452627846e-17
+ - -1.8632243297756946e-16
+ - 1.952146245625145e-17
+ - -2.978884180956591e-16
+ - -1.378082900513344e-16
+ - -3.8182657075447753e-16
+ - 3.628014166657579e-16
+ - -2.9100213949615514e-16
+ - -2.8785885316845363e-16
+ - 2.5030485335854617e-16
+ - 1.3765319368648072e-16
+ - 1.8032537353656e-16
+ - -3.143286327701505e-17
+ - 9.992341799640573e-17
+ - -7.957477492760125e-17
+ - 1.9211269726544065e-17
+ - -2.517937784611416e-16
+ - 7.828437317201853e-16
+ - -1.8363409598677214e-17
+ - 8.768114493062092e-17
+ - 2.244141001856364e-16
+ - 9.032812289079061e-17
+ - -8.71848365630891e-17
+ - -5.365920633631491e-16
+ - -3.126742715450444e-16
+ - -8.271806125530276e-17
+ - -1.5253210495477828e-16
+ - -8.735027268559971e-16
+ - 1.112454526307253e-16
+ - -1.773475233313691e-16
+ - -7.17992771696028e-17
+ - -2.6138907356675675e-16
+ - -2.0989708043533075e-16
+ - 1.2039613815709318e-16
+ - 3.775252315692018e-16
+ - -1.7494869955496533e-16
+ - 2.148601641106489e-17
+ - 9.656506470944045e-16
+ - 1.4628689133000294e-16
+ - 2.907953443430169e-16
+ - -2.0199750558544933e-16
+ - 3.23758491753255e-16
+ - -9.843449289381028e-17
+ - -2.580803511165446e-17
+ - 3.6726819197354424e-16
+ - 1.7771975460701797e-16
+ - 1.0381116687540496e-16
+ - 3.114335006262149e-17
+ - 2.9166388398619756e-16
+ - -2.7710550520526424e-17
+ - 2.5559880927888555e-16
+ - -3.7289302013890483e-16
+ - -9.330597309598151e-17
+- - 1.2121411771295727
+ - 1.1231644800139882
+ - -0.169113577204593
+ - -1.4829267311374725
+ - 2.575072189643042
+ - -2.9008756828934406
+ - 2.169163380653201
+ - -0.8118181922603779
+ - -0.4708597632629891
+ - -0.33971342874820754
+ - 3.7424279891138204
+ - 1.8877773390331318
+ - -2.87994768012579
+ - 2.0846018365869727
+ - -0.6126956802201924
+ - -0.6142788558314627
+ - -0.5450544278094662
+ - 3.3097173147885735
+ - 1.8188577353745563
+ - -2.836354320938745
+ - 1.9376509841642635
+ - -0.49129173034084794
+ - -1.2792383104350982
+ - 2.463129986364224
+ - -2.928830208705081
+ - 1.5980231871486108
+ - 3.0690658042551227
+ - 0.40083726851681867
+ - -0.08618239257434467
+ - -1.38938897211293
+ - 2.564120817073325
+ - -2.9146478279835444
+ - 1.5397546476073196
+ - 3.2263949385840203
+ - 0.6835535419083272
+ - 0.059533257952621245
+ - -1.5668689382751793
+ - 2.6188857893290503
+ - -2.9002719291107057
+ - 2.101704734328952
+ - -0.7170405873083735
+ - -0.9798048862858753
+ - 3.347029927014362
+ - 3.2065194375728345
+ - -0.6210566630319047
+ - -0.7981622220189665
+ - -4.752557100451177
+ - -4.85555546597917
+ - 2.14137549371325
+ - -0.7712848619688453
+ - -0.9243806431748262
+ - 2.3023456184608686
+ - -2.9232388846115067
+ - 2.5200782784700326
+ - -0.9687582790056655
+ - -2.3106433069496153
+ - -2.037527540955044
+ - -0.8097760163515589
+ - 2.376142437593424
+ - -2.9284099315603265
+ - 2.4155553535284557
+ - -0.835007306016727
+ - -1.9438184979448105
+ - -2.0657895504978607
+ - -0.9119837073816801
+ - 2.484876341520945
+ - -0.77264250678223
+ - -0.9245979561315721
+ - 2.3042232885482625
+ - -2.9260482740897555
+ - 2.5228567600299
+ - -0.9533394925070108
+ - -2.1313795725641493
+ - -1.8786505315963495
+ - -0.7938414553087225
+ - 2.3781222297083837
+ - -2.932219374524641
+ - 2.4182775221377018
+ - -0.9203525893691366
+ - -2.2369087098878233
+ - -2.37437329437632
+ - -0.9997934825541157
+ - 2.4869908826707947
+ - -2.930160010454457
+ - 2.346905517540698
+ - -0.9928726403679391
+ - -0.7027479685160544
+ - 2.0950192154799283
+ - -3.626565704511717
+ - -4.356899495034735
+ - -2.0010978397696335
+ - -1.502742948806136
+ - 1.5796912266201906
+ - -2.689976079881241
+ - 2.8506610572058637
+ - -2.101739091200433
+ - 0.6129306663796562
+ - 0.9984252015003207
+ - -1.5277386682779284
+ - -2.5175477814212974
+ - 3.423685280063859
+ - 1.9050711845481618
+ - -2.011972678581946
+ - 0.4893374730311641
+ - 1.188081677165685
+ - -1.5560056122353223
+ - -2.3860568107807905
+ - 2.8967327772202194
+ - 1.778510074658358
+ - -1.8590480119295045
+ - 0.2861819012925715
+ - 1.2992027756720896
+ - -2.589387812793576
+ - 2.8795675847954745
+ - -2.3154478556935865
+ - 0.6886177751979912
+ - 1.7090218944305033
+ - 2.28192147586535
+ - 1.0502414953039225
+ - -2.6449398282043273
+ - 2.8559523892278142
+ - -2.1832406083566487
+ - 0.5787143347614767
+ - 1.631650076858242
+ - 2.6564437813950748
+ - 1.1752464405961998
+ - -2.7277254842388463
+ - 2.8324237459301145
+ - -2.0987217275623404
+ - 0.5143995718374044
+ - 1.0897028067611292
+ - -2.4211511015600884
+ - 5.065153946446011
+ - 4.976565946067033
+ - 1.1573016401533527
+ - 0.9894215996434512
+ - -2.6564316754741313
+ - -2.80253827969019
+ - 0.5741965876292957
+ - 1.034213944424678
+ - -2.3836116598715287
+ - 2.8874184580822697
+ - -2.4811543015060336
+ - 1.192622190189929
+ - 0.18728146487305292
+ - -0.21786964784622134
+ - -3.4117334242489705
+ - -1.6718989671217692
+ - 2.887565133951875
+ - -2.4102326893827035
+ - 1.0052391086064398
+ - 0.3301580199441302
+ - 0.030493064310552515
+ - -3.2110791679223
+ - -1.7159419493717452
+ - 2.8734223140001802
+ - -2.2889398864965167
+ - 0.8869047872064496
+ - 0.8163912774774966
+ - -2.241941435649326
+ - 2.865153537871542
+ - -1.7356935559089106
+ - -3.232592982104532
+ - 0.11515789619424324
+ - 0.37741345268177345
+ - 0.9357260250799394
+ - -2.3673559364602155
+ - 2.8844644132788937
+ - -1.7885273023050037
+ - -3.6228190132391997
+ - -0.15342171742685712
+ - 0.2160777114855877
+ - 1.125030013284874
+ - -2.4409280307947454
+ - 2.8874697348313316
+ - -2.425935943346555
+ - 1.1027567816417094
+ - 0.5014057269811936
+ - -1.6402413903572355
+ - -1.8530945606133529
+ - -4.0961983933625926e-16
+ - -1.985233470127266e-17
+ - -1.6328545291796764e-16
+ - -8.966637840074819e-17
+ - 4.2827276214933e-17
+ - 3.937379715752411e-17
+ - 9.853789047037941e-17
+ - 3.6065074707312007e-17
+ - 2.7379678275505216e-16
+ - -1.2986735617082534e-16
+ - -2.4815418376590827e-17
+ - -7.138568686332629e-17
+ - -2.664348753033302e-16
+ - -9.107258544208833e-17
+ - 1.1249656330721175e-17
+ - 1.2738581433316626e-16
+ - 7.659692472241035e-17
+ - 6.658803931051873e-17
+ - 7.394994676224067e-17
+ - -1.1580528575742387e-18
+ - -9.59529510561512e-18
+ - 9.835177483255498e-17
+ - -1.1183481881716934e-16
+ - -6.110279787352646e-17
+ - -3.871205266748169e-17
+ - 3.302105005311686e-16
+ - 3.7223127564886245e-17
+ - 3.4576149604716557e-17
+ - -2.321275593976934e-16
+ - -3.360007648190398e-16
+ - -2.3194144375986896e-16
+ - 8.12291361527073e-17
+ - -3.335192229813807e-16
+ - -1.9418064879682322e-16
+ - -2.6171994581177796e-16
+ - 5.97224402263286e-16
+ - -7.213014941462401e-17
+ - -1.4894420904782955e-17
+ - 1.8811121105221538e-16
+ - -1.638127805584702e-16
+ - 6.038418471637102e-17
+ - -3.278943948160201e-16
+ - 4.79764755280756e-18
+ - -6.621580803486987e-17
+ - -5.649643583737179e-17
+ - 4.0870994066245092e-16
+ - -7.313827578617302e-17
+ - 6.771300494359084e-16
+ - 1.2813027688446399e-16
+ - 3.474158572722716e-17
+ - -2.362427829451447e-16
+ - -1.433504001554397e-16
+ - 8.486873084794063e-17
+ - 3.3707609961535873e-16
+ - 1.3807712375041414e-16
+ - 1.7784383169890095e-18
+ - 8.792929911438683e-17
+ - 4.8720938079373324e-17
+ - 2.1548054957006368e-17
+ - 1.3148035836530375e-16
+ - 1.5096046179092753e-16
+ - 8.668852819555729e-17
+ - 5.66618719598824e-17
+ - 8.395883217413231e-18
+ - -6.869734987252895e-17
+ - -1.224227306578481e-16
+ - 3.54364174417717e-16
+ - -6.452008777913615e-18
+ - 2.7379678275505216e-16
+ - 1.0877425055072312e-17
+ - 2.0605069058695917e-16
+ - 2.248276904919129e-16
+ - 1.7623082950442252e-16
+ - -2.797938421960616e-17
+ - 1.9058241313221755e-16
+ - -3.0647041695089675e-17
+ - 1.3255569316162268e-16
+ - 2.74293091122584e-16
+ - 8.652309207304668e-17
+ - 1.38924983878281e-16
+ - -4.834870680372446e-17
+ - 6.017738956323276e-17
+ - -1.555099551599692e-17
+ - -1.9571093293004632e-16
+ - 1.2821299494571927e-17
+ - 3.7223127564886245e-18
+ - 1.2679644814672223e-16
+ - 1.4107565347091887e-16
+ - 7.762262868197611e-16
+ - -2.644082828025753e-16
+ - -2.3194144375986896e-16
+ - -8.602678370551488e-18
+ - -5.2939559203393765e-17
+ - -5.40148939997127e-17
+ - 9.096918786551921e-17
+ - -9.479489819857696e-17
+ - -8.42069863578982e-17
+ - 1.0935327697951025e-16
+ - -1.5120861597469343e-16
+ - -3.2032569221115997e-17
+ - 2.8785885316845363e-17
+ - -3.4915293655863293e-16
+ - -3.4998011717118596e-16
+ - 3.736271429325457e-17
+ - 1.2912289361952762e-16
+ - 7.444625512977249e-17
+ - 4.844176462263668e-17
+ - -9.529120656610878e-17
+ - 8.346252380660048e-17
+ - -4.979627287569226e-17
+ - -1.0579640034553223e-16
+ - 1.0563096422302162e-16
+ - 3.28390703183552e-17
+ - -1.4397078561485447e-16
+ - 1.0075059860895876e-16
+ - 9.462946207606635e-17
+ - 1.773475233313691e-16
+ - -1.1187617784779698e-17
+ - 2.4257071463117533e-17
+ - -1.8098711802660243e-16
+ - -2.9447629806887785e-17
+ - 1.1497810514487085e-16
+ - 2.359119107001235e-16
+ - 2.646977960169688e-18
+ - 2.514629062161204e-16
+ - 3.338500952264019e-16
+ - 7.295733002717704e-17
+ - 5.215373762146839e-17
+ - 7.426013949194806e-17
+ - 1.530284133223101e-18
+ - 1.1779051922755114e-16
+ - 1.0108147085397997e-16
+ - 3.546950466627382e-16
+ - -2.444318710094197e-16
+ - 2.022870187998429e-16
+ - 7.552158992609141e-17
+ - -1.6233419521353166e-16
+ - -1.5046415342339573e-16
+ - -6.088049308390284e-17
+ - 8.313165156157928e-18
+ - -1.5848780536516008e-16
+ - 7.990564717262246e-17
+ - -5.190558343770248e-18
+ - 2.776018135727961e-16
+ - -3.1978802481300045e-16
+ - -1.003783673333099e-16
+ - -8.527198139656023e-17
+ - -8.09809819689414e-17
+ - -5.426304818347861e-17
+ - 1.0348029463038375e-16
+ - 3.5006283523244126e-16
+ - 2.4616895029578104e-16
+ - 4.714929491552257e-17
+ - 1.3962808739895107e-16
+ - 4.514958578467563e-16
+ - -1.1018045759206327e-16
+ - 1.493888186270768e-16
+ - 1.3865615017920125e-17
+ - 3.879477072873699e-17
+ - 7.65555656917827e-17
+ - -1.257314531080602e-16
+ - -1.978616025226842e-16
+ - 9.604600887506341e-17
+ - 4.475047113911879e-17
+ - -2.5890753172909766e-16
+ - -5.748905257243542e-17
+ - -1.6684232955194566e-16
+ - 5.604148650046762e-17
+ - -2.099384394659584e-16
+ - 1.4702359906305798e-16
+ - 1.0960143116327615e-16
+ - -2.3306847734447246e-16
+ - -3.9601271825976194e-17
+ - 7.688643793680391e-17
+ - -6.005331247134981e-17
+ - -2.013357610954069e-16
+ - -8.313165156157928e-18
+ - -1.356550355192823e-16
+ - 2.9116757561866574e-16
+ - 4.470497620542838e-16
+- - -3.75992799825942
+ - -3.1601324128231236
+ - 1.6874320879059475
+ - -0.16893281108439243
+ - -1.480194012992974
+ - 2.614776914536814
+ - -2.9000150259926043
+ - 2.1680464794713967
+ - -0.6630147672153859
+ - -1.7822260543047177
+ - -2.7626520080438275
+ - -1.2294963827356804
+ - 2.6659401552724002
+ - -2.8786356564843008
+ - 2.029503907170798
+ - -0.4623091131436803
+ - -1.3364409973214897
+ - -2.5639997418570126
+ - -1.2371324699298916
+ - 2.736356753463846
+ - -2.8350171303913627
+ - 1.9383818419960057
+ - -0.3982434134547345
+ - -1.2766338150017245
+ - 2.4620995234470855
+ - -1.892058154325654
+ - -3.277718424345782
+ - 1.468484478807822
+ - 1.1037765521540983
+ - -0.27372560374326904
+ - -1.4565055465016803
+ - 2.563022467827097
+ - -1.9011805865404603
+ - -3.5977256897430503
+ - 1.3665420148677914
+ - 0.9885604635013937
+ - -0.07094983131431273
+ - -1.5663114236767284
+ - 2.6166026375467033
+ - -2.8840811492147296
+ - 2.1022379101073403
+ - -0.716552725378969
+ - -0.6258341737867771
+ - -0.48532284037366763
+ - 2.041116472386164
+ - 2.1646664314800526
+ - 5.0670006051512475
+ - 5.0963826382188335
+ - -2.8939004151882317
+ - 2.1400756562319456
+ - -0.7730681610644907
+ - -1.0127868765402634
+ - 2.299919654558835
+ - -2.9220256385301444
+ - 1.7059040796313862
+ - 3.4553134509311305
+ - 0.07442216679289052
+ - -0.2621356314727355
+ - -1.1278776471042313
+ - 2.3751310081925388
+ - -2.9280774190563186
+ - 1.6261628692687073
+ - 3.104134563240128
+ - 0.30439285509056857
+ - -0.14106330414906798
+ - -1.3145435079989465
+ - 2.4837467939836704
+ - -0.7713716107512344
+ - -1.0153939588066185
+ - 2.30251208556712
+ - -2.9237129299331803
+ - 1.6902164374401447
+ - 3.1819507955307302
+ - 0.07367248518435056
+ - -0.27172627482963546
+ - -1.1305133337586886
+ - 2.4205241335116017
+ - -2.929617434232751
+ - 1.7357357180287851
+ - 3.5515476453805173
+ - 0.36852181538371903
+ - -0.10339386659930316
+ - -1.317203721459301
+ - 2.4862220505781525
+ - -2.9274421362165817
+ - 2.2870947751206616
+ - -0.9915150249641547
+ - -0.705188537136652
+ - 1.8580449601580928
+ - 2.123989237698738
+ - -0.9252520794459609
+ - -0.8909529013036098
+ - -0.038164210311187385
+ - 1.5806960980012796
+ - -2.687861158878375
+ - 2.8307595009565634
+ - -2.0998597935693617
+ - 0.6095515911593898
+ - 0.5799655921295769
+ - 0.5538442387780781
+ - -3.7753375045882134
+ - -1.9214225026328446
+ - 2.804776086904934
+ - -2.00824556755588
+ - 0.40983769075480475
+ - 0.7148009850207893
+ - 0.7304460841382123
+ - -3.3262890647157506
+ - -1.8458235820908364
+ - 2.748103290060739
+ - -1.8553072340108157
+ - 0.2854739122446414
+ - 1.3834853443680142
+ - -2.587565839875612
+ - 2.8769677076791944
+ - -1.5380840784653556
+ - -2.9909429675677512
+ - -0.5876540485064706
+ - -0.02111713688780183
+ - 1.4921642074427484
+ - -2.6764597273649824
+ - 2.853130171781747
+ - -1.473881995912906
+ - -3.128470291888261
+ - -0.8839504338963265
+ - -0.16732443319560053
+ - 1.6617090951616744
+ - -2.7265417563309615
+ - 2.8299066319203954
+ - -2.028213527823076
+ - 0.5134325172134304
+ - 1.0914131874625823
+ - -3.5675470068393875
+ - -3.4296011961038477
+ - 0.46978903220787505
+ - 0.6511622512609264
+ - 4.632388240409442
+ - 4.739913217706781
+ - -2.0727297657062076
+ - 0.5734739514888271
+ - 1.0313733362379818
+ - -2.4357644344367015
+ - 2.8857722672603163
+ - -2.479841570625118
+ - 0.8770416301363929
+ - 2.153431407228317
+ - 2.1970222807577664
+ - 0.9024319550634722
+ - -2.5020206192025563
+ - 2.8858607633279365
+ - -2.3641119341281343
+ - 0.7403313471057675
+ - 1.7917726885279253
+ - 2.20453150451918
+ - 1.0008679904984366
+ - -2.6029755360366953
+ - 2.8716871052043578
+ - -2.2891770393831803
+ - 0.7968369192458727
+ - 0.8135578478601146
+ - -2.240773387825047
+ - 1.8658145380919273
+ - 3.14710559984666
+ - -1.9127701743666434
+ - -1.3280066884762836
+ - 0.677803533698452
+ - 1.0076960706006755
+ - -2.3660996997587054
+ - 1.9797360131637933
+ - 3.666835469963084
+ - -1.9448467221590737
+ - -1.2626769401835398
+ - 0.47727078866973
+ - 1.1243563374106569
+ - -2.438154454351718
+ - 2.8854427696167724
+ - -2.4261064083188106
+ - 1.102099508847837
+ - -0.747815324631892
+ - -1.0841243889635375
+ - 1.1044515538808026e-15
+ - 1.5608070978263077e-15
+ - 2.6403605152692643e-16
+ - 2.5394444805377947e-17
+ - -1.56006263527501e-16
+ - -1.7511413567747593e-16
+ - -4.751532233657729e-16
+ - -1.1166938269465874e-16
+ - -2.875279809234324e-16
+ - 1.649398141430737e-16
+ - 1.5486889018524058e-16
+ - 4.297616872519255e-16
+ - 2.686682629572234e-16
+ - 2.1151008262980915e-16
+ - -1.1894857208512538e-16
+ - -2.6105820132173553e-16
+ - -8.751570880811032e-17
+ - -2.0853223242461825e-16
+ - -4.9010451293766884e-17
+ - 6.834579811219391e-17
+ - 9.704896536778396e-17
+ - -4.259980154648092e-17
+ - 5.575197328607407e-17
+ - -2.924083465374953e-17
+ - 9.330597309598151e-17
+ - -3.2768759966288186e-16
+ - -1.0356301269163905e-16
+ - -5.037529930447938e-17
+ - 2.043136113005978e-16
+ - 2.4410099876439847e-16
+ - 1.7867101231145395e-16
+ - 1.1911400820763599e-16
+ - 4.0978527545876986e-16
+ - 1.1018045759206327e-16
+ - -5.881254155252027e-17
+ - -6.619099261649326e-16
+ - -6.394106135034904e-17
+ - -1.2200914035157157e-17
+ - -2.0480991966812963e-16
+ - 3.249165446108292e-16
+ - 9.529120656610878e-17
+ - 2.8686623643339e-16
+ - 3.6180879993069426e-16
+ - 3.023345138881316e-17
+ - -5.3994214484398875e-17
+ - -7.974021105011186e-17
+ - 9.233403587623171e-18
+ - -6.48344164119063e-16
+ - 1.6353360710173355e-16
+ - 4.832285740958218e-17
+ - 1.787123713420816e-16
+ - 1.3950401030706812e-16
+ - -9.384364049414098e-17
+ - -2.9811589276411117e-16
+ - -3.907601213700502e-16
+ - -6.551270451419979e-17
+ - -3.110199103199384e-17
+ - -1.8743912680451605e-16
+ - 1.3863547066388744e-16
+ - 1.8181429863915546e-16
+ - 1.1601208091056213e-16
+ - 4.9630836753181654e-17
+ - 1.0891900715791991e-16
+ - -8.776386299187622e-17
+ - -2.0580253640319326e-16
+ - -4.152705168957621e-17
+ - -3.395576414530178e-16
+ - 7.403266482349598e-17
+ - -1.8986896985389057e-16
+ - -2.014184791566622e-17
+ - -1.1363393664947216e-17
+ - 9.230301660326096e-17
+ - 6.57608586979657e-17
+ - 1.9273308272485542e-17
+ - -4.652063764998228e-16
+ - -2.8457081023355535e-16
+ - -4.135903062765138e-19
+ - -1.404552680115041e-16
+ - -1.5716431638507524e-18
+ - -1.2349806545416703e-16
+ - 9.851721095506558e-17
+ - 3.4907021849737763e-16
+ - -1.4670048163627946e-16
+ - 4.95067596612987e-17
+ - -8.246990707153685e-17
+ - -7.064122431202856e-17
+ - -7.378451063973007e-17
+ - -4.441959889409758e-17
+ - -2.5857665948407645e-16
+ - -1.288747394357617e-16
+ - -3.505591435999731e-16
+ - 2.5874209560658706e-16
+ - 9.897216029196975e-17
+ - -1.330520015291545e-16
+ - -1.3286588589133007e-16
+ - -1.7780247266827327e-16
+ - -2.0844951436336294e-17
+ - -2.725560118362226e-16
+ - 3.2930060185736027e-16
+ - -6.514047323855092e-18
+ - 1.110076382046163e-16
+ - 3.0787662399223685e-16
+ - 6.550236475654288e-17
+ - -1.770993691476032e-16
+ - -3.903465310637737e-16
+ - -2.989430733766642e-16
+ - 8.395883217413231e-18
+ - 1.0149506116025648e-16
+ - -6.369290716658313e-17
+ - 1.285438671907405e-16
+ - 5.1711712981635365e-17
+ - 1.3919381757736073e-16
+ - 1.4558378780933287e-16
+ - 6.693442119202531e-17
+ - -6.27002904315195e-17
+ - -1.2407709188295415e-16
+ - -2.514629062161204e-16
+ - -4.020097777007714e-17
+ - -8.768114493062093e-18
+ - 2.5510250091135373e-16
+ - 1.560889815887563e-16
+ - 1.0670629901934055e-17
+ - -3.660274210547147e-16
+ - -3.9456515218779414e-17
+ - -1.682485365932858e-16
+ - -1.0554824616176632e-16
+ - -5.637235874548884e-17
+ - 1.6717320179696687e-16
+ - -4.5815466177780814e-17
+ - 3.821574429994987e-17
+ - -9.032812289079061e-17
+ - -1.627788047927789e-16
+ - -2.720597034686908e-16
+ - 5.476969630866734e-17
+ - -2.9625473638586686e-16
+ - 6.220398206398768e-17
+ - 5.81094380318502e-17
+ - 4.0060357065943125e-16
+ - -1.8983795058091982e-17
+ - 1.2494563152613483e-16
+ - 1.0839167951741735e-16
+ - 2.1322648240085668e-16
+ - -5.542110104105285e-18
+ - -3.3008642343928564e-16
+ - 4.177262093392789e-17
+ - -4.4667753077863494e-18
+ - 4.561901078229947e-17
+ - 2.1093105620102203e-17
+ - -3.2714993226472245e-17
+ - -7.246102165964522e-17
+ - -1.2118195973901855e-16
+ - 3.618501589613219e-16
+ - 4.446095792472523e-17
+ - -8.660581013430199e-17
+ - -2.4683069478582346e-16
+ - 7.618333441613384e-17
+ - -3.1805094552663914e-17
+ - -2.8000063734919987e-17
+ - -2.265647697782743e-16
+ - -2.5146290621612038e-17
+ - 2.6635215724207488e-17
+ - -1.3069453678337836e-17
+ - -9.429858983104514e-17
+ - -1.2858522622136815e-16
+ - 1.6047303883528734e-16
+ - 5.194694246833013e-17
+ - -2.5050647863285594e-17
+ - 5.790264287871194e-19
+ - 6.782881022934826e-18
+ - -3.3955764145301786e-17
+ - 1.7960159050057613e-17
+ - 1.255660169855496e-16
+ - -2.043136113005978e-17
+ - -1.4475660719677984e-17
+ - -2.7503755367388167e-17
+ - -1.4517019750305636e-17
+ - -4.557765175167182e-17
+ - 9.024540482953531e-17
+ - -7.987255994812034e-16
+ - -8.773077576737411e-16
+- - 5.062070567624425
+ - 4.150841128072106
+ - -2.7218812063110094
+ - 1.6772234713849958
+ - -0.1691146188006085
+ - -1.5532993334247667
+ - 2.6004347752995827
+ - -2.884335690293525
+ - 1.5728121465040907
+ - 3.30780386402751
+ - 0.8860065786329634
+ - 0.17350266668503128
+ - -1.6559436794804263
+ - 2.6522257233256497
+ - -2.8478609214808643
+ - 1.3808132862150997
+ - 2.768877401927756
+ - 0.984842164075847
+ - 0.2546989083677842
+ - -1.8200185609930908
+ - 2.7221072523811474
+ - -2.820040718702458
+ - 1.8571435300163537
+ - -0.39726678302562446
+ - -1.271047040831622
+ - 1.5656415222097706
+ - 2.4134654911987754
+ - -2.8457174824044054
+ - -1.7539820070478644
+ - 1.7624749577938592
+ - -0.19441362447800456
+ - -1.4499305517056227
+ - 1.6387493961670236
+ - 2.7905156287518578
+ - -2.9567200721570623
+ - -1.70674285459822
+ - 1.597449207788316
+ - -0.06922898603743213
+ - -1.556938481913884
+ - 2.641006415905408
+ - -2.86894510108243
+ - 2.0901546623952414
+ - -2.282481676050125
+ - -2.377053951513082
+ - -2.7848043569956378
+ - -2.8147541007720625
+ - -3.7230615783350443
+ - -3.669659779107447
+ - 2.6179661914665004
+ - -2.878120718483919
+ - 2.1292761933454507
+ - -0.67716035182415
+ - -1.0064142845950699
+ - 2.2885724296408094
+ - -1.8806282421748752
+ - -3.4630696315706047
+ - 1.9003443051912459
+ - 1.2414392817139757
+ - -0.5552470900531552
+ - -1.1232113080840858
+ - 2.4059119277826606
+ - -1.8806090125200703
+ - -3.2422192394286244
+ - 1.5451350829824735
+ - 1.1411959914636949
+ - -0.3555790670406001
+ - -1.3087968454566485
+ - 2.4698895901368916
+ - -0.6746208166733124
+ - -1.008027570800273
+ - 2.288690590445744
+ - -1.8698440618236343
+ - -3.185643681738166
+ - 1.7437131835071358
+ - 1.2415837442671356
+ - -0.5527568404914192
+ - -1.1951650054445888
+ - 2.405844485430717
+ - -1.9784771945037087
+ - -3.6967890983205356
+ - 1.7448031624040645
+ - 1.1656433427701578
+ - -0.353181213256424
+ - -1.3101199187135846
+ - 2.469713991672196
+ - -2.9029259103271214
+ - 2.2730409245507572
+ - -0.9837590332956387
+ - 0.5063745050643219
+ - 0.7887376358423369
+ - 3.530180689135075
+ - 2.97789159453206
+ - -1.5834555616713526
+ - -0.03954320877838397
+ - 1.5698780812323962
+ - -2.7072852509403336
+ - 2.813069636173379
+ - -2.0854565182042375
+ - 0.5512580921330307
+ - 1.5781853295315769
+ - 2.8905477816308
+ - 1.3095492710691918
+ - -2.749750601216412
+ - 2.786589157860904
+ - -1.9376286385883719
+ - 0.35463039019320947
+ - 1.1532304691609119
+ - 2.6656871577316514
+ - 1.3092902607434755
+ - -2.8106431990722016
+ - 2.730121906457117
+ - -1.8441828152839521
+ - 0.18931191677873274
+ - 1.3738820774310387
+ - -2.5719586220667487
+ - 1.8792570767641579
+ - 3.286839246906473
+ - -1.287809558066995
+ - -1.0082787323651565
+ - 0.06679871444382214
+ - 1.5489156287731847
+ - -2.6601767702757835
+ - 1.8814581085228812
+ - 3.5929459859429222
+ - -1.1661105251796209
+ - -0.8888096341544053
+ - -0.1369263543022338
+ - 1.6523533190629722
+ - -2.7088767153233686
+ - 2.7916759276119754
+ - -2.0160726706426693
+ - 0.5085422497868693
+ - 0.9153076128538862
+ - 0.7735130704827466
+ - -1.9050048781675084
+ - -2.0333282973319515
+ - -5.081238472951131
+ - -5.119703502296415
+ - 2.8072163867221627
+ - -2.061014880033303
+ - 0.571721184123139
+ - 1.1131702233032905
+ - -2.422099597090829
+ - 2.8705428789902494
+ - -1.6478082031594048
+ - -3.372605391230113
+ - -0.27195539403929614
+ - 0.15706920434756982
+ - 1.2268788036885285
+ - -2.4892994947242113
+ - 2.867238503368038
+ - -1.5619060297604141
+ - -3.0165818165450338
+ - -0.48384295666010074
+ - 0.036762309444588116
+ - 1.4057834451645832
+ - -2.5896095937416996
+ - 2.856491838895853
+ - -2.2167462863650442
+ - 0.7938684412492758
+ - 0.8103355078584177
+ - -1.3851704123534305
+ - -2.033412707484734
+ - 3.073471774722
+ - 1.83832731938755
+ - -2.133506207692558
+ - 0.5983271683381222
+ - 1.0034346114644273
+ - -1.522536081084751
+ - -2.511905396448485
+ - 3.39375403553675
+ - 1.8897283214601457
+ - -1.9907789195206265
+ - 0.47357828059980345
+ - 1.1171226190787331
+ - -2.4762945318979455
+ - 2.870121551896192
+ - -2.4125416453030493
+ - 2.8759368070779066
+ - 3.6479069183713015
+ - -3.666064474835018e-16
+ - -5.426304818347862e-16
+ - -2.8256489724811425e-16
+ - 1.5716431638507526e-17
+ - 6.654668027989108e-17
+ - -2.6180266387303323e-17
+ - 5.231090193785347e-16
+ - 3.159829939952565e-16
+ - 1.373119816838026e-16
+ - -1.3995895964397228e-16
+ - 5.078888961075589e-17
+ - -6.511565782017433e-16
+ - -2.0795320599583113e-16
+ - -3.0465061960328004e-16
+ - -4.628075527234189e-17
+ - 1.978616025226842e-16
+ - 1.147816497493895e-16
+ - 2.9232562847624e-16
+ - 2.4980854499101436e-16
+ - -1.8826630741706907e-16
+ - 7.519071768107022e-17
+ - 2.418676111105053e-16
+ - 1.2407709188295413e-18
+ - 2.7679531247555685e-17
+ - -3.37045080342388e-16
+ - -3.319062207869023e-18
+ - 6.551270451419979e-17
+ - 5.434576624473391e-17
+ - -1.0720260738687237e-16
+ - -2.8785885316845363e-16
+ - 1.1150394657214813e-16
+ - -1.670904837357116e-17
+ - -1.011145580784821e-15
+ - -4.2517083485225616e-17
+ - 1.8057352772032592e-16
+ - 4.221929846470653e-16
+ - 1.6328545291796764e-16
+ - 2.779326858178173e-17
+ - 1.98357910890216e-16
+ - -5.131828520278984e-16
+ - 1.8429584047681454e-16
+ - -3.326920423688277e-16
+ - -1.591495498552025e-16
+ - 1.7246715771730627e-17
+ - 2.3657365519016588e-17
+ - 3.3914405114674135e-17
+ - 4.855550195686272e-17
+ - 6.690236794328887e-16
+ - -2.1787937334646746e-16
+ - -1.2407709188295414e-17
+ - -6.195582788022177e-17
+ - -2.0199750558544933e-16
+ - 3.023345138881316e-17
+ - 1.682485365932858e-16
+ - 1.4293680984916318e-16
+ - 3.821574429994987e-17
+ - -2.158941398763402e-17
+ - 2.6540089953763893e-16
+ - -6.760133556089619e-17
+ - -1.0474174506452711e-17
+ - -1.0281855014034133e-16
+ - 1.952146245625145e-17
+ - -1.6177584830005836e-16
+ - 7.022763400575205e-17
+ - 1.2515242667927309e-16
+ - 1.7254987577856155e-16
+ - 1.7825742200517744e-16
+ - -8.644037401179138e-17
+ - 2.236696376343387e-16
+ - 1.8719097262075014e-16
+ - 2.5890753172909763e-17
+ - -9.634586184711389e-17
+ - -9.479489819857696e-17
+ - 9.59529510561512e-17
+ - 3.8215744299949874e-16
+ - 2.737554237244245e-16
+ - -8.744333050451193e-17
+ - 1.0108147085397997e-16
+ - 2.240005098793599e-16
+ - 1.4111701250154652e-16
+ - -2.0989708043533074e-17
+ - -7.643148859989974e-17
+ - 3.101927297073854e-17
+ - -3.7223127564886245e-17
+ - 4.739744909928848e-17
+ - 6.87387089031566e-17
+ - 2.1407434252872354e-16
+ - 1.7941547486275168e-16
+ - 3.427836458419746e-16
+ - -3.570111523778867e-16
+ - 2.8409518138133735e-16
+ - -9.307849842752944e-16
+ - -3.2260043889568074e-16
+ - -1.1051132983708449e-16
+ - -4.119359450514077e-17
+ - 1.5000920408649157e-16
+ - 2.483196198884189e-16
+ - 3.459269321696761e-16
+ - -1.624582723054146e-16
+ - -1.6874484496081765e-17
+ - -5.204000028724235e-17
+ - -1.8336526228769239e-16
+ - -6.915229920943311e-17
+ - 2.934836813338142e-16
+ - 5.193039885607908e-16
+ - 2.602310207091825e-16
+ - -6.061424432423733e-17
+ - 2.2664748783952955e-17
+ - 3.4410713482205946e-16
+ - -1.0703717126436177e-16
+ - 3.46898869389426e-17
+ - -1.7776111363764562e-16
+ - -2.246415748540885e-16
+ - -8.867376166568455e-17
+ - -5.39321759384574e-17
+ - -3.639594695233322e-18
+ - 1.9306395496987663e-16
+ - 1.1933114311843115e-16
+ - 1.591495498552025e-16
+ - -2.0299012232051297e-16
+ - -4.6404832364224846e-17
+ - -2.7710550520526424e-17
+ - 5.006924247783477e-16
+ - 1.2705494208814505e-16
+ - -5.790264287871193e-18
+ - -2.646977960169688e-18
+ - -9.471218013732166e-17
+ - -1.5981129434524492e-16
+ - 1.0281855014034133e-16
+ - 1.9583501002192927e-17
+ - 1.6659417536817975e-16
+ - 1.1299287167474358e-16
+ - 5.97224402263286e-16
+ - -2.067124350770016e-16
+ - 2.331822146786985e-16
+ - -8.218039385714329e-17
+ - -1.050519377942345e-17
+ - 2.299562102897417e-16
+ - 1.9695170384887586e-16
+ - -1.2978463810957004e-16
+ - 1.282129949457193e-16
+ - -2.1159280069106445e-16
+ - -8.933550615572698e-17
+ - 2.4079227631418636e-16
+ - 2.7114980479488247e-16
+ - 1.6874484496081765e-17
+ - -9.89308012613421e-17
+ - 1.819797347616661e-17
+ - 1.2134739586152916e-16
+ - 7.974021105011186e-17
+ - 6.625716706549752e-17
+ - -2.7143931800927603e-16
+ - -1.2490427249550716e-17
+ - 4.549493369041652e-18
+ - 1.3665023719376017e-16
+ - -8.131185421396261e-17
+ - -1.8694281843698425e-17
+ - -3.027481041944081e-16
+ - 2.953034786814309e-16
+ - 7.750682339621868e-17
+ - 8.139457227521791e-17
+ - 3.821574429994987e-17
+ - 1.1672552418888912e-16
+ - 1.0616863162118109e-16
+ - -1.3681567331627078e-16
+ - -6.311388073779601e-17
+ - 3.8050308177439267e-17
+ - -2.5278639519620526e-16
+ - 5.360130369343619e-17
+ - -1.1361325713415835e-16
+ - 1.4789989352448135e-16
+ - -1.3367238698856927e-16
+ - 1.828069153742191e-16
+ - -2.043136113005978e-17
+ - -7.237830359838992e-18
+ - -1.3284520637601624e-16
+ - -2.845501307182415e-17
+ - -1.9455288007247208e-16
+ - 4.168990287267259e-16
+ - 1.0889005583648056e-15
+- - -4.765624303693826
+ - -3.8298482559833973
+ - 2.8220807399082726
+ - -2.746400425250949
+ - 1.70454330620401
+ - -0.09347995920859213
+ - -1.5472784968999052
+ - 2.611034134498711
+ - -1.9915622176871906
+ - -3.7963400724493748
+ - 1.293931829759596
+ - 0.9495700652104541
+ - 0.03196681484512416
+ - -1.653112905017321
+ - 2.692846389496162
+ - -1.869542408032751
+ - -3.3349501610010206
+ - 0.9257741054125574
+ - 0.8198604155461178
+ - 0.23501956880044197
+ - -1.8189584273448893
+ - 2.7344371830060705
+ - -2.8189059747506415
+ - 1.884734612038485
+ - -0.4167834784942146
+ - -0.7366457108357914
+ - -0.7704534164503627
+ - 3.3314216339109057
+ - 1.8524751461807822
+ - -2.781134129099238
+ - 1.726742665484433
+ - -0.21263182651669216
+ - -0.8511444415521441
+ - -1.085001497425329
+ - 3.6223629265298185
+ - 1.889018795934902
+ - -2.7103142059319825
+ - 1.6224504640533297
+ - -0.08915662770739198
+ - -1.631965797086516
+ - 2.6514029290365735
+ - -2.891394460224163
+ - 4.495846241569944
+ - 4.513814109169584
+ - 2.6492738677288115
+ - 2.5750329891213495
+ - 1.1775496508643064
+ - 1.057473327253002
+ - -1.5830354315666386
+ - 2.6286716924087483
+ - -2.9004663589647786
+ - 2.0917609708601352
+ - -0.7007911772860892
+ - -0.9971056108003741
+ - 1.4579604818375527
+ - 2.367240416732657
+ - -3.2915721412785497
+ - -1.8360564690702044
+ - 2.0052555776546037
+ - -0.5757140853296079
+ - -1.1861381967862294
+ - 1.5385678262299523
+ - 2.348568910436118
+ - -2.922943919882711
+ - -1.7888315524024836
+ - 1.8526265948442773
+ - -0.37489658303052353
+ - -1.299985121914729
+ - 2.524831987604781
+ - -0.700768736467809
+ - -0.9955163784367275
+ - 1.4555257525956642
+ - 2.174029634149189
+ - -3.025748173249146
+ - -1.8266120135860522
+ - 2.0037648484093826
+ - -0.4999246391869289
+ - -1.1843799146783665
+ - 1.593365701545594
+ - 2.6654066430838412
+ - -3.325773309141793
+ - -1.868315018294301
+ - 1.8513227352831214
+ - -0.37525019385825864
+ - -1.2981303989880768
+ - 2.522059371199509
+ - -2.9230150717561596
+ - 2.2997035077176524
+ - -2.73596945337115
+ - -3.482810838868611
+ - -5.039287531521686
+ - -4.139198930455539
+ - 2.6401976245950487
+ - -1.6100073713775647
+ - -0.017470613933942728
+ - 1.6411911992282353
+ - -2.716237699445032
+ - 2.834858751748523
+ - -1.519486898846008
+ - -3.231181876133451
+ - -1.074652545731068
+ - -0.27348021298449365
+ - 1.7427946893139679
+ - -2.760618244199122
+ - 2.790061262627537
+ - -1.3230294305304557
+ - -2.6905036780143368
+ - -1.1481595999490122
+ - -0.34949339127247836
+ - 1.8997238016781932
+ - -2.823163223583966
+ - 2.7541972025398684
+ - -1.7978055669855162
+ - 0.21272045214328544
+ - 1.3654441136230195
+ - -1.6253440860048776
+ - -2.5385558613641606
+ - 2.7738283256243723
+ - 1.7278557204473906
+ - -1.6968940365944092
+ - 0.00981469980049749
+ - 1.542305117192398
+ - -1.6939793621415673
+ - -2.917545654574076
+ - 2.8674579558037334
+ - 1.6734910570487567
+ - -1.526977353158219
+ - -0.11805684720040398
+ - 1.6447499675906794
+ - -2.7523737431919657
+ - 2.8144993242236565
+ - -2.0431711651156887
+ - 2.0603183357008135
+ - 2.1609255540472083
+ - 2.7772699698531893
+ - 2.818294774045721
+ - 3.9157892017830696
+ - 3.8676989717242423
+ - -2.7328927588507916
+ - 2.829840965397244
+ - -2.088971879345135
+ - 0.5005693171595409
+ - 1.1027960679426105
+ - -2.4291628444042583
+ - 1.9020363585095055
+ - 3.5305332751146508
+ - -1.7613624722856234
+ - -1.1783835324603733
+ - 0.37857321609764394
+ - 1.2198948630815745
+ - -2.5371568225743037
+ - 1.8948969523414012
+ - 3.2936942463467425
+ - -1.4103477089981022
+ - -1.0743111796470652
+ - 0.17442304855003257
+ - 1.4005413625701681
+ - -2.598204885958871
+ - 2.8676762149373443
+ - -2.2448157220766483
+ - 0.8159595667155181
+ - 0.4576784579972577
+ - 0.25916501448379736
+ - -3.267688855070524
+ - -1.7684995431876454
+ - 2.8506173228436524
+ - -2.1067172326249026
+ - 0.6193130294163898
+ - 0.5749818406425344
+ - 0.5434732371182374
+ - -3.777363680030044
+ - -1.9215704809872398
+ - 2.8083790183371926
+ - -2.016991999798242
+ - 0.49630298293523256
+ - 1.1949770064604683
+ - -2.4829493589100413
+ - 2.890401202303018
+ - -4.111391373889545
+ - -5.0779071702286265
+ - 1.2068565137148672e-15
+ - 1.929067906534916e-15
+ - 3.352149432371144e-16
+ - 6.375494571252461e-17
+ - -1.0963762031507535e-16
+ - -1.345822856623776e-16
+ - -3.383375500495021e-16
+ - -2.0836679630210765e-16
+ - -3.0804206011474746e-16
+ - 1.49719690872098e-17
+ - 8.850832554317395e-17
+ - 7.421464455825763e-16
+ - -6.778745119872062e-17
+ - 1.3396190020296283e-16
+ - -8.35452418678558e-18
+ - -4.2086949566698043e-16
+ - -1.0571368228427692e-16
+ - -1.3524403015242002e-16
+ - -1.464109684218859e-16
+ - 3.358353286965292e-16
+ - 6.799424635185887e-17
+ - -3.58996385848014e-17
+ - -1.1415092453231782e-16
+ - -3.1226068123876795e-17
+ - 2.2904631161593336e-16
+ - -9.744187615874665e-17
+ - -4.1607184811417286e-17
+ - -4.0531850015098356e-18
+ - 3.1341873409634214e-16
+ - 2.2317332926680687e-16
+ - -1.198584707589337e-16
+ - 9.792784476862155e-17
+ - 3.731825333532984e-16
+ - 2.8124140826802937e-18
+ - -2.1556326763131899e-16
+ - -2.928219368437718e-16
+ - -5.913307403988457e-17
+ - 2.5394444805377947e-17
+ - -7.320548421094295e-17
+ - 4.908903345195943e-16
+ - 8.280077931655806e-17
+ - 1.2763396851693217e-16
+ - 4.260807335260645e-16
+ - 7.113753267956038e-18
+ - -1.9331210915364254e-16
+ - -1.8446127659932517e-17
+ - -9.380228146351333e-17
+ - -4.375785440405516e-17
+ - 2.6717933785462794e-16
+ - 4.855550195686272e-17
+ - -1.678349462870093e-16
+ - 4.599124205794833e-17
+ - 1.7668577884132669e-16
+ - -5.889525961377557e-17
+ - -3.7553999809907456e-17
+ - -7.135983746918401e-17
+ - -6.774609216809297e-17
+ - 2.547716286663325e-17
+ - 6.667075737177403e-17
+ - -7.59972187783094e-17
+ - 3.1953987062923454e-16
+ - 4.6073960119203635e-17
+ - 2.220152764092326e-16
+ - -1.3979352352146168e-16
+ - -3.1093719225868305e-16
+ - -2.0034314436034328e-16
+ - -2.269783600845508e-16
+ - 1.6264438794323907e-17
+ - 1.0455562942670269e-16
+ - 2.8951321439355965e-18
+ - 1.0257039595657542e-17
+ - 1.798290651690282e-16
+ - 1.5021599923962983e-16
+ - -6.59262948204763e-17
+ - -2.6999175193730823e-16
+ - -1.709058543111124e-16
+ - 1.2877134185919258e-16
+ - 1.6758679210324338e-16
+ - 6.203854594147708e-17
+ - -5.132655700891536e-17
+ - -7.610061635487855e-18
+ - 5.128519797828771e-18
+ - -2.2127081385793487e-17
+ - 1.6791766434826462e-17
+ - -1.2922629119609675e-16
+ - -9.249947199874231e-17
+ - -2.10103875588469e-16
+ - -4.6404832364224846e-17
+ - 1.7300482511546571e-16
+ - -2.0191478752419403e-16
+ - -1.5195307852599116e-16
+ - 9.558071978050235e-16
+ - 3.178027913428732e-16
+ - -9.778825804025323e-17
+ - -1.0372844881414966e-16
+ - -7.055850625077326e-17
+ - -2.308454294482362e-16
+ - -5.624828165360588e-17
+ - -8.371067799036639e-17
+ - -1.4070342219527e-16
+ - 8.925278809447167e-17
+ - -9.107258544208833e-17
+ - -4.317882797526804e-17
+ - -1.873977677738884e-16
+ - -1.0745076157063828e-16
+ - 9.198248411589667e-17
+ - -9.7400517128119e-18
+ - 3.551189767266717e-17
+ - 6.807696441311418e-17
+ - 7.378451063973007e-17
+ - -4.31478087022973e-17
+ - 1.8702553649823953e-16
+ - 1.3301064249852685e-16
+ - -6.5843576759221e-17
+ - 3.0543644118520547e-17
+ - 1.2761328900161834e-16
+ - -9.876536513883149e-17
+ - -1.0910512279574434e-16
+ - 2.0464448354561902e-16
+ - 1.1249656330721175e-17
+ - -3.7223127564886245e-18
+ - 3.4782944757854814e-17
+ - 9.843449289381028e-18
+ - -7.502528155855961e-17
+ - 1.0211544661967125e-16
+ - 3.407984123718474e-17
+ - 7.6638283753038e-17
+ - 5.589672989327085e-17
+ - -1.5699888026256463e-16
+ - -1.6551884057186081e-16
+ - -8.619221982802547e-17
+ - -4.259980154648092e-17
+ - -2.8686623643339e-16
+ - -9.26442286059391e-18
+ - -1.4446709398238628e-16
+ - -1.1315830779725419e-16
+ - -3.970466940254532e-17
+ - -4.886776263810149e-16
+ - -3.370760996153588e-17
+ - 9.198248411589667e-17
+ - -1.191967262688913e-16
+ - 1.5900479324800572e-16
+ - 6.240043745946903e-17
+ - -2.080152445417726e-16
+ - -1.5402103005737373e-16
+ - -5.600012746983997e-17
+ - 1.3028094647710186e-16
+ - 2.4809214521996683e-16
+ - -1.668836885825733e-16
+ - 1.819797347616661e-18
+ - 1.6551884057186081e-16
+ - 3.963849495354108e-16
+ - 8.371067799036639e-17
+ - 4.776968037493734e-17
+ - -1.0439019330419208e-16
+ - 4.324603640003798e-18
+ - -5.376673981594679e-17
+ - -6.245213624775359e-17
+ - -2.425293556005477e-16
+ - -2.4732700315335524e-17
+ - -2.9695783990653694e-17
+ - -7.885099189161735e-17
+ - 6.396174086566286e-17
+ - -6.989159188190238e-17
+ - -8.751570880811032e-17
+ - -5.24846098664896e-17
+ - -2.0348643068804478e-16
+ - 1.01908651466533e-16
+ - -3.2226956665065953e-16
+ - 1.9901965538025843e-16
+ - -1.162188760637004e-16
+ - 2.127508535486387e-16
+ - -4.566036981292712e-17
+ - 6.27002904315195e-17
+ - -3.474158572722716e-17
+ - -9.340937067255064e-17
+ - -4.582580593543773e-17
+ - 2.4815418376590826e-18
+ - -8.05177608259117e-16
+ - 7.816856788626112e-18
+- - 2.892511615618827
+ - 2.242179069929899
+ - -2.064907283707807
+ - 2.8235650585706926
+ - -2.7459847334537812
+ - 1.624105845624728
+ - -0.09096332239087086
+ - -1.5519893298786092
+ - 1.7489141912298634
+ - 3.025528819985307
+ - -3.0353498048535483
+ - -1.7530219989968643
+ - 1.5209162576523094
+ - 0.03702781079256641
+ - -1.721036764289157
+ - 1.7369646225499478
+ - 2.794121041627887
+ - -2.521030161212526
+ - -1.6179818559777395
+ - 1.3428938655603435
+ - 0.24005864815250266
+ - -1.8213660139242325
+ - 2.7652860858766286
+ - -2.818903853290403
+ - 1.8812321658211508
+ - -0.33243227437964196
+ - -1.1200772362217846
+ - -2.71182571235071
+ - -1.3371384680154563
+ - 2.8000786320520556
+ - -2.7544555205610766
+ - 1.7229284541179337
+ - -0.21463797337759302
+ - -0.971879998656325
+ - -3.085557560943529
+ - -1.4449847267338098
+ - 2.8430760579965026
+ - -2.708906414225993
+ - 1.6205274198723634
+ - 0.009693746115465288
+ - -1.6346226801041985
+ - 2.6540222219557124
+ - -5.210392859616341
+ - -5.146203982545786
+ - -1.6372125203330923
+ - -1.483845975607136
+ - 1.7460030353802436
+ - 1.8926836176246136
+ - -0.048802756921559574
+ - -1.5876497900640605
+ - 2.630168912952549
+ - -2.8847511321532098
+ - 2.0903768467927177
+ - -0.6960695702892076
+ - -0.554520608870674
+ - -0.4927061042989848
+ - 3.586471186151413
+ - 1.819973306867526
+ - -2.85870742639068
+ - 2.001881003675584
+ - -0.4948607054838728
+ - -0.6886826252033854
+ - -0.6814486291741181
+ - 3.326515779350315
+ - 1.8411464897727976
+ - -2.806846930196657
+ - 1.8489844493475258
+ - -0.3724874627052078
+ - -1.3883756327957604
+ - 2.5265330125475822
+ - -0.6987385756115692
+ - -0.5612496381954237
+ - -0.44739619630287725
+ - 3.2999193570649483
+ - 1.8040982901472502
+ - -2.8586408129924794
+ - 1.947286156473243
+ - -0.4976280979243069
+ - -0.682511449755262
+ - -0.7563943526517831
+ - 3.7981072361249897
+ - 1.949070901100591
+ - -2.8069970911903557
+ - 1.8508092664839038
+ - -0.3753098831614357
+ - -1.385466430750188
+ - 2.5244560608606395
+ - -2.9255634747572516
+ - 4.04917519718272
+ - 5.011016360973675
+ - 4.87270599515062
+ - 3.9245029766997965
+ - -2.8953244146620247
+ - 2.6410833112220446
+ - -1.6110136152542236
+ - -0.11423321031091536
+ - 1.6428585881405813
+ - -2.7196406761805787
+ - 1.9800533890089569
+ - 3.8065179080217995
+ - -1.0886086909249624
+ - -0.8483081816820458
+ - -0.23763677862089083
+ - 1.746474472146396
+ - -2.788807999247467
+ - 1.8488265001297384
+ - 3.3297099018991547
+ - -0.7424761633745919
+ - -0.7215554082286018
+ - -0.44159247233134175
+ - 1.903336747983832
+ - -2.8255584057544247
+ - 2.7259686950608746
+ - -1.7991398165493213
+ - 0.2099965221878358
+ - 0.8344361421610438
+ - 0.953196892789593
+ - -3.3344895197147113
+ - -1.8719668876323163
+ - 2.68338801462131
+ - -1.632260294799519
+ - 0.006874285862983761
+ - 0.9464801824694171
+ - 1.2792622085099312
+ - -3.611452145740003
+ - -1.900411088762474
+ - 2.5999777569665063
+ - -1.5258218059913113
+ - -0.1185606857604812
+ - 1.7243789980498536
+ - -2.7549431953483916
+ - 2.8161706256011976
+ - -4.337903024188433
+ - -4.364110536390777
+ - -2.698086924346498
+ - -2.6314743491488652
+ - -1.4591094520703942
+ - -1.3452296997673034
+ - 1.6772463231672443
+ - -2.735743110369061
+ - 2.829918384599817
+ - -2.018586426229995
+ - 0.4978300005931926
+ - 1.1079919738423702
+ - -1.5253071557014326
+ - -2.518763215297069
+ - 3.201969591627524
+ - 1.8047494370989279
+ - -1.9253186674832723
+ - 0.3732516531148744
+ - 1.2944110397086108
+ - -1.5989186574573349
+ - -2.4789607372726747
+ - 2.8286807993157446
+ - 1.751284465591187
+ - -1.7670433671299954
+ - 0.16904198962299546
+ - 1.403287021232109
+ - -2.643588379618345
+ - 2.8680496997762788
+ - -2.242036009950753
+ - 0.6170065996815695
+ - 1.5925733073660822
+ - 2.3789980014124787
+ - 1.1134200974704211
+ - -2.6946236732158413
+ - 2.836280836333904
+ - -2.1035700049773056
+ - 0.5585197326648735
+ - 1.5956885162659833
+ - 2.9083914348468736
+ - 1.3169903143061494
+ - -2.7698081975314657
+ - 2.8077241185078425
+ - -2.015430839336269
+ - 0.3984789139721314
+ - 1.197776020455632
+ - -2.486502979083863
+ - 3.9797036568717816
+ - 4.8197997778272645
+ - -3.4741585727227157e-16
+ - -5.092123850876438e-16
+ - -4.703555758129653e-17
+ - 1.020740875890436e-16
+ - -1.2920561168078292e-16
+ - 6.981404369947554e-17
+ - 1.3524403015242002e-16
+ - 1.4475660719677984e-17
+ - -1.709782326147108e-16
+ - 1.8859717966209028e-17
+ - 3.2673634195844593e-17
+ - -2.8442605362635857e-16
+ - 1.3669159622438782e-16
+ - -1.4608009617686469e-16
+ - -1.1547441351240266e-16
+ - 1.6835193416985493e-16
+ - -4.5784446904810076e-17
+ - -1.156631140896413e-17
+ - 2.3525016621008107e-16
+ - -3.842253945308813e-17
+ - -3.0398887511323763e-18
+ - 4.2635990698280114e-17
+ - 1.604316798046597e-16
+ - 7.79204137024952e-17
+ - 1.8611563782443123e-18
+ - -1.3234889800848441e-17
+ - -6.26175723702642e-17
+ - -3.1267427154504446e-17
+ - -1.654361225106055e-19
+ - 1.3301064249852685e-16
+ - 2.5187649652239693e-16
+ - -1.0339757656912845e-16
+ - 7.01862749751244e-17
+ - 2.842192584732203e-16
+ - 1.1125579238838222e-16
+ - -2.597347123416507e-16
+ - 6.046690277762632e-17
+ - 9.098986738083303e-17
+ - -1.7006833394090247e-16
+ - -1.436812724004609e-16
+ - -7.502528155855961e-17
+ - 2.011703249728963e-16
+ - -4.220689075551823e-16
+ - 1.6317688546257005e-16
+ - 2.0464448354561902e-16
+ - -8.819813281346656e-17
+ - 1.4405350367610977e-16
+ - 2.5510250091135373e-16
+ - -2.9182932010870816e-16
+ - 2.129990077324046e-17
+ - 3.0473333766453535e-16
+ - 1.720328878957159e-16
+ - -1.049692197329792e-16
+ - 2.6469779601696883e-17
+ - -4.711620769102046e-16
+ - 1.4392942658422682e-17
+ - 1.196103165751678e-16
+ - 8.007108329513307e-17
+ - 1.1249656330721175e-17
+ - 2.3690452743518713e-16
+ - -2.765678378071048e-16
+ - -4.599124205794833e-17
+ - -1.7767839557639032e-16
+ - 1.406207041340147e-16
+ - 1.2771668657818747e-16
+ - 1.6883790277972984e-16
+ - -1.9662083160385465e-16
+ - -8.635765595053608e-17
+ - -1.8859717966209029e-16
+ - 2.0152187673323134e-17
+ - 1.4153060280782304e-16
+ - 6.766337410683766e-17
+ - -5.074753058012824e-17
+ - -7.845808110065466e-17
+ - 3.508900158449943e-16
+ - -4.235164736271501e-17
+ - -1.5236666883226767e-16
+ - -3.1536260853584175e-16
+ - -7.992632668793629e-17
+ - -3.9456515218779414e-17
+ - 3.077111878697263e-17
+ - 1.6345088904047824e-16
+ - 6.410649747285964e-18
+ - 1.681658185320305e-16
+ - 1.8280691537421912e-17
+ - 6.609173094298691e-17
+ - 1.0530009197800041e-16
+ - -4.9367172932930377e-17
+ - -3.265709058359353e-16
+ - 3.387614801134355e-16
+ - -4.0978527545876986e-16
+ - -4.2417821811719254e-16
+ - -2.2362827860371103e-16
+ - 1.1216569106219055e-16
+ - 6.26175723702642e-17
+ - -8.778454250719006e-18
+ - -5.736497548055247e-17
+ - -1.1894857208512538e-16
+ - 2.278055406971038e-16
+ - 1.0099875279272467e-16
+ - -1.250903881333316e-16
+ - 4.0416044729340927e-16
+ - 1.6328545291796764e-16
+ - 9.810362064878907e-17
+ - -4.011825970882184e-18
+ - -1.861156378244312e-16
+ - -3.374896899216353e-17
+ - 3.5072457972248373e-17
+ - 8.01021025681038e-17
+ - -6.7389370528929466e-18
+ - 7.262645778215583e-17
+ - 2.4815418376590826e-18
+ - -9.9178955445108e-17
+ - 1.6469165995930779e-16
+ - -1.8148342639413425e-16
+ - -1.1042861177582918e-16
+ - 3.805030817743927e-18
+ - 8.023651941764367e-17
+ - -5.157471119268127e-17
+ - 6.735318137713028e-17
+ - -3.201188970580217e-17
+ - 6.174903272708352e-17
+ - -3.8658285927665743e-16
+ - 6.046690277762632e-17
+ - -2.408129558295002e-16
+ - 7.610061635487855e-18
+ - -7.688126805797545e-17
+ - -7.899574849881413e-17
+ - -6.27002904315195e-17
+ - 8.817745329815274e-17
+ - -1.2126467780027386e-16
+ - -2.853773113307945e-18
+ - 3.7719435932418056e-17
+ - 1.6700776567445626e-16
+ - -7.444625512977249e-17
+ - -1.7900188455647516e-16
+ - 1.2043749718772083e-16
+ - 1.7666509932601286e-16
+ - 1.464109684218859e-16
+ - -3.044024654195142e-17
+ - 1.0174321534402239e-17
+ - -7.676236084492096e-17
+ - -5.521430588791459e-18
+ - 2.150669592637872e-18
+ - 5.025949401872196e-16
+ - -7.80031317637505e-17
+ - -7.196471329211341e-18
+ - 4.892773323251158e-17
+ - 9.082443125832243e-17
+ - 1.6212740006039342e-17
+ - -2.7055009885078153e-16
+ - -2.039827390555766e-16
+ - -6.121136532892405e-17
+ - -6.385834328909374e-17
+ - -4.567691342517819e-16
+ - 5.0871607672011194e-18
+ - -4.714929491552257e-17
+ - -5.368402175469149e-17
+ - -1.3301064249852685e-16
+ - -1.360298517343454e-16
+ - 4.4068047133762543e-17
+ - 2.510493159098439e-16
+ - -9.054525780158578e-17
+ - 7.055850625077326e-17
+ - 7.073635008247215e-16
+ - 8.321436962283457e-17
+ - 1.8905212899899445e-16
+ - -1.7875373037270926e-16
+ - 2.6420148764943704e-16
+ - -4.503998435351235e-17
+ - 9.959254575138452e-17
+ - 1.5418646617988433e-16
+ - 1.5021599923962983e-16
+ - 1.2471815685768275e-16
+ - -1.3979352352146168e-17
+ - 1.2631047953684733e-16
+ - -3.4245277359695346e-17
+ - 1.2449068218923067e-16
+ - -6.28657265540301e-17
+ - 2.455072058057386e-16
+- - -0.2879959686414253
+ - -0.13783747860430107
+ - 0.5183203699671957
+ - -1.532810454910843
+ - 1.9957195136173984
+ - -1.8392434996713416
+ - 1.0248451959886056
+ - 0.068213498348653
+ - -0.7341984149289413
+ - -1.0491971284417005
+ - 2.635268495524696
+ - 1.394660244225348
+ - -1.7986214065582011
+ - 0.9482955896058208
+ - 0.21114180457083154
+ - -0.7974061735115273
+ - -1.0765730832319849
+ - 2.282454432004144
+ - 1.3228187368514523
+ - -1.7263972733647923
+ - 0.8196309005167808
+ - 0.2966853474717241
+ - -1.4208575392113556
+ - 1.9650937716033792
+ - -1.9279829801044692
+ - 0.8414314957096096
+ - 1.7578582907037066
+ - 0.985225334300475
+ - 0.3537338430446972
+ - -1.481860370606672
+ - 1.9935934769776154
+ - -1.874267182780679
+ - 0.7796273753501347
+ - 1.7874139316520041
+ - 1.2268403310038924
+ - 0.45329478643213583
+ - -1.5775914284920556
+ - 2.005167476339624
+ - -1.8379150893546254
+ - 0.9638307358998279
+ - 0.1366314594620639
+ - -1.2487636712433388
+ - 3.091918180167847
+ - 3.007629851802282
+ - 0.19324896472850145
+ - 0.0656743800902579
+ - -2.7255267787690602
+ - -2.8166427215785053
+ - 0.9995197073264547
+ - 0.0975573063949893
+ - -1.2159521055816442
+ - 1.9096900580247496
+ - -1.9869955955664993
+ - 1.3663634067319195
+ - -0.2874155768371038
+ - -0.9299707154943121
+ - -2.004350097364564
+ - -0.9128131933148473
+ - 1.9368518192417037
+ - -1.9628452640281344
+ - 1.2589584387951571
+ - -0.1856679380179537
+ - -0.7037013834711978
+ - -1.9409358025085035
+ - -0.9666051170264502
+ - 1.971677200729707
+ - -1.9177730317348431
+ - 1.1892270957688635
+ - -0.06348778187800264
+ - -1.082320305715851
+ - 1.824649860540108
+ - -0.27826543056397735
+ - -0.859916093113266
+ - -1.8460421431562188
+ - -0.9007259821890564
+ - 1.9377669527833186
+ - -1.948545186569645
+ - 1.2610461868427065
+ - -0.2272008754328878
+ - -0.8180045363848781
+ - -2.223430580125635
+ - -1.0392522752528381
+ - 1.9727162752805008
+ - -1.9196606569566448
+ - 1.1913182132517603
+ - -0.06508360812319477
+ - -1.0817175366773455
+ - 1.8252647291992636
+ - -2.87999026576866
+ - -3.5031029181014235
+ - -2.366277226375458
+ - -1.8551119862636463
+ - 1.5765862825601156
+ - -2.040678777409569
+ - 1.7896632146515623
+ - -0.9554294974868835
+ - -0.20990132349792218
+ - 1.2543900494665043
+ - -1.294018362387136
+ - -2.2925202526809265
+ - 1.9135879056973812
+ - 1.1362414143707538
+ - -0.8768244865076458
+ - -0.2974325861556318
+ - 1.3634968372450722
+ - -1.2685170661291059
+ - -2.0908961825512486
+ - 1.566460799934523
+ - 1.0400209399493392
+ - -0.7460925800855944
+ - -0.4386500386773506
+ - 1.425530079231479
+ - -2.018858157523333
+ - 1.8585008177849285
+ - -1.1503605963232246
+ - 0.07462558208132197
+ - 0.5144125809030078
+ - 2.0438437186439917
+ - 1.0400110551234782
+ - -2.0316677610800835
+ - 1.7988567840121885
+ - -1.0285309015226987
+ - -0.009509752790287755
+ - 0.38237606721481093
+ - 2.299670365180593
+ - 1.1065492878659282
+ - -2.046108120883904
+ - 1.7560673656463532
+ - -0.9527564609244564
+ - -0.27973953550889624
+ - 1.3072376661256306
+ - -1.9672025829347344
+ - 3.6346278100256897
+ - 3.6011319252477896
+ - 1.3371561165299546
+ - 1.2404593408546434
+ - -0.8061921406729537
+ - -0.9083550071196526
+ - -0.23792659367411803
+ - 1.2757673962972487
+ - -1.9537284872399356
+ - 1.9268009098216332
+ - -1.312251659319819
+ - 0.21737061203650002
+ - 0.5363910715302678
+ - 0.6404939705048959
+ - -2.530483469070387
+ - -1.3094549989489839
+ - 1.899895267829925
+ - -1.2420702156775274
+ - 0.07576964088092646
+ - 0.6245504222057333
+ - 0.7443284242060345
+ - -2.3271829477182324
+ - -1.314201510536602
+ - 1.8462051072153287
+ - -1.1259808339057178
+ - -0.011849775021437333
+ - 1.147291871582577
+ - -1.8990640337197442
+ - 1.9822592662704872
+ - -0.9893084448038125
+ - -1.9731179854744287
+ - -0.6471262322016227
+ - -0.1523409949193344
+ - 1.2183413494246473
+ - -1.9475647452299936
+ - 1.9509524887805703
+ - -0.9966636977175027
+ - -2.155598222638599
+ - -0.928020516448597
+ - -0.28736687748201467
+ - 1.3280722376900604
+ - -1.973876294372008
+ - 1.925898335439269
+ - -1.2572823314917458
+ - 0.1490953413494487
+ - 0.9544720210262811
+ - -1.9353422734882169
+ - -2.2818273195427765
+ - 9.92616735063633e-18
+ - 4.0631111688604714e-16
+ - -4.946540063067105e-17
+ - -7.775497757998459e-17
+ - 1.9221609484200978e-17
+ - -3.0605682664462024e-17
+ - -1.852884572118782e-17
+ - 2.1465336895751065e-17
+ - 2.2027819712287125e-16
+ - -4.8720938079373324e-17
+ - -5.9557004103817985e-18
+ - 3.685089628923738e-17
+ - -1.6264438794323904e-16
+ - -3.157761988421183e-17
+ - 1.761894704737949e-17
+ - 1.3400325923359047e-17
+ - 4.619803721108659e-17
+ - 2.7669191489898773e-17
+ - -1.2097516458588028e-17
+ - 1.5137405209720406e-17
+ - 2.2333876538931747e-18
+ - 4.8183270681213856e-17
+ - -8.974909646200349e-17
+ - -7.184063620023045e-17
+ - -1.852884572118782e-17
+ - 1.2506970861801778e-16
+ - 2.249931266144235e-17
+ - 2.6883369907973396e-17
+ - -1.3342423280480336e-16
+ - -2.1117921038478794e-16
+ - -1.6411263353052067e-16
+ - 9.198248411589667e-17
+ - -2.3723539968020834e-16
+ - -1.937670584905467e-16
+ - -1.9083056731598346e-16
+ - 3.5634940788784427e-16
+ - -4.954811869192635e-17
+ - -3.8918847820619946e-17
+ - 1.426266171194558e-16
+ - -5.22829845921798e-17
+ - 1.1018045759206327e-16
+ - -2.158114218150849e-16
+ - 1.833032237417509e-16
+ - -8.327640816877605e-17
+ - -1.0521737391674511e-16
+ - 2.636224612206499e-16
+ - -7.968851226182729e-17
+ - 2.833920778606673e-16
+ - 1.7536228986124184e-16
+ - 2.7131524091739305e-17
+ - -1.9083056731598346e-16
+ - -1.3629868543342514e-16
+ - 7.849944013128231e-17
+ - 1.6320273485671234e-16
+ - 1.6766951016449869e-16
+ - -1.6760747161855723e-17
+ - 1.394833307917543e-17
+ - -8.97490964620035e-18
+ - 2.812414082680294e-17
+ - 5.768550796791677e-17
+ - 1.8553661139564408e-16
+ - 8.238718901028154e-17
+ - 7.568702604860202e-17
+ - -2.9488988837515437e-17
+ - -1.350682542722525e-16
+ - -1.1561917011959944e-16
+ - 2.0042586242159858e-16
+ - -1.9935052762527964e-17
+ - 2.448454613156962e-16
+ - 1.943874439499615e-18
+ - 8.173578427789603e-17
+ - 1.0687173514185116e-16
+ - 1.3090133193651663e-16
+ - 1.4940949814239062e-17
+ - -5.868846446063731e-17
+ - -2.7028126515170176e-17
+ - 9.674911239573349e-17
+ - 2.264200131710775e-16
+ - 3.90429249125029e-17
+ - 9.057627707455652e-17
+ - -2.4070955825293102e-17
+ - 5.172980755753496e-17
+ - -3.6354587921705566e-17
+ - -1.6982017975713656e-16
+ - -1.050519377942345e-17
+ - -1.2118195973901854e-17
+ - 3.7822833508987184e-17
+ - 1.1158666463340343e-16
+ - 5.413069928547013e-16
+ - -2.506357256035674e-16
+ - -7.560430798734672e-17
+ - 6.385834328909374e-17
+ - 3.110199103199384e-17
+ - -1.0283922965565515e-16
+ - 1.5178764240348058e-17
+ - -6.956588951570963e-17
+ - -2.39882377640378e-17
+ - 1.1005638050018032e-16
+ - -1.0017157218017164e-16
+ - -2.522900868286734e-17
+ - 6.749793798432706e-17
+ - -2.934009632725589e-16
+ - -2.4141266177360113e-16
+ - -7.84787606159685e-18
+ - 1.952146245625145e-17
+ - 1.4103429444029122e-17
+ - 3.5072457972248373e-17
+ - -3.738856368739685e-17
+ - 6.452008777913616e-17
+ - -1.0670629901934055e-17
+ - -8.457921763354707e-17
+ - 9.355412727974742e-17
+ - 6.096321114515814e-17
+ - -1.3404461826421813e-16
+ - 8.416562732727055e-17
+ - 5.492479267352103e-17
+ - 7.870623528442057e-17
+ - -1.8280691537421912e-17
+ - 3.9938606419532975e-17
+ - -8.40415502353876e-17
+ - 2.134125980386811e-17
+ - 3.987010552505593e-17
+ - 2.157287037538296e-16
+ - -7.982292911136717e-18
+ - 1.857020475181547e-16
+ - 1.7594131629002896e-16
+ - 5.583469134732937e-17
+ - 7.15511229858369e-17
+ - 6.735318137713028e-17
+ - -8.97490964620035e-18
+ - 9.429858983104514e-17
+ - 3.28390703183552e-17
+ - 2.216844041642114e-16
+ - -2.097730033434478e-16
+ - 1.0724396641750003e-16
+ - 1.019913695277883e-16
+ - -1.2519378570990074e-16
+ - -5.83575922156161e-17
+ - -6.997947982198614e-17
+ - 3.7822833508987184e-17
+ - -7.16338410470922e-17
+ - 8.784658105313153e-17
+ - -9.326461406535387e-18
+ - 1.3863547066388744e-16
+ - -3.338500952264019e-16
+ - -3.250819807333399e-17
+ - -6.060972068026243e-17
+ - -6.457178656742072e-17
+ - -5.012714512071347e-17
+ - 5.16781087692504e-17
+ - 2.5295183131871586e-16
+ - 2.574186066265022e-16
+ - 4.1855338995183194e-17
+ - 8.561319339923835e-17
+ - 3.4940109074239884e-16
+ - -5.649643583737179e-17
+ - 9.247879248342848e-17
+ - 1.0008885411891633e-17
+ - 3.809166720806692e-17
+ - 1.110076382046163e-16
+ - -6.981404369947554e-17
+ - -1.9289851884736603e-16
+ - 6.983472321478936e-17
+ - -6.203854594147708e-20
+ - -3.326920423688277e-16
+ - -4.7232012976777874e-17
+ - -1.5582014788967656e-16
+ - 6.179039175771117e-17
+ - -2.1821347676575646e-16
+ - 9.185840702401371e-17
+ - 5.511090831134546e-17
+ - -1.8268542322175037e-16
+ - -4.8591691108661913e-17
+ - 3.577556149291845e-18
+ - -3.548604827852489e-17
+ - -1.6675961149069035e-16
+ - -5.790264287871193e-18
+ - -1.2192642229031628e-16
+ - 8.71021185018338e-17
+ - 6.600901288173161e-17
+- - -4.125547190038162
+ - -3.551697264243263
+ - 1.5496127767089098
+ - 1.0561266659335973
+ - -3.3166981752533875
+ - 4.5306773023124
+ - -4.177561915144405
+ - 2.4706431088266423
+ - -0.17494960238360754
+ - -1.2176212740687387
+ - -5.333023183557732
+ - -2.5527828294582906
+ - 4.556580334928272
+ - -4.091442223156239
+ - 2.193933413472048
+ - 0.10880685425059454
+ - -0.6787480532592302
+ - -4.817490699117796
+ - -2.5035493944713836
+ - 4.580361757597293
+ - -3.936296201761768
+ - 2.019703601198731
+ - 0.6997833859863875
+ - -3.0559669862297576
+ - 4.425432959204789
+ - -2.873524135401803
+ - -5.220668683643247
+ - 0.905674804478508
+ - 0.9934833022984032
+ - 0.8928929418821094
+ - -3.2880630346465054
+ - 4.498434375991514
+ - -2.8341320402878316
+ - -5.615507042071517
+ - 0.5921497419793286
+ - 0.7794330139074515
+ - 1.2059051748552774
+ - -3.4241459380152555
+ - 4.5316985690009135
+ - -4.109769650100394
+ - 2.3390628949904575
+ - 0.19167639031257788
+ - -3.225357929101883
+ - -2.994355967875643
+ - 2.2097832747303388
+ - 2.4561440430793278
+ - 8.077093766878312
+ - 8.184836903745515
+ - -4.150004624000771
+ - 2.4145168121553766
+ - 0.09963266321962169
+ - -2.705353567938528
+ - 4.285174150116357
+ - -4.479197544421182
+ - 2.2098259198975807
+ - 4.757200172609493
+ - 1.7068261005424432
+ - 0.4341525430506501
+ - -2.8612703321550503
+ - 4.352271308273132
+ - -4.399934024161581
+ - 2.035127771789059
+ - 4.167186886482755
+ - 1.9221247171181373
+ - 0.6179893648721652
+ - -3.1052510758930727
+ - 4.442288112094211
+ - -4.340584944073314
+ - 2.715240296386272
+ - -0.2634148806380919
+ - -2.277110604508275
+ - 2.595606104098072
+ - 4.383712168627782
+ - 1.5779337980199009
+ - 0.4132598834029808
+ - -2.8650612314009853
+ - 4.393356759042327
+ - -4.403434907769243
+ - 2.195728908718299
+ - 4.77825055950671
+ - 2.2248408584138843
+ - 0.720387738355911
+ - -3.1091792926154134
+ - 4.446723790038495
+ - -4.343981725299288
+ - 2.7164222489469307
+ - -0.2621173440459259
+ - -2.2805204180267795
+ - 4.482328350722599
+ - 5.294406476576012
+ - 0.8406465976342832
+ - 0.4671128247562823
+ - -1.3062653941934532
+ - 3.4948688851637226
+ - -4.5500061651438575
+ - 4.066476829096779
+ - -2.2517467615743794
+ - -0.2949544827217116
+ - 1.7185061630109975
+ - 2.495530850425722
+ - -5.9234310020806955
+ - -3.145924449617655
+ - 3.9722455168558417
+ - -2.0753366566386475
+ - -0.6152245264192344
+ - 1.8541874516960741
+ - 2.537230885642365
+ - -5.12224959028769
+ - -2.980497540881463
+ - 3.8014061514320256
+ - -1.7833231911935634
+ - -0.8089813040991292
+ - 3.248620017968618
+ - -4.489396890097941
+ - 4.277634803103682
+ - -1.8432503185044211
+ - -3.8829354300174868
+ - -2.3336581996491046
+ - -0.8653247189079581
+ - 3.3844053686433155
+ - -4.544766069433995
+ - 4.150945259379814
+ - -1.7008068495436939
+ - -3.935605270258907
+ - -2.883965609311989
+ - -1.0886010839736662
+ - 3.593173923438471
+ - -4.567669982557149
+ - 4.063315652295072
+ - -2.1122533009972795
+ - -0.4490845506073011
+ - 2.868372233942158
+ - -7.074418133565037
+ - -6.887485861781904
+ - -0.5410560974392659
+ - -0.2537990996194029
+ - 6.021536241727336
+ - 6.229496783999774
+ - -2.1977851450342736
+ - -0.35403340959237534
+ - 2.787807143273843
+ - -4.368670636241213
+ - 4.4187504966334705
+ - -3.037684625298832
+ - 0.5829814749073249
+ - 1.9783824428655343
+ - 4.5926884778273385
+ - 2.104786948739874
+ - -4.424269370798505
+ - 4.361550880111479
+ - -2.789603877918284
+ - 0.35323075435682083
+ - 1.4752004073997036
+ - 4.437010389294469
+ - 2.2227294532392725
+ - -4.497334650841355
+ - 4.251821286998257
+ - -2.6313423053084026
+ - 0.008733637531633597
+ - 2.4911328464582185
+ - -4.187480415814939
+ - 2.962678255333608
+ - 5.243348939154794
+ - -1.6940364834653268
+ - -1.4162303936916711
+ - -0.18724458305813904
+ - 2.7548383286994125
+ - -4.307999388491174
+ - 3.100677653678983
+ - 5.993337055661477
+ - -1.5041069852427904
+ - -1.2313307294214584
+ - -0.5078644152182776
+ - 2.911901689914111
+ - -4.370708554303079
+ - 4.373902587855024
+ - -2.9201708171713707
+ - 0.5184819088566858
+ - 0.6979118026219989
+ - 0.588224169735295
+ - 1.306779931711273e-15
+ - 1.3221654911047592e-15
+ - 3.59823566460567e-16
+ - 1.2304311611726287e-16
+ - -1.768512149638373e-16
+ - -1.8493690545154314e-16
+ - -4.3409404571017196e-16
+ - -1.462455322993753e-16
+ - -6.395760496260009e-16
+ - 2.0522350997440614e-16
+ - 1.863637920081971e-16
+ - 5.19634860805812e-16
+ - 4.255017070972774e-16
+ - 2.8239946112560365e-16
+ - -1.167979024924875e-16
+ - -3.348737312344363e-16
+ - -1.1191753687842464e-16
+ - -2.2573758916572125e-16
+ - -8.87151206963122e-17
+ - 5.699274420490361e-17
+ - 7.213014941462401e-17
+ - -9.330597309598151e-17
+ - 1.137373342260413e-16
+ - 3.0647041695089675e-17
+ - 1.7453510924868881e-16
+ - -4.738090548703743e-16
+ - -1.1282743555223297e-16
+ - -9.115530350334364e-17
+ - 4.0416044729340927e-16
+ - 4.910971296727325e-16
+ - 3.3517358420648676e-16
+ - 1.4723814903443893e-17
+ - 5.929230630780102e-16
+ - 3.3757240798289054e-16
+ - 1.559235454662457e-16
+ - -1.0766582852990208e-15
+ - 3.3087224502121103e-18
+ - 3.3118243775091846e-17
+ - -3.5304068543763216e-16
+ - 4.2475724454597966e-16
+ - 2.249931266144235e-17
+ - 4.948194424292212e-16
+ - 2.1771393722395686e-16
+ - 1.2519378570990074e-16
+ - 7.279189390466644e-18
+ - -3.963022314741555e-16
+ - 8.027787844827132e-17
+ - -1.0199550543085108e-15
+ - 2.2003004293910533e-17
+ - 6.2865726554030096e-18
+ - 3.0812477817600276e-16
+ - 2.804969457167317e-16
+ - -1.4835484286138551e-16
+ - -4.776140856881182e-16
+ - -5.391563232620634e-16
+ - -4.979627287569226e-17
+ - -8.180816258149442e-17
+ - -1.8549525236501643e-16
+ - 9.744187615874665e-17
+ - 2.961306592939839e-17
+ - -4.7562885221799085e-17
+ - -4.135903062765138e-17
+ - 7.4859845436049e-17
+ - -6.824240053562478e-17
+ - -5.045801736573468e-17
+ - 7.738274630433573e-17
+ - -5.935848075680527e-16
+ - 1.560166032851579e-16
+ - -6.217089483948555e-16
+ - -2.450108974382068e-16
+ - -1.0434883427356443e-16
+ - -6.27830084927748e-17
+ - -6.799424635185887e-17
+ - 3.192917164454687e-17
+ - -4.3344264097778645e-16
+ - -2.4360469039686665e-16
+ - -1.0745076157063828e-16
+ - -3.2301402920195726e-16
+ - -2.402959679466545e-17
+ - -2.3288236170664803e-16
+ - 1.2970192004831474e-16
+ - 2.0844951436336295e-16
+ - -8.979045549263114e-17
+ - 2.4004781376288863e-16
+ - -9.140345768710955e-17
+ - -6.534726839168919e-17
+ - -1.4442573495175863e-16
+ - -1.1712877473750872e-16
+ - -7.952514409084807e-16
+ - -8.151864936710087e-17
+ - -1.496369728108427e-16
+ - 3.720658395263518e-16
+ - 9.89308012613421e-17
+ - -5.1636749738622746e-17
+ - -2.0737417956704401e-16
+ - -7.79204137024952e-17
+ - 2.4195032917176056e-17
+ - -3.654483946259276e-16
+ - 3.273980864484883e-16
+ - -2.4458696737427334e-17
+ - 6.948317145445432e-17
+ - 5.724089838866952e-16
+ - 3.397230775755284e-16
+ - -1.908719263466111e-16
+ - -3.145767869539164e-16
+ - -1.861156378244312e-16
+ - -4.144174868890668e-17
+ - 1.5236666883226767e-16
+ - -1.375601358675685e-16
+ - 1.346650037236329e-16
+ - 1.4708305266958523e-16
+ - 1.7122638679847673e-17
+ - 9.125870107991277e-17
+ - 1.878940761414202e-16
+ - -1.257314531080602e-16
+ - -1.3698110943878138e-16
+ - -3.4030210400431554e-16
+ - -4.7562885221799085e-17
+ - 3.7192108291915507e-17
+ - 3.1945715256797924e-16
+ - 1.2093380555525265e-16
+ - -5.889525961377557e-17
+ - -5.183113718257271e-16
+ - -3.4493431543461254e-17
+ - -3.4691954890473976e-16
+ - -3.1631386624027773e-16
+ - -1.134891800422754e-16
+ - 9.885842295774371e-17
+ - -1.2475434600948194e-16
+ - -8.437242248040882e-18
+ - -1.5484821066992676e-16
+ - -2.3227231600489017e-16
+ - -5.482553100001467e-16
+ - 2.474924392758659e-16
+ - -4.442011588198043e-16
+ - -5.132655700891536e-17
+ - 1.8502996327045535e-16
+ - 4.017512837593486e-16
+ - 6.170767369645586e-17
+ - 8.759842686936562e-17
+ - 1.5683344414005402e-16
+ - 1.0778163381565949e-16
+ - 5.500751073477633e-18
+ - -5.3353149509670285e-16
+ - 4.566036981292713e-16
+ - 3.89602068512476e-17
+ - 1.3789100811258971e-16
+ - 1.6063847495779795e-16
+ - 1.952146245625145e-17
+ - -1.4558378780933287e-16
+ - -3.5086352021599845e-16
+ - 1.462455322993753e-16
+ - 8.602678370551488e-18
+ - -1.771820872088585e-16
+ - -6.071505696139222e-16
+ - 1.452942745949393e-16
+ - -1.770166510863479e-16
+ - -1.035216536610114e-16
+ - -2.3942742830347386e-16
+ - -1.6183788684599984e-16
+ - 1.119588959090523e-16
+ - 1.1456451483859433e-16
+ - -1.6121750138658507e-16
+ - -1.2631047953684733e-16
+ - 4.584234954768879e-16
+ - 1.0399728251322939e-16
+ - 1.0536213052394189e-16
+ - -6.948317145445432e-17
+ - 2.504702894810568e-16
+ - -1.4152026305016612e-16
+ - -8.714347753246145e-17
+ - 3.675577051879378e-16
+ - 1.19941188820189e-17
+ - -3.7553999809907456e-17
+ - 4.206213414832145e-17
+ - 1.5369015781235252e-16
+ - -3.8877488789992295e-17
+ - 2.1787937334646746e-16
+ - -9.411661009628349e-16
+ - -8.329708768408988e-16
+- - -2.318102055222782
+ - -2.030635510690466
+ - 0.7357206668861828
+ - 1.0990430630190844
+ - -2.575820424215464
+ - 3.225747516387915
+ - -2.7702219768126786
+ - 1.4166405855329747
+ - 0.13104063393128804
+ - -0.3778855151693101
+ - -3.951936715624716
+ - -1.9340119581509156
+ - 3.2281799884529265
+ - -2.695398888641411
+ - 1.2098286060042658
+ - 0.31685147563114285
+ - -0.054451982686106626
+ - -3.5387604584186536
+ - -1.8824360568379244
+ - 3.2189207657798034
+ - -2.5641190630580475
+ - 1.0806867247746992
+ - 0.8553602258329435
+ - -2.413815769200434
+ - 3.1924677720573533
+ - -1.9456086012067138
+ - -3.6075998995453324
+ - 0.21600533637432062
+ - 0.46789035265602097
+ - 0.9877339494426003
+ - -2.5582204662490384
+ - 3.2182481203508284
+ - -1.9029681472070346
+ - -3.8475983238432416
+ - -0.04386528068212375
+ - 0.31124456065895384
+ - 1.2007561483110654
+ - -2.6415850318493517
+ - 3.2259216479909147
+ - -2.7112378638071766
+ - 1.3180480116527282
+ - 0.5039276517578217
+ - -2.865988953845477
+ - -2.7042948679213827
+ - 1.2292634548447798
+ - 1.4136788212069684
+ - 5.583311153945913
+ - 5.675182132419715
+ - -2.7460746215097913
+ - 1.3745304030922885
+ - 0.43974514134984544
+ - -2.191429978500989
+ - 3.1292867290071067
+ - -3.0548745900941574
+ - 1.3819770333975672
+ - 3.073915816610364
+ - 1.6335909563122344
+ - 0.5435343804649747
+ - -2.290915985630574
+ - 3.161010914259328
+ - -2.9742548888134865
+ - 1.247621817229213
+ - 2.657435477493547
+ - 1.7391941316655173
+ - 0.6679936834377449
+ - -2.4446852738436675
+ - 3.1990620823879965
+ - -2.9176476395707467
+ - 1.6013357781875892
+ - 0.18524595576310307
+ - -1.9142945766723236
+ - 1.9345796392823846
+ - 3.11945201717211
+ - 1.5080192437774114
+ - 0.5274914683579677
+ - -2.293416861674398
+ - 3.1804595826489512
+ - -2.9769572464415286
+ - 1.3546135950530542
+ - 3.0506382689411504
+ - 2.0057322993144466
+ - 0.75087659886136
+ - -2.4473055545026376
+ - 3.202247058680972
+ - -2.920290743456261
+ - 1.6025299554566335
+ - 0.18581191799844032
+ - -1.9164780643346015
+ - 3.532805146204195
+ - 4.205043643819413
+ - 1.2426501227372106
+ - 0.8621088725191215
+ - -1.268457807005761
+ - 2.6847478509999663
+ - -3.230691695947185
+ - 2.6738725992716414
+ - -1.2531963437282765
+ - -0.5754409105557952
+ - 1.4147685717373037
+ - 2.185779145421648
+ - -4.067521090729241
+ - -2.198353592161583
+ - 2.5940737370489817
+ - -1.122149926231092
+ - -0.7969507435178546
+ - 1.4859149453153673
+ - 2.146088532127465
+ - -3.4893152862018755
+ - -2.0711693525225017
+ - 2.4525586814767295
+ - -0.9069438779511931
+ - -0.9300294626907234
+ - 2.533998992332856
+ - -3.217165916306895
+ - 2.859124392276781
+ - -1.1002810800854317
+ - -2.431288745588152
+ - -2.0122463904136936
+ - -0.8357716624090773
+ - 2.61758250180188
+ - -3.2303515714566697
+ - 2.746636007057765
+ - -0.9903584497666231
+ - -2.420108665536396
+ - -2.414926542358187
+ - -0.9873159972158634
+ - 2.743896926472612
+ - -3.2303437144156257
+ - 2.671177670760016
+ - -1.1495322940608403
+ - -0.6822578581015063
+ - 2.2954775323411907
+ - -5.286346147446728
+ - -5.166519791996984
+ - -0.7390825335438876
+ - -0.5401554153432251
+ - 3.773059998770918
+ - 3.9267028374924493
+ - -1.212725156198327
+ - -0.6167449072602257
+ - 2.2441672187160213
+ - -3.1683437395207807
+ - 2.992963414422015
+ - -1.8479531512366965
+ - 0.17010843362121986
+ - 0.9520412372825953
+ - 3.486242707261929
+ - 1.6452854329438333
+ - -3.1920631795961985
+ - 2.9374685826404754
+ - -1.6578709569882542
+ - 0.00791553641932171
+ - 0.6251677477620483
+ - 3.330736466582417
+ - 1.7156784882906486
+ - -3.217889522633355
+ - 2.8362964400764694
+ - -1.5378101566010307
+ - -0.3640481932164558
+ - 2.0535192759551046
+ - -3.0801338441059523
+ - 2.044650506105603
+ - 3.689217443212745
+ - -0.7838623511647127
+ - -0.778776684552801
+ - -0.5008737867340326
+ - 2.2231536586493172
+ - -3.140373371109288
+ - 2.1275876472778017
+ - 4.185223505527207
+ - -0.5837044630375445
+ - -0.6278922326041899
+ - -0.7231994293506978
+ - 2.3230398053570713
+ - -3.169248228275486
+ - 2.949314588120421
+ - -1.7576362071035339
+ - -0.005071530552200586
+ - 1.0223961952825826
+ - 1.0683941533445673
+ - 8.039368373402875e-16
+ - 7.660519652853588e-16
+ - 2.1837568171399928e-16
+ - 8.849798578551704e-17
+ - -1.2945376586454883e-16
+ - -1.225808158588995e-16
+ - -2.714806770399037e-16
+ - -7.17992771696028e-17
+ - -4.402255220007213e-16
+ - 1.406207041340147e-16
+ - 1.3201802576346322e-16
+ - 2.6863724368425265e-16
+ - 3.040715931744929e-16
+ - 1.7426627554960908e-16
+ - -8.908735197196107e-17
+ - -1.522219122250709e-16
+ - -5.910205476691383e-17
+ - -1.528629771997995e-16
+ - -3.5982356646056704e-17
+ - -1.323488980084844e-18
+ - 4.011115112543271e-17
+ - -4.4585035016608186e-17
+ - 9.388499952476863e-17
+ - 2.3574647457761286e-17
+ - 1.1051132983708449e-16
+ - -2.9464173419138846e-16
+ - -7.957477492760125e-17
+ - -6.633988512675282e-17
+ - 2.2821913100338034e-16
+ - 2.9985297205047253e-16
+ - 2.5212465070616284e-16
+ - 6.617444900424221e-18
+ - 3.3418096747142313e-16
+ - 2.451763335607174e-16
+ - 1.1051132983708449e-16
+ - -7.140223047557734e-16
+ - 1.2490427249550716e-17
+ - 2.938559126094631e-17
+ - -2.5824578723905524e-16
+ - 2.276401045745932e-16
+ - 2.8289576949313546e-17
+ - 3.2557828910087164e-16
+ - 1.163015941249557e-16
+ - 9.82070182253582e-17
+ - 3.298124198613775e-17
+ - -2.349606529956875e-16
+ - 7.198539280742723e-17
+ - -6.641846728494535e-16
+ - -1.0836066024444661e-17
+ - 2.067951531382569e-18
+ - 2.388070428440591e-16
+ - 1.9265036466360012e-16
+ - -1.2117161998136164e-16
+ - -3.1035816582989593e-16
+ - -4.2120036791200164e-16
+ - -3.176373552203626e-17
+ - -3.594099761542905e-17
+ - -1.3889913448413872e-16
+ - 7.560430798734672e-17
+ - 7.874759431504822e-17
+ - -6.485096002415737e-17
+ - -3.192917164454687e-17
+ - 2.7379678275505213e-17
+ - -2.1093105620102203e-17
+ - -8.602678370551488e-18
+ - 8.294553592375484e-17
+ - -4.0920624902998274e-16
+ - 9.624246427054476e-17
+ - -4.511856651170489e-16
+ - -1.9579365099130163e-16
+ - -3.399712317592944e-17
+ - -3.58169205235461e-17
+ - -3.784351302430101e-17
+ - 2.8000063734919987e-17
+ - -2.4674797672456816e-16
+ - -1.8141104809053586e-16
+ - -8.768114493062092e-17
+ - -2.44514589070675e-16
+ - -2.2912902967718864e-17
+ - -1.5512932283122407e-16
+ - 9.347140921849211e-17
+ - 2.0894582273089477e-16
+ - -7.858215819253762e-17
+ - 1.6593243087813733e-16
+ - -5.40148939997127e-17
+ - -3.250819807333399e-17
+ - -5.773720675620133e-17
+ - -5.310499532590437e-17
+ - -5.309672351977885e-16
+ - -9.454674401481105e-17
+ - -1.8847310257020733e-16
+ - 1.5646121286440516e-16
+ - 1.1580528575742386e-17
+ - -4.689726332263532e-17
+ - -1.341686953561011e-16
+ - -6.898686308692251e-17
+ - 3.1267427154504446e-17
+ - -2.5824578723905524e-16
+ - 2.615131506586397e-16
+ - -1.261450434143367e-18
+ - 4.1276312566396075e-17
+ - 4.1896698025810847e-16
+ - 2.1801379019600733e-16
+ - -1.0784367236160097e-16
+ - -2.101865936497243e-16
+ - -1.5567539128247978e-16
+ - -2.2871543937091212e-17
+ - 1.0695445320310647e-16
+ - -8.553047533798305e-17
+ - 8.553047533798305e-17
+ - 9.719372197498074e-17
+ - 1.7867101231145398e-17
+ - 5.860574639938201e-17
+ - 1.3751877683694085e-16
+ - -1.0141234309900118e-16
+ - -9.843449289381028e-17
+ - -2.238350737568493e-16
+ - -1.6047303883528737e-17
+ - 2.1118955014244485e-17
+ - 2.244968182468917e-16
+ - 8.875647972693986e-17
+ - -3.697497338112034e-17
+ - -3.9857697815867634e-16
+ - -1.2521446522521455e-17
+ - -2.536135758087583e-16
+ - -1.8561932945689939e-16
+ - -8.958366033949288e-17
+ - 7.965749298885655e-17
+ - -7.561981762383209e-17
+ - 1.4144788474656773e-17
+ - -1.0893968667323373e-16
+ - -1.6998561587964716e-16
+ - -3.1875404904730917e-16
+ - 1.4628689133000294e-16
+ - -3.0595342906805106e-16
+ - -3.0052505629817187e-17
+ - 1.2981048750371232e-16
+ - 3.7316185383798456e-16
+ - 5.67445900211377e-17
+ - 6.190412909193721e-17
+ - 1.134891800422754e-16
+ - 7.632809102333062e-17
+ - -7.423945997663423e-18
+ - -3.4923565461988824e-16
+ - 3.541987382952064e-16
+ - 1.431022459716738e-17
+ - 7.613939044609196e-17
+ - 9.551868123456086e-17
+ - 2.779326858178173e-17
+ - -9.487761625983226e-17
+ - -2.578942354787202e-16
+ - 1.2052021524897613e-16
+ - -1.4889251025954496e-18
+ - -1.1779051922755114e-16
+ - -4.3063022689510616e-16
+ - 9.847585192443793e-17
+ - -1.0405932105917087e-16
+ - -9.086579028895008e-17
+ - -1.7004765442558864e-16
+ - -1.1803867341131705e-16
+ - 6.700162961679524e-17
+ - 6.245213624775359e-17
+ - -1.2920561168078292e-16
+ - -7.494256349730431e-17
+ - 3.938620486671241e-16
+ - 9.268558763656674e-17
+ - 8.877715924225368e-17
+ - -7.450829367571397e-17
+ - 2.0902854079215007e-16
+ - -1.0981856607407132e-16
+ - -2.8925472045213687e-17
+ - 2.1721762885642504e-16
+ - 2.3616006488388937e-17
+ - -1.2262952581098634e-17
+ - 2.86152793155063e-17
+ - 9.950982769012922e-17
+ - -2.5146290621612038e-17
+ - 1.527905988962011e-16
+ - -6.035109749186889e-16
+ - -5.350824587452398e-16
+- - 5.543564327240324
+ - 4.477542951639875
+ - -3.2205855732013533
+ - 2.8446648976182325
+ - -1.549215977777496
+ - -0.35350994013483744
+ - 2.047265867920901
+ - -3.08023645382978
+ - 2.1690968105799047
+ - 4.218969754686648
+ - -0.8904325234633693
+ - -0.7830989653638801
+ - -0.4905452682791453
+ - 2.1544512889240526
+ - -3.141286658631345
+ - 2.010193466224403
+ - 3.668987170038315
+ - -0.5416517518308782
+ - -0.6476044005845596
+ - -0.713270563772741
+ - 2.3179010012391963
+ - -3.1706525565662944
+ - 2.95701482069126
+ - -1.7688350707399776
+ - 0.005944135093952585
+ - 1.069879414261342
+ - 1.3300035304208135
+ - -3.686809213858402
+ - -2.096757224791827
+ - 2.898806086592871
+ - -1.5749608418007455
+ - -0.2206469660287395
+ - 1.1898777849569504
+ - 1.7075780156477758
+ - -3.971386422423866
+ - -2.1158643935307975
+ - 2.791440261271259
+ - -1.4502923570294908
+ - -0.35827185741591727
+ - 2.1323600146895534
+ - -3.1113700803673803
+ - 3.083765621116081
+ - -4.551752117060099
+ - -4.593180915632682
+ - -3.0737992857825245
+ - -3.0170301822647696
+ - -2.0421152018146063
+ - -1.922611983312541
+ - 2.083308994087391
+ - -3.0939879822180627
+ - 3.102336738574704
+ - -2.025949324160237
+ - 0.32621957192985906
+ - 1.4814067383354488
+ - -1.7862474047348622
+ - -3.01165059659131
+ - 3.3948563253880675
+ - 1.943011777011308
+ - -1.9165958523666975
+ - 0.18565666611413648
+ - 1.679168181223488
+ - -1.8567221640750577
+ - -2.935264465672755
+ - 2.975936618632639
+ - 1.8744561406030134
+ - -1.729405074453416
+ - -0.040965192981498824
+ - 1.7955509214072196
+ - -3.01037623074224
+ - 3.1642516026755727
+ - -2.293482227553004
+ - 0.5274421407667607
+ - 1.5080018252160248
+ - 3.119835099447164
+ - 1.9347925032479436
+ - -1.9146106530646372
+ - 0.09979986570073487
+ - 1.6776346098726915
+ - -1.9312588470255903
+ - -3.3359416370820525
+ - 3.382458190946996
+ - 1.950601338566657
+ - -1.72760392980811
+ - -0.04104182085376096
+ - 1.7939005989049952
+ - -3.0075035214208317
+ - 3.1611329153376833
+ - -2.291146198225971
+ - 2.5299396535528205
+ - 3.2597382875568894
+ - 5.366229524082204
+ - 4.42903321237672
+ - -2.751952647354782
+ - 1.3841507851926182
+ - 0.42939784224898964
+ - -2.1840999710931523
+ - 3.1272038771499906
+ - -3.0586812079961714
+ - 1.4785085224085093
+ - 3.2544319846467187
+ - 1.7257547780867595
+ - 0.5952621471127931
+ - -2.2839206797765694
+ - 3.1593683483361206
+ - -2.978744818038596
+ - 1.2532587659285874
+ - 2.6661135948234853
+ - 1.7288693344756638
+ - 0.6616545181728638
+ - -2.438254038968232
+ - 3.1981315164575457
+ - -2.9225399794272464
+ - 1.6106112088444653
+ - 0.17480946717556317
+ - -1.906184529962209
+ - 1.932227564528597
+ - 3.113512126671333
+ - -2.7755794085366823
+ - -1.7849958567400603
+ - 1.4896200485776308
+ - 0.4003865752197654
+ - -2.084253930417368
+ - 1.9928408904443222
+ - 3.5281419475017017
+ - -2.8243457827653113
+ - -1.7049715474585658
+ - 1.2850805840454378
+ - 0.5397605930779878
+ - -2.1876357297299154
+ - 3.1529959862914967
+ - -3.022029134583611
+ - 1.9118960364567616
+ - -1.5521994467661067
+ - -1.6786985865972452
+ - -2.941846623995171
+ - -3.011432582987635
+ - -4.805711539771563
+ - -4.774858060068018
+ - 3.1403135853650554
+ - -3.047669439263903
+ - 1.969195259342
+ - -0.1477606105164495
+ - -1.6357982611003326
+ - 2.8918395342029255
+ - -2.11121931458794
+ - -4.004201177127811
+ - 1.466103512027248
+ - 1.0730559485313536
+ - -0.009607146031907713
+ - -1.755895235980819
+ - 2.98593049892586
+ - -2.0816137203359224
+ - -3.700291298664304
+ - 1.1015658104803432
+ - 0.9493386889975204
+ - 0.2169886534479966
+ - -1.9416923462481481
+ - 3.035821974784563
+ - -3.1230822884566907
+ - 2.165859886012159
+ - -0.505888263470915
+ - -0.776892067914831
+ - -0.7796221302279427
+ - 3.693014823717778
+ - 2.046268188402668
+ - -3.0849636580853432
+ - 1.9924962053452002
+ - -0.28086987396888063
+ - -0.9168146155545067
+ - -1.1583421073138487
+ - 4.22575358288172
+ - 2.194085295504423
+ - -3.0097797910549975
+ - 1.879553879106138
+ - -0.1429608299735342
+ - -1.7311165337346806
+ - 2.9387288792669857
+ - -3.1961962569277538
+ - 4.376987621890554
+ - 5.432006285612401
+ - -1.455672441970818e-15
+ - -1.8421312241555926e-15
+ - -3.0820749623725806e-16
+ - -1.4558378780933287e-17
+ - -1.7701665108634792e-17
+ - 1.7155208916466946e-16
+ - 3.105029224370927e-16
+ - 1.6857940883830702e-16
+ - 2.2846728518714624e-16
+ - -4.4833189200374094e-17
+ - -8.52513018812464e-17
+ - -7.552158992609142e-16
+ - -3.970466940254533e-18
+ - -2.4666525866331285e-16
+ - -3.0936554909483235e-17
+ - 6.461107764651698e-16
+ - 9.074171319706712e-17
+ - 5.2980918234021416e-17
+ - 2.4070955825293105e-16
+ - -2.5754268371838517e-16
+ - -1.0041972636393755e-16
+ - 1.018259334052777e-16
+ - 1.2143011392278446e-16
+ - 3.0605682664462024e-17
+ - -9.446402595355575e-17
+ - 3.5634940788784427e-16
+ - 1.4392942658422682e-17
+ - -6.61744490042422e-19
+ - -4.542875924141228e-16
+ - -2.95406876258e-16
+ - 2.5973471234165066e-17
+ - -9.421587176978984e-17
+ - -3.225590798650531e-16
+ - 6.212126400273238e-17
+ - 1.1735624940596079e-17
+ - 4.539567201691016e-16
+ - 3.86396743638833e-17
+ - 3.709905047300329e-17
+ - -2.210640187047966e-17
+ - -5.332006228516816e-16
+ - -7.957477492760125e-17
+ - -1.2348772569651012e-16
+ - -5.259007539459012e-16
+ - 6.948317145445432e-17
+ - 2.835575139831779e-16
+ - 2.5874209560658706e-16
+ - 1.2609334462605216e-16
+ - 6.02683794306136e-16
+ - -2.8785885316845363e-16
+ - -1.9025154088719633e-17
+ - 2.0009499017657737e-16
+ - 1.3689839137752606e-17
+ - -1.1779051922755114e-16
+ - 2.756165801026688e-16
+ - -2.514629062161204e-16
+ - 4.748016716054378e-17
+ - 2.2118809579667958e-16
+ - -1.3400325923359047e-17
+ - 1.9852334701272664e-18
+ - 3.957232050453684e-16
+ - -3.4547198283277196e-16
+ - -3.672681919735443e-17
+ - -2.4997398111352496e-16
+ - 2.4898136437846133e-16
+ - 2.4947767274599315e-16
+ - 1.8950707833589862e-16
+ - 1.804080915978153e-16
+ - -1.402898318889935e-16
+ - 3.6065074707312007e-17
+ - 2.928219368437718e-17
+ - 1.9848198798209897e-16
+ - 3.310790401743493e-17
+ - 3.316994256337641e-17
+ - -4.3923290526565763e-17
+ - 5.823041319643607e-16
+ - -8.768114493062093e-18
+ - -9.876536513883149e-17
+ - -1.8148342639413425e-16
+ - -1.283784310682299e-16
+ - 6.869734987252895e-17
+ - -1.5716431638507526e-17
+ - 2.9447629806887785e-16
+ - -1.9356026333740845e-17
+ - -1.2076836943274203e-17
+ - 1.2200914035157158e-16
+ - 1.13654616164786e-16
+ - 3.095309852173429e-16
+ - 1.2622776147559202e-16
+ - 1.402071138277382e-16
+ - 1.888453338458562e-16
+ - -5.406452483646589e-16
+ - -7.338746394570461e-16
+ - -4.025060860683032e-16
+ - 1.067838472017674e-16
+ - 2.0725010247516106e-16
+ - -5.831623318498845e-17
+ - 7.527343574232552e-18
+ - 1.4889251025954496e-18
+ - 1.8363409598677212e-16
+ - 1.8131799027162364e-16
+ - -1.3052910066086777e-16
+ - 1.2109924167776325e-16
+ - -1.3516131209116472e-16
+ - 2.067951531382569e-16
+ - 3.1184709093249143e-17
+ - -2.50801161726078e-16
+ - 4.6322114302969544e-17
+ - -8.222175288777094e-17
+ - 3.908945382195901e-17
+ - -8.983181452325879e-17
+ - -4.830734777309681e-17
+ - 2.067951531382569e-17
+ - -8.280077931655806e-17
+ - 8.162204694366999e-17
+ - -9.661469554619362e-17
+ - -2.6469779601696883e-17
+ - 1.7073007843094489e-16
+ - 1.283784310682299e-16
+ - -1.621274000603934e-16
+ - -3.498973991099307e-17
+ - -5.128519797828771e-17
+ - 7.130296880207099e-17
+ - -2.9977025398921723e-16
+ - 8.1146418091452e-17
+ - -5.707546226615891e-17
+ - 2.871971086784112e-16
+ - -3.341809674714232e-17
+ - -2.5280707471151904e-18
+ - 7.080666043453917e-17
+ - 1.7370792863613579e-16
+ - -2.283018490646356e-17
+ - 6.799424635185887e-17
+ - 3.996936719856229e-16
+ - -7.275053487403878e-17
+ - 1.2771668657818747e-16
+ - 9.926167350636332e-19
+ - -7.320548421094295e-18
+ - 3.8065559319983215e-16
+ - 5.831623318498845e-17
+ - -3.325266062463171e-17
+ - -5.1409275070170664e-17
+ - -9.589091251020972e-17
+ - -3.9079114064302095e-17
+ - 3.248338265495739e-16
+ - 1.8710825455949484e-16
+ - -1.0668561950402673e-16
+ - -1.4252321954288667e-16
+ - -1.977788844614289e-16
+ - 1.1795595535006175e-16
+ - 8.5654552429866e-17
+ - -8.751570880811032e-17
+ - -9.31405369734709e-17
+ - -8.54891163073554e-17
+ - 6.054962083888163e-17
+ - -4.1855338995183194e-17
+ - -5.550381910230815e-17
+ - 1.5414510714925668e-16
+ - 4.817293092355694e-17
+ - -2.150669592637872e-18
+ - -4.508134338414e-17
+ - -1.0356301269163905e-16
+ - 1.985233470127266e-17
+ - -1.1459553411156507e-16
+ - 1.3805644423510032e-16
+ - 5.781992481745663e-16
+ - 1.134891800422754e-16
+ - 1.534420036285866e-16
+ - -1.401243957664829e-16
+ - 2.5295183131871586e-16
+ - -2.4820588255419284e-17
+ - 2.0861495048587355e-16
+ - -2.756165801026688e-16
+ - 1.0025429024142694e-16
+ - 1.2753057094036304e-16
+ - -1.1911400820763597e-17
+ - 3.0605682664462024e-17
+ - 2.7214242152994607e-17
+ - 2.5642598989143855e-17
+ - 6.825894414787583e-16
+ - 3.3517358420648676e-16
+- - 8.067384166394485
+ - 6.5420652858648625
+ - -4.586356208786401
+ - 3.763468163912545
+ - -1.7244985467370086
+ - -1.020520495543311
+ - 3.294049799890591
+ - -4.503719096652692
+ - 2.98594290884972
+ - 5.911798415666236
+ - -0.5848278359662622
+ - -0.7677920716007678
+ - -1.210922134348399
+ - 3.43035989415109
+ - -4.5543599121926075
+ - 2.7350707016743963
+ - 5.0960628778733374
+ - -0.16917156562252467
+ - -0.5884068923933681
+ - -1.5182116449082141
+ - 3.6353979056474692
+ - -4.573844344833164
+ - 3.9593141845997915
+ - -2.055642278138588
+ - -0.5166590464688466
+ - 1.8032996399615375
+ - 2.437228241451342
+ - -5.147336237746784
+ - -2.984116990531147
+ - 3.856842735119526
+ - -1.763088557482579
+ - -0.8350698554447687
+ - 1.9626688926087734
+ - 3.0002030085598976
+ - -5.4991791438929765
+ - -2.9848538237186593
+ - 3.6729541112877113
+ - -1.5765277290679582
+ - -1.0271505085635568
+ - 3.4023312317067953
+ - -4.530676086426569
+ - 4.19284010930608
+ - -5.839851044835862
+ - -5.923884672264333
+ - -4.463986494021117
+ - -4.4155965352515665
+ - -3.74942725098056
+ - -3.5988374767301954
+ - 3.340049319671441
+ - -4.51586136398155
+ - 4.229140880458436
+ - -2.448698512354206
+ - -0.06220377413089259
+ - 2.556274084620103
+ - -2.7038830532042524
+ - -4.681111286481181
+ - 4.4384334134836445
+ - 2.60465178885175
+ - -2.2807204647220347
+ - -0.2623125710421553
+ - 2.8172182022196313
+ - -2.779507136962537
+ - -4.506724515287719
+ - 3.840229095990884
+ - 2.4891342337448563
+ - -1.9958960505287677
+ - -0.5827838744755823
+ - 2.9692778384185994
+ - -4.4372238153775685
+ - 4.356830071012514
+ - -2.865204123709964
+ - 0.4132266784934491
+ - 1.577974246006043
+ - 4.38423876323486
+ - 2.595893098112164
+ - -2.2775572196109253
+ - -0.3845521913129462
+ - 2.815536811492257
+ - -2.900444920711473
+ - -5.1269213757423024
+ - 4.360051796090538
+ - 2.5810829115989917
+ - -1.9929678451302066
+ - -0.5834139900366089
+ - 2.9674255427719824
+ - -4.433435197581634
+ - 4.352411306701663
+ - -2.8616045716873275
+ - 2.926942445417785
+ - 3.828288455510396
+ - 7.236046585039675
+ - 5.999181187518251
+ - -3.6070651259270194
+ - 1.4777238876858818
+ - 1.1265522230618263
+ - -3.4679265115179736
+ - 4.541976966124196
+ - -4.1462958919430255
+ - 1.8173619424138632
+ - 4.152935811821092
+ - 3.0615648713442924
+ - 1.1867908985306914
+ - -3.5932090669241528
+ - 4.565024700003655
+ - -3.999040172573899
+ - 1.4933519515491702
+ - 3.3437506643530646
+ - 2.9708164267316435
+ - 1.2579338613230997
+ - -3.7839263184645544
+ - 4.583382807327998
+ - -3.8992325669558263
+ - 1.8165025575270142
+ - 0.7713377628548601
+ - -3.1130495673727236
+ - 2.859973298385077
+ - 4.716688965422924
+ - -3.5175329087757814
+ - -2.337508621281645
+ - 1.6350033318743735
+ - 1.086271819087548
+ - -3.341449399353394
+ - 2.925941966775123
+ - 5.289745525011191
+ - -3.5189383269710515
+ - -2.2016367078210775
+ - 1.3306377332402017
+ - 1.2795153179778505
+ - -3.472384324163812
+ - 4.560689864388768
+ - -4.077913369200077
+ - 2.2734553449842236
+ - -1.2829741319512014
+ - -1.4780690747248466
+ - -3.9573980580366905
+ - -4.0865877500933845
+ - -7.283576778582302
+ - -7.266051602790689
+ - 4.553497210424152
+ - -4.124237311836865
+ - 2.361337906993483
+ - 0.3160616682316177
+ - -2.7601594596750676
+ - 4.313427070308654
+ - -2.9552080520113537
+ - -5.708425810135647
+ - 1.45957313000353
+ - 1.2172943005366905
+ - 0.5115135731482378
+ - -2.9175508571823543
+ - 4.412631632263182
+ - -2.8874918041562676
+ - -5.233304466616257
+ - 0.9797037434074596
+ - 1.0341841728205035
+ - 0.8299388199334456
+ - -3.1585289743406784
+ - 4.4620654941728
+ - -4.270345101328871
+ - 2.665362913598755
+ - -0.19499141283656557
+ - -1.4133520919023517
+ - -1.6875351165760264
+ - 5.2493077662338985
+ - 2.9652310068260403
+ - -4.194995077895417
+ - 2.397102638493677
+ - 0.12690467054054078
+ - -1.620993139008525
+ - -2.2941892939194153
+ - 5.955045578641137
+ - 3.1453728599474022
+ - -4.054198914228564
+ - 2.2240847263862715
+ - 0.32286549925262553
+ - -2.8851415235884974
+ - 4.3635826121219985
+ - -4.43073967348904
+ - 5.900662795809746
+ - 7.355894844765831
+ - -2.1423977865123417e-15
+ - -2.675598409364023e-15
+ - -4.70996640787694e-16
+ - -4.921724644690514e-17
+ - 1.4889251025954498e-17
+ - 2.483816584343604e-16
+ - 4.755668136720494e-16
+ - 2.564259898914386e-16
+ - 4.0928896709123804e-16
+ - -8.205631676526033e-17
+ - -1.3880090678639804e-16
+ - -1.0915475363249753e-15
+ - -4.7314731038033177e-17
+ - -3.596581303380564e-16
+ - -2.6469779601696883e-17
+ - 8.850832554317395e-16
+ - 1.3913177903141925e-16
+ - 1.0920852037231347e-16
+ - 3.391440511467413e-16
+ - -3.664410113609912e-16
+ - -1.3880090678639804e-16
+ - 1.4591466005435408e-16
+ - 1.5087774372967222e-16
+ - 3.176373552203626e-17
+ - -1.7850557618894335e-16
+ - 5.075580238625378e-16
+ - 3.788487205492866e-17
+ - 1.2490427249550716e-17
+ - -6.536381200394024e-16
+ - -4.606982421614088e-16
+ - 1.1580528575742387e-18
+ - -1.2932968877266588e-16
+ - -5.085092815669738e-16
+ - 3.176373552203626e-17
+ - 1.5282161816917186e-17
+ - 7.388377231323642e-16
+ - 4.87829766253148e-17
+ - 3.552740730915254e-17
+ - 3.1660337945467134e-17
+ - -7.783769564123989e-16
+ - -1.0951871310202085e-16
+ - -2.3136241733108184e-16
+ - -7.329233817526101e-16
+ - 6.898686308692251e-17
+ - 3.7322389238392604e-16
+ - 3.714040950363094e-16
+ - 1.5854984391110155e-16
+ - 8.877302333919092e-16
+ - -3.9142186586009265e-16
+ - -3.0936554909483235e-17
+ - 2.383934525377826e-16
+ - -2.1258541742612808e-17
+ - -1.5435190230239494e-16
+ - 4.1259768954145015e-16
+ - -2.3690452743518713e-16
+ - 7.221286747587932e-17
+ - 2.956343509264521e-16
+ - -2.3161057151484775e-18
+ - -1.4227506535912076e-17
+ - 5.085506405976014e-16
+ - -4.687632531338008e-16
+ - -4.350970022028925e-17
+ - -3.4741585727227157e-16
+ - 3.3815143441167766e-16
+ - 3.510554519675049e-16
+ - 2.491054414703443e-16
+ - 3.3401553134891253e-16
+ - -2.0034314436034328e-16
+ - 1.1249656330721176e-16
+ - 7.552158992609141e-17
+ - 2.8635958830820127e-16
+ - 6.319659879905131e-17
+ - 6.389970231972139e-17
+ - -5.1698788284564224e-17
+ - 8.09334190837196e-16
+ - 3.490702184973777e-17
+ - -1.2622776147559202e-16
+ - -2.066297170157463e-16
+ - -1.67752228225754e-16
+ - 1.212233187696462e-16
+ - -3.7719435932418056e-17
+ - 3.4642324053720794e-16
+ - -1.0422475718168147e-17
+ - -5.1119761855777104e-17
+ - 1.799117832302835e-16
+ - 1.6146565557035098e-16
+ - 4.3071294495636146e-16
+ - 1.8148342639413425e-16
+ - 2.75120271735137e-16
+ - 2.780981219403279e-16
+ - -6.359364549307676e-16
+ - -1.0852609636695723e-15
+ - -5.525566491854225e-16
+ - 1.5405204933034447e-16
+ - 2.965442496002604e-16
+ - -5.823351512373315e-17
+ - 3.465886766597186e-17
+ - 5.194694246833013e-17
+ - 2.0613340864821447e-16
+ - 2.5245552295118405e-16
+ - -1.8131799027162364e-16
+ - 9.562207881112999e-17
+ - -2.1093105620102203e-16
+ - 3.036580028682164e-16
+ - 7.734138727370808e-17
+ - -3.1912628032295803e-16
+ - 6.5843576759221e-17
+ - -1.3255569316162268e-16
+ - 6.152898975944734e-17
+ - -1.3689839137752608e-16
+ - -7.080666043453917e-17
+ - 1.323488980084844e-18
+ - -1.2970192004831474e-16
+ - 8.606814273614252e-17
+ - -1.0587911840678753e-16
+ - -3.2756352257099896e-17
+ - 2.693300074472658e-16
+ - 1.8197973476166606e-16
+ - -2.3442298559752804e-16
+ - -7.891303043755883e-17
+ - -7.80858498250058e-17
+ - 9.694556779121483e-17
+ - -3.096964213398535e-16
+ - 1.1696333861499811e-16
+ - -4.0366413892587744e-17
+ - 3.8182657075447753e-16
+ - -3.705769144237564e-17
+ - -1.9469763667966886e-17
+ - 1.2672406984312384e-16
+ - 2.455072058057386e-16
+ - 9.26442286059391e-18
+ - 1.227536029028693e-16
+ - 6.025183581836254e-16
+ - -1.222572945353375e-16
+ - 2.3177600763735835e-16
+ - 2.283018490646356e-17
+ - -3.101927297073854e-17
+ - 4.929660408692195e-16
+ - 6.55954225754551e-17
+ - -6.319659879905131e-17
+ - -6.28657265540301e-17
+ - -1.5292501574574097e-16
+ - -5.587605037795702e-17
+ - 5.054900723311552e-16
+ - 1.8131799027162364e-16
+ - -1.338481628687368e-16
+ - -2.126681354873834e-16
+ - -3.0948962618671526e-16
+ - 1.653534044493502e-16
+ - 1.2891609846638936e-16
+ - -8.056739166266488e-17
+ - -1.7370792863613579e-16
+ - -1.1737692892127463e-16
+ - 9.512577044359817e-17
+ - 3.8877488789992295e-17
+ - -9.231335636091788e-17
+ - 2.2525162055584635e-16
+ - 8.695736189463702e-17
+ - 6.319659879905131e-17
+ - -3.039888751132377e-17
+ - -1.375601358675685e-16
+ - 2.6635215724207488e-17
+ - -1.3203870527877704e-16
+ - 1.9686898578762056e-16
+ - 6.698508600454417e-16
+ - 1.3284520637601624e-16
+ - 2.0050858048285388e-16
+ - -1.8082168190409183e-16
+ - 3.2210413052814893e-16
+ - -3.8918847820619946e-17
+ - 2.8868603378100666e-16
+ - -4.200423150544274e-16
+ - 1.2697222402688975e-16
+ - 1.5180832191879438e-16
+ - -1.6543612251060553e-17
+ - 2.6635215724207488e-17
+ - 4.164854384204494e-17
+ - 8.271806125530276e-20
+ - 1.0630925232531512e-15
+ - 4.999479622270499e-16
+- - -4.612305383512531
+ - -3.6960303712809766
+ - 2.7724317932651767
+ - -2.8109740643916385
+ - 1.8657414478859302
+ - -0.2962466285526515
+ - -1.3691114678708345
+ - 2.518666115498846
+ - -1.9969672890219112
+ - -3.766992226745567
+ - 1.541758278010838
+ - 1.0703985135795056
+ - -0.17117636561934205
+ - -1.4795601958659372
+ - 2.613388678026812
+ - -1.8868628946721473
+ - -3.3266989343766213
+ - 1.148028451214664
+ - 0.9376171874361139
+ - 0.03220567453900646
+ - -1.6534218574236577
+ - 2.6631192053623374
+ - -2.867976122466502
+ - 2.035432754226687
+ - -0.6169858692455326
+ - -0.6126518513730325
+ - -0.5414015721273812
+ - 3.312968812471271
+ - 1.8202402003514466
+ - -2.838658475922774
+ - 1.8867559137086636
+ - -0.41479737578591624
+ - -0.7296798359090034
+ - -0.8403333517382809
+ - 3.6199063538278056
+ - 1.8666282019839908
+ - -2.781357625769712
+ - 1.7879218978948463
+ - -0.29194922379159016
+ - -1.4574037500247816
+ - 2.565207071457119
+ - -2.9181494877421876
+ - 4.670429343439916
+ - 4.678140284464279
+ - 2.5677861239940913
+ - 2.4820007875396
+ - 0.8230821933497541
+ - 0.6973820545282694
+ - -1.4063411770891048
+ - 2.5389415556998403
+ - -2.923156067382875
+ - 2.2281046939676683
+ - -0.8965878263572463
+ - -0.8017446530740241
+ - 1.3685399709604196
+ - 2.169612390746063
+ - -3.390027301848451
+ - -1.8677460783856088
+ - 2.1479753933860106
+ - -0.7737371139276827
+ - -0.9956400920939528
+ - 1.4575199641437615
+ - 2.1772821591819547
+ - -3.0286064464357842
+ - -1.8284531587832626
+ - 2.005320995399211
+ - -0.575574624430737
+ - -1.1128620929075075
+ - 2.420920035726467
+ - -2.9323619364286992
+ - 2.4200864897085625
+ - -0.8380001803046845
+ - -1.9492317841718305
+ - -2.0647675042379006
+ - -0.9109128495717901
+ - 2.487641734540483
+ - -0.6992781341215935
+ - -0.9937187715554776
+ - 1.5054788888189272
+ - 2.4688213326814537
+ - -3.447711858859632
+ - -1.9130613809382424
+ - 2.004186183258291
+ - -0.5761165279745402
+ - -1.1108461231285218
+ - 2.418076316206679
+ - -2.9296373035652317
+ - 2.4183858262019426
+ - -2.9552309667497734
+ - -3.743476691971904
+ - -5.110549780204672
+ - -4.1877033395146155
+ - 2.7174442478902896
+ - -1.7764111797313153
+ - 0.1875847943632118
+ - 1.4707894598155213
+ - -2.6322299305065107
+ - 2.8680343400305155
+ - -1.6066826864999069
+ - -3.3646302700197626
+ - -0.816112875913595
+ - -0.1341867980514129
+ - 1.577246887331174
+ - -2.6848675148499006
+ - 2.8372601876304633
+ - -1.4150027321057799
+ - -2.8222180325827857
+ - -0.9260422630057048
+ - -0.2181262984289606
+ - 1.7429289785275102
+ - -2.7608823586083444
+ - 2.8098950941720795
+ - -1.954407545544115
+ - 0.4165853377347018
+ - 1.183732669187554
+ - -1.5534791730351876
+ - -2.3812789086749624
+ - 2.896966535626805
+ - 1.7781707916874732
+ - -1.8589594228983883
+ - 0.21476908965492697
+ - 1.3674060304840103
+ - -1.6289607237479913
+ - -2.760430303686118
+ - 3.0159009748490475
+ - 1.7334594497606755
+ - -1.6972267095483282
+ - 0.08712064990932153
+ - 1.4745097450427105
+ - -2.6748694482264215
+ - 2.85445373380316
+ - -2.184339107277165
+ - 2.391308226068314
+ - 2.484183431340832
+ - 2.8196389613647574
+ - 2.8479526142622587
+ - 3.6717607804347017
+ - 3.6140873172334325
+ - -2.6514316452561557
+ - 2.8656369675035323
+ - -2.2268397159490316
+ - 0.7009324954322821
+ - 0.9130104708450815
+ - -2.307994997117111
+ - 1.8885453287998344
+ - 3.4652954475019464
+ - -1.9790774297074993
+ - -1.2806334233111252
+ - 0.5805748948758268
+ - 1.033405537662435
+ - -2.4278839008420303
+ - 1.8916638241916421
+ - 3.249448562461962
+ - -1.618749466579367
+ - -1.181159613808082
+ - 0.3783890600794542
+ - 1.220223765268644
+ - -2.49639051213017
+ - 2.8874490341589842
+ - -2.3704157794717693
+ - 1.0102961155907786
+ - 0.3278328770478488
+ - 0.02570468600855739
+ - -3.2134532546487553
+ - -1.7167419535210005
+ - 2.879022146938036
+ - -2.2432690585878485
+ - 0.8176989229639693
+ - 0.4397264599495543
+ - 0.2782651004669433
+ - -3.7350422468111706
+ - -1.8791254744545112
+ - 2.850928474779018
+ - -2.1599415696503472
+ - 0.6967306093356243
+ - 1.0078144066667223
+ - -2.367412121147386
+ - 2.887460784084388
+ - -4.17005981210778
+ - -5.138097981183204
+ - 1.1453969942021774e-15
+ - 1.8304059389726535e-15
+ - 2.560537586157897e-16
+ - 5.666187195988239e-18
+ - -8.284213834718571e-17
+ - -1.3582305658120714e-16
+ - -3.3727772488966853e-16
+ - -2.0629884477072508e-16
+ - -1.465764045443965e-16
+ - 1.761894704737949e-17
+ - 7.79204137024952e-17
+ - 6.715052212705478e-16
+ - -5.285684114213846e-17
+ - 1.5550995515996918e-16
+ - -1.3152171739593138e-17
+ - -3.9175273810511386e-16
+ - -7.980224959605333e-17
+ - -1.1853498177884887e-16
+ - -1.540830686033152e-16
+ - 2.416194569267394e-16
+ - 5.657915389862709e-17
+ - -5.219509665209604e-17
+ - -1.0538281003925571e-16
+ - -5.893661864440322e-17
+ - 1.9620724129757814e-16
+ - -1.0298398626285193e-16
+ - -3.443139299751978e-17
+ - -5.666187195988239e-18
+ - 2.332649327399538e-16
+ - 1.5857052342641538e-16
+ - -9.547732220393321e-17
+ - 1.2774253597232976e-16
+ - 2.8289576949313546e-16
+ - -5.922613185879678e-17
+ - -2.132471619161705e-16
+ - -2.299768898050555e-16
+ - -7.620401393144766e-17
+ - -1.1311694876662652e-17
+ - -9.429858983104514e-18
+ - 4.3393894934531827e-16
+ - 1.0918784085699964e-16
+ - 7.520105743872713e-17
+ - 4.33256525339962e-16
+ - -4.3923290526565763e-17
+ - -2.0878038660838416e-16
+ - 6.083913405327519e-17
+ - -1.1071812499022274e-16
+ - -1.37146545561292e-16
+ - 3.0522964603206716e-16
+ - 7.146840492458159e-17
+ - -1.8512302108936757e-16
+ - 1.3441684953986698e-18
+ - 1.3114948612028254e-16
+ - -3.937379715752411e-17
+ - -1.3565762045869652e-17
+ - -6.550236475654288e-17
+ - -6.137680145143465e-17
+ - -3.072975975634498e-17
+ - 6.5843576759221e-17
+ - -6.635022488440973e-17
+ - 3.4538926477151666e-16
+ - 8.337980574534518e-17
+ - 2.2151896804170079e-16
+ - -1.5054687148465104e-16
+ - -3.156521217502353e-16
+ - -2.1467404847282448e-16
+ - -1.3243161606973973e-16
+ - 7.190267474617193e-17
+ - 1.1166938269465874e-16
+ - -5.3270431448414976e-17
+ - -1.1768712165098201e-16
+ - 1.74457561066262e-17
+ - -5.455256139787217e-17
+ - -1.4910964517034015e-16
+ - -3.835636500408389e-16
+ - -1.6514660929621195e-16
+ - 1.4074478122589766e-16
+ - 1.9331210915364254e-16
+ - 4.863822001811802e-17
+ - -1.9686898578762056e-17
+ - 1.7122638679847673e-17
+ - 7.372247209378859e-18
+ - -2.903403950061127e-17
+ - -5.897797767503087e-17
+ - -1.0653052313917304e-16
+ - -8.84669665125463e-17
+ - -1.741215189424123e-16
+ - -2.950966835282926e-17
+ - 2.441423577950261e-16
+ - -2.277228226358485e-16
+ - -9.132073962585424e-17
+ - 8.649000484854456e-16
+ - 2.872798267396665e-16
+ - -1.2259850653801561e-16
+ - -9.245811296811466e-17
+ - -8.850832554317395e-17
+ - -1.7023377006341307e-16
+ - -5.724089838866952e-17
+ - -6.749793798432706e-17
+ - -1.1803867341131705e-16
+ - 1.1568120866554092e-16
+ - -1.6177584830005836e-16
+ - -7.552158992609141e-17
+ - -1.9008610476468574e-16
+ - -1.331812484998659e-16
+ - 4.119359450514077e-17
+ - 5.790264287871194e-19
+ - 4.7521526191171434e-17
+ - 1.4623002266288992e-17
+ - 8.342116477597283e-17
+ - -5.699274420490361e-17
+ - 1.8098711802660243e-16
+ - 1.4508747944180105e-16
+ - -9.05749846048494e-17
+ - 5.748905257243542e-17
+ - 4.317882797526804e-17
+ - -1.0422475718168147e-16
+ - -1.1845226371759356e-16
+ - 1.2597960729182611e-16
+ - 9.347140921849213e-18
+ - 5.219509665209604e-17
+ - 4.090408129074721e-17
+ - 5.502819025009016e-17
+ - -7.82512859475164e-17
+ - 1.1218637057750438e-16
+ - 5.740633451118012e-17
+ - 7.923356292492313e-17
+ - 9.388499952476863e-17
+ - -8.180816258149442e-17
+ - -1.2504902910270396e-16
+ - -3.838118042246048e-17
+ - -6.574017918265187e-17
+ - -1.8247604312919788e-16
+ - -4.082136322949191e-17
+ - -1.0761619769314889e-16
+ - 1.703992061859237e-17
+ - -5.252596889711725e-17
+ - -3.281839080304137e-16
+ - -7.80858498250058e-17
+ - 1.1894857208512538e-16
+ - -1.0587911840678753e-16
+ - 1.9988819502343911e-16
+ - 3.927039958095498e-17
+ - -1.890107699683668e-16
+ - -2.4434915294816438e-16
+ - -2.580803511165446e-17
+ - 8.065010972392019e-17
+ - 1.560889815887563e-16
+ - -1.3888362484765335e-16
+ - -2.4153673886548405e-17
+ - 1.9438744394996148e-16
+ - 4.2475724454597966e-16
+ - 8.826017135940804e-17
+ - 1.7205356741102976e-17
+ - 8.366931895973874e-17
+ - 7.754818242684634e-18
+ - -3.8298462361205175e-17
+ - -9.636654136242771e-18
+ - -1.7006833394090247e-16
+ - 2.9116757561866574e-17
+ - -2.6552497662952185e-17
+ - -1.1051132983708449e-16
+ - 7.231626505244844e-17
+ - -9.117598301865746e-17
+ - -2.9166388398619756e-16
+ - -5.922613185879678e-17
+ - -2.115514416604368e-16
+ - 1.3110812708965489e-16
+ - -3.1416319664763986e-16
+ - 1.6142429653972333e-16
+ - -7.593518023236793e-17
+ - 1.3665023719376017e-16
+ - -7.568702604860202e-17
+ - 1.761894704737949e-17
+ - -4.6177357695772764e-17
+ - -1.1878313596261477e-16
+ - -4.5784446904810076e-17
+ - -1.588186776101813e-17
+ - -6.550443270807425e-16
+ - -2.7925617479790214e-16
+- - 2.5844859892960637
+ - 1.9859494309208825
+ - -1.913691705586095
+ - 2.773872360648417
+ - -2.8103120592876176
+ - 1.7891956152897697
+ - -0.2936584942078293
+ - -1.3738526527760184
+ - 1.6771182459209752
+ - 2.856176122697869
+ - -3.1888998663568975
+ - -1.8156847362445563
+ - 1.6910034334172004
+ - -0.16604865520698295
+ - -1.5504546857829633
+ - 1.6796043469019404
+ - 2.6597207848250446
+ - -2.667716086658451
+ - -1.6830928773551217
+ - 1.5205907061216664
+ - 0.03731131128145637
+ - -1.6557523458299381
+ - 2.700122277948962
+ - -2.8677372322761943
+ - 2.0318424236087345
+ - -0.4622292194516724
+ - -1.3372504960572884
+ - -2.5691999549740983
+ - -1.2398189660138348
+ - 2.743183130770691
+ - -2.817073243531225
+ - 1.882849348544376
+ - -0.34674492819015146
+ - -1.2138869650058501
+ - -2.944909049220434
+ - -1.3543332304276652
+ - 2.800083266323026
+ - -2.7798786975125664
+ - 1.7857946244109963
+ - -0.19329550544220211
+ - -1.4599966342608097
+ - 2.5678083477559506
+ - -5.181397321930038
+ - -5.108143928103264
+ - -1.4690383533397566
+ - -1.3090532285180378
+ - 2.081511753368112
+ - 2.2282088895350984
+ - -0.2516662404149568
+ - -1.4109927604369443
+ - 2.5402715863027616
+ - -2.913903524757218
+ - 2.226512774969642
+ - -0.8918014331785483
+ - -0.42544267383707535
+ - -0.24016026922706185
+ - 3.5411865339082564
+ - 1.7756717964601307
+ - -2.8964993585118526
+ - 2.1445152474993017
+ - -0.6939537715830655
+ - -0.5633807903974597
+ - -0.4512031115869808
+ - 3.3012368004429757
+ - 1.805151181335341
+ - -2.8585470349440003
+ - 2.001590922145497
+ - -0.5730621337649547
+ - -1.2040792501312718
+ - 2.422458626215227
+ - -2.932615722764483
+ - 1.6282855921494657
+ - 3.10847209157861
+ - 0.3062894257999999
+ - -0.14046965796069869
+ - -1.3159457216040444
+ - 2.5285988731123576
+ - -0.6967925811564363
+ - -0.5495068076280771
+ - -0.49329174926487945
+ - 3.7707275753736473
+ - 1.9142293119312832
+ - -2.8588846804378716
+ - 2.0035700239856693
+ - -0.575949306781698
+ - -1.201210736622442
+ - 2.420513591147411
+ - -2.9322725421360336
+ - 4.12413361405028
+ - 5.091309347366173
+ - 4.738219517618433
+ - 3.805828486110548
+ - -2.855046179397632
+ - 2.7183267191068374
+ - -1.7771949244523204
+ - 0.09072386971253577
+ - 1.472587787521413
+ - -2.6358057766558183
+ - 1.9933476825276555
+ - 3.7921892440756917
+ - -1.3415924572064581
+ - -0.9729160297879852
+ - -0.032879007866795484
+ - 1.581155201432439
+ - -2.7182827597465313
+ - 1.8735564657477006
+ - 3.3346620503849844
+ - -0.9684279852251512
+ - -0.8425777757822925
+ - -0.23788958175574962
+ - 1.7467635638037087
+ - -2.7632635931886607
+ - 2.788000844258737
+ - -1.9555371586513401
+ - 0.41366823365129957
+ - 0.7133397432869618
+ - 0.7271627859827573
+ - -3.3292234628428257
+ - -1.8470595463626158
+ - 2.7536511951925906
+ - -1.7974233905240908
+ - 0.21162323049931808
+ - 0.8283675884346833
+ - 1.0388590764178525
+ - -3.6233381734582117
+ - -1.8854944541999343
+ - 2.6835634168504794
+ - -1.695952612068176
+ - 0.0864013479094886
+ - 1.5580382701048399
+ - -2.6774385251845803
+ - 2.856182265184453
+ - -4.530340257393997
+ - -4.546381998090883
+ - -2.627402850832163
+ - -2.5490360180090903
+ - -1.1092951840998981
+ - -0.9892522872801885
+ - 1.5083859352043627
+ - -2.6542416936892423
+ - 2.8654558192229733
+ - -2.16109864895908
+ - 0.698069481656184
+ - 0.9182453623174832
+ - -1.441448338490748
+ - -2.3301706985762274
+ - 3.3129705852658176
+ - 1.843438115228544
+ - -2.073951769283756
+ - 0.5751611810634688
+ - 1.1101668788793841
+ - -1.5237393345071981
+ - -2.3166369902305375
+ - 2.945478679449955
+ - 1.7977235028100975
+ - -1.924992254081104
+ - 0.3729178132048153
+ - 1.2229285754717514
+ - -2.5475133448601333
+ - 2.8875694390722537
+ - -2.3675406546997784
+ - 0.7409248165580521
+ - 1.7938018662611772
+ - 2.209485473334086
+ - 1.003321451985555
+ - -2.606380259080488
+ - 2.8699598039060055
+ - -2.2400312565018545
+ - 0.6913599251616537
+ - 1.833810274777057
+ - 2.7291295300245264
+ - 1.2086631608119511
+ - -2.694668007379149
+ - 2.85019652045454
+ - -2.1581625503331265
+ - 0.6000935031938296
+ - 1.0105795599352694
+ - -2.3709426554343325
+ - 3.870424447432352
+ - 4.674767533035329
+ - -8.544775727672775e-17
+ - -2.6188538193428856e-16
+ - -5.4614599943813646e-17
+ - 3.922904055032733e-17
+ - -5.3559944662808536e-17
+ - -5.550381910230815e-17
+ - 1.2358078351542233e-16
+ - 1.5579946837436274e-16
+ - -1.435158362779503e-16
+ - 6.088049308390284e-17
+ - 8.193223967337738e-17
+ - -3.1664473848529894e-16
+ - 1.7614811144316722e-16
+ - -7.473576834416605e-17
+ - -1.254832989242943e-16
+ - 2.6304343479186277e-17
+ - 1.19941188820189e-18
+ - 5.1161120886404756e-17
+ - 2.1448793283500005e-16
+ - -1.3028094647710186e-16
+ - 6.489231905478502e-17
+ - 8.519960309296184e-17
+ - 1.284611491294852e-16
+ - 3.316994256337641e-17
+ - -2.0183206946293873e-16
+ - -2.6502866826199007e-16
+ - -3.987010552505593e-17
+ - -1.5519976243026182e-17
+ - 4.373717488874133e-17
+ - 6.981404369947554e-17
+ - 2.774363774502855e-16
+ - -5.676526953645152e-17
+ - -1.4541835168682227e-16
+ - 1.878940761414202e-16
+ - 2.036518668105554e-16
+ - -3.148249411376823e-16
+ - 6.526455033043388e-17
+ - 3.072975975634498e-17
+ - -7.636945005395827e-17
+ - -1.9877150119649253e-16
+ - 1.703992061859237e-17
+ - 1.0339757656912845e-16
+ - -2.1836534195634237e-16
+ - 1.0478310409515477e-16
+ - 1.0306670432410724e-16
+ - -2.2244954623082297e-16
+ - 1.2107339228362097e-16
+ - -1.2312583417851817e-16
+ - -2.2879815743216745e-16
+ - -3.850525751434343e-17
+ - 2.8777613510719833e-16
+ - 7.996768571856394e-17
+ - -1.4820233143594605e-16
+ - -1.829723514967297e-16
+ - -2.478233115208871e-16
+ - 9.59529510561512e-18
+ - -7.858215819253763e-18
+ - 4.326154603652334e-17
+ - -9.92616735063633e-18
+ - 9.620110523991711e-17
+ - -2.4214678456724194e-16
+ - -2.779326858178173e-17
+ - -1.3052910066086777e-16
+ - 6.402377941160434e-17
+ - 1.4277137372665258e-16
+ - 1.8785271711079256e-16
+ - -1.4144788474656773e-16
+ - -1.708127964922002e-17
+ - -3.062222627671308e-16
+ - -2.6180266387303323e-17
+ - 1.2052021524897613e-16
+ - -5.666187195988239e-18
+ - 4.623939624171424e-17
+ - 1.2054089476428996e-16
+ - 1.8878329529991472e-16
+ - 5.670323099051005e-17
+ - -1.87563203896399e-16
+ - -2.361600648838894e-16
+ - -1.5716431638507524e-18
+ - -4.4254162771586974e-17
+ - 5.2691405019627857e-17
+ - 7.072394237328387e-17
+ - -2.2995621028974166e-17
+ - 1.2399437382169885e-16
+ - 3.608575422262583e-18
+ - 2.620094590261715e-17
+ - 9.520848850485347e-17
+ - 1.2821299494571927e-17
+ - -2.810759721455188e-16
+ - 8.536503921547244e-17
+ - 9.326461406535386e-17
+ - -7.158421021033901e-16
+ - -2.1994732487785003e-16
+ - 8.147729033647323e-18
+ - -7.039307012826266e-17
+ - 2.5725317050399158e-17
+ - 1.8975523251966452e-16
+ - -3.647866501358852e-17
+ - 1.888453338458562e-16
+ - 6.815968247436948e-17
+ - -3.1805094552663914e-17
+ - 3.6429034176835334e-16
+ - 1.7544500792249715e-16
+ - 9.727644003623604e-17
+ - 3.5444689247897236e-17
+ - -1.108422020821057e-16
+ - -4.5494933690416516e-17
+ - 4.927928499284662e-17
+ - 7.202675183805488e-17
+ - 7.444625512977248e-19
+ - 1.5571675031310744e-16
+ - -1.4219234729786546e-16
+ - -1.1398548840980721e-16
+ - 1.134891800422754e-16
+ - -1.2064429234085909e-16
+ - -1.3524403015242002e-16
+ - -4.928962475050353e-17
+ - 9.938575059824626e-17
+ - -1.3141831981936226e-17
+ - 1.0951871310202085e-16
+ - 3.2932128137267414e-17
+ - -5.1233499190003145e-17
+ - -1.198016020918207e-16
+ - 8.437242248040881e-17
+ - -2.4658254060205755e-16
+ - -2.328513424336773e-16
+ - -1.6901367865989736e-16
+ - -5.5441780556366674e-17
+ - 5.24846098664896e-17
+ - 1.113178309343237e-16
+ - -5.6248281653605874e-18
+ - -7.77549775799846e-18
+ - 6.281402776574554e-17
+ - 8.573727049112131e-17
+ - -8.462057666417472e-17
+ - -8.127049518333496e-17
+ - 1.0747144108595211e-16
+ - 4.661162751736311e-16
+ - 1.437639904617162e-16
+ - -8.664716916492964e-17
+ - 2.2813641294212503e-16
+ - -1.0765755672377654e-16
+ - -4.3426982159033947e-17
+ - -3.738856368739685e-17
+ - 4.102815838263017e-16
+ - 3.2526292649233585e-17
+ - -3.308722450212111e-17
+ - -3.6065074707312007e-17
+ - 1.2473883637299657e-16
+ - 7.915084486366784e-18
+ - -2.3152785345359245e-16
+ - -2.4707884896958937e-16
+ - -3.5072457972248373e-17
+ - -9.678013166870423e-17
+ - -3.216905402218724e-16
+ - 1.4961629329552888e-17
+ - -6.5843576759221e-17
+ - -1.3052910066086777e-16
+ - 7.626605247738914e-17
+ - -3.490702184973777e-17
+ - 1.1127647190369605e-16
+ - 1.5588218643561804e-16
+ - -7.181995668491663e-17
+ - 1.6192060490725517e-17
+ - 3.541987382952064e-16
+ - 3.91256429737582e-17
+ - 1.6891028108332823e-16
+ - -2.0480991966812963e-16
+ - 3.059741085833649e-16
+ - -2.0290740425925766e-16
+ - 8.3876114112877e-17
+ - 8.966637840074819e-17
+ - 1.1464723289984964e-16
+ - -2.8289576949313546e-17
+ - 3.763671787116276e-17
+ - 7.241966262901757e-17
+ - -2.216844041642114e-17
+ - 3.490702184973777e-17
+ - -2.5311726744122644e-17
+ - 6.766337410683766e-17
+- - -0.03439467207001075
+ - 0.0691617228712512
+ - 0.3800001294282049
+ - -1.4333732478347048
+ - 1.969666813361846
+ - -1.8969517555874629
+ - 1.145381456901189
+ - -0.07381347287226432
+ - -0.6491929441127033
+ - -0.8751724386951903
+ - 2.6537967851081157
+ - 1.3898297254961487
+ - -1.8618754670110755
+ - 1.0720687691669095
+ - 0.06947337979127605
+ - -0.7213078143872025
+ - -0.9289978721351013
+ - 2.309282122488114
+ - 1.3227047609504297
+ - -1.7984084859695397
+ - 0.9481765486808929
+ - 0.15564141757524844
+ - -1.3135966081194372
+ - 1.9280383418036455
+ - -1.9708510442518996
+ - 0.910911758316262
+ - 1.860527232377198
+ - 0.8347252347935215
+ - 0.26341363200566836
+ - -1.3787742084807273
+ - 1.9662439301667372
+ - -1.926583456103499
+ - 0.8533245243602647
+ - 1.9084794911673786
+ - 1.0685112578628277
+ - 0.36435671424280236
+ - -1.4816946129806892
+ - 1.9839805896449756
+ - -1.8958153656756382
+ - 1.0869690682178488
+ - -0.005287484944938216
+ - -1.1316214679924006
+ - 2.948989030717221
+ - 2.8608463751254893
+ - 0.053398853123692906
+ - -0.07443105936810944
+ - -2.88376712105059
+ - -2.971357013268338
+ - 1.1211739935777985
+ - -0.044444272229702
+ - -1.097183977558034
+ - 1.8592933599910961
+ - -2.016179192873041
+ - 1.4681652909185392
+ - -0.3778365853768034
+ - -1.0926133204512753
+ - -1.8908786474136705
+ - -0.8425114770363
+ - 1.8921647567982343
+ - -1.9981162810458781
+ - 1.367538719451929
+ - -0.27706727250828206
+ - -0.8575770594222065
+ - -1.8456740639354878
+ - -0.900751213840828
+ - 1.936621194473603
+ - -1.962607492679774
+ - 1.3017149554320182
+ - -0.20524881372713225
+ - -0.9575821948983555
+ - 1.7597493389297143
+ - -1.3231237071034025
+ - -2.3059559866572816
+ - 0.9514186985068118
+ - 0.7329520843931809
+ - -0.11790164970763126
+ - -1.0809857026409735
+ - 1.8257996643375078
+ - -0.3230489627678117
+ - -0.9932964763039428
+ - -2.1155360733732573
+ - -0.9714847814168566
+ - 1.9377663963834837
+ - -1.9645407022344787
+ - 1.303772938608845
+ - -0.20675147519402937
+ - -0.9571047238487607
+ - 1.7604813564394917
+ - -2.827143146766881
+ - -3.4302331390066785
+ - -2.1685061598284867
+ - -1.6896658403663392
+ - 1.4844777203789725
+ - -2.021424642190143
+ - 1.8517760589763728
+ - -1.0788191604942108
+ - -0.06694968302997781
+ - 1.1405151677299958
+ - -1.254241301723399
+ - -2.192212513276695
+ - 2.0383909041233137
+ - 1.1901929758411582
+ - -1.0031446987313575
+ - -0.15501267498881585
+ - 1.2558223116868827
+ - -1.2387304161968227
+ - -2.0136007561200726
+ - 1.6834648269241166
+ - 1.0948861002621089
+ - -0.8766229700609275
+ - -0.29759124801729
+ - 1.3219608782172492
+ - -1.9884816461936514
+ - 1.9102414358521649
+ - -1.2651733558980924
+ - 0.16702556105739863
+ - 0.6723207018881251
+ - 1.9603337836784929
+ - 0.9800317347859934
+ - -2.0073072671843994
+ - 1.8597765271777853
+ - -1.1489570036938561
+ - 0.08380802669490078
+ - 0.5567170080069178
+ - 2.219721050065225
+ - 1.051849024629288
+ - -2.0316369043223013
+ - 1.822593582512942
+ - -1.076256621633494
+ - -0.13716606664509676
+ - 1.1962929266073403
+ - -1.9214953539185105
+ - 3.6449177249490172
+ - 3.604717724945514
+ - 1.2293181340788244
+ - 1.127051184884509
+ - -1.050183907934837
+ - -1.1531870247625806
+ - -0.09500251588920118
+ - 1.162900227850376
+ - -1.9050272892500346
+ - 1.9649599467046626
+ - -1.418077776658923
+ - 0.3590618602943213
+ - 0.4495721750213911
+ - 0.4672050462553322
+ - -2.5195867689859313
+ - -1.2890642812414574
+ - 1.9438816353104993
+ - -1.3519712470893395
+ - 0.21859326119973832
+ - 0.5411390106206908
+ - 0.5876812087966599
+ - -2.328745400418603
+ - -1.2997258039508544
+ - 1.899643192275603
+ - -1.2418993454607443
+ - 0.13135382546634441
+ - 1.027942199305362
+ - -1.839878367274533
+ - 2.004880619316162
+ - -1.0484202922393093
+ - -2.0548786232657608
+ - -0.4885956614515505
+ - -0.059784255294113
+ - 1.102359560933992
+ - -1.8976773931424855
+ - 1.9833775520045918
+ - -1.0625114780111529
+ - -2.2593101016201644
+ - -0.7509035160624429
+ - -0.19096131343676054
+ - 1.2181787204600372
+ - -1.929853999921305
+ - 1.9642670840206193
+ - -1.366326521791697
+ - 0.2914358208000057
+ - 0.8272745334371784
+ - -1.7741728635404113
+ - -2.079035584359897
+ - 5.509022879603164e-17
+ - 3.477467295172928e-16
+ - -6.518183226917858e-17
+ - -5.814304224423516e-17
+ - 2.1160314044872136e-17
+ - -1.7205356741102976e-17
+ - 4.2434365423970314e-17
+ - 7.196471329211341e-18
+ - 1.9753073027766298e-16
+ - -8.02210097811583e-17
+ - -5.9557004103817985e-18
+ - 9.926167350636332e-19
+ - -1.8851446160083498e-16
+ - -6.069954732490686e-17
+ - 1.6212740006039342e-17
+ - 2.9116757561866574e-17
+ - 6.013603053260511e-17
+ - 4.594988302732068e-17
+ - 1.7784383169890095e-18
+ - 1.7701665108634792e-17
+ - -6.203854594147707e-18
+ - 6.964860757696493e-17
+ - -8.893225560710738e-17
+ - -4.7955796012761773e-17
+ - -6.121136532892404e-18
+ - 1.7006833394090247e-16
+ - 3.29217883796105e-17
+ - 3.288042934898285e-17
+ - -1.16146497760102e-16
+ - -2.1936829844906291e-16
+ - -1.3648480107124957e-16
+ - 8.263534319404745e-17
+ - -3.208633596093194e-16
+ - -1.7015105200215777e-16
+ - -1.8801815323330317e-16
+ - 3.219386944056383e-16
+ - -2.903403950061127e-17
+ - -1.7450925985454656e-17
+ - 1.4184079553753042e-16
+ - -7.302970833077543e-17
+ - 1.4260593760414197e-16
+ - -2.3533288427133637e-16
+ - 1.4591466005435408e-16
+ - -7.122025074081568e-17
+ - -1.0575504131490458e-16
+ - 2.6784108234467036e-16
+ - -8.256813476927752e-17
+ - 3.774270038714611e-16
+ - 1.4434301689050333e-16
+ - 5.484207461226573e-17
+ - -2.1357803416119172e-16
+ - -1.4517019750305636e-16
+ - 8.707109922886306e-17
+ - 2.0898718176152242e-16
+ - 1.5857052342641538e-16
+ - -7.113753267956038e-18
+ - 2.322309569742625e-17
+ - 2.7234921668308433e-17
+ - 5.099568476389415e-17
+ - 5.126968834180234e-17
+ - 2.009221707891304e-16
+ - 6.733250186181645e-17
+ - 5.897797767503087e-17
+ - -2.489813643784613e-17
+ - -1.2510331283040275e-16
+ - -9.810362064878907e-17
+ - 1.863637920081971e-16
+ - -3.1887812613919217e-17
+ - 2.607273290767143e-16
+ - -2.274746684520826e-18
+ - 8.33177671994037e-17
+ - 8.255262513279215e-17
+ - 4.212417269426293e-17
+ - -1.828896334354744e-16
+ - -5.699274420490361e-17
+ - -1.4508747944180105e-16
+ - 1.0246699838000629e-16
+ - 2.2507584467567883e-16
+ - 3.027481041944081e-17
+ - 1.0852609636695722e-16
+ - -2.903403950061127e-17
+ - 3.8587975575598735e-17
+ - -1.3565762045869652e-17
+ - -1.5823965118139417e-16
+ - 3.3500814808397617e-18
+ - 6.61744490042422e-19
+ - 4.6332454060626456e-17
+ - 1.0447291136544738e-16
+ - 6.058270806338374e-16
+ - -3.0150733327557854e-16
+ - -1.051346558554898e-16
+ - 8.271806125530276e-17
+ - -8.189088064274974e-18
+ - -1.1369597519541365e-16
+ - 2.39882377640378e-17
+ - -5.4759356551010426e-17
+ - -3.9208361035013506e-17
+ - 1.2358078351542233e-16
+ - -1.4285409178790788e-16
+ - -2.87341865285608e-17
+ - 3.9208361035013506e-17
+ - -3.360007648190398e-16
+ - -2.2011276100036064e-16
+ - 1.4703135388130067e-17
+ - 7.630741150801679e-17
+ - 4.2517083485225616e-17
+ - 2.5745996565712983e-17
+ - -2.6552497662952185e-17
+ - 1.0314942238536254e-16
+ - -1.8032537353656003e-17
+ - -1.1524176896512212e-16
+ - 1.0865017345884017e-16
+ - 4.8472783895607416e-17
+ - -1.4176066241568935e-16
+ - 5.616556359235058e-17
+ - 5.426304818347861e-17
+ - 9.16929709015031e-17
+ - -2.1692811564203148e-17
+ - 7.548023089546376e-17
+ - -1.0902240473448904e-16
+ - 6.452008777913615e-18
+ - 4.7893757466820296e-17
+ - 1.9753073027766298e-16
+ - -7.982292911136717e-18
+ - 1.7197084934977443e-16
+ - 2.1175823681357506e-16
+ - 7.221286747587932e-17
+ - 5.4387125275361563e-17
+ - 5.0871607672011196e-17
+ - -1.4475660719677984e-17
+ - 1.0257039595657542e-16
+ - 3.1267427154504446e-17
+ - 2.933182452113036e-16
+ - -2.072087434445334e-16
+ - 1.319146281868941e-16
+ - 8.153415900358623e-17
+ - -1.0265311401783072e-16
+ - -7.593518023236793e-17
+ - -4.946540063067105e-17
+ - 6.044557702745894e-17
+ - -8.519960309296184e-17
+ - 9.429858983104514e-17
+ - -6.90695811481778e-18
+ - 1.2804755882320868e-16
+ - -2.744585272450946e-16
+ - -4.898977177845306e-17
+ - -5.4314746971763174e-17
+ - -1.852884572118782e-17
+ - -5.10370437945218e-17
+ - 4.628075527234189e-17
+ - 2.5005669917478027e-16
+ - 2.4997398111352496e-16
+ - 3.5734202462290796e-17
+ - 8.073282778517549e-17
+ - 3.297141921636368e-16
+ - -5.227781471335134e-17
+ - 7.709323308994217e-17
+ - -2.5787355596340635e-17
+ - 3.279771128772755e-17
+ - 9.094850835020538e-17
+ - -6.989676176073084e-17
+ - -1.7205356741102973e-16
+ - 8.687464383338172e-17
+ - 8.97490964620035e-18
+ - -2.9745414827406875e-16
+ - -3.383168705341883e-17
+ - -1.5699888026256463e-16
+ - 4.690631061058512e-17
+ - -2.431497410599625e-16
+ - 1.0815451132616191e-16
+ - 7.529411525763934e-17
+ - -1.7002697491027481e-16
+ - -2.105174658947455e-17
+ - 2.3946878733410148e-17
+ - -5.281548211151081e-17
+ - -1.7776111363764562e-16
+ - -2.0017770823783267e-17
+ - -1.1458519435390816e-16
+ - 8.077418681580314e-17
+ - 2.2993553077442787e-16
+- - -5.005169616428646
+ - -4.284024253616497
+ - 1.976165116132671
+ - 0.9211790101627693
+ - -3.5165872575422834
+ - 5.012349407548896
+ - -4.767028698217776
+ - 2.9771680847395463
+ - -0.3755797591355469
+ - -1.695400771486422
+ - -5.789637041711938
+ - -2.7412229362704923
+ - 5.052409454479181
+ - -4.681381122355677
+ - 2.678032846089158
+ - -0.0501022785803864
+ - -1.0563147772757775
+ - -5.252164172820834
+ - -2.6985253398332856
+ - 5.097373969942736
+ - -4.524577805324631
+ - 2.4889039506997945
+ - 0.5198399335899816
+ - -3.2113186902023947
+ - 4.86625624185514
+ - -3.250437243083149
+ - -5.853616982207908
+ - 1.3073724050983826
+ - 1.2696360538072844
+ - 0.7371277757437962
+ - -3.4829271884466153
+ - 4.965671894975274
+ - -3.217248909304552
+ - -6.319712475702804
+ - 0.9866259451301691
+ - 1.0358540442827484
+ - 1.0904269139496603
+ - -3.643115622011351
+ - 5.013878796575427
+ - -4.699685709646781
+ - 2.83509299728902
+ - -0.04962630969004944
+ - -3.1624189359154222
+ - -2.9049257785140696
+ - 2.6897427746838587
+ - 2.9558762292478367
+ - 9.055031295096569
+ - 9.163419439879208
+ - -4.739792653586279
+ - 2.916612126966624
+ - -0.1524250167511
+ - -2.804016214178424
+ - 4.68495884073258
+ - -5.050983678658683
+ - 2.581051003442131
+ - 5.485949263175743
+ - 1.5903076901382562
+ - 0.3133647413812163
+ - -2.9847169112028844
+ - 4.770616903767298
+ - -4.9805139110934205
+ - 2.394881759180161
+ - 4.830638674791077
+ - 1.8624550484847449
+ - 0.5213207795742434
+ - -3.2688467112173694
+ - 4.88875328379657
+ - -4.92506910045499
+ - 3.240255759424579
+ - -0.5569125211360425
+ - -2.310478843104238
+ - 2.8099099646925447
+ - 4.3564637578034615
+ - -4.97122373098604
+ - -3.07777245078017
+ - 3.068135612282964
+ - -0.19886446023819956
+ - -2.625089378192571
+ - 3.048225411648684
+ - 5.53646741795461
+ - 2.1609884784695237
+ - 0.6274956640281223
+ - -3.273315910010099
+ - 4.893631584472472
+ - -4.928655827342827
+ - 3.241326200472289
+ - -0.5552362087988173
+ - -2.3144138112364554
+ - 4.715594641167756
+ - 5.546938833572117
+ - 0.4711197977928
+ - 0.13958592390556682
+ - -1.2040755572298922
+ - 3.7264788101011246
+ - -5.040010423376925
+ - 4.656440275640682
+ - -2.740351245152111
+ - -0.0660216450422089
+ - 1.7650175400257828
+ - 2.4694712335411735
+ - -6.6598678702454155
+ - -3.509920676695438
+ - 4.561244313537385
+ - -2.549080455742238
+ - -0.42496679013917243
+ - 1.9332547192877982
+ - 2.565046810588928
+ - -5.779053721268877
+ - -3.333602647262578
+ - 4.386408736094386
+ - -2.2312424744146413
+ - -0.6428019010152984
+ - 3.436557184958559
+ - -4.95185289195639
+ - 4.865197313808871
+ - -2.1902384567795474
+ - -4.533083521180131
+ - -2.331927946215979
+ - -0.8008653840999336
+ - 3.5960997456201196
+ - -5.0317970675104835
+ - 4.740916538503322
+ - -2.0387056576290528
+ - -4.626008782098746
+ - -2.932975099119773
+ - -1.0531648592359397
+ - 3.8429640177217697
+ - -5.068755344790587
+ - 4.653277926961496
+ - -2.5891534966139025
+ - -0.2386113760884479
+ - 2.992938991991314
+ - -7.648713421038668
+ - -7.432452724126425
+ - -0.3465435277164862
+ - -0.024766098011371154
+ - 7.0278308867903005
+ - 7.253952475272907
+ - -2.682137126688013
+ - -0.13192355805529396
+ - 2.8994989575685097
+ - -4.791839432286623
+ - 4.997551188902125
+ - -3.584806354608718
+ - 0.8194205098034391
+ - 2.51385625422643
+ - 4.926841814381077
+ - 2.2240632843544774
+ - -4.8646565901588
+ - 4.944793690654021
+ - -3.31993684453579
+ - 0.5642583771333608
+ - 1.934827525102573
+ - 4.7864362022175735
+ - 2.3642146370172115
+ - -4.96414636141203
+ - 4.839804972587148
+ - -3.150109729701209
+ - 0.2733940396891664
+ - 2.556632164192721
+ - -4.562341075294017
+ - 3.323736258335134
+ - 5.8320688829118055
+ - -2.174870852079653
+ - -1.7302652061808546
+ - 0.05466103827703717
+ - 2.8612922201236857
+ - -4.713885517970747
+ - 3.4873146983248327
+ - 6.6888280739863015
+ - -2.0110260549775685
+ - -1.5394144588076986
+ - -0.3042923383026491
+ - 3.043568334810642
+ - -4.794495435743338
+ - 4.956286670194853
+ - -3.459566628696179
+ - 0.8401566134043584
+ - 0.39778589462301694
+ - 0.18795920263165944
+ - 2.026592500754918e-15
+ - 1.9442053117446362e-15
+ - 6.23197873497451e-16
+ - 3.6089890125688593e-16
+ - -2.1630773018261671e-16
+ - -2.1374347028370233e-16
+ - -2.341334723831345e-16
+ - -2.265647697782743e-16
+ - -1.1748859830396929e-15
+ - 1.5145677015845934e-16
+ - 2.329340604949326e-16
+ - 7.25106524963984e-16
+ - 2.8471556684075213e-16
+ - 1.8210381185354902e-16
+ - -1.0240495983406481e-16
+ - -7.037652651601158e-16
+ - -2.773536593890302e-16
+ - -1.1410956550169017e-16
+ - -1.1762508310504054e-16
+ - 3.7322389238392604e-16
+ - 1.833032237417509e-16
+ - -1.4475660719677984e-16
+ - 7.80858498250058e-17
+ - 1.9099600343849407e-16
+ - 1.5782606087511766e-16
+ - -7.795350092699732e-16
+ - -1.2970192004831474e-16
+ - -6.220398206398768e-17
+ - 9.395117397377288e-16
+ - 9.158543742187122e-16
+ - 4.20207751176938e-16
+ - -9.132073962585424e-17
+ - 6.600487697866883e-16
+ - 5.518509607253382e-16
+ - 3.957232050453684e-16
+ - -1.4247358870613347e-15
+ - 1.407861402565253e-16
+ - 1.738733647586464e-16
+ - -4.2070405954446983e-16
+ - 7.275053487403877e-16
+ - -5.98878763488392e-17
+ - 6.308079351329388e-16
+ - 1.1137986948026518e-16
+ - 2.717288312236696e-16
+ - -2.3161057151484772e-17
+ - -8.715174933858699e-16
+ - 7.527343574232552e-17
+ - -8.2784235704307e-16
+ - -1.6849669077705171e-16
+ - -6.253485430900889e-17
+ - 2.455899238669939e-16
+ - 3.2822526706104133e-16
+ - 6.745657895369941e-17
+ - -6.691891155553993e-16
+ - -4.676879183374818e-16
+ - -6.400826977511897e-17
+ - -2.8730050625498034e-16
+ - 2.879829302603366e-16
+ - -1.0945667455607937e-16
+ - -4.1555486023132723e-16
+ - 3.965297061426076e-17
+ - -1.7197084934977443e-16
+ - 1.1073880450553657e-16
+ - -1.528629771997995e-16
+ - -3.9208361035013506e-17
+ - 1.0449359088076121e-16
+ - -9.228026913641577e-16
+ - 7.378451063973007e-17
+ - -5.684385169464406e-16
+ - -6.869734987252895e-17
+ - -3.81412980448201e-16
+ - -3.7355476462894725e-16
+ - -2.0580253640319326e-16
+ - 4.0680742525357896e-16
+ - -5.660396931700368e-16
+ - 1.0836066024444661e-16
+ - -2.0257653201423645e-16
+ - -3.0829021429851337e-16
+ - 1.492233825045662e-16
+ - -2.9133301174117635e-16
+ - 9.243743345280083e-17
+ - -1.980270386451948e-16
+ - 9.926167350636332e-19
+ - 5.119420811090688e-16
+ - -2.0439632936185311e-16
+ - -1.437639904617162e-16
+ - -3.734306875370643e-16
+ - -3.2226956665065953e-16
+ - -1.4839620189201315e-15
+ - 1.6055575689654265e-16
+ - 3.368279454315928e-16
+ - 7.583591855886157e-16
+ - 3.35504456451508e-16
+ - -1.1042861177582918e-17
+ - -3.1714104685283076e-16
+ - 2.3094882702480533e-16
+ - -5.3270431448414976e-17
+ - -2.0216294170795994e-16
+ - 1.2440796412797536e-16
+ - -2.271334564494045e-16
+ - -1.7536228986124187e-17
+ - 7.441316790527036e-16
+ - 6.940045339319901e-16
+ - -1.654361225106055e-16
+ - 1.0257039595657542e-16
+ - 3.508900158449943e-16
+ - -1.623755542441593e-16
+ - 2.5328270356373707e-16
+ - 6.989676176073084e-17
+ - 1.0844337830570192e-16
+ - 3.2983826925551974e-16
+ - -1.862810739469418e-16
+ - -1.0248767789532012e-16
+ - 2.2267702089927505e-16
+ - -2.0811864211834174e-16
+ - 4.8472783895607416e-17
+ - -3.720658395263518e-16
+ - -4.4006008587821066e-17
+ - 3.302105005311686e-16
+ - 1.8437855853806984e-16
+ - -2.1837568171399928e-17
+ - -1.4889251025954498e-16
+ - -2.1539783150880838e-16
+ - -1.5054687148465104e-17
+ - -4.0068628872068656e-16
+ - -5.889525961377557e-16
+ - -1.6973746169588125e-16
+ - -2.0402409808620425e-16
+ - -3.4725042114976097e-16
+ - -2.547716286663325e-16
+ - -3.5601853564282306e-16
+ - -1.465764045443965e-16
+ - -9.330597309598152e-16
+ - 4.860513279361591e-16
+ - -4.719892575227576e-16
+ - -4.863408411505526e-16
+ - 3.002252033261214e-16
+ - -3.7305845626141543e-16
+ - 3.2226956665065953e-16
+ - -1.301568693852189e-16
+ - 1.773475233313691e-16
+ - -1.0554824616176632e-16
+ - 7.366043354784711e-17
+ - -7.037652651601158e-16
+ - 9.76734867302615e-16
+ - 6.683619349428464e-17
+ - 3.258425991559765e-16
+ - 6.369290716658312e-16
+ - -9.562207881112999e-17
+ - -1.344995676011223e-16
+ - -4.963083675318166e-16
+ - -3.6065074707312e-16
+ - 3.5072457972248373e-17
+ - -2.301216464122523e-16
+ - -1.1074294040859935e-15
+ - 1.3499587596865412e-16
+ - -4.354278744479137e-16
+ - -3.477467295172928e-16
+ - -2.8306120561564607e-16
+ - -2.722044600758876e-16
+ - 2.5576424540139616e-16
+ - 4.01348033210729e-16
+ - -2.1925456111483687e-17
+ - -9.785546646502316e-17
+ - 5.507368518378058e-16
+ - -3.159829939952566e-17
+ - 1.743696731261782e-16
+ - -1.4988512699460861e-16
+ - 2.1473608701876596e-16
+ - -8.983181452325879e-17
+ - -3.2326218338572317e-16
+ - 8.564873631618399e-16
+ - 1.4595601908498173e-16
+ - 7.055850625077326e-17
+ - 6.915229920943311e-17
+ - 3.3815143441167766e-16
+ - -4.5164061445395305e-17
+ - 2.7975248316543396e-16
+ - -1.2791520992520018e-15
+ - 3.662755752384806e-16
+- - -3.1716866295741992
+ - -2.7423012892728393
+ - 1.1457677564794586
+ - 0.982623400365348
+ - -2.7902699699818534
+ - 3.71271366359769
+ - -3.354413530283517
+ - 1.9089955747289942
+ - -0.0570651117795331
+ - -0.832716651740249
+ - -4.422503068971386
+ - -2.1312354661126305
+ - 3.7285357479096555
+ - -3.279286645141977
+ - 1.6789430190465644
+ - 0.16998955930971418
+ - -0.41144858462270373
+ - -3.9844827345905234
+ - -2.085314370651312
+ - 3.739182269350138
+ - -3.1451280102248176
+ - 1.534446112409938
+ - 0.6940205116401287
+ - -2.5845975601626656
+ - 3.6405353346334004
+ - -2.320885117484711
+ - -4.241199172305802
+ - 0.5973982143991391
+ - 0.7332781201881686
+ - 0.8505422713325945
+ - -2.7677493222351917
+ - 3.6915109498066516
+ - -2.2836761494992968
+ - -4.550869281067543
+ - 0.3281113013338028
+ - 0.5564388962555714
+ - 1.1037259698863628
+ - -2.874703363582068
+ - 3.7133677741613633
+ - -3.295258829767131
+ - 1.799510300857837
+ - 0.28114592317638215
+ - -2.8352337094429245
+ - -2.6469062340296747
+ - 1.6946683972241825
+ - 1.8995933560014473
+ - 6.562348208194548
+ - 6.655746792637673
+ - -3.3303225545547788
+ - 1.8622815857722381
+ - 0.20617010479508588
+ - -2.306472722558038
+ - 3.537979511220176
+ - -3.6252116156469794
+ - 1.746253192367752
+ - 3.7926267316185442
+ - 1.539909733515686
+ - 0.4349263784979997
+ - -2.4303505526614724
+ - 3.5875439341802586
+ - -3.55208910260527
+ - 1.5997263580226349
+ - 3.3103412828194867
+ - 1.7002380383658793
+ - 0.5834003967581992
+ - -2.6235585668525827
+ - 3.6525221339323855
+ - -3.4986034258410093
+ - 2.1129924959569233
+ - -0.08999332890175231
+ - -1.9649234614438207
+ - 2.1562264555123027
+ - 3.414236893671818
+ - -3.425959383268197
+ - -2.161341819421742
+ - 1.9793252601056246
+ - 0.17228845622034447
+ - -2.1831997669280794
+ - 2.3266871572796974
+ - 4.082971099106417
+ - 1.9654969423542639
+ - 0.6706773244622629
+ - -2.6267162968191053
+ - 3.656158370019277
+ - -3.501454345692926
+ - 2.1140909573550197
+ - -0.08906186207515285
+ - -1.9676267234692217
+ - 3.7883334915657367
+ - 4.485492856950417
+ - 0.9062303337573625
+ - 0.5615181119784256
+ - -1.1846602449971613
+ - 2.9302300262313423
+ - -3.7255745076317934
+ - 3.2575650136907934
+ - -1.7270130716198724
+ - -0.365061355917639
+ - 1.4728115135257365
+ - 2.1830251857375473
+ - -4.803420368361295
+ - -2.5639597943392674
+ - 3.176057913448347
+ - -1.5806246960668275
+ - -0.625299557314833
+ - 1.5754040842107213
+ - 2.193795499268686
+ - -4.144258197367731
+ - -2.4252231809914995
+ - 3.0293550802497844
+ - -1.3388836114610274
+ - -0.7824378381872579
+ - 2.7367426260288514
+ - -3.685906446968869
+ - 3.442398440900207
+ - -1.4388637237312125
+ - -3.0693786909339553
+ - -2.0307221574701204
+ - -0.7832649405285694
+ - 2.843590625485017
+ - -3.722424154594589
+ - 3.3310593176644496
+ - -1.319262582062387
+ - -3.0960941191699303
+ - -2.4853320599321367
+ - -0.963723849166496
+ - 3.0071323677148207
+ - -3.735685137992849
+ - 3.2548391591941033
+ - -1.6112581014155045
+ - -0.49037439325371385
+ - 2.436012315245043
+ - -5.88136296177399
+ - -5.732652080314167
+ - -0.5628310011761231
+ - -0.3293257605802405
+ - 4.760790615298933
+ - 4.9331066950377345
+ - -1.6821190569142208
+ - -0.41321899443663446
+ - 2.372034489539689
+ - -3.599506549166906
+ - 3.569302226854284
+ - -2.3829535512680944
+ - 0.3950280336810344
+ - 1.4670844302270558
+ - 3.8365457805662033
+ - 1.7743278684257848
+ - -3.6397175701062485
+ - 3.517445940364257
+ - -2.175121220934455
+ - 0.207224112664434
+ - 1.0653399456658221
+ - 3.6939023524944568
+ - 1.8663915332362588
+ - -3.6907490660298117
+ - 3.419740739219364
+ - -2.042941088465452
+ - -0.11782794139211203
+ - 2.1358714184779024
+ - -3.4648071881294946
+ - 2.405948004576416
+ - 4.281878468561653
+ - -1.2456415203010218
+ - -1.0830367186151457
+ - -0.27750428131758326
+ - 2.3458623761772217
+ - -3.5549390088563624
+ - 2.513862466786829
+ - 4.883641749143752
+ - -1.0681028750527088
+ - -0.9250257654803634
+ - -0.5382389712316155
+ - 2.4705473821244555
+ - -3.601002376292081
+ - 3.5285988480858426
+ - -2.2844326925432634
+ - 0.29856013692583955
+ - 0.7492780767641775
+ - 0.7012174047654528
+ - 1.428375481756568e-15
+ - 1.285769544152426e-15
+ - 4.385711607756152e-16
+ - 2.7363134663254155e-16
+ - -1.57546887418381e-16
+ - -1.5385559393486312e-16
+ - -1.2722554808948411e-16
+ - -1.4064138364932853e-16
+ - -8.673021034361172e-16
+ - 1.0426611621230913e-16
+ - 1.6717320179696687e-16
+ - 4.609463963451747e-16
+ - 2.0685719168419837e-16
+ - 1.080297879994254e-16
+ - -8.08982639076861e-17
+ - -4.850587112010954e-16
+ - -1.9347754527615315e-16
+ - -6.474756244758824e-17
+ - -6.253485430900889e-17
+ - 2.517937784611416e-16
+ - 1.3962808739895107e-16
+ - -8.743299074685501e-17
+ - 6.832511859688009e-17
+ - 1.5071230760716162e-16
+ - 9.727644003623604e-17
+ - -5.684385169464406e-16
+ - -8.569591146049365e-17
+ - -4.135903062765138e-17
+ - 6.772127674971637e-16
+ - 6.604210010623372e-16
+ - 3.24585672365808e-16
+ - -8.015380135638837e-17
+ - 4.208383148352963e-16
+ - 4.2040420657241935e-16
+ - 3.148249411376823e-16
+ - -1.036291871406433e-15
+ - 1.1795595535006175e-16
+ - 1.3400325923359048e-16
+ - -3.120952451162573e-16
+ - 4.86175405028042e-16
+ - -4.20207751176938e-17
+ - 4.484146100649963e-16
+ - 4.35510592509169e-17
+ - 2.1440521477374475e-16
+ - -6.61744490042422e-19
+ - -6.318005518680024e-16
+ - 6.650532124926343e-17
+ - -5.656261028637603e-16
+ - -1.5919090888583015e-16
+ - -5.227781471335134e-17
+ - 1.9562821486879102e-16
+ - 2.3740083580271894e-16
+ - 4.3633777312172204e-17
+ - -4.849320491697982e-16
+ - -3.5519135503027003e-16
+ - -4.160201493258883e-17
+ - -2.0797388551114496e-16
+ - 2.334303688624644e-16
+ - -8.518926333530493e-17
+ - -2.9524661001431786e-16
+ - 6.400309989629051e-18
+ - -1.3243161606973973e-16
+ - 5.990855586415303e-17
+ - -9.82897362866135e-17
+ - -1.075334796318936e-18
+ - 1.0218782492326964e-16
+ - -6.784948974466209e-16
+ - 3.875341169810934e-17
+ - -4.195460066868956e-16
+ - -5.0499376396362333e-17
+ - -2.605618929542037e-16
+ - -2.8190315275807183e-16
+ - -1.4492204331929045e-16
+ - 3.0440246541951414e-16
+ - -3.843908306533919e-16
+ - 8.503416697045123e-17
+ - -1.6853804980767936e-16
+ - -2.388897609053144e-16
+ - 1.0902240473448904e-16
+ - -2.0867698903181503e-16
+ - 6.751861749964088e-17
+ - -1.3971080546020637e-16
+ - 1.654361225106055e-19
+ - 3.871825652207584e-16
+ - -1.4355719530857795e-16
+ - -9.876536513883149e-17
+ - -2.5197989409896606e-16
+ - -2.2855000324840155e-16
+ - -1.1047824261258238e-15
+ - 1.0514628808285383e-16
+ - 2.385588886602932e-16
+ - 4.652063764998228e-16
+ - 2.0828407824085234e-16
+ - -1.1022181662269092e-17
+ - -2.2896359355467806e-16
+ - 1.8131799027162364e-16
+ - -2.0762233375080992e-17
+ - -1.318525896409526e-16
+ - 9.098986738083303e-17
+ - -1.6289254212700495e-16
+ - -2.431911000905901e-17
+ - 5.6281368878108e-16
+ - 5.151680854980256e-16
+ - -9.462946207606635e-17
+ - 1.080297879994254e-16
+ - 2.6734477397713854e-16
+ - -1.2209185841282688e-16
+ - 1.9083056731598346e-16
+ - 7.436353706851719e-17
+ - 6.944181242382667e-17
+ - 2.505530075423121e-16
+ - -1.4723814903443893e-16
+ - -9.529120656610878e-17
+ - 1.6444350577554188e-16
+ - -1.684139727157964e-16
+ - 3.044024654195142e-17
+ - -2.605618929542037e-16
+ - -1.7784383169890095e-17
+ - 2.474924392758659e-16
+ - 1.2986735617082534e-16
+ - -1.8859717966209028e-17
+ - -1.1448179677733903e-16
+ - -1.651052502655843e-16
+ - 2.3161057151484775e-18
+ - -3.062222627671308e-16
+ - -4.48331892003741e-16
+ - -1.3698110943878138e-16
+ - -1.6214807957570723e-16
+ - -2.483196198884189e-16
+ - -1.7784383169890093e-16
+ - -2.607273290767143e-16
+ - -1.0753347963189359e-16
+ - -6.392451773809797e-16
+ - 3.5254437707010035e-16
+ - -3.376137670135182e-16
+ - -3.712800179444264e-16
+ - 2.2966669707534813e-16
+ - -2.3773170804774015e-16
+ - 2.6403605152692643e-16
+ - -1.0827794218319131e-16
+ - 1.4392942658422682e-16
+ - -9.959254575138452e-17
+ - 4.7604244252426737e-17
+ - -5.088815128426226e-16
+ - 7.636531415089551e-16
+ - 4.714929491552257e-17
+ - 2.329237207372757e-16
+ - 4.736436187478636e-16
+ - -5.69100261436483e-17
+ - -9.496033432108756e-17
+ - -3.8513529320468964e-16
+ - -3.05725954399599e-16
+ - 2.0514079191315083e-17
+ - -1.6973746169588125e-16
+ - -8.344598019434942e-16
+ - 9.686284972995953e-17
+ - -3.2855613930606254e-16
+ - -2.785944303078597e-16
+ - -1.9753073027766298e-16
+ - -2.0611272913290065e-16
+ - 1.952146245625145e-16
+ - 2.9480717031389906e-16
+ - -1.7753363896919356e-17
+ - -6.112864726766875e-17
+ - 4.458503501660819e-16
+ - -1.9356026333740845e-17
+ - 1.4823076576950256e-16
+ - -1.3673295525501547e-16
+ - 1.83055069557985e-16
+ - -7.924390268258004e-17
+ - -2.273919503908273e-16
+ - 6.193101246184517e-16
+ - 1.2614504341433672e-16
+ - 5.98878763488392e-17
+ - 5.285684114213846e-17
+ - 2.478233115208871e-16
+ - -3.2673634195844593e-17
+ - 2.0265925007549176e-16
+ - -9.04604717887991e-16
+ - 3.6726819197354424e-16
+- - 6.306875453795129
+ - 5.083128508367814
+ - -3.70619389757667
+ - 3.3942928033445874
+ - -1.9850145869350666
+ - -0.1897578104523394
+ - 2.1970313487197926
+ - -3.4954733226712773
+ - 2.539395745174074
+ - 4.89556189409073
+ - -1.3114875319297028
+ - -1.0470014634892784
+ - -0.34944846001188795
+ - 2.3272346730809224
+ - -3.5809674775074187
+ - 2.3668519017636402
+ - 4.276298792907649
+ - -0.8760998776558688
+ - -0.8853812181839642
+ - -0.6099085496544491
+ - 2.5269704685423737
+ - -3.62413613851947
+ - 3.50853503756908
+ - -2.230032175904223
+ - 0.2272650548255934
+ - 1.1137826121742826
+ - 1.3025304397276105
+ - -4.285938615026489
+ - -2.413671630602325
+ - 3.449768995402016
+ - -2.013833062816074
+ - -0.03528699954537055
+ - 1.2567085784265526
+ - 1.7264260639576492
+ - -4.635852971120704
+ - -2.4467724849053147
+ - 3.3392239832790773
+ - -1.874155032265886
+ - -0.19530409554745257
+ - 2.300374047326457
+ - -3.5385986841410006
+ - 3.632140957303707
+ - -5.5077035315056335
+ - -5.544873992974713
+ - -3.5008935132867443
+ - -3.4219416462814825
+ - -1.9969082426605265
+ - -1.8511685327818608
+ - 2.2407473549400794
+ - -3.5144212003325768
+ - 3.649375351543027
+ - -2.514621005712029
+ - 0.5965218062342701
+ - 1.5172888746855713
+ - -1.9883604304372233
+ - -3.3010884523849993
+ - 4.073024830449194
+ - 2.30412696929297
+ - -2.3939191679215153
+ - 0.43473653471867263
+ - 1.7535525089548352
+ - -2.0798453620106443
+ - -3.2407226281845136
+ - 3.5916173883900075
+ - 2.2327435743962027
+ - -2.1861648985392965
+ - 0.1729981778915122
+ - 1.893226482192271
+ - -3.4012335765938126
+ - 3.70403427995067
+ - -2.8075823942681075
+ - 0.7488055415403835
+ - 1.9744589730782462
+ - 3.11489560287656
+ - 1.468639282516843
+ - -3.465237868086327
+ - 3.6570330113072425
+ - -2.627113201749567
+ - 0.6705538085242101
+ - 1.9654654786757688
+ - 4.084245678852211
+ - 2.3272906452475723
+ - -2.1842449799664783
+ - 0.1731290597918242
+ - 1.8911176497575148
+ - -3.3977971478090367
+ - 3.700432080437143
+ - -2.8050073457075255
+ - 3.1951427790753963
+ - 4.092908687118682
+ - 6.3457775247583665
+ - 5.226200572816175
+ - -3.2978354323534655
+ - 1.7999708459904844
+ - 0.2779408551509804
+ - -2.3633190543497826
+ - 3.5615312422745466
+ - -3.6078178165841184
+ - 1.8223933502233907
+ - 3.9473250230194
+ - 1.7324561635350426
+ - 0.5426768547403916
+ - -2.4852703309851467
+ - 3.6080975163811018
+ - -3.52985732013454
+ - 1.5645393019681844
+ - 3.258277602465581
+ - 1.7759878728035041
+ - 0.6289036444175441
+ - -2.675072944630077
+ - 3.668170916225388
+ - -3.473476993052616
+ - 2.053746765333888
+ - -0.01811703296948587
+ - -2.026330940089567
+ - 2.1780909598266582
+ - 3.464254705798955
+ - -3.3767376337129815
+ - -2.139963220779297
+ - 1.9183732546295116
+ - 0.24412090946672854
+ - -2.241821950232233
+ - 2.256385652113015
+ - 3.9487115446667165
+ - -3.4614222206132417
+ - -2.057070512640084
+ - 1.6884851340295384
+ - 0.4067063475740661
+ - -2.367627273648681
+ - 3.598772857580209
+ - -3.572435765816449
+ - 2.3887494304157015
+ - -2.1755775452087933
+ - -2.3148791603253813
+ - -3.482815943033641
+ - -3.550260732067711
+ - -5.345691717145327
+ - -5.299108213662599
+ - 3.579613932572517
+ - -3.597822065175454
+ - 2.452050274203825
+ - -0.3910387506222263
+ - -1.7016784023881921
+ - 3.2459160471411908
+ - -2.4510936839279815
+ - -4.60538385246227
+ - 1.9508986335921252
+ - 1.3653236947854643
+ - -0.23151425286060429
+ - -1.845607199738513
+ - 3.3687990125868787
+ - -2.4277521159519218
+ - -4.273420654129385
+ - 1.5149102599153548
+ - 1.2258595751139119
+ - 0.031037014725370418
+ - -2.0693282442529655
+ - 3.4352891792228535
+ - -3.6683562610594844
+ - 2.66831001770355
+ - -0.802727916439996
+ - -0.7651653031619039
+ - -0.6548513128889037
+ - 4.253979392478314
+ - 2.3333152984309384
+ - -3.633331251737335
+ - 2.477781614169633
+ - -0.544391559810532
+ - -0.9226681281680051
+ - -1.0624188043052176
+ - 4.889266240719367
+ - 2.516165128869575
+ - -3.560970367113564
+ - 2.3529233498232704
+ - -0.3855074608491979
+ - -1.8158865449578527
+ - 3.306856421230612
+ - -3.7288695729822057
+ - 5.176553464568273
+ - 6.410486918944068
+ - -1.364186266222453e-15
+ - -2.0563710028068268e-15
+ - -4.341871035290842e-16
+ - -1.3971080546020637e-16
+ - 1.3628317579693977e-16
+ - 7.601789829362323e-17
+ - 3.563080488572166e-16
+ - 3.8199200687698813e-16
+ - 4.805919358933091e-16
+ - -2.2582030722697652e-17
+ - -1.0036802757565298e-16
+ - -8.792929911438683e-16
+ - 9.868264707757619e-17
+ - -1.770993691476032e-16
+ - -4.681842267050136e-17
+ - 3.9506146055532597e-16
+ - 1.5865324148767068e-16
+ - 1.681658185320305e-16
+ - 2.810759721455188e-16
+ - -4.0101716096570777e-16
+ - -1.5468277454741618e-17
+ - 1.771820872088585e-16
+ - 1.2457340025048597e-16
+ - -1.3317607862103744e-17
+ - -3.37282894768497e-16
+ - 1.1030453468394623e-16
+ - 8.511688503170654e-17
+ - 2.580803511165446e-17
+ - -4.288104295474895e-16
+ - -3.5841735941922684e-16
+ - 1.1423364259357312e-16
+ - -1.0484514264109625e-16
+ - -4.977972926344121e-16
+ - -4.297203282212978e-17
+ - 2.1643180727449967e-16
+ - 4.142520507665562e-16
+ - 4.106951741325782e-17
+ - -7.229558553713462e-17
+ - 1.1795595535006175e-16
+ - -6.753102520882917e-16
+ - -3.738856368739685e-17
+ - -1.8295684186024433e-16
+ - -3.8273646942828586e-16
+ - -8.271806125530276e-19
+ - 1.6113478332532977e-16
+ - 1.283784310682299e-16
+ - 1.1051132983708449e-16
+ - 7.262645778215583e-17
+ - -2.68833699079734e-16
+ - -6.931773533194372e-17
+ - 2.326031882499114e-16
+ - -8.751570880811032e-17
+ - -2.4054412213042045e-16
+ - 5.128519797828771e-17
+ - 6.683619349428464e-17
+ - 7.2605778266842e-17
+ - 1.1127647190369605e-16
+ - -7.345363839470886e-17
+ - -1.9025154088719633e-17
+ - 1.8470943078309106e-16
+ - -3.9400680527432086e-16
+ - 1.4227506535912076e-17
+ - -2.574186066265022e-16
+ - 1.5716431638507523e-16
+ - 3.148249411376823e-16
+ - 2.4021324988539924e-16
+ - 3.1681017460780955e-16
+ - -6.402377941160434e-17
+ - -9.926167350636331e-17
+ - 2.674895305843353e-17
+ - 3.0514692797081186e-16
+ - 1.14368059443113e-16
+ - 1.6903435817521118e-16
+ - 4.2475724454597965e-17
+ - 5.435197009932807e-16
+ - 8.288349737781336e-17
+ - -1.4823076576950256e-16
+ - -2.3322357370932615e-16
+ - -2.0827373848319543e-16
+ - 9.23340358762317e-17
+ - -1.5633713577252223e-17
+ - 5.773720675620133e-17
+ - -2.9778502051908992e-18
+ - -5.550381910230815e-17
+ - 1.1994118882018901e-16
+ - 1.120416139703076e-16
+ - 2.8072442038518377e-16
+ - 1.288747394357617e-16
+ - 9.562207881112999e-17
+ - 8.784658105313153e-17
+ - 1.798290651690282e-16
+ - -1.4680801511591133e-15
+ - -4.47504711391188e-16
+ - 7.169587959303367e-17
+ - 8.09809819689414e-17
+ - 1.4889251025954496e-18
+ - 3.4788114636683265e-16
+ - 1.3847003454137683e-16
+ - 1.0521737391674511e-16
+ - 1.976961664001736e-16
+ - -4.3499360462632337e-17
+ - 7.80858498250058e-17
+ - -6.253485430900889e-17
+ - 2.5013941723603557e-16
+ - 5.517294685728694e-17
+ - -2.1126192844604324e-16
+ - 6.782881022934826e-18
+ - -5.930884992005208e-17
+ - 2.9592386414084565e-17
+ - -9.810362064878907e-17
+ - 3.9932144070997405e-17
+ - -1.7867101231145395e-16
+ - -1.5038143536214043e-16
+ - 1.7577588016751838e-17
+ - -3.3521494323711447e-17
+ - -2.5175241943051397e-16
+ - 1.6584971281688202e-16
+ - 1.6990289781839186e-16
+ - -2.4699613090833406e-16
+ - 3.2756352257099896e-17
+ - 5.765448869494603e-17
+ - -4.8141911650586205e-17
+ - -3.176373552203626e-17
+ - 1.227536029028693e-16
+ - -1.0889832764260608e-16
+ - -1.9322939109238724e-16
+ - -1.2771668657818747e-16
+ - -1.261450434143367e-17
+ - 2.7296960214249913e-16
+ - 2.6717933785462794e-16
+ - 1.861156378244312e-16
+ - 4.590852399669303e-17
+ - 5.332006228516816e-16
+ - -7.408436361178054e-17
+ - 1.5418646617988433e-16
+ - 1.3805644423510032e-16
+ - 2.2127081385793487e-17
+ - 7.631568331414232e-16
+ - 6.644328270332195e-17
+ - -7.535615380358081e-17
+ - 2.444318710094197e-16
+ - -1.998054769621838e-16
+ - -9.906521811088196e-17
+ - 2.7098436867237187e-16
+ - -3.3294019655259364e-17
+ - 5.97224402263286e-17
+ - -1.9281580078611073e-16
+ - -4.033953052267977e-16
+ - 2.2840524664120477e-16
+ - 3.9787387463800625e-17
+ - -1.5071230760716162e-16
+ - -4.1371438336839674e-16
+ - -8.346252380660048e-17
+ - -2.3016300544287992e-17
+ - 1.5865324148767068e-16
+ - -2.816549985743059e-17
+ - 6.050826180825397e-17
+ - 3.0543644118520547e-17
+ - 3.2342761950823377e-16
+ - 7.510799961981491e-17
+ - 6.015671004791894e-17
+ - -1.9645539548134404e-17
+ - -7.412572264240819e-17
+ - 7.471508882885222e-17
+ - 9.926167350636331e-17
+ - 5.1202479917032407e-17
+ - 2.0497535579064023e-16
+ - -1.8454399466058045e-16
+ - 3.744646633027556e-16
+ - -2.900922408223468e-16
+ - 1.92071338234813e-16
+ - -3.5221350482507913e-16
+ - 6.203854594147708e-17
+ - -1.1183481881716934e-16
+ - 5.761312966431838e-17
+ - -4.4254162771586974e-17
+ - 2.98612201131643e-17
+ - -9.024540482953531e-17
+ - 8.05177608259117e-16
+ - -4.917588741627749e-17
+- - 8.849954423878131
+ - 7.154663455926924
+ - -5.11610110881222
+ - 4.446389436131532
+ - -2.3395154723479585
+ - -0.6920209151758928
+ - 3.347698520721625
+ - -4.922719084691003
+ - 3.4197513011715217
+ - 6.677807047589709
+ - -1.2421637342313014
+ - -1.156363125687234
+ - -0.9085128593170696
+ - 3.5138521482279654
+ - -5.010547021704661
+ - 3.1611232614520044
+ - 5.795917273684731
+ - -0.7085422287812616
+ - -0.9445450703195354
+ - -1.2598329420188277
+ - 3.766511019225715
+ - -5.051561479857414
+ - 4.633907940255762
+ - -2.6930368093639703
+ - -0.12303227499999984
+ - 1.770125911671456
+ - 2.249826708082883
+ - -5.830759794150678
+ - -3.330361501056956
+ - 4.536502896055189
+ - -2.380899826037351
+ - -0.4819108548237137
+ - 1.9578442064693513
+ - 2.856005317966398
+ - -6.2693618434356635
+ - -3.354036482504268
+ - 4.358128176900479
+ - -2.1805802283125004
+ - -0.6995516465106243
+ - 3.479627652887
+ - -4.967795160398291
+ - 4.848635097179763
+ - -7.068835836957154
+ - -7.140966965509786
+ - -4.904778925177116
+ - -4.8227841702932865
+ - -3.456288700908907
+ - -3.271401257501428
+ - 3.403614501913713
+ - -4.942686670906831
+ - 4.8806219041827035
+ - -3.108267629828698
+ - 0.3853320967344051
+ - 2.4659695817046687
+ - -2.8779542263628133
+ - -4.883158819784987
+ - 5.293043035858854
+ - 3.045636813987198
+ - -2.931459476879089
+ - 0.16205338427864036
+ - 2.7749095565081863
+ - -2.983667329987833
+ - -4.745262287199134
+ - 4.627142285098155
+ - 2.932219358511611
+ - -2.6294916130206145
+ - -0.19737963867816613
+ - 2.956341326169971
+ - -4.820067528901307
+ - 4.988941754071859
+ - -3.5422180573046065
+ - 0.7526366412349894
+ - 2.2518920100835897
+ - 4.589754441551095
+ - 2.2282878342963763
+ - -4.8903570208663645
+ - 4.894903978532295
+ - -3.2739715799495315
+ - 0.6274005343481384
+ - 2.1610948045487937
+ - 5.538170925195931
+ - 3.0490209912705857
+ - -2.6265393862365967
+ - -0.19763171811633998
+ - 2.9538438705004992
+ - -4.815576102520961
+ - 4.983988581056328
+ - -3.5384370376283623
+ - 3.8485001422705616
+ - 4.973070806443404
+ - 8.42227525386466
+ - 6.958102700662944
+ - -4.2929668864307
+ - 2.0743379637094637
+ - 0.8120549982651577
+ - -3.559792454274802
+ - 4.990093656330953
+ - -4.806060802940031
+ - 2.2760116860203072
+ - 5.048397147929684
+ - 2.8938350962062453
+ - 1.0311497202100137
+ - -3.7141057194504623
+ - 5.035448306076451
+ - -4.670647402469417
+ - 1.9173723616508977
+ - 4.121028379339579
+ - 2.8747618869495275
+ - 1.1307126664076206
+ - -3.951939374659417
+ - 5.0877327988381165
+ - -4.576377407350095
+ - 2.43819669375247
+ - 0.40947448490789096
+ - -3.1286221017955507
+ - 3.0967814961201183
+ - 5.0173395051257215
+ - -4.299436133802263
+ - -2.783993868279768
+ - 2.243673943116323
+ - 0.7662291381976163
+ - -3.405143836026893
+ - 3.187936002927773
+ - 5.671613328695765
+ - -4.35974664756859
+ - -2.651343370021466
+ - 1.915448021540948
+ - 0.9863105634676336
+ - -3.5652603043745907
+ - 5.026519237314939
+ - -4.743756044728589
+ - 2.9238464278646146
+ - -2.2318221258824464
+ - -2.4365518864613245
+ - -4.614777812389757
+ - -4.732909242456452
+ - -7.7451387334465425
+ - -7.702802972301779
+ - 5.0091106338395
+ - -4.786958537827987
+ - 3.016454801447862
+ - -0.10191401239975283
+ - -2.707213884906176
+ - 4.6430961295467394
+ - -3.34084656881033
+ - -6.362466385043633
+ - 2.170519882742819
+ - 1.6262067903549902
+ - 0.11722498279825984
+ - -2.8945550389948322
+ - 4.783792618369816
+ - -3.2873705004586466
+ - -5.8690115101640155
+ - 1.6013251667925679
+ - 1.4279262540229316
+ - 0.4761091530717433
+ - -3.183745671946407
+ - 4.857599286159747
+ - -4.916524599079307
+ - 3.3349113749311345
+ - -0.6710923495049356
+ - -1.311584127778734
+ - -1.384112243519576
+ - 5.864102790019796
+ - 3.263528033547574
+ - -4.850654843375816
+ - 3.054121700208201
+ - -0.31327134820447583
+ - -1.5359744033938558
+ - -2.002723303604594
+ - 6.697050270017425
+ - 3.4906860997547824
+ - -4.722713484320237
+ - 2.871634482821088
+ - -0.09430408064956056
+ - -2.8559213472323957
+ - 4.713399387995206
+ - -5.046862928265549
+ - 6.869274641520652
+ - 8.533373644285664
+ - -2.059679725257039e-15
+ - -2.964946187635072e-15
+ - -6.301461906428964e-16
+ - -2.2300789314429626e-16
+ - 2.0047497627046892e-16
+ - 1.3284520637601624e-16
+ - 4.838179402822659e-16
+ - 5.136791603954302e-16
+ - 7.588554939561475e-16
+ - -3.7223127564886245e-17
+ - -1.654619719047478e-16
+ - -1.218271606168099e-15
+ - 1.1572256769616857e-16
+ - -2.496637883838176e-16
+ - -5.227781471335134e-17
+ - 5.712509310291209e-16
+ - 2.2044363324538185e-16
+ - 2.273919503908273e-16
+ - 3.8563160157222145e-16
+ - -5.509022879603164e-16
+ - -3.937379715752411e-17
+ - 2.307833909022947e-16
+ - 1.6361632516298885e-16
+ - -3.345945577776997e-17
+ - -4.596229073650898e-16
+ - 2.120270705126548e-16
+ - 1.2308447514789052e-16
+ - 4.0035541647566533e-17
+ - -6.432156443212342e-16
+ - -5.312153893815544e-16
+ - 1.0405932105917087e-16
+ - -1.3660887816313252e-16
+ - -6.420162324330323e-16
+ - -1.0066788054770346e-16
+ - 2.594038400966295e-16
+ - 6.720015296380796e-16
+ - 3.0977913940110886e-17
+ - -1.1704605667625342e-16
+ - 1.9620724129757814e-16
+ - -9.438544379536322e-16
+ - -8.007108329513307e-17
+ - -2.7474804045948814e-16
+ - -5.493306447964657e-16
+ - -2.5311726744122644e-17
+ - 2.241659460018705e-16
+ - 2.2251158477676444e-16
+ - 1.431022459716738e-16
+ - 1.6460894189805248e-16
+ - -3.508900158449943e-16
+ - -8.950094227823758e-17
+ - 3.058913905221096e-16
+ - -1.2622776147559202e-16
+ - -3.2930060185736027e-16
+ - 1.2093380555525265e-16
+ - 1.3267977025350564e-16
+ - 1.0019225169548546e-16
+ - 1.8069760481220887e-16
+ - -1.2482155443425188e-16
+ - -2.283018490646356e-17
+ - 2.7636104265396655e-16
+ - -5.444089201517752e-16
+ - 3.176373552203626e-17
+ - -3.5568766339780185e-16
+ - 2.2548943498195534e-16
+ - 4.20207751176938e-16
+ - 2.993566636829407e-16
+ - 5.07888896107559e-16
+ - -9.119666253397129e-17
+ - -7.907846656006943e-17
+ - 6.344475298281722e-17
+ - 4.1816047916086927e-16
+ - 1.8367545501739977e-16
+ - 2.3572579506229906e-16
+ - 4.284795573024683e-17
+ - 7.639323149656917e-16
+ - 1.2928832974203823e-16
+ - -1.7920867970961342e-16
+ - -2.821099479112101e-16
+ - -2.90128429974146e-16
+ - 1.5484821066992676e-16
+ - -3.259091613458929e-17
+ - 7.676236084492096e-17
+ - 9.760731228125725e-18
+ - -1.1307558973599888e-16
+ - 1.8098711802660243e-16
+ - 1.6055575689654265e-16
+ - 3.9328302223833696e-16
+ - 1.804080915978153e-16
+ - 2.276401045745932e-16
+ - 1.8148342639413425e-16
+ - 2.240005098793599e-16
+ - -1.9905274260476058e-15
+ - -6.078123141039646e-16
+ - 1.2657931323592706e-16
+ - 1.4756902127946014e-16
+ - -1.3896634290890865e-17
+ - 4.498130622880938e-16
+ - 1.9686898578762056e-16
+ - 1.3995895964397228e-16
+ - 2.926565007212612e-16
+ - -6.501122626783952e-17
+ - 4.466775307786349e-17
+ - -1.341686953561011e-16
+ - 3.4055025818808144e-16
+ - 4.135903062765138e-17
+ - -3.30872245021211e-16
+ - 2.283018490646356e-17
+ - -1.1191753687842464e-16
+ - 1.2986735617082533e-17
+ - -1.378082900513344e-16
+ - 2.7462396336760516e-17
+ - -2.271437962070614e-16
+ - -1.8826630741706907e-16
+ - 1.5054687148465104e-17
+ - -2.4649982254080222e-17
+ - -3.427009277807193e-16
+ - 2.5626055376892797e-16
+ - 2.266474878395296e-16
+ - -3.8612790993975327e-16
+ - 3.110199103199384e-17
+ - 7.394994676224067e-17
+ - -4.4006008587821066e-17
+ - -3.3583532869652924e-17
+ - 1.621274000603934e-16
+ - -1.1088356111273335e-16
+ - -2.1043474783349022e-16
+ - -1.5104317985218283e-16
+ - -1.374153792603717e-17
+ - 3.8480442095966843e-16
+ - 3.816611346319669e-16
+ - 2.716461131624143e-16
+ - 8.238718901028154e-17
+ - 7.507491239531278e-16
+ - -1.1270335846035002e-16
+ - 2.475751573371212e-16
+ - 2.2242886671550914e-16
+ - -1.654361225106055e-19
+ - 9.999269437270706e-16
+ - 4.385608210179583e-17
+ - -9.065899513581182e-17
+ - 3.0010112623423844e-16
+ - -2.699710724219944e-16
+ - -1.3030162599241568e-16
+ - 4.327395374571164e-16
+ - -1.4252321954288667e-16
+ - 7.47771273747937e-17
+ - -2.7975248316543396e-16
+ - -6.034075773421198e-16
+ - 3.161897891483948e-16
+ - 6.28657265540301e-17
+ - -1.66800970521318e-16
+ - -5.473454113263384e-16
+ - -1.1890721305449773e-16
+ - -1.1621887606370037e-17
+ - 2.933182452113036e-16
+ - -5.2029660529585435e-17
+ - 1.1845226371759356e-16
+ - 1.035216536610114e-16
+ - 4.504825615963789e-16
+ - 1.2143011392278446e-16
+ - 6.158359660457291e-17
+ - -2.5146290621612038e-17
+ - -9.991307823874882e-17
+ - 1.0827794218319131e-16
+ - 8.685396431806789e-17
+ - 7.014491594449675e-17
+ - 2.653595405070113e-16
+ - -2.2209799447048793e-16
+ - 4.845624028335636e-16
+ - -3.7355476462894725e-16
+ - 2.7032262418232944e-16
+ - -5.181459357032165e-16
+ - 6.336203492156192e-17
+ - -1.5749518863009644e-16
+ - 7.09927760723636e-17
+ - -7.4859845436049e-17
+ - 4.714929491552257e-17
+ - -1.358644156118348e-16
+ - 1.1941179322815508e-15
+ - -1.5364879878172487e-16
+- - -4.435945955252486
+ - -3.543752482542198
+ - 2.7069449004517714
+ - -2.863424399264937
+ - 2.0155757430046326
+ - -0.49944162090412847
+ - -1.1861144472960603
+ - 2.4117474775980723
+ - -1.9923729675060904
+ - -3.7187928680401257
+ - 1.7817941088995743
+ - 1.1858295798951448
+ - -0.3752850454504174
+ - -1.3005372074685109
+ - 2.518987319381134
+ - -1.8947329907992132
+ - -3.3017986149423346
+ - 1.3644688864459429
+ - 1.0506427876099271
+ - -0.17267524460594566
+ - -1.481628963853713
+ - 2.576519039736821
+ - -2.904646789771088
+ - 2.1739264645502896
+ - -0.8160070516553303
+ - -0.4856289064999942
+ - -0.3097142151505733
+ - 3.2779375837423403
+ - 1.7788993679234177
+ - -2.8838460043858816
+ - 2.0353875947889186
+ - -0.6167051118263097
+ - -0.6045989334985274
+ - -0.591538503106873
+ - 3.5993353290252803
+ - 1.8348966397886424
+ - -2.8404368834357423
+ - 1.9424186933721805
+ - -0.49518171528908567
+ - -1.2775667424235604
+ - 2.464224667578455
+ - -2.9322684834618133
+ - 4.821609407778611
+ - 4.819049928806752
+ - 2.473465409480542
+ - 2.376568375254074
+ - 0.464622359133505
+ - 0.3339277648747264
+ - -1.224628101804269
+ - 2.4345529940705593
+ - -2.933181951681055
+ - 2.3512888547588267
+ - -1.0898104881782866
+ - -0.6043988578147266
+ - 1.2722934191874014
+ - 1.9611833075123166
+ - -3.4715009499884126
+ - -1.8900791040084812
+ - 2.2780150516825817
+ - -0.969711008625962
+ - -0.8020981041198352
+ - 1.3691983613480125
+ - 1.9951476295035586
+ - -3.119087089214997
+ - -1.858912023060394
+ - 2.145962352088007
+ - -0.7752815116880963
+ - -0.9221933942181717
+ - 2.302951231684378
+ - -2.926228708851219
+ - 2.5245019544872753
+ - -0.9549673169795457
+ - -2.1339838848661783
+ - -1.8764124904051767
+ - -0.7923696374135414
+ - 2.376953013719915
+ - -2.9325850944407588
+ - 2.420063579276156
+ - -0.9220986460930302
+ - -2.2399765735523713
+ - -2.372015837472379
+ - -0.9983418480804346
+ - 2.485993319586719
+ - -0.7760214924757295
+ - -0.9200227277428651
+ - 2.3000452814022823
+ - -2.923553363593737
+ - 2.5229492018348383
+ - -3.159645316028868
+ - -3.985335874504666
+ - -5.156201390801076
+ - -4.2152303357926
+ - 2.7790856915519377
+ - -1.9358395527550214
+ - 0.389668531138634
+ - 1.2911088407426496
+ - -2.5370465836948504
+ - 2.884868425933475
+ - -1.685809966398442
+ - -3.481191215338567
+ - -0.5535674553694014
+ - 0.005736777968971974
+ - 1.4019724235055027
+ - -2.5975850828618907
+ - 2.868349871902799
+ - -1.4998671960437373
+ - -2.939766897066404
+ - -0.6993564866893591
+ - -0.08570597025354779
+ - 1.5754883921166436
+ - -2.6867667276818668
+ - 2.8495343616843303
+ - -2.1031539979649936
+ - 0.6163354927852661
+ - 0.9941829409056036
+ - -1.4738571267011342
+ - -2.2121279808878898
+ - 3.005566305757391
+ - 1.8195650184783725
+ - -2.0135611615764537
+ - 0.41670130006187484
+ - 1.1838336657589885
+ - -1.5558052417560426
+ - -2.5895434040098397
+ - 3.149204951924137
+ - 1.7847279787368426
+ - -1.8609080689636717
+ - 0.2898298894059261
+ - 1.2949713535608467
+ - -2.585962075426599
+ - 2.8781309408176967
+ - -2.316519896277496
+ - 2.7102955326644684
+ - 2.7949953888316426
+ - 2.848581007319473
+ - 2.864226720713942
+ - 3.409432285803053
+ - 3.3423554288052584
+ - -2.5586668536689015
+ - 2.8850973868665326
+ - -2.355494891212138
+ - 0.8957593357247097
+ - 0.716741571438962
+ - -2.177275558599443
+ - 1.8655991858948722
+ - 3.382718828931802
+ - -2.186836541330204
+ - -1.3764456813854455
+ - 0.77772711706654
+ - 0.8399164365510641
+ - -2.308369083438094
+ - 1.878957621901384
+ - 3.188942247087125
+ - -1.8189944023274207
+ - -1.282065985895867
+ - 0.5784332431621468
+ - 1.0318818692899228
+ - -2.3840767649138126
+ - 2.8907864516830286
+ - -2.4860865631178677
+ - 1.1975517092095305
+ - 0.19638323158807483
+ - -0.20781929368445717
+ - -3.1431417931898538
+ - -1.6564044268587093
+ - 2.8911136657494083
+ - -2.3704464205110574
+ - 1.010055032612407
+ - 0.3023093010485212
+ - 0.011742137807586341
+ - -3.6740276493855535
+ - -1.8272845004072866
+ - 2.8772195573704
+ - -2.294023610607711
+ - 0.8916470384169005
+ - 0.8136971888504185
+ - -2.242024718204725
+ - 2.8680887350727486
+ - -4.2078405106983094
+ - -5.172550278922898
+ - 1.4857818162677481e-15
+ - 2.1936829844906294e-15
+ - 3.0514692797081186e-16
+ - 1.0050244442519285e-16
+ - -1.0667527974636982e-16
+ - -1.6444350577554188e-16
+ - -1.7031648812466837e-16
+ - -1.860329197631759e-16
+ - -3.774425135079465e-16
+ - -3.759535884053511e-17
+ - 1.437639904617162e-16
+ - 5.759245014900455e-16
+ - -1.8142138784819277e-16
+ - 6.406513844223199e-17
+ - -5.335314950967028e-18
+ - -3.419564652294216e-16
+ - -4.892773323251158e-17
+ - -4.830734777309681e-17
+ - -1.4889251025954498e-16
+ - 2.716461131624143e-16
+ - 6.830443908156626e-17
+ - 4.890705371719775e-18
+ - -1.401243957664829e-16
+ - -3.1019272970738534e-18
+ - 1.5195307852599116e-16
+ - -1.2937104780329353e-16
+ - -5.17608268305057e-17
+ - 0.0
+ - 3.269017780809565e-16
+ - 1.1696333861499811e-16
+ - -2.783462761240938e-17
+ - 1.346650037236329e-16
+ - -1.5832236924264947e-16
+ - -3.0171412842871684e-17
+ - -2.072087434445334e-16
+ - -2.8562546551456046e-16
+ - 1.1166938269465872e-17
+ - 7.610061635487853e-17
+ - -9.016268676828002e-18
+ - 3.979152336686339e-16
+ - 2.588454931831562e-16
+ - -5.194694246833013e-17
+ - 4.572654426193137e-16
+ - -1.2159555004529505e-17
+ - -2.24579536308147e-16
+ - 2.1713491079516976e-18
+ - -1.288747394357617e-16
+ - 1.1787323728880644e-16
+ - 2.63374307036884e-16
+ - 8.993521209982792e-17
+ - -3.1681017460780955e-16
+ - -7.82512859475164e-17
+ - 2.1754850110144625e-16
+ - 6.782881022934826e-18
+ - -1.9852334701272664e-18
+ - -5.75510911183769e-17
+ - -1.3443752905518082e-16
+ - 1.3689839137752608e-16
+ - 5.889525961377557e-17
+ - -1.3652099022304876e-16
+ - 4.516406144539531e-16
+ - 4.135903062765138e-17
+ - 2.2863272130965685e-16
+ - -1.6047303883528734e-16
+ - -3.0028724187206287e-16
+ - -1.5811557408951122e-16
+ - -2.236696376343387e-16
+ - 2.4195032917176056e-17
+ - 1.197757526976784e-16
+ - -8.867376166568455e-17
+ - -7.320548421094295e-17
+ - -4.6983858793011966e-17
+ - -6.427193359537025e-17
+ - -1.5038143536214043e-16
+ - -4.635520152747167e-16
+ - -2.5985878943353364e-16
+ - 1.2304311611726287e-16
+ - 2.4434915294816438e-16
+ - 1.5364879878172487e-16
+ - -4.0842042744805735e-17
+ - 3.2528877588647813e-17
+ - 1.1963099609048161e-17
+ - -4.627300045409921e-17
+ - -2.928219368437718e-17
+ - -1.2300175708663522e-16
+ - -9.183772750869989e-17
+ - -1.5257346398540593e-16
+ - 1.2490427249550716e-17
+ - 2.957997870489627e-16
+ - -4.925033367140727e-16
+ - -9.16929709015031e-17
+ - 8.763978589999327e-16
+ - 2.475751573371212e-16
+ - -2.3516744814882577e-16
+ - -1.464109684218859e-16
+ - -7.279189390466644e-18
+ - -1.5646121286440516e-16
+ - 4.8803656140628625e-18
+ - -1.8897975069539606e-16
+ - -2.0005363114594972e-16
+ - 9.218927926903492e-17
+ - -1.966621906344823e-16
+ - -2.3057659574915643e-17
+ - -1.3371374601919692e-16
+ - 1.3019822841584656e-16
+ - 2.6999175193730823e-16
+ - -2.0762233375080992e-17
+ - 1.1051132983708449e-16
+ - 1.6460894189805248e-16
+ - 6.5843576759221e-17
+ - -4.826598874246916e-17
+ - 1.5220123270975707e-16
+ - 9.694556779121483e-17
+ - -1.2432524606672006e-16
+ - 2.1506695926378716e-17
+ - 1.9041697700970695e-16
+ - -9.992341799640573e-17
+ - -1.0951871310202085e-16
+ - 3.570111523778867e-16
+ - -6.948317145445432e-17
+ - -1.3524403015242001e-17
+ - 8.302825398501015e-18
+ - 2.3041115962664586e-16
+ - -6.228670012524298e-17
+ - 1.153503364205197e-16
+ - 1.6345088904047824e-16
+ - 6.54403262106014e-17
+ - 6.129408339017935e-17
+ - -1.3863547066388744e-16
+ - -2.1076562007851143e-16
+ - -4.20207751176938e-17
+ - -3.5692843431663144e-17
+ - -9.090714931957773e-17
+ - -1.1994118882018901e-16
+ - -6.758065604558236e-17
+ - -9.198248411589667e-17
+ - -2.0596797252570386e-17
+ - -3.7636717871162754e-16
+ - 4.128665232405299e-17
+ - 6.72911428311888e-17
+ - -1.050519377942345e-16
+ - 2.1829296365274398e-16
+ - 3.4493431543461254e-17
+ - -2.1206842954328245e-16
+ - 2.1672132048889322e-17
+ - -5.914341379754148e-17
+ - 1.1149877669331967e-16
+ - 3.722312756488624e-16
+ - -1.9828553258661762e-16
+ - -1.1580528575742387e-18
+ - 2.422812014167818e-16
+ - 4.508134338414001e-16
+ - 9.545664268861938e-17
+ - 2.5601239958516203e-17
+ - 1.2738581433316625e-17
+ - -3.0398887511323763e-18
+ - -5.062345348824529e-17
+ - -2.129990077324046e-16
+ - -1.6088662914156386e-16
+ - 9.678013166870422e-18
+ - -4.375785440405516e-17
+ - -1.316044354571867e-16
+ - 1.3640208300999426e-16
+ - -6.081069971971868e-17
+ - -2.481541837659083e-16
+ - -6.510945396558019e-17
+ - -2.2878781767451054e-16
+ - 5.889525961377557e-17
+ - -3.8563160157222145e-16
+ - 2.0307284038176827e-16
+ - -6.179039175771117e-17
+ - 1.575365476607241e-16
+ - 4.03250548619601e-18
+ - 8.238718901028154e-17
+ - -6.348611201344487e-17
+ - -1.1890721305449773e-16
+ - -6.582289724390718e-17
+ - -3.8587975575598735e-17
+ - -6.696854239229311e-16
+ - 4.501516893513577e-16
+- - 2.263636934860039
+ - 1.7198651269710576
+ - -1.7549176847664232
+ - 2.7083543426246135
+ - -2.8625387528540958
+ - 1.9433272683787137
+ - -0.49680460548129834
+ - -1.1908628561912558
+ - 1.5969557927220457
+ - 2.6725938056252483
+ - -3.32646177692427
+ - -1.8692542405360382
+ - 1.8507096876634979
+ - -0.3701274009831258
+ - -1.3740486269872947
+ - 1.6138614002642593
+ - 2.5120611999190103
+ - -2.8010253396211557
+ - -1.7397733946810705
+ - 1.6886712891376714
+ - -0.16754120969922434
+ - -1.4838737550951524
+ - 2.6195091717839047
+ - -2.9041890587101418
+ - 2.1702863038301268
+ - -0.5896839696150783
+ - -1.54768448430894
+ - -2.413771265912521
+ - -1.1363265550804522
+ - 2.6707065799515117
+ - -2.8674728568414354
+ - 2.0314327370731844
+ - -0.47708627048052643
+ - -1.4497651595913046
+ - -2.7895795537435446
+ - -1.2569348443558785
+ - 2.7411339842052924
+ - -2.8389037465990468
+ - 1.9401233232845136
+ - -0.3972353549893019
+ - -1.2800894569213124
+ - 2.466812095360677
+ - -5.126498995764615
+ - -5.044548254883804
+ - -1.2935666963735526
+ - -1.1277642915170683
+ - 2.406526025096936
+ - 2.552501021215039
+ - -0.4551893856238724
+ - -1.2292997076962096
+ - 2.4357309576773574
+ - -2.9304448952572586
+ - 2.349508435464849
+ - -1.0849946500638274
+ - -0.2942709812891303
+ - 0.013519361095740715
+ - 3.478207176024611
+ - 1.722503723047464
+ - -2.921679821073847
+ - 2.274504551371793
+ - -0.8914092334977367
+ - -0.4352946021936309
+ - -0.21876328787142088
+ - 3.2594569218262053
+ - 1.7601394790708969
+ - -2.897908130191247
+ - 2.14217905087594
+ - -0.7726886663270338
+ - -1.0157804773471606
+ - 2.304331680538413
+ - -2.9264461355656604
+ - 1.6920040843934077
+ - 3.185178183129631
+ - 0.07305943712683985
+ - -0.272390782977016
+ - -1.1310131233398435
+ - 2.4225021472301784
+ - -2.9323973437721245
+ - 1.7375931930976258
+ - 3.5551889847003832
+ - 0.3681151327617598
+ - -0.10392473781373637
+ - -1.3179053270958099
+ - 2.488290817640151
+ - -0.7756224613971853
+ - -1.0129677677557232
+ - 2.3025293688739414
+ - -2.926286886455907
+ - 4.1784413128863935
+ - 5.146109154940579
+ - 4.5800904556427335
+ - 3.6681628583064905
+ - -2.802472677684418
+ - 2.7799857035218434
+ - -1.936414940204568
+ - 0.29320428381298974
+ - 1.2930309017588426
+ - -2.540783987428713
+ - 1.996671103035359
+ - 3.7589024465784986
+ - -1.5878000392858944
+ - -1.0926280912358999
+ - 0.17010744421329546
+ - 1.4060923053177832
+ - -2.6360682616878677
+ - 1.8889113905759303
+ - 3.32293718250925
+ - -1.1894789536990629
+ - -0.9593571760900267
+ - -0.035018435611392895
+ - 1.5795301212110369
+ - -2.689138940976308
+ - 2.834105638535618
+ - -2.104084649215751
+ - 0.6132508482466179
+ - 0.5887075035530696
+ - 0.4975521426684313
+ - -3.3073122073596246
+ - -1.8129244255077124
+ - 2.808242004392448
+ - -1.9554398662211623
+ - 0.41337947616511495
+ - 0.7061436672319978
+ - 0.7933267087193425
+ - -3.617101732123284
+ - -1.8611552912324243
+ - 2.751736349561184
+ - -1.8595296758126352
+ - 0.28891094672203144
+ - 1.3819858735142456
+ - -2.5885397575322195
+ - 2.879919837368503
+ - -4.699998842034199
+ - -4.705789998403174
+ - -2.5428975936437523
+ - -2.4529900824911124
+ - -0.754031233892757
+ - -0.6285412633978191
+ - 1.330081530931444
+ - -2.5614642272826518
+ - 2.8846854708114207
+ - -2.2947329398422514
+ - 0.8927950174470467
+ - 0.7219903539670405
+ - -1.3504054647274737
+ - -2.129984759593059
+ - 3.407367117670466
+ - 1.8728982049543397
+ - -2.214056386007316
+ - 0.7722581012201581
+ - 0.9185404916407618
+ - -1.440962024938247
+ - -2.142778820046733
+ - 3.047511028844076
+ - 1.835160457156032
+ - -2.075241338237845
+ - 0.5729052257235908
+ - 1.0345371000113044
+ - -2.4406966228195004
+ - 2.890674097210535
+ - -2.483140301931781
+ - 0.8611058266548354
+ - 1.9860043304486186
+ - 2.0289745476624725
+ - 0.8882348432317083
+ - -2.5070122772472767
+ - 2.8873934245975637
+ - -2.3671362311585953
+ - 0.8207087194699663
+ - 2.062695685000972
+ - 2.536276245541265
+ - 1.0943209688929232
+ - -2.6080440866725105
+ - 2.8764330123523836
+ - -2.2920328268330876
+ - 0.7966867881220585
+ - 0.8164100484347876
+ - -2.245528637020934
+ - 3.741827017738066
+ - 4.506412165283807
+ - 1.5302841332231012e-17
+ - -1.9703442191013117e-16
+ - 3.1846453583291565e-17
+ - 9.371956340225802e-17
+ - -8.772250396124857e-17
+ - -5.277412308088316e-17
+ - 1.3375510504982458e-16
+ - 1.1282743555223297e-16
+ - -2.5212465070616284e-16
+ - 4.9382682569415746e-17
+ - 8.238718901028154e-17
+ - -1.7271531190107215e-16
+ - 1.530284133223101e-16
+ - -1.0141234309900118e-16
+ - -1.2688950596563445e-16
+ - -8.189088064274973e-17
+ - -5.950530531553343e-17
+ - 7.415674191537893e-17
+ - 2.1736238546362182e-16
+ - -4.053185001509835e-17
+ - 8.33177671994037e-17
+ - 8.1146418091452e-17
+ - 1.3689839137752608e-16
+ - 7.940933880509064e-17
+ - -1.282129949457193e-16
+ - -2.7694006908275367e-16
+ - -3.135014521575975e-17
+ - -2.481541837659083e-19
+ - 1.9169910695916414e-16
+ - 2.307833909022947e-16
+ - 2.749548356126264e-16
+ - -1.0968414922453146e-16
+ - 1.1539169545114735e-17
+ - 2.7280416601998853e-16
+ - 2.5907296785160827e-16
+ - -3.8496985708217903e-16
+ - 9.194112508526901e-17
+ - 4.3675136342799855e-17
+ - -1.1553645205834414e-16
+ - -1.0290126820159663e-16
+ - -8.850832554317396e-18
+ - 1.9116143956100467e-16
+ - -2.306179547797841e-16
+ - 1.5136371233954713e-16
+ - 1.047314053068702e-16
+ - -2.744585272450946e-16
+ - 1.252351447405284e-16
+ - -6.005331247134981e-17
+ - -2.6751021009964915e-16
+ - -6.265893140089185e-17
+ - 3.029135403169187e-16
+ - 1.1786289753114953e-16
+ - -9.115530350334364e-17
+ - -2.1126192844604324e-16
+ - -2.8471556684075213e-16
+ - -5.066481251887294e-18
+ - -2.489813643784613e-17
+ - 1.6684232955194566e-16
+ - -4.615667818045894e-17
+ - 3.6271869860450264e-17
+ - -2.1687641685374692e-16
+ - -4.259980154648092e-17
+ - -1.0174321534402239e-16
+ - 5.930884992005208e-17
+ - 1.1779051922755114e-16
+ - 1.904583360403346e-16
+ - -2.446800251931856e-16
+ - -5.2980918234021416e-17
+ - -2.591841202464201e-16
+ - 6.576085869796569e-18
+ - 2.158941398763402e-17
+ - -1.0869153248946782e-16
+ - -8.189088064274974e-18
+ - 1.8065624578158122e-16
+ - 9.218927926903492e-17
+ - 1.3251433413099503e-16
+ - -2.158114218150849e-16
+ - -2.5737724759587456e-16
+ - 2.8124140826802937e-18
+ - -5.963455228624484e-17
+ - 5.161607022330892e-17
+ - -2.3491929396505983e-17
+ - 7.754818242684634e-18
+ - 2.2333876538931747e-16
+ - -3.3004506440865804e-17
+ - 1.9748937124703536e-18
+ - 3.550672779383871e-17
+ - -5.0582094457617636e-17
+ - -4.3447661674347774e-16
+ - 2.326031882499114e-16
+ - 6.861463181127365e-17
+ - -5.538801381655073e-16
+ - -1.512706545206349e-16
+ - 5.376673981594679e-18
+ - -8.040195554015428e-17
+ - 7.626605247738914e-17
+ - 1.1642567121683865e-16
+ - 5.608284553109528e-17
+ - 1.360298517343454e-16
+ - 2.3574647457761286e-17
+ - -5.823351512373315e-17
+ - 3.9176307786277077e-16
+ - 2.4174353401862234e-16
+ - 1.0339757656912845e-16
+ - 9.816565919473055e-17
+ - 1.943874439499615e-18
+ - -6.613308997361456e-17
+ - 6.501639614666798e-17
+ - 1.225881667803587e-16
+ - -3.1432863277015048e-18
+ - 1.7941547486275168e-16
+ - -1.5081570518373075e-16
+ - -1.5509636485369266e-16
+ - 1.3069453678337837e-16
+ - -1.7334603711814384e-16
+ - -1.1257928136846707e-16
+ - -3.995282358631123e-17
+ - 1.0689241465716499e-16
+ - 2.7710550520526424e-17
+ - 7.568702604860202e-17
+ - 2.5415124320691772e-17
+ - -2.8868603378100666e-17
+ - -1.5724703444633054e-16
+ - 8.573727049112131e-17
+ - -2.4592079611201513e-16
+ - -2.9542755577331383e-16
+ - -1.6270642648918052e-16
+ - -1.398142030367755e-16
+ - -3.9167002004385854e-17
+ - 5.872982349126496e-17
+ - -7.047578818951796e-17
+ - -2.431911000905901e-17
+ - -5.426304818347861e-17
+ - 1.591495498552025e-16
+ - -1.0687173514185116e-16
+ - -1.8967251445840922e-16
+ - 1.3693975040815373e-16
+ - 2.4368740845812195e-16
+ - 2.187065539590205e-16
+ - -1.0323214044661784e-16
+ - 1.9604180517506753e-16
+ - -1.7925003874024107e-16
+ - -1.5675072607879874e-17
+ - -1.1183481881716934e-16
+ - 4.873748169162439e-16
+ - 2.5104931590984387e-17
+ - 1.2076836943274203e-17
+ - 7.394994676224067e-17
+ - 1.01908651466533e-16
+ - -1.5096046179092753e-18
+ - -2.955516328651968e-16
+ - -3.6429034176835334e-16
+ - -1.6212740006039342e-17
+ - -1.0554824616176632e-16
+ - -4.739331319622572e-16
+ - 2.2044363324538184e-17
+ - -1.621274000603934e-16
+ - -1.8065624578158122e-16
+ - 3.805030817743927e-18
+ - -7.974021105011186e-17
+ - 1.624582723054146e-16
+ - 2.2598574334948716e-16
+ - -5.764673387670334e-17
+ - 2.2912902967718864e-17
+ - 4.289758656700001e-16
+ - 2.3905519702782497e-17
+ - 1.710609506759661e-16
+ - -2.27309232329572e-16
+ - 3.0092830684679147e-16
+ - -1.5402103005737373e-16
+ - 3.110199103199384e-17
+ - 2.4947767274599315e-16
+ - 1.6113478332532977e-16
+ - 3.542400973258341e-17
+ - 2.5270367713494992e-17
+ - 9.338869115723681e-17
+ - -2.4401828070314313e-17
+ - 8.519960309296184e-17
+ - -1.8958979639715392e-16
+ - 3.4046754012682614e-16
+- - 0.6345578724001444
+ - 0.6544088486466575
+ - 0.15780063900791608
+ - -1.746635085645231
+ - 2.6907425795821505
+ - -2.8202277627717045
+ - 1.9287756794939588
+ - -0.4889967487095392
+ - -0.682081696484461
+ - -0.7595248466579685
+ - 3.773752036689147
+ - 1.9372318511304254
+ - -2.7858080900160744
+ - 1.834747613526854
+ - -0.28682967424637196
+ - -0.8072548621571027
+ - -0.9062539659100111
+ - 3.3126611839713243
+ - 1.8557378787794225
+ - -2.7204618224887396
+ - 1.673615059273126
+ - -0.1643680958718637
+ - -1.5574751087147796
+ - 2.6026914379039203
+ - -2.8839664349510197
+ - 1.4652886781845191
+ - 2.887167129804223
+ - 0.7660875313206547
+ - 0.12643700745805642
+ - -1.6600381958120773
+ - 2.6825723199707308
+ - -2.8471595334526696
+ - 1.3958362633328587
+ - 3.00398970669832
+ - 1.0730676128494778
+ - 0.2718041609161338
+ - -1.823945068841611
+ - 2.7239170821174974
+ - -2.819151157770559
+ - 1.8538119101571977
+ - -0.39255637772456065
+ - -1.2755060418042063
+ - 3.753358940638896
+ - 3.6192678839991066
+ - -0.30162687697957946
+ - -0.4816891332882698
+ - -4.472619987572543
+ - -4.586043008092466
+ - 1.8978103171469345
+ - -0.4477172672434564
+ - -1.2228094853385882
+ - 2.470315643558826
+ - -2.910731994892851
+ - 2.331259215243738
+ - -0.7736544223035421
+ - -1.9711088679130784
+ - -2.3478164827006305
+ - -0.9929360173012884
+ - 2.5319486769176835
+ - -2.9016458750657352
+ - 2.208444717330215
+ - -0.6348873454202363
+ - -1.61769935989814
+ - -2.333414978770805
+ - -1.0866375546336344
+ - 2.620124084489703
+ - -2.8776975436390626
+ - 2.126473203849756
+ - -0.6727172810644044
+ - -1.010852228087181
+ - 2.291581407550743
+ - -1.8711992097104395
+ - -3.1883976549506476
+ - 1.742510703992389
+ - 1.2412288247083993
+ - -0.5507669988471676
+ - -1.198065856953214
+ - 2.4086761364068283
+ - -1.9798314366039718
+ - -3.6997646182242883
+ - 1.7431383323713965
+ - 1.1650854941152258
+ - -0.3510282229248148
+ - -1.3130585660066731
+ - 2.472502298590013
+ - -0.6745677682722973
+ - -1.0105311661520178
+ - 2.292934204830852
+ - -3.8248585803211035
+ - -4.617267439302132
+ - -2.5105179157616706
+ - -1.9255617820219215
+ - 1.8320724978220901
+ - -2.7876883480908305
+ - 2.7626876561448124
+ - -1.8490768516438034
+ - 0.28797415418461775
+ - 1.2908007638552503
+ - -1.6528806491622101
+ - -2.8061353745737154
+ - 3.1963588637519136
+ - 1.815370959767987
+ - -1.7506450314138098
+ - 0.16309335674047637
+ - 1.4694377064509412
+ - -1.6580125357989888
+ - -2.6174403237453743
+ - 2.677318724890376
+ - 1.684094226384113
+ - -1.5845708498889888
+ - -0.04078666996198151
+ - 1.5731606342198328
+ - -2.7115025980024865
+ - 2.816796024130218
+ - -2.0874699825413354
+ - 0.4831692758225169
+ - 1.3686001984057663
+ - 2.5259604849885333
+ - 1.2137103231426165
+ - -2.753985681085264
+ - 2.7708298437423187
+ - -1.9393739509942867
+ - 0.36886964409531614
+ - 1.2506353855779682
+ - 2.8995368019729275
+ - 1.3287003179350065
+ - -2.8148828879229963
+ - 2.7336161202860323
+ - -1.8457667549466372
+ - 0.1884122749339399
+ - 1.3769561630279248
+ - -2.5762475961599005
+ - 5.1424546557977475
+ - 5.06799985550681
+ - 1.43574344862551
+ - 1.2775184524018224
+ - -2.130626236190334
+ - -2.277592349315344
+ - 0.2485523576508671
+ - 1.3249207537460754
+ - -2.54506333946785
+ - 2.857019049418894
+ - -2.2778366053531363
+ - 0.8823619530859085
+ - 0.39708844529556614
+ - 0.18901792390609082
+ - -3.506213881346042
+ - -1.7539405800823427
+ - 2.8432595234138947
+ - -2.195912524338379
+ - 0.6884329157449635
+ - 0.534752453445725
+ - 0.4028788303822253
+ - -3.2719639415130497
+ - -1.7848287096283213
+ - 2.806498547750947
+ - -2.057794529191165
+ - 0.5669074756057788
+ - 1.1180948054461546
+ - -2.4254204546541294
+ - 2.87119585073848
+ - -1.6303309607125025
+ - -3.1035975389867643
+ - -0.25876915057950317
+ - 0.16532744656900764
+ - 1.2317259637225906
+ - -2.5314175484259955
+ - 2.867547113428785
+ - -1.6682409080091585
+ - -3.4495664153773005
+ - -0.576822195368564
+ - -0.008382751306772272
+ - 1.4105009396450279
+ - -2.5924842711843534
+ - 2.8566005386680637
+ - -2.2138773408243972
+ - 0.7891983171541604
+ - 0.8153859747154458
+ - -2.055662849740457
+ - -2.371452541007906
+ - -4.532949756790592e-16
+ - -7.444625512977248e-19
+ - -1.196103165751678e-16
+ - -8.704007995589232e-17
+ - -5.914341379754147e-18
+ - 7.982292911136716e-17
+ - 2.2085722355165836e-17
+ - -1.0877425055072313e-16
+ - 3.89602068512476e-16
+ - -7.510799961981491e-17
+ - -9.301645988158795e-17
+ - -1.0339757656912844e-17
+ - -2.5102863639453007e-16
+ - -1.1394412937917956e-16
+ - 3.6561383074843823e-17
+ - 1.2738581433316626e-16
+ - 3.865001412154021e-17
+ - -7.527343574232552e-18
+ - 2.158941398763402e-17
+ - 6.650532124926343e-17
+ - -4.19380570564385e-17
+ - 4.2434365423970314e-17
+ - -5.922613185879678e-17
+ - -7.59145007170541e-17
+ - 2.895132143935597e-17
+ - 3.335192229813807e-16
+ - 3.192917164454687e-17
+ - 1.2986735617082533e-17
+ - -2.4046140406916515e-16
+ - -2.716461131624143e-16
+ - -2.637051792819052e-16
+ - 7.734138727370808e-17
+ - -8.937686518635463e-17
+ - -2.1038304904520565e-16
+ - -3.1350145215759744e-16
+ - 5.429613540798074e-16
+ - -1.0174321534402239e-16
+ - -2.3533288427133634e-17
+ - 1.8537117527313348e-16
+ - -5.2939559203393765e-17
+ - -2.812414082680294e-17
+ - -2.2267702089927505e-16
+ - -7.196471329211341e-18
+ - -9.043152046735974e-17
+ - -4.954811869192635e-17
+ - 3.685916809536291e-16
+ - -6.698095010148142e-17
+ - 7.189853884310916e-16
+ - 1.285438671907405e-16
+ - 1.0430747524293678e-16
+ - -2.3185872569861366e-16
+ - -1.1097661893164556e-16
+ - 1.0257039595657542e-16
+ - 3.8476306192904077e-16
+ - 1.0312874287004871e-16
+ - -4.79764755280756e-18
+ - 1.282129949457193e-16
+ - -1.2324991127040111e-17
+ - 5.98051582875839e-17
+ - 1.7544500792249715e-16
+ - 1.5184968094942203e-16
+ - 8.375203702099404e-17
+ - -1.6957202557337065e-18
+ - 4.0697286137608955e-17
+ - -1.6270642648918052e-16
+ - -1.7904324358710282e-16
+ - 3.361662009415504e-16
+ - -6.356883007470018e-17
+ - 4.2996848240506374e-16
+ - 1.1338578246570627e-16
+ - 4.8720938079373324e-17
+ - 1.3090133193651663e-16
+ - 4.632211430296955e-18
+ - -2.1366075222244702e-16
+ - 2.10103875588469e-17
+ - -6.39927601386336e-17
+ - 1.2128535731558768e-16
+ - 3.0440246541951414e-16
+ - 1.0124690697649058e-16
+ - 1.482721248001302e-16
+ - -5.992923537946686e-17
+ - -1.3123220418153784e-16
+ - 5.889525961377557e-17
+ - -2.4931223662348254e-16
+ - 4.863822001811802e-17
+ - 1.2407709188295414e-17
+ - 8.156000839772852e-17
+ - 8.519960309296184e-17
+ - 7.098450426623806e-16
+ - 1.9686898578762056e-17
+ - -3.7603630646660633e-16
+ - 3.6065074707312e-16
+ - -1.9025154088719637e-18
+ - -2.067951531382569e-19
+ - 1.482721248001302e-16
+ - -7.709323308994217e-17
+ - -1.8760456292702665e-16
+ - 4.0531850015098356e-18
+ - -1.2380825818387442e-16
+ - 4.524677950665061e-17
+ - -7.444625512977249e-18
+ - -4.105297380100676e-16
+ - -3.2621935407560024e-16
+ - -6.203854594147707e-18
+ - -5.24018918052343e-17
+ - -1.4210962923661015e-16
+ - 6.874387878198506e-17
+ - -1.0174321534402239e-16
+ - 3.8991226124218336e-17
+ - -2.7462396336760516e-17
+ - -1.774302413926244e-16
+ - 2.3210687988237957e-16
+ - 1.0544484858519719e-16
+ - -1.2415980994420945e-16
+ - 6.005331247134981e-17
+ - 8.437242248040881e-17
+ - 1.4194419311409955e-16
+ - -2.812414082680294e-17
+ - -1.7453510924868884e-17
+ - -1.3665023719376017e-16
+ - -7.626605247738914e-17
+ - 1.4426029882924803e-16
+ - 1.2473883637299657e-16
+ - -2.912709731952349e-17
+ - 2.564259898914386e-16
+ - 4.314574075076592e-16
+ - 1.6924115332834944e-16
+ - 7.124093025612951e-17
+ - 5.1450634100798315e-17
+ - 2.0886310466963946e-17
+ - 6.220398206398768e-17
+ - 1.1729421086001932e-16
+ - 3.184645358329156e-16
+ - -1.7329433832985927e-16
+ - 2.0981436237407545e-16
+ - 1.1191753687842464e-16
+ - -1.597078967686758e-16
+ - -2.98612201131643e-16
+ - -1.5550995515996918e-16
+ - 9.003860967639705e-17
+ - -2.694954435697764e-16
+ - 1.1456451483859433e-16
+ - 4.299271233744361e-17
+ - 3.0506420990955656e-16
+ - -4.453540417985501e-16
+ - -1.241184509135818e-16
+ - -6.224534109461533e-17
+ - -1.3549218433618593e-16
+ - -4.135903062765138e-17
+ - 1.036767500258651e-16
+ - 3.325266062463171e-16
+ - 3.446034431895913e-16
+ - -2.4815418376590826e-18
+ - 1.3888362484765335e-16
+ - 3.9624019292821403e-16
+ - -9.396771758602393e-17
+ - 1.8727369068200544e-16
+ - 1.6200332296851045e-16
+ - -1.4558378780933287e-17
+ - 7.527343574232552e-17
+ - -1.5096046179092753e-16
+ - -7.891303043755883e-17
+ - 7.866487625379292e-17
+ - 4.111087644388547e-17
+ - -2.3227231600489017e-16
+ - -4.896909226313923e-17
+ - -1.611554628406436e-16
+ - 1.619619639378828e-16
+ - -3.3188037139276e-16
+ - 2.358395323965251e-16
+ - 7.363975403253329e-17
+ - -2.6122363744424614e-16
+ - -5.1781506345819526e-17
+ - 6.774609216809297e-17
+ - -1.0753347963189359e-16
+ - -1.8661194619196302e-16
+ - -2.249931266144235e-17
+ - -8.817745329815274e-17
+ - 2.2912902967718867e-16
+ - 4.772832134430969e-17
+- - -3.3631219180196785
+ - -2.846813717301559
+ - 1.4291179289851732
+ - 0.13894295446564303
+ - -1.7378596634415782
+ - 2.7296932543638266
+ - -2.8405827686695306
+ - 1.9534440397954163
+ - -0.4604589940725131
+ - -1.4171103851863163
+ - -3.0233398394810296
+ - -1.3885525987625653
+ - 2.7685451500879434
+ - -2.8060902382069592
+ - 1.799960884548614
+ - -0.26568758007775756
+ - -1.0064149820348907
+ - -2.774265173221188
+ - -1.3815620057328197
+ - 2.818354624665275
+ - -2.741689341720982
+ - 1.7002919669211618
+ - -0.09125537315371555
+ - -1.5468420903517912
+ - 2.608076770922819
+ - -1.8837059978035322
+ - -3.3214859138427304
+ - 1.1441980282812758
+ - 0.935061485596547
+ - 0.0340239792341923
+ - -1.715711896613839
+ - 2.6896347338988154
+ - -1.880008914462466
+ - -3.618196657295867
+ - 1.0046305608737984
+ - 0.810979356943825
+ - 0.23678057945534525
+ - -1.8180182843889037
+ - 2.7310872178858308
+ - -2.8142692734261883
+ - 1.8803212022906672
+ - -0.41406299086817394
+ - -1.1688108473920202
+ - -1.0247445263147257
+ - 1.8185275768513143
+ - 1.9556212882623742
+ - 5.136195541686413
+ - 5.180603940437614
+ - -2.830119780943151
+ - 1.922314695043196
+ - -0.47182895189039115
+ - -1.2961653850185961
+ - 2.472047172801305
+ - -2.9268604771740048
+ - 1.6069604831746864
+ - 3.3223707214662905
+ - 0.45650697178826205
+ - -0.061273536850078865
+ - -1.4058708814580902
+ - 2.535959774569662
+ - -2.9113182644290934
+ - 1.5147119344970983
+ - 2.9591412469199296
+ - 0.6533122938740986
+ - 0.05925097011236379
+ - -1.582583057615927
+ - 2.6257710089148762
+ - -2.8961027332488687
+ - 2.0873362958882278
+ - -0.6978180856431997
+ - -0.9976724678798089
+ - 1.4560163841052574
+ - 2.1754571128681097
+ - -3.02310555723653
+ - -1.8253396174987553
+ - 2.000914920398736
+ - -0.4970017368596138
+ - -1.186385947259238
+ - 1.5937844251353575
+ - 2.666797493078892
+ - -3.3225702741922665
+ - -1.866836215975936
+ - 1.8483989426890253
+ - -0.3723535635516972
+ - -1.3000393487200583
+ - 2.5222395800351842
+ - -0.6965436508847634
+ - -1.0000575623397474
+ - 2.2482002754386454
+ - 2.610841824129062
+ - -0.3824315393316304
+ - -0.45032498428017154
+ - -0.3452743662085402
+ - 1.8284347424786211
+ - -2.7960524949871095
+ - 2.754619656406006
+ - -1.8734419688485193
+ - 0.30619134990280716
+ - 0.7783990776170243
+ - 0.9482857704167074
+ - -3.8041848366987883
+ - -1.9675983230219012
+ - 2.7159538836687975
+ - -1.7729599892223087
+ - 0.10364777894014478
+ - 0.8960638762523193
+ - 1.0697893729170416
+ - -3.3285160319618687
+ - -1.8801890905142133
+ - 2.6388531587969344
+ - -1.606728163872344
+ - -0.02169162778166838
+ - 1.6448996798679179
+ - -2.7182203364366946
+ - 2.834460206787069
+ - -1.4130703115016932
+ - -2.8194815048862365
+ - -0.9308222237615755
+ - -0.22094970647550194
+ - 1.746422325474321
+ - -2.7872692054356527
+ - 2.789362573786903
+ - -1.3383653320545907
+ - -2.9189073837139783
+ - -1.2498690099634078
+ - -0.3668059881788185
+ - 1.9031902243071592
+ - -2.824717968866763
+ - 2.7533285336790945
+ - -1.7947649194833828
+ - 0.20853323171439417
+ - 1.369273152037448
+ - -3.9489617626328144
+ - -3.817042364429791
+ - 0.16951551203798074
+ - 0.35363803024907114
+ - 4.3686326381844465
+ - 4.485986587936678
+ - -1.8433017056231238
+ - 0.2692313828975015
+ - 1.3120830112916138
+ - -2.593427254254887
+ - 2.873868952270357
+ - -2.301860476564208
+ - 0.6934551871528147
+ - 1.833904412559468
+ - 2.4886806283841447
+ - 1.0746241109658052
+ - -2.6482437237906633
+ - 2.860545289164532
+ - -2.1689524837943575
+ - 0.5520411833987563
+ - 1.4849009305889684
+ - 2.4560683170167485
+ - 1.1650518968886416
+ - -2.7298409578528666
+ - 2.8249184783920662
+ - -2.0840309740608447
+ - 0.4972724098632907
+ - 1.1034040317742795
+ - -2.4268782268637845
+ - 1.8885302142889204
+ - 3.2444815052332205
+ - -1.613784774186274
+ - -1.178014763998091
+ - 0.3754703633704519
+ - 1.289575017830088
+ - -2.534558067216518
+ - 1.993547834413088
+ - 3.7524744852547234
+ - -1.588491342284728
+ - -1.092420443600038
+ - 0.17161356449862136
+ - 1.4005629858413107
+ - -2.5954266344771644
+ - 2.862916753000211
+ - -2.239797015540983
+ - 0.8122652408865692
+ - -0.3046086927181031
+ - -0.5432821219569438
+ - 1.339039975600841e-15
+ - 1.7314130991653697e-15
+ - 3.3194757981752996e-16
+ - 1.6737999695010513e-16
+ - -2.0340371262678948e-16
+ - -1.8568136800284086e-16
+ - -2.908780624042722e-16
+ - -1.0836066024444661e-16
+ - -6.178211995158563e-16
+ - 1.1427500162420077e-16
+ - 1.9463559813372739e-16
+ - 4.56520980068016e-16
+ - 1.7784383169890093e-16
+ - 1.5025735827025748e-16
+ - -1.2469747734236892e-16
+ - -3.1689289266906485e-16
+ - -1.1158666463340343e-16
+ - -1.1241384524595646e-16
+ - -2.754511439801582e-17
+ - 1.2011696470035653e-16
+ - 9.113462398802981e-17
+ - -4.20207751176938e-17
+ - 4.1855338995183194e-17
+ - 3.027481041944081e-17
+ - 1.6998561587964716e-16
+ - -3.7289302013890483e-16
+ - -1.0223952371155421e-16
+ - -3.937379715752411e-17
+ - 3.5866551360299275e-16
+ - 3.684469243464323e-16
+ - 2.418676111105053e-16
+ - 4.0945440321374864e-17
+ - 2.5756077829428476e-16
+ - 2.6325022994500106e-16
+ - -3.970466940254533e-18
+ - -6.796115912735674e-16
+ - 3.8587975575598735e-17
+ - 5.773720675620133e-17
+ - -2.4401828070314316e-16
+ - 3.695842976886927e-16
+ - 1.8181429863915546e-16
+ - 2.993566636829407e-16
+ - 2.204488031242103e-16
+ - 1.316044354571867e-16
+ - -4.038709340790157e-17
+ - -1.7953955195463463e-16
+ - 5.037529930447938e-17
+ - -3.604853109506094e-16
+ - 5.227781471335134e-17
+ - 5.7489052572435416e-18
+ - 1.5873595954892599e-16
+ - 1.6973746169588125e-16
+ - 1.708127964922002e-17
+ - -2.983640469478771e-16
+ - -4.3964649557193416e-16
+ - -6.410649747285964e-17
+ - -9.344038994552138e-17
+ - 4.3675136342799855e-17
+ - 4.946540063067105e-17
+ - 4.135903062765138e-17
+ - 8.065010972392019e-17
+ - -1.1683926152311516e-18
+ - 1.3958672836832342e-16
+ - -9.057627707455652e-17
+ - -1.2010662494269962e-16
+ - 3.2714993226472245e-17
+ - -4.975904974812738e-16
+ - 7.763090048810163e-17
+ - -3.4898750043612233e-16
+ - -1.2010662494269962e-16
+ - -7.742410533496338e-17
+ - -1.1026317565331858e-16
+ - -7.287461196592174e-17
+ - -1.857020475181547e-17
+ - -1.7354249251362518e-16
+ - -8.077418681580314e-17
+ - -9.523433789899576e-17
+ - -2.1060018395600082e-16
+ - 1.2672406984312384e-16
+ - -2.5808035111654463e-16
+ - 7.535615380358081e-17
+ - -2.5104931590984387e-17
+ - 3.96012718259762e-18
+ - 3.2020161511927696e-16
+ - -1.3564728070103963e-16
+ - -5.943292701193504e-17
+ - -8.735027268559971e-17
+ - -4.9299964508160443e-17
+ - -3.0489877378704595e-16
+ - -2.4947767274599315e-16
+ - -2.325411497039699e-16
+ - 4.1317671597023727e-16
+ - 1.3937993321518516e-16
+ - -9.260286957531144e-17
+ - -1.8231060700668727e-16
+ - -9.765901106954182e-17
+ - -2.7214242152994607e-17
+ - -1.505882305152787e-16
+ - 2.2412458697124285e-16
+ - -9.880672416945914e-17
+ - 6.768405362215149e-17
+ - 4.0664198913106836e-16
+ - 1.565646104409743e-16
+ - -1.2817163591509164e-16
+ - -9.278898521313587e-17
+ - 3.9208361035013506e-17
+ - -4.226892930145971e-17
+ - 1.4628689133000294e-16
+ - 6.046690277762632e-17
+ - 1.0319078141599019e-16
+ - 1.2635183856747498e-16
+ - 4.0573209045726e-17
+ - 1.6295458067294645e-17
+ - 9.984069993515043e-17
+ - -1.0240495983406481e-16
+ - -1.6791766434826462e-17
+ - -2.3467113978129395e-16
+ - -4.3344264097778644e-17
+ - 1.9852334701272662e-16
+ - 1.3896634290890865e-16
+ - 8.040195554015428e-17
+ - 1.0091603473146936e-17
+ - -2.9043345282502493e-16
+ - -2.1392958592152675e-17
+ - -1.9339482721489785e-16
+ - -1.5782606087511766e-16
+ - -7.874759431504822e-17
+ - 5.67445900211377e-17
+ - -1.8437855853806984e-16
+ - -8.354524186785578e-17
+ - -1.8810087129455847e-16
+ - -1.4897522832080028e-16
+ - -3.8476306192904077e-16
+ - 1.0656154241214378e-16
+ - -3.264468287440523e-16
+ - -1.6893096059864205e-16
+ - 1.2341534739291173e-16
+ - 1.110076382046163e-16
+ - 1.5716431638507523e-16
+ - 2.4577603950481832e-17
+ - 1.2817163591509164e-16
+ - 1.2931934901500896e-16
+ - -1.0381116687540496e-17
+ - -3.573420246229079e-16
+ - 4.880365614062863e-16
+ - 8.602678370551488e-18
+ - 9.66767340921351e-17
+ - 3.0713216144093913e-16
+ - -7.17992771696028e-17
+ - -4.4833189200374094e-17
+ - -1.4186147505284425e-16
+ - 2.1940965747969057e-16
+ - 5.579333231670172e-17
+ - -7.891303043755883e-17
+ - -4.835697860985e-16
+ - 8.751570880811032e-17
+ - -1.5683344414005402e-16
+ - -2.087390275777565e-16
+ - -2.715013565552175e-16
+ - -1.0281855014034133e-16
+ - 6.906958114817781e-17
+ - 2.936491174563248e-17
+ - -6.600901288173161e-17
+ - -7.452897319102779e-17
+ - 3.838118042246048e-16
+ - 3.8153705754008395e-17
+ - -6.452008777913615e-18
+ - -1.1367529568009983e-16
+ - 6.792186804826048e-17
+ - -8.189088064274974e-18
+ - -7.020695449043822e-18
+ - 3.5924454003177987e-16
+ - 5.462493970147056e-17
+ - 8.577862952174896e-17
+ - -1.4889251025954498e-17
+ - 7.254373972090053e-17
+ - -4.623939624171424e-17
+ - 1.0314942238536254e-16
+ - -9.102295460533517e-16
+ - -1.0108147085397997e-16
+- - 4.965150514963039
+ - 4.0862357826290445
+ - -2.6129034462378673
+ - 1.4295173252450295
+ - 0.13649777071224556
+ - -1.8133531968679533
+ - 2.729976968917769
+ - -2.841741177853517
+ - 1.445145596669598
+ - 3.1142073474919596
+ - 1.275401864318917
+ - 0.3826978818580312
+ - -1.9088510671465229
+ - 2.76955947175504
+ - -2.784113648157436
+ - 1.2456032694992554
+ - 2.576807002654863
+ - 1.3198198082033137
+ - 0.4521703457238631
+ - -2.060184392984788
+ - 2.819323960800903
+ - -2.743558462586008
+ - 1.6244602591975066
+ - -0.09386759010528295
+ - -1.5474980046466582
+ - 1.6764613151926127
+ - 2.654016097671688
+ - -2.666655567128932
+ - -1.6819776915905134
+ - 1.5214680093807935
+ - 0.11107020165193467
+ - -1.716450134308603
+ - 1.739446279099914
+ - 3.031562124362531
+ - -2.7399251047884143
+ - -1.6201710960660314
+ - 1.3437728227223205
+ - 0.23677141560050077
+ - -1.8167414471148753
+ - 2.7608941786724035
+ - -2.816155457822782
+ - 1.8810368797239132
+ - -1.7906365624515954
+ - -1.8969233542234676
+ - -2.72621699577768
+ - -2.775154915190209
+ - -4.096215415642336
+ - -4.0571706539978605
+ - 2.743495928327352
+ - -2.831152721197799
+ - 1.924719107009938
+ - -0.3791966359040975
+ - -1.2945811000525178
+ - 2.4730802992760004
+ - -1.9043012556572187
+ - -3.5672937409038132
+ - 1.5770319757556024
+ - 1.0902316037693052
+ - -0.25454817487210774
+ - -1.4065731931721663
+ - 2.572849834566717
+ - -1.8888863008932868
+ - -3.31453148974203
+ - 1.2351683785732979
+ - 0.9829073551052031
+ - -0.05162607669220545
+ - -1.5833010365610158
+ - 2.6256855887052915
+ - -2.881714997203286
+ - 2.0897350405560156
+ - -0.6980334455005905
+ - -0.5607144384011943
+ - -0.44701408637698953
+ - 3.2966975883233727
+ - 1.8023336720895713
+ - -2.8558467322766448
+ - 1.9452936633766322
+ - -0.4971154319892774
+ - -0.6818566951373282
+ - -0.7557229155292211
+ - 3.794390613510823
+ - 1.9471620486312902
+ - -2.804243956444631
+ - 1.8489017933790937
+ - -0.3749162081824872
+ - -1.3841495442047835
+ - 2.5219850798143355
+ - -0.6953599399511512
+ - 0.06530902937225978
+ - 0.25047104817804766
+ - 3.135008856832369
+ - 2.6658368769791965
+ - -1.3263647032050618
+ - -0.3459993875174523
+ - 1.8260060389456545
+ - -2.8214405332388033
+ - 2.753521001887255
+ - -1.8718134102308923
+ - 0.3496533507086884
+ - 1.2147213689347913
+ - 3.1496381917409977
+ - 1.4676754751334926
+ - -2.8516466686601136
+ - 2.7140009465072876
+ - -1.709128653482337
+ - 0.1589531647912917
+ - 0.8247312788159892
+ - 2.874620878755051
+ - 1.4528605412960551
+ - -2.8920341580538294
+ - 2.636857293068918
+ - -1.6071939555231678
+ - -0.11627163296572347
+ - 1.6424999871949444
+ - -2.7170382435596396
+ - 1.8707421968266
+ - 3.330030789319481
+ - -0.9650093732611821
+ - -0.8402957995208591
+ - -0.23951959101459
+ - 1.8065785430642147
+ - -2.7859760155641946
+ - 1.8601876508384285
+ - 3.6129251368159703
+ - -0.8058888405741946
+ - -0.7120177173766215
+ - -0.44320587930535543
+ - 1.9025359740341485
+ - -2.8226116184495686
+ - 2.72180194408906
+ - -1.7951632191428808
+ - 0.2074134280258306
+ - 1.4555285176589294
+ - 1.3101782338074044
+ - -1.6832918721484602
+ - -1.8250666574295118
+ - -5.149649131351562
+ - -5.203075617244117
+ - 2.7434830317118526
+ - -1.844394345200425
+ - 0.27196144295140573
+ - 1.3948639235912892
+ - -2.5932537533215423
+ - 2.8750507451495957
+ - -1.5492861386643562
+ - -3.2401561295285495
+ - -0.6519746503435553
+ - -0.042723366256978396
+ - 1.503219216750366
+ - -2.6492087256942556
+ - 2.8502753325249577
+ - -1.4509501871021528
+ - -2.8721741311168376
+ - -0.8308676674543982
+ - -0.16247914366366972
+ - 1.6722021507144318
+ - -2.730810366339738
+ - 2.8264689279956134
+ - -2.01792715967808
+ - 0.500045713066818
+ - 1.1036120653284753
+ - -1.5202687884361628
+ - -2.3105455470547867
+ - 2.943172981165474
+ - 1.7959011964579183
+ - -1.924903595002537
+ - 0.29912933975819134
+ - 1.2898591635535477
+ - -1.657299747460382
+ - -2.8116051392447274
+ - 3.2175903684969853
+ - 1.8263317636381495
+ - -1.7669855496206457
+ - 0.1717875815508197
+ - 1.398640833878661
+ - -2.638563766381362
+ - 2.864324321832145
+ - -2.240837175946174
+ - 2.55281746887648
+ - 3.264265417134419
+ - -1.1226495273569692e-15
+ - -1.3360621253956501e-15
+ - -4.0697286137608957e-16
+ - -2.1465336895751066e-16
+ - 1.3950401030706812e-16
+ - 2.7059145788140915e-17
+ - 2.9431086194636725e-16
+ - 3.067185711346626e-16
+ - 6.286572655403009e-16
+ - -7.01035569138691e-17
+ - -1.078643518769148e-16
+ - -6.678656265753144e-16
+ - -2.895132143935597e-17
+ - -1.933534681842702e-16
+ - -4.917588741627749e-17
+ - 2.569222982589704e-16
+ - 1.5071230760716162e-16
+ - 1.467418406669071e-16
+ - 2.3988237764037803e-16
+ - -2.701985470904465e-16
+ - 2.8951321439355965e-18
+ - 1.682485365932858e-16
+ - 1.4723814903443893e-17
+ - -8.42069863578982e-17
+ - -3.6611013911597e-16
+ - 1.7039920618592368e-16
+ - 7.16338410470922e-17
+ - 4.20207751176938e-17
+ - -3.9406884382026234e-16
+ - -4.480010197587198e-16
+ - -1.0753347963189358e-17
+ - -1.819797347616661e-17
+ - -5.868019265451178e-16
+ - -2.1990596584722238e-16
+ - 3.680953725860973e-17
+ - 5.479244377551255e-16
+ - -1.2821299494571927e-17
+ - -7.270917584341113e-17
+ - 2.423639194780371e-16
+ - -5.665566810528825e-16
+ - -2.216844041642114e-17
+ - -3.170169697609478e-16
+ - -1.9411861025088174e-16
+ - -9.31405369734709e-17
+ - -1.9852334701272664e-18
+ - 1.98357910890216e-16
+ - -7.940933880509066e-18
+ - 2.9728871215155815e-16
+ - -6.207990497210473e-17
+ - 1.2076836943274203e-17
+ - 4.8803656140628625e-18
+ - -1.7759567751513502e-16
+ - -1.3491315790739881e-16
+ - 1.687241654455038e-16
+ - 2.4335653621310074e-16
+ - 4.448163744003906e-17
+ - 1.0472106554921329e-16
+ - -7.15511229858369e-17
+ - 9.59529510561512e-18
+ - 1.4299884839510466e-16
+ - -1.701820712751285e-16
+ - 1.0476242457984094e-16
+ - -1.7776111363764562e-16
+ - 1.080297879994254e-16
+ - 9.082443125832243e-17
+ - 6.88214269644119e-17
+ - 4.2120036791200164e-16
+ - -5.335314950967028e-17
+ - 1.4210962923661015e-16
+ - 7.540785259186537e-17
+ - 3.1953987062923454e-16
+ - 2.0143915867197604e-16
+ - 1.6448486480616953e-16
+ - -6.038418471637102e-17
+ - 3.7355476462894725e-16
+ - -4.433688083284228e-17
+ - -1.2536956159006824e-17
+ - 2.667657475483514e-18
+ - -1.917869948992479e-16
+ - 1.9653811354259935e-16
+ - -1.919059021123024e-17
+ - 1.1725026688997744e-16
+ - 5.206843462079886e-17
+ - -2.0059129854410919e-16
+ - 1.4748630321820483e-16
+ - 7.701051502868686e-17
+ - 2.319828027904966e-16
+ - 1.5840508730390478e-16
+ - 5.452774597949558e-16
+ - -4.979627287569226e-17
+ - 2.956343509264521e-16
+ - -1.12016798551931e-15
+ - -3.48904782374867e-16
+ - 1.8115255414911306e-17
+ - 8.536503921547244e-17
+ - -1.8694281843698425e-17
+ - 2.36563315432509e-16
+ - 1.7321162026860397e-16
+ - -1.3234889800848441e-17
+ - 1.6899299914458353e-16
+ - 1.075334796318936e-18
+ - -2.1630773018261671e-16
+ - -2.1175823681357506e-16
+ - 1.8975523251966452e-16
+ - 5.889525961377557e-17
+ - -2.1457065089625535e-16
+ - 2.4980854499101433e-17
+ - -8.561319339923835e-17
+ - 8.34366744124582e-17
+ - -8.052603263203723e-17
+ - -5.0003068028830517e-17
+ - -6.021874859386041e-17
+ - -4.58051264201239e-17
+ - -1.1737692892127463e-16
+ - 3.3149263048062584e-17
+ - -1.7586893798643057e-16
+ - 1.859502017019206e-16
+ - 1.10924920143361e-16
+ - -2.5229008682867344e-16
+ - -4.1028158382630167e-17
+ - 7.891303043755883e-17
+ - 7.444625512977249e-18
+ - 2.248276904919129e-16
+ - 9.206520217715197e-17
+ - 3.168101746078096e-17
+ - 1.0257039595657542e-17
+ - -4.648755042548015e-17
+ - 3.085383684822793e-17
+ - 3.3732425379912464e-16
+ - 2.21849840286722e-16
+ - 2.6800651846718097e-16
+ - 1.1117307432712692e-16
+ - 6.140988867593676e-16
+ - -1.87563203896399e-16
+ - 2.5175241943051397e-16
+ - 2.208430063848801e-16
+ - -5.815079706247785e-17
+ - 4.613186276208235e-16
+ - -6.468552390164676e-17
+ - -2.63431175703997e-17
+ - 1.2813027688446399e-16
+ - -9.239607442217318e-17
+ - -7.068258334265621e-17
+ - 3.1978802481300045e-16
+ - -3.95888641167879e-16
+ - 1.290401755582723e-17
+ - -1.7933275680149638e-16
+ - -3.850112161128067e-16
+ - 1.5393831199611843e-16
+ - 8.10637000301967e-17
+ - 8.285247810484262e-17
+ - -1.6675961149069035e-16
+ - -4.7273372007405525e-17
+ - 4.078000419886426e-17
+ - 4.542875924141228e-16
+ - -9.028676386016296e-17
+ - 1.1249656330721176e-16
+ - 6.236941818649829e-17
+ - 3.370347405847311e-16
+ - 1.83055069557985e-16
+ - 2.1093105620102203e-17
+ - -9.016268676828e-17
+ - 2.6609366330065206e-17
+ - 3.795725035852705e-17
+ - -2.599001484641613e-16
+ - 2.3574647457761286e-17
+ - 1.985233470127266e-17
+ - -9.330597309598151e-17
+ - 9.882740368477297e-17
+ - -1.6609786700064793e-16
+ - 1.8148342639413425e-16
+ - -4.111087644388547e-16
+ - 1.919059021123024e-17
+ - -1.3234889800848443e-16
+ - 2.707982530345474e-17
+ - -1.8810087129455847e-16
+ - 1.2324991127040111e-17
+ - -1.5571675031310744e-16
+ - 7.798658815149944e-16
+ - -2.1423977865123414e-17
+- - -3.5263773832317185
+ - -2.852374898128982
+ - 2.0178984647778364
+ - -1.7645483114003735
+ - 0.8864257439562826
+ - 0.29051744331973955
+ - -1.3671322197189255
+ - 1.9479415927826211
+ - -1.3526583712028801
+ - -2.64753806789785
+ - 0.4533892775081627
+ - 0.43902663266424596
+ - 0.3769060054029127
+ - -1.4315405925433455
+ - 1.9813608900112176
+ - -1.2484542349838215
+ - -2.2952272083577956
+ - 0.24612914395414406
+ - 0.35566329121731316
+ - 0.5152591002790243
+ - -1.5309535565900765
+ - 1.9956892933186838
+ - -1.8411204606239302
+ - 1.027934114872411
+ - 0.06492708152034316
+ - -0.7197265288155051
+ - -0.9257990137892806
+ - 2.310578942367295
+ - 1.3230843733649285
+ - -1.800613891405422
+ - 0.903607770808131
+ - 0.20791121699116652
+ - -0.7936301350348143
+ - -1.1681211319839067
+ - 2.4817003693585584
+ - 1.3309339056892078
+ - -1.7285697870367434
+ - 0.8228344474844281
+ - 0.2935001997539961
+ - -1.418781359514074
+ - 1.9648039876481271
+ - -1.9295374672566392
+ - 2.7708273505362704
+ - 2.800931531427277
+ - 1.9538085033544936
+ - 1.9231375347028203
+ - 1.4226289178850144
+ - 1.35032015648575
+ - -1.3890252299350305
+ - 1.9554169271503268
+ - -1.9428306228755692
+ - 1.1945131835878346
+ - -0.13697733351902663
+ - -1.020798642368327
+ - 1.1528493363078645
+ - 1.963176562686864
+ - -2.079716950990957
+ - -1.2005254508883736
+ - 1.12419988144279
+ - -0.047619840929418046
+ - -1.141677731823225
+ - 1.1933981509487952
+ - 1.9045334703496897
+ - -1.8150586035487233
+ - -1.1544157850064944
+ - 1.0024978499247326
+ - 0.0944042651024114
+ - -1.2136093512478963
+ - 1.909092365242407
+ - -1.988216012912038
+ - 1.3690135136131572
+ - -0.2791822768928183
+ - -0.8612491433819323
+ - -1.844043999988587
+ - -0.8995192179406157
+ - 1.9364018586712828
+ - -1.9481327680847988
+ - 1.2617325630918386
+ - -0.2282082018176345
+ - -0.8196425174828027
+ - -2.2212303553939376
+ - -1.0380125710141441
+ - 1.9714430595086057
+ - -1.9193248159247494
+ - 1.1920773644735758
+ - -0.06669217286730202
+ - -1.0798223139250498
+ - 1.8237148881189922
+ - -1.4893912600370247
+ - -1.9281234863946066
+ - -3.322487000254578
+ - -2.7464628533552724
+ - 1.672541058553464
+ - -0.8100172657921726
+ - -0.36768907284591174
+ - 1.4205338361387223
+ - -2.0026266309505587
+ - 1.882407248108733
+ - -0.8873672653519887
+ - -1.9775348507757955
+ - -1.1852208055031856
+ - -0.42960328784009605
+ - 1.4815073315145688
+ - -2.018666588993839
+ - 1.8273011836327608
+ - -0.7446826130050399
+ - -1.610747298855155
+ - -1.1720556826520916
+ - -0.46778743637272757
+ - 1.5736478635812403
+ - -2.0379392993003558
+ - 1.788027824125917
+ - -0.9555086647743879
+ - -0.2081923090780882
+ - 1.251634618726206
+ - -1.2367485839205399
+ - -2.010055677527644
+ - 1.682670218976686
+ - 1.0941057552974516
+ - -0.8770302133469093
+ - -0.34891329203982124
+ - 1.3606730791116328
+ - -1.271766911567418
+ - -2.2689746009172187
+ - 1.702639852457051
+ - 1.040114219322159
+ - -0.7465027591307017
+ - -0.4366982016578498
+ - 1.4226793579137842
+ - -2.0160347914410277
+ - 1.8566805658436587
+ - -1.150178614707086
+ - 0.8326653566998689
+ - 0.9149014383547789
+ - 1.8251901820781582
+ - 1.8752592851406393
+ - 3.103069903589892
+ - 3.0869651040538972
+ - -2.0096094250962406
+ - 1.8744187827360637
+ - -1.1872649956267591
+ - -0.005230378363891238
+ - 1.0860717431395566
+ - -1.8710120200954807
+ - 1.3243413801153845
+ - 2.5282392460120566
+ - -0.82548493466583
+ - -0.6278564009637825
+ - -0.09157074045493246
+ - 1.1603568649735854
+ - -1.9242210794855954
+ - 1.3015954896895932
+ - 2.3296997930308985
+ - -0.6016442768084124
+ - -0.5486729751865194
+ - -0.2345602008209487
+ - 1.273214058606839
+ - -1.9529298451203534
+ - 1.9281952685260975
+ - -1.3152201424687335
+ - 0.22097162987502375
+ - 0.5391332030601316
+ - 0.5838173366894648
+ - -2.3293092091514827
+ - -1.2996421124975164
+ - 1.9014443171934794
+ - -1.2017428964123618
+ - 0.07936838499550786
+ - 0.6287798171177449
+ - 0.8335517751137856
+ - -2.6571573033705427
+ - -1.3881154743009965
+ - 1.8479737420646885
+ - -1.1291682939474503
+ - -0.008256952960889114
+ - 1.1445475592386454
+ - -1.8980097976560617
+ - 1.983292260414863
+ - -2.7097407486079077
+ - -3.3681694528155584
+ - 1.1760853949278947e-15
+ - 1.7053155508393217e-15
+ - 2.9560333165348135e-16
+ - 1.407861402565253e-16
+ - -1.2788212270069808e-16
+ - -1.1080084305147804e-16
+ - -1.5172560385753908e-16
+ - -2.0215260195030303e-16
+ - -4.189256212274808e-16
+ - -1.2180234519843331e-17
+ - 1.2978463810957004e-16
+ - 5.159228878069803e-16
+ - -1.0949803358670703e-16
+ - 6.586425627453483e-17
+ - -1.0753347963189358e-17
+ - -3.12012527055002e-16
+ - -7.922322316726621e-17
+ - -4.4833189200374094e-17
+ - -9.992341799640573e-17
+ - 2.4724428509209997e-16
+ - 5.96397221650733e-17
+ - -2.7048806030484002e-17
+ - -4.6322114302969544e-17
+ - 3.8008949146811615e-17
+ - 1.732322997839178e-16
+ - -1.595424606461652e-16
+ - -4.495726629225705e-17
+ - -7.527343574232552e-18
+ - 3.3757240798289054e-16
+ - 2.2904631161593336e-16
+ - 1.2407709188295414e-17
+ - 6.605037191235926e-17
+ - 8.453785860291942e-17
+ - 8.185986136977899e-17
+ - -1.2176098616780567e-16
+ - -3.8315005973456237e-16
+ - 1.8611563782443123e-17
+ - 8.801201717564213e-17
+ - -6.303116267654071e-17
+ - 3.7990337583029174e-16
+ - 1.7230172159479564e-16
+ - 8.040195554015428e-17
+ - 2.777672496953067e-16
+ - 3.821574429994987e-17
+ - -1.2002390688144432e-16
+ - -8.515824406233419e-17
+ - -4.79764755280756e-17
+ - 2.8785885316845363e-17
+ - 1.191967262688913e-16
+ - 6.121136532892405e-17
+ - -1.6072119301905325e-16
+ - 3.680953725860973e-17
+ - 1.5071230760716162e-16
+ - -5.4759356551010426e-17
+ - -1.3615392882622836e-16
+ - -5.0347511205776426e-17
+ - -9.887910247305753e-17
+ - 1.4095157637903592e-16
+ - 2.762783245927112e-17
+ - -1.0763687720846271e-16
+ - 2.9108485755741044e-16
+ - -4.79764755280756e-18
+ - 1.6948930751211535e-16
+ - -1.162188760637004e-16
+ - -2.0497535579064023e-16
+ - -1.0527941246268658e-16
+ - -2.8868603378100666e-16
+ - 1.6543612251060552e-18
+ - 3.399712317592944e-17
+ - -4.7418128614602305e-17
+ - -1.386768296945151e-16
+ - -1.0075059860895876e-16
+ - -7.514935865044256e-17
+ - -5.552449861762198e-17
+ - -3.7185904437321354e-16
+ - -1.0703717126436177e-16
+ - 4.743880812991613e-17
+ - 1.2689984572329136e-16
+ - 1.663046621537862e-16
+ - -7.595585974768175e-17
+ - 3.0533304360863634e-17
+ - -5.686866711302065e-17
+ - -4.6549588971421626e-17
+ - 1.4186147505284425e-17
+ - -9.746255567406047e-17
+ - -3.101927297073854e-17
+ - -1.5089842324498605e-16
+ - -4.0065914685683715e-17
+ - -4.226892930145971e-17
+ - -1.9906101441088609e-16
+ - -1.5815693312013887e-16
+ - 7.452897319102778e-16
+ - 2.1738306497893565e-16
+ - -1.3065317775275072e-16
+ - -1.0530009197800041e-16
+ - 1.7701665108634792e-17
+ - -1.6250997109369917e-16
+ - -3.2425480012078685e-17
+ - -7.634877053864444e-17
+ - -1.6845533174642406e-16
+ - 4.264116057710857e-17
+ - -2.1465336895751065e-17
+ - 7.399130579286833e-17
+ - -1.0865017345884017e-16
+ - 8.817745329815274e-17
+ - 1.9984683599281146e-16
+ - -3.461750863534421e-17
+ - 8.920108930618711e-17
+ - 1.0976686728578676e-16
+ - 5.914341379754148e-17
+ - 8.814643402518201e-18
+ - 8.528232115421714e-17
+ - 5.484207461226573e-17
+ - -2.192028623265523e-17
+ - -3.2714993226472245e-17
+ - 1.4765173934071544e-16
+ - -9.785546646502316e-17
+ - -7.510799961981491e-17
+ - 3.0159005133683384e-16
+ - -2.613890735667567e-17
+ - -5.211237859084074e-17
+ - -4.17726209339279e-18
+ - 4.417144471033167e-17
+ - -4.586716496606538e-17
+ - 4.059388856103983e-17
+ - 4.582580593543773e-17
+ - 3.465886766597186e-17
+ - -7.4859845436049e-18
+ - -1.8462671272183575e-16
+ - -1.8479214884434636e-16
+ - -1.1472995096110494e-16
+ - -3.3914405114674135e-17
+ - -1.9997091308469442e-16
+ - 2.2333876538931747e-18
+ - -1.0938429625248098e-16
+ - -1.637869311643279e-16
+ - 9.347140921849213e-18
+ - -3.5792105105169503e-16
+ - 7.312276614968765e-17
+ - 4.1927717298781584e-17
+ - -9.165161187087545e-17
+ - 1.253178628017837e-16
+ - 3.503109894162072e-17
+ - -1.9943324568653495e-16
+ - 2.1407434252872354e-16
+ - -4.80591935893309e-17
+ - 1.0511397634017598e-16
+ - 3.517171964575473e-16
+ - -1.4831348383075786e-16
+ - -2.249931266144235e-17
+ - 8.966637840074819e-17
+ - 2.6499312534504443e-16
+ - 6.791152829060357e-17
+ - -1.7050260376249283e-17
+ - -2.0017770823783267e-16
+ - 1.1451281605030975e-17
+ - -8.25939841634198e-17
+ - -1.6295458067294643e-16
+ - -1.913475551988291e-16
+ - -6.154223757394526e-17
+ - -8.147729033647323e-18
+ - 1.9154401059431047e-18
+ - 6.836647762750774e-17
+ - -3.010161947868752e-17
+ - -2.812414082680294e-17
+ - -4.19380570564385e-17
+ - -1.323282184931706e-16
+ - 3.972534891785915e-17
+ - -2.302043644735076e-16
+ - 1.6709048373571157e-16
+ - -8.007108329513307e-17
+ - 2.373594767720913e-16
+ - 2.4112314855920754e-17
+ - 1.1200025493967995e-16
+ - -5.796468142465341e-17
+ - -1.747419044018271e-17
+ - -5.484207461226573e-17
+ - 2.4236391947803708e-17
+ - -6.849055471939068e-16
+ - 3.780215399367336e-16
+- - 3.3833398196219586
+ - 2.6685742377107995
+ - -2.2131630499607127
+ - 2.6635476869125125
+ - -2.251825676493303
+ - 1.0315308772589178
+ - 0.4738079858036937
+ - -1.8277976796055635
+ - 1.7444942555626919
+ - 3.1366897375051535
+ - -2.2957920079640726
+ - -1.3943595581670656
+ - 0.9256588916336473
+ - 0.5877085859071647
+ - -1.9592078745896033
+ - 1.6958853900030506
+ - 2.838901905797119
+ - -1.8563903662378944
+ - -1.2678062653018642
+ - 0.7482299164015705
+ - 0.7683606515090179
+ - -2.03443897973713
+ - 2.6524192485119094
+ - -2.3574391677175703
+ - 1.2983314179955676
+ - 0.04583080182067328
+ - -0.4248250152443543
+ - -2.7873329023699758
+ - -1.445376420508839
+ - 2.660677609895468
+ - -2.2647725447933116
+ - 1.1320871246593838
+ - 0.15668050463229208
+ - -0.2276618401572071
+ - -3.1145536397200995
+ - -1.5237540963151472
+ - 2.6632843993775484
+ - -2.2013440455775477
+ - 1.0278805081937044
+ - 0.5640614853014607
+ - -1.8920317561614106
+ - 2.608853558398852
+ - -4.710751143717477
+ - -4.6775609983399455
+ - -1.8987132153338164
+ - -1.7797144868796462
+ - 0.6701647738332202
+ - 0.8005708048979031
+ - 0.5116941773759329
+ - -1.8555812109033107
+ - 2.5973207927267756
+ - -2.4678108972862955
+ - 1.5224705000427627
+ - -0.08278413665607942
+ - -0.8328339219430436
+ - -1.102733991973709
+ - 3.3092142389722747
+ - 1.7353617264401913
+ - -2.422849185642045
+ - 1.4257162262433467
+ - 0.10409454265525084
+ - -0.9422335884434135
+ - -1.211945133555306
+ - 3.0253346975720006
+ - 1.7323377670710443
+ - -2.339199658858595
+ - 1.2644262186733006
+ - 0.21778724750363437
+ - -1.6984801811923393
+ - 2.5424600016955132
+ - -2.5641182503821716
+ - 1.1952403998938441
+ - 2.4400079143095588
+ - 1.0883956150104703
+ - 0.3420911337153481
+ - -1.7847775842662865
+ - 2.592018627498526
+ - -2.5072578676589576
+ - 1.1943385995826372
+ - 2.643285106603471
+ - 1.482732602308894
+ - 0.5237439919598552
+ - -1.9189779769487736
+ - 2.6162531389742183
+ - -2.4663132175981617
+ - 1.445977661570869
+ - 0.007001273751464038
+ - -1.4598055358642021
+ - 3.4043904773834464
+ - 4.245881449219229
+ - 4.6879939735831355
+ - 3.802988397358622
+ - -2.6598921187385343
+ - 2.1672622206377565
+ - -0.974347781889505
+ - -0.6195530439743105
+ - 1.9306740288154263
+ - -2.618242731970353
+ - 1.7262049252070382
+ - 3.4234505020474217
+ - -0.3026027545565108
+ - -0.426680146515558
+ - -0.7297258678221351
+ - 2.0088529901277608
+ - -2.645667918261135
+ - 1.5793948520378505
+ - 2.948619349475498
+ - -0.06586859181069163
+ - -0.3233708414190391
+ - -0.9074136950782963
+ - 2.1262796883393853
+ - -2.6557739726741145
+ - 2.2827737763044564
+ - -1.167389813880143
+ - -0.3277692792037107
+ - 1.0608166813209459
+ - 1.4425771455029874
+ - -2.9797406610851023
+ - -1.7305608029421722
+ - 2.2222993788855634
+ - -0.9968326541722669
+ - -0.5122054680961078
+ - 1.1526264178476344
+ - 1.7704259919218979
+ - -3.1809462919202365
+ - -1.7295710238887751
+ - 2.1139934172258155
+ - -0.888152396211283
+ - -0.62339419277144
+ - 1.9927786091715978
+ - -2.632949304005204
+ - 2.4210510610476863
+ - -3.352563833974262
+ - -3.402658159282937
+ - -2.59345796919654
+ - -2.567106826753538
+ - -2.218374988509032
+ - -2.1320564505372803
+ - 1.9572812133619015
+ - -2.626392154313601
+ - 2.4449363918296174
+ - -1.399130455013857
+ - -0.06269640812404398
+ - 1.5061141386660855
+ - -1.5773227865257042
+ - -2.7365439026523184
+ - 2.5559730546579824
+ - 1.5034614535985131
+ - -1.3010161536885378
+ - -0.17883177617572246
+ - 1.6565114904665785
+ - -1.619963909628413
+ - -2.632028925935705
+ - 2.208693870078531
+ - 1.4355145480801756
+ - -1.1347921074395364
+ - -0.36470781803325714
+ - 1.744070359712181
+ - -2.582796771390017
+ - 2.5210297584175594
+ - -1.642646572987662
+ - 0.22276422964751572
+ - 0.8870690616149445
+ - 2.5620462806407827
+ - 1.2800277943478955
+ - -2.608513399165042
+ - 2.4545981190367367
+ - -1.4915992915488157
+ - 0.14726556833368828
+ - 0.792750933963378
+ - 3.0585675196818936
+ - 1.4564334648308521
+ - -2.639987771831326
+ - 2.407013798949657
+ - -1.3957647592146145
+ - -0.15471077441002812
+ - 1.579271593757146
+ - -2.4943339835177185
+ - 3.8273616948355387
+ - 4.6686751273446925
+ - -7.203915954724317e-16
+ - -1.2224075092308641e-15
+ - -1.6935489066257548e-16
+ - -2.7203902395337695e-17
+ - 4.1524466750161983e-17
+ - 4.582580593543773e-17
+ - 1.5277379679000862e-16
+ - 1.973032556092109e-16
+ - 1.1751651564964295e-16
+ - 4.8431424864979764e-17
+ - -2.9447629806887785e-17
+ - -4.3865387883687053e-16
+ - 1.730772034190641e-16
+ - -8.354524186785578e-17
+ - -6.265893140089185e-17
+ - 1.9885421925774783e-16
+ - 2.0307284038176826e-17
+ - 6.030146665511572e-17
+ - 1.7585859822877366e-16
+ - -1.9380841752117436e-16
+ - 4.115223547451313e-18
+ - 6.551270451419979e-17
+ - 9.669741360744892e-17
+ - 2.3274794485710813e-17
+ - -1.6295458067294643e-16
+ - -3.6065074707312007e-17
+ - 9.512577044359818e-19
+ - 6.121136532892404e-18
+ - -1.292676502267244e-16
+ - -2.779326858178173e-17
+ - 1.5013328117837452e-16
+ - -1.0050244442519285e-16
+ - -4.388193149593811e-17
+ - 1.0000613605766103e-16
+ - 2.1225454518110688e-16
+ - 5.0209863181968774e-17
+ - 4.404736761844872e-17
+ - -3.561012537040784e-17
+ - -4.4915907261629397e-17
+ - -3.027687837097219e-16
+ - -1.2201431023040004e-16
+ - 5.955700410381799e-17
+ - -3.0183820552059975e-16
+ - 6.427193359537025e-17
+ - 1.4314360500230144e-16
+ - -7.184063620023045e-17
+ - 1.0095739376209702e-16
+ - -6.218330254867386e-17
+ - -2.1936829844906291e-16
+ - -8.311097204626544e-17
+ - 2.8802428929096424e-16
+ - 4.475047113911879e-17
+ - -1.5354540120515574e-16
+ - -6.849055471939069e-17
+ - -7.543887186483611e-17
+ - 2.917879610780805e-17
+ - 6.203854594147708e-17
+ - -2.2623389753325304e-17
+ - -2.2995621028974166e-17
+ - 1.1431636065482842e-16
+ - -3.145354279232887e-16
+ - -1.8115255414911306e-17
+ - -1.680831004707752e-16
+ - 1.1448179677733903e-16
+ - 2.03817302933066e-16
+ - 1.7979804589605745e-16
+ - 4.9299964508160443e-17
+ - -1.1073880450553656e-17
+ - -2.066297170157463e-16
+ - 1.5995605095244173e-17
+ - 1.1660661697583462e-16
+ - 3.722312756488624e-19
+ - 4.466775307786349e-17
+ - 1.1849362274822121e-16
+ - 3.306240908374451e-16
+ - 1.342979423268125e-16
+ - -1.5582014788967656e-16
+ - -2.404407245538513e-16
+ - -9.262354909062526e-17
+ - -1.0264794413900226e-17
+ - 1.7412151894241233e-17
+ - 1.431022459716738e-17
+ - 5.980774322699813e-17
+ - 1.3743605877568555e-16
+ - 6.228670012524298e-17
+ - 2.3657365519016588e-17
+ - 1.376428539288238e-16
+ - 1.0546552810051101e-17
+ - -1.9691034481824821e-16
+ - 2.027006091061194e-16
+ - 8.197359870400503e-17
+ - -7.467786570128733e-16
+ - -2.285086442177739e-16
+ - 9.395737782836702e-17
+ - 3.1226068123876795e-17
+ - -5.9557004103817985e-18
+ - 1.7652034271881608e-16
+ - 3.044024654195142e-17
+ - 1.375601358675685e-16
+ - 1.2953648392580413e-16
+ - -5.488343364289338e-17
+ - 2.565087079526939e-16
+ - 6.588493578984865e-17
+ - 1.2473883637299657e-16
+ - -2.6883369907973396e-17
+ - -1.593149859777131e-16
+ - -3.0398887511323763e-18
+ - -1.1477130999173257e-17
+ - 1.555099551599692e-17
+ - -3.4493431543461254e-17
+ - 8.757774735405179e-17
+ - -1.10924920143361e-16
+ - -1.080297879994254e-16
+ - 8.011244232576072e-17
+ - -7.399130579286833e-17
+ - -1.4864435607577907e-16
+ - 2.2664748783952955e-17
+ - 9.826905677129968e-17
+ - -2.041481751780872e-16
+ - 8.321436962283457e-17
+ - 6.669143688708786e-17
+ - 3.2260043889568075e-18
+ - -1.3045672235726938e-16
+ - 6.89041450256672e-17
+ - -1.639058383773824e-16
+ - -1.6072119301905325e-16
+ - -1.1317381743373956e-16
+ - -4.685978170112901e-17
+ - 1.1489538708361554e-16
+ - 1.5420714569519816e-16
+ - 2.69660879692287e-17
+ - -1.9459423910309973e-17
+ - 9.942710962887391e-17
+ - 8.366931895973874e-17
+ - -8.230447094902625e-18
+ - 7.113753267956038e-18
+ - 7.568702604860202e-17
+ - 4.092682875759242e-16
+ - 8.08982639076861e-17
+ - -7.610061635487853e-17
+ - 1.8975523251966452e-16
+ - -1.5732975250758584e-16
+ - -4.34683411896616e-17
+ - 6.435465165662555e-17
+ - 1.108422020821057e-16
+ - 4.322018700589569e-17
+ - -6.56781406367104e-17
+ - -1.6685266930960257e-16
+ - 1.401243957664829e-16
+ - 1.819797347616661e-17
+ - -2.156459856925743e-16
+ - -3.2839070318355194e-16
+ - -5.864710543000966e-17
+ - -4.384057246531046e-17
+ - -1.1623955557901421e-16
+ - 1.87834622534893e-17
+ - -2.39882377640378e-17
+ - -2.5506889669896873e-18
+ - 1.0530009197800041e-16
+ - -2.3161057151484775e-18
+ - 8.497212842450976e-17
+ - 8.561319339923835e-17
+ - -9.70799846407547e-17
+ - 3.101410309191008e-17
+ - 2.8504643908577334e-16
+ - 4.638415284891102e-17
+ - 1.8003586032216645e-16
+ - -1.5799149699762826e-16
+ - 3.3039661616899303e-16
+ - -2.0166663334042812e-16
+ - 7.841672207002701e-17
+ - -3.110199103199384e-17
+ - 6.549202499888597e-17
+ - -3.995282358631123e-17
+ - 4.867957904874567e-17
+ - 6.245213624775359e-17
+ - 2.431911000905901e-17
+ - 4.177262093392789e-17
+ - 3.359180467577845e-16
+ - -1.0711988932561707e-16
+- - 9.99091964178305
+ - 7.95956198713959
+ - -6.229184619405501
+ - 6.7182829351962825
+ - -5.033814216521384
+ - 1.5033114415500268
+ - 2.358546131699225
+ - -5.461909104317406
+ - 4.6311229631535795
+ - 8.567706247235705
+ - -4.61193733592478
+ - -2.9839811461740062
+ - 1.2181797958393117
+ - 2.63492758100732
+ - -5.733513267910469
+ - 4.427748388939249
+ - 7.641484084882114
+ - -3.5945920686275947
+ - -2.6645206074073844
+ - 0.7455630158563644
+ - 3.06833526222079
+ - -5.884780505953834
+ - 6.78398150012052
+ - -5.3808365058961
+ - 2.2325111236784894
+ - 0.8862988515593673
+ - 0.27498959613837115
+ - -7.566440025194161
+ - -4.06321029764603
+ - 6.754207690067378
+ - -5.075462913963737
+ - 1.776171232061999
+ - 1.1671102751327143
+ - 0.8983644318441162
+ - -8.342804340090227
+ - -4.212135967597155
+ - 6.677626625006951
+ - -4.872500419194129
+ - 1.4934525382418324
+ - 2.5776798971263353
+ - -5.595641177169622
+ - 6.8048929146469375
+ - -11.520168943247448
+ - -11.49445838341674
+ - -5.5787381834117555
+ - -5.331672888531479
+ - -0.39154617204028724
+ - -0.07754948081555345
+ - 2.450784813930485
+ - -5.519972217484166
+ - 6.799126951330449
+ - -5.7643416005773105
+ - 2.858926220900759
+ - 0.9762421747649496
+ - -2.7776394873594152
+ - -4.165871165024164
+ - 8.241623999459483
+ - 4.444774869616235
+ - -5.604634636393168
+ - 2.586779204406701
+ - 1.446229259075647
+ - -3.018577780451563
+ - -4.295616187173041
+ - 7.438227123499598
+ - 4.387834907526796
+ - -5.319770804472869
+ - 2.1389162076708392
+ - 1.7291896199580292
+ - -5.1872547132793105
+ - 6.75172591223171
+ - -6.131569177123769
+ - 2.4492809698081444
+ - 5.3256184290078545
+ - 4.007076034028757
+ - 1.6169914666942053
+ - -5.371359642561836
+ - 6.796275552867455
+ - -5.909273009348476
+ - 2.390702781279031
+ - 5.642613978781018
+ - 5.1337428724832
+ - 2.096590069045306
+ - -5.6512183286037
+ - 6.806687008465632
+ - -5.758942283185545
+ - 2.643620682313619
+ - 1.2027290807350026
+ - -4.665048316273081
+ - 8.16700904886542
+ - 9.78458367736835
+ - 12.095970196790287
+ - 9.86969871065563
+ - -6.642037681160705
+ - 4.764077241346106
+ - -1.3479033853448965
+ - -2.7119722892748825
+ - 5.673864769796085
+ - -6.802105405312666
+ - 4.078415134110757
+ - 8.331691145532934
+ - 0.783481689457146
+ - -0.2828509681930355
+ - -2.9763913181684813
+ - 5.832315199159494
+ - -6.788834187498177
+ - 3.6564364573884736
+ - 7.072709872238979
+ - 1.1920822257708956
+ - -0.05544601540600473
+ - -3.397825044037535
+ - 6.063103368512854
+ - -6.763742574295559
+ - 5.13325058045056
+ - -1.8713661003645858
+ - -2.0014571184468117
+ - 3.279067296329326
+ - 4.8259443782165174
+ - -7.2087518798314285
+ - -4.317260072323764
+ - 4.938135909859327
+ - -1.4083891087430105
+ - -2.452390106303794
+ - 3.482374363992865
+ - 5.7015528472050905
+ - -7.590857797554726
+ - -4.255151835095629
+ - 4.597865998440492
+ - -1.1166732532529617
+ - -2.7212387481445015
+ - 5.799927966403254
+ - -6.799678056798713
+ - 5.597984392876004
+ - -6.925036011863925
+ - -7.106491901138823
+ - -6.671365065572857
+ - -6.678673396247269
+ - -7.434700478874889
+ - -7.263303185487391
+ - 5.72943280552098
+ - -6.807777335090142
+ - 5.68223065697613
+ - -2.512559426620973
+ - -1.342460431707791
+ - 4.767624336262506
+ - -4.300557572078776
+ - -7.718880313381736
+ - 5.493002306304527
+ - 3.3900940142075227
+ - -2.239894721809865
+ - -1.6324197221213326
+ - 5.096749822645731
+ - -4.35138389326068
+ - -7.310103699795952
+ - 4.621853582935056
+ - 3.180099089286456
+ - -1.7835843545883454
+ - -2.091649604907115
+ - 5.284673301430742
+ - -6.789897562612592
+ - 5.961273788079804
+ - -3.20079926104012
+ - -0.2041951428056656
+ - 0.9337379004304109
+ - 7.184515340901716
+ - 3.741338658459166
+ - -6.80525779654716
+ - 5.716390362670897
+ - -2.771723845592081
+ - -0.43938408470684703
+ - 0.4859860200202984
+ - 8.438763302275825
+ - 4.155652798824456
+ - -6.802506354276833
+ - 5.549465203611912
+ - -2.503158059904006
+ - -1.572323383065926
+ - 4.928587403020208
+ - -6.693286174167477
+ - 9.872241132116788
+ - 12.112478561788038
+ - -1.8439510215032093e-15
+ - -3.2607459746840347e-15
+ - -3.8877488789992296e-16
+ - 1.0339757656912845e-16
+ - 9.454674401481105e-17
+ - 1.6080391108030856e-16
+ - 7.07073987610328e-16
+ - 4.777795218106288e-16
+ - 1.0554824616176632e-16
+ - 1.0918784085699964e-17
+ - -7.378451063973007e-17
+ - -1.3062836233437411e-15
+ - 1.5716431638507523e-16
+ - -4.284795573024683e-16
+ - -1.10924920143361e-16
+ - 6.511565782017433e-16
+ - 8.147729033647321e-17
+ - 2.979090976109729e-16
+ - 5.041252243204427e-16
+ - -4.134248701540032e-16
+ - -1.654361225106055e-19
+ - 3.2044976930304287e-16
+ - 2.80579663777987e-16
+ - 1.828896334354744e-16
+ - -3.836463681020942e-16
+ - 1.0091603473146936e-16
+ - 4.22224003920036e-17
+ - 3.58996385848014e-17
+ - -2.772709413277749e-16
+ - -1.2639319759810263e-16
+ - 3.5326816010608424e-16
+ - -3.073389565940774e-16
+ - -6.19392842679707e-16
+ - 3.154866856277247e-16
+ - 5.338623673417241e-16
+ - 2.6043781586232076e-16
+ - 2.440415451578712e-16
+ - 6.452008777913616e-17
+ - -7.279189390466644e-17
+ - -8.7292370042721e-16
+ - -2.3127969926982654e-16
+ - -2.855841064839328e-17
+ - -8.695322599157426e-16
+ - 2.488572872865784e-16
+ - 3.781869760592442e-16
+ - -7.767225951872929e-17
+ - 2.517110603998863e-16
+ - 4.903526671214348e-16
+ - -6.809350802536523e-16
+ - -1.976961664001736e-16
+ - 5.601667108209103e-16
+ - 2.8031083007890725e-17
+ - -2.634570250981393e-16
+ - 8.040195554015428e-17
+ - -1.7205356741102973e-16
+ - 9.181704799338606e-17
+ - 1.6262370842792522e-16
+ - 2.547716286663325e-16
+ - -6.5843576759221e-17
+ - 2.718115492849249e-16
+ - -6.66376701472719e-16
+ - -9.214792023840727e-17
+ - -4.589198038444198e-16
+ - 3.331883507363595e-16
+ - 5.419687373447437e-16
+ - 4.977145745731568e-16
+ - 6.931773533194372e-17
+ - -1.7337705639111458e-16
+ - -3.2243500277317014e-16
+ - 5.0499376396362333e-17
+ - 3.2888701155108375e-16
+ - -1.3549218433618593e-16
+ - 8.950094227823758e-17
+ - 2.731143587496959e-16
+ - 8.347906741885154e-16
+ - 3.446034431895913e-16
+ - -4.435342444509334e-16
+ - -4.1226681729642894e-16
+ - -5.310499532590437e-17
+ - 4.677706363987371e-17
+ - 4.20207751176938e-17
+ - -1.4823076576950256e-16
+ - 1.8843174353957968e-16
+ - 2.6155450968926735e-16
+ - 2.286740803402845e-16
+ - 1.3336219425886189e-16
+ - 4.1226681729642894e-16
+ - 9.165161187087545e-17
+ - -4.556110813942076e-16
+ - 4.132594340314926e-16
+ - -5.98878763488392e-17
+ - -1.7606952928497469e-15
+ - -6.840783665813538e-16
+ - 1.2664135178186854e-16
+ - 1.3863547066388744e-16
+ - 8.205631676526033e-17
+ - 3.7740115447731883e-16
+ - 2.4683069478582346e-16
+ - 1.2970192004831474e-16
+ - 2.1936829844906291e-16
+ - -2.241659460018705e-16
+ - 5.039184291673045e-16
+ - 1.565025718950328e-16
+ - 4.729818742578212e-16
+ - 3.0713216144093913e-16
+ - -1.316044354571867e-16
+ - -1.613002194478404e-17
+ - 2.043136113005978e-17
+ - 3.5237894094758974e-16
+ - -1.531111313835654e-16
+ - 1.887626157846009e-16
+ - -2.4037868600790984e-16
+ - -3.3765512604414585e-16
+ - 1.2937104780329353e-16
+ - -2.9182932010870816e-16
+ - -1.558408274049904e-16
+ - 1.7652034271881608e-16
+ - 2.99439381744196e-16
+ - -3.079179830228645e-16
+ - 5.914341379754148e-17
+ - 3.0936554909483235e-17
+ - 3.226004388956808e-17
+ - -1.8776999904953726e-16
+ - 2.0861495048587355e-16
+ - -2.8885146990351726e-16
+ - -1.952146245625145e-16
+ - -2.488159282559507e-16
+ - -2.24522667641034e-16
+ - 2.2598574334948716e-16
+ - 2.6597992596642605e-16
+ - 1.3565762045869652e-17
+ - 1.3565762045869652e-17
+ - 5.32683634968836e-16
+ - 1.1530897738989206e-16
+ - 1.133237439197648e-16
+ - -1.8528845721187817e-16
+ - 2.0241109589172585e-16
+ - 7.712632031444429e-16
+ - 4.1557553974664105e-16
+ - -2.307833909022947e-16
+ - 3.388131789017201e-16
+ - -4.637174513972273e-16
+ - -1.0993230340829737e-16
+ - 2.4352197233561135e-16
+ - 4.71823821400247e-16
+ - 2.024524549223535e-17
+ - -1.588186776101813e-16
+ - -1.0620999065180874e-16
+ - 3.126742715450444e-16
+ - 1.1018045759206327e-16
+ - -4.630557069071849e-16
+ - -8.519960309296184e-16
+ - -1.5137405209720404e-16
+ - -9.032812289079061e-17
+ - -3.806064793509618e-16
+ - 1.0825726266787748e-17
+ - -7.775497757998459e-17
+ - -2.802487915329658e-16
+ - 2.385588886602932e-16
+ - -7.246102165964522e-17
+ - 1.8094575899597478e-16
+ - 1.6270642648918052e-16
+ - -1.7021309054809925e-16
+ - 1.833859418030062e-16
+ - 8.538158282772351e-16
+ - 1.0993230340829737e-16
+ - 4.08461786478685e-16
+ - -4.652063764998228e-16
+ - 7.563739521184884e-16
+ - -3.646625730440022e-16
+ - 1.9157502986728118e-16
+ - -1.3102540902839958e-16
+ - 3.121779631775126e-16
+ - 1.0091603473146936e-16
+ - 4.7562885221799085e-17
+ - 7.926458219789386e-17
+ - 1.8032537353656003e-17
+ - 1.3234889800848443e-16
+ - 9.05928206868076e-16
+ - 9.85999290163209e-16
+- - 12.102724979360946
+ - 9.863506350203236
+ - -6.690929507500702
+ - 4.935977637489068
+ - -1.587056314923941
+ - -2.4858672352482754
+ - 5.535497725764878
+ - -6.79639106658689
+ - 4.157459021373367
+ - 8.438849419825232
+ - 0.46413410543584277
+ - -0.45025391094513795
+ - -2.7544893828773778
+ - 5.7028821645167
+ - -6.800293331800261
+ - 3.7440708863168655
+ - 7.186075262984828
+ - 0.914300127878272
+ - -0.21471708303773168
+ - -3.1837276593881367
+ - 5.948558961495285
+ - -6.785647297435557
+ - 5.290800911768677
+ - -2.1056160539443236
+ - -1.7662925387916895
+ - 3.170103186078064
+ - 4.602988866680106
+ - -7.310797587216299
+ - -4.349909839809035
+ - 5.103564729046885
+ - -1.6470700940086986
+ - -2.222577589694217
+ - 3.380389614551632
+ - 5.473028198720576
+ - -7.721125465700849
+ - -4.299941545155726
+ - 4.775538418045449
+ - -1.357499126222451
+ - -2.4952698978421206
+ - 5.668625217075051
+ - -6.8022117259798565
+ - 5.733717303194604
+ - -7.2816906468143285
+ - -7.452548402174359
+ - -6.679464586269652
+ - -6.671443372130325
+ - -7.092109396263283
+ - -6.910204126548002
+ - 5.592360095275721
+ - -6.799758787805621
+ - 5.805676931192514
+ - -2.730929121341482
+ - -1.1064577378593425
+ - 4.590433000353853
+ - -4.253364161711484
+ - -7.5855241904753425
+ - 5.711436303776337
+ - 3.486810685275638
+ - -2.462236129003594
+ - -1.3982728484300055
+ - 4.931233036339887
+ - -4.315990702652851
+ - -7.204608961666029
+ - 4.8355654848356195
+ - 3.2837947948158868
+ - -2.0115181983835497
+ - -1.8614507447955488
+ - 5.126688271804107
+ - -6.762998347612452
+ - 6.068146331470518
+ - -3.4070288221142055
+ - -0.04867090471725747
+ - 1.203934492523858
+ - 7.068081359928098
+ - 3.652808937906888
+ - -6.788535079890481
+ - 5.8379852772965455
+ - -2.9859155933926895
+ - -0.27573615655895345
+ - 0.7970913959109645
+ - 8.327361951045
+ - 4.075164957262242
+ - -6.802537488281133
+ - 5.679910649015824
+ - -2.721668335467167
+ - -1.337765306122883
+ - 4.756895009191369
+ - -6.640141817719796
+ - 9.870236995015604
+ - 12.096019752540961
+ - 9.774112349457047
+ - 8.158063116490618
+ - -4.66085136120137
+ - 1.2044199082788267
+ - 2.6365971702490807
+ - -5.74877489558851
+ - 6.7969126026507105
+ - -5.645003642888894
+ - 2.095697331832903
+ - 5.130053471838061
+ - 5.630949403671408
+ - 2.385202016605546
+ - -5.899016335375353
+ - 6.786667960129191
+ - -5.365746756056682
+ - 1.6167672842789955
+ - 4.00471395721527
+ - 5.315020617179875
+ - 2.4438583900566884
+ - -6.121207936292803
+ - 6.742425666672701
+ - -5.182022766429655
+ - 1.7300615374067816
+ - 2.132523898128699
+ - -5.309921462562853
+ - 4.381190166427246
+ - 7.42629745990287
+ - -4.292744641845843
+ - -3.015879697754808
+ - 1.447544454757953
+ - 2.5798253816129386
+ - -5.5945700546274955
+ - 4.438189867295051
+ - 8.228727264424913
+ - -4.163631616368109
+ - -2.7754134775301584
+ - 0.9782788585618237
+ - 2.851640750983014
+ - -5.754170827422512
+ - 6.789483452892916
+ - -5.514043085720257
+ - 2.4505050618214335
+ - -0.08353325427488911
+ - -0.3970090023205485
+ - -5.325978021675589
+ - -5.572467581135708
+ - -11.473833840508213
+ - -11.499245183005659
+ - 6.799934580595863
+ - -5.600521821948638
+ - 2.590829381292832
+ - 1.4762193704186524
+ - -4.857118722551001
+ - 6.669080651086508
+ - -4.212281961057875
+ - -8.339672167505102
+ - 0.917985799353181
+ - 1.176563065876257
+ - 1.758879790867348
+ - -5.060442350766237
+ - 6.746738478714856
+ - -4.064219732312942
+ - -7.5649245824392715
+ - 0.2935840945342441
+ - 0.8960702585239797
+ - 2.2151946394061017
+ - -5.366457625824676
+ - 6.77718754106491
+ - -5.888330865096152
+ - 3.080551682797126
+ - 0.7286270001168542
+ - -2.653840346021528
+ - -3.575007611029244
+ - 7.6391054168759105
+ - 4.424565112503112
+ - -5.73778535781924
+ - 2.647974838960512
+ - 1.2010311566989889
+ - -2.972922383368495
+ - -4.589857981728066
+ - 8.56668087529102
+ - 4.628831574136084
+ - -5.467347181383656
+ - 2.372077163425606
+ - 1.4860758835240309
+ - -5.018716672691578
+ - 6.710249618427102
+ - -6.230827695414758
+ - 7.967312026488373
+ - 9.9994523842457
+ - -2.740945677755712e-15
+ - -4.146490974605817e-15
+ - -7.365216174172157e-16
+ - -1.4130312813937095e-16
+ - 2.977048873972489e-16
+ - 2.26482051717019e-16
+ - 8.960020395174396e-16
+ - 6.435465165662554e-16
+ - 9.009651231927577e-16
+ - -1.0455562942670269e-16
+ - -2.715840746164728e-16
+ - -1.6457585467355037e-15
+ - -8.99972506457694e-17
+ - -5.866364904226072e-16
+ - -2.8496372102451803e-17
+ - 8.329708768408988e-16
+ - 2.511320339710992e-16
+ - 4.289551861546863e-16
+ - 5.098741295776863e-16
+ - -4.880365614062863e-16
+ - -6.452008777913616e-17
+ - 4.0366413892587746e-16
+ - 1.8677738231447362e-16
+ - 4.983763190631991e-17
+ - -5.927214378037004e-16
+ - 4.628489117540466e-16
+ - 1.591495498552025e-16
+ - 6.385834328909374e-17
+ - -6.746485075982493e-16
+ - -6.911921198493098e-16
+ - 4.135903062765138e-17
+ - -2.4087499437544166e-16
+ - -1.1681444610473857e-15
+ - -1.0918784085699964e-16
+ - 3.635251997017418e-16
+ - 1.050188505697324e-15
+ - 1.7585859822877366e-16
+ - 6.871285950901432e-17
+ - 3.0109374296930207e-16
+ - -1.2116748407829886e-15
+ - -2.276401045745932e-16
+ - -5.629791249035906e-16
+ - -8.478601278668533e-16
+ - -5.9557004103817985e-18
+ - 2.266474878395296e-16
+ - 2.627125625468416e-16
+ - 9.810362064878907e-17
+ - 9.348381692768042e-16
+ - -5.269140501962786e-16
+ - -1.0174321534402239e-16
+ - 1.831377876192403e-16
+ - -2.1769325770864303e-16
+ - -2.5614940137411616e-16
+ - 4.1574097586915166e-16
+ - 3.7719435932418057e-16
+ - 1.3681567331627078e-16
+ - 2.6684846560960673e-16
+ - 1.4943017765770445e-16
+ - -5.955700410381799e-17
+ - 2.593314617930311e-16
+ - -5.19634860805812e-16
+ - -1.8363409598677214e-17
+ - -4.705003324201621e-16
+ - 3.5585309952031246e-16
+ - 5.219509665209605e-16
+ - 3.5568766339780185e-16
+ - 6.610827455523796e-16
+ - -1.9701374239481734e-16
+ - 2.041481751780872e-16
+ - 1.5857052342641538e-16
+ - 4.958120591642848e-16
+ - 1.1125579238838222e-16
+ - 2.1909946474998318e-16
+ - 1.1109035626587162e-16
+ - 9.033639469691615e-16
+ - 2.357464745776129e-16
+ - -2.248276904919129e-16
+ - -4.764560328305439e-17
+ - -2.1043474783349022e-16
+ - 3.5060050263060073e-16
+ - -6.385834328909374e-17
+ - 5.624828165360588e-17
+ - 1.432676820941844e-16
+ - -2.097730033434478e-16
+ - 3.536197118664193e-16
+ - 1.9901965538025843e-16
+ - 5.37667398159468e-16
+ - 2.4931223662348254e-16
+ - 4.585889315993985e-16
+ - 3.126742715450444e-16
+ - 2.299562102897417e-16
+ - -2.091112588534054e-15
+ - -7.950860047859701e-16
+ - 1.0827794218319131e-16
+ - 3.19250357414841e-16
+ - 8.69366823793232e-17
+ - 4.068487842842066e-16
+ - 3.957232050453684e-16
+ - -1.7337705639111458e-16
+ - 2.6999175193730823e-16
+ - -2.0137712012603456e-16
+ - -1.435985543392056e-16
+ - -1.9753073027766298e-16
+ - 6.016911775710723e-16
+ - 4.160304890835452e-16
+ - -1.8495758496685696e-16
+ - 5.98878763488392e-17
+ - -1.313562812734208e-16
+ - 2.8587361969832636e-16
+ - -2.099384394659584e-16
+ - 1.737079286361358e-18
+ - -1.9058241313221755e-16
+ - -2.4980854499101436e-16
+ - -8.457921763354707e-17
+ - -9.90962373838527e-17
+ - -8.503416697045123e-17
+ - 4.52964103434038e-16
+ - 2.8554274745330515e-16
+ - -4.815018345671174e-16
+ - -9.602532935974959e-17
+ - -1.2573145310806019e-17
+ - 2.6304343479186277e-17
+ - 2.5626055376892797e-16
+ - 2.2218071253174323e-16
+ - 2.8827244347473014e-17
+ - 2.646977960169688e-18
+ - -1.1117307432712692e-16
+ - -1.5912887033988867e-16
+ - 4.3989464975570007e-16
+ - 3.8902304208368887e-16
+ - 3.2557828910087164e-16
+ - 2.1159280069106445e-16
+ - 1.1170246991916086e-15
+ - -1.8059420723563974e-16
+ - 5.04332019473581e-16
+ - 1.197757526976784e-16
+ - 4.549493369041652e-19
+ - 7.042615735276477e-16
+ - 1.8243468409857023e-16
+ - -1.435985543392056e-16
+ - 1.5071230760716162e-16
+ - -4.3294633261025464e-16
+ - -1.2928832974203823e-16
+ - 6.212746785732652e-16
+ - -2.6428420571069234e-16
+ - 2.249931266144235e-17
+ - -2.867008003108794e-16
+ - -5.513985963278482e-16
+ - 2.936387776986679e-16
+ - 1.917404659897918e-16
+ - -9.777274840376786e-17
+ - -7.425600358888528e-16
+ - -1.6742135598073278e-16
+ - 1.303326452653864e-17
+ - 3.6395946952333213e-16
+ - -1.2698256378454666e-16
+ - 1.164670302474663e-16
+ - -5.96397221650733e-17
+ - 5.952391687931587e-16
+ - 1.167979024924875e-16
+ - 5.97224402263286e-17
+ - -4.413008567970402e-17
+ - -1.5302841332231012e-17
+ - 1.8801815323330317e-16
+ - 5.39321759384574e-17
+ - 6.749793798432706e-17
+ - 2.4600351417327043e-16
+ - -3.096964213398535e-16
+ - 4.2682519607736223e-16
+ - -2.897613685773256e-16
+ - 3.0142461521432324e-16
+ - -6.481787279965524e-16
+ - 1.6262370842792522e-16
+ - -2.7131524091739305e-17
+ - 3.881545024405082e-17
+ - -1.7023377006341307e-16
+ - 4.135903062765138e-18
+ - -6.27002904315195e-17
+ - 1.5981129434524493e-15
+ - 9.089060570732668e-16
+- - 4.664973999959727
+ - 3.8240603136255413
+ - -2.493388938863075
+ - 1.5818857007650116
+ - -0.16003348057785985
+ - -1.3894592672111488
+ - 2.401872722027801
+ - -2.6376779309717473
+ - 1.457032590139624
+ - 3.058484977296745
+ - 0.7848182385583174
+ - 0.14332880123037778
+ - -1.4853106293536829
+ - 2.4496213966148215
+ - -2.606620959700105
+ - 1.2809683879555596
+ - 2.562515239123644
+ - 0.8800059930277192
+ - 0.21895047314067648
+ - -1.6364112120141838
+ - 2.516337533648492
+ - -2.5811635734019287
+ - 1.7462217054844844
+ - -0.36974553196538024
+ - -1.1284959783243904
+ - 1.431845973296652
+ - 2.201788981867263
+ - -2.6321820581018063
+ - -1.6193705814890706
+ - 1.6589146767916474
+ - -0.18412373964214465
+ - -1.2947046998505451
+ - 1.4998957738163678
+ - 2.5486539905682
+ - -2.7372542140299614
+ - -1.577041367637162
+ - 1.5089204588605545
+ - -0.0681331350359145
+ - -1.3928253280094112
+ - 2.439924861907182
+ - -2.6242816288191877
+ - 1.9587602705412495
+ - -2.13844705772738
+ - -2.224539906320491
+ - -2.566730177007887
+ - -2.5928050350623395
+ - -3.39633676015127
+ - -3.3460874626820423
+ - 2.418286020050579
+ - -2.632269267762412
+ - 1.9944004533408617
+ - -0.6268659615966495
+ - -0.8840756341142029
+ - 2.1106310947019478
+ - -1.7284329332714188
+ - -3.1780846700513785
+ - 1.7736608879464375
+ - 1.1539818634452277
+ - -0.5157656948585303
+ - -0.9927638635173103
+ - 2.2191069662974527
+ - -1.7296171316152544
+ - -2.9773805808511455
+ - 1.4458019226845495
+ - 1.0623062663472678
+ - -0.33146004345070934
+ - -1.163350451634626
+ - 2.27969297337266
+ - -2.6547779356217127
+ - 2.127600333985363
+ - -0.9106260780956545
+ - -0.3207387191113792
+ - -0.06139884094424747
+ - 2.9460852573794485
+ - 1.5776061789165308
+ - -2.6448418049359943
+ - 2.010440891702286
+ - -0.7331065767788623
+ - -0.4238925571259076
+ - -0.29740901764245714
+ - 3.4209007554560635
+ - 1.7245183901092231
+ - -2.6176986842489454
+ - 1.9324241924938292
+ - -0.6230280006841191
+ - -0.9702768592703719
+ - 2.1639797444282594
+ - -2.658462404446336
+ - 3.8021646399331663
+ - 4.686747867586458
+ - 4.240802698892143
+ - 3.4001117223884014
+ - -1.4575375836229116
+ - 0.006951090194726127
+ - 1.4437969306107374
+ - -2.4625521832253434
+ - 2.6122401613611514
+ - -1.9160126180736892
+ - 0.5229162377094622
+ - 1.480415955280324
+ - 2.6392718256768846
+ - 1.192530551942466
+ - -2.5034326510074574
+ - 2.5880410829759004
+ - -1.7820157692298015
+ - 0.34154224717027704
+ - 1.0866871867927823
+ - 2.436299469363714
+ - 1.1934291109228374
+ - -2.5602033955875485
+ - 2.5385556594992753
+ - -1.6958493341665881
+ - 0.2174146126485058
+ - 1.2625249767315423
+ - -2.3356373807189734
+ - 1.7296846202137994
+ - 3.020708855098131
+ - -1.2100482000794492
+ - -0.9407694597136358
+ - 0.10389584426950305
+ - 1.4235666955594852
+ - -2.419156305241963
+ - 1.7327022605513376
+ - 3.3041505778879947
+ - -1.1009995230555836
+ - -0.83153615515013
+ - -0.08269679632895734
+ - 1.520171963562185
+ - -2.4640475585837067
+ - 2.5933353899114295
+ - -1.8527118908509703
+ - 0.5108760960482774
+ - 0.799464333226886
+ - 0.6692567496882197
+ - -1.7769587525272978
+ - -1.8957644158567524
+ - -4.669710853628429
+ - -4.7028212538798115
+ - 2.606965545189646
+ - -1.893726581392935
+ - 0.5687962872989262
+ - 1.0216096361519267
+ - -2.195699143376352
+ - 2.6600945756862933
+ - -1.5237502568267305
+ - -3.113304989858659
+ - -0.22055691320090076
+ - 0.16009347099886564
+ - 1.1257912907546832
+ - -2.2592559006537964
+ - 2.657877322138125
+ - -1.4456877763512692
+ - -2.786681168939065
+ - -0.41808415456671194
+ - 0.049363120014309224
+ - 1.2920203456420507
+ - -2.35215113139087
+ - 2.6498635035893763
+ - -2.0356474099106996
+ - 0.7727504022880713
+ - 0.7420768716375162
+ - -1.2638964333101994
+ - -1.8492382924101398
+ - 2.837936061694039
+ - 1.6946710590719145
+ - -1.960680122949188
+ - 0.5924055618950146
+ - 0.9194223466100127
+ - -1.3903081357987992
+ - -2.2877213018376663
+ - 3.1362022657089392
+ - 1.7436006887287439
+ - -1.8296965278978126
+ - 0.4786841784998496
+ - 1.025258959407005
+ - -2.2462816844824203
+ - 2.6605433035840327
+ - -2.2136750268553853
+ - 2.671277987435148
+ - 3.3863000380909383
+ - -1.3814743410248113e-15
+ - -1.5798322519150274e-15
+ - -3.0159005133683384e-16
+ - -9.446402595355575e-17
+ - 1.3348627135074484e-16
+ - 1.464109684218859e-16
+ - 3.30872245021211e-16
+ - 1.6659417536817975e-16
+ - 4.1177050892889713e-16
+ - -3.970466940254532e-17
+ - -1.3805644423510032e-16
+ - -5.517294685728695e-16
+ - -5.881254155252027e-17
+ - -2.2420730503249815e-16
+ - 1.5716431638507524e-18
+ - 2.6527682244575598e-16
+ - 5.638269850314575e-17
+ - 1.3314505934806672e-16
+ - 1.860329197631759e-16
+ - -1.2391165576044355e-16
+ - -3.0936554909483235e-17
+ - 1.2035477912646553e-16
+ - 7.287461196592174e-17
+ - 4.218621124020441e-18
+ - -2.1618365309073376e-16
+ - 2.0564744003833957e-16
+ - 6.29484446152854e-17
+ - 2.638706154044158e-17
+ - -2.689991352022446e-16
+ - -2.3210687988237957e-16
+ - -8.271806125530276e-17
+ - -8.164272645898382e-17
+ - -1.747625839171409e-16
+ - -9.363684534100272e-17
+ - 1.2800619979258103e-16
+ - 4.627248346621637e-16
+ - -2.7090165061111653e-18
+ - -2.192028623265523e-17
+ - 1.5972857628398962e-16
+ - -4.1243225341893955e-16
+ - -2.2052635130663715e-16
+ - -1.2215389695876836e-16
+ - -3.796138626158982e-16
+ - -5.252596889711725e-18
+ - 1.0463834748795799e-16
+ - 6.675347543302933e-17
+ - 3.6065074707312007e-17
+ - 3.936552535139858e-16
+ - -1.8776999904953726e-16
+ - -3.676817822798208e-17
+ - 8.751570880811032e-17
+ - -7.204743135336871e-17
+ - -9.445368619589884e-17
+ - 1.9413928976619557e-16
+ - 1.9149231180602588e-16
+ - 5.091296670263885e-17
+ - 1.3350695086605867e-16
+ - 3.538265070195576e-17
+ - -3.2177325828312777e-17
+ - 9.173432993213076e-17
+ - -2.2805369488086973e-16
+ - 2.4980854499101433e-17
+ - -2.10103875588469e-16
+ - 1.4517019750305636e-16
+ - 1.7461782730994412e-16
+ - 4.5350177083219736e-17
+ - 3.5841735941922684e-16
+ - -7.459876655521196e-17
+ - 1.742042370036676e-16
+ - 1.2746853239442156e-16
+ - 1.182454685644553e-16
+ - 4.0035541647566533e-17
+ - 6.092185211453049e-17
+ - 9.078307222769477e-17
+ - 2.75120271735137e-16
+ - 1.7246715771730625e-16
+ - -4.264116057710857e-17
+ - 3.192917164454687e-17
+ - -9.549800171924703e-17
+ - 1.7614811144316722e-16
+ - -3.6065074707312007e-17
+ - 3.391440511467413e-18
+ - 4.140038965827903e-17
+ - -1.4144788474656773e-16
+ - 1.3830459841886623e-16
+ - 3.124674763919062e-17
+ - 1.8597088121723442e-16
+ - 1.241184509135818e-16
+ - 2.954689148039415e-16
+ - -3.3335378685887015e-17
+ - 9.012132773765235e-17
+ - -6.118241400748468e-16
+ - -2.445973071319303e-16
+ - 1.3929721515392986e-16
+ - 1.663873802150415e-16
+ - 4.2517083485225616e-17
+ - 8.358660089848343e-17
+ - 1.3028094647710186e-16
+ - -1.0902240473448904e-16
+ - 1.4608009617686469e-16
+ - -1.152676183592644e-16
+ - -1.2184370422906098e-16
+ - -9.429858983104514e-17
+ - 1.5501364679243736e-16
+ - 5.57002744977895e-17
+ - -1.2238137162722044e-16
+ - 3.1846453583291565e-17
+ - -9.024540482953531e-17
+ - 5.922613185879678e-17
+ - -9.331631285363842e-17
+ - -3.639594695233322e-18
+ - -5.492479267352103e-17
+ - -7.924390268258004e-17
+ - -1.6791766434826462e-17
+ - -8.933550615572699e-18
+ - -4.2517083485225616e-17
+ - 1.9753073027766298e-16
+ - 9.148617574836485e-17
+ - -2.1738306497893565e-16
+ - -6.281402776574554e-17
+ - -4.863822001811802e-17
+ - 3.730584562614155e-17
+ - 9.895148077665592e-17
+ - 6.979336418416171e-17
+ - 5.107840282514945e-17
+ - -5.293955920339376e-18
+ - 1.654361225106055e-19
+ - -8.672988722618494e-17
+ - 1.6262370842792522e-16
+ - 1.6312001679545703e-16
+ - 1.222572945353375e-16
+ - 1.3971080546020637e-16
+ - 3.31347873873429e-16
+ - 2.9778502051908992e-18
+ - 2.3014232592756612e-16
+ - 6.290708558465775e-17
+ - -3.647866501358852e-17
+ - 8.776386299187622e-17
+ - -2.5104931590984387e-17
+ - -4.090408129074721e-17
+ - -1.3731198168380258e-17
+ - -1.9918509150276904e-16
+ - -8.375203702099405e-18
+ - 3.0924147200294935e-16
+ - -2.5406852514566245e-16
+ - 5.459392042849982e-18
+ - -1.0403864154385704e-16
+ - -1.8702553649823953e-16
+ - 1.3230753897785678e-16
+ - 8.69366823793232e-17
+ - 3.1432863277015048e-18
+ - -3.3136855338874284e-16
+ - -7.18819952308581e-17
+ - 1.6192060490725517e-17
+ - 1.493888186270768e-16
+ - -7.345363839470886e-17
+ - 5.420100963753713e-17
+ - 9.979934090452278e-17
+ - 2.397169415178674e-16
+ - 4.0035541647566533e-17
+ - 1.0257039595657542e-17
+ - 8.337980574534518e-17
+ - -1.2573145310806019e-17
+ - 7.16338410470922e-17
+ - -1.0463834748795799e-16
+ - -2.225115847767644e-17
+ - 8.836356893597717e-17
+ - -6.079777502264753e-17
+ - 1.493888186270768e-16
+ - -7.47771273747937e-17
+ - 8.929414712509933e-17
+ - -2.1060018395600082e-16
+ - 3.594099761542905e-17
+ - -2.7131524091739305e-17
+ - 2.005912985441092e-18
+ - -3.008869478161638e-17
+ - 1.6502253220432902e-17
+ - -4.164854384204494e-17
+ - 8.258984826035704e-16
+ - 1.5184968094942203e-16
+- - -5.1586026079407965
+ - -4.192534573937667
+ - 2.8755397012109607
+ - -2.2931591129005717
+ - 0.8919210725743292
+ - 0.8123408595199173
+ - -2.2401026828646216
+ - 2.8661813787177186
+ - -1.8482634268064946
+ - -3.698714722746944
+ - 0.11966123738983622
+ - 0.3579522925419355
+ - 0.9318004613647493
+ - -2.3193028143914116
+ - 2.8858405896656656
+ - -1.6808243658739404
+ - -3.1715921287571174
+ - -0.11326001083284343
+ - 0.24961012827111784
+ - 1.121343184400044
+ - -2.4396159643116366
+ - 2.88904281414289
+ - -2.4299135942998658
+ - 1.1077618048343743
+ - 0.49704888902962774
+ - -1.24119839805335
+ - -1.7379043865150183
+ - 3.21342201211628
+ - 1.884089857862378
+ - -2.3571036946293367
+ - 0.9179008846064565
+ - 0.6975283353208286
+ - -1.337640953688188
+ - -2.1027083983150106
+ - 3.416131091845495
+ - 1.874877500884256
+ - -2.230563520095267
+ - 0.7958353172775398
+ - 0.8164856110977955
+ - -2.3037688395205667
+ - 2.8768226608692
+ - -2.596782179058692
+ - 3.4538431471994984
+ - 3.516059924464046
+ - 2.851105888020215
+ - 2.8324039970838504
+ - 2.6756252758965697
+ - 2.58768223040265
+ - -2.2671962722187353
+ - 2.871097183759928
+ - -2.623314260401383
+ - 1.3658849341382266
+ - 0.21058202151409253
+ - -1.7989906038818835
+ - 1.7662893056175017
+ - 3.099956347200802
+ - -2.658564482411466
+ - -1.58575041265003
+ - 1.256241895107741
+ - 0.3378831257747923
+ - -1.9553100464529716
+ - 1.8050131739194515
+ - 2.9658335079497546
+ - -2.280139766775955
+ - -1.5062552043519484
+ - 1.0687416312038294
+ - 0.5385333626650957
+ - -2.047283911768468
+ - 2.836240834054251
+ - -2.7184354501313157
+ - 1.6419278653206082
+ - -0.13749354819623882
+ - -0.7884970866053127
+ - -2.896480999856091
+ - -1.4680577700027773
+ - 2.8584265979404773
+ - -2.634300477353806
+ - 1.4713321634001888
+ - -0.04890023121194515
+ - -0.6565819440423879
+ - -3.4387744640412645
+ - -1.6564055966360043
+ - 2.8805115396447856
+ - -2.5768085939634364
+ - 1.3620756636267328
+ - 0.31075245062630874
+ - -1.8756453159646516
+ - 2.757136678927403
+ - -4.208234883574123
+ - -5.142979047077223
+ - -3.8944635586157466
+ - -3.082644172482248
+ - 2.4840107330046317
+ - -0.7742450426738858
+ - -0.920986714256883
+ - 2.2998095357833286
+ - -2.9222920837046753
+ - 2.5210251714700704
+ - -1.0425336395978133
+ - -2.4470191706300857
+ - -2.154414907361135
+ - -0.8735085177006642
+ - 2.3737068057505835
+ - -2.9276057310492174
+ - 2.4167429591133733
+ - -0.8367039740199974
+ - -1.946380757291981
+ - -2.0623075668663873
+ - -0.9098882270389961
+ - 2.4826113543907753
+ - -2.9266807122471254
+ - 2.3455408634042376
+ - -0.9941398954459869
+ - -0.699341664653348
+ - 2.0906266454941362
+ - -1.8459380504545129
+ - -3.0824004985065723
+ - 2.062665813426436
+ - 1.401632720661648
+ - -0.8752104660669867
+ - -0.8950201353674619
+ - 2.226614052747929
+ - -1.8801619144917008
+ - -3.4379640753730323
+ - 2.038696498636426
+ - 1.3078068582459057
+ - -0.6791219409789828
+ - -1.0160884689933218
+ - 2.302417972275861
+ - -2.92750442368653
+ - 2.4718910957670386
+ - -1.2930638378597463
+ - 0.47195216803647866
+ - 0.6006804162803433
+ - 2.422295460568295
+ - 2.516846969626054
+ - 4.761039310248143
+ - 4.758440758999906
+ - -2.926720233456967
+ - 2.5047241832650875
+ - -1.3507532601365657
+ - -0.41325947452452816
+ - 1.8794697831571419
+ - -2.816881107907409
+ - 1.8477336899456802
+ - 3.6076542618672427
+ - -0.6922749396173251
+ - -0.6552429848032608
+ - -0.5353025259361263
+ - 1.9748299115156525
+ - -2.865897591781941
+ - 1.7956275393120065
+ - 3.2921080496223207
+ - -0.40352882917169985
+ - -0.5370610009420892
+ - -0.735789638228878
+ - 2.1174587765719752
+ - -2.890161612834669
+ - 2.611193538125515
+ - -1.551558380944036
+ - -0.09008890168581433
+ - 1.0048673581118635
+ - 1.2768202817410976
+ - -3.3118674560158263
+ - -1.8915340623190358
+ - 2.556839211435276
+ - -1.3733759801561658
+ - -0.2929958723702889
+ - 1.1390792355340424
+ - 1.6845928292995611
+ - -3.738295026847582
+ - -1.994220421837394
+ - 2.454650180771147
+ - -1.2605775662105703
+ - -0.4175397741952927
+ - 1.9545143056320897
+ - -2.842550255807851
+ - 2.7330707892351325
+ - -3.605390087415917
+ - -4.507334334866973
+ - 1.9860606507398194e-15
+ - 2.1407434252872356e-15
+ - 3.0619124349416006e-16
+ - 7.260060838801355e-17
+ - -1.508105353049023e-16
+ - -2.7578201622517943e-16
+ - -3.398057956367837e-16
+ - -5.480071558163808e-17
+ - -3.271499322647224e-16
+ - 4.632211430296955e-18
+ - 1.9107872149974937e-16
+ - 5.810116622572466e-16
+ - 5.790264287871194e-19
+ - 1.9256764660234482e-16
+ - -4.326154603652334e-17
+ - -3.6726819197354424e-16
+ - -3.494838088036542e-18
+ - -7.138568686332629e-17
+ - -1.559235454662457e-16
+ - 1.2043749718772083e-16
+ - 8.416562732727055e-17
+ - -6.989676176073084e-17
+ - -9.992341799640573e-17
+ - -4.0190638012420226e-17
+ - 1.3350695086605867e-16
+ - -2.8289576949313546e-16
+ - -6.325863734499279e-17
+ - -1.4889251025954498e-17
+ - 3.1027544776864063e-16
+ - 1.2035477912646553e-16
+ - 1.3210074382471852e-16
+ - 1.3516131209116472e-16
+ - -2.357464745776129e-16
+ - 4.3933630284222676e-17
+ - -2.0935941303717128e-16
+ - -4.859686098749038e-16
+ - 4.971355481443696e-17
+ - 9.388499952476863e-17
+ - -8.139457227521791e-17
+ - 3.8521801126594494e-16
+ - 4.4398919378783756e-16
+ - -1.0364573075289436e-16
+ - 5.598358385758891e-16
+ - -7.064122431202856e-17
+ - -2.418404692466559e-16
+ - 2.2540671692070004e-18
+ - -1.0869153248946782e-16
+ - -3.279564333619616e-16
+ - 2.9083670337364453e-16
+ - 9.266490812125291e-17
+ - -2.3706996355769773e-16
+ - -7.444625512977248e-19
+ - 1.1624989533667113e-16
+ - -1.9728257609389708e-16
+ - -1.3532674821367533e-16
+ - -6.443736971788086e-17
+ - -1.725085167479339e-16
+ - -3.3087224502121103e-18
+ - 6.724978380056115e-17
+ - -1.163015941249557e-16
+ - 3.9820474688302747e-16
+ - -2.99439381744196e-17
+ - 2.9778502051908996e-16
+ - -1.9877150119649253e-16
+ - -2.7412765500007337e-16
+ - -2.5146290621612038e-17
+ - -3.8480442095966843e-16
+ - 8.402087072007377e-17
+ - -1.2308447514789052e-16
+ - -1.738733647586464e-16
+ - -1.952146245625145e-17
+ - 4.1855338995183194e-17
+ - -2.4815418376590826e-18
+ - -2.0621612670946977e-16
+ - -3.3451183971644434e-16
+ - -3.534542757439087e-16
+ - 7.254373972090053e-17
+ - 4.408872664907637e-17
+ - 8.213903482651564e-17
+ - -1.4281273275728023e-16
+ - 5.136791603954301e-17
+ - 1.0314942238536254e-16
+ - -6.758065604558236e-17
+ - 5.4097612060968004e-17
+ - -1.4856163801452377e-16
+ - 1.7453510924868884e-17
+ - -1.6014216659026613e-16
+ - -1.1907264917700833e-16
+ - -5.61862431076644e-17
+ - 1.3392054117233518e-16
+ - 5.368402175469149e-17
+ - 4.713275130327152e-16
+ - 2.1609059527182154e-16
+ - -2.934836813338142e-16
+ - -2.244968182468917e-16
+ - -6.083913405327519e-17
+ - -2.5311726744122644e-17
+ - -6.629852609612517e-17
+ - 8.486873084794063e-17
+ - -2.1945101651031822e-16
+ - 1.9873014216586487e-16
+ - 8.271806125530276e-20
+ - 3.3335378685887015e-17
+ - -7.394994676224067e-17
+ - 8.300757446969631e-17
+ - 1.5848780536516008e-16
+ - -4.178554563099903e-17
+ - 1.121243320315629e-16
+ - 2.216844041642114e-17
+ - 1.2763396851693217e-16
+ - -1.6005944852901086e-17
+ - 8.416562732727055e-17
+ - 8.867376166568455e-17
+ - -8.065010972392019e-17
+ - 2.816549985743059e-17
+ - 8.428970441915351e-17
+ - -1.9901965538025843e-16
+ - -1.0108147085397997e-16
+ - 2.74293091122584e-16
+ - 7.080666043453917e-17
+ - 8.635765595053608e-17
+ - -7.369145282081785e-17
+ - 8.685396431806789e-17
+ - -6.236941818649829e-17
+ - -1.761894704737949e-17
+ - 1.852884572118782e-17
+ - -2.254067169207e-17
+ - 1.401243957664829e-16
+ - -1.192794443301466e-16
+ - -1.6361632516298885e-16
+ - -1.588186776101813e-17
+ - -1.3942129224581281e-16
+ - -9.89308012613421e-17
+ - -1.7370792863613579e-16
+ - -2.072914615057887e-16
+ - -3.101927297073854e-17
+ - 2.134125980386811e-17
+ - 4.268251960773622e-17
+ - 7.101345558767743e-17
+ - 7.982292911136716e-17
+ - 6.460280584039146e-17
+ - 2.9414542582385664e-16
+ - -3.90429249125029e-17
+ - -3.4224597844381515e-16
+ - 2.5751166444541443e-16
+ - -6.452008777913615e-18
+ - 7.680371987554861e-17
+ - 8.437242248040881e-17
+ - -2.000329516306359e-16
+ - -6.906958114817781e-17
+ - 1.0124690697649058e-16
+ - 5.045801736573469e-16
+ - 1.1423364259357312e-16
+ - -2.2912902967718864e-17
+ - 6.61744490042422e-19
+ - 4.7314731038033177e-17
+ - -4.748016716054378e-17
+ - -2.098557214047031e-16
+ - -1.769339330250926e-16
+ - 4.168990287267259e-17
+ - -9.926167350636332e-19
+ - -2.1721762885642504e-16
+ - 9.694556779121483e-17
+ - -1.0066788054770346e-16
+ - -8.768114493062092e-17
+ - 2.9406270776260134e-17
+ - -1.9008610476468574e-16
+ - 3.3076884744464194e-17
+ - -3.182060418914928e-16
+ - 8.081554584643079e-17
+ - -2.2799165633492822e-17
+ - 1.196103165751678e-16
+ - -4.9155207900963663e-17
+ - 4.963083675318165e-18
+ - -8.768114493062093e-18
+ - -1.122070500928182e-16
+ - -7.775497757998459e-17
+ - -1.2242273065784808e-17
+ - -1.1739347253352569e-15
+ - 7.899574849881414e-18
+- - 4.082075317412974
+ - 3.2415388771711973
+ - -2.6071967953670563
+ - 2.8766241429267194
+ - -2.2933228195913826
+ - 0.798630270081957
+ - 0.8145122045206387
+ - -2.244286832651092
+ - 1.961552592305009
+ - 3.5932333371944707
+ - -2.1732670357654205
+ - -1.3702931597479675
+ - 0.6793987245716162
+ - 0.9363698249729818
+ - -2.36985498316201
+ - 1.8864342157771483
+ - 3.2210462424691038
+ - -1.720253924301643
+ - -1.232538511955434
+ - 0.4785192751093859
+ - 1.1258644695396767
+ - -2.442039334921349
+ - 2.890356541731717
+ - -2.4304596964777163
+ - 1.1043879294132428
+ - 0.26203119547326265
+ - -0.09151521874429315
+ - -3.1801052843949877
+ - -1.6874892669212986
+ - 2.886347384713886
+ - -2.3089823986243974
+ - 0.9142544758211953
+ - 0.3829681725286984
+ - 0.1576952662298374
+ - -3.5226351001686256
+ - -1.7593397243569604
+ - 2.86535856634092
+ - -2.2290761329269286
+ - 0.7944725887775872
+ - 0.9104061378642693
+ - -2.3064224063032097
+ - 2.878971500982292
+ - -5.025611860339259
+ - -5.005470467823807
+ - -2.28314886942936
+ - -2.1682950251857322
+ - 0.1559872563325189
+ - 0.2937389074325476
+ - 0.8548581579221741
+ - -2.271240614013498
+ - 2.8728443150780296
+ - -2.579454419192699
+ - 1.3650274848328883
+ - 0.21493992189888222
+ - -1.092485976533895
+ - -1.5808889932719024
+ - 3.5713765154711994
+ - 1.9066610161650417
+ - -2.5168532276623505
+ - 1.2529557252753287
+ - 0.4188144606420101
+ - -1.2018722623750488
+ - -1.6595906255717685
+ - 3.238468525864364
+ - 1.8897937204093267
+ - -2.406438276830462
+ - 1.0652466794742028
+ - 0.5405277545469575
+ - -2.1177830431773357
+ - 2.8381687074613375
+ - -2.71845166820957
+ - 1.144714075013687
+ - 2.4264901253418425
+ - 1.5315130056579398
+ - 0.5797954273575658
+ - -2.201500404045735
+ - 2.8708666552843676
+ - -2.633941237760639
+ - 1.1282337683718426
+ - 2.593768061524069
+ - 1.9968869973465033
+ - 0.7833238018311732
+ - -2.3322911722310087
+ - 2.882332866027618
+ - -2.577375368821834
+ - 1.2756743698853423
+ - 0.31261271230043036
+ - -1.8800808363791726
+ - 3.3379813284162108
+ - 3.9861673650346985
+ - 1.4082455840375168
+ - 1.0138756878790371
+ - -1.3161473857570933
+ - 2.4872761828509957
+ - -0.7757785737585265
+ - -1.0116950273634844
+ - 2.3006297327455263
+ - -2.9243467438129596
+ - 1.8021871917496728
+ - 3.641115491513601
+ - 0.09659576962255799
+ - -0.2457975961442991
+ - -1.1269142305397504
+ - 2.3759569807133425
+ - -2.930556808360354
+ - 1.6282365771556586
+ - 3.1076385477965585
+ - 0.3022496857616107
+ - -0.14253574610222505
+ - -1.3138005706555143
+ - 2.4847807514401303
+ - -2.9285594023493933
+ - 2.290414366827891
+ - -0.9958996551769126
+ - -0.7012452160477174
+ - 1.320245531306038
+ - 1.896339096439148
+ - -3.15735684208787
+ - -1.8696676679488766
+ - 2.2138324536750678
+ - -0.8003772893466957
+ - -0.8970491060690822
+ - 1.4123517735340885
+ - 2.266420532295657
+ - -3.341746779803407
+ - -1.8521816836418958
+ - 2.076594912775889
+ - -0.6782303441218929
+ - -1.0157532071972728
+ - 2.359808815612594
+ - -2.9295049772533344
+ - 2.4726728085466623
+ - -3.225417833934285
+ - -3.2950630490923722
+ - -2.8497673360384264
+ - -2.8394467926744618
+ - -2.919773984327587
+ - -2.8398627596670445
+ - 2.3266307067920984
+ - -2.929147431529825
+ - 2.505379231747937
+ - -1.2635974852009575
+ - -0.4155305246031584
+ - 1.88406962986324
+ - -1.8047636711736812
+ - -3.2020650257086736
+ - 2.5181992929518615
+ - 1.5250271396983188
+ - -1.1489839634638523
+ - -0.5401320914329611
+ - 2.034808108866179
+ - -1.8355369115328304
+ - -3.0483995437171227
+ - 2.141682875966924
+ - 1.4404693187369333
+ - -0.9588722713550314
+ - -0.7406427229932409
+ - 2.120075969493422
+ - -2.9070410384914482
+ - 2.6121171015227276
+ - -1.5489170017601925
+ - 0.031447278824916866
+ - 0.6061721672747036
+ - 2.986265438877355
+ - 1.5337888182772295
+ - -2.9204549901721024
+ - 2.519487994715781
+ - -1.3704135280704588
+ - -0.06301486246912721
+ - 0.4457853606943184
+ - 3.526979874378121
+ - 1.717278653919578
+ - -2.9330155996574474
+ - 2.45387123616329
+ - -1.2596958533731952
+ - -0.5150013569569841
+ - 1.957162785626623
+ - -2.8456245053924323
+ - 4.224197017468964
+ - 5.172051813460624
+ - -7.922735907032898e-16
+ - -7.160075382259007e-16
+ - -9.024540482953531e-17
+ - 1.0769891575440419e-16
+ - -3.676817822798208e-17
+ - 7.924390268258004e-17
+ - 2.47120208000217e-16
+ - -6.518183226917858e-17
+ - -1.2490427249550718e-16
+ - 5.128519797828771e-17
+ - 5.012714512071347e-17
+ - -3.6098161931814123e-16
+ - 5.839895124624375e-17
+ - -2.2565487110446595e-16
+ - -9.276830569782204e-17
+ - 8.503416697045123e-17
+ - -6.15823041348658e-17
+ - 1.0353716329749677e-16
+ - 2.783462761240938e-16
+ - -3.805030817743927e-18
+ - 3.498973991099307e-17
+ - 1.8504030302811227e-16
+ - 1.2566941456211873e-16
+ - 1.2018934300395492e-16
+ - -1.25400580863039e-16
+ - -6.021874859386041e-17
+ - -2.067951531382569e-18
+ - 8.395883217413231e-18
+ - 6.220398206398768e-17
+ - 1.5153948821971465e-16
+ - 2.1423977865123414e-16
+ - -1.266827108124962e-16
+ - 1.4051730655744558e-16
+ - 2.187892720202758e-16
+ - 2.2151896804170079e-16
+ - -9.429858983104514e-17
+ - 3.697497338112034e-17
+ - 1.4475660719677984e-17
+ - -4.24240256663134e-17
+ - -2.1268881500269722e-16
+ - -1.8894873142242532e-16
+ - 1.6055575689654265e-16
+ - -3.964676675966661e-16
+ - 2.0578185688787944e-16
+ - 1.6475369850524926e-16
+ - -1.89817271065606e-16
+ - 1.519117194953635e-16
+ - 4.0052085259817595e-16
+ - -3.4112928461686856e-16
+ - -7.124093025612951e-17
+ - 3.0423702929700353e-16
+ - 3.69439541081496e-17
+ - -7.891303043755883e-17
+ - 2.5146290621612038e-17
+ - -2.0315555844302357e-16
+ - 1.2573145310806019e-17
+ - 7.006219788324144e-17
+ - 2.448454613156962e-16
+ - -3.523789409475898e-17
+ - 1.350579145145956e-16
+ - -2.8876875184226196e-16
+ - 8.437242248040881e-17
+ - -2.3458842172003865e-16
+ - 1.258141711693155e-16
+ - 1.4639028890657207e-16
+ - 1.205822537949176e-16
+ - -6.319659879905131e-17
+ - -1.0918784085699964e-16
+ - -8.933550615572698e-17
+ - 9.520848850485347e-17
+ - 4.863822001811802e-17
+ - -1.312011849085671e-16
+ - -1.8611563782443123e-17
+ - 2.1386754737558528e-16
+ - 2.395515053953568e-16
+ - 2.772089027818334e-16
+ - -2.0811864211834174e-16
+ - -1.407861402565253e-16
+ - 6.394106135034904e-17
+ - 8.83015303900357e-18
+ - 1.2407709188295414e-17
+ - -2.2036091518412655e-16
+ - 8.553047533798305e-17
+ - 1.3019822841584656e-16
+ - 2.961306592939839e-17
+ - -3.135014521575975e-17
+ - 7.79204137024952e-17
+ - 5.302227726464907e-17
+ - -1.9728257609389708e-16
+ - -3.970466940254533e-18
+ - 1.197757526976784e-16
+ - -1.0012194134341847e-15
+ - -2.3691486719284404e-16
+ - 1.0059550224410507e-16
+ - 6.054962083888163e-17
+ - 5.781992481745663e-17
+ - 4.284795573024683e-17
+ - 9.988205896577808e-17
+ - -1.2635183856747496e-17
+ - 8.627493788928077e-17
+ - -1.5513772388432032e-16
+ - 2.5220736876741814e-16
+ - 1.496369728108427e-16
+ - 8.511688503170654e-17
+ - 8.048467360140958e-17
+ - -4.450231695535288e-17
+ - -3.432799542095065e-17
+ - 4.524677950665061e-17
+ - 3.296521536176953e-16
+ - -3.6127113253253484e-17
+ - 1.312735632121655e-16
+ - -9.897216029196975e-17
+ - -1.5832236924264947e-16
+ - 1.3106676805902724e-16
+ - -1.6758679210324338e-16
+ - -6.791152829060357e-17
+ - 8.569591146049365e-17
+ - 1.0860881442821252e-16
+ - -5.5379742010425197e-17
+ - -2.781394809709555e-18
+ - -2.6469779601696883e-17
+ - 6.518183226917858e-17
+ - -1.2349806545416703e-16
+ - 1.3363102795794162e-16
+ - -1.3110812708965489e-16
+ - -1.282129949457193e-16
+ - -8.788794008375918e-17
+ - -2.2557215304321065e-16
+ - -1.1787323728880643e-17
+ - 7.80858498250058e-17
+ - -1.0091603473146936e-16
+ - 3.2756352257099896e-17
+ - 1.7453510924868881e-16
+ - 2.294599019222099e-16
+ - 2.3822801641527194e-17
+ - -2.101865936497243e-16
+ - 7.601789829362323e-17
+ - -6.73738608924441e-17
+ - 2.1374347028370233e-16
+ - -1.108422020821057e-16
+ - 7.841672207002701e-17
+ - -3.0076287072428086e-16
+ - 6.410649747285964e-17
+ - 1.2076836943274204e-16
+ - 2.686682629572234e-16
+ - -2.6035509780106543e-17
+ - -2.3905519702782497e-17
+ - 1.3325879668229276e-16
+ - 1.197757526976784e-16
+ - 6.232805915587064e-17
+ - -1.8164886251664485e-16
+ - -4.106124560713229e-16
+ - -4.119359450514077e-17
+ - -6.27002904315195e-17
+ - -4.1780892740053423e-16
+ - -8.97490964620035e-18
+ - -9.694556779121483e-17
+ - -1.468245587281624e-16
+ - -9.098986738083304e-18
+ - -1.0008885411891634e-16
+ - 1.3193530770220791e-16
+ - 2.8190315275807183e-16
+ - -3.321130159400406e-17
+ - 9.400907661665158e-17
+ - 3.992800816793464e-16
+ - -1.1311694876662652e-17
+ - 1.7145386146692879e-16
+ - -1.621274000603934e-16
+ - 4.111087644388547e-16
+ - -7.543887186483611e-17
+ - 3.556876633978019e-17
+ - 1.922367743573236e-16
+ - 1.887626157846009e-16
+ - 9.964424453966908e-17
+ - -3.5589445855094016e-17
+ - 7.634877053864444e-17
+ - 3.813302623869457e-17
+ - 6.56781406367104e-17
+ - 8.337980574534518e-17
+ - 6.332894769705979e-16
+- - -1.6783343896443499
+ - -1.2371915730946281
+ - 1.4108146104613108
+ - -2.5937474193596683
+ - 2.8585109250228475
+ - -2.2157622776107258
+ - 0.7904580118629938
+ - 0.8152388971381948
+ - -1.432949555254489
+ - -2.3139844736502924
+ - 3.503234280575729
+ - 1.9281941673383074
+ - -2.132315351009643
+ - 0.6694595601521758
+ - 1.0084034266888713
+ - -1.4740962789048777
+ - -2.2173430455880365
+ - 2.979615354335658
+ - 1.806235546396437
+ - -1.9892452882169487
+ - 0.46974989081947566
+ - 1.1221095554394247
+ - -2.4806197728853205
+ - 2.872486721924446
+ - -2.4120947664351
+ - 0.7964687495504945
+ - 1.8792126468947798
+ - 2.1074871217920292
+ - 0.9405491325281219
+ - -2.5428475254569705
+ - 2.8620892151665442
+ - -2.2909898210800232
+ - 0.6907345796635339
+ - 1.8263222857678536
+ - 2.476951528706957
+ - 1.0694450379808764
+ - -2.6369895088187607
+ - 2.8467744479740142
+ - -2.212966931588827
+ - 0.6939933209148893
+ - 0.9080941174958302
+ - -2.2958186231706352
+ - 4.944433895777944
+ - 4.84899034765545
+ - 0.9725039949795758
+ - 0.7996609724425637
+ - -2.9184519487018203
+ - -3.0606675386031696
+ - 0.7502398915426358
+ - 0.8551586377596624
+ - -2.2592596594960286
+ - 2.8644498402234615
+ - -2.5619825723599337
+ - 1.3515965776400738
+ - 0.06589699070704953
+ - -0.4451717541206767
+ - -3.3108991948328876
+ - -1.6022570452511435
+ - 2.8724831034150973
+ - -2.498269164794017
+ - 1.1705213711677525
+ - 0.20974264168769602
+ - -0.1807340189068914
+ - -3.1320628791193066
+ - -1.6531389603211224
+ - 2.871336611776743
+ - -2.3881881504695786
+ - 1.0556267927079988
+ - 0.6341303261561506
+ - -2.1070904488873037
+ - 2.8218687602482184
+ - -1.7712783227652609
+ - -3.260790116213264
+ - 0.32523603014449515
+ - 0.49225676097422016
+ - 0.755046229100741
+ - -2.241749844653219
+ - 2.853916315064369
+ - -1.831828639086007
+ - -3.670653808833906
+ - 0.08837529311354568
+ - 0.3401635672459802
+ - 0.9476767512372208
+ - -2.3213858036275625
+ - 2.864772762819813
+ - -2.5124772539925
+ - 1.2648412560556923
+ - 0.3165675983074255
+ - -1.3823178972994525
+ - -1.5339793416847154
+ - 1.5221698205340557
+ - 1.3728980007163865
+ - -0.35197105059820005
+ - -1.3131862266851544
+ - 2.47374038654692
+ - -0.6764586824819002
+ - -1.008606212377775
+ - 2.2916358919437783
+ - -1.96790142732313
+ - -3.6374459689767544
+ - 1.9795886124650284
+ - 1.277578726538732
+ - -0.5544225801534405
+ - -1.1254757594229423
+ - 2.4090197533933075
+ - -1.882471979535521
+ - -3.245679420350869
+ - 1.5452923707112283
+ - 1.1416085900472694
+ - -0.3545423352849066
+ - -1.311206161597906
+ - 2.4730061871761575
+ - -2.9072728608092615
+ - 2.277049050638119
+ - -0.9860305660842869
+ - -0.3663836373607689
+ - -0.09806515552320348
+ - 3.212946648652172
+ - 1.7235498232252058
+ - -2.894378565136222
+ - 2.1490145668211156
+ - -0.7913881503530651
+ - -0.4858835158960085
+ - -0.36159171399379975
+ - 3.544074543747845
+ - 1.787621822187048
+ - -2.863879322014968
+ - 2.0623061424614257
+ - -0.672276417428852
+ - -1.1019791334711613
+ - 2.348923992825056
+ - -2.9144338384124016
+ - 4.908889028939925
+ - 4.897139763499143
+ - 2.370793342104896
+ - 2.2668140834705706
+ - 0.13611818781627524
+ - 0.0010635885046399824
+ - -1.0467049791722574
+ - 2.315710295580546
+ - -2.911220220447915
+ - 2.4390808539252733
+ - -1.2525458783941916
+ - -0.41896396587660156
+ - 1.172126169040062
+ - 1.7524073049121198
+ - -3.5092832342240006
+ - -1.8907407059857384
+ - 2.372734246018337
+ - -1.1362048089312653
+ - -0.6180940350607231
+ - 1.2751955424436638
+ - 1.8098118039496212
+ - -3.1686599062731475
+ - -1.8672434248097787
+ - 2.251664168913876
+ - -0.9471391209428637
+ - -0.739520601651338
+ - 2.1731936090274107
+ - -2.8897263056282285
+ - 2.593534856694782
+ - -1.0508566590302026
+ - -2.27898722153961
+ - -1.6866793767898662
+ - -0.6769916873388192
+ - 2.25298705806161
+ - -2.90894315643476
+ - 2.501027003708308
+ - -1.0267599707426291
+ - -2.416821579160974
+ - -2.164246976255268
+ - -0.8808018524884884
+ - 2.372032682234856
+ - -2.915052211105065
+ - 2.436816544213817
+ - -1.1612051198404387
+ - -0.5154301179062405
+ - 1.9497614815288347
+ - -3.4583334551598193
+ - -4.1420511872604715
+ - 4.377439801630622e-16
+ - 9.754113783225302e-16
+ - 2.0596797252570386e-17
+ - -2.6449100086383057e-17
+ - -3.709905047300329e-17
+ - -3.7719435932418056e-17
+ - -5.506954928071781e-17
+ - -1.348304398461435e-16
+ - 1.0339757656912845e-16
+ - -6.782881022934827e-17
+ - -2.2582030722697652e-17
+ - 2.751926500387354e-16
+ - -2.352088071794534e-16
+ - -4.0883401775433387e-17
+ - 3.9456515218779414e-17
+ - -1.0273583207908602e-16
+ - -1.0422475718168147e-17
+ - -8.768114493062093e-18
+ - -5.914341379754148e-17
+ - 1.5683344414005402e-16
+ - 3.163965843015331e-17
+ - -1.6584971281688205e-17
+ - -5.591740940858467e-17
+ - -6.520251178449241e-17
+ - -1.5054687148465104e-17
+ - 8.768114493062092e-17
+ - 6.61744490042422e-19
+ - 2.938559126094631e-17
+ - -6.095287138750122e-18
+ - -1.1580528575742387e-16
+ - -2.488159282559507e-16
+ - 1.373119816838026e-16
+ - -2.036518668105554e-16
+ - -1.9386011630945892e-16
+ - -2.4401828070314316e-16
+ - 2.0547166415817205e-16
+ - -4.681842267050136e-17
+ - 4.997592616498112e-17
+ - 1.7280836971998437e-16
+ - 1.154950930277165e-16
+ - 1.3309336055978215e-16
+ - -2.1804480946897807e-16
+ - 2.721424215299461e-16
+ - -9.462946207606635e-17
+ - -1.3625732640279748e-16
+ - 2.1270949451801104e-16
+ - -1.1830750711039678e-16
+ - 3.93158945146454e-16
+ - 2.067951531382569e-16
+ - 1.167151844312322e-16
+ - -3.239239278757656e-16
+ - -1.283784310682299e-16
+ - 1.3126322345450858e-16
+ - 2.0596797252570387e-16
+ - 1.1547441351240266e-16
+ - -3.048160557257907e-17
+ - 3.184645358329156e-18
+ - 3.6747498712668254e-17
+ - 6.352747104407253e-17
+ - -4.293067379150213e-17
+ - 3.12839707667555e-16
+ - 5.707546226615891e-17
+ - 8.99145325845141e-17
+ - -3.2673634195844593e-17
+ - -2.2027819712287125e-16
+ - -1.6771086919512634e-16
+ - 1.0852609636695722e-16
+ - -3.3449116020113057e-17
+ - 3.5777629444449825e-16
+ - 3.273567274178607e-17
+ - -2.803883782613341e-17
+ - 9.992341799640573e-17
+ - 7.527343574232552e-18
+ - -2.0836679630210765e-16
+ - -2.986949191928983e-16
+ - -1.7800926782141153e-16
+ - 1.9792881094745413e-16
+ - 3.049401328176736e-16
+ - 5.608284553109528e-17
+ - 1.0309772359707797e-16
+ - -2.271644757223752e-17
+ - -7.113753267956038e-18
+ - -1.8590884267129297e-17
+ - -2.627952806080969e-16
+ - 1.381391622963556e-17
+ - -2.307833909022947e-17
+ - -1.1158666463340343e-16
+ - 2.0441700887716693e-17
+ - 3.960540772903896e-16
+ - -2.340921133525068e-17
+ - 5.525566491854225e-16
+ - 6.534726839168919e-17
+ - 2.3491929396505983e-17
+ - -1.0153642019088413e-16
+ - 1.4248186051225902e-17
+ - -1.3565762045869652e-17
+ - -1.6580835378625437e-16
+ - 2.6469779601696883e-17
+ - -1.529456952610548e-16
+ - -8.751570880811032e-17
+ - 5.5007510734776334e-17
+ - -3.685735863777295e-16
+ - -2.1386366996646394e-16
+ - -2.7090165061111653e-17
+ - 5.97224402263286e-17
+ - 9.280966472844969e-17
+ - 2.053475870662891e-17
+ - -3.5734202462290796e-17
+ - 7.428081900726189e-17
+ - 4.350970022028925e-17
+ - -1.4370195191577473e-16
+ - 1.9703442191013117e-16
+ - 6.807696441311418e-17
+ - -1.5043830402925345e-16
+ - 1.0670629901934056e-16
+ - 1.2722037821065566e-16
+ - 3.6457985498274695e-17
+ - -9.252015151405613e-17
+ - 1.3106676805902724e-16
+ - -1.4872707413703438e-16
+ - -6.063233890013693e-17
+ - 4.739744909928848e-17
+ - 2.5584696346265146e-16
+ - -7.07549616462546e-17
+ - 2.2333876538931747e-16
+ - 2.4906408243971663e-16
+ - 1.0927055891825494e-16
+ - 7.605925732425088e-17
+ - -4.177262093392789e-17
+ - -5.129553773594462e-17
+ - 1.2200914035157158e-16
+ - 1.1795595535006175e-16
+ - 8.354524186785578e-17
+ - -2.0290740425925766e-16
+ - 1.436812724004609e-16
+ - 5.955700410381799e-17
+ - -1.2928832974203823e-16
+ - -3.2743944547911596e-16
+ - -9.446402595355575e-17
+ - 8.726755462434441e-17
+ - -1.6725591985822217e-16
+ - 1.9008610476468574e-16
+ - 3.567216391634932e-17
+ - 1.2606232535308142e-16
+ - -3.628014166657579e-16
+ - -7.473576834416605e-17
+ - -1.908719263466111e-17
+ - -2.21374211434504e-17
+ - -1.3069453678337837e-16
+ - 6.516115275386476e-17
+ - 2.6982631581479763e-16
+ - 3.3748968992163524e-16
+ - 3.556876633978019e-17
+ - 9.107258544208833e-17
+ - 3.2624003359091407e-16
+ - -9.634586184711389e-17
+ - 6.981404369947554e-17
+ - 2.4215712432489882e-17
+ - -2.729696021424991e-18
+ - 1.1857634080947652e-16
+ - -1.329692834678992e-16
+ - -1.2134739586152916e-16
+ - 1.151849002980091e-16
+ - -5.231917374397899e-18
+ - -4.283141211799577e-16
+ - -9.235471539154553e-17
+ - -2.239384713334184e-16
+ - 1.4670048163627946e-16
+ - -3.2597119989183433e-16
+ - 2.26357974625136e-16
+ - 4.413008567970402e-17
+ - -1.3532674821367533e-16
+ - -6.916263896709003e-17
+ - 2.547716286663325e-17
+ - -6.86559908419013e-17
+ - -1.739560828199017e-16
+ - -6.038418471637102e-17
+ - -1.4293680984916318e-16
+ - -2.9650289056963277e-16
+ - 2.100211575272137e-16
+- - -1.287395271698851
+ - -1.1840241042297956
+ - 0.17025698684095483
+ - 1.4024517999919555
+ - -2.597335882569624
+ - 2.864140157300793
+ - -2.2399908968002635
+ - 0.8112657768810522
+ - 0.44167366351712345
+ - 0.2827798690828699
+ - -3.731551401181079
+ - -1.877781200334203
+ - 2.8469252088850823
+ - -2.1549747426683457
+ - 0.6147610407697893
+ - 0.5872874536267098
+ - 0.49561189028248465
+ - -3.3034327883731174
+ - -1.8106755875346348
+ - 2.804461274105872
+ - -2.0120397254973095
+ - 0.4918555363575137
+ - 1.1972236684985598
+ - -2.482449032842752
+ - 2.8872476362654176
+ - -1.612983951684579
+ - -3.0879926459652727
+ - -0.3511435689173332
+ - 0.11453487326508668
+ - 1.3100653230702382
+ - -2.5842302724218476
+ - 2.877983249639048
+ - -1.5563152240975322
+ - -3.2504559361726226
+ - -0.630104978309076
+ - -0.030971900568074362
+ - 1.487187554185336
+ - -2.6425587247662676
+ - 2.8635813194341107
+ - -2.1735691219372075
+ - 0.7168133125177238
+ - 0.8959942002657986
+ - -3.286470513818411
+ - -3.145346521435811
+ - 0.6627488620248269
+ - 0.8391394054197461
+ - 4.781496808512303
+ - 4.882927010389411
+ - -2.2125870693808025
+ - 0.7708325727514975
+ - 0.8403035060027425
+ - -2.318095143978011
+ - 2.8772679444679934
+ - -2.5832797676681603
+ - 0.9931807271046676
+ - 2.351982945488123
+ - 1.992217051209062
+ - 0.7837553101144816
+ - -2.391519576610408
+ - 2.886204801620205
+ - -2.4795335508671026
+ - 0.8603464444146219
+ - 1.984039189206097
+ - 2.0261628993330483
+ - 0.8869197879991424
+ - -2.504676681328209
+ - 2.8862501931519975
+ - -2.4116178540698123
+ - 0.9898521410967163
+ - 0.6176950794582822
+ - -2.105438990102281
+ - 1.8403028570351057
+ - 3.0651155842192335
+ - -2.0991507194279895
+ - -1.419438318190884
+ - 0.8733184520047665
+ - 0.8159924329541327
+ - -2.241689906274743
+ - 1.9594549565470667
+ - 3.5896518246117575
+ - -2.1688791577741933
+ - -1.3678442218470215
+ - 0.6761096246839065
+ - 0.935729458007219
+ - -2.320715910787258
+ - 2.88394934782229
+ - -2.5353580043277613
+ - 1.2869665290230476
+ - -1.0359236767703717
+ - -1.4347162056122893
+ - -4.000315129011116
+ - -3.3488892714399823
+ - 1.848203893860256
+ - -0.3711328080903043
+ - -1.3019466639009332
+ - 2.5241401320828207
+ - -0.6978806671095762
+ - -0.9997903307593895
+ - 1.5082008058308494
+ - 2.474249162000677
+ - -3.448040541981574
+ - -1.9136944376438894
+ - 2.002884177556072
+ - -0.5728099892263301
+ - -1.188726719224258
+ - 1.539528512325256
+ - 2.350700307474414
+ - -2.920987043179923
+ - -1.7879988513488174
+ - 1.850129022877216
+ - -0.37197072051255814
+ - -1.302499028149952
+ - 2.5259719531036144
+ - -2.92527611144871
+ - 2.299480395900084
+ - -0.7149488755764035
+ - -1.7516145931959268
+ - -2.245086195241984
+ - -1.026437734462225
+ - 2.5850559232213954
+ - -2.90282789920312
+ - 2.17149103637162
+ - -0.6058302908928634
+ - -1.6798229512160445
+ - -2.619076313560784
+ - -1.152567936768895
+ - 2.668775750540713
+ - -2.883043404348873
+ - 2.0864721039792498
+ - -0.5995896680837659
+ - -1.0916656643745941
+ - 2.353405503738845
+ - -5.044613499452457
+ - -4.95425485370536
+ - -1.1026796705773858
+ - -0.9298916081864186
+ - 2.722173538311705
+ - 2.8654314650064614
+ - -0.6588280294613972
+ - -1.0358017866104894
+ - 2.31529921334947
+ - -2.928717652650308
+ - 2.461524784673031
+ - -1.2744827666036527
+ - -0.15881962173011904
+ - 0.2720271652569616
+ - 3.3929373130351492
+ - 1.6579004465358385
+ - -2.9288555240857783
+ - 2.394062549048568
+ - -1.0864490299348286
+ - -0.30213417006209264
+ - 0.019494103078641925
+ - 3.1971463848624833
+ - 1.703625404856991
+ - -2.9196370490743777
+ - 2.27338356226933
+ - -0.9706189200508974
+ - -0.8168446809355644
+ - 2.1708550433115468
+ - -2.9015943822339145
+ - 1.7467129965090853
+ - 3.2440944847710393
+ - -0.1651177012115778
+ - -0.40519181035881585
+ - -0.9348627946386887
+ - 2.3005133429758677
+ - -2.9220895307046972
+ - 1.8014544538221828
+ - 3.6395487563482782
+ - 0.09634059396802362
+ - -0.24580778890946448
+ - -1.1270927849176404
+ - 2.3737640514909764
+ - -2.928827653649072
+ - 2.4076276648011175
+ - -1.1852599435933362
+ - -0.50078197612724
+ - 1.5814893599225228
+ - 1.7801113038741225
+ - 7.356117187434074e-16
+ - 6.002022524684769e-16
+ - 2.0638156283198038e-16
+ - 1.2151283198403977e-16
+ - -2.534481396862477e-16
+ - -1.0159845873682561e-16
+ - -2.6284697939638146e-16
+ - -1.1613615800244509e-16
+ - -4.974664203893908e-16
+ - 1.528629771997995e-16
+ - 1.0757483866252124e-16
+ - 1.760188644724558e-16
+ - 2.6138907356675675e-16
+ - 1.648570960818184e-16
+ - -1.0314942238536254e-16
+ - 2.1837568171399928e-17
+ - -1.312735632121655e-16
+ - -1.8652922813070772e-16
+ - 3.9787387463800625e-17
+ - -4.288931476087448e-17
+ - 3.813302623869457e-17
+ - -3.383168705341883e-17
+ - 5.1202479917032407e-17
+ - 1.4227506535912076e-17
+ - 1.2316719320914582e-16
+ - -2.3508473008757047e-16
+ - -9.9178955445108e-17
+ - -4.532949756790591e-17
+ - 1.0124690697649058e-16
+ - 3.080834191453751e-16
+ - 2.0588525446444856e-16
+ - -1.9356026333740845e-17
+ - 3.7413379105773437e-16
+ - 2.8062102280861464e-16
+ - 1.2242273065784808e-17
+ - -3.7338932850643664e-16
+ - 6.452008777913615e-18
+ - -6.29484446152854e-17
+ - -2.903403950061127e-16
+ - 1.8760456292702665e-16
+ - 8.486873084794063e-17
+ - 3.332710687976148e-16
+ - -8.437242248040882e-18
+ - 1.8349709419781802e-16
+ - 1.544759793942779e-16
+ - -6.410649747285964e-18
+ - 1.4450845301301393e-16
+ - -2.099384394659584e-16
+ - -8.966637840074819e-17
+ - -2.32644547280539e-17
+ - 3.028308222556634e-16
+ - 1.7596199580534279e-16
+ - -2.8785885316845363e-17
+ - -1.7883644843396456e-16
+ - -5.69100261436483e-16
+ - -6.600901288173161e-17
+ - -2.3574647457761285e-18
+ - -3.5403330217269584e-17
+ - 3.29217883796105e-17
+ - 2.51628342338631e-16
+ - -1.1134885020729444e-16
+ - -3.399712317592944e-17
+ - 5.757177063369073e-17
+ - 4.135903062765138e-17
+ - -4.20207751176938e-17
+ - 9.168263114384619e-17
+ - -3.809166720806692e-16
+ - -6.782881022934826e-18
+ - -4.1429340979718386e-16
+ - -5.0871607672011196e-17
+ - 1.377255719900791e-17
+ - -6.063233890013693e-17
+ - -7.225422650650697e-17
+ - -7.253339996324361e-17
+ - 1.5369015781235252e-16
+ - -3.1432863277015048e-18
+ - -1.8500411387631307e-16
+ - -3.407570533412197e-16
+ - 1.7527957179998654e-16
+ - -2.6205081805679917e-16
+ - 7.055850625077326e-17
+ - -2.067124350770016e-16
+ - 1.6014216659026613e-16
+ - 4.4006008587821067e-16
+ - -1.196826948787662e-16
+ - -3.2177325828312777e-17
+ - -1.682485365932858e-16
+ - -2.0522350997440614e-16
+ - -8.6523092073046685e-16
+ - 6.261757237026419e-16
+ - -3.9431699800402824e-16
+ - 1.814420673635066e-16
+ - 7.804449079437815e-17
+ - 1.0091603473146936e-17
+ - -1.1754236504378523e-16
+ - -1.0944633479842246e-16
+ - -1.985233470127266e-17
+ - -2.1601821696822315e-16
+ - 4.086168828435387e-16
+ - 4.2765237668991525e-17
+ - 6.598833336641778e-17
+ - 5.320425699941074e-16
+ - 1.0625134968243639e-16
+ - -1.0968414922453146e-16
+ - -2.599208279794751e-16
+ - -1.559235454662457e-16
+ - -2.1175823681357505e-17
+ - 7.394994676224067e-17
+ - -1.5716431638507524e-18
+ - 5.872982349126496e-17
+ - 1.8694281843698425e-17
+ - 7.411538288475128e-17
+ - 7.627639223504605e-17
+ - 1.4260593760414197e-16
+ - -1.3995895964397228e-16
+ - -2.776018135727961e-16
+ - -2.1792073237709512e-16
+ - 3.546536876321106e-17
+ - 7.796177273312285e-17
+ - 9.959254575138452e-17
+ - 1.7155725904349792e-16
+ - 1.0119520818820601e-16
+ - -4.499448941982194e-16
+ - -2.7214242152994607e-17
+ - -2.5630191279955563e-16
+ - 5.745803329946468e-17
+ - -1.0700098211256257e-16
+ - 1.0788503139222862e-16
+ - -9.910140726268116e-17
+ - -4.7232012976777874e-17
+ - -1.902101818565687e-16
+ - -1.9608316420569519e-16
+ - -4.571413655274307e-16
+ - 7.849944013128231e-17
+ - -2.93152809088793e-16
+ - -1.021568056502989e-16
+ - 1.3591611440011936e-16
+ - 3.2807017069618764e-16
+ - 1.2043749718772083e-16
+ - -6.981404369947554e-17
+ - 1.6882756302207292e-16
+ - 1.5203579658724646e-16
+ - -2.9116757561866574e-17
+ - -1.980270386451948e-16
+ - 3.5502591890775943e-16
+ - -5.757177063369073e-17
+ - 5.612420456172293e-17
+ - 1.6743686561721815e-16
+ - 6.700162961679524e-17
+ - -8.056739166266488e-17
+ - -2.69660879692287e-16
+ - 1.2546261940898047e-16
+ - -1.3152171739593138e-17
+ - 1.5716431638507526e-17
+ - -2.7363134663254155e-16
+ - 1.0968414922453146e-16
+ - -4.532949756790591e-17
+ - -8.330742744174679e-17
+ - -3.5858279554173745e-16
+ - -4.053185001509835e-17
+ - 7.527343574232552e-18
+ - 1.0918784085699964e-16
+ - -1.4814804770824726e-16
+ - -6.452008777913615e-18
+ - 8.695322599157426e-16
+ - 4.801783455870325e-17
+ - 1.0486582215641007e-16
+ - -1.1490831178068669e-16
+ - 2.3773170804774015e-16
+ - -4.6032601088575984e-17
+ - 1.0153642019088413e-17
+ - 2.4352197233561135e-16
+ - 8.578896927940587e-17
+ - 7.829264497814406e-17
+ - -2.8289576949313546e-17
+ - 7.841672207002701e-17
+ - -2.613890735667567e-17
+ - 1.2713766014940035e-16
+ - -4.812536803833515e-16
+ - -2.248276904919129e-16
+- - 3.8129610892435557
+ - 3.201837256033917
+ - -1.765057745687237
+ - 0.1698899155267605
+ - 1.3999137538760782
+ - -2.6387494127852897
+ - 2.863463080036648
+ - -2.2390709026995066
+ - 0.6911413931470752
+ - 1.8324402628717023
+ - 2.723314057426334
+ - 1.2058990367407105
+ - -2.689741276478522
+ - 2.845816277654821
+ - -2.100888900545138
+ - 0.4897725404177595
+ - 1.3820696043341556
+ - 2.531991517571006
+ - 1.2156001961987422
+ - -2.764878149881591
+ - 2.8032907874606914
+ - -2.012940386401893
+ - 0.3989509051938705
+ - 1.1946918962506348
+ - -2.481784123106255
+ - 1.891621259494062
+ - 3.2687103824476322
+ - -1.5132170931978066
+ - -1.1267426415545105
+ - 0.27651413054118595
+ - 1.3778375866069763
+ - -2.583493498161244
+ - 1.9025600020775444
+ - 3.591767418778268
+ - -1.4167030010132189
+ - -1.0128852445162062
+ - 0.07204071274647986
+ - 1.4867462042680368
+ - -2.640619560476653
+ - 2.8490526412890116
+ - -2.1744198359705478
+ - 0.7163444553555716
+ - 0.548162279108664
+ - 0.40828719069186586
+ - -2.070941718206366
+ - -2.192466428183791
+ - -5.052947284226503
+ - -5.080135930875798
+ - 2.858018823718017
+ - -2.2116446084871773
+ - 0.772634816934919
+ - 0.9292568361847852
+ - -2.3160925778333867
+ - 2.876394012803724
+ - -1.7184695424150864
+ - -3.471229693483081
+ - -0.020178170157794096
+ - 0.2903733077340667
+ - 1.046884149355954
+ - -2.390968041150198
+ - 2.8873609652931345
+ - -1.6405641542808456
+ - -3.1220462500403765
+ - -0.25467466874901645
+ - 0.16932079569875338
+ - 1.2329407955740836
+ - -2.504035257229792
+ - 2.885258444991181
+ - -2.356029986065092
+ - 0.9915339390181473
+ - 0.6177653800404213
+ - -1.2997174102566698
+ - -1.855581614857381
+ - 3.1697339971607996
+ - 1.8722994373557609
+ - -2.2790216679195896
+ - 0.7989624921535862
+ - 0.8160291441643309
+ - -1.4377363467944317
+ - -2.3205733133329467
+ - 3.5215082060642007
+ - 1.9378008201060017
+ - -2.1459551930266034
+ - 0.6755422735800523
+ - 0.9333259018918661
+ - -2.376361353512553
+ - 2.8828196375982844
+ - -2.5344054646466305
+ - 3.0997934591200638
+ - 3.9144414191994286
+ - 5.142373132727239
+ - 4.206809197932154
+ - -2.803016354247594
+ - 1.8469992769380945
+ - -0.3729660020987651
+ - -1.3854638203500975
+ - 2.52232642525742
+ - -0.69450649146292
+ - -0.5513711472130114
+ - -0.4974512759436803
+ - 3.768055651050649
+ - 1.9132549149201175
+ - -2.8555962581168
+ - 1.9992348797403259
+ - -0.49349730134321285
+ - -0.6885212407678828
+ - -0.6817257408542524
+ - 3.323160988287591
+ - 1.8393913187146957
+ - -2.8037306322509905
+ - 1.8464339473641864
+ - -0.37125604315427413
+ - -1.3877407599800826
+ - 2.524327153307105
+ - -2.923030305429489
+ - 1.55449138234047
+ - 3.01271266970536
+ - 0.5384806337906265
+ - -0.0072207907273553855
+ - -1.4954722721582576
+ - 2.6178263573967837
+ - -2.900353467555563
+ - 1.491838256420914
+ - 3.1555502145078402
+ - 0.8312873892488833
+ - 0.13890855537703625
+ - -1.668553632753649
+ - 2.667794732534135
+ - -2.880851010206034
+ - 2.0171278409874764
+ - -0.5987518267755724
+ - -1.093810325900803
+ - 3.511452360433296
+ - 3.372828174096254
+ - -0.4967328701647643
+ - -0.6736393886985171
+ - -4.665899574527709
+ - -4.7743248656788655
+ - 2.0614578447759984
+ - -0.6586608407428777
+ - -1.033188002689685
+ - 2.3688657060966514
+ - -2.927544119240338
+ - 2.460519942158171
+ - -0.9023173813951794
+ - -2.1969492196514993
+ - -2.153820809196008
+ - -0.8772763976352134
+ - 2.4385693934299506
+ - -2.9276622237134693
+ - 2.349181015334796
+ - -0.7663843440040298
+ - -1.8337788438442375
+ - -2.1670270228973063
+ - -0.9767681596634016
+ - 2.5403243346404034
+ - -2.9184222378107263
+ - 2.273840953457988
+ - -0.8810989306709829
+ - -0.8143241600389518
+ - 2.170030173307926
+ - -1.8610237283924187
+ - -3.130670337887512
+ - 1.953521032332828
+ - 1.3481282874936096
+ - -0.7606878699373608
+ - -1.0075612143767767
+ - 2.2996224084268406
+ - -1.9761035689423552
+ - -3.651617142516169
+ - 1.9936927160566498
+ - 1.2857164614574512
+ - -0.5626640124901894
+ - -1.1267982742024754
+ - 2.371332471490134
+ - -2.9286465563129433
+ - 2.4079024109109337
+ - -1.184706212131549
+ - 0.8100250766445877
+ - 1.1599456837437883
+ - -7.91777282335758e-16
+ - -8.040195554015428e-16
+ - -3.2640546971342467e-16
+ - -1.7474190440182707e-16
+ - 1.6874484496081762e-16
+ - 3.760957600731336e-17
+ - 3.273980864484883e-16
+ - 3.2309674726321256e-16
+ - 6.761374327008447e-16
+ - -1.2056157427960378e-16
+ - -1.0893968667323373e-16
+ - -4.987899093694757e-16
+ - -1.8843174353957968e-16
+ - -2.484643764956157e-16
+ - -4.144174868890668e-17
+ - 4.9299964508160443e-17
+ - 1.526251627736905e-16
+ - 2.181482070455472e-16
+ - 2.0141847915666221e-16
+ - -1.005438034558205e-16
+ - 4.0366413892587744e-17
+ - 1.3251433413099503e-16
+ - 3.970466940254533e-18
+ - -5.823351512373315e-17
+ - -3.3484271196146555e-16
+ - 1.743696731261782e-16
+ - 7.46116912522831e-17
+ - 4.830734777309681e-17
+ - -1.8694281843698423e-16
+ - -4.004174550216068e-16
+ - -1.3334151474354806e-16
+ - -2.812414082680294e-17
+ - -6.125272435955169e-16
+ - -2.4286022784556893e-16
+ - 1.8652922813070774e-17
+ - 4.853895834461166e-16
+ - 6.948317145445432e-18
+ - 3.8546616544971083e-17
+ - 3.090346768498111e-16
+ - -4.199595969931721e-16
+ - -1.1580528575742387e-18
+ - -4.1805708158430014e-16
+ - -1.4426029882924803e-16
+ - -1.498024089333533e-16
+ - -9.653197748493832e-17
+ - 1.3995895964397228e-16
+ - -9.148617574836485e-17
+ - 4.1590641199166227e-16
+ - -2.6469779601696883e-17
+ - 2.3905519702782497e-17
+ - -1.6903435817521118e-16
+ - -1.4488326922807703e-16
+ - -7.403266482349598e-17
+ - 1.8702553649823953e-16
+ - 3.875341169810934e-16
+ - 1.8859717966209028e-17
+ - 7.344329863705194e-17
+ - 2.2582030722697652e-17
+ - 8.023651941764368e-18
+ - -1.7453510924868884e-17
+ - -1.937670584905467e-17
+ - 2.1258541742612808e-17
+ - -1.1754236504378523e-16
+ - 5.5193626372600765e-17
+ - 2.6262984448558626e-17
+ - 2.1754850110144625e-17
+ - 4.529356691004814e-16
+ - -3.7967590116183964e-17
+ - 3.1722376491408606e-16
+ - 1.3623664688748366e-16
+ - 1.9620724129757814e-16
+ - 1.6564291766374377e-16
+ - 1.4748630321820483e-16
+ - -1.2986735617082533e-17
+ - 6.627784658081134e-17
+ - -3.672681919735443e-17
+ - 7.181995668491663e-17
+ - 1.8664296546493376e-16
+ - -1.7205356741102973e-16
+ - 2.6081004713796963e-16
+ - -5.6827308082393e-17
+ - 2.088941239426102e-16
+ - -4.8922563353683124e-17
+ - -3.4923565461988824e-16
+ - 1.0980822631641441e-16
+ - 8.445514054166411e-17
+ - 2.47120208000217e-16
+ - 1.6957202557337065e-16
+ - 7.474404015029157e-16
+ - -9.185840702401371e-17
+ - 2.659385669357984e-16
+ - -5.192626295301631e-16
+ - -1.546414155167885e-16
+ - 1.9331210915364254e-16
+ - 2.5117339300172685e-16
+ - 5.078888961075589e-17
+ - 1.2577281213868786e-16
+ - 2.21849840286722e-16
+ - -1.9719985803264177e-16
+ - 5.699274420490361e-17
+ - -1.1022181662269092e-17
+ - -3.970053349948256e-16
+ - -1.9728257609389708e-16
+ - 2.467893357551958e-16
+ - 1.8388742004936648e-16
+ - -7.378451063973007e-17
+ - 1.431022459716738e-17
+ - -8.569591146049365e-17
+ - 7.46944093135384e-17
+ - -7.237830359838992e-17
+ - -1.8156614445538957e-17
+ - -4.528813853727826e-17
+ - -6.623648755018369e-17
+ - -1.375601358675685e-16
+ - 5.67445900211377e-17
+ - 7.17992771696028e-17
+ - 2.2234614865425384e-16
+ - 5.153335216205362e-17
+ - -2.2060906936789246e-16
+ - -5.54624600716805e-17
+ - -2.928219368437718e-17
+ - -2.5311726744122644e-17
+ - 3.808339540194139e-16
+ - 8.127049518333496e-17
+ - 1.607625520496809e-16
+ - 4.632211430296955e-18
+ - 8.271806125530277e-18
+ - -2.9571706898770736e-18
+ - 2.5882481366784236e-16
+ - 1.7916732067898577e-16
+ - 2.775190955115408e-16
+ - 1.7933275680149638e-16
+ - 6.299807545203858e-16
+ - -2.0778776987332053e-16
+ - 2.9191203816996347e-16
+ - 1.5083638469904457e-16
+ - -1.0089535521615554e-16
+ - 1.2775804560881512e-16
+ - -6.518183226917858e-17
+ - 2.5704637535085332e-17
+ - 1.4103429444029122e-17
+ - -8.081554584643079e-17
+ - -3.370760996153588e-17
+ - 2.802487915329658e-16
+ - -3.7620174258911694e-16
+ - 3.325266062463171e-17
+ - -1.20892446524625e-16
+ - -3.739890344505376e-16
+ - 4.020097777007714e-17
+ - 1.194448804526572e-16
+ - 2.1471540750345213e-16
+ - -1.1894857208512538e-16
+ - -2.99439381744196e-17
+ - -3.970466940254533e-18
+ - 3.748782536090321e-16
+ - -1.470520333966145e-16
+ - 5.459392042849982e-17
+ - 3.55791060974371e-17
+ - 4.104676994641261e-16
+ - 1.6138293750909567e-16
+ - 2.1858247686713753e-17
+ - -7.651420666115505e-17
+ - 9.479489819857696e-17
+ - 2.5761506202198353e-17
+ - -5.67445900211377e-16
+ - -2.605618929542037e-17
+ - -6.617444900424221e-17
+ - -5.281548211151081e-17
+ - -1.804080915978153e-16
+ - -6.26175723702642e-17
+ - 1.4765173934071544e-16
+ - -3.632977250332897e-16
+ - -2.9488988837515437e-17
+ - -9.90135193225974e-17
+ - 6.245213624775358e-18
+ - -1.7254987577856155e-16
+ - -4.786273819384956e-17
+ - -1.3030162599241568e-16
+ - 5.752213979693754e-16
+ - 1.2027206106521022e-16
+- - -3.5232343684686924
+ - -2.8937446443457855
+ - 1.8466201498547798
+ - -1.1282134255289733
+ - -0.008504601732856248
+ - 1.1439640448991688
+ - -1.8968408876266094
+ - 1.9818720400830594
+ - -1.0635297150291863
+ - -2.2606659513332716
+ - -0.7464175094926332
+ - -0.18862426406711302
+ - 1.2150590832981298
+ - -1.9280059373851541
+ - 1.9508161053729542
+ - -0.9263124784548651
+ - -1.882753686012968
+ - -0.7984441717358455
+ - -0.2418922562995466
+ - 1.32489101616523
+ - -1.971959185067998
+ - 1.9259064099760597
+ - -1.2592869468663657
+ - 0.15235005326581827
+ - 0.9510388901164119
+ - -1.134646363865615
+ - -1.7713469624665683
+ - 1.9408341298790979
+ - 1.2084928736461
+ - -1.1888563542035036
+ - 0.010561205959358463
+ - 1.0747673437236016
+ - -1.1827388543901438
+ - -2.036225794524964
+ - 2.0067257314153717
+ - 1.170671368396608
+ - -1.0702473087127153
+ - -0.07880276737662743
+ - 1.1464477421613843
+ - -1.9222113397202472
+ - 1.9677649297269135
+ - -1.430408043811555
+ - 1.4455708820783633
+ - 1.515715259411792
+ - 1.9365155819840592
+ - 1.9636060568360805
+ - 2.7331303398789495
+ - 2.7002292243425225
+ - -1.907833379143497
+ - 1.9760627149618117
+ - -1.4593329800349375
+ - 0.35064437998102055
+ - 0.7689334999283709
+ - -1.6953985291528262
+ - 1.327961951834807
+ - 2.4647226122384
+ - -1.2310471506229652
+ - -0.8233466330962069
+ - 0.2654762565330816
+ - 0.8507109272524672
+ - -1.7708706419666922
+ - 1.3230352688994669
+ - 2.2994762316825943
+ - -0.9859084828188784
+ - -0.7507071510165932
+ - 0.12294492706350961
+ - 0.9768771347125481
+ - -1.8135388284314735
+ - 2.002388667865746
+ - -1.568078974438838
+ - 0.5708255112172897
+ - 0.3188285068353881
+ - 0.1796407622698803
+ - -2.281262038894754
+ - -1.2345085057768388
+ - 1.990525734253092
+ - -1.4717177282528249
+ - 0.43354621653707925
+ - 0.4007013517663582
+ - 0.37797203008498953
+ - -2.637195000904311
+ - -1.3414379444552136
+ - 1.9611145332465758
+ - -1.4091058988361043
+ - 0.3476706886160228
+ - 0.8333101489769841
+ - -1.732985340354363
+ - 2.018124753251089
+ - -2.8709974045136586
+ - -3.545857150309094
+ - -3.3266042321312383
+ - -2.6733285047817152
+ - 1.9701578163453763
+ - -1.9179496114985632
+ - 1.191068156356588
+ - -0.06640492252774738
+ - -1.0793288956140608
+ - 1.8225612561635585
+ - -0.3226856313478784
+ - -0.9920600939284204
+ - -2.1122013357728924
+ - -0.9699328305686895
+ - 1.9347982563753459
+ - -1.9616958460059883
+ - 1.2591299785954033
+ - -0.18652070654393893
+ - -0.704844205141012
+ - -1.9383132184176162
+ - -0.9651055210802886
+ - 1.9697032223273945
+ - -1.9167580538712343
+ - 1.1895028889374015
+ - -0.06502253673129105
+ - -1.0800723742734886
+ - 1.8224568873090268
+ - -1.316722864990752
+ - -2.3215074768383075
+ - 0.8011307374156653
+ - 0.654283710857977
+ - 0.022536255974122767
+ - -1.1981651919180885
+ - 1.8795434421769592
+ - -1.3141917559397016
+ - -2.5290056131344807
+ - 0.7037392123587729
+ - 0.5675881677335948
+ - 0.1642593219055051
+ - -1.269703479028721
+ - 1.9085722833665881
+ - -1.967393490635084
+ - 1.3152805786291266
+ - -0.29073610313107634
+ - -0.8143298957384506
+ - -0.7135895636246467
+ - 1.2773667134794293
+ - 1.3744961147517598
+ - 3.5894333730458894
+ - 3.6195328398925795
+ - -1.9799730687822108
+ - 1.3481978094533467
+ - -0.33537341554193645
+ - -0.9011640701921715
+ - 1.7255245088404367
+ - -2.046509070564862
+ - 1.1254753297118747
+ - 2.325626885699686
+ - 0.3122432946188825
+ - -0.04649564325759475
+ - -0.9779841493506395
+ - 1.7704216033596147
+ - -2.036034636948035
+ - 1.061196996606656
+ - 2.0718528497872524
+ - 0.45048283516552784
+ - 0.03779460621108133
+ - -1.10172707664536
+ - 1.8335665116024673
+ - -2.0256313846752687
+ - 1.4632697784282724
+ - -0.4932814113568306
+ - -0.6922314108075195
+ - 1.0156668574487826
+ - 1.5161395733295855
+ - -2.1163223306102465
+ - -1.2771595622417469
+ - 1.403008464013463
+ - -0.3529698609736612
+ - -0.8243160806221532
+ - 1.112009154888781
+ - 1.8593014925846845
+ - -2.326570623741967
+ - -1.3065586757196888
+ - 1.296645842689815
+ - -0.26586017116277394
+ - -0.9038764552788222
+ - 1.7607855813590325
+ - -2.0429869107254315
+ - 1.609400629685081
+ - -1.9161152693566745
+ - -2.4388426423562537
+ - 1.3282866276376516e-15
+ - 1.5378941948585889e-15
+ - 2.522694073133596e-16
+ - 1.1915536723826364e-16
+ - -1.4982308844866714e-16
+ - -1.8065624578158122e-16
+ - -2.447627432544409e-16
+ - -1.770993691476032e-16
+ - -4.1977348135534767e-16
+ - 3.813302623869457e-17
+ - 1.6771086919512634e-16
+ - 4.516819734845808e-16
+ - 2.91374370771804e-17
+ - 1.2034960924763707e-16
+ - -3.341809674714232e-17
+ - -2.6221625417930977e-16
+ - -6.866633059955821e-17
+ - -7.535615380358081e-17
+ - -9.934439156761861e-17
+ - 1.3052910066086777e-16
+ - 5.1352406403057643e-17
+ - -3.422459784438152e-17
+ - -4.8141911650586205e-17
+ - 8.602678370551488e-18
+ - 1.4538216253502307e-16
+ - -2.495397112919346e-16
+ - -6.555406354482744e-17
+ - -1.49719690872098e-17
+ - 2.332649327399538e-16
+ - 2.1556326763131899e-16
+ - 1.4570786490121582e-16
+ - 8.63783354658499e-17
+ - 4.1028158382630167e-17
+ - 1.1240092054888532e-16
+ - -1.0579640034553223e-16
+ - -4.667780196636735e-16
+ - 3.6561383074843823e-17
+ - 6.021874859386041e-17
+ - -1.2291903902537991e-16
+ - 3.3732425379912464e-16
+ - 2.397996595791227e-16
+ - 9.218927926903492e-17
+ - 3.070494433796838e-16
+ - 2.928219368437718e-17
+ - -1.0840201927507426e-16
+ - -6.72084247699335e-17
+ - -1.588186776101813e-17
+ - -1.8454399466058045e-16
+ - 1.454390312021361e-16
+ - 5.4180330122223307e-17
+ - -5.947428604256269e-17
+ - 4.119359450514077e-17
+ - 1.0298398626285193e-16
+ - -1.4167535941501982e-16
+ - -2.203195561534989e-16
+ - -5.40148939997127e-17
+ - -1.0645814483557465e-16
+ - 6.915229920943311e-17
+ - 4.1896698025810846e-17
+ - -5.368402175469149e-17
+ - 2.1531511344755308e-16
+ - 8.850832554317396e-18
+ - 1.7817470394392214e-16
+ - -1.1470927144579111e-16
+ - -1.7618947047379487e-16
+ - -9.471218013732165e-18
+ - -3.8538344738845554e-16
+ - 3.672681919735443e-17
+ - -1.344995676011223e-16
+ - -1.133237439197648e-16
+ - -6.468552390164676e-17
+ - -4.111087644388547e-17
+ - -4.954811869192635e-17
+ - -9.283292918317775e-17
+ - -2.5328270356373707e-16
+ - -1.5411408787628594e-16
+ - -1.9826485307130382e-18
+ - -1.3689839137752606e-17
+ - 1.1834886614102443e-16
+ - -1.4603873714623704e-16
+ - 5.69100261436483e-17
+ - -3.8829021175975516e-17
+ - -1.435158362779503e-17
+ - 1.1307558973599888e-16
+ - -1.1989982978956136e-16
+ - -3.312858353274876e-17
+ - -1.58022516270599e-16
+ - -9.929269277933405e-17
+ - -1.9918509150276904e-16
+ - 7.610061635487853e-17
+ - 8.507552600107888e-17
+ - 2.2565487110446595e-16
+ - 1.3139247042522e-16
+ - -1.6233419521353166e-16
+ - -1.5666800801754342e-16
+ - -1.3276248831476094e-16
+ - -7.473576834416605e-17
+ - -6.232805915587064e-17
+ - 8.577862952174896e-17
+ - -1.4596151208123697e-16
+ - 9.013166749530927e-17
+ - 1.179145963194341e-16
+ - 9.885842295774371e-17
+ - -1.0753347963189359e-16
+ - 4.1276312566396075e-17
+ - 1.227536029028693e-16
+ - -2.9737143021281345e-17
+ - 9.373507303874339e-17
+ - 8.875647972693986e-17
+ - 1.0356301269163905e-16
+ - 1.7078694709805793e-17
+ - 5.98051582875839e-17
+ - 2.7958704704292335e-17
+ - -8.35452418678558e-18
+ - -2.620094590261715e-17
+ - 3.234276195082338e-17
+ - -1.6014216659026613e-16
+ - -7.047578818951796e-17
+ - 2.628779986693522e-16
+ - 4.673570460924606e-17
+ - 3.9208361035013506e-17
+ - -2.1672132048889322e-17
+ - -4.270319912305005e-17
+ - -3.4837228485553606e-17
+ - -6.686721276725537e-17
+ - -3.30872245021211e-19
+ - -2.2809505391149735e-17
+ - 2.4484546131569616e-17
+ - -1.4889251025954498e-16
+ - -1.43433118216695e-16
+ - -9.024540482953531e-17
+ - -1.2502834958739013e-16
+ - -1.816902215472725e-16
+ - -1.761894704737949e-17
+ - -1.752666471029154e-16
+ - -1.0972550825515911e-16
+ - 4.772832134430969e-17
+ - -1.050519377942345e-16
+ - 1.0058516248644815e-16
+ - 3.316994256337641e-17
+ - 4.2144852209576754e-17
+ - 1.3218346188597382e-16
+ - 2.0555438221942735e-17
+ - -2.564259898914386e-16
+ - 2.8496372102451803e-16
+ - -2.9695783990653694e-17
+ - 7.645216811521357e-17
+ - 2.0530622803566144e-16
+ - -1.3284520637601624e-16
+ - -5.277412308088316e-17
+ - -1.1291015361348826e-17
+ - 2.6647623433395787e-16
+ - 7.971953153479803e-17
+ - -1.079470699381701e-17
+ - -1.6609786700064793e-16
+ - 6.385834328909374e-17
+ - -4.80591935893309e-17
+ - -1.666355343988074e-16
+ - -2.322309569742625e-16
+ - -3.7471281748652154e-17
+ - 1.1580528575742387e-18
+ - -6.898686308692251e-17
+ - 4.226892930145971e-17
+ - -5.3084315810590545e-17
+ - 1.3590577464246245e-16
+ - 7.020695449043822e-18
+ - -8.875647972693986e-17
+ - 2.7317639729563736e-17
+ - -1.0023361072611312e-16
+ - 8.519960309296184e-17
+ - -5.637235874548884e-17
+ - 2.1498424120253187e-16
+ - 2.274746684520826e-18
+ - 7.783769564123989e-17
+ - -2.3926199218096322e-17
+ - -1.3782896956664822e-17
+ - -2.903403950061127e-17
+ - 3.259091613458929e-17
+ - -8.82767149716591e-16
+ - 1.406207041340147e-16
+- - 8.526276447651245
+ - 6.86286768912234
+ - -5.045344755109073
+ - 4.719513837129667
+ - -2.867679884975528
+ - -0.08073112689231586
+ - 2.8608543954771566
+ - -4.7182221397120045
+ - 3.4923346266231348
+ - 6.697559339364682
+ - -2.0200163164622573
+ - -1.5446121235761132
+ - -0.29975708023194575
+ - 3.0437143387991195
+ - -4.847075721162345
+ - 3.2658888191636066
+ - 5.8657143499658
+ - -1.399468644428496
+ - -1.319933857454753
+ - -0.6577295533800063
+ - 3.3251455873983145
+ - -4.913510723713695
+ - 4.862731637962649
+ - -3.194923863936112
+ - 0.48972045415156534
+ - 1.4201701278535848
+ - 1.5866154007173996
+ - -5.869943280191784
+ - -3.2864294915927332
+ - 4.789459865897215
+ - -2.9062512739246897
+ - 0.13083253012063897
+ - 1.6186926695024269
+ - 2.1549764181285527
+ - -6.364648960641049
+ - -3.340582927554802
+ - 4.649617331938963
+ - -2.719202752051838
+ - -0.08834260457685125
+ - 3.005968626112604
+ - -4.782903153918827
+ - 5.012797010641436
+ - -7.718456471026037
+ - -7.760480455683755
+ - -4.736102501329016
+ - -4.617475557605286
+ - -2.429431012600681
+ - -2.2243141434874514
+ - 2.922197084695751
+ - -4.746567551946911
+ - 5.032870587783691
+ - -3.573107388282126
+ - 0.9929682582233585
+ - 1.9121376049125265
+ - -2.6518232724027966
+ - -4.359110310065944
+ - 5.6808023234774545
+ - 3.192434682046014
+ - -3.412990305504785
+ - 0.7726995809779423
+ - 2.240870383065354
+ - -2.784859686801142
+ - -4.299473720005466
+ - 5.025991043999714
+ - 3.10140043619159
+ - -3.13643553796421
+ - 0.41561746213090883
+ - 2.4357092382552272
+ - -4.578600123064564
+ - 5.093699328828244
+ - -3.959721860192091
+ - 1.1354057109702114
+ - 2.883494161697636
+ - 4.120672815425988
+ - 1.9163291430484841
+ - -4.673190029565994
+ - 5.041757810329387
+ - -3.721940564691104
+ - 1.0359870667615452
+ - 2.9036251136574034
+ - 5.048760048089829
+ - 2.275402071056073
+ - -4.809117701696503
+ - 4.996600529335925
+ - -3.567639744735199
+ - 0.8185651098855851
+ - 2.071269415082824
+ - -4.294338655335753
+ - 6.962476641411281
+ - 8.427211330213815
+ - 4.969732236620017
+ - 3.8454148243085062
+ - -3.537999015720301
+ - 4.987898651494227
+ - -4.822563400699818
+ - 2.961618866478378
+ - -0.20356718108646188
+ - -2.624368696807535
+ - 3.050265450849226
+ - 5.539036927815357
+ - 2.151007040668963
+ - 0.6223159181626673
+ - -3.2662490631868524
+ - 4.889197884097028
+ - -4.88872042677007
+ - 2.229921272047074
+ - 4.591181321242887
+ - 2.242967697737153
+ - 0.7477363880452724
+ - -3.5346130193573226
+ - 4.983627626619915
+ - -4.818760694797789
+ - 2.959700734479762
+ - -0.20406236243690332
+ - -2.621645848924902
+ - 2.9278942222265933
+ - 4.6188445852583415
+ - -4.746299698458068
+ - -2.9834094777094156
+ - 2.778569324876714
+ - 0.15509847689930167
+ - -2.9236465972144403
+ - 3.041467405636068
+ - 5.2843158985444765
+ - -4.884955783248571
+ - -2.878089371628862
+ - 2.470106865555968
+ - 0.37822554653732937
+ - -3.100494265082644
+ - 4.874867381611443
+ - -4.940771486723477
+ - 3.4061685737860303
+ - -3.2802646533729884
+ - -3.464776019529965
+ - -4.820947119743915
+ - -4.902425407110338
+ - -7.126051215215259
+ - -7.053571149852942
+ - 4.845052007183072
+ - -4.971955542895585
+ - 3.4901837508469025
+ - -0.7131317839584312
+ - -2.168643973154916
+ - 4.351703856061515
+ - -3.354372156428752
+ - -6.267315268973378
+ - 2.871602987483653
+ - 1.9653969146887451
+ - -0.49552239365145806
+ - -2.369260378604519
+ - 4.5309359584769
+ - -3.331373713012698
+ - -5.829953970493566
+ - 2.264577970486785
+ - 1.7779164657064823
+ - -0.1366398439544984
+ - -2.6819218909491847
+ - 4.628877726733143
+ - -5.05468263957841
+ - 3.7763532080581736
+ - -1.2732165839453544
+ - -0.9362195950231584
+ - -0.6932083000962601
+ - 5.794431213202043
+ - 3.1588316008256854
+ - -5.014232264956096
+ - 3.5243301840302426
+ - -0.922040344504379
+ - -1.1477543526399752
+ - -1.2249055831936404
+ - 6.677441953716897
+ - 3.418177125764492
+ - -4.927314235035955
+ - 3.358545532111557
+ - -0.7056024030981108
+ - -2.327812855388931
+ - 4.4403735572314345
+ - -5.117728652166673
+ - 7.161221405732185
+ - 8.857238865544728
+ - -2.27309232329572e-15
+ - -2.626463880978373e-15
+ - -3.7057691442375635e-16
+ - 4.3096109914012736e-17
+ - 9.29751008509603e-17
+ - 3.030789764394293e-16
+ - 5.911032657303936e-16
+ - 8.586134758300426e-17
+ - 2.33595804984975e-16
+ - 3.2094607767057474e-17
+ - -1.5104317985218283e-16
+ - -9.904660654709953e-16
+ - 4.7811039405564993e-17
+ - -3.8265375136703055e-16
+ - -2.4691341284707873e-17
+ - 5.646334861286967e-16
+ - 2.460862322345257e-17
+ - 1.7666509932601286e-16
+ - 3.958059231066237e-16
+ - -1.8462671272183575e-16
+ - -3.8267443088234437e-17
+ - 2.2077450549040306e-16
+ - 1.8437855853806984e-16
+ - 1.741215189424123e-16
+ - -2.659385669357984e-16
+ - 2.936491174563248e-16
+ - 9.509992104945589e-17
+ - -1.4268865566539727e-17
+ - -1.5741247056884114e-16
+ - -9.082443125832243e-17
+ - 1.0596183646804283e-16
+ - -2.8401246332008205e-16
+ - -6.935909436257137e-17
+ - 1.7296346608483806e-16
+ - 3.7289302013890483e-16
+ - 4.466775307786349e-16
+ - 6.447872874850851e-17
+ - -2.3946878733410148e-17
+ - 5.707546226615891e-17
+ - -6.539379730114528e-16
+ - -4.607396011920364e-16
+ - 4.028369583133244e-17
+ - -7.422136540073463e-16
+ - 2.43563331366239e-16
+ - 3.537851479889299e-16
+ - -5.517294685728694e-17
+ - 2.2019547906161594e-16
+ - 7.323857143544506e-16
+ - -5.965626577732436e-16
+ - -1.75817239198146e-16
+ - 4.1226681729642894e-16
+ - 4.5908523996693036e-18
+ - -1.9885421925774783e-16
+ - 2.1539783150880838e-16
+ - -5.09543257332665e-17
+ - 8.255262513279215e-17
+ - 1.9604180517506753e-16
+ - 1.8694281843698423e-16
+ - -1.0769891575440419e-16
+ - 2.594038400966295e-16
+ - -5.662878473538027e-16
+ - 8.337980574534518e-17
+ - -4.604087289470152e-16
+ - 2.9712327602904754e-16
+ - 3.975843614236127e-16
+ - 2.0315555844302357e-16
+ - 3.087038046047899e-16
+ - -2.007567346666198e-16
+ - -1.0091603473146936e-17
+ - 2.2251158477676444e-16
+ - 1.6427806965303127e-16
+ - -6.8573272780646e-17
+ - 3.610643373793966e-17
+ - 2.936904764869525e-16
+ - 6.19392842679707e-16
+ - 4.527986673115273e-16
+ - -2.653595405070113e-16
+ - -1.6659417536817975e-16
+ - 2.580803511165446e-17
+ - 1.4849701452916807e-16
+ - -5.045801736573468e-17
+ - -3.067185711346626e-16
+ - 1.8098711802660243e-16
+ - 1.2622776147559202e-16
+ - 1.6055575689654265e-16
+ - 4.8803656140628627e-17
+ - 2.992739456216854e-16
+ - 1.4541835168682227e-16
+ - -1.9670354966510996e-16
+ - 6.716706573930585e-17
+ - 1.467418406669071e-16
+ - -1.4277137372665256e-15
+ - -4.2959625112941487e-16
+ - 3.5425043708349097e-16
+ - 2.5067708463419504e-16
+ - 1.166324663699769e-16
+ - 5.710854949066103e-16
+ - 1.917404659897918e-16
+ - -7.262645778215583e-17
+ - 2.367390913126765e-16
+ - -2.602310207091825e-16
+ - 2.2395462720475734e-16
+ - 4.65289094561078e-17
+ - 2.386416067215485e-16
+ - 8.70194004405785e-17
+ - -1.2579090671458746e-16
+ - 6.121136532892404e-18
+ - -5.637235874548884e-17
+ - 3.1544532659709705e-16
+ - -1.6039032077403204e-16
+ - 5.724089838866952e-17
+ - -1.619619639378828e-16
+ - -2.067951531382569e-16
+ - 1.9370501994460523e-16
+ - -1.5683344414005402e-16
+ - -7.312276614968765e-17
+ - 2.7925617479790214e-16
+ - 2.1060018395600082e-16
+ - -2.654422585682666e-16
+ - -6.059097986950928e-17
+ - -6.236941818649829e-17
+ - 1.1708741570688107e-16
+ - -1.6568427669437142e-16
+ - 1.7714072817823085e-16
+ - -9.417451273916219e-17
+ - -1.0654086289682995e-16
+ - -8.044266833592837e-17
+ - -2.657731308132878e-16
+ - 1.1696333861499811e-16
+ - 1.9033425894845164e-16
+ - -5.227781471335134e-17
+ - 1.4289545081853553e-16
+ - 4.02175213823282e-16
+ - 2.0464448354561902e-16
+ - 1.8429584047681454e-16
+ - -1.431022459716738e-16
+ - 5.525566491854224e-17
+ - 6.716706573930585e-17
+ - 1.7569316210626305e-16
+ - -1.6990289781839186e-16
+ - 3.143286327701505e-17
+ - -4.503171254738683e-16
+ - 2.5539201412574726e-17
+ - 3.932416632077093e-16
+ - 1.528629771997995e-16
+ - -2.5973471234165066e-17
+ - -1.0141234309900118e-16
+ - -7.423945997663423e-18
+ - 2.752857078576476e-16
+ - 1.1836954565633826e-16
+ - -2.27309232329572e-16
+ - -7.047578818951795e-16
+ - -1.682485365932858e-16
+ - -6.336203492156192e-17
+ - -2.500153401441526e-16
+ - -7.949205686634595e-17
+ - -6.005331247134981e-17
+ - -5.0830248641383544e-17
+ - 1.5385559393486312e-16
+ - -7.684507890617626e-17
+ - 1.0654086289682995e-16
+ - 3.158175578727459e-16
+ - -1.2407709188295415e-16
+ - 1.952146245625145e-16
+ - 4.486627642487622e-16
+ - 1.3007415132396359e-17
+ - 2.8699031352527295e-16
+ - -2.1854111783650989e-16
+ - 5.755522702143967e-16
+ - -1.4005460240229873e-16
+ - 1.1472995096110494e-16
+ - -7.874759431504822e-17
+ - 2.26482051717019e-16
+ - 8.486873084794063e-17
+ - -2.1041406831817638e-17
+ - 1.0798842896879775e-16
+ - 7.865453649613601e-17
+ - 6.054962083888163e-17
+ - 1.0323214044661785e-15
+ - 7.633222692639338e-16
+- - 6.405197882166403
+ - 5.1717881384194815
+ - -3.7277022910420907
+ - 3.3112785985147952
+ - -1.824459902467378
+ - -0.3755734030454292
+ - 2.345002244243391
+ - -3.5576308644711925
+ - 2.5173326601719603
+ - 4.889564139652431
+ - -1.0750519474556932
+ - -0.9289723033147214
+ - -0.534498009431824
+ - 2.4701312395818147
+ - -3.6306579053965597
+ - 2.3350066085885834
+ - 4.255093409202724
+ - -0.6660740779947429
+ - -0.7712612189114322
+ - -0.792941228325162
+ - 2.6611260265107424
+ - -3.666095842311471
+ - 3.438991026697696
+ - -2.077473231197669
+ - 0.040992788340079585
+ - 1.2201675514595067
+ - 1.5041274690992776
+ - -4.2740371277585805
+ - -2.4270268298440953
+ - 3.3728931294403544
+ - -1.8541345315506397
+ - -0.22155722755742224
+ - 1.3598065665433854
+ - 1.9394993788022796
+ - -4.606910188344074
+ - -2.4508635150130047
+ - 3.2506366747533053
+ - -1.7104219740570648
+ - -0.38110572878431587
+ - 2.4443426328761664
+ - -3.5948008822676734
+ - 3.5822573184101167
+ - -5.310358643213165
+ - -5.356695054828693
+ - -3.5521628600216006
+ - -3.4843445289076644
+ - -2.3089619982284795
+ - -2.1693828587101853
+ - 2.3870743703388007
+ - -3.574028571611479
+ - 3.6031103598153957
+ - -2.3733299029245143
+ - 0.41180944788241425
+ - 1.6856351450348408
+ - -2.0571031424273696
+ - -3.4603558071003557
+ - 3.9551949137479263
+ - 2.2595063002755906
+ - -2.2475449073611347
+ - 0.2491054598113356
+ - 1.9158788868910606
+ - -2.1402818460856823
+ - -3.376208576805739
+ - 3.4704008076453294
+ - 2.1813179525429787
+ - -2.032063871864877
+ - -0.013343437432091916
+ - 2.051475503862129
+ - -3.474628912989915
+ - 3.672198115111725
+ - -2.6806745964603813
+ - 0.6324442834740053
+ - 1.7824757388888337
+ - 3.257462824634
+ - 1.563470502354658
+ - -3.5312483763775906
+ - 3.612400992456276
+ - -2.490944009587257
+ - 0.5463438112077293
+ - 1.7397726471964454
+ - 3.946954290035611
+ - 1.821618659647885
+ - -3.609595366378232
+ - 3.565995686707653
+ - -2.3690225478320888
+ - 0.2829506269880635
+ - 1.797290258076199
+ - -3.298355565675821
+ - 5.228733353538528
+ - 6.348561737880588
+ - 4.089639344040585
+ - 3.192218529101007
+ - -2.8042034742957687
+ - 3.702856891566473
+ - -3.40266178590506
+ - 1.8968430806100554
+ - 0.16849097377521835
+ - -2.1821981476910457
+ - 2.327872355814456
+ - 4.0842430119970885
+ - 1.9582398196024258
+ - 0.6669620779847285
+ - -2.6214054700428817
+ - 3.6525461479122328
+ - -3.4635714985544017
+ - 1.4695286657868307
+ - 3.115384824531427
+ - 1.9680296699259963
+ - 0.7453279378003776
+ - -2.801926878064008
+ - 3.6998087947689133
+ - -3.399803363469658
+ - 1.8952326626063343
+ - 0.1683887710694499
+ - -2.1804419074483077
+ - 2.2294272826403043
+ - 3.5853638017076026
+ - -3.240925033672719
+ - -2.0793419368099864
+ - 1.7557865757069888
+ - 0.429899391159168
+ - -2.3881860938117745
+ - 2.300906243215897
+ - 4.066401168415886
+ - -3.3018021990371533
+ - -1.9881408451062312
+ - 1.519887463523526
+ - 0.5915552860926357
+ - -2.5088960662342603
+ - 3.6448564671343116
+ - -3.5125560671005522
+ - 2.2421474068887965
+ - -1.8569507294477534
+ - -2.0024096257353183
+ - -3.420151487326269
+ - -3.4987362466043344
+ - -5.533741624767099
+ - -5.496335051077929
+ - 3.629466205030888
+ - -3.541587986407844
+ - 2.3080604791710257
+ - -0.2052345531713155
+ - -1.8653955103715196
+ - 3.3344739548601736
+ - -2.446980764420696
+ - -4.634285373438588
+ - 1.7378089777405898
+ - 1.2622140059046763
+ - -0.045242864163328754
+ - -2.0052885204061046
+ - 3.445644430790049
+ - -2.41437527954859
+ - -4.28528391301568
+ - 1.3133006947154593
+ - 1.119464194767263
+ - 0.21730809926404626
+ - -2.2218680199381313
+ - 3.504802170402673
+ - -3.626363978882046
+ - 2.534131255620892
+ - -0.6196889647455601
+ - -0.879277921847958
+ - -0.8648702708568868
+ - 4.275146667309882
+ - 2.365139587082734
+ - -3.5836085894994856
+ - 2.3348635977872925
+ - -0.35933805452948536
+ - -1.0406884821322324
+ - -1.2988437904673187
+ - 4.89522028154113
+ - 2.5382056193393456
+ - -3.4987813020884504
+ - 2.2049321471971517
+ - -0.19968933617122175
+ - -1.9764242708753743
+ - 3.3898406870649427
+ - -3.707327956975455
+ - 5.087848031136069
+ - 6.312107738278935
+ - -1.6860926488854136e-15
+ - -1.9394076641918287e-15
+ - -2.9141572980243165e-16
+ - 3.101927297073854e-17
+ - 8.528232115421714e-17
+ - 2.2582030722697656e-16
+ - 4.657440438979822e-16
+ - 7.279189390466644e-17
+ - 2.2003004293910534e-16
+ - 5.790264287871193e-18
+ - -1.108422020821057e-16
+ - -7.493429169117877e-16
+ - -1.9852334701272664e-18
+ - -3.039061570519823e-16
+ - -1.112557923883822e-17
+ - 4.1309399790898197e-16
+ - 3.331469917057319e-17
+ - 1.5701180495963577e-16
+ - 2.934009632725589e-16
+ - -1.2597960729182611e-16
+ - -2.6397401298098493e-17
+ - 1.7544500792249715e-16
+ - 1.287093033132511e-16
+ - 1.316044354571867e-16
+ - -2.1233726324236218e-16
+ - 2.32768624372422e-16
+ - 7.79204137024952e-17
+ - -6.121136532892404e-18
+ - -1.1886585402387008e-16
+ - -1.0141234309900118e-16
+ - 6.45511070521069e-17
+ - -2.0745948256771354e-16
+ - -1.2795450100429647e-16
+ - 1.0563096422302162e-16
+ - 2.694954435697764e-16
+ - 3.5695428371077367e-16
+ - 5.47386770356966e-17
+ - 6.203854594147707e-19
+ - 7.46944093135384e-17
+ - -5.030085304934961e-16
+ - -3.2632275165216937e-16
+ - -2.2034023566881272e-17
+ - -5.344000347398835e-16
+ - 1.6431942868365892e-16
+ - 2.387243247828038e-16
+ - -3.1805094552663914e-17
+ - 1.4532529386791005e-16
+ - 5.929230630780102e-16
+ - -4.2781781281242586e-16
+ - -1.2200914035157158e-16
+ - 2.6171994581177796e-16
+ - -2.225115847767644e-17
+ - -1.3822188035761092e-16
+ - 1.8479214884434636e-16
+ - 2.249931266144235e-17
+ - 6.373426619721078e-17
+ - 1.3698110943878138e-16
+ - 1.6080391108030856e-16
+ - -7.560430798734672e-17
+ - 1.6626330312315854e-16
+ - -3.9812202882177217e-16
+ - 6.418921553411495e-17
+ - -3.421219013519322e-16
+ - 2.129162896711493e-16
+ - 2.889755469954002e-16
+ - 1.4646266721017046e-16
+ - 2.451763335607174e-16
+ - -1.5120861597469343e-16
+ - 3.8877488789992295e-17
+ - 1.6874484496081762e-16
+ - 1.2800619979258103e-16
+ - -4.241368590865649e-17
+ - 3.7181768534258594e-17
+ - 2.12833571609894e-16
+ - 4.350970022028925e-16
+ - 3.2301402920195726e-16
+ - -1.7966362904651759e-16
+ - -7.940933880509064e-17
+ - 6.948317145445432e-18
+ - 1.3503723499928177e-16
+ - -4.6983858793011966e-17
+ - -2.1374347028370233e-16
+ - 1.2159555004529507e-16
+ - 4.21034931789491e-17
+ - 1.2912289361952762e-16
+ - 4.053185001509835e-17
+ - 2.362427829451447e-16
+ - 1.2639319759810263e-16
+ - -5.724089838866952e-17
+ - 6.121136532892404e-18
+ - 1.9719985803264177e-16
+ - -1.1289361000123722e-15
+ - -3.3112039920497693e-16
+ - 2.629141878211514e-16
+ - 2.01563235763859e-16
+ - 8.826017135940804e-17
+ - 4.4262434577712506e-16
+ - 1.7197084934977443e-16
+ - -8.677124625681259e-17
+ - 1.5823965118139417e-16
+ - -1.9573161244536015e-16
+ - 1.0823658315256366e-16
+ - 2.1548054957006368e-17
+ - 1.9703442191013117e-16
+ - 1.1249656330721176e-16
+ - -6.356883007470018e-17
+ - 5.542110104105285e-18
+ - -4.291516415501676e-17
+ - 2.5800797281294624e-16
+ - -1.1994118882018901e-16
+ - 3.8298462361205175e-17
+ - -1.1861769984010417e-16
+ - -1.6675961149069035e-16
+ - 1.2610368438370907e-16
+ - -1.0389388493666026e-16
+ - -1.8363409598677214e-17
+ - 2.306179547797841e-16
+ - 1.4856163801452377e-16
+ - -1.8255876119045318e-16
+ - -5.804739948590872e-17
+ - -6.005331247134981e-17
+ - 7.59145007170541e-17
+ - -6.906958114817781e-17
+ - 1.3685703234689843e-16
+ - -4.075932468355043e-17
+ - -6.782881022934827e-17
+ - -5.208135931787e-17
+ - -2.1101377426227734e-16
+ - 8.99972506457694e-17
+ - 1.3953502958003886e-16
+ - -2.0017770823783267e-17
+ - 1.2310515466320434e-16
+ - 3.686743990148844e-16
+ - 1.317698715796973e-16
+ - 1.6609786700064793e-16
+ - -1.0356301269163905e-16
+ - 3.143286327701505e-17
+ - 1.0484514264109624e-17
+ - 1.312735632121655e-16
+ - -1.2010662494269962e-16
+ - 1.0257039595657542e-17
+ - -3.448515973733572e-16
+ - 2.2348739940563556e-17
+ - 3.059741085833649e-16
+ - 9.793818452627846e-17
+ - -1.923194924185789e-17
+ - -8.002972426450542e-17
+ - -1.3731198168380258e-17
+ - 1.8652922813070772e-16
+ - 1.0108147085397997e-16
+ - -1.37146545561292e-16
+ - -5.169878828456423e-16
+ - -1.2060293331023143e-16
+ - -4.532949756790591e-17
+ - -1.559235454662457e-16
+ - -7.146840492458159e-17
+ - -4.599124205794833e-17
+ - -5.273276405025551e-17
+ - 1.4244050148163137e-16
+ - -4.946540063067105e-17
+ - 7.610061635487853e-17
+ - 2.127508535486387e-16
+ - -6.923501727068842e-17
+ - 1.4574922393184348e-16
+ - 2.481541837659083e-16
+ - 5.025122221259642e-18
+ - 1.914302732600844e-16
+ - -1.531938494448207e-16
+ - 3.871205266748169e-16
+ - -9.047029455857316e-17
+ - 8.677124625681259e-17
+ - -8.743299074685501e-17
+ - 1.6287186261169112e-16
+ - 6.596765385110396e-17
+ - -1.7494869955496535e-17
+ - 6.108728823704109e-17
+ - 5.744769354180777e-17
+ - 3.0605682664462024e-17
+ - 7.467786570128733e-16
+ - 6.481787279965524e-16
+- - 0.7011203763250163
+ - 0.7492967892233553
+ - 0.29899080291496727
+ - -2.285884741274613
+ - 3.5306010631643883
+ - -3.602882011999161
+ - 2.4716845732765975
+ - -0.5382639690103491
+ - -0.9256997274753244
+ - -1.0690262081886972
+ - 4.886306497572591
+ - 2.515261774234121
+ - -3.556782620832314
+ - 2.3469244127751185
+ - -0.2773858691838968
+ - -1.0837810342672844
+ - -1.2466124193656134
+ - 4.284194693502379
+ - 2.4072786182202375
+ - -3.466584191369057
+ - 2.1368083430321843
+ - -0.11762231715697938
+ - -2.044274555075481
+ - 3.4217037188481596
+ - -3.692706634344867
+ - 1.8672908773364119
+ - 3.695748863826542
+ - 1.066216737833311
+ - 0.20751127327853233
+ - -2.1765198057567656
+ - 3.519444333037431
+ - -3.641628982555462
+ - 1.775168230161023
+ - 3.838435988293926
+ - 1.4681983333981434
+ - 0.39541640487997803
+ - -2.38445323760838
+ - 3.571317581529819
+ - -3.6013850285956126
+ - 2.3731122695738014
+ - -0.4131750147771583
+ - -1.683253823915499
+ - 4.937631213602285
+ - 4.76548748445645
+ - -0.32391495190131486
+ - -0.5573648007306082
+ - -5.725583162067738
+ - -5.874413964280698
+ - 2.430897554503622
+ - -0.4846757336866676
+ - -1.6156897145447426
+ - 3.2563900997176
+ - -3.733976991621835
+ - 3.002713724898837
+ - -0.9600190614785646
+ - -2.478560846803998
+ - -3.1001306761469003
+ - -1.3218489660478594
+ - 3.3323729455225095
+ - -3.720478835080677
+ - 2.8389265430113353
+ - -0.7795471741608369
+ - -2.0243613745617677
+ - -3.072700387432045
+ - -1.4412575246436607
+ - 3.4433175034288994
+ - -3.6835878180081094
+ - 2.73194054736186
+ - -0.7767071456844996
+ - -1.3435892047640383
+ - 3.031510277227499
+ - -2.4246649933581246
+ - -4.144363150418816
+ - 2.187512222442734
+ - 1.5720626067139405
+ - -0.6195815083736255
+ - -1.5850892905001803
+ - 3.1778354062424485
+ - -2.5631851838511124
+ - -4.8030499210634
+ - 2.1757083268343806
+ - 1.46914453990823
+ - -0.3593874420461112
+ - -1.731316351318581
+ - 3.2591077330124336
+ - -3.723678210179441
+ - 2.925690883271046
+ - -1.1789448389705794
+ - 0.5532785206868628
+ - 0.8960858493952997
+ - 4.4765247727069335
+ - 3.7811543635462916
+ - -1.9621686564696452
+ - -0.09459332350511766
+ - 2.117906365438492
+ - -3.5021325971980812
+ - 3.6536240252881256
+ - -2.621785705092469
+ - 0.6667467697197532
+ - 1.958108738393143
+ - 4.086167613928062
+ - 2.328872462328528
+ - -2.1836340679294777
+ - 0.16953216948728975
+ - 1.9844490119379337
+ - -2.1650638327453566
+ - -3.4324959313698318
+ - 3.4166422506424805
+ - 2.1581486032665578
+ - -1.9649559636728682
+ - -0.09309501570019338
+ - 2.118221307564123
+ - -3.504236756734915
+ - 3.656664273679506
+ - -2.6248658554614006
+ - 0.5822782285114736
+ - 1.6993260747678551
+ - 3.3168441109254894
+ - 1.603284346112454
+ - -3.5576720719081805
+ - 3.5913980607733054
+ - -2.4312633053589425
+ - 0.4335723676369713
+ - 1.5384202465397827
+ - 3.7997437203310493
+ - 1.7499089407805812
+ - -3.6306890910858063
+ - 3.5416446337482883
+ - -2.3071426022861905
+ - 0.2034596563975778
+ - 1.8673081235904851
+ - -3.3360350370793483
+ - 6.665024114119741
+ - 6.571636882707141
+ - 1.9044271204549597
+ - 1.6993060575018384
+ - -2.646510768133587
+ - -2.8351067519387603
+ - 0.2810449594636627
+ - 1.8007224603501715
+ - -3.29717284225676
+ - 3.715349670663001
+ - -2.876089626328648
+ - 1.104066814768506
+ - 0.556912497798783
+ - 0.3286240705852376
+ - -4.553406529398233
+ - -2.2849779573174325
+ - 3.693469508666623
+ - -2.769068756464843
+ - 0.850740924210462
+ - 0.7338430032145776
+ - 0.5980280340593728
+ - -4.243541331361038
+ - -2.3221961838908953
+ - 3.6424476845624127
+ - -2.5858041129930656
+ - 0.6941319741478995
+ - 1.5355240205852876
+ - -3.146978996795789
+ - 3.74120797824402
+ - -2.0863546380800053
+ - -3.9865299284865574
+ - -0.41197913810975084
+ - 0.16990671384150158
+ - 1.680094326478317
+ - -3.281194048823459
+ - 3.730536798228783
+ - -2.132288279390357
+ - -4.424750653253216
+ - -0.8335157522759397
+ - -0.057280874877224656
+ - 1.9102624937695674
+ - -3.3563511734848452
+ - 3.7146946947884807
+ - -2.791603465642839
+ - 0.9828961055467801
+ - 1.1466457070765155
+ - -2.744125914901032
+ - -3.17382848641713
+ - -2.3425754947501744e-16
+ - -1.7006833394090247e-16
+ - -2.6171994581177796e-16
+ - -2.7892530255288093e-16
+ - 3.098618574623641e-16
+ - -2.6262984448558626e-17
+ - 1.8235196603731493e-16
+ - 4.507307157801448e-16
+ - 9.091542112570327e-16
+ - -2.0753961568955462e-16
+ - -7.328820227219825e-17
+ - -1.7238443965605094e-16
+ - -2.6887505811036165e-16
+ - -1.0736804350938298e-16
+ - 2.1754850110144625e-17
+ - -2.2912902967718867e-16
+ - 2.235869195730834e-16
+ - 2.540711100850767e-16
+ - -2.5146290621612038e-17
+ - -2.990257914379195e-17
+ - 2.3905519702782497e-17
+ - 4.7314731038033177e-17
+ - -9.049355901330122e-17
+ - -1.2937104780329353e-16
+ - -2.6002422555604425e-16
+ - 1.166324663699769e-16
+ - 8.784658105313153e-17
+ - 5.459392042849982e-17
+ - -1.8661194619196302e-16
+ - -5.049317254176819e-16
+ - -2.2499312661442353e-16
+ - 6.948317145445432e-17
+ - -7.102172739380295e-16
+ - -4.519508071836605e-16
+ - -8.883919778819516e-17
+ - 4.043258834159199e-16
+ - -2.8785885316845363e-17
+ - 7.403266482349598e-17
+ - 4.0928896709123804e-16
+ - -2.4434915294816438e-16
+ - 1.2937104780329353e-16
+ - -5.712509310291209e-16
+ - 1.31687153518442e-16
+ - -3.5705251140851435e-16
+ - -3.3298155558322124e-16
+ - 8.478601278668532e-17
+ - -2.752029897963923e-16
+ - 2.3161057151484772e-17
+ - 3.030789764394293e-16
+ - 9.210656120777962e-17
+ - -4.451886056760395e-16
+ - -2.265647697782743e-16
+ - -1.3896634290890865e-17
+ - 1.0687173514185116e-16
+ - 8.146074672422216e-16
+ - 2.5642598989143855e-17
+ - -7.444625512977249e-17
+ - -4.896909226313923e-17
+ - 2.8785885316845363e-17
+ - -3.06553135012152e-16
+ - 2.1126192844604324e-16
+ - -3.871205266748169e-17
+ - 5.0292581243224076e-17
+ - -1.2788212270069808e-16
+ - -8.023651941764367e-17
+ - -1.065822219274576e-16
+ - 4.635520152747167e-16
+ - 1.1812139147257235e-16
+ - 4.630557069071849e-16
+ - 4.849346341092124e-17
+ - 1.2686882645032062e-16
+ - 2.1250269936487279e-16
+ - 1.7329433832985927e-16
+ - -5.39321759384574e-17
+ - -2.323136750355178e-16
+ - -2.0489263772938493e-16
+ - 2.3715268161895303e-16
+ - 3.8629334606226387e-16
+ - -3.5883094972550336e-16
+ - 3.186299719554262e-16
+ - -9.953050720544304e-17
+ - 5.00775142839603e-16
+ - -2.2300789314429626e-16
+ - -6.366809174820653e-16
+ - 1.1266199942972237e-16
+ - 8.834288942066334e-17
+ - 2.481541837659083e-16
+ - 2.1754850110144625e-16
+ - 1.290401755582723e-15
+ - -5.379982704044892e-16
+ - 2.3467113978129395e-16
+ - -1.3565762045869652e-17
+ - 1.5416578666457053e-17
+ - 3.523789409475898e-17
+ - 1.73563172028939e-16
+ - 7.556294895671907e-17
+ - -1.5021599923962983e-16
+ - 5.347722660155323e-17
+ - -9.520848850485347e-17
+ - -4.748016716054378e-17
+ - 5.717885984272804e-17
+ - -7.224595470038143e-16
+ - -2.0716738441390576e-16
+ - 2.1184095487483036e-16
+ - 2.6775836428341506e-16
+ - 3.259091613458929e-17
+ - 2.0514079191315083e-17
+ - -8.371067799036639e-17
+ - -1.313562812734208e-16
+ - -5.98051582875839e-17
+ - -8.768114493062093e-18
+ - -7.874759431504822e-17
+ - -4.0035541647566533e-17
+ - -2.681305955590639e-16
+ - 1.782264027322067e-16
+ - 1.7714072817823085e-16
+ - 2.240832279406152e-16
+ - -5.646541656440105e-17
+ - -2.0307284038176827e-16
+ - -2.646977960169688e-18
+ - -6.72084247699335e-17
+ - -1.783814990970604e-16
+ - 6.533899658556365e-16
+ - 2.7751909551154075e-17
+ - 3.019054139453697e-16
+ - -6.989676176073084e-17
+ - 6.394106135034904e-17
+ - 2.2623389753325304e-17
+ - 2.6001388579838734e-16
+ - 1.3582305658120714e-16
+ - 3.8587975575598736e-16
+ - 1.9380841752117436e-16
+ - 6.91522992094331e-16
+ - -2.577494788715234e-16
+ - 3.1631386624027773e-16
+ - 2.989430733766642e-16
+ - -1.5211851464850176e-16
+ - 1.579914969976283e-17
+ - -2.1672132048889323e-16
+ - 1.1712877473750872e-16
+ - -3.0688400725717327e-17
+ - -3.077111878697263e-17
+ - -6.29484446152854e-17
+ - 1.3499587596865412e-16
+ - -5.340278034642347e-16
+ - 1.1894857208512538e-16
+ - -9.770037010016947e-17
+ - -4.481767956388873e-16
+ - -1.0951871310202085e-16
+ - 1.0058516248644815e-16
+ - 4.01223956118846e-16
+ - 5.136791603954301e-17
+ - 5.194694246833013e-17
+ - 5.9557004103817985e-18
+ - 5.409761206096801e-16
+ - -1.3292792443727155e-16
+ - 5.624828165360588e-17
+ - 1.3139764030404845e-16
+ - 5.527220853079331e-16
+ - 1.9306395496987663e-16
+ - 2.522900868286734e-18
+ - -2.5125611106298216e-16
+ - 2.0981436237407545e-16
+ - -8.1146418091452e-17
+ - -1.243417896789711e-15
+ - -3.929107909626881e-17
+ - -2.2151896804170079e-16
+ - 7.46944093135384e-17
+ - -5.635995103630054e-16
+ - -6.791152829060357e-17
+ - 4.9589477722554e-17
+ - -4.331738072787067e-16
+ - -1.821658503994905e-16
+ - -2.0447904742310842e-16
+ - 6.59262948204763e-17
+ - -2.1457065089625535e-16
+ - -4.6983858793011966e-17
+ - -1.9935052762527964e-16
+ - 4.1789164546178953e-16
+ - -3.4146015686188977e-16
+- - 0.18845130209860705
+ - 0.39837191398040317
+ - 0.8405980563190786
+ - -3.4620387214954964
+ - 4.959986784807175
+ - -4.798190941475861
+ - 3.046029046701631
+ - -0.304718989021893
+ - -1.5404577037808211
+ - -2.012302110946215
+ - 6.693896473555362
+ - 3.4899374067002933
+ - -4.717527839077236
+ - 2.863620058601547
+ - 0.05450554043459436
+ - -1.7314646563813072
+ - -2.1763068927943006
+ - 5.836502858370553
+ - 3.326242127670646
+ - -4.565881295254328
+ - 2.558736956962273
+ - 0.273404358538218
+ - -3.15233765994214
+ - 4.843401931857861
+ - -4.96794917186014
+ - 2.366093324762747
+ - 4.790187076200342
+ - 1.9360785196332266
+ - 0.5645589658264116
+ - -3.3222984610839106
+ - 4.948483249640735
+ - -4.8683975137570865
+ - 2.2258421131766775
+ - 4.930723973578449
+ - 2.5155330213221925
+ - 0.8199154032350225
+ - -3.587377593465998
+ - 5.001288996612463
+ - -4.795533272111779
+ - 2.9018546976216797
+ - -0.13222003460693824
+ - -2.6839734125107877
+ - 7.261357792983345
+ - 7.035438698538908
+ - -0.01726990559033899
+ - -0.33901685249431635
+ - -7.423648210712552
+ - -7.64010278055094
+ - 2.9862617078874547
+ - -0.23076470043526975
+ - -2.595620252059172
+ - 4.656033638317473
+ - -5.067060161697207
+ - 3.8373606279453294
+ - -1.0481816543691513
+ - -2.9239998345348575
+ - -4.632197131141634
+ - -2.042549137713399
+ - 4.74335568747153
+ - -5.029769163874706
+ - 3.590124623404447
+ - -0.7958310752094755
+ - -2.3234410810849258
+ - -4.538271376926721
+ - -2.1938356154878287
+ - 4.867107318817234
+ - -4.949298407504289
+ - 3.430370341541864
+ - -0.6349640673634168
+ - -2.2380409512860884
+ - 4.389964694935071
+ - -3.333269149460731
+ - -5.779958383427581
+ - 2.556697753074092
+ - 1.9288894500720282
+ - -0.41711780429530493
+ - -2.5555875376448607
+ - 4.5643011032993925
+ - -3.5093111685585106
+ - -6.660231110740852
+ - 2.459680743951798
+ - 1.7601801781816793
+ - -0.058186489927867076
+ - -2.7466604605240055
+ - 4.659185032106567
+ - -5.03805137963159
+ - 3.72069354899245
+ - -1.1963326290669378
+ - 0.1282135123682998
+ - 0.45715753898131767
+ - 5.535270169857724
+ - 4.706289793775947
+ - -2.3071725890986503
+ - -0.5629560795740035
+ - 3.2470267970056126
+ - -4.930241278666552
+ - 4.890771207827335
+ - -3.266929921472173
+ - 0.6221443960027813
+ - 2.151058785873968
+ - 5.541614085691215
+ - 3.0515852786919155
+ - -2.6263448785992725
+ - -0.20204091035448016
+ - 3.0748259773026767
+ - -3.082879637887938
+ - -4.980066648204565
+ - 4.360453342905226
+ - 2.8129027034474237
+ - -2.3111881642558956
+ - -0.5605839661646679
+ - 3.2471151210115092
+ - -4.9328766133611275
+ - 4.894862963392412
+ - -3.271277332488504
+ - 0.5202028666275357
+ - 1.861965364703772
+ - 4.83940250324173
+ - 2.399604564647099
+ - -4.988280545104477
+ - 4.776366301996385
+ - -2.9866184560771822
+ - 0.3119239763708071
+ - 1.5890853531438056
+ - 5.495598715148985
+ - 2.585938608693187
+ - -5.058651422991611
+ - 4.690469435318665
+ - -2.805590373301508
+ - -0.15553609296545823
+ - 2.9231484258758083
+ - -4.747635187961491
+ - 9.17656900186848
+ - 9.068163015406567
+ - 2.9621622574016566
+ - 2.6957220176015
+ - -2.9057044853989513
+ - -3.163586348039458
+ - -0.04944719483845852
+ - 2.837074018246766
+ - -4.703162886793137
+ - 5.017711313748356
+ - -3.6460097770332207
+ - 1.091444088951047
+ - 1.0365150954343187
+ - 0.9871306217330276
+ - -6.324462354462086
+ - -3.2196465582799947
+ - 4.969476038486035
+ - -3.4857062222218946
+ - 0.7378802244934972
+ - 1.2704780944203282
+ - 1.3081418472886157
+ - -5.858032550086892
+ - -3.2528680695589935
+ - 4.8699984042432245
+ - -3.213901237101304
+ - 0.5204290939562829
+ - 2.4906149104954767
+ - -4.527908411938317
+ - 5.101247714970289
+ - -2.7006418365735367
+ - -5.256237350901335
+ - -1.0568922576501605
+ - -0.05001208945436056
+ - 2.6798911012010715
+ - -4.684842649418598
+ - 5.056262904229222
+ - -2.743380974106121
+ - -5.794145979692269
+ - -1.6964345861177237
+ - -0.37572967657442896
+ - 2.9792602140437716
+ - -4.77056286484602
+ - 5.016180883860479
+ - -3.5193905754811685
+ - 0.9220695404219433
+ - 1.977478590814291
+ - -4.2870321040283725
+ - -5.008664199024912
+ - -1.948837523174933e-16
+ - -3.970466940254533e-18
+ - -3.125088354225338e-16
+ - -3.814956985094563e-16
+ - 4.049876279059623e-16
+ - -4.566036981292712e-17
+ - 1.8260012022108083e-16
+ - 5.659569751087815e-16
+ - 1.191300348320042e-15
+ - -2.7644376071522185e-16
+ - -9.148617574836485e-17
+ - -1.1580528575742387e-16
+ - -3.5889298827144483e-16
+ - -1.0372844881414966e-16
+ - 3.176373552203626e-17
+ - -3.7289302013890483e-16
+ - 2.8198587081932713e-16
+ - 3.122968703905671e-16
+ - -6.352747104407253e-17
+ - -7.403266482349598e-18
+ - 3.3118243775091846e-17
+ - 3.2094607767057474e-17
+ - -1.3036366453835716e-16
+ - -1.892589241521327e-16
+ - -3.159002759340012e-16
+ - 1.2407709188295415e-16
+ - 1.0620999065180874e-16
+ - 7.378451063973007e-17
+ - -2.236696376343387e-16
+ - -6.422643866167982e-16
+ - -3.206152054255535e-16
+ - 1.1547441351240266e-16
+ - -8.52988647664682e-16
+ - -6.146339692181129e-16
+ - -1.4789989352448135e-16
+ - 5.075580238625378e-16
+ - -6.5843576759221e-17
+ - 8.271806125530276e-17
+ - 5.442848430598922e-16
+ - -2.5195921458365223e-16
+ - 1.7271531190107215e-16
+ - -7.260991416990476e-16
+ - 2.2813641294212503e-16
+ - -4.899390768151583e-16
+ - -4.668193786943012e-16
+ - 9.115530350334364e-17
+ - -3.8017220952937147e-16
+ - -3.90429249125029e-17
+ - 4.526332311890167e-16
+ - 1.3753945635225468e-16
+ - -6.049999000212843e-16
+ - -2.9503464498235115e-16
+ - -4.301339185275744e-18
+ - 1.2473883637299657e-16
+ - 1.0892314306098268e-15
+ - 3.159829939952566e-17
+ - -1.1133851044963753e-16
+ - -8.40415502353876e-17
+ - 4.20207751176938e-17
+ - -4.286449934249789e-16
+ - 3.1978802481300045e-16
+ - -4.3344264097778644e-17
+ - 9.694556779121483e-17
+ - -1.9951596374779025e-16
+ - -1.4177875699158894e-16
+ - -1.8264147925170849e-16
+ - 6.088876489002836e-16
+ - 1.7536228986124184e-16
+ - 6.306424990104282e-16
+ - 5.3559944662808536e-17
+ - 1.3124254393919475e-16
+ - 2.7942161092041275e-16
+ - 2.1721762885642504e-16
+ - -7.709323308994217e-17
+ - -3.7099050473003286e-16
+ - -2.874452628621771e-16
+ - 3.4146015686188977e-16
+ - 5.31380825504065e-16
+ - -4.807573720158197e-16
+ - 4.1789164546178953e-16
+ - -1.3159926557835825e-16
+ - 6.865599084190129e-16
+ - -3.1664473848529894e-16
+ - -8.627493788928078e-16
+ - 1.4235778342037606e-16
+ - 9.661469554619362e-17
+ - 2.934836813338142e-16
+ - 2.832266417381567e-16
+ - 1.757593365552673e-15
+ - -7.702705864093793e-16
+ - 2.792148157672745e-16
+ - 1.5451733842490555e-16
+ - 5.969142095335786e-17
+ - 1.1580528575742387e-18
+ - 1.9112008053037702e-16
+ - 1.0538281003925571e-16
+ - -2.6469779601696886e-16
+ - 5.434576624473391e-17
+ - -1.1696333861499811e-16
+ - -8.850832554317395e-17
+ - 8.569591146049365e-17
+ - -9.816979509779332e-16
+ - -2.7557522107204117e-16
+ - 2.368218093739318e-16
+ - 3.182163816491497e-16
+ - 3.813302623869457e-17
+ - 2.6304343479186277e-17
+ - -1.133237439197648e-16
+ - -2.1465336895751066e-16
+ - -6.749793798432706e-17
+ - -1.0587911840678753e-17
+ - -9.00799687070247e-17
+ - -3.308722450212111e-17
+ - -3.6453849595211925e-16
+ - 2.529104722880882e-16
+ - 2.3525016621008107e-16
+ - 2.752857078576476e-16
+ - -9.311985745815708e-17
+ - -2.5319998550248177e-16
+ - -9.098986738083304e-19
+ - -9.189976605464136e-17
+ - -2.416194569267394e-16
+ - 8.735854449172524e-16
+ - 1.8218652991480435e-17
+ - 4.1069258919316396e-16
+ - -1.0025429024142694e-16
+ - 9.686284972995953e-17
+ - 3.7471281748652154e-17
+ - 3.2986928852849047e-16
+ - 1.5848780536516008e-16
+ - 5.085506405976014e-16
+ - 2.628779986693522e-16
+ - 8.488527446019169e-16
+ - -3.272326503259777e-16
+ - 4.056493723960047e-16
+ - 4.106124560713229e-16
+ - -2.157287037538296e-16
+ - -1.9004474573405808e-17
+ - -3.239239278757656e-16
+ - 1.7238443965605094e-16
+ - -5.97224402263286e-17
+ - -1.703992061859237e-17
+ - -7.465305028291075e-17
+ - 1.5550995515996918e-16
+ - -7.550504631384036e-16
+ - 1.624582723054146e-16
+ - -1.1936733227023035e-16
+ - -5.878772613414368e-16
+ - -1.5981129434524492e-16
+ - 1.2639319759810263e-16
+ - 5.55575858421241e-16
+ - 1.0951871310202085e-16
+ - 7.940933880509064e-17
+ - 1.290401755582723e-17
+ - 7.193162606761128e-16
+ - -1.711436687372214e-16
+ - 7.543887186483611e-17
+ - 2.1101377426227734e-16
+ - 7.193162606761128e-16
+ - 2.5030485335854617e-16
+ - -1.4889251025954496e-18
+ - -3.227245159875637e-16
+ - 2.8707303158652825e-16
+ - -1.2722037821065566e-16
+ - -1.7195430573752337e-15
+ - -6.534726839168919e-17
+ - -3.1350145215759744e-16
+ - 1.2697222402688975e-16
+ - -7.854079916190997e-16
+ - -7.411538288475128e-17
+ - 4.7030387702468074e-17
+ - -5.470972571425725e-16
+ - -2.6138907356675675e-16
+ - -2.833920778606673e-16
+ - 8.685396431806789e-17
+ - -2.8206858888058244e-16
+ - -6.427193359537025e-17
+ - -2.6817195458969157e-16
+ - 5.075580238625378e-16
+ - -5.714163671516315e-16
+- - -1.636032324193996
+ - -1.4654147778652888
+ - 0.3744454254201139
+ - 1.221806845701292
+ - -2.4951775379762595
+ - 2.8836710494540787
+ - -2.365530083594164
+ - 1.005754151307907
+ - 0.30405196782424176
+ - 0.015837474431779998
+ - -3.6704568111859173
+ - -1.8258687956632125
+ - 2.8750976196169233
+ - -2.2874417129462485
+ - 0.813325850815164
+ - 0.45951855985480267
+ - 0.2631520561887738
+ - -3.2649291296187464
+ - -1.7674112745544053
+ - 2.8468036485862056
+ - -2.1549867018255777
+ - 0.6924704997613679
+ - 1.0097559209480844
+ - -2.366565067575608
+ - 2.8840373462377356
+ - -1.6784943647002029
+ - -3.1680359886396228
+ - -0.11774349117805374
+ - 0.24687034309272643
+ - 1.1260894580247784
+ - -2.4805010025030096
+ - 2.8890638344548716
+ - -1.6294806149322674
+ - -3.3541503357406732
+ - -0.3783642077824267
+ - 0.10275925202354406
+ - 1.309806388790289
+ - -2.5465925911669127
+ - 2.883420043712371
+ - -2.3045859226490895
+ - 0.9133914803370068
+ - 0.7009087336442582
+ - -2.9946432338111824
+ - -2.851094575616521
+ - 0.856112248472046
+ - 1.0286887609534725
+ - 4.9043796685851015
+ - 4.998126442835864
+ - -2.3404533456371137
+ - 0.9662452887987816
+ - 0.6441147253272522
+ - -2.1861771667787813
+ - 2.8538346359816513
+ - -2.672632448082529
+ - 1.1047606464669697
+ - 2.5392525207568726
+ - 1.7751543835414647
+ - 0.6599773900935806
+ - -2.2664557059383488
+ - 2.871602098215552
+ - -2.5815570623250395
+ - 0.9765506136513957
+ - 2.1669498569938246
+ - 1.8355164212610966
+ - 0.7673383249600423
+ - -2.391254893484973
+ - 2.8860075661967093
+ - -2.5210421643706717
+ - 1.179697405234326
+ - 0.41788092204922617
+ - -1.9568969511637995
+ - 1.8045913998309329
+ - 2.965865438257752
+ - -2.275507358864978
+ - -1.503804405301353
+ - 1.0662923837680314
+ - 0.619279726672512
+ - -2.103452488314915
+ - 1.9283622289409164
+ - 3.4923881581149825
+ - -2.382816963076775
+ - -1.4663285601753342
+ - 0.87352054150201
+ - 0.7415169703539448
+ - -2.1890388537030248
+ - 2.867540609063419
+ - -2.630836864100368
+ - 1.4670050708656912
+ - -1.3205127924093478
+ - -1.7801649873979235
+ - -4.220870391385003
+ - -3.5208774031474714
+ - 2.0009127990463114
+ - -0.5719834089555488
+ - -1.114535122435408
+ - 2.419929041046295
+ - -2.929252301749425
+ - 2.4157455506102923
+ - -0.9193545458367416
+ - -2.234489193836163
+ - -2.372200466604914
+ - -0.9989037425602092
+ - 2.486462493384262
+ - -0.7708105940818456
+ - -0.9981092758683383
+ - 1.4583490704703903
+ - 2.1792057993661103
+ - -3.026443921123281
+ - -1.8274872560971511
+ - 2.0027074988856963
+ - -0.5726475478472013
+ - -1.115250593328491
+ - 2.421844675462465
+ - -2.9316224718592903
+ - 2.41785743508592
+ - -0.8361064411635377
+ - -1.9460774497713336
+ - -2.0668118170605414
+ - -0.9123254113068261
+ - 2.488453409608482
+ - -2.9234988125060375
+ - 2.3012496955907333
+ - -0.7309574069908208
+ - -1.9005731080005668
+ - -2.4372319218380727
+ - -1.0433475899130795
+ - 2.5850258992421433
+ - -2.9125056453036042
+ - 2.2229123203123446
+ - -0.79711802238184
+ - -0.8983989557681493
+ - 2.230466286994256
+ - -4.940023117268419
+ - -4.841784872453133
+ - -0.915703544885697
+ - -0.7388264772896479
+ - 3.0223262473654287
+ - 3.163523421629662
+ - -0.8554837635644545
+ - -0.8409922064912555
+ - 2.188786007957057
+ - -2.914678989890698
+ - 2.562608937328604
+ - -1.4546375524000874
+ - -0.025217284868016842
+ - 0.5246761400457782
+ - 3.2959049642744516
+ - 1.5879519490241454
+ - -2.923587028993353
+ - 2.502785486626267
+ - -1.2728337813860244
+ - -0.17021707230380206
+ - 0.25326648060720397
+ - 3.1233995283582887
+ - 1.6414339616624631
+ - -2.9286569050764975
+ - 2.3940387261718734
+ - -1.1602682692330206
+ - -0.6175501400154264
+ - 2.0321073869414894
+ - -2.8649624909965903
+ - 1.7935365539358787
+ - 3.2891514745046355
+ - -0.3982432141782347
+ - -0.5339557839796096
+ - -0.7378621026911013
+ - 2.172514630636891
+ - -2.8996891742022513
+ - 1.857049403691672
+ - 3.7080295318098253
+ - -0.1707891921394331
+ - -0.3841191995953373
+ - -0.934558474840833
+ - 2.2528489998315777
+ - -2.915092891743935
+ - 2.514808437485024
+ - -1.368508751808964
+ - -0.29727116317005176
+ - 1.3029067685703222
+ - 1.4346164762930436
+ - 1.1088769701579612e-15
+ - 1.0749212060126595e-15
+ - 2.6800651846718097e-16
+ - 2.663521572420749e-16
+ - -2.842192584732203e-16
+ - -1.6305797824951556e-16
+ - -1.6742135598073278e-16
+ - -2.7458260433697754e-16
+ - -8.026133483602027e-16
+ - 1.3557490239744124e-16
+ - 1.7476775379596935e-16
+ - 2.2598574334948716e-16
+ - 1.7035784715529602e-16
+ - 5.1450634100798315e-17
+ - -6.940045339319902e-17
+ - -5.70754622661589e-18
+ - -1.3028094647710186e-16
+ - -1.2196778132094393e-16
+ - 2.762783245927112e-17
+ - 5.209169907552691e-17
+ - 4.7852398436192645e-17
+ - 4.71699744308364e-17
+ - 2.0514079191315083e-17
+ - 1.0356301269163905e-16
+ - 1.6150701460097863e-16
+ - -2.3797986223150606e-16
+ - -7.593518023236793e-17
+ - -4.350970022028925e-17
+ - 2.776018135727961e-16
+ - 3.8088565280769846e-16
+ - 3.212769499155959e-16
+ - -7.072394237328387e-18
+ - 1.3830459841886623e-16
+ - 3.5800376911295033e-16
+ - 1.8776999904953728e-17
+ - -5.816734067472891e-16
+ - 1.2035477912646553e-16
+ - 7.279189390466644e-17
+ - -3.0771118786972625e-16
+ - 2.4716156703084467e-16
+ - 1.7172269516600852e-16
+ - 2.687406412608218e-16
+ - 6.956588951570963e-17
+ - 2.307833909022947e-16
+ - 1.093119179488826e-16
+ - -7.582661277697034e-17
+ - 1.6055575689654265e-16
+ - -1.985233470127266e-17
+ - -1.4409486270673742e-16
+ - -3.2523707709819357e-17
+ - 2.0706398683733663e-16
+ - 1.2961920198705944e-16
+ - 5.3270431448414976e-17
+ - -1.684139727157964e-16
+ - -6.541344284069342e-16
+ - -5.624828165360588e-17
+ - -2.0927669497591597e-17
+ - 1.2738581433316626e-16
+ - 1.5716431638507526e-17
+ - 1.5683344414005402e-16
+ - 9.347140921849213e-18
+ - 1.1001502146955267e-17
+ - 7.229558553713462e-17
+ - 1.6791766434826462e-17
+ - -5.955700410381799e-17
+ - 1.6990289781839186e-16
+ - -5.64592127098069e-16
+ - -6.038418471637102e-17
+ - -4.012859946647875e-16
+ - -9.802090258753377e-17
+ - -1.555099551599692e-17
+ - -1.1497810514487085e-16
+ - -8.437242248040881e-17
+ - -3.8443218968401955e-17
+ - 2.0348643068804478e-17
+ - -8.54063982461001e-18
+ - -1.8462671272183575e-16
+ - -2.4616895029578104e-16
+ - 2.929873729662824e-16
+ - -2.754511439801582e-16
+ - 1.1770780116629584e-16
+ - -3.2640546971342467e-16
+ - 1.3408597729484579e-16
+ - 4.614840637433341e-16
+ - -1.6605650797002028e-16
+ - -1.31211524666224e-17
+ - -1.589841137326919e-16
+ - -1.7817470394392214e-16
+ - -8.960020395174396e-16
+ - 4.317882797526804e-16
+ - 1.6874484496081765e-17
+ - -1.9256764660234482e-16
+ - 1.4803948025284967e-17
+ - -4.921724644690514e-17
+ - -1.3069453678337837e-16
+ - -1.799945012915388e-16
+ - 1.6973746169588125e-16
+ - -5.999127392540833e-17
+ - 1.3276248831476094e-16
+ - 4.536051684087665e-17
+ - 1.196930346364231e-16
+ - 5.264177418287468e-16
+ - 2.1353667513056407e-16
+ - -9.148617574836485e-17
+ - 3.556876633978019e-18
+ - 8.569591146049365e-17
+ - -3.6065074707312007e-17
+ - 1.360298517343454e-16
+ - 2.4633438641829164e-16
+ - 1.0733702423641224e-16
+ - 4.1028158382630167e-17
+ - 4.173126190330024e-17
+ - -1.2035477912646551e-17
+ - 1.462455322993753e-16
+ - -1.549619480041528e-16
+ - -6.700162961679524e-17
+ - -2.1173755729826123e-16
+ - 1.1166938269465872e-17
+ - 2.9745414827406875e-16
+ - 4.697351903535505e-17
+ - 8.192189991572047e-17
+ - 6.667075737177403e-17
+ - -3.4121200267812387e-16
+ - 1.5675072607879874e-17
+ - -2.494569932306793e-16
+ - 1.2304311611726285e-17
+ - -1.0091603473146936e-16
+ - -2.6883369907973396e-18
+ - -2.1457065089625535e-16
+ - -1.3946265127644047e-16
+ - -2.4641710447954694e-16
+ - -2.271437962070614e-16
+ - -3.258574625576083e-16
+ - 7.481073158717867e-17
+ - -2.779326858178173e-16
+ - -2.8918234214853848e-16
+ - 1.5836372827327712e-16
+ - 1.6212740006039342e-17
+ - 3.0738031562470503e-16
+ - -6.675347543302933e-17
+ - 1.2647591565935793e-16
+ - 6.770473313746532e-17
+ - 1.4475660719677984e-17
+ - -2.50801161726078e-16
+ - 6.504948337117009e-16
+ - -9.214792023840727e-17
+ - 9.29751008509603e-17
+ - 3.95888641167879e-16
+ - -3.838118042246048e-17
+ - -7.47771273747937e-17
+ - -2.582871462696829e-16
+ - 1.1319966682788184e-16
+ - 2.6883369907973396e-17
+ - -4.417144471033167e-17
+ - -4.450231695535289e-16
+ - 1.1018045759206327e-16
+ - -8.503416697045123e-17
+ - -3.3765512604414585e-16
+ - -4.230201652596183e-16
+ - -1.1315830779725419e-16
+ - 3.697497338112034e-17
+ - 3.623051082982261e-17
+ - -8.230447094902624e-17
+ - 3.1184709093249143e-17
+ - 8.70194004405785e-16
+ - 5.2939559203393765e-17
+ - 7.870623528442057e-17
+ - -9.793818452627846e-17
+ - 2.565914260139492e-16
+ - 4.714929491552257e-17
+ - -2.5146290621612038e-17
+ - 3.603198748280988e-16
+ - 1.43433118216695e-16
+ - 1.9041697700970695e-16
+ - -4.9961708998202865e-17
+ - 7.002083885261379e-17
+ - -7.279189390466644e-18
+ - 1.2606232535308142e-16
+ - -9.284275195295183e-16
+ - 5.479244377551255e-16
+- - 4.049301619389577
+ - 3.3870618077746513
+ - -1.9233397424407526
+ - 0.374108656270318
+ - 1.2193032042496685
+ - -2.5426169498959577
+ - 2.8831004017460478
+ - -2.364866951054099
+ - 0.8208183313586452
+ - 2.0619895588158665
+ - 2.530434680958932
+ - 1.0914884440165942
+ - -2.601459150578999
+ - 2.8742739745756807
+ - -2.237657683490701
+ - 0.6169495903180865
+ - 1.5915163258985823
+ - 2.374005960957404
+ - 1.110844412342586
+ - -2.689721972212633
+ - 2.8459176568510816
+ - -2.155982191971748
+ - 0.6009018899988917
+ - 1.00723315393856
+ - -2.3661350162718064
+ - 1.8835631479035346
+ - 3.216101959192258
+ - -1.7179019034957927
+ - -1.230796394114815
+ - 0.47981361932029387
+ - 1.1963338208790695
+ - -2.4800197213100814
+ - 1.9029427381083062
+ - 3.5523149752004257
+ - -1.64709418707586
+ - -1.1236522532481126
+ - 0.276827269554618
+ - 1.3094815064603227
+ - -2.544762133561258
+ - 2.8757168633749703
+ - -2.3055403360057527
+ - 0.913008863381275
+ - 0.1832529315759214
+ - 0.046788531564428075
+ - -2.2040106636425327
+ - -2.31565788382071
+ - -4.970605651498193
+ - -4.987622857466242
+ - 2.8806075713016766
+ - -2.3397407461472413
+ - 0.9680705331153819
+ - 0.7349466597313468
+ - -2.1842513897477867
+ - 2.8532396177890123
+ - -1.771883748588003
+ - -3.534635916707072
+ - 0.23394223070802775
+ - 0.4218005568153705
+ - 0.8552699307338775
+ - -2.2661317392659885
+ - 2.8784490572226162
+ - -1.7028522798412613
+ - -3.195968871191265
+ - -0.020900069067034534
+ - 0.3012583916952118
+ - 1.0466451745866634
+ - -2.390852093931454
+ - 2.8851209731226826
+ - -2.4711849151958423
+ - 1.1814219786606515
+ - 0.4179708336707634
+ - -1.200015700123077
+ - -1.6569374810056285
+ - 3.233882773531643
+ - 1.8870995502820775
+ - -2.4013118394128985
+ - 0.9937896972333891
+ - 0.6193536087799352
+ - -1.3372595654663362
+ - -2.103485338831081
+ - 3.613775279507125
+ - 1.9661445662827048
+ - -2.2793197013817075
+ - 0.8730147056947417
+ - 0.7391125273313457
+ - -2.2500253546072
+ - 2.866526166372304
+ - -2.6301535362931734
+ - 3.293310343381023
+ - 4.142532645653586
+ - 5.169942723652192
+ - 4.219537900053446
+ - -2.8548901604257773
+ - 1.9998839330231468
+ - -0.5738542603319764
+ - -1.2009493405786
+ - 2.418174626482046
+ - -2.9284912328799138
+ - 1.735905473284023
+ - 3.551333227710131
+ - 0.365110211962319
+ - -0.10508959404895071
+ - -1.3126850371307948
+ - 2.485946905690379
+ - -0.6927899561191198
+ - -0.5630727551458907
+ - -0.4512258448252006
+ - 3.2977646478671048
+ - 1.8033112877533195
+ - -2.855421048026517
+ - 1.9991420930368866
+ - -0.5720324162341672
+ - -1.2032235129198232
+ - 2.420076430504983
+ - -2.9294990925428857
+ - 1.6264033772378554
+ - 3.1049977512030105
+ - 0.30646924348462257
+ - -0.1400153356190903
+ - -1.3149705197818398
+ - 2.52606157017904
+ - -2.9211566314000827
+ - 1.5711793954563373
+ - 3.272116149607985
+ - 0.5820378611890152
+ - 0.005295070597741405
+ - -1.4952691935059397
+ - 2.5841002625459613
+ - -2.9102702646468215
+ - 2.158537536482638
+ - -0.7963865474748025
+ - -0.9004690123278296
+ - 3.2326294298846223
+ - 3.0910021717407234
+ - -0.6930496643018175
+ - -0.8669244998306315
+ - -4.807584231261727
+ - -4.908695284883464
+ - 2.199860286967321
+ - -0.8554205483915034
+ - -0.8383902593736722
+ - 2.2477783994231926
+ - -2.9136391124819823
+ - 2.5618591828809234
+ - -1.0178720774410934
+ - -2.393542505158666
+ - -1.9444494552388385
+ - -0.7565004470501825
+ - 2.324551273963769
+ - -2.9227083112780887
+ - 2.462712535252596
+ - -0.8860442817017736
+ - -2.0245773617174163
+ - -1.9842285560645452
+ - -0.8605984272648968
+ - 2.4384763775787497
+ - -2.9277522348766483
+ - 2.394592748476321
+ - -1.073155888149984
+ - -0.6150254188064604
+ - 2.0314658841734485
+ - -1.8325342994519005
+ - -3.043420031282889
+ - 2.138216580210224
+ - 1.43813009692028
+ - -0.955493268631417
+ - -0.8122171733593926
+ - 2.171824128763814
+ - -1.9527063648440013
+ - -3.5684226584895096
+ - 2.216256149515497
+ - 1.38964270938011
+ - -0.7610587588875155
+ - -0.9343438225036426
+ - 2.250487115761052
+ - -2.9218036568382693
+ - 2.5151974360309
+ - -1.368119833886389
+ - 1.0988277328458447
+ - 1.511166319578162
+ - -1.0587911840678754e-15
+ - -9.21810074629094e-16
+ - -3.032444125619399e-16
+ - -1.2722037821065566e-16
+ - 1.5501364679243736e-16
+ - 9.942710962887391e-17
+ - 3.330332543715058e-16
+ - 1.890934880296221e-16
+ - 6.093012392065601e-16
+ - -1.0124690697649058e-16
+ - -7.514935865044256e-17
+ - -4.025888041295585e-16
+ - -1.8851446160083498e-16
+ - -2.748100790054296e-16
+ - -3.763671787116276e-17
+ - 3.2094607767057474e-17
+ - 9.988205896577808e-17
+ - 2.179000528617813e-16
+ - 2.188719900815311e-16
+ - -1.5675072607879874e-17
+ - 3.4855323061453204e-17
+ - 1.6063847495779795e-16
+ - 4.0035541647566533e-17
+ - 1.290401755582723e-17
+ - -2.9391795115540456e-16
+ - 1.462455322993753e-16
+ - 5.707546226615891e-17
+ - 2.5973471234165066e-17
+ - -1.0951871310202085e-16
+ - -3.02045000673738e-16
+ - -1.2904017555827232e-16
+ - -6.063233890013693e-17
+ - -4.049876279059623e-16
+ - -1.6717320179696687e-16
+ - 4.8803656140628627e-17
+ - 4.2086949566698043e-16
+ - -1.49719690872098e-17
+ - 2.7234921668308433e-17
+ - 3.1052360195240654e-16
+ - -3.7893143861054193e-16
+ - -1.0604455452929814e-16
+ - -2.836402320444332e-16
+ - -1.6361632516298885e-16
+ - -7.016559545981057e-17
+ - -5.525566491854224e-17
+ - 5.67445900211377e-17
+ - -6.501639614666798e-17
+ - 5.533838297979755e-16
+ - -9.119666253397129e-17
+ - 1.9025154088719633e-17
+ - -9.012132773765235e-17
+ - -1.484634103167831e-16
+ - -5.968108119570095e-17
+ - 2.2888087549342276e-16
+ - 4.137557423990244e-16
+ - 2.5394444805377947e-17
+ - 4.2186211240204405e-17
+ - 1.2705494208814505e-16
+ - -2.067951531382569e-17
+ - -5.70754622661589e-18
+ - -6.41478565034873e-17
+ - 7.849944013128231e-17
+ - -1.8942436027464331e-16
+ - 6.787016925997592e-17
+ - 5.575197328607407e-17
+ - -4.6218716726400415e-17
+ - 3.9077046112770714e-16
+ - -7.254373972090053e-17
+ - 3.612711325325348e-16
+ - 1.6278914455043582e-16
+ - 1.1789391680412027e-16
+ - 9.988205896577808e-17
+ - 1.1419228356294547e-16
+ - 5.620692262297823e-17
+ - 4.168990287267259e-17
+ - 7.204743135336871e-17
+ - 4.028369583133244e-17
+ - 1.9901965538025843e-16
+ - -1.3251433413099503e-16
+ - 2.7950432898166805e-16
+ - -8.817745329815274e-17
+ - 8.346252380660048e-17
+ - -2.9344232230318657e-17
+ - -3.513863242125261e-16
+ - 1.476103803100878e-16
+ - 3.970466940254532e-17
+ - 2.1318512337022903e-16
+ - 1.9556617632284954e-16
+ - 8.468675111317896e-16
+ - -1.0314942238536254e-16
+ - 4.251708348522562e-16
+ - -7.325511504769612e-16
+ - -2.0199750558544933e-16
+ - 1.4293680984916318e-16
+ - 1.914199335024275e-16
+ - 9.979934090452278e-17
+ - 1.9482171377155182e-16
+ - 2.2284245702178566e-16
+ - -2.2644069268639133e-16
+ - 6.2865726554030096e-18
+ - -5.241223156289121e-17
+ - -4.576790329255902e-16
+ - -1.711436687372214e-16
+ - 2.0193546703950786e-16
+ - 1.730668636614072e-16
+ - -2.9778502051908996e-17
+ - -8.850832554317396e-18
+ - -7.849944013128231e-17
+ - 1.6394719740801006e-16
+ - -8.147729033647321e-17
+ - -1.823933250679426e-17
+ - -3.4638188150658034e-17
+ - -1.0306670432410724e-16
+ - -9.123802156459894e-17
+ - 3.4824303788482465e-17
+ - 9.562207881112999e-17
+ - 2.564259898914386e-16
+ - 3.6065074707312007e-17
+ - -1.7515549470810359e-16
+ - -7.502528155855961e-17
+ - -6.86559908419013e-17
+ - 1.890107699683668e-17
+ - 3.302570294406247e-16
+ - 8.141525179053174e-17
+ - 1.6063847495779795e-16
+ - -6.617444900424221e-18
+ - 2.456726419282492e-17
+ - -1.3048774163024012e-16
+ - 1.8834902547832438e-16
+ - 1.2300175708663522e-16
+ - 1.921540562960683e-16
+ - 2.358291926388682e-16
+ - 6.157946070151014e-16
+ - -8.33177671994037e-17
+ - 2.7571997767923795e-16
+ - 1.0430747524293678e-16
+ - -9.005928919171088e-17
+ - -6.742555968072867e-17
+ - -4.441959889409758e-17
+ - 2.5001534014415258e-17
+ - -4.7446562948158816e-17
+ - -1.7583791871345983e-16
+ - 2.6087208568391107e-17
+ - 2.895132143935597e-16
+ - -3.546950466627382e-16
+ - -1.4062070413401469e-18
+ - -1.1315830779725419e-16
+ - -2.399547559439764e-16
+ - 4.20207751176938e-17
+ - 1.1861769984010417e-16
+ - 1.8776999904953726e-16
+ - -2.0111345630578329e-16
+ - -4.044913195384305e-17
+ - -9.016268676828002e-18
+ - 2.2896359355467806e-16
+ - -1.5670936704817107e-16
+ - 2.374008358027189e-17
+ - 4.2447290121041455e-17
+ - 3.2694313711158414e-16
+ - 8.478601278668532e-17
+ - 3.027481041944081e-17
+ - 4.859686098749037e-17
+ - 1.0935327697951025e-16
+ - 4.322018700589569e-17
+ - -5.151680854980256e-16
+ - -5.2608686958372554e-17
+ - -6.226602060992916e-17
+ - -4.7811039405564993e-17
+ - -1.0372844881414966e-16
+ - -1.646089418980525e-17
+ - 1.0885696861197843e-16
+ - -2.787495266727134e-16
+ - 1.7577588016751838e-17
+ - -4.3923290526565763e-17
+ - -2.845501307182415e-17
+ - -1.2535922183241134e-16
+ - -2.2623389753325304e-17
+ - -1.2151283198403977e-16
+ - 5.843617437380864e-16
+ - 3.0829021429851337e-16
+- - -3.572468540499874
+ - -2.9271819491179727
+ - 1.9003046698957735
+ - -1.244314806458214
+ - 0.1347657854834985
+ - 1.0247114474266146
+ - -1.8378500178916668
+ - 2.0047418338493537
+ - -1.1242930208836561
+ - -2.3535567508468134
+ - -0.5656531315203494
+ - -0.09126656068716679
+ - 1.0991886487427616
+ - -1.8747809905892288
+ - 1.983489788631351
+ - -0.9904354740483975
+ - -1.9744936693266277
+ - -0.6431202408595927
+ - -0.15006437587765023
+ - 1.215121446185354
+ - -1.9281412157044244
+ - 1.964520528330076
+ - -1.3685197833331497
+ - 0.29476706305694117
+ - 0.823917291749322
+ - -1.084256992043711
+ - -1.661178757067972
+ - 2.0265729047972845
+ - 1.2434639544459039
+ - -1.3019201378243466
+ - 0.1537600147425926
+ - 0.9523875905545343
+ - -1.1371253965520074
+ - -1.9261277950510345
+ - 2.1101376755342174
+ - 1.2123937689601354
+ - -1.1890500299258335
+ - 0.06456514843203916
+ - 1.0273142313793229
+ - -1.8677635798891694
+ - 1.995373887627749
+ - -1.5288388898486798
+ - 1.6766265127744455
+ - 1.741367298824348
+ - 1.9660608150907748
+ - 1.9843261651908255
+ - 2.5622179845468884
+ - 2.5225872938339218
+ - -1.8507370668673901
+ - 2.000969146063287
+ - -1.5556735529955001
+ - 0.4907540116932308
+ - 0.6361403636280343
+ - -1.6105505382224226
+ - 1.318443770256408
+ - 2.41893757289969
+ - -1.383242321888137
+ - -0.8948116132840958
+ - 0.4067344808624458
+ - 0.7202196749039808
+ - -1.6943362481710307
+ - 1.3206917921733452
+ - 2.2683830919726677
+ - -1.1316058519988486
+ - -0.8253930895326148
+ - 0.265586570611498
+ - 0.8506939719613267
+ - -1.742217367418143
+ - 2.0160871282307142
+ - -1.6558308841588918
+ - 0.7067040512458039
+ - 0.22799143758408147
+ - 0.016344330311428894
+ - -2.243183158631223
+ - -1.198230995787373
+ - 2.0102633446330604
+ - -1.5671348154442069
+ - 0.5722641993882104
+ - 0.3060758056520476
+ - 0.19246134905336879
+ - -2.6074266951056257
+ - -1.311667352140616
+ - 1.990746442109021
+ - -1.5090008635407284
+ - 0.4878205809428869
+ - 0.7023484103258733
+ - -1.652073502359864
+ - 2.015938157551583
+ - -2.9118443103917064
+ - -3.5877207500330597
+ - -3.219149688105353
+ - -2.579560043433866
+ - 1.935304940452908
+ - -1.962998480303279
+ - 1.3037298732126106
+ - -0.20822194759926937
+ - -0.9546547565006518
+ - 1.7578375571192586
+ - -1.3942714961795386
+ - -2.6298226986282005
+ - 1.0781215246627094
+ - 0.7481586359685601
+ - -0.12090390630964941
+ - -1.03179906928653
+ - 1.8240596216000018
+ - -0.27800099681923224
+ - -0.8588733765460023
+ - -1.8430800261757394
+ - -0.8992464594690546
+ - 1.9347264642298678
+ - -1.9617165606719402
+ - 1.3021381593815542
+ - -0.20689415093722432
+ - -0.9552916246424952
+ - 1.757607334632055
+ - -1.3221996096401911
+ - -2.3040135754568523
+ - 0.9526124180439104
+ - 0.733386493042936
+ - -0.11960983961427397
+ - -1.0786610475434113
+ - 1.8237221747048082
+ - -1.3256136402925596
+ - -2.5225681953498387
+ - 0.8725662690101563
+ - 0.6507007970288196
+ - 0.022326717793178862
+ - -1.153737773195659
+ - 1.858441237153956
+ - -2.0014973452938896
+ - 1.420561857766746
+ - -0.4307846202185001
+ - -0.5633153479200328
+ - -0.46412409745789174
+ - 1.381981910364861
+ - 1.4728806064746334
+ - 3.561605125600223
+ - 3.5848201513200477
+ - -2.0112309695550783
+ - 1.4515138582747815
+ - -0.47483969574642976
+ - -0.7700799432298698
+ - 1.6484047207888903
+ - -2.0460078663337447
+ - 1.1727200978813375
+ - 2.3900642115377595
+ - 0.1353574909600874
+ - -0.1397346670575046
+ - -0.8495168712346592
+ - 1.6985671321467652
+ - -2.0455699401617435
+ - 1.1141674561612227
+ - 2.141578690696834
+ - 0.2891423701969315
+ - -0.05509154062749346
+ - -0.977997901369408
+ - 1.7705386652681558
+ - -2.0412160426625343
+ - 1.5584161521753808
+ - -0.6301588003977391
+ - -0.5555060128327793
+ - 0.9538182851939276
+ - 1.388618851318834
+ - -2.1795182979430425
+ - -1.2984079284071819
+ - 1.5026206075466866
+ - -0.4922185486272422
+ - -0.6909706763956218
+ - 1.050427433227219
+ - 1.721648498729449
+ - -2.4114062072142626
+ - -1.3376232868826732
+ - 1.403247859029471
+ - -0.40618155361722685
+ - -0.7728782303553721
+ - 1.687852154419237
+ - -2.0473033616558243
+ - 1.6920716121419481
+ - -2.0690135552087434
+ - -2.620576143441478
+ - 1.0900586112223799e-15
+ - 1.5019945562737875e-15
+ - 2.5328270356373707e-16
+ - 8.828085087472187e-17
+ - -1.5042279439276808e-16
+ - -1.1948623948328485e-16
+ - -2.874142435892064e-16
+ - -2.447627432544409e-16
+ - -4.0953712127500395e-16
+ - 5.0003068028830517e-17
+ - 1.1178958237742035e-16
+ - 5.226954290722582e-16
+ - 3.4576149604716557e-17
+ - 1.544036010906795e-16
+ - -6.617444900424221e-18
+ - -2.3996509570163333e-16
+ - -1.1710292534336644e-16
+ - -1.3615392882622836e-16
+ - -1.1018045759206327e-16
+ - 1.5989401240650022e-16
+ - 3.6644101136099126e-17
+ - -8.983181452325879e-17
+ - -5.3518585632180884e-17
+ - -3.8298462361205175e-17
+ - 1.7591029701705822e-16
+ - -2.0569913882662413e-16
+ - -6.013603053260511e-17
+ - 1.1166938269465872e-17
+ - 1.8818358935581377e-16
+ - 2.5109067494047155e-16
+ - 6.509911420792328e-17
+ - 1.1183481881716934e-16
+ - 3.2839070318355194e-16
+ - 9.682149069933188e-17
+ - -1.2102686337416486e-16
+ - -3.783524121817548e-16
+ - -2.4112314855920754e-17
+ - 1.4744494418757718e-17
+ - -1.2788212270069808e-16
+ - 3.656965488096935e-16
+ - 1.3193530770220791e-16
+ - 1.8919688560619123e-16
+ - 2.408129558295002e-16
+ - 1.9769616640017358e-17
+ - -6.224534109461533e-17
+ - -8.400019120475995e-17
+ - -4.839006583435211e-18
+ - -2.0667107604637394e-16
+ - 1.6247895182072844e-16
+ - 5.653779486799944e-17
+ - -2.2003004293910533e-17
+ - 6.383766377377991e-17
+ - 8.883919778819516e-17
+ - -1.1795595535006175e-16
+ - -2.910434985267828e-16
+ - -4.181397996455554e-17
+ - -4.4295521802214626e-17
+ - -1.3855275260263212e-17
+ - 6.844919568876304e-17
+ - -3.310790401743493e-17
+ - 1.8210381185354902e-16
+ - 1.2014798397332725e-17
+ - 1.6924115332834944e-16
+ - -9.88480832000868e-17
+ - -1.9473899571029652e-16
+ - -6.27830084927748e-17
+ - -2.834747959219226e-16
+ - 5.0644133003559113e-17
+ - -1.0579640034553223e-16
+ - -7.990564717262246e-17
+ - -1.2128147990646634e-16
+ - -3.474158572722716e-17
+ - -7.88096328609897e-17
+ - -7.198539280742723e-17
+ - -2.359946287613788e-16
+ - -9.218927926903492e-17
+ - 2.909607804655275e-17
+ - -1.275926094863045e-17
+ - 1.1667641034001878e-16
+ - -1.5807421505888356e-16
+ - 5.509022879603164e-17
+ - -5.045801736573468e-17
+ - -1.6130021944784038e-18
+ - 1.252351447405284e-16
+ - -1.1725220559453812e-16
+ - -6.647430197629269e-17
+ - -2.0424123299699942e-16
+ - -1.086165692464552e-16
+ - -3.185472538941709e-16
+ - -5.4790375823981164e-17
+ - -2.493949546847378e-17
+ - 4.813777574752345e-16
+ - 1.4770602306841423e-16
+ - -1.8614665709740194e-16
+ - -1.8623971491631416e-16
+ - -8.073282778517549e-17
+ - -1.4895454880548646e-16
+ - -6.234873867118446e-17
+ - 6.181365621243922e-17
+ - -9.74832351893743e-17
+ - 1.1067676595959509e-16
+ - 8.652309207304668e-17
+ - 1.640609347422361e-16
+ - -1.7434899361086438e-16
+ - -1.0330451875021623e-16
+ - 2.6262984448558626e-17
+ - -4.549493369041652e-18
+ - 5.939156798130739e-17
+ - 2.145338155096026e-17
+ - 1.0050761430402131e-16
+ - 1.3751877683694084e-17
+ - 9.797954355690612e-17
+ - 6.824240053562478e-17
+ - 1.9438744394996147e-17
+ - -7.15511229858369e-18
+ - -8.35452418678558e-18
+ - -1.7205356741102973e-16
+ - -6.824240053562478e-17
+ - 2.2267702089927505e-16
+ - 1.6667689342943508e-17
+ - 2.39882377640378e-17
+ - -2.4815418376590826e-18
+ - -9.944778914418774e-17
+ - -6.034282568574337e-17
+ - -5.843514039804295e-17
+ - 2.4649982254080222e-17
+ - 3.391440511467413e-18
+ - 4.907248983970836e-17
+ - -1.62292836182904e-16
+ - -1.0397660299791557e-16
+ - -1.0960143116327615e-16
+ - -9.89308012613421e-17
+ - -3.835636500408389e-16
+ - 6.057030035419545e-17
+ - -1.5477583236632837e-16
+ - -1.0403864154385704e-16
+ - 1.4868571510640672e-17
+ - -1.7044056521655133e-16
+ - 1.737079286361358e-17
+ - 1.7680985593320967e-17
+ - -2.39882377640378e-17
+ - 1.4712958157904134e-16
+ - 2.681874642261769e-17
+ - -1.816075034860172e-16
+ - 2.0770505181206522e-16
+ - -2.953034786814309e-17
+ - 8.160136742835617e-17
+ - 2.0073960944300053e-16
+ - -8.40415502353876e-17
+ - -1.9356026333740845e-17
+ - -7.527343574232552e-18
+ - 2.540840347821478e-16
+ - 6.821138126265404e-17
+ - 1.588186776101813e-17
+ - -1.2473883637299657e-16
+ - 6.416853601880112e-17
+ - -4.779035989025117e-17
+ - -4.274197321426347e-17
+ - -2.2515856273693413e-16
+ - -3.7553999809907456e-17
+ - -1.19941188820189e-18
+ - 3.3666250930908226e-17
+ - 2.5642598989143854e-18
+ - -5.045801736573468e-17
+ - 1.0439019330419208e-16
+ - -3.3149263048062584e-17
+ - -5.715818032741421e-17
+ - 5.376673981594679e-17
+ - -8.354524186785578e-17
+ - 1.0736804350938298e-16
+ - -6.964860757696493e-17
+ - 2.495190317766208e-16
+ - -6.038418471637101e-18
+ - 4.417144471033167e-17
+ - -2.446386661625579e-17
+ - 8.644037401179139e-18
+ - -2.2328706660103288e-17
+ - 2.848603234479489e-17
+ - -7.173723862366132e-16
+ - -8.593372588660265e-17
+- - 7.3497223697459875
+ - 5.895078608548732
+ - -4.429465392837111
+ - 4.369073254781592
+ - -2.8956115794582584
+ - 0.3349025659576519
+ - 2.214564512993266
+ - -4.050282961676282
+ - 3.146884979748809
+ - 5.955592994389973
+ - -2.3095558344320817
+ - -1.6286763056971598
+ - 0.13888655167468944
+ - 2.3879156325034514
+ - -4.191890049501996
+ - 2.967371612479615
+ - 5.250821096109102
+ - -1.7011751695999322
+ - -1.4207766186933557
+ - -0.18314900622169036
+ - 2.6567489745568187
+ - -4.267742356610893
+ - 4.466687138775599
+ - -3.1684890192803574
+ - 0.8420180636978041
+ - 1.0273253585362927
+ - 0.9666799970154001
+ - -5.234214940912775
+ - -2.8867042365466458
+ - 4.417726661028277
+ - -2.9279662196977836
+ - 0.5235843406405858
+ - 1.2106529717380239
+ - 1.4458181377840882
+ - -5.710452766763458
+ - -2.9550220390737003
+ - 4.3192775064696205
+ - -2.770831689785763
+ - 0.32809722027719423
+ - 2.3520804804998847
+ - -4.120708970462514
+ - 4.556836758077307
+ - -7.280199180203554
+ - -7.2974719786587245
+ - -4.089976611494134
+ - -3.9603618351815
+ - -1.4726600006101942
+ - -1.277214291079513
+ - 2.2725936188645304
+ - -4.081003990017357
+ - 4.566722116241886
+ - -3.4793957144334358
+ - 1.2851238191089551
+ - 1.3282504804578747
+ - -2.2024715434895676
+ - -3.5191455898059165
+ - 5.29820573679874
+ - 2.9301524670894894
+ - -3.348433551158808
+ - 1.0916904961716416
+ - 1.6330852965091949
+ - -2.338681156477024
+ - -3.5182811701177252
+ - 4.724600454809346
+ - 2.8642669111402075
+ - -3.1199605613705055
+ - 0.7764291400770309
+ - 1.8148754545861165
+ - -3.9018137892861553
+ - 4.589110581516763
+ - -3.7909494017251237
+ - 1.261959991273006
+ - 2.9784363953751973
+ - 3.3441476470879303
+ - 1.4928188691284727
+ - -4.001898688872593
+ - 4.571024212001812
+ - -3.6002352940831597
+ - 1.1909184121324277
+ - 3.0700529470698394
+ - 4.15407506121256
+ - 1.817243258720349
+ - -4.149597526781607
+ - 4.548130306413399
+ - -3.4749371804418687
+ - 1.1320109861684133
+ - 1.4755609130918934
+ - -3.6089032084404966
+ - 6.003919050443426
+ - 7.24148863687821
+ - 3.826388540224561
+ - 2.9250618755140274
+ - -2.8618368804217473
+ - 4.356440243738886
+ - -4.439952187626208
+ - 2.9742759169623945
+ - -0.5883003124477225
+ - -1.9916311915748548
+ - 2.582609285141244
+ - 4.361637434469727
+ - -5.1360700406516
+ - -2.9051207819856653
+ - 2.8223140545330656
+ - -0.3892137228037615
+ - -2.276707585416874
+ - 2.597734904046782
+ - 4.386217157500398
+ - 1.5699282842944255
+ - 0.40874104580501114
+ - -2.858574483380146
+ - 4.352548903052991
+ - -4.436673300304258
+ - 2.97283840237196
+ - -0.5890722273798663
+ - -1.9889132906138538
+ - 2.48549209398248
+ - 3.833102213224678
+ - -4.508359770453491
+ - -2.77968265451311
+ - 2.8210348068331097
+ - -0.2688056559496216
+ - -2.2738107348067715
+ - 2.601171401970474
+ - 4.4309973289650815
+ - -4.683477415208484
+ - -2.7044119761614382
+ - 2.560494880546057
+ - -0.06880772271216486
+ - -2.44185052998928
+ - 4.224432009830968
+ - -4.51475808098297
+ - 3.3429171620459854
+ - -3.607603515149647
+ - -3.757866965260815
+ - -4.414541216907245
+ - -4.462459564716599
+ - -5.9109339233073
+ - -5.826565826473054
+ - 4.189729587454082
+ - -4.534437229917364
+ - 3.41174372648387
+ - -1.03920538164217
+ - -1.5659721803060578
+ - 3.667318495544137
+ - -2.985199552922913
+ - -5.497453702519295
+ - 3.014078208680369
+ - 1.9693957831757294
+ - -0.8471494494173768
+ - -1.7527991314722715
+ - 3.8519701232152315
+ - -2.985062435241279
+ - -5.146704992908148
+ - 2.4503440196396915
+ - 1.8102347947440818
+ - -0.5287299851275274
+ - -2.045822545517396
+ - 3.9549190127021556
+ - -4.576684958063405
+ - 3.644181287107035
+ - -1.5301002628418336
+ - -0.5810361589969175
+ - -0.15558137633607325
+ - 5.094827794814182
+ - 2.73308336704383
+ - -4.557700236587122
+ - 3.4397036420204907
+ - -1.2229333047458197
+ - -0.7601731059950615
+ - -0.5695386561361432
+ - 5.911570201256325
+ - 2.984595648003483
+ - -4.507865213008077
+ - 3.3037184401289754
+ - -1.0325764626794067
+ - -1.7141525080528668
+ - 3.7581960905081924
+ - -4.587872984185339
+ - 6.547984259043482
+ - 8.073971768593717
+ - -1.7049846785943004e-15
+ - -2.690653096512488e-15
+ - -3.6180879993069426e-16
+ - 4.061456807635365e-17
+ - -1.0521737391674511e-16
+ - 1.8208394013180214e-16
+ - 4.221516256164376e-16
+ - 2.623816903018204e-16
+ - 2.455072058057386e-16
+ - 5.492479267352103e-17
+ - -2.1754850110144625e-16
+ - -1.1295978445024146e-15
+ - 1.1853498177884887e-16
+ - -2.3508473008757047e-16
+ - -7.213014941462401e-17
+ - 8.571245507274472e-16
+ - 8.189088064274973e-17
+ - 4.485386871568792e-17
+ - 3.4675411278222915e-16
+ - -4.105297380100676e-16
+ - -6.815968247436948e-17
+ - 2.0547166415817205e-16
+ - 1.950491884400039e-16
+ - 1.2457340025048597e-16
+ - -2.3831073447652727e-16
+ - 4.044913195384305e-16
+ - 5.062345348824529e-17
+ - -4.0800683714178084e-17
+ - -3.5304068543763216e-16
+ - -2.609186145933672e-16
+ - -5.5007510734776334e-17
+ - -2.478233115208871e-16
+ - -4.869198675793397e-16
+ - 1.0893968667323373e-16
+ - 1.890934880296221e-16
+ - 7.525689213007445e-16
+ - 7.820087962893896e-17
+ - -8.685396431806789e-17
+ - -5.61862431076644e-17
+ - -6.966515118921598e-16
+ - -1.6940658945086004e-16
+ - -1.4111701250154652e-16
+ - -5.748750160878689e-16
+ - 2.3194144375986896e-16
+ - 3.864587821847745e-16
+ - 4.3972921363318946e-16
+ - 2.251172037063065e-16
+ - 6.938390978094795e-16
+ - -5.803499177672042e-16
+ - -1.4144788474656773e-16
+ - 3.18299099710405e-16
+ - 2.5022213529729084e-17
+ - -1.7941547486275168e-16
+ - 2.782635580628385e-16
+ - -2.660212849970537e-16
+ - -2.6635215724207488e-17
+ - 2.2830184906463564e-16
+ - 3.010937429693021e-17
+ - -8.40415502353876e-17
+ - 5.102050018227075e-16
+ - -5.023881450340814e-16
+ - -4.9630836753181654e-17
+ - -3.507245797224837e-16
+ - 4.165681564817047e-16
+ - 4.07634605866132e-16
+ - 2.6684846560960673e-16
+ - 2.3756627192522955e-16
+ - -2.900095227610915e-16
+ - -1.5120861597469343e-16
+ - 1.258141711693155e-16
+ - 3.5481912375462117e-16
+ - 1.7185969695496264e-17
+ - 8.383475508224934e-17
+ - -8.238718901028154e-17
+ - 8.739163171622736e-16
+ - 1.7073007843094489e-16
+ - -2.4683069478582346e-16
+ - -3.685916809536291e-16
+ - 8.834288942066334e-17
+ - 1.522012327097571e-17
+ - -2.3657365519016588e-17
+ - -3.3153398951125344e-16
+ - 3.0738031562470503e-16
+ - 2.7123252285613777e-16
+ - 1.0132962503774588e-16
+ - 1.2502834958739013e-16
+ - 1.708955145534555e-16
+ - -2.6469779601696883e-17
+ - -7.093900933254764e-16
+ - 1.4115009972604862e-15
+ - -3.697497338112034e-17
+ - -1.1615270161469615e-15
+ - -3.143699918007781e-16
+ - 4.8902917814135e-16
+ - 4.1805708158430014e-16
+ - 4.3426982159033947e-17
+ - 4.680187905825031e-16
+ - 1.5782606087511766e-16
+ - -3.275635225709989e-16
+ - 2.1142736456855385e-16
+ - -2.5679822116708744e-16
+ - 2.605618929542037e-16
+ - -7.229558553713462e-17
+ - 1.3317607862103746e-16
+ - -7.713459212056982e-17
+ - -1.8383055138225346e-16
+ - 1.2407709188295413e-18
+ - -5.765448869494603e-17
+ - 7.587314168642645e-17
+ - -1.591030209457464e-16
+ - -1.4707271291192832e-16
+ - 6.088049308390284e-17
+ - -1.919059021123024e-17
+ - 1.0386286566368953e-16
+ - -1.5211851464850176e-16
+ - -2.426947917230583e-16
+ - 1.3532674821367533e-16
+ - 2.2085722355165836e-16
+ - -3.392267692079966e-16
+ - -7.223354699119314e-17
+ - 1.4392942658422682e-16
+ - 2.2598574334948716e-16
+ - -3.4046754012682614e-16
+ - 8.172544452023912e-17
+ - -9.851721095506558e-17
+ - 3.599890025830776e-16
+ - -5.641371777611649e-17
+ - 1.4856163801452377e-16
+ - 2.0332099456553418e-16
+ - 1.847507898137187e-16
+ - -3.970466940254533e-18
+ - -1.0918784085699964e-17
+ - 2.266474878395296e-16
+ - -2.1119988990010177e-16
+ - 8.99972506457694e-17
+ - 7.974021105011186e-17
+ - 1.0426611621230913e-16
+ - 6.860636000514811e-16
+ - 1.5666800801754342e-16
+ - -1.287093033132511e-16
+ - 1.3428243269032713e-16
+ - 1.6130021944784038e-18
+ - -8.875647972693986e-17
+ - 3.4294908196448522e-16
+ - -1.4161332086907834e-16
+ - -1.2063395258320217e-16
+ - -1.4996784505586392e-16
+ - -2.158114218150849e-16
+ - 2.7909073867539154e-16
+ - -5.285684114213846e-17
+ - -2.7363134663254155e-16
+ - -2.632088709143734e-16
+ - -1.6771086919512634e-16
+ - 8.635765595053608e-17
+ - 1.7867101231145395e-16
+ - -6.964860757696493e-17
+ - 1.83055069557985e-16
+ - -7.002083885261379e-17
+ - -3.639594695233322e-17
+ - 1.078643518769148e-16
+ - -9.61183871786618e-17
+ - -3.0936554909483235e-17
+ - -2.1454997138094153e-16
+ - 1.919059021123024e-16
+ - 1.126950866542245e-15
+ - 1.192794443301466e-16
+ - 2.240005098793599e-16
+ - -2.2515856273693413e-16
+ - 5.275757946863211e-16
+ - -1.3509927354522324e-16
+ - 2.8008335541045517e-16
+ - -3.4046754012682614e-16
+ - 1.5244938689352298e-16
+ - 1.0877425055072313e-16
+ - -5.955700410381799e-17
+ - 3.8546616544971083e-17
+ - 3.30872245021211e-19
+ - 5.864710543000966e-17
+ - 1.1320793863400737e-15
+ - 4.324500242427228e-16
+- - 5.427499738510816
+ - 4.372921795589161
+ - -3.195222782246834
+ - 2.9425760273602615
+ - -1.7385331166022118
+ - -0.13438990659338085
+ - 1.8727383617399103
+ - -3.00692985861638
+ - 2.195116012919415
+ - 4.226055369068981
+ - -1.1692559199747408
+ - -0.9222644217192514
+ - -0.2723353636236549
+ - 1.985915508465257
+ - -3.082689371365112
+ - 2.047749332155517
+ - 3.6940152277764216
+ - -0.7893148913151814
+ - -0.7821606809003537
+ - -0.49744835004666416
+ - 2.159683482532804
+ - -3.1211647364911386
+ - 3.0390485518657306
+ - -1.948741515855537
+ - 0.22558212794681257
+ - 0.944436874194403
+ - 1.0922726433817156
+ - -3.700862437530854
+ - -2.0810098635966483
+ - 2.98949506184231
+ - -1.7632723708769895
+ - -0.0010149936824246236
+ - 1.0683063679649318
+ - 1.4562822652730052
+ - -4.005560696054975
+ - -2.111043026926572
+ - 2.8959437469390066
+ - -1.643360726000101
+ - -0.13919064914708254
+ - 1.9625649096373101
+ - -3.04509460521051
+ - 3.142627067137347
+ - -4.784688565223818
+ - -4.81534009662309
+ - -3.013333278958586
+ - -2.943431790981272
+ - -1.6740160696683877
+ - -1.5472740024609186
+ - 1.9107312048871283
+ - -3.0236820381166503
+ - 3.1569247525140245
+ - -2.1925802408419273
+ - 0.5440254389196436
+ - 1.2828775917574842
+ - -1.7051906272490303
+ - -2.823785686783641
+ - 3.533880800495639
+ - 1.9956363869272111
+ - -2.0892035256368304
+ - 0.40453805359870426
+ - 1.4877330773545634
+ - -1.7854595675249978
+ - -2.7754564964943973
+ - 3.118926359711919
+ - 1.9351038308836837
+ - -1.9111222681556517
+ - 0.17876172678195584
+ - 1.6089216737487204
+ - -2.9238184469031614
+ - 3.201809726903407
+ - -2.443143615857704
+ - 0.6646459365591271
+ - 1.7344090086655435
+ - 2.6657429470667737
+ - 1.2525195493123298
+ - -2.980226615584017
+ - 3.163269796952614
+ - -2.2888522003004375
+ - 0.5983501447821915
+ - 1.7319767299930848
+ - 3.254493489308259
+ - 1.47803698933383
+ - -3.0604904206778234
+ - 3.1312343115096235
+ - -2.189044805899239
+ - 0.433573372065915
+ - 1.382098508686232
+ - -2.7526913908260826
+ - 4.431619180327773
+ - 5.3691283967765555
+ - 3.257412503622908
+ - 2.527815848558328
+ - -2.290742245900129
+ - 3.163486890314293
+ - -3.011850118951732
+ - 1.7988194863121034
+ - -0.04486735815341117
+ - -1.726112474066137
+ - 1.9513004539033896
+ - 3.3828373584352307
+ - -3.3422702521421193
+ - -1.9344354665399333
+ - 1.6825258406794417
+ - 0.09611476249523791
+ - -1.913453674427226
+ - 1.935743294452551
+ - 3.120589812929453
+ - 1.502393383408928
+ - 0.5243764620615214
+ - -2.288656322119635
+ - 3.160807285653928
+ - -3.009426117073999
+ - 1.7975530184729156
+ - -0.0451109281164944
+ - -1.724455807525376
+ - 1.8716852101140327
+ - 2.9706493117688195
+ - -2.93577277327629
+ - -1.8564763852489756
+ - 1.6813620786010957
+ - 0.18133154614533378
+ - -1.9116583525782378
+ - 1.9403343314381394
+ - 3.3892831512383355
+ - -3.0126268020779157
+ - -1.7862487947852146
+ - 1.4839061433268872
+ - 0.32179384774704284
+ - -2.0210313036873013
+ - 3.098621958583269
+ - -3.0926564445136977
+ - 2.0847981638581
+ - -1.9280233071597954
+ - -2.0472876153101285
+ - -3.01575360812738
+ - -3.072199698549728
+ - -4.583705456752531
+ - -4.542061237885691
+ - 3.0814891979828083
+ - -3.1139825785234843
+ - 2.1390154865246633
+ - -0.36684502479975817
+ - -1.442748804018528
+ - 2.787370826251036
+ - -2.1160665064183393
+ - -3.9700757087005893
+ - 1.7174188412751696
+ - 1.1946412281344685
+ - -0.22924059243597528
+ - -1.567604123141168
+ - 2.895277522056202
+ - -2.097386609580221
+ - -3.6862832575319064
+ - 1.3393116626377257
+ - 1.0747935966179267
+ - -0.0026480372912046453
+ - -1.7618086531970771
+ - 2.9538248803385434
+ - -3.172608588481559
+ - 2.324104826185089
+ - -0.7217180098363847
+ - -0.6423444791180325
+ - -0.5319670491291478
+ - 3.668031774667433
+ - 2.0087371075047242
+ - -3.1435990013755517
+ - 2.16105736832904
+ - -0.49908457209367674
+ - -0.7776595346687204
+ - -0.8795312300495013
+ - 4.2187196022138505
+ - 2.168092749660986
+ - -3.0831236209635686
+ - 2.0541054272111663
+ - -0.36208397658483205
+ - -1.5418194887226022
+ - 2.8408531068998384
+ - -3.2215982657503885
+ - 4.481662979072849
+ - 5.548138113289458
+ - -1.3016514119134442e-15
+ - -2.0070710382986664e-15
+ - -2.8579090163707106e-16
+ - 2.0596797252570386e-17
+ - -8.288349737781336e-17
+ - 1.5306977235293775e-16
+ - 3.163552252709054e-16
+ - 1.8710825455949484e-16
+ - 2.3442298559752804e-16
+ - 2.845501307182415e-17
+ - -1.8028918438476081e-16
+ - -8.376030882711957e-16
+ - 4.764560328305439e-17
+ - -1.710609506759661e-16
+ - -4.0035541647566533e-17
+ - 6.672866001465273e-16
+ - 6.179039175771117e-17
+ - 3.0760779029315717e-17
+ - 2.482369018271636e-16
+ - -2.9455901613013316e-16
+ - -5.542110104105285e-17
+ - 1.4756902127946014e-16
+ - 1.3888362484765335e-16
+ - 8.246990707153685e-17
+ - -1.76768496902582e-16
+ - 3.427836458419746e-16
+ - 4.226892930145971e-17
+ - -1.8797679420267554e-17
+ - -2.8488100296326273e-16
+ - -2.275573865133379e-16
+ - -9.678013166870423e-17
+ - -1.7426627554960908e-16
+ - -3.8296394409673794e-16
+ - 5.0292581243224076e-17
+ - 1.1253792233783942e-16
+ - 6.425538998311918e-16
+ - 4.4223143498616236e-17
+ - -6.518183226917858e-17
+ - -1.1621887606370037e-17
+ - -5.302227726464907e-16
+ - -1.252351447405284e-16
+ - -1.3780312017250595e-16
+ - -4.1099244216521444e-16
+ - 1.5567539128247978e-16
+ - 2.752857078576476e-16
+ - 3.7372020075145785e-16
+ - 1.5122929549000726e-16
+ - 5.839895124624375e-16
+ - -4.1590641199166227e-16
+ - -9.198248411589667e-17
+ - 1.949664703787486e-16
+ - -1.323488980084844e-18
+ - -1.2515242667927309e-16
+ - 2.5808035111654463e-16
+ - -1.647743780205631e-16
+ - -2.307833909022947e-17
+ - 1.7767839557639032e-16
+ - 1.0257039595657542e-17
+ - -5.525566491854224e-17
+ - 3.777733857529677e-16
+ - -3.5192399161068557e-16
+ - -3.6644101136099126e-17
+ - -2.5923840397411887e-16
+ - 3.058913905221096e-16
+ - 2.8918234214853848e-16
+ - 1.7093687358408314e-16
+ - 2.1961645263282882e-16
+ - -2.24579536308147e-16
+ - -5.2939559203393765e-17
+ - 1.0306670432410724e-16
+ - 2.6269188303152776e-16
+ - 2.8972000954669794e-17
+ - 6.499571663135415e-17
+ - -9.156889380962015e-17
+ - 6.444977742706914e-16
+ - 1.119588959090523e-16
+ - -1.5079502566841692e-16
+ - -2.3425754947501744e-16
+ - 5.889525961377557e-17
+ - 3.010937429693021e-17
+ - -3.192917164454687e-17
+ - -2.4964310886850375e-16
+ - 2.359119107001235e-16
+ - 1.576192657219794e-16
+ - 8.528232115421714e-17
+ - 9.086579028895008e-17
+ - 1.1299287167474358e-16
+ - -1.4889251025954498e-17
+ - -4.817499887508833e-16
+ - 1.086253580404636e-15
+ - 4.433688083284228e-17
+ - -8.61177735728957e-16
+ - -2.3425754947501744e-16
+ - 3.6197423605320486e-16
+ - 3.3467727583895495e-16
+ - 4.657026848673545e-17
+ - 3.3976443660615607e-16
+ - 1.5732975250758584e-16
+ - -3.2557828910087164e-16
+ - 1.194448804526572e-16
+ - -1.9025154088719634e-16
+ - 7.725866921245277e-17
+ - -4.2517083485225616e-17
+ - 8.784658105313153e-17
+ - -5.773720675620133e-17
+ - -1.287816816168495e-16
+ - 1.0008885411891633e-17
+ - -5.511090831134546e-17
+ - 5.270174477728477e-17
+ - -1.207373501597713e-16
+ - -1.3516131209116472e-16
+ - 8.966637840074819e-17
+ - 2.150669592637872e-18
+ - 5.645507680674414e-17
+ - -9.2892382789705e-17
+ - -1.7288074802358276e-16
+ - 1.1497810514487085e-16
+ - 1.5211851464850176e-16
+ - -2.5187649652239693e-16
+ - -7.978157008073951e-17
+ - 1.0587911840678753e-16
+ - 1.743696731261782e-16
+ - -2.2631661559450837e-16
+ - 5.161607022330892e-17
+ - -3.234276195082338e-17
+ - 3.454306238021443e-16
+ - -1.9356026333740845e-17
+ - 1.3155273666890214e-16
+ - 1.5410374811862903e-16
+ - 1.3561626142806889e-16
+ - 1.522012327097571e-17
+ - 1.1745964698252991e-17
+ - 1.7288074802358276e-16
+ - -1.8592952218660677e-16
+ - 1.0223952371155421e-16
+ - 8.3876114112877e-17
+ - 5.591740940858467e-17
+ - 4.814604755364898e-16
+ - 8.586134758300426e-17
+ - -8.3876114112877e-17
+ - 6.59262948204763e-17
+ - 3.085383684822793e-17
+ - -6.213160376038929e-17
+ - 2.926565007212612e-16
+ - -1.8677738231447362e-16
+ - -1.0425060657582376e-16
+ - -1.2200914035157158e-16
+ - -1.862810739469418e-16
+ - 2.0042586242159858e-16
+ - -2.431911000905901e-17
+ - -1.678349462870093e-16
+ - -1.591495498552025e-16
+ - -1.2329127030102877e-16
+ - 8.809473523689744e-17
+ - 2.0778776987332053e-16
+ - -7.16338410470922e-17
+ - 1.5776402232917618e-16
+ - -2.6159586871989497e-17
+ - -1.8032537353656003e-17
+ - 1.0298398626285193e-16
+ - -9.322325503472621e-17
+ - -3.176373552203626e-17
+ - -1.519944375566188e-16
+ - 1.4483932525803515e-16
+ - 7.938452338671406e-16
+ - 7.874759431504822e-17
+ - 1.431849640329291e-16
+ - -1.5120861597469343e-16
+ - 3.5221350482507913e-16
+ - -6.742555968072867e-17
+ - 2.2019547906161594e-16
+ - -2.8901690602602787e-16
+ - 1.0017157218017164e-16
+ - 7.978157008073951e-17
+ - -5.252596889711725e-17
+ - 9.59529510561512e-18
+ - -5.045801736573468e-18
+ - 2.4236391947803708e-17
+ - 8.834288942066335e-16
+ - 3.4725042114976097e-16
+- - 1.0679325198092022
+ - 1.0220730062012247
+ - -0.00461262153546908
+ - -1.7585881496281819
+ - 2.950450972097903
+ - -3.170180800756831
+ - 2.3234678767888703
+ - -0.7229833800257716
+ - -0.6283971149192287
+ - -0.5844888962366241
+ - 4.186648861495971
+ - 2.128359600011491
+ - -3.1412773849704925
+ - 2.223535406409427
+ - -0.5005800352193022
+ - -0.7793056551257778
+ - -0.7846301569684265
+ - 3.6904391620344383
+ - 2.0453773620759157
+ - -3.0809873265847707
+ - 2.05382502836272
+ - -0.36370778381375607
+ - -1.5387099559323518
+ - 2.8374291453903386
+ - -3.218888513877077
+ - 1.7160578154727053
+ - 3.331579597585192
+ - 0.6258888810235995
+ - 0.008217737551884454
+ - -1.6587996587076543
+ - 2.9386049301259694
+ - -3.1930217935755785
+ - 1.645625760066212
+ - 3.4870800611184127
+ - 0.9529044866829204
+ - 0.17046368331982575
+ - -1.8489254593730602
+ - 2.9940991715626253
+ - -3.1692753269958756
+ - 2.244558601084135
+ - -0.6164913138564149
+ - -1.2135270527416477
+ - 3.9298494436566083
+ - 3.776374480709181
+ - -0.5355715668785758
+ - -0.7344234516076144
+ - -5.159931056593961
+ - -5.2798422554825715
+ - 2.290895726350321
+ - -0.6773992863472454
+ - -1.153089926799346
+ - 2.672124810190422
+ - -3.228490048916452
+ - 2.739838800325627
+ - -0.9840859620263531
+ - -2.4089427695583856
+ - -2.423168878164268
+ - -0.9923928183248703
+ - 2.7473746394463205
+ - -3.228299411549853
+ - 2.613335542232773
+ - -0.8325506665852959
+ - -2.0066589753158035
+ - -2.4337492164405257
+ - -1.1021398414089951
+ - 2.8595180647732277
+ - -3.214803075333868
+ - 2.5296475178967586
+ - -0.9251115269293174
+ - -0.9107626260400172
+ - 2.454040193514194
+ - -2.070430241748577
+ - -3.4889449312427914
+ - 2.1405484314848366
+ - 1.4829234681619934
+ - -0.7920608967604682
+ - -1.1257387733199156
+ - 2.595220615346409
+ - -2.197416663644956
+ - -4.066677003420726
+ - 2.1793688383446965
+ - 1.4115140432328774
+ - -0.5706170801779452
+ - -1.2566330107784744
+ - 2.6748125414027455
+ - -3.228680509615184
+ - 2.680596636891082
+ - -1.2635082313174053
+ - 0.8551001991576791
+ - 1.2339972505235162
+ - 4.19698611275945
+ - 3.526333159039743
+ - -1.9116587146371866
+ - 0.18115847914994368
+ - 1.6055123701195377
+ - -2.92047479437407
+ - 3.19970566833766
+ - -2.4428579296527118
+ - 0.7474886801486275
+ - 1.9992859103894078
+ - 3.052912577974918
+ - 1.3562644451611643
+ - -2.9769297248249478
+ - 3.177735281804553
+ - -2.288827779749511
+ - 0.5243074319142894
+ - 1.502351036359474
+ - 3.121092734244912
+ - 1.9360090270332477
+ - -1.9139201660275649
+ - 0.1822388227617734
+ - 1.6059996760676867
+ - -2.922419733498178
+ - 3.202347726189379
+ - -2.4454182775958864
+ - 0.6667784664765143
+ - 1.7379530605617695
+ - 2.663094654870836
+ - 1.2507619366855238
+ - -2.9789668029226255
+ - 3.164029050754498
+ - -2.2913040484644394
+ - 0.5421237015285902
+ - 1.6318196850106321
+ - 3.0800744313742827
+ - 1.3851822353036527
+ - -3.0594684998030335
+ - 3.1321307522420576
+ - -2.191606734364119
+ - 0.4370584912099823
+ - 1.379048801485418
+ - -2.75095895170343
+ - 5.682864559558116
+ - 5.591023476847252
+ - 1.4180248222209824
+ - 1.2334648167182325
+ - -2.7031567052535044
+ - -2.8650683871912137
+ - 0.5036491411288272
+ - 1.3188926886996288
+ - -2.7123604427161534
+ - 3.2269436409464762
+ - -2.6421706932235995
+ - 1.2007152414033004
+ - 0.311642929154113
+ - -0.04330630326540905
+ - -3.8490014958340977
+ - -1.9037119275996557
+ - 3.2192479472971653
+ - -2.55876312017694
+ - 0.987613516239318
+ - 0.46833308935718
+ - 0.21660145086264837
+ - -3.6088764542786564
+ - -1.9463479087384616
+ - 3.193427205842367
+ - -2.4142870529309968
+ - 0.8551915892268087
+ - 1.081468527082753
+ - -2.5652240659871635
+ - 3.2199917165610845
+ - -1.8829090408777809
+ - -3.5397468907594187
+ - -0.05499692344110119
+ - 0.31665726026457763
+ - 1.210644997882403
+ - -2.6965198227946963
+ - 3.229221659886819
+ - -1.9344809434018424
+ - -3.952997208498999
+ - -0.3786070522535356
+ - 0.13076763093501054
+ - 1.4175103803612414
+ - -2.7713499637280194
+ - 3.2267687375205725
+ - -2.5763720598143105
+ - 1.0989638556035164
+ - 0.7364058955646305
+ - -2.0318913561717924
+ - -2.3195981114137214
+ - -8.050948901978617e-16
+ - -4.3923290526565765e-16
+ - -1.827241973129638e-16
+ - -8.757774735405179e-17
+ - 7.407402385412363e-17
+ - 1.9267104417891395e-16
+ - 1.2755125045567687e-16
+ - -9.417451273916219e-17
+ - 4.842315305885424e-16
+ - -1.1038725274520153e-16
+ - -1.38449355026063e-16
+ - -2.870316725559006e-17
+ - -3.2919720428079114e-16
+ - -7.41360624000651e-17
+ - 9.508441141297052e-17
+ - 1.5013328117837452e-16
+ - 1.5923226791645783e-17
+ - 4.839006583435211e-17
+ - 3.908428394313056e-18
+ - 1.6088662914156386e-16
+ - -3.7440262475681415e-17
+ - -1.323488980084844e-18
+ - -2.3905519702782497e-17
+ - -2.6262984448558626e-17
+ - -7.097209655704977e-17
+ - 3.18299099710405e-16
+ - 4.582580593543773e-17
+ - 7.552158992609141e-17
+ - -1.2490427249550718e-16
+ - -2.393033512115909e-16
+ - -3.8265375136703055e-16
+ - 3.8587975575598735e-17
+ - -1.5943906306959608e-17
+ - -2.1910463462881164e-16
+ - -1.0918784085699964e-16
+ - 5.810116622572466e-16
+ - -1.1034589371457388e-16
+ - -9.471218013732165e-18
+ - 3.0051471654051495e-16
+ - -1.4285409178790788e-16
+ - -1.533592855673313e-16
+ - -1.8640515103882476e-16
+ - 1.19941188820189e-17
+ - -1.0445223185013356e-16
+ - -7.554226944140524e-17
+ - 2.0332099456553418e-16
+ - -1.1166938269465874e-16
+ - 5.688107482220895e-16
+ - 3.623051082982261e-17
+ - 7.57490645945435e-17
+ - -2.533861011403062e-16
+ - -1.5595973461804489e-16
+ - 3.9497874249407065e-17
+ - 3.5833464135797154e-16
+ - 3.719004034038412e-16
+ - 3.28390703183552e-17
+ - 7.11582121948742e-17
+ - -5.85230283381267e-18
+ - 3.259091613458929e-17
+ - -3.8877488789992295e-17
+ - 8.528232115421714e-17
+ - 5.209686895435537e-17
+ - -8.25939841634198e-17
+ - -9.678013166870422e-18
+ - -4.135903062765138e-17
+ - -2.2019547906161594e-16
+ - 4.012653151494737e-16
+ - -5.922613185879678e-17
+ - 5.274103585638104e-16
+ - 1.316044354571867e-16
+ - -6.782881022934827e-17
+ - 8.71848365630891e-17
+ - 2.5394444805377947e-17
+ - -5.852302833812671e-17
+ - -8.288349737781336e-17
+ - 1.6957202557337067e-17
+ - 2.254377361936708e-16
+ - 3.3050001374556216e-16
+ - -7.81685678862611e-17
+ - 2.3450570365878335e-16
+ - -1.2877134185919258e-16
+ - -2.5394444805377947e-17
+ - 8.106370003019671e-18
+ - -3.9626087244352786e-16
+ - 1.4589398053904026e-16
+ - -3.813302623869457e-17
+ - -2.39882377640378e-17
+ - 1.3784964908196206e-16
+ - 6.863944722965023e-16
+ - -9.975798187389513e-17
+ - 5.952391687931587e-16
+ - -1.9684830627230674e-16
+ - -9.496033432108756e-17
+ - -3.269431371115842e-17
+ - 1.5468277454741615e-16
+ - 1.6531204541872256e-16
+ - 1.2573145310806019e-17
+ - 3.2243500277317014e-16
+ - -5.7836468429707695e-16
+ - -2.445973071319303e-16
+ - -4.657543836556391e-17
+ - -8.850418964011119e-16
+ - 9.26442286059391e-18
+ - 7.227490602182079e-17
+ - 2.406681992223034e-16
+ - 1.3218346188597382e-16
+ - 4.8720938079373324e-17
+ - -1.152676183592644e-16
+ - 8.71848365630891e-17
+ - -4.79764755280756e-17
+ - -1.200032273661305e-16
+ - 2.291703887078163e-16
+ - 4.144174868890668e-17
+ - -1.347477217848882e-16
+ - 1.437639904617162e-16
+ - 1.1315830779725419e-16
+ - 1.8710825455949484e-16
+ - -6.923501727068842e-17
+ - -4.6404832364224846e-17
+ - -1.92071338234813e-16
+ - -1.0116418891523527e-16
+ - 3.9539233280034717e-17
+ - 2.503875714198015e-16
+ - -3.6644101136099126e-17
+ - 2.9447629806887785e-16
+ - 4.162372842366835e-16
+ - 1.5195307852599116e-16
+ - -1.108422020821057e-17
+ - 3.025413090412699e-17
+ - 1.381391622963556e-17
+ - 1.3971080546020637e-16
+ - 2.39055197027825e-16
+ - 1.9217473581138213e-16
+ - -7.291597099654939e-17
+ - 3.1110262838119366e-16
+ - 1.5042279439276808e-16
+ - -1.890107699683668e-16
+ - -3.6826080870860787e-16
+ - -2.235042015118281e-16
+ - 6.797356683654505e-17
+ - -2.693300074472658e-16
+ - 2.5683958019771506e-17
+ - 7.829264497814406e-17
+ - 3.4112928461686856e-16
+ - -6.071505696139222e-16
+ - -8.610950176677017e-17
+ - -8.08982639076861e-17
+ - -1.7834014006643274e-16
+ - -2.2995621028974166e-17
+ - 1.463282503606306e-16
+ - 2.709430096417442e-16
+ - 2.8289576949313546e-17
+ - -1.49719690872098e-17
+ - 1.1911400820763599e-16
+ - 4.02175213823282e-16
+ - -1.7217764450291269e-16
+ - 9.00799687070247e-17
+ - 2.2888087549342276e-16
+ - 1.6431942868365892e-16
+ - 1.0364573075289436e-16
+ - -9.496033432108756e-17
+ - 1.0149506116025648e-16
+ - 8.875647972693986e-17
+ - 2.961306592939839e-17
+ - -5.619037901072717e-16
+ - -9.60356691174065e-17
+ - -1.228363209641246e-16
+ - 1.1448179677733903e-16
+ - -2.273919503908273e-16
+ - 2.1659724339701027e-16
+ - 3.1184709093249143e-17
+ - -2.2896359355467806e-16
+ - -5.968108119570095e-17
+ - -1.2490427249550716e-17
+ - -4.735609006866083e-17
+ - -1.1282743555223297e-16
+ - -7.610061635487855e-18
+ - -1.494715366883321e-16
+ - 5.379155523432339e-16
+ - 2.692472893860105e-16
+- - 0.5883250680230345
+ - 0.6981321932778088
+ - 0.5189581364097602
+ - -2.9221232437764297
+ - 4.376697618698388
+ - -4.3734107925591355
+ - 2.913615810140195
+ - -0.508033440918775
+ - -1.2322002259097147
+ - -1.5052442342182641
+ - 5.997107748082079
+ - 3.1026440266901436
+ - -4.31065604376555
+ - 2.7564496125685936
+ - -0.18721122657973016
+ - -1.417207346928898
+ - -1.6952655428499317
+ - 5.246636529104287
+ - 2.9645523095809745
+ - -4.190051456894089
+ - 2.4925722893214006
+ - 0.008890339843889483
+ - -2.633120399946845
+ - 4.254550805032899
+ - -4.500132690191994
+ - 2.2240613448673328
+ - 4.439707366665862
+ - 1.4762941731805188
+ - 0.3535504758560565
+ - -2.7914776131401764
+ - 4.364339373881843
+ - -4.427011211349713
+ - 2.106039736211323
+ - 4.5954642729642465
+ - 1.9798028760538142
+ - 0.5834450491554435
+ - -3.0397075484857083
+ - 4.421568644129515
+ - -4.37137135981337
+ - 2.7894399507808685
+ - -0.3541051474152711
+ - -2.1992773625681665
+ - 6.235475933662206
+ - 6.027714876817227
+ - -0.24713101228719292
+ - -0.5343355778331317
+ - -6.879120287719716
+ - -7.066210172616795
+ - 2.862210984281104
+ - -0.44207628513506225
+ - -2.1178319706400943
+ - 4.065441845308175
+ - -4.565801060171819
+ - 3.587909457068323
+ - -1.0840865646913749
+ - -2.875761067217929
+ - -3.940791862254768
+ - -1.704087161288208
+ - 4.152783191128839
+ - -4.542603293514897
+ - 3.3788271255969415
+ - -0.8607825120271496
+ - -2.3259313459367825
+ - -3.887237098863117
+ - -1.846300428208343
+ - 4.278992484452018
+ - -4.486770582869233
+ - 3.2428644119878007
+ - -0.801952298121579
+ - -1.7892227100293718
+ - 3.8042642183515047
+ - -2.979964594131487
+ - -5.122646896377752
+ - 2.5296103751649794
+ - 1.8501612559875793
+ - -0.6082010362460264
+ - -2.080954117544913
+ - 3.9746465066543717
+ - -3.1451331070590545
+ - -5.923283654543733
+ - 2.48663273588064
+ - 1.7140712320965596
+ - -0.2879686935592891
+ - -2.2571744306684485
+ - 4.068593089436259
+ - -4.547904159353439
+ - 3.4894505965663485
+ - -1.2992812593601484
+ - 0.45697000532689813
+ - 0.8281726240949787
+ - 5.2836169469385945
+ - 4.473704001227249
+ - -2.273904723734462
+ - -0.2689564438286017
+ - 2.7212720665980634
+ - -4.345045648552784
+ - 4.44382907232327
+ - -3.1032577994375363
+ - 0.7155753859712405
+ - 2.2158404952647817
+ - 4.782444445216714
+ - 2.1985401335055283
+ - -4.404200941418218
+ - 4.390185352263902
+ - -2.8588886182503166
+ - 0.4086888369752698
+ - 1.5699506494562578
+ - 4.386909173674635
+ - 2.598092027883782
+ - -2.277384943042489
+ - -0.267018011531987
+ - 2.7215506427381455
+ - -4.347530712071856
+ - 4.447525333342579
+ - -3.1070811481512672
+ - 0.6167600375702397
+ - 1.921273278617825
+ - 4.1751169838442665
+ - 2.039441187717745
+ - -4.406827874379233
+ - 4.357167134904684
+ - -2.862620210513076
+ - 0.43263683409747816
+ - 1.7052865347520891
+ - 4.7658996657611095
+ - 2.2142702119919404
+ - -4.485978005349728
+ - 4.289845104206693
+ - -2.706407263896466
+ - 0.0965183545452183
+ - 2.4205626978687595
+ - -4.157021653861647
+ - 8.19637842486307
+ - 8.088637407621892
+ - 2.4619599416112043
+ - 2.2153455129972253
+ - -2.9943358129251396
+ - -3.225674938945394
+ - 0.19166451697354644
+ - 2.3406635936279807
+ - -4.112420397718005
+ - 4.534525152817958
+ - -3.4261982647931966
+ - 1.2065175467476297
+ - 0.7800185894779064
+ - 0.5927092683808945
+ - -5.619070549651461
+ - -2.8359464964550574
+ - 4.501233592599884
+ - -3.2900250127590356
+ - 0.8933061201389229
+ - 0.994200646273337
+ - 0.9064148499143093
+ - -5.223969057430294
+ - -2.8753571747750266
+ - 4.4281759292386464
+ - -3.05777570068356
+ - 0.7000740539305521
+ - 2.021109189107186
+ - -3.938848325817903
+ - 4.58323555025645
+ - -2.505070020223734
+ - -4.820450732158043
+ - -0.6793465386911055
+ - 0.10877702380216418
+ - 2.1954455463397355
+ - -4.094082569986355
+ - 4.559428632552068
+ - -2.554327425341353
+ - -5.336285925893707
+ - -1.2185805689061904
+ - -0.17516303935639582
+ - 2.4723237960091056
+ - -4.180250427239308
+ - 4.533502954703444
+ - -3.318679143428324
+ - 1.0566435732727602
+ - 1.550729363169086
+ - -3.554115920481981
+ - -4.128373509792456
+ - -9.267731583044122e-16
+ - -3.0208635970436566e-16
+ - -2.1423977865123414e-16
+ - -1.593149859777131e-16
+ - 1.3375510504982458e-16
+ - 2.3653229615953826e-16
+ - 1.135718981035307e-16
+ - -1.1610513872947435e-16
+ - 6.863944722965023e-16
+ - -1.5964585822273432e-16
+ - -1.7094721334174006e-16
+ - 8.536503921547244e-17
+ - -4.45602195982316e-16
+ - -5.579333231670172e-17
+ - 1.3081861387526133e-16
+ - 7.763090048810163e-17
+ - 2.067951531382569e-17
+ - 5.906069573628618e-17
+ - -4.104883789794399e-17
+ - 2.4707884896958937e-16
+ - -4.1607184811417286e-17
+ - -3.638043731584785e-17
+ - -5.608284553109528e-17
+ - -6.87387089031566e-17
+ - -8.189088064274973e-17
+ - 3.7322389238392604e-16
+ - 5.773720675620133e-17
+ - 1.0769891575440419e-16
+ - -1.4773445740197074e-16
+ - -3.1101991031993836e-16
+ - -5.193039885607908e-16
+ - 8.619221982802547e-17
+ - 5.2608686958372554e-17
+ - -3.3587668772715684e-16
+ - -1.6907571720583883e-16
+ - 7.100518378155189e-16
+ - -1.7416287797303995e-16
+ - -1.9273308272485542e-17
+ - 4.2177939434078876e-16
+ - -1.1580528575742387e-16
+ - -1.9852334701272662e-16
+ - -2.393033512115909e-16
+ - 7.46944093135384e-17
+ - -1.8632243297756946e-16
+ - -1.5819829215076652e-16
+ - 2.15087638779101e-16
+ - -1.8582612461003764e-16
+ - 6.3213142411302365e-16
+ - 1.3615392882622836e-16
+ - 1.1911917808646444e-16
+ - -3.775252315692018e-16
+ - -2.093800925524851e-16
+ - 5.839895124624375e-17
+ - 4.344352577128501e-16
+ - 5.720781116416739e-16
+ - 5.360130369343619e-17
+ - 6.868701011487204e-17
+ - -4.2434365423970314e-17
+ - 4.863822001811802e-17
+ - -1.2209185841282688e-16
+ - 1.6766951016449869e-16
+ - 7.034654121880655e-17
+ - -6.59262948204763e-17
+ - -6.948317145445432e-17
+ - -1.0951871310202085e-16
+ - -3.389786150242307e-16
+ - 5.547073187780604e-16
+ - -2.8785885316845363e-17
+ - 7.313103795581317e-16
+ - 1.6593243087813733e-16
+ - -1.2705494208814505e-16
+ - 1.2763396851693217e-16
+ - 3.077111878697263e-17
+ - -6.427193359537025e-17
+ - -2.1539783150880838e-16
+ - -4.301339185275744e-18
+ - 3.395576414530178e-16
+ - 4.896909226313924e-16
+ - -1.4574922393184348e-16
+ - 3.247511084883186e-16
+ - -1.7376996718207726e-16
+ - 4.6652986547990755e-17
+ - -3.941515618815176e-17
+ - -5.853130014425224e-16
+ - 1.8872125675397324e-16
+ - -6.59262948204763e-17
+ - -3.9539233280034717e-17
+ - 1.9413928976619557e-16
+ - 1.0785608007078928e-15
+ - -3.2566100716212695e-16
+ - 7.346191020083438e-16
+ - -5.360130369343619e-17
+ - -7.345363839470886e-17
+ - -9.793818452627846e-17
+ - 1.6030760271277674e-16
+ - 2.276401045745932e-16
+ - -7.80858498250058e-17
+ - 3.867896544297957e-16
+ - -7.052541902627113e-16
+ - -3.4063297624933675e-16
+ - -4.850897304740661e-17
+ - -1.213887548921568e-15
+ - -6.203854594147707e-18
+ - 8.544775727672775e-17
+ - 3.484911920685905e-16
+ - 2.1688675661140383e-16
+ - 6.443736971788086e-17
+ - -1.5774334281386235e-16
+ - 6.046690277762632e-17
+ - -5.194694246833013e-17
+ - -1.4136516668531243e-16
+ - 2.8810700735221954e-16
+ - 6.687755252491229e-17
+ - -2.0216294170795994e-16
+ - 2.240005098793599e-16
+ - 1.589841137326919e-16
+ - 2.3756627192522955e-16
+ - -1.1588800381867918e-16
+ - -6.352747104407253e-17
+ - -2.3458842172003865e-16
+ - -1.4459117107426924e-16
+ - 1.9976411793155615e-17
+ - 3.900983768800078e-16
+ - -6.187310981896647e-17
+ - 4.13921178521535e-16
+ - 4.883674336513075e-16
+ - 2.1047610686411787e-16
+ - -1.6791766434826462e-17
+ - 4.1276312566396075e-17
+ - 1.6212740006039342e-17
+ - 2.0911125885340537e-16
+ - 3.2938331991861557e-16
+ - 2.341334723831345e-16
+ - -7.409470336943745e-17
+ - 4.1243225341893955e-16
+ - 2.259443843188595e-16
+ - -2.7458260433697754e-16
+ - -5.340278034642347e-16
+ - -3.513863242125261e-16
+ - 1.1171074172528639e-16
+ - -3.6759906421856545e-16
+ - 3.797792987384088e-17
+ - 1.0563096422302162e-16
+ - 4.228547291371077e-16
+ - -8.533195199097033e-16
+ - -8.172544452023912e-17
+ - -9.810362064878907e-17
+ - -2.5526793703386434e-16
+ - -4.9961708998202865e-17
+ - 1.981924747677054e-16
+ - 4.073037336211108e-16
+ - 6.352747104407253e-17
+ - -1.819797347616661e-18
+ - 1.492233825045662e-16
+ - 5.470972571425725e-16
+ - -2.251999217675618e-16
+ - 1.050519377942345e-16
+ - 3.544468924789723e-16
+ - 2.5915568591286357e-16
+ - 1.4026915237367967e-16
+ - -1.1249656330721176e-16
+ - 1.422337063284931e-16
+ - 1.4285409178790788e-16
+ - 6.327931686030661e-18
+ - -9.443300668058502e-16
+ - -1.4392942658422682e-16
+ - -1.9049969507096225e-16
+ - 1.827241973129638e-16
+ - -3.864587821847745e-16
+ - 2.839711042894544e-16
+ - 8.933550615572699e-18
+ - -2.776018135727961e-16
+ - -1.1506082320612615e-16
+ - -5.825419463904697e-17
+ - -4.940336208472957e-17
+ - -1.5865324148767068e-16
+ - -1.2738581433316625e-17
+ - -2.1390890640621293e-16
+ - 6.72663274128122e-16
+ - 1.710609506759661e-16
+- - -1.976445002275194
+ - -1.7394211844980203
+ - 0.5747478890877269
+ - 1.033118330314793
+ - -2.3825206648524646
+ - 2.886787020844779
+ - -2.481157022386343
+ - 1.193195945753381
+ - 0.1649437781365609
+ - -0.2511349430953857
+ - -3.5910006976440743
+ - -1.7648279960162743
+ - 2.8869825544985495
+ - -2.410301428180616
+ - 1.0058951497535074
+ - 0.329483158954318
+ - 0.029424903011736704
+ - -3.2100875172082564
+ - -1.7153089626565863
+ - 2.872910686230885
+ - -2.289077125604761
+ - 0.8876064136244984
+ - 0.8153131832069259
+ - -2.240833798750552
+ - 2.864418143395651
+ - -1.7355811683168223
+ - -3.232193960268345
+ - 0.11619455273488402
+ - 0.3779353529635304
+ - 0.9346424368163316
+ - -2.366263624565553
+ - 2.8837931611934438
+ - -1.6944652588263496
+ - -3.441020578214339
+ - -0.12478251833663216
+ - 0.23594103824576262
+ - 1.1239470795691706
+ - -2.4398720093907813
+ - 2.886846522724108
+ - -2.4259957758425634
+ - 1.10338222815461
+ - 0.5003961339449621
+ - -2.6878913615717397
+ - -2.542638703614036
+ - 1.0451436056424424
+ - 1.2130427449918253
+ - 5.002671895806402
+ - 5.088270580573389
+ - -2.4585329081096794
+ - 1.1548059938167055
+ - 0.4427826047335819
+ - -2.045316136027839
+ - 2.814146811638734
+ - -2.750543278887389
+ - 1.2107792343414872
+ - 2.7137664224541096
+ - 1.5492586796453647
+ - 0.5329286875529395
+ - -2.1319584541024197
+ - 2.840740202385052
+ - -2.672505912173637
+ - 1.087834508476333
+ - 2.338968696772698
+ - 1.635728419505378
+ - 0.6439469373093917
+ - -2.267858557522564
+ - 2.8693422163530196
+ - -2.6197801765286006
+ - 1.3616262821841834
+ - 0.21405303301492493
+ - -1.8005642650151732
+ - 1.7598527887484872
+ - 2.851791899596069
+ - -2.4404311796991833
+ - -1.5806166923273886
+ - 1.2520052970219282
+ - 0.41763405628844646
+ - -1.95660232481421
+ - 1.887621440595784
+ - 3.377664532692271
+ - -2.5847842482554784
+ - -1.5574440756189643
+ - 1.0645463994979885
+ - 0.5416745369167676
+ - -2.048405707276002
+ - 2.834810101219558
+ - -2.7150889266594618
+ - 1.6376921523181114
+ - -1.5984428874223
+ - -2.116668408118941
+ - -4.420257122324671
+ - -3.675199281912077
+ - 2.1416010301629385
+ - -0.7718951539891181
+ - -0.9235564813538267
+ - 2.301664037664202
+ - -2.9229066455766084
+ - 2.5201273392271473
+ - -1.0411968740098771
+ - -2.4447825832471644
+ - -2.157491380853577
+ - -0.8751981091651336
+ - 2.3754803325401923
+ - -2.9281061045098293
+ - 2.4156759936959156
+ - -0.8353401425721608
+ - -1.9442687206639202
+ - -2.06490173608795
+ - -0.9114661656970587
+ - 2.484243867431967
+ - -0.7723788944984603
+ - -0.924431748110981
+ - 2.303651125876899
+ - -2.9252551253387247
+ - 2.522128547143945
+ - -0.9530439407968122
+ - -2.1307498270325724
+ - -1.8782349647081533
+ - -0.7936754724624536
+ - 2.3775355205427444
+ - -2.9314064366685173
+ - 2.417571458637913
+ - -0.8523894581112589
+ - -2.111755433093185
+ - -2.2432311393813738
+ - -0.9289323790089746
+ - 2.486387057807324
+ - -2.929343109267176
+ - 2.346218353164051
+ - -0.9925727627574163
+ - -0.7026503655578066
+ - 2.0944135208053027
+ - -4.810677559573107
+ - -4.705051189368114
+ - -0.7234836395397377
+ - -0.5432221493279429
+ - 3.3072982756548526
+ - 3.4456229609252813
+ - -1.049753256899514
+ - -0.643990050864562
+ - 2.049379371315444
+ - -2.8880157673282425
+ - 2.6488639465819164
+ - -1.629428282015804
+ - 0.10847607756208995
+ - 0.7746434156865758
+ - 3.182394778679923
+ - 1.5100705038355746
+ - -2.905559644062061
+ - 2.5970642177615155
+ - -1.454678393455792
+ - -0.03748222875435125
+ - 0.4857182788063632
+ - 3.034031449756202
+ - 1.5710392852154347
+ - -2.924974386148466
+ - 2.5007033941781525
+ - -1.3460287285085413
+ - -0.417177857584531
+ - 1.8812513558116548
+ - -2.8159604968308702
+ - 1.8313643200660938
+ - 3.317722389214616
+ - -0.6293243543618587
+ - -0.6600112865075678
+ - -0.5390939328597585
+ - 2.0317892929963377
+ - -2.8646537477969187
+ - 1.9033286638282365
+ - 3.7579212598319454
+ - -0.43701399265315044
+ - -0.520471212445191
+ - -0.739358904005015
+ - 2.1187172269131667
+ - -2.8887297003206367
+ - 2.6074024885548237
+ - -1.546833852682221
+ - -0.09428493133097986
+ - 1.017858472635608
+ - 1.081993903884752
+ - 1.0929951023969431e-15
+ - 1.1973956354587921e-15
+ - 2.9431086194636725e-16
+ - 2.93152809088793e-16
+ - -2.954689148039415e-16
+ - -1.4693829606238845e-16
+ - -1.9736529415515238e-16
+ - -3.3831687053418827e-16
+ - -8.300757446969632e-16
+ - 1.3210074382471852e-16
+ - 1.8032537353656e-16
+ - 3.212769499155959e-16
+ - 1.8075964335815035e-16
+ - 2.837229501056885e-17
+ - -6.311388073779601e-17
+ - -8.238718901028154e-17
+ - -1.65022532204329e-16
+ - -1.3801508520447267e-16
+ - 3.639594695233322e-17
+ - 9.620110523991711e-17
+ - 5.067127486740851e-17
+ - 1.4723814903443893e-17
+ - 2.5146290621612038e-17
+ - 8.784658105313153e-17
+ - 1.833032237417509e-16
+ - -2.774363774502855e-16
+ - -8.569591146049365e-17
+ - -3.8546616544971083e-17
+ - 2.905058311286233e-16
+ - 4.0823431181023293e-16
+ - 2.962960954164945e-16
+ - 1.0753347963189358e-17
+ - 2.5601239958516207e-16
+ - 3.5295796737637686e-16
+ - 3.060568266446202e-18
+ - -5.985478912433708e-16
+ - 1.0422475718168147e-16
+ - 6.402377941160434e-17
+ - -3.0738031562470503e-16
+ - 2.8802428929096424e-16
+ - 1.5964585822273432e-16
+ - 3.1778211182755936e-16
+ - 8.619221982802547e-17
+ - 2.2209799447048793e-16
+ - 1.2260884629567253e-16
+ - -1.150194641754985e-16
+ - 1.4442573495175863e-16
+ - -6.981404369947554e-17
+ - -8.983181452325879e-17
+ - -1.2862658525199579e-17
+ - 2.2362827860371103e-16
+ - 1.4475660719677984e-16
+ - 9.330597309598151e-17
+ - -1.7039920618592368e-16
+ - -6.796115912735674e-16
+ - -8.189088064274973e-17
+ - -9.429858983104514e-18
+ - 1.5418646617988433e-16
+ - 5.757177063369073e-17
+ - 1.4889251025954498e-16
+ - 2.609754832604802e-17
+ - 3.13915042463874e-17
+ - 7.263679753981274e-17
+ - 4.764560328305439e-17
+ - -5.624828165360588e-17
+ - 1.4273001469602493e-16
+ - -5.707753021769029e-16
+ - -7.213014941462401e-17
+ - -4.030618480423623e-16
+ - -9.719372197498074e-17
+ - -5.136791603954301e-17
+ - -1.3789100811258971e-16
+ - -9.967526381263982e-17
+ - -2.783462761240938e-17
+ - -2.671793378546279e-17
+ - 2.19357958691406e-17
+ - -1.8504030302811227e-16
+ - -2.815722805130506e-16
+ - 3.1011001164613003e-16
+ - -2.93152809088793e-16
+ - 1.2393233527575737e-16
+ - -2.686682629572234e-16
+ - 1.1233112718470116e-16
+ - 4.476701475136986e-16
+ - -1.6536891408583558e-16
+ - -3.561012537040784e-17
+ - -1.859502017019206e-16
+ - -1.828896334354744e-16
+ - -1.0147851754800544e-15
+ - 3.4923565461988824e-16
+ - -1.852884572118782e-17
+ - -7.510799961981491e-17
+ - 1.3710518653066432e-17
+ - -7.535615380358081e-17
+ - -1.9149231180602588e-16
+ - -1.772648052701138e-16
+ - 1.4426029882924803e-16
+ - -4.293067379150213e-17
+ - 1.6684232955194566e-16
+ - 3.310790401743493e-17
+ - 1.1299287167474358e-16
+ - 5.889525961377557e-16
+ - 2.349399734803737e-16
+ - -1.3645378179827883e-16
+ - -2.0997979849658605e-16
+ - -1.2639319759810263e-16
+ - -6.216262303336003e-17
+ - 1.8541253430376113e-16
+ - 2.5576424540139616e-16
+ - 9.661469554619362e-17
+ - 4.235164736271501e-17
+ - 1.9418064879682322e-17
+ - -1.8611563782443123e-17
+ - 1.5038143536214043e-16
+ - -1.7707868963228937e-16
+ - -2.6614536208893662e-17
+ - -2.1651452533575497e-16
+ - 1.0670629901934055e-17
+ - 3.1681017460780955e-16
+ - 3.506211821459146e-17
+ - 4.9093169355022186e-17
+ - 5.5007510734776334e-17
+ - -3.475735385765395e-16
+ - -3.30872245021211e-19
+ - -2.6420148764943704e-16
+ - -6.878006793378425e-17
+ - -8.602678370551487e-17
+ - -3.9167002004385854e-17
+ - -2.1978188875533943e-16
+ - -1.4475660719677984e-16
+ - -2.7371406469379686e-16
+ - -2.069605892607675e-16
+ - -4.010585199963354e-16
+ - 1.1243452476127029e-16
+ - -2.982813288866218e-16
+ - -3.1962258869048984e-16
+ - 1.5501364679243736e-16
+ - -4.863822001811802e-17
+ - 2.9712327602904754e-16
+ - -7.46116912522831e-17
+ - 8.102234099956905e-17
+ - 6.009467150197746e-17
+ - 3.019209235818551e-17
+ - -2.6502866826199007e-16
+ - 6.968169480146704e-16
+ - -9.777274840376786e-17
+ - 1.1940352142202954e-16
+ - 4.102815838263017e-16
+ - -4.7314731038033177e-17
+ - -6.121136532892405e-17
+ - -2.486504921334401e-16
+ - 1.3234889800848443e-16
+ - 3.308722450212111e-17
+ - -4.6652986547990755e-17
+ - -4.384057246531046e-16
+ - 1.3201802576346322e-16
+ - -1.0166049728276709e-16
+ - -3.125088354225338e-16
+ - -4.2980304628255313e-16
+ - -1.3301064249852685e-16
+ - 3.8877488789992295e-17
+ - 5.091296670263885e-17
+ - -7.494256349730431e-17
+ - 2.936491174563248e-17
+ - 8.119604892820519e-16
+ - 1.4558378780933287e-17
+ - 6.170767369645586e-17
+ - -7.725866921245277e-17
+ - 2.602310207091825e-16
+ - 5.376673981594679e-17
+ - -3.774011544773188e-17
+ - 3.4625780441469734e-16
+ - 1.5468277454741615e-16
+ - 1.682485365932858e-16
+ - -4.681842267050136e-17
+ - 9.797954355690612e-17
+ - -3.970466940254533e-18
+ - 1.3334151474354806e-16
+ - -1.020410003645415e-15
+ - 4.4171444710331673e-16
+- - 4.265372455427122
+ - 3.5553221356922444
+ - -2.073940425324193
+ - 0.5744375575492083
+ - 1.0306737431813024
+ - -2.4357622294984367
+ - 2.8863456524337603
+ - -2.480781394287631
+ - 0.9463591292676851
+ - 2.2811855337103175
+ - 2.3249476505524904
+ - 0.971649469768002
+ - -2.5020716595961687
+ - 2.886469127642385
+ - -2.3650927301362517
+ - 0.7410100485387383
+ - 1.7929612624061413
+ - 2.204186569766855
+ - 1.000560773553719
+ - -2.6031021531991794
+ - 2.87233547014452
+ - -2.290183296715528
+ - 0.797832503199497
+ - 0.8128153216010067
+ - -2.240650829224498
+ - 1.8660886416957634
+ - 3.1474215037670237
+ - -1.9139560838184535
+ - -1.32867216882691
+ - 0.6787836882533211
+ - 1.0070102841830086
+ - -2.3660521010896884
+ - 1.8938101812442998
+ - 3.495104815459485
+ - -1.8692046404559715
+ - -1.2287754595271265
+ - 0.4782114572122261
+ - 1.1237433488522848
+ - -2.4381707443468565
+ - 2.8860281850200877
+ - -2.4270781814913325
+ - 1.103094408890677
+ - -0.18249320186888077
+ - -0.3148639883542483
+ - -2.3260340194728903
+ - -2.427247730770818
+ - -4.863413811159067
+ - -4.870179690769065
+ - 2.8868191996985066
+ - -2.4580834992844736
+ - 1.1566529228798679
+ - 0.5350434621352677
+ - -2.0434922889826725
+ - 2.813854484702705
+ - -1.8164273291820132
+ - -3.5803583561342798
+ - 0.4868315141232549
+ - 0.5510854965982288
+ - 0.6575465614450887
+ - -2.1318796053951603
+ - 2.8532642059841677
+ - -1.7566126309340617
+ - -3.2538987340473233
+ - 0.21292070645643946
+ - 0.43165589545763566
+ - 0.8531960233203748
+ - -2.267712108688058
+ - 2.8685893400750535
+ - -2.575929623904638
+ - 1.3633894613112376
+ - 0.21416894214450766
+ - -1.0943403543766
+ - -1.4500596131789552
+ - 3.2818495087906063
+ - 1.892460398559934
+ - -2.51345326605493
+ - 1.1817184458115573
+ - 0.4177493660378274
+ - -1.230122870102724
+ - -1.875933425588
+ - 3.6879583881347133
+ - 1.9846507602960477
+ - -2.403228634639156
+ - 1.0641045089045447
+ - 0.5392840632684336
+ - -2.1144386023855484
+ - 2.8339337484084726
+ - -2.714700766808832
+ - 3.470330655691892
+ - 4.349890045882768
+ - 5.171656017869387
+ - 4.211163490735763
+ - -2.8944482455427885
+ - 2.1407678745017558
+ - -0.7737951144820778
+ - -1.012443441324014
+ - 2.299982793792327
+ - -2.922451213174081
+ - 1.8004991849519898
+ - 3.6380107826792685
+ - 0.09853864483616787
+ - -0.2446036863889522
+ - -1.1275571782400444
+ - 2.3751986511337524
+ - -2.9285437850348432
+ - 1.6266107952543818
+ - 3.10485095538885
+ - 0.30378672089157355
+ - -0.1414599287437517
+ - -1.314267318841984
+ - 2.4838466248773785
+ - -0.7718690708271
+ - -1.0147062835134748
+ - 2.3017812538775675
+ - -2.923288289847009
+ - 1.6901661721494539
+ - 3.181739208107406
+ - 0.07298221381004365
+ - -0.27207642875656185
+ - -1.1298230722465576
+ - 2.4198052319313628
+ - -2.9292326876296864
+ - 1.6426457367514744
+ - 3.3722990290572157
+ - 0.3299393241288405
+ - -0.1283112373670035
+ - -1.3165226921039728
+ - 2.4855350980379685
+ - -2.927100482355881
+ - 2.2871567987630734
+ - -0.9919642401933492
+ - -0.7046548319981479
+ - 2.9377598227447907
+ - 2.7938446724101325
+ - -0.885150037483639
+ - -1.054943451442041
+ - -4.925208372769366
+ - -5.018617117190704
+ - 2.3252848704637596
+ - -1.0498283442072887
+ - -0.6414192889976666
+ - 2.113516023750254
+ - -2.8871417167211373
+ - 2.6483997815935045
+ - -1.12831039052388
+ - -2.578132199346925
+ - -1.7254116976323237
+ - -0.6319746996888503
+ - 2.197057970467601
+ - -2.9050279251788163
+ - 2.5620254862768586
+ - -1.001245498637136
+ - -2.2052155899956785
+ - -1.7915580096709098
+ - -0.7401574379826784
+ - 2.3224941433702253
+ - -2.9244133742449545
+ - 2.5013790411470875
+ - -1.2617716264504024
+ - -0.414673385347392
+ - 1.880812372937751
+ - -1.79489124676855
+ - -2.9409750682795677
+ - 2.312183897499841
+ - 1.5209198233539298
+ - -1.1473581501201386
+ - -0.6147472066042616
+ - 2.0313177686165993
+ - -1.919553221381182
+ - -3.4674051713080614
+ - 2.427696775611752
+ - 1.4865959936388964
+ - -0.9575694102274699
+ - -0.7392390087717544
+ - 2.1164512864714453
+ - -2.9023234089793073
+ - 2.607925125765082
+ - -1.5466204858362187
+ - 1.3820750587572177
+ - 1.8547691914608604
+ - -1.0716952016237027e-15
+ - -1.2440796412797534e-15
+ - -3.59823566460567e-16
+ - -1.995573227784179e-16
+ - 4.6032601088575984e-17
+ - 1.1042861177582918e-16
+ - 2.5271401689260687e-16
+ - 3.507245797224837e-16
+ - 7.650593485502952e-16
+ - -7.440489609914484e-17
+ - -1.9492511134812095e-16
+ - -6.287399836015562e-16
+ - -1.241184509135818e-16
+ - -1.3509927354522324e-16
+ - -6.013603053260511e-17
+ - 3.448515973733572e-16
+ - 1.163015941249557e-16
+ - 1.0043523600042292e-16
+ - 2.3218959794363487e-16
+ - -2.2821913100338034e-16
+ - 2.9778502051908992e-18
+ - 1.1580528575742387e-16
+ - 4.2517083485225616e-17
+ - -7.730002824308042e-17
+ - -2.934836813338142e-16
+ - 3.275635225709989e-16
+ - 5.376673981594679e-17
+ - 3.5403330217269584e-17
+ - -3.0431974735825883e-16
+ - -4.2790053087368117e-16
+ - -2.901749588836021e-16
+ - -5.4097612060968004e-17
+ - -4.954088086156652e-16
+ - -2.323757135814593e-16
+ - -3.970466940254532e-17
+ - 7.79204137024952e-16
+ - -7.907846656006943e-17
+ - -8.238718901028154e-17
+ - 2.447627432544409e-16
+ - -4.807573720158197e-16
+ - -6.782881022934827e-17
+ - -3.5465368763211057e-16
+ - -2.1080697910913908e-16
+ - -8.561319339923835e-17
+ - 2.10103875588469e-17
+ - 3.8232287912200934e-16
+ - -2.8206858888058244e-17
+ - 6.140161686981123e-16
+ - -1.1113171529649927e-16
+ - 1.3731198168380258e-17
+ - -8.35193924737135e-17
+ - -1.0984958534704206e-16
+ - -1.1748032649784376e-16
+ - 3.1738920103659667e-16
+ - 2.2218071253174323e-16
+ - 6.110796775235491e-18
+ - 1.236428220613638e-16
+ - -1.0232224177280951e-16
+ - -1.9025154088719633e-17
+ - 1.845026356299528e-16
+ - -1.3665023719376017e-16
+ - -1.7536228986124187e-17
+ - -1.5828101021202182e-16
+ - 1.619619639378828e-16
+ - 5.525566491854224e-17
+ - -4.5970562542634507e-17
+ - 5.157471119268128e-16
+ - -9.067967465112565e-17
+ - 3.211115137930853e-16
+ - 1.4452913252832776e-16
+ - 2.6792380040592566e-16
+ - 1.902101818565687e-16
+ - 1.284611491294852e-16
+ - -1.71309104859732e-16
+ - 3.51282926635957e-16
+ - -5.864710543000966e-17
+ - 5.40148939997127e-17
+ - 1.081125060606807e-16
+ - -1.4839620189201316e-16
+ - 1.9394800424954268e-16
+ - -9.537392462736408e-17
+ - 3.585827955417375e-17
+ - 9.330597309598151e-17
+ - -2.5557812976357173e-16
+ - 1.0918784085699964e-16
+ - 7.093073752642212e-17
+ - 1.41654679899706e-16
+ - 6.840783665813539e-17
+ - 3.90429249125029e-16
+ - 6.230324373749403e-16
+ - 1.4068274267995618e-16
+ - -4.2417821811719254e-16
+ - -1.317698715796973e-16
+ - 2.654422585682666e-16
+ - 3.3765512604414585e-16
+ - 1.1266199942972237e-16
+ - 8.25939841634198e-17
+ - 1.562544177112669e-16
+ - -3.601544387055882e-16
+ - 2.2664748783952955e-17
+ - -1.3913177903141925e-16
+ - -4.85699776175824e-16
+ - -1.317698715796973e-16
+ - 4.632211430296955e-18
+ - -7.370179257847477e-17
+ - -1.2947444537986266e-16
+ - 4.413008567970402e-17
+ - -1.6626330312315854e-16
+ - 2.80579663777987e-16
+ - -8.337980574534518e-17
+ - -1.239530147910712e-16
+ - 1.6692504761320096e-16
+ - 6.662939834114638e-17
+ - -1.1481266902236024e-16
+ - 7.775497757998459e-17
+ - -1.5195307852599116e-16
+ - 1.8231060700668727e-16
+ - 7.750682339621868e-17
+ - -3.297141921636368e-16
+ - -8.000904474919159e-17
+ - 8.768114493062092e-17
+ - 1.133237439197648e-16
+ - 1.624582723054146e-16
+ - 2.7958704704292335e-17
+ - 1.7006833394090247e-16
+ - 4.016789054557502e-16
+ - 2.9778502051908996e-17
+ - 2.1005217680018444e-16
+ - 2.653595405070113e-16
+ - 1.6659417536817975e-16
+ - 2.4070955825293105e-16
+ - 1.5832236924264947e-16
+ - 3.808339540194139e-16
+ - -2.922429104149847e-16
+ - 2.689887954445877e-16
+ - 3.1399776052512926e-16
+ - -8.19710137645908e-17
+ - 3.7429922718024497e-16
+ - -1.6096934720281916e-16
+ - 1.0546552810051101e-17
+ - 7.279189390466644e-18
+ - 1.2159555004529507e-16
+ - -6.8097643928428e-17
+ - 3.839772403471154e-16
+ - -6.514874504467645e-16
+ - -4.566036981292712e-17
+ - -1.79022564071789e-16
+ - -4.295548920987872e-16
+ - 1.4293680984916318e-16
+ - 4.4254162771586974e-17
+ - 1.3962808739895107e-16
+ - 1.6543612251060553e-17
+ - -6.617444900424221e-17
+ - 1.4756902127946014e-16
+ - 5.270794863187892e-16
+ - -1.6295458067294643e-16
+ - 1.980270386451948e-16
+ - 1.7875373037270926e-16
+ - 2.540478456303486e-16
+ - 2.3915859460439413e-16
+ - -9.727644003623604e-17
+ - -7.394994676224067e-17
+ - -1.2841979009885753e-17
+ - 5.277412308088316e-17
+ - -7.82512859475164e-17
+ - -1.654361225106055e-19
+ - -3.8298462361205175e-17
+ - -5.653779486799944e-17
+ - -8.823949184409421e-17
+ - -3.3004506440865804e-17
+ - 2.5253824101243935e-16
+ - -4.0333326668085624e-16
+ - -5.0364959546822466e-17
+ - -5.4676638489755123e-17
+ - -5.558653716356346e-17
+ - -1.533592855673313e-16
+ - -7.039307012826266e-17
+ - -1.1291015361348828e-16
+ - 9.889771403683999e-16
+ - -1.0968414922453146e-16
+- - -5.145502543518587
+ - -4.197513860614239
+ - 2.8080727403249943
+ - -2.061675041828224
+ - 0.5718836871824668
+ - 1.1137924939546098
+ - -2.423104421916196
+ - 2.8716566035628897
+ - -1.7412463983028417
+ - -3.552667778830156
+ - -0.30699100373735727
+ - 0.13408274481660581
+ - 1.2275391948588856
+ - -2.49030985099391
+ - 2.8683557977170424
+ - -1.5624630483018858
+ - -3.0176718282554638
+ - -0.4842054824762011
+ - 0.03668567316913155
+ - 1.406510702711804
+ - -2.5906327717088775
+ - 2.8576092201616707
+ - -2.2174785805954276
+ - 0.7941008569971003
+ - 0.8108399916211326
+ - -1.3857746624684215
+ - -2.034360004606999
+ - 3.074588586287597
+ - 1.8390128245796404
+ - -2.134207113329096
+ - 0.5984716532204903
+ - 1.0040094415909167
+ - -1.47282211408517
+ - -2.406336009126067
+ - 3.239432915235253
+ - 1.813592553285588
+ - -1.9914115238034378
+ - 0.4736361762927025
+ - 1.117754880546345
+ - -2.477285871605771
+ - 2.8712664127706433
+ - -2.4133530575491657
+ - 2.9748750034054856
+ - 3.0511793415335853
+ - 2.838361231345303
+ - 2.8402284570623033
+ - 3.135145087772314
+ - 3.0613999167041617
+ - -2.4462653534704466
+ - 2.871840923930946
+ - -2.4453775254377157
+ - 1.0629004952349448
+ - 0.5320705196369334
+ - -2.034506446096045
+ - 1.8244319404287397
+ - 3.2710051437867915
+ - -2.3508250596537295
+ - -1.4480515844851358
+ - 0.9482284111965035
+ - 0.6563811299081203
+ - -2.1743279776084883
+ - 1.8469059615452508
+ - 3.0993095249207747
+ - -1.980217271752386
+ - -1.359313162225562
+ - 0.753761592535835
+ - 0.8509363143037754
+ - -2.2556842793916214
+ - 2.862878858039081
+ - -2.5627950871829923
+ - 1.3545369315278908
+ - 0.07533128317422395
+ - -0.4167768276346989
+ - -3.0451403497654455
+ - -1.5837041012336346
+ - 2.8710924838080505
+ - -2.4588576684434944
+ - 1.1736702682292826
+ - 0.1746998391049028
+ - -0.22946637000688994
+ - -3.5786177723603125
+ - -1.7603990247435108
+ - 2.8702260620610525
+ - -2.389483124458691
+ - 1.0589024267022502
+ - 0.6299079139037735
+ - -2.1033574891643987
+ - 2.8198898573768334
+ - -4.195943434267909
+ - -5.147056676269288
+ - -4.22782153194632
+ - -3.367207769437419
+ - 2.618791672102957
+ - -2.8788187959929568
+ - 2.1297628211128408
+ - -0.677059350275493
+ - -1.0069051833173466
+ - 2.2893473190077174
+ - -1.9664174123877256
+ - -3.6344798227039847
+ - 1.979405273180398
+ - 1.2772669160034822
+ - -0.5551201985718273
+ - -1.123697862131329
+ - 2.4067015236255918
+ - -1.8811203793645999
+ - -3.2431303646536356
+ - 1.545308070518581
+ - 1.1413830725335403
+ - -0.3553970692634176
+ - -1.309310140059594
+ - 2.4706938277970534
+ - -0.6753431365514352
+ - -1.0075029227476682
+ - 2.2886853655488584
+ - -1.870090339312677
+ - -3.185943568351201
+ - 1.7446235348134005
+ - 1.2420981274640028
+ - -0.5534675105989108
+ - -1.1946912157397966
+ - 2.405894431698389
+ - -1.8908912221582703
+ - -3.5224074351592014
+ - 1.6790041077217266
+ - 1.136867892607005
+ - -0.3538542220011777
+ - -1.3097041988265061
+ - 2.469809027554504
+ - -2.903393821530662
+ - 2.2738322941392903
+ - -0.9846122126060376
+ - -0.11444049685444829
+ - 0.020575043358413113
+ - 2.221997556840784
+ - 2.333048902612836
+ - 4.922827867984226
+ - 4.936652194981439
+ - -2.9093670164935013
+ - 2.3119822762647075
+ - -1.0448494118422305
+ - -0.7306280189510543
+ - 2.1024034178756503
+ - -2.872677117699776
+ - 1.772793799032758
+ - 3.5273003088683086
+ - -0.2863684991493192
+ - -0.4471388230240245
+ - -0.8490114531867562
+ - 2.187098717838278
+ - -2.898950423469277
+ - 1.7060490534954231
+ - 3.192857053794366
+ - -0.028711760538396202
+ - -0.32741548059662207
+ - -1.0421920956535835
+ - 2.3117343099589784
+ - -2.909255167995482
+ - 2.439987072433006
+ - -1.2558323294717697
+ - -0.41434581037143725
+ - 1.1718814753467603
+ - 1.60517167794031
+ - -3.228512105549888
+ - -1.8791711743935264
+ - 2.373848985433777
+ - -1.0685285817916077
+ - -0.6134044916849797
+ - 1.3081623396835385
+ - 2.045200522899282
+ - -3.6121584793830857
+ - -1.9606276640634583
+ - 2.253103243926045
+ - -0.9508230048898829
+ - -0.7347931489291983
+ - 2.169024784089392
+ - -2.8874389978212602
+ - 2.593934320214651
+ - -3.315008194898646
+ - -4.166619114784728
+ - 1.7481635065695685e-15
+ - 2.268956420232955e-15
+ - 3.330229146138489e-16
+ - 7.840121243354164e-17
+ - -2.0581287616085017e-16
+ - -2.0307284038176827e-16
+ - -3.8538344738845554e-16
+ - -1.8702553649823953e-16
+ - -4.69921305991375e-16
+ - 4.1607184811417286e-17
+ - 1.594804221002237e-16
+ - 6.816640331684646e-16
+ - 7.097209655704977e-17
+ - 2.2003004293910534e-16
+ - -4.6652986547990755e-17
+ - -3.6429034176835334e-16
+ - -1.0703717126436177e-16
+ - -1.4066206316464236e-16
+ - -1.6967542314993978e-16
+ - 1.108422020821057e-16
+ - 6.629852609612517e-17
+ - -1.0405932105917087e-16
+ - -7.684507890617626e-17
+ - -8.885987730350899e-17
+ - 1.8983795058091983e-16
+ - -3.0034928041800435e-16
+ - -4.8141911650586205e-17
+ - 1.5633713577252223e-17
+ - 2.4707884896958937e-16
+ - 2.354156023325917e-16
+ - 8.10637000301967e-17
+ - 1.471450912155267e-16
+ - 9.719372197498074e-17
+ - 3.701633241174799e-17
+ - -1.83055069557985e-16
+ - -4.968873939606037e-16
+ - -2.2416594600187047e-17
+ - 6.830443908156626e-17
+ - -1.4103429444029122e-16
+ - 4.4316201317528453e-16
+ - 3.4294908196448522e-16
+ - 9.934439156761861e-17
+ - 3.752918439153086e-16
+ - -2.845501307182415e-17
+ - -1.3677431428564313e-16
+ - -6.505775517729563e-17
+ - -6.849055471939069e-17
+ - -3.66823582394297e-16
+ - 3.8298462361205176e-16
+ - 9.541528365799173e-17
+ - -1.1547441351240266e-16
+ - 4.235164736271501e-17
+ - 1.3191979806572254e-16
+ - -1.5426918424113964e-16
+ - -2.775190955115408e-16
+ - -1.2205049938219923e-16
+ - -8.569591146049365e-17
+ - -5.3704701270005316e-17
+ - 1.1911400820763599e-16
+ - -9.487761625983226e-17
+ - 3.2226956665065953e-16
+ - -2.646977960169688e-18
+ - 2.9207747429247407e-16
+ - -1.8946571930527096e-16
+ - -2.809932540842635e-16
+ - -7.103413510299125e-17
+ - -3.77856103814223e-16
+ - 9.838279410552572e-17
+ - -1.2515242667927309e-16
+ - -1.2945376586454883e-16
+ - -6.476824196290207e-17
+ - 1.1332374391976478e-17
+ - -6.33413554062481e-17
+ - -1.8628624382577026e-16
+ - -3.216078221606171e-16
+ - -2.3328561225526763e-16
+ - 5.860574639938201e-17
+ - 4.632211430296955e-18
+ - 1.1109035626587162e-16
+ - -2.2106401870479662e-16
+ - 8.189088064274973e-17
+ - 8.346252380660048e-17
+ - -3.519653506413133e-17
+ - 9.247879248342848e-17
+ - -2.0906989982277772e-16
+ - -4.2186211240204405e-17
+ - -2.2003004293910534e-16
+ - -1.4996784505586392e-16
+ - -3.5287524931512156e-16
+ - -1.2465611831174127e-16
+ - -6.054962083888163e-17
+ - 6.442082610562979e-16
+ - 2.3661501422079357e-16
+ - -2.110758128082188e-16
+ - -2.2115190664488038e-16
+ - -1.5369015781235252e-16
+ - -2.4594147562732895e-16
+ - -9.810362064878907e-17
+ - 2.1494288217190422e-16
+ - -7.031035206700735e-17
+ - 2.011703249728963e-16
+ - 1.2953648392580413e-16
+ - 1.8537117527313348e-16
+ - -3.4456208415896363e-16
+ - -3.538678660501852e-16
+ - -9.578751493364059e-17
+ - -6.389970231972138e-18
+ - 1.0951871310202085e-16
+ - 1.6361632516298885e-16
+ - 1.194448804526572e-16
+ - 1.6336817097922295e-18
+ - 7.246102165964522e-17
+ - 8.834288942066334e-17
+ - -2.0927669497591597e-17
+ - -1.0174321534402239e-17
+ - 1.8115255414911306e-17
+ - -2.2069178742914776e-16
+ - -1.0124690697649058e-16
+ - 2.6676574754835143e-16
+ - 5.892110900791785e-17
+ - 6.187310981896647e-17
+ - -5.10370437945218e-17
+ - -6.274164946214715e-17
+ - -6.960724854633728e-17
+ - -4.630143478765572e-17
+ - -7.610061635487853e-17
+ - -2.3305813758681552e-17
+ - 1.0075059860895876e-16
+ - -1.4161332086907834e-16
+ - -1.213060368309015e-16
+ - -9.89308012613421e-17
+ - -1.8356171768317373e-16
+ - -3.8496985708217903e-16
+ - -4.441959889409758e-17
+ - -2.0286604522863001e-16
+ - -9.181704799338606e-17
+ - 5.062345348824529e-17
+ - -1.0339757656912845e-16
+ - 1.9025154088719633e-17
+ - 2.6552497662952185e-17
+ - 2.3574647457761286e-17
+ - 2.713152409173931e-16
+ - -2.072087434445334e-17
+ - -3.118470909324914e-16
+ - 2.375352526522588e-16
+ - 8.023651941764368e-18
+ - 9.318189600409856e-17
+ - 1.829723514967297e-16
+ - -1.5329724702138983e-16
+ - -4.226892930145971e-17
+ - 3.556876633978019e-17
+ - 4.2707335026112814e-16
+ - 1.1737692892127463e-16
+ - 1.0908444328043051e-17
+ - 2.69660879692287e-17
+ - 1.2498699055676248e-16
+ - -4.317882797526804e-17
+ - -1.0474174506452712e-16
+ - -2.0356914874930009e-16
+ - 8.437242248040882e-18
+ - -2.646977960169688e-18
+ - -1.4500476138054575e-16
+ - 3.3335378685887015e-17
+ - -9.876536513883149e-17
+ - 3.259091613458929e-17
+ - -4.215002208840521e-17
+ - -1.3332083522823424e-16
+ - 6.063233890013693e-17
+ - -2.5857665948407645e-16
+ - 1.021568056502989e-16
+ - -6.5843576759221e-17
+ - 2.0089115151615966e-16
+ - -3.672681919735443e-17
+ - -2.5394444805377947e-17
+ - -3.461750863534421e-17
+ - -2.485677740721848e-17
+ - -5.517294685728694e-17
+ - -1.8156614445538957e-17
+ - -1.1446938906815073e-15
+ - -2.2623389753325307e-16
+- - 4.3953090303372715
+ - 3.508916869003315
+ - -2.733736266248417
+ - 2.829832977009659
+ - -2.0884484900783655
+ - 0.4995086947712986
+ - 1.103864155316764
+ - -2.42998103729284
+ - 1.9899805288604306
+ - 3.7059052613542445
+ - -1.8313616854368178
+ - -1.209425676941981
+ - 0.37750785496272393
+ - 1.2209190269357013
+ - -2.5379199077891346
+ - 1.895057141396258
+ - 3.294169854719148
+ - -1.4093407031453309
+ - -1.0738308137983306
+ - 0.17333156991222481
+ - 1.4015340938337946
+ - -2.5989406312722636
+ - 2.867767399817164
+ - -2.2443661011444975
+ - 0.8149629131887787
+ - 0.4583863646189254
+ - 0.2604168331706261
+ - -3.2682125490301033
+ - -1.7688913338013204
+ - 2.850671270143528
+ - -2.1061858455635365
+ - 0.6182825415795193
+ - 0.5776868097675887
+ - 0.5384123439952375
+ - -3.592463374438714
+ - -1.8268892130220789
+ - 2.808369613035193
+ - -2.0163994556672207
+ - 0.49524624704319203
+ - 1.1959747647822472
+ - -2.483751381133562
+ - 2.8906183008908153
+ - -4.850279911828083
+ - -4.845591345151453
+ - -2.4517604308396637
+ - -2.352577153894004
+ - -0.38836684270412963
+ - -0.25670911003397023
+ - 1.1426801490897511
+ - -2.4533697729486743
+ - 2.8906535720396973
+ - -2.418311908473762
+ - 1.087287321914526
+ - 0.5195876713425315
+ - -1.251024371961461
+ - -1.9156425534644599
+ - 3.4863183883733013
+ - 1.8934766169452457
+ - -2.34465252810447
+ - 0.9697252196380433
+ - 0.7198187916387058
+ - -1.349534283037077
+ - -1.9551532371243832
+ - 3.1360386099468633
+ - 1.8640452710612017
+ - -2.216811029466955
+ - 0.7743519246477032
+ - 0.8385574784964461
+ - -2.3189255237772346
+ - 2.8802091842865165
+ - -2.587418497047768
+ - 0.9790460812659331
+ - 2.1715755306214284
+ - 1.8351532240489656
+ - 0.7667043109227593
+ - -2.392535452072519
+ - 2.8914689725073033
+ - -2.4837309470010753
+ - 0.9481776978512635
+ - 2.285202894718282
+ - 2.3273544278373697
+ - 0.9725157548392472
+ - -2.50597814630379
+ - 2.889545997706049
+ - -2.4158442013972032
+ - 0.9935586603238221
+ - 0.6156667586200237
+ - -2.1058276152510857
+ - 3.5922018448746
+ - 4.31248438318788
+ - 1.9257953369113445
+ - 1.4405056875248858
+ - -1.5837320583562071
+ - 2.629000279835274
+ - -2.9004617459153703
+ - 2.091246954300871
+ - -0.7000982098033927
+ - -0.9978606028651739
+ - 1.5073993861579715
+ - 2.4724112683177393
+ - -3.4497227434245104
+ - -1.914378097393931
+ - 2.0047265253429427
+ - -0.5750421743165284
+ - -1.1868669112230514
+ - 1.538885642666249
+ - 2.34922607750924
+ - -2.9225878214213084
+ - -1.788708423818414
+ - 1.8520588082660414
+ - -0.37422044635399715
+ - -1.3007059843824345
+ - 2.5252172154648886
+ - -0.7008199254232775
+ - -0.9959602945980971
+ - 1.4559567712101906
+ - 2.174724846070698
+ - -3.0264259594414193
+ - -1.8270336992011293
+ - 2.004127641432501
+ - -0.49991025449490656
+ - -1.184867138209716
+ - 1.5392207070044237
+ - 2.551503138241863
+ - -3.17519764434903
+ - -1.794314766099966
+ - 1.8516343006801823
+ - -0.3751706840803521
+ - -1.2986527592080528
+ - 2.5227100635099617
+ - -2.923753217113828
+ - 2.3000341306437155
+ - -2.774791398145532
+ - -2.857666472617195
+ - -2.837415147445824
+ - -2.8464338690315594
+ - -3.351303002028535
+ - -3.2847184189763974
+ - 2.4950343136547186
+ - -2.9298181531355465
+ - 2.3384575907426655
+ - -0.9789451506135829
+ - -0.7173554723703875
+ - 2.1054680663854994
+ - -1.859426869916652
+ - -3.362835685874712
+ - 2.229243561433992
+ - 1.395740541586306
+ - -0.8596086570747387
+ - -0.8391557821161838
+ - 2.2407083214924675
+ - -1.874938460191659
+ - -3.1738709127942073
+ - 1.8600535276454322
+ - 1.3024979666434788
+ - -0.6629417237687228
+ - -1.033947030476385
+ - 2.316008598475605
+ - -2.9320279933727655
+ - 2.4661419977903583
+ - -1.2789139965481913
+ - -0.16844231004368732
+ - 0.25707034016851804
+ - 3.125993565366699
+ - 1.642456827187893
+ - -2.9323228317588983
+ - 2.35490862000593
+ - -1.0907648187535774
+ - -0.2730258552817929
+ - 0.04466283932996871
+ - 3.6584473860689988
+ - 1.8150065211726274
+ - -2.9233258643754687
+ - 2.278137147436994
+ - -0.97486287461743
+ - -0.8146325179565067
+ - 2.171215188275739
+ - -2.904525747881657
+ - 4.2128218487085825
+ - 5.176109211214178
+ - -2.0050858048285388e-16
+ - -8.728409823659547e-16
+ - -1.5683344414005402e-16
+ - 7.725866921245277e-17
+ - 7.675202108726404e-17
+ - -1.196103165751678e-16
+ - 3.8612790993975327e-16
+ - 2.246622543694023e-16
+ - -3.672681919735443e-17
+ - 8.602678370551488e-18
+ - 1.0033700830268224e-16
+ - -5.849821291975012e-16
+ - 8.652309207304668e-17
+ - -3.6437305982960864e-16
+ - -1.2060293331023143e-16
+ - 4.8472783895607416e-17
+ - 1.4525291556431166e-16
+ - 2.6033441828575163e-16
+ - 2.8587361969832636e-16
+ - -1.10924920143361e-16
+ - 7.031035206700735e-17
+ - 2.714806770399037e-16
+ - 5.004442705945817e-17
+ - 1.6862076786893467e-16
+ - -2.8140684439054e-16
+ - -1.0703717126436177e-16
+ - 5.045801736573468e-18
+ - -4.8023004437531707e-17
+ - 6.137680145143465e-17
+ - -7.974021105011186e-17
+ - 3.3670386833970987e-16
+ - -1.6312001679545703e-16
+ - -8.146074672422216e-16
+ - 1.5170492434222525e-16
+ - 2.2110537773542427e-16
+ - -1.8495758496685696e-16
+ - 2.0199750558544933e-16
+ - 1.4831348383075786e-16
+ - 6.174903272708352e-17
+ - -3.613435108361332e-16
+ - 9.644925942368301e-17
+ - -2.248276904919129e-16
+ - -1.9157502986728118e-16
+ - 1.301568693852189e-16
+ - 5.872982349126496e-18
+ - -1.1183481881716934e-16
+ - 7.79204137024952e-17
+ - 1.9389113558242966e-16
+ - -3.9423427994277294e-16
+ - -8.040195554015428e-17
+ - 1.1425432210888695e-16
+ - -7.196471329211341e-17
+ - -8.925278809447167e-17
+ - -7.213014941462401e-17
+ - 2.0514079191315083e-17
+ - 4.709759612723801e-17
+ - -6.079777502264753e-17
+ - 3.307895269599557e-16
+ - -8.462057666417472e-17
+ - 5.2360532774606646e-17
+ - -1.6080391108030856e-16
+ - 4.8803656140628627e-17
+ - -1.5340064459795896e-16
+ - 1.1183481881716934e-16
+ - 1.0753347963189359e-16
+ - 2.6122363744424614e-16
+ - -1.3660887816313252e-16
+ - -9.89308012613421e-17
+ - -1.4070342219527e-16
+ - 1.894243602746433e-17
+ - 2.8239946112560365e-16
+ - -1.555099551599692e-17
+ - 1.0306670432410724e-16
+ - 1.1805935292663087e-16
+ - 1.8164886251664485e-16
+ - 9.810362064878907e-17
+ - -2.0844951436336295e-16
+ - -1.3971080546020637e-16
+ - 1.0991162389298354e-17
+ - 9.651129796962449e-17
+ - 4.946540063067105e-17
+ - -7.841672207002701e-17
+ - 1.5633713577252223e-17
+ - 5.773720675620133e-17
+ - 3.722312756488624e-19
+ - 1.193621623914019e-16
+ - 2.9497260643640967e-16
+ - 1.1191753687842464e-16
+ - 2.3177600763735835e-16
+ - 1.889280519071115e-16
+ - 2.2333876538931747e-16
+ - -1.255991042100517e-15
+ - -2.73817462270366e-16
+ - 2.3060244514329875e-16
+ - 1.0281855014034133e-16
+ - -1.1845226371759356e-16
+ - 4.509788699639107e-16
+ - 2.5073912318013648e-17
+ - 6.199718691084942e-17
+ - 2.0878038660838416e-16
+ - 7.510799961981491e-17
+ - 3.364970731865716e-16
+ - -1.4687108763761852e-16
+ - 1.7046124473186515e-16
+ - -2.5576424540139616e-16
+ - -5.107840282514946e-16
+ - -8.271806125530276e-19
+ - -4.417144471033167e-17
+ - -1.5468277454741615e-16
+ - -6.532658887637536e-17
+ - -1.3731198168380258e-17
+ - -2.302870825347629e-16
+ - -2.171866095834543e-16
+ - 5.244325083586195e-17
+ - -1.4789989352448135e-16
+ - 9.58702329948959e-17
+ - 1.1878313596261477e-16
+ - 1.195999768175109e-16
+ - 2.4649982254080222e-17
+ - 4.593954326966377e-17
+ - -8.437242248040882e-18
+ - -2.5146290621612038e-17
+ - 1.5927362694708545e-16
+ - 1.9016882282594104e-16
+ - -1.562544177112669e-16
+ - -1.892589241521327e-16
+ - -1.4260593760414197e-16
+ - -1.9844062895147131e-16
+ - 1.1626023509432804e-16
+ - 6.621580803486987e-17
+ - 7.229558553713462e-17
+ - 4.673570460924606e-18
+ - 7.056677805689878e-16
+ - -9.210656120777962e-17
+ - 3.28390703183552e-17
+ - -1.6444350577554188e-16
+ - 1.5844644633453243e-16
+ - 1.8363409598677212e-16
+ - 4.023406499457926e-16
+ - -3.0605682664462024e-17
+ - 2.600655845866719e-16
+ - -2.8707303158652825e-16
+ - -1.8859717966209028e-17
+ - 1.4227506535912076e-17
+ - 5.293955920339377e-16
+ - -2.2985281271317253e-17
+ - -4.0366413892587744e-17
+ - 7.411538288475128e-17
+ - -3.6561383074843823e-17
+ - 4.173126190330024e-17
+ - -1.134891800422754e-16
+ - -3.1937443450672394e-16
+ - -4.553629272104417e-17
+ - -1.8413040435430394e-16
+ - -3.668959606978954e-16
+ - -3.9094623700787464e-17
+ - -1.0060584200176198e-16
+ - -4.294721740375319e-16
+ - 1.2937104780329353e-16
+ - -3.5982356646056704e-17
+ - 1.130962692513127e-16
+ - -8.97594362196604e-17
+ - 5.4097612060968004e-17
+ - 7.612129587019236e-17
+ - 2.0464448354561902e-16
+ - 8.780522202250388e-17
+ - 6.716706573930585e-17
+ - -2.1672132048889323e-16
+ - 2.0646428089323568e-16
+ - -2.013357610954069e-16
+ - 1.5484821066992676e-16
+ - -7.17992771696028e-17
+ - 1.6560155863311612e-16
+ - 1.328038473453886e-16
+ - 1.431022459716738e-17
+ - -4.9237925962218966e-17
+ - 1.654361225106055e-19
+ - -2.8124140826802937e-18
+ - -4.142520507665562e-16
+ - 8.185779341824761e-16
+- - -2.1936161913874037
+ - -1.6619509365541194
+ - 1.6771995246546219
+ - -2.7352244986952603
+ - 2.8289706985813394
+ - -2.0174343591532478
+ - 0.4969785542750364
+ - 1.1083754027939956
+ - -1.5787700762548922
+ - -2.6316094667923235
+ - 3.3533678427473723
+ - 1.8793306295891543
+ - -1.924191612999754
+ - 0.3724691807249041
+ - 1.2947096833927327
+ - -1.598725066457343
+ - -2.4788328978510132
+ - 2.8273935738729294
+ - 1.7505976900562235
+ - -1.7659304155955529
+ - 0.1683155337238031
+ - 1.4035400835715504
+ - -2.6431466576177156
+ - 2.8671496904862557
+ - -2.2408887483808906
+ - 0.6163899380137605
+ - 1.5913864720226956
+ - 2.378923565554757
+ - 1.1134852291592456
+ - -2.694149031057534
+ - 2.8353187213378535
+ - -2.1024256411878226
+ - 0.5044914386649648
+ - 1.49897401202717
+ - 2.7544623162287665
+ - 1.2353003869156467
+ - -2.7692745308182047
+ - 2.8067275360605564
+ - -2.014295517346
+ - 0.39771584226343476
+ - 1.1981198311487191
+ - -2.4861914560806286
+ - 5.111051311827246
+ - 5.027256860213989
+ - 1.2552467949511619
+ - 1.0883234738794294
+ - -2.474156630894296
+ - -2.619870986259581
+ - 0.45553884537128625
+ - 1.1469955541224404
+ - -2.4543875225074068
+ - 2.889197839218439
+ - -2.4167511783292537
+ - 1.0826949004645487
+ - 0.26612671570684615
+ - -0.06758552558283953
+ - -3.4622925100614688
+ - -1.7099587665614235
+ - 2.884172267856206
+ - -2.3414187739585257
+ - 0.8920319780455434
+ - 0.407711065741642
+ - 0.16906997475777052
+ - -3.2482388076831423
+ - -1.749310649434739
+ - 2.8615571668004094
+ - -2.2133223182047006
+ - 0.7719792537903568
+ - 0.9322747260326827
+ - -2.3202661373118634
+ - 2.88038177299466
+ - -1.7043690604195123
+ - -3.1992446439510696
+ - -0.023333594901747936
+ - 0.3002750009671831
+ - 1.050029814707074
+ - -2.439029400603882
+ - 2.8912401354575654
+ - -1.7518929874223028
+ - -3.5747749964924904
+ - -0.31152522931765103
+ - 0.13360902674255842
+ - 1.2362773140770165
+ - -2.508282705510902
+ - 2.88907136363043
+ - -2.3580328902578107
+ - 0.9911967454361407
+ - 0.6204319013863538
+ - -1.8021092216869854
+ - -2.054207199309315
+ - 1.0028844937219632
+ - 0.9539707643415156
+ - -0.048312177640807544
+ - -1.587645834790147
+ - 2.6297501679810895
+ - -2.883976845308575
+ - 2.08962292317555
+ - -0.6954455032039591
+ - -0.5515127568477408
+ - -0.4973251407766889
+ - 3.7709951788169858
+ - 1.9146973724252556
+ - -2.85793914624674
+ - 2.0011585832130114
+ - -0.4942924601760811
+ - -0.6887964645285497
+ - -0.6817998678882852
+ - 3.3257743286846835
+ - 1.8407910498149025
+ - -2.806059362832743
+ - 1.848272848379035
+ - -0.37194677365912415
+ - -1.3884328068813643
+ - 2.5261843539990902
+ - -0.6980128386953527
+ - -0.5617604873370995
+ - -0.44829219664206077
+ - 3.300298966680876
+ - 1.804381797533641
+ - -2.858669999056212
+ - 1.9468702328491811
+ - -0.4968754757961623
+ - -0.6796208230495787
+ - -0.7404445423655985
+ - 3.613195904659872
+ - 1.8546601462300338
+ - -2.8069659821344173
+ - 1.8503311336662154
+ - -0.3745369564361724
+ - -1.3861785637484692
+ - 2.5250495955113585
+ - -2.9258218729527687
+ - 4.7338868221964665
+ - 4.737512351485452
+ - 2.5384034124478965
+ - 2.4500426754279467
+ - 0.6777652869801989
+ - 0.5487450792123051
+ - -1.333418735592701
+ - 2.4971739978134107
+ - -2.9294048999262245
+ - 2.2789038707086
+ - -0.9763878522784617
+ - -0.7223408191815114
+ - 1.3300625419051515
+ - 2.085809775190785
+ - -3.4250569094188417
+ - -1.8778513053551809
+ - 2.201544553766611
+ - -0.8545656789516124
+ - -0.9178620003217866
+ - 1.4223194843329738
+ - 2.1042122330081163
+ - -3.0671014602212194
+ - -1.8418460606887739
+ - 2.063108186329333
+ - -0.6578467460669462
+ - -1.036342382512623
+ - 2.3735582632893046
+ - -2.9320271958621413
+ - 2.4633365233736493
+ - -0.8861013230012132
+ - -2.0255609501271237
+ - -1.9891020205052672
+ - -0.8631065743424595
+ - 2.4433056834980107
+ - -2.92990445425867
+ - 2.351734236212998
+ - -0.8476835247751002
+ - -2.110025167103183
+ - -2.493423916435709
+ - -1.0692126568930644
+ - 2.545097473069935
+ - -2.922692566884221
+ - 2.276244017694089
+ - -0.8806879198748018
+ - -0.8172113027189308
+ - 2.1745809888334833
+ - -3.711799090738248
+ - -4.4673632969945425
+ - 1.0968414922453146e-16
+ - 1.0114764530298422e-15
+ - 5.415965060690948e-17
+ - 2.0079809369724744e-17
+ - -1.3906974048547778e-16
+ - 1.2027206106521022e-16
+ - -1.6684232955194566e-16
+ - -4.0374685698713276e-16
+ - -5.4180330122223305e-18
+ - -3.4493431543461254e-17
+ - -2.6407741055755405e-17
+ - 5.288992836664059e-16
+ - -3.1164029577935313e-16
+ - 6.67224561600586e-17
+ - 1.1042861177582918e-16
+ - -8.255262513279215e-17
+ - -1.66800970521318e-16
+ - -1.1704605667625342e-16
+ - -4.599124205794833e-17
+ - 3.388131789017201e-16
+ - 8.602678370551488e-18
+ - -9.057627707455652e-17
+ - -5.79543416669965e-17
+ - -4.2827276214933e-17
+ - 1.4128244862405713e-16
+ - 1.4194419311409955e-16
+ - -9.098986738083304e-19
+ - 9.15637239307917e-17
+ - 1.316044354571867e-16
+ - 5.310499532590437e-17
+ - -3.325266062463171e-16
+ - 1.385320730873183e-16
+ - 4.841488125272871e-16
+ - -5.2980918234021416e-17
+ - -2.3392667722999623e-16
+ - 2.0956620819030954e-16
+ - -1.734804539676837e-16
+ - -1.699856158796472e-17
+ - 1.224227306578481e-16
+ - 2.3740083580271894e-16
+ - -6.19765073955356e-17
+ - 8.047433384375267e-17
+ - 2.3942742830347386e-16
+ - -2.2127081385793487e-17
+ - -6.460280584039146e-17
+ - 1.2200914035157158e-16
+ - -9.0638315620498e-17
+ - 4.757942883405015e-16
+ - 1.9612452323632284e-16
+ - 1.2618640244496437e-16
+ - -1.728393889929551e-16
+ - -5.567442510364722e-17
+ - 1.4347447724732265e-16
+ - 2.6089276519922493e-16
+ - -1.737079286361358e-17
+ - -3.91256429737582e-17
+ - 8.455853811823324e-17
+ - -8.189088064274974e-18
+ - 9.826905677129968e-17
+ - -1.0918784085699964e-17
+ - 2.1349531609993642e-16
+ - 1.4951289571895975e-16
+ - 3.705769144237564e-17
+ - -7.16338410470922e-17
+ - -2.03817302933066e-16
+ - -3.0539508215457777e-16
+ - 1.2291903902537991e-16
+ - -5.641371777611649e-17
+ - 3.997091816221083e-16
+ - 8.428970441915351e-17
+ - -2.013357610954069e-16
+ - 4.8141911650586205e-17
+ - -5.227781471335134e-17
+ - -1.1463689314219272e-16
+ - -2.9745414827406875e-16
+ - -2.2582030722697652e-17
+ - 2.39055197027825e-16
+ - 2.847569258713798e-16
+ - 6.104592920641344e-17
+ - 6.708434767805054e-17
+ - -6.485096002415737e-17
+ - -1.5261482301603358e-16
+ - 6.162495563520056e-17
+ - -2.1440521477374475e-16
+ - 3.6271869860450264e-17
+ - -1.3421005438672874e-16
+ - -2.811586902067741e-16
+ - 7.692779696743157e-18
+ - 1.3400325923359048e-16
+ - -6.700162961679524e-17
+ - 5.727398561317164e-16
+ - 3.026653861331528e-16
+ - 3.027481041944081e-17
+ - -2.256962301350936e-16
+ - -4.2186211240204405e-17
+ - 8.937686518635463e-17
+ - -9.648027869665375e-17
+ - 2.875279809234324e-16
+ - -5.566925522481876e-16
+ - -3.3451183971644434e-16
+ - 3.28390703183552e-17
+ - -7.236589588920162e-16
+ - 1.772648052701138e-16
+ - -5.634650935134655e-17
+ - 2.378557851396231e-16
+ - 1.7197084934977443e-16
+ - -9.760731228125725e-18
+ - 5.6248281653605874e-18
+ - 2.7479456936894425e-16
+ - 2.319466136386974e-17
+ - 1.1332374391976478e-17
+ - -1.6543612251060552e-18
+ - 9.355671221916165e-17
+ - -8.040195554015428e-17
+ - 1.3491315790739881e-16
+ - 1.0058516248644815e-16
+ - 1.9935052762527964e-17
+ - -1.2404090273115496e-16
+ - 1.4670048163627946e-16
+ - -1.862810739469418e-16
+ - -5.798536093996724e-17
+ - 1.0354233317632523e-16
+ - 6.435465165662555e-17
+ - -1.0910512279574434e-16
+ - 2.367390913126765e-16
+ - 3.871205266748169e-16
+ - 1.5598558401218717e-16
+ - 1.0587911840678753e-17
+ - -1.4959561378021506e-16
+ - -9.822769774067202e-17
+ - -3.3221641351660974e-17
+ - 1.6216875909102105e-16
+ - -2.893477782710491e-16
+ - 3.9683989887231497e-17
+ - 1.3041019344781327e-16
+ - 1.79498192924007e-17
+ - -1.905410541015899e-16
+ - -5.029258124322408e-16
+ - -2.1821024559148868e-16
+ - 8.821881232878039e-17
+ - -3.4923565461988824e-16
+ - 1.6442282626022805e-16
+ - 1.167979024924875e-16
+ - 1.5220123270975707e-16
+ - -4.905181032439454e-16
+ - -1.5034007633151278e-16
+ - -1.0836066024444661e-17
+ - 5.09543257332665e-17
+ - -3.2756352257099896e-17
+ - 1.2953648392580413e-16
+ - 2.4625166835703634e-16
+ - 2.8173771663556123e-16
+ - 5.1450634100798315e-17
+ - 1.6303729873420173e-16
+ - 2.5779083790215107e-16
+ - -1.0835549036561816e-16
+ - 5.012714512071347e-17
+ - 2.3706996355769773e-16
+ - -1.5170492434222525e-16
+ - 3.498973991099307e-17
+ - -7.831332449345788e-17
+ - 1.9256764660234482e-16
+ - 6.915229920943311e-17
+ - -5.128519797828771e-18
+ - -3.8563160157222145e-16
+ - -1.4976104990272566e-16
+ - -1.621274000603934e-16
+ - 1.7817470394392214e-16
+ - -2.1192367293608567e-16
+ - 3.645074766791485e-16
+ - -7.990564717262246e-17
+ - 3.308722450212111e-17
+ - -5.732361644992482e-17
+ - 2.3326493273995377e-17
+ - -7.18819952308581e-17
+ - -8.888572669765127e-17
+ - -2.1175823681357505e-17
+ - -1.346650037236329e-16
+ - -1.4558378780933287e-17
+ - 2.713979589786484e-16
+- - -0.27352720184262397
+ - -0.31983846028656426
+ - -0.23774276102145733
+ - 1.2750843972360095
+ - -1.9529345465699661
+ - 1.926172851332523
+ - -1.312012609302074
+ - 0.21754380445889393
+ - 0.5417294884698549
+ - 0.6582249031063626
+ - -2.6584864316983956
+ - -1.3746545384254552
+ - 1.899293300996378
+ - -1.2418812869914961
+ - 0.07600715877878247
+ - 0.6241656917158975
+ - 0.7437689139263116
+ - -2.3263400444625955
+ - -1.3136998604875563
+ - 1.8456415577061225
+ - -1.125842339591591
+ - -0.011577283915130934
+ - 1.146640377185503
+ - -1.8982733862441667
+ - 1.9815779832769043
+ - -0.9890795602682366
+ - -1.9725864606132255
+ - -0.6465970840407451
+ - -0.15210346359570928
+ - 1.2176783116377328
+ - -1.9467654081116827
+ - 1.950303482798436
+ - -0.9369907941554317
+ - -2.042526614243052
+ - -0.8693304204273278
+ - -0.2540499579413018
+ - 1.3273945936496356
+ - -1.9730837529477947
+ - 1.925270102953921
+ - -1.2570927065899777
+ - 0.14930540678646329
+ - 0.953891063785315
+ - -2.7560022348760347
+ - -2.663743587503153
+ - 0.11657795002667612
+ - 0.2438616858463213
+ - 3.056319869681044
+ - 3.1390754916518477
+ - -1.2892595246061864
+ - 0.18828808132469613
+ - 0.9177161641459306
+ - -1.8137859620039527
+ - 2.0099702014575356
+ - -1.609840272628146
+ - 0.4849721086220723
+ - 1.2825624033680298
+ - 1.7405831318644238
+ - 0.7515881714655066
+ - -1.8521222816195213
+ - 2.0006477422514966
+ - -1.5168862967902144
+ - 0.3860692975625696
+ - 1.0384803943636522
+ - 1.7177675381297262
+ - 0.8148321979990968
+ - -1.9091838522449076
+ - 1.9757331088009695
+ - -1.4574912800834
+ - 0.34777662544817933
+ - 0.7717720289254639
+ - -1.697304674396896
+ - 1.320808430360533
+ - 2.269146887561855
+ - -1.128620848758252
+ - -0.8238743932903487
+ - 0.2625825572894815
+ - 0.9019656507497642
+ - -1.7726114946147615
+ - 1.3942553724629185
+ - 2.6244309454481876
+ - -1.1109094502566668
+ - -0.7640073312314177
+ - 0.1200149578590386
+ - 0.9795836370674852
+ - -1.815178889943829
+ - 2.0023081080665976
+ - -1.56642099825054
+ - 0.5680736462561975
+ - -0.21296481006469326
+ - -0.37983351481123334
+ - -2.352054365064611
+ - -1.990983704961298
+ - 0.99949879745198
+ - 0.09725161483703613
+ - -1.2154372510222302
+ - 1.909148332532238
+ - -1.986624765288428
+ - 1.3662178584472424
+ - -0.3220203179425699
+ - -0.9910488549661017
+ - -2.1145134755261323
+ - -0.9711463894675604
+ - 1.936317844502595
+ - -1.962498917334239
+ - 1.2588666954469314
+ - -0.18580330669862208
+ - -0.7038328523325152
+ - -1.940300494144246
+ - -0.9662543706815856
+ - 1.971153082056677
+ - -1.9174508394823488
+ - 1.1891631778001894
+ - -0.06376048429825827
+ - -1.0818355354782563
+ - 1.8240956337557783
+ - -0.2779829865720082
+ - -0.8593643331812548
+ - -1.8459362004704993
+ - -0.9007182195694996
+ - 1.9374846169045572
+ - -1.9480369680985512
+ - 1.2604960873384858
+ - -0.19643656042999477
+ - -0.7644773104329946
+ - -2.1079244687712637
+ - -0.9784604043878657
+ - 1.9724134579475971
+ - -1.9191355776111507
+ - 1.1907691746905182
+ - -0.06474508394175423
+ - -1.0818253313962318
+ - 1.8249823430917287
+ - -3.6323039498613277
+ - -3.584223454414601
+ - -1.08023923309731
+ - -0.9693090988020037
+ - 1.3391993604953762
+ - 1.440919026611935
+ - -0.10678020812775205
+ - -1.0463196536759314
+ - 1.8051413445669258
+ - -2.026124203621252
+ - 1.5088361700126534
+ - -0.5565773056839058
+ - -0.34126682465689157
+ - -0.2539064906981134
+ - 2.4894820253339387
+ - 1.2556824722522564
+ - -2.011005298073352
+ - 1.4493455092556955
+ - -0.4171929949221525
+ - -0.43634926258266177
+ - -0.39375398140925016
+ - 2.3150178872403373
+ - 1.2734441424809055
+ - -1.9797574439538037
+ - 1.3460793562011504
+ - -0.33223894777603585
+ - -0.9043650864140163
+ - 1.727666840601087
+ - -2.046913367682496
+ - 1.1130776332302987
+ - 2.140249904664338
+ - 0.29302554867004943
+ - -0.05288680573093876
+ - -0.9811389458246517
+ - 1.7975777759867682
+ - -2.0362077956301268
+ - 1.135247004176069
+ - 2.369941827881464
+ - 0.5310389548341026
+ - 0.07274050407688598
+ - -1.1047904892181
+ - 1.8354077983027952
+ - -2.0256682395209995
+ - 1.4613744185653834
+ - -0.49022532801003127
+ - -0.6955230334165369
+ - 1.5668089961723843
+ - 1.8191895955575674
+ - 5.658742570475262e-16
+ - 5.006097067170923e-16
+ - 1.2978463810957004e-16
+ - 1.5666800801754342e-16
+ - -1.7370792863613579e-16
+ - -1.239064858816151e-16
+ - -6.840783665813539e-17
+ - -5.968108119570095e-17
+ - -4.0382957504838806e-16
+ - 6.571949966733805e-17
+ - 8.747176483806844e-17
+ - 8.189088064274974e-18
+ - 1.7720276672417233e-16
+ - -4.4667753077863494e-18
+ - -7.415674191537893e-17
+ - -2.3822801641527194e-17
+ - -5.016850415134112e-17
+ - -4.9082829597365273e-17
+ - 7.419810094600658e-17
+ - -5.924681137411061e-17
+ - 3.58169205235461e-17
+ - 4.224824978614588e-17
+ - 2.837229501056885e-17
+ - 4.078000419886426e-17
+ - 1.1952759851391248e-17
+ - -1.888453338458562e-16
+ - -5.244325083586195e-17
+ - -4.2765237668991525e-17
+ - 9.926167350636331e-17
+ - 1.804701301437568e-16
+ - 2.2437274115500876e-16
+ - -2.5942451961194327e-17
+ - -5.872982349126496e-18
+ - 1.9699306287950352e-16
+ - 3.527925312538663e-17
+ - -3.09282831033577e-16
+ - 8.818779305580965e-17
+ - 2.605618929542037e-17
+ - -1.8264147925170849e-16
+ - 6.336203492156192e-17
+ - 1.11876177847797e-16
+ - 1.3215244261300308e-16
+ - -3.9497874249407065e-17
+ - 1.2279496193349696e-16
+ - 8.085690487705844e-17
+ - -3.296314741023815e-17
+ - 1.0261175498720307e-16
+ - -7.626605247738914e-17
+ - -8.586134758300426e-17
+ - -3.0026656235674905e-17
+ - 1.4814804770824726e-16
+ - 8.408290926601525e-17
+ - -8.519960309296185e-18
+ - -1.1597072187993448e-16
+ - -3.985356191280487e-16
+ - -4.855550195686272e-17
+ - -1.1208297300093523e-17
+ - 7.974021105011186e-17
+ - 1.0753347963189358e-17
+ - 1.225881667803587e-16
+ - -2.7090165061111653e-17
+ - -5.089228718732502e-17
+ - 2.3760763095585717e-17
+ - 6.642260318800812e-17
+ - 2.150669592637872e-18
+ - 1.4235778342037606e-16
+ - -3.1422523519358134e-16
+ - -4.623939624171424e-17
+ - -3.0142461521432324e-16
+ - -5.839895124624375e-17
+ - 6.460280584039146e-17
+ - -6.071505696139223e-17
+ - -2.928219368437718e-17
+ - -2.7048806030484002e-17
+ - 9.438130789230045e-17
+ - -1.6543612251060553e-17
+ - -1.5749518863009644e-16
+ - -2.1663860242763792e-16
+ - 1.6055575689654265e-16
+ - -1.8983795058091983e-16
+ - 7.055850625077326e-17
+ - -1.3201802576346322e-16
+ - 6.609173094298691e-17
+ - 2.8504643908577334e-16
+ - -1.0242563934937864e-16
+ - 2.3802122126213368e-17
+ - -4.375785440405516e-17
+ - -1.0637542677431935e-16
+ - -6.385834328909373e-16
+ - 3.187954080779368e-16
+ - -1.5298705429168244e-16
+ - -7.345363839470886e-17
+ - 7.113753267956038e-18
+ - 4.028369583133244e-17
+ - -5.4180330122223307e-17
+ - -1.2254680774973105e-16
+ - 1.0753347963189359e-16
+ - -8.266636246701819e-17
+ - 1.7722086130007193e-16
+ - 9.503529756410018e-17
+ - 5.1554031677367444e-17
+ - 4.580926232318667e-16
+ - 8.593889576543111e-17
+ - -7.684507890617626e-17
+ - -2.3103154508606063e-16
+ - -1.0298398626285193e-16
+ - -2.845501307182415e-17
+ - 9.971662284326747e-17
+ - 1.4194419311409955e-16
+ - 5.651711535268562e-17
+ - 7.210946989931019e-17
+ - -1.797463471077729e-16
+ - -2.0894582273089477e-16
+ - 9.363684534100272e-17
+ - -1.2434592558203389e-16
+ - -6.898686308692251e-17
+ - -1.3060147896446616e-16
+ - 3.9497874249407065e-17
+ - 1.2622776147559202e-16
+ - 5.1202479917032407e-17
+ - 6.141299060323385e-17
+ - 2.781911797592401e-17
+ - -2.2118809579667958e-16
+ - 2.671793378546279e-17
+ - -1.9535938116971129e-16
+ - -5.469214812624049e-17
+ - -9.296282238874271e-17
+ - 2.014184791566622e-17
+ - -4.8431424864979764e-17
+ - -3.548604827852489e-17
+ - -1.1111103578118544e-16
+ - -1.6754026319378727e-16
+ - -1.2755125045567687e-16
+ - 1.79588665803505e-17
+ - -1.8148342639413425e-16
+ - -1.590668317939472e-16
+ - 1.3499587596865412e-16
+ - 1.588186776101813e-16
+ - 1.9620724129757814e-16
+ - -5.0871607672011196e-17
+ - 1.4235778342037606e-16
+ - 4.002520188990962e-17
+ - -2.0224565976921524e-17
+ - -1.5021599923962983e-16
+ - 4.622285262946319e-16
+ - -3.465886766597186e-17
+ - 6.791152829060357e-17
+ - 1.8123527221036834e-16
+ - 1.4889251025954496e-18
+ - -7.17992771696028e-17
+ - -1.7335637687580075e-16
+ - 3.370244008270742e-17
+ - 1.323488980084844e-18
+ - -4.830734777309681e-17
+ - -2.3094882702480533e-16
+ - 8.784658105313153e-17
+ - -5.3229072417787325e-17
+ - -2.1804480946897807e-16
+ - -1.889280519071115e-16
+ - -4.226892930145971e-17
+ - 1.5964585822273434e-17
+ - 1.5468277454741618e-17
+ - -6.170767369645586e-17
+ - 1.3296928346789918e-17
+ - 5.880426974639474e-16
+ - 4.4626394047235837e-17
+ - 5.740633451118012e-17
+ - -8.304893350032397e-17
+ - 1.62292836182904e-16
+ - -6.42305745647426e-17
+ - 5.2939559203393765e-17
+ - 1.533592855673313e-16
+ - 9.719372197498074e-17
+ - 8.346252380660048e-17
+ - -1.9769616640017358e-17
+ - 5.472833727803969e-17
+ - -2.2582030722697652e-17
+ - 7.81685678862611e-17
+ - -4.870439446712227e-16
+ - 1.348304398461435e-16
+- - 5.165509477722157
+ - 4.379877206056994
+ - -2.199235756602173
+ - -0.35234207827810643
+ - 2.786327978922251
+ - -4.368144204831129
+ - 4.419231265891732
+ - -3.038934220499664
+ - 0.6590330006113813
+ - 2.112162583338881
+ - 4.844427713460399
+ - 2.237724653049692
+ - -4.423839378844222
+ - 4.362120500610512
+ - -2.7909548565262097
+ - 0.35434493109874776
+ - 1.477058939764698
+ - 4.43590959597389
+ - 2.221958706395423
+ - -4.497026473154148
+ - 4.252478479338191
+ - -2.632751416059833
+ - 0.010441264669413829
+ - 2.489606415547938
+ - -4.186779809425716
+ - 2.9628188845213845
+ - 5.2432961258492305
+ - -1.6958672701171316
+ - -1.4172092390522504
+ - -0.1855435323543389
+ - 2.7533682446717704
+ - -4.307412791610591
+ - 2.9528386197505085
+ - 5.702876089792316
+ - -1.4639161494173762
+ - -1.218986409179127
+ - -0.5061904738575649
+ - 2.91052257989361
+ - -4.370227963295144
+ - 4.374454260100643
+ - -2.92149097898138
+ - 0.5201391379494341
+ - 2.0166514455730296
+ - 1.7885966650203275
+ - -2.790557592658364
+ - -3.010791045873732
+ - -8.108681785889669
+ - -8.183406338039275
+ - 4.401381902625296
+ - -2.9889502370734786
+ - 0.6114682226106344
+ - 2.0992804384534667
+ - -3.98116465546731
+ - 4.575990346024417
+ - -2.4976769212896297
+ - -5.187253873113492
+ - -0.8428966484805863
+ - 0.031168089585762566
+ - 2.271734885186951
+ - -4.076644665091748
+ - 4.545960806953744
+ - -2.348379410915557
+ - -4.6114827162861936
+ - -1.1419659503337516
+ - -0.1584038319892126
+ - 2.5452197295944683
+ - -4.213406065621727
+ - 4.516254479465311
+ - -3.2545185949310844
+ - 0.9691221636786549
+ - 1.6331631571941199
+ - -2.3364002552286127
+ - -3.5154684331773223
+ - 4.716770424718215
+ - 2.85981838485597
+ - -3.1137769980796173
+ - 0.6527118023633548
+ - 1.9294870808952955
+ - -2.553180202017218
+ - -4.296388641758574
+ - 5.173205305708208
+ - 2.9182831791071475
+ - -2.8701848386750703
+ - 0.4541745694683453
+ - 2.1053455945859745
+ - -4.057226377878451
+ - 4.564168211280461
+ - -3.593491294742283
+ - 4.1949482250531
+ - 5.349426306564529
+ - 7.896539557661297
+ - 6.491235375871731
+ - -4.150651407062867
+ - 2.4155907980238123
+ - 0.09834423929159346
+ - -2.7045046368568295
+ - 4.284971135325956
+ - -4.479602009992764
+ - 2.347473299157714
+ - 5.018392945342705
+ - 1.8238188406846754
+ - 0.5016270817584999
+ - -2.8604685427184124
+ - 4.352094268542702
+ - -4.400423213705334
+ - 2.03577166107988
+ - 4.168148182474993
+ - 1.9208931497114972
+ - 0.6172378262366398
+ - -3.104509756455696
+ - 4.442164193839144
+ - -4.341133480243695
+ - 2.716284929497622
+ - -0.2646702899370716
+ - -2.276165129132398
+ - 2.595325996829589
+ - 4.383028006865482
+ - 1.5770166139153692
+ - 0.4128324231750616
+ - -2.8640004402171155
+ - 4.392085379570638
+ - -4.402539763950616
+ - 2.06295483358177
+ - 4.527202398210464
+ - 2.086687239861517
+ - 0.6423375875245256
+ - -3.1080990428592106
+ - 4.445467820989988
+ - -4.3431432134165755
+ - 2.716233295279372
+ - -0.26256922082675255
+ - -2.279565282666815
+ - 6.34174038860281
+ - 6.135985772830652
+ - -0.1572260630141911
+ - -0.4449013513865241
+ - -6.79199262309462
+ - -6.981783889165553
+ - 2.7942926572303093
+ - -0.3583418244544329
+ - -2.190296344967647
+ - 4.100696902199637
+ - -4.553947470380965
+ - 3.532624161001687
+ - -1.032013084858654
+ - -2.7832450503016846
+ - -4.012757537273101
+ - -1.747769063809616
+ - 4.1847689461614435
+ - -4.527144889271201
+ - 3.3192534302626315
+ - -0.8078498383301929
+ - -2.2379056119405316
+ - -3.948391563553702
+ - -1.8875334020120986
+ - 4.305460900463902
+ - -4.465569198878568
+ - 3.180824888465796
+ - -0.718817265767829
+ - -1.8648109621805184
+ - 3.8477623848174347
+ - -2.980518555425607
+ - -5.1394890699293585
+ - 2.4433500573248255
+ - 1.8057945516588538
+ - -0.524673571191475
+ - -2.1538068411306632
+ - 4.013016589548456
+ - -3.142951693481449
+ - -5.935430138176833
+ - 2.384820300714916
+ - 1.6644406610158633
+ - -0.2041484330290448
+ - -2.328142720048399
+ - 4.103740106424891
+ - -4.53319625556958
+ - 3.432085075084421
+ - -1.2178588609659922
+ - 0.33534205690706165
+ - 0.6792226386954018
+ - -1.6920806610384732e-15
+ - -2.069275020362654e-15
+ - -5.295610281564483e-16
+ - -3.774425135079465e-16
+ - 2.1994732487785003e-16
+ - 2.330994966174432e-16
+ - 3.725156189844275e-16
+ - 5.209583497858968e-16
+ - 1.2157900643304399e-15
+ - -1.3977284400614785e-16
+ - -2.7057077836609535e-16
+ - -7.903297162637902e-16
+ - -2.883965205666131e-16
+ - -1.3710518653066434e-16
+ - 2.2271837992990267e-17
+ - 4.689286892563114e-16
+ - 2.333269712858953e-16
+ - 2.1153997099178617e-16
+ - 1.5137405209720404e-16
+ - -2.756165801026688e-16
+ - -4.0697286137608955e-17
+ - 1.0389388493666026e-16
+ - 3.010937429693021e-17
+ - -7.643148859989974e-17
+ - -3.573420246229079e-16
+ - 5.962317855282223e-16
+ - 1.283784310682299e-16
+ - 6.981404369947554e-17
+ - -4.708312046651834e-16
+ - -6.236114638037275e-16
+ - -4.681842267050137e-16
+ - -3.8877488789992295e-17
+ - -7.856975048334932e-16
+ - -4.716583852777364e-16
+ - -3.3914405114674135e-17
+ - 1.0885696861197844e-15
+ - -1.1109035626587162e-16
+ - -7.742410533496338e-17
+ - 4.4171444710331673e-16
+ - -6.346129659506827e-16
+ - -1.2606232535308142e-16
+ - -5.955700410381799e-16
+ - -1.562544177112669e-16
+ - -2.157287037538296e-16
+ - -1.1547441351240266e-16
+ - 4.541221562916122e-16
+ - -1.4988512699460861e-16
+ - 6.862290361739917e-16
+ - -5.4676638489755123e-17
+ - 4.020097777007714e-17
+ - -2.335130869237197e-16
+ - -2.1084833813976673e-16
+ - -1.2804755882320868e-16
+ - 3.9167002004385855e-16
+ - 7.014491594449674e-16
+ - 4.417144471033167e-17
+ - 1.2742717336379391e-16
+ - -1.4475660719677984e-16
+ - -8.337980574534518e-17
+ - 7.072394237328387e-17
+ - -1.4562514683996052e-16
+ - 5.463527945912747e-17
+ - -1.7362521057488048e-16
+ - 8.879783875756751e-17
+ - 1.0728532544812768e-16
+ - -9.86102687739778e-17
+ - 8.36982702811781e-16
+ - -5.285684114213846e-17
+ - 5.899452128728193e-16
+ - 1.8921756512150506e-16
+ - 2.393860692728462e-16
+ - 2.486504921334401e-16
+ - 1.8462671272183575e-16
+ - -1.8164886251664485e-16
+ - 3.405295786727676e-16
+ - -1.952146245625145e-17
+ - 1.9116143956100467e-16
+ - 2.943522209769949e-16
+ - -3.4311451808699583e-16
+ - 3.95888641167879e-16
+ - -1.3491315790739881e-16
+ - 2.239177918181046e-16
+ - 8.850832554317396e-18
+ - -5.491652086739551e-16
+ - 2.1084833813976673e-16
+ - 7.543887186483611e-17
+ - 2.784289941853491e-16
+ - 1.709058543111124e-16
+ - 9.689593695446166e-16
+ - 3.4030210400431554e-16
+ - 2.9302873199691005e-16
+ - -5.158298299880681e-16
+ - -1.5054687148465104e-16
+ - 2.74293091122584e-16
+ - 4.379094162855728e-16
+ - 2.243313821243811e-16
+ - -8.768114493062093e-18
+ - 2.4972582692975906e-16
+ - -5.207929136633862e-16
+ - -8.106370003019671e-18
+ - -1.8156614445538955e-16
+ - -8.961674756399502e-16
+ - -2.604791748929484e-16
+ - 7.775497757998459e-17
+ - 2.4236391947803708e-17
+ - -9.899283980728357e-17
+ - 1.042454366969953e-16
+ - -2.9447629806887785e-16
+ - 1.0149506116025648e-16
+ - -1.432676820941844e-16
+ - -2.1994732487785003e-16
+ - 3.1333601603508683e-16
+ - 1.31687153518442e-16
+ - -1.0240495983406481e-16
+ - 1.9546277874628041e-16
+ - -6.485096002415737e-17
+ - 3.184645358329156e-16
+ - 8.007108329513307e-17
+ - -5.108667463127499e-16
+ - -1.184109046869659e-16
+ - 1.985233470127266e-17
+ - 5.492479267352103e-17
+ - 4.4204531934833794e-16
+ - 3.846389848371578e-17
+ - 3.4691954890473976e-16
+ - 4.705003324201621e-16
+ - 1.0041972636393755e-16
+ - 1.822123793089466e-16
+ - 3.4394169869954886e-16
+ - 2.2218071253174323e-16
+ - 3.2921788379610497e-16
+ - 3.0820749623725806e-16
+ - 6.313042435004706e-16
+ - -4.042431653546646e-16
+ - 4.449404514922736e-16
+ - 5.011887331458795e-16
+ - -1.870126118011684e-16
+ - 2.7660919683773245e-16
+ - -3.0804206011474746e-16
+ - 4.7087256369581094e-17
+ - -6.997947982198614e-17
+ - 6.931773533194372e-17
+ - -8.118777712207965e-17
+ - 5.128519797828772e-16
+ - -1.0614381620280451e-15
+ - 7.279189390466644e-18
+ - -2.998943310811002e-16
+ - -6.759719965783341e-16
+ - 1.1117307432712692e-16
+ - 1.134891800422754e-16
+ - 3.088692407273005e-16
+ - -5.757177063369073e-17
+ - -6.799424635185887e-17
+ - 1.8528845721187817e-16
+ - 8.261879958179639e-16
+ - -2.27309232329572e-16
+ - 2.749548356126264e-16
+ - 3.1681017460780955e-16
+ - 4.757115702792462e-16
+ - 2.871143906171559e-16
+ - -1.4235778342037606e-16
+ - -2.1043474783349022e-16
+ - 6.753929701495471e-17
+ - 5.3849457877202095e-17
+ - -6.613308997361455e-16
+ - 7.444625512977249e-18
+ - -4.9382682569415746e-17
+ - -4.987899093694756e-17
+ - -2.504702894810568e-16
+ - -3.6065074707312007e-17
+ - 2.423639194780371e-16
+ - -5.661017317159783e-16
+ - -1.4519087701837018e-16
+ - -1.4161332086907834e-16
+ - -2.6924728938601048e-17
+ - -2.1688675661140383e-16
+ - -3.995282358631123e-17
+ - -1.7254987577856155e-16
+ - 1.4028983188899347e-15
+ - -1.948837523174933e-16
+- - 3.1038501970299244
+ - 2.6597066187430833
+ - -1.2136663784340318
+ - -0.6155486370867831
+ - 2.2430561733497676
+ - -3.1678365226278875
+ - 2.993162090336201
+ - -1.848728527170166
+ - 0.21282519321028917
+ - 1.0245321889461565
+ - 3.673938151612472
+ - 1.7436431956470821
+ - -3.191619930465416
+ - 2.9377351304586576
+ - -1.6587264102590487
+ - 0.008682672658788746
+ - 0.6264203675675856
+ - 3.329827993324781
+ - 1.7150713309513848
+ - -3.217528996853624
+ - 2.8366298252102053
+ - -1.538710703559538
+ - -0.362852525557638
+ - 2.052382134484708
+ - -3.0795088702852933
+ - 2.0446573107113917
+ - 3.6890141381737203
+ - -0.7850891151981785
+ - -0.7794179413966427
+ - -0.49967818163452693
+ - 2.2220460449951474
+ - -3.1398244937212927
+ - 2.022281896486527
+ - 3.9796532482260787
+ - -0.5788626398610188
+ - -0.6312597462163818
+ - -0.7220147201183787
+ - 2.3219869699669533
+ - -3.1687672545666206
+ - 2.9495710891206293
+ - -1.7584656191031272
+ - -0.003927876052105956
+ - 2.0533245438107386
+ - 1.8908193670404971
+ - -1.6668883133426844
+ - -1.835951200480653
+ - -5.706831378771328
+ - -5.776764084309102
+ - 2.975516756667356
+ - -1.810248963231186
+ - 0.060905022472665125
+ - 1.7975756881088425
+ - -2.9684433391960003
+ - 3.179335309525015
+ - -1.6128522367398586
+ - -3.437091079176008
+ - -1.0452243342628298
+ - -0.22054910760156832
+ - 1.9106849997401927
+ - -3.021041103050708
+ - 3.1324747537472746
+ - -1.4942351918717143
+ - -3.023269917288429
+ - -1.212651813776287
+ - -0.3513613070272663
+ - 2.088336427960622
+ - -3.093210109148478
+ - 3.096049571776626
+ - -2.016013664615583
+ - 0.31615048402338386
+ - 1.4883345604016367
+ - -1.7841718990119906
+ - -2.774072116944061
+ - 3.1133949442181206
+ - 1.9320192024902032
+ - -1.9065420352376363
+ - 0.09019673433249968
+ - 1.6855342168048282
+ - -1.9341153245033695
+ - -3.3430359373366922
+ - 3.3743528447669253
+ - 1.9471480068792026
+ - -1.7191874432156515
+ - -0.05062451834183351
+ - 1.8015608612662246
+ - -3.0104271652360404
+ - 3.15863083992048
+ - -2.2839737081234093
+ - 2.517747554163983
+ - 3.24503859627424
+ - 5.359200303731883
+ - 4.4237240354528895
+ - -2.7464360227653746
+ - 1.3752466426894498
+ - 0.4388335833335133
+ - -2.190761857030915
+ - 3.129044585296336
+ - -3.0550551020602805
+ - 1.4733579794272287
+ - 3.2458580663498746
+ - 1.7369196570622811
+ - 0.6014764796902826
+ - -2.290277569579085
+ - 3.160791742979102
+ - -2.974502287190355
+ - 1.2480350122291193
+ - 2.658027770484079
+ - 1.7382755023820804
+ - 0.6674457118217105
+ - -2.44408462285295
+ - 3.198881091328875
+ - -2.9179384988033954
+ - 1.6020237477129735
+ - 0.18436434252743508
+ - -1.913567219666208
+ - 1.934323802894835
+ - 3.1188736988233905
+ - 1.507460372180505
+ - 0.5272452083112762
+ - -2.292716121058749
+ - 3.179560614380072
+ - -2.9762597332658687
+ - 1.267289790500234
+ - 2.8870020995452497
+ - 1.8883621145467646
+ - 0.6859854830624398
+ - -2.446586600355593
+ - 3.2013510007503303
+ - -2.9196255989317463
+ - 1.6023061274923853
+ - 0.1855909738941923
+ - -1.9158646556276056
+ - 4.8579283428265025
+ - 4.722488330875403
+ - 0.25301043822867725
+ - 0.05018663381535998
+ - -4.392332685340627
+ - -4.535766328306589
+ - 1.6612959540020158
+ - 0.11837554837366035
+ - -1.8573984857835852
+ - 3.033977171711364
+ - -3.1437929507884426
+ - 2.235364980935644
+ - -0.49435024423349583
+ - -1.5449266424543426
+ - -3.1345133946071475
+ - -1.4196891383016836
+ - 3.0784847557070716
+ - -3.1090336910752563
+ - 2.0666729912441864
+ - -0.3332205771167559
+ - -1.1819905905418495
+ - -3.0414997488481506
+ - -1.506962723663802
+ - 3.1388430963573697
+ - -3.0404724023171066
+ - 1.9586285487339015
+ - -0.13725119505380376
+ - -1.6426917309803488
+ - 2.892853137163508
+ - -2.09438859726841
+ - -3.681653150990345
+ - 1.3339768078577876
+ - 1.0714917989748824
+ - 0.0007361800850041027
+ - -1.833483720252437
+ - 2.986176771728818
+ - -2.1963012652783207
+ - -4.219493650818586
+ - 1.2241826224003742
+ - 0.9490247290555611
+ - 0.22701536152318733
+ - -1.9475303720075936
+ - 3.0356090651624794
+ - -3.116589420596939
+ - 2.155559815494417
+ - -0.49506252514043164
+ - -0.30186434051991035
+ - -0.18119074485010067
+ - -1.1229803996019904e-15
+ - -1.302974900893529e-15
+ - -3.4634052247595264e-16
+ - -2.447627432544409e-16
+ - 1.0356301269163905e-16
+ - 1.828896334354744e-16
+ - 2.124303210612744e-16
+ - 3.089519587885558e-16
+ - 8.193223967337738e-16
+ - -9.752459422000195e-17
+ - -2.0232837783047054e-16
+ - -4.906008213052007e-16
+ - -2.281984514880665e-16
+ - -5.5338382979797545e-17
+ - 3.6933614350492686e-17
+ - 3.695015796274374e-16
+ - 1.3559558191275506e-16
+ - 1.0755415914720741e-16
+ - 8.817745329815274e-17
+ - -1.800772193527941e-16
+ - -3.7719435932418056e-17
+ - 4.9382682569415746e-17
+ - 1.6543612251060553e-17
+ - -6.476824196290207e-17
+ - -2.097730033434478e-16
+ - 4.516406144539531e-16
+ - 8.751570880811032e-17
+ - 6.501639614666798e-17
+ - -3.2822526706104133e-16
+ - -4.2715606832238344e-16
+ - -3.937379715752411e-16
+ - -7.279189390466644e-18
+ - -4.846192715006766e-16
+ - -3.335340863830125e-16
+ - -7.17992771696028e-17
+ - 8.212249121426458e-16
+ - -9.60356691174065e-17
+ - -6.245213624775359e-17
+ - 2.959652231714733e-16
+ - -4.095784803056316e-16
+ - -9.165161187087545e-17
+ - -4.0043813453692065e-16
+ - -7.554226944140524e-17
+ - -1.4889251025954498e-16
+ - -7.4859845436049e-17
+ - 3.8315005973456237e-16
+ - -1.1175210075591404e-16
+ - 5.484207461226573e-16
+ - 9.098986738083304e-19
+ - 3.970466940254532e-17
+ - -1.8553661139564408e-16
+ - -1.4583194199309878e-16
+ - -6.956588951570963e-17
+ - 3.236757736919997e-16
+ - 4.3793009580088663e-16
+ - 1.3400325923359047e-17
+ - 1.1206229348562142e-16
+ - -1.3375510504982458e-16
+ - -3.8008949146811615e-17
+ - 7.552158992609141e-17
+ - -7.382586967035772e-17
+ - 3.867069363685404e-17
+ - -1.0420407766636765e-16
+ - 6.359984934767092e-17
+ - 5.901933670565852e-17
+ - -1.0112282988460762e-16
+ - 5.856645532028574e-16
+ - -5.24018918052343e-17
+ - 4.372476717955304e-16
+ - 1.2908153458889997e-16
+ - 1.4401214464548212e-16
+ - 1.8197973476166606e-16
+ - 1.13654616164786e-16
+ - -1.7883644843396456e-16
+ - 2.3943776806113077e-16
+ - -3.350081480839762e-17
+ - 1.6272710600449434e-16
+ - 2.2420730503249815e-16
+ - -2.158114218150849e-16
+ - 2.50801161726078e-16
+ - -1.0017157218017164e-16
+ - 1.1605343994118978e-16
+ - 3.205324873642982e-17
+ - -3.7880736151865897e-16
+ - 1.3863547066388744e-16
+ - 4.020097777007714e-17
+ - 1.3400325923359048e-16
+ - 9.194112508526901e-17
+ - 5.260041515224703e-16
+ - 3.186299719554262e-16
+ - 2.457346804741907e-16
+ - -2.564259898914386e-16
+ - -8.1146418091452e-17
+ - 1.7159861807412557e-16
+ - 3.126742715450444e-16
+ - 1.6303729873420173e-16
+ - -3.143286327701505e-17
+ - 2.0878038660838416e-16
+ - -4.415490109808061e-16
+ - -5.0292581243224076e-17
+ - -1.256487350468049e-16
+ - -6.977268466884787e-16
+ - -1.343341314786117e-16
+ - 1.0422475718168147e-17
+ - 3.680953725860973e-18
+ - -2.4215712432489882e-17
+ - 7.562498750266054e-17
+ - -1.9542141971565276e-16
+ - 1.6924115332834944e-16
+ - -8.706075947120615e-17
+ - -1.547241335780438e-16
+ - 2.0791184696520348e-16
+ - 7.891303043755883e-17
+ - -6.514047323855093e-17
+ - 1.5402103005737373e-16
+ - -3.441071348220595e-17
+ - 2.0241109589172585e-16
+ - 3.89602068512476e-17
+ - -3.326920423688277e-16
+ - -1.1386141131792426e-16
+ - 2.2995621028974166e-17
+ - 6.121136532892405e-17
+ - 2.6982631581479763e-16
+ - -6.203854594147707e-19
+ - 2.693300074472658e-16
+ - 4.3608961893795614e-16
+ - 9.016268676828e-17
+ - 1.6966637586198998e-16
+ - 2.1506695926378717e-16
+ - 1.3549218433618593e-16
+ - 2.0844951436336295e-16
+ - 2.0894582273089477e-16
+ - 3.393094872692519e-16
+ - -2.9914986852980246e-16
+ - 3.118470909324914e-16
+ - 3.632615358814905e-16
+ - -1.4659966899912456e-16
+ - 1.6312001679545703e-16
+ - -2.5229008682867344e-16
+ - 3.679919750095282e-17
+ - -9.545664268861938e-17
+ - 1.1729421086001932e-16
+ - -5.194694246833013e-17
+ - 3.7620174258911694e-16
+ - -8.066665333617125e-16
+ - -2.431911000905901e-17
+ - -2.0948349012905423e-16
+ - -4.652063764998228e-16
+ - 7.940933880509064e-17
+ - 8.023651941764367e-17
+ - 2.2937718386095457e-16
+ - 3.788487205492866e-17
+ - -4.0035541647566533e-17
+ - 1.7321162026860397e-16
+ - 6.49171344731616e-16
+ - -1.5658528995628811e-16
+ - 2.1225454518110688e-16
+ - 2.541098841762901e-16
+ - 2.826062562787419e-16
+ - 2.1688675661140383e-16
+ - -1.3673295525501547e-16
+ - -1.4839620189201316e-16
+ - 3.7553999809907456e-17
+ - 4.0655927106981304e-17
+ - -4.074795095012783e-16
+ - -1.737079286361358e-18
+ - -5.045801736573468e-17
+ - -7.444625512977249e-18
+ - -1.9459423910309974e-16
+ - 2.6304343479186277e-17
+ - 1.7135046389035966e-16
+ - -4.011412380575907e-16
+ - -1.1291015361348828e-16
+ - -9.653197748493832e-17
+ - -3.5403330217269584e-17
+ - -1.495542547495874e-16
+ - -3.548604827852489e-17
+ - -1.2937104780329353e-16
+ - 9.912932460835484e-16
+ - -1.3698110943878138e-16
+- - -5.242542202305566
+ - -4.209681143908575
+ - 3.141184984528793
+ - -3.0478678287950856
+ - 1.9688016584462398
+ - -0.14667086312565075
+ - -1.6370188497240779
+ - 2.8928798662834505
+ - -2.2135436137392746
+ - -4.206543657417329
+ - 1.5177984034166003
+ - 1.0939552280527305
+ - -0.008495157408732329
+ - -1.7570833629711018
+ - 2.986924986462972
+ - -2.081921130304245
+ - -3.701031096404201
+ - 1.1005950480862843
+ - 0.9489043079602524
+ - 0.21814415436639575
+ - -1.942856845711245
+ - 3.0367925173107544
+ - -3.123384978742882
+ - 2.165547540968578
+ - -0.5048829342113814
+ - -0.7776837582898343
+ - -0.7809875833735092
+ - 3.693803863278239
+ - 2.046812903495642
+ - -3.085226269261151
+ - 1.9920874125797228
+ - -0.2798144393294203
+ - -0.9056695889966657
+ - -1.1252290145368191
+ - 4.022148005787798
+ - 2.0906099670939247
+ - -3.0099674134023187
+ - 1.8790633091065072
+ - -0.14185756892484988
+ - -1.7322820225952005
+ - 2.939766369537126
+ - -3.196632981785192
+ - 5.049998486620991
+ - 5.0666512330074305
+ - 2.915673248419009
+ - 2.8294584883212575
+ - 1.1922712040038732
+ - 1.0570781671568663
+ - -1.677248657814554
+ - 2.9133618550104363
+ - -3.205374330609327
+ - 2.390766850278912
+ - -0.8188333155364955
+ - -1.0204494580773338
+ - 1.590035963723934
+ - 2.564585039280422
+ - -3.6876822213582376
+ - -2.0494229784951585
+ - 2.2957350649788864
+ - -0.681667996606126
+ - -1.2329872182657582
+ - 1.6822835553834734
+ - 2.552432271190248
+ - -3.2806207161503917
+ - -1.9995577838444003
+ - 2.13050210409697
+ - -0.4584860892558394
+ - -1.3594951354449671
+ - 2.7933867865901516
+ - -3.228193701784882
+ - 2.617938164934052
+ - -0.8355718232765665
+ - -2.0121237587009175
+ - -2.43278525863927
+ - -1.1010962952821215
+ - 2.8605494941683594
+ - -3.2092042939341807
+ - 2.478646961483058
+ - -0.7815562845631361
+ - -2.06053186887542
+ - -3.008240358777189
+ - -1.3291076108625905
+ - 2.958940355457849
+ - -3.1892165236265217
+ - 2.387509203345071
+ - -0.7102553495927081
+ - -1.1231935794218926
+ - 2.5953707164029374
+ - -4.282070792199571
+ - -5.170538105732114
+ - -2.833707371155784
+ - -2.1753186014004617
+ - 2.084170215724871
+ - -3.0944885258999086
+ - 3.1024828537856965
+ - -2.0254733226063775
+ - 0.32545520518780546
+ - 1.4823052039744615
+ - -1.8528233069584108
+ - -3.150259057799431
+ - 3.554648498491113
+ - 2.0212448038100166
+ - -1.916095179324164
+ - 0.18491397835219872
+ - 1.6800428253798096
+ - -1.8571542368855856
+ - -2.9361114400008033
+ - 2.9756775156226585
+ - 1.874405395903335
+ - -1.7288544186453467
+ - -0.04171639354041011
+ - 1.7964229095386919
+ - -3.0109300776221106
+ - 3.1644526256820042
+ - -2.2930999246325925
+ - 0.5269930657441941
+ - 1.5073040425781032
+ - 3.1207029860340123
+ - 1.935316206693904
+ - -1.9151492732624706
+ - 0.09993519093351165
+ - 1.6780713486721843
+ - -1.8601038440048099
+ - -3.1889339354138975
+ - 3.2329430281886182
+ - 1.8780886742220462
+ - -1.7280923041699168
+ - -0.04097784712094151
+ - 1.7943859374404882
+ - -3.0082176133867438
+ - 3.1620179733626794
+ - -2.291769429819253
+ - 2.395442825376016
+ - 2.5046611448315543
+ - 3.0898546038665113
+ - 3.1291248832141383
+ - 4.269162186293279
+ - 4.213965019839111
+ - -2.9855183931817972
+ - 3.1776928286853092
+ - -2.3416766830694504
+ - 0.6444605353455419
+ - 1.1861660207030886
+ - -2.635038486550874
+ - 2.1079647350191495
+ - 3.899659320726589
+ - -2.0271043296878557
+ - -1.3420156807800565
+ - 0.5084776789453143
+ - 1.3162662235786096
+ - -2.759871245020926
+ - 2.103377558267468
+ - 3.643479512972112
+ - -1.634218845806444
+ - -1.2279282498270632
+ - 0.283417852549934
+ - 1.519919558713479
+ - -2.8290778776621144
+ - 3.2144585475591647
+ - -2.510712390540111
+ - 0.9927590613896544
+ - 0.46597625162659934
+ - 0.21174720312876424
+ - -3.6113238690059224
+ - -1.9471847089125498
+ - 3.197294635716451
+ - -2.3619493095563646
+ - 0.7746702287346203
+ - 0.59448653716904
+ - 0.5171480948189723
+ - -4.181227784545852
+ - -2.120213048955141
+ - 3.156025822474523
+ - -2.263373554407279
+ - 0.6397485638932686
+ - 1.2893623518760036
+ - -2.6965644670919655
+ - 3.232281810857343
+ - -4.585141171424074
+ - -5.659015885302615
+ - 5.760485785819285e-16
+ - 1.6583316920463097e-15
+ - 3.0059743460177026e-16
+ - 2.158114218150849e-16
+ - -3.216078221606171e-16
+ - 1.437639904617162e-16
+ - -4.508134338414001e-16
+ - -6.791152829060356e-16
+ - -5.18807680193259e-16
+ - 2.6221625417930974e-17
+ - -9.92616735063633e-18
+ - 8.40415502353876e-16
+ - -2.2069178742914776e-16
+ - 3.084142913903963e-16
+ - 1.7900188455647516e-16
+ - 2.283018490646356e-17
+ - -3.2389290860279485e-16
+ - -3.5022827135495187e-16
+ - -1.9356026333740845e-16
+ - 3.546950466627382e-16
+ - -5.211237859084074e-17
+ - -2.3706996355769773e-16
+ - -5.128519797828771e-17
+ - -5.616556359235058e-17
+ - 4.251708348522562e-16
+ - 6.551270451419979e-17
+ - -6.542998645294449e-17
+ - 1.0654086289682995e-16
+ - 1.978616025226842e-16
+ - 2.966269676615157e-16
+ - -3.834809319795836e-16
+ - 1.6709048373571157e-16
+ - 1.0549861532501315e-15
+ - 9.88480832000868e-17
+ - -3.1962258869048984e-16
+ - 6.782881022934827e-17
+ - -1.797463471077729e-16
+ - -5.668255147519622e-17
+ - -1.5220123270975707e-16
+ - 5.189317572851419e-16
+ - -1.3863547066388744e-16
+ - 4.0027269841441004e-16
+ - 2.9679240378402633e-16
+ - 6.28657265540301e-17
+ - 8.08982639076861e-17
+ - 1.7230172159479564e-16
+ - -3.3624891900280575e-17
+ - 3.336846591038913e-16
+ - 2.7177019025429724e-16
+ - 7.775497757998459e-17
+ - -7.928526171320769e-17
+ - 7.072394237328387e-17
+ - 2.0150119721791752e-16
+ - 2.438838638536033e-16
+ - -4.565623390986436e-16
+ - -7.674168132960713e-17
+ - 1.3565762045869654e-16
+ - -1.6593243087813733e-16
+ - 1.606798339884256e-16
+ - 8.941822421698228e-17
+ - 2.448454613156962e-16
+ - 4.8472783895607416e-17
+ - 1.2804755882320868e-16
+ - -6.59262948204763e-17
+ - -1.6427806965303127e-16
+ - -3.0539508215457777e-16
+ - -1.464936864831412e-16
+ - -7.18819952308581e-17
+ - 1.38924983878281e-16
+ - -2.2706107814580607e-17
+ - -3.5866551360299275e-16
+ - -4.8141911650586205e-17
+ - -1.8942436027464331e-16
+ - -1.785572749772279e-16
+ - -2.5303454937997117e-16
+ - -4.450231695535288e-17
+ - 2.1399162446746823e-16
+ - 1.4210962923661015e-16
+ - 2.4037868600790984e-16
+ - -1.950491884400039e-16
+ - -2.99439381744196e-17
+ - -3.757881522828404e-16
+ - 1.3847003454137683e-16
+ - 8.99972506457694e-17
+ - -4.7893757466820296e-17
+ - -1.798290651690282e-16
+ - -5.320012109634797e-16
+ - -1.5972857628398962e-16
+ - -9.43647642800494e-16
+ - 1.080297879994254e-16
+ - 3.088692407273005e-16
+ - 1.0022947482305036e-15
+ - 1.9091328537723876e-16
+ - -3.331056326751042e-16
+ - -1.4608009617686469e-16
+ - 5.678594905176535e-17
+ - -2.0818068066428322e-16
+ - 2.1374347028370233e-16
+ - -4.638828875197379e-16
+ - -4.0391229310964336e-16
+ - 2.4815418376590827e-17
+ - -4.231959411397858e-16
+ - 3.9985910810813353e-16
+ - -2.109103766857082e-16
+ - 2.248276904919129e-16
+ - 4.900217948764136e-16
+ - -3.341809674714232e-17
+ - 1.6262370842792522e-16
+ - 5.449465875499346e-16
+ - 1.1829716735273987e-16
+ - 1.0041972636393755e-16
+ - -1.4080681977183914e-16
+ - -4.9299964508160443e-17
+ - -3.30872245021211e-19
+ - 8.712279801714763e-17
+ - 2.567568621364598e-16
+ - -1.811318746337992e-16
+ - -1.887626157846009e-16
+ - 3.307068088987004e-16
+ - -2.101865936497243e-16
+ - -2.667657475483514e-17
+ - 1.5139473161251787e-16
+ - -3.7574679325221277e-16
+ - -2.2912902967718867e-16
+ - 1.467418406669071e-16
+ - 4.833216319147341e-16
+ - 1.6105206526407446e-16
+ - 1.2333262933165643e-16
+ - -3.235930556307444e-16
+ - -2.2003004293910534e-16
+ - -2.2524128079818944e-16
+ - -1.4475660719677982e-18
+ - -9.43647642800494e-16
+ - 1.755690850143801e-16
+ - -6.625716706549752e-17
+ - -7.519071768107022e-17
+ - -1.534420036285866e-16
+ - -5.535492659204861e-16
+ - -2.5195921458365223e-16
+ - 4.4543675985980534e-17
+ - -4.2202754852455467e-16
+ - 3.296314741023815e-16
+ - 1.2597960729182611e-16
+ - 2.3760763095585717e-17
+ - -3.055191592464607e-16
+ - -2.0166663334042812e-16
+ - 1.0620999065180874e-16
+ - 2.843846945957309e-16
+ - -1.8363409598677214e-17
+ - 2.6635215724207488e-17
+ - 7.543887186483611e-17
+ - 4.748843896666932e-16
+ - 5.186422440707483e-17
+ - 2.3328561225526763e-16
+ - 1.5815693312013887e-16
+ - 2.4401828070314313e-17
+ - 1.9686898578762056e-17
+ - 2.802487915329658e-16
+ - -4.657854029286099e-16
+ - -2.4484546131569616e-17
+ - -1.5029871730088513e-16
+ - 2.6414978886115248e-16
+ - -5.558653716356346e-17
+ - -8.271806125530276e-20
+ - 2.4716156703084467e-16
+ - -1.119588959090523e-16
+ - -1.1001502146955267e-16
+ - 2.756165801026688e-16
+ - -7.692779696743156e-17
+ - 4.3770262113243454e-16
+ - -1.7271531190107215e-16
+ - 1.8231060700668727e-16
+ - -4.946540063067105e-17
+ - 5.525566491854224e-17
+ - -8.99972506457694e-17
+ - 8.495144890919593e-17
+ - -2.8124140826802937e-18
+ - -3.4245277359695346e-17
+ - -1.2688950596563445e-16
+ - 5.823351512373315e-17
+- - -7.7792040172897865
+ - -6.274095569926871
+ - 4.554858136522806
+ - -4.124711193051277
+ - 2.3609756050148643
+ - 0.317489132280391
+ - -2.761879284778544
+ - 4.314992281677942
+ - -3.104106110709298
+ - -6.000895958564158
+ - 1.5003853549307724
+ - 1.2300991424284389
+ - 0.5129821728785948
+ - -2.9192391856455284
+ - 4.414149718676506
+ - -2.8880437886213133
+ - -5.234534223747927
+ - 0.9785055633982241
+ - 1.033681281823297
+ - 0.8314810858821973
+ - -3.160196100784925
+ - 4.463557817717774
+ - -4.270959917621812
+ - 2.665114579405884
+ - -0.19369985992577696
+ - -1.4144504232918353
+ - -1.6893930857109853
+ - 5.250601559574267
+ - 2.9660913289243074
+ - -4.195554305680536
+ - 2.3967152353343293
+ - 0.12827791272021333
+ - -1.5882256674233401
+ - -2.2144748907834333
+ - 5.671947396809927
+ - 3.0024566648705178
+ - -4.054649228112565
+ - 2.223572714597538
+ - 0.3243160057950238
+ - -2.8868004608918882
+ - 4.365159767927691
+ - -4.431531329623433
+ - 6.6642842929350445
+ - 6.714085397191006
+ - 4.316696740275717
+ - 4.2249557630637
+ - 2.5914085176931625
+ - 2.415460086446476
+ - -2.8147615926409806
+ - 4.337065137743958
+ - -4.454312688145666
+ - 3.0192804926721157
+ - -0.64725782348666
+ - -1.9376099315207977
+ - 2.469794453564231
+ - 4.120961891815978
+ - -4.941167561281286
+ - -2.8052937794014947
+ - 2.8689210149419972
+ - -0.4484283509673763
+ - -2.2245922849312323
+ - 2.5781942632842054
+ - 4.036071005802106
+ - -4.349245710327913
+ - -2.7146475037572926
+ - 2.610612491742592
+ - -0.12711717366497527
+ - -2.394008232597323
+ - 4.204548409453817
+ - -4.527921344673622
+ - 3.385101639220567
+ - -0.8651823169689766
+ - -2.333728481242705
+ - -3.8849965954246533
+ - -1.8443470986483108
+ - 4.279673502592332
+ - -4.464437279853651
+ - 3.1595478958491583
+ - -0.7656356730195221
+ - -2.307298764329793
+ - -4.7257820580245475
+ - -2.162976184405199
+ - 4.385287269878695
+ - -4.413567773664989
+ - 3.0141068146150616
+ - -0.48981037754374496
+ - -2.0766638481749795
+ - 3.974054687102639
+ - -6.351122591837562
+ - -7.702579834408294
+ - -4.810128711810444
+ - -3.7434533517340394
+ - 3.341302114588521
+ - -4.516674962136293
+ - 4.2294933880515435
+ - -2.4481452054694484
+ - -0.0632240544778542
+ - 2.557547253218506
+ - -2.8112164898139946
+ - -4.901564107438788
+ - 4.642990995273985
+ - 2.7035953117247735
+ - -2.2801294229556883
+ - -0.2633062487037024
+ - 2.8184700390087056
+ - -2.780173475984667
+ - -4.5079928841394965
+ - 3.840017186305445
+ - 2.489153228673115
+ - -1.995229829535727
+ - -0.5837953810181462
+ - 2.970532871955503
+ - -4.438102433880952
+ - 4.35725103323215
+ - -2.8647917568398498
+ - 0.4126459367071546
+ - 1.5771002454418637
+ - 4.385530481518059
+ - 2.596659002814531
+ - -2.2784177130633956
+ - -0.3842166254509016
+ - 2.8160258683584902
+ - -2.7874286344719454
+ - -4.896180601889471
+ - 4.172044075001019
+ - 2.4912123615410717
+ - -1.9937611212413098
+ - -0.5831773378353925
+ - 2.9679857976044683
+ - -4.434388371107289
+ - 4.353676379768006
+ - -2.862568830252636
+ - 2.5225797852423217
+ - 2.6962799533823554
+ - 4.24253379421721
+ - 4.33033076079097
+ - 6.641434684379602
+ - 6.588492383628185
+ - -4.412613240587733
+ - 4.3864602504115675
+ - -2.94137926112525
+ - 0.3947128982919413
+ - 2.161535683022257
+ - -4.021054767761111
+ - 3.0040089234370524
+ - 5.660955775123849
+ - -2.295236608925996
+ - -1.6273023896245178
+ - 0.19885258473563192
+ - 2.336207367549948
+ - -4.166402234044959
+ - 2.9711559447941567
+ - 5.246084823712165
+ - -1.7657897612927846
+ - -1.4547693239148753
+ - -0.12312040803628185
+ - 2.6073019720687003
+ - -4.244594689802738
+ - 4.479467807767529
+ - -3.2110516886873985
+ - 0.9008368736097064
+ - 0.9904394792700767
+ - 0.8989217155633201
+ - -5.226490224633034
+ - -2.8759754564906825
+ - 4.432983387992476
+ - -2.9734166889578404
+ - 0.5831089915012798
+ - 1.185377562315844
+ - 1.4107951820258824
+ - -5.9986218885922815
+ - -3.0957468973691458
+ - 4.33855636273345
+ - -2.8179865136334823
+ - 0.38791050169424385
+ - 2.30014767735617
+ - -4.093246769003591
+ - 4.563013196914353
+ - -6.307735006582594
+ - -7.816521934293351
+ - 9.65485210971894e-16
+ - 2.513305573181119e-15
+ - 4.670261738474394e-16
+ - 3.036580028682164e-16
+ - -4.4270706383838036e-16
+ - 1.6130021944784037e-16
+ - -6.670384459627614e-16
+ - -9.429858983104515e-16
+ - -7.950860047859701e-16
+ - 4.9961708998202865e-17
+ - 1.7536228986124187e-17
+ - 1.2288595180087777e-15
+ - -2.5013941723603557e-16
+ - 4.50937510933283e-16
+ - 2.296253380447205e-16
+ - -5.889525961377557e-17
+ - -4.594988302732069e-16
+ - -5.010232970233689e-16
+ - -2.8852059765849605e-16
+ - 4.910144116114772e-16
+ - -6.468552390164676e-17
+ - -3.41791029106911e-16
+ - -7.17165591083475e-17
+ - -8.40415502353876e-17
+ - 6.106247281866449e-16
+ - -3.970466940254533e-18
+ - -1.0463834748795799e-16
+ - 1.3317607862103746e-16
+ - 3.1333601603508683e-16
+ - 4.658681209898652e-16
+ - -4.635520152747167e-16
+ - 2.387243247828038e-16
+ - 1.5438498952689707e-15
+ - 1.6460894189805248e-16
+ - -4.276110176592876e-16
+ - -3.705769144237564e-17
+ - -2.4070955825293105e-16
+ - -7.952824601814514e-17
+ - -2.488159282559507e-16
+ - 7.817683969238664e-16
+ - -1.7966362904651759e-16
+ - 6.126099616567722e-16
+ - 4.168990287267259e-16
+ - 9.098986738083303e-17
+ - 1.1142122851089283e-16
+ - 1.6287186261169112e-16
+ - -3.5982356646056704e-17
+ - 3.1962258869048984e-16
+ - 4.0221657285390966e-16
+ - 1.021568056502989e-16
+ - -7.616265490082001e-17
+ - 1.2622776147559202e-16
+ - 2.749548356126264e-16
+ - 2.6347770461345314e-16
+ - -6.687755252491228e-16
+ - -1.0711988932561707e-16
+ - 1.648570960818184e-16
+ - -2.362427829451447e-16
+ - 2.265647697782743e-16
+ - 1.0149506116025648e-16
+ - 3.447688793121019e-16
+ - 5.211237859084074e-17
+ - 2.0166663334042812e-16
+ - -1.1266199942972237e-16
+ - -2.3988237764037803e-16
+ - -4.054839362734941e-16
+ - -2.720597034686908e-16
+ - -7.130296880207099e-17
+ - 1.134064619810201e-16
+ - -5.39321759384574e-17
+ - -5.166570106006211e-16
+ - -8.966637840074819e-17
+ - -2.747066814288605e-16
+ - -2.1270949451801104e-16
+ - -3.89602068512476e-16
+ - -6.452008777913616e-17
+ - 2.687509810184787e-16
+ - 1.529456952610548e-16
+ - 3.421219013519322e-16
+ - -3.0456790154202474e-16
+ - -2.5311726744122644e-17
+ - -4.8869830589632875e-16
+ - 1.709782326147108e-16
+ - 1.7867101231145395e-16
+ - -8.933550615572698e-17
+ - -2.541098841762901e-16
+ - -7.392513134386407e-16
+ - -2.3508473008757047e-16
+ - -1.324812469064929e-15
+ - 7.146840492458159e-17
+ - 3.067185711346626e-16
+ - 1.4938881862707678e-15
+ - 2.9795045664160057e-16
+ - -4.822462971184151e-16
+ - -2.5229008682867344e-16
+ - 5.604148650046762e-17
+ - -3.207935662451352e-16
+ - 2.240005098793599e-16
+ - -5.092123850876438e-16
+ - -5.287752065745229e-16
+ - 4.268251960773622e-17
+ - -4.501516893513577e-16
+ - 5.479244377551255e-16
+ - -2.9556714250168216e-16
+ - 3.120952451162573e-16
+ - 6.928464810744159e-16
+ - -5.790264287871194e-17
+ - 2.4633438641829164e-16
+ - 6.982231550560106e-16
+ - 1.783918388547173e-16
+ - 1.617965278153722e-16
+ - -1.8601224024786207e-16
+ - -4.830734777309681e-17
+ - 6.576085869796569e-18
+ - 9.45053849841834e-17
+ - 3.6999788799496923e-16
+ - -2.8488100296326273e-16
+ - -2.645737189250859e-16
+ - 4.756288522179909e-16
+ - -2.546061925438219e-16
+ - -2.9447629806887785e-17
+ - 1.8834902547832438e-16
+ - -5.494960809189763e-16
+ - -3.146595050151717e-16
+ - 1.5137405209720404e-16
+ - 5.603321469434209e-16
+ - 2.0456176548436372e-16
+ - 1.5749518863009644e-16
+ - -4.618149359883554e-16
+ - -3.098618574623641e-16
+ - -3.248338265495739e-16
+ - -3.680953725860973e-17
+ - -1.356245332341944e-15
+ - 2.9075398531238923e-16
+ - -1.4525291556431166e-16
+ - -1.3822188035761092e-16
+ - -1.9140959374477058e-16
+ - -7.51079996198149e-16
+ - -3.3244388818506177e-16
+ - 5.4428484305989215e-17
+ - -5.467663848975513e-16
+ - 4.3650320924423265e-16
+ - 1.6891028108332823e-16
+ - -3.403848220655709e-17
+ - -3.2348965805417525e-16
+ - -2.478233115208871e-16
+ - 1.799945012915388e-16
+ - 4.3278089648774403e-16
+ - -2.950966835282926e-17
+ - 1.7205356741102976e-17
+ - 7.064122431202856e-17
+ - 6.43711952688766e-16
+ - 7.95334158969736e-17
+ - 2.883138025053578e-16
+ - 1.3234889800848443e-16
+ - 6.079777502264753e-17
+ - -5.045801736573468e-18
+ - 3.695842976886927e-16
+ - -6.563678160608274e-16
+ - -5.889525961377557e-17
+ - -1.7771975460701797e-16
+ - 3.811648262644351e-16
+ - -8.400019120475995e-17
+ - -2.0017770823783267e-17
+ - 3.656138307484382e-16
+ - -1.534420036285866e-16
+ - -1.3863547066388744e-16
+ - 3.8017220952937147e-16
+ - -8.966637840074819e-17
+ - 5.724089838866952e-16
+ - -2.6105820132173553e-16
+ - 3.130051437900656e-16
+ - -6.452008777913616e-17
+ - 7.213014941462401e-17
+ - -1.1712877473750872e-16
+ - 1.3995895964397228e-16
+ - -2.150669592637872e-18
+ - -2.3161057151484772e-17
+ - -2.893477782710491e-16
+ - -2.9778502051908996e-17
+- - 4.192884514657486
+ - 3.335822199257942
+ - -2.652207184648242
+ - 2.8655535677359554
+ - -2.2262531445860008
+ - 0.6998494898547507
+ - 0.9140672639792005
+ - -2.308766713082664
+ - 1.9736643211818525
+ - 3.6358346328265365
+ - -2.060852936253564
+ - -1.3178481319325064
+ - 0.5794851827709919
+ - 1.0344161116800843
+ - -2.4285940177887615
+ - 1.8917768376707746
+ - 3.2498471322404976
+ - -1.6176939221991855
+ - -1.1806432465427645
+ - 0.3772771511385087
+ - 1.2211980186671054
+ - -2.497070575127228
+ - 2.8874682474490907
+ - -2.3699029041750412
+ - 1.0092649426724902
+ - 0.32854130343027693
+ - 0.02697193066883903
+ - -3.2139014014920915
+ - -1.7170938738408534
+ - 2.8790054334288993
+ - -2.2426783919913893
+ - 0.8166389740016196
+ - 0.4490835923452866
+ - 0.28620999209652
+ - -3.550718655632452
+ - -1.7843691044826715
+ - 2.8508544501761257
+ - -2.1592944151949296
+ - 0.6956412282576943
+ - 1.0088022859737051
+ - -2.3681612931120224
+ - 2.8876123812022167
+ - -4.973065468080482
+ - -4.958129461591407
+ - -2.342907862757679
+ - -2.233185977006654
+ - -0.027288870248692032
+ - 0.1086128315956808
+ - 0.9539471177591963
+ - -2.3345518272508
+ - 2.8835493983493454
+ - -2.5275054255573286
+ - 1.2741850946156488
+ - 0.31887537929623644
+ - -1.1473154835139492
+ - -1.6957292724303181
+ - 3.5473501284320426
+ - 1.9046836622599634
+ - -2.4611316701221337
+ - 1.160073966887378
+ - 0.5217371738857548
+ - -1.2531778131620086
+ - -1.7613241797099477
+ - 3.208148263062343
+ - 1.8835598182471307
+ - -2.3446594047648524
+ - 0.9695782681629695
+ - 0.6426426043209466
+ - -2.1873026058647107
+ - 2.856989749513398
+ - -2.6768226972625886
+ - 1.090366366121506
+ - 2.3437268102366557
+ - 1.635803688560596
+ - 0.6435300688765972
+ - -2.2677619040845056
+ - 2.8824705654425298
+ - -2.585781843670926
+ - 1.0690162794533444
+ - 2.4931384964127323
+ - 2.110807793836887
+ - 0.8480882311034004
+ - -2.3928387995415066
+ - 2.8894872334944464
+ - -2.5252822205229557
+ - 1.1832435179433602
+ - 0.41611756830660707
+ - -1.9575804782748154
+ - 3.427955960469427
+ - 4.101259044523653
+ - 1.5844384102759261
+ - 1.1589430738202762
+ - -1.4070172944046644
+ - 2.5392248480368327
+ - -2.9231015512241303
+ - 2.227556763429134
+ - -0.895873945030787
+ - -0.8024925756731662
+ - 1.412134981319966
+ - 2.2637712198562263
+ - -3.5544937601912907
+ - -1.949618200462932
+ - 2.1474077011926203
+ - -0.7730457149759568
+ - -0.9963536062621625
+ - 1.4578123358872221
+ - 2.1779022432308874
+ - -3.0281985911162956
+ - -1.8282969924840666
+ - 2.004717233591532
+ - -0.5748844134391036
+ - -1.1135654469311205
+ - 2.4212630210351818
+ - -2.9323631766275082
+ - 2.4196042661208437
+ - -0.8375555947998107
+ - -1.948506620623712
+ - -2.065412951866876
+ - -0.9113193056705394
+ - 2.4879686754142463
+ - -0.6992143917062106
+ - -0.9942488238659225
+ - 1.4569304824721092
+ - 2.3654260382963272
+ - -3.289945586472296
+ - -1.835068788263402
+ - 2.0044679680445605
+ - -0.5759916311151081
+ - -1.1114130436654401
+ - 2.41874103120304
+ - -2.930359367350987
+ - 2.418693799968829
+ - -3.0777903629782015
+ - -3.152011526870152
+ - -2.8496346371518215
+ - -2.845908344196724
+ - -3.0689918826162184
+ - -2.99338609692724
+ - 2.3873692595883114
+ - -2.932165002574303
+ - 2.453359223935633
+ - -1.168330105487111
+ - -0.5167814566963189
+ - 1.9621042276831215
+ - -1.8255093944240828
+ - -3.2603760739565644
+ - 2.4241013697903364
+ - 1.4834334919267518
+ - -1.0520115554271754
+ - -0.6406444915939797
+ - 2.1077677638642442
+ - -1.8511796972023509
+ - -3.094615018382666
+ - 2.0495576775852586
+ - 1.3958388319339525
+ - -0.859403901703895
+ - -0.8394475667413464
+ - 2.1898252861081566
+ - -2.9182242478996963
+ - 2.5672887841258243
+ - -1.4589478460807257
+ - -0.03586706201737447
+ - 0.48932344525183913
+ - 3.037204818213993
+ - 1.5723885587096749
+ - -2.927274177749304
+ - 2.4682352954556626
+ - -1.2770052704785921
+ - -0.13386165122695945
+ - 0.31119861660689263
+ - 3.575828339991946
+ - 1.7524270277989777
+ - -2.9325495615037824
+ - 2.3988221832147723
+ - -1.1643524413374222
+ - -0.6156402775025376
+ - 2.0327985799150503
+ - -2.868152031478097
+ - 4.225832459372947
+ - 5.180113227442401
+ - -2.4649982254080225e-16
+ - -9.198248411589668e-16
+ - -1.6411263353052067e-16
+ - 6.609173094298691e-17
+ - -1.4517019750305636e-17
+ - -1.0691309417247881e-16
+ - 3.189608442004474e-16
+ - 2.3740083580271894e-16
+ - 2.3161057151484775e-18
+ - 2.69660879692287e-17
+ - 4.226892930145971e-17
+ - -5.826660234823527e-16
+ - 1.3052910066086777e-16
+ - -2.7925617479790214e-16
+ - -1.2502834958739013e-16
+ - 1.5162220628096995e-16
+ - 1.2606232535308142e-16
+ - 1.989886361072877e-16
+ - 2.4980854499101436e-16
+ - -1.5435190230239494e-16
+ - 5.839895124624375e-17
+ - 2.276401045745932e-16
+ - 6.377562522783843e-17
+ - 1.10924920143361e-16
+ - -2.6726205591588324e-16
+ - -6.7001629616795234e-18
+ - 1.8921756512150505e-17
+ - -7.780667636826915e-17
+ - -4.6404832364224846e-17
+ - -7.386722870098537e-17
+ - 3.2371713272262733e-16
+ - -1.4244050148163137e-16
+ - -6.925156088293947e-16
+ - 1.2639319759810263e-16
+ - 2.037345848718107e-16
+ - -9.29751008509603e-17
+ - 1.6072119301905325e-16
+ - 7.130296880207099e-17
+ - 1.4475660719677984e-17
+ - -3.649934452890234e-16
+ - 1.344995676011223e-16
+ - -1.8115255414911304e-16
+ - -2.301216464122523e-16
+ - 1.1712877473750872e-16
+ - 5.633099971486118e-17
+ - -1.6626330312315856e-17
+ - 1.1344782101164775e-16
+ - 1.6758679210324338e-16
+ - -3.806685178969033e-16
+ - -4.235164736271501e-17
+ - 1.3873886824045657e-16
+ - -2.2416594600187047e-17
+ - -9.922031447573566e-17
+ - -7.775497757998459e-17
+ - -8.635765595053608e-17
+ - 4.301339185275744e-18
+ - -3.350081480839762e-17
+ - 2.9406270776260134e-16
+ - -8.850832554317395e-17
+ - 1.25400580863039e-16
+ - -1.8843174353957968e-16
+ - 4.963083675318166e-19
+ - -1.476103803100878e-16
+ - 1.6957202557337065e-16
+ - 1.1795595535006175e-16
+ - 2.603964568316931e-16
+ - -9.591159202552355e-17
+ - -1.1878313596261477e-16
+ - -1.5757790669135175e-16
+ - 3.6313228891077915e-17
+ - 2.7991791928794457e-16
+ - -4.963083675318165e-18
+ - 1.0397660299791557e-16
+ - 4.820395019652768e-17
+ - 2.7900802061413623e-16
+ - 6.203854594147708e-17
+ - -2.1523239538629778e-16
+ - -1.713918229209873e-16
+ - 2.605618929542037e-17
+ - 1.9500782940937624e-17
+ - 5.1450634100798315e-17
+ - -7.444625512977249e-17
+ - 4.5164061445395305e-17
+ - 1.0740940254001063e-16
+ - 4.384057246531047e-18
+ - 1.0761619769314889e-16
+ - 2.4649982254080225e-16
+ - 4.532949756790591e-17
+ - 2.936491174563248e-17
+ - 3.5304068543763216e-16
+ - 1.0157777922151179e-16
+ - -9.790509730177636e-16
+ - -2.487332101946954e-16
+ - 2.420330472330159e-16
+ - 1.1696333861499811e-16
+ - -9.45881030454387e-17
+ - 3.7099050473003286e-16
+ - 2.2333876538931744e-17
+ - 5.0354619789165554e-17
+ - 2.099384394659584e-16
+ - 2.1258541742612808e-17
+ - 3.30872245021211e-16
+ - -1.1410956550169017e-16
+ - 1.193621623914019e-16
+ - -2.6138907356675675e-16
+ - -4.1284584372521606e-16
+ - -2.150669592637872e-18
+ - -3.176373552203626e-17
+ - -6.468552390164676e-17
+ - -5.696172493193287e-17
+ - -7.77549775799846e-18
+ - -1.8669466425321832e-16
+ - -2.5954859670382626e-16
+ - 6.468552390164676e-17
+ - -1.2514725680044463e-16
+ - -2.375455924099157e-16
+ - 1.34654663965976e-16
+ - 1.0761619769314889e-16
+ - -5.608284553109528e-17
+ - 5.474901679335351e-17
+ - 1.7536228986124187e-17
+ - 1.9107872149974936e-17
+ - 4.466775307786349e-17
+ - 1.5848780536516008e-16
+ - -1.50195319724316e-16
+ - -7.659692472241035e-17
+ - -1.3818052132698327e-16
+ - -8.743299074685501e-17
+ - 1.3199993118756362e-16
+ - 7.312276614968765e-17
+ - 1.0257039595657542e-17
+ - -5.707546226615891e-17
+ - 5.297264642789589e-16
+ - -1.3114948612028254e-16
+ - -2.3161057151484775e-18
+ - -1.0141234309900118e-16
+ - 1.5468277454741615e-16
+ - 3.2293131114070195e-16
+ - 3.265709058359353e-16
+ - -6.054962083888163e-17
+ - 2.6130635550550144e-16
+ - -1.6531204541872256e-16
+ - -3.8050308177439267e-17
+ - 6.61744490042422e-19
+ - 4.599124205794834e-16
+ - -2.754511439801582e-17
+ - -5.608284553109528e-17
+ - 5.293955920339376e-18
+ - 7.940933880509066e-18
+ - -1.871496135901225e-18
+ - -1.273444553025386e-16
+ - -2.5381003120423963e-16
+ - -5.1491993131425967e-17
+ - -1.1051132983708449e-16
+ - -2.3508473008757047e-16
+ - -1.685380498076794e-17
+ - -1.832722044687802e-17
+ - -3.4377626257703825e-16
+ - 6.700162961679524e-17
+ - -1.675040740419881e-17
+ - 4.7811039405564993e-17
+ - -7.246102165964522e-17
+ - 2.853773113307945e-18
+ - 8.747434977748266e-17
+ - 3.665237294222465e-16
+ - 7.568702604860202e-17
+ - 8.12291361527073e-17
+ - -2.306179547797841e-16
+ - 1.9289851884736603e-16
+ - -1.833859418030062e-16
+ - 1.7668577884132669e-16
+ - -4.0035541647566533e-17
+ - 1.4823076576950256e-16
+ - 1.094773540713932e-16
+ - 7.568702604860203e-18
+ - -6.14181604820623e-17
+ - -1.1249656330721175e-17
+ - 3.490702184973777e-17
+ - -1.7536228986124184e-16
+ - 5.763794508269497e-16
+- - -1.8595211739976873
+ - -1.385807201040387
+ - 1.5082713086430093
+ - -2.6536630256806046
+ - 2.8644676648761576
+ - -2.15995919176204
+ - 0.6972716145808061
+ - 0.9185513390898028
+ - -1.4892286909565033
+ - -2.4323463103520018
+ - 3.4713105309866807
+ - 1.9218834991214464
+ - -2.0728406938730393
+ - 0.5744330822753514
+ - 1.1103874837892014
+ - -1.5234976398095743
+ - -2.316421319702785
+ - 2.9441749128814316
+ - 1.797021337618903
+ - -1.923900914437724
+ - 0.37224894438894657
+ - 1.2231022413447303
+ - -2.54700250687104
+ - 2.8866208689317987
+ - -2.3663958924455324
+ - 0.7403362799534057
+ - 1.7926494140267668
+ - 2.209322666214416
+ - 1.0033354587380792
+ - -2.6058385683900305
+ - 2.8689511897768893
+ - -2.2388948695326674
+ - 0.6319861921946012
+ - 1.7262479833309632
+ - 2.5827421895411464
+ - 1.1305326329222956
+ - -2.694064243193953
+ - 2.849153764388818
+ - -2.157038970602085
+ - 0.5993805377055139
+ - 1.0108488021442374
+ - -2.3705583328988644
+ - 5.025970914991489
+ - 4.933936613546689
+ - 1.0722085932396688
+ - 0.9004463741546513
+ - -2.78490509801159
+ - -2.92904984473709
+ - 0.6564435146043875
+ - 0.9582461255298929
+ - -2.3353992340940746
+ - 2.8886119426034833
+ - -2.5257597749749015
+ - 1.269567068745188
+ - 0.13326085944392574
+ - -0.32110882907759636
+ - -3.378834397781416
+ - -1.6466605571064536
+ - 2.8922725913635094
+ - -2.4578685272635785
+ - 1.084300850314631
+ - 0.27709905625258213
+ - -0.06459196407235021
+ - -3.187273280708417
+ - -1.6939467732564195
+ - 2.8839752670481427
+ - -2.3411376856857022
+ - 0.9671262397357818
+ - 0.7381727880968715
+ - -2.188475487550582
+ - 2.857112077262668
+ - -1.758109220326626
+ - -3.2571738453683423
+ - 0.21026097017033288
+ - 0.4305554560020497
+ - 0.8586142701362645
+ - -2.3185668419986882
+ - 2.8821928626648505
+ - -1.8146149566170189
+ - -3.657677253458108
+ - -0.04500102434585897
+ - 0.27279422160367045
+ - 1.0501611441127388
+ - -2.3951066978241307
+ - 2.888787844116107
+ - -2.4729179376959656
+ - 1.1807936122426923
+ - 0.4208642658428938
+ - -1.5300244100488538
+ - -1.716063047569914
+ - 1.356306438026432
+ - 1.2398268384917346
+ - -0.25122426836656186
+ - -1.4109367632749148
+ - 2.539799049884403
+ - -2.9131075334754204
+ - 2.225767391042627
+ - -0.8912179351729219
+ - -0.4157511129197505
+ - -0.23172589704530955
+ - 3.724803313445179
+ - 1.8703016228464386
+ - -2.8957155038204805
+ - 2.1438049669718744
+ - -0.6934305985768187
+ - -0.5634579951494123
+ - -0.45149122705789774
+ - 3.3004523890940654
+ - 1.8047692830376774
+ - -2.8577474057985994
+ - 2.0008950640146956
+ - -0.5725684584206565
+ - -1.2040799286218655
+ - 2.422055209070015
+ - -2.931865784671949
+ - 1.627780345171528
+ - 3.107571157854722
+ - 0.3066148258707443
+ - -0.14021633363595545
+ - -1.315923723570567
+ - 2.5281314878191754
+ - -0.6960235576192241
+ - -0.5532729002404763
+ - -0.4903053067842068
+ - 3.585676956071726
+ - 1.819376620444625
+ - -2.8587972532024843
+ - 2.0030416408542973
+ - -0.5751620361068278
+ - -1.2019129535184014
+ - 2.421068658369275
+ - -2.9324738941831123
+ - 4.875850838894365
+ - 4.869190426657174
+ - 2.438911282261967
+ - 2.339530665307175
+ - 0.31815749100718893
+ - 0.18444172428059824
+ - -1.1472072629037726
+ - 2.389474459186632
+ - -2.931524020239497
+ - 2.3991254428679554
+ - -1.1656834773105333
+ - -0.5217623701129128
+ - 1.2311000677644148
+ - 1.8731449367465933
+ - -3.4993719213815657
+ - -1.8962781600818959
+ - 2.3287001752551797
+ - -1.0469449133431876
+ - -0.7207594298417612
+ - 1.3310868588558835
+ - 1.917789813442771
+ - -3.1511711839611385
+ - -1.8684711045914697
+ - 2.2012260991008508
+ - -0.8542841752507132
+ - -0.8417841890101156
+ - 2.252535187516057
+ - -2.917989735536959
+ - 2.5644130990318033
+ - -1.0011819033428568
+ - -2.206023606251936
+ - -1.796699014616298
+ - -0.7428221581602633
+ - 2.329338797709322
+ - -2.930206946602811
+ - 2.464987008039775
+ - -0.9721671256447036
+ - -2.326710767708252
+ - -2.285700121785626
+ - -0.9484604414736312
+ - 2.443274734326665
+ - -2.9318474924826994
+ - 2.396706371908608
+ - -1.0724152508429832
+ - -0.6181715712639043
+ - 2.0361194006406467
+ - -3.561199705173606
+ - -4.272520208409177
+ - 8.371067799036639e-17
+ - 8.98318145232588e-16
+ - -6.079777502264753e-18
+ - -1.6419535159177597e-16
+ - -7.626605247738914e-17
+ - 7.295733002717704e-17
+ - -2.0753961568955462e-16
+ - -4.657026848673545e-17
+ - 3.8182657075447753e-16
+ - -6.402377941160434e-17
+ - -8.313165156157927e-17
+ - 2.953034786814309e-16
+ - -1.9041697700970695e-16
+ - 1.6460894189805248e-16
+ - 4.3096109914012736e-17
+ - -2.2664748783952955e-17
+ - -6.540413705880221e-17
+ - -1.0769891575440419e-16
+ - -5.3084315810590545e-17
+ - 3.6065074707312007e-17
+ - 7.506664058918726e-18
+ - -8.842560748191865e-17
+ - -4.408872664907637e-17
+ - -1.5708159832381993e-16
+ - 6.617444900424221e-18
+ - 1.0753347963189359e-16
+ - 6.617444900424221e-18
+ - 1.1018045759206327e-16
+ - -6.319659879905131e-17
+ - -1.2622776147559202e-16
+ - -4.197941608706615e-16
+ - 1.6302695897654482e-16
+ - 2.0580253640319326e-16
+ - -2.4674797672456816e-16
+ - -2.7032262418232944e-16
+ - 4.079654781111532e-16
+ - -1.7258606493036074e-16
+ - -7.833400400877171e-17
+ - 1.4835484286138551e-16
+ - 8.828602075355032e-17
+ - -2.762783245927112e-17
+ - -9.436062837698662e-17
+ - 1.9306395496987663e-16
+ - -1.5009192214774687e-16
+ - -1.356989794893242e-16
+ - 2.717288312236696e-16
+ - -1.4239914245100371e-16
+ - 3.2210413052814893e-16
+ - 3.2805983093853073e-16
+ - 9.992341799640573e-17
+ - -1.9959868180904555e-16
+ - -5.331179047904263e-17
+ - 5.244325083586195e-17
+ - 2.447627432544409e-16
+ - 1.133237439197648e-16
+ - -5.560721667887729e-17
+ - 1.0455562942670269e-16
+ - -2.9406270776260134e-16
+ - 1.0166049728276709e-16
+ - 3.7223127564886245e-17
+ - 1.729221070542104e-16
+ - 5.227781471335134e-17
+ - 1.0447291136544738e-16
+ - -1.2060293331023143e-16
+ - -1.624582723054146e-16
+ - -2.7330047438752034e-16
+ - 3.1308786185132093e-16
+ - 3.73472046567692e-17
+ - 3.590377448786416e-16
+ - 4.677706363987371e-17
+ - -7.924390268258004e-17
+ - 1.3847003454137683e-16
+ - -1.0091603473146936e-17
+ - -2.452590516219727e-16
+ - -1.0538281003925571e-16
+ - -1.3292792443727155e-16
+ - 2.392206331503356e-16
+ - 2.2991485125911404e-16
+ - -9.388499952476863e-17
+ - 7.206811086868254e-17
+ - -6.741521992307176e-17
+ - 8.172544452023912e-17
+ - 3.1267427154504446e-17
+ - -2.364909371289106e-16
+ - -6.886278599503955e-18
+ - -6.224534109461533e-17
+ - -1.7585859822877366e-16
+ - -3.1846453583291565e-17
+ - 9.049355901330122e-17
+ - 1.860329197631759e-16
+ - 1.4806532964699195e-16
+ - 5.370056536694256e-16
+ - 1.5981129434524492e-16
+ - -9.438130789230045e-17
+ - 9.119666253397129e-17
+ - 9.632518233180006e-17
+ - -2.9447629806887785e-16
+ - 1.132410258585095e-16
+ - -3.23758491753255e-16
+ - -1.7834014006643274e-16
+ - -2.98612201131643e-17
+ - -6.074814418589434e-16
+ - 6.691891155553994e-17
+ - -1.9442880298058913e-16
+ - -9.926167350636332e-19
+ - 1.597078967686758e-16
+ - 4.020097777007714e-17
+ - -5.955700410381799e-17
+ - 3.3815143441167766e-16
+ - 3.697497338112034e-17
+ - -6.931773533194372e-17
+ - 2.370492840423839e-16
+ - 1.886798977233456e-16
+ - -6.231254951938527e-17
+ - 1.62292836182904e-16
+ - 2.4649982254080222e-17
+ - -6.038418471637102e-17
+ - -9.078307222769477e-17
+ - 1.0694411344544955e-16
+ - -8.879783875756751e-17
+ - 7.320548421094295e-17
+ - 4.987899093694756e-17
+ - 1.1233112718470116e-16
+ - -1.0397660299791557e-16
+ - 2.1440521477374475e-16
+ - 3.4923565461988824e-16
+ - 1.1754236504378523e-16
+ - 2.212914933732487e-16
+ - 2.1713491079516973e-17
+ - 2.762783245927112e-17
+ - 1.0149506116025648e-16
+ - 1.2606232535308142e-16
+ - -2.393033512115909e-16
+ - -1.4186147505284425e-16
+ - 1.4144788474656773e-16
+ - 2.6234033127119273e-16
+ - -1.6910673647880957e-16
+ - -1.1745964698252993e-16
+ - -3.513863242125261e-16
+ - 8.792929911438683e-17
+ - -2.2251158477676444e-16
+ - 3.114748596568425e-16
+ - -1.9769616640017358e-17
+ - 1.8727369068200544e-16
+ - -7.844980929452913e-16
+ - -5.1740147315191875e-17
+ - -7.519071768107022e-17
+ - -2.486504921334401e-16
+ - 3.044024654195142e-17
+ - 6.179039175771117e-17
+ - 2.600655845866719e-16
+ - 3.785178483042654e-16
+ - 5.1450634100798315e-17
+ - 2.0547166415817205e-16
+ - 6.069851334914116e-16
+ - -8.296621543906866e-17
+ - 1.3532674821367533e-16
+ - 3.1714104685283076e-16
+ - 2.6469779601696883e-17
+ - 1.9273308272485542e-16
+ - -1.2035477912646553e-16
+ - -2.6304343479186277e-17
+ - 3.308722450212111e-17
+ - -6.774609216809297e-17
+ - -3.7603630646660633e-16
+ - -8.598542467488721e-17
+ - -1.3557490239744124e-16
+ - 1.2904017555827232e-16
+ - -3.088692407273005e-16
+ - 1.862810739469418e-16
+ - 4.954811869192635e-17
+ - -1.4194419311409955e-16
+ - -1.465764045443965e-16
+ - -1.1571222793851166e-16
+ - -6.87387089031566e-17
+ - -1.0066788054770346e-16
+ - -7.16338410470922e-17
+ - -1.2904017555827232e-16
+ - 2.9778502051908996e-16
+ - -4.757942883405015e-16
+- - -0.5258262092529116
+ - -0.5247338971389914
+ - -0.09476665214034334
+ - 1.1622033709452892
+ - -1.9042384791988431
+ - 1.964368873522556
+ - -1.4178906186376166
+ - 0.3592893283769
+ - 0.4502334859449605
+ - 0.4758558250051167
+ - -2.6480883280676526
+ - -1.3547747694850534
+ - 1.9433170019909827
+ - -1.351831736764787
+ - 0.21888167531993472
+ - 0.5407331614969159
+ - 0.5870785401260198
+ - -2.3279259667618377
+ - -1.2992326168873947
+ - 1.8991196691256726
+ - -1.2418110199652335
+ - 0.13167678511828543
+ - 1.0272663095857155
+ - -1.8390842510667442
+ - 2.0042298022855545
+ - -1.0482220840764287
+ - -2.054395252586845
+ - -0.48802146137331337
+ - -0.059516781985493275
+ - 1.1016746377441844
+ - -1.8968755783848879
+ - 1.9827616988587224
+ - -1.0009478278513555
+ - -2.142090008407117
+ - -0.7004360939996118
+ - -0.16174066800871567
+ - 1.2174755417411918
+ - -1.9290565967672852
+ - 1.963672795123929
+ - -1.3661814126349248
+ - 0.29169322605641135
+ - 0.8266629248648043
+ - -2.5819966959025
+ - -2.486833188212283
+ - 0.25609464489251355
+ - 0.3822446852606473
+ - 3.182224075386982
+ - 3.260535425388205
+ - -1.3965008603250664
+ - 0.33032421286484
+ - 0.7892529645183327
+ - -1.7420939703781335
+ - 2.0185362724960965
+ - -1.6935947215377394
+ - 0.5707034369497754
+ - 1.432282387611888
+ - 1.6073137435579328
+ - 0.6725958672799844
+ - -1.785814085157264
+ - 2.015396884626666
+ - -1.6085321264874535
+ - 0.4738664475603844
+ - 1.1820463070332712
+ - 1.603090466274657
+ - 0.7396289923543778
+ - -1.851892180056984
+ - 2.0004292473897576
+ - -1.5536729003818766
+ - 0.487833401988582
+ - 0.6389033364688719
+ - -1.6122828905196724
+ - 1.3118237496851297
+ - 2.226633756585952
+ - -1.2686342177792749
+ - -0.894415049444248
+ - 0.40379579175164354
+ - 0.772919068341033
+ - -1.69589330338197
+ - 1.3894878735127394
+ - 2.5877751798028967
+ - -1.2775245139998914
+ - -0.8438795583898967
+ - 0.2626289071934364
+ - 0.8532918976411455
+ - -1.7436688220966148
+ - 2.0157962269973426
+ - -1.6540058341234083
+ - 0.7038789418061616
+ - -0.41881738054646506
+ - -0.6311948630814725
+ - -2.5388839382645263
+ - -2.1386528713185156
+ - 1.1211902599136905
+ - -0.04477565436745189
+ - -1.096650461082401
+ - 1.858757962406328
+ - -2.015827706802183
+ - 1.4680559032592693
+ - -0.4163564378710023
+ - -1.1615907401854273
+ - -1.9960523230379958
+ - -0.8985062691908884
+ - 1.891642053263771
+ - -1.9977922561768984
+ - 1.3674854717322193
+ - -0.2772253530233575
+ - -0.8577526837633108
+ - -1.8450339558300322
+ - -0.9003941735116935
+ - 1.9361104570657433
+ - -1.9623097815518242
+ - 1.301690146622358
+ - -0.2055541018587736
+ - -0.9570755597153582
+ - 1.7592009695572428
+ - -1.32285424384894
+ - -2.305419202355954
+ - 0.951568448587406
+ - 0.7329824087405433
+ - -0.11822095076571608
+ - -1.080456142914933
+ - 1.825259721927587
+ - -0.28823997311352506
+ - -0.9316464822328522
+ - -2.004419323476381
+ - -0.9127078745336293
+ - 1.9374363365954175
+ - -1.963999377901005
+ - 1.3032350065065892
+ - -0.2064303997580101
+ - -0.9571837957814908
+ - 1.76017604520649
+ - -3.6030133690100836
+ - -3.548705245511892
+ - -0.9602918387322652
+ - -0.8450715074466377
+ - 1.5702018954950219
+ - 1.6717144744666743
+ - -0.24837274078114766
+ - -0.9201300537968345
+ - 1.737533321237766
+ - -2.041268023026302
+ - 1.6000431856408233
+ - -0.6920059316346105
+ - -0.2501402382511748
+ - -0.07669094713776925
+ - 2.4513110003429577
+ - 1.2214355337474823
+ - -2.032227996375802
+ - 1.5452521363254326
+ - -0.5553330387242916
+ - -0.34761422513272194
+ - -0.23175971294463144
+ - 2.291301115368686
+ - 1.2449598777733757
+ - -2.010785118697194
+ - 1.4492237920109043
+ - -0.47163953328335245
+ - -0.7732037887363947
+ - 1.6503523751361495
+ - -2.046181217987456
+ - 1.160431491461115
+ - 2.1991841065266162
+ - 0.1302367121382674
+ - -0.14549133218448942
+ - -0.8525863080544831
+ - 1.7287973320485261
+ - -2.0455090283776833
+ - 1.1891399007910484
+ - 2.4484669756595174
+ - 0.34695157221570283
+ - -0.02510891563601901
+ - -0.980956809967009
+ - 1.7721599048040138
+ - -2.0410165676609293
+ - 1.5563357389451216
+ - -0.6270158743194898
+ - -0.5587490213581752
+ - 1.387445612097064
+ - 1.5951939069485153
+ - 7.346191020083438e-16
+ - 4.650409403773122e-16
+ - 1.4518829207895595e-16
+ - 1.4545971071744992e-16
+ - -1.3284520637601624e-16
+ - -1.6718871143345224e-16
+ - -7.088937849579447e-17
+ - -2.2292517508304093e-17
+ - -4.183465947986937e-16
+ - 8.015380135638837e-17
+ - 1.0573436179959075e-16
+ - 4.0035541647566533e-17
+ - 1.9058241313221755e-16
+ - -8.395883217413231e-18
+ - -9.69265038630349e-17
+ - -8.313359026613994e-17
+ - -2.2623389753325304e-17
+ - -2.6562837420609098e-17
+ - 5.852302833812671e-17
+ - -3.0647041695089675e-17
+ - 5.3994214484398875e-17
+ - 2.6697254270148965e-17
+ - 1.2324991127040111e-17
+ - 3.4824303788482465e-17
+ - 3.316994256337641e-17
+ - -2.325204701886561e-16
+ - -4.326154603652334e-17
+ - -5.6827308082393e-17
+ - 1.2399437382169885e-16
+ - 1.8652922813070772e-16
+ - 2.957997870489627e-16
+ - -3.792623108555631e-17
+ - -1.0778163381565949e-16
+ - 1.995573227784179e-16
+ - 5.765448869494603e-17
+ - -3.9382068963649643e-16
+ - 9.395479288895279e-17
+ - 5.2939559203393765e-17
+ - -1.683312546545411e-16
+ - 7.337092033345355e-17
+ - 1.7217764450291269e-16
+ - 1.1245520427658411e-16
+ - -9.92616735063633e-18
+ - 1.0517601488611746e-16
+ - 4.7232012976777874e-17
+ - -1.0066788054770346e-16
+ - 8.904599294133342e-17
+ - -2.127508535486387e-16
+ - -6.88214269644119e-17
+ - -2.7596813186300383e-17
+ - 1.2463543879642744e-16
+ - 7.390858773161302e-17
+ - -1.0877425055072312e-17
+ - -1.6626330312315854e-16
+ - -3.599890025830776e-16
+ - -4.19380570564385e-17
+ - -5.98878763488392e-17
+ - 1.4301952791041848e-16
+ - 2.7379678275505213e-17
+ - 7.320548421094295e-17
+ - 1.8859717966209028e-17
+ - -4.987899093694756e-17
+ - 4.8850185050084734e-17
+ - 5.815079706247785e-17
+ - -1.9025154088719633e-17
+ - 1.3582305658120714e-16
+ - -3.5077627851076825e-16
+ - -2.5146290621612038e-17
+ - -3.157348398114906e-16
+ - -6.948317145445432e-17
+ - 6.997947982198614e-17
+ - -4.235164736271501e-17
+ - -8.437242248040882e-18
+ - -1.137373342260413e-18
+ - 1.1497810514487083e-17
+ - -3.399712317592944e-17
+ - -1.6262370842792522e-16
+ - -1.9213337678075448e-16
+ - 1.414633943830531e-16
+ - -1.87563203896399e-16
+ - 7.692779696743156e-17
+ - -6.021874859386041e-17
+ - 1.4330904112481204e-17
+ - 2.587007365759594e-16
+ - -1.1042861177582918e-16
+ - 3.238929086027949e-17
+ - -5.9557004103817985e-18
+ - -9.599431008677885e-17
+ - -4.1822251770681074e-16
+ - 1.636576841936165e-16
+ - -1.83055069557985e-16
+ - -9.90962373838527e-17
+ - 8.106370003019671e-18
+ - 2.1134464650729854e-17
+ - -1.1274471749097767e-16
+ - -1.341686953561011e-16
+ - 1.0563096422302162e-16
+ - -9.367820437163037e-17
+ - 2.459621551426428e-16
+ - 1.1369597519541365e-16
+ - 8.830153039003569e-17
+ - 4.691768434400773e-16
+ - 4.9299964508160443e-17
+ - -6.11700062982964e-17
+ - -2.512147520323545e-16
+ - -1.708127964922002e-16
+ - -4.0118259708821836e-17
+ - 8.749502929279649e-17
+ - 4.437823986346993e-17
+ - 4.3489020704975424e-17
+ - 6.749793798432706e-17
+ - -1.4872707413703438e-16
+ - -1.5129133403594874e-16
+ - 8.342116477597283e-17
+ - -1.1952242863508404e-16
+ - -1.3589543488480553e-16
+ - -9.694556779121483e-17
+ - -1.9025154088719633e-17
+ - 1.049692197329792e-16
+ - 7.444625512977249e-18
+ - 3.577556149291845e-17
+ - -1.0753347963189358e-17
+ - -1.9116143956100467e-16
+ - 4.0076900678194185e-17
+ - -1.8987930961154748e-16
+ - -1.3838731648012153e-16
+ - -1.0726464593281385e-16
+ - -4.135903062765138e-18
+ - -4.044913195384305e-17
+ - -4.673570460924606e-17
+ - -1.0517601488611746e-16
+ - -1.9184386356636092e-16
+ - -5.157471119268127e-17
+ - 1.2966056101768707e-17
+ - -1.9132687568351528e-16
+ - -1.7527957179998654e-16
+ - 1.390077019395363e-16
+ - 1.654361225106055e-16
+ - 2.2813641294212503e-16
+ - -4.839006583435211e-17
+ - 1.5104317985218283e-16
+ - 2.4091635340606927e-18
+ - -1.4723814903443893e-17
+ - -2.1126192844604324e-16
+ - 5.6281368878108e-16
+ - 3.639594695233322e-18
+ - 6.476824196290207e-17
+ - 1.829723514967297e-16
+ - -4.4833189200374094e-17
+ - -5.790264287871194e-17
+ - -1.647381888687639e-16
+ - -1.0836066024444661e-17
+ - 1.7453510924868884e-17
+ - -8.850832554317395e-17
+ - -3.0026656235674905e-16
+ - 9.942710962887391e-17
+ - -7.465305028291075e-17
+ - -2.3185872569861366e-16
+ - -1.4384670852297151e-16
+ - -5.75510911183769e-17
+ - 4.508134338414e-17
+ - -4.350970022028925e-17
+ - -4.5164061445395305e-17
+ - -9.357480679506126e-19
+ - 4.887603444422702e-16
+ - 4.1028158382630167e-17
+ - 1.952146245625145e-17
+ - -8.561319339923835e-17
+ - 1.3210074382471852e-16
+ - -8.271806125530276e-17
+ - 2.547716286663325e-17
+ - 1.9604180517506753e-16
+ - 9.504305238234287e-17
+ - 6.127340387486553e-17
+ - 8.233032034316853e-19
+ - 5.281548211151081e-17
+ - -3.3583532869652924e-17
+ - 8.065010972392019e-17
+ - -6.279955210502585e-16
+ - 1.2457340025048597e-16
+- - 5.878556761025231
+ - 4.962226809765981
+ - -2.5887230649655693
+ - -0.07912876547921988
+ - 2.7176356099690415
+ - -4.53827806921891
+ - 4.760117850947153
+ - -3.440334368843682
+ - 0.8959919462256392
+ - 2.598687932751578
+ - 4.9050248247218455
+ - 2.228602170592567
+ - -4.609381468291502
+ - 4.71194315033561
+ - -3.1907900603539345
+ - 0.5660327613601884
+ - 1.8890657584612724
+ - 4.5187424166797445
+ - 2.2258804255780307
+ - -4.707073533148309
+ - 4.615231460266123
+ - -3.0306389928607453
+ - 0.3060922149995822
+ - 2.389808255947942
+ - -4.315422730183634
+ - 3.161125542595516
+ - 5.5379783108281435
+ - -2.1164076284740916
+ - -1.6703419614355284
+ - 0.09825170721399891
+ - 2.681082835677876
+ - -4.462409087870773
+ - 3.1628206975991198
+ - 6.0494505885305685
+ - -1.9057282579654333
+ - -1.4679086942721413
+ - -0.2430092750198003
+ - 2.855537763009883
+ - -4.540909841532061
+ - 4.722444242178127
+ - -3.3223775978246883
+ - 0.8441919598318032
+ - 1.624199187627717
+ - 1.3849337247295816
+ - -3.1836568479068577
+ - -3.4050184627905504
+ - -8.5629218815334
+ - -8.628009443483124
+ - 4.745307230394528
+ - -3.3901762815049126
+ - 0.9401874277661446
+ - 1.961754035549445
+ - -4.071470130879961
+ - 4.865200958948166
+ - -2.7531564689112678
+ - -5.648124779523332
+ - -0.5298309799035698
+ - 0.22617485135525114
+ - 2.1504620463696424
+ - -4.1839387537472
+ - 4.8539904307594455
+ - -2.606288148837955
+ - -5.046954768733204
+ - -0.8799901914929525
+ - 0.023902446889497636
+ - 2.4510800707050806
+ - -4.347554102907717
+ - 4.834987827884259
+ - -3.6555956946945725
+ - 1.315053347252136
+ - 1.4545349043056017
+ - -2.355850492351272
+ - -3.4733652500196497
+ - 5.145370189449946
+ - 3.084350269973571
+ - -3.515266523161488
+ - 0.9835342421040851
+ - 1.7765027249486205
+ - -2.5868676094314806
+ - -4.282597761781525
+ - 5.675411615430399
+ - 3.166825506600813
+ - -3.2707202170196363
+ - 0.7747538241216407
+ - 1.9683823718325486
+ - -4.160998862592295
+ - 4.862582196179724
+ - -3.99012951139792
+ - 4.77635777142026
+ - 6.063427281283541
+ - 8.496964611032498
+ - 6.970253412331742
+ - -4.522453193044501
+ - 2.8098033710049015
+ - -0.19071218145415694
+ - -2.6269799576516695
+ - 4.434718552253302
+ - -4.808385327429974
+ - 2.6214656190937085
+ - 5.527508065267602
+ - 1.5646676183473496
+ - 0.3317385328500591
+ - -2.799856390995804
+ - 4.517952199729208
+ - -4.744555803406241
+ - 2.2970451465210155
+ - 4.621217371348804
+ - 1.7205664593766596
+ - 0.4660966060123597
+ - -3.07188018902878
+ - 4.633233994448223
+ - -4.693766626035388
+ - 3.115278190997496
+ - -0.5748883849612485
+ - -2.1553137558221596
+ - 2.654852252639954
+ - 4.105811066463811
+ - -4.7529291486735525
+ - -2.9368194732311457
+ - 2.9528809533122575
+ - -0.23480981420528219
+ - -2.4558971573005772
+ - 2.775901974737596
+ - 5.019299105577265
+ - 1.8690187893439676
+ - 0.49190612688988505
+ - -3.075682268237279
+ - 4.636608049980377
+ - -4.695672184963137
+ - 3.1149657465497627
+ - -0.5724600039715979
+ - -2.158972950867161
+ - 6.382398354823793
+ - 6.157639576960225
+ - -0.4558705318474894
+ - -0.759374575242577
+ - -7.48158808778094
+ - -7.674135226890519
+ - 3.1941726148574765
+ - -0.6737489662259311
+ - -2.061229026972402
+ - 4.212528859791123
+ - -4.857876347825244
+ - 3.930482285804851
+ - -1.2746984748683616
+ - -3.2690358471102092
+ - -3.9901752008727946
+ - -1.6945580510390896
+ - 4.312997314994583
+ - -4.842238860337171
+ - 3.7199174369956425
+ - -1.0406594350840779
+ - -2.6765143352672496
+ - -3.9602472566947355
+ - -1.8509943190640106
+ - 4.460043879538004
+ - -4.7973196075168465
+ - 3.582195546219735
+ - -1.0528798310395695
+ - -1.7060605738827948
+ - 3.9160214300471923
+ - -3.150111624639012
+ - -5.375994917048506
+ - 2.8875720226096653
+ - 2.06588789680134
+ - -0.848930084855247
+ - -2.021277125238287
+ - 4.108846567986851
+ - -3.331531710585921
+ - -6.234324629641344
+ - 2.880432770210942
+ - 1.934929766045609
+ - -0.5110136661496696
+ - -2.212264485494629
+ - 4.2161428835122345
+ - -4.84599919903008
+ - 3.8314996556281624
+ - -1.5746175806391258
+ - 0.7828482565690928
+ - 1.2427263143048473
+ - -1.491241208310598e-15
+ - -1.7771148280089247e-15
+ - -5.118593630478135e-16
+ - -3.071735204715668e-16
+ - 4.562728258842501e-16
+ - 1.561716996500116e-16
+ - 6.667696122636817e-16
+ - 3.2028433318053227e-16
+ - 9.68793933422106e-16
+ - -1.9587636905255693e-16
+ - -9.173432993213076e-17
+ - -6.642260318800811e-16
+ - -3.331883507363595e-16
+ - -4.635933743053444e-16
+ - 5.922613185879678e-17
+ - 6.981404369947554e-17
+ - 2.8239946112560365e-16
+ - 4.689286892563114e-16
+ - 1.2738581433316626e-16
+ - 4.19380570564385e-17
+ - 1.195017491197702e-17
+ - 3.0754575174721564e-16
+ - -3.565148440103549e-17
+ - 1.0554824616176632e-16
+ - -4.572551028616568e-16
+ - 3.7985167704200717e-16
+ - 1.1828682759508296e-16
+ - 2.8785885316845363e-17
+ - -1.0058516248644815e-16
+ - -5.705891865390785e-16
+ - -1.9554549680753572e-16
+ - -7.543887186483611e-17
+ - -9.896388848584423e-16
+ - -3.0456790154202474e-16
+ - 1.4583194199309878e-16
+ - 5.618210720460164e-16
+ - 6.733250186181645e-17
+ - 1.1042861177582918e-16
+ - 5.525566491854225e-16
+ - -5.421341734672543e-16
+ - -7.80858498250058e-17
+ - -6.8292031372377955e-16
+ - -9.363684534100272e-17
+ - -1.5463107575913159e-16
+ - -2.277021431205347e-16
+ - 1.9107872149974936e-17
+ - -1.3524403015242002e-16
+ - 5.237707638685771e-16
+ - -2.244968182468917e-16
+ - 2.3967558248723974e-17
+ - -3.0907603588043874e-16
+ - -3.2003617899676636e-16
+ - 1.5964585822273434e-17
+ - 2.2499312661442353e-16
+ - 1.0399314661016664e-15
+ - 1.3929721515392986e-16
+ - -3.279771128772755e-17
+ - 1.67752228225754e-16
+ - -1.889280519071115e-16
+ - -2.536135758087583e-16
+ - -7.871657504207748e-17
+ - 1.952146245625145e-16
+ - -2.3909655605845265e-16
+ - -1.0149506116025648e-16
+ - 3.474158572722716e-17
+ - -6.472688293227442e-17
+ - 6.123618074730063e-16
+ - 5.459392042849982e-18
+ - 6.747725846901322e-16
+ - 1.9058241313221755e-16
+ - 1.8284827440484674e-16
+ - 1.4277137372665258e-16
+ - 1.9244356951046186e-16
+ - 1.435985543392056e-16
+ - -8.238718901028154e-17
+ - 1.4905794638205559e-16
+ - 1.9736529415515238e-16
+ - 4.0199685300370026e-16
+ - -3.655311126871829e-16
+ - 6.228670012524297e-16
+ - -1.224227306578481e-16
+ - 1.5402103005737373e-16
+ - -8.149279997295858e-17
+ - -6.713397851480372e-16
+ - 2.1905293584052707e-16
+ - 1.1530897738989206e-16
+ - 4.151412699250507e-16
+ - 4.3608961893795614e-16
+ - 1.7761222112738608e-15
+ - -5.293955920339377e-16
+ - 8.420698635789821e-16
+ - -1.5511290846594373e-15
+ - -3.864587821847745e-16
+ - 1.5732975250758584e-16
+ - 3.39061333085486e-16
+ - 1.5591320570858878e-16
+ - 3.223109256812872e-16
+ - 2.452590516219727e-16
+ - -4.474219933299327e-16
+ - -3.850525751434343e-17
+ - -7.77549775799846e-18
+ - -8.95836603394929e-16
+ - -3.039061570519823e-16
+ - 3.2766692014756804e-16
+ - 2.5630191279955563e-16
+ - -4.704176143589068e-16
+ - 9.678013166870423e-17
+ - -2.809105360230082e-16
+ - -4.584234954768879e-16
+ - -2.1792073237709512e-16
+ - -2.1705219273391444e-16
+ - 1.8396496823179333e-16
+ - 2.4054412213042045e-16
+ - -2.1225454518110688e-16
+ - 2.1390890640621293e-16
+ - -1.92071338234813e-16
+ - 3.269017780809565e-16
+ - 2.2135353191919018e-16
+ - -5.90937829607883e-16
+ - 1.5162220628096995e-16
+ - 7.974021105011186e-17
+ - -1.0306670432410724e-16
+ - 8.57620859094979e-16
+ - 1.9688966530293439e-16
+ - 3.296314741023815e-16
+ - -4.4006008587821066e-17
+ - 7.527343574232552e-17
+ - -3.290834669465651e-16
+ - 2.845294512029277e-16
+ - 1.528629771997995e-16
+ - 3.72396711771373e-16
+ - 4.599124205794834e-16
+ - 1.237958504746861e-15
+ - -2.1891334911215875e-16
+ - 5.236053277460665e-16
+ - 1.8355137792551682e-16
+ - -1.1785255777349262e-16
+ - -2.393860692728462e-16
+ - 5.293955920339376e-18
+ - 8.879783875756751e-17
+ - -5.893661864440321e-19
+ - -4.0895809484621683e-16
+ - 1.9273308272485542e-17
+ - 4.739744909928849e-16
+ - -5.591740940858467e-16
+ - -1.919059021123024e-17
+ - -2.1539783150880838e-16
+ - -3.187126900166815e-16
+ - -6.2865726554030096e-18
+ - 1.8462671272183575e-16
+ - 3.4046754012682614e-16
+ - -3.488841028595532e-16
+ - -5.219509665209604e-17
+ - -6.981404369947554e-17
+ - 2.362427829451447e-16
+ - -2.989430733766642e-16
+ - 4.764560328305439e-17
+ - -4.764560328305439e-17
+ - 6.27706007835865e-16
+ - 7.79204137024952e-17
+ - 8.70194004405785e-17
+ - -8.875647972693986e-17
+ - 2.4939495468473784e-16
+ - 8.951645191472295e-17
+ - -1.3492970151964985e-15
+ - -5.194694246833013e-17
+ - -4.350970022028925e-17
+ - -1.0869153248946782e-16
+ - -2.3094882702480533e-16
+ - 2.853773113307945e-18
+ - 9.123802156459894e-17
+ - -5.03256684677262e-16
+ - -1.819797347616661e-17
+ - 5.856438736875436e-17
+ - 2.870316725559006e-17
+ - -2.7404493693881807e-16
+ - 7.299868905780469e-17
+ - -2.256135120738383e-16
+ - 6.200545871697494e-16
+ - 7.063295250590302e-16
+- - 3.8120522252611693
+ - 3.2411968432202887
+ - -1.588556193427002
+ - -0.3889848912171801
+ - 2.2379212157380324
+ - -3.3970608492003955
+ - 3.3691923386638587
+ - -2.2499236710505817
+ - 0.42785802429218656
+ - 1.4806193240406755
+ - 3.8187672346098096
+ - 1.7788434902760226
+ - -3.435073072388845
+ - 3.320300296513311
+ - -2.053821523150426
+ - 0.1962790719591346
+ - 1.0066640517342176
+ - 3.485796412309437
+ - 1.7611089877236916
+ - -3.483316017461196
+ - 3.2281320786589807
+ - -1.9291026451449342
+ - -0.11015881019464822
+ - 2.014982367084535
+ - -3.2698136353419684
+ - 2.2709403102723957
+ - 4.041419686027491
+ - -1.176824438359799
+ - -1.0228305111509737
+ - -0.2608755266812493
+ - 2.2132096756990225
+ - -3.3549534931671072
+ - 2.258344341033395
+ - 4.385206621247808
+ - -0.9843071608625991
+ - -0.8672681708399268
+ - -0.5069779582958478
+ - 2.3309454858261844
+ - -3.398499148703868
+ - 3.3308090129351964
+ - -2.1569654286551887
+ - 0.2828133072747055
+ - 1.7569157329889817
+ - 1.5804584392696366
+ - -2.056221185328666
+ - -2.2304788563782703
+ - -6.2505621325483
+ - -6.313700930708292
+ - 3.353800618525582
+ - -2.210335632988301
+ - 0.3533867768260627
+ - 1.720455528646231
+ - -3.1220566509006136
+ - 3.5142457758899464
+ - -1.8790269304146359
+ - -3.9303503766379464
+ - -0.7940552006435344
+ - -0.05340821216923012
+ - 1.850758341816397
+ - -3.190997330266218
+ - 3.482880405088761
+ - -1.7596161131032213
+ - -3.483775135265932
+ - -1.0108583291397364
+ - -0.19870883576977572
+ - 2.0568371676240793
+ - -3.288728229376506
+ - 3.4550256847466883
+ - -2.4210747996728315
+ - 0.6302043145032843
+ - 1.3671564273185621
+ - -1.845670456191509
+ - -2.8056578726764116
+ - 3.5700539515863556
+ - 2.1787205642057477
+ - -2.3092522157731374
+ - 0.3852667576813095
+ - 1.5919504197712826
+ - -2.011937733689515
+ - -3.41380634736514
+ - 3.9026432311481383
+ - 2.215478410027381
+ - -2.116401947684493
+ - 0.2318821623811065
+ - 1.72503846068682
+ - -3.1770029064339993
+ - 3.501174638362391
+ - -2.691756907560821
+ - 3.094880882096605
+ - 3.9575869947887106
+ - 6.023697044975712
+ - 4.957534591308001
+ - -3.1437119938925098
+ - 1.7583251063545187
+ - 0.19385684552953764
+ - -2.176515815836571
+ - 3.339258537777338
+ - -3.42191173556679
+ - 1.7524569198661986
+ - 3.777073160711195
+ - 1.5506383457025459
+ - 0.4660221096982679
+ - -2.2934712053540993
+ - 3.3860540202500733
+ - -3.352946523415495
+ - 1.510282961168725
+ - 3.125042057732707
+ - 1.6040954162813001
+ - 0.5502233811190331
+ - -2.4758642443915306
+ - 3.447405474825755
+ - -3.3025034778841373
+ - 1.994960765573124
+ - -0.08565782901651006
+ - -1.854087770539773
+ - 2.035022740257697
+ - 3.2221878143617664
+ - -3.2341457895311816
+ - -2.0402445755451954
+ - 1.8688062187780181
+ - 0.1618973761140229
+ - -2.060138926649771
+ - 2.111362581246716
+ - 3.6802902229423844
+ - 1.7425582882922324
+ - 0.5698515062159814
+ - -2.4786179309847314
+ - 3.4499989149655907
+ - -3.304140211963572
+ - 1.9950198828773706
+ - -0.08411215670673892
+ - -1.856672854693169
+ - 5.0145053275956615
+ - 4.85888302509332
+ - -0.005062440715095859
+ - -0.22693136395829025
+ - -5.111755078998801
+ - -5.261191124100602
+ - 2.0564890067385155
+ - -0.15787864237552254
+ - -1.7892535425397036
+ - 3.208269428804198
+ - -3.4908514899669187
+ - 2.6430164561595344
+ - -0.7214401628547543
+ - -2.013279550890571
+ - -3.192326173955025
+ - -1.4078236036334701
+ - 3.2683951658749515
+ - -3.465112776920891
+ - 2.4726217018221472
+ - -0.5475695362806693
+ - -1.5995714900638889
+ - -3.1274850333084014
+ - -1.5120205381820089
+ - 3.3535800178124195
+ - -3.40959315658601
+ - 2.3625213596462347
+ - -0.4363634995870564
+ - -1.542942706568034
+ - 3.025073268885122
+ - -2.296489148030013
+ - -3.9823802112580036
+ - 1.760298786060023
+ - 1.3283136736062786
+ - -0.28627233287986253
+ - -1.7616818250464163
+ - 3.145118778889372
+ - -2.4177381352668577
+ - -4.588795738095163
+ - 1.6932693989654153
+ - 1.2120094944547737
+ - -0.03898133682238608
+ - -1.8932999016610081
+ - 3.2104479762007525
+ - -3.470828475960393
+ - 2.5626113505832153
+ - -0.8231468868997687
+ - 0.08675815720288091
+ - 0.31310041586592263
+ - -9.462946207606637e-16
+ - -1.1507736681837721e-15
+ - -3.570111523778867e-16
+ - -2.232146882974345e-16
+ - 3.1995346093551106e-16
+ - 1.0385252590603261e-16
+ - 4.564175824914468e-16
+ - 2.1936829844906291e-16
+ - 6.878833973990977e-16
+ - -1.433504001554397e-16
+ - -6.662939834114638e-17
+ - -4.317882797526804e-16
+ - -2.5295183131871586e-16
+ - -3.163552252709054e-16
+ - 5.1119761855777104e-17
+ - 4.7811039405564993e-17
+ - 2.036518668105554e-16
+ - 3.2822526706104133e-16
+ - 7.519071768107022e-17
+ - 3.143286327701505e-17
+ - 1.0960143116327615e-17
+ - 2.1457065089625535e-16
+ - -4.441959889409758e-17
+ - 6.518183226917858e-17
+ - -3.14742223076427e-16
+ - 2.731763972956374e-16
+ - 8.40415502353876e-17
+ - 3.4576149604716557e-17
+ - -6.071505696139223e-17
+ - -4.1751941418614067e-16
+ - -1.6990289781839186e-16
+ - -3.490702184973777e-17
+ - -7.538924102808293e-16
+ - -2.3218959794363487e-16
+ - 7.696915599805921e-17
+ - 4.132594340314926e-16
+ - 5.211237859084074e-17
+ - 8.761393650585099e-17
+ - 4.0333326668085624e-16
+ - -3.685916809536291e-16
+ - -2.7462396336760516e-17
+ - -5.100395657001969e-16
+ - -3.3914405114674135e-17
+ - -1.2639319759810263e-16
+ - -1.8485418739028783e-16
+ - 4.4977945807570874e-17
+ - -1.1117307432712692e-16
+ - 3.714868130975647e-16
+ - -1.2126467780027386e-16
+ - 2.3760763095585717e-17
+ - -2.604791748929484e-16
+ - -2.4013053182414393e-16
+ - 3.13915042463874e-17
+ - 1.8131799027162364e-16
+ - 7.451242957877672e-16
+ - 9.578751493364059e-17
+ - -2.605618929542037e-17
+ - 1.0124690697649058e-16
+ - -1.2291903902537991e-16
+ - -1.8826630741706907e-16
+ - -1.4124108959342948e-17
+ - 1.4095157637903592e-16
+ - -1.4698999485067302e-16
+ - -9.59529510561512e-17
+ - 1.0918784085699964e-17
+ - -7.076530140391152e-17
+ - 4.3038207271134025e-16
+ - 1.2986735617082533e-17
+ - 5.051798796014478e-16
+ - 1.258141711693155e-16
+ - 1.2759260948630452e-16
+ - 1.1605343994118978e-16
+ - 1.380357647197865e-16
+ - 6.691891155553994e-17
+ - -8.983181452325879e-17
+ - 8.503416697045123e-17
+ - 1.7039920618592368e-16
+ - 3.130116061386012e-16
+ - -2.622989722405651e-16
+ - 4.4303793608340157e-16
+ - -9.231335636091788e-17
+ - 1.1415092453231782e-16
+ - -5.769843266498791e-17
+ - -5.017677595746666e-16
+ - 1.4179943650690277e-16
+ - 8.70194004405785e-17
+ - 2.7902870012945006e-16
+ - 3.0746303368596034e-16
+ - 1.2549984253654534e-15
+ - -3.757054342215851e-16
+ - 6.299807545203858e-16
+ - -1.0922092808150177e-15
+ - -2.603137387704378e-16
+ - 1.0157777922151179e-16
+ - 2.439562421572017e-16
+ - 1.0466936676092873e-16
+ - 2.1470506774579522e-16
+ - 1.8499894399748461e-16
+ - -3.4569945750122404e-16
+ - -4.6652986547990755e-17
+ - 1.4227506535912076e-17
+ - -7.001256704648825e-16
+ - -2.0050858048285388e-16
+ - 1.993195083523089e-16
+ - 1.4776030679611302e-16
+ - -3.566802801328655e-16
+ - 7.928526171320769e-17
+ - -2.066297170157463e-16
+ - -3.032444125619399e-16
+ - -1.5209783513318794e-16
+ - -1.6576699475562672e-16
+ - 1.4905794638205559e-16
+ - 1.917404659897918e-16
+ - -1.5542723709871388e-16
+ - 1.7188813128851913e-16
+ - -1.6427806965303127e-16
+ - 2.0480991966812963e-16
+ - 1.435985543392056e-16
+ - -4.1507923137910924e-16
+ - 9.839830374201109e-17
+ - 8.867376166568455e-17
+ - -7.734138727370808e-17
+ - 6.130028724477349e-16
+ - 1.3815984181166945e-16
+ - 2.5729452953461926e-16
+ - 2.3161057151484775e-18
+ - 6.249349527838124e-17
+ - -2.1837568171399928e-16
+ - 1.9836308076904447e-16
+ - 9.537392462736408e-17
+ - 2.7387950081630746e-16
+ - 3.271499322647224e-16
+ - 8.780522202250388e-16
+ - -1.8805951226393082e-16
+ - 3.815784165707116e-16
+ - 1.3983488255208933e-16
+ - -8.712279801714763e-17
+ - -1.886798977233456e-16
+ - -7.444625512977249e-18
+ - 7.262645778215583e-17
+ - -2.148601641106489e-17
+ - -2.6089276519922493e-16
+ - 9.181704799338607e-18
+ - 3.360007648190398e-16
+ - -4.2483996260723496e-16
+ - -1.406207041340147e-17
+ - -1.558408274049904e-16
+ - -2.302043644735076e-16
+ - -1.703992061859237e-17
+ - 1.3946265127644047e-16
+ - 2.6453235989445825e-16
+ - -2.0256102237775108e-16
+ - -2.5146290621612038e-17
+ - -3.441071348220595e-17
+ - 2.067951531382569e-16
+ - -2.0886310466963946e-16
+ - 3.9539233280034717e-17
+ - -3.263227516521694e-17
+ - 4.470911210849115e-16
+ - 6.948317145445432e-17
+ - 4.590852399669303e-17
+ - -1.0008885411891634e-16
+ - 1.8264147925170849e-16
+ - 5.700825384138898e-17
+ - -9.919549905735908e-16
+ - -4.2723878638363873e-17
+ - -5.252596889711725e-17
+ - -6.534726839168919e-17
+ - -1.9753073027766298e-16
+ - 2.369872454964424e-17
+ - 6.600901288173161e-17
+ - -3.76904846109787e-16
+ - -2.3657365519016588e-17
+ - 4.168990287267259e-17
+ - 1.2655863372061322e-17
+ - -2.039827390555766e-16
+ - 4.441959889409758e-17
+ - -1.770166510863479e-16
+ - 3.636285972783109e-16
+ - 5.018504776359219e-16
+- - -5.569945815095254
+ - -4.461660747691758
+ - 3.3794912714234946
+ - -3.3960535484107908
+ - 2.314082652053122
+ - -0.36812937787350786
+ - -1.6072291818288054
+ - 3.0646699036603064
+ - -2.4233741064012144
+ - -4.564862151909897
+ - 1.9108576394025207
+ - 1.318243009402719
+ - -0.21753931002055335
+ - -1.743046343156543
+ - 3.180614796278403
+ - -2.291763971253346
+ - -4.034224835893678
+ - 1.429033673241004
+ - 1.156668869189057
+ - 0.030317124330064848
+ - -1.9541946744975995
+ - 3.243348616444127
+ - -3.4627214728532536
+ - 2.518276537196307
+ - -0.7567810271452573
+ - -0.7229195598314881
+ - -0.6192863475009459
+ - 4.0159185555314485
+ - 2.2028393165109423
+ - -3.429630963165877
+ - 2.338351607552183
+ - -0.5128987268320228
+ - -0.8652993212462534
+ - -0.979354667738322
+ - 4.390899589699104
+ - 2.2607259072193453
+ - -3.3612675742793616
+ - 2.2204244513121667
+ - -0.36288757469412264
+ - -1.714968575903254
+ - 3.122184272406042
+ - -3.519962874372615
+ - 5.694335794927015
+ - 5.702073579545318
+ - 3.101630022854088
+ - 2.9956747453083654
+ - 0.9404524700429104
+ - 0.7870366241814308
+ - -1.6526787543581878
+ - 3.0897310934407898
+ - -3.5253592591500738
+ - 2.7496371583320753
+ - -1.0952164951245034
+ - -0.9162021089184081
+ - 1.6455397227643034
+ - 2.5995884406576555
+ - -4.128559158545896
+ - -2.2709326505583167
+ - 2.6523771773358
+ - -0.9476182230269227
+ - -1.1532788225133583
+ - 1.754847210050772
+ - 2.613204039409199
+ - -3.6912749167968903
+ - -2.224559560445301
+ - 2.482033275064966
+ - -0.70658960079304
+ - -1.2949502757916191
+ - 2.9442125868886935
+ - -3.5338349547468297
+ - 2.9795939541709475
+ - -1.0363899472335083
+ - -2.3964313572923
+ - -2.4755856719818374
+ - -1.0863653868678969
+ - 3.025303536652785
+ - -3.5276618357846035
+ - 2.8390891781504424
+ - -0.9866956372537733
+ - -2.486855112145419
+ - -3.0921810692870224
+ - -1.3364347371561567
+ - 3.145856031340004
+ - -3.514837721240848
+ - 2.746309544294078
+ - -0.9784020669289494
+ - -1.030688591442283
+ - 2.708706437564917
+ - -4.550628887077849
+ - -5.481459909749614
+ - -2.770503988334327
+ - -2.106608699997955
+ - 2.115675633461316
+ - -3.31754289420144
+ - 3.444655599873539
+ - -2.373078664347712
+ - 0.5624518014742987
+ - 1.4328468198068103
+ - -1.943982969514094
+ - -3.2569366482971565
+ - 4.027195190626857
+ - 2.264750439829388
+ - -2.259136626221649
+ - 0.40977512272529315
+ - 1.6558269188008985
+ - -1.9634473848028429
+ - -3.059487475579009
+ - 3.3897946892186703
+ - 2.107373019324821
+ - -2.06300424801074
+ - 0.16272120539104115
+ - 1.7876578157518301
+ - -3.2107447739584565
+ - 3.4962896717902874
+ - -2.6496686282924995
+ - 0.7064175575826289
+ - 1.8630817290300414
+ - 2.9407381813776157
+ - 1.386621710735939
+ - -3.271147300382887
+ - 3.4518633222590567
+ - -2.4792915133052036
+ - 0.569554190559106
+ - 1.742392813482098
+ - 3.6828587018571413
+ - 2.112638794203842
+ - -2.062329798767921
+ - 0.1636967145131893
+ - 1.7852995784832857
+ - -3.207735555290639
+ - 3.4936915264345
+ - -2.6483567186607297
+ - 2.954482091546584
+ - 3.0659009840496503
+ - 3.4186352787390186
+ - 3.4486455424797846
+ - 4.414106996470358
+ - 4.34398265000759
+ - -3.1788921524351426
+ - 3.5065640476312354
+ - -2.699494323949688
+ - 0.9074890168642612
+ - 1.1009886325540756
+ - -2.7555472513877173
+ - 2.2887630213041024
+ - 4.193011807640442
+ - -2.4364433737559965
+ - -1.5702439853490535
+ - 0.7606674470572666
+ - 1.2465054805217388
+ - -2.904001548948222
+ - 2.294221821748328
+ - 3.9346164387130598
+ - -1.9977771018048327
+ - -1.4503182417629923
+ - 0.5167996727958633
+ - 1.4752118399253626
+ - -2.9872529708291835
+ - 3.5303753397756568
+ - -2.871607272063976
+ - 1.2817852116792623
+ - 0.3764667334018186
+ - -0.007005340740256092
+ - -3.8892981613646156
+ - -2.0740909939877876
+ - 3.520475174961369
+ - -2.7202557783395207
+ - 1.0477448604710748
+ - 0.5113178560581702
+ - 0.29416921474017166
+ - -4.52396264411363
+ - -2.2725944041754227
+ - 3.4897939059401994
+ - -2.6191579065236286
+ - 0.9024129427447262
+ - 1.2163912865786328
+ - -2.8285040823939824
+ - 3.5266613101902013
+ - -5.068235477028372
+ - -6.242778852004189
+ - 1.0975859547966124e-15
+ - 1.62838775387189e-15
+ - 2.072914615057887e-16
+ - -1.1315830779725419e-16
+ - -1.586739210029845e-16
+ - -3.970466940254532e-17
+ - -5.188490392238866e-16
+ - -1.4889251025954498e-17
+ - 5.2939559203393765e-17
+ - 1.1249656330721175e-17
+ - -6.427193359537025e-17
+ - 6.12279089411751e-16
+ - -2.283018490646356e-17
+ - 4.344352577128501e-16
+ - 5.360130369343619e-17
+ - -4.268251960773622e-17
+ - -9.59529510561512e-17
+ - -3.059120700374234e-16
+ - -1.9732393512452473e-16
+ - -9.132073962585424e-17
+ - -6.121136532892404e-18
+ - -2.605618929542037e-16
+ - -1.2544193989366665e-16
+ - -2.4972582692975906e-16
+ - 2.26482051717019e-16
+ - -7.444625512977249e-17
+ - -2.6180266387303323e-17
+ - 1.4884081147126042e-16
+ - -7.390858773161302e-17
+ - 2.5973471234165066e-17
+ - -3.8182657075447753e-16
+ - 2.2524128079818944e-16
+ - 2.956343509264521e-16
+ - -2.2019547906161594e-16
+ - -3.510554519675049e-16
+ - 1.494715366883321e-16
+ - -1.0732668447875533e-16
+ - -1.1034589371457388e-16
+ - -7.246102165964522e-17
+ - 3.4700226696599506e-16
+ - 1.0141234309900118e-16
+ - 7.543887186483611e-17
+ - 2.6138907356675675e-16
+ - -1.936016223680361e-16
+ - -1.213887548921568e-16
+ - 3.2752216354037126e-16
+ - -1.3698110943878138e-16
+ - -2.2234614865425384e-16
+ - 5.924267547104784e-16
+ - 7.080666043453917e-17
+ - -2.0596797252570387e-16
+ - 7.345363839470886e-17
+ - 5.724089838866952e-17
+ - 1.406207041340147e-16
+ - -2.0745689762829932e-16
+ - -9.529120656610878e-17
+ - 4.450231695535288e-17
+ - -4.618976540496107e-16
+ - 1.887626157846009e-16
+ - 5.897797767503087e-17
+ - 3.163759047862192e-16
+ - -1.0066788054770346e-16
+ - 3.0200364164311035e-16
+ - -1.799945012915388e-16
+ - -1.2904017555827232e-16
+ - -2.748721175513711e-16
+ - 1.7536228986124187e-17
+ - 1.372292636225473e-16
+ - 4.450231695535288e-17
+ - -1.1497810514487085e-16
+ - -1.4285409178790788e-16
+ - 1.0389388493666026e-16
+ - -8.056739166266488e-17
+ - -3.8571431963347676e-16
+ - -1.2291903902537991e-16
+ - -2.9811589276411117e-16
+ - 2.1060018395600082e-16
+ - 1.049692197329792e-16
+ - -8.106370003019671e-18
+ - -2.1341259803868112e-16
+ - -4.5494933690416516e-17
+ - 1.9554549680753572e-16
+ - -8.271806125530276e-19
+ - -4.235164736271501e-17
+ - -1.4301952791041848e-16
+ - -5.285684114213846e-17
+ - -3.1101991031993836e-16
+ - -2.2929446579969927e-16
+ - -5.507368518378058e-16
+ - 2.32768624372422e-16
+ - -4.0664198913106836e-16
+ - 1.3009896674234017e-15
+ - 4.194115898373557e-16
+ - -1.5575810934373509e-16
+ - -6.231901186792084e-17
+ - -7.930594122852153e-18
+ - -5.616556359235058e-16
+ - -7.64728476305274e-17
+ - 1.555099551599692e-17
+ - -1.2359112327307925e-16
+ - 1.894243602746433e-17
+ - -2.686682629572234e-16
+ - 1.5772266329854853e-16
+ - -4.354278744479137e-16
+ - -2.597347123416507e-16
+ - 3.1035816582989593e-16
+ - 4.441959889409758e-17
+ - -4.79764755280756e-18
+ - 4.137557423990244e-16
+ - 1.2424252800546476e-16
+ - -3.705769144237564e-17
+ - 3.037407209294717e-16
+ - 2.513801881548651e-16
+ - 1.3358966892731395e-17
+ - 1.1398548840980721e-16
+ - 5.4428484305989215e-17
+ - -2.9592386414084565e-16
+ - -2.224702257461368e-16
+ - 2.989430733766642e-16
+ - -2.0878038660838416e-16
+ - 1.2391165576044355e-16
+ - 1.7610675241253957e-16
+ - -4.877056891612651e-16
+ - -1.6837261368516876e-16
+ - 1.1882449499324243e-16
+ - 3.1350145215759744e-16
+ - 9.247879248342848e-17
+ - 4.483732510343687e-16
+ - -8.429228935856774e-17
+ - -3.1887812613919217e-17
+ - 2.0927669497591597e-17
+ - -1.1704605667625342e-16
+ - -6.865599084190129e-16
+ - -1.7048192424717898e-16
+ - -9.562207881112999e-17
+ - 2.4641710447954694e-16
+ - -9.31405369734709e-17
+ - 7.246102165964522e-17
+ - -4.0664198913106836e-16
+ - 5.781992481745663e-17
+ - -2.1175823681357506e-16
+ - 5.371710897919362e-16
+ - -8.801201717564213e-17
+ - -1.0422475718168147e-16
+ - -5.604975830659316e-16
+ - 9.287170327439117e-17
+ - 2.3657365519016588e-17
+ - -1.9653811354259935e-16
+ - 1.737079286361358e-17
+ - -1.2076836943274203e-17
+ - 1.2904017555827232e-16
+ - 5.8134253450226785e-16
+ - 1.0836066024444661e-16
+ - 2.417021749879947e-16
+ - 5.724089838866952e-16
+ - 1.195275985139125e-16
+ - 1.225881667803587e-16
+ - 3.331883507363595e-16
+ - -1.3863547066388744e-16
+ - 1.8793543517204786e-16
+ - -1.9935052762527964e-16
+ - -2.160595759988508e-16
+ - -8.139457227521791e-17
+ - -1.5422782521051199e-16
+ - 5.09543257332665e-17
+ - -5.426304818347861e-17
+ - -1.5542723709871388e-16
+ - 2.187065539590205e-16
+ - -2.752857078576476e-16
+ - 1.1812139147257235e-16
+ - -7.77549775799846e-18
+ - -5.922613185879678e-17
+ - -2.043136113005978e-16
+ - -2.0427225226997016e-16
+ - -5.897797767503087e-17
+ - 1.8032537353656003e-17
+ - -1.3011551035459125e-16
+ - -4.466775307786349e-17
+ - -2.2896359355467806e-16
+ - -9.932784795536756e-16
+- - -8.021120742727215
+ - -6.449754577647828
+ - 4.771566435980908
+ - -4.534174932667171
+ - 2.8304678218689294
+ - -0.05083746912845887
+ - -2.6125783592366636
+ - 4.433370182800489
+ - -3.328178303044343
+ - -6.357845376195345
+ - 2.07839649509895
+ - 1.5462090140973055
+ - 0.15747808738768204
+ - -2.7895349550768564
+ - 4.564160215595194
+ - -3.120062962769249
+ - -5.579134621225073
+ - 1.471586717446689
+ - 1.330384852661812
+ - 0.4984641783797416
+ - -3.0625183027528147
+ - 4.6324789955165615
+ - -4.660807055940211
+ - 3.1354451645699832
+ - -0.5922989002703346
+ - -1.2743545049532883
+ - -1.3669822712257516
+ - 5.576768417409013
+ - 3.1085687041740506
+ - -4.5963310296230375
+ - 2.8664799921757913
+ - -0.25183243748480616
+ - -1.4649374954595675
+ - -1.898293313026584
+ - 6.057769852490979
+ - 3.1662926357447456
+ - -4.471701731853028
+ - 2.691792547190178
+ - -0.04357155411354972
+ - -2.7530078294822697
+ - 4.498813986074649
+ - -4.7897074450450745
+ - 7.457561588781027
+ - 7.49117900005947
+ - 4.457829152916738
+ - 4.337659781018875
+ - 2.090781266254945
+ - 1.8919364816850772
+ - -2.671925481354105
+ - 4.462008382891615
+ - -4.806265021465656
+ - 3.486509030120485
+ - -1.0686532592303584
+ - -1.6986265019059166
+ - 2.468577161776032
+ - 4.026152107797999
+ - -5.469969080590012
+ - -3.059139819697238
+ - 3.3380769870586655
+ - -0.8603150580886245
+ - -2.014601901780816
+ - 2.60047676259117
+ - 3.9858769028500083
+ - -4.851085820301498
+ - -2.9774434345976313
+ - 3.0810133927924315
+ - -0.5220472557278932
+ - -2.2022241781714773
+ - 4.293212378274422
+ - -4.854070943541111
+ - 3.843396199250196
+ - -1.156879793628471
+ - -2.8670755535228616
+ - -3.8114004905256347
+ - -1.7529569036159243
+ - 4.388013526315899
+ - -4.813559828517065
+ - 3.624162731798452
+ - -1.0679449558100853
+ - -2.9092833453763363
+ - -4.687599424543106
+ - -2.0954227336338613
+ - 4.525447639907285
+ - -4.776095615751811
+ - 3.4814128382159346
+ - -0.9037168865882443
+ - -1.8514877513830417
+ - 4.010792826319415
+ - -6.550656607134548
+ - -7.920761601298438
+ - -4.531873732828601
+ - -3.495458477433067
+ - 3.269459139857281
+ - -4.71021998034219
+ - 4.625428364105966
+ - -2.9181833246089792
+ - 0.3207987623455776
+ - 2.3840600288259286
+ - -2.8549016619248313
+ - -4.893552509075676
+ - 5.233738074803311
+ - 2.996598871474074
+ - -2.7489806802066927
+ - 0.10851236779660994
+ - 2.676064354073889
+ - -2.8493719962685096
+ - -4.541315407311484
+ - 4.3661164358678315
+ - 2.773051738993874
+ - -2.4602119961247064
+ - -0.2331119331532512
+ - 2.8474337135846963
+ - -4.597102484564771
+ - 4.7318537091559225
+ - -3.333981038025613
+ - 0.6864889759121641
+ - 2.0922541488287756
+ - 4.3953134818774915
+ - 2.1401675785010776
+ - -4.66208372256604
+ - 4.639356284716828
+ - -3.0768781552505042
+ - 0.49167218939061474
+ - 1.8691314558961096
+ - 5.022730296949261
+ - 2.7775837439190263
+ - -2.4589386629711716
+ - -0.23213545837492533
+ - 2.844464738328842
+ - -4.593047994107066
+ - 4.728145365181088
+ - -3.3318693301267084
+ - 3.3304079864873533
+ - 3.5012816680744936
+ - 4.616421539687674
+ - 4.686083200932397
+ - 6.631240974631444
+ - 6.5561947801059155
+ - -4.562177127354995
+ - 4.755213985066915
+ - -3.4097699431216237
+ - 0.8038651931397534
+ - 1.9450484325444655
+ - -4.067627397336442
+ - 3.1849933726846733
+ - 5.925745431597765
+ - -2.8703104311036958
+ - -1.935186859064883
+ - 0.5977328477568158
+ - 2.1381416146216656
+ - -4.245686255961522
+ - 3.1695257831431918
+ - 5.522525444121442
+ - -2.2865534528783007
+ - -1.7595803463939554
+ - 0.25727962381990915
+ - 2.439641801110198
+ - -4.343629294226384
+ - 4.823943617721597
+ - -3.6745054046412764
+ - 1.3332921807783968
+ - 0.8099380182904595
+ - 0.5136238266584916
+ - -5.4824497051697145
+ - -2.974858971120798
+ - 4.79086365344821
+ - -3.4414200946042883
+ - 1.0015286311822365
+ - 1.0079367870412468
+ - 0.9999140063761188
+ - -6.3305564011009485
+ - -3.2275975393956844
+ - 4.716954245069588
+ - -3.2876302768430654
+ - 0.7967242347529808
+ - 2.098233453425414
+ - -4.1555768833088695
+ - 4.869735255747659
+ - -6.8543952822483005
+ - -8.469965116785012
+ - 1.5531143181295646e-15
+ - 2.351178173120726e-15
+ - 3.2855613930606254e-16
+ - -1.258968892305708e-16
+ - -2.371113225883254e-16
+ - -6.253485430900889e-17
+ - -7.588554939561475e-16
+ - -6.782881022934827e-17
+ - -2.7131524091739305e-17
+ - 3.8050308177439267e-17
+ - -7.254373972090053e-17
+ - 9.13869140748585e-16
+ - -1.2242273065784808e-17
+ - 6.218743845173661e-16
+ - 6.849055471939069e-17
+ - -1.0124690697649058e-16
+ - -1.6725591985822217e-16
+ - -4.52715949250272e-16
+ - -2.7718822326651957e-16
+ - -9.578751493364059e-17
+ - -1.1663246636997689e-17
+ - -3.8265375136703055e-16
+ - -1.6183788684599984e-16
+ - -3.4021938594306023e-16
+ - 3.5204806870256853e-16
+ - -1.492233825045662e-16
+ - -5.1161120886404756e-17
+ - 1.94801034256238e-16
+ - -6.966928709227876e-17
+ - 1.0257039595657542e-16
+ - -4.844383257416807e-16
+ - 3.095309852173429e-16
+ - 5.67445900211377e-16
+ - -2.623816903018204e-16
+ - -4.764560328305439e-16
+ - 1.1967235512110928e-16
+ - -1.6328545291796764e-16
+ - -1.6361632516298885e-16
+ - -1.4277137372665258e-16
+ - 5.398180677521059e-16
+ - 1.139027703485519e-16
+ - 1.98357910890216e-16
+ - 3.603198748280988e-16
+ - -2.413713027429735e-16
+ - -1.378703285972759e-16
+ - 3.930762270851987e-16
+ - -1.6915843526709413e-16
+ - -3.656138307484382e-16
+ - 8.099752558119246e-16
+ - 9.214792023840727e-17
+ - -2.32768624372422e-16
+ - 1.3334151474354806e-16
+ - 7.601789829362323e-17
+ - 1.5187036046473586e-16
+ - -3.5039370747746247e-16
+ - -1.317698715796973e-16
+ - 5.806807900122254e-17
+ - -6.246867986000464e-16
+ - 2.6486323213947946e-16
+ - 8.321436962283457e-17
+ - 4.2009401384271197e-16
+ - -1.407861402565253e-16
+ - 4.1888426219685317e-16
+ - -2.3797986223150606e-16
+ - -1.8367545501739977e-16
+ - -3.719831214650965e-16
+ - -3.0068015266302556e-17
+ - 1.8967251445840922e-16
+ - -1.323488980084844e-18
+ - -1.6080391108030856e-16
+ - -2.3161057151484775e-16
+ - 1.196103165751678e-16
+ - -1.3052910066086777e-16
+ - -4.936613895716469e-16
+ - -1.889280519071115e-16
+ - -3.924144825951563e-16
+ - 2.63374307036884e-16
+ - 1.0670629901934056e-16
+ - 2.322309569742625e-17
+ - -3.298796282861474e-16
+ - -4.9961708998202865e-17
+ - 2.541098841762901e-16
+ - -1.4889251025954496e-18
+ - -1.9852334701272664e-18
+ - -2.010048888503857e-16
+ - -9.59529510561512e-17
+ - -4.513097422089319e-16
+ - -3.330229146138489e-16
+ - -8.384302688837488e-16
+ - 2.8095189505363585e-16
+ - -6.246867986000464e-16
+ - 1.9124415762226e-15
+ - 5.955907205534938e-16
+ - -2.397996595791227e-16
+ - -1.336930665038831e-16
+ - -1.614553158126941e-17
+ - -7.868141986604398e-16
+ - -1.3340355328948954e-16
+ - 8.023651941764367e-17
+ - -1.6868280641487614e-16
+ - 1.9604180517506753e-17
+ - -2.7098436867237187e-16
+ - 2.3330629177058146e-16
+ - -5.842376666462034e-16
+ - -3.094482671560876e-16
+ - 4.830734777309682e-16
+ - 4.582580593543773e-17
+ - 2.1672132048889322e-17
+ - 5.61159327555974e-16
+ - 1.9041697700970695e-16
+ - -1.819797347616661e-17
+ - 3.894366323899654e-16
+ - 3.268190600197012e-16
+ - 2.812414082680294e-17
+ - 1.3400325923359048e-16
+ - 1.192794443301466e-16
+ - -4.177985876428773e-16
+ - -3.1085447419742775e-16
+ - 4.3625505506046675e-16
+ - -2.772709413277749e-16
+ - 1.4608009617686469e-16
+ - 2.486504921334401e-16
+ - -7.429736261951294e-16
+ - -2.4447323004004733e-16
+ - 1.2527650377115604e-16
+ - 3.7603630646660633e-16
+ - 1.2341534739291173e-16
+ - 5.988270647001075e-16
+ - -1.480601597681635e-16
+ - -5.707546226615891e-17
+ - -5.6248281653605874e-18
+ - -1.8106983608785773e-16
+ - -1.0566405144752376e-15
+ - -1.653534044493502e-16
+ - -1.8082168190409183e-16
+ - 2.9745414827406875e-16
+ - -1.2498699055676248e-16
+ - 8.503416697045123e-17
+ - -5.528875214304437e-16
+ - 7.080666043453917e-17
+ - -2.8852059765849605e-16
+ - 7.229558553713461e-16
+ - -1.0670629901934056e-16
+ - -1.8429584047681454e-16
+ - -6.954934590345856e-16
+ - 1.3205938479409087e-16
+ - 5.608284553109528e-17
+ - -2.1771393722395686e-16
+ - 2.8785885316845363e-17
+ - -3.010937429693021e-17
+ - 1.3995895964397228e-16
+ - 7.79204137024952e-16
+ - 1.4872707413703438e-16
+ - 3.1441135083140577e-16
+ - 6.973132563822022e-16
+ - 1.8098711802660243e-16
+ - 1.4128244862405713e-16
+ - 4.676879183374818e-16
+ - -2.4054412213042045e-16
+ - 2.2582030722697656e-16
+ - -2.5559880927888555e-16
+ - -2.240005098793599e-16
+ - -1.2755125045567687e-16
+ - -2.1432249671248945e-16
+ - 1.4161332086907834e-16
+ - -7.634877053864444e-17
+ - -2.0199750558544933e-16
+ - 3.0241723194938687e-16
+ - -3.4079841237184735e-16
+ - 1.5716431638507523e-16
+ - -4.1855338995183194e-17
+ - -9.92616735063633e-18
+ - -2.6999175193730823e-16
+ - -2.800419963798275e-16
+ - -7.543887186483611e-17
+ - 5.591740940858467e-17
+ - -1.7205356741102973e-16
+ - -3.474158572722716e-17
+ - -3.546950466627382e-16
+ - -1.4042218078700196e-15
+- - 3.969482458686773
+ - 3.146046723819502
+ - -2.5593832707433233
+ - 2.8849398204724044
+ - -2.354846987072703
+ - 0.8946740385948537
+ - 0.7177532838798285
+ - -2.177986275666195
+ - 1.9474661421093367
+ - 3.547567703713747
+ - -2.2799910200321465
+ - -1.419644635524824
+ - 0.7766370169941901
+ - 0.8408807684838574
+ - -2.3090144548387648
+ - 1.8790211514051498
+ - 3.189256070293189
+ - -1.8179140810774934
+ - -1.281517802400503
+ - 0.5773244744028558
+ - 1.0328099380770475
+ - -2.384687237388008
+ - 2.8907316171079294
+ - -2.4855117987027264
+ - 1.1965040003525982
+ - 0.1970793896480756
+ - -0.2065790219671824
+ - -3.1435060862180797
+ - -1.656710785311793
+ - 2.891026906225841
+ - -2.3697926842838917
+ - 1.0089816689666675
+ - 0.3182590925800224
+ - 0.032595075405207376
+ - -3.491198321203312
+ - -1.7329241503825268
+ - 2.877076033917033
+ - -2.293316779019726
+ - 0.8905487744657403
+ - 0.8146394672620488
+ - -2.242711357678279
+ - 2.8681718477991285
+ - -5.0709060315547925
+ - -5.045791077843991
+ - -2.222349001513734
+ - -2.102640078318432
+ - 0.3339653776729967
+ - 0.47341169278804457
+ - 0.7584950401988393
+ - -2.2060399929202905
+ - 2.8600332108008377
+ - -2.625976708384756
+ - 1.4526875046160546
+ - 0.11462553007799288
+ - -1.0378885045820452
+ - -1.4673556240678367
+ - 3.5905915748876076
+ - 1.9063459938681517
+ - -2.567137636373863
+ - 1.3426855074220216
+ - 0.3191913339581804
+ - -1.1505714030372813
+ - -1.5587101416556601
+ - 3.2641648929320497
+ - 1.893632833812052
+ - -2.4627029643121987
+ - 1.1579391604921148
+ - 0.44157585656860937
+ - -2.046725746859782
+ - 2.817494039006179
+ - -2.754765436125101
+ - 1.196194861121644
+ - 2.5041023140551233
+ - 1.4282971030209861
+ - 0.5171617254695041
+ - -2.1335434648330334
+ - 2.8571504743688534
+ - -2.676741385174281
+ - 1.1844679089670587
+ - 2.688551974927302
+ - 1.8837286512455778
+ - 0.7194433280348869
+ - -2.269710573917203
+ - 2.872983008596526
+ - -2.624019612197796
+ - 1.3649883775750504
+ - 0.21255510742952613
+ - -1.801534436405023
+ - 3.2465699836177406
+ - 3.8695220180591985
+ - 1.2351611225778472
+ - 0.8716045952554872
+ - -1.2252684403938554
+ - 2.434784790968915
+ - -2.933063135279019
+ - 2.350714072523781
+ - -1.089110585168438
+ - -0.6051169465094083
+ - 1.3098222980976297
+ - 2.043836465153869
+ - -3.641443440664444
+ - -1.9750854214428477
+ - 2.2774234769936377
+ - -0.9690340593142945
+ - -0.8027792705742325
+ - 1.3694583731113228
+ - 1.9957091793324964
+ - -3.118625204270014
+ - -1.8587198904694489
+ - 2.14533575934194
+ - -0.7746045091499351
+ - -0.9228593019673376
+ - 2.3032378138966227
+ - -2.926169437015538
+ - 2.523983343766359
+ - -0.9545132467334174
+ - -2.1332426163027036
+ - -1.8769999492221106
+ - -0.7927540483709709
+ - 2.377225215459231
+ - -2.932461047322953
+ - 2.419511074337967
+ - -0.8538697352619475
+ - -2.1144822486732915
+ - -2.2420767923789278
+ - -0.9280979201951577
+ - 2.4862388805754123
+ - -0.7758609557929621
+ - -0.920609792368821
+ - 2.3007100147574686
+ - -2.9242567312160284
+ - 2.523220651819161
+ - -3.365281801314759
+ - -3.4304538271782676
+ - -2.8468726849603967
+ - -2.8302416560283508
+ - -2.7712993865593867
+ - -2.687173674381533
+ - 2.2658174250238043
+ - -2.9217966423851167
+ - 2.553969161642699
+ - -1.3537853823233648
+ - -0.31563706907517586
+ - 1.8069709956603344
+ - -1.7824583524652327
+ - -3.1416057729317592
+ - 2.606764733649099
+ - 1.5636687629165247
+ - -1.2409872663035548
+ - -0.4408532876911066
+ - 1.9624145926208711
+ - -1.8181558817992631
+ - -2.999876892421819
+ - 2.228746746040007
+ - 1.482159377452034
+ - -1.0534883443441028
+ - -0.6427565235950412
+ - 2.050733283142266
+ - -2.891775669298236
+ - 2.6535780396664785
+ - -1.6336027783437708
+ - 0.09685031761959913
+ - 0.7190763017900274
+ - 2.933221904241169
+ - 1.4944624928094976
+ - -2.9094471575375485
+ - 2.5672827683029205
+ - -1.4586932345379913
+ - 0.005934863364813397
+ - 0.5761326301249378
+ - 3.4753153413041913
+ - 1.6810860877636296
+ - -2.9290501925209815
+ - 2.5054874782570327
+ - -1.349942312974077
+ - -0.41557911846045487
+ - 1.8822605064561235
+ - -2.8193899410060763
+ - 4.217669168901312
+ - 5.158164709721403
+ - -7.345363839470886e-17
+ - -6.921847365843735e-16
+ - -9.098986738083303e-17
+ - 1.0893968667323373e-16
+ - 4.156582578078964e-18
+ - -1.2407709188295415e-16
+ - 3.6147792768567304e-16
+ - 1.4690727678941772e-16
+ - -1.2374621963793294e-16
+ - 1.406207041340147e-17
+ - 1.0265311401783072e-16
+ - -5.48586182245168e-16
+ - 1.619619639378828e-16
+ - -3.3120311726623223e-16
+ - -1.4401214464548212e-16
+ - 1.3565762045869652e-17
+ - 1.296605610176871e-16
+ - 2.514525664584635e-16
+ - 2.1473608701876596e-16
+ - -5.724089838866952e-17
+ - 7.444625512977249e-17
+ - 2.600655845866719e-16
+ - 8.12291361527073e-17
+ - 1.6121750138658507e-16
+ - -2.446800251931856e-16
+ - -7.130296880207099e-17
+ - 1.930432754545628e-17
+ - -1.3189394867158026e-16
+ - 6.410649747285964e-17
+ - -1.8694281843698425e-17
+ - 4.226892930145971e-16
+ - -1.889280519071115e-16
+ - -6.792807190285462e-16
+ - 2.0034314436034328e-16
+ - 2.4368740845812195e-16
+ - -2.3450570365878335e-16
+ - 1.773475233313691e-16
+ - 1.3251433413099503e-16
+ - 8.478601278668534e-18
+ - -3.1962258869048984e-16
+ - 1.9256764660234482e-16
+ - -1.9455288007247208e-16
+ - -1.680831004707752e-16
+ - 1.4814804770824726e-16
+ - 3.565148440103549e-17
+ - -1.5038143536214043e-16
+ - 1.192794443301466e-16
+ - 9.694556779121483e-17
+ - -3.9803931076051687e-16
+ - -5.463527945912747e-17
+ - 1.376428539288238e-16
+ - -4.9961708998202865e-17
+ - -5.790264287871194e-17
+ - -1.4591466005435408e-16
+ - -4.863822001811802e-17
+ - 1.86736023283846e-17
+ - -7.634877053864444e-17
+ - 3.7901415667179723e-16
+ - -9.429858983104514e-17
+ - 4.3923290526565763e-17
+ - -1.31687153518442e-16
+ - 9.92616735063633e-18
+ - -1.4843756092264082e-16
+ - 1.348304398461435e-16
+ - 5.542110104105285e-17
+ - 2.842192584732203e-16
+ - -1.7099891213002462e-16
+ - -1.0629270871306404e-16
+ - -1.5902547276331955e-16
+ - 2.1672132048889322e-17
+ - 2.661867211195643e-16
+ - -3.838118042246048e-17
+ - 1.0455562942670269e-16
+ - 1.3361810326087048e-16
+ - 1.6394719740801006e-16
+ - 9.032812289079061e-17
+ - -2.3706996355769773e-16
+ - -1.5236666883226767e-16
+ - 3.704735168471873e-17
+ - 4.455401574363745e-17
+ - 7.874759431504822e-17
+ - -1.1282743555223297e-16
+ - 1.1373733422604129e-17
+ - 1.3598849270371775e-16
+ - -1.2324991127040111e-17
+ - 1.2374621963793294e-16
+ - 2.5245552295118405e-16
+ - 8.995589161514175e-17
+ - 2.1014523461909666e-16
+ - 1.6436078771428657e-16
+ - 2.1208910905859627e-16
+ - -1.2037132273871659e-15
+ - -2.8442605362635857e-16
+ - 1.8136451918107975e-16
+ - 5.2608686958372554e-17
+ - -1.1166938269465874e-16
+ - 4.665298654799076e-16
+ - 1.811008553608285e-17
+ - 9.872400610820384e-17
+ - 2.0942145158311276e-16
+ - 8.735027268559971e-17
+ - 3.748782536090321e-16
+ - -1.1188134772662545e-16
+ - 1.5211851464850176e-16
+ - -2.246622543694023e-16
+ - -5.094605392714097e-16
+ - -3.0936554909483235e-17
+ - 1.1001502146955267e-17
+ - -1.5687480317068167e-16
+ - -8.133253372927643e-17
+ - 1.0422475718168147e-17
+ - -2.368218093739318e-16
+ - -2.3699758525409934e-16
+ - 5.4180330122223307e-17
+ - -1.3246263534271047e-16
+ - -2.897613685773256e-16
+ - 1.2151024704462554e-16
+ - 1.3454092663174995e-16
+ - -1.5683344414005402e-16
+ - 1.0501057876360685e-16
+ - 1.952146245625145e-17
+ - -1.1027351541097549e-16
+ - 2.9488988837515437e-16
+ - 1.0630304847072096e-16
+ - -1.5865324148767068e-16
+ - -1.8446127659932515e-16
+ - -1.5771749341972007e-16
+ - -2.2143624998044548e-16
+ - 1.1894857208512538e-16
+ - 3.3004506440865804e-17
+ - 8.271806125530276e-19
+ - -5.676526953645152e-17
+ - 6.794461551510568e-16
+ - -6.968996660759258e-17
+ - 3.30872245021211e-19
+ - -1.8661194619196302e-16
+ - 1.9240221047983421e-16
+ - 1.8793543517204786e-16
+ - 4.412181387357849e-16
+ - -5.765448869494603e-17
+ - 2.873625448009218e-16
+ - -2.6436692377194764e-16
+ - -7.77549775799846e-18
+ - -1.819797347616661e-17
+ - 6.587666398372311e-16
+ - -6.831477883922317e-17
+ - -2.0017770823783267e-17
+ - 1.1183481881716934e-16
+ - -5.608284553109528e-17
+ - -1.507536666377893e-17
+ - -1.253178628017837e-16
+ - -2.993566636829407e-16
+ - -4.5494933690416516e-17
+ - -1.8810087129455847e-16
+ - -3.457408165318517e-16
+ - -2.80931215538322e-17
+ - -6.319659879905131e-17
+ - -4.4270706383838036e-16
+ - 9.61183871786618e-17
+ - -6.038418471637102e-17
+ - 1.3789100811258971e-16
+ - -8.182884209680825e-17
+ - 5.459392042849982e-17
+ - 8.772250396124857e-17
+ - 2.395515053953568e-16
+ - 7.167520007771985e-17
+ - 7.974021105011186e-17
+ - -2.2300789314429626e-16
+ - 1.8727369068200544e-16
+ - -1.5493092873118206e-16
+ - 1.341686953561011e-16
+ - 7.213014941462401e-17
+ - 1.801599374140494e-16
+ - 1.6117614235595742e-16
+ - 2.3285134243367726e-17
+ - -5.745803329946468e-17
+ - 1.522012327097571e-17
+ - 2.9116757561866574e-17
+ - -2.6469779601696886e-16
+ - 7.292424280267491e-16
+- - -1.5161554758142444
+ - -1.1027773251371946
+ - 1.3298643839781799
+ - -2.5608169930776055
+ - 2.8836688130301247
+ - -2.293637541018435
+ - 0.8920735201975852
+ - 0.7222067353799324
+ - -1.3922646556151959
+ - -2.220950500926141
+ - 3.5719037734457206
+ - 1.954821097822244
+ - -2.212989924615692
+ - 0.7716054505204352
+ - 0.9186690675020085
+ - -1.440674462212091
+ - -2.1424606170167246
+ - 3.0462354533224203
+ - 1.8344537570344712
+ - -2.0741985457517504
+ - 0.5723130640114382
+ - 1.0346164545002805
+ - -2.4401170570978836
+ - 2.889692244508295
+ - -2.4820256203016777
+ - 0.8605554873593648
+ - 1.9849290287660923
+ - 2.0287090369633876
+ - 0.8881946452499598
+ - -2.5064083183997736
+ - 2.886351994691221
+ - -2.3660328651707085
+ - 0.7562950405363369
+ - 1.9448748399177291
+ - 2.3981430349401145
+ - 1.0201367053201469
+ - -2.60737978335962
+ - 2.875362214190201
+ - -2.2909474193375727
+ - 0.7960492119876643
+ - 0.8165953540689991
+ - -2.2450776325323085
+ - 4.915770915530549
+ - 4.815977178052384
+ - 0.8838476351310246
+ - 0.7081057285780163
+ - -3.0817715645505217
+ - -3.2236179099352404
+ - 0.8520699195427626
+ - 0.7627706059480408
+ - -2.206735997166538
+ - 2.871619015897506
+ - -2.6240997311370564
+ - 1.4481010065865476
+ - -0.0002402698684254405
+ - -0.572993800406608
+ - -3.2785108634005087
+ - -1.575149993328221
+ - 2.8840305278971425
+ - -2.5638988433486465
+ - 1.2692401629279992
+ - 0.14513309312687808
+ - -0.297891411485299
+ - -3.110391701027425
+ - -1.6301313686953227
+ - 2.89000785262894
+ - -2.4592053221044727
+ - 1.1554383661566507
+ - 0.5384540413405519
+ - -2.047744633140418
+ - 2.817597293717297
+ - -1.8030522456268416
+ - -3.2988264553249973
+ - 0.4427636143103531
+ - 0.5586540583559287
+ - 0.6610628085636525
+ - -2.188429933494821
+ - 2.8568617713570617
+ - -1.868254505466171
+ - -3.722301802760149
+ - 0.22170276379322598
+ - 0.4105830480590485
+ - 0.8568656871269668
+ - -2.2719618276209257
+ - 2.8721002950775905
+ - -2.577390401619139
+ - 1.3624827258345524
+ - 0.21726730305816105
+ - -1.250339437115688
+ - -1.369381448825522
+ - 1.7029301335854874
+ - 1.519454236279422
+ - -0.4548022272918387
+ - -1.2291850962772484
+ - 2.4351904608614596
+ - -2.9296484493254953
+ - 2.348806310918104
+ - -1.0844627579601096
+ - -0.2779450098436088
+ - 0.03497853554515881
+ - 3.659993084930193
+ - 1.8165628160463336
+ - -2.920898770826296
+ - 2.2738366262720455
+ - -0.8909389619719915
+ - -0.43533473494461006
+ - -0.21897791759643004
+ - 3.258632496024986
+ - 1.7597307802427609
+ - -2.897112728404686
+ - 2.1415229375817613
+ - -0.7722531462051428
+ - -1.0157184740885377
+ - 2.303864713832542
+ - -2.9256806613781983
+ - 1.6915086810950248
+ - 3.184292635363676
+ - 0.07331180781381787
+ - -0.27217085822235004
+ - -1.1309331257457498
+ - 2.4219681134351103
+ - -2.9316155752843938
+ - 1.643941657566707
+ - 3.374982678357211
+ - 0.3305193829551723
+ - -0.1282836471048432
+ - -1.3177818184077914
+ - 2.4877455517968996
+ - -0.7748460433720271
+ - -1.0136426369733555
+ - 2.303028213542318
+ - -2.926448683900993
+ - 4.993514436862369
+ - 4.9766031032004285
+ - 2.327947765694672
+ - 2.2182279347811558
+ - -0.043027239217379054
+ - -0.18088260521679542
+ - -0.9572458418353467
+ - 2.2678731060681283
+ - -2.9209599620263758
+ - 2.505367898965768
+ - -1.3510862912174086
+ - -0.3205826253991677
+ - 1.1260034607465965
+ - 1.65114155289826
+ - -3.55619612619424
+ - -1.9052246087230127
+ - 2.4423177926077466
+ - -1.2359385903652043
+ - -0.5219744588002224
+ - 1.2332190242953376
+ - 1.721808405364054
+ - -3.2194842802194463
+ - -1.885752113663091
+ - 2.3263562726551203
+ - -1.048384802589626
+ - -0.6450270444100777
+ - 2.118300497825376
+ - -2.8913418381648315
+ - 2.6506937520457767
+ - -1.1112320115866716
+ - -2.3754397417271744
+ - -1.5953451094375009
+ - -0.618854004559869
+ - 2.2018574995115587
+ - -2.9177572322851395
+ - 2.5640285746596247
+ - -1.0917632139433067
+ - -2.5317500164091293
+ - -2.066573451343644
+ - -0.8229959223340106
+ - 2.327284398099272
+ - -2.9283331214249984
+ - 2.5032125383146746
+ - -1.2607123571619088
+ - -0.4180481752366725
+ - 1.8855289185169328
+ - -3.3928143815881358
+ - -4.056312123404877
+ - 1.828896334354744e-16
+ - 8.084863307093292e-16
+ - -2.744171682144669e-17
+ - -1.5476549260867145e-16
+ - 1.6791766434826462e-17
+ - 2.870316725559006e-17
+ - -1.1241384524595646e-16
+ - -7.643148859989974e-17
+ - 2.911262165880381e-16
+ - -3.9539233280034717e-17
+ - -3.937379715752411e-17
+ - 3.2624003359091407e-16
+ - -2.5882481366784236e-16
+ - 6.009467150197746e-17
+ - 5.897797767503087e-17
+ - -1.1109035626587162e-16
+ - -4.4254162771586974e-17
+ - -3.5982356646056704e-17
+ - -3.550672779383871e-17
+ - 1.2118195973901855e-16
+ - 4.125563305108225e-17
+ - -5.422168915285096e-17
+ - -8.805337620626978e-17
+ - -1.0041972636393755e-16
+ - -1.8694281843698425e-17
+ - 4.235164736271501e-17
+ - -6.121136532892404e-18
+ - 1.2920561168078292e-16
+ - 6.27830084927748e-17
+ - -1.2027206106521022e-16
+ - -3.569284343166314e-16
+ - 1.8334458277237856e-16
+ - 7.146840492458159e-17
+ - -2.0878038660838416e-16
+ - -2.2027819712287125e-16
+ - 2.2879815743216745e-16
+ - -1.0405932105917087e-16
+ - -4.061456807635365e-17
+ - 2.0160459479448665e-16
+ - 1.0492786070235155e-16
+ - -4.748016716054378e-17
+ - -1.0395592348260174e-16
+ - 2.2797097681961443e-16
+ - -1.3196632697517865e-16
+ - -1.8768728098828195e-16
+ - 1.5280093865385801e-16
+ - -1.4500476138054575e-16
+ - 2.4699613090833406e-16
+ - 2.665175933645855e-16
+ - 9.787356104092276e-17
+ - -2.446800251931856e-16
+ - -9.400907661665158e-17
+ - 9.876536513883149e-17
+ - 1.9587636905255693e-16
+ - 2.276401045745932e-16
+ - -3.341809674714232e-17
+ - 5.959836313444564e-17
+ - -1.6593243087813733e-16
+ - 5.773720675620133e-17
+ - -5.078888961075589e-17
+ - 1.9502850892469008e-16
+ - 8.284213834718571e-17
+ - 8.470329472543002e-17
+ - -1.652706863880949e-16
+ - -1.713918229209873e-16
+ - -2.962133773552392e-16
+ - 2.2821913100338034e-16
+ - 4.979627287569226e-17
+ - 3.7072167103095313e-16
+ - 4.9093169355022186e-17
+ - -8.362795992911109e-17
+ - 1.2647591565935793e-16
+ - 2.2333876538931747e-18
+ - -1.6163109169286158e-16
+ - -2.7449988627572223e-16
+ - -6.815968247436948e-17
+ - 2.575013246877575e-16
+ - 2.590316088209806e-16
+ - -9.123802156459894e-17
+ - 1.4767241885602927e-16
+ - -5.616556359235058e-17
+ - 8.007108329513307e-17
+ - 5.7592450149004544e-18
+ - -3.2180427755609845e-16
+ - 1.5672487668465646e-17
+ - -5.645507680674414e-17
+ - -9.330597309598151e-17
+ - 5.0499376396362333e-17
+ - 3.4636120199126646e-16
+ - -1.1568120866554092e-16
+ - 3.074216746553327e-16
+ - 2.6188538193428856e-16
+ - 7.982292911136716e-17
+ - -1.0575245637549035e-16
+ - 6.352747104407253e-17
+ - 5.562789619419111e-17
+ - -2.0538894609691675e-16
+ - 1.2432524606672006e-16
+ - -3.096137032785982e-16
+ - -2.0638156283198038e-16
+ - 2.828440707048509e-17
+ - -6.452008777913615e-16
+ - 4.979627287569226e-17
+ - -9.29751008509603e-17
+ - 5.708580202381582e-17
+ - 2.1093105620102203e-17
+ - 4.623939624171424e-17
+ - -9.280966472844969e-17
+ - 1.329692834678992e-16
+ - 2.9695783990653694e-17
+ - -8.983181452325879e-17
+ - 2.255514735278968e-16
+ - 2.1250269936487279e-16
+ - -1.1245520427658411e-16
+ - 1.5666800801754342e-16
+ - -4.384057246531047e-18
+ - -7.361907451721946e-17
+ - -5.748905257243542e-17
+ - 6.534726839168918e-18
+ - -6.61744490042422e-19
+ - 1.0918784085699964e-16
+ - 2.1796209140772276e-17
+ - 2.0547166415817205e-16
+ - 2.8206858888058244e-17
+ - 2.0911125885340537e-16
+ - 2.2218071253174323e-16
+ - 1.1932080336077424e-16
+ - 6.43960106872532e-17
+ - 2.212708138579349e-18
+ - -5.459392042849982e-18
+ - 1.0881560958135078e-16
+ - 1.742042370036676e-16
+ - -2.928219368437718e-17
+ - -1.1042861177582918e-16
+ - 1.528629771997995e-16
+ - 1.5679208510942637e-16
+ - -1.6690436809788713e-16
+ - -2.0017770823783267e-16
+ - -2.6105820132173553e-16
+ - 9.719372197498074e-17
+ - -2.3425754947501744e-16
+ - 1.272617372412833e-16
+ - 6.4933678085412665e-18
+ - 1.7254987577856155e-16
+ - -6.329586047255767e-16
+ - -2.1465336895751065e-17
+ - -8.007108329513307e-17
+ - -1.1994118882018901e-16
+ - -5.6248281653605874e-18
+ - 1.0008885411891634e-16
+ - 2.5791491499403403e-16
+ - 2.536135758087583e-16
+ - 5.69100261436483e-17
+ - 1.2010662494269962e-16
+ - 3.2805983093853073e-16
+ - -9.609770766334798e-17
+ - 2.2995621028974166e-17
+ - 2.24579536308147e-16
+ - 7.213014941462401e-17
+ - 1.1723217231407785e-16
+ - -6.626750682315443e-17
+ - -1.0008885411891633e-17
+ - 6.807696441311418e-17
+ - -4.602743120974753e-17
+ - -6.082259044102412e-16
+ - -9.785546646502316e-17
+ - -1.738733647586464e-16
+ - 6.054962083888163e-17
+ - -3.1755463715910728e-16
+ - 1.7953955195463463e-16
+ - -1.1745964698252991e-17
+ - -1.742042370036676e-16
+ - -1.0711988932561707e-16
+ - -5.939156798130739e-17
+ - -5.616556359235058e-17
+ - -1.152676183592644e-16
+ - -4.748016716054378e-17
+ - -1.5137405209720404e-16
+ - -8.70194004405785e-17
+ - -2.1241998130361748e-16
+- - -1.4173130164597993
+ - -1.2880813545367922
+ - 0.24902765537169833
+ - 1.3238700992480863
+ - -2.54396062080385
+ - 2.8562879425521186
+ - -2.277723088084569
+ - 0.8828468576464613
+ - 0.3854119369055322
+ - 0.17664603983592236
+ - -3.687892895517212
+ - -1.847526172370547
+ - 2.8425720535497616
+ - -2.195865192193931
+ - 0.6890011293839384
+ - 0.534119519868447
+ - 0.4018837790856989
+ - -3.2708969989414185
+ - -1.7841641277151774
+ - 2.8058783403133183
+ - -2.057822393267021
+ - 0.5675223830777751
+ - 1.1170651037436283
+ - -2.424297259755556
+ - 2.87037004946273
+ - -1.6301444817755082
+ - -3.103077020660561
+ - -0.2578098423308904
+ - 0.16579345477594737
+ - 1.2306901185613046
+ - -2.5302896953329883
+ - 2.866776315407461
+ - -1.5767726931003163
+ - -3.273954206458672
+ - -0.5280985499363258
+ - 0.02160235424705452
+ - 1.4094421953129608
+ - -2.5913722346440453
+ - 2.855875598283413
+ - -2.2138234623645894
+ - 0.7897121595873529
+ - 0.8144336897035243
+ - -3.154670920259145
+ - -3.0133381357714133
+ - 0.7350390934418938
+ - 0.9090047098976942
+ - 4.804484841155499
+ - 4.902365772144745
+ - -2.25140031931504
+ - 0.842988390783046
+ - 0.7586058067969339
+ - -2.2545170221608117
+ - 2.852510450929692
+ - -2.6050410071135275
+ - 1.0316707623258743
+ - 2.412997196131875
+ - 1.8966157691866075
+ - 0.7311124410812857
+ - -2.3302321162817146
+ - 2.864882486166223
+ - -2.506791560656401
+ - 0.901348795929671
+ - 2.0452724519230747
+ - 1.9407354611593843
+ - 0.8353747094713208
+ - -2.4473718966145435
+ - 2.8705404492255657
+ - -2.4421479179894723
+ - 1.058673336798918
+ - 0.5357538051361971
+ - -2.0364803592925824
+ - 1.8165882872185615
+ - 3.010020692331108
+ - -2.15720900932115
+ - -1.4450070351715483
+ - 0.9440041874753698
+ - 0.7342489905740944
+ - -2.1760399347574535
+ - 1.9369214947842632
+ - 3.532561381147065
+ - -2.2413194833653867
+ - -1.3992202960902167
+ - 0.7495486965372778
+ - 0.854327232957924
+ - -2.257239687403955
+ - 2.861913212482899
+ - -2.5597842958416694
+ - 1.3503857351514859
+ - -1.1420161242449995
+ - -1.562612561076854
+ - -4.065722249100651
+ - -3.3986508645643174
+ - 1.8979455760861432
+ - -0.4482733826048836
+ - -1.221988972367991
+ - 2.46959720437453
+ - -2.9103317478045505
+ - 2.3312136855769774
+ - -0.8382553344633165
+ - -2.0891940460423783
+ - -2.4819754949500044
+ - -1.0652113618809547
+ - 2.5312551961869616
+ - -2.9012798746935884
+ - 2.2084758344430164
+ - -0.6351744741912327
+ - -1.6180734881740546
+ - -2.3325093926214
+ - -1.0861186914321206
+ - 2.6194503923721255
+ - -2.8773632321775158
+ - 2.1265508012331664
+ - -0.6732431203965243
+ - -1.0100707395834623
+ - 2.2908281816312708
+ - -1.870864434212717
+ - -3.1877096309310304
+ - 1.7428481805180023
+ - 1.241340427714042
+ - -0.5513056604971177
+ - -1.197251617065674
+ - 2.4079373984411085
+ - -1.8915763497097158
+ - -3.524151503142488
+ - 1.6768909982579778
+ - 1.1359933012714412
+ - -0.35160385055990395
+ - -1.3122600891542835
+ - 2.4717932979316988
+ - -0.674193580859193
+ - -1.0105275360562453
+ - 2.292400541595993
+ - -4.9769027784358935
+ - -4.883904593489614
+ - -1.0234504154628072
+ - -0.8499391651877682
+ - 2.825478324707855
+ - 2.967193069073531
+ - -0.7327676780451876
+ - -0.9543679027541534
+ - 2.253102835553848
+ - -2.9081227293123475
+ - 2.4877841923762833
+ - -1.3387169503281053
+ - -0.10562456398600718
+ - 0.3696006834753648
+ - 3.3369579068314636
+ - 1.6217294035205936
+ - -2.9116862077396815
+ - 2.4236943207373645
+ - -1.154103516035088
+ - -0.24884257124478557
+ - 0.1110041599567527
+ - 3.1513409719074565
+ - 1.6702535297532763
+ - -2.908129204134003
+ - 2.3083037501910133
+ - -1.0401860121845912
+ - -0.7347981466493061
+ - 2.1046359593734585
+ - -2.872285905226898
+ - 1.7558400328778003
+ - 3.2446178616349473
+ - -0.2556083315826095
+ - -0.45350862062503655
+ - -0.853076562442251
+ - 2.2378357171005283
+ - -2.89823246416909
+ - 1.8137329704759724
+ - 3.647174551115329
+ - -0.00887343994402812
+ - -0.2987104668778629
+ - -1.046060791015544
+ - 2.3134583674460947
+ - -2.9083473061688516
+ - 2.436571726141559
+ - -1.2512075408988372
+ - -0.4187450613864111
+ - 1.4639509117835365
+ - 1.6352747688936569
+ - 1.1173142124060021e-15
+ - 9.972489464939302e-16
+ - 2.7366753578434075e-16
+ - 3.2044976930304287e-16
+ - -2.304525186572735e-16
+ - -1.901481433106272e-16
+ - -1.1439907871608373e-16
+ - -3.122606812387679e-16
+ - -7.924390268258004e-16
+ - 1.0447291136544738e-16
+ - 2.0387675653959324e-16
+ - 2.2565487110446595e-16
+ - 2.297907741672311e-16
+ - -2.845501307182415e-17
+ - -1.1118341408478383e-16
+ - -2.179000528617813e-16
+ - -1.051346558554898e-16
+ - -3.8257103330577524e-17
+ - 5.39321759384574e-17
+ - 1.1435771968545608e-16
+ - 5.90813752516e-17
+ - 5.589672989327085e-17
+ - 3.29217883796105e-17
+ - 1.0141234309900118e-16
+ - 1.437639904617162e-16
+ - -3.3418096747142313e-16
+ - -6.088049308390284e-17
+ - -8.007108329513307e-17
+ - 3.2293131114070195e-16
+ - 3.74175150088362e-16
+ - 4.408872664907637e-16
+ - -6.435723659603978e-17
+ - 3.29217883796105e-17
+ - 4.1524466750161984e-16
+ - 6.8573272780646e-17
+ - -6.395760496260009e-16
+ - 1.0120942535498427e-16
+ - 1.3813916229635562e-16
+ - -2.5212465070616284e-16
+ - 2.296253380447205e-16
+ - 2.324377521274008e-16
+ - 2.5094591833327477e-16
+ - 7.46116912522831e-17
+ - 2.0150119721791752e-16
+ - 9.770037010016947e-17
+ - -2.0973164431282014e-16
+ - 1.5054687148465104e-16
+ - -2.1771393722395686e-16
+ - -1.2722037821065566e-16
+ - -3.668546016672678e-17
+ - 1.861621667338873e-16
+ - 9.181704799338606e-17
+ - 6.468552390164676e-17
+ - -2.243313821243811e-16
+ - -6.011948692035405e-16
+ - -3.6644101136099126e-17
+ - -8.519960309296184e-17
+ - 2.5013941723603557e-16
+ - 6.28657265540301e-17
+ - 7.519071768107022e-17
+ - 9.280966472844969e-17
+ - -2.1506695926378716e-17
+ - 5.509022879603164e-17
+ - 7.328820227219825e-17
+ - -4.7314731038033177e-17
+ - 1.7883644843396456e-16
+ - -5.703823913859402e-16
+ - -7.502528155855961e-17
+ - -4.040156906862125e-16
+ - -9.620110523991711e-17
+ - 5.542110104105285e-17
+ - -1.2126467780027386e-16
+ - -2.8785885316845363e-17
+ - 5.161607022330892e-17
+ - -1.1530897738989206e-16
+ - 9.92616735063633e-18
+ - -2.013357610954069e-16
+ - -2.219325583479773e-16
+ - 2.7718822326651957e-16
+ - -2.694127255085211e-16
+ - 1.134064619810201e-16
+ - -2.5841122336156585e-16
+ - 4.710793588489492e-17
+ - 3.7719435932418057e-16
+ - -1.7848489667362952e-16
+ - 2.0121168400352395e-17
+ - -1.163015941249557e-16
+ - -1.1704605667625342e-16
+ - -5.657915389862709e-16
+ - 1.6551884057186081e-16
+ - -8.983181452325879e-17
+ - -3.209460776705747e-16
+ - -3.0212771873499336e-17
+ - -6.207990497210473e-17
+ - -2.3525016621008107e-16
+ - -1.9116143956100467e-16
+ - 2.7363134663254155e-16
+ - -6.739454040775793e-17
+ - 2.35498320393847e-16
+ - 7.33295613028259e-17
+ - 1.618792458766275e-16
+ - 5.540455742880179e-16
+ - 1.601473364690946e-16
+ - -8.55718343686107e-17
+ - -2.6403605152692643e-16
+ - -2.7057077836609535e-16
+ - -1.0596183646804283e-16
+ - 1.981924747677054e-16
+ - 1.1183481881716934e-16
+ - 6.175937248474043e-17
+ - 1.0757483866252124e-16
+ - -3.131395606396055e-16
+ - -2.2102265967416897e-16
+ - 1.1898993111575303e-16
+ - -1.865085486153939e-16
+ - -1.805528482050121e-16
+ - -1.76768496902582e-16
+ - -3.9539233280034717e-17
+ - 1.2597960729182611e-16
+ - 2.8289576949313546e-17
+ - 5.480071558163808e-17
+ - -1.1940352142202954e-16
+ - -1.7900188455647516e-16
+ - 5.629998044189044e-18
+ - -2.749548356126264e-16
+ - -5.010646560539965e-16
+ - -1.889280519071115e-16
+ - -1.435158362779503e-16
+ - -1.4194419311409955e-16
+ - -1.49719690872098e-16
+ - -1.8541253430376113e-16
+ - -2.448454613156962e-16
+ - -1.9380841752117436e-16
+ - 1.181808450790996e-16
+ - -2.446800251931856e-16
+ - -3.719831214650965e-16
+ - 2.0497535579064023e-16
+ - -4.566036981292712e-17
+ - 3.960540772903896e-16
+ - -5.426304818347861e-17
+ - 1.831377876192403e-16
+ - -3.2280723404881905e-17
+ - 3.226004388956808e-17
+ - -3.2524741685585043e-16
+ - 9.65485210971894e-16
+ - -9.429858983104514e-17
+ - 1.164670302474663e-16
+ - 4.286449934249789e-16
+ - -1.3069453678337837e-16
+ - -4.20207751176938e-17
+ - -2.1719694934111122e-16
+ - 3.201188970580217e-17
+ - 4.21034931789491e-17
+ - -1.2176098616780567e-16
+ - -5.227781471335135e-16
+ - 1.376428539288238e-16
+ - -1.589841137326919e-16
+ - -3.8546616544971085e-16
+ - -3.068840072571732e-16
+ - -1.4103429444029122e-16
+ - 8.586134758300426e-17
+ - 6.692925131319685e-17
+ - -3.085383684822793e-17
+ - 1.6833125465454113e-17
+ - 7.351154103758756e-16
+ - 2.850154198128026e-17
+ - 3.6892255319865034e-17
+ - -5.161607022330892e-17
+ - 1.6742135598073278e-16
+ - -1.0422475718168147e-17
+ - -5.459392042849982e-18
+ - 3.662755752384806e-16
+ - 1.9595908711381223e-16
+ - 1.7900188455647516e-16
+ - -1.2562805553149106e-17
+ - 8.453785860291942e-17
+ - -3.805030817743927e-18
+ - 9.31405369734709e-17
+ - -1.0217334926254998e-15
+ - 4.824117332409257e-16
+- - 3.9316047552636983
+ - 3.2949345457816754
+ - -1.844492733327476
+ - 0.27021921916411346
+ - 1.311305991489709
+ - -2.5932924075377235
+ - 2.8743416669799173
+ - -2.3027626141270674
+ - 0.7554404362104802
+ - 1.9466226850072583
+ - 2.6298283338168966
+ - 1.1502153652746554
+ - -2.6481699924235214
+ - 2.861057749187938
+ - -2.1698964774982965
+ - 0.5527254699056151
+ - 1.4860869640850627
+ - 2.455596300839173
+ - 1.1646795076402139
+ - -2.72984612265765
+ - 2.8254808905259847
+ - -2.0850016072641266
+ - 0.4982916660086846
+ - 1.1025764306640418
+ - -2.4266349616447265
+ - 1.8887362839189021
+ - 3.2446759354937615
+ - -1.6149618412947082
+ - -1.1786642661807056
+ - 0.37647830489360884
+ - 1.2887884171522939
+ - -2.5343873163314883
+ - 1.9038386012892872
+ - 3.5744001679923447
+ - -1.5310784903770498
+ - -1.068051385662388
+ - 0.1726083889091663
+ - 1.3998345064063589
+ - -2.5953311718974628
+ - 2.8634077618612315
+ - -2.240701789765288
+ - 0.8132753377441924
+ - 0.3685370238014464
+ - 0.23023279408627373
+ - -2.13770172484274
+ - -2.254427529582998
+ - -5.015340824641587
+ - -5.037522491457999
+ - 2.870373039827736
+ - -2.276453177301551
+ - 0.868986848869046
+ - 0.8335975547996571
+ - -2.252860367432361
+ - 2.866223051415064
+ - -1.74577624579708
+ - -3.5044699172987834
+ - 0.10508265903763647
+ - 0.3553111120113422
+ - 0.9526565644507184
+ - -2.3312191879414255
+ - 2.8842283669395288
+ - -1.6721984661685985
+ - -3.160260239890914
+ - -0.13958576141033643
+ - 0.23444172015349357
+ - 1.1414235062838405
+ - -2.450114573821878
+ - 2.886422862269981
+ - -2.4145456290122995
+ - 1.0852662782151128
+ - 0.5192398809895836
+ - -1.251324821638698
+ - -1.7587408551798829
+ - 3.203159869790061
+ - 1.880662647616138
+ - -2.340995376791662
+ - 0.8950315789383971
+ - 0.7191804995021422
+ - -1.389041744807706
+ - -2.21491547409298
+ - 3.568994719452656
+ - 1.952875678292538
+ - -2.213323758394572
+ - 0.7728197775064064
+ - 0.8377449515354787
+ - -2.315878528946323
+ - 2.876032654850647
+ - -2.5834647805690003
+ - 3.1969244477373353
+ - 4.029084859339793
+ - 5.158903602303353
+ - 4.215488292561952
+ - -2.8306051770810856
+ - 1.9229853165420792
+ - -0.47260236950791296
+ - -1.2957430490358568
+ - 2.4720423944605594
+ - -2.927215060123256
+ - 1.699679922292162
+ - 3.500323872727007
+ - 0.49977718444916996
+ - -0.03401967585243891
+ - -1.4054839769548169
+ - 2.5359635693453866
+ - -2.9117144857436097
+ - 1.5151379452830709
+ - 2.959805960378123
+ - 0.6526381746302112
+ - 0.05882250840948001
+ - -1.5822347065758904
+ - 2.625801274546791
+ - -2.896536792735108
+ - 2.0880074835014577
+ - -0.6985803113021725
+ - -0.9971822105415511
+ - 1.455916471086691
+ - 2.175165170646115
+ - -3.023747531601606
+ - -1.8256542519310734
+ - 2.0015903149651804
+ - -0.497762877763562
+ - -1.1859298744202382
+ - 1.539077588003795
+ - 2.5517871013059654
+ - -3.1721976677271884
+ - -1.79286043056247
+ - 1.8490987547499609
+ - -0.3730778751572757
+ - -1.2996339551688318
+ - 2.5222094828247146
+ - -0.6969136049789066
+ - -0.9995424808899969
+ - 3.3760256573979794
+ - 3.2357919565217226
+ - -0.593612364869664
+ - -0.769085295331943
+ - -4.738349516765034
+ - -4.843282275490585
+ - 2.130404647164028
+ - -0.7564097043229706
+ - -0.9381744253075553
+ - 2.3101333310768486
+ - -2.9227880149161707
+ - 2.511430515238255
+ - -0.9597755547472242
+ - -2.295066167961762
+ - -2.051835294842066
+ - -0.8182510971851109
+ - 2.3833892516926363
+ - -2.9273044341445313
+ - 2.406056292484726
+ - -0.8257888830328763
+ - -1.928841780322205
+ - -2.078164985107952
+ - -0.9200722573299093
+ - 2.4911752929801705
+ - -2.9251080003390055
+ - 2.3342172223942015
+ - -0.9766667769644024
+ - -0.7169811795588907
+ - 2.1025722202273753
+ - -1.8480465843777267
+ - -3.0894568719214806
+ - 2.0456449874778353
+ - 1.3932463917952786
+ - -0.857517983871133
+ - -0.9122497662485953
+ - 2.2375599740436622
+ - -1.9657042012318047
+ - -3.61270882332717
+ - 2.1045096194707145
+ - 1.3376625154690571
+ - -0.6611718462229642
+ - -1.0329925332836134
+ - 2.31271877114004
+ - -2.927378878307087
+ - 2.4617354418579835
+ - -1.2761879606351458
+ - 0.9528335323803804
+ - 1.3337314376785219
+ - -1.2673647755231212e-15
+ - -9.223063829966259e-16
+ - -3.186299719554262e-16
+ - -1.5005056311711922e-16
+ - 4.474013138146188e-17
+ - 1.955248172922219e-16
+ - 2.663521572420749e-16
+ - 8.875647972693986e-17
+ - 5.661224112312921e-16
+ - -7.320548421094295e-17
+ - -1.390904200007916e-16
+ - -3.9320030417708166e-16
+ - -2.5158698330800337e-16
+ - -1.8553661139564408e-16
+ - 1.1373733422604129e-17
+ - 2.472856441227276e-16
+ - 2.8899622651071404e-17
+ - 1.0476242457984094e-16
+ - 1.675247535573019e-16
+ - 1.923194924185789e-17
+ - 2.6056189295420368e-18
+ - 1.1063540692896744e-16
+ - 7.444625512977249e-17
+ - 1.646089418980525e-17
+ - -2.2515856273693413e-16
+ - 3.446034431895913e-16
+ - 5.773720675620133e-17
+ - 4.615667818045894e-17
+ - -1.710609506759661e-16
+ - -2.68833699079734e-16
+ - -2.810759721455188e-16
+ - -3.2260043889568075e-18
+ - -4.34683411896616e-17
+ - -2.0299012232051297e-16
+ - -1.021568056502989e-17
+ - 5.604975830659316e-16
+ - -8.416562732727055e-17
+ - -6.944181242382667e-17
+ - 2.714806770399037e-16
+ - -3.3637299609468865e-16
+ - -2.0332099456553418e-16
+ - -1.9970207938561468e-16
+ - -1.3172851254906966e-16
+ - -1.7412151894241233e-17
+ - 1.7867101231145398e-17
+ - 1.7610675241253957e-16
+ - -4.288931476087448e-17
+ - 8.311510794932821e-16
+ - -2.1626637115198906e-16
+ - 8.511688503170654e-17
+ - -3.234276195082338e-17
+ - -1.196930346364231e-16
+ - -5.233985325929282e-17
+ - 2.4939495468473784e-16
+ - 3.2863885736731785e-16
+ - 2.5642598989143854e-18
+ - 1.7705801011697555e-16
+ - -2.187892720202758e-17
+ - -8.021583990232985e-17
+ - 1.0058516248644815e-16
+ - -1.857020475181547e-16
+ - 1.2622776147559202e-16
+ - -2.026178910448641e-16
+ - 9.590125226786663e-17
+ - 2.4815418376590827e-17
+ - -8.933550615572698e-17
+ - 4.934959534491363e-16
+ - -1.3228685946254295e-16
+ - 4.3410438546782887e-16
+ - 1.8702553649823953e-16
+ - 5.1450634100798315e-17
+ - 1.1456451483859433e-16
+ - 6.179039175771117e-17
+ - -3.254955710396164e-17
+ - 2.776018135727961e-16
+ - 9.507924153414206e-17
+ - 1.0608591355992579e-16
+ - 1.2788212270069808e-16
+ - -1.6328545291796764e-16
+ - 2.787391869150565e-16
+ - -6.054962083888163e-17
+ - -1.20892446524625e-16
+ - 8.70194004405785e-17
+ - -2.829371285237631e-16
+ - 1.9790296155331185e-16
+ - -4.404736761844872e-17
+ - 1.1788874692529181e-16
+ - 1.2498699055676248e-16
+ - 3.368279454315928e-16
+ - 3.1333601603508683e-16
+ - 4.763733147692886e-16
+ - -3.368899839775343e-16
+ - -2.1142736456855385e-16
+ - 1.2349806545416703e-16
+ - 2.6575245129797397e-16
+ - 1.4219234729786546e-16
+ - 1.0960143116327615e-16
+ - 2.8686623643339e-16
+ - -5.303882087690013e-16
+ - -9.578751493364059e-17
+ - -1.5224259174038472e-16
+ - -4.893600503863712e-16
+ - -9.355412727974742e-17
+ - 1.6742135598073278e-16
+ - 2.258616662576042e-16
+ - 8.602678370551487e-17
+ - 6.18937893342803e-17
+ - -9.721440149029457e-17
+ - 1.4044492825384719e-16
+ - -7.320548421094295e-17
+ - -5.579850219553017e-17
+ - 3.2425480012078685e-17
+ - -9.711100391372544e-17
+ - -6.663456821997484e-17
+ - 9.90135193225974e-17
+ - 7.891303043755883e-17
+ - 2.8496372102451803e-16
+ - 9.727644003623604e-17
+ - -6.580221772859335e-17
+ - 4.690114073175666e-17
+ - -7.849944013128231e-17
+ - -5.062345348824529e-17
+ - 6.732423005569091e-16
+ - 1.6601514893939263e-16
+ - 1.7101959164533845e-16
+ - 9.082443125832243e-17
+ - 7.895438946818648e-17
+ - -3.3904065357017217e-16
+ - 1.258141711693155e-16
+ - 1.2544193989366665e-16
+ - 8.950094227823758e-17
+ - 2.7057077836609535e-16
+ - 3.7491961263965974e-16
+ - -8.335912623003135e-17
+ - 2.926565007212612e-16
+ - 2.0853223242461825e-16
+ - -1.5124997500532109e-16
+ - -3.639594695233322e-17
+ - -1.2622776147559202e-16
+ - 4.3426982159033947e-17
+ - -1.2763396851693217e-16
+ - -1.6285118309637732e-17
+ - 3.461750863534421e-17
+ - 3.95888641167879e-16
+ - -7.292424280267491e-16
+ - -1.1398548840980721e-16
+ - -1.322455004319153e-16
+ - -2.511320339710992e-16
+ - 1.2134739586152916e-16
+ - 6.534726839168919e-17
+ - 1.8325410989288057e-16
+ - -1.1125579238838222e-16
+ - -8.325572865346222e-17
+ - 1.2358078351542233e-16
+ - 2.802487915329658e-16
+ - -2.0539928585457366e-16
+ - 1.5054687148465104e-16
+ - 1.7652034271881608e-16
+ - 1.433504001554397e-16
+ - 9.897216029196975e-17
+ - -6.832511859688009e-17
+ - 1.2866794428262345e-16
+ - 5.97224402263286e-17
+ - 7.386722870098537e-17
+ - -3.723760322560592e-16
+ - -3.91256429737582e-17
+ - -7.651420666115506e-18
+ - -1.0066788054770346e-16
+ - -5.056141494230381e-17
+ - 9.719372197498074e-17
+ - 1.10924920143361e-16
+ - -2.4054412213042045e-16
+ - -2.0327963553490652e-17
+ - 9.843449289381028e-18
+ - -4.979627287569226e-17
+ - -1.5071230760716162e-16
+ - -6.7001629616795234e-18
+ - -9.60356691174065e-17
+ - 9.386018410639205e-16
+ - 2.5473026963570487e-16
+- - -5.132673871980593
+ - -4.20167645876297
+ - 2.7443873520690887
+ - -1.845140177019506
+ - 0.27223605090673425
+ - 1.3953572302588901
+ - -2.5941944227650167
+ - 2.8761922943397593
+ - -1.6409279602689841
+ - -3.4156425317809713
+ - -0.7059749514861903
+ - -0.07533204352477843
+ - 1.5037621066084872
+ - -2.6501673706845437
+ - 2.8514287719503226
+ - -1.4515579369777367
+ - -2.873346439586664
+ - -0.8310834892701126
+ - -0.1624795337418068
+ - 1.6728213568809256
+ - -2.7317962621535266
+ - 2.8276249081799327
+ - -2.0187485178808844
+ - 0.5004004091226497
+ - 1.1039945189482567
+ - -1.5208303245839119
+ - -2.3113901269551693
+ - 2.944367593370685
+ - 1.7966171638767152
+ - -1.9256989365831412
+ - 0.2994032428129777
+ - 1.2903149985539748
+ - -1.5990782571863278
+ - -2.6900270158892865
+ - 3.0737880382678013
+ - 1.7560401705749864
+ - -1.7677303072629769
+ - 0.17198186733699738
+ - 1.3991691509686592
+ - -2.6395093440159054
+ - 2.8654877636366742
+ - -2.2417377487194097
+ - 2.5266404246185514
+ - 2.61613994955034
+ - 2.826092367569393
+ - 2.8471981351103697
+ - 3.5645462684505618
+ - 3.504077539887308
+ - -2.613685712229085
+ - 2.871948660745162
+ - -2.278891928461733
+ - 0.7791606504795954
+ - 0.8324516101921595
+ - -2.254772417905397
+ - 1.8785868096651586
+ - 3.430598638007565
+ - -2.0627363884225263
+ - -1.3190768139323465
+ - 0.6597949090209975
+ - 0.953964935048024
+ - -2.379134856393208
+ - 1.8858588290696372
+ - 3.2237784926961583
+ - -1.6994677887230134
+ - -1.2217030571889294
+ - 0.4588277597171819
+ - 1.1427857021710373
+ - -2.4505579842139853
+ - 2.8872139768377236
+ - -2.417138480922432
+ - 1.0853299544232122
+ - 0.2743811881845527
+ - -0.06907225613982322
+ - -3.1838172937800526
+ - -1.6916738798678572
+ - 2.8823663966216686
+ - -2.2946818531981177
+ - 0.8948891875351607
+ - 0.38381552250470286
+ - 0.17001303968186507
+ - -3.7089921564276733
+ - -1.8574476358959355
+ - 2.860020198495115
+ - -2.214210678646942
+ - 0.774970345247099
+ - 0.9280965755747127
+ - -2.316317878924407
+ - 2.8780096001012128
+ - -4.183958884336421
+ - -5.150306435090606
+ - -4.539109530262058
+ - -3.6329525304014387
+ - 2.744305212768111
+ - -2.8318902305426787
+ - 1.9252919809744846
+ - -0.3791892117902412
+ - -1.2950038863012372
+ - 2.4738152558334425
+ - -1.9944187271449605
+ - -3.746129702146021
+ - 1.6386112167418487
+ - 1.1168578952893724
+ - -0.25450220794985834
+ - -1.4069976192244344
+ - 2.573606664945948
+ - -1.8894101720917222
+ - -3.3154494455250694
+ - 1.2354327411808335
+ - 0.9831444024538609
+ - -0.051526355182571426
+ - -1.5837503109260012
+ - 2.626463605487968
+ - -2.882469625938884
+ - 2.090328850543111
+ - -0.698117631079969
+ - -0.5609155865939026
+ - -0.44723554974242147
+ - 3.297611504945248
+ - 1.8028409523358193
+ - -2.8565963784260013
+ - 1.9458398686729501
+ - -0.4971485417473327
+ - -0.6786924149210393
+ - -0.7391347160171494
+ - 3.610312594470154
+ - 1.8531117231413001
+ - -2.804981420687505
+ - 1.8493864773384208
+ - -0.374889390096228
+ - -1.3845501036060783
+ - 2.5227435277435566
+ - -0.6962503205600036
+ - -0.6627393588438647
+ - -0.5218292312211156
+ - 2.034458202230009
+ - 2.1609487003498633
+ - 5.073571374650213
+ - 5.1027515223503785
+ - -2.8929968613247765
+ - 2.1311740947234328
+ - -0.7588568346667715
+ - -1.0276005393653054
+ - 2.3104240315110904
+ - -2.9247360678762284
+ - 1.7024709430892846
+ - 3.4517020508514396
+ - 0.09326268993090421
+ - -0.25244145876329205
+ - -1.1425431377532467
+ - 2.3851474772385837
+ - -2.9297256913555416
+ - 1.6220435026792823
+ - 3.09962943084412
+ - 0.3218341911179682
+ - -0.13128912317738256
+ - -1.3288722890669198
+ - 2.4929254873165965
+ - -2.9269866773512656
+ - 2.2793139512260123
+ - -0.9793207144712511
+ - -0.7178013263008535
+ - 1.3279466857971192
+ - 1.9120644057107754
+ - -3.150148620187622
+ - -1.86736918928288
+ - 2.202164718649457
+ - -0.783510413282039
+ - -0.913221254508193
+ - 1.4661470564258978
+ - 2.3822059774975
+ - -3.493738498933132
+ - -1.9289581650909664
+ - 2.064071456317666
+ - -0.6612472360109166
+ - -1.031652136895538
+ - 2.3691639531610096
+ - -2.9293014171873817
+ - 2.463232169591872
+ - -3.0430286268488485
+ - -3.847489070752274
+ - 1.7762876473963714e-15
+ - 2.023614650549727e-15
+ - 3.274808045097436e-16
+ - 4.173126190330024e-17
+ - -2.352088071794534e-16
+ - -2.2813641294212503e-16
+ - -5.030085304934961e-16
+ - 1.819797347616661e-18
+ - -2.723078576524567e-16
+ - 7.246102165964522e-17
+ - 8.081554584643079e-17
+ - 5.901778574200999e-16
+ - 1.6857940883830702e-16
+ - 3.206979234868088e-16
+ - -8.41242682966429e-17
+ - -1.7006833394090247e-16
+ - -6.427193359537025e-17
+ - -2.3570511554698524e-16
+ - -7.932662074383534e-17
+ - -1.1216569106219055e-16
+ - 7.676236084492096e-17
+ - -1.4616281423812e-16
+ - -1.2209185841282688e-16
+ - -1.8234162627965801e-16
+ - 1.7776111363764562e-16
+ - -3.6180879993069426e-16
+ - -7.117889171018803e-17
+ - 5.2608686958372554e-17
+ - 4.3385623128406295e-17
+ - 1.8247604312919788e-16
+ - 2.1920286232655233e-18
+ - 1.493888186270768e-16
+ - 4.673570460924606e-18
+ - 8.68539643180679e-18
+ - -2.563432718301833e-16
+ - -3.5328883962139807e-16
+ - 1.0339757656912846e-18
+ - -2.340921133525068e-17
+ - -1.8520573915062287e-16
+ - 3.4642324053720794e-16
+ - 2.8876875184226196e-16
+ - 1.0509329682486215e-16
+ - 2.425293556005477e-16
+ - -8.160136742835617e-17
+ - -1.0128826600711823e-16
+ - 1.4405350367610977e-16
+ - -4.972389457209387e-17
+ - -4.1565825780789636e-16
+ - 4.512683831783042e-16
+ - 3.172237649140861e-17
+ - -8.850832554317395e-17
+ - 1.2965022126003018e-16
+ - 2.671793378546279e-17
+ - -6.709985731453591e-17
+ - -4.940956593932373e-16
+ - -1.0306670432410724e-16
+ - -7.287461196592174e-17
+ - -2.335130869237197e-16
+ - 1.906237721628452e-16
+ - 1.110076382046163e-16
+ - 3.3211301594004056e-16
+ - -1.3507859402990942e-16
+ - 3.1929171644546863e-16
+ - -1.467315009092502e-16
+ - -1.594804221002237e-16
+ - -8.921142906384402e-17
+ - -3.2607459746840346e-16
+ - 1.163015941249557e-16
+ - -2.3127969926982654e-16
+ - -1.6874484496081762e-16
+ - -1.6336817097922297e-17
+ - 3.91256429737582e-17
+ - -5.797502118231033e-17
+ - -3.081661372066304e-16
+ - -1.6080391108030856e-16
+ - -2.977436614884623e-16
+ - 1.290401755582723e-17
+ - -5.997059441009451e-17
+ - 1.2631047953684733e-16
+ - -3.4121200267812387e-16
+ - 3.7719435932418056e-17
+ - 1.9091328537723876e-16
+ - -2.5559880927888552e-17
+ - 1.679176643482646e-16
+ - -2.7081893254986126e-16
+ - 2.8144820342116767e-17
+ - -2.5899024979035297e-16
+ - -2.7338319244877565e-16
+ - -7.039307012826265e-16
+ - 3.2164918119124476e-16
+ - -4.744707993604167e-16
+ - 8.294967182681761e-16
+ - 3.6548975365655523e-16
+ - -1.3251433413099503e-16
+ - -1.7494869955496533e-16
+ - -1.3052910066086777e-16
+ - -3.601544387055882e-16
+ - -1.6560155863311612e-16
+ - 2.96833762814654e-16
+ - 2.895132143935597e-17
+ - 1.378806683549328e-16
+ - 1.8115255414911304e-16
+ - 1.1717013376813637e-16
+ - -4.619390130802383e-16
+ - -4.949848785517318e-16
+ - 9.26442286059391e-18
+ - -1.5385559393486315e-17
+ - 6.766337410683766e-17
+ - 3.6478665013588516e-16
+ - 1.252351447405284e-16
+ - 3.7223127564886245e-17
+ - 1.593149859777131e-16
+ - 1.5757790669135175e-16
+ - 8.379339605162169e-17
+ - -1.588186776101813e-17
+ - -1.8164886251664485e-16
+ - -3.6414558516115656e-16
+ - -1.982751928289607e-16
+ - 2.7660919683773245e-16
+ - -1.7800926782141153e-16
+ - 1.635749661323612e-16
+ - 1.5426918424113964e-16
+ - -5.838240763399269e-16
+ - -1.6584971281688202e-16
+ - -8.321436962283457e-17
+ - 1.0968414922453146e-16
+ - -1.079470699381701e-17
+ - 1.5278025913854419e-16
+ - -2.6684846560960673e-16
+ - -6.842851617344921e-17
+ - -2.7379678275505213e-17
+ - -2.684201087734575e-16
+ - -5.348549840767877e-16
+ - -1.7908460261773047e-16
+ - -2.454244877444833e-16
+ - 6.344475298281722e-17
+ - 5.881254155252027e-17
+ - 2.256962301350936e-16
+ - -1.4082749928715296e-16
+ - 1.819797347616661e-17
+ - 1.9852334701272664e-18
+ - 4.3096109914012737e-16
+ - -1.0199395446720253e-16
+ - -2.7892530255288093e-16
+ - 1.4789989352448135e-16
+ - 6.782881022934827e-17
+ - 7.426013949194806e-17
+ - -4.301339185275744e-18
+ - -4.830734777309681e-17
+ - -1.3069453678337836e-17
+ - -1.8694281843698425e-17
+ - 5.01602323452156e-16
+ - 1.3830459841886623e-16
+ - 8.213903482651564e-17
+ - 2.832266417381567e-16
+ - 1.9885421925774783e-16
+ - 1.464109684218859e-17
+ - 2.2127081385793487e-17
+ - -1.7288074802358276e-16
+ - 1.110076382046163e-16
+ - -7.328820227219825e-17
+ - -2.329340604949326e-16
+ - -9.107258544208833e-17
+ - -1.4645232745251355e-16
+ - 3.750436897315427e-16
+ - -1.3565762045869652e-17
+ - -1.213060368309015e-16
+ - 1.342514134173564e-16
+ - -1.7470054537119942e-16
+ - 6.7001629616795234e-18
+ - 4.264116057710857e-17
+ - 1.5675072607879872e-16
+ - -8.660581013430199e-17
+ - -1.2349806545416703e-16
+ - -5.157471119268127e-17
+ - 3.085383684822793e-17
+ - -1.3942129224581281e-16
+ - 9.347140921849213e-18
+ - -9.181704799338607e-16
+ - -7.62825960896402e-16
+- - 3.3586109196443132
+ - 2.701288581112337
+ - -2.010474318748461
+ - 1.8743784702956894
+ - -1.1872014910639408
+ - -0.00605160884282599
+ - 1.0866485002730277
+ - -1.8718405191428642
+ - 1.3894128347350312
+ - 2.65660432031371
+ - -0.8529191423818239
+ - -0.6383469737491013
+ - -0.0924002298204785
+ - 1.1609205324691603
+ - -1.9250108778124873
+ - 1.3017947330894593
+ - 2.3301752297896496
+ - -0.6010734341700887
+ - -0.5484131962616635
+ - -0.23542796361294338
+ - 1.2737607825104253
+ - -1.9537109302151945
+ - 1.9282291592588983
+ - -1.3152189583951563
+ - 0.22019989610086838
+ - 0.539620348633552
+ - 0.584643071555462
+ - -2.3298146222713574
+ - -1.2999870884784834
+ - 1.901463444517204
+ - -1.2016752061888396
+ - 0.07857089375110855
+ - 0.6190502945674448
+ - 0.8074455167011653
+ - -2.5297127865091062
+ - -1.3234981294358825
+ - 1.8479493918944288
+ - -1.1290637335829394
+ - -0.009094344955812494
+ - 1.1450855523430548
+ - -1.8988227778584548
+ - 1.9834134384190278
+ - -3.103610556442803
+ - -3.118294893434878
+ - -1.8663809512198033
+ - -1.8168983992633723
+ - -0.8944655164028419
+ - -0.8117745619699069
+ - 1.111357539798737
+ - -1.8836604500131804
+ - 1.9905667545613295
+ - -1.4626620841097981
+ - 0.4193586323388276
+ - 0.7060690120587504
+ - -1.0362047505045549
+ - -1.6931339263118361
+ - 2.278180333546613
+ - 1.2754914317971
+ - -1.3996265132849692
+ - 0.33288644241395976
+ - 0.8383759721347864
+ - -1.0907746663228313
+ - -1.6747256995464443
+ - 2.0192991431103398
+ - 1.2408950558845178
+ - -1.292344541397186
+ - 0.1908153354683379
+ - 0.9158550511248595
+ - -1.814015012451005
+ - 2.0114709371862878
+ - -1.612758301986982
+ - 0.47575208568928046
+ - 1.185458569862764
+ - 1.602268875545792
+ - 0.7388667918391855
+ - -1.8524790899040682
+ - 1.9943607153182532
+ - -1.5198680542604297
+ - 0.4380651931331259
+ - 1.2008660181708042
+ - 1.9688449416480962
+ - 0.8818075184146136
+ - -1.9097552100671396
+ - 1.9775301785293584
+ - -1.4605191087665577
+ - 0.3503995501338376
+ - 0.7697406274755475
+ - -1.6972176350225867
+ - 2.742845377386497
+ - 3.3172990917844927
+ - 1.911560889069174
+ - 1.4755263537398764
+ - -1.3897144559128487
+ - 1.9555553270605448
+ - -1.9431073059062332
+ - 1.1940815861397933
+ - -0.13670747875691316
+ - -1.021504566992114
+ - 1.196842089087187
+ - 2.054281647042453
+ - -2.1769345645522282
+ - -1.2479187497081574
+ - 1.1237559568846043
+ - -0.047352548160906886
+ - -1.1423652150026105
+ - 1.1936644573872932
+ - 1.905049361968977
+ - -1.8149252510943887
+ - -1.1543950252140207
+ - 1.0020152079755775
+ - 0.09467122909113275
+ - -1.2143040499958961
+ - 1.9092660426925294
+ - -1.9885287409533892
+ - 1.3686324696784273
+ - -0.2789173981241734
+ - -0.8608489731794756
+ - -1.8445709442297866
+ - -0.8998384773405758
+ - 1.9365747172302192
+ - -1.948398131867472
+ - 1.2613301535962973
+ - -0.19740033016392022
+ - -0.7661480090947564
+ - -2.106539028418946
+ - -0.9776192196072747
+ - 1.9715988882539977
+ - -1.9195682510793846
+ - 1.1916327585343927
+ - -0.06644332439677335
+ - -1.0805262098534492
+ - 1.8238575840246924
+ - -1.3703298671890805
+ - -1.4421426463030553
+ - -1.919728239048743
+ - -1.9481961244540589
+ - -2.7837153886058505
+ - -2.753813337350936
+ - 1.8950664958216015
+ - -1.9985143943632133
+ - 1.4004622677321097
+ - -0.33858453197290667
+ - -0.8387188493389262
+ - 1.6908129700131087
+ - -1.3307674388356148
+ - -2.478352273963959
+ - 1.1854078296470898
+ - 0.8018918777463326
+ - -0.25174744361845564
+ - -0.9184868729797735
+ - 1.7651049158364691
+ - -1.3236874446592555
+ - -2.3087124399827608
+ - 0.9421963394609906
+ - 0.7282823812046362
+ - -0.11012718692659419
+ - -1.044672437965252
+ - 1.8048899662689681
+ - -2.02815929102433
+ - 1.51172429732185
+ - -0.5600219211923799
+ - -0.346060826285094
+ - -0.22859508633845238
+ - 2.2925691993662065
+ - 1.2453344593586317
+ - -2.0131563393379066
+ - 1.4144049991736924
+ - -0.42058556404959024
+ - -0.4290644927426234
+ - -0.43357184326289766
+ - 2.6459858894103934
+ - 1.3503038406780838
+ - -1.9821073400795874
+ - 1.3491461940024085
+ - -0.3356055281177543
+ - -0.9025019681557235
+ - 1.7271619919886536
+ - -2.048643195793318
+ - 2.8586578436419328
+ - 3.533190662095036
+ - -3.2342761950823377e-16
+ - -7.130296880207098e-16
+ - -1.0620999065180874e-16
+ - 2.895132143935597e-17
+ - 6.126306411720861e-17
+ - -4.7232012976777874e-17
+ - 3.3409824941016783e-16
+ - 6.56781406367104e-17
+ - -4.0697286137608955e-17
+ - -2.0183206946293872e-17
+ - 5.4960981825320226e-17
+ - -4.0085172484319716e-16
+ - 3.4576149604716557e-17
+ - -2.7090165061111656e-16
+ - -7.510799961981491e-17
+ - -1.8363409598677214e-17
+ - 8.5761423518773e-17
+ - 2.146947279881383e-16
+ - 1.4678319969753476e-16
+ - 3.474158572722716e-17
+ - 4.7604244252426737e-17
+ - 1.9670354966510996e-16
+ - 8.797065814501448e-17
+ - 1.3309336055978215e-16
+ - -1.9331210915364254e-16
+ - 2.3161057151484772e-17
+ - 2.6014830264792717e-17
+ - -7.462203100994001e-17
+ - 8.953454649062255e-17
+ - -5.3187713387159673e-17
+ - 2.43563331366239e-16
+ - -1.2316719320914582e-16
+ - -4.291413017925107e-16
+ - 1.3036366453835716e-16
+ - 1.831377876192403e-16
+ - -6.179039175771117e-17
+ - 1.0174321534402239e-16
+ - 9.471218013732166e-17
+ - 7.494256349730431e-17
+ - -2.3820733689995814e-16
+ - 5.97224402263286e-17
+ - -1.432676820941844e-16
+ - -9.347140921849211e-17
+ - 1.0368708978352201e-16
+ - 1.3152171739593138e-17
+ - -1.375601358675685e-16
+ - 7.601789829362323e-17
+ - 1.5203579658724646e-16
+ - -3.0498149184830125e-16
+ - -2.805176252320455e-17
+ - 8.366931895973874e-17
+ - -8.263534319404745e-17
+ - -9.92616735063633e-18
+ - -6.443736971788086e-17
+ - 1.0984958534704206e-16
+ - 3.8629334606226386e-17
+ - -2.5973471234165066e-17
+ - 2.866180822496241e-16
+ - -8.189088064274973e-17
+ - 5.350824587452398e-19
+ - -1.093946360101379e-16
+ - 3.647866501358852e-17
+ - -1.5227361101335546e-16
+ - 7.82512859475164e-17
+ - 3.432799542095065e-17
+ - 1.4789989352448135e-16
+ - -2.6614536208893662e-17
+ - -9.082443125832243e-17
+ - -4.135903062765138e-20
+ - 4.373717488874133e-17
+ - 1.652706863880949e-16
+ - -9.760731228125725e-18
+ - 7.552158992609141e-17
+ - 1.2849216840245594e-16
+ - 8.131185421396261e-17
+ - 1.258141711693155e-16
+ - -1.0687173514185116e-16
+ - -4.111087644388547e-17
+ - 2.522900868286734e-18
+ - 1.2833707203760224e-16
+ - 3.308722450212111e-17
+ - -1.0521737391674511e-16
+ - 2.4525905162197267e-17
+ - -1.075334796318936e-18
+ - 4.532949756790591e-17
+ - 6.89041450256672e-17
+ - 2.0811864211834174e-16
+ - 1.3404461826421813e-16
+ - 3.98618337189304e-16
+ - -3.768841665944732e-18
+ - 3.1432863277015047e-16
+ - -9.509268321909606e-16
+ - -2.652975019610698e-16
+ - 1.2606232535308142e-16
+ - 7.506664058918726e-17
+ - -4.528813853727826e-17
+ - 3.600717206443329e-16
+ - 5.575197328607407e-17
+ - -4.0842042744805735e-17
+ - 9.640790039305536e-17
+ - 5.302227726464907e-17
+ - 9.049355901330122e-17
+ - -7.454965270634162e-17
+ - 1.867657500871096e-16
+ - -4.005363622346613e-17
+ - -3.6070761574023304e-16
+ - -1.381391622963556e-17
+ - -1.49719690872098e-17
+ - -1.6651145730692445e-16
+ - -6.832511859688009e-17
+ - -2.4153673886548405e-17
+ - -1.7834014006643274e-16
+ - -1.7019241103278542e-16
+ - -5.6739420142309234e-18
+ - -6.609173094298691e-17
+ - -1.582965198485072e-16
+ - 1.477758164325984e-16
+ - 1.2045817670303466e-16
+ - -1.8468875126777723e-16
+ - 1.10924920143361e-16
+ - 9.512577044359818e-19
+ - -1.1634295315558334e-16
+ - 3.394749233917625e-16
+ - 1.040800005744847e-16
+ - -7.217150844525166e-17
+ - -1.3937993321518516e-16
+ - -8.309029253095162e-17
+ - -1.1903129014638068e-16
+ - 1.048865016717239e-16
+ - 9.132073962585424e-17
+ - 5.872982349126496e-18
+ - 4.213709739133407e-17
+ - 5.480485148470085e-16
+ - -2.1127356067340726e-17
+ - 7.146840492458159e-17
+ - -1.4186147505284425e-16
+ - 8.480669230199915e-17
+ - 1.323488980084844e-18
+ - 3.18299099710405e-16
+ - -2.547716286663325e-17
+ - 1.6005944852901083e-16
+ - -2.649666297160486e-16
+ - 2.0596797252570386e-17
+ - 4.8141911650586205e-17
+ - 3.095309852173429e-16
+ - -5.742701402649395e-17
+ - -3.6313228891077915e-17
+ - 6.799424635185887e-17
+ - -4.028369583133244e-17
+ - -2.3574647457761285e-18
+ - -3.565148440103549e-17
+ - -2.840538223507097e-16
+ - -4.6322114302969544e-17
+ - -1.2494563152613483e-16
+ - -2.7313503826500974e-16
+ - -7.200607232274106e-17
+ - -6.519217202683549e-17
+ - -2.929046549050271e-16
+ - 8.354524186785578e-17
+ - -5.1450634100798315e-17
+ - 1.0281855014034133e-16
+ - 7.403266482349598e-18
+ - 7.558879835086135e-17
+ - 8.143593130584556e-17
+ - -1.703992061859237e-17
+ - 2.776741918763945e-17
+ - 3.879477072873699e-17
+ - -1.6063847495779795e-16
+ - 9.793818452627846e-17
+ - -7.965749298885655e-17
+ - 6.658803931051873e-17
+ - -5.9557004103817985e-18
+ - 1.462455322993753e-16
+ - 1.3630902519108205e-16
+ - 2.10103875588469e-17
+ - -5.79543416669965e-17
+ - 2.010048888503857e-17
+ - -1.4392942658422682e-17
+ - -9.264422860593909e-17
+ - 6.72663274128122e-16
+- - -4.387542681229006
+ - -3.403332190304343
+ - 3.091786128392355
+ - -4.282577240619799
+ - 4.088038421388131
+ - -2.4519706357959468
+ - 0.0791360046617541
+ - 2.3241808571198472
+ - -2.6382572273576663
+ - -4.5698081780693105
+ - 4.543251134633581
+ - 2.6272139155220593
+ - -2.294818372803312
+ - -0.11192480165163007
+ - 2.5787276137650528
+ - -2.6184421609887014
+ - -4.217471078317288
+ - 3.770971453385401
+ - 2.4238979310598543
+ - -2.027623790569787
+ - -0.4184845919639159
+ - 2.7275179540557204
+ - -4.196899463642899
+ - 4.199583396582573
+ - -2.840342886235589
+ - 0.48311668450544615
+ - 1.65598659548303
+ - 4.094788615300796
+ - 2.0225086209574514
+ - -4.246744645082227
+ - 4.102333443154862
+ - -2.59979435314814
+ - 0.30575005635872804
+ - 1.4300498936674328
+ - 4.656334057086544
+ - 2.1837716439631807
+ - -4.310987777884703
+ - 4.03140244147706
+ - -2.4465766355347207
+ - -0.0721688494875779
+ - 2.447899764336567
+ - -4.032323694932607
+ - 7.836155663011462
+ - 7.740811851139077
+ - 2.4826378085932728
+ - 2.252935376037433
+ - -2.5819180162321285
+ - -2.8024053562476676
+ - 0.01578568603436732
+ - 2.3775474429355583
+ - -3.996942289459141
+ - 4.301122752828914
+ - -3.156633150190422
+ - 0.9897044504128338
+ - 0.8500952768644353
+ - 0.7729242628389659
+ - -5.397149509475366
+ - -2.7415493433026086
+ - 4.262265684735298
+ - -3.0213805368959723
+ - 0.6881948285228817
+ - 1.0512954765603988
+ - 1.0538179333205517
+ - -5.003821909649811
+ - -2.7723181942331045
+ - 4.181137299050162
+ - -2.7916587828468176
+ - 0.5026503086696981
+ - 2.0790124335089346
+ - -3.843014954788773
+ - 4.366165088921828
+ - -2.3304781824165612
+ - -4.522303283337944
+ - -0.8384677913457951
+ - -0.005233564699685719
+ - 2.2420249500638474
+ - -3.9808215135318097
+ - 4.331698327148173
+ - -2.369709735334801
+ - -4.99060050378345
+ - -1.3771517773005686
+ - -0.2818577879968722
+ - 2.500185986437521
+ - -4.05639805668115
+ - 4.29987438456005
+ - -3.049802889759576
+ - 0.8453461925579758
+ - 1.6375740760480082
+ - -3.5962035496098657
+ - -4.195704139390688
+ - 0.26367288456844185
+ - 0.4240686866923703
+ - 0.6620796229601976
+ - -2.9163810649930557
+ - 4.22581675872136
+ - -4.121169819897465
+ - 2.650482302522487
+ - -0.3176006833870688
+ - -1.281234816813667
+ - -1.648169607221482
+ - 5.724558137750495
+ - 2.9786924055831463
+ - -4.054531335429856
+ - 2.4960065856596434
+ - -0.010670160989772953
+ - -1.4479763697049635
+ - -1.7989568532516658
+ - 4.995633903837432
+ - 2.8407932254121695
+ - -3.928555738874826
+ - 2.2375748971517795
+ - 0.1765554065955228
+ - -2.6487128177868735
+ - 4.121791643499496
+ - -4.26015067579045
+ - 2.0489386696627925
+ - 4.1327097910306305
+ - 1.592598405921307
+ - 0.44558992767845945
+ - -2.795570917982008
+ - 4.215459879270341
+ - -4.178966013283348
+ - 1.930859624519718
+ - 4.260172036490245
+ - 2.0843255438363415
+ - 0.6642418227625981
+ - -3.024873381822155
+ - 4.263059133511037
+ - -4.118979642526227
+ - 2.52841870440276
+ - -0.1702358628095421
+ - -2.2446823489874808
+ - 6.49718457691369
+ - 6.537904013785802
+ - 4.076293593003543
+ - 3.9805840341856458
+ - 2.2380865366467377
+ - 2.0658652181604507
+ - -2.5742516290956554
+ - 4.091256139968174
+ - -4.2811804364677055
+ - 2.984587197125928
+ - -0.754459182970434
+ - -1.7214891181266716
+ - 2.3036482638311875
+ - 3.8104342191429508
+ - -4.799186262203142
+ - -2.7080530281200113
+ - 2.8449980580683927
+ - -0.5655818816553554
+ - -1.9996341384716545
+ - 2.413198673218305
+ - 3.7472549327026092
+ - -4.237306476648412
+ - -2.626694174107842
+ - 2.6044891254027394
+ - -0.2597436326815991
+ - -2.1642024212544015
+ - 3.9546346052697703
+ - -4.340599418039161
+ - 3.3226680786056484
+ - -0.9116772875660829
+ - -2.36834394392417
+ - -3.597928104860336
+ - -1.687843781173888
+ - 4.031747934996661
+ - -4.289634925845142
+ - 3.1145084251023745
+ - -0.822613687094277
+ - -2.368324031167675
+ - -4.3949897180333535
+ - -1.9936395904090156
+ - 4.141700582221276
+ - -4.246972264569367
+ - 2.9798183821535407
+ - -0.6048876300898571
+ - -1.8561888117796372
+ - 3.7209925099630334
+ - -5.996489176521463
+ - -7.263924728171828
+ - 3.90429249125029e-16
+ - 1.2566527865905594e-15
+ - 2.0514079191315083e-17
+ - -1.6336817097922294e-16
+ - -5.773720675620133e-17
+ - 1.0521737391674511e-16
+ - -3.743819452415003e-16
+ - -1.621274000603934e-16
+ - 3.692534254436715e-16
+ - -3.90429249125029e-17
+ - -1.10924920143361e-16
+ - 6.91522992094331e-16
+ - -3.2210413052814893e-16
+ - 2.9761958439657936e-16
+ - 1.6386447934675476e-16
+ - 2.613890735667567e-17
+ - -1.0178457437465004e-16
+ - -2.216844041642114e-16
+ - -1.8332390325706473e-16
+ - 5.459392042849982e-17
+ - -1.7163997710475324e-17
+ - -2.302870825347629e-16
+ - -1.654361225106055e-16
+ - -2.1142736456855385e-16
+ - 1.6609786700064793e-16
+ - 9.264422860593909e-17
+ - -2.5890753172909763e-17
+ - 1.981924747677054e-16
+ - -4.317882797526804e-17
+ - -1.0885696861197843e-16
+ - -6.408168205448304e-16
+ - 2.761542475008283e-16
+ - 3.9439971606528355e-16
+ - -3.1945715256797924e-16
+ - -3.9522689667783657e-16
+ - 3.4146015686188977e-16
+ - -1.6651145730692445e-16
+ - -1.0637542677431935e-16
+ - 1.4517019750305636e-16
+ - 2.7830491709346616e-16
+ - -1.3561109154924043e-16
+ - -9.760731228125725e-18
+ - 3.267363419584459e-16
+ - -2.2805369488086973e-16
+ - -1.7755431848450737e-16
+ - 3.535188992292644e-16
+ - -2.2325604732806217e-16
+ - 1.1282743555223297e-16
+ - 5.09543257332665e-16
+ - 1.1681858200780133e-16
+ - -3.505591435999731e-16
+ - -4.3344264097778644e-17
+ - 9.785546646502316e-17
+ - 3.0804206011474746e-16
+ - 1.6278914455043582e-16
+ - -8.329708768408987e-17
+ - 9.214792023840727e-17
+ - -4.0647655300855775e-16
+ - 1.1712877473750872e-16
+ - -2.8785885316845363e-17
+ - 2.834747959219226e-16
+ - 3.7512640779279805e-17
+ - 2.0464448354561902e-16
+ - -2.2830184906463564e-16
+ - -1.92071338234813e-16
+ - -4.08461786478685e-16
+ - 2.843846945957309e-16
+ - 1.6254099036666991e-16
+ - 3.926626367789222e-16
+ - 3.221868485894043e-17
+ - -2.240005098793599e-16
+ - 1.2093380555525265e-16
+ - -7.130296880207099e-17
+ - -2.941867848544843e-16
+ - -2.6049985440826224e-16
+ - -1.7552772598375245e-16
+ - 3.4013666788180493e-16
+ - 2.7098436867237187e-16
+ - -1.5708159832381993e-16
+ - 2.689370966563031e-17
+ - -6.981404369947554e-17
+ - 1.5187036046473586e-16
+ - -2.456726419282492e-17
+ - -3.2533013491710574e-16
+ - -8.096030245362758e-18
+ - -9.640790039305536e-17
+ - -2.961306592939839e-16
+ - -7.130296880207099e-17
+ - -1.7668577884132669e-16
+ - -7.517003816575639e-17
+ - 8.437242248040881e-17
+ - 1.0482032722271967e-15
+ - 3.4096384849435796e-16
+ - -2.0791184696520348e-16
+ - 3.0605682664462024e-17
+ - 1.0683037611122351e-16
+ - -4.997825261045393e-16
+ - 1.2895745749701701e-16
+ - -3.3434640359393374e-16
+ - -3.076905083544124e-16
+ - -3.3087224502121103e-18
+ - -8.093135113218822e-16
+ - 1.4765173934071544e-16
+ - -2.603964568316931e-16
+ - 6.718774525461967e-17
+ - 3.3514256493351603e-16
+ - 9.826905677129968e-17
+ - -7.047578818951796e-17
+ - 2.8529459326953925e-16
+ - 7.692779696743156e-17
+ - -7.841672207002701e-17
+ - 3.5320612156014277e-16
+ - 3.610229783487689e-16
+ - -1.119588959090523e-16
+ - 2.008394527278751e-16
+ - 1.1249656330721176e-16
+ - -2.0141847915666221e-16
+ - -1.7015105200215777e-16
+ - 1.8512302108936757e-16
+ - -1.0083331667021406e-16
+ - 1.0091603473146936e-16
+ - 1.063340677436917e-16
+ - -5.3187713387159673e-17
+ - -3.389372559936031e-17
+ - 2.932355271500483e-16
+ - 3.537851479889299e-16
+ - 1.9823383379833306e-16
+ - 1.1604827006236133e-16
+ - -5.641371777611649e-17
+ - 1.25400580863039e-16
+ - 2.883965205666131e-16
+ - 1.3689839137752608e-16
+ - -4.931237221734874e-16
+ - -1.4636960939125825e-16
+ - 1.0902240473448904e-16
+ - 2.892650602097938e-16
+ - -2.375352526522588e-16
+ - -1.9653811354259935e-16
+ - -5.429613540798074e-16
+ - 1.138200522872966e-16
+ - -4.255017070972774e-16
+ - 3.7500233070091505e-16
+ - -1.3731198168380258e-17
+ - 1.3665023719376017e-16
+ - -9.072516958481608e-16
+ - 3.5982356646056704e-18
+ - -4.384057246531046e-17
+ - -2.2300789314429626e-16
+ - 5.194694246833013e-17
+ - 1.0405544365004953e-16
+ - 2.7611288847020064e-16
+ - 5.199657330508332e-16
+ - 8.619221982802547e-17
+ - 2.357464745776129e-16
+ - 5.786955565420982e-16
+ - -2.8289576949313546e-17
+ - 1.0455562942670269e-16
+ - 4.992862177370075e-16
+ - -1.6874484496081765e-17
+ - 1.5956314016147901e-16
+ - -1.889280519071115e-16
+ - -2.605618929542037e-17
+ - -2.6945408453914873e-17
+ - -1.0343376572092764e-16
+ - -5.740633451118012e-16
+ - -1.127757367639484e-16
+ - -2.1539783150880838e-16
+ - 2.1837568171399928e-16
+ - -4.0928896709123804e-16
+ - 2.594038400966295e-16
+ - -8.156000839772852e-17
+ - -1.799945012915388e-16
+ - -2.383934525377826e-16
+ - -1.7705801011697555e-16
+ - -8.644037401179138e-17
+ - -4.350970022028925e-17
+ - -2.2333876538931744e-17
+ - -1.3036366453835716e-16
+ - 4.0366413892587744e-17
+ - -7.040961374051371e-16
+- - -6.2938697673263295
+ - -4.924679199201036
+ - 4.2705720233135045
+ - -5.526650112069121
+ - 4.995807196866412
+ - -2.6880133045032646
+ - -0.4021033847920821
+ - 3.3687176898935904
+ - -3.504867404614589
+ - -6.1818282453771785
+ - 5.352215661846683
+ - 3.1594254970970232
+ - -2.4773640315865433
+ - -0.6439461531341367
+ - 3.671259978962395
+ - -3.444286994501789
+ - -5.651232952968027
+ - 4.39499399562879
+ - 2.8969320620836316
+ - -2.121656976415923
+ - -1.029913804118609
+ - 3.8466004316374693
+ - -5.456749685383476
+ - 5.1747321110522
+ - -3.2135938032220803
+ - 0.2893813808759407
+ - 1.5533792778905984
+ - 5.516763249197226
+ - 2.7910913300709144
+ - -5.499156126729192
+ - 5.018155593509072
+ - -2.8871135927432316
+ - 0.0599587246795656
+ - 1.2071515705061646
+ - 6.2202296467536415
+ - 2.9780662715507513
+ - -5.546018250042787
+ - 4.907994392590068
+ - -2.680753618555391
+ - -0.5936694801041786
+ - 3.5161231247409814
+ - -5.301077954692788
+ - 9.956014077176981
+ - 9.858164363006528
+ - 3.54619315606961
+ - 3.2727674566618985
+ - -2.4295229848876714
+ - -2.707600811681804
+ - -0.4824126626856284
+ - 3.432374657036884
+ - -5.2655179973383595
+ - 5.351340494177469
+ - -3.648252066817505
+ - 0.7636518907225315
+ - 1.3905320502418714
+ - 1.5976159133704033
+ - -6.919598267507649
+ - -3.567383134748245
+ - 5.281105960384842
+ - -3.4615225347893848
+ - 0.37513889294752606
+ - 1.6350139451015713
+ - 1.8969514072680376
+ - -6.374106594799155
+ - -3.585712274157192
+ - 5.144394937365838
+ - -3.1472649227948173
+ - 0.13734548499436128
+ - 3.0746572351397563
+ - -5.106293233694052
+ - 5.489162208247743
+ - -2.7624165967157768
+ - -5.4768829763952285
+ - -1.6290460594724532
+ - -0.3336654067156699
+ - 3.270467391790599
+ - -5.2492792578478635
+ - 5.410484453659515
+ - -2.788637095354505
+ - -5.9963811206750455
+ - -2.381463398495428
+ - -0.699938838783884
+ - 3.5782246789490104
+ - -5.324829344369164
+ - 5.349020305252329
+ - -3.5006843745823466
+ - 0.577347716540325
+ - 2.539561314883389
+ - -5.154268570249689
+ - -6.065525541980384
+ - -0.559773910841806
+ - -0.1906538299407548
+ - 1.335172963141702
+ - -4.06705498590499
+ - 5.482131733143716
+ - -5.048002458425396
+ - 2.9558067475969665
+ - 0.09925770357556392
+ - -1.933815939438625
+ - -2.716076957499424
+ - 7.233070052856785
+ - 3.814747619302296
+ - -4.943553495345429
+ - 2.747320566626309
+ - 0.4891901779771189
+ - -2.11494273841412
+ - -2.814913299080884
+ - 6.2744175874656465
+ - 3.6222747745479076
+ - -4.751892145327244
+ - 2.4010879650554044
+ - 0.7257979690508508
+ - -3.753475026678061
+ - 5.388404090651708
+ - -5.277618445216235
+ - 2.3668357080949267
+ - 4.906290489628179
+ - 2.5621581156398907
+ - 0.8871825396307429
+ - -3.9260842291176337
+ - 5.473416757266436
+ - -5.140835831230707
+ - 2.2013909356758625
+ - 5.0037954462630285
+ - 3.2167399430144794
+ - 1.161069665152391
+ - -4.192938198610849
+ - 5.512445560251365
+ - -5.044512932123266
+ - 2.7910009115124406
+ - 0.28676838115115894
+ - -3.273297151985844
+ - 8.338002142547259
+ - 8.103715293816055
+ - 5.316813162512453
+ - 5.225265415344196
+ - 3.6856291201988425
+ - 3.4834505946247663
+ - -3.665593098766508
+ - 5.35940905665706
+ - -5.314777661150188
+ - 3.411179833422327
+ - -0.4601286363879272
+ - -2.6414506540302813
+ - 3.11252531968196
+ - 5.271390058855011
+ - -5.779980507853501
+ - -3.320515751956311
+ - 3.2201080200252385
+ - -0.21767047003047874
+ - -2.978636737610651
+ - 3.2293127939404522
+ - 5.126936503135032
+ - -5.056922803959801
+ - -3.198779102805453
+ - 2.8936767576208444
+ - 0.1728640320169044
+ - -3.176737446850103
+ - 5.223011702051714
+ - -5.429215281073177
+ - 3.8795725508333674
+ - -0.8444563930032575
+ - -2.491263065356316
+ - -4.9563028934067255
+ - -2.4004669225683606
+ - 5.301053795199967
+ - -5.329949274634259
+ - 3.5900890377082653
+ - -0.7101145301923655
+ - -2.400264283134991
+ - -5.985733175285255
+ - -2.781822493503495
+ - 5.407362024382808
+ - -5.254566059481848
+ - 3.404638256813066
+ - -0.2680681571263509
+ - -2.80505330236148
+ - 4.976326551302141
+ - -7.833349720197448
+ - -9.520233033633422
+ - 7.646457582440187e-16
+ - 1.8250913035370003e-15
+ - 8.503416697045123e-17
+ - -1.738733647586464e-16
+ - -1.0397660299791557e-16
+ - 1.0240495983406481e-16
+ - -5.276585127475764e-16
+ - -2.302870825347629e-16
+ - 3.5800376911295033e-16
+ - -3.672681919735443e-17
+ - -1.1650838927809395e-16
+ - 9.492724709658546e-16
+ - -3.6743362809605484e-16
+ - 4.1276312566396076e-16
+ - 2.0497535579064023e-16
+ - 9.926167350636332e-19
+ - -1.4148924377719538e-16
+ - -3.0609818567524784e-16
+ - -2.5197989409896606e-16
+ - 7.246102165964522e-17
+ - -1.631613758260847e-17
+ - -3.1151621868747017e-16
+ - -2.2060906936789246e-16
+ - -2.7702278714400897e-16
+ - 2.544407564213113e-16
+ - 5.69100261436483e-17
+ - -3.8298462361205175e-17
+ - 2.467066176939405e-16
+ - -2.0886310466963946e-17
+ - -8.834288942066334e-17
+ - -7.762262868197611e-16
+ - 3.5552222727529125e-16
+ - 5.059036626374317e-16
+ - -3.752091258540533e-16
+ - -5.151680854980256e-16
+ - 3.419564652294216e-16
+ - -1.981097567064501e-16
+ - -1.1894857208512538e-16
+ - 1.403725499502488e-16
+ - 4.1316637621258036e-16
+ - -1.2542126037835282e-16
+ - 2.3822801641527194e-17
+ - 4.440305528184652e-16
+ - -2.817790756661889e-16
+ - -2.275367069980241e-16
+ - 4.365943283585842e-16
+ - -2.7636104265396655e-16
+ - 4.301339185275743e-17
+ - 6.862290361739917e-16
+ - 1.4209411960012479e-16
+ - -4.4270706383838036e-16
+ - -3.3004506440865804e-17
+ - 1.375601358675685e-16
+ - 3.603198748280988e-16
+ - 1.167979024924875e-16
+ - -1.134891800422754e-16
+ - 9.496033432108756e-17
+ - -5.107013101902393e-16
+ - 1.7618947047379487e-16
+ - -3.821574429994987e-17
+ - 4.0428452438529223e-16
+ - 2.99439381744196e-17
+ - 2.9786773858034527e-16
+ - -3.1333601603508683e-16
+ - -2.5212465070616284e-16
+ - -5.083852044750908e-16
+ - 2.727214479587332e-16
+ - 2.1945101651031822e-16
+ - 4.3224322908958456e-16
+ - 9.223063829966259e-18
+ - -2.905058311286233e-16
+ - 1.3830459841886623e-16
+ - -1.0124690697649058e-16
+ - -3.896847865737313e-16
+ - -3.6809537258609727e-16
+ - -2.478233115208871e-16
+ - 4.2103493178949104e-16
+ - 3.2334490144697847e-16
+ - -1.648570960818184e-16
+ - -2.322309569742625e-17
+ - -7.510799961981491e-17
+ - 1.8727369068200544e-16
+ - -3.5982356646056704e-17
+ - -3.5932725809303517e-16
+ - -5.258800744305873e-17
+ - -1.1580528575742387e-16
+ - -4.106124560713229e-16
+ - -1.2176098616780567e-16
+ - -3.3748968992163524e-16
+ - -8.841526772426173e-17
+ - 3.871205266748169e-17
+ - 1.3916486625592136e-15
+ - 4.71823821400247e-16
+ - -2.8707303158652825e-16
+ - -8.437242248040882e-18
+ - 1.0587911840678753e-16
+ - -6.48344164119063e-16
+ - 1.2920561168078292e-16
+ - -3.578383329904397e-16
+ - -3.830880211886209e-16
+ - 2.3822801641527194e-17
+ - -9.582060215814273e-16
+ - 2.1332987997742581e-16
+ - -3.7880736151865897e-16
+ - 2.638706154044158e-17
+ - 4.0182366206294697e-16
+ - 1.1563984963491327e-16
+ - -7.047578818951796e-17
+ - 3.8860945177741235e-16
+ - 1.138200522872966e-16
+ - -9.098986738083303e-17
+ - 4.373303898567857e-16
+ - 4.631384249684402e-16
+ - -1.2473883637299657e-16
+ - 2.359119107001235e-16
+ - 1.2093380555525265e-16
+ - -3.094482671560876e-16
+ - -2.416194569267394e-16
+ - 2.639119744350435e-16
+ - -1.3896634290890865e-16
+ - 1.494715366883321e-16
+ - 1.3921449709267456e-16
+ - -1.6307865776482938e-16
+ - -6.430295286834099e-17
+ - 3.398057956367837e-16
+ - 4.197941608706615e-16
+ - 2.3748355386397425e-16
+ - 1.7115013108575697e-16
+ - -1.0596183646804283e-16
+ - 1.4591466005435408e-16
+ - 3.5204806870256853e-16
+ - 1.2101652361650795e-16
+ - -7.10630864244306e-16
+ - -1.8487486690560166e-16
+ - 9.578751493364059e-17
+ - 3.338500952264019e-16
+ - -2.7675395344492923e-16
+ - -2.4054412213042045e-16
+ - -6.766337410683765e-16
+ - 1.3615392882622836e-16
+ - -5.171533189681529e-16
+ - 5.044147375348363e-16
+ - -2.3822801641527194e-17
+ - 9.826905677129968e-17
+ - -1.0104838362947786e-15
+ - 1.050519377942345e-17
+ - -4.020097777007714e-17
+ - -2.4385284458063256e-16
+ - 4.0035541647566533e-17
+ - 1.2399437382169885e-16
+ - 3.207806415480641e-16
+ - 6.941699700545007e-16
+ - 1.225881667803587e-16
+ - 2.901749588836021e-16
+ - 7.066603973040514e-16
+ - -2.8951321439355965e-18
+ - 1.1795595535006175e-16
+ - 6.000368163459663e-16
+ - -6.385834328909374e-17
+ - 1.9058241313221755e-16
+ - -2.362427829451447e-16
+ - -5.707546226615891e-17
+ - -4.6549588971421626e-17
+ - -1.4402248440313903e-16
+ - -6.415612830961282e-16
+ - -1.3858829551957777e-16
+ - -2.807450999004976e-16
+ - 2.9480717031389906e-16
+ - -5.247633806036408e-16
+ - 3.2872157542857315e-16
+ - -1.108422020821057e-16
+ - -1.7867101231145395e-16
+ - -3.0473333766453535e-16
+ - -2.2234614865425384e-16
+ - -1.1150394657214813e-16
+ - -3.556876633978019e-17
+ - -3.407984123718474e-17
+ - -1.588186776101813e-16
+ - -1.3036366453835716e-16
+ - -9.304127529996455e-16
+- - -5.766132031488885
+ - -4.657587643395949
+ - 3.349690203250265
+ - -2.954155912119307
+ - 1.606716707871899
+ - 0.37378059945224246
+ - -2.131902775202281
+ - 3.204968530245614
+ - -2.254420397697184
+ - -4.386019275302688
+ - 0.9188016468975146
+ - 0.8106612402006859
+ - 0.5161950379346278
+ - -2.243230378318959
+ - 3.268040306408477
+ - -2.088933392670559
+ - -3.813797206073267
+ - 0.5569575283895283
+ - 0.6699115167900456
+ - 0.7477340396736838
+ - -2.4128722747541933
+ - 3.298376332919093
+ - -3.0713609122758663
+ - 1.8352918606114008
+ - 0.00011118916564841162
+ - -1.1154120610573581
+ - -1.3886328507201864
+ - 3.8325984125713504
+ - 2.180253879907954
+ - -3.0106762898427992
+ - 1.6334778199577604
+ - 0.23564774592999996
+ - -1.2400680686069505
+ - -1.781498731700847
+ - 4.1279710077764955
+ - 2.199847280346671
+ - -2.898680070743318
+ - 1.50378320463848
+ - 0.378761064330408
+ - -2.2202695397237875
+ - 3.2371667207182635
+ - -3.2037272880812764
+ - 4.7264842942964576
+ - 4.769861622745084
+ - 3.197132352143236
+ - 3.1384384208850857
+ - 2.1321704727989594
+ - 2.0080961292482495
+ - -2.1693462131123713
+ - 3.2191891248078948
+ - -3.2231347636080874
+ - 2.102940898312422
+ - -0.3329116993844632
+ - -1.544238013596622
+ - 1.8590650757574572
+ - 3.1356744671755994
+ - -3.525997564360037
+ - -2.01871805964613
+ - 1.9890483062653734
+ - -0.18678086623883872
+ - -1.7496922968284192
+ - 1.9320887679782899
+ - 3.0555646409581656
+ - -3.090357237975599
+ - -1.9472447494592378
+ - 1.794247748301398
+ - 0.048881128795665
+ - -1.870524904862303
+ - 3.1326699584029285
+ - -3.287913308623934
+ - 2.381482310709373
+ - -0.5449316305832501
+ - -1.562152193641412
+ - -2.9503890459377047
+ - -1.421203231183205
+ - 3.182005621287386
+ - -3.2318172505950518
+ - 2.2094107668360863
+ - -0.46615763776380065
+ - -1.5173026531707936
+ - -3.570227732529296
+ - -1.6523107145960458
+ - 3.249941577353874
+ - -3.1886215644750466
+ - 2.0990206521070056
+ - -0.217151270893073
+ - -1.6438636471334593
+ - 2.9781091311044894
+ - -4.706871680335912
+ - -5.7171154467617304
+ - -3.7209893610060636
+ - -2.9072984796361423
+ - 2.5414491697335735
+ - -3.32771112058709
+ - 3.039609725362932
+ - -1.6704461379641262
+ - -0.18646077396001004
+ - 1.9886229869775962
+ - -2.099658342524631
+ - -3.691538625889795
+ - 3.2790585612783567
+ - 1.9279307361901543
+ - -1.544475026752642
+ - -0.3326293607790672
+ - 2.1736345581138052
+ - -2.0670126336513066
+ - -3.3803239298768246
+ - 2.698311458368835
+ - 1.769867952586738
+ - -1.3314463830012002
+ - -0.5660857544746287
+ - 2.281078170040844
+ - -3.281154337713119
+ - 3.143520430771261
+ - -1.9842883649273133
+ - 0.21087736514627842
+ - 0.9993813039068813
+ - 3.2967314153679586
+ - 1.6609579378282067
+ - -3.30911011438799
+ - 3.052619885967082
+ - -1.7894644289976256
+ - 0.07277444794800178
+ - 0.7968489702607927
+ - 3.7226800850034056
+ - 1.7758708284609812
+ - -3.341259462523336
+ - 2.9883372597696916
+ - -1.6661136714663625
+ - -0.3022203061399344
+ - 2.078728097715953
+ - -3.181177485169304
+ - 6.012621938704998
+ - 5.950920551503751
+ - 3.0563102250417162
+ - 3.1289033593648696
+ - 5.001610641550284
+ - 4.969861642806264
+ - -3.265408229560326
+ - 3.1676278638236437
+ - -2.0422174193142446
+ - 0.14899631260872684
+ - 1.706256772561384
+ - -3.00821506733704
+ - 2.1947728809597855
+ - 4.1637339461703595
+ - -1.518010379912609
+ - -1.1125652845158063
+ - 0.0053065186074933495
+ - 1.8309637072885612
+ - -3.1057297399822024
+ - 2.1637227312175162
+ - 3.847290185610468
+ - -1.139334843571102
+ - -0.9838447750252496
+ - -0.23022769137718352
+ - 2.0239457529670077
+ - -3.1573510220475143
+ - 3.2464561522514024
+ - -2.2469489699078937
+ - 0.5213948786907455
+ - 0.8110336303829713
+ - 0.8166593061967078
+ - -3.8399974484546178
+ - -2.128303609101503
+ - 3.206555647874238
+ - -2.0665066624907724
+ - 0.2873676933790585
+ - 0.9566179192029076
+ - 1.2111546717442998
+ - -4.393407394093531
+ - -2.281692533455411
+ - 3.128067700213265
+ - -1.9489101211936573
+ - 0.1440087624366713
+ - 1.8052642705830972
+ - -3.056808226709831
+ - 3.323064074276999
+ - -4.547890010191606
+ - -5.644454035358357
+ - 1.2060293331023142e-15
+ - 1.7299655330934019e-15
+ - 2.574186066265022e-16
+ - -6.898686308692251e-17
+ - -1.0885696861197843e-16
+ - -8.156000839772852e-17
+ - -5.579333231670172e-16
+ - 1.4558378780933287e-17
+ - 2.646977960169688e-18
+ - 2.0844951436336294e-17
+ - -2.936491174563248e-18
+ - 6.677001904528038e-16
+ - 2.2003004293910533e-17
+ - 4.0680742525357896e-16
+ - 3.6313228891077915e-17
+ - -1.6692504761320096e-16
+ - -9.028676386016296e-17
+ - -2.871971086784112e-16
+ - -1.8231060700668727e-16
+ - -8.296621543906866e-17
+ - 7.137017722684092e-18
+ - -2.565914260139492e-16
+ - -1.6729727888884982e-16
+ - -2.416194569267394e-16
+ - 2.3748355386397425e-16
+ - -2.3706996355769773e-16
+ - -6.118034605595331e-17
+ - 9.840347362083954e-17
+ - -4.9341323538788095e-17
+ - 9.678013166870423e-17
+ - -2.4684103454348037e-16
+ - 2.0547166415817205e-16
+ - 3.636285972783109e-16
+ - -1.8727369068200544e-16
+ - -2.991912275604301e-16
+ - -1.1464723289984964e-16
+ - -1.0058516248644815e-16
+ - -1.0538281003925571e-16
+ - -1.1291015361348828e-16
+ - 4.0275424025206913e-16
+ - 8.329708768408987e-17
+ - 1.5873595954892599e-16
+ - 2.33595804984975e-16
+ - -1.7197084934977443e-16
+ - -1.3059113920680924e-16
+ - 1.651155900232412e-16
+ - -1.254832989242943e-16
+ - -4.618976540496107e-16
+ - 5.922613185879678e-16
+ - 3.9456515218779414e-17
+ - -1.5782606087511766e-16
+ - 1.2498699055676248e-16
+ - 2.225115847767644e-17
+ - 1.19941188820189e-17
+ - -2.2879815743216745e-16
+ - -8.197359870400503e-17
+ - -3.341809674714232e-17
+ - -3.8199200687698813e-16
+ - 1.9008610476468574e-16
+ - -1.075334796318936e-18
+ - 3.029342198322325e-16
+ - -8.346252380660048e-17
+ - 3.243375181820421e-16
+ - -2.219325583479773e-16
+ - -1.4845824043795464e-16
+ - -2.2019547906161594e-16
+ - -8.848764602786012e-17
+ - 2.040654571168319e-16
+ - -7.833400400877171e-17
+ - -1.1001502146955267e-16
+ - -1.8346865986426151e-16
+ - 5.39321759384574e-17
+ - -8.08982639076861e-17
+ - -2.468720538164511e-16
+ - -2.3458842172003865e-16
+ - -2.779326858178173e-16
+ - 1.3813916229635562e-16
+ - 5.078888961075589e-17
+ - 3.88774887899923e-18
+ - -2.405854811610481e-16
+ - -2.812414082680294e-17
+ - 2.905058311286233e-16
+ - -7.130296880207099e-17
+ - 9.59529510561512e-18
+ - -1.6742135598073278e-16
+ - -3.168101746078096e-17
+ - -2.9133301174117635e-16
+ - -2.269783600845508e-16
+ - -4.493658677694323e-16
+ - -8.602678370551488e-18
+ - -5.694311336815043e-16
+ - 1.3334151474354804e-15
+ - 4.519301276683467e-16
+ - -1.933534681842702e-16
+ - -1.8696349795229806e-16
+ - -2.0472720160687432e-17
+ - -5.911032657303936e-16
+ - -1.7825742200517744e-16
+ - 2.451763335607174e-16
+ - -6.435465165662555e-17
+ - 2.605618929542037e-17
+ - -5.823351512373315e-17
+ - 8.536503921547244e-17
+ - -3.74593910273467e-16
+ - -1.8652922813070772e-16
+ - 2.8918234214853848e-16
+ - 2.787598664303703e-17
+ - -6.948317145445432e-18
+ - 2.4037868600790984e-16
+ - 1.2010662494269962e-16
+ - 5.6248281653605874e-18
+ - 3.2624003359091407e-16
+ - 3.27315368387233e-16
+ - 1.0019225169548546e-17
+ - 6.600901288173161e-17
+ - 3.58996385848014e-17
+ - -3.174098805519105e-16
+ - -2.085735914552459e-16
+ - 2.4352197233561135e-16
+ - -1.7073007843094489e-16
+ - 1.0885696861197843e-16
+ - 2.2317332926680687e-16
+ - -6.648877763701235e-16
+ - -1.9728257609389708e-16
+ - 3.9063604427816726e-17
+ - 2.8603905582083697e-16
+ - 9.148617574836485e-17
+ - 3.25536930070244e-16
+ - -1.8355137792551682e-16
+ - -7.246102165964522e-17
+ - -6.121136532892404e-18
+ - -1.1994118882018901e-16
+ - -9.935266337374415e-16
+ - -7.213014941462401e-17
+ - -1.6295458067294643e-16
+ - 1.9124415762225997e-16
+ - -6.563678160608275e-17
+ - 9.214792023840727e-17
+ - -4.233510375046395e-16
+ - 3.788487205492866e-17
+ - -1.1299287167474358e-16
+ - 4.2070405954446983e-16
+ - -7.684507890617626e-17
+ - -2.1159280069106445e-16
+ - -2.779326858178173e-16
+ - 1.3513029281819398e-16
+ - 4.6073960119203635e-17
+ - -1.432676820941844e-16
+ - -7.610061635487855e-18
+ - 7.527343574232552e-18
+ - 5.4097612060968004e-17
+ - 4.832389138534788e-16
+ - 1.3011551035459125e-16
+ - 1.3640208300999426e-16
+ - 4.1284584372521606e-16
+ - 1.4252321954288667e-16
+ - 5.781992481745663e-17
+ - 3.1672745654655425e-16
+ - -8.602678370551487e-17
+ - 1.167151844312322e-16
+ - -9.661469554619362e-17
+ - -1.2391165576044355e-16
+ - -9.574615590301294e-17
+ - -1.6750407404198808e-16
+ - -1.919059021123024e-17
+ - -4.4833189200374094e-17
+ - -1.3665023719376017e-16
+ - 2.269783600845508e-16
+ - -2.547716286663325e-16
+ - 7.113753267956038e-17
+ - -6.675347543302933e-17
+ - 1.0769891575440419e-16
+ - -2.1639044824387202e-16
+ - -2.3821767665761506e-16
+ - -2.1548054957006368e-17
+ - 5.966040168038712e-17
+ - -7.585246217111263e-17
+ - -1.3234889800848441e-17
+ - -3.9770843851549566e-16
+ - -1.155405879614069e-15
+- - -5.716411146793451
+ - -4.705880676383323
+ - 2.9971028453438784
+ - -1.6318320353091877
+ - -0.19097125679246296
+ - 2.108523335926139
+ - -3.165467493704771
+ - 3.266978167294998
+ - -1.65480923881732
+ - -3.573396366898317
+ - -1.505859026588477
+ - -0.46021321251415503
+ - 2.218259985433098
+ - -3.2097507516080093
+ - 3.1988750195220335
+ - -1.4240425062004693
+ - -2.953879749243997
+ - -1.5521558427762834
+ - -0.5392577676104754
+ - 2.3913569830739623
+ - -3.265577798080303
+ - 3.1506963311132865
+ - -1.8579808159674853
+ - 0.07487268552484905
+ - 1.8034790994762726
+ - -1.9431073433096853
+ - -3.0820349603708537
+ - 3.0586550967596335
+ - 1.9329237910298398
+ - -1.7382264924280992
+ - -0.16137796892877865
+ - 1.997655962722985
+ - -2.014815572984592
+ - -3.51741160801661
+ - 3.139744721124099
+ - 1.8603393297369268
+ - -1.5324539899127958
+ - -0.3066284638248148
+ - 2.1124472356425694
+ - -3.2002483098670917
+ - 3.2365489628767974
+ - -2.1559920078264168
+ - 2.0202812240438917
+ - 2.1439645487175993
+ - 3.1382195026519217
+ - 3.19636451715801
+ - 4.756988839512851
+ - 4.713248058007933
+ - -3.1806997661975913
+ - 3.2543583430610856
+ - -2.2067617685036964
+ - 0.4043912933560254
+ - 1.5128907704985979
+ - -2.874229819692005
+ - 2.1979345820425826
+ - 4.122761100056161
+ - -1.7892268415499235
+ - -1.2434473265745412
+ - 0.26065219236161125
+ - 1.6418586412600973
+ - -2.9874178957493127
+ - 2.17876807972991
+ - 3.828421755043539
+ - -1.3962241645529614
+ - -1.1190536742540818
+ - 0.026119994508363956
+ - 1.8445776877973925
+ - -3.0475864919389766
+ - 3.3148529772379915
+ - -2.398720052406637
+ - 0.7728865548715573
+ - 0.6642247298716493
+ - 0.5471375973411182
+ - -3.8092129661502248
+ - -2.085528145558223
+ - 3.284105078261328
+ - -2.230408869185556
+ - 0.5408781792640472
+ - 0.8046653860838381
+ - 0.907464650851997
+ - -4.381558268086895
+ - -2.251288093071145
+ - 3.222425699474881
+ - -2.1186307099706942
+ - 0.39941681864889456
+ - 1.6158406306105924
+ - -2.9298706575726796
+ - 3.365208895390735
+ - -4.657057731454586
+ - -5.764969554192119
+ - -5.634688954976315
+ - -4.539604874107001
+ - 3.3367010887769832
+ - -3.0397789410967415
+ - 1.8284220760253727
+ - 0.15340173542768348
+ - -1.9227012261860923
+ - 3.140089589513075
+ - -2.28048797721104
+ - -4.389469362355747
+ - 1.2204854889516223
+ - 0.9609385034409235
+ - 0.2958749933316557
+ - -2.041192010573855
+ - 3.218275105802756
+ - -2.1276813569534587
+ - -3.8372661993292736
+ - 0.8251977728508391
+ - 0.8153215607250793
+ - 0.530548173352959
+ - -2.221067745816231
+ - 3.259263002600223
+ - -3.1396555899670417
+ - 2.0465668817261364
+ - -0.22050068211799648
+ - -0.9781867232796707
+ - -1.1293031365680557
+ - 3.8441529685955245
+ - 2.1610685713570352
+ - -3.089191382577343
+ - 1.8533034084209798
+ - 0.014029086007921705
+ - -1.1069319073478954
+ - -1.5071104664385906
+ - 4.161053910153731
+ - 2.1925016972944174
+ - -2.9915085426923977
+ - 1.7296757749485
+ - 0.15838511490209697
+ - -2.016122697885769
+ - 3.179905119547021
+ - -3.2466259566491713
+ - 4.974015623120336
+ - 5.005581907112853
+ - 3.121629148342023
+ - 3.046996024751141
+ - 5.944077622036398
+ - 6.006702306182312
+ - -3.1634994728525068
+ - 2.101188568433139
+ - -0.2923975920097097
+ - -1.639750856517173
+ - 2.9997669871350996
+ - -3.321438325144979
+ - 1.7775171421232172
+ - 3.724124600500009
+ - 0.786101473468839
+ - 0.06732292278593363
+ - -1.763958358758593
+ - 3.0635352433522067
+ - -3.290669688660895
+ - 1.6630055801378312
+ - 3.298743062193825
+ - 0.9894132123708074
+ - 0.20536286444394924
+ - -1.958158692171414
+ - 3.155671651262948
+ - -3.2623009595544192
+ - 2.302913408850837
+ - -0.5559235241101621
+ - -1.3049666607293389
+ - 1.7651893063995894
+ - 2.6892542808246067
+ - -3.3818914646579943
+ - -2.0669635030496396
+ - 2.195013922737635
+ - -0.32352922907636816
+ - -1.5188374353248473
+ - 1.923167990565467
+ - 3.269051816220977
+ - -3.6941644584422777
+ - -2.1001560901546625
+ - 2.011300796921814
+ - -0.17673355279633907
+ - -1.6440851230265363
+ - 3.0512243170027626
+ - -3.308148563563915
+ - 2.562395863450041
+ - -2.9143566586373364
+ - -3.7292138808487088
+ - 1.3590577464246243e-15
+ - 1.4057624317608996e-15
+ - 3.4625780441469734e-16
+ - -7.940933880509066e-18
+ - -8.347027862484316e-17
+ - -1.5054687148465104e-16
+ - -5.694724927121319e-16
+ - 1.531938494448207e-16
+ - -1.952146245625145e-16
+ - 4.979627287569226e-17
+ - 2.953034786814309e-17
+ - 4.754634160954803e-16
+ - 2.357464745776129e-16
+ - 4.322845881202122e-16
+ - -9.243743345280084e-18
+ - -1.7023377006341307e-16
+ - -4.3054750883385084e-17
+ - -2.8794157122970893e-16
+ - -2.041481751780872e-16
+ - -2.0522350997440614e-16
+ - -1.6481573705119076e-17
+ - -2.6486323213947946e-16
+ - -1.4929059092933613e-16
+ - -2.175071420708186e-16
+ - 2.7709258050819313e-16
+ - -3.261986745602864e-16
+ - -6.311388073779601e-17
+ - 1.4558378780933287e-17
+ - -1.1729421086001932e-16
+ - 1.7503141761622063e-16
+ - 1.0091603473146936e-17
+ - 1.0951871310202085e-16
+ - 2.689991352022446e-16
+ - -9.711100391372544e-17
+ - -1.7432831409555056e-16
+ - -3.062222627671308e-16
+ - -3.813302623869457e-17
+ - -1.0645814483557465e-16
+ - -2.7718822326651957e-16
+ - 3.893539143287101e-16
+ - 1.8264147925170849e-16
+ - 2.2532399885944474e-16
+ - 1.1448179677733903e-16
+ - -1.2155419101466742e-16
+ - -5.371504102766223e-17
+ - 5.17608268305057e-17
+ - -4.566036981292712e-17
+ - -7.970712382560974e-16
+ - 5.583469134732937e-16
+ - -3.532061215601428e-17
+ - -2.1754850110144625e-17
+ - 2.1068290201725612e-16
+ - -3.490702184973777e-17
+ - -1.6336817097922294e-16
+ - -3.899329407574972e-16
+ - -5.244325083586195e-17
+ - -1.0637542677431935e-16
+ - -3.538678660501852e-16
+ - 1.9310531400050429e-16
+ - -3.1432863277015048e-18
+ - 2.382693754458996e-16
+ - -1.7441103215680586e-16
+ - 3.443139299751977e-16
+ - -1.694582882391446e-16
+ - -4.235164736271501e-17
+ - -5.0395978819793205e-17
+ - -2.8384702719757145e-16
+ - 2.0563710028068266e-16
+ - -3.714040950363094e-16
+ - -1.980270386451948e-16
+ - -1.4386738803828534e-16
+ - -9.181704799338607e-18
+ - -7.936797977446299e-17
+ - -1.695410063003999e-16
+ - -1.2176098616780567e-16
+ - -2.934009632725589e-16
+ - -2.3161057151484775e-18
+ - -9.413315370853454e-17
+ - 8.817745329815274e-17
+ - -3.748782536090321e-16
+ - -1.952146245625145e-17
+ - 3.4708498502725036e-16
+ - -1.0041972636393755e-16
+ - 2.2102265967416897e-16
+ - -2.216016861029561e-16
+ - 2.8785885316845363e-17
+ - -2.3210687988237957e-16
+ - -2.9720599409030284e-16
+ - -6.132717061468146e-16
+ - 1.0091603473146936e-17
+ - -9.525811934160667e-16
+ - 1.3678258609176864e-15
+ - 4.579271871093561e-16
+ - -1.3801508520447267e-16
+ - -2.7466532239823284e-16
+ - -7.589382120174028e-17
+ - -5.801844816446936e-16
+ - -3.5287524931512156e-16
+ - 5.694311336815043e-16
+ - 1.0348029463038375e-16
+ - 1.1828682759508294e-17
+ - 4.3972921363318946e-16
+ - 2.8289576949313546e-17
+ - -3.7564339567564364e-16
+ - -2.8810700735221954e-16
+ - 2.8173771663556123e-16
+ - -1.1001502146955267e-17
+ - 2.1382618834495762e-17
+ - 1.2324991127040112e-16
+ - 1.163015941249557e-16
+ - 4.6322114302969544e-17
+ - 2.7081893254986126e-16
+ - 2.6436692377194764e-16
+ - 9.053491804392887e-17
+ - -8.68539643180679e-18
+ - 2.2003004293910533e-17
+ - -3.2524741685585043e-16
+ - -2.0323827650427888e-16
+ - 2.421984833555265e-16
+ - -2.0828407824085234e-16
+ - 7.560430798734672e-17
+ - 2.658558488745431e-16
+ - -9.949328407787817e-16
+ - -2.870316725559006e-16
+ - -1.104389515334861e-16
+ - 2.4319110009059014e-16
+ - 2.928219368437718e-17
+ - 4.261634515873198e-16
+ - -2.425293556005477e-16
+ - -2.1173755729826123e-16
+ - -2.1771393722395686e-16
+ - -2.68833699079734e-16
+ - -1.2088417471849944e-15
+ - -1.3648480107124955e-17
+ - -2.953034786814309e-16
+ - 1.3052910066086777e-16
+ - 5.136791603954301e-17
+ - 2.8190315275807183e-16
+ - -2.984467650091324e-16
+ - -2.5311726744122644e-17
+ - 8.759842686936562e-17
+ - 3.8232287912200934e-16
+ - -1.1274471749097767e-16
+ - -3.958059231066237e-16
+ - 1.3284520637601624e-16
+ - 2.172589878870527e-16
+ - 9.926167350636331e-17
+ - -9.247879248342848e-17
+ - -3.58169205235461e-17
+ - -6.501639614666798e-17
+ - -1.0521737391674511e-16
+ - 3.5899638584801396e-16
+ - 1.2635183856747498e-16
+ - 6.531624911871845e-17
+ - 2.8810700735221954e-16
+ - 2.4054412213042045e-16
+ - 3.983908625208519e-17
+ - 1.8189701670041076e-16
+ - -9.31405369734709e-17
+ - 6.079777502264753e-17
+ - -4.8141911650586205e-17
+ - -2.1639044824387202e-16
+ - -1.402898318889935e-16
+ - -1.798290651690282e-16
+ - 3.537851479889299e-16
+ - 2.5063572560356735e-17
+ - -4.20207751176938e-17
+ - 2.1539783150880838e-16
+ - -8.933550615572698e-17
+ - -6.824240053562478e-17
+ - -6.402377941160434e-17
+ - 2.247449724306576e-16
+ - -1.8479214884434636e-16
+ - -2.540271661150348e-16
+ - 4.2648915395351255e-17
+ - 1.450926493206295e-16
+ - -8.021583990232985e-17
+ - 8.437242248040881e-17
+ - -4.896909226313924e-16
+ - -1.299997050688338e-15
+- - -6.061277023206801
+ - -5.150352441241186
+ - 2.5396897630076194
+ - 0.5732390146048842
+ - -3.491270429807115
+ - 5.340042715659885
+ - -5.3166718272698965
+ - 3.5761944487544337
+ - -0.7014578246619975
+ - -2.3824789037959784
+ - -5.983813983076685
+ - -2.782307770645565
+ - 5.401538224192386
+ - -5.241437979910414
+ - 3.2690705341522843
+ - -0.3356719451053931
+ - -1.630769501450729
+ - -5.465761415799779
+ - -2.756315071502396
+ - 5.480390885189952
+ - -5.098906504244608
+ - 3.0737030417636086
+ - 0.1339243235962645
+ - -3.1382332015273424
+ - 5.1353342045140815
+ - -3.580302086488513
+ - -6.363738311490772
+ - 1.8981894881252974
+ - 1.6346608290482527
+ - 0.3713103782975171
+ - -3.4521801528869185
+ - 5.2720510815616715
+ - -3.56216542927915
+ - -6.908688873731328
+ - 1.5997969836611607
+ - 1.3906688365938307
+ - 0.7592579557901771
+ - -3.6386866953302697
+ - 5.3423646006442915
+ - -5.257585821345465
+ - 3.430663581402226
+ - -0.48482219466027443
+ - -2.696473023321882
+ - -2.4188695064573875
+ - 3.2705851714102785
+ - 3.5434165401430153
+ - 9.842110115314991
+ - 9.939617291528059
+ - -5.293013839761129
+ - 3.51422990697104
+ - -0.5958919305960586
+ - -2.672271651539932
+ - 4.898963104719418
+ - -5.536698018119019
+ - 2.974752443600737
+ - 6.212362762014232
+ - 1.2003971526150672
+ - 0.0572922414661432
+ - -2.8784151374627718
+ - 5.0090676247486385
+ - -5.490216400479852
+ - 2.7882253866447826
+ - 5.510132984224922
+ - 1.546517371023963
+ - 0.2863689658753897
+ - -3.2044890320128863
+ - 5.165675989517186
+ - -5.448011393176711
+ - 3.8439683025271556
+ - -1.0313873940154012
+ - -2.1138864753597493
+ - 2.890733040866567
+ - 4.3846597891033605
+ - -5.644213387512746
+ - -3.4395323845807844
+ - 3.6689919257901895
+ - -0.6461147428146331
+ - -2.469166347066408
+ - 3.1528266955956665
+ - 5.340117442678777
+ - -6.1745828959654885
+ - -3.5002897103224626
+ - 3.3671428336270255
+ - -0.4046454576331151
+ - -2.6795225802864104
+ - 4.986753969678942
+ - -5.517491405064717
+ - 4.266937960254773
+ - -4.921262316224661
+ - -6.289125177935976
+ - -9.506827054237688
+ - -7.822124418454467
+ - 4.9707978880434185
+ - -2.8032003838238304
+ - -0.2629906958750585
+ - 3.396773401256053
+ - -5.244082021176495
+ - 5.4003145087406015
+ - -2.7791858322998215
+ - -5.979014404483215
+ - -2.391551661681739
+ - -0.706325706613385
+ - 3.581999017962628
+ - -5.319538536204355
+ - 5.294410578484825
+ - -2.3985145170236097
+ - -4.951149156087631
+ - -2.48311184515359
+ - -0.840611867308614
+ - 3.8712331790046033
+ - -5.418878976616302
+ - 5.216684584810726
+ - -3.1741200286757967
+ - 0.17723532752803675
+ - 2.8863871283532974
+ - -3.192427699632656
+ - -5.0460398551140875
+ - 5.121352891096347
+ - 3.2252704433781694
+ - -2.976463378133166
+ - -0.21270318333785748
+ - 3.2124120202867155
+ - -3.3141074312781837
+ - -5.767978132272727
+ - 5.266070509351058
+ - 3.1088505324742117
+ - -2.639927504522984
+ - -0.4547497833432595
+ - 3.403308172035287
+ - -5.304326366127109
+ - 5.352567806260042
+ - -3.661915692133137
+ - 3.484032204258219
+ - 3.6859178726896458
+ - 5.219917097522279
+ - 5.311016765922777
+ - 8.091838929199602
+ - 8.326152852728484
+ - -3.2705301031135536
+ - 0.2909528119056023
+ - 2.7838339743988243
+ - -5.034006292886756
+ - 5.504843244944537
+ - -4.188042736050273
+ - 1.161636471477791
+ - 3.2158861465844484
+ - 4.9923594583961295
+ - 2.195797274621571
+ - -5.130359785378618
+ - 5.4660145426247775
+ - -3.921851423570579
+ - 0.8882309757627084
+ - 2.5621493282606203
+ - 4.895519002725531
+ - 2.3610902298879526
+ - -5.267148368958802
+ - 5.38143927708831
+ - -3.749603859543429
+ - 0.7292461650639213
+ - 2.3944048008067402
+ - -4.741471620542467
+ - 3.6164109040133825
+ - 6.263517423067525
+ - -2.814413978356354
+ - -2.11361086884741
+ - 0.49300603174277846
+ - 2.740175294678921
+ - -4.933095973290771
+ - 3.8087016352149696
+ - 7.22084525421072
+ - -2.7164650744165786
+ - -1.9330224160357266
+ - 0.10374768682644167
+ - 2.948445506279872
+ - -5.037495442574709
+ - 5.474710998317188
+ - -4.062459199647433
+ - 1.3375587064991643
+ - -0.19604124241232374
+ - -0.5658458521827278
+ - 2.1500078481478295e-15
+ - 1.919224457245535e-15
+ - 5.810116622572466e-16
+ - 6.948317145445432e-17
+ - -1.373946997450579e-16
+ - -3.896847865737313e-16
+ - -7.164211285321772e-16
+ - 4.231856013821289e-16
+ - -5.56527116125677e-16
+ - 1.31687153518442e-16
+ - 1.7714072817823085e-16
+ - 3.3790328022791176e-16
+ - 6.523146310593175e-16
+ - 4.736436187478636e-16
+ - -2.192855803878076e-16
+ - -4.660542366276896e-16
+ - -2.580803511165446e-17
+ - -3.088692407273005e-16
+ - -1.01908651466533e-16
+ - -3.4716770308850567e-16
+ - 4.5743087874182424e-17
+ - -2.268129239620402e-16
+ - -1.1572256769616857e-16
+ - -2.337612411074856e-16
+ - 2.595692762191401e-16
+ - -7.524034851782339e-16
+ - -1.1497810514487085e-16
+ - -1.2457340025048597e-16
+ - -1.0935327697951025e-16
+ - 4.17478055155513e-16
+ - 5.518949046953801e-16
+ - -2.3161057151484775e-18
+ - 2.0547166415817205e-16
+ - 8.850832554317395e-17
+ - -1.522012327097571e-17
+ - -8.615913260352335e-16
+ - 2.7131524091739305e-17
+ - -1.2308447514789052e-16
+ - -5.284856933601294e-16
+ - 4.714929491552258e-16
+ - 4.3112653526263797e-16
+ - 4.0945440321374865e-16
+ - -3.970466940254532e-17
+ - -2.39882377640378e-17
+ - 3.050228508789289e-19
+ - -2.3508473008757047e-16
+ - 8.850832554317395e-17
+ - -1.3655097552025379e-15
+ - 5.880220179486335e-16
+ - -1.1712877473750872e-16
+ - 2.78677148369115e-16
+ - 3.991146455568358e-16
+ - -1.5732975250758584e-16
+ - -5.41224274793446e-16
+ - -8.156000839772852e-16
+ - -5.4097612060968004e-17
+ - -2.4699613090833406e-16
+ - -2.660212849970537e-16
+ - 2.601483026479272e-16
+ - 5.161607022330892e-17
+ - 2.0447904742310842e-16
+ - -2.8103461311489115e-16
+ - 4.3021663658882964e-16
+ - -1.2076836943274204e-16
+ - -2.283018490646356e-17
+ - 1.9451152104184443e-16
+ - -6.865599084190129e-16
+ - 2.2309061120555156e-16
+ - -9.069208236031395e-16
+ - -3.2590916134589285e-16
+ - -4.49986253228847e-17
+ - -7.326752275688443e-17
+ - -6.232805915587064e-17
+ - -6.633988512675282e-17
+ - -6.021874859386041e-17
+ - -3.867069363685404e-16
+ - -2.776018135727961e-16
+ - -3.5601853564282306e-16
+ - 2.683373907122022e-16
+ - -6.349438381957039e-16
+ - 2.0844951436336294e-17
+ - 5.059036626374317e-16
+ - -1.5799149699762826e-16
+ - 5.942465520580951e-16
+ - -3.8306734167330707e-16
+ - 1.0554824616176632e-16
+ - -1.623755542441593e-16
+ - -4.466775307786349e-16
+ - -7.2130149414624e-16
+ - 1.138200522872966e-16
+ - -1.6629639034766066e-15
+ - 1.4948808030058314e-15
+ - 5.115284908027923e-16
+ - -8.208216615940262e-17
+ - -5.097086934551757e-16
+ - -2.2333876538931747e-16
+ - -6.35771018808257e-16
+ - -7.021109039350098e-16
+ - 1.249704469445114e-15
+ - 4.293067379150213e-16
+ - 2.456726419282492e-17
+ - 1.3770902837782803e-15
+ - -8.470329472543002e-17
+ - -4.4163172904206143e-16
+ - -5.641371777611649e-16
+ - 1.594804221002237e-16
+ - -1.1519524005566602e-16
+ - 8.513756454702036e-17
+ - 4.053185001509835e-17
+ - 1.6262370842792522e-16
+ - 1.624582723054146e-16
+ - 2.362427829451447e-16
+ - 1.7602403435128426e-16
+ - 2.269783600845508e-16
+ - -1.827241973129638e-16
+ - -8.966637840074819e-17
+ - -3.9489602443281536e-16
+ - -2.0596797252570387e-16
+ - 2.723078576524567e-16
+ - -2.5526793703386434e-16
+ - 6.716706573930585e-17
+ - 4.07634605866132e-16
+ - -1.596127709982322e-15
+ - -4.480010197587198e-16
+ - -4.3611029845326997e-16
+ - 1.164670302474663e-16
+ - -1.2060293331023143e-16
+ - 6.359778139613952e-16
+ - -3.427836458419746e-16
+ - -4.3393894934531827e-16
+ - -5.717472393966527e-16
+ - -5.280721030538529e-16
+ - -1.630538423464528e-15
+ - 9.992341799640573e-17
+ - -5.838240763399269e-16
+ - 1.4889251025954496e-18
+ - 2.6130635550550144e-16
+ - 6.594283843272736e-16
+ - -8.470329472543002e-17
+ - -1.1795595535006175e-16
+ - 5.232744555010453e-16
+ - 3.7372020075145785e-16
+ - -1.8036673256718766e-16
+ - -7.543060005871058e-16
+ - 8.563800881761495e-16
+ - 3.62553262481992e-16
+ - 1.977065061578305e-16
+ - -9.553936074987468e-18
+ - -8.569591146049365e-17
+ - -1.62292836182904e-16
+ - -3.48904782374867e-16
+ - 2.3305813758681555e-16
+ - 1.6560155863311612e-16
+ - -7.82512859475164e-17
+ - 3.490702184973777e-17
+ - 3.935725354527305e-16
+ - -2.845501307182415e-17
+ - -6.566780087905348e-17
+ - -1.2622776147559202e-16
+ - 2.1713491079516973e-17
+ - 1.1067676595959509e-16
+ - -2.660212849970537e-16
+ - -1.8677738231447362e-16
+ - -2.4964310886850375e-16
+ - 9.577924312751507e-16
+ - 9.605634863272033e-17
+ - 5.4676638489755123e-17
+ - 1.563371357725222e-16
+ - 1.2904017555827232e-16
+ - -3.176373552203626e-16
+ - -7.29986890578047e-18
+ - 5.750559618468648e-16
+ - -1.13654616164786e-16
+ - -3.115989367487255e-16
+ - 1.1878313596261477e-16
+ - 2.240832279406152e-16
+ - -1.593149859777131e-16
+ - 2.1043474783349022e-16
+ - -1.037615360386518e-15
+ - -1.785717506379476e-15
+- - -4.192092682401115
+ - -3.5929443025620014
+ - 1.6338162328805952
+ - 0.8392623996528749
+ - -3.0468185472415894
+ - 4.290002759003833
+ - -4.053907450070585
+ - 2.4949191145953034
+ - -0.28269107933357707
+ - -1.3774034896188982
+ - -4.981825673633135
+ - -2.365327219564115
+ - 4.321987609314059
+ - -3.9783887376601106
+ - 2.237351956252942
+ - -0.006428324075420834
+ - -0.8392795630424005
+ - -4.51451110478169
+ - -2.3262418589788516
+ - 4.356399945997916
+ - -3.8410387477349377
+ - 2.074494873999813
+ - 0.49706974106505947
+ - -2.7889738394792007
+ - 4.1712474849708405
+ - -2.7683797458184634
+ - -4.996354302549673
+ - 1.0542823069027683
+ - 1.050813181408928
+ - 0.6824740022298018
+ - -3.0183010345295966
+ - 4.252508158335112
+ - -2.737733139985241
+ - -5.389257424238081
+ - 0.7740223892865927
+ - 0.8499564537267542
+ - 0.9834190201310153
+ - -3.153536002283774
+ - 4.2912518870921375
+ - -3.9945963193325413
+ - 2.3724967791767217
+ - 0.010934116570538223
+ - -2.7950537356008676
+ - -2.5749058987918767
+ - 2.251051202831144
+ - 2.4803402229006815
+ - 7.729246461567686
+ - 7.824361509878178
+ - -4.029889882678689
+ - 2.4427224185339043
+ - -0.07688636836887877
+ - -2.444303926249236
+ - 4.021563870476217
+ - -4.307733734231206
+ - 2.181232585643425
+ - 4.650442915284911
+ - 1.4256552005815808
+ - 0.30408206803653187
+ - -2.5972027635673274
+ - 4.092592898325909
+ - -4.243583964563069
+ - 2.0202784092535238
+ - 4.089779819032477
+ - 1.6514690202886733
+ - 0.4811964196880911
+ - -2.837596899743141
+ - 4.189686564136039
+ - -4.194021971526437
+ - 2.721833225795431
+ - -0.4226715856066412
+ - -2.025882557191434
+ - 2.4195780587227147
+ - 3.76383918653036
+ - -4.2122012633942685
+ - -2.614933900153091
+ - 2.5734486219267816
+ - -0.11645483394468477
+ - -2.2926039083274508
+ - 2.622603688624954
+ - 4.534868962234625
+ - -4.564313666677111
+ - -2.634849693954617
+ - 2.319230739961391
+ - 0.07418403999910897
+ - -2.4496914283296207
+ - 4.078177092790059
+ - -4.279432255988056
+ - 3.0854110932069565
+ - -3.4004201987230456
+ - -4.383586125201669
+ - -7.25406630456505
+ - -5.988256496602363
+ - 3.7133264610473393
+ - -1.8580220788730308
+ - -0.6051200495736611
+ - 2.97095260857455
+ - -4.2430480656749685
+ - 4.133021327027532
+ - -1.9915547035391614
+ - -4.389853994489271
+ - -2.3625252960441205
+ - -0.8201455913895888
+ - 3.1056241576126906
+ - -4.2855932191553245
+ - 4.023487634656342
+ - -1.686244984011053
+ - -3.593929664989698
+ - -2.3628798959811577
+ - -0.90915330572339
+ - 3.3134317422925945
+ - -4.336738939995007
+ - 3.9464320698251183
+ - -2.1654957779352855
+ - -0.26049081034564603
+ - 2.5960636474508982
+ - -2.622233773448787
+ - -4.229732385661836
+ - 3.7429593108754298
+ - 2.4101668330890287
+ - -2.00108413641356
+ - -0.5657449308294544
+ - 2.8364181421679056
+ - -2.7035372988260455
+ - -4.790799781672815
+ - 3.8062787878790623
+ - 2.300863231467306
+ - -1.723548077489876
+ - -0.7544784619312344
+ - 2.9757162344040164
+ - -4.2772618589847635
+ - 4.082707130559696
+ - -2.5748296279097755
+ - 2.0655325277545025
+ - 2.237532290987547
+ - 3.9773396439924844
+ - 4.073068924267256
+ - 6.528802079242007
+ - 6.4879182618376685
+ - -2.2458399320682543
+ - -0.171115455876212
+ - 2.5200821254289205
+ - -4.115066729567036
+ - 4.254010218556759
+ - -3.0245865987467213
+ - 0.6644072370450067
+ - 2.0832765252962675
+ - 4.25225496068815
+ - 1.927026833282118
+ - -4.1749055483991855
+ - 4.206692672019466
+ - -2.7955883944019284
+ - 0.44609922740684466
+ - 1.592180635502748
+ - 4.125221193546299
+ - 2.0449845335715255
+ - -4.256222599241027
+ - 4.113159139921849
+ - -2.6491340781524606
+ - 0.17515253707605966
+ - 2.229596717093344
+ - -3.924742808930277
+ - 2.8365640796188245
+ - 4.987845924258988
+ - -1.798196036917397
+ - -1.4468092174957325
+ - -0.011655161228073889
+ - 2.4878364568541524
+ - -4.050514064884343
+ - 2.9743194414365677
+ - 5.715792948042448
+ - -1.6479774439175292
+ - -1.2804320123951756
+ - -0.31825451209136896
+ - 2.6419934788724486
+ - -4.117256258010473
+ - 4.216890650820584
+ - -2.9163064184298673
+ - 0.6599188167175207
+ - 0.42074566768315774
+ - 0.2599825713781122
+ - 1.5742487827802944e-15
+ - 1.4009130854198075e-15
+ - 4.3939834138816825e-16
+ - 4.21034931789491e-17
+ - -9.417451273916219e-17
+ - -3.1135078256495957e-16
+ - -5.346895479542771e-16
+ - 3.8894032402243356e-16
+ - -4.0035541647566535e-16
+ - 1.0306670432410724e-16
+ - 1.414995835348523e-16
+ - 1.9298123690862133e-16
+ - 5.441194069373816e-16
+ - 3.4642324053720794e-16
+ - -1.979443205839395e-16
+ - -3.82364238152637e-16
+ - -1.0753347963189358e-17
+ - -2.271437962070614e-16
+ - -5.39321759384574e-17
+ - -2.8810700735221954e-16
+ - 4.044913195384305e-17
+ - -1.6171380975411689e-16
+ - -7.465305028291075e-17
+ - -1.799945012915388e-16
+ - 1.6907571720583883e-16
+ - -5.992096357334132e-16
+ - -8.966637840074819e-17
+ - -1.134891800422754e-16
+ - -1.0972550825515911e-16
+ - 3.23758491753255e-16
+ - 4.751325438504591e-16
+ - -2.2003004293910533e-17
+ - 1.594804221002237e-16
+ - 7.047578818951796e-17
+ - 2.0059129854410918e-17
+ - -6.918538643393522e-16
+ - 1.5385559393486315e-17
+ - -1.0753347963189359e-16
+ - -4.1292856178647137e-16
+ - 3.336846591038913e-16
+ - 3.333537868588701e-16
+ - 3.23758491753255e-16
+ - -7.940933880509064e-17
+ - -1.0339757656912844e-17
+ - 1.1613486553273796e-17
+ - -2.1601821696822315e-16
+ - 8.5654552429866e-17
+ - -1.0539935365150679e-15
+ - 4.224411388308312e-16
+ - -9.599431008677885e-17
+ - 2.5985878943353364e-16
+ - 3.2309674726321256e-16
+ - -1.531111313835654e-16
+ - -4.507307157801448e-16
+ - -6.342820937056615e-16
+ - -3.077111878697263e-17
+ - -1.919059021123024e-16
+ - -1.9686898578762056e-16
+ - 1.9455288007247208e-16
+ - 5.591740940858467e-17
+ - 1.1911400820763599e-16
+ - -2.192028623265523e-16
+ - 3.123433993000232e-16
+ - -7.213014941462401e-17
+ - -7.279189390466644e-18
+ - 1.7912596164835812e-16
+ - -5.219509665209605e-16
+ - 1.559235454662457e-16
+ - -7.299041725167915e-16
+ - -2.455072058057386e-16
+ - -1.4227506535912076e-17
+ - -5.4717997520382775e-17
+ - -4.042845243852922e-17
+ - -2.5270367713494992e-17
+ - -7.279189390466644e-18
+ - -2.929046549050271e-16
+ - -2.575840427490128e-16
+ - -2.962960954164945e-16
+ - 2.1804480946897807e-16
+ - -4.887396649269564e-16
+ - 1.588186776101813e-17
+ - 4.20207751176938e-16
+ - -1.2622776147559202e-16
+ - 4.800956275257773e-16
+ - -2.8802428929096424e-16
+ - 8.205631676526033e-17
+ - -9.644925942368301e-17
+ - -3.4394169869954886e-16
+ - -4.850587112010954e-16
+ - 1.0637542677431935e-16
+ - -1.3492970151964985e-15
+ - 1.1580528575742387e-15
+ - 3.805030817743927e-16
+ - -3.8776353035410616e-17
+ - -3.9142186586009265e-16
+ - -1.708127964922002e-16
+ - -4.889464600800947e-16
+ - -5.770411953169921e-16
+ - 1.0161086644601392e-15
+ - 3.783524121817548e-16
+ - -4.714929491552257e-18
+ - 1.1643394302296418e-15
+ - -1.0108147085397997e-16
+ - -3.1767871425099023e-16
+ - -4.294721740375319e-16
+ - 1.3367238698856927e-16
+ - -9.967526381263982e-17
+ - 6.365154813595548e-17
+ - 1.0422475718168147e-17
+ - 1.224227306578481e-16
+ - 1.406207041340147e-16
+ - 1.8661194619196302e-16
+ - 1.166324663699769e-16
+ - 1.8115255414911304e-16
+ - -1.548068516392991e-16
+ - -6.902822211755016e-17
+ - -2.7081893254986126e-16
+ - -1.4095157637903592e-16
+ - 1.9438744394996148e-16
+ - -1.9372569945991906e-16
+ - 3.341809674714232e-17
+ - 3.305413727761898e-16
+ - -1.252682319650305e-15
+ - -3.485739101298458e-16
+ - -3.617674409000666e-16
+ - 8.801201717564213e-17
+ - -1.0951871310202085e-16
+ - 4.986037937316513e-16
+ - -2.517937784611416e-16
+ - -3.5858279554173745e-16
+ - -4.774486495656076e-16
+ - -4.015134693332396e-16
+ - -1.258968892305708e-15
+ - 1.0205340807372978e-16
+ - -4.449404514922736e-16
+ - -6.071505696139223e-17
+ - 2.132471619161705e-16
+ - 5.6211058526041e-16
+ - -5.062345348824529e-17
+ - -1.0108147085397997e-16
+ - 4.484973281262516e-16
+ - 2.689991352022446e-16
+ - -1.4398112537251138e-16
+ - -5.770411953169921e-16
+ - 6.731595824956538e-16
+ - 2.9658560863088807e-16
+ - 1.554479166140277e-16
+ - -2.4980854499101433e-17
+ - -5.09543257332665e-17
+ - -1.3532674821367533e-16
+ - -2.863699280658582e-16
+ - 1.3392054117233518e-16
+ - 1.1712877473750872e-16
+ - -7.891303043755883e-17
+ - 8.602678370551488e-18
+ - 3.008869478161638e-16
+ - -1.9273308272485542e-17
+ - -6.256845852139386e-17
+ - -7.279189390466644e-17
+ - 2.0017770823783267e-17
+ - 1.0753347963189359e-16
+ - -1.8429584047681454e-16
+ - -1.4260593760414197e-16
+ - -1.9256764660234482e-16
+ - 7.633119295062769e-16
+ - 7.918186413663856e-17
+ - 6.530590936106153e-17
+ - 1.0108147085397997e-16
+ - 1.3003279229333595e-16
+ - -2.802487915329658e-16
+ - 1.0422475718168147e-17
+ - 4.575963148643349e-16
+ - -8.040195554015428e-17
+ - -2.536135758087583e-16
+ - 1.0025429024142694e-16
+ - 1.692825123589771e-16
+ - -1.318525896409526e-16
+ - 1.7271531190107215e-16
+ - -7.265954500665794e-16
+ - -1.4224197813461862e-15
+- - 3.9569066993303403
+ - 3.3148894029321716
+ - -1.860855255005002
+ - 0.2903841192844182
+ - 1.294601296206939
+ - -2.585308761728817
+ - 2.8780526098174293
+ - -2.3162265145226018
+ - 0.7685092570792054
+ - 1.9700940652322618
+ - 2.61258673850608
+ - 1.139733092665559
+ - -2.640985779241925
+ - 2.8656141605158867
+ - -2.1843579347392
+ - 0.5654318742595741
+ - 1.507331923419335
+ - 2.4416399115144247
+ - 1.155146272973088
+ - -2.72397875656872
+ - 2.8314022615793664
+ - -2.100019223516384
+ - 0.5183586344326117
+ - 1.0850942631498104
+ - -2.4166486652338857
+ - 1.8890440662678962
+ - 3.241433903739065
+ - -1.6358187959471067
+ - -1.1894856218209313
+ - 0.3965952048044109
+ - 1.2719812426358552
+ - -2.525652843839244
+ - 1.9049784535110195
+ - 3.5726376257362196
+ - -1.5543762410041895
+ - -1.0794619294928292
+ - 0.1927541903387419
+ - 1.3835105403545265
+ - -2.587367367808127
+ - 2.867797730274312
+ - -2.254644504749551
+ - 0.833003264194085
+ - 0.33335874910013347
+ - 0.19532594606205492
+ - -2.1519036745360838
+ - -2.2677365419189495
+ - -5.010261042328424
+ - -5.031461155352694
+ - 2.874370478690426
+ - -2.2901288157118787
+ - 0.8886318293116557
+ - 0.8152952357225464
+ - -2.2411996538892027
+ - 2.8657584769448534
+ - -1.751991969602902
+ - -3.5126913154477872
+ - 0.1298423023005373
+ - 0.3683144044924298
+ - 0.9346728683240793
+ - -2.3202882409814634
+ - 2.8851570322085203
+ - -1.6792359476245473
+ - -3.1693019193299543
+ - -0.11693081752882042
+ - 0.2474258971762148
+ - 1.1240738787837845
+ - -2.4403835069201834
+ - 2.8882132348464005
+ - -2.427037685006848
+ - 1.1045050110545547
+ - 0.5002187777919755
+ - -1.2423364702661999
+ - -1.7404333702530905
+ - 3.211274129059865
+ - 1.883193820361135
+ - -2.354147333701813
+ - 0.9146296277530551
+ - 0.7005737284671146
+ - -1.3800569317084315
+ - -2.195083994441864
+ - 3.580061604586903
+ - 1.9567682390154
+ - -2.227472172687632
+ - 0.7926071673975851
+ - 0.8194518740472807
+ - -2.304787687402176
+ - 2.8762386759293364
+ - -2.594165216603722
+ - 3.2176206196532573
+ - 4.053630618982043
+ - 5.164612867574189
+ - 4.2191885769720034
+ - -2.8371722738040255
+ - 1.939113982895775
+ - -0.4923113192397083
+ - -1.2784106932489667
+ - 2.463461023552152
+ - -2.92943147711352
+ - 1.7078046647008291
+ - 3.512532122023117
+ - 0.4743118691150204
+ - -0.04768666484813098
+ - -1.3886085754359547
+ - 2.528160413840632
+ - -2.915323323439811
+ - 1.5237783888444925
+ - 2.9719777937147875
+ - 0.6306879609376065
+ - 0.04590891964698773
+ - -1.5661545493462283
+ - 2.6193074006121737
+ - -2.9009730743719735
+ - 2.1031325935158254
+ - -0.7181090019638818
+ - -0.9788100145026581
+ - 1.4484832760524597
+ - 2.1591736410774005
+ - -3.035061770114885
+ - -1.8301252494636613
+ - 2.0172556655896137
+ - -0.517465453954478
+ - -1.1681895868899452
+ - 1.5322957878120165
+ - 2.5357188769187116
+ - -3.1859515647788252
+ - -1.798287272942564
+ - 1.8656153567765326
+ - -0.3928231944446257
+ - -1.2823020302442085
+ - 2.514245250403037
+ - -2.9248150017139762
+ - 2.3110938552968157
+ - -2.801963774418283
+ - -2.8840773232884445
+ - -2.8391402798589374
+ - -2.847052389528253
+ - -3.327385199076607
+ - -3.2599524428904694
+ - 2.4862414272901616
+ - -0.7758821040660903
+ - -0.9196352076469789
+ - 2.2998029854147832
+ - -2.922998560025507
+ - 2.5228891417472674
+ - -0.9715915815821352
+ - -2.315548277266139
+ - -2.0326622119447855
+ - -0.8069616394568382
+ - 2.3737832372354943
+ - -2.928395757490608
+ - 2.4186351917465605
+ - -0.837926463784841
+ - -1.9485420076711544
+ - -2.061578317441248
+ - -0.909288385211349
+ - 2.4828239676059516
+ - -2.927585868671861
+ - 2.347461248580943
+ - -0.9958085974930999
+ - -0.6978728099341094
+ - 2.0904230501379253
+ - -1.8463384832719054
+ - -3.0827517239189017
+ - 2.064820429884553
+ - 1.4028219499662258
+ - -0.8768682408386893
+ - -0.8936530988009603
+ - 2.2265346535502553
+ - -1.9645603249901067
+ - -3.6067064871090406
+ - 2.1274016837373275
+ - 1.3485625483208938
+ - -0.680745882379269
+ - -1.0147470010926756
+ - 2.302421224679052
+ - -2.9282803486972213
+ - 2.4737481465185343
+ - -1.2946680033806321
+ - 0.9814590709053396
+ - 1.3686154838119027
+ - -1.0980719234064873e-15
+ - -8.256089693891768e-16
+ - -2.959652231714733e-16
+ - 1.1001502146955267e-16
+ - -7.911982559069708e-17
+ - 2.387243247828038e-16
+ - 4.3344264097778645e-16
+ - -4.825771693634363e-16
+ - 4.235164736271501e-17
+ - -3.9208361035013506e-17
+ - -4.2372326878028836e-17
+ - -1.688896015680144e-16
+ - -3.8546616544971085e-16
+ - -3.330229146138489e-16
+ - 8.644037401179138e-17
+ - 2.913950502871178e-16
+ - -6.18937893342803e-17
+ - 1.9140959374477058e-16
+ - 1.6642873924566914e-16
+ - 3.0771118786972625e-16
+ - -1.9645539548134407e-18
+ - 1.953800606850251e-16
+ - 1.2304311611726287e-16
+ - 2.188719900815311e-16
+ - -1.3044638259961246e-16
+ - 3.9737756627047445e-16
+ - 5.4180330122223307e-17
+ - 5.886424034080483e-17
+ - 2.32768624372422e-16
+ - -1.1853498177884887e-16
+ - -2.0770505181206522e-16
+ - -1.6626330312315856e-17
+ - -3.226004388956808e-17
+ - 1.1878313596261477e-16
+ - 2.157390435114865e-17
+ - 3.7090778666877756e-16
+ - -3.7223127564886245e-18
+ - 1.2424252800546476e-16
+ - 2.744585272450946e-16
+ - -2.4616895029578104e-16
+ - -2.0646428089323568e-16
+ - -1.343341314786117e-16
+ - 3.077111878697263e-17
+ - 1.2415980994420945e-16
+ - 6.851123423470452e-17
+ - 8.745367026216884e-17
+ - 9.926167350636332e-19
+ - 1.0548207171276209e-15
+ - -4.7372633680911895e-16
+ - 9.9178955445108e-17
+ - -6.940045339319902e-17
+ - -2.238350737568493e-16
+ - 1.373119816838026e-16
+ - 3.1639658430153304e-16
+ - 2.0468584257624667e-16
+ - 1.0918784085699964e-17
+ - 1.7321162026860397e-16
+ - 2.9149844786368695e-16
+ - -1.5170492434222525e-16
+ - 4.896909226313923e-17
+ - -1.2415980994420945e-16
+ - 2.1626637115198906e-16
+ - -2.9745414827406875e-16
+ - 1.5131201355126256e-16
+ - -1.1911400820763597e-17
+ - -7.097209655704977e-17
+ - 2.627125625468416e-16
+ - -2.2863272130965685e-16
+ - 4.910144116114772e-16
+ - 1.9885421925774783e-16
+ - 4.573274811652551e-17
+ - 2.481541837659083e-19
+ - 3.6065074707312007e-17
+ - 5.692036590130522e-17
+ - 4.235164736271501e-17
+ - 2.7354862857128625e-16
+ - 1.3383782311107988e-16
+ - 1.4823076576950256e-16
+ - -4.433688083284228e-17
+ - 3.269844961422118e-16
+ - 1.4558378780933287e-17
+ - -5.661224112312921e-16
+ - 1.7073007843094489e-16
+ - -2.364082190676553e-16
+ - 2.027006091061194e-16
+ - -9.223063829966257e-17
+ - 2.6800651846718094e-17
+ - 2.57087734381481e-16
+ - 9.29751008509603e-17
+ - 1.2804755882320868e-16
+ - 1.164670302474663e-15
+ - -1.1739347253352569e-15
+ - -4.102815838263017e-16
+ - 2.4649982254080222e-17
+ - 2.517937784611416e-16
+ - 7.568702604860202e-17
+ - 5.906069573628618e-16
+ - 5.138445965179408e-16
+ - -8.609295815451911e-16
+ - -2.926565007212612e-16
+ - 2.3491929396505983e-17
+ - -7.524034851782339e-16
+ - 1.4872707413703438e-16
+ - 2.6147179162801205e-16
+ - 3.0423702929700353e-16
+ - -1.8065624578158122e-16
+ - 2.671793378546279e-17
+ - 4.1751941418614066e-17
+ - 1.6684232955194566e-16
+ - -7.990564717262246e-17
+ - -5.633099971486118e-17
+ - -3.398057956367837e-16
+ - -2.7610254871254373e-16
+ - -8.635765595053608e-17
+ - 5.3518585632180884e-17
+ - 1.9149231180602588e-17
+ - 2.1730034691768035e-16
+ - 1.1299287167474358e-16
+ - -7.758954145747398e-17
+ - 1.8115255414911304e-16
+ - -5.790264287871194e-17
+ - -3.4741585727227157e-16
+ - 1.138200522872966e-15
+ - 3.30872245021211e-16
+ - 1.831377876192403e-16
+ - -3.5304068543763216e-16
+ - 9.92616735063633e-18
+ - -6.260102875801312e-16
+ - 1.6609786700064793e-16
+ - 2.488572872865784e-16
+ - 3.603198748280988e-16
+ - 3.1697561073032016e-16
+ - 1.3181950241645047e-15
+ - 7.568702604860203e-18
+ - 2.7288688408124383e-16
+ - -1.3152171739593138e-17
+ - -7.75998812151309e-17
+ - -4.767662255602513e-16
+ - 2.350433710569428e-16
+ - 6.86559908419013e-17
+ - -2.80579663777987e-16
+ - -2.280123358502421e-16
+ - 1.5505500582306501e-16
+ - 4.0101716096570777e-16
+ - -2.5229008682867344e-16
+ - -3.395576414530178e-16
+ - -1.0379048736009114e-16
+ - 1.9356026333740845e-16
+ - 2.2706107814580607e-17
+ - 1.0087467570084171e-16
+ - 1.6853804980767936e-16
+ - -1.410136149249774e-16
+ - -9.857924950100706e-17
+ - 4.954811869192635e-17
+ - -2.2551011449726917e-16
+ - -2.288188369474813e-16
+ - -2.0327963553490652e-17
+ - -8.929414712509933e-17
+ - -9.098986738083303e-17
+ - -6.654668027989108e-17
+ - -5.343586757092558e-17
+ - 2.446800251931856e-16
+ - 1.194448804526572e-16
+ - 1.8677738231447362e-16
+ - -2.647391550475965e-16
+ - -6.669660676591631e-17
+ - -2.616992662964641e-17
+ - -1.5716431638507523e-16
+ - -6.2865726554030096e-18
+ - 2.6089276519922493e-16
+ - 3.2063588494086735e-17
+ - -2.1084833813976673e-16
+ - 1.7585859822877366e-16
+ - 3.040715931744929e-16
+ - -1.0695445320310647e-16
+ - -1.4943017765770445e-16
+ - 9.090714931957773e-17
+ - -1.255660169855496e-16
+ - 2.865353641883688e-16
+ - 1.4846237634101739e-15
+- - -5.141286981609387
+ - -4.207907144112835
+ - 2.752197621516096
+ - -1.8600700291948395
+ - 0.28945135599516014
+ - 1.3817733335430453
+ - -2.588592311475151
+ - 2.880384854379006
+ - -1.6490675405516548
+ - -3.4285550766147255
+ - -0.6847577707099469
+ - -0.06372151936849747
+ - 1.4906409693340017
+ - -2.6452790327259823
+ - 2.8567828941176545
+ - -1.4599982231459758
+ - -2.8858326876297706
+ - -0.8129622565536913
+ - -0.15157719950665852
+ - 1.6605131041825218
+ - -2.7280752703862454
+ - 2.833676194058584
+ - -2.0329414517974285
+ - 0.5176278663429211
+ - 1.089309614408155
+ - -1.5156078709118024
+ - -2.299451173376474
+ - 2.9561737549871725
+ - 1.8017541009069908
+ - -1.9402943649884368
+ - 0.3166256810811249
+ - 1.2762965086338358
+ - -1.5944700300329506
+ - -2.678309778723524
+ - 3.0877671491082714
+ - 1.7619630110401925
+ - -1.782929594564083
+ - 0.18915188495699645
+ - 1.3855964979142048
+ - -2.634473431518348
+ - 2.870237327168692
+ - -2.254751087666321
+ - 2.555522004643081
+ - 2.6444087949695536
+ - 2.831123358054563
+ - 2.8511856759661556
+ - 3.5460848705713883
+ - 3.4847668697188845
+ - -2.608321853822689
+ - 2.8763861749150625
+ - -2.291677841656344
+ - 0.7962604419639413
+ - 0.8169455846588868
+ - -2.245897974238987
+ - 1.878441995307567
+ - 3.4269558979372476
+ - -2.082003652509335
+ - -1.328323625494978
+ - 0.6769762776403461
+ - 0.938798676527096
+ - -2.3713165652939208
+ - 1.8865760937729938
+ - 3.2217760216227993
+ - -1.7177785776043384
+ - -1.2312847612290345
+ - 0.4760631116976462
+ - 1.1282363758288985
+ - -2.4434015567566014
+ - 2.890313770916692
+ - -2.428976663204428
+ - 1.1020883248962032
+ - 0.26365724123272516
+ - -0.08862285540791985
+ - -3.1809580990048256
+ - -1.6882303719621445
+ - 2.8861901782416477
+ - -2.3073663373986633
+ - 0.9118868482143847
+ - 0.37269583494655467
+ - 0.1479448966979115
+ - -3.7074027000477527
+ - -1.8548694561760297
+ - 2.8650127223299813
+ - -2.2273896061012297
+ - 0.7920713322395472
+ - 0.9128565296948314
+ - -2.3079345059039227
+ - 2.879203000216449
+ - -4.191056649559461
+ - -5.158034259867118
+ - -4.52870915210963
+ - -3.6236890294169
+ - 2.7415173339763763
+ - -2.838840515010569
+ - 1.9397235082487285
+ - -0.39640758742428733
+ - -1.2808613015665025
+ - 2.4673159078320475
+ - -1.9959165349330525
+ - -3.7456378801784567
+ - 1.6601838262440713
+ - 1.1275593067015892
+ - -0.27168698734345603
+ - -1.3932917488232615
+ - 2.5682386576204865
+ - -1.891850411610423
+ - -3.3164954236631017
+ - 1.2546675010747215
+ - 0.9935191038157293
+ - -0.06858481714106579
+ - -1.570804444715758
+ - 2.6218051840257606
+ - -2.888153100542769
+ - 2.103965011584622
+ - -0.7152975036738715
+ - -0.5508298400411071
+ - -0.42831506669141206
+ - 3.29779541076759
+ - 1.8010861326888201
+ - -2.862967263834424
+ - 1.9601846133611334
+ - -0.5143848509572752
+ - -0.6688815645438668
+ - -0.7190725072706922
+ - 3.6119927909259197
+ - 1.8522067233221948
+ - -2.8124577105668513
+ - 1.8641359450388764
+ - -0.3921203333918086
+ - -1.370744788247591
+ - 2.5167849431012224
+ - -2.9274257960924968
+ - 4.747750971673171
+ - 4.75047837863609
+ - 2.530628090231831
+ - 2.4412894912943623
+ - 0.647091778114049
+ - 0.5175713953920507
+ - -1.3178062264644332
+ - 2.4885924509252897
+ - -0.7759993314059281
+ - -1.0125322110319874
+ - 2.3023532791417414
+ - -2.9263019309845686
+ - 1.709028541779721
+ - 3.4612481141190377
+ - 0.07217832105856133
+ - -0.2637313868066062
+ - -1.1278482011523572
+ - 2.377750060428214
+ - -2.932489908444344
+ - 1.6292430384120633
+ - 3.1096149227256786
+ - 0.30271681638014886
+ - -0.1424742982481707
+ - -1.314846845253487
+ - 2.4866411913152575
+ - -2.9304720299498674
+ - 2.291836977902859
+ - -0.9962719621746906
+ - -0.7018988320810413
+ - 1.3212463014384028
+ - 1.8978325896654138
+ - -3.159380651662816
+ - -1.8709016892085446
+ - 2.2151879638733396
+ - -0.8006317821718159
+ - -0.8978285091999159
+ - 1.4595519448050933
+ - 2.3670224962705935
+ - -3.505737626040179
+ - -1.9336977533822082
+ - 2.0778505244079986
+ - -0.6784297913351378
+ - -1.0166090907536909
+ - 2.3616244255967858
+ - -2.931442026684827
+ - 2.4743644037141745
+ - -3.0628996508926867
+ - -3.871211628405903
+ - 1.6263404818558213e-15
+ - 1.9701787829788013e-15
+ - 3.0258266807189747e-16
+ - 4.2517083485225616e-17
+ - -2.638292563737882e-16
+ - -1.6874484496081762e-16
+ - -5.523498540322842e-16
+ - 1.2242273065784808e-17
+ - -2.0249381395298115e-16
+ - 5.67445900211377e-17
+ - 5.4097612060968004e-17
+ - 5.358476008118513e-16
+ - 1.4740358515694953e-16
+ - 3.5816920523546093e-16
+ - -9.098986738083303e-17
+ - -1.1117307432712692e-16
+ - -9.620110523991711e-17
+ - -2.719769854074355e-16
+ - -6.906958114817781e-17
+ - -1.4260593760414197e-16
+ - 5.715818032741421e-17
+ - -1.7643762465756078e-16
+ - -1.1561917011959944e-16
+ - -1.994203209894638e-16
+ - 1.8164886251664485e-16
+ - -3.3517358420648676e-16
+ - -6.691891155553994e-17
+ - 4.5743087874182424e-17
+ - 4.549493369041652e-18
+ - 1.887626157846009e-16
+ - -4.1969076329409235e-17
+ - 1.463282503606306e-16
+ - 1.3656751913250487e-16
+ - -5.1450634100798315e-17
+ - -2.718115492849249e-16
+ - -2.578735559634064e-16
+ - -3.759535884053511e-17
+ - -5.848166930749906e-17
+ - -1.9711713997138647e-16
+ - 3.624705444207367e-16
+ - 2.445973071319303e-16
+ - 1.405379860727594e-16
+ - 2.0828407824085234e-16
+ - -6.86559908419013e-17
+ - -7.386722870098537e-17
+ - 1.6299593970357408e-16
+ - -4.7604244252426737e-17
+ - -3.537024299276746e-16
+ - 4.993275767676352e-16
+ - 4.537085659853356e-17
+ - -8.271806125530276e-17
+ - 1.4752766224883249e-16
+ - 1.5013328117837452e-17
+ - -4.2951353306815956e-17
+ - -5.559067306662622e-16
+ - -1.1431636065482842e-16
+ - -3.441071348220595e-17
+ - -2.6196809999554386e-16
+ - 2.3339934958949367e-16
+ - 1.5021599923962983e-16
+ - 3.241720820595315e-16
+ - -1.1359257761884453e-16
+ - 3.277289586935095e-16
+ - -1.5949076185788062e-16
+ - -1.4392942658422682e-16
+ - -1.163119338826126e-16
+ - -2.7072587473094905e-16
+ - 1.2374621963793294e-16
+ - -2.1845839977525458e-16
+ - -1.407861402565253e-16
+ - -6.782105541110558e-17
+ - 5.070617154950059e-17
+ - -5.2319173743978994e-17
+ - -3.082488552678857e-16
+ - -9.462946207606635e-17
+ - -3.122606812387679e-16
+ - 4.1028158382630167e-17
+ - -7.006219788324144e-17
+ - 1.150194641754985e-16
+ - -3.455133418633996e-16
+ - 1.290401755582723e-17
+ - 1.624582723054146e-16
+ - -1.9604180517506753e-17
+ - 1.5236666883226767e-16
+ - -2.451763335607174e-16
+ - 2.2457953630814698e-17
+ - -2.744585272450946e-16
+ - -2.9286329587439945e-16
+ - -8.544775727672775e-16
+ - 3.68839835137395e-16
+ - -5.475935655101043e-16
+ - 9.793818452627848e-16
+ - 3.819506478463605e-16
+ - -1.495542547495874e-16
+ - -1.952146245625145e-16
+ - -1.0848473733632957e-16
+ - -4.257498612810433e-16
+ - -1.4591466005435408e-16
+ - 2.4279818929962745e-16
+ - 1.8611563782443123e-18
+ - 5.984651731821155e-17
+ - 1.8561932945689939e-16
+ - 1.0219816468092656e-16
+ - -4.683496628275243e-16
+ - -4.508134338414001e-16
+ - 1.1812139147257235e-16
+ - -3.88774887899923e-18
+ - 5.97224402263286e-17
+ - 4.3079566301761676e-16
+ - 1.1845226371759356e-16
+ - 3.7719435932418056e-17
+ - 2.0927669497591598e-16
+ - 1.6766951016449869e-16
+ - 9.61183871786618e-17
+ - -1.819797347616661e-18
+ - -1.4177875699158894e-16
+ - -3.2036705124178757e-16
+ - -2.1961645263282882e-16
+ - 3.298796282861474e-16
+ - -1.9703442191013117e-16
+ - 1.559235454662457e-16
+ - 1.6444350577554188e-16
+ - -5.911859837916489e-16
+ - -1.4852027898389612e-16
+ - -9.769003034251256e-17
+ - 6.782881022934827e-17
+ - -6.203854594147707e-18
+ - 1.2552465795492195e-16
+ - -2.7611288847020064e-16
+ - -9.299578036627412e-17
+ - -6.915229920943311e-17
+ - -1.846680717524634e-16
+ - -8.040609144321705e-16
+ - 9.678013166870423e-17
+ - -2.482369018271636e-16
+ - 2.072914615057887e-16
+ - 1.2490427249550716e-17
+ - -2.1390890640621293e-16
+ - -2.146947279881383e-16
+ - 3.1515581338270354e-17
+ - 2.249931266144235e-17
+ - 4.944885701841999e-16
+ - -9.702828585247013e-17
+ - -3.0713216144093913e-16
+ - 6.327931686030662e-17
+ - 6.815968247436948e-17
+ - 6.257621333963654e-17
+ - -7.221286747587932e-17
+ - -2.2995621028974166e-17
+ - -9.843449289381028e-18
+ - -9.098986738083304e-18
+ - 4.982936010019439e-16
+ - 1.3615392882622836e-16
+ - 1.398865813403739e-16
+ - 3.748782536090321e-16
+ - 1.9356026333740845e-16
+ - 7.097209655704977e-17
+ - 1.1650838927809395e-16
+ - -1.713918229209873e-16
+ - 1.0935327697951025e-16
+ - -9.992341799640573e-17
+ - -1.8776999904953726e-16
+ - -1.1754236504378523e-16
+ - -1.284611491294852e-16
+ - 4.453540417985501e-16
+ - -1.290401755582723e-17
+ - -1.2357302869717965e-16
+ - 1.3979352352146168e-16
+ - -1.4988512699460861e-16
+ - 3.316994256337641e-17
+ - 4.330290506715099e-17
+ - 2.0582321591850709e-16
+ - -1.2506970861801778e-16
+ - -1.5073298712247544e-16
+ - -4.6983858793011966e-17
+ - 2.8785885316845363e-17
+ - -1.3193530770220791e-16
+ - 5.459392042849982e-18
+ - -7.345363839470885e-16
+ - -8.963329117624608e-16
+- - 4.63715348563911
+ - 3.719465029471534
+ - -2.815389441806468
+ - 2.7340685638592355
+ - -1.8460827202040822
+ - 0.18836471176319722
+ - 1.3772700945245198
+ - -2.5766026064037537
+ - 1.9848255528752443
+ - 3.7566969886105466
+ - -1.4545788925051923
+ - -1.0262232476863526
+ - 0.06565094324540556
+ - 1.4874966031944925
+ - -2.664876318346516
+ - 1.8714991967732024
+ - 3.311991145636114
+ - -1.0710645999261283
+ - -0.8951197139043672
+ - -0.13840011046732306
+ - 1.656056322552862
+ - -2.713582022790493
+ - 2.7958091059022645
+ - -2.0183319277069693
+ - 0.5082472638001188
+ - 0.649065783784614
+ - 0.6117559182369451
+ - -3.3016221727252186
+ - -1.8210536210434982
+ - 2.765791222779304
+ - -1.8656083187782957
+ - 0.30830682385143743
+ - 0.7646802677346902
+ - 0.9141321609040037
+ - -3.6018753732429447
+ - -1.8640609607865846
+ - 2.702655363102914
+ - -1.7673723036839788
+ - 0.18404991837989795
+ - 1.464011853035828
+ - -2.621001468830215
+ - 2.852876942129101
+ - -4.59049575737753
+ - -4.6015064975061994
+ - -2.5804558574506515
+ - -2.498804264559349
+ - -0.9321570040027248
+ - -0.8088835971133609
+ - 1.4139027463170868
+ - -2.5959929311723697
+ - 2.8591423353905285
+ - -2.214546021156844
+ - 0.787753009824905
+ - 0.8184259200701351
+ - -1.3899802826041858
+ - -2.2214583547286417
+ - 3.3409754933934557
+ - 1.847903219517923
+ - -2.130942376199533
+ - 0.6666516772041606
+ - 1.0115777352060071
+ - -1.475817614906981
+ - -2.2206620375738155
+ - 2.9791039924846023
+ - 1.8062748982227859
+ - -1.987673554727847
+ - 0.46683855158821763
+ - 1.1252713600020732
+ - -2.483060572324829
+ - 2.873365368012344
+ - -2.411193224317929
+ - 0.7949201695806877
+ - 1.8769384025230684
+ - 2.110871927430524
+ - 0.942583258565185
+ - -2.5451898642199815
+ - 2.8627646038153913
+ - -2.289870113935865
+ - 0.7500340534277244
+ - 1.9344019278504705
+ - 2.621823986103745
+ - 1.1471981947559855
+ - -2.6391665349496156
+ - 2.847319531347664
+ - -2.2117061876056603
+ - 0.6911973927919702
+ - 0.9112576649549562
+ - -2.29846629197539
+ - 3.7880243807218474
+ - 4.568965103377959
+ - 2.416305795937187
+ - 1.847300889486075
+ - -1.827551270657061
+ - 2.727208792774024
+ - -2.821101077843281
+ - 1.85354946965137
+ - -0.3903995328378436
+ - -1.2788967116560679
+ - 1.6296439532813392
+ - 2.7526508751769123
+ - -3.2383325638343643
+ - -1.8319088061052577
+ - 1.7585815849950979
+ - -0.263898854112093
+ - -1.457712981108466
+ - 1.6390625169759798
+ - 2.574533515257415
+ - -2.7178457413059443
+ - -1.701513287743735
+ - 1.5930856656292445
+ - -0.06201677163453554
+ - -1.5646622326420578
+ - 2.646568047544754
+ - -2.8706146685767786
+ - 2.087363872877984
+ - -0.5211852208754959
+ - -1.43154910941001
+ - -2.480747863976279
+ - -1.1834143802734884
+ - 2.693337693865573
+ - -2.8269250023843155
+ - 1.9440685558680675
+ - -0.4076981991661535
+ - -1.3210720828900604
+ - -2.8545111952864812
+ - -1.3002589831595976
+ - 2.756433083190374
+ - -2.794096806155612
+ - 1.850262974080632
+ - -0.29095188070355554
+ - -1.3660631654669915
+ - 2.505007362188948
+ - -5.127004735191055
+ - -5.049901694939983
+ - -1.3690378564228862
+ - -1.2051303443257835
+ - 2.2277705749923307
+ - 2.372196137298766
+ - -0.35060940363772936
+ - -1.3133964780282126
+ - 2.4728689475925756
+ - -0.6748332252490138
+ - -1.010530774017126
+ - 2.2931212076694663
+ - -1.8830168391369912
+ - -3.4680778729524464
+ - 1.8992406169113942
+ - 1.2412967017857548
+ - -0.5527336835609825
+ - -1.1274191412189019
+ - 2.4104071880758373
+ - -1.8828381791065332
+ - -3.2466513670427384
+ - 1.5437302693636432
+ - 1.1408629208833798
+ - -0.35280436031357343
+ - -1.3131207162875178
+ - 2.474340298413336
+ - -2.9076432186491252
+ - 2.2763181120996956
+ - -0.9845029144763894
+ - -0.3676233396374525
+ - -0.1001858420023954
+ - 3.2140031782092318
+ - 1.72432780648065
+ - -2.894657996130016
+ - 2.1481868694528004
+ - -0.7897924883352802
+ - -0.4806602733608332
+ - -0.36158135599443675
+ - 3.7290432757261613
+ - 1.8828815373657757
+ - -2.864032248923253
+ - 2.0614338678670547
+ - -0.6706333074410851
+ - -1.1039430733847353
+ - 2.350344435212196
+ - -2.914892187195226
+ - 4.129574706589932
+ - 5.092059311226396
+ - -7.517417406881915e-16
+ - -1.0768237214215314e-15
+ - -1.4144788474656773e-16
+ - -7.673134157195022e-17
+ - 8.852642011907355e-17
+ - -1.6791766434826462e-17
+ - 3.149903772601929e-16
+ - 3.716522492200753e-16
+ - 2.241659460018705e-16
+ - 1.3152171739593138e-17
+ - -1.1549509302771647e-17
+ - -6.402377941160433e-16
+ - 1.464936864831412e-16
+ - -2.388897609053144e-16
+ - -1.5153948821971465e-16
+ - 1.2804755882320868e-16
+ - 1.2349806545416703e-16
+ - 1.7039920618592368e-16
+ - 2.3773170804774015e-16
+ - -1.227536029028693e-16
+ - 4.4254162771586974e-17
+ - 2.0307284038176827e-16
+ - 1.152676183592644e-16
+ - 7.570512062450162e-17
+ - -2.7694006908275367e-16
+ - 3.4576149604716557e-17
+ - 3.2756352257099896e-17
+ - -8.71848365630891e-17
+ - -1.878113580801649e-16
+ - -1.3325879668229276e-16
+ - 2.388070428440591e-16
+ - -1.5273890010791654e-16
+ - -3.7289302013890483e-16
+ - 3.0688400725717327e-17
+ - 2.021215826773323e-16
+ - 2.9447629806887785e-17
+ - 4.628075527234189e-17
+ - -2.5921772445880502e-17
+ - 5.724089838866952e-17
+ - -3.707837095768946e-16
+ - 4.135903062765138e-17
+ - -1.4438437592113098e-16
+ - -2.888928289341449e-16
+ - 6.319659879905131e-17
+ - 8.056739166266488e-17
+ - -8.230447094902624e-17
+ - 9.181704799338606e-17
+ - 2.7427241160727015e-16
+ - -3.48904782374867e-16
+ - -2.5063572560356735e-17
+ - 1.8148342639413425e-16
+ - -3.0812477817600277e-18
+ - -1.7577588016751836e-16
+ - -8.966637840074819e-17
+ - 1.2407709188295415e-16
+ - 3.234276195082338e-17
+ - 2.8868603378100666e-17
+ - 1.2022553215575412e-16
+ - -7.742410533496338e-17
+ - 1.0112282988460762e-16
+ - -2.6663133069881156e-16
+ - -2.5508182139603988e-17
+ - -1.9753073027766298e-16
+ - 1.7039920618592368e-16
+ - 1.0447291136544738e-16
+ - 2.219325583479773e-16
+ - 1.2639319759810263e-16
+ - -1.7271531190107215e-16
+ - -6.154223757394526e-17
+ - 4.9010451293766884e-17
+ - 2.2846728518714624e-16
+ - 3.6644101136099126e-17
+ - 7.80858498250058e-17
+ - 1.0262209474485998e-16
+ - 3.876168350423487e-16
+ - 8.08982639076861e-17
+ - -2.1804480946897807e-16
+ - -9.905487835322505e-17
+ - 9.378160194819951e-18
+ - 1.0149506116025648e-16
+ - 8.602678370551488e-18
+ - 4.0366413892587744e-17
+ - 3.081247781760028e-17
+ - 6.179039175771117e-17
+ - 7.974021105011186e-17
+ - 6.906699620876358e-17
+ - 2.4583807805075982e-16
+ - 5.935020895067974e-17
+ - 4.2790053087368117e-16
+ - 2.5944519912725713e-16
+ - -4.5743087874182424e-17
+ - -5.007337838089753e-16
+ - -2.396342234566121e-16
+ - 2.5075980269545034e-16
+ - 1.403725499502488e-16
+ - 1.646089418980525e-17
+ - 2.1072426104788378e-16
+ - -4.453333622832362e-17
+ - 1.163015941249557e-16
+ - 2.5357221677813063e-16
+ - -7.481848640542135e-17
+ - 3.8240559718326464e-16
+ - -2.0402409808620425e-16
+ - 1.5000920408649157e-16
+ - -3.69439541081496e-17
+ - -9.303713939690178e-17
+ - -3.2673634195844593e-17
+ - -3.532061215601428e-17
+ - -1.0159845873682561e-16
+ - -5.930884992005208e-17
+ - 2.3657365519016588e-17
+ - -9.599431008677885e-17
+ - -2.591143268822359e-16
+ - 6.638124415738047e-17
+ - -5.542110104105285e-17
+ - -1.1216569106219055e-16
+ - 2.469547718777064e-16
+ - 1.5981129434524492e-16
+ - -1.4260593760414197e-16
+ - 1.4558378780933287e-17
+ - -1.0422475718168147e-16
+ - 1.7867101231145398e-17
+ - 2.0303148135114062e-16
+ - 2.5849394142282112e-17
+ - -9.926167350636331e-17
+ - 5.657915389862709e-17
+ - -6.27830084927748e-17
+ - -1.4534597338322388e-16
+ - 6.33413554062481e-17
+ - -3.788487205492866e-17
+ - -1.4355719530857795e-16
+ - 1.62292836182904e-16
+ - 3.578383329904397e-16
+ - 2.304525186572735e-16
+ - 1.1208297300093525e-16
+ - -2.6792380040592566e-16
+ - 1.9438744394996147e-17
+ - 1.0203272855841595e-16
+ - 1.1266199942972237e-16
+ - -6.981404369947554e-17
+ - 2.601483026479272e-16
+ - -1.3705348774237977e-16
+ - -3.8008949146811615e-17
+ - 1.492233825045662e-16
+ - 1.5468277454741618e-17
+ - 2.1134464650729854e-17
+ - -2.456726419282492e-17
+ - -1.1894857208512538e-16
+ - 6.55954225754551e-17
+ - -4.020097777007714e-17
+ - -6.534726839168919e-17
+ - -3.2454431333518036e-16
+ - -7.452897319102779e-17
+ - -8.218039385714329e-17
+ - -3.90429249125029e-17
+ - -5.394768557494277e-17
+ - 2.903403950061127e-17
+ - -1.9339482721489785e-16
+ - 1.6080391108030856e-16
+ - 3.5403330217269584e-17
+ - 9.700760633715631e-17
+ - 9.305781891221561e-19
+ - 3.877926109225162e-17
+ - 4.216553172489058e-17
+ - 1.4492204331929045e-16
+ - 4.2434365423970314e-17
+ - 1.1439907871608373e-16
+ - -1.654361225106055e-16
+ - 1.654361225106055e-16
+ - -1.8694281843698423e-16
+ - 1.6130021944784037e-16
+ - -8.917007003321637e-17
+ - 8.950094227823758e-17
+ - 2.8124140826802937e-18
+ - 4.144174868890668e-17
+ - -8.238718901028154e-17
+ - -6.650532124926343e-17
+ - 4.524677950665061e-17
+ - 4.979627287569227e-16
+ - 1.225881667803587e-16
+- - -2.649702014314028
+ - -2.040301966093851
+ - 1.903688446241551
+ - -2.825030435408959
+ - 2.7533224931319578
+ - -1.7943735075387515
+ - 0.2079510814246161
+ - 1.3699203256214516
+ - -1.6918123065244595
+ - -2.891353730869889
+ - 3.154123923251668
+ - 1.8012552779629174
+ - -1.6933132643491244
+ - 0.08216008731685037
+ - 1.5466373367116206
+ - -1.6911729012312573
+ - -2.6874402805106583
+ - 2.6346811451603283
+ - 1.6681942439840167
+ - -1.5231765348113517
+ - -0.12286028298209592
+ - 1.6489737733797913
+ - -2.7545835245446915
+ - 2.8139934212240565
+ - -2.0400245697182164
+ - 0.43395814183340287
+ - 1.2896567419211669
+ - 2.5987066765734674
+ - 1.2602227955542418
+ - -2.793992812964965
+ - 2.762219738486795
+ - -1.8872670545028678
+ - 0.31803560785062024
+ - 1.1609920233165385
+ - 2.97378497130618
+ - 1.3732358610610476
+ - -2.8496912368825265
+ - 2.72140036617533
+ - -1.7909446531943223
+ - 0.10763582970609052
+ - 1.4551910443469445
+ - -2.626860495089869
+ - 5.185022431396161
+ - 5.113735408358684
+ - 1.5045978706213958
+ - 1.3461214308657892
+ - -2.0079993443929762
+ - -2.1546308681830704
+ - 0.16600286011465362
+ - 1.4066592331894645
+ - -2.600139815346968
+ - 2.864442606111451
+ - -2.2377847643584676
+ - 0.8073583895075966
+ - 0.4530985186639683
+ - 0.29455476839686257
+ - -3.549208024887745
+ - -1.7843667153289797
+ - 2.8470249941443684
+ - -2.15259250687112
+ - 0.6107186388514193
+ - 0.5901572099047253
+ - 0.5006819715394877
+ - -3.305075023899472
+ - -1.8120436097982051
+ - 2.8042508261847408
+ - -2.0094164547624676
+ - 0.4877322721454224
+ - 1.2015521581514643
+ - -2.4855155731786547
+ - 2.8880414289521634
+ - -1.611966050598723
+ - -3.0870095575661765
+ - -0.35619900893422346
+ - 0.11174222482687093
+ - 1.3143385853736917
+ - -2.5870685783836587
+ - 2.8784645393415804
+ - -1.6462451096080624
+ - -3.4234481321650216
+ - -0.6886741136783829
+ - -0.06607450603572362
+ - 1.4913502161059318
+ - -2.6452337552245853
+ - 2.863868722175616
+ - -2.1712390014352514
+ - 0.7128420317203938
+ - 0.9003893717470449
+ - -2.1733610280398517
+ - -2.5173376975903463
+ - 0.489586659846224
+ - 0.5375088364435591
+ - 0.24260221521445544
+ - -1.8237263489275464
+ - 2.7348165394462227
+ - -2.8145618196587363
+ - 1.8772870862378122
+ - -0.40871207154480566
+ - -0.7399666270748678
+ - -0.8714178630091897
+ - 3.8019262997918797
+ - 1.9602668078798264
+ - -2.776492428483811
+ - 1.7803277549539285
+ - -0.20467929650712835
+ - -0.8611169798288304
+ - -1.0038564657958982
+ - 3.3310715186320197
+ - 1.8751040689424896
+ - -2.7052131638899013
+ - 1.6146958083962015
+ - -0.08129300093439207
+ - -1.63725680946521
+ - 2.652413078268735
+ - -2.887838805363267
+ - 1.4390024813360915
+ - 2.855813125439216
+ - 0.8639785399781276
+ - 0.18172128896177392
+ - -1.7384091036617195
+ - 2.727311111031133
+ - -2.845029004137412
+ - 1.3663066096724041
+ - 2.96283879714177
+ - 1.1788245961274655
+ - 0.3277737494741339
+ - -1.8997006057311794
+ - 2.765419530334149
+ - -2.8133634540051924
+ - 1.799985730033245
+ - -0.31134040506103333
+ - -1.3583539028440386
+ - 3.878426387451265
+ - 3.7452367543745355
+ - -0.21367539987778483
+ - -0.3935009964632262
+ - -4.424430190908262
+ - -4.54237822374106
+ - 1.8481870396758502
+ - -0.3719617265425888
+ - -1.3003273657716348
+ - 2.522229144538541
+ - -0.6962879078959954
+ - -1.000477299968966
+ - 1.4588451346124824
+ - 2.369722149462564
+ - -3.287385336003104
+ - -1.8341928265284153
+ - 2.0009605733087485
+ - -0.5712436965928359
+ - -1.1892830016414415
+ - 1.5392267421509642
+ - 2.3505316045797358
+ - -2.9188368878156683
+ - -1.7868332787123238
+ - 1.8482278015387765
+ - -0.3705091508060475
+ - -1.3029853100169753
+ - 2.5252957997859267
+ - -2.9237290591590948
+ - 2.2975645624002
+ - -0.7138222681244946
+ - -1.7494931183191398
+ - -2.2450150434958074
+ - -1.0266083819138678
+ - 2.584288776781336
+ - -2.9012229008044463
+ - 2.1695778127478973
+ - -0.6623520462060344
+ - -1.781508414959078
+ - -2.7665167711522387
+ - -1.2314733747313116
+ - 2.667866616753317
+ - -2.881397757088517
+ - 2.084553697676166
+ - -0.5980044691035932
+ - -1.09228301927888
+ - 2.353027428149061
+ - -3.892142724567413
+ - -4.7038072280632175
+ - 9.719372197498075e-16
+ - 1.235476962909202e-15
+ - 3.135014521575975e-17
+ - 5.227781471335134e-17
+ - -1.1600174115290522e-16
+ - -9.504305238234287e-17
+ - -5.3187713387159673e-17
+ - -4.551974910879311e-16
+ - -2.0944213109842658e-16
+ - -7.190267474617193e-17
+ - 7.345363839470886e-17
+ - 5.671977460276111e-16
+ - -3.060568266446202e-16
+ - -9.553936074987468e-18
+ - 9.264422860593909e-17
+ - -1.374774178063132e-16
+ - -7.146840492458159e-17
+ - 2.6469779601696883e-17
+ - -8.817745329815274e-17
+ - 2.547716286663325e-16
+ - 7.703119454400069e-17
+ - -2.6883369907973396e-18
+ - -9.156889380962015e-17
+ - -2.584939414228211e-18
+ - 4.9299964508160443e-17
+ - -3.4576149604716557e-17
+ - -2.919947562312188e-17
+ - 1.1642567121683865e-16
+ - 4.0598024464102593e-16
+ - 2.0514079191315083e-17
+ - -2.9422814388511194e-16
+ - 1.7800926782141153e-16
+ - -2.0249381395298115e-16
+ - 2.7710550520526424e-17
+ - -2.326859063111667e-16
+ - -4.4833189200374094e-17
+ - 5.4097612060968004e-17
+ - 1.3995895964397228e-16
+ - 1.593149859777131e-16
+ - 2.0509943288252319e-16
+ - 9.719372197498074e-17
+ - -1.4558378780933287e-16
+ - 4.0928896709123804e-16
+ - -3.705769144237564e-17
+ - -2.3082474993292237e-16
+ - 1.4757936103711705e-16
+ - -1.2597960729182611e-16
+ - 1.252351447405284e-16
+ - 2.0629884477072508e-16
+ - 8.702974019823541e-17
+ - -3.508900158449943e-16
+ - -1.6427806965303127e-16
+ - 2.7123252285613777e-16
+ - 1.9554549680753572e-16
+ - 5.161607022330892e-17
+ - -6.72084247699335e-17
+ - -2.7669191489898773e-17
+ - 1.0306670432410724e-16
+ - 5.492479267352103e-17
+ - -1.0703717126436177e-16
+ - 3.990319274955805e-16
+ - 8.172544452023912e-17
+ - 1.4409486270673742e-16
+ - -2.1142736456855385e-16
+ - -2.626298444855863e-16
+ - -2.752857078576476e-16
+ - -9.479489819857696e-17
+ - 1.2039613815709318e-16
+ - 3.1511445435207584e-16
+ - 1.2650693493232865e-17
+ - -6.274164946214715e-17
+ - 5.161607022330892e-17
+ - 7.77549775799846e-18
+ - -1.9438744394996148e-16
+ - -4.666539425717906e-16
+ - -2.953034786814309e-17
+ - 2.962133773552392e-16
+ - 2.0725010247516106e-16
+ - -5.839895124624375e-17
+ - 8.70194004405785e-17
+ - 4.255844251585327e-17
+ - -1.5493092873118206e-16
+ - 1.761894704737949e-17
+ - -2.599828665254166e-16
+ - -8.366931895973874e-17
+ - -9.429858983104514e-18
+ - -1.363503842217097e-16
+ - 8.528232115421714e-17
+ - -3.7223127564886245e-17
+ - -1.9511122698594538e-16
+ - 7.527343574232551e-16
+ - -5.492479267352104e-16
+ - 3.9539233280034717e-17
+ - -1.818453179121262e-16
+ - 3.391440511467413e-18
+ - -6.509911420792328e-17
+ - 1.1514354126738145e-16
+ - 2.7114980479488247e-16
+ - -4.407218303682531e-16
+ - -3.179889069806976e-16
+ - 2.5485434672758783e-16
+ - -8.456267402129601e-16
+ - 2.3814529835401667e-16
+ - -1.3882158630171187e-16
+ - -1.7288074802358276e-16
+ - -3.965503856579214e-16
+ - 6.986057260893164e-17
+ - 8.271806125530276e-20
+ - 1.1282743555223297e-16
+ - 1.6791766434826462e-17
+ - -1.3383782311107988e-16
+ - -1.3565762045869652e-17
+ - 1.9510088722828847e-16
+ - -1.270135830575174e-16
+ - 8.371067799036639e-17
+ - -1.9289851884736603e-16
+ - -2.271437962070614e-16
+ - -1.0290126820159663e-16
+ - -3.2094607767057474e-17
+ - 8.189088064274973e-17
+ - 2.2598574334948716e-16
+ - -1.5550995515996918e-16
+ - 3.9721213014796384e-16
+ - 1.4459117107426924e-16
+ - 1.6874484496081762e-16
+ - -7.610061635487853e-17
+ - 3.639594695233322e-17
+ - -6.162495563520056e-17
+ - 4.615667818045894e-17
+ - 3.095309852173429e-16
+ - 4.2136580403451225e-16
+ - -2.1837568171399928e-17
+ - 2.845501307182415e-16
+ - -2.346297807506663e-16
+ - -3.515517603350368e-18
+ - 5.474281293875937e-16
+ - -1.0985992510469898e-16
+ - -3.35504456451508e-16
+ - -2.008394527278751e-16
+ - 1.3631936494873896e-16
+ - -3.0142461521432324e-16
+ - 5.96397221650733e-17
+ - 5.848166930749906e-17
+ - 2.336785230462303e-17
+ - -2.0596797252570386e-17
+ - -1.6725591985822217e-16
+ - -5.735980560172401e-17
+ - 1.6005944852901083e-16
+ - -1.4273001469602493e-16
+ - 1.2217457647408219e-16
+ - 2.0654699895449099e-16
+ - 3.7611902452786163e-16
+ - 8.040195554015428e-17
+ - 3.780215399367336e-17
+ - -1.3751877683694084e-17
+ - -5.1985716559543555e-17
+ - -9.744187615874665e-17
+ - -4.9961708998202865e-17
+ - -1.096427901939038e-16
+ - 6.865599084190129e-18
+ - -4.2909994276188304e-17
+ - -3.192917164454687e-17
+ - 8.080520608877388e-17
+ - 1.464109684218859e-17
+ - -4.466775307786349e-16
+ - -8.168408548961147e-17
+ - -2.397893198214658e-16
+ - 6.526455033043388e-17
+ - -3.4964924492616475e-16
+ - 2.573358885652469e-16
+ - -7.717595115119747e-17
+ - -2.961306592939839e-17
+ - 1.6254099036666994e-17
+ - 1.561716996500116e-16
+ - -1.0447291136544738e-16
+ - -7.452897319102779e-17
+ - 2.297494151366034e-17
+ - -1.752382127693589e-16
+ - -9.509268321909606e-16
+ - 6.60090128817316e-16
+- - -0.20598427702296768
+ - -0.3067224188382831
+ - -0.44340874128465296
+ - 1.9025197746547866
+ - -2.822274362577182
+ - 2.721303357940333
+ - -1.7946647612678854
+ - 0.2072356482811866
+ - 0.8399617749830611
+ - 1.0726111520680583
+ - -3.801534790351681
+ - -1.9763085390351025
+ - 2.6786700525813756
+ - -1.691616383949713
+ - 0.004403348703287202
+ - 0.9517139782761039
+ - 1.1759247404511344
+ - -3.3187749297703117
+ - -1.8853644137188679
+ - 2.5952104783987724
+ - -1.5215984092045252
+ - -0.12084867417920452
+ - 1.7239494958131902
+ - -2.7519290079477092
+ - 2.8117320105092953
+ - -1.3683077394843073
+ - -2.755309134774716
+ - -1.038627875530856
+ - -0.28472402797768126
+ - 1.822848190468326
+ - -2.814357127578688
+ - 2.75991834080124
+ - -1.2904532472805383
+ - -2.8421411195829376
+ - -1.364025583158795
+ - -0.4300096053082176
+ - 1.9749932868105526
+ - -2.84761505576346
+ - 2.7198608962154145
+ - -1.7139314050920365
+ - 0.10938508433073715
+ - 1.4546111491006668
+ - -4.060189564362036
+ - -3.930637445172851
+ - 0.06442104202878522
+ - 0.24689575851555745
+ - 4.269650706365466
+ - 4.391004744664502
+ - -1.761187244123176
+ - 0.16526986888595982
+ - 1.4038912162541086
+ - -2.6404945030633393
+ - 2.862543347307157
+ - -2.2358549830151495
+ - 0.6294609802987602
+ - 1.7209338635165115
+ - 2.581351586811923
+ - 1.1303138375806112
+ - -2.691287746876592
+ - 2.844706148596594
+ - -2.097447864578075
+ - 0.4868066882163046
+ - 1.3771058219060752
+ - 2.5352178722822467
+ - 1.2178027190503193
+ - -2.766115556454028
+ - 2.801895263398207
+ - -2.009355629663701
+ - 0.3943236519306068
+ - 1.1988365360960576
+ - -2.4840001703962535
+ - 1.8915041681398659
+ - 3.2693736810926497
+ - -1.5083412691861438
+ - -1.1242133053172656
+ - 0.2718789317517738
+ - 1.3818197630545344
+ - -2.5854170312186455
+ - 1.9932397758157692
+ - 3.772117927314129
+ - -1.463623022434853
+ - -1.0319575603941342
+ - 0.06741769362944404
+ - 1.4905860648124132
+ - -2.6423429741049844
+ - 2.848012554857858
+ - -2.171090603563191
+ - 0.7118157158567822
+ - -0.15350953416085553
+ - -0.35838541357861714
+ - -3.2200734725654048
+ - -2.7334243403456684
+ - 1.3378220486720036
+ - 0.2429242381398002
+ - -1.8210022453376102
+ - 2.761727041629582
+ - -2.813427383677413
+ - 1.875679117495535
+ - -0.39062637081458057
+ - -1.289707309670084
+ - -3.1041758369440493
+ - -1.43901029240507
+ - 2.796312632199125
+ - -2.7745640669595693
+ - 1.7175060071414006
+ - -0.1983606824756906
+ - -0.891973114461591
+ - -2.8386165056728347
+ - -1.4270743956539342
+ - 2.8390075530794845
+ - -2.70327174816118
+ - 1.6151890846325154
+ - 0.012966105015868595
+ - -1.6346940532791678
+ - 2.650951249615904
+ - -1.8761568670478772
+ - -3.328007521911706
+ - 1.031360450913733
+ - 0.8755077619687375
+ - 0.13818310950020374
+ - -1.7994197643143472
+ - 2.7257457946224397
+ - -1.868123420534545
+ - -3.616076516892745
+ - 0.8793828929565438
+ - 0.7487302179116868
+ - 0.3404132457509241
+ - -1.8989254796931299
+ - 2.7629806924252045
+ - -2.78364083903257
+ - 1.800264825775553
+ - -0.31070025538478263
+ - -1.3495968664535725
+ - -1.2045873776134464
+ - 1.7461363729939687
+ - 1.8894315983019112
+ - 5.146181309240172
+ - 5.194324720256391
+ - -2.8037183370997174
+ - 1.8487255911562976
+ - -0.3748738978560206
+ - -1.3839102733363549
+ - 2.5216603937873114
+ - -0.6949862900309759
+ - -0.5536134036567627
+ - -0.4918407513109347
+ - 3.5806455621755884
+ - 1.8170210444672927
+ - -2.854074995781468
+ - 1.9986306385149588
+ - -0.4941026136997365
+ - -0.6875587767669219
+ - -0.680295746693888
+ - 3.3211108444581536
+ - 1.8381592198334011
+ - -2.8023019995432303
+ - 1.8459871856522936
+ - -0.3719259861242758
+ - -1.3861096743728771
+ - 2.522411589854501
+ - -2.9213466529317684
+ - 1.553884150768473
+ - 3.011307318274146
+ - 0.5371281244880005
+ - -0.00780997792640643
+ - -1.4937859607208759
+ - 2.6159260167078573
+ - -2.8987510721974488
+ - 1.580742949347602
+ - 3.324780391094366
+ - 0.8923615061683758
+ - 0.17530721465557744
+ - -1.6667809107039315
+ - 2.6658829296826103
+ - -2.8792741113810023
+ - 2.0165011945691043
+ - -0.5992860592657709
+ - -1.0921757008784816
+ - 2.367033372819636
+ - 2.7598004943265666
+ - 4.583200979003188e-16
+ - 6.117414220135915e-16
+ - 2.0183206946293873e-16
+ - 5.941224749662121e-17
+ - -9.293374182033265e-17
+ - -1.463282503606306e-16
+ - -1.653534044493502e-16
+ - 2.0927669497591598e-16
+ - -2.6387061540441583e-16
+ - 9.886876271540062e-17
+ - 1.1075948402085039e-16
+ - -5.910205476691383e-17
+ - 3.4063297624933675e-16
+ - 4.9051810324394535e-17
+ - -1.8735640874326074e-16
+ - -2.75120271735137e-16
+ - -1.8032537353656003e-17
+ - -6.088049308390284e-17
+ - 1.1530897738989206e-16
+ - -1.252351447405284e-16
+ - 4.2387836514514206e-17
+ - 2.961306592939839e-17
+ - 5.527634443385607e-17
+ - -2.9013359985297446e-17
+ - 3.027481041944081e-17
+ - -3.48077601762314e-16
+ - -4.681842267050136e-17
+ - -9.227199733029022e-17
+ - -6.055996059653854e-17
+ - 2.1151008262980915e-16
+ - 4.450231695535289e-16
+ - -7.519071768107022e-17
+ - 1.282129949457193e-16
+ - 1.285438671907405e-16
+ - 1.0918784085699964e-16
+ - -4.579271871093561e-16
+ - -5.542110104105285e-18
+ - -6.319659879905131e-17
+ - -2.118616343901442e-16
+ - 8.875647972693986e-17
+ - 1.6717320179696687e-16
+ - 2.5543337315637495e-16
+ - -1.9165774792853649e-16
+ - 7.589382120174028e-17
+ - 9.276830569782204e-17
+ - -2.384968501143517e-16
+ - 1.1634295315558334e-16
+ - -3.278116767547648e-16
+ - -5.293955920339376e-18
+ - -5.577265280138789e-17
+ - 3.3500814808397616e-16
+ - 1.7552772598375245e-16
+ - -1.557787888590489e-16
+ - -2.875279809234324e-16
+ - -4.200423150544274e-16
+ - -1.075334796318936e-18
+ - -5.5048869765403986e-17
+ - 1.1001502146955267e-17
+ - 3.813302623869457e-17
+ - 1.2606232535308142e-16
+ - -5.922613185879678e-17
+ - -7.46944093135384e-17
+ - 5.045801736573468e-17
+ - 9.057627707455652e-17
+ - 3.987010552505593e-17
+ - 1.8069760481220887e-16
+ - -2.5791491499403403e-16
+ - -2.9995636962704166e-17
+ - -4.3286361454899933e-16
+ - -7.734138727370808e-17
+ - 4.086272226011956e-17
+ - -2.0203886461607698e-17
+ - -3.763671787116276e-18
+ - 9.996477702703338e-17
+ - 8.660581013430199e-17
+ - -7.984360862668098e-17
+ - -2.7090165061111656e-16
+ - -2.2821913100338034e-16
+ - 1.5137405209720404e-16
+ - -2.368218093739318e-16
+ - 5.70754622661589e-18
+ - 1.2277428241818313e-16
+ - -2.129990077324046e-17
+ - 3.3250592673100325e-16
+ - -1.210940717989348e-16
+ - 2.374008358027189e-17
+ - 1.923194924185789e-17
+ - -1.4202691117535485e-16
+ - -1.5567539128247978e-16
+ - 2.171762698257974e-16
+ - -6.999602343423719e-16
+ - 3.666064474835018e-16
+ - 6.749793798432706e-17
+ - 2.0286604522863e-17
+ - -2.0303148135114062e-16
+ - -1.0508295706720524e-16
+ - -6.110796775235492e-17
+ - -3.130051437900656e-16
+ - 5.284029752988741e-16
+ - 2.7387950081630746e-16
+ - -3.407984123718474e-17
+ - 8.784658105313153e-16
+ - -7.974021105011186e-17
+ - -4.663230703267693e-17
+ - -1.5908751130926102e-16
+ - 3.697497338112034e-17
+ - -7.818924740157493e-17
+ - 5.657915389862709e-17
+ - 4.5422555386818126e-17
+ - 7.161316153177837e-17
+ - 1.316044354571867e-16
+ - -2.9116757561866574e-17
+ - -1.0736804350938298e-16
+ - 1.3826323938823858e-16
+ - -1.4459117107426924e-16
+ - 7.940933880509066e-18
+ - -1.852884572118782e-17
+ - 5.293955920339376e-18
+ - 1.0993230340829737e-16
+ - -5.012714512071347e-17
+ - -7.312276614968765e-17
+ - 1.3201802576346322e-16
+ - -5.575197328607407e-16
+ - -1.5757790669135175e-16
+ - -2.6622808015019196e-16
+ - -1.7834014006643274e-16
+ - -1.2614504341433672e-16
+ - 1.4981791856983868e-16
+ - -1.0753347963189359e-16
+ - -2.2846728518714624e-16
+ - -2.901749588836021e-16
+ - -1.4905794638205559e-16
+ - -3.4096384849435796e-16
+ - 1.3165613424547127e-16
+ - -2.3127969926982654e-16
+ - -2.278882587583591e-16
+ - 1.6541544299529168e-16
+ - 4.206213414832145e-16
+ - 3.639594695233322e-18
+ - -1.2341534739291173e-16
+ - 5.667014376600793e-16
+ - 4.820395019652768e-17
+ - -4.2289608816773534e-17
+ - -2.6982631581479763e-16
+ - 4.690114073175667e-16
+ - 1.2769600706287365e-16
+ - 9.334733212660916e-17
+ - -4.963083675318165e-18
+ - 1.9686898578762056e-17
+ - -8.668852819555729e-17
+ - -1.8938300124401566e-16
+ - -1.1191753687842464e-16
+ - 4.5164061445395305e-17
+ - -8.197359870400503e-17
+ - -1.9662083160385465e-16
+ - 1.1342714149633392e-16
+ - -3.871205266748169e-17
+ - -1.3110812708965489e-16
+ - -4.7459487645229957e-17
+ - -3.1019272970738534e-18
+ - 1.0720260738687237e-16
+ - 2.8496372102451803e-17
+ - -5.5048869765403986e-17
+ - -6.671211640240168e-17
+ - 5.217855303984499e-16
+ - 3.3728289476849703e-17
+ - 1.1038725274520153e-16
+ - -4.985831142163374e-17
+ - 2.1287493064052165e-16
+ - -1.8665330522259067e-16
+ - 5.4759356551010426e-17
+ - 3.59823566460567e-16
+ - 1.6663811933822165e-17
+ - -9.429858983104514e-17
+ - 5.686866711302065e-17
+ - 5.798536093996724e-17
+ - -9.942710962887391e-17
+ - 1.0176389485933622e-16
+ - -3.0200364164311035e-16
+ - -5.837413582786716e-16
+- - 1.9017168486149398
+ - 1.6326713133742783
+ - -0.7464891782880173
+ - -0.4365386680123951
+ - 1.4223090555266675
+ - -2.015670471794665
+ - 1.8563814436007509
+ - -1.1499972700475276
+ - 0.11016994926680085
+ - 0.6007114707109207
+ - 2.335241366994681
+ - 1.1123710228916206
+ - -2.02852215121194
+ - 1.820737553288634
+ - -1.0284048538520165
+ - -0.01722956676469259
+ - 0.35497349632632036
+ - 2.1135162371900673
+ - 1.0927561380585271
+ - -2.0430504322784464
+ - 1.7542437044632357
+ - -0.9527731117836978
+ - -0.27785720049731766
+ - 1.3040953969432085
+ - -1.9638285859338467
+ - 1.2819324438666007
+ - 2.319686864766458
+ - -0.45520152231189737
+ - -0.4695780854715163
+ - -0.3631422853151126
+ - 1.409932437344305
+ - -1.998787868056476
+ - 1.2664177207252274
+ - 2.4993718930047453
+ - -0.3214701892292833
+ - -0.37559690031089576
+ - -0.5032911680614965
+ - 1.4711253739694459
+ - -2.0162053702145886
+ - 1.8278473180743617
+ - -1.0925413367859953
+ - -0.05213260361575648
+ - 1.350932235096287
+ - 1.2485521061124603
+ - -1.0202066209527187
+ - -1.1278454613536268
+ - -3.588756457194978
+ - -3.634347022247368
+ - 1.8448272624997284
+ - -1.1255145944780514
+ - -0.011311565136648829
+ - 1.145754737452754
+ - -1.897175526129883
+ - 1.98062449060194
+ - -1.0005537610563295
+ - -2.1412500888068133
+ - -0.6998739235510257
+ - -0.16154543220518025
+ - 1.2167577270583663
+ - -1.9282231210069416
+ - 1.949378120997059
+ - -0.9246847322721731
+ - -1.8802043008203742
+ - -0.8011057628944804
+ - -0.2435609701189429
+ - 1.3264266060515086
+ - -1.9719920903444956
+ - 1.924353522214224
+ - -1.2566588446914464
+ - 0.1495067492223733
+ - 0.9530704316353285
+ - -1.135134128574454
+ - -1.7727157756889813
+ - 1.938377088148761
+ - 1.2073164111746852
+ - -1.1861834107355624
+ - 0.007765806913212107
+ - 1.0766575743246005
+ - -1.229174554236157
+ - -2.132326880312507
+ - 2.0967878000424056
+ - 1.2143739208214919
+ - -1.0675213687967995
+ - -0.08153901289907664
+ - 1.1482387206810962
+ - -1.922462169748609
+ - 1.966394424491923
+ - -1.427925990440647
+ - 1.5422844558500575
+ - 1.9915996309257544
+ - 3.35137866656382
+ - 2.768160609298744
+ - -1.7253667590640158
+ - 0.819372365966654
+ - 0.2959918464522666
+ - -1.4195025026656556
+ - 1.9635370875133422
+ - -1.9267111605827165
+ - 0.9096459040446752
+ - 2.0141406037472773
+ - 1.1349448961641875
+ - 0.4016387381604714
+ - -1.4804639709095033
+ - 1.9826863803696813
+ - -1.8730610826643947
+ - 0.7673974303526677
+ - 1.645493829115433
+ - 1.1294893169218276
+ - 0.44167026800758413
+ - -1.5761407438703339
+ - 2.003594970523875
+ - -1.836749465020943
+ - 0.9634365625631216
+ - 0.13604481618373074
+ - -1.2474743786553015
+ - 1.2265222342480935
+ - 1.9848001021389348
+ - -1.7159076384075618
+ - -1.1093730085480948
+ - 0.8870966244497677
+ - 0.2784118468104687
+ - -1.3571203384991857
+ - 1.263154320001634
+ - 2.244849416358244
+ - -1.7413512934919124
+ - -1.0572209518784965
+ - 0.7564841496262571
+ - 0.3652156054959088
+ - -1.4216785156584415
+ - 1.978401732308258
+ - -1.9023687324968217
+ - 1.1554646901358172
+ - -0.9059079294870727
+ - -0.9868084765609026
+ - -1.831225429288424
+ - -1.8760695598831019
+ - -3.06384678653181
+ - -3.0472889734414306
+ - 1.9713970351724341
+ - -1.919297847962338
+ - 1.1921537908971576
+ - -0.06696637966689832
+ - -1.0795450635912005
+ - 1.8234629369175361
+ - -0.2890033247503577
+ - -0.9325185006725837
+ - -2.0003590041226227
+ - -0.9106290582792311
+ - 1.9342961835681607
+ - -1.9619721266137182
+ - 1.260081695947067
+ - -0.1873597827132844
+ - -0.706247627139508
+ - -1.9373758934073175
+ - -0.9644662222661243
+ - 1.9692866881259208
+ - -1.9171357671701184
+ - 1.1904811248352738
+ - -0.066354752095397
+ - -1.0789292675742006
+ - 1.821773420225921
+ - -1.316724582130703
+ - -2.3212622991510306
+ - 0.8025079687090237
+ - 0.6549970703700689
+ - 0.02119646559427322
+ - -1.1970681371287162
+ - 1.8789453883851341
+ - -1.3796400743223596
+ - -2.6573773312576527
+ - 0.7269946195563635
+ - 0.5758156789769894
+ - 0.16290461432792125
+ - -1.268621465995895
+ - 1.9080215129807325
+ - -1.9676596356110843
+ - 1.3161859235447617
+ - -0.2919765376480133
+ - -0.24052210441563732
+ - -0.17606781037884622
+ - -5.381016679810583e-16
+ - -3.9849426009742103e-16
+ - -1.8810087129455847e-16
+ - 3.91256429737582e-17
+ - -5.600012746983997e-17
+ - 1.4308156645635996e-16
+ - 2.257582686810351e-16
+ - -2.9811589276411117e-16
+ - 5.2939559203393765e-17
+ - -4.764560328305439e-17
+ - -4.5683634267655175e-17
+ - -3.4229767723209976e-17
+ - -2.7114980479488247e-16
+ - -1.6742135598073278e-16
+ - 6.600901288173161e-17
+ - 2.1142736456855385e-16
+ - -4.0407772923215396e-17
+ - 9.777274840376786e-17
+ - 6.650532124926343e-17
+ - 1.889280519071115e-16
+ - 1.3657527395074754e-17
+ - 8.573727049112131e-17
+ - 4.729405152271935e-17
+ - 1.0757483866252124e-16
+ - -9.189976605464136e-17
+ - 2.478233115208871e-16
+ - 3.019209235818551e-17
+ - 5.623794189594897e-17
+ - 1.4442573495175863e-16
+ - -1.1150394657214813e-16
+ - -2.2896359355467806e-16
+ - 3.7719435932418056e-17
+ - -2.283018490646356e-17
+ - 1.852884572118782e-17
+ - -3.875341169810934e-17
+ - 2.9977025398921723e-16
+ - -1.3648480107124955e-17
+ - 6.944181242382667e-17
+ - 1.9494579086343477e-16
+ - -1.3230753897785678e-16
+ - -1.3301064249852685e-16
+ - -1.3036366453835716e-16
+ - 9.148617574836485e-17
+ - 2.899268046998362e-17
+ - 1.2697222402688973e-17
+ - 1.2461475928111362e-16
+ - -4.061456807635365e-17
+ - 6.820931331112265e-16
+ - -2.0654699895449099e-16
+ - 8.433106344978116e-17
+ - -1.3814950205401253e-16
+ - -1.5306977235293775e-16
+ - 9.843449289381028e-17
+ - 2.3811427908104593e-16
+ - 1.4156679195962223e-16
+ - -4.549493369041652e-18
+ - 1.2027206106521022e-16
+ - 1.3565762045869654e-16
+ - -6.011276607787706e-17
+ - 5.376673981594679e-18
+ - -2.3202416182112423e-17
+ - 1.4765173934071544e-16
+ - -1.5526180097620327e-16
+ - 3.192917164454687e-17
+ - -6.27002904315195e-17
+ - -9.487761625983226e-17
+ - 1.8843174353957968e-16
+ - -1.1158666463340343e-16
+ - 3.7032876023999044e-16
+ - 1.2209185841282688e-16
+ - 1.6626330312315856e-17
+ - 1.6005944852901086e-17
+ - 1.9180896688426883e-17
+ - -3.4720906211913337e-17
+ - 1.522012327097571e-17
+ - 1.3193530770220791e-16
+ - 1.3532674821367533e-16
+ - 1.344995676011223e-16
+ - -4.599124205794833e-17
+ - 2.0762233375080992e-16
+ - 1.1249656330721175e-17
+ - -3.48077601762314e-16
+ - 1.0637542677431935e-16
+ - -2.053475870662891e-16
+ - 1.1814207098788618e-16
+ - -5.2029660529585435e-17
+ - -1.1663246636997689e-17
+ - 1.5517908291494797e-16
+ - -2.1506695926378716e-17
+ - 1.0339757656912845e-16
+ - 7.636531415089551e-16
+ - -7.3222027823194e-16
+ - -2.1523239538629778e-16
+ - 7.031035206700734e-19
+ - 1.7151590001287026e-16
+ - 6.06943774460784e-17
+ - 2.905058311286233e-16
+ - 3.4973196298742005e-16
+ - -5.833277679723951e-16
+ - -2.35498320393847e-16
+ - 2.2333876538931744e-17
+ - -5.97224402263286e-16
+ - 9.132073962585424e-17
+ - 9.855856998569324e-17
+ - 1.5964585822273432e-16
+ - -9.686284972995953e-17
+ - 3.190849212923304e-17
+ - 1.894243602746433e-17
+ - 1.3176470170086885e-16
+ - -5.426304818347861e-17
+ - -5.016850415134112e-17
+ - -1.4608009617686469e-16
+ - -1.1921740578420511e-16
+ - -7.231626505244844e-17
+ - 6.68051742213139e-17
+ - -4.5412215629161213e-17
+ - 8.677124625681259e-17
+ - 4.946540063067105e-17
+ - -2.9695783990653694e-17
+ - 8.474465375605767e-17
+ - -4.963083675318166e-19
+ - -2.041481751780872e-16
+ - 7.33047458844493e-16
+ - 2.1341259803868112e-16
+ - 1.552824804915171e-16
+ - -1.3367238698856927e-16
+ - 2.779326858178173e-17
+ - -3.755399980990745e-16
+ - 9.686284972995953e-17
+ - 1.817729396085278e-16
+ - 2.6486323213947946e-16
+ - 2.102693117109796e-16
+ - 7.61171599671296e-16
+ - -1.8611563782443123e-18
+ - 1.9533870165439746e-16
+ - 5.997059441009451e-17
+ - -8.177714330852369e-17
+ - -3.947719473409324e-16
+ - 1.1052683947356985e-16
+ - 6.327931686030662e-17
+ - -2.1432249671248945e-16
+ - -2.811586902067741e-16
+ - 8.229413119136933e-17
+ - 2.626505240009001e-16
+ - -2.988706950730658e-16
+ - -2.2083654403634454e-16
+ - -7.685929607295451e-17
+ - 1.0769891575440419e-16
+ - 1.5344200362858663e-17
+ - 8.3876114112877e-17
+ - 1.4025881261602276e-16
+ - -1.6957202557337067e-17
+ - -6.381698425846609e-17
+ - 6.880074744909808e-17
+ - -2.3026640301944905e-17
+ - -1.501229414207176e-16
+ - 1.5468277454741618e-17
+ - -5.893661864440321e-19
+ - -5.930884992005208e-17
+ - -9.057627707455653e-18
+ - -6.505775517729563e-17
+ - 1.1729421086001932e-16
+ - 7.465305028291075e-17
+ - 1.1249656330721176e-16
+ - -2.2044363324538185e-16
+ - -4.537085659853356e-17
+ - -6.04462232623125e-17
+ - -6.774609216809297e-17
+ - -8.156000839772852e-17
+ - 2.0638156283198038e-16
+ - 2.840331428353959e-17
+ - -1.9695170384887586e-16
+ - 8.052603263203723e-17
+ - 1.8231060700668727e-16
+ - -8.271806125530276e-17
+ - -1.0972550825515911e-16
+ - 5.2939559203393765e-17
+ - -1.033562175385008e-16
+ - 1.8396496823179333e-16
+ - 8.476946917443427e-16
+- - -7.923743624190705
+ - -6.552766473026642
+ - 4.0136791498238225
+ - -1.8573392773224648
+ - -0.8967973656371864
+ - 3.475792151411927
+ - -4.773583358124606
+ - 4.5268620284700285
+ - -2.0985497223394796
+ - -4.692487053976091
+ - -2.9006405253237153
+ - -1.0632540909227557
+ - 3.6187194020671694
+ - -4.811331049020288
+ - 4.389899495058782
+ - -1.756223767483085
+ - -3.8161687216158326
+ - -2.8596757681282616
+ - -1.1524661936730003
+ - 3.8382659518440168
+ - -4.852306967746996
+ - 4.295381160124701
+ - -2.2077649770077232
+ - -0.5151420581581212
+ - 3.0749784971068848
+ - -2.975190474128597
+ - -4.846040410924712
+ - 3.9903637289600713
+ - 2.6023769640510825
+ - -2.020315201439467
+ - -0.8533947074998961
+ - 3.33229410468269
+ - -3.0571266136940385
+ - -5.464971446984536
+ - 4.031507299596651
+ - 2.4707984694250635
+ - -1.7045992298855077
+ - -1.0617410561051175
+ - 3.4808941215961915
+ - -4.8039769075347705
+ - 4.463650259627816
+ - -2.676970816507686
+ - 1.903390168441106
+ - 2.101984683453544
+ - 4.33941956460876
+ - 4.459165365809918
+ - 7.483347853167353
+ - 7.4493987019478665
+ - -4.787288410075114
+ - 4.500325999697246
+ - -2.7579566980645773
+ - -0.0367448775606007
+ - 2.6854516908465644
+ - -4.467900765621615
+ - 3.1660548018763963
+ - 6.055963919283733
+ - -1.9058842982718234
+ - -1.4685430921791518
+ - -0.24496325331627672
+ - 2.8602657658306887
+ - -4.592944673649131
+ - 3.1086780941344214
+ - 5.575647522909107
+ - -1.3742162733712686
+ - -1.2781040284662835
+ - -0.5853880214489257
+ - 3.129459768148391
+ - -4.657682034854018
+ - 4.633451943684418
+ - -3.0670688740306837
+ - 0.5051226738678445
+ - 1.3260323639112641
+ - 1.4636957801494617
+ - -5.577671763978431
+ - -3.118511370807832
+ - 4.565425290716699
+ - -2.7944398987120453
+ - 0.16425250603386998
+ - 1.5416865294262794
+ - 2.06946124926346
+ - -6.356845506418769
+ - -3.326960390188982
+ - 4.435109099506504
+ - -2.6176912753339487
+ - -0.04400923226433913
+ - 2.824226481758977
+ - -4.530571168829192
+ - 4.771771318832048
+ - -6.452220372909602
+ - -8.02374939896003
+ - -8.465311975112758
+ - -6.85029674882058
+ - 4.868347473419907
+ - -4.158114531723085
+ - 2.1038702665924998
+ - 0.7898042813489382
+ - -3.281793476021371
+ - 4.714092738417573
+ - -3.228011288502636
+ - -6.329999301924004
+ - 1.008471813933668
+ - 1.0121460204263406
+ - 0.9946119669433263
+ - -3.435750830799665
+ - 4.788450854187569
+ - -2.975662938056881
+ - -5.482555399926849
+ - 0.5212712398894148
+ - 0.8140280043239745
+ - 1.3264090845626333
+ - -3.6691284792851526
+ - 4.82181043044361
+ - -4.345649677000932
+ - 2.4449434017973704
+ - 0.2504097998211558
+ - -1.755458711501988
+ - -2.278871432943084
+ - 5.522284456204084
+ - 3.168646279160602
+ - -4.2479878891633085
+ - 2.143742051551104
+ - 0.5908212629639967
+ - -1.9311642096763262
+ - -2.8621346247514587
+ - 5.926081012643943
+ - 3.184452126500478
+ - -4.070380821695012
+ - 1.9508205507782126
+ - 0.7969453201336278
+ - -3.404065180824183
+ - 4.752566557045899
+ - -4.563442077503776
+ - 6.563368234540231
+ - 6.638368621788055
+ - 4.689107367577736
+ - 4.6192852030856555
+ - 3.500615051045229
+ - 3.3295421748981666
+ - -3.33374066006393
+ - 4.733355638785364
+ - -4.5998991689217466
+ - 2.850642243084764
+ - -0.23561444458637001
+ - -2.4592886488330845
+ - 2.780065319609855
+ - 5.026248328508705
+ - 1.8606035599463122
+ - 0.4871414970808232
+ - -3.070839350340978
+ - 4.636141485507437
+ - -4.66291755688429
+ - 2.1429161013402824
+ - 4.399045479052214
+ - 2.0845039236171563
+ - 0.6819896660201774
+ - -3.328194318200811
+ - 4.729076422345116
+ - -4.598229261745064
+ - 2.852267174548217
+ - -0.23986428567183277
+ - -2.453725737802424
+ - 2.7702229886716694
+ - 4.36018681904161
+ - -4.544738061932788
+ - -2.8506181566373296
+ - 2.681105449320014
+ - 0.10167004668829108
+ - -2.7426792528066164
+ - 2.993799259718321
+ - 5.227374641550669
+ - -4.898060242720178
+ - -2.856628918977773
+ - 2.3894209422781096
+ - 0.3139178178403096
+ - -2.912010257216481
+ - 4.622158190722126
+ - -4.710802936004122
+ - 3.2737117656277452
+ - -3.503199800562055
+ - -4.5411029028054335
+ - 2.470953925818404e-15
+ - 2.5642598989143854e-15
+ - 5.333660589741922e-16
+ - -2.961306592939839e-17
+ - -1.8146274687882042e-16
+ - -3.7289302013890483e-16
+ - -8.424007358240033e-16
+ - 3.9142186586009265e-16
+ - -2.0183206946293873e-16
+ - 1.0058516248644815e-16
+ - 1.0703717126436177e-16
+ - 5.8882851904587275e-16
+ - 4.456849140435713e-16
+ - 5.90937829607883e-16
+ - -1.752382127693589e-16
+ - -3.5006283523244126e-16
+ - -1.1332374391976478e-17
+ - -3.934070993302199e-16
+ - -1.976961664001736e-16
+ - -3.982254263983413e-16
+ - 8.10637000301967e-17
+ - -2.714806770399037e-16
+ - -2.074362181129855e-16
+ - -3.567629981941208e-16
+ - 2.8676283885682087e-16
+ - -6.481787279965524e-16
+ - -1.0993230340829737e-16
+ - 5.542110104105285e-18
+ - -1.6254099036666991e-16
+ - 2.810759721455188e-16
+ - 1.4694863582004537e-16
+ - 9.727644003623604e-17
+ - 2.8124140826802937e-18
+ - -1.0058516248644815e-16
+ - -2.6717933785462794e-16
+ - -5.154989577430468e-16
+ - 1.2242273065784808e-17
+ - -1.1481266902236024e-16
+ - -4.323673061814675e-16
+ - 4.939922618166681e-16
+ - 4.549493369041652e-16
+ - 2.306179547797841e-16
+ - 1.1878313596261477e-16
+ - -1.2159555004529507e-16
+ - -1.3979352352146168e-16
+ - 8.147729033647321e-17
+ - -2.754511439801582e-17
+ - -1.2255507955585656e-15
+ - 7.841672207002701e-16
+ - -3.816404551166531e-17
+ - 1.952146245625145e-17
+ - 2.965442496002604e-16
+ - -9.926167350636331e-17
+ - -2.9931530465231306e-16
+ - -6.661311322283673e-16
+ - -1.3350695086605867e-16
+ - -2.1076562007851143e-16
+ - -4.403909581232319e-16
+ - 3.0270674516378043e-16
+ - 1.2076836943274204e-16
+ - 3.78683284426776e-16
+ - -3.553981501834083e-16
+ - 5.752627570000031e-16
+ - -2.271437962070614e-16
+ - -6.319659879905131e-17
+ - -4.1028158382630167e-17
+ - -4.818327068121386e-16
+ - 2.989430733766642e-16
+ - -6.3808712452340545e-16
+ - -3.1068903807491715e-16
+ - -6.8573272780646e-17
+ - 6.112864726766875e-17
+ - -7.378451063973007e-17
+ - -3.3926812823862425e-16
+ - -1.7933275680149638e-16
+ - -4.910144116114772e-16
+ - -7.874759431504822e-17
+ - -2.1705219273391444e-16
+ - 1.713918229209873e-16
+ - -5.866364904226072e-16
+ - 8.271806125530277e-18
+ - 6.200545871697494e-16
+ - -1.6014216659026613e-16
+ - 3.358353286965292e-16
+ - -3.9224904647264567e-16
+ - 9.669741360744892e-17
+ - -2.599001484641613e-16
+ - -4.939922618166681e-16
+ - -9.721026558723181e-16
+ - 2.2912902967718867e-16
+ - -1.4187801866509529e-15
+ - 1.9164120431628545e-15
+ - 6.660458292276978e-16
+ - -1.6047303883528734e-16
+ - -3.602371567668435e-16
+ - -1.8520573915062287e-16
+ - -8.003799607063095e-16
+ - -5.647989222512073e-16
+ - 8.926933170672275e-16
+ - 2.815722805130506e-16
+ - 8.41242682966429e-17
+ - 7.583591855886157e-16
+ - 2.10103875588469e-17
+ - -6.388238322564605e-16
+ - -7.386722870098536e-16
+ - 1.981924747677054e-16
+ - -4.020097777007714e-17
+ - 2.481541837659083e-19
+ - 2.752857078576476e-16
+ - 1.7834014006643274e-16
+ - 5.740633451118012e-17
+ - 4.0697286137608957e-16
+ - 3.4088113043310266e-16
+ - 1.8363409598677212e-16
+ - -6.981404369947554e-17
+ - -9.578751493364059e-17
+ - -4.231028833208736e-16
+ - -3.176373552203626e-16
+ - 3.2226956665065953e-16
+ - -2.992739456216854e-16
+ - 2.304525186572735e-16
+ - 4.225238568920865e-16
+ - -1.445580838497671e-15
+ - -4.205386234219592e-16
+ - -2.579562740246617e-16
+ - 3.149903772601929e-16
+ - -2.1672132048889322e-17
+ - 6.165287298087422e-16
+ - -3.7884872054928663e-16
+ - -2.483196198884189e-16
+ - -3.752091258540533e-16
+ - -4.253362709747668e-16
+ - -1.797959779445261e-15
+ - 8.801201717564213e-17
+ - -4.893600503863712e-16
+ - 2.2218071253174323e-16
+ - 7.80031317637505e-17
+ - 1.8743912680451605e-16
+ - -4.0581480851851533e-16
+ - 4.301339185275744e-18
+ - 1.7759567751513502e-16
+ - 5.636822284242607e-16
+ - 1.7122638679847673e-17
+ - -6.269615452845672e-16
+ - 3.7951046503932905e-16
+ - 3.5213078676382383e-16
+ - 1.3044638259961246e-16
+ - -2.5791491499403403e-16
+ - -6.683619349428464e-17
+ - -1.0075059860895876e-16
+ - -1.4574922393184348e-16
+ - 6.048344638987737e-16
+ - 2.2929446579969927e-16
+ - 7.151913436058582e-17
+ - 5.113630546802817e-16
+ - 3.867896544297957e-16
+ - 5.24018918052343e-17
+ - 1.1605343994118978e-16
+ - -6.849055471939069e-17
+ - 1.3102540902839958e-16
+ - -2.4980854499101433e-17
+ - -3.7421650911898967e-16
+ - -2.21849840286722e-16
+ - -2.6999175193730823e-16
+ - 6.506602698342115e-16
+ - 3.341809674714232e-17
+ - -8.770182444593475e-17
+ - 2.488159282559507e-16
+ - -1.1051132983708449e-16
+ - -2.0249381395298115e-16
+ - -1.1022181662269092e-17
+ - 3.6834352676986317e-16
+ - -2.241659460018705e-16
+ - -4.017616235170055e-16
+ - 6.109051941130888e-17
+ - 1.622101181216487e-16
+ - -1.978616025226842e-16
+ - 1.0571368228427692e-16
+ - -1.045556294267027e-15
+ - -1.8925892415213273e-15
+- - -5.482799663885932
+ - -4.551483842287217
+ - 2.7103624198638587
+ - -1.0346627376850264
+ - -0.973398710950263
+ - 2.7419754582496396
+ - -3.5125842080908636
+ - 3.146416016748276
+ - -1.3384498241649683
+ - -3.095191965386884
+ - -2.4804307753804338
+ - -0.9832590467835071
+ - 2.834867047475882
+ - -3.5256059839360336
+ - 3.0262119569280435
+ - -1.0885134624193114
+ - -2.4785978492713383
+ - -2.390894042982577
+ - -1.033141548012792
+ - 2.9755726666561455
+ - -3.5321052490910585
+ - 2.945331177999759
+ - -1.2986692701089935
+ - -0.7016339181199541
+ - 2.4774443522506004
+ - -2.222666906382915
+ - -3.6872149033198194
+ - 2.6159992019287746
+ - 1.755941354708673
+ - -1.1571387687152492
+ - -0.9426185439958119
+ - 2.647941989647529
+ - -2.26920225131349
+ - -4.124472260647797
+ - 2.602996406956237
+ - 1.6468748922879801
+ - -0.9202773588761497
+ - -1.0902021357898246
+ - 2.74530668183924
+ - -3.5232619677624495
+ - 3.0904588616019164
+ - -1.6559997012923915
+ - 0.7949857830383068
+ - 0.9482043199979263
+ - 2.9964984882257526
+ - 3.10214112045337
+ - 5.695775690720581
+ - 5.687805624970531
+ - -3.5177742299362746
+ - 3.122816186820557
+ - -1.718213038220789
+ - -0.3580346573068574
+ - 2.215656445540594
+ - -3.3581286678598783
+ - 2.2602459362413336
+ - 4.389021805201708
+ - -0.9845596747193202
+ - -0.8677162754653841
+ - -0.507995157316197
+ - 2.333656381324555
+ - -3.4267742821623317
+ - 2.2026116286558755
+ - 4.014574562572311
+ - -0.624290012184853
+ - -0.7254574631797076
+ - -0.751814399769094
+ - 2.513717408809096
+ - -3.4600440659151106
+ - 3.243584541964639
+ - -1.9571258528985238
+ - 0.034997349977894054
+ - 1.1534468334706391
+ - 1.4232845896662805
+ - -4.032637738351555
+ - -2.2903554467631744
+ - 3.181064923825445
+ - -1.7462560361932975
+ - -0.21274325612905534
+ - 1.3148790334980276
+ - 1.904307235692446
+ - -4.563527392326832
+ - -2.4221821339838847
+ - 3.065469430428501
+ - -1.610603975009852
+ - -0.36327463787104514
+ - 2.3093717062009875
+ - -3.3930485675149313
+ - 3.379168032497737
+ - -4.462778413023278
+ - -5.571024734061275
+ - -6.238641876722157
+ - -5.0646511330472865
+ - 3.5251972484526517
+ - -2.829898191331243
+ - 1.2201887050096978
+ - 0.8974197694709263
+ - -2.614689368651533
+ - 3.4872981434453276
+ - -2.272571195229422
+ - -4.522945038943457
+ - 0.30014919414658936
+ - 0.514208445032462
+ - 1.0427339072182393
+ - -2.7158911298226767
+ - 3.5182908438727956
+ - -2.0743697656055256
+ - -3.8888346257372772
+ - -0.0016242052663317003
+ - 0.37929207829196
+ - 1.2767655142807774
+ - -2.8674273626395412
+ - 3.5283863427683757
+ - -2.988261222066823
+ - 1.478737644014861
+ - 0.5118951003280686
+ - -1.4472180043327498
+ - -1.9920963417407171
+ - 3.933902729749392
+ - 2.2932857877183337
+ - -2.9052191863313577
+ - 1.2502731541209096
+ - 0.75569976985207
+ - -1.5671967979453107
+ - -2.4303545438560286
+ - 4.192667998967075
+ - 2.2880657159006534
+ - -2.757103269567729
+ - 1.1048972033156819
+ - 0.9024952073538614
+ - -2.695107562443816
+ - 3.5042165654434863
+ - -3.179344495895277
+ - 4.348309483805895
+ - 4.418376245537901
+ - 3.449973850879297
+ - 3.4198455481642687
+ - 3.064417072096258
+ - 2.952874622904184
+ - -2.6492565762212363
+ - 3.4971439667050386
+ - -3.2126165857937825
+ - 1.7899732308149634
+ - 0.1607768534974232
+ - -2.0621117969797655
+ - 2.11417269399183
+ - 3.6848639235077014
+ - 1.7361522944855832
+ - 0.5662879771143702
+ - -2.4747002322202234
+ - 3.4491242857604743
+ - -3.271281530768842
+ - 1.3883635947224984
+ - 2.9429570075679887
+ - 1.8573716284788262
+ - 0.7031544942919306
+ - -2.6452311389779686
+ - 3.4938522871785995
+ - -3.2110934450464397
+ - 1.7908110338494851
+ - 0.15794825951915675
+ - -2.058155741134317
+ - 2.1050914981795783
+ - 3.3851543271518545
+ - -3.061472258869043
+ - -1.9640525519239371
+ - 1.6591444485852362
+ - 0.4049047145921043
+ - -2.2543910281334703
+ - 2.2624676537230815
+ - 4.022161490956691
+ - -3.259657492420757
+ - -1.9449292900359498
+ - 1.4364201895695254
+ - 0.5575331074105616
+ - -2.3684076119142756
+ - 3.4418785880741116
+ - -3.3174941951369825
+ - 2.1183748584594526
+ - -2.1117635496947402
+ - -2.776613732341644
+ - 1.7369138502388473e-15
+ - 1.770166510863479e-15
+ - 3.899329407574972e-16
+ - 8.271806125530276e-19
+ - -1.6130021944784037e-16
+ - -2.4964310886850375e-16
+ - -6.110383184929214e-16
+ - 2.905058311286233e-16
+ - -1.833032237417509e-16
+ - 9.148617574836485e-17
+ - 7.006219788324144e-17
+ - 3.7049419636250105e-16
+ - 3.5221350482507913e-16
+ - 4.3311176873276524e-16
+ - -1.3809780326572797e-16
+ - -1.9058241313221755e-16
+ - -7.692779696743157e-18
+ - -2.961306592939839e-16
+ - -1.2705494208814505e-16
+ - -3.12839707667555e-16
+ - 5.509022879603164e-17
+ - -1.9256764660234482e-16
+ - -1.3383782311107988e-16
+ - -2.49022723409089e-16
+ - 2.1624569163667524e-16
+ - -4.578858280787285e-16
+ - -7.634877053864444e-17
+ - -3.805030817743927e-18
+ - -1.4531495411025314e-16
+ - 2.0878038660838416e-16
+ - 1.3454092663174995e-16
+ - 5.4428484305989215e-17
+ - 1.737079286361358e-17
+ - -5.955700410381799e-17
+ - -1.8181429863915546e-16
+ - -3.6710275585103363e-16
+ - 7.361907451721946e-18
+ - -8.99145325845141e-17
+ - -3.42618209719464e-16
+ - 3.3732425379912464e-16
+ - 3.361662009415504e-16
+ - 1.8793543517204786e-16
+ - 4.7314731038033177e-17
+ - -7.328820227219825e-17
+ - -5.4469843336616866e-17
+ - 6.993812079135849e-17
+ - -3.515517603350368e-18
+ - -8.185779341824761e-16
+ - 5.3055364489151195e-16
+ - -2.5125611106298213e-17
+ - 4.830734777309681e-17
+ - 2.307833909022947e-16
+ - -9.934439156761861e-17
+ - -2.165352048510688e-16
+ - -5.580160412282725e-16
+ - -9.462946207606635e-17
+ - -1.3499587596865412e-16
+ - -3.217732582831277e-16
+ - 2.2009208148504681e-16
+ - 1.2424252800546476e-16
+ - 2.3731811774146364e-16
+ - -2.682856919239176e-16
+ - 4.0005556350361487e-16
+ - -1.3201802576346322e-16
+ - -1.0257039595657542e-17
+ - 7.444625512977248e-19
+ - -3.483257559460799e-16
+ - 1.833032237417509e-16
+ - -4.891946142638606e-16
+ - -2.299562102897417e-16
+ - -3.8298462361205175e-17
+ - 3.966331037191767e-17
+ - -5.5338382979797545e-17
+ - -2.50801161726078e-16
+ - -6.319659879905131e-17
+ - -3.541987382952064e-16
+ - -8.834288942066334e-17
+ - -1.9289851884736603e-16
+ - 1.431022459716738e-16
+ - -4.555283633329523e-16
+ - 2.9778502051908992e-18
+ - 4.1193594505140773e-16
+ - -9.678013166870423e-17
+ - 2.8289576949313546e-16
+ - -2.839711042894544e-16
+ - 6.799424635185887e-17
+ - -2.0183206946293873e-16
+ - -3.7388563687396846e-16
+ - -8.631216101684566e-16
+ - 2.7975248316543396e-16
+ - -1.0607764175380027e-15
+ - 1.4108392527704438e-15
+ - 4.614013456820788e-16
+ - -1.01908651466533e-16
+ - -2.5543337315637495e-16
+ - -1.3284520637601624e-16
+ - -5.603321469434209e-16
+ - -4.0614568076353654e-16
+ - 6.369290716658312e-16
+ - 2.1829296365274398e-16
+ - 3.763671787116276e-17
+ - 6.339512214606403e-16
+ - 1.0918784085699964e-17
+ - -4.744707993604167e-16
+ - -5.479244377551255e-16
+ - 1.8065624578158122e-16
+ - -3.585827955417375e-17
+ - 1.8322050568049563e-17
+ - 2.547716286663325e-16
+ - 1.3383782311107988e-16
+ - 5.4759356551010426e-17
+ - 2.726387298974779e-16
+ - 1.886798977233456e-16
+ - 1.653534044493502e-16
+ - -6.410649747285964e-17
+ - -6.162495563520056e-17
+ - -2.8827244347473014e-16
+ - -2.304525186572735e-16
+ - 2.723078576524567e-16
+ - -2.3706996355769773e-16
+ - 1.4260593760414197e-16
+ - 3.060568266446202e-16
+ - -1.0513465585548982e-15
+ - -2.99439381744196e-16
+ - -2.0967994552453558e-16
+ - 1.9124415762225997e-16
+ - -2.7131524091739305e-17
+ - 3.8819586147113584e-16
+ - -3.0142461521432324e-16
+ - -2.10103875588469e-16
+ - -3.0175548745934445e-16
+ - -2.984467650091324e-16
+ - -1.2629393592459625e-15
+ - 1.193621623914019e-16
+ - -3.597408483993117e-16
+ - 1.1828682759508296e-16
+ - 7.4859845436049e-17
+ - 1.0869153248946782e-16
+ - -2.6823399313563305e-16
+ - -1.49719690872098e-17
+ - 1.873150497126331e-16
+ - 3.450377130111816e-16
+ - 3.5155176033503676e-17
+ - -4.623526033865148e-16
+ - 3.0522964603206716e-16
+ - 2.4174353401862234e-16
+ - 1.0163981776745326e-16
+ - -1.8793543517204786e-16
+ - -2.9302873199691005e-17
+ - -8.495144890919593e-17
+ - -1.3102540902839958e-16
+ - 4.2202754852455467e-16
+ - 1.5857052342641538e-16
+ - 7.037239061294883e-17
+ - 3.8513529320468964e-16
+ - 2.896786505160703e-16
+ - 5.860574639938201e-17
+ - 7.589382120174028e-17
+ - -7.79204137024952e-17
+ - 9.371956340225802e-17
+ - -3.226004388956808e-17
+ - -2.7991791928794457e-16
+ - -1.7519685373873124e-16
+ - -1.862810739469418e-16
+ - 6.093012392065601e-16
+ - 3.432799542095065e-17
+ - -4.0573209045726e-17
+ - 1.7155725904349792e-16
+ - -4.135903062765138e-17
+ - -1.43433118216695e-16
+ - 1.195017491197702e-17
+ - 2.772709413277749e-16
+ - -1.5435190230239494e-16
+ - -2.8632856903523053e-16
+ - 4.390261101125194e-17
+ - 1.1795595535006175e-16
+ - -1.5393831199611843e-16
+ - 8.453785860291942e-17
+ - -6.974786925047128e-16
+ - -1.35789969356705e-15
+- - 3.9665180307735666
+ - 3.102155446039654
+ - -2.6967089834892435
+ - 3.504872574398675
+ - -3.1782523939882688
+ - 1.7232793250742244
+ - 0.235919984410913
+ - -2.1214138269064167
+ - 2.2185714432502492
+ - 3.9089042548773048
+ - -3.413569400087804
+ - -2.012325025303813
+ - 1.5899918038080345
+ - 0.3894309747784545
+ - -2.3142727066522197
+ - 2.181511491175406
+ - 3.5753928464054656
+ - -2.8050751822292423
+ - -1.8458813169186274
+ - 1.3648787075277558
+ - 0.6345546969099368
+ - -2.426088007957503
+ - 3.458980801676767
+ - -3.2903587029519357
+ - 2.055611905091709
+ - -0.19640622490332071
+ - -1.0075367061334515
+ - -3.4892023190790713
+ - -1.76283585140398
+ - 3.4866999416793694
+ - -3.1922909048288908
+ - 1.8491947071494261
+ - -0.05094815288421911
+ - -0.7900936179965294
+ - -3.9360894996182103
+ - -1.8822137852507392
+ - 3.5178272615986432
+ - -3.12313731410072
+ - 1.718689461904136
+ - 0.35752519428258966
+ - -2.215354740557261
+ - 3.3580752624878367
+ - -6.319189563439836
+ - -6.256173614218941
+ - -2.2354090502013113
+ - -2.061140374021444
+ - 1.575342339075958
+ - 1.7519373501889273
+ - 0.286893974345529
+ - -2.161981072437439
+ - 3.335135407582775
+ - -3.4005881338474477
+ - 2.330208731576732
+ - -0.5036503002694711
+ - -0.8703912096658001
+ - -0.9898600873488682
+ - 4.389495318072342
+ - 2.26095026271851
+ - -3.3568454507239394
+ - 2.212256958253927
+ - -0.2572923617215425
+ - -1.0260037851569375
+ - -1.1821058792618535
+ - 4.045060195966567
+ - 2.2733987118012107
+ - -3.271374860379173
+ - 2.0136865570925346
+ - -0.10642877717864385
+ - -1.9340848118423362
+ - 3.2326464648732225
+ - -3.4858997746897322
+ - 1.7611255680624323
+ - 3.486776103359229
+ - 1.0118409812217852
+ - 0.19894492238560438
+ - -2.0588258762895078
+ - 3.3246497452430415
+ - -3.4373487819665827
+ - 1.7786952405125958
+ - 3.819460548430891
+ - 1.4867272958791127
+ - 0.43083828859733
+ - -2.254943973483705
+ - 3.373428070409222
+ - -3.3991430502233584
+ - 2.2370132427848546
+ - -0.3855323438399003
+ - -1.5934386693569609
+ - 3.248480834245909
+ - 3.8209743583107594
+ - 0.32019953883831836
+ - 0.09239907464807992
+ - -0.8276308098755172
+ - 2.5676007870101354
+ - -3.474708428139299
+ - 3.211805517473077
+ - -1.8918040247021497
+ - -0.042850433191121765
+ - 1.2153980571812002
+ - 1.6994883137112993
+ - -4.592478995312382
+ - -2.420071079419135
+ - 3.1462685042312204
+ - -1.7599782812301645
+ - -0.29035634973704094
+ - 1.331568941969331
+ - 1.7658683269398856
+ - -3.9852880742126944
+ - -2.2985849005383243
+ - 3.025877522996005
+ - -1.5409123878054338
+ - -0.44056834233487085
+ - 2.367539012178385
+ - -3.413713090547929
+ - 3.3554665774596004
+ - -1.5115315788568393
+ - -3.1275765124572055
+ - -1.6050732097146565
+ - -0.550495379913199
+ - 2.4776282838800925
+ - -3.469021555677578
+ - 3.269950994117847
+ - -1.4071263771789997
+ - -3.1919824787174567
+ - -2.0193686274711644
+ - -0.7244873119727248
+ - 2.6479843696876615
+ - -3.4946190231285232
+ - 3.2096197470508874
+ - -1.7875929204508971
+ - -0.1618534116299894
+ - 2.0614697615587163
+ - -5.271328311388519
+ - -5.122135399713684
+ - -0.23630092936329966
+ - -0.01442365044187427
+ - 4.848705017040287
+ - 5.004573740578809
+ - -1.8516758744616204
+ - -0.08829083165324933
+ - 1.9970063701016807
+ - -3.3031296233195593
+ - 3.446471406783985
+ - -2.473712557579976
+ - 0.566725972807688
+ - 1.736386915725534
+ - 3.6810675405904063
+ - 2.1122817372498286
+ - -2.0589190409456637
+ - 0.1582173328397924
+ - 1.8737745351039845
+ - -2.0432645396415587
+ - -3.239750511747954
+ - 3.2224968593185754
+ - 2.0357353557910765
+ - -1.8525295913332753
+ - -0.08956799355208406
+ - 1.9999550967470339
+ - -3.30688919624616
+ - 3.4497506775405102
+ - -2.475406897541135
+ - 0.5483070833764401
+ - 1.6015398298866423
+ - 3.13069751109673
+ - 1.513549655273061
+ - -3.357224009387613
+ - 3.388082373259477
+ - -2.292664515040016
+ - 0.4638709668409396
+ - 1.5473423264690587
+ - 3.7834234234975384
+ - 1.7558795291409215
+ - -3.425994273016247
+ - 3.341084624531901
+ - -2.175498152134105
+ - 0.19020800195644316
+ - 1.7632638069463298
+ - -3.1483423441681575
+ - 4.963483376909884
+ - 6.03115752413126
+ - -1.2516897029152413e-15
+ - -1.1636776857395993e-15
+ - -4.7273372007405525e-17
+ - 1.7296346608483806e-16
+ - -8.635765595053608e-17
+ - 2.653595405070113e-16
+ - 1.7958091098526228e-16
+ - -5.885390058314792e-17
+ - -3.3542173839025267e-16
+ - 1.376428539288238e-16
+ - -1.4227506535912076e-17
+ - -4.835904656138138e-16
+ - 1.907892082853558e-16
+ - -1.3979352352146168e-16
+ - -4.4698772350834227e-17
+ - 1.5029871730088513e-16
+ - -5.864710543000966e-17
+ - 2.3491929396505983e-17
+ - 1.8404768629304863e-16
+ - 3.30872245021211e-19
+ - -7.610061635487853e-17
+ - 7.314344566500147e-17
+ - 2.0005363114594972e-16
+ - 1.6692504761320096e-16
+ - 3.176373552203626e-17
+ - 1.9157502986728118e-16
+ - 4.326154603652334e-17
+ - -1.004610853945652e-16
+ - -1.0306670432410724e-16
+ - 9.181704799338606e-17
+ - 4.231856013821289e-16
+ - -1.7321162026860397e-16
+ - 5.108667463127499e-16
+ - 1.922367743573236e-16
+ - 2.7925617479790214e-16
+ - -7.676236084492096e-17
+ - -8.280077931655806e-17
+ - -4.3964649557193415e-17
+ - -1.404552680115041e-16
+ - -1.2904017555827232e-16
+ - -1.6618058506190324e-16
+ - 2.9431086194636725e-16
+ - -3.959713592291343e-16
+ - 1.7064736036968958e-16
+ - 4.1379710142965205e-16
+ - -2.407612570412156e-16
+ - 1.732322997839178e-16
+ - 5.560308077581452e-16
+ - -5.065654071274741e-16
+ - -1.7668060896249825e-17
+ - 4.3708223567301977e-16
+ - 1.0918784085699964e-16
+ - -2.1142736456855385e-16
+ - -7.841672207002701e-17
+ - -4.324500242427228e-16
+ - 1.2482155443425188e-16
+ - 1.4219234729786546e-16
+ - 1.3516131209116472e-16
+ - -1.3234889800848443e-16
+ - 1.9180250453573327e-16
+ - -4.3708223567301977e-16
+ - 9.975798187389513e-17
+ - -3.1399776052512926e-16
+ - 3.1101991031993836e-16
+ - 2.7710550520526427e-16
+ - 2.8351615495255024e-16
+ - 6.948317145445432e-17
+ - -2.9431086194636725e-16
+ - -1.8106983608785773e-16
+ - 4.863822001811802e-17
+ - 9.760731228125725e-18
+ - -1.2995007423208065e-16
+ - -1.550963648536927e-17
+ - 2.8554274745330515e-16
+ - 4.0399501117089867e-16
+ - 1.9194726114293005e-16
+ - -3.0522964603206716e-16
+ - -2.3144513539233714e-16
+ - 8.519960309296184e-17
+ - -7.829264497814406e-17
+ - -3.325266062463171e-17
+ - -3.507245797224837e-16
+ - 1.192794443301466e-16
+ - 2.9704055796779224e-16
+ - 1.3574033851995184e-16
+ - -1.0405932105917087e-16
+ - -2.3161057151484775e-18
+ - 6.005331247134981e-17
+ - -4.314574075076592e-16
+ - 4.966392397768378e-16
+ - -1.1183481881716934e-16
+ - -1.742042370036676e-16
+ - -3.1697561073032016e-16
+ - 1.0546552810051102e-16
+ - -2.974748277893826e-17
+ - 5.343586757092558e-17
+ - 3.214423860381065e-16
+ - -1.4062070413401469e-18
+ - -4.421280374095932e-17
+ - 1.2031342009583788e-16
+ - -2.376076309558572e-16
+ - 7.300696086393021e-16
+ - -8.288349737781336e-17
+ - 2.771468642358919e-16
+ - 3.624705444207367e-16
+ - 2.4997398111352496e-16
+ - -7.580076338282806e-17
+ - 1.4533563362556696e-16
+ - 8.449649957229176e-17
+ - 1.952146245625145e-17
+ - 1.7023377006341307e-16
+ - -2.605618929542037e-16
+ - -4.646273500710356e-16
+ - 1.519117194953635e-16
+ - -1.4889251025954498e-16
+ - 2.752857078576476e-16
+ - 2.5626055376892797e-16
+ - 1.3913177903141925e-16
+ - 1.0910512279574434e-16
+ - 6.2865726554030096e-18
+ - -3.335192229813807e-16
+ - -7.268849632809731e-17
+ - 9.835177483255498e-17
+ - 7.65555656917827e-17
+ - -1.6874484496081762e-16
+ - -5.115284908027923e-16
+ - -1.0542416906988336e-16
+ - -3.901810949412631e-16
+ - -3.4576149604716557e-17
+ - -2.7884258449162563e-16
+ - -2.1787937334646746e-16
+ - 7.743444509262029e-17
+ - 6.314696796229812e-16
+ - 2.5551609121763025e-16
+ - 2.39882377640378e-17
+ - -5.744769354180777e-16
+ - 2.0257653201423645e-16
+ - 2.1233726324236218e-16
+ - 3.964676675966661e-16
+ - -1.7031648812466837e-16
+ - 5.717472393966527e-16
+ - -4.629316298153019e-16
+ - 3.160863915718257e-17
+ - -1.952146245625145e-17
+ - 5.360130369343619e-16
+ - -9.75659532506296e-17
+ - 6.480960099352972e-17
+ - 1.3509927354522324e-16
+ - 1.6675961149069035e-16
+ - -8.677124625681259e-17
+ - -2.1341259803868112e-16
+ - -4.2384734587217133e-16
+ - -1.0405932105917087e-16
+ - 1.0257039595657542e-17
+ - -3.6759906421856545e-16
+ - -5.448018309427378e-17
+ - 3.987010552505593e-17
+ - -6.041261904992753e-17
+ - -1.8661194619196302e-16
+ - -1.2156970065115279e-16
+ - -1.7453510924868884e-17
+ - 2.388897609053144e-16
+ - -2.783462761240938e-17
+ - 9.789682549565081e-17
+ - 7.468200160435009e-16
+ - 5.344103744975404e-17
+ - 2.6092378447219567e-16
+ - -1.4707271291192832e-16
+ - 4.527986673115273e-16
+ - -2.5642598989143854e-18
+ - 7.167520007771985e-17
+ - 2.1980256827065325e-16
+ - 1.1291015361348828e-16
+ - 1.0085399618552789e-16
+ - 2.7669191489898773e-17
+ - 1.6957202557337067e-17
+ - 2.39882377640378e-18
+ - 1.0157777922151179e-16
+ - 7.543887186483611e-16
+ - 3.838118042246048e-16
+- - 6.075661722362486
+ - 4.78629201189395
+ - -3.997033198725474
+ - 4.8680970488444375
+ - -4.163343064317453
+ - 1.9665765003616729
+ - 0.7799096015287285
+ - -3.2775606946636078
+ - 3.1712663284089118
+ - 5.684260579686011
+ - -4.283121658795843
+ - -2.587841912574932
+ - 1.774412817757499
+ - 0.9888866341618734
+ - -3.5221643924067636
+ - 3.088400666326466
+ - 5.152974296170583
+ - -3.473305839001568
+ - -2.3565618673463398
+ - 1.4519877738053608
+ - 1.3206999290085613
+ - -3.662511340935647
+ - 4.840816425998593
+ - -4.350406464872795
+ - 2.4500285009386187
+ - 0.026762776641085482
+ - -0.8760386955348312
+ - -5.054649582559994
+ - -2.6107790753261044
+ - 4.859654493728198
+ - -4.186342009631024
+ - 2.1489334181774504
+ - 0.2292690765167742
+ - -0.5250189566936082
+ - -5.656321269359364
+ - -2.7576346561399285
+ - 4.870571896124584
+ - -4.073587850810008
+ - 1.9599383379676605
+ - 0.9454995385368362
+ - -3.397048572425574
+ - 4.751514978477477
+ - -8.63646423253997
+ - -8.571516661519793
+ - -3.411783294655092
+ - -3.190365753682152
+ - 1.3788533098016864
+ - 1.6183352197225331
+ - 0.8494140974023823
+ - -3.3292326128951917
+ - 4.728711809559516
+ - -4.544367773329059
+ - 2.8551692851052537
+ - -0.23892864460624944
+ - -1.4720623003200919
+ - -1.9129790356546328
+ - 6.05592479942555
+ - 3.1666566257942432
+ - -4.465607645834359
+ - 2.6804132084890906
+ - 0.10271438670235312
+ - -1.6745965318128209
+ - -2.1233619701093422
+ - 5.543550890069836
+ - 3.164778176659127
+ - -4.318183026214388
+ - 2.3886575196506032
+ - 0.31077674093255625
+ - -3.0373967900802987
+ - 4.621711686121641
+ - -4.71117681673408
+ - 2.2263260252157657
+ - 4.52082031894282
+ - 1.8958470554664537
+ - 0.5694471191009997
+ - -3.197605942189971
+ - 4.718237276304274
+ - -4.613084052368656
+ - 2.2288438643139146
+ - 4.906821326135794
+ - 2.6067594432421606
+ - 0.8998592616250332
+ - -3.4472176841535545
+ - 4.766280130852009
+ - -4.541727094369725
+ - 2.717028467127552
+ - -0.07486192188818508
+ - -2.59527280939718
+ - 4.972208295951565
+ - 5.890744937715014
+ - 1.2517679973893785
+ - 0.7899936905725705
+ - -1.5804793629945437
+ - 3.8384193781426736
+ - -4.851736607206516
+ - 4.21863165624562
+ - -2.2108317263473887
+ - -0.5159098117353967
+ - 1.9395018732239506
+ - 2.888695737377344
+ - -6.240083149679038
+ - -3.335061269160861
+ - 4.111057086404641
+ - -2.019550332141828
+ - -0.8541573173133092
+ - 2.070319699661929
+ - 2.895031001774849
+ - -5.380627857396272
+ - -3.153312363973686
+ - 3.9177666469846426
+ - -1.7038683103663241
+ - -1.0582958565300569
+ - 3.5891026925126748
+ - -4.8033453722348876
+ - 4.463235277126916
+ - -1.8507413504992474
+ - -3.961116924517681
+ - -2.6838488904838322
+ - -1.0444868905355753
+ - 3.7268371501035955
+ - -4.848011288519841
+ - 4.315750448842817
+ - -1.6940169169920458
+ - -3.9905108974167187
+ - -3.2772120337640107
+ - -1.2787210715240138
+ - 3.9373942388922485
+ - -4.8634765745427755
+ - 4.215007942582074
+ - -2.0595630845264514
+ - -0.6788072684643112
+ - 3.200956937262809
+ - -7.688390575376863
+ - -7.496164224761572
+ - -0.7721996121632088
+ - -0.46866878331939665
+ - 6.144092352455898
+ - 6.369199984358655
+ - -2.1521079530267384
+ - -0.5785554262825827
+ - 3.118288975671516
+ - -4.694921581593993
+ - 4.632228804897449
+ - -3.0690877830766903
+ - 0.48748463073861387
+ - 1.8604229693368064
+ - 5.021168315138075
+ - 2.7775720144411276
+ - -2.4548531558004965
+ - -0.23941874886030867
+ - 2.9596066825383827
+ - -2.94112574811244
+ - -4.760787954902543
+ - 4.106978342508254
+ - 2.656243009524289
+ - -2.1537927949654136
+ - -0.5798476479398388
+ - 3.1220672089246873
+ - -4.700102298428353
+ - 4.637027351401175
+ - -3.0718995349791425
+ - 0.4638089417337777
+ - 1.7177254677240337
+ - 4.6291139230966
+ - 2.3015352469772323
+ - -4.750766916282515
+ - 4.521330571088784
+ - -2.799390551317952
+ - 0.3291339532306014
+ - 1.5608785784506114
+ - 5.536439408706606
+ - 2.6262110416756723
+ - -4.814366840559955
+ - 4.437830182138462
+ - -2.626219478930401
+ - -0.1952740021579312
+ - 2.816465068517857
+ - -4.5290595208561015
+ - 6.978962434152041
+ - 8.507840111992428
+ - -1.940896589294424e-15
+ - -1.818473858636576e-15
+ - -1.179145963194341e-16
+ - 1.9984683599281146e-16
+ - -7.527343574232552e-17
+ - 3.843081125921366e-16
+ - 3.096137032785982e-16
+ - -5.583469134732937e-17
+ - -3.594926942155458e-16
+ - 1.7337705639111458e-16
+ - -3.29217883796105e-17
+ - -7.179514126654003e-16
+ - 2.2830184906463564e-16
+ - -2.324377521274008e-16
+ - -5.205034004489926e-17
+ - 2.2052635130663715e-16
+ - -6.935909436257137e-17
+ - 6.509911420792328e-17
+ - 2.6453235989445825e-16
+ - 2.2664748783952955e-17
+ - -1.0906376376511669e-16
+ - 1.1626023509432804e-16
+ - 2.817790756661889e-16
+ - 2.3723539968020834e-16
+ - -2.9778502051908992e-18
+ - 2.9712327602904754e-16
+ - 6.600901288173161e-17
+ - -1.3805644423510032e-16
+ - -1.5418646617988433e-16
+ - 9.132073962585424e-17
+ - 5.523912130629119e-16
+ - -2.415367388654841e-16
+ - 6.925156088293947e-16
+ - 2.385588886602932e-16
+ - 4.0085172484319716e-16
+ - -4.6322114302969544e-17
+ - -1.2126467780027386e-16
+ - -6.220398206398768e-17
+ - -1.4140652571594008e-16
+ - -2.262752565638807e-16
+ - -2.7379678275505216e-16
+ - 3.631322889107791e-16
+ - -5.55699935513124e-16
+ - 2.2743330942145496e-16
+ - 5.527014057926193e-16
+ - -3.382548319882468e-16
+ - 2.2959431877174974e-16
+ - 8.093135113218822e-16
+ - -7.242793443514309e-16
+ - -2.4484546131569616e-17
+ - 5.866364904226072e-16
+ - 1.3028094647710186e-16
+ - -2.840538223507097e-16
+ - -9.562207881112999e-17
+ - -4.681842267050137e-16
+ - 1.8123527221036834e-16
+ - 2.0183206946293873e-16
+ - 2.0249381395298115e-16
+ - -2.0580253640319326e-16
+ - 2.3882255248054446e-16
+ - -6.349438381957039e-16
+ - 1.5981129434524492e-16
+ - -4.678533544599925e-16
+ - 4.288104295474895e-16
+ - 3.7540558124953465e-16
+ - 3.846389848371578e-16
+ - 1.5964585822273432e-16
+ - -4.0647655300855775e-16
+ - -1.8992066864217513e-16
+ - 9.512577044359817e-17
+ - 2.225115847767644e-17
+ - -1.7552772598375245e-16
+ - -1.2738581433316625e-17
+ - 4.192978525031297e-16
+ - 5.631445610261012e-16
+ - 2.9327688618067596e-16
+ - -4.0581480851851533e-16
+ - -2.8818972541347484e-16
+ - 8.768114493062092e-17
+ - -4.301339185275743e-17
+ - -4.582580593543773e-17
+ - -4.698385879301197e-16
+ - 1.6014216659026613e-16
+ - 3.5800376911295033e-16
+ - 2.2234614865425384e-16
+ - -1.4459117107426924e-16
+ - 3.556876633978019e-17
+ - 1.1994118882018901e-16
+ - -3.9439971606528355e-16
+ - 6.005331247134981e-16
+ - -7.82512859475164e-17
+ - -3.2243500277317014e-16
+ - -4.669951545744687e-16
+ - 1.6795902337889224e-16
+ - -6.21419435180462e-18
+ - 1.0091603473146936e-16
+ - 4.532122576178039e-16
+ - 2.249931266144235e-17
+ - -8.172544452023912e-17
+ - 1.593977040389684e-16
+ - -3.402607449736879e-16
+ - 9.271040305494334e-16
+ - -1.3929721515392986e-16
+ - 4.3433186013628096e-16
+ - 5.654606667412497e-16
+ - 3.388131789017201e-16
+ - -9.93340518099617e-17
+ - 1.801599374140494e-16
+ - 5.616556359235058e-17
+ - 9.26442286059391e-18
+ - 2.2615117947199777e-16
+ - -3.4828439691545225e-16
+ - -6.291535739078328e-16
+ - 1.804080915978153e-16
+ - -1.8694281843698423e-16
+ - 3.7917959279430784e-16
+ - 3.90429249125029e-16
+ - 2.1936829844906291e-16
+ - 1.0157777922151179e-16
+ - 3.374896899216353e-17
+ - -4.666953016024182e-16
+ - -9.793818452627846e-17
+ - 2.2234614865425384e-16
+ - 1.2498699055676248e-16
+ - -2.0150119721791752e-16
+ - -6.614136177974008e-16
+ - -1.3077725484463368e-16
+ - -5.351858563218089e-16
+ - -2.7090165061111653e-18
+ - -3.600717206443329e-16
+ - -2.7942161092041275e-16
+ - 1.4244050148163137e-16
+ - 9.21810074629094e-16
+ - 3.295487560411262e-16
+ - 8.55718343686107e-17
+ - -8.180816258149443e-16
+ - 2.5584696346265146e-16
+ - 2.992739456216854e-16
+ - 5.699274420490361e-16
+ - -2.2557215304321065e-16
+ - 7.161729743484113e-16
+ - -6.301048316122687e-16
+ - 3.069874048337424e-17
+ - 3.4576149604716557e-17
+ - 6.958243312796068e-16
+ - -1.7858829425019865e-16
+ - 7.32468432415706e-17
+ - 1.696133846039983e-16
+ - 2.392206331503356e-16
+ - -1.0836066024444661e-16
+ - -2.685028268347128e-16
+ - -6.30311626765407e-16
+ - -1.6345088904047824e-16
+ - -3.474158572722716e-18
+ - -5.102050018227075e-16
+ - -1.0898104570386138e-16
+ - 5.955700410381799e-17
+ - -6.817519211085485e-17
+ - -2.0778776987332053e-16
+ - -1.619619639378828e-16
+ - -1.2655863372061322e-17
+ - 3.5502591890775943e-16
+ - -1.919059021123024e-17
+ - 1.4483932525803515e-16
+ - 8.93106907373504e-16
+ - 6.865082096307284e-17
+ - 3.6164336380818365e-16
+ - -2.1506695926378717e-16
+ - 6.11451908799198e-16
+ - -1.2531786280178368e-17
+ - 9.89308012613421e-17
+ - 2.4869185116406777e-16
+ - 1.6005944852901083e-16
+ - 1.4202691117535485e-16
+ - 4.078000419886426e-17
+ - 5.9557004103817985e-18
+ - 1.7412151894241233e-17
+ - 1.3499587596865412e-16
+ - 1.191470954321381e-15
+ - 5.806807900122254e-16
+- - -2.3310123308555206
+ - -1.7758584079669233
+ - 1.7466839947780686
+ - -2.762434370914786
+ - 2.808693917801243
+ - -1.9507598000176178
+ - 0.41177416281095125
+ - 1.1880630608973533
+ - -1.6133291697635541
+ - -2.7105324695989452
+ - 3.295427262149317
+ - 1.8569001582242364
+ - -1.8551782024079078
+ - 0.28678025120836786
+ - 1.3715704953657364
+ - -1.6271367884475552
+ - -2.5423956877655343
+ - 2.7711488549887484
+ - 1.726810224334319
+ - -1.6932496697975006
+ - 0.08231304244425562
+ - 1.4785569379392813
+ - -2.676776918602
+ - 2.853612863270658
+ - -2.180961039269568
+ - 0.5621478840502069
+ - 1.5019529047949813
+ - 2.4457791858653435
+ - 1.1578934849157672
+ - -2.7243777815156975
+ - 2.8157644096141423
+ - -2.0382015931784707
+ - 0.4489913996177324
+ - 1.3986546015934358
+ - 2.8213575281939667
+ - 1.277135814876287
+ - -2.793687404868671
+ - 2.7835450327487923
+ - -1.9475362436129984
+ - 0.31214708641486927
+ - 1.2765137394148054
+ - -2.5284787774007236
+ - 5.135637199349102
+ - 5.055531122051596
+ - 1.330398962492746
+ - 1.1659203407769607
+ - -2.3359904194963668
+ - -2.4820585208256216
+ - 0.3701596337234539
+ - 1.226143590263751
+ - -2.4981817781037847
+ - 2.884161723868046
+ - -2.363453840218689
+ - 1.0018650569399414
+ - 0.3221520982464839
+ - 0.04064607406296155
+ - -3.4899464618529086
+ - -1.7330299522121038
+ - 2.8753877875194696
+ - -2.2851813172887594
+ - 0.8092811483488228
+ - 0.4624519072655299
+ - 0.2682894457259298
+ - -3.266798973411056
+ - -1.7689106605245672
+ - 2.8467755884793795
+ - -2.1524696396746914
+ - 0.6883369223366521
+ - 1.0141894627233652
+ - -2.3698244962627366
+ - 2.8850305946969304
+ - -1.6775689844900712
+ - -3.167237973920927
+ - -0.12285626377083356
+ - 0.2440559599655199
+ - 1.130473520580944
+ - -2.4835414006196226
+ - 2.889742851223433
+ - -1.7211570943862786
+ - -3.5312662032801025
+ - -0.4244193994521168
+ - 0.07397683252717989
+ - 1.3140920366782725
+ - -2.549470662708991
+ - 2.8839009124571646
+ - -2.3023712076629357
+ - 0.9094283881261472
+ - 0.7053858111171906
+ - -1.9139579144840448
+ - -2.193633204667802
+ - 0.8499327329809234
+ - 0.8299339758558062
+ - 0.03959229493596785
+ - -1.658022867927008
+ - 2.663400620577362
+ - -2.863655674681882
+ - 2.0281159770581585
+ - -0.6091012278872894
+ - -0.6081188500572361
+ - -0.6093922164089736
+ - 3.7820720543748165
+ - 1.9292500084136277
+ - -2.8340517391363327
+ - 1.9370291734732878
+ - -0.4070342546669923
+ - -0.7406464657189733
+ - -0.7784051226871673
+ - 3.328971658247696
+ - 1.8519425820696986
+ - -2.776306762640118
+ - 1.780304368377002
+ - -0.28427341742859713
+ - -1.462527628564558
+ - 2.566109470842664
+ - -2.9145986461367883
+ - 1.5217064351222627
+ - 2.9690886994355927
+ - 0.6360149464072622
+ - 0.04904487125038932
+ - -1.5684538893061664
+ - 2.654121642458376
+ - -2.885949041731531
+ - 1.4559943179143406
+ - 3.1013867269269118
+ - 0.9356953976138939
+ - 0.19530290319225535
+ - -1.7381597811878884
+ - 2.70065071015873
+ - -2.862754423802268
+ - 1.9555147031979918
+ - -0.5127677479668064
+ - -1.172759397519256
+ - 3.6244882957028235
+ - 3.4873387273096363
+ - -0.413285276832264
+ - -0.5913363944535728
+ - -4.598711674947042
+ - -4.710064716368136
+ - 2.001027518748862
+ - -0.5729449618121185
+ - -1.1128522667568406
+ - 2.4180170282045403
+ - -2.927745423620509
+ - 2.4152208968071753
+ - -0.8520272853230821
+ - -2.1103130298447397
+ - -2.2393732783482987
+ - -0.9271412190327791
+ - 2.4845591444926396
+ - -0.7693595229643869
+ - -0.9985302134482871
+ - 1.4579601344182542
+ - 2.1788730212389145
+ - -3.024263635166491
+ - -1.826291292515702
+ - 2.0008313771893627
+ - -0.5713006414444316
+ - -1.1155958511914654
+ - 2.421037490540624
+ - -2.930001696017731
+ - 2.415934520156826
+ - -0.835026609490756
+ - -1.9440106542397553
+ - -2.066574144529333
+ - -0.9124051755762205
+ - 2.487562495342269
+ - -2.9218225275567833
+ - 2.2993355920711114
+ - -0.7926884693300204
+ - -2.012837102536592
+ - -2.576274096820157
+ - -1.1182395024609408
+ - 2.5839982524795855
+ - -2.9107909851309075
+ - 2.2209998903031947
+ - -0.7956451463701746
+ - -0.89887695565747
+ - 2.229947395626733
+ - -3.767509637886105
+ - -4.540212872901566
+ - 8.424007358240033e-16
+ - 1.084930091424551e-15
+ - -1.3317607862103744e-17
+ - 3.039888751132377e-17
+ - -1.1669450491591838e-16
+ - -8.503416697045123e-17
+ - -6.832511859688009e-17
+ - -3.658619849322041e-16
+ - -1.7453510924868884e-17
+ - -9.073137343941021e-17
+ - 1.9769616640017358e-17
+ - 4.561901078229948e-16
+ - -3.101513706767577e-16
+ - 2.5166970136925864e-17
+ - 6.369290716658313e-17
+ - -2.10103875588469e-17
+ - -5.4500862609587605e-17
+ - -4.963083675318166e-19
+ - -6.633988512675282e-17
+ - 1.462455322993753e-16
+ - 7.607993683956471e-17
+ - 6.203854594147707e-19
+ - -1.0827794218319131e-16
+ - -1.4475660719677982e-18
+ - 1.522012327097571e-17
+ - -2.646977960169688e-18
+ - -1.9356026333740845e-17
+ - 1.2535922183241134e-16
+ - 2.871971086784112e-16
+ - -5.09543257332665e-17
+ - -3.9787387463800626e-16
+ - 1.6130021944784037e-16
+ - -2.418676111105053e-16
+ - -2.2582030722697652e-17
+ - -2.504702894810568e-16
+ - 1.4889251025954498e-16
+ - 4.5164061445395305e-17
+ - 9.533256559673643e-17
+ - 1.4690727678941772e-16
+ - 1.124448645189272e-16
+ - 7.866487625379292e-17
+ - -1.7370792863613579e-16
+ - 3.717349672813306e-16
+ - -4.80591935893309e-17
+ - -2.1349531609993642e-16
+ - 2.5278639519620526e-16
+ - -1.2755125045567687e-16
+ - 1.9926780956402434e-16
+ - 1.7544500792249715e-16
+ - 9.516712947422582e-17
+ - -3.4708498502725036e-16
+ - -1.7064736036968958e-16
+ - 2.1945101651031822e-16
+ - 2.457553599895045e-16
+ - 7.576974410985732e-17
+ - -1.184729432329074e-16
+ - 2.3657365519016588e-17
+ - 6.038418471637101e-18
+ - 8.313165156157927e-17
+ - -5.244325083586195e-17
+ - 3.538678660501852e-16
+ - 5.078888961075589e-17
+ - 1.3400325923359048e-16
+ - -1.6436078771428657e-16
+ - -2.5013941723603557e-16
+ - -2.649666297160486e-16
+ - -5.4759356551010426e-17
+ - 8.979045549263114e-17
+ - 3.208633596093194e-16
+ - 2.826889743399972e-17
+ - -2.851705161776563e-17
+ - 7.370179257847477e-17
+ - -1.861156378244312e-19
+ - -2.5712909341210865e-16
+ - -2.8479828490200743e-16
+ - -6.112864726766875e-17
+ - 2.897613685773256e-16
+ - 1.9467695716435504e-16
+ - -1.290401755582723e-17
+ - 9.520848850485347e-17
+ - 3.0833157332914107e-17
+ - -1.7232240111010947e-16
+ - 3.7967590116183964e-17
+ - -2.4410099876439847e-16
+ - -6.030146665511572e-17
+ - 7.77549775799846e-18
+ - -9.694556779121483e-17
+ - 2.6449100086383057e-17
+ - -1.889280519071115e-16
+ - -7.361907451721946e-18
+ - 5.848166930749906e-16
+ - -4.2417821811719254e-16
+ - 6.86559908419013e-17
+ - -1.5546859612934153e-16
+ - 6.888346551035338e-17
+ - -5.542110104105285e-17
+ - 6.73738608924441e-17
+ - 2.713152409173931e-16
+ - -4.810882442608409e-16
+ - -3.108958332280554e-16
+ - 2.067124350770016e-16
+ - -8.463712027642578e-16
+ - 2.2143624998044548e-16
+ - -1.9968139987030086e-16
+ - -2.0621612670946977e-16
+ - -2.4641710447954694e-16
+ - 5.686866711302065e-17
+ - -1.852884572118782e-17
+ - 2.4286022784556893e-16
+ - -1.49719690872098e-17
+ - -1.195275985139125e-16
+ - -2.6552497662952185e-17
+ - 1.5376770599477936e-16
+ - -1.0417305839339691e-16
+ - 1.1034589371457388e-16
+ - -2.0811864211834174e-16
+ - -1.8644651006945241e-16
+ - -1.0472106554921329e-16
+ - 3.668029028789832e-17
+ - 3.4245277359695346e-17
+ - 2.216844041642114e-16
+ - -1.7602403435128426e-16
+ - 4.372476717955304e-16
+ - 1.0141234309900118e-16
+ - 1.768512149638373e-16
+ - 3.044024654195142e-17
+ - 3.1267427154504446e-17
+ - -1.06416785804947e-16
+ - 4.8803656140628625e-18
+ - 2.8940981681699056e-16
+ - 3.5287524931512156e-16
+ - 7.527343574232552e-17
+ - 2.63374307036884e-16
+ - -1.1828682759508296e-16
+ - 2.6014830264792717e-17
+ - 4.725682839515447e-16
+ - -1.4347447724732265e-16
+ - -5.030912485547514e-16
+ - -1.9265036466360012e-16
+ - 1.4698999485067302e-16
+ - -3.840599584083707e-16
+ - 3.30872245021211e-19
+ - 7.312276614968765e-17
+ - 9.074171319706712e-17
+ - -4.685978170112902e-16
+ - 6.762201507621001e-17
+ - -6.869734987252895e-17
+ - 7.763090048810163e-17
+ - -1.2515242667927309e-16
+ - 1.0232224177280951e-16
+ - 2.192855803878076e-16
+ - 3.540333021726958e-16
+ - 6.319659879905131e-17
+ - 9.363684534100272e-17
+ - 1.455217492633914e-16
+ - -3.0688400725717327e-17
+ - -4.0035541647566533e-17
+ - 8.271806125530276e-20
+ - -7.159248201646455e-17
+ - 4.21034931789491e-17
+ - -5.98051582875839e-17
+ - -5.3270431448414976e-17
+ - 4.681842267050136e-17
+ - 1.9107872149974936e-17
+ - -3.8579703769473206e-16
+ - -7.769293903404311e-17
+ - -2.317966871526722e-16
+ - 4.9804027693934944e-17
+ - -3.296314741023815e-16
+ - 2.280123358502421e-16
+ - -2.4401828070314313e-17
+ - -1.5315249041419305e-16
+ - 3.0398887511323763e-18
+ - 1.2440796412797536e-16
+ - -1.2192642229031628e-16
+ - -7.610061635487853e-17
+ - 1.9107872149974936e-17
+ - -1.508105353049023e-16
+ - -7.203088774111764e-16
+ - 4.3915018720440234e-16
+- - -0.5685390088957334
+ - -0.6015031794052976
+ - -0.2393812156083737
+ - 1.7456048758317217
+ - -2.7597369037303134
+ - 2.7832719809037942
+ - -1.9512030375622829
+ - 0.4111978081695928
+ - 0.7108951942077674
+ - 0.8137711745391875
+ - -3.796564224844154
+ - -1.9529553861769953
+ - 2.7488859745723278
+ - -1.8537330647560941
+ - 0.2094546391675508
+ - 0.8345092208427679
+ - 0.9542045358130807
+ - -3.329733077784494
+ - -1.8695389220002516
+ - 2.6787757131474765
+ - -1.6919056510762867
+ - 0.08441972397523198
+ - 1.5572617499926753
+ - -2.6741573853675717
+ - 2.851636279159957
+ - -1.4567357366476295
+ - -2.879893519974471
+ - -0.8138433285611972
+ - -0.15263755490865955
+ - 1.6612527727461917
+ - -2.750089059588205
+ - 2.8137535921673815
+ - -1.3855849251852677
+ - -2.992432440015832
+ - -1.1252899876205613
+ - -0.29870122122950493
+ - 1.8225281789035412
+ - -2.791844545188545
+ - 2.78212666582229
+ - -1.8748741085563159
+ - 0.3140105910981156
+ - 1.27595263675139
+ - -3.8211959826557114
+ - -3.687147169962572
+ - 0.2647536844204693
+ - 0.4460803605132893
+ - 4.461510210791322
+ - 4.57679631276946
+ - -1.9196042405267242
+ - 0.36954153821976626
+ - 1.2233261584174853
+ - -2.5444912479103627
+ - 2.882371063034494
+ - -2.3618147454223313
+ - 0.7541035639910408
+ - 1.940259161859953
+ - 2.396922587768881
+ - 1.0199471065068864
+ - -2.6031434090066936
+ - 2.8733551939698763
+ - -2.234369383983179
+ - 0.6140394102775879
+ - 1.5866928403949325
+ - 2.377333967670185
+ - 1.1130994108428807
+ - -2.6911015521629964
+ - 2.8447083357392735
+ - -2.1525494444040114
+ - 0.5963528111620481
+ - 1.011411239634301
+ - -2.368467536968005
+ - 1.8835585580776892
+ - 3.216936044396532
+ - -1.713174720567933
+ - -1.2283546373299892
+ - 0.4752477693437225
+ - 1.2003613236510864
+ - -2.482067795383027
+ - 1.9916097641377584
+ - 3.7294001740337337
+ - -1.7065130998847042
+ - -1.149245587892262
+ - 0.2722593501289839
+ - 1.313371740292935
+ - -2.5466135933261365
+ - 2.8748621939463552
+ - -2.302373514730083
+ - 0.9085785861226746
+ - -0.44925633708479684
+ - -0.7199874725317793
+ - -3.4965932531752393
+ - -2.952457584145991
+ - 1.5159695583898372
+ - 0.039851869084986107
+ - -1.655287716591343
+ - 2.6967188012219356
+ - -2.8626329459103714
+ - 2.026747417147521
+ - -0.5269870095623168
+ - -1.5377691983226067
+ - -2.942354041646895
+ - -1.338559819487938
+ - 2.739588367081569
+ - -2.832405998591495
+ - 1.877886250107301
+ - -0.33003628150332864
+ - -1.115135477554922
+ - -2.7093726376735585
+ - -1.336320059666857
+ - 2.7962137716289264
+ - -2.774645553396332
+ - 1.7809134882809041
+ - -0.19036791074303203
+ - -1.4599295275655133
+ - 2.5648396888973033
+ - -1.8888417027968993
+ - -3.311495016312662
+ - 1.2512291894367418
+ - 0.9911809840095293
+ - -0.06522344065545516
+ - -1.6326451906124897
+ - 2.6527668227168366
+ - -1.88931316078817
+ - -3.616168884467255
+ - 1.1237335451512402
+ - 0.869826005056708
+ - 0.1378366920899506
+ - -1.7374808793876901
+ - 2.6982654906588492
+ - -2.8396637501639863
+ - 1.9559163348167836
+ - -0.51225166982401
+ - -0.9931037036586841
+ - -0.8499480361626046
+ - 1.9006202121119558
+ - 2.0353456946137056
+ - 5.119553762189376
+ - 5.15792523140779
+ - -2.855716394045542
+ - 2.0016903626528757
+ - -0.5757573520570008
+ - -1.1994581842866407
+ - 2.417620748642282
+ - -2.92909476689547
+ - 1.6438143291317941
+ - 3.3738129541742476
+ - 0.3252378428529864
+ - -0.1307821653480499
+ - -1.311255060879331
+ - 2.485504490770057
+ - -0.6935278559871595
+ - -0.5620519822397277
+ - -0.4496651986769219
+ - 3.2957660149675974
+ - 1.8020983827456762
+ - -2.8540879355867657
+ - 1.9988524742208558
+ - -0.5728374495139436
+ - -1.2015067147829583
+ - 2.4181466442744504
+ - -2.927879276926105
+ - 1.6258807006404483
+ - 3.1037313851585746
+ - 0.30498143482817824
+ - -0.14068410679380433
+ - -1.313207545059918
+ - 2.5241500505856376
+ - -2.9196234673929826
+ - 1.6621920515039723
+ - 3.4461383624888167
+ - 0.6305820259545784
+ - 0.03538630052349793
+ - -1.493426941781179
+ - 2.582180334806913
+ - -2.9087701547360685
+ - 2.158073688027929
+ - -0.7970570474705774
+ - -0.8987461459441025
+ - 2.1159123506489133
+ - 2.445673743412678
+ - 5.553690632681028e-16
+ - 5.43126790202318e-16
+ - 2.220152764092326e-16
+ - 2.804142276554764e-17
+ - -1.3768421295945146e-16
+ - -1.3139764030404845e-16
+ - -2.599001484641613e-16
+ - 3.5039370747746247e-16
+ - -1.8379953210928272e-16
+ - 1.228363209641246e-16
+ - 5.98878763488392e-17
+ - -1.1175210075591404e-16
+ - 3.990319274955805e-16
+ - 1.2304311611726287e-16
+ - -2.077670903580067e-16
+ - -6.418921553411495e-17
+ - 9.098986738083304e-19
+ - -1.3822188035761092e-16
+ - 1.0778163381565949e-16
+ - -2.1076562007851143e-16
+ - 5.194694246833013e-17
+ - -1.981097567064501e-17
+ - 5.48213950969519e-17
+ - -1.2319821248211656e-16
+ - -9.59529510561512e-18
+ - -3.661928571772253e-16
+ - -4.557765175167182e-17
+ - -8.437242248040881e-17
+ - -2.0853223242461825e-16
+ - 1.9393249461305731e-16
+ - 3.933243812689646e-16
+ - -6.741521992307176e-17
+ - 9.578751493364059e-17
+ - 5.600012746983997e-17
+ - 4.450231695535288e-17
+ - -3.7041147830124574e-16
+ - -3.680953725860973e-17
+ - -9.156889380962015e-17
+ - -2.5743928614181604e-16
+ - 7.279189390466644e-17
+ - 2.0828407824085234e-16
+ - 2.2118809579667958e-16
+ - -1.919059021123024e-16
+ - 3.7223127564886245e-17
+ - 1.333001557129204e-16
+ - -1.1828682759508296e-16
+ - 1.1059404789833979e-16
+ - -3.068840072571732e-16
+ - 1.2407709188295415e-16
+ - -2.7379678275505213e-17
+ - 3.0709080241031147e-16
+ - 2.387243247828038e-16
+ - -2.115514416604368e-16
+ - -2.5857665948407645e-16
+ - -5.310499532590438e-16
+ - 2.3161057151484775e-18
+ - -4.301339185275743e-17
+ - -9.024540482953531e-17
+ - 7.692779696743156e-17
+ - 2.0514079191315084e-16
+ - -9.353344776443359e-17
+ - -1.5236666883226767e-16
+ - 1.0430747524293678e-16
+ - 8.073282778517549e-17
+ - 1.0025429024142694e-16
+ - 1.8245536361388405e-16
+ - -1.892589241521327e-16
+ - -6.112864726766875e-17
+ - -4.60020988034881e-16
+ - -1.282957130069746e-16
+ - 7.208879038399636e-17
+ - 2.2954261998346515e-17
+ - -1.8611563782443123e-18
+ - -2.210640187047966e-17
+ - 2.043136113005978e-16
+ - -1.5658528995628811e-16
+ - -2.9397998970134604e-16
+ - -2.4385284458063256e-16
+ - 1.8090439996534713e-16
+ - -3.1825774067977735e-16
+ - 3.060568266446202e-18
+ - 1.8967251445840922e-16
+ - -4.350970022028925e-17
+ - 3.337673771651466e-16
+ - -1.3962808739895107e-16
+ - 4.293067379150213e-17
+ - -7.004151836792762e-17
+ - -2.296253380447205e-16
+ - -5.136584808801164e-16
+ - 4.378266982243175e-16
+ - -7.98063854991161e-16
+ - 8.010417051963519e-16
+ - 1.2953648392580413e-16
+ - 7.283325293529409e-17
+ - -1.6386447934675476e-16
+ - -6.555406354482744e-17
+ - -2.2491040855316822e-16
+ - -3.1101991031993836e-16
+ - 5.280721030538529e-16
+ - 3.3748968992163524e-16
+ - -8.197359870400503e-17
+ - 9.732607087298924e-16
+ - -1.311908451509102e-16
+ - -1.6967542314993978e-16
+ - -2.8215130694183774e-16
+ - 1.8115255414911304e-16
+ - -7.479780689010753e-17
+ - 5.604148650046762e-17
+ - 1.8462671272183575e-16
+ - 9.905487835322505e-17
+ - 1.2688950596563445e-16
+ - 1.1166938269465874e-16
+ - -1.402898318889935e-16
+ - 2.0795320599583113e-16
+ - -1.375601358675685e-16
+ - -4.566036981292712e-17
+ - -4.79764755280756e-18
+ - -4.582580593543773e-17
+ - 1.7784383169890093e-16
+ - -1.33941220687649e-16
+ - -6.038418471637102e-17
+ - 2.301216464122523e-16
+ - -6.67203882085272e-16
+ - -1.6378176128549945e-16
+ - -2.8008335541045517e-16
+ - -4.764560328305439e-17
+ - -8.189088064274973e-17
+ - 9.58702329948959e-17
+ - -1.8082168190409183e-16
+ - -2.6767564622215976e-16
+ - -3.5006283523244126e-16
+ - -1.5120861597469343e-16
+ - -5.907723934853724e-16
+ - 2.397789800638089e-16
+ - -2.2027819712287125e-16
+ - -2.5890753172909766e-16
+ - 1.5224259174038472e-16
+ - 2.243313821243811e-16
+ - -4.135903062765138e-19
+ - -1.1497810514487085e-16
+ - 5.073098696787719e-16
+ - 4.4150765195017846e-17
+ - 2.69660879692287e-17
+ - -2.603964568316931e-16
+ - 3.6222239023697077e-16
+ - 2.9695783990653694e-17
+ - 1.0530009197800041e-16
+ - 1.1415092453231782e-16
+ - 8.470329472543002e-17
+ - -9.206520217715197e-17
+ - -2.0079809369724744e-16
+ - 6.648464173394959e-18
+ - 2.067951531382569e-17
+ - -1.0587911840678753e-17
+ - 6.667075737177403e-17
+ - 1.4806532964699195e-16
+ - 8.304893350032397e-17
+ - -5.179184610347644e-17
+ - -6.917297872474694e-17
+ - 4.143140893124977e-17
+ - 4.0035541647566533e-17
+ - -6.774609216809297e-17
+ - -1.0951871310202085e-16
+ - -7.866487625379292e-17
+ - 7.620401393144766e-16
+ - 5.124383894766006e-17
+ - 1.093946360101379e-16
+ - -1.3689839137752606e-17
+ - 1.768512149638373e-16
+ - -1.9153367083665353e-16
+ - 1.0728532544812768e-16
+ - 2.867008003108794e-16
+ - -2.6552497662952185e-17
+ - -1.8561932945689939e-16
+ - 5.774754651385824e-17
+ - 3.490702184973777e-17
+ - -1.4864435607577907e-16
+ - 1.0707853029498942e-16
+ - -7.907846656006943e-17
+ - -8.046812998915852e-16
+- - 2.113196591923484
+ - 1.8012646763771223
+ - -0.8772586963288154
+ - -0.2952961442745392
+ - 1.3186858144287492
+ - -1.9853724206209913
+ - 1.9083102238812408
+ - -1.2650498362956488
+ - 0.20746303927800233
+ - 0.7810877327550978
+ - 2.2406635831348187
+ - 1.050808829220846
+ - -2.0042503393959796
+ - 1.8784035024832226
+ - -1.1490701421574778
+ - 0.07567447228243221
+ - 0.5156781547232459
+ - 2.0400837894057298
+ - 1.0378794825742075
+ - -2.028683004683207
+ - 1.8209714516834563
+ - -1.0765107872762705
+ - -0.1350836247414883
+ - 1.193075557263802
+ - -1.9181791184214292
+ - 1.3017533176110823
+ - 2.327663444991182
+ - -0.6144259843071016
+ - -0.5552941482903998
+ - -0.22110223042572077
+ - 1.3053942556001397
+ - -1.9627788565182023
+ - 1.2921164350863863
+ - 2.520598559071481
+ - -0.4968643036672048
+ - -0.4643489555613597
+ - -0.3629608199326345
+ - 1.3709334501034893
+ - -1.9861161440283155
+ - 1.8843454024523598
+ - -1.2103454649881353
+ - 0.09129686285054685
+ - 1.1104085978127816
+ - 1.0084668238705516
+ - -1.1382518954198926
+ - -1.2408080735932954
+ - -3.6003658488174564
+ - -3.6394131815423614
+ - 1.898678079389522
+ - -1.2417597581686366
+ - 0.13203408223453314
+ - 1.0265356587185877
+ - -1.8383148278710566
+ - 2.003660150725807
+ - -1.0597976810017362
+ - -2.230709384456381
+ - -0.5275663159567029
+ - -0.06842064252759107
+ - 1.1009293939961322
+ - -1.8751336856434833
+ - 1.9822181531554173
+ - -0.988912682001385
+ - -1.9721392685901857
+ - -0.6457589098626169
+ - -0.15170937006355756
+ - 1.2167090195198993
+ - -1.9283129339043592
+ - 1.9631378955464684
+ - -1.3660486494006967
+ - 0.2920097769732748
+ - 0.8259610961081486
+ - -1.0848144950785248
+ - -1.6626283061801332
+ - 2.024312801366453
+ - 1.2424002831585437
+ - -1.2993986797526358
+ - 0.15104156587609818
+ - 0.9543011831653688
+ - -1.1801740045164828
+ - -2.015923861840081
+ - 2.2065199642446784
+ - 1.259529675614745
+ - -1.186468307164447
+ - 0.061900643257150806
+ - 1.0291345184943061
+ - -1.868146447049272
+ - 1.9941735616904734
+ - -1.5265210879873652
+ - 1.7151482239492264
+ - 2.198839103265552
+ - 3.4388421449657764
+ - 2.833044904698433
+ - -1.7977644313008179
+ - 0.9481820873835322
+ - 0.15490145350174858
+ - -1.312425789736537
+ - 1.9268361089076027
+ - -1.9699816748846914
+ - 0.9816418539579553
+ - 2.1311539050388992
+ - 0.9635352141023183
+ - 0.30699693751428797
+ - -1.377575467295615
+ - 1.9520029611288472
+ - -1.925778331316852
+ - 0.8412291730071018
+ - 1.7572287484408557
+ - 0.9839294159463409
+ - 0.353104634107488
+ - -1.4804651239430469
+ - 1.9827849905342356
+ - -1.8950458785310123
+ - 1.0868599995202939
+ - -0.005958316594579866
+ - -1.1304701922904061
+ - 1.188888327029426
+ - 1.8947460348438576
+ - -1.8223160193139174
+ - -1.1573341937163315
+ - 1.0135058539190327
+ - 0.13713508468589405
+ - -1.24623024202088
+ - 1.2307907100117925
+ - 2.157761362969526
+ - -1.8660386184913016
+ - -1.1114742025033517
+ - 0.887346938045239
+ - 0.22479819272523188
+ - -1.314747690594464
+ - 1.9464863887313721
+ - -1.950190916951012
+ - 1.2700354233475522
+ - -1.1513078975456397
+ - -1.2276129645988354
+ - -1.8819916691339986
+ - -1.9184252211983712
+ - -2.9239150610244162
+ - -2.900270351832022
+ - 1.9365775327186503
+ - -1.96434611585191
+ - 1.3047693929930448
+ - -0.20871201179783017
+ - -0.9549509716434356
+ - 1.758796632579442
+ - -1.3319197120208233
+ - -2.506116926308319
+ - 1.0397988693308973
+ - 0.7321617373146633
+ - -0.12133266733798903
+ - -1.0321711013929389
+ - 1.8250776432203486
+ - -0.27885434670397774
+ - -0.8603277693446381
+ - -1.8422175233529794
+ - -0.8986472063050138
+ - 1.9343942852551708
+ - -1.9621905090273446
+ - 1.30318283790039
+ - -0.20824445814026823
+ - -0.9541812306745283
+ - 1.756997050437578
+ - -1.3222648829865715
+ - -2.303873690432111
+ - 0.9540442911790278
+ - 0.7341356633411067
+ - -0.12096088121718396
+ - -1.0775982580315766
+ - 1.8231980297999009
+ - -1.3901759413452943
+ - -2.6497026705597033
+ - 0.9047824253661207
+ - 0.6635736435444356
+ - 0.02096679061441099
+ - -1.1526915846771637
+ - 1.8579667694282043
+ - -2.001865627634645
+ - 1.421534447211925
+ - -0.4320525944617278
+ - -0.03355782731327119
+ - 0.07798164234161986
+ - -4.511443060864213e-16
+ - -4.695077156850985e-16
+ - -1.9256764660234482e-16
+ - -1.6295458067294645e-17
+ - -3.910496345844438e-17
+ - 1.0844337830570192e-16
+ - 2.284362659141755e-16
+ - -1.5815693312013887e-16
+ - 1.9339482721489785e-16
+ - -5.012714512071347e-17
+ - -6.514047323855093e-17
+ - -1.549722877618097e-16
+ - -2.367390913126765e-16
+ - -1.3491315790739881e-16
+ - 4.7232012976777874e-17
+ - 3.1011001164613003e-16
+ - 9.827939652895659e-18
+ - 1.1547441351240266e-16
+ - 8.08982639076861e-17
+ - 9.024540482953531e-17
+ - 2.2664748783952955e-17
+ - 1.0554824616176632e-16
+ - 2.3057659574915643e-17
+ - 1.0381116687540496e-16
+ - -1.2407709188295415e-16
+ - 1.862810739469418e-16
+ - 3.9208361035013506e-17
+ - 5.223645568272369e-17
+ - 6.530590936106153e-17
+ - -1.8255876119045318e-16
+ - -2.657731308132878e-16
+ - 1.1249656330721175e-17
+ - -2.072087434445334e-16
+ - -3.259091613458929e-17
+ - -4.020097777007714e-17
+ - 3.5850007748048214e-16
+ - 4.350970022028925e-17
+ - 4.197941608706615e-17
+ - 1.990816939261999e-16
+ - -2.0401375832854734e-16
+ - -7.543887186483611e-17
+ - -1.9083056731598346e-16
+ - 2.4815418376590827e-17
+ - 1.4186147505284425e-17
+ - -1.0877425055072312e-17
+ - 1.9161638889790884e-16
+ - -4.4585035016608186e-17
+ - 6.329586047255767e-16
+ - -2.3853820914497936e-16
+ - 7.072394237328387e-17
+ - -1.6657349585286592e-16
+ - -1.5273890010791654e-16
+ - 6.27830084927748e-17
+ - 2.391275753314234e-16
+ - 2.427775097843136e-16
+ - -3.7223127564886245e-17
+ - 1.1563984963491327e-16
+ - 8.271806125530276e-17
+ - -2.6469779601696883e-17
+ - -3.184645358329156e-18
+ - -4.3344264097778644e-17
+ - 7.254373972090053e-17
+ - -1.3906974048547778e-16
+ - 3.9890785040369753e-17
+ - -7.618333441613384e-17
+ - -5.98051582875839e-17
+ - 2.0034314436034328e-16
+ - -9.239607442217318e-17
+ - 3.388958969629754e-16
+ - 1.163015941249557e-16
+ - 8.430521405563888e-17
+ - 4.768696231368204e-17
+ - 2.6433590449897688e-17
+ - -7.771361854935694e-17
+ - 1.5426918424113964e-16
+ - 9.413315370853454e-17
+ - 1.316044354571867e-16
+ - 1.0372844881414966e-16
+ - -3.341809674714232e-17
+ - 1.9775820494611507e-16
+ - 3.1432863277015048e-18
+ - -2.238350737568493e-16
+ - 9.735915809749135e-17
+ - -1.8645684982710933e-16
+ - 1.0072991909364493e-16
+ - -2.3574647457761286e-17
+ - 4.623939624171424e-17
+ - 1.3325879668229276e-16
+ - 7.279189390466644e-17
+ - 1.3582305658120714e-16
+ - 6.227015651299191e-16
+ - -7.136914325107522e-16
+ - -1.9719985803264177e-16
+ - 6.654668027989108e-17
+ - 2.185033130975768e-16
+ - 4.3850912222967373e-17
+ - 2.429015868761966e-16
+ - 2.957997870489627e-16
+ - -4.850587112010954e-16
+ - -1.800772193527941e-16
+ - 7.320548421094295e-18
+ - -5.743942173568224e-16
+ - 3.9208361035013506e-17
+ - 4.168990287267259e-17
+ - 5.46559589744413e-17
+ - -1.0141234309900118e-16
+ - 3.0605682664462024e-17
+ - -2.808278179617529e-17
+ - 1.696961026652536e-16
+ - -6.361535898415628e-17
+ - -7.312276614968765e-17
+ - -1.1530897738989206e-16
+ - -1.111523948118131e-16
+ - -3.308722450212111e-17
+ - 8.751570880811032e-17
+ - -7.701051502868686e-17
+ - 7.494256349730431e-17
+ - 5.761312966431838e-17
+ - -1.1208297300093523e-17
+ - 3.2756352257099896e-17
+ - 4.8803656140628625e-18
+ - -1.5236666883226767e-16
+ - 6.774609216809296e-16
+ - 1.7354249251362518e-16
+ - 1.4392942658422682e-16
+ - -1.8032537353656003e-17
+ - 2.5146290621612038e-17
+ - -3.304586547149345e-16
+ - 7.312276614968765e-17
+ - 1.820831323382352e-16
+ - 2.2499312661442353e-16
+ - 2.2813641294212503e-16
+ - 6.53803556161913e-16
+ - 5.1450634100798315e-17
+ - 2.0580253640319326e-16
+ - 6.485096002415737e-17
+ - -1.1055268886771214e-16
+ - -4.73478182625353e-16
+ - 7.676236084492096e-17
+ - 5.5007510734776334e-17
+ - -2.524968819818117e-16
+ - -2.686682629572234e-16
+ - 1.0203272855841595e-16
+ - 2.747066814288605e-16
+ - -4.172299009717471e-16
+ - -1.662426236078447e-16
+ - -6.849055471939069e-17
+ - 1.4579058296247113e-16
+ - 1.0678901708059586e-16
+ - 5.78716236057412e-17
+ - 1.213887548921568e-16
+ - -3.168101746078096e-17
+ - -3.89602068512476e-17
+ - 6.8573272780646e-17
+ - 9.697658706418557e-17
+ - -1.102838551686324e-16
+ - 3.3583532869652924e-17
+ - -2.1754850110144625e-17
+ - 2.646977960169688e-18
+ - 2.4794738861277e-17
+ - -5.895212828088859e-17
+ - 2.957170689877074e-17
+ - 5.724089838866952e-17
+ - 9.132073962585424e-17
+ - -1.9140959374477058e-16
+ - -3.5072457972248373e-17
+ - -5.047869688104851e-17
+ - -6.799424635185887e-17
+ - -7.328820227219825e-17
+ - 1.4039322946556262e-16
+ - 6.596765385110396e-17
+ - -2.8674215934150704e-16
+ - 5.885390058314792e-17
+ - 1.435158362779503e-16
+ - -7.610061635487853e-17
+ - -1.1307558973599888e-16
+ - 2.5270367713494992e-17
+ - -7.299868905780469e-17
+ - 2.5543337315637495e-16
+ - 6.435465165662554e-16
+- - -7.70627745586519
+ - -6.353841192734408
+ - 3.9772378141246487
+ - -2.08243722923804
+ - -0.4833181663684613
+ - 3.0091306254910464
+ - -4.411692105694508
+ - 4.387124235075463
+ - -2.1661811520109784
+ - -4.730944562572682
+ - -2.299382447631342
+ - -0.7612837678159846
+ - 3.1547560528193737
+ - -4.462835642543424
+ - 4.281944727115864
+ - -1.8476482105758596
+ - -3.8899505142300606
+ - -2.326991395076943
+ - -0.8611040979622526
+ - 3.380631679683171
+ - -4.5267667594933405
+ - 4.207078740143678
+ - -2.399523683238728
+ - -0.12059724465888673
+ - 2.6051984537543076
+ - -2.7128241157673734
+ - -4.344965594688933
+ - 4.040775810811592
+ - 2.580285515564635
+ - -2.2302517166525466
+ - -0.44193063007706224
+ - 2.8637748177731237
+ - -2.803707580481479
+ - -4.936999950983611
+ - 4.126498110850952
+ - 2.4721772459806854
+ - -1.9434822298685086
+ - -0.6407904186496011
+ - 3.014310356468398
+ - -4.452653774555825
+ - 4.33911194089424
+ - -2.819856041461594
+ - 2.4265733702359973
+ - 2.602305053272666
+ - 4.227101360920218
+ - 4.318451933667858
+ - 6.707437873117379
+ - 6.65731713843263
+ - -4.429745925787071
+ - 4.36708686459155
+ - -2.8918118065638687
+ - 0.33081294803618716
+ - 2.2178251695439912
+ - -4.051513263534066
+ - 3.002572907860481
+ - 5.6708831717142285
+ - -2.2219100581310873
+ - -1.5918182093617865
+ - 0.13479278128271246
+ - 2.391107198069352
+ - -4.192826706080371
+ - 2.9665320215914126
+ - 5.250137723508897
+ - -1.6964306933447666
+ - -1.418159400818148
+ - -0.18718214268282732
+ - 2.659753601365317
+ - -4.26848818987328
+ - 4.4649859567924715
+ - -3.1648615970804035
+ - 0.8378765388553759
+ - 1.0296800394771806
+ - 0.9711496542446959
+ - -5.23374493965694
+ - -2.8869038188479696
+ - 4.415848666703791
+ - -2.924212641639829
+ - 0.5194511187225052
+ - 1.2259593603399261
+ - 1.492100552743321
+ - -6.00063188493448
+ - -3.103306456128367
+ - 4.317128362296109
+ - -2.7670316585945547
+ - 0.32398678481518334
+ - 2.3553378397689397
+ - -4.1217697901387
+ - 4.555569793414101
+ - -6.277142266593674
+ - -7.782575968275365
+ - -7.813007009875094
+ - -6.304573503994436
+ - 4.562218614928514
+ - -4.096113484978364
+ - 2.3057432930104924
+ - 0.3814063231429373
+ - -2.81278351909302
+ - 4.336341686603312
+ - -3.0964903447886796
+ - -5.998776574825592
+ - 1.419053775859958
+ - 1.1894955022461644
+ - 0.5766301126774959
+ - -2.9683898909347914
+ - 4.4312040536703865
+ - -2.8770631891742826
+ - -5.2271843768326445
+ - 0.9062606098342354
+ - 0.9944224140123763
+ - 0.8944258737399424
+ - -3.2063285247347584
+ - 4.477958371878648
+ - -4.246989124274723
+ - 2.6126153081417494
+ - -0.12963526310958495
+ - -1.4510344125706558
+ - -1.7587210695520967
+ - 5.24645314790509
+ - 2.970661417297315
+ - -4.16905393708958
+ - 2.3417726542899793
+ - 0.1923348274997856
+ - -1.6236807651198224
+ - -2.2877608766881825
+ - 5.661916874573451
+ - 3.003838223407299
+ - -4.024117485016289
+ - 2.1672435793670317
+ - 0.38820957194218747
+ - -2.9363152384062876
+ - 4.3844536178420315
+ - -4.414309489149283
+ - 6.596170758961412
+ - 6.649097300647624
+ - 4.334114515869089
+ - 4.246168365028258
+ - 2.6967591050347988
+ - 2.5228496230948916
+ - -2.864824200134855
+ - 4.358912105915118
+ - -4.440896851642116
+ - 2.973553884855993
+ - -0.5859959240950906
+ - -1.994608662901873
+ - 2.4938277518775425
+ - 4.17593851516584
+ - -4.904100128358501
+ - -2.791690396884286
+ - 2.8214441122430256
+ - -0.386776245894652
+ - -2.2797165261868164
+ - 2.5995083585476446
+ - 4.389560688843859
+ - 1.5699455246663225
+ - 0.4084351596736064
+ - -2.8596414216078507
+ - 4.3551181498945875
+ - -4.439673213466727
+ - 2.9754445202619446
+ - -0.5902514749377895
+ - -1.9893186990629224
+ - 2.4867593276200406
+ - 3.834842455664226
+ - -4.5117442579174645
+ - -2.7816687644480225
+ - 2.8235608702186323
+ - -0.26981105222269114
+ - -2.274425580341125
+ - 2.701253359493667
+ - 4.637496997956703
+ - -4.9063870734132955
+ - -2.8131705723570892
+ - 2.5629110728734803
+ - -0.06974266719675427
+ - -2.4425819284917685
+ - 4.226879576038496
+ - -4.517740037458414
+ - 3.3457062541362497
+ - -3.7512046965595345
+ - -4.819409417728136
+ - 3.2131003714009803e-15
+ - 2.3127969926982654e-15
+ - 5.591740940858467e-16
+ - 2.3822801641527194e-17
+ - 1.1530897738989206e-16
+ - -7.423945997663422e-16
+ - -4.681842267050137e-16
+ - 2.5584696346265146e-16
+ - -4.746362354829273e-16
+ - -3.474158572722716e-18
+ - 3.5320612156014277e-16
+ - 8.718483656308911e-16
+ - 3.4435528900582537e-16
+ - 1.9554549680753572e-16
+ - -1.4541835168682227e-16
+ - -1.0202445675229043e-15
+ - 9.686284972995953e-17
+ - -8.321436962283457e-17
+ - -2.564259898914386e-16
+ - -1.0389388493666026e-16
+ - 1.470520333966145e-16
+ - -8.507552600107888e-17
+ - -2.071260253832781e-16
+ - -2.564259898914386e-16
+ - 1.4177875699158894e-16
+ - -8.514997225620866e-16
+ - -1.649398141430737e-16
+ - -4.971355481443696e-17
+ - 2.9414542582385664e-16
+ - 3.572593065616526e-16
+ - 3.2930060185736027e-16
+ - 1.466591226056518e-16
+ - -8.74826215836082e-16
+ - 8.71848365630891e-17
+ - -1.6725591985822217e-16
+ - -1.0309979154860937e-15
+ - 2.1448793283500005e-16
+ - 9.551868123456086e-17
+ - -2.6807889677077936e-16
+ - 5.43002713110435e-16
+ - 6.535554019781471e-16
+ - 6.394106135034904e-17
+ - 4.0052085259817595e-16
+ - -1.0397660299791557e-16
+ - -5.121902352928347e-16
+ - -2.689164171409893e-16
+ - -2.3285134243367726e-17
+ - -1.841634915788061e-15
+ - 8.837597664516547e-16
+ - -1.6336817097922294e-16
+ - -7.610061635487853e-17
+ - 8.156000839772852e-17
+ - 1.7337705639111458e-16
+ - -5.148372132530044e-16
+ - -1.6047303883528734e-16
+ - -7.812720885563345e-17
+ - -5.090469489651332e-16
+ - -2.6800651846718094e-17
+ - 1.7949819292400698e-16
+ - -2.6519410438450067e-16
+ - 8.175853174474125e-16
+ - -2.6767564622215976e-16
+ - 6.721669657605902e-16
+ - -4.1003342964253577e-16
+ - -3.0208635970436566e-16
+ - -1.048865016717239e-16
+ - -9.16350682586244e-16
+ - 4.680187905825031e-16
+ - -6.154223757394525e-16
+ - -2.875279809234324e-16
+ - 3.2425480012078685e-17
+ - 1.0257039595657542e-16
+ - -3.391440511467413e-18
+ - -1.4031051140430732e-16
+ - -9.333906032048364e-16
+ - -3.542814563564617e-16
+ - 7.692779696743157e-18
+ - 0.0
+ - -3.044024654195142e-17
+ - -3.393094872692519e-16
+ - 1.1547441351240266e-16
+ - 7.335437672120248e-16
+ - -2.835575139831779e-16
+ - 1.5828101021202182e-16
+ - -5.295610281564483e-16
+ - 2.7007446999856354e-16
+ - 2.1506695926378716e-17
+ - -2.4683069478582346e-16
+ - 4.539567201691016e-16
+ - -7.219632386362825e-16
+ - -7.706014586544005e-16
+ - 4.642137597647591e-16
+ - 5.518949046953801e-16
+ - -2.1639044824387202e-16
+ - -4.235991916884054e-16
+ - -3.4112928461686856e-16
+ - -3.8956070948184833e-16
+ - -5.932539353230314e-16
+ - 1.0448945497769846e-15
+ - 3.0010112623423844e-16
+ - 4.837352222210106e-16
+ - 4.377439801630622e-16
+ - 8.007108329513307e-17
+ - -3.755399980990745e-16
+ - -9.358721450424955e-16
+ - -6.706780406579947e-16
+ - 2.2416594600187047e-17
+ - -5.550381910230815e-17
+ - -5.298091823402142e-16
+ - 1.194448804526572e-16
+ - -1.345822856623776e-16
+ - 2.0050858048285388e-16
+ - 6.247695166613017e-16
+ - -3.1184709093249143e-17
+ - -8.503416697045123e-17
+ - -4.731473103803318e-16
+ - -5.206274775408756e-16
+ - -2.1854111783650989e-16
+ - -2.036518668105554e-16
+ - 4.3675136342799855e-17
+ - 3.742578681496173e-16
+ - 1.7916732067898577e-16
+ - -1.4009130854198075e-15
+ - -3.604853109506094e-16
+ - -2.425293556005477e-16
+ - 3.409224894637303e-16
+ - -4.135903062765138e-17
+ - 1.032155968343668e-15
+ - -1.1299287167474358e-16
+ - 7.279189390466644e-17
+ - -4.748016716054378e-17
+ - -6.063233890013692e-16
+ - -1.3916486625592136e-15
+ - -4.0291967637457973e-16
+ - -6.012775872647958e-16
+ - 8.566282423599154e-16
+ - 8.950094227823758e-17
+ - 9.400080481052606e-16
+ - -7.937625158058853e-16
+ - -1.555099551599692e-17
+ - 3.7967590116183965e-16
+ - 9.505959599459394e-16
+ - -2.4683069478582346e-16
+ - -5.216200942759393e-16
+ - -1.5586150692030421e-16
+ - 5.633099971486118e-16
+ - 7.394994676224067e-17
+ - -4.875402530387545e-16
+ - -1.8582612461003764e-16
+ - -9.264422860593909e-17
+ - -9.062797586284108e-17
+ - 5.079716141688143e-16
+ - 2.355810384551023e-16
+ - -2.624644083630757e-16
+ - -1.98357910890216e-16
+ - 3.103168067992683e-16
+ - -2.421157652942712e-16
+ - -3.844735487146472e-16
+ - 1.4872707413703438e-16
+ - 2.187892720202758e-17
+ - 2.8818972541347484e-16
+ - -4.348488480191266e-16
+ - 5.128519797828771e-18
+ - -2.870316725559006e-16
+ - -2.987776372541536e-16
+ - 1.3234889800848441e-17
+ - -2.488159282559507e-16
+ - 1.8830766644769673e-16
+ - -2.9497260643640967e-16
+ - -3.1920899838421333e-16
+ - -1.8743912680451605e-16
+ - 4.880365614062863e-16
+ - -1.0476242457984094e-16
+ - -1.563371357725222e-16
+ - 1.4194419311409955e-16
+ - 1.5244938689352298e-16
+ - -8.40415502353876e-17
+ - -1.4186147505284425e-17
+ - -2.8529045736647644e-15
+ - -1.0399314661016664e-15
+- - -5.172237931316787
+ - -4.283241770542648
+ - 2.597138475150872
+ - -1.1269877009931992
+ - -0.7056651884357549
+ - 2.3836886235712362
+ - -3.187400973111572
+ - 2.9597208680542733
+ - -1.3310981121034053
+ - -3.0113043415054586
+ - -2.054738930849416
+ - -0.778429279819958
+ - 2.4749384769096405
+ - -3.2075742962216345
+ - 2.8616453782742117
+ - -1.1031904438772748
+ - -2.435799897872603
+ - -2.007151365146962
+ - -0.8326245530437274
+ - 2.6144286554158342
+ - -3.2268686444585195
+ - 2.7946722215259374
+ - -1.3630727677509735
+ - -0.45391812359941835
+ - 2.1264219859528066
+ - -1.9979733754827051
+ - -3.2771333464784713
+ - 2.55525561747556
+ - 1.6834486838258462
+ - -1.2366848172165743
+ - -0.677078729334894
+ - 2.291812407538701
+ - -2.0479938290040662
+ - -3.6842055884034517
+ - 2.5679793169191005
+ - 1.5914171198692073
+ - -1.0243286037667445
+ - -0.8142424412673845
+ - 2.3869499139491253
+ - -3.2037054756821775
+ - 2.914294415693331
+ - -1.6804840687489826
+ - 1.0645628890102445
+ - 1.1995843775452457
+ - 2.830472902731061
+ - 2.9164045008962045
+ - 5.061239623265216
+ - 5.044369399977312
+ - -3.1948784045729175
+ - 2.940612104425261
+ - -1.7354511358225897
+ - -0.13735736399315843
+ - 1.8747946030028655
+ - -3.0073128191194995
+ - 2.090347185898423
+ - 4.020754957451668
+ - -1.130167942140212
+ - -0.9079966094285179
+ - -0.2752792540721064
+ - 1.987896304026447
+ - -3.082840720421481
+ - 2.0467808755246337
+ - 3.692878379753391
+ - -0.7857090208283161
+ - -0.7801120059469956
+ - -0.500308875232319
+ - 2.161498219262825
+ - -3.1211694840187265
+ - 3.037278531206494
+ - -1.9457531150293512
+ - 0.22251539118178207
+ - 0.9459914984328526
+ - 1.0953457091270695
+ - -3.6998801730040305
+ - -2.0807941389559343
+ - 2.9876057964103055
+ - -1.7602223200591958
+ - -0.004036110315857585
+ - 1.0909231650790623
+ - 1.5118405634499807
+ - -4.205671737327002
+ - -2.2126295424291755
+ - 2.8938773298731784
+ - -1.6403007946114554
+ - -0.1421693751455139
+ - 1.9645938851253875
+ - -3.045341090699625
+ - 3.141160177744985
+ - -4.211090086586052
+ - -5.244005813743875
+ - -5.655665627434014
+ - -4.582210602494719
+ - 3.2312041499775392
+ - -2.6980975903696462
+ - 1.2930067406011634
+ - 0.6351616932108006
+ - -2.2594170512040694
+ - 3.153982105976893
+ - -2.120377608143439
+ - -4.180648578645013
+ - 0.5227541956832663
+ - 0.5972266439644817
+ - 0.7700786682470511
+ - -2.3580980593021645
+ - 3.195544136417757
+ - -1.947614888853976
+ - -3.611209879992626
+ - 0.21676962566975425
+ - 0.46864440580863787
+ - 0.9881785149616769
+ - -2.5070459767456943
+ - 3.212891203000093
+ - -2.830263830858503
+ - 1.523331633855228
+ - 0.27888207132085785
+ - -1.2251531995235936
+ - -1.6290799088293542
+ - 3.643135721098067
+ - 2.1026918121757716
+ - -2.761245838759316
+ - 1.3198853151264371
+ - 0.5039029889319667
+ - -1.3392999790219275
+ - -2.0216204546159
+ - 3.8996819932959474
+ - 2.1075013820747426
+ - -2.6367167845082298
+ - 1.1899047106798297
+ - 0.6398734929568457
+ - -2.33780309681284
+ - 3.1757889081885815
+ - -2.986199888163163
+ - 4.218430525618822
+ - 4.273589132582305
+ - 3.1308386215605752
+ - 3.091460715357283
+ - 2.5038777571072326
+ - 2.3945343677501105
+ - -2.292856360387512
+ - 3.1653669593647655
+ - -3.0127376211244643
+ - 1.7985543725513313
+ - -0.043423459888382795
+ - -1.7281639257352894
+ - 1.8796460819694942
+ - 3.235093250612993
+ - -3.194616348909682
+ - -1.8631060133112678
+ - 1.6821539158000045
+ - 0.09766124804833405
+ - -1.9155426128329316
+ - 1.9370557922093836
+ - 3.123015168877786
+ - 1.5021266575499894
+ - 0.5240050638127102
+ - -2.289174873291225
+ - 3.162463915909146
+ - -3.0115186365337756
+ - 1.7995128023247566
+ - -0.046158339534052364
+ - -1.7244976477084102
+ - 1.872448393940508
+ - 2.971623719094331
+ - -2.9382148724338655
+ - -1.8578800226663947
+ - 1.6832752816960252
+ - 0.1804012935884869
+ - -1.9118505380410078
+ - 2.019299515673368
+ - 3.5502797557986283
+ - -3.1530657736850447
+ - -1.853865948537498
+ - 1.4857582098547955
+ - 0.3209099536743177
+ - -2.021307603357812
+ - 3.100172897221484
+ - -3.0947148938078253
+ - 2.086863199939341
+ - -2.1803031470361507
+ - -2.839637776503652
+ - 2.3023745169800972e-15
+ - 1.4869398691253224e-15
+ - 4.081309142336638e-16
+ - 2.69660879692287e-17
+ - 7.328820227219825e-17
+ - -5.375846800982127e-16
+ - -3.154866856277247e-16
+ - 2.23752355695594e-16
+ - -3.6751634615731015e-16
+ - 1.108422020821057e-17
+ - 2.5510250091135373e-16
+ - 5.542110104105285e-16
+ - 2.8601837630552314e-16
+ - 1.2788212270069808e-16
+ - -1.1994118882018901e-16
+ - -6.786189745385038e-16
+ - 8.685396431806789e-17
+ - -4.7273372007405525e-17
+ - -1.6427806965303127e-16
+ - -1.0149506116025648e-16
+ - 1.1063023705013898e-16
+ - -4.235164736271501e-17
+ - -1.3301064249852685e-16
+ - -1.7825742200517744e-16
+ - 8.768114493062092e-17
+ - -6.258448514576206e-16
+ - -1.168806205537428e-16
+ - -5.10370437945218e-17
+ - 1.8462671272183575e-16
+ - 2.513801881548651e-16
+ - 2.734245514794033e-16
+ - 8.41242682966429e-17
+ - -7.052541902627113e-16
+ - 7.716561139354056e-17
+ - -1.0234292128812334e-16
+ - -7.473163244110328e-16
+ - 1.7536228986124184e-16
+ - 6.869734987252895e-17
+ - -2.1083799838210982e-16
+ - 3.550579075330105e-16
+ - 5.019331956971772e-16
+ - 3.8546616544971083e-17
+ - 2.5013941723603557e-16
+ - -6.410649747285964e-17
+ - -3.458442141084208e-16
+ - -1.9178182502041944e-16
+ - 7.444625512977248e-19
+ - -1.301320539668423e-15
+ - 6.002022524684769e-16
+ - -1.255660169855496e-16
+ - -3.4245277359695346e-17
+ - 6.799424635185887e-17
+ - 1.0364573075289436e-16
+ - -3.814956985094563e-16
+ - -1.4409486270673742e-16
+ - -5.2980918234021416e-17
+ - -3.6213967217571547e-16
+ - -6.617444900424221e-18
+ - 1.2722037821065566e-16
+ - -1.7370792863613579e-16
+ - 5.651297944962285e-16
+ - -2.2135353191919018e-16
+ - 4.738090548703743e-16
+ - -2.7081893254986126e-16
+ - -1.9571093293004632e-16
+ - -3.788487205492866e-17
+ - -6.788671287222697e-16
+ - 3.158175578727459e-16
+ - -4.723201297677788e-16
+ - -2.2118809579667958e-16
+ - 5.806807900122254e-17
+ - 8.99972506457694e-17
+ - 1.6543612251060552e-18
+ - -1.038421861483757e-16
+ - -6.078123141039646e-16
+ - -2.5526793703386434e-16
+ - -3.3004506440865804e-17
+ - -2.6800651846718094e-17
+ - -3.639594695233322e-18
+ - -2.6283663963872454e-16
+ - 8.40415502353876e-17
+ - 5.247633806036408e-16
+ - -2.008394527278751e-16
+ - 1.4806532964699195e-16
+ - -3.935725354527305e-16
+ - 2.1142736456855385e-16
+ - 3.0688400725717327e-17
+ - -1.8197973476166606e-16
+ - 2.686682629572234e-16
+ - -4.632211430296955e-16
+ - -5.821697151148209e-16
+ - 2.928219368437718e-16
+ - 3.7421650911898967e-16
+ - -1.194448804526572e-16
+ - -2.9199475623121877e-16
+ - -2.517937784611416e-16
+ - -2.5311726744122647e-16
+ - -4.4270706383838036e-16
+ - 7.749027978396762e-16
+ - 2.5609511764641737e-16
+ - 3.427836458419746e-16
+ - 3.9803931076051687e-16
+ - 4.748016716054378e-17
+ - -2.7958704704292335e-16
+ - -7.19647132921134e-16
+ - -4.903526671214348e-16
+ - 1.5716431638507526e-17
+ - -3.759535884053511e-17
+ - -3.6425286014684703e-16
+ - 9.049355901330122e-17
+ - -1.0306670432410724e-16
+ - 1.1994118882018901e-16
+ - 4.035400618339945e-16
+ - 1.0233775140929488e-17
+ - -6.402377941160434e-17
+ - -3.6395946952333213e-16
+ - -3.569284343166314e-16
+ - -1.4893386929017263e-16
+ - -1.3888362484765335e-16
+ - 1.7701665108634792e-17
+ - 2.5142154718549276e-16
+ - 1.2779940463944278e-16
+ - -1.0248767789532013e-15
+ - -2.607273290767143e-16
+ - -1.9686898578762056e-16
+ - 2.325514894616268e-16
+ - -4.177262093392789e-17
+ - 7.146840492458158e-16
+ - -9.545664268861938e-17
+ - 3.374896899216353e-17
+ - -5.66618719598824e-17
+ - -4.4171444710331673e-16
+ - -9.724335281173393e-16
+ - -2.491054414703443e-16
+ - -4.414662929195508e-16
+ - 6.005744837441257e-16
+ - 7.998836523387776e-17
+ - 6.716706573930584e-16
+ - -5.70175596232802e-16
+ - -3.407984123718474e-17
+ - 3.4013666788180493e-16
+ - 6.503293975891903e-16
+ - -1.6345088904047824e-16
+ - -3.698014325994879e-16
+ - -1.4091021734840826e-16
+ - 3.9489602443281536e-16
+ - 5.922613185879678e-17
+ - -3.258678023152652e-16
+ - -8.949835733882335e-17
+ - -8.304893350032397e-17
+ - -9.567377759941455e-17
+ - 3.324852472156894e-16
+ - 1.6386447934675476e-16
+ - -1.9128551665288763e-16
+ - -1.436812724004609e-16
+ - 2.3533288427133637e-16
+ - -1.594804221002237e-16
+ - -3.158175578727459e-16
+ - 1.0041972636393755e-16
+ - 1.5054687148465104e-17
+ - 2.1142736456855385e-16
+ - -3.416255929844004e-16
+ - -5.128519797828771e-18
+ - -1.9918509150276904e-16
+ - -1.1266199942972237e-16
+ - 2.2457953630814698e-17
+ - -1.6345088904047824e-16
+ - 1.2093380555525265e-16
+ - -1.7965328928886067e-16
+ - -2.5051164851168443e-16
+ - -1.15433054481775e-16
+ - 3.4708498502725036e-16
+ - -6.638124415738047e-17
+ - -1.0699581223373412e-16
+ - 1.0852609636695722e-16
+ - 1.0699581223373412e-16
+ - -6.733250186181645e-17
+ - 2.646977960169688e-18
+ - -2.063769099410348e-15
+ - -7.403266482349597e-16
+- - 3.2531931756002366
+ - 2.524407450208595
+ - -2.2884263571869243
+ - 3.16174946747559
+ - -3.01120495768236
+ - 1.7996080269144006
+ - -0.04672222457554128
+ - -1.7237779937706295
+ - 1.9498551605437175
+ - 3.3799132741941222
+ - -3.3423325310926577
+ - -1.934214260480206
+ - 1.6834054394369482
+ - 0.09420096150682397
+ - -1.9111142811279789
+ - 1.934437075623249
+ - 3.1181028907886374
+ - -2.7731160316027177
+ - -1.7841219370309809
+ - 1.4859259680608392
+ - 0.3203022022253345
+ - -2.020563340555083
+ - 3.0994251359810603
+ - -3.0943436571769514
+ - 2.0868578958197745
+ - -0.3490901940253426
+ - -1.2092753302593242
+ - -3.0280758497495985
+ - -1.497128900768809
+ - 3.1357143617914263
+ - -3.021859931568156
+ - 1.9089052863545217
+ - -0.21814468262346795
+ - -1.0412542173997876
+ - -3.4421391370319587
+ - -1.6156973786334983
+ - 3.1823386358371653
+ - -2.9690642475490736
+ - 1.795616726385443
+ - 0.06488854411125283
+ - -1.8148335498537367
+ - 2.9792176761032
+ - -5.781238064878926
+ - -5.711433772342768
+ - -1.840446373748988
+ - -1.6713968870740383
+ - 1.88561514965783
+ - 2.048230210295648
+ - 9.168400646129002e-06
+ - -1.7630542637454703
+ - 2.9533256241404016
+ - -3.1703323855858723
+ - 2.3209464988046253
+ - -0.7187021104675689
+ - -0.6341827248046731
+ - -0.5841371832807116
+ - 3.9832250734375783
+ - 2.0245084882504054
+ - -3.1412036789694215
+ - 2.220811439483599
+ - -0.49615067594257484
+ - -0.7823683352103011
+ - -0.7900724226640649
+ - 3.6920020157706976
+ - 2.046738427523764
+ - -3.080577580460136
+ - 2.0508406210327346
+ - -0.35920279623918655
+ - -1.5432982207882664
+ - 2.840581748957957
+ - -3.2195644650226902
+ - 1.7148437812764596
+ - 3.3303001401849057
+ - 0.6313253900253505
+ - 0.011253048468376842
+ - -1.6633182941612983
+ - 2.9415135759026225
+ - -3.1933619168541454
+ - 1.7432525917040762
+ - 3.67408517293586
+ - 1.030278804136177
+ - 0.21566987026548184
+ - -1.8533088021283954
+ - 2.9968229606993715
+ - -3.169395214854534
+ - 2.241861772364545
+ - -0.6121307496011494
+ - -1.2182038967831104
+ - 2.6663553766730126
+ - 3.1120161446509567
+ - -0.17431658421760646
+ - -0.29637981611301245
+ - -0.49931762400029933
+ - 2.160066724698248
+ - -3.11988959786306
+ - 3.0364874562822157
+ - -1.9458107459196916
+ - 0.22325078765964293
+ - 0.9521587086180223
+ - 1.2300078329212498
+ - -4.2224474078773255
+ - -2.198239835257993
+ - 2.986861733627273
+ - -1.8315799925832816
+ - -0.0032035566841455997
+ - 1.074479801270809
+ - 1.3391599782620889
+ - -3.683935339454106
+ - -2.096112834393267
+ - 2.893218117121245
+ - -1.640499911417436
+ - -0.14128791429331425
+ - 1.9631906372431935
+ - -3.0440148591940317
+ - 3.140217194090042
+ - -1.506277052337338
+ - -3.041156034254906
+ - -1.1871299394711015
+ - -0.33599564479156857
+ - 2.071209047700588
+ - -3.1123627475392586
+ - 3.079548389714607
+ - -1.4188149454208783
+ - -3.133736609781711
+ - -1.5505810068223163
+ - -0.49721944286529207
+ - 2.2398397728062003
+ - -3.146980821119978
+ - 3.0348488743731323
+ - -1.8555327821383265
+ - 0.11452448723097682
+ - 1.6658657616376713
+ - -4.544810064957715
+ - -4.401605665865852
+ - 0.041625627385369485
+ - 0.2444488305726731
+ - 4.712968189434131
+ - 4.8486265885586874
+ - -1.911313415323504
+ - 0.18198860770314648
+ - 1.6037744183096445
+ - -2.918339196330485
+ - 3.1978702867720483
+ - -2.4420358391193244
+ - 0.6832119880314956
+ - 1.8828086146489345
+ - 2.8872501771483923
+ - 1.2678932024502358
+ - -2.974786076453293
+ - 3.175952521815238
+ - -2.288133702003768
+ - 0.5245849974824608
+ - 1.5024468491589722
+ - 3.1187289219230823
+ - 1.9347365501335667
+ - -1.9117924172215826
+ - 0.1805661940544872
+ - 1.6066140260046493
+ - -2.9217547474501693
+ - 3.200689072993377
+ - -2.44329639019407
+ - 0.665502406855277
+ - 1.7355634233808988
+ - 2.6631058161101526
+ - 1.2510089769232118
+ - -2.978206107457889
+ - 3.1622994809473215
+ - -2.2891741736367694
+ - 0.5993159982739463
+ - 1.7334934807169484
+ - 3.2515228737258295
+ - 1.4764503490211012
+ - -3.0585594186997405
+ - 3.1303617043501446
+ - -2.1894690654301114
+ - 0.4352514044105567
+ - 1.379815469194086
+ - -2.7505126316762634
+ - 4.428834143970784
+ - 5.365635717298784
+ - -6.408995386060857e-16
+ - -1.3312644778428425e-15
+ - 5.9557004103817985e-18
+ - -2.1940965747969056e-17
+ - -7.924390268258004e-17
+ - 9.45053849841834e-17
+ - 5.732361644992482e-17
+ - 4.552802091491864e-16
+ - 5.1698788284564224e-17
+ - 1.312735632121655e-16
+ - -8.672988722618494e-17
+ - -6.947489964832878e-16
+ - 3.6453849595211925e-16
+ - 2.378144261089954e-18
+ - -1.422233665708362e-16
+ - 4.8459342210653435e-16
+ - 9.156889380962015e-17
+ - -4.384057246531047e-18
+ - 1.800772193527941e-16
+ - -2.6147179162801205e-16
+ - -8.271806125530276e-19
+ - 5.889525961377557e-17
+ - 1.3838731648012153e-16
+ - -2.783462761240938e-17
+ - -1.1158666463340343e-16
+ - -5.153335216205362e-17
+ - 2.874452628621771e-17
+ - -1.1504014369081232e-16
+ - -4.327395374571164e-16
+ - -5.715818032741421e-17
+ - 2.8016607347171047e-16
+ - -1.9736529415515238e-16
+ - -7.543887186483611e-17
+ - 1.5168424482691145e-17
+ - 1.564198538337775e-16
+ - 7.562498750266054e-17
+ - 1.761894704737949e-17
+ - -9.223063829966257e-17
+ - -1.5776402232917618e-16
+ - -2.845501307182415e-16
+ - 7.130296880207099e-17
+ - 2.7379678275505213e-17
+ - -4.3939834138816825e-16
+ - 5.922613185879678e-17
+ - 2.777672496953067e-16
+ - 9.92616735063633e-18
+ - 1.3491315790739881e-16
+ - 2.0059129854410919e-16
+ - -2.534481396862477e-16
+ - -3.838118042246048e-17
+ - 2.7644376071522185e-16
+ - 1.833032237417509e-16
+ - -2.8715574964778356e-16
+ - -1.0819522412193601e-16
+ - -2.0811864211834174e-16
+ - 4.21034931789491e-17
+ - 1.0186729243590535e-16
+ - -5.5152267341973114e-17
+ - -1.2407709188295414e-17
+ - 2.216844041642114e-16
+ - -4.250260782450594e-16
+ - -2.129162896711493e-16
+ - -1.2970192004831474e-16
+ - 2.4434915294816438e-16
+ - 2.5808035111654463e-16
+ - 3.120952451162573e-16
+ - 8.652309207304668e-17
+ - -2.1253371863784352e-16
+ - -2.694954435697764e-16
+ - -7.419810094600658e-17
+ - 1.7900188455647516e-16
+ - 1.0323214044661784e-16
+ - 3.190849212923304e-17
+ - 1.617138097541169e-17
+ - 6.450354416688509e-16
+ - -2.8289576949313546e-17
+ - -3.6904663029053325e-16
+ - -2.553920141257473e-16
+ - 1.4953357523427358e-16
+ - -1.6576699475562672e-16
+ - -3.900156588187525e-17
+ - 5.662051292925474e-17
+ - 8.581998855237662e-18
+ - 2.8918234214853848e-16
+ - 2.311969812085712e-17
+ - 6.997947982198614e-17
+ - 6.369290716658313e-17
+ - -9.198248411589667e-17
+ - -4.0085172484319716e-16
+ - 5.33035186729171e-16
+ - -5.466009487750407e-16
+ - 4.433688083284228e-16
+ - -1.0546552810051102e-16
+ - 3.0258266807189747e-16
+ - 7.758954145747398e-17
+ - 3.6313228891077915e-17
+ - -2.5601239958516203e-17
+ - -1.6589107184750968e-16
+ - 2.6395333346567113e-16
+ - 3.80585799835648e-16
+ - -2.270610781458061e-16
+ - 8.902944932908237e-16
+ - -2.0208022364670464e-16
+ - -3.474158572722716e-17
+ - -1.207270104021144e-16
+ - 3.368279454315928e-16
+ - -3.987010552505593e-17
+ - 1.5757790669135177e-17
+ - 2.0249381395298115e-16
+ - 4.5743087874182424e-17
+ - 6.257621333963654e-17
+ - -2.192028623265523e-17
+ - -3.6702003778977833e-16
+ - 2.635397431593946e-16
+ - -5.616556359235058e-17
+ - -1.6543612251060552e-18
+ - 2.4616895029578104e-16
+ - 7.593518023236793e-17
+ - 1.4889251025954498e-16
+ - -1.6254099036666991e-16
+ - -2.1705219273391444e-16
+ - 1.6675961149069035e-16
+ - -2.3136241733108184e-16
+ - -6.973132563822023e-17
+ - -1.892589241521327e-16
+ - -1.8859717966209028e-17
+ - -5.641371777611649e-17
+ - -1.9951596374779025e-16
+ - -1.2490427249550718e-16
+ - -2.84136540411965e-16
+ - -3.727275840163942e-16
+ - 1.819797347616661e-17
+ - -1.373946997450579e-16
+ - 3.9556293880168624e-16
+ - -5.169878828456422e-18
+ - -4.59126598997558e-16
+ - 1.1415092453231782e-16
+ - -4.466775307786349e-17
+ - 1.862810739469418e-16
+ - -1.6274778551980817e-16
+ - 4.175607732167683e-16
+ - -2.5886617269847e-16
+ - 1.1911400820763599e-16
+ - 7.77549775799846e-18
+ - 1.2639319759810263e-16
+ - -1.98357910890216e-16
+ - 6.791152829060357e-17
+ - 2.4335653621310074e-16
+ - 2.8918234214853848e-16
+ - -1.1580528575742387e-16
+ - -2.3185872569861366e-16
+ - -3.3699338155410343e-16
+ - -7.543887186483611e-17
+ - 2.3243775212740075e-17
+ - 1.6254099036666991e-16
+ - 7.79204137024952e-17
+ - 1.9132687568351528e-16
+ - -5.2360532774606646e-17
+ - -1.8776999904953728e-17
+ - 2.8506711860108716e-17
+ - -1.348304398461435e-17
+ - -9.992341799640573e-17
+ - -1.110076382046163e-16
+ - 3.1794754795007e-17
+ - 8.676297445068706e-16
+ - 1.0232224177280951e-16
+ - 2.2069178742914776e-16
+ - -8.470329472543002e-17
+ - 3.3211301594004056e-16
+ - -2.0195614655482168e-16
+ - 1.8694281843698423e-16
+ - -1.952146245625145e-17
+ - 1.4692795630473154e-17
+ - -1.2424252800546476e-16
+ - 6.662939834114638e-17
+ - -1.7825742200517746e-17
+ - -9.504305238234287e-17
+ - 1.5275699468381613e-16
+ - 8.761497048161668e-16
+ - -4.171471829104918e-16
+- - 5.361012220920102
+ - 4.20437480136704
+ - -3.5999556166482973
+ - 4.569116049390536
+ - -4.059059496591689
+ - 2.103266127482233
+ - 0.459286657174544
+ - -2.8766780456870813
+ - 2.922363969372323
+ - 5.181418700250226
+ - -4.296365818726606
+ - -2.553831514954609
+ - 1.927145238691717
+ - 0.6579957271213996
+ - -3.120296676035167
+ - 2.8635151277360587
+ - 4.7237937383765205
+ - -3.514960367178135
+ - -2.336815570291687
+ - 1.6304006355704264
+ - 0.9746607200195513
+ - -3.2610381486583235
+ - 4.521522988090056
+ - -4.215728818522328
+ - 2.5438405707704512
+ - -0.15551540426588506
+ - -1.1378577938920627
+ - -4.618610443536499
+ - -2.3525831528000305
+ - 4.551060543296628
+ - -4.078534545170939
+ - 2.2699122399816574
+ - 0.0342668843077021
+ - -0.8379636453681633
+ - -5.194811192716613
+ - -2.5018488438651483
+ - 4.580792328670474
+ - -3.982780384280459
+ - 2.0971918839589896
+ - 0.6167170449372453
+ - -2.9954601896023436
+ - 4.4070452688192825
+ - -8.190840256107444
+ - -8.11626558240673
+ - -3.0171904682523425
+ - -2.7969290366294426
+ - 1.7822707225714642
+ - 2.0105136094385316
+ - 0.5253094235796844
+ - -2.927992273898222
+ - 4.380181057979478
+ - -4.3731379676238165
+ - 2.909781804114373
+ - -0.5020339536395255
+ - -1.2229959591956425
+ - -1.4710003381428092
+ - 5.708640572028442
+ - 2.956308440872039
+ - -4.310070725989303
+ - 2.752345538378599
+ - -0.18104481900099556
+ - -1.4212947415933581
+ - -1.7026245373029496
+ - 5.248215179295532
+ - 2.9661036435109556
+ - -4.189013659975893
+ - 2.488134867057017
+ - 0.015137405110439182
+ - -2.6391919981418934
+ - 4.258434085318078
+ - -4.500567407766092
+ - 2.2221221270559988
+ - 4.437427337737001
+ - 1.483670593619841
+ - 0.3577235005377686
+ - -2.7974335151649035
+ - 4.3678754899451295
+ - -4.426987839069223
+ - 2.237681603820605
+ - 4.845611162550033
+ - 2.1199869888822245
+ - 0.662826900972001
+ - -3.0454488520524845
+ - 4.424846751047683
+ - -4.371045506134884
+ - 2.785363763508693
+ - -0.3480185656581884
+ - -2.2055230198318987
+ - 4.3893274746401385
+ - 5.1770723327936405
+ - 0.6882029233099682
+ - 0.34246459668860624
+ - -1.2235814373959397
+ - 3.4385860398454824
+ - -4.538371210247003
+ - 4.105712184207116
+ - -2.3264089560502836
+ - -0.20903205104149275
+ - 1.6688130315512713
+ - 2.392801813542798
+ - -5.940447325739463
+ - -3.1460900738069992
+ - 4.014721243969067
+ - -2.1518005097345387
+ - -0.5298482664064046
+ - 1.8100081967835562
+ - 2.4505178670005128
+ - -5.1434791467937755
+ - -2.98334793041271
+ - 3.849021565018649
+ - -1.8623747936237263
+ - -0.7241565422148136
+ - 3.187345288210786
+ - -4.471041895686004
+ - 4.308111876299808
+ - -1.8870389769543308
+ - -3.9487599314659634
+ - -2.2449748848415734
+ - -0.8115847653704993
+ - 3.3257687626442203
+ - -4.532355731916733
+ - 4.186995850111497
+ - -1.747003492450119
+ - -4.012582154120297
+ - -2.791088662028656
+ - -1.0359150921767688
+ - 3.539104486288299
+ - -4.558982218667583
+ - 4.10265971275166
+ - -2.1883464003189355
+ - -0.3633683466038359
+ - 2.8007408291823253
+ - -6.995057367003279
+ - -6.805577705770878
+ - -0.4570530967404183
+ - -0.1693609458125679
+ - 6.12291472903096
+ - 6.328992593489338
+ - -2.2730762028910667
+ - -0.26811459299528223
+ - 2.71901227375905
+ - -4.342044945832152
+ - 4.441043849588368
+ - -3.10177756164877
+ - 0.6382360245945841
+ - 2.0786336930227307
+ - 4.528480649182803
+ - 2.0642850866889755
+ - -4.401167754567054
+ - 4.387456571389897
+ - -2.8575821671994976
+ - 0.4088579768294507
+ - 1.569685119771624
+ - 4.383678527144074
+ - 2.5963895606814154
+ - -2.27434968462575
+ - -0.26960950385526866
+ - 2.7227461880433776
+ - -4.346932812262491
+ - 4.445401327180297
+ - -3.1041331927660747
+ - 0.6148651678947485
+ - 1.917799322665967
+ - 4.1755348086687585
+ - 2.0400144448669755
+ - -4.406090093354022
+ - 4.35492675575484
+ - -2.859636570851477
+ - 0.49895137961339425
+ - 1.8197866940669298
+ - 5.026708751393298
+ - 2.3519323490261956
+ - -4.485028547490618
+ - 4.287544692399491
+ - -2.703397092627498
+ - 0.09375729274987728
+ - 2.4219627486897273
+ - -4.156746464764673
+ - 6.499140193849453
+ - 7.906437440420124
+ - -1.3129010682441653e-15
+ - -2.0702676370977177e-15
+ - -6.145951951268996e-17
+ - -4.078000419886426e-17
+ - -1.0091603473146936e-16
+ - 2.1713491079516974e-16
+ - 1.34654663965976e-16
+ - 5.80143122614066e-16
+ - 1.2970192004831474e-16
+ - 1.7958091098526228e-16
+ - -1.5261482301603358e-16
+ - -1.0242977525244142e-15
+ - 4.541635153222398e-16
+ - -2.762783245927112e-17
+ - -1.7223968304885416e-16
+ - 7.065363202121685e-16
+ - 1.0273583207908602e-16
+ - 1.0091603473146936e-17
+ - 2.747066814288605e-16
+ - -3.1920899838421333e-16
+ - -2.431911000905901e-17
+ - 8.772250396124857e-17
+ - 2.1440521477374475e-16
+ - -8.147729033647323e-18
+ - -1.621274000603934e-16
+ - 3.680953725860973e-17
+ - 5.638269850314575e-17
+ - -1.5381423490423547e-16
+ - -6.067783383382734e-16
+ - -1.0662358095808525e-16
+ - 3.6846760386174613e-16
+ - -2.840538223507097e-16
+ - 6.170767369645586e-17
+ - 1.1146258754152046e-17
+ - 2.4939495468473784e-16
+ - 1.947183161949827e-16
+ - -1.703992061859237e-17
+ - -1.3921449709267456e-16
+ - -1.7536228986124184e-16
+ - -4.261634515873198e-16
+ - -3.867069363685404e-18
+ - 4.7314731038033177e-17
+ - -6.49171344731616e-16
+ - 9.181704799338606e-17
+ - 4.2963761016004253e-16
+ - -2.150669592637872e-18
+ - 1.8661194619196302e-16
+ - 4.566450571598989e-16
+ - -4.526332311890167e-16
+ - -3.937379715752411e-17
+ - 4.043258834159199e-16
+ - 2.4286022784556893e-16
+ - -4.082963503561744e-16
+ - -1.048865016717239e-16
+ - -2.4021324988539924e-16
+ - 7.82512859475164e-17
+ - 1.8987930961154748e-16
+ - -6.187310981896647e-17
+ - -5.227781471335134e-17
+ - 3.1631386624027773e-16
+ - -6.801906177023546e-16
+ - -2.3094882702480533e-16
+ - -2.666830294870961e-16
+ - 3.7421650911898967e-16
+ - 3.775252315692018e-16
+ - 4.310851762320103e-16
+ - 2.302870825347629e-16
+ - -3.338500952264019e-16
+ - -2.928219368437718e-16
+ - -5.864710543000966e-17
+ - 2.2242886671550914e-16
+ - 1.1415092453231782e-16
+ - 4.2113832936606015e-17
+ - 7.79204137024952e-17
+ - 9.414556141772284e-16
+ - 1.766030607800714e-17
+ - -5.064206505202774e-16
+ - -3.4121200267812387e-16
+ - 1.887626157846009e-16
+ - -1.6998561587964716e-16
+ - -6.832511859688009e-17
+ - 2.522900868286734e-18
+ - 3.623051082982261e-17
+ - 3.6693731972852303e-16
+ - 1.0044040587925137e-16
+ - 4.7811039405564993e-17
+ - 9.239607442217318e-17
+ - -7.849944013128231e-17
+ - -4.860513279361591e-16
+ - 7.394994676224066e-16
+ - -6.610827455523796e-16
+ - 5.697620059265255e-16
+ - -2.0795320599583113e-16
+ - 4.2393006393342663e-16
+ - 1.3549218433618593e-16
+ - 9.744187615874665e-17
+ - 4.756288522179908e-18
+ - -1.6862076786893467e-16
+ - 2.649873092313624e-16
+ - 4.847278389560742e-16
+ - -3.7008060605622453e-16
+ - 1.168227179108641e-15
+ - -2.9044379258268184e-16
+ - 3.5403330217269584e-17
+ - 4.518474096070914e-18
+ - 5.293955920339377e-16
+ - -5.997059441009451e-17
+ - 2.9695783990653694e-17
+ - 2.845501307182415e-16
+ - 5.0540735426989985e-17
+ - 1.1191753687842464e-16
+ - -4.706657685426727e-17
+ - -5.522257769404013e-16
+ - 3.4427257094457007e-16
+ - -7.494256349730431e-17
+ - 8.735027268559971e-17
+ - 4.0018998035315474e-16
+ - 1.4111701250154652e-16
+ - 1.9322939109238724e-16
+ - -2.072914615057887e-16
+ - -3.4973196298742005e-16
+ - 2.1539783150880838e-16
+ - -1.6361632516298885e-16
+ - -5.655330450448481e-17
+ - -2.269783600845508e-16
+ - -7.543887186483611e-17
+ - -7.113753267956038e-17
+ - -3.5618397176533367e-16
+ - -1.3234889800848443e-16
+ - -4.01348033210729e-16
+ - -5.082197683525802e-16
+ - 8.553047533798305e-17
+ - -3.5734202462290796e-17
+ - 5.549115289917844e-16
+ - 6.660871882583255e-17
+ - -7.481021459929581e-16
+ - 1.5096046179092753e-16
+ - -8.867376166568455e-17
+ - 3.666064474835018e-16
+ - -2.1837568171399928e-16
+ - 5.241016361135983e-16
+ - -4.336494361309247e-16
+ - 1.709782326147108e-16
+ - 6.981404369947554e-17
+ - 2.3491929396505986e-16
+ - -3.249992626720845e-16
+ - 8.213903482651564e-17
+ - 3.416255929844004e-16
+ - 3.927453548401775e-16
+ - -1.4459117107426924e-16
+ - -3.069667253184285e-16
+ - -5.166570106006211e-16
+ - -1.311908451509102e-16
+ - 4.532949756790591e-17
+ - 1.9405657170494027e-16
+ - 5.186422440707483e-17
+ - 2.663521572420749e-16
+ - -1.3069453678337836e-17
+ - -2.961306592939839e-17
+ - 2.845501307182415e-17
+ - -3.995282358631123e-17
+ - -4.79764755280756e-17
+ - -1.410963329862327e-16
+ - 7.16338410470922e-17
+ - 1.1481887287695439e-15
+ - 1.315217173959314e-16
+ - 3.3153398951125344e-16
+ - -1.3859411163325979e-16
+ - 4.918415922240303e-16
+ - -2.447627432544409e-16
+ - 2.5791491499403403e-16
+ - -5.889525961377557e-17
+ - 3.313892329040567e-17
+ - -1.531938494448207e-16
+ - 7.94506978357183e-17
+ - -3.379032802279118e-17
+ - -1.0918784085699964e-16
+ - 2.1083799838210982e-16
+ - 1.5451733842490555e-15
+ - -4.622698853252595e-16
+- - -2.0007908324586787
+ - -1.5026208247089101
+ - 1.5790265667064705
+ - -2.6879974741287875
+ - 2.848010526283247
+ - -2.0993099617871858
+ - 0.611521315282083
+ - 0.998356763417086
+ - -1.5267924743756716
+ - -2.516210840674473
+ - 3.4201959317683954
+ - 1.9032285504396518
+ - -2.0095948680680253
+ - 0.48802924670271375
+ - 1.187825012525721
+ - -1.5549732582331246
+ - -2.3846759832735147
+ - 2.8937074655960546
+ - 1.7767610722740859
+ - -1.8567640494917759
+ - 0.28504151724554555
+ - 1.298831961503006
+ - -2.5875594477500337
+ - 2.8769607274952365
+ - -2.3129058008972816
+ - 0.687485106857789
+ - 1.706668102706108
+ - 2.280662264941477
+ - 1.049799915476705
+ - -2.6430287680560767
+ - 2.8533059394290468
+ - -2.1807659592731605
+ - 0.5776621529201773
+ - 1.6292518390194666
+ - 2.654867322535991
+ - 1.1746728080429174
+ - -2.7256866294719178
+ - 2.8297593536443504
+ - -2.096294300693068
+ - 0.5130701423012449
+ - 1.0895438253610314
+ - -2.4194437345048776
+ - 5.060566010772359
+ - 4.9720595174247855
+ - 1.1495994675194088
+ - 0.9799437650550169
+ - -2.652205943895889
+ - -2.7969679340917706
+ - 0.5704412739793304
+ - 1.0375822889803052
+ - -2.385721137635293
+ - 2.8874677720746975
+ - -2.479226007929403
+ - 1.1893380833599183
+ - 0.18963641575099277
+ - -0.2133803773172957
+ - -3.4132379027250517
+ - -1.673033104887577
+ - 2.8874598647070933
+ - -2.408172782872528
+ - 1.001857142790658
+ - 0.33247417556153724
+ - 0.03463251069253226
+ - -3.212183685395946
+ - -1.7169358761008562
+ - 2.8730640340174163
+ - -2.2866769552075175
+ - 0.8834716215484419
+ - 0.8198527023593004
+ - -2.244276569305408
+ - 2.865604431515908
+ - -1.7347551096242513
+ - -3.231591750039828
+ - 0.11102082835461766
+ - 0.375108697876418
+ - 0.9391400188041337
+ - -2.3694920151337118
+ - 2.88466281115773
+ - -1.7874301773510075
+ - -3.62137842266042
+ - -0.1581441615641271
+ - 0.21361399006161283
+ - 1.1283522563925266
+ - -2.4429348131760347
+ - 2.8875136746733308
+ - -2.423903147400119
+ - 1.0994237153446107
+ - 0.504961392259305
+ - -1.6450740756230884
+ - -1.8590995468121707
+ - 1.2058900401002137
+ - 1.1181096552934884
+ - -0.16550396595810388
+ - -1.4860517864601188
+ - 2.576702168517421
+ - -2.9003653161602414
+ - 2.1667853448895746
+ - -0.808340061353559
+ - -0.47326819627801336
+ - -0.3444209646085525
+ - 3.7432749137832957
+ - 1.8885783708639423
+ - -2.879284781381145
+ - 2.0821072806163623
+ - -0.6091570786869593
+ - -0.6165037697173845
+ - -0.5491383917530263
+ - 3.310191296080745
+ - 1.8195098976059285
+ - -2.8354440037821
+ - 1.9349793443015868
+ - -0.4877250950096884
+ - -1.2824971734997541
+ - 2.465010138420038
+ - -2.9287209299253836
+ - 1.5967623850508084
+ - 3.0674552875162355
+ - 0.40494693457704195
+ - -0.08383271597036494
+ - -1.3925782329385092
+ - 2.565780007308153
+ - -2.9142855409237822
+ - 1.5383618891719344
+ - 3.224355653676404
+ - 0.6879703672695096
+ - 0.06189850751822668
+ - -1.5699309908118195
+ - 2.6204033023854194
+ - -2.899756295221053
+ - 2.099234114656532
+ - -0.7135313406652709
+ - -0.983325803544363
+ - 3.3525702284929664
+ - 3.2121413379240638
+ - -0.6100553967397757
+ - -0.7852598540555011
+ - -4.749885715023173
+ - -4.854212430481424
+ - 2.1418484413664283
+ - -0.7729586091287586
+ - -0.9218307589118501
+ - 2.299767678793142
+ - -2.9214925987920153
+ - 2.5197304415407746
+ - -0.969442392598915
+ - -2.3114399974919904
+ - -2.034184978173391
+ - -0.8080505009863436
+ - 2.3735993259338715
+ - -2.926754423877828
+ - 2.415395262695723
+ - -0.8358089854724196
+ - -1.9447573609600963
+ - -2.062712276184309
+ - -0.9102502288112998
+ - 2.482400670236996
+ - -0.7711395955482625
+ - -0.9246431982361388
+ - 2.3027213856132827
+ - -2.923573784443562
+ - 2.52021008761357
+ - -0.9520143175130467
+ - -2.1287472895018262
+ - -1.8778407834279052
+ - -0.7936668241399236
+ - 2.376526291459552
+ - -2.9296772399338766
+ - 2.4156702485779813
+ - -0.9190157319676733
+ - -2.234028858931373
+ - -2.3731975551599254
+ - -0.9994414352689223
+ - 2.485247255566509
+ - -2.9275822691956277
+ - 2.344328767804811
+ - -0.9911980537893308
+ - -0.7030058089542248
+ - 2.0937746007705504
+ - -3.624053257651827
+ - -4.353940881875246
+ - 1.0058516248644817e-15
+ - 1.14746494573356e-15
+ - -1.0257039595657542e-17
+ - -1.6233419521353168e-17
+ - -4.6218716726400415e-17
+ - -1.5534451903745857e-16
+ - -1.5716431638507524e-18
+ - -2.0224565976921524e-16
+ - 1.3317607862103746e-16
+ - -1.199308490625321e-16
+ - 3.970466940254532e-17
+ - 3.7992405534560556e-16
+ - -3.0109374296930207e-16
+ - -1.576813042679209e-17
+ - 4.1524466750161983e-17
+ - 1.9025154088719633e-17
+ - 1.9588670881021384e-17
+ - 2.9695783990653694e-17
+ - -5.997059441009451e-17
+ - 8.801201717564213e-17
+ - 8.573727049112131e-17
+ - 3.639594695233322e-17
+ - -1.2705494208814505e-16
+ - 5.935020895067973e-18
+ - -7.626605247738914e-17
+ - -1.0389388493666026e-16
+ - -2.6635215724207488e-17
+ - 1.1938284190671572e-16
+ - 2.6381891661613126e-16
+ - -1.0141234309900118e-16
+ - -4.2665975995485163e-16
+ - 1.6047303883528734e-16
+ - -5.111976185577711e-16
+ - -5.045801736573468e-17
+ - -2.4070955825293105e-16
+ - 1.3698110943878138e-16
+ - 1.0836066024444661e-16
+ - 9.508441141297052e-17
+ - 1.8106983608785773e-16
+ - 2.206504283985201e-17
+ - 1.3102540902839958e-16
+ - -2.3789714417025076e-16
+ - 3.4377626257703825e-16
+ - -6.319659879905131e-17
+ - -2.720597034686908e-16
+ - 2.9832268791724943e-16
+ - -1.2899881652764467e-16
+ - 9.802090258753377e-17
+ - 2.2036091518412655e-16
+ - 7.854079916190997e-17
+ - -3.808339540194139e-16
+ - -2.0522350997440614e-16
+ - 2.1390890640621293e-16
+ - 1.9935052762527964e-16
+ - 2.2896359355467806e-16
+ - -1.308806524212028e-16
+ - -4.776968037493734e-17
+ - 1.6543612251060553e-17
+ - 1.1018045759206327e-16
+ - -1.1231044766938733e-16
+ - 3.988664913730699e-16
+ - 2.3161057151484775e-18
+ - 1.7056464230843428e-16
+ - -1.7966362904651759e-16
+ - -2.860804148514646e-16
+ - -2.3136241733108184e-16
+ - -6.253485430900889e-17
+ - 1.1144190802620665e-16
+ - 2.765678378071048e-16
+ - 3.7553999809907456e-17
+ - 4.0366413892587744e-17
+ - 8.99972506457694e-17
+ - 2.086563095165012e-17
+ - -2.846328487794968e-16
+ - -2.385588886602932e-16
+ - -7.295733002717704e-17
+ - 3.3806871635042236e-16
+ - 2.0332099456553418e-16
+ - -4.706657685426727e-17
+ - 1.1919931120830552e-16
+ - 5.5007510734776334e-17
+ - -3.677851798563899e-17
+ - 4.284795573024683e-17
+ - -2.7346591051003095e-16
+ - -7.394994676224067e-17
+ - 5.211237859084074e-17
+ - -2.6262984448558626e-17
+ - 9.357480679506126e-18
+ - 6.021874859386041e-17
+ - -3.802962866212544e-17
+ - 5.91765010220436e-16
+ - -6.547961728969766e-16
+ - 5.67445900211377e-17
+ - -9.446402595355575e-17
+ - 1.0724396641750003e-16
+ - -9.636654136242771e-17
+ - 5.959836313444564e-17
+ - 2.3781442610899546e-16
+ - -3.628014166657579e-16
+ - -2.776018135727961e-16
+ - 2.4418371682565377e-16
+ - -8.87399361146888e-16
+ - 1.344995676011223e-16
+ - -2.0427225226997016e-16
+ - -3.665237294222465e-16
+ - -3.685916809536291e-16
+ - 5.868846446063731e-17
+ - -6.849055471939069e-17
+ - 1.4401214464548212e-16
+ - -6.849055471939069e-17
+ - -1.5468277454741615e-16
+ - 2.0183206946293872e-17
+ - 2.0195614655482168e-16
+ - -1.0795740969582701e-16
+ - 9.661469554619362e-17
+ - -3.2888701155108375e-16
+ - -2.071260253832781e-16
+ - -9.628382330117241e-17
+ - 1.2221593550470982e-17
+ - 3.8546616544971083e-17
+ - 2.506357256035674e-16
+ - -1.4409486270673742e-16
+ - 4.082963503561744e-16
+ - 1.0116418891523527e-16
+ - 1.4872707413703438e-16
+ - 1.9852334701272662e-16
+ - 4.9630836753181654e-17
+ - -3.764705762881967e-17
+ - 4.8079873104644726e-18
+ - 3.412533617087515e-16
+ - 3.6792993646358666e-16
+ - 9.942710962887391e-17
+ - 1.9554549680753572e-16
+ - -1.3404461826421813e-16
+ - 3.9787387463800625e-17
+ - 5.515640324503589e-16
+ - -1.7807647624618146e-16
+ - -4.883674336513075e-16
+ - -2.903403950061127e-16
+ - 1.343341314786117e-16
+ - -4.0382957504838806e-16
+ - 5.864710543000966e-17
+ - 5.136791603954301e-17
+ - 1.1737692892127463e-16
+ - -6.239423360487487e-16
+ - 1.1683926152311514e-17
+ - -7.878895334567587e-17
+ - 4.475047113911879e-17
+ - -2.6593856693579837e-17
+ - 8.979045549263114e-17
+ - 2.4716156703084467e-16
+ - 2.901749588836021e-16
+ - 4.375785440405516e-17
+ - 2.113032874766709e-16
+ - 2.2445545921626406e-16
+ - -3.722312756488624e-19
+ - -2.4980854499101433e-17
+ - -8.193223967337738e-17
+ - 2.9447629806887785e-17
+ - 7.17165591083475e-17
+ - -3.192917164454687e-17
+ - -1.5269754107728888e-16
+ - 6.493367808541267e-17
+ - -8.54063982461001e-18
+ - -4.853895834461166e-16
+ - -7.684507890617626e-17
+ - -2.280950539114974e-16
+ - 4.807987310464473e-17
+ - -3.5850007748048214e-16
+ - 1.5886003664080894e-16
+ - 1.0655120265448686e-17
+ - -2.143638557431171e-16
+ - -8.271806125530276e-19
+ - 1.0654086289682995e-16
+ - -8.892191584945046e-17
+ - -1.020740875890436e-16
+ - -3.0631532058604306e-17
+ - -1.41654679899706e-16
+ - -9.022886121728426e-16
+ - 4.214071630651399e-16
+- - -0.9281120663562545
+ - -0.8931810824686642
+ - -0.036186754921160295
+ - 1.5780451051044768
+ - -2.6853952559536185
+ - 2.829350569224125
+ - -2.099926360500748
+ - 0.6110742358270298
+ - 0.57830976128518
+ - 0.550950687614361
+ - -3.772642683426171
+ - -1.9198492382285008
+ - 2.8034662451653625
+ - -2.0084292593894295
+ - 0.41151195702762117
+ - 0.713165418464912
+ - 0.7277879612826259
+ - -3.324063141990674
+ - -1.8443761864525035
+ - 2.746961291638344
+ - -1.855678424987579
+ - 0.2872364842020377
+ - 1.3808780676669092
+ - -2.5850229703701126
+ - 2.875312877377084
+ - -1.5378613853238328
+ - -2.990051500307095
+ - -0.5850663829781988
+ - -0.019823954504668586
+ - 1.4895311509132976
+ - -2.673984163344677
+ - 2.851627864818172
+ - -1.473769203606826
+ - -3.1277311456721018
+ - -0.8810200690598826
+ - -0.16593626886890897
+ - 1.6590445384751422
+ - -2.724114319424579
+ - 2.8285010241505244
+ - -2.0283728437646906
+ - 0.5150289640840845
+ - 1.0890137107578959
+ - -3.5632576008896177
+ - -3.4253936857358283
+ - 0.46370110943692505
+ - 0.6429741105112952
+ - 4.63101958826347
+ - 4.739645925497937
+ - -2.0703582901409834
+ - 0.569935567722317
+ - 1.0347414247393876
+ - -2.43777542875238
+ - 2.8858216432442276
+ - -2.4779105031490216
+ - 0.8749407048189656
+ - 2.149815609669915
+ - 2.2005937006985956
+ - 0.9045148521264141
+ - -2.5039014661079513
+ - 2.8857524191863098
+ - -2.361971314728491
+ - 0.738166187773382
+ - 1.7882819699136205
+ - 2.2076317551728724
+ - 1.0028631691915184
+ - -2.6046353264351954
+ - 2.8713257974192916
+ - -2.286914009262181
+ - 0.7933680513549529
+ - 0.8170191260861184
+ - -2.2431058670435746
+ - 1.8662032487234064
+ - 3.1484552423001877
+ - -1.9093800910426129
+ - -1.3263302481411443
+ - 0.6742942566861089
+ - 1.0110760421203526
+ - -2.3682330124409665
+ - 1.9800274939916847
+ - 3.668081101341195
+ - -1.9407840145231983
+ - -1.260757987104159
+ - 0.4737096079283146
+ - 1.1276771306541589
+ - -2.4401610005189958
+ - 2.88536720475802
+ - -2.4240734917009923
+ - 1.0987649603005467
+ - -0.7426533726993897
+ - -1.0778354824928886
+ - -3.7555083463348247
+ - -3.1566555098591995
+ - 1.6845063820762691
+ - -0.1653232960402496
+ - -1.4833185375641378
+ - 2.616299138795272
+ - -2.899504848667755
+ - 2.1656662342884228
+ - -0.660676978346761
+ - -1.7780497192335447
+ - -2.765896187804543
+ - -1.2314462502707733
+ - 2.6673209743195208
+ - -2.877969926725752
+ - 2.026938760913268
+ - -0.4600280423913036
+ - -1.3326483750731626
+ - -2.5666382824334737
+ - -1.2389108710715626
+ - 2.7375000153104616
+ - -2.834104076183174
+ - 1.9357103478555968
+ - -0.3946596407679724
+ - -1.2798922188875856
+ - 2.463976864822319
+ - -1.8920834397203807
+ - -3.278446679909905
+ - 1.4647679545450143
+ - 1.1018652380920668
+ - -0.27012497947068687
+ - -1.459646494241274
+ - 2.5646787941000726
+ - -1.9010557973563236
+ - -3.5982010999064404
+ - 1.3623765735527824
+ - 0.9865374171569811
+ - -0.06733631913982668
+ - -1.5693713434421857
+ - 2.618120106810359
+ - -2.883447703390155
+ - 2.09976737213043
+ - -0.713161027073979
+ - -0.6317629704449288
+ - -0.49116980291285145
+ - 2.0462587377292523
+ - 2.1719256646298146
+ - 5.067386885380587
+ - 5.095690767545329
+ - -2.8953776644883966
+ - 2.142625940053898
+ - -0.7756702304943615
+ - -1.0110406952730284
+ - 2.29956975336488
+ - -2.9231873110100333
+ - 1.7073618146138987
+ - 3.4577527976134834
+ - 0.07154651970239158
+ - -0.2637719135283782
+ - -1.1262203782226559
+ - 2.374897721919834
+ - -2.9294062984247398
+ - 1.6276828064638198
+ - 3.106520502316858
+ - 0.301864509292633
+ - -0.14264539104881874
+ - -1.3130387904335947
+ - 2.483701856651578
+ - -0.7727991068911422
+ - -1.012919136284939
+ - 2.2998646425722624
+ - -2.9217502270414015
+ - 1.6897280455558685
+ - 3.180614282293513
+ - 0.07137392485935294
+ - -0.2728217535841796
+ - -1.127995724724875
+ - 2.4179159316245267
+ - -2.927788287808216
+ - 1.7353068770447035
+ - 3.5502319517308565
+ - 0.36572977338292406
+ - -0.10467556925088771
+ - -1.314626233415866
+ - 2.483644905945461
+ - -2.9256989858716023
+ - 2.2868371899018385
+ - -0.9927577007446876
+ - -0.7028458799013213
+ - 1.854311627902757
+ - 2.1194595597778356
+ - 1.072605100297511e-15
+ - 3.2888701155108375e-16
+ - 2.6267120351621394e-16
+ - 6.988642200307393e-17
+ - -3.720244804957242e-17
+ - -3.0130053812244033e-16
+ - -1.4897522832080028e-16
+ - 2.0224565976921524e-16
+ - -4.0970255739751456e-16
+ - 9.597363057146502e-17
+ - 1.9411861025088174e-16
+ - 8.12291361527073e-17
+ - 3.759225691323803e-16
+ - -1.4186147505284425e-17
+ - -1.9620724129757814e-16
+ - -4.764560328305439e-16
+ - 1.5158084725034232e-17
+ - 1.579914969976283e-17
+ - 6.724978380056115e-17
+ - -6.633988512675282e-17
+ - 9.341195561196487e-17
+ - 5.552449861762198e-17
+ - 3.2756352257099896e-17
+ - -7.122542061964414e-17
+ - 4.135903062765138e-18
+ - -4.443614250634865e-16
+ - -7.527343574232552e-17
+ - -1.1745964698252993e-16
+ - 6.646396221863577e-17
+ - 2.564259898914386e-16
+ - 5.44781151427424e-16
+ - -4.1726092024471784e-17
+ - -3.1614843011776713e-16
+ - 1.6036964125871822e-16
+ - 7.47771273747937e-17
+ - -6.020220498160935e-16
+ - 9.136726853531035e-17
+ - 4.5908523996693036e-18
+ - -2.0726561211164643e-16
+ - 1.706680398850034e-16
+ - 3.4096384849435796e-16
+ - 1.5696269111076543e-16
+ - -9.723508100560839e-17
+ - 5.925715113176752e-17
+ - -4.582580593543773e-17
+ - -3.249165446108292e-16
+ - 1.0726464593281385e-16
+ - -5.777442988376622e-16
+ - 1.0170185631339474e-16
+ - -9.58702329948959e-17
+ - 2.3031810180773364e-16
+ - 1.496369728108427e-16
+ - -7.146840492458159e-17
+ - -3.296314741023815e-16
+ - -3.8918847820619947e-16
+ - 1.5633713577252223e-17
+ - -1.6866212689956232e-16
+ - 1.0091603473146936e-16
+ - -9.181704799338607e-18
+ - 2.2747466845208258e-17
+ - 1.4905794638205559e-16
+ - -9.380228146351333e-17
+ - 1.4616281423812e-16
+ - -3.813302623869457e-17
+ - -3.7223127564886245e-17
+ - 1.3598849270371775e-16
+ - -4.674811231843436e-16
+ - 5.595876843921232e-17
+ - -4.456849140435713e-16
+ - -1.1001502146955267e-16
+ - 1.1431636065482842e-16
+ - 3.838118042246048e-17
+ - 8.023651941764368e-18
+ - 8.375203702099404e-17
+ - -1.6460894189805248e-16
+ - -8.987317355388644e-17
+ - -2.7430730828936223e-16
+ - -1.744523911874335e-16
+ - 5.591740940858467e-17
+ - -2.367184117973627e-16
+ - 4.558799150932873e-17
+ - 2.4141266177360113e-16
+ - -1.0248767789532012e-16
+ - 2.9320450787707757e-16
+ - -2.6436692377194764e-16
+ - 1.0810216630302379e-16
+ - 5.39321759384574e-17
+ - -8.726755462434441e-17
+ - 6.948317145445432e-17
+ - -5.227781471335134e-17
+ - -5.324561603003839e-16
+ - 1.8975523251966452e-16
+ - 9.29751008509603e-17
+ - 1.381391622963556e-17
+ - -2.0472720160687432e-16
+ - -1.4690727678941772e-16
+ - -2.605618929542037e-17
+ - -3.540333021726958e-16
+ - 6.190619704346858e-16
+ - 3.53536993805164e-16
+ - 1.1441975823139755e-16
+ - 8.022824761151814e-16
+ - -3.623051082982261e-17
+ - -6.88214269644119e-17
+ - -3.634631611558003e-16
+ - -2.4401828070314316e-16
+ - -4.508134338414e-17
+ - 4.7232012976777874e-17
+ - -1.4967833184147036e-16
+ - 1.1609479897181743e-16
+ - 3.58169205235461e-17
+ - -4.226892930145971e-17
+ - 1.4889251025954496e-18
+ - 1.1150394657214813e-16
+ - -1.4047594752681792e-16
+ - -1.560889815887563e-16
+ - -8.917007003321637e-17
+ - 9.098986738083304e-18
+ - -7.535615380358081e-17
+ - 1.3441684953986698e-17
+ - 1.0174321534402239e-17
+ - 1.0422475718168147e-16
+ - -6.79777027396078e-16
+ - -1.5550995515996918e-16
+ - -2.7184256855789563e-16
+ - -1.5484821066992676e-16
+ - -1.165497483087216e-16
+ - 3.103168067992683e-16
+ - -5.98878763488392e-17
+ - -1.4161332086907834e-16
+ - -1.7221900353354034e-16
+ - -2.8802428929096424e-16
+ - -3.59823566460567e-16
+ - 1.0960143116327615e-17
+ - -2.9397998970134604e-16
+ - 2.9551027383456914e-17
+ - 1.804701301437568e-16
+ - 6.140988867593676e-16
+ - -1.4281273275728023e-16
+ - -1.0664426047339908e-16
+ - 6.239630155640625e-16
+ - 2.3227231600489017e-16
+ - -7.899574849881413e-17
+ - -2.3822801641527197e-16
+ - 1.4442573495175863e-16
+ - 2.2267702089927505e-16
+ - 8.817745329815274e-17
+ - -1.2101652361650795e-16
+ - 6.088049308390284e-17
+ - -9.330597309598151e-17
+ - -2.1730034691768035e-16
+ - 6.617444900424221e-18
+ - 8.817745329815274e-17
+ - -2.069605892607675e-16
+ - 2.3690452743518713e-16
+ - 1.2444415327977456e-16
+ - -1.0430747524293678e-16
+ - -2.9199475623121877e-16
+ - -1.819797347616661e-18
+ - -1.3524403015242001e-17
+ - 1.8913484706024975e-16
+ - -5.346947178331055e-17
+ - -7.527343574232552e-18
+ - -8.519960309296184e-17
+ - 3.540333021726958e-16
+ - 5.300159774933524e-17
+ - 1.9438744394996147e-17
+ - -3.780215399367336e-17
+ - 9.016268676828e-17
+ - -2.335130869237197e-16
+ - -1.0670629901934055e-17
+ - 3.864587821847745e-16
+ - 2.043136113005978e-17
+ - -3.7512640779279805e-17
+ - 8.3876114112877e-17
+ - 4.4915907261629397e-17
+ - -6.600901288173161e-17
+ - 5.790264287871194e-17
+ - -1.1114825890875033e-15
+ - -4.803437817095432e-16
+- - 3.5346423179861297
+ - 2.981483877330219
+ - -1.5860910067448213
+ - -0.037090676665067254
+ - 1.5684017438180915
+ - -2.707350553151069
+ - 2.8145808540659987
+ - -2.087926294303483
+ - 0.5530777182215356
+ - 1.581679666123907
+ - 2.8895233963550804
+ - 1.308757958382957
+ - -2.7499300696356404
+ - 2.788195124088476
+ - -1.9401641268989995
+ - 0.35633062991919917
+ - 1.1562887844230874
+ - 2.664983209123881
+ - 1.3086157037961175
+ - -2.811009168837606
+ - 2.731873627145139
+ - -1.8467520543377007
+ - 0.19184080144984206
+ - 1.3722340757038238
+ - -2.57172630130211
+ - 1.8800113272425505
+ - 3.287692190863309
+ - -1.290871270642015
+ - -1.0099953231104206
+ - 0.06928840345076136
+ - 1.5474191411964902
+ - -2.660131682200242
+ - 1.8823155532027298
+ - 3.5940969539679934
+ - -1.1694282204094064
+ - -0.8905533268461674
+ - -0.134511135369311
+ - 1.650954883229037
+ - -2.7089458864841682
+ - 2.7932623562860743
+ - -2.0185754790480823
+ - 0.5112603847031134
+ - 0.9107027540478291
+ - 0.7688569783710686
+ - -1.915055431124646
+ - -2.045279888670476
+ - -5.083345988127751
+ - -5.120526965679021
+ - 2.8062455495457943
+ - -2.0584642145007948
+ - 0.5682035537557975
+ - 1.116472895736956
+ - -2.4240978737722774
+ - 2.8705875245072594
+ - -1.646646471270085
+ - -3.371039492719926
+ - -0.2764130106438715
+ - 0.15472451881414664
+ - 1.2301181494885627
+ - -2.491165665849743
+ - 2.8670311170395313
+ - -1.5605986908491951
+ - -3.014876791348559
+ - -0.48791267174422853
+ - 0.03442451123345281
+ - 1.408905760201509
+ - -2.591255882674169
+ - 2.8561313002516244
+ - -2.21440395841523
+ - 0.7904197188312001
+ - 0.8137749889551805
+ - -1.3867507250158089
+ - -2.0366569844444524
+ - 3.0719321254360827
+ - 1.8378232164307633
+ - -2.1310494074142143
+ - 0.5948161788434523
+ - 1.0067930295985006
+ - -1.524112004789525
+ - -2.5154128789726373
+ - 3.391674930685078
+ - 1.8889779690789308
+ - -1.9881444572237579
+ - 0.4700374572720184
+ - 1.120423229201705
+ - -2.4781884042188844
+ - 2.87004505907937
+ - -2.410516824335738
+ - 2.8721351015884977
+ - 3.643391655187079
+ - 5.060915546026174
+ - 4.15006871772046
+ - -2.7205914149164463
+ - 1.6743125401188326
+ - -0.16552657295602435
+ - -1.556343530567467
+ - 2.60194732121364
+ - -2.8838244079476842
+ - 1.5713087794644904
+ - 3.3055205521406084
+ - 0.890572060759618
+ - 0.1759565831842282
+ - -1.65890375185547
+ - 2.653594783722627
+ - -2.8471015353037896
+ - 1.3792221079466802
+ - 2.766614055928204
+ - 0.9887688064294645
+ - 0.2570149590209077
+ - -1.8228285332355183
+ - 2.723240047390733
+ - -2.8191319351020283
+ - 1.8544084782258399
+ - -0.39370416061489166
+ - -1.274284574343569
+ - 1.566936401473956
+ - 2.416279470185487
+ - -2.8436064993239625
+ - -1.753131062866903
+ - 1.7596426470682631
+ - -0.1908272292953203
+ - -1.4530511031015136
+ - 1.6399252606583208
+ - 2.7933342142577096
+ - -2.9541660505708323
+ - -1.7057211570379023
+ - 1.5944690191394095
+ - -0.06563688051355537
+ - -1.5599799538489176
+ - 2.642405486290798
+ - -2.8683142511202795
+ - 2.0875847393636615
+ - -2.276090873251306
+ - -2.3707738267871568
+ - -2.7764558415672145
+ - -2.8046571042645487
+ - -3.726169800711337
+ - -3.6741069381833387
+ - 2.6207079856475746
+ - -2.8807082875074173
+ - 2.1310795414558488
+ - -0.6775092577582088
+ - -1.0075661777165519
+ - 2.290854137772461
+ - -1.8823781068607663
+ - -3.46634368411015
+ - 1.9018160321231272
+ - 1.2424520249540012
+ - -0.555482384510277
+ - -1.124467379453271
+ - 2.4082857817977974
+ - -1.8823457387825817
+ - -3.245263029158581
+ - 1.5462915193975921
+ - 1.1421104909875186
+ - -0.3556271338765805
+ - -1.310215201866509
+ - 2.4723136831548262
+ - -0.6772533336985409
+ - -1.006073699703785
+ - 2.2880491218072243
+ - -1.8703467357709007
+ - -3.1860315468712557
+ - 1.7467396048792352
+ - 1.2432360362899901
+ - -0.5553672443443388
+ - -1.1933437665444784
+ - 2.4053864729928933
+ - -1.979090734159197
+ - -3.6974576725999726
+ - 1.7482884638449807
+ - 1.167429740998682
+ - -0.35574465706713565
+ - -1.3083858337574457
+ - 2.469368985220172
+ - -2.9041604611887406
+ - 2.2753682775109962
+ - -0.9864269259060306
+ - 0.510100525947781
+ - 0.7933477046696551
+ - -9.115530350334365e-16
+ - -6.695613468310482e-16
+ - -3.2557828910087164e-16
+ - 7.097209655704977e-17
+ - -9.702828585247013e-17
+ - 2.6895777617161695e-16
+ - 3.510554519675049e-16
+ - -4.3956377751067886e-16
+ - 5.3270431448414976e-17
+ - -6.468552390164676e-17
+ - -7.343295887939503e-17
+ - -1.9342584648786858e-16
+ - -4.020097777007714e-16
+ - -2.4021324988539924e-16
+ - 1.2407709188295415e-16
+ - 4.20207751176938e-16
+ - -4.248606421225488e-17
+ - 1.647743780205631e-16
+ - 9.628382330117241e-17
+ - 2.2499312661442353e-16
+ - 1.5406238908800139e-18
+ - 1.5832236924264947e-16
+ - 7.531479477295317e-17
+ - 2.605618929542037e-16
+ - -9.992341799640573e-17
+ - 4.074691697436214e-16
+ - 7.146840492458159e-17
+ - 8.008142305278998e-17
+ - 2.2548943498195534e-16
+ - -2.0944213109842658e-16
+ - -2.9811589276411117e-16
+ - 6.7001629616795234e-18
+ - -4.028369583133244e-17
+ - 5.2029660529585435e-17
+ - 2.1423977865123414e-17
+ - 4.552802091491864e-16
+ - 4.1028158382630167e-17
+ - 8.156000839772852e-17
+ - 2.762369655620836e-16
+ - -2.6887505811036165e-16
+ - -1.74038800881157e-16
+ - -1.4591466005435408e-16
+ - 4.748016716054378e-17
+ - 7.643148859989974e-17
+ - 8.598542467488721e-17
+ - 2.101865936497243e-16
+ - -2.671793378546279e-17
+ - 1.1620233245144933e-15
+ - -4.77283213443097e-16
+ - 1.22670884841614e-16
+ - -1.9132687568351528e-16
+ - -2.307006728410394e-16
+ - 1.0323214044661784e-16
+ - 3.1449406889266107e-16
+ - 1.8768728098828195e-16
+ - -8.023651941764368e-18
+ - 2.1175823681357506e-16
+ - 2.0514079191315084e-16
+ - -4.326154603652334e-17
+ - 2.3326493273995377e-17
+ - -6.840783665813539e-17
+ - 2.040654571168319e-16
+ - -2.84612169264183e-16
+ - 1.369190708928399e-16
+ - -4.086272226011956e-17
+ - -6.195582788022177e-17
+ - 3.212769499155959e-16
+ - -2.008394527278751e-16
+ - 5.002788344720711e-16
+ - 1.8032537353656e-16
+ - 6.195582788022177e-17
+ - -4.7562885221799085e-17
+ - 5.035461978916555e-18
+ - -1.7288074802358278e-17
+ - 2.3690452743518713e-16
+ - 2.339680362606239e-16
+ - 2.0878038660838416e-16
+ - 1.3797372617384502e-16
+ - -4.168990287267259e-17
+ - 2.9352504036444187e-16
+ - 1.1580528575742387e-18
+ - -5.618210720460164e-16
+ - 1.9637267742008875e-16
+ - -2.487125306793816e-16
+ - 1.8640515103882476e-16
+ - -8.065010972392019e-17
+ - 4.632211430296955e-18
+ - 2.240005098793599e-16
+ - -1.1911400820763599e-16
+ - 3.212769499155959e-16
+ - 1.1057750428608874e-15
+ - -1.3446648037662016e-15
+ - -3.9506146055532597e-16
+ - 3.416255929844004e-17
+ - 2.737554237244245e-16
+ - 7.312276614968765e-17
+ - 4.802610636482879e-16
+ - 5.035875569222832e-16
+ - -8.437242248040881e-16
+ - -3.6197423605320486e-16
+ - -2.10103875588469e-17
+ - -8.103061280569458e-16
+ - 8.883919778819516e-17
+ - 1.74038800881157e-16
+ - 2.4658254060205755e-16
+ - -1.2755125045567687e-16
+ - 1.7288074802358278e-17
+ - 2.067951531382569e-17
+ - 2.6237135054416347e-16
+ - -1.0852609636695722e-16
+ - -4.648755042548015e-17
+ - -2.8918234214853848e-16
+ - -3.029342198322325e-16
+ - -6.047724253528324e-17
+ - 8.908735197196107e-17
+ - 3.878443097108008e-17
+ - 1.3590577464246245e-16
+ - 7.585246217111263e-17
+ - 2.0927669497591597e-17
+ - 1.1200025493967995e-16
+ - -6.336203492156192e-17
+ - -3.632977250332897e-16
+ - 1.1272817387872661e-15
+ - 3.3848230665669888e-16
+ - 2.256238518314952e-16
+ - -2.2003004293910534e-16
+ - -1.1580528575742386e-17
+ - -6.566159702445933e-16
+ - 1.3598849270371775e-16
+ - 2.3322357370932615e-16
+ - 3.391440511467413e-16
+ - 3.6726819197354424e-16
+ - 1.3294446804952259e-15
+ - 9.003860967639705e-17
+ - 3.268190600197012e-16
+ - -4.8472783895607416e-17
+ - -1.0195001049716065e-16
+ - -6.147606312494101e-16
+ - 1.9025154088719634e-16
+ - 4.830734777309681e-17
+ - -2.302870825347629e-16
+ - -5.415551470384672e-16
+ - 1.2415980994420945e-16
+ - 3.6865371949957056e-16
+ - -3.629668527882685e-16
+ - -1.9000338670343043e-16
+ - -8.172544452023912e-17
+ - 1.8231060700668727e-16
+ - 1.446325301048969e-16
+ - 6.577636833445107e-17
+ - 1.6163109169286158e-16
+ - -8.40415502353876e-17
+ - -9.270626715188056e-17
+ - 2.6527682244575598e-16
+ - 3.249992626720845e-16
+ - -1.2722037821065566e-16
+ - 5.128519797828771e-18
+ - -4.423348325627315e-17
+ - -8.586134758300426e-17
+ - -3.527925312538663e-17
+ - -1.2192642229031628e-16
+ - 1.7858829425019865e-16
+ - 1.01908651466533e-16
+ - 1.742042370036676e-16
+ - -1.4459117107426924e-16
+ - -6.526455033043388e-17
+ - -5.4686978247412036e-17
+ - -1.3929721515392986e-16
+ - -3.7719435932418056e-17
+ - 2.984467650091324e-16
+ - 1.0386286566368953e-16
+ - -2.901749588836021e-16
+ - 1.1506082320612615e-16
+ - 3.0787662399223685e-16
+ - -1.5716431638507523e-16
+ - -1.4690727678941772e-16
+ - 7.254373972090053e-17
+ - -1.2143011392278446e-16
+ - 5.09543257332665e-16
+ - 1.2483809804650292e-15
+- - -5.043946820636398
+ - -4.143025715727061
+ - 2.6426584351516094
+ - -1.6114775495685074
+ - -0.017465394982438914
+ - 1.642726360805044
+ - -2.7187280768700575
+ - 2.8374990874622315
+ - -1.5208922133297613
+ - -3.234170012049669
+ - -1.0756436381391392
+ - -0.27373176745840516
+ - 1.7444228720602595
+ - -2.763150549981525
+ - 2.792659493148
+ - -1.3242531803616266
+ - -2.6929919299997804
+ - -1.1492188947193462
+ - -0.34981527212457664
+ - 1.9014979099569422
+ - -2.8257526316401385
+ - 2.756763255686623
+ - -1.799449203741027
+ - 0.2129383709327471
+ - 1.366724195809536
+ - -1.626845790231724
+ - -2.5409007873397473
+ - 2.776393565701161
+ - 1.7294533505730905
+ - -1.6984452518880218
+ - 0.00984425277592317
+ - 1.5437478539063973
+ - -1.6955445897708863
+ - -2.9202409212439018
+ - 2.870109892449156
+ - 1.6750385111896338
+ - -1.5283706737284486
+ - -0.11814456062600139
+ - 1.6462882733240252
+ - -2.754897612746257
+ - 2.8171209555842607
+ - -2.044925401037419
+ - 2.0617388104065237
+ - 2.1624076201398736
+ - 2.7722880943454644
+ - 2.811411615187195
+ - 3.9205478948351966
+ - 3.8736740409710744
+ - -2.734405178099541
+ - 2.829102006280422
+ - -2.086424197818931
+ - 0.4970131189316154
+ - 1.1061280769917852
+ - -2.43119094338866
+ - 1.902194557594646
+ - 3.531539161043273
+ - -1.7574295218644476
+ - -1.1765214451299455
+ - 0.37499257882575926
+ - 1.2231627838096921
+ - -2.5389702741551146
+ - 1.8948736739950256
+ - 3.29433823108953
+ - -1.406594796517258
+ - -1.0723720451606713
+ - 0.1708169789831855
+ - 1.4036929029289074
+ - -2.599882930145737
+ - 2.8672195676319334
+ - -2.2424788359121695
+ - 0.8124969118470635
+ - 0.45995998652986836
+ - 0.2632910382063048
+ - -3.268510964159621
+ - -1.7693415074918186
+ - 2.8500077830262587
+ - -2.10419276891385
+ - 0.6157861912982795
+ - 0.5773542589265898
+ - 0.548149884356865
+ - -3.777952940038619
+ - -1.9222409058603231
+ - 2.807521281394889
+ - -2.014357211842643
+ - 0.49274580551758157
+ - 1.1982586490913978
+ - -2.4848754789850243
+ - 2.890346087628624
+ - -4.110176773020335
+ - -5.076624461552548
+ - -4.768138368749515
+ - -3.8320566149802384
+ - 2.8228562129266095
+ - -2.745123606999505
+ - 1.701630070826397
+ - -0.08986707655660485
+ - -1.5503542037486235
+ - 2.612575611421745
+ - -1.9913817270341927
+ - -3.796698654320272
+ - 1.289485296687845
+ - 0.9473885467341334
+ - 0.03558031365253864
+ - -1.6561030772038914
+ - 2.6941549525778536
+ - -1.8691559521974177
+ - -3.334954537299872
+ - 0.9217963999825413
+ - 0.8177388504586038
+ - 0.23861925339462395
+ - -1.8217988425716585
+ - 2.73560042465018
+ - -2.817900795622188
+ - 1.8819998268779559
+ - -0.4132024119360521
+ - -0.7388116507511607
+ - -0.774479564613886
+ - 3.331606937254567
+ - 1.852967612054073
+ - -2.7799814150355107
+ - 1.7238488557697158
+ - -0.2090252531482669
+ - -0.8532607002103034
+ - -1.089291111877316
+ - 3.6222523746567887
+ - 1.8893352546184305
+ - -2.7089242530175177
+ - 1.619465042454584
+ - -0.0855434554061278
+ - -1.6349741715990571
+ - 2.652833358847646
+ - -2.890894382757143
+ - 4.493060700140858
+ - 4.511241123382384
+ - 2.658092505371637
+ - 2.5859941931452837
+ - 1.1826115027856903
+ - 1.0613882293939905
+ - -1.585424467410001
+ - 2.6304722530362867
+ - -2.9008872911425794
+ - 2.090585805557687
+ - -0.6984878163672263
+ - -0.9997927232234649
+ - 1.4594480437967399
+ - 2.3703150740432974
+ - -3.2911551643675123
+ - -1.8361159144908388
+ - 2.0039780680593138
+ - -0.5733523414960761
+ - -1.1888121806359497
+ - 1.5399702526966466
+ - 2.351307834189888
+ - -2.92234454159286
+ - -1.7887795305212242
+ - 1.8511864444205086
+ - -0.3724506173538658
+ - -1.3026444113244529
+ - 2.5267849030150344
+ - -0.7013985510174866
+ - -0.9964153123170368
+ - 1.456870365089983
+ - 2.1760375148601168
+ - -3.0285460338244574
+ - -1.8283007408709564
+ - 2.0056370765177705
+ - -0.5003696631213743
+ - -1.1854542895534184
+ - 1.5948377331019101
+ - 2.6678685539891145
+ - -3.3288487981986914
+ - -1.8700424095603587
+ - 1.853054947305563
+ - -0.3755791262063752
+ - -1.2993090731219432
+ - 2.524409263796329
+ - -2.9256974915725777
+ - 2.30184993721738
+ - -2.7385005168642267
+ - -3.4860328287221654
+ - 1.492316543106917e-15
+ - 2.1725691993552134e-15
+ - 3.1143350062621487e-16
+ - 1.7364847502960854e-16
+ - -2.0770505181206522e-16
+ - -2.127508535486387e-16
+ - -4.37413107918041e-16
+ - -2.3210687988237957e-16
+ - -5.427959179572968e-16
+ - 3.192917164454687e-17
+ - 1.3693975040815373e-16
+ - 6.813900295905564e-16
+ - 9.727644003623604e-17
+ - 2.230492521749239e-16
+ - -8.826017135940804e-17
+ - -4.02175213823282e-16
+ - -1.3395156044530592e-16
+ - -2.404458944326798e-16
+ - -1.1245520427658411e-16
+ - -2.4401828070314313e-18
+ - 5.896763791737396e-17
+ - -1.2755125045567687e-16
+ - -8.197359870400503e-17
+ - -1.065822219274576e-16
+ - 1.8005653983748027e-16
+ - -3.3742765137569376e-16
+ - -8.735027268559971e-17
+ - 2.69660879692287e-17
+ - 2.479887476433977e-16
+ - 3.356698925740186e-16
+ - 6.435465165662555e-17
+ - 1.4719679000381127e-16
+ - 2.613477145361291e-16
+ - 9.802090258753377e-17
+ - -2.26482051717019e-16
+ - -4.805919358933091e-16
+ - -8.974909646200349e-17
+ - -3.3076884744464194e-17
+ - -2.2085722355165836e-16
+ - 4.521369228214849e-16
+ - 1.4823076576950256e-16
+ - 2.247449724306576e-16
+ - 2.936904764869525e-16
+ - -1.923194924185789e-17
+ - -3.5403330217269584e-17
+ - -4.735609006866083e-17
+ - -1.5426918424113966e-17
+ - -4.6551656922953015e-16
+ - 4.0647655300855775e-16
+ - 5.558653716356346e-17
+ - 7.659692472241035e-17
+ - 1.0501057876360685e-16
+ - 6.400309989629052e-17
+ - -4.3416642401377034e-17
+ - -6.631093380531345e-16
+ - -5.69100261436483e-17
+ - -7.734138727370808e-17
+ - -6.356883007470018e-17
+ - 1.095600721326485e-16
+ - 9.686284972995953e-17
+ - 3.297969102248921e-16
+ - -3.3500814808397617e-18
+ - 2.8827244347473014e-16
+ - -1.3954536933769577e-16
+ - -1.3408597729484579e-16
+ - -1.44679059014353e-16
+ - -3.9762572045424035e-16
+ - 1.3535776748664607e-16
+ - -2.5923840397411887e-16
+ - -1.2945376586454883e-16
+ - -1.3741537926037172e-16
+ - -4.549493369041652e-18
+ - -6.427193359537025e-17
+ - -1.5485338054875521e-16
+ - -4.60077856701994e-16
+ - -2.1246134033424513e-16
+ - 3.821574429994987e-17
+ - -4.79764755280756e-17
+ - 1.0745076157063828e-16
+ - -2.759060933170624e-16
+ - 2.7379678275505213e-17
+ - 9.92616735063633e-18
+ - -4.7893757466820296e-17
+ - 1.4905794638205559e-16
+ - -1.7627218853505017e-16
+ - -3.941515618815176e-17
+ - -2.6258848545495864e-16
+ - -2.528070747115191e-16
+ - -7.782942383511436e-16
+ - 1.43908747068913e-16
+ - -2.80579663777987e-16
+ - 6.68279216881591e-16
+ - 2.9968753592796193e-16
+ - -2.790493796447639e-16
+ - -3.2241949313668477e-16
+ - -1.1133851044963753e-16
+ - -1.9236085144920656e-16
+ - -1.2262952581098635e-16
+ - 1.577019837832347e-16
+ - -6.840783665813539e-17
+ - 1.7970498807714524e-16
+ - 2.189547081427864e-16
+ - 1.9753073027766298e-16
+ - -3.373035742838108e-16
+ - -2.8603905582083697e-16
+ - -1.7205356741102976e-17
+ - -2.2747466845208258e-17
+ - 5.939156798130739e-17
+ - 2.2036091518412655e-16
+ - 1.258141711693155e-16
+ - 6.228670012524298e-17
+ - 1.1208297300093525e-16
+ - 1.253178628017837e-16
+ - 1.71433181951615e-17
+ - -6.948317145445432e-17
+ - -1.2490427249550718e-16
+ - -2.9319416811942066e-16
+ - -2.1332987997742581e-16
+ - 2.4087499437544166e-16
+ - -6.121136532892405e-17
+ - 1.6189992539194132e-16
+ - -1.2583485068462932e-17
+ - -5.302227726464907e-16
+ - -1.065822219274576e-16
+ - -1.4301952791041848e-16
+ - -1.892589241521327e-16
+ - -7.762056073044472e-17
+ - 1.225054487191034e-16
+ - -2.1382618834495763e-16
+ - -4.989967045226139e-17
+ - 5.219509665209604e-17
+ - -2.0193546703950786e-16
+ - -4.501516893513577e-16
+ - -5.0292581243224076e-17
+ - -3.296314741023815e-16
+ - 2.750375536738817e-16
+ - 7.378451063973007e-17
+ - 5.252596889711725e-18
+ - -1.7925003874024107e-16
+ - 5.600012746983997e-17
+ - 1.9430472588870618e-16
+ - 1.9049969507096225e-16
+ - -6.340339395218957e-17
+ - -3.695015796274374e-16
+ - 2.6717933785462794e-16
+ - 2.88112177231048e-16
+ - 7.161316153177837e-17
+ - 7.279189390466644e-18
+ - -2.572531705039916e-16
+ - 4.485386871568792e-17
+ - 3.391440511467413e-18
+ - 2.781808400015832e-16
+ - 1.7354249251362518e-16
+ - -2.9480717031389906e-16
+ - -4.902699490601795e-16
+ - 3.8050308177439267e-17
+ - -3.4311451808699583e-16
+ - -1.3441684953986698e-18
+ - -2.1655588436638262e-16
+ - -1.4889251025954496e-18
+ - 2.646977960169688e-18
+ - -6.625716706549752e-17
+ - -7.122025074081568e-17
+ - -7.994700620325011e-17
+ - 2.8785885316845363e-16
+ - -2.62423049332448e-17
+ - -1.0451427039607503e-16
+ - 9.851721095506558e-17
+ - -1.558408274049904e-16
+ - 7.407402385412363e-17
+ - -9.148617574836485e-17
+ - 3.6606878008534235e-16
+ - -4.235164736271501e-17
+ - -2.953034786814309e-17
+ - -3.3149263048062584e-17
+ - 6.143883999737613e-17
+ - -6.832511859688009e-17
+ - -5.3187713387159673e-17
+ - -1.1377042145054343e-15
+ - -5.09791411516431e-16
+- - 4.876019198496413
+ - 3.92729606545652
+ - -2.8967966628383177
+ - 2.6410889428988993
+ - -1.6095528092140396
+ - -0.11672311649558584
+ - 1.645498997456529
+ - -2.7215765858585113
+ - 1.9805810397784778
+ - 3.808012832611986
+ - -1.0859395515693935
+ - -0.8471018881123468
+ - -0.2401678684647578
+ - 1.7490903476975845
+ - -2.7906084261889417
+ - 1.84917081316315
+ - 3.330806898096463
+ - -0.7400124723959426
+ - -0.7203482822916879
+ - -0.44418079319854525
+ - 1.9059025605893736
+ - -2.8272717001638448
+ - 2.726187005255709
+ - -1.7978621562428936
+ - 0.20763487527020538
+ - 0.8361846315075322
+ - 0.9562505361086464
+ - -3.3357112682219006
+ - -1.8729171486613851
+ - 2.6834915451383954
+ - -1.6308199484301926
+ - 0.0044283023559449144
+ - 0.9482316807743224
+ - 1.2826023184841808
+ - -3.612563393912609
+ - -1.9012508706676787
+ - 2.5998926375214815
+ - -1.5242838712838411
+ - -0.12105203867732965
+ - 1.7270003211765212
+ - -2.7568150915841354
+ - 2.8167998384167605
+ - -4.33769690337808
+ - -4.364062681161198
+ - -2.7076306367572633
+ - -2.6431244398850846
+ - -1.4651214198598983
+ - -1.3500904247591528
+ - 1.6799804544021808
+ - -2.737052082130025
+ - 2.829179570480281
+ - -2.0159552590722223
+ - 0.4942736019376766
+ - 1.1113228981105134
+ - -1.5267267542975276
+ - -2.521995948383464
+ - 3.199860895156654
+ - 1.8039841701230728
+ - -1.9225838400813493
+ - 0.36967045225519635
+ - 1.2976355715832018
+ - -1.600181155547006
+ - -2.481729607520942
+ - 2.8264856887284067
+ - 1.7503841226952186
+ - -1.7641496991838068
+ - 0.16543557376791432
+ - 1.4064386139256697
+ - -2.645159789918586
+ - 2.867593186929004
+ - -2.2396967080760604
+ - 0.6147824686056043
+ - 1.5889356257182494
+ - 2.3818987055034406
+ - 1.1153231175964486
+ - -2.696054576025479
+ - 2.835574115840463
+ - -2.101043204714508
+ - 0.5561399796853987
+ - 1.591396456798657
+ - 2.9114415145263752
+ - 1.3188529392404726
+ - -2.7710028736736048
+ - 2.8068634900169855
+ - -2.012796014494116
+ - 0.39490244961979265
+ - 1.2010576950932272
+ - -2.4884266138319306
+ - 3.981466211298543
+ - 4.8221591741406655
+ - 2.8978453608660804
+ - 2.2466232366772254
+ - -2.067481620886376
+ - 2.824337448736428
+ - -2.7447077243692988
+ - 1.621123042515872
+ - -0.08734994584211898
+ - -1.5550636611618338
+ - 1.7501101658141696
+ - 3.0283981967612617
+ - -3.03249393030168
+ - -1.7518339016535063
+ - 1.5178487139612935
+ - 0.0406416099041615
+ - -1.7239703730037217
+ - 1.7379052219274538
+ - 2.79638107864999
+ - -2.518318661051598
+ - -1.6167563130738307
+ - 1.3396999404184389
+ - 0.24365832479934063
+ - -1.8242064950101482
+ - 2.766335519077298
+ - -2.8178984813420174
+ - 1.878494826250848
+ - -0.33011644542004015
+ - -1.1161776076536791
+ - -2.714235214919406
+ - -1.3388050255318893
+ - 2.8009793118772737
+ - -2.753209165104811
+ - 1.72003222275773
+ - -0.2122863589867871
+ - -0.9675464764225827
+ - -3.087915614053252
+ - -1.4465283156979676
+ - 2.8437290975428304
+ - -2.70751329955328
+ - 1.6175415491265421
+ - 0.013307871336032031
+ - -1.637631192406823
+ - 2.6553326721607102
+ - -5.210104741933452
+ - -5.146052666949045
+ - -1.6323598581443697
+ - -1.4771365682591444
+ - 1.7408624868295897
+ - 1.8863307755502317
+ - -0.04680657720537433
+ - -1.5880708556935357
+ - 2.6290745115173912
+ - -2.882448050285488
+ - 2.087690042990613
+ - -0.6938686990898384
+ - -0.5552545769333646
+ - -0.49456424522009623
+ - 3.58431235784502
+ - 1.8190642265420514
+ - -2.856347090579394
+ - 1.9992007154867626
+ - -0.4927733866513869
+ - -0.6892879864892862
+ - -0.6829772507808296
+ - 3.3243672036245226
+ - 1.8401496837525182
+ - -2.8044022886761235
+ - 1.8463255469840156
+ - -0.37047458864252314
+ - -1.3890055639973742
+ - 2.52563642429814
+ - -0.6966040265145523
+ - -0.5629870557188504
+ - -0.45035172757748904
+ - 3.301563361989366
+ - 1.8052641591591576
+ - -2.859158461262227
+ - 1.9462140450297811
+ - -0.49538416530633383
+ - -0.684350574334653
+ - -0.7598260982630244
+ - 3.7997565342202027
+ - 1.9501676342101275
+ - -2.8073284549111066
+ - 1.8496306885222331
+ - -0.37300484465966194
+ - -1.3881484068851673
+ - 2.526603703850321
+ - -2.926480236972623
+ - 4.049678864849458
+ - 5.011789966683994
+ - -8.258571235729427e-16
+ - -1.4755247766720906e-15
+ - -1.4653504551376885e-16
+ - -9.30578189122156e-17
+ - -7.965749298885655e-17
+ - 1.06416785804947e-16
+ - 2.1852043832119606e-16
+ - 4.336494361309247e-16
+ - 4.004794935675483e-16
+ - 5.10370437945218e-17
+ - -1.3012585011224817e-16
+ - -7.823474233526535e-16
+ - 1.5604762255812865e-16
+ - -1.1121443335775457e-16
+ - -1.3437549050923935e-16
+ - 6.106247281866449e-16
+ - 1.0091603473146936e-16
+ - 1.0757483866252124e-16
+ - 2.8231674306434835e-16
+ - -1.8089923008651867e-16
+ - 5.227781471335134e-17
+ - 1.3987624158271698e-16
+ - 1.375601358675685e-16
+ - 5.190558343770248e-18
+ - -2.856668245451881e-16
+ - -4.218621124020441e-18
+ - 4.7314731038033177e-17
+ - -5.525566491854224e-17
+ - -3.966124242038629e-16
+ - -2.3980999933677964e-16
+ - 2.2995621028974166e-17
+ - -1.7415253821538304e-16
+ - -3.4465514197787584e-16
+ - -6.660871882583255e-17
+ - 1.0961177092093307e-16
+ - 3.6826080870860787e-16
+ - 7.019661473278131e-17
+ - -5.004442705945817e-17
+ - 5.633099971486118e-17
+ - -4.781931121169053e-16
+ - 5.558653716356346e-17
+ - -1.4545971071744992e-16
+ - -4.104470199488123e-16
+ - 5.2939559203393765e-17
+ - 1.9058241313221755e-16
+ - 2.1804480946897807e-16
+ - 7.560430798734672e-17
+ - 5.733757512276165e-16
+ - -3.6776450034107605e-16
+ - 5.922613185879678e-17
+ - 1.108422020821057e-16
+ - 4.9299964508160443e-17
+ - -2.2815450751802463e-16
+ - 6.534726839168919e-17
+ - 8.238718901028154e-17
+ - -1.2821299494571927e-17
+ - 1.6857940883830702e-16
+ - 2.3285134243367726e-17
+ - -1.0918784085699964e-17
+ - 1.6312001679545703e-16
+ - -4.149551542872263e-16
+ - -1.5360743975109721e-16
+ - -2.0249381395298115e-16
+ - 2.241659460018705e-16
+ - 1.4541835168682227e-16
+ - 2.416194569267394e-16
+ - 2.785944303078597e-16
+ - -2.3553967942447463e-16
+ - 3.788487205492866e-17
+ - 3.416255929844004e-17
+ - 2.6559735493312027e-16
+ - 1.3267977025350564e-16
+ - 7.392926724692685e-17
+ - -7.4859845436049e-17
+ - 7.947551325409489e-16
+ - 3.13087861851321e-17
+ - -2.2790893827367295e-16
+ - -1.5087774372967222e-16
+ - 8.288349737781336e-17
+ - 2.6635215724207488e-17
+ - -1.6626330312315856e-17
+ - -3.8050308177439267e-17
+ - 6.898686308692251e-17
+ - 6.470620341696059e-17
+ - 8.681260528744024e-17
+ - 9.049355901330122e-17
+ - 1.288747394357617e-16
+ - -8.933550615572699e-18
+ - -2.0547166415817205e-16
+ - 5.90937829607883e-16
+ - -1.018259334052777e-16
+ - -1.1249656330721176e-16
+ - -2.3476419760020617e-16
+ - 3.603198748280988e-16
+ - 2.656904127520325e-16
+ - 1.919059021123024e-17
+ - 9.132073962585424e-17
+ - 2.8537731133079455e-17
+ - -1.2324991127040112e-16
+ - 2.355810384551023e-16
+ - -2.1812752753023337e-16
+ - 3.601544387055882e-16
+ - -2.3909655605845265e-16
+ - 1.522012327097571e-17
+ - -1.6746271501136043e-16
+ - 1.939945331589988e-16
+ - -1.3565762045869652e-17
+ - -3.563080488572167e-17
+ - 3.331883507363595e-16
+ - -4.7811039405564993e-17
+ - 2.4195032917176056e-18
+ - -4.521059035485141e-17
+ - -3.8778227116485932e-16
+ - 1.8578476557941e-16
+ - -6.989676176073084e-18
+ - -1.1307558973599888e-16
+ - 2.897613685773256e-16
+ - 1.3292792443727155e-16
+ - 9.529120656610878e-17
+ - -1.225881667803587e-16
+ - -1.5443462036365024e-16
+ - 1.0571368228427692e-16
+ - 3.2243500277317014e-16
+ - 4.921724644690514e-17
+ - -5.343586757092558e-17
+ - 1.2192642229031628e-16
+ - -1.737079286361358e-17
+ - -3.8604519187849797e-16
+ - -3.010937429693021e-17
+ - -9.041084095204591e-17
+ - -1.9868878313523722e-16
+ - 2.0811864211834174e-16
+ - 2.576667608102681e-16
+ - 3.9574646950009644e-16
+ - 1.7639626562693313e-16
+ - -3.9222836695733185e-16
+ - -2.043136113005978e-17
+ - -4.559419536392289e-16
+ - 1.8131799027162364e-16
+ - -1.1135918996495135e-16
+ - 1.2688950596563445e-16
+ - -3.982978047019397e-16
+ - 1.859502017019206e-16
+ - 2.541098841762901e-16
+ - -3.123433993000232e-16
+ - -3.8331549585707298e-16
+ - -6.948317145445432e-18
+ - 3.4443800706708067e-16
+ - 3.9820474688302747e-16
+ - -8.677124625681259e-17
+ - -8.213903482651564e-17
+ - -3.265709058359353e-16
+ - -1.5418646617988433e-16
+ - 2.476578753983765e-16
+ - 4.3352535903904176e-16
+ - -1.0685105562653734e-16
+ - 4.9382682569415746e-17
+ - 3.7553999809907456e-17
+ - 3.416255929844004e-17
+ - 8.823949184409421e-17
+ - -5.955700410381799e-17
+ - -6.700162961679524e-17
+ - -6.875938841847043e-17
+ - 5.0209863181968774e-17
+ - 5.209583497858968e-16
+ - 6.220398206398768e-17
+ - 1.7453510924868881e-16
+ - -1.373119816838026e-16
+ - 2.1897538765810023e-16
+ - -1.2366350157667764e-16
+ - 2.7296960214249913e-16
+ - -2.39055197027825e-16
+ - 4.479183016974644e-17
+ - -4.21034931789491e-17
+ - -2.1548054957006368e-17
+ - -1.2093380555525265e-16
+ - -1.163015941249557e-16
+ - 7.708806321111371e-17
+ - 1.1426672981807524e-15
+ - -5.924681137411061e-17
+- - -2.3671103134277582
+ - -1.8558778685073487
+ - 1.576710659511823
+ - -2.039759824402159
+ - 1.7879997368092837
+ - -0.9535659203862693
+ - -0.21133476232066167
+ - 1.254928404669784
+ - -1.2937335286373715
+ - -2.292338516875443
+ - 1.911178263289337
+ - 1.1350287867406397
+ - -0.8749726572201089
+ - -0.2988117466123451
+ - 1.3639077068644623
+ - -1.2681381456214391
+ - -2.090576820180758
+ - 1.5643275691776948
+ - 1.038851632501296
+ - -0.7442675594518601
+ - -0.43993635919466484
+ - 1.4258621753105238
+ - -2.0180717567715347
+ - 1.8569116051279402
+ - -1.1484822555465581
+ - 0.0735835910691864
+ - 0.5124180190256735
+ - 2.043617690793133
+ - 1.040085479708155
+ - -2.030809081742425
+ - 1.7972012301964109
+ - -1.0266590798292718
+ - -0.010515182482342669
+ - 0.3802764437608137
+ - 2.2992641855666935
+ - 1.1065297312511448
+ - -2.0451344186872933
+ - 1.7543747221127801
+ - -0.9508932454553388
+ - -0.2811301600960225
+ - 1.3077150376160227
+ - -1.966533617489854
+ - 3.6321420120795613
+ - 3.598715285618748
+ - 1.3323676687011337
+ - 1.2344318803985808
+ - -0.8024826401021445
+ - -0.9037164721869223
+ - -0.2405872287860706
+ - 1.2777201365351913
+ - -1.954492377840372
+ - 1.9260489024722938
+ - -1.3103070019873364
+ - 0.21486153915892964
+ - 0.5379048958822943
+ - 0.6435348695598696
+ - -2.5305623862062325
+ - -1.309757294404464
+ - 1.8990408009972113
+ - -1.2400570147704624
+ - 0.07324637140692856
+ - 0.6259999250624814
+ - 0.7470699341596666
+ - -2.327050325737318
+ - -1.3143987862968793
+ - 1.8451861370503522
+ - -1.1238657427719752
+ - -0.014375382249498593
+ - 1.1493652254061555
+ - -1.9000160677018532
+ - 1.9817800594388082
+ - -0.9882167371531145
+ - -1.9715807269350532
+ - -0.6499054654791859
+ - -0.15397384123131105
+ - 1.2203512542520565
+ - -1.9483504620969585
+ - 1.9503005736181835
+ - -0.9954523240942665
+ - -2.153663797533427
+ - -0.9311161140844258
+ - -0.289061791065975
+ - 1.3299698718906716
+ - -1.9745565169943475
+ - 1.9251427353925163
+ - -1.2552831340216182
+ - 0.14657798490201698
+ - 0.9566929688289578
+ - -1.9381099403947437
+ - -2.28531622912033
+ - -0.2924754259050864
+ - -0.1414983088561681
+ - 0.5207580680710675
+ - -1.5344919843003564
+ - 1.9961017898009323
+ - -1.8381275044371994
+ - 1.0226745088846536
+ - 0.07073727936598105
+ - -0.7356712569752782
+ - -1.0522325662757597
+ - 2.634821391892251
+ - 1.3946830169497515
+ - -1.7974094827453053
+ - 0.9460705623050693
+ - 0.21365227712556162
+ - -0.7987184113395935
+ - -1.0791389123715789
+ - 2.281876331928278
+ - 1.3227612137663414
+ - -1.7250330080457215
+ - 0.8173276390027493
+ - 0.29918143437579703
+ - -1.4226829088950392
+ - 1.9656724452249148
+ - -1.9271258993192686
+ - 0.8401627897313227
+ - 1.7559603859827293
+ - 0.9878471405550138
+ - 0.3553179491491575
+ - -1.4836095400697453
+ - 1.9939983693087504
+ - -1.8732455889139246
+ - 0.7782867335441126
+ - 1.7851887358792071
+ - 1.22958989730429
+ - 0.4548499205280865
+ - -1.5792084730270806
+ - 2.0054632224921347
+ - -1.836795742598407
+ - 0.9616167480665584
+ - 0.13915032782022235
+ - -1.2508477336796477
+ - 3.0947015195341763
+ - 3.010506831212009
+ - 0.20095409344485446
+ - 0.07475042900473418
+ - -2.7227423770813592
+ - -2.8147618817025424
+ - 0.9992599053163064
+ - 0.09690256781430588
+ - -1.2144433670402397
+ - 1.9078122862636928
+ - -1.9853917349688786
+ - 1.3655533324616582
+ - -0.2875177045460715
+ - -0.9297941040408899
+ - -2.002159044300449
+ - -0.911742597486081
+ - 1.9349733822613426
+ - -1.9612855583046813
+ - 1.258269163693495
+ - -0.1858626454614649
+ - -0.7036879809238797
+ - -1.938871198150714
+ - -0.965504977891849
+ - 1.9698053122596866
+ - -1.9162906247424485
+ - 1.1886131932927129
+ - -0.06400106473406804
+ - -1.0809049021965733
+ - 1.8227897480015383
+ - -0.27713713188172145
+ - -0.8578208589536883
+ - -1.846149610917399
+ - -0.9009881188038191
+ - 1.937176860230769
+ - -1.9470466189310816
+ - 1.2591721914145202
+ - -0.22603718565942105
+ - -0.8156538581781858
+ - -2.2233693191583725
+ - -1.0394115004756592
+ - 1.9720026024186887
+ - -1.9181141684348149
+ - 1.1894404246066375
+ - -0.06351452842512172
+ - -1.0824700672428853
+ - 1.824955653561221
+ - -2.8789696306191197
+ - -3.5019541993225873
+ - 1.0022947482305036e-15
+ - 1.1312522057275206e-15
+ - 5.939156798130739e-17
+ - 8.085690487705846e-18
+ - -1.1580528575742386e-17
+ - -1.617965278153722e-16
+ - -5.608284553109528e-17
+ - -2.2726787329894435e-16
+ - -6.708434767805054e-17
+ - -5.744769354180777e-17
+ - 8.42069863578982e-17
+ - 4.4270706383838036e-16
+ - -1.873150497126331e-16
+ - -2.4195032917176056e-18
+ - 2.0782912890394817e-17
+ - -1.9732393512452473e-16
+ - -1.8466807175246343e-17
+ - 9.760731228125725e-18
+ - -8.656445110367433e-17
+ - 1.137373342260413e-16
+ - 5.955700410381799e-17
+ - 1.1249656330721175e-17
+ - -9.727644003623604e-17
+ - 5.459392042849982e-18
+ - 1.5137405209720406e-17
+ - -6.807696441311418e-17
+ - -4.0407772923215396e-17
+ - 6.830443908156626e-17
+ - 3.12975416986802e-16
+ - 3.91256429737582e-17
+ - -1.7205356741102973e-16
+ - 1.4434301689050333e-16
+ - -2.6105820132173553e-16
+ - 1.6647009827629682e-17
+ - -1.6874484496081762e-16
+ - -7.428081900726189e-17
+ - 4.5494933690416516e-17
+ - 8.792929911438683e-17
+ - 8.528232115421714e-17
+ - 1.5124997500532109e-16
+ - 1.1717013376813637e-16
+ - -8.569591146049365e-17
+ - 2.98612201131643e-16
+ - -3.490702184973777e-17
+ - -2.316519305454754e-16
+ - 6.206956521444781e-17
+ - -7.775497757998459e-17
+ - -7.79204137024952e-17
+ - 2.1341259803868112e-16
+ - 1.6295458067294645e-17
+ - -2.297907741672311e-16
+ - -1.1745964698252993e-16
+ - 1.841097248389901e-16
+ - 5.244325083586195e-17
+ - 7.345363839470886e-17
+ - -6.832511859688009e-17
+ - -9.341971043020755e-17
+ - 3.0776288665801086e-17
+ - 7.287461196592174e-17
+ - -1.1336510295039244e-16
+ - 3.654483946259276e-16
+ - 3.90429249125029e-17
+ - 1.651052502655843e-16
+ - -1.7494869955496533e-16
+ - -2.1225454518110688e-16
+ - -1.9699306287950352e-16
+ - -1.682485365932858e-16
+ - 1.1636880254972562e-16
+ - 1.3979352352146168e-16
+ - 8.623357885865314e-18
+ - -2.6842010877345745e-17
+ - 3.8877488789992295e-17
+ - 1.0277719110971367e-17
+ - -1.2444932315860301e-16
+ - -3.9175273810511386e-16
+ - -4.748016716054378e-17
+ - 2.1423977865123414e-16
+ - 1.4717611048849745e-16
+ - -4.707691661192418e-17
+ - 6.251417479369507e-17
+ - 4.79764755280756e-17
+ - 1.7960159050057613e-17
+ - 5.929851016239516e-18
+ - -1.5371083732766634e-16
+ - -9.210656120777962e-17
+ - 7.361907451721946e-18
+ - -3.360421238496675e-17
+ - 7.858215819253763e-18
+ - 1.4798261158573665e-16
+ - -2.27309232329572e-16
+ - 3.568457162553761e-16
+ - -4.54618464659144e-16
+ - 8.337980574534518e-17
+ - -1.518290014341082e-16
+ - -2.5890753172909763e-17
+ - -8.652309207304668e-17
+ - 3.3955764145301786e-17
+ - 1.1886585402387008e-16
+ - -1.4049662704213175e-16
+ - -1.7362521057488048e-16
+ - 2.1423977865123414e-16
+ - -5.495787989802316e-16
+ - 1.4789989352448135e-16
+ - -1.102838551686324e-16
+ - -2.387243247828038e-16
+ - -3.05725954399599e-16
+ - 3.266329443818768e-17
+ - -3.1184709093249143e-17
+ - -6.2245341094615325e-18
+ - -1.2573145310806019e-17
+ - -9.851721095506558e-17
+ - -1.323488980084844e-18
+ - 2.171762698257974e-16
+ - -1.0616863162118109e-16
+ - 4.135903062765138e-17
+ - -1.9438744394996148e-16
+ - -1.9604180517506753e-16
+ - -6.981404369947554e-17
+ - -5.732361644992482e-17
+ - 7.080666043453917e-17
+ - 1.9025154088719634e-16
+ - -1.0935327697951025e-16
+ - 1.0869153248946782e-16
+ - 4.807987310464473e-17
+ - 6.460280584039146e-17
+ - 1.0257039595657542e-17
+ - 1.6626330312315856e-17
+ - 9.506373189765669e-17
+ - 1.5488956970055443e-17
+ - 2.36472842553011e-16
+ - 2.420330472330159e-16
+ - -2.2995621028974166e-17
+ - 9.355412727974742e-17
+ - -1.8115255414911304e-16
+ - -3.6271869860450264e-17
+ - 4.597469844569728e-16
+ - -7.752750291153251e-17
+ - -8.69366823793232e-17
+ - -2.3467113978129395e-16
+ - 9.686284972995953e-17
+ - -1.7908460261773047e-16
+ - 1.6771086919512634e-16
+ - -2.1031067074160726e-17
+ - -4.177262093392789e-17
+ - -3.088692407273005e-16
+ - 1.323282184931706e-16
+ - -4.431620131752845e-17
+ - -8.445514054166411e-17
+ - -1.1307558973599888e-16
+ - 7.531996465178163e-17
+ - 1.5054687148465104e-16
+ - 2.6171994581177796e-16
+ - 8.197359870400503e-17
+ - 4.2475724454597965e-17
+ - 1.0407483069565624e-16
+ - 4.994102948288904e-17
+ - -2.729696021424991e-17
+ - 1.4663844309033798e-16
+ - -1.5720567541570288e-16
+ - 3.4782944757854814e-17
+ - 2.4019257037008538e-17
+ - -5.83575922156161e-17
+ - 8.067078923923401e-17
+ - -2.463964249642331e-17
+ - -3.9167002004385855e-16
+ - -5.719953935804186e-17
+ - -1.8327220446878017e-16
+ - 5.200898101427161e-17
+ - -2.6742749203839385e-16
+ - 1.0620999065180874e-16
+ - -7.643148859989974e-17
+ - -1.555099551599692e-17
+ - -4.384057246531047e-18
+ - 7.320548421094295e-17
+ - -3.385236656873266e-17
+ - -4.892773323251158e-17
+ - 1.075334796318936e-18
+ - -9.946846865950157e-17
+ - -1.0885696861197844e-15
+ - 3.212769499155959e-16
+- - 0.8380050076485684
+ - 0.4651492383309736
+ - -1.3040737143831236
+ - 3.4910529141008135
+ - -4.5458028049365895
+ - 4.063336929441472
+ - -2.250664970663464
+ - -0.2936247323516442
+ - 1.7163564636371964
+ - 2.4920297659137405
+ - -5.918359034771399
+ - -3.14312035189236
+ - 3.9692299813950194
+ - -2.0744345267823143
+ - -0.6136159356063736
+ - 1.8519851725273957
+ - 2.5338914273276973
+ - -5.117944643923767
+ - -2.9778743726612347
+ - 3.7986068572619094
+ - -1.7827134776501008
+ - -0.8072066664920453
+ - 3.2449619059637373
+ - -4.485164340122038
+ - 4.274197941144463
+ - -1.842149736412062
+ - -3.880289482639309
+ - -2.330475870138758
+ - -0.8638858516729047
+ - 3.3806589177863913
+ - -4.540557916972731
+ - 4.14769047873619
+ - -1.699863219819765
+ - -3.933050951884434
+ - -2.880240355081699
+ - -1.0869761297700955
+ - 3.5892979557543017
+ - -4.563487638742944
+ - 4.060179943257722
+ - -2.111313657348631
+ - -0.44761995124181625
+ - 2.8649822291954186
+ - -7.067107834965951
+ - -6.880308960415009
+ - -0.5397024378577469
+ - -0.2527102856943333
+ - 6.016981618450209
+ - 6.224741592625709
+ - -2.192762909827956
+ - -0.359713860822458
+ - 2.792329006116112
+ - -4.37039372772812
+ - 4.41723550230511
+ - -3.0334176163232236
+ - 0.5793222018910006
+ - 1.971732547547531
+ - 4.596892251590347
+ - 2.10744583072569
+ - -4.42575876109369
+ - 4.35979764093169
+ - -2.785082479822801
+ - 0.34954902363929197
+ - 1.468937538923763
+ - 4.440496941966856
+ - 2.225201741489549
+ - -4.498434802806827
+ - 4.249692449068847
+ - -2.626677112683553
+ - 0.0030362671109385596
+ - 2.495914819706926
+ - -4.189796745651098
+ - 2.9622462076456864
+ - 5.243670568995398
+ - -1.687859777132261
+ - -1.4129669490167585
+ - -0.19293748626585494
+ - 2.759391605642606
+ - -4.309945225371998
+ - 3.1000361502423317
+ - 5.993217024846473
+ - -1.4968948082583182
+ - -1.2277359862615087
+ - -0.5135267228845735
+ - 2.916301087156323
+ - -4.37242362359095
+ - 4.372198683726226
+ - -2.9157790427599086
+ - 0.5128209237884053
+ - 0.7061331053080002
+ - 0.5983349273424625
+ - -4.1168024167933215
+ - -3.544707154899181
+ - 1.5442504772358066
+ - 1.0616702342021995
+ - -3.320629126048049
+ - 4.531539599564544
+ - -4.175215547964593
+ - 2.465843507289604
+ - -0.17104889038443294
+ - -1.2103260069121082
+ - -5.336422301458057
+ - -2.55506149410017
+ - 4.5572011566608515
+ - -4.088871605572758
+ - 2.188930233280114
+ - 0.11251197497729441
+ - -0.672277245750419
+ - -4.820081866923009
+ - -2.5055643820057965
+ - 4.580584035183006
+ - -3.9333756316177824
+ - 2.014588777011593
+ - 0.7054134287415255
+ - -3.0602119440428335
+ - 4.4269162170402945
+ - -2.872527713703238
+ - -5.219978423335943
+ - 0.8992469407317965
+ - 0.9899870004698595
+ - 0.8984809304877139
+ - -3.292031321070977
+ - 4.4995284139580205
+ - -2.8329034955590506
+ - -5.614259068145965
+ - 0.5850981919384655
+ - 0.7758306154243609
+ - 1.2114012843801085
+ - -3.4279320502931108
+ - 4.532552606228003
+ - -4.107245366610473
+ - 2.3341625899620664
+ - 0.19736065453835375
+ - -3.234809050325555
+ - -3.00380539733674
+ - 2.204975372934724
+ - 2.4515138069801
+ - 8.075259458432368
+ - 8.183209255584293
+ - -4.151629130751582
+ - 2.418002406801078
+ - 0.09539652838587144
+ - -2.7018111740314383
+ - 4.283471829424338
+ - -4.479889177685524
+ - 2.211598269885458
+ - 4.75988500484788
+ - 1.7017211094862996
+ - 0.4313901937277585
+ - -2.85783050584951
+ - 4.350739880771235
+ - -4.40091714822394
+ - 2.0370470762404294
+ - 4.169941769573317
+ - 1.9175245855282361
+ - 0.6152659539940177
+ - -3.1019933671614854
+ - 4.441037508013307
+ - -4.341743317272011
+ - 2.7185240549224376
+ - -0.2676281254996185
+ - -2.2733315558535634
+ - 2.594127738958444
+ - 4.38046889778912
+ - 1.5753562583395406
+ - 0.4122019662934791
+ - -2.861665761888978
+ - 4.389121770428433
+ - -4.399799450450845
+ - 2.194290962381942
+ - 4.774824893343822
+ - 2.2215548630576984
+ - 0.7190307480445349
+ - -3.10561449525053
+ - 4.442486055961153
+ - -4.340442883258336
+ - 2.714855069020349
+ - -0.26294941911112296
+ - -2.2775549506499213
+ - 4.477175541535831
+ - 5.288226997551503
+ - 1.2664135178186854e-16
+ - -8.028615025439686e-16
+ - 2.6138907356675675e-16
+ - 1.3919381757736073e-16
+ - -5.4138971091595655e-17
+ - -1.0604455452929814e-16
+ - -1.0294262723222428e-16
+ - 3.123433993000232e-16
+ - -5.247633806036408e-16
+ - 1.3591611440011936e-16
+ - 1.3292792443727155e-16
+ - -2.326859063111667e-16
+ - 5.397353496908506e-16
+ - 5.6248281653605874e-18
+ - -1.7254987577856155e-16
+ - -3.7090778666877756e-16
+ - 5.2112378590840736e-18
+ - -2.10103875588469e-17
+ - 9.537392462736408e-17
+ - -1.6891028108332823e-16
+ - 2.0400341857089042e-17
+ - -5.335314950967028e-18
+ - 1.227536029028693e-16
+ - -4.0035541647566533e-17
+ - 6.054962083888163e-17
+ - -4.135903062765138e-16
+ - -3.027481041944081e-17
+ - -1.7850557618894335e-16
+ - -2.320448413364381e-16
+ - 2.8885146990351726e-16
+ - 7.449588596652566e-16
+ - -1.4872707413703438e-16
+ - 8.528232115421714e-17
+ - 1.8140070833287894e-16
+ - 2.3789714417025076e-16
+ - -6.197237149247282e-16
+ - 1.819797347616661e-17
+ - -8.143593130584556e-17
+ - -3.4942177025771267e-16
+ - 9.024540482953531e-17
+ - 2.1655588436638262e-16
+ - 3.0489877378704595e-16
+ - -3.695842976886927e-16
+ - 8.577862952174896e-17
+ - 2.486504921334401e-16
+ - -4.424175506239868e-16
+ - 1.922264345996667e-16
+ - -5.150646879214565e-16
+ - -9.711100391372544e-17
+ - -1.0687173514185116e-16
+ - 4.804264997707985e-16
+ - 2.774363774502855e-16
+ - -2.7975248316543396e-16
+ - -3.783524121817548e-16
+ - -5.810116622572466e-16
+ - 8.230447094902624e-17
+ - -9.45881030454387e-17
+ - 5.864710543000966e-17
+ - -1.0323214044661784e-16
+ - 1.5799149699762826e-16
+ - -2.004284473610128e-16
+ - -8.99972506457694e-17
+ - -2.6635215724207488e-17
+ - 1.6725591985822217e-16
+ - 2.0811864211834174e-16
+ - 3.4844983303796286e-16
+ - -3.594926942155458e-16
+ - -4.226892930145971e-17
+ - -6.578981001940505e-16
+ - -1.4095157637903592e-16
+ - 7.709323308994217e-17
+ - -6.565746112139657e-17
+ - -2.1837568171399928e-17
+ - 2.357464745776129e-16
+ - 1.4653504551376885e-16
+ - -3.1949851159860694e-17
+ - -4.800335889798358e-16
+ - -3.3194757981752996e-16
+ - 1.3036366453835716e-16
+ - -3.52347921674619e-16
+ - 1.5923226791645783e-17
+ - 9.098986738083303e-17
+ - -1.163015941249557e-16
+ - 4.706244095120451e-16
+ - -1.8677738231447362e-16
+ - 6.799424635185887e-17
+ - 4.623939624171424e-17
+ - -7.597653926299558e-17
+ - -2.1440521477374475e-16
+ - 2.9091942143489983e-16
+ - -7.485984543604899e-16
+ - 6.342820937056615e-16
+ - 4.582580593543773e-17
+ - 1.0228088274218186e-16
+ - -2.2929446579969927e-16
+ - -3.1039952486052363e-17
+ - -1.5587184667796115e-17
+ - -4.925033367140727e-16
+ - 7.901229211106519e-16
+ - 4.492417906775493e-16
+ - -1.048865016717239e-16
+ - 1.3549218433618591e-15
+ - -1.56006263527501e-16
+ - 3.056432363383437e-17
+ - -5.0685492034186765e-17
+ - 4.7902804754770095e-17
+ - -9.843449289381028e-17
+ - 1.2126467780027386e-16
+ - -1.5526180097620327e-16
+ - 1.287093033132511e-16
+ - 1.5981129434524492e-16
+ - -5.128519797828771e-17
+ - -2.5030485335854617e-16
+ - 2.101865936497243e-16
+ - -2.071260253832781e-16
+ - 1.4459117107426924e-16
+ - 5.39321759384574e-17
+ - 4.7314731038033177e-17
+ - 7.519071768107022e-17
+ - -2.779326858178173e-17
+ - -1.889280519071115e-16
+ - 1.8661194619196302e-16
+ - -7.848289651903126e-16
+ - -2.131644438549152e-16
+ - -3.329401965525936e-16
+ - -2.355810384551023e-16
+ - -1.768512149638373e-16
+ - 1.9579882087013008e-16
+ - -8.99972506457694e-17
+ - -4.1772620933927893e-16
+ - -3.4079841237184735e-16
+ - -2.5923840397411887e-16
+ - -4.992862177370075e-16
+ - 1.709782326147108e-16
+ - -2.9608930026335626e-16
+ - -4.513097422089319e-16
+ - 2.858115811523849e-16
+ - 7.235348818001332e-16
+ - 1.0563096422302162e-16
+ - -1.709782326147108e-16
+ - 8.39588321741323e-16
+ - 1.0587911840678753e-17
+ - -8.600610419020104e-17
+ - -2.4914680050097194e-16
+ - 5.892834683827769e-16
+ - 1.6163109169286158e-16
+ - 1.647743780205631e-16
+ - -3.860865509091256e-17
+ - 9.727644003623604e-17
+ - -1.7949819292400698e-16
+ - -3.8846469517021557e-16
+ - -2.425293556005477e-16
+ - 3.250819807333399e-17
+ - -3.2342761950823377e-16
+ - 3.7719435932418056e-17
+ - 6.547134548357214e-17
+ - -1.2391165576044355e-16
+ - -2.748617777937142e-16
+ - 3.066358530734073e-16
+ - 1.5964585822273432e-16
+ - 1.5741247056884114e-16
+ - 2.7958704704292335e-17
+ - -8.817745329815274e-17
+ - -3.1267427154504446e-17
+ - 7.924390268258004e-16
+ - 1.157535869691393e-16
+ - 1.9016882282594104e-16
+ - -6.274164946214715e-17
+ - 3.6782653888701753e-16
+ - -3.209202282764324e-16
+ - 1.7867101231145398e-17
+ - 3.6826080870860787e-16
+ - 1.9273308272485542e-17
+ - -6.89041450256672e-17
+ - 9.90135193225974e-17
+ - 1.4244050148163137e-16
+ - -5.1119761855777104e-17
+ - 1.2176098616780567e-16
+ - -1.8429584047681454e-16
+ - -8.529059296034267e-16
+- - 1.2413719048959706
+ - 0.8612053013526949
+ - -1.2672172439765022
+ - 2.6822271781822353
+ - -3.2277082505878547
+ - 2.671446720341899
+ - -1.252109171185626
+ - -0.5748352679068259
+ - 1.4134225350726553
+ - 2.1836765735516286
+ - -4.0637932920226465
+ - -2.1963306199498
+ - 2.591724225279905
+ - -1.121184926901369
+ - -0.7961417462392295
+ - 1.4845083109357389
+ - 2.1440366391772834
+ - -3.4861232809314306
+ - -2.0692658152371695
+ - 2.4503439826451507
+ - -0.9061791571414057
+ - -0.9290984598286135
+ - 2.5316126233760685
+ - -3.2141890157600437
+ - 2.8565203749017147
+ - -1.0993072721256354
+ - -2.429109751034099
+ - -2.010315918358881
+ - -0.8349549177254921
+ - 2.61512157871319
+ - -3.2273678457053063
+ - 2.7441404076979676
+ - -0.9894879262252564
+ - -2.4179498142538947
+ - -2.412621745499019
+ - -0.9863607125249034
+ - 2.7413238194129526
+ - -3.227363278789652
+ - 2.66875434731192
+ - -1.148541737221705
+ - -0.6815540839121419
+ - 2.2933102437447324
+ - -5.281408970046616
+ - -5.161688969785254
+ - -0.7384593502800908
+ - -0.5397277913532196
+ - 3.769209931488369
+ - 3.922710645034316
+ - -1.2089921233719536
+ - -0.6206829518240908
+ - 2.247050919256189
+ - -3.16911124798475
+ - 2.99146082188414
+ - -1.844663912787158
+ - 0.16749030967891002
+ - 0.9471913068884587
+ - 3.488723035303735
+ - 1.646934409546962
+ - -3.192661648344251
+ - 2.9358050685270087
+ - -1.6544286310842877
+ - 0.005304728558928789
+ - 0.6206389721131781
+ - 3.332730698414688
+ - 1.7171851221874768
+ - -3.218208394667666
+ - 2.8343811839157063
+ - -1.5342831043769989
+ - -0.3680344308039043
+ - 2.0566146657352187
+ - -3.0813345004508923
+ - 2.044051369080698
+ - 3.6889169683439476
+ - -0.7793719165384224
+ - -0.7763519376608264
+ - -0.5048372594869377
+ - 2.22606264430593
+ - -3.1413027750103732
+ - 2.126828162748803
+ - 4.18453891396856
+ - -0.5785087563916383
+ - -0.6252542713795763
+ - -0.7271093692445254
+ - 2.325825405602853
+ - -3.1700099137994764
+ - 2.947684338211188
+ - -1.7542714742162693
+ - -0.009083401270433
+ - 1.028077118939404
+ - 1.0754077397930244
+ - -2.3115716082100053
+ - -2.025389942682124
+ - 0.7318143930804349
+ - 1.102814999560494
+ - -2.5782377776949885
+ - 3.2258966441531567
+ - -2.768162004708817
+ - 1.4130356129713857
+ - 0.13378675496132633
+ - -0.37266039221568253
+ - -3.953779993343691
+ - -1.9353500746157857
+ - 3.228157607998094
+ - -2.6931906812240594
+ - 1.2061089614275637
+ - 0.3194323417545841
+ - -0.04985757014912613
+ - -3.54009022980724
+ - -1.8835946630572882
+ - 3.2186172196778307
+ - -2.561681612545642
+ - 1.0769064416985885
+ - 0.8592283658107491
+ - -2.4164789088294154
+ - 3.193061829934927
+ - -1.9446236121599827
+ - -3.606593863289029
+ - 0.21141822251867082
+ - 0.4653450883105524
+ - 0.9915533206170135
+ - -2.5606668094313965
+ - 3.2185625896908094
+ - -1.901824732166657
+ - -3.84616258143482
+ - -0.04885724757193758
+ - 0.3086465329216183
+ - 1.2044798852114407
+ - -2.64389030442894
+ - 3.2260648932943883
+ - -2.7090602308552802
+ - 1.3143857827409264
+ - 0.5078844530131804
+ - -2.8722710259919886
+ - -2.7105992247850477
+ - 1.2256962704006495
+ - 1.4102143761207124
+ - 5.5813668565360945
+ - 5.673375426611294
+ - -2.7468954640474905
+ - 1.3767741918553094
+ - 0.4367917126428323
+ - -2.1887645054377427
+ - 3.1277829889984696
+ - -3.0550212276075617
+ - 1.383044636793087
+ - 3.0754278298339908
+ - 1.6299133149816774
+ - 0.5415809125025043
+ - -2.288310205363328
+ - 3.15962101159575
+ - -2.9746101467487254
+ - 1.2488046597134568
+ - 2.659040246072317
+ - 1.7358515260910121
+ - 0.6660535731153171
+ - -2.4421879428184146
+ - 3.197860755299827
+ - -2.9181291952371446
+ - 1.603416744020437
+ - 0.1823355441578803
+ - -1.9114964910430046
+ - 1.933357767985672
+ - 3.116892176212653
+ - 1.5065479401852353
+ - 0.5269568487281863
+ - -2.291246253773803
+ - 3.1775100535266807
+ - -2.9742386181466207
+ - 1.3534040883917262
+ - 3.0478907522075893
+ - 2.0037936200024014
+ - 0.7501346119091242
+ - -2.444996791713673
+ - 3.199280702716699
+ - -2.917627339253398
+ - 1.6011161923782704
+ - 0.18556498312786351
+ - -1.9146478721436873
+ - 3.5294713837961806
+ - 4.201069567151711
+ - 7.349499742533651e-17
+ - -8.670920771087112e-16
+ - 1.623755542441593e-16
+ - 9.077467117459853e-17
+ - -3.4203918329067694e-17
+ - -7.907846656006943e-17
+ - -4.79764755280756e-18
+ - 2.568395801977151e-16
+ - -3.287629344592008e-16
+ - 9.086579028895008e-17
+ - 8.428970441915351e-17
+ - -2.6444964183320295e-16
+ - 3.6938525735379714e-16
+ - -3.542400973258341e-17
+ - -1.2366350157667764e-16
+ - -1.6394719740801006e-16
+ - 3.3873046084046483e-17
+ - 3.044024654195142e-17
+ - 8.362795992911109e-17
+ - -1.283784310682299e-16
+ - 2.566327850445768e-17
+ - 2.88169045898161e-17
+ - 9.489829577514609e-17
+ - -7.237830359838992e-18
+ - 5.293955920339376e-18
+ - -2.7942161092041275e-16
+ - -1.5137405209720406e-17
+ - -1.2908153458889997e-16
+ - -1.8242434434091332e-16
+ - 1.5517908291494797e-16
+ - 5.069789974337507e-16
+ - -1.2391165576044355e-16
+ - -1.0391973433080255e-16
+ - 1.2753057094036304e-16
+ - 1.8429584047681454e-16
+ - -3.781869760592442e-16
+ - 5.901933670565852e-17
+ - -3.5982356646056704e-17
+ - -2.2155515719349998e-16
+ - -1.526148230160336e-17
+ - 1.919059021123024e-16
+ - 1.560889815887563e-16
+ - -2.8603905582083697e-16
+ - 6.646396221863577e-17
+ - 1.7221900353354034e-16
+ - -2.675980980397329e-16
+ - 1.4002616806874222e-16
+ - -2.7330047438752034e-16
+ - -1.2639319759810263e-16
+ - -7.861317746550836e-17
+ - 3.0034928041800435e-16
+ - 1.6810377998608902e-16
+ - -2.0021906726846032e-16
+ - -2.456726419282492e-16
+ - -3.4361082645452765e-16
+ - 5.517294685728694e-17
+ - -6.429778298951253e-17
+ - 6.28657265540301e-17
+ - -7.444625512977249e-17
+ - 9.810362064878907e-17
+ - -1.495542547495874e-16
+ - -8.809473523689744e-17
+ - -3.5734202462290796e-17
+ - 1.2904017555827232e-16
+ - 1.6080391108030856e-16
+ - 2.702812651517018e-16
+ - -2.488159282559507e-16
+ - -5.283099174799618e-17
+ - -4.3175726047970966e-16
+ - -9.400907661665158e-17
+ - 1.0637542677431935e-16
+ - -2.8000063734919987e-17
+ - 2.8951321439355965e-18
+ - 1.4864435607577907e-16
+ - 1.889280519071115e-16
+ - -5.0871607672011194e-18
+ - -3.4183238813753864e-16
+ - -2.328513424336773e-16
+ - 9.256151054468378e-17
+ - -2.2379371472622164e-16
+ - 2.0090149127381657e-17
+ - 4.764560328305439e-17
+ - -6.911094017880546e-17
+ - 3.176683744933333e-16
+ - -1.3478132599727317e-16
+ - 7.998836523387776e-17
+ - 6.973132563822023e-17
+ - -3.124674763919062e-17
+ - -1.343341314786117e-16
+ - 2.42612073661803e-16
+ - -4.3964649557193416e-16
+ - 2.4104043049795226e-16
+ - -1.8363409598677214e-17
+ - 1.2177132592546259e-16
+ - -1.019913695277883e-16
+ - -3.4887634804131056e-17
+ - 4.8286668257782984e-17
+ - -3.1929171644546863e-16
+ - 5.09543257332665e-16
+ - 3.330229146138489e-16
+ - -6.964860757696493e-17
+ - 9.093713461678279e-16
+ - -1.257314531080602e-16
+ - 2.890996240872832e-17
+ - -1.0504418297599182e-16
+ - -1.627477855198082e-17
+ - -6.129408339017935e-17
+ - 7.403266482349598e-17
+ - -9.477421868326313e-17
+ - 6.787016925997592e-17
+ - 8.308770759153739e-17
+ - -7.262645778215583e-17
+ - -2.1279221257926634e-16
+ - 1.6316137582608468e-16
+ - -1.3971080546020637e-16
+ - 5.343586757092558e-17
+ - 5.98878763488392e-17
+ - 5.649643583737179e-17
+ - 3.2673634195844593e-17
+ - -1.766030607800714e-17
+ - -1.406207041340147e-16
+ - 1.0620999065180874e-16
+ - -4.540394382303569e-16
+ - -1.258141711693155e-16
+ - -2.2507584467567883e-16
+ - -1.4426029882924803e-16
+ - -1.2738581433316626e-16
+ - 8.891157609179355e-17
+ - -5.600012746983997e-17
+ - -2.6213353611805447e-16
+ - -2.2863272130965685e-16
+ - -1.5236666883226767e-16
+ - -2.4616895029578104e-16
+ - 1.492233825045662e-16
+ - -1.7330984796634464e-16
+ - -2.87341865285608e-16
+ - 1.8918654584853432e-16
+ - 4.4334812881310896e-16
+ - 5.550381910230815e-17
+ - -1.3201802576346322e-16
+ - 5.989614815496473e-16
+ - -4.255844251585327e-17
+ - -3.605990482848355e-17
+ - -1.255660169855496e-16
+ - 2.7379678275505216e-16
+ - 8.056739166266488e-17
+ - 1.0600319549867048e-16
+ - 4.1048837897944e-18
+ - 1.2978463810957004e-16
+ - -1.3383782311107988e-16
+ - -2.760094908936315e-16
+ - -1.9976411793155616e-16
+ - 2.2333876538931747e-18
+ - -1.654361225106055e-16
+ - 1.9422200782745087e-16
+ - 4.8359046561381374e-17
+ - -6.766337410683766e-17
+ - -1.6233419521353166e-16
+ - 2.1845839977525458e-16
+ - 1.4823076576950256e-16
+ - 1.0600319549867048e-16
+ - -5.459392042849982e-18
+ - -5.434576624473391e-17
+ - -8.147729033647323e-18
+ - 5.713336490903762e-16
+ - 9.077273247003786e-17
+ - 1.3863547066388744e-16
+ - -6.162495563520056e-17
+ - 2.612029579289323e-16
+ - -2.358317775782824e-16
+ - 3.6892255319865034e-17
+ - 1.8429584047681454e-16
+ - 2.613890735667567e-17
+ - -2.4649982254080222e-17
+ - 6.452008777913616e-17
+ - 7.833400400877171e-17
+ - -4.168990287267259e-17
+ - 8.09809819689414e-17
+ - -1.5013328117837452e-16
+ - -4.791030107907136e-16
+- - 5.371516740945347
+ - 4.433356135720591
+ - -2.754821037215771
+ - 1.3861032513866371
+ - 0.42899178610499605
+ - -2.185460053953507
+ - 3.1297923709766735
+ - -3.0616615060906356
+ - 1.4802321518663881
+ - 3.2579950245293943
+ - 1.7263428191166188
+ - 0.5952669085954896
+ - -2.2853931482156855
+ - 3.162019269841678
+ - -2.9817061730116508
+ - 1.25479117350622
+ - 2.6691209822068465
+ - 1.7296041497022387
+ - 0.661752524129979
+ - -2.4399048229874887
+ - 3.200872001212984
+ - -2.9254823816474502
+ - 1.6127361069251784
+ - 0.17417073423748103
+ - -1.9072406485607383
+ - 1.9337457447198647
+ - 3.115794461326305
+ - -2.778655039991137
+ - -1.786859618751442
+ - 1.4916534876596552
+ - 0.3999537589689536
+ - -2.0855031914880353
+ - 1.9944426779356852
+ - 3.5308116710088107
+ - -2.8275668450033775
+ - -1.7067988085746717
+ - 1.2869557141631278
+ - 0.5394569843523096
+ - -2.188999642943829
+ - 3.1556342276743377
+ - -3.0250020583691186
+ - 1.9142377285520038
+ - -1.5550265039133435
+ - -1.6816110908714952
+ - -2.9448244654911617
+ - -3.0144487260158606
+ - -4.810477041094954
+ - -4.77960194835143
+ - 3.1412481801578234
+ - -3.0463296378811333
+ - 1.9660109754729946
+ - -0.14375298896747804
+ - -1.6392551415691652
+ - 2.8936250233032488
+ - -2.1110417053183204
+ - -4.004654884068526
+ - 1.4614523402334991
+ - 1.0707901236068524
+ - -0.0055953856568357494
+ - -1.7592601471456728
+ - 2.987459758948425
+ - -2.081237831059755
+ - -3.7003907125558184
+ - 1.0971775692460353
+ - 0.9470073722015472
+ - 0.22099083150412338
+ - -1.9448957122428885
+ - 3.03719117826026
+ - -3.122045993432378
+ - 2.1628786812102465
+ - -0.5019252227245863
+ - -0.7793167611055082
+ - -0.7841121318430515
+ - 3.693314961099035
+ - 2.0468672956118033
+ - -3.0837625526520975
+ - 1.9893340429473807
+ - -0.27687275389654004
+ - -0.919317585417718
+ - -1.1633851397003332
+ - 4.225703414368058
+ - 2.1944674423853314
+ - -3.008313347585639
+ - 1.876287134029452
+ - -0.13895290074281433
+ - -1.734500983820717
+ - 2.940392236502092
+ - -3.195597408010989
+ - 4.374891717413352
+ - 5.429656785995459
+ - 5.54544849498484
+ - 4.479263859785653
+ - -3.220912865351567
+ - 2.8427568526184466
+ - -1.545692944859134
+ - -0.35749686058085195
+ - 2.050366559019032
+ - -3.081445249668769
+ - 2.168530146880236
+ - 4.21866233546373
+ - -0.8853030054681458
+ - -0.7805241510671882
+ - -0.49450984419709976
+ - 2.1574381593122727
+ - -3.1422243180469858
+ - 2.0094228291056555
+ - 3.668375465662641
+ - -0.5371058926729341
+ - -0.6451194998752123
+ - -0.717182232886565
+ - 2.3206926613324943
+ - -3.171422525883023
+ - 2.95539211322531
+ - -1.7654749626045074
+ - 0.00193247851251419
+ - 1.0721254114725605
+ - 1.3342891589524104
+ - -3.6863971414385914
+ - -2.0969564082488668
+ - 2.897027916966828
+ - -1.571455231053385
+ - -0.22464910695022608
+ - 1.1920479773578099
+ - 1.71209526394252
+ - -3.97059516349431
+ - -2.11586324179474
+ - 2.7894144384708968
+ - -1.4467050950576477
+ - -0.36225825102444004
+ - 2.1353709375561425
+ - -3.112449252766135
+ - 3.0825608391021975
+ - -4.547245840059439
+ - -4.588872917258608
+ - -3.074639050966336
+ - -3.0180841162532035
+ - -2.0473550261955515
+ - -1.9279489458681527
+ - 2.0862673518001715
+ - -3.096266040429771
+ - 3.103195239763239
+ - -2.0250166977197908
+ - 0.32389231149200726
+ - 1.4843767757193902
+ - -1.7880239729845044
+ - -3.015229353081833
+ - 3.39489201919254
+ - 1.9433391854970414
+ - -1.9155428240701797
+ - 0.1832500179404629
+ - 1.682151801700152
+ - -1.8584207200519047
+ - -2.9384870589936853
+ - 2.9757270630904817
+ - 1.874659365729517
+ - -1.728158924779298
+ - -0.04348961131165784
+ - 1.7985353573050669
+ - -3.012799735291255
+ - 3.1653336595928514
+ - -2.2928706845660862
+ - 0.5261297367926251
+ - 1.5061407064123318
+ - 3.1231045132684656
+ - 1.936718430094384
+ - -1.9169576066325082
+ - 0.10068428536990273
+ - 1.6784494588168886
+ - -1.9327128057428233
+ - -3.3382760892974033
+ - 3.3860951469566616
+ - 1.952597542812333
+ - -1.7298156887710947
+ - -0.040282610355933154
+ - 1.7948373751739257
+ - -3.009893943865553
+ - 3.1641112693080227
+ - -2.2937485365516332
+ - 2.533166078262495
+ - 3.2638092654772253
+ - -6.895377586242038e-16
+ - -2.1844185616300355e-15
+ - -2.4964310886850375e-16
+ - -2.0103073824452798e-16
+ - 8.619221982802547e-17
+ - 5.657915389862709e-17
+ - 4.69094125378822e-16
+ - 4.792684469132242e-16
+ - 7.092246572029658e-16
+ - -3.697497338112034e-17
+ - -1.7618947047379487e-16
+ - -8.976564007425456e-16
+ - -8.850832554317395e-17
+ - -2.2036091518412655e-16
+ - -2.249931266144235e-17
+ - 8.806164801239532e-16
+ - 2.3227231600489017e-16
+ - 2.718115492849249e-16
+ - 1.7320645038977551e-16
+ - -1.4219234729786546e-16
+ - 5.856438736875436e-17
+ - 2.0282468619800236e-16
+ - 5.368402175469149e-17
+ - 5.407693254565418e-17
+ - -3.4642324053720794e-16
+ - 1.7817470394392214e-16
+ - 6.931773533194372e-17
+ - 1.9852334701272664e-18
+ - -3.392267692079966e-16
+ - -4.867957904874568e-16
+ - -3.0804206011474746e-16
+ - -1.7304618414609336e-16
+ - -9.694556779121484e-16
+ - -1.5104317985218283e-16
+ - 8.859104360442925e-17
+ - 6.78949846783525e-16
+ - 2.415367388654841e-16
+ - 9.157923356727706e-17
+ - 2.547716286663325e-16
+ - -6.822999282643648e-16
+ - 1.194448804526572e-16
+ - -4.880365614062863e-16
+ - -2.5510250091135373e-16
+ - 1.1952759851391248e-17
+ - -1.9686898578762056e-17
+ - 4.403909581232319e-16
+ - -1.4517019750305636e-17
+ - 6.998258174928321e-16
+ - -3.7115594085254347e-16
+ - 1.1911400820763597e-17
+ - -2.809105360230082e-16
+ - -1.689723196292697e-16
+ - -7.466339004056766e-17
+ - 2.0299012232051297e-16
+ - 6.840783665813538e-16
+ - -3.494838088036542e-17
+ - 8.875647972693986e-17
+ - 2.789666615835086e-17
+ - 1.7701665108634792e-17
+ - -6.480960099352972e-17
+ - -2.5617783570767267e-16
+ - -1.9372569945991906e-16
+ - -1.607625520496809e-16
+ - 9.421587176978984e-17
+ - 9.959254575138452e-17
+ - 1.564198538337775e-16
+ - 3.146801845304855e-16
+ - -1.8545389333438878e-16
+ - 3.4907021849737763e-16
+ - 7.498392252793196e-17
+ - 3.7074235054626695e-16
+ - 1.8834902547832438e-16
+ - 1.4954908487075895e-16
+ - -1.6709048373571157e-16
+ - 8.021170399926708e-16
+ - 1.0257039595657542e-16
+ - -2.613890735667567e-17
+ - 2.307833909022947e-17
+ - -3.159829939952566e-17
+ - 2.576719306890966e-16
+ - 1.7205356741102976e-17
+ - 1.7867101231145398e-17
+ - 9.570479687238529e-17
+ - -1.8556763066861482e-16
+ - 9.239607442217318e-17
+ - 1.8843174353957968e-16
+ - 2.863699280658582e-16
+ - 1.2176098616780567e-16
+ - 3.100272935848747e-16
+ - 2.517937784611416e-16
+ - 3.571765885003973e-16
+ - -1.0496921973297921e-15
+ - -3.30872245021211e-16
+ - 4.323673061814675e-16
+ - 4.973009842668802e-16
+ - -4.3304520654284885e-17
+ - 2.0835645654445073e-16
+ - 2.240005098793599e-16
+ - -3.6759906421856545e-16
+ - 1.4227506535912076e-16
+ - -1.0434883427356443e-16
+ - -3.596581303380564e-16
+ - -2.0299012232051297e-16
+ - 6.170767369645586e-17
+ - -3.723139937101177e-16
+ - -1.0066788054770346e-16
+ - 8.023651941764367e-17
+ - -1.431849640329291e-16
+ - 1.6857940883830702e-16
+ - -1.9103736246912172e-16
+ - -2.0629884477072508e-16
+ - -1.0389388493666026e-16
+ - -2.1060018395600082e-16
+ - 9.29751008509603e-17
+ - 1.0149506116025648e-16
+ - -2.7694006908275367e-16
+ - 2.6767564622215976e-16
+ - 1.9533870165439746e-16
+ - -1.2358078351542233e-16
+ - -7.684507890617626e-17
+ - -5.1450634100798315e-17
+ - -2.8103461311489115e-17
+ - 7.086042717435511e-16
+ - 1.5261482301603358e-16
+ - 1.0263760438134535e-16
+ - 3.8612790993975327e-16
+ - 6.297946388825614e-17
+ - -3.303759366536792e-16
+ - 6.598833336641778e-17
+ - 1.9753073027766298e-16
+ - -3.90429249125029e-17
+ - 2.823787816102898e-16
+ - 5.314842230806341e-16
+ - 2.5431667932942836e-16
+ - 3.7123865891379877e-16
+ - 7.014491594449675e-17
+ - -1.686517871419054e-16
+ - -6.576085869796569e-16
+ - -3.90429249125029e-17
+ - -7.659692472241035e-17
+ - -2.0232837783047054e-16
+ - -3.2582644328463755e-16
+ - 2.189547081427864e-16
+ - 4.37413107918041e-16
+ - -9.850066734281454e-16
+ - -4.3278089648774403e-16
+ - -1.1398548840980721e-16
+ - 2.782635580628385e-16
+ - 4.542875924141228e-16
+ - -4.466775307786349e-17
+ - 5.153335216205362e-17
+ - -2.7636104265396655e-16
+ - -2.1159280069106445e-16
+ - 5.586777857183149e-16
+ - 1.014123430990012e-15
+ - -5.335314950967028e-17
+ - 2.4302566396807953e-16
+ - 2.7594745234769003e-16
+ - -7.246102165964522e-17
+ - 1.1601208091056213e-16
+ - -1.675971318609003e-16
+ - -6.80149258671727e-17
+ - 8.437242248040882e-18
+ - 7.535615380358081e-17
+ - -1.6440214674491423e-18
+ - 5.343586757092558e-17
+ - 8.900463391070577e-17
+ - -1.078643518769148e-16
+ - 2.928219368437718e-17
+ - -8.677124625681259e-17
+ - 2.3690452743518713e-16
+ - -6.230324373749403e-16
+ - 6.807696441311418e-17
+ - 3.2094607767057474e-17
+ - -2.2664748783952955e-17
+ - -1.9322939109238724e-16
+ - -7.643148859989974e-17
+ - 2.283018490646356e-17
+ - 7.476885556866816e-16
+ - 5.772066314395027e-16
+- - 7.243587539207613
+ - 6.005323553074762
+ - -3.6112461586386253
+ - 1.4808454477653967
+ - 1.1254986850298054
+ - -3.469413441416544
+ - 4.545387219951826
+ - -4.150527702943753
+ - 1.8199730946363262
+ - 4.158221705352409
+ - 3.06176728241887
+ - 1.1864648859507572
+ - -3.594864376036658
+ - 4.568541590342358
+ - -4.003279145759761
+ - 1.4957079358376755
+ - 3.348257812260334
+ - 2.9713104374307076
+ - 1.2577567712890492
+ - -3.785851027748862
+ - 4.58705679610649
+ - -3.9034653275218965
+ - 1.8198411219409005
+ - 0.7699626917969572
+ - -3.1140857486824176
+ - 2.8619181697025584
+ - 4.7194951984409315
+ - -3.5221147178065855
+ - -2.340227042041102
+ - 1.638227345827016
+ - 1.0851811329937082
+ - -3.3427712028985606
+ - 2.928019744698184
+ - 5.293092200757984
+ - -3.5237833175114543
+ - -2.20432729744897
+ - 1.3336606947750898
+ - 1.2786043207915827
+ - -3.473876977769275
+ - 4.564184962514109
+ - -4.082151086732823
+ - 2.277058472908614
+ - -1.2877056357776846
+ - -1.4829015660136466
+ - -3.9616292140430516
+ - -4.090839825958945
+ - -7.2895512291341245
+ - -7.271972725276193
+ - 4.554179262290686
+ - -4.121732162034915
+ - 2.3564487130080507
+ - 0.3217444891121522
+ - -2.76470542981383
+ - 4.315361867011379
+ - -2.9545313272052725
+ - -5.708257466817551
+ - 1.4527163917923185
+ - 1.2138815737000792
+ - 0.5171743410870795
+ - -2.9219428522435646
+ - 4.414185991798299
+ - -2.8865413634946324
+ - -5.232697690769417
+ - 0.9732914888095155
+ - 1.0307040453331962
+ - 0.8355403326324711
+ - -3.162655595300971
+ - 4.463383999790251
+ - -4.268252848943834
+ - 2.6607204923887453
+ - -0.18929918142792307
+ - -1.416615459231848
+ - -1.6937111764182973
+ - 5.248985601319628
+ - 2.9656630045807355
+ - -4.192678059248429
+ - 2.392239959575371
+ - 0.13259955711621726
+ - -1.6243386744834372
+ - -2.301068988883574
+ - 5.954121751061389
+ - 3.1454689825137465
+ - -4.051522798604041
+ - 2.2190973255056377
+ - 0.32854779848092286
+ - -2.8895660831797985
+ - 4.36533566139329
+ - -4.429249736821588
+ - 5.89682274014602
+ - 7.351484066696321
+ - 8.068922862541067
+ - 6.543588879524004
+ - -4.586167743444108
+ - 3.760202464523788
+ - -1.7192163515455712
+ - -1.0260729514689293
+ - 3.2980102617206817
+ - -4.5048023886709565
+ - 2.9847057065180316
+ - 5.910513066451867
+ - -0.5774126078363265
+ - -0.7640020398942928
+ - -1.2164154097106392
+ - 3.434138168592895
+ - -4.5550484150608685
+ - 2.733577857047492
+ - 5.094459330392845
+ - -0.1626500169517517
+ - -0.5847710410663336
+ - -1.5235853346068728
+ - 3.63886782444843
+ - -4.57429037264232
+ - 3.9564282818793646
+ - -2.05054556093519
+ - -0.5223189491367713
+ - 1.806251803641846
+ - 2.4430049298971936
+ - -5.146010681128143
+ - -2.983974673690573
+ - 3.8537492970481004
+ - -1.7578257475628334
+ - -0.8406705930384718
+ - 1.9654899034642468
+ - 3.0062301905913347
+ - -5.497261271345991
+ - -2.984425063345227
+ - 3.6695330224328795
+ - -1.5711749024355206
+ - -1.0327012602499095
+ - 3.4061478794343714
+ - -4.531570234936111
+ - 4.190519084281562
+ - -5.832570156952834
+ - -5.916875023588873
+ - -4.464564438545019
+ - -4.416488342732042
+ - -3.756372692843505
+ - -3.6059402124531035
+ - 3.344286092942624
+ - -4.519388849978063
+ - 4.230816798454027
+ - -2.4478436656784863
+ - -0.06518331569306972
+ - 2.5604162031922697
+ - -2.706521824578084
+ - -4.686321890942198
+ - 4.439087576261473
+ - 2.605426931563709
+ - -2.279688865870749
+ - -0.265420901318665
+ - 2.8214134540409295
+ - -2.7820566903680697
+ - -4.511456544708707
+ - 3.840488130501835
+ - 2.489734997549722
+ - -1.9945788543401461
+ - -0.5860865033112616
+ - 2.9734949850956895
+ - -4.440926192235613
+ - 4.358808878711443
+ - -2.864816269854594
+ - 0.41160790691201854
+ - 1.5758146623046891
+ - 4.389013766904788
+ - 2.5986513311803425
+ - -2.2811681944259097
+ - -0.3828409714514544
+ - 2.8162196210596426
+ - -2.902261992853474
+ - -5.129706394180005
+ - 4.3654132368540965
+ - 2.5839726779372216
+ - -1.9964140869885156
+ - -0.5818736074197596
+ - 2.9682864859542986
+ - -4.436517106841396
+ - 4.35658143062932
+ - -2.8655136685534983
+ - 2.9319640568337353
+ - 3.8345863172596126
+ - -1.0290126820159664e-15
+ - -2.855427474533051e-15
+ - -3.805030817743927e-16
+ - -2.9642017250837747e-16
+ - 1.4256457857351432e-16
+ - 9.934439156761861e-17
+ - 6.512392962629986e-16
+ - 5.959009132832011e-16
+ - 1.0247113428306907e-15
+ - -6.600901288173161e-17
+ - -2.474924392758659e-16
+ - -1.1745964698252993e-15
+ - -1.8776999904953726e-16
+ - -3.0804206011474746e-16
+ - -3.3087224502121103e-18
+ - 1.1750927781928311e-15
+ - 3.0522964603206716e-16
+ - 3.7587087034409573e-16
+ - 2.2163787525475528e-16
+ - -1.4988512699460861e-16
+ - 7.328820227219825e-17
+ - 2.6800651846718097e-16
+ - 6.071505696139223e-17
+ - 7.94506978357183e-17
+ - -4.686805350725455e-16
+ - 3.027481041944081e-16
+ - 9.496033432108756e-17
+ - 2.1175823681357505e-17
+ - -4.225238568920865e-16
+ - -6.850709833164174e-16
+ - -4.834043499759894e-16
+ - -2.1837568171399928e-16
+ - -1.255991042100517e-15
+ - -2.2499312661442353e-16
+ - 1.1150394657214813e-16
+ - 9.747496338324878e-16
+ - 3.1317057991257623e-16
+ - 1.312735632121655e-16
+ - 3.9456515218779415e-16
+ - -9.19907559220222e-16
+ - 1.0323214044661784e-16
+ - -6.771300494359084e-16
+ - -3.027481041944081e-16
+ - 7.237830359838992e-18
+ - -6.154223757394526e-17
+ - 6.054962083888162e-16
+ - -4.375785440405516e-17
+ - 9.992878174569027e-16
+ - -4.966392397768378e-16
+ - 2.3822801641527194e-17
+ - -4.2554306612790504e-16
+ - -2.6004490507135808e-16
+ - -6.738420065010102e-17
+ - 3.0167276939808914e-16
+ - 1.0169358450726922e-15
+ - -4.6042940846232897e-17
+ - 1.2796484076195338e-16
+ - 3.6561383074843823e-17
+ - 2.5890753172909763e-17
+ - -1.138200522872966e-16
+ - -3.3153398951125344e-16
+ - -2.241659460018705e-16
+ - -2.279502973043006e-16
+ - 1.1166938269465874e-16
+ - 1.0902240473448904e-16
+ - 1.679176643482646e-16
+ - 4.844124763475384e-16
+ - -2.402649486736838e-16
+ - 5.515640324503589e-16
+ - 1.3189394867158026e-16
+ - 4.724855658902894e-16
+ - 2.481541837659083e-16
+ - 2.0214226219264611e-16
+ - -2.1953373457157352e-16
+ - 1.0298398626285195e-15
+ - 1.558408274049904e-16
+ - 2.0183206946293872e-17
+ - 7.411538288475128e-17
+ - -7.014491594449675e-17
+ - 4.062594180977626e-16
+ - 2.1506695926378716e-17
+ - 1.8363409598677214e-17
+ - 1.402071138277382e-16
+ - -3.146595050151717e-16
+ - 1.6113478332532977e-16
+ - 2.360773468226341e-16
+ - 3.8877488789992296e-16
+ - 1.9447016201121678e-16
+ - 5.489170544901892e-16
+ - 2.451763335607174e-16
+ - 5.714163671516315e-16
+ - -1.487105305247833e-15
+ - -4.556110813942076e-16
+ - 5.633099971486118e-16
+ - 6.872216529090553e-16
+ - -4.1782960691584804e-17
+ - 2.808484974770667e-16
+ - 3.5618397176533367e-16
+ - -5.647989222512073e-16
+ - 1.3516131209116472e-16
+ - -1.365054805865634e-16
+ - -6.471861112614888e-16
+ - -2.5824578723905524e-16
+ - 1.1249656330721176e-16
+ - -4.2814868505744708e-16
+ - -1.4475660719677984e-16
+ - 1.138200522872966e-16
+ - -2.0491331724469876e-16
+ - 2.006740166053645e-16
+ - -2.689164171409893e-16
+ - -2.8570818357581576e-16
+ - -1.3251433413099503e-16
+ - -2.387243247828038e-16
+ - 8.40415502353876e-17
+ - 1.589841137326919e-16
+ - -3.5833464135797154e-16
+ - 3.5899638584801396e-16
+ - 2.683373907122022e-16
+ - -1.9918509150276904e-16
+ - -8.03399169942128e-17
+ - -5.525566491854224e-17
+ - -5.4138971091595655e-17
+ - 1.0493199660541433e-15
+ - 2.324377521274008e-16
+ - 1.8632243297756946e-16
+ - 5.399835038746165e-16
+ - 1.0753347963189359e-16
+ - -4.422521145014762e-16
+ - 1.2137324525567144e-16
+ - 3.1366688828010805e-16
+ - -1.3896634290890865e-17
+ - 4.091648899993551e-16
+ - 7.782942383511436e-16
+ - 2.9977025398921723e-16
+ - 5.406452483646589e-16
+ - 1.1894857208512538e-16
+ - -2.5791491499403403e-16
+ - -9.089060570732668e-16
+ - -3.374896899216353e-17
+ - -8.172544452023912e-17
+ - -3.7884872054928663e-16
+ - -4.212417269426293e-16
+ - 2.893477782710491e-16
+ - 6.197237149247282e-16
+ - -1.3572379490770076e-15
+ - -6.010294330810299e-16
+ - -1.743696731261782e-16
+ - 3.3517358420648676e-16
+ - 5.869673626676284e-16
+ - -3.4576149604716557e-17
+ - 1.167151844312322e-16
+ - -3.4948380880365414e-16
+ - -2.898440866385809e-16
+ - 7.768880313098035e-16
+ - 1.3329188390679486e-15
+ - -8.081554584643079e-17
+ - 3.6528295850341697e-16
+ - 3.747128174865215e-16
+ - -9.926167350636331e-17
+ - 1.2972259956362857e-16
+ - -2.5253824101243935e-16
+ - -1.0777129405800258e-16
+ - 1.1663246636997689e-17
+ - 1.0736804350938298e-16
+ - -1.5645087310674825e-16
+ - 4.979627287569226e-17
+ - 9.462946207606635e-17
+ - -1.431022459716738e-16
+ - 3.1432863277015048e-18
+ - -8.09809819689414e-17
+ - 3.0440246541951414e-16
+ - -8.791275550213577e-16
+ - 9.148617574836485e-17
+ - 4.971355481443696e-17
+ - -3.680953725860973e-17
+ - -2.7296960214249913e-16
+ - -8.180816258149442e-17
+ - 1.737079286361358e-17
+ - 1.0802978799942541e-15
+ - 8.806164801239532e-16
+- - -5.115121571408891
+ - -4.191467495694834
+ - 2.7198231318265425
+ - -1.7777199893084192
+ - 0.18740150166363131
+ - 1.4724756945181507
+ - -2.6347853958082013
+ - 2.8706325935591517
+ - -1.6080009282408665
+ - -3.367481266138648
+ - -0.817338104912718
+ - -0.13456581354199904
+ - 1.579021185703937
+ - -2.6874571353809205
+ - 2.839803557034547
+ - -1.41613584250382
+ - -2.8245730652451955
+ - -0.9273017362347423
+ - -0.21856799234495525
+ - 1.744840476916879
+ - -2.763516353764394
+ - 2.812398620777266
+ - -1.9558980409263425
+ - 0.41661485783119656
+ - 1.1851754578948537
+ - -1.5550402414337148
+ - -2.3837581520495568
+ - 2.8994061168626195
+ - 1.7797145150755054
+ - -1.8603529250780269
+ - 0.21461007704089105
+ - 1.369004391180646
+ - -1.6305786956995496
+ - -2.7632581079117684
+ - 3.018403490364699
+ - 1.7349443172757917
+ - -1.6984554580951512
+ - 0.08684474508674857
+ - 1.4761989759264862
+ - -2.6774522660162026
+ - 2.8570271093180777
+ - -2.1859587316430034
+ - 2.3924382112846336
+ - 2.485382896535229
+ - 2.814949540707456
+ - 2.8414605602386973
+ - 3.676758207798909
+ - 3.6202564422441306
+ - -2.653169035716344
+ - 2.8651478863973563
+ - -2.2244778983669313
+ - 0.6974299394297769
+ - 0.9164326099210696
+ - -2.310228019446205
+ - 1.888868726805831
+ - 3.4666063612189193
+ - -1.9753068578349398
+ - -1.278878206147459
+ - 0.5770372545577188
+ - 1.0367738501562367
+ - -2.429912258899225
+ - 1.8918055428767413
+ - 3.25037778966353
+ - -1.6151279699978254
+ - -1.1793184686755833
+ - 0.3748083593417867
+ - 1.2234917740652715
+ - -2.4982890099702693
+ - 2.887244910213061
+ - -2.3682778335616255
+ - 1.0069143284217732
+ - 0.33014896540938043
+ - 0.02984372572998632
+ - -3.214557930820585
+ - -1.7177359122654567
+ - 2.878663915307026
+ - -2.240932022823038
+ - 0.8142359031972947
+ - 0.44214343915689547
+ - 0.2829782416836964
+ - -3.7359589867244307
+ - -1.8799616143403102
+ - 2.8503190176262505
+ - -2.1574865696976255
+ - 0.6932266943098803
+ - 1.0111943253177302
+ - -2.3695480831043745
+ - 2.887659242703692
+ - -4.169205917397017
+ - -5.13726030423868
+ - -4.615228569499633
+ - -3.6985670466065352
+ - 2.773452976629216
+ - -2.8099374217337543
+ - 1.8629851528574815
+ - -0.2926483807706053
+ - -1.3723128952518162
+ - 2.5204331617687745
+ - -1.9969605715337018
+ - -3.76768047366353
+ - 1.5374346282521305
+ - 1.0683046900148354
+ - -0.16756666756524868
+ - -1.4826855796613263
+ - 2.614930391701879
+ - -1.8866400653120141
+ - -3.326993615350066
+ - 1.1441405087748364
+ - 0.9355718885519231
+ - 0.03581934256194159
+ - -1.6564121871430049
+ - 2.66451963719366
+ - -2.867216801135345
+ - 2.032870173751004
+ - -0.6134475054436566
+ - -0.6148769016023937
+ - -0.5454854658751296
+ - 3.3134436965528242
+ - 1.8208927799299808
+ - -2.8377487453413504
+ - 1.8840208463616752
+ - -0.41121588230647327
+ - -0.7318652871894505
+ - -0.844707481305172
+ - 3.620111389821667
+ - 1.8671083615980881
+ - -2.780204953558105
+ - 1.785086438832319
+ - -0.2883503218606776
+ - -1.4605453777672084
+ - 2.5668668466719082
+ - -2.917895302035589
+ - 4.668021276079061
+ - 4.675944614763506
+ - 2.5764928399412454
+ - 2.49275696534091
+ - 0.8282573237390745
+ - 0.7014549942868938
+ - -1.4086836201673107
+ - 2.5405977504995456
+ - -2.9233898172247614
+ - 2.2267628353019884
+ - -0.8941927716560782
+ - -0.8044186050008667
+ - 1.3699579296431044
+ - 2.1725870506951237
+ - -3.3893786159083517
+ - -1.867682023902647
+ - 2.14653509192781
+ - -0.7712909482336492
+ - -0.9982877540727767
+ - 1.458845630267972
+ - 2.1799157189306526
+ - -3.027796770407058
+ - -1.8282786407036435
+ - 2.0037251429350533
+ - -0.5730562763458243
+ - -1.115487100793454
+ - 2.4227386509049116
+ - -2.93280696956609
+ - 2.419012078348836
+ - -0.8365803022889307
+ - -1.9470650571032395
+ - -2.0674683620270544
+ - -0.9125653586088345
+ - 2.489374125847477
+ - -0.6995361598145365
+ - -0.9949633720054716
+ - 1.5070252200257828
+ - 2.471453314733015
+ - -3.450660425267976
+ - -1.9147393963640895
+ - 2.00577003237674
+ - -0.576257567128198
+ - -1.1121913811121942
+ - 2.42051215694985
+ - -2.9323002610948956
+ - 2.420413531515651
+ - -2.9575477713910945
+ - -3.746442996521187
+ - 1.5774334281386236e-15
+ - 2.1710182357066764e-15
+ - 2.9985297205047253e-16
+ - 1.3113914636262563e-16
+ - -1.3407563753718887e-16
+ - -2.484850560109295e-16
+ - -3.9439971606528355e-16
+ - -2.3797986223150606e-16
+ - -4.812536803833515e-16
+ - 1.2738581433316625e-17
+ - 1.7048192424717898e-16
+ - 7.406161614493532e-16
+ - 6.675347543302933e-17
+ - 1.8404768629304863e-16
+ - -7.223613193060737e-17
+ - -5.492479267352104e-16
+ - -1.1537101593583353e-16
+ - -1.8829732669003981e-16
+ - -1.0831542380469762e-16
+ - 2.7669191489898773e-17
+ - 4.971355481443696e-17
+ - -8.255262513279215e-17
+ - -9.30578189122156e-17
+ - -9.116305832158632e-17
+ - 1.6154837363160628e-16
+ - -3.233035424163508e-16
+ - -8.528232115421714e-17
+ - 1.737079286361358e-17
+ - 3.163552252709054e-16
+ - 3.4005394982054963e-16
+ - 1.2796484076195338e-16
+ - 1.8553661139564408e-16
+ - 1.2674474935843767e-16
+ - 1.003783673333099e-16
+ - -2.317139690914169e-16
+ - -5.25094252848662e-16
+ - -8.289383713547027e-17
+ - -1.0587911840678753e-17
+ - -1.7006833394090247e-16
+ - 4.743674017838475e-16
+ - 1.8032537353656e-16
+ - 1.972308773056125e-16
+ - 2.942695029157396e-16
+ - -3.652002404421617e-17
+ - -1.3532674821367533e-16
+ - -1.3590577464246245e-16
+ - -2.4401828070314313e-17
+ - -6.014223438719926e-16
+ - 4.43699680573444e-16
+ - 5.293955920339376e-18
+ - 6.195582788022177e-17
+ - 7.746546436559103e-17
+ - 1.0189831170887608e-16
+ - -1.192794443301466e-16
+ - -5.219509665209605e-16
+ - -7.81685678862611e-17
+ - -1.317698715796973e-16
+ - -2.8785885316845363e-17
+ - 7.883031237630353e-17
+ - 1.1001502146955267e-17
+ - 4.134248701540032e-16
+ - -1.1166938269465872e-17
+ - 2.78677148369115e-16
+ - -1.7858829425019865e-16
+ - -2.187065539590205e-16
+ - -1.7842285812768804e-16
+ - -4.0970255739751456e-16
+ - 1.786296532808263e-16
+ - -2.4021324988539924e-16
+ - -1.1001502146955267e-16
+ - -1.4070342219527e-16
+ - -9.26442286059391e-18
+ - -6.698095010148142e-17
+ - -1.027978706250275e-16
+ - -5.803499177672042e-16
+ - -1.843371995074422e-16
+ - 6.753929701495471e-17
+ - 1.5964585822273434e-17
+ - 4.020097777007714e-17
+ - -2.3175532812204453e-16
+ - 2.2912902967718864e-17
+ - 1.0356301269163905e-16
+ - -7.312276614968765e-17
+ - 9.89308012613421e-17
+ - -2.1947169602563204e-16
+ - -5.3332469994356453e-17
+ - -1.902101818565687e-16
+ - -1.8677738231447362e-16
+ - -3.8224016106075404e-16
+ - -6.749793798432706e-17
+ - -2.4087499437544166e-16
+ - 4.998652441657946e-16
+ - 3.2309674726321256e-16
+ - -2.9625473638586686e-16
+ - -3.080007010841198e-16
+ - -1.0819522412193601e-16
+ - -1.743593333685213e-16
+ - -1.5435190230239494e-16
+ - 2.5204193264490753e-16
+ - -6.617444900424221e-17
+ - 2.125854174261281e-16
+ - 1.0761619769314889e-16
+ - 1.7312890220734867e-16
+ - -2.666003114258408e-16
+ - -2.727214479587332e-16
+ - -1.2506970861801778e-16
+ - -2.5787355596340635e-17
+ - 5.39321759384574e-17
+ - 4.7314731038033177e-17
+ - 1.2134739586152916e-16
+ - 3.4782944757854814e-17
+ - 1.0298398626285193e-16
+ - 2.145292918656277e-16
+ - -3.652002404421617e-17
+ - -4.9299964508160443e-17
+ - -1.1125579238838222e-16
+ - -3.0940690812545995e-16
+ - -1.9112008053037702e-16
+ - 1.4275069421133875e-16
+ - 4.0531850015098356e-18
+ - 1.9540074020033894e-16
+ - 3.590480846362986e-17
+ - -5.658742570475262e-16
+ - -1.31687153518442e-16
+ - -1.1745964698252993e-16
+ - -1.6932387138960474e-16
+ - -5.608284553109528e-17
+ - 2.6186470241897474e-16
+ - -1.1903129014638068e-16
+ - -1.2583485068462932e-17
+ - 1.1563984963491327e-16
+ - -2.2735059136019966e-16
+ - -4.932736486595127e-16
+ - -1.575365476607241e-16
+ - -3.190849212923304e-16
+ - 3.081661372066304e-16
+ - 6.489231905478502e-17
+ - 2.2888087549342276e-16
+ - -2.3723539968020834e-16
+ - 8.573727049112131e-17
+ - 1.4144788474656773e-16
+ - 3.0192092358185505e-16
+ - -8.78259015378177e-17
+ - -3.297141921636368e-16
+ - 2.845501307182415e-16
+ - 3.426337193559494e-16
+ - 6.749793798432706e-17
+ - -6.183175078833882e-17
+ - -2.8256489724811425e-16
+ - 2.7927685431321597e-17
+ - 2.039000209943213e-17
+ - 3.391440511467413e-16
+ - 1.9901965538025843e-16
+ - -2.893477782710491e-16
+ - -4.0722101555985548e-16
+ - 7.492188398199048e-17
+ - -2.444318710094197e-16
+ - 4.0655927106981304e-17
+ - -1.7197084934977443e-16
+ - 1.3317607862103744e-17
+ - 1.4157196183845069e-16
+ - 9.696883224594289e-17
+ - 1.319353077022079e-17
+ - -1.170357169185965e-16
+ - 3.788487205492866e-17
+ - -2.489813643784613e-17
+ - -1.4612145520749234e-16
+ - 1.2920561168078292e-16
+ - -1.6973746169588125e-16
+ - 3.3004506440865804e-17
+ - -1.1299287167474358e-16
+ - 4.021648740656251e-16
+ - -6.509911420792328e-17
+ - -3.1267427154504446e-17
+ - 2.895132143935597e-19
+ - 5.587605037795702e-17
+ - -6.369290716658313e-17
+ - -6.011535101729129e-17
+ - -1.4606768846767637e-15
+ - -4.235991916884054e-16
+- - 4.741282625051001
+ - 3.8084237725085472
+ - -2.8563570804652456
+ - 2.718143815195633
+ - -1.7755794389236175
+ - 0.0881689046969627
+ - 1.475186242437952
+ - -2.6376061405525086
+ - 1.9937501906006174
+ - 3.793457366886853
+ - -1.3387693791341602
+ - -0.9716149195864128
+ - -0.03546753147461632
+ - 1.5837211298666027
+ - -2.719938760823679
+ - 1.8737796651361163
+ - 3.335554611445208
+ - -0.9658407945940897
+ - -0.841284791454585
+ - -0.24052259468802806
+ - 1.7492667859840707
+ - -2.764827425720036
+ - 2.7880307451282578
+ - -1.9540967687411488
+ - 0.4112222475262068
+ - 0.7150794016528313
+ - 0.7302367503400305
+ - -3.33024402861167
+ - -1.8479044736636463
+ - 2.753566104335117
+ - -1.7958273914259935
+ - 0.20910493899442995
+ - 0.8301024045324873
+ - 1.0422046603904387
+ - -3.6242254281542476
+ - -1.8862237087067166
+ - 2.683290097300789
+ - -1.694263820533192
+ - 0.0838451990551647
+ - 1.5606112949949928
+ - -2.6791705311500906
+ - 2.856620559179821
+ - -4.529776450153534
+ - -4.545977094130929
+ - -2.636475219162209
+ - -2.560136384952171
+ - -1.115314543078839
+ - -0.9941814369964131
+ - 1.5112707905442946
+ - -2.655783720172427
+ - 2.8649668286480727
+ - -2.158647542217265
+ - 0.6945667624861149
+ - 0.9216665787570523
+ - -1.4429972521973227
+ - -2.333614892970213
+ - 3.311145483557823
+ - 1.8428316936900666
+ - -2.071389220962055
+ - 0.5716228008356691
+ - 1.1134980957087208
+ - -1.525137928109129
+ - -2.319614954582166
+ - 2.9435349044057615
+ - 1.7969776779704343
+ - -1.9222573913087624
+ - 0.3693365834471712
+ - 1.226196577481098
+ - -2.549309167779672
+ - 2.8873654029535705
+ - -2.3654001464302574
+ - 0.7387596919674296
+ - 1.790311442938429
+ - 2.2125862575700808
+ - 1.0053167951401119
+ - -2.608040430489376
+ - 2.8695033068408478
+ - -2.23769173966548
+ - 0.6890344641063068
+ - 1.8296673201378013
+ - 2.7324254026927983
+ - 1.2106359166804777
+ - -2.6960989684046965
+ - 2.8495840788460436
+ - -2.155707522919184
+ - 0.5965621204116122
+ - 1.0139594532497136
+ - -2.3730761957788187
+ - 3.872529065330816
+ - 4.677540699766139
+ - 2.5900587557364974
+ - 1.9905781080728095
+ - -1.9164377126687748
+ - 2.7748904294059296
+ - -2.809275158055327
+ - 1.7863630951924876
+ - -0.2900598134262358
+ - -1.3770528319111253
+ - 1.6784635229132105
+ - 2.8593019056171913
+ - -3.186314896952291
+ - -1.814652002197734
+ - 1.6880773208369086
+ - -0.16243850725427697
+ - -1.5535292653700818
+ - 1.680693817554279
+ - 2.662218532412637
+ - -2.665230404454162
+ - -1.6820110377099127
+ - 1.517523114536579
+ - 0.04092510873304943
+ - -1.65874267345894
+ - 2.701411644409962
+ - -2.8669776407640466
+ - 2.0292771610973173
+ - -0.45994785907469776
+ - -1.3334576612923288
+ - -2.5718396551444878
+ - -1.2415978752192844
+ - 2.7443270379187137
+ - -2.816067723083919
+ - 1.8801117240572052
+ - -0.34441761804296384
+ - -1.2096483812073904
+ - -2.9475299333098737
+ - -1.3559988472342102
+ - 2.8009839426924428
+ - -2.778722730572379
+ - 1.7829587592993217
+ - -0.18968734609577062
+ - -1.4631383324423919
+ - 2.5693528662117866
+ - -5.181590330688461
+ - -5.108468927561323
+ - -1.4646579861366549
+ - -1.3028897801719552
+ - 2.0764660334560787
+ - 2.222014472905851
+ - -0.24982395361392484
+ - -1.4112266000812472
+ - 2.5390076578745986
+ - -2.911508802712242
+ - 2.2238390036450957
+ - -0.8897141995054968
+ - -0.4260626638123652
+ - -0.24181876787478412
+ - 3.5388537459625895
+ - 1.7746592280042937
+ - -2.8940545185199102
+ - 2.1418561925319732
+ - -0.6919903733027506
+ - -0.5638695675289304
+ - -0.45254054953961775
+ - 3.298938810084446
+ - 1.8040559769481543
+ - -2.856029917833769
+ - 1.9989663387296945
+ - -0.5711791380699042
+ - -1.2045243769359864
+ - 2.4213865064382767
+ - -2.930371775533098
+ - 1.6265379503119126
+ - 3.105463224656381
+ - 0.3077468664784188
+ - -0.13939810733218191
+ - -1.3162771182076238
+ - 2.5273564892345757
+ - -0.6944502676920545
+ - -0.5513504716084885
+ - -0.4967686408870257
+ - 3.7721551209937236
+ - 1.915219468330534
+ - -2.859028163419635
+ - 2.0022248830920573
+ - -0.5735528626993868
+ - -1.2038731870174355
+ - 2.4225425708593447
+ - -2.9330098445432276
+ - 4.124364805420261
+ - 5.091750045703802
+ - -9.81243001641029e-16
+ - -1.4508747944180103e-15
+ - -1.375601358675685e-16
+ - -3.3914405114674135e-17
+ - -1.402071138277382e-17
+ - 1.0058516248644815e-16
+ - 2.633639672792271e-16
+ - 1.802426554753047e-16
+ - 1.0604455452929814e-16
+ - 5.2939559203393765e-17
+ - -2.249931266144235e-17
+ - -5.582641954120384e-16
+ - 1.0025429024142694e-16
+ - -2.1490152314127657e-16
+ - -7.665896326835183e-17
+ - 1.5129133403594874e-16
+ - 3.412120026781239e-17
+ - 1.619619639378828e-16
+ - 2.277745214241331e-16
+ - 1.7453510924868884e-17
+ - 3.9539233280034717e-17
+ - 1.079470699381701e-16
+ - 1.4533563362556696e-16
+ - 8.610950176677017e-17
+ - -1.8743912680451605e-16
+ - -6.61744490042422e-19
+ - 2.0493399676001258e-17
+ - -6.398242038097669e-17
+ - -1.8089406020769021e-16
+ - -1.1506082320612615e-16
+ - 2.3201382206346735e-16
+ - -1.5848780536516008e-16
+ - -3.468342459040703e-17
+ - 2.9778502051908996e-17
+ - 2.393033512115909e-16
+ - 7.923356292492313e-17
+ - 5.3518585632180884e-17
+ - -1.4620417326874764e-17
+ - 5.339450854029793e-17
+ - -3.0715284095625295e-16
+ - -7.77549775799846e-18
+ - -9.926167350636332e-19
+ - -3.2817356827275677e-16
+ - 8.581998855237661e-17
+ - 1.7432831409555056e-16
+ - -1.0013021314954399e-16
+ - 9.003860967639705e-17
+ - 5.344413937705112e-16
+ - -4.4171444710331673e-16
+ - 2.7958704704292335e-17
+ - 1.378082900513344e-16
+ - 2.225115847767644e-17
+ - -1.6653213682223827e-16
+ - -2.895132143935597e-17
+ - 8.437242248040881e-17
+ - 6.87387089031566e-17
+ - 1.0223952371155421e-16
+ - 1.3292792443727155e-16
+ - -8.553047533798305e-17
+ - 1.0666752492812713e-16
+ - -3.486566281911011e-16
+ - 5.0209863181968774e-17
+ - -2.395515053953568e-16
+ - 2.1415706058997884e-16
+ - 1.406207041340147e-16
+ - 2.448299516792108e-16
+ - 1.7221900353354034e-16
+ - -1.8648786910008006e-16
+ - -6.7001629616795234e-18
+ - 8.99145325845141e-17
+ - 1.7897086528350443e-16
+ - -5.790264287871193e-18
+ - 5.368402175469149e-17
+ - 1.6444350577554188e-16
+ - 4.346006938353607e-16
+ - 1.324109365544259e-16
+ - -2.2606846141074246e-16
+ - -1.3913177903141925e-16
+ - 3.937379715752411e-17
+ - 7.831849437228634e-17
+ - 2.134125980386811e-17
+ - -1.5435190230239494e-16
+ - 5.252596889711725e-17
+ - 7.122025074081568e-17
+ - 8.275942028593041e-17
+ - 4.702521782363962e-17
+ - 1.3706382750003669e-16
+ - 1.5029871730088513e-16
+ - 2.784289941853491e-16
+ - 2.666830294870961e-16
+ - 1.530284133223101e-16
+ - -3.930762270851987e-16
+ - -3.011221773028586e-16
+ - 2.504082509351153e-16
+ - 1.4264729663476962e-16
+ - 5.40148939997127e-17
+ - 2.2941854289158223e-16
+ - 1.1580528575742386e-17
+ - -1.6295458067294645e-17
+ - 1.6948930751211535e-16
+ - -1.6254099036666991e-16
+ - 3.302105005311686e-16
+ - -1.62292836182904e-16
+ - 2.1448793283500005e-16
+ - 1.5832236924264947e-16
+ - -3.6561383074843823e-17
+ - -4.090408129074721e-17
+ - 2.5683958019771506e-17
+ - 6.228670012524298e-17
+ - -3.1184709093249143e-17
+ - 7.020695449043822e-17
+ - -1.341686953561011e-16
+ - -3.213700077345081e-16
+ - 9.760731228125725e-17
+ - -7.494256349730431e-17
+ - 5.575197328607407e-17
+ - 2.4104043049795226e-16
+ - 1.6788664507529385e-16
+ - -7.043442915889031e-17
+ - 2.99439381744196e-17
+ - -2.100211575272137e-16
+ - -2.072087434445334e-17
+ - 3.79634542131212e-16
+ - 9.955118672075687e-17
+ - -3.846389848371578e-17
+ - -9.793818452627846e-17
+ - -6.236941818649829e-17
+ - -2.599828665254166e-16
+ - 8.681260528744024e-17
+ - -6.555406354482744e-17
+ - -1.2517310619458691e-16
+ - 1.5170492434222525e-16
+ - 4.742278150554792e-16
+ - 2.179000528617813e-16
+ - 1.3263841122287799e-16
+ - -4.172919395176886e-16
+ - 5.1016364279207976e-17
+ - 1.2407709188295413e-18
+ - 2.779326858178173e-16
+ - -1.1805935292663087e-16
+ - 2.575840427490128e-16
+ - -3.107510766208586e-16
+ - 5.046318724456314e-17
+ - 1.712263867984767e-16
+ - -7.610061635487853e-17
+ - -2.2743330942145496e-16
+ - -8.850832554317396e-18
+ - 1.0236360080343716e-17
+ - 2.9381455357883543e-16
+ - -4.4254162771586974e-17
+ - -1.1375801374135513e-16
+ - -3.041129522051206e-16
+ - -1.3028094647710186e-16
+ - 1.2159555004529507e-16
+ - 3.573420246229079e-16
+ - -7.320548421094295e-17
+ - 8.776386299187622e-17
+ - -1.6932387138960474e-16
+ - 2.830198465850184e-16
+ - 1.1694265909968429e-16
+ - 3.176373552203626e-17
+ - 2.067951531382569e-18
+ - 3.6644101136099126e-17
+ - 6.11700062982964e-17
+ - 3.169135721843787e-16
+ - 2.1217182711985157e-17
+ - 1.2742717336379391e-16
+ - -1.801599374140494e-16
+ - 2.0009499017657737e-16
+ - -9.074171319706712e-17
+ - 1.5774334281386235e-16
+ - -1.5509636485369266e-16
+ - 1.0753347963189359e-16
+ - 5.707546226615891e-17
+ - -2.0131508158009308e-17
+ - -4.735609006866083e-17
+ - 2.274746684520826e-19
+ - 3.5072457972248373e-17
+ - 8.675470264456153e-16
+ - 1.6593243087813733e-16
+- - -2.169109975783139
+ - -1.6902462718189497
+ - 1.4844702765895141
+ - -2.020392979029364
+ - 1.8500554267796354
+ - -1.0769767241563422
+ - -0.06829445358585765
+ - 1.1409259379313954
+ - -1.2538690402981156
+ - -2.191859308022887
+ - 2.0359536495599566
+ - 1.1889528041391197
+ - -1.0013195557499912
+ - -0.15629897843514287
+ - 1.256103552243154
+ - -1.2382708927605943
+ - -2.0131328855096022
+ - 1.6813172111163763
+ - 1.0936946168512056
+ - -0.8748336246377593
+ - -0.2987783565917661
+ - 1.3221624441469633
+ - -1.9875774940615438
+ - 1.9085858528248794
+ - -1.2633015565752144
+ - 0.16603097124705457
+ - 0.6703875815699907
+ - 1.9599581857119184
+ - 0.9800203711742826
+ - -2.006333478637276
+ - 1.8580627462422454
+ - -1.1471009386044433
+ - 0.08285475655674623
+ - 0.5546945862562136
+ - 2.219154337584416
+ - 1.0517432411719563
+ - -2.0305528909822237
+ - 1.82084792492907
+ - -1.0744147381912468
+ - -0.13846468431110054
+ - 1.196641659842343
+ - -1.920706437185884
+ - 3.642267944135719
+ - 3.6021360376194362
+ - 1.224635204522223
+ - 1.1211904183819774
+ - -1.0466106350032038
+ - -1.1487192568742917
+ - -0.0976706323084793
+ - 1.1649605437057113
+ - -1.9059581441023516
+ - 1.9643788507595095
+ - -1.4162508468166761
+ - 0.3565791475473135
+ - 0.4511289889923958
+ - 0.47029425457455937
+ - -2.519885846926754
+ - -1.2894798496535638
+ - 1.9431959329291908
+ - -1.3500698903443993
+ - 0.2160840083958462
+ - 0.5426393362274257
+ - 0.5904807951854218
+ - -2.3288157559578426
+ - -1.300037025424991
+ - 1.8987887628177196
+ - -1.239886172783597
+ - 0.12883467836756982
+ - 1.0301116427346453
+ - -1.8409921532749487
+ - 2.0045764782624187
+ - -1.047417398210934
+ - -2.053516928181703
+ - -0.49142441313671353
+ - -0.06142636072708203
+ - 1.1044718441057628
+ - -1.8986295452204622
+ - 1.9828983450581772
+ - -1.0613898533848747
+ - -2.2575681076890497
+ - -0.7540723002466948
+ - -0.19267708789114737
+ - 1.2201886148275614
+ - -1.9307031505176548
+ - 1.9636823236839278
+ - -1.3644404023154986
+ - 0.2889389139216485
+ - 0.8295744221281326
+ - -1.7771022226941637
+ - -2.08271456425325
+ - -0.0388881886315198
+ - 0.06549787917074415
+ - 0.38247826113657585
+ - -1.4351828351492248
+ - 1.970223235144602
+ - -1.895997353376208
+ - 1.1433065919916074
+ - -0.07128865154707877
+ - -0.6507260943242501
+ - -0.8782917474948873
+ - 2.653580290035501
+ - 1.3899738888174067
+ - -1.8608218930020164
+ - 1.0699329858699076
+ - 0.07199730537555943
+ - -0.7226862579308732
+ - -0.9316511144074957
+ - 2.3089042096685994
+ - 1.3227625674646186
+ - -1.797196601919938
+ - 0.9459515891173107
+ - 0.1581585009962254
+ - -1.3155399189886843
+ - 1.9287879912960268
+ - -1.9701626693610874
+ - 0.9097194266743274
+ - 1.8587870438300569
+ - 0.8374263665227443
+ - 0.2650246490479748
+ - -1.3806468695695513
+ - 1.9668226574429561
+ - -1.9257263513565965
+ - 0.8520550502875107
+ - 1.906415383112887
+ - 1.0713608580845373
+ - 0.3659474979648817
+ - -1.4834437537086962
+ - 1.9844515075356288
+ - -1.8948575349269459
+ - 1.084845725167209
+ - -0.00276161655564955
+ - -1.1338044660557296
+ - 2.9520219657178126
+ - 2.8639643954896967
+ - 0.060885915181051166
+ - -0.06564310419470434
+ - -2.8811674091271025
+ - -2.969629295497496
+ - 1.1210375582275773
+ - -0.04522093288624457
+ - -1.0956004012592369
+ - 1.8574163872875942
+ - -2.0146478647246333
+ - 1.467476090847864
+ - -0.37802444433418436
+ - -1.0926006717514734
+ - -1.8886357768974467
+ - -0.84140100399532
+ - 1.8902927602138244
+ - -1.996633845577124
+ - 1.3669737205670238
+ - -0.2773461683124341
+ - -0.8577146281928568
+ - -1.8435720460293605
+ - -0.89961634989854
+ - 1.9347649581732094
+ - -1.9612096507498573
+ - 1.3012270916373985
+ - -0.20588760237604878
+ - -0.9560836028516624
+ - 1.7578753628265722
+ - -1.3220311801423013
+ - -2.3039001657437925
+ - 0.9514622386050097
+ - 0.7327743493997284
+ - -0.11861542453979039
+ - -1.0794113110609052
+ - 1.823920996018876
+ - -0.32192687965092043
+ - -0.991001536841631
+ - -2.115302642941467
+ - -0.9715539499795617
+ - 1.9369325684085665
+ - -1.9629231691894833
+ - 1.3018961142035543
+ - -0.20525868874601716
+ - -0.9577346295791812
+ - 1.7600430391844482
+ - -2.8259476771337924
+ - -3.4288669674214747
+ - 9.25615105446838e-16
+ - 1.0779817742791057e-15
+ - 2.729696021424991e-17
+ - 2.4153673886548405e-17
+ - -5.362198320875001e-17
+ - -1.1894857208512538e-16
+ - -5.194694246833013e-17
+ - -2.7346591051003095e-16
+ - -2.5973471234165066e-17
+ - -6.79787367153735e-17
+ - 5.368402175469149e-17
+ - 4.078827600498979e-16
+ - -2.0530622803566144e-16
+ - 2.0472720160687435e-18
+ - 3.730584562614155e-17
+ - -7.742410533496338e-17
+ - -1.6626330312315856e-17
+ - 6.452008777913615e-18
+ - -7.651420666115505e-17
+ - 1.0563096422302162e-16
+ - 5.259834720071564e-17
+ - 3.7223127564886245e-17
+ - -8.635765595053608e-17
+ - 3.610643373793966e-17
+ - 3.143286327701505e-17
+ - -1.0918784085699964e-17
+ - -1.4847891995326847e-17
+ - 6.758065604558236e-17
+ - 2.998943310811002e-16
+ - 1.3234889800848441e-17
+ - -2.295426199834652e-16
+ - 1.6121750138658507e-16
+ - -2.870316725559006e-16
+ - 1.228363209641246e-17
+ - -1.89341642213388e-16
+ - 1.9686898578762056e-17
+ - 3.929107909626881e-17
+ - 8.561319339923835e-17
+ - 1.0517601488611746e-16
+ - 1.1756304455909906e-16
+ - 9.74832351893743e-17
+ - -1.1431636065482842e-16
+ - 3.146595050151717e-16
+ - -4.4254162771586974e-17
+ - -2.096075672209372e-16
+ - 1.3210074382471852e-16
+ - -6.609173094298691e-17
+ - 1.3152171739593138e-17
+ - 1.7900188455647516e-16
+ - 1.4100198269761337e-17
+ - -2.3392667722999623e-16
+ - -1.4086885831778061e-16
+ - 1.8276555634359144e-16
+ - 1.0257039595657542e-16
+ - 2.2664748783952955e-17
+ - -7.951273638165977e-17
+ - -5.717885984272804e-17
+ - 4.1276312566396075e-17
+ - 7.758954145747398e-17
+ - -1.0004749508828868e-16
+ - 3.595754122768011e-16
+ - -8.271806125530276e-19
+ - 1.401243957664829e-16
+ - -1.711436687372214e-16
+ - -2.1961645263282882e-16
+ - -2.0658835798511864e-16
+ - -1.3234889800848443e-16
+ - 8.882885803053825e-17
+ - 1.9604180517506753e-16
+ - 1.3607121076497304e-17
+ - -2.2044363324538184e-17
+ - 5.839895124624375e-17
+ - 5.790264287871193e-18
+ - -1.693652304202324e-16
+ - -3.1647930236278834e-16
+ - -3.7553999809907456e-17
+ - 2.4281886881494127e-16
+ - 1.651155900232412e-16
+ - -1.6047303883528737e-17
+ - 5.4871801415529353e-17
+ - 2.9840540597850473e-17
+ - -3.3004506440865804e-17
+ - 2.4381148555000488e-17
+ - -1.5902547276331955e-16
+ - -7.610061635487853e-17
+ - 6.2865726554030096e-18
+ - -4.5122702414767654e-17
+ - 4.606362036154673e-18
+ - -4.7604244252426737e-17
+ - -1.365881986478187e-16
+ - 4.2665975995485163e-16
+ - -4.847278389560742e-16
+ - 7.287461196592174e-17
+ - -1.5517649797553374e-16
+ - 6.48819792971281e-18
+ - -6.418921553411495e-17
+ - 7.233694456776227e-17
+ - 1.679176643482646e-16
+ - -2.2532399885944474e-16
+ - -2.1443623404671549e-16
+ - 2.2275973896053035e-16
+ - -6.097975475740919e-16
+ - 1.5187036046473586e-16
+ - -1.2919914933224735e-16
+ - -2.5319998550248177e-16
+ - -2.683373907122022e-16
+ - 3.604439519199818e-17
+ - -2.4815418376590827e-17
+ - 3.759535884053511e-17
+ - -1.6543612251060553e-17
+ - -1.0083331667021406e-16
+ - -3.623051082982261e-17
+ - 1.6174482902708762e-16
+ - -9.318189600409856e-17
+ - 5.707546226615891e-17
+ - -2.5030485335854617e-16
+ - -1.7834014006643274e-16
+ - -7.883031237630353e-17
+ - -1.2697222402688973e-17
+ - 4.971355481443696e-17
+ - 1.9124415762225997e-16
+ - -1.3507859402990942e-16
+ - 1.7354249251362518e-16
+ - 6.226602060992916e-17
+ - 8.321436962283457e-17
+ - -3.705769144237564e-17
+ - 1.406207041340147e-17
+ - -6.326316098896768e-18
+ - 5.428372769879243e-18
+ - 2.375817815617149e-16
+ - 2.7330047438752034e-16
+ - 9.760731228125725e-18
+ - 1.6146565557035098e-16
+ - -1.5466209503210232e-16
+ - -2.067951531382569e-19
+ - 4.49159072616294e-16
+ - -8.466710557363083e-17
+ - -1.8656024740367845e-16
+ - -2.4683069478582346e-16
+ - 1.0314942238536254e-16
+ - -1.9645539548134405e-16
+ - 9.020404579890766e-17
+ - 1.6802106192483375e-17
+ - 2.5063572560356735e-17
+ - -3.336846591038913e-16
+ - 1.191243479652929e-16
+ - -3.629254937576409e-17
+ - 4.079551383534963e-17
+ - -1.0120554794586292e-16
+ - 7.827713534165869e-17
+ - 1.5575810934373509e-16
+ - 2.7065349642735066e-16
+ - 7.692779696743156e-17
+ - 4.7232012976777874e-17
+ - 7.061537491788628e-17
+ - 4.615667818045894e-17
+ - -4.9299964508160443e-17
+ - 1.727204817799006e-16
+ - -1.8355137792551682e-16
+ - 4.615667818045894e-17
+ - 3.4390033966892126e-17
+ - -3.6313228891077915e-17
+ - 6.185243030365264e-17
+ - -8.42069863578982e-17
+ - -4.867130724262015e-16
+ - -3.027481041944081e-17
+ - -1.87087575044181e-16
+ - 5.935020895067974e-17
+ - -2.3706996355769773e-16
+ - 1.22670884841614e-16
+ - -6.644328270332195e-17
+ - -1.1952759851391248e-17
+ - -3.0068015266302556e-17
+ - 8.660581013430199e-17
+ - -4.80591935893309e-17
+ - -7.581110314048497e-17
+ - -7.237830359838991e-19
+ - -1.2949512489517648e-16
+ - -1.0826139857094026e-15
+ - 4.22937447198363e-16
+- - 0.4677678836196316
+ - 0.1370612844521065
+ - -1.2014230055658999
+ - 3.722117341389029
+ - -5.035353578158127
+ - 4.653102033519392
+ - -2.739380137525181
+ - -0.06430755389657127
+ - 1.7625078946802069
+ - 2.465319954949678
+ - -6.654339685401947
+ - -3.5068373305331697
+ - 4.558052335042059
+ - -2.548312241938001
+ - -0.4229476114748965
+ - 1.930703406658241
+ - 2.561120270414873
+ - -5.774381455830307
+ - -3.330726147233048
+ - 4.38346963931589
+ - -2.2308034702669697
+ - -0.6406017514902613
+ - 3.432354800426278
+ - -4.947144305281626
+ - 4.861506845825857
+ - -2.1891563233339637
+ - -4.530366424442814
+ - -2.3281684568525165
+ - -0.7991256047772152
+ - 3.5918079486016756
+ - -5.02713269174949
+ - 4.737442619785432
+ - -2.0378031807811325
+ - -4.623425127416324
+ - -2.9286062352938234
+ - -1.051223517123737
+ - 3.838543159760204
+ - -5.064130258899279
+ - 4.649944631161316
+ - -2.588342989002607
+ - -0.2367495977053444
+ - 2.9890130969729234
+ - -7.640435114579385
+ - -7.424313899404404
+ - -0.3448011535023812
+ - -0.023311218577817084
+ - 7.023224418653361
+ - 7.249123324308989
+ - -2.6766929562197412
+ - -0.1382835866468808
+ - 2.904740719013902
+ - -4.794072872127238
+ - 4.996177036791459
+ - -3.580264618653648
+ - 0.8153813220075586
+ - 2.5065815645610705
+ - 4.9318577082470805
+ - 2.227178673656114
+ - -4.866633374279868
+ - 4.9431497715252775
+ - -3.3150937288393734
+ - 0.5601777492406553
+ - 1.9279485496396904
+ - 4.790641146283807
+ - 2.3671303636664414
+ - -4.965694262199037
+ - 4.837734332385011
+ - -3.145094985773422
+ - 0.26704102662732726
+ - 2.5621428625263616
+ - -4.5652231377367904
+ - 3.3234658892449644
+ - 5.832801800497831
+ - -2.168103582358875
+ - -1.7267269183775313
+ - 0.04829900039016549
+ - 2.866566678580123
+ - -4.716363004150725
+ - 3.4868205972274766
+ - 6.6891219951200265
+ - -2.003090504827322
+ - -1.535493516383728
+ - -0.31064312705133335
+ - 3.048682389793366
+ - -4.7967200451755465
+ - 4.9546986386946
+ - -3.4548773836046136
+ - 0.8338805416651934
+ - 0.40700397105505026
+ - 0.19927650629109273
+ - -4.995712133698131
+ - -4.2764825073410275
+ - 1.9702957343215202
+ - 0.9274365866627158
+ - -3.521207831595802
+ - 5.013634403898757
+ - -4.7647101737329125
+ - 2.971991945042223
+ - -0.371242211441753
+ - -1.6873521453715565
+ - -5.793808510639099
+ - -2.7439463179105834
+ - 5.053427010276485
+ - -4.678806387338558
+ - 2.6726099430149435
+ - -0.045962602061195526
+ - -1.0491471043142058
+ - -5.255397756785362
+ - -2.7009511477177672
+ - 5.0979487736103675
+ - -4.5216017579150884
+ - 2.483344104510437
+ - 0.5261684514659667
+ - -3.2162707719333214
+ - 4.868226268508902
+ - -3.249531120504007
+ - -5.853219834864037
+ - 1.3002688248534975
+ - 1.2658079156788427
+ - 0.7434231631421854
+ - -3.487587320522252
+ - 4.967213082384478
+ - -3.2160811111364715
+ - -6.318721553379288
+ - 0.9788044932481592
+ - 1.031892313265786
+ - 1.096642186086932
+ - -3.647582312119598
+ - 5.015154725401018
+ - -4.697164001879936
+ - 2.829795196631954
+ - -0.04327347731761991
+ - -3.1731934534758683
+ - -2.9156816105414984
+ - 2.6845243721767136
+ - 2.950870808271898
+ - 9.0534567165544
+ - 9.162080740000336
+ - -4.741829083471628
+ - 2.920637735266527
+ - -0.15715613124540537
+ - -2.800199352682437
+ - 4.683283329561404
+ - -5.051995134293071
+ - 2.5831501532290475
+ - 5.489204151795838
+ - 1.5846906141933192
+ - 0.3102992627935209
+ - -2.9810230199008543
+ - 4.769136032908378
+ - -4.9818470742579235
+ - 2.3971359299397954
+ - 4.8339404988146555
+ - 1.8574138881118676
+ - 0.5183086087594578
+ - -3.2653694056177613
+ - 4.8875911766628395
+ - -4.926595060673624
+ - 3.2440716826912355
+ - -0.5616373434444996
+ - -2.306374609124573
+ - 2.8083950068699073
+ - 4.3530542756066595
+ - -4.974334452721968
+ - -3.0790985123548213
+ - 3.0720679438257883
+ - -0.20359649202785224
+ - -2.6211601652190106
+ - 3.046766862492839
+ - 5.532897272102578
+ - 2.1570675298052926
+ - 0.6258347607187255
+ - -3.2692088370797987
+ - 4.888907127526066
+ - -4.924843170741321
+ - 3.239804654045512
+ - -0.5564029187269188
+ - -2.310932812332237
+ - 4.709655458574472
+ - 5.539799189637189
+ - -1.0965106200002935e-15
+ - -1.6146565557035098e-16
+ - 1.9852334701272662e-16
+ - 3.2903176815828053e-16
+ - -3.836463681020942e-16
+ - 2.7925617479790214e-16
+ - -3.570111523778867e-16
+ - -1.0554824616176632e-16
+ - -9.049355901330123e-16
+ - 2.212553042214495e-16
+ - 1.2242273065784808e-17
+ - -1.9554549680753572e-16
+ - 5.120247991703241e-16
+ - 2.298734922284864e-16
+ - -1.2593824826119846e-16
+ - -6.41478565034873e-17
+ - -2.5270367713494995e-16
+ - -3.4030210400431554e-16
+ - 1.8206245282292137e-16
+ - -1.1886585402387008e-16
+ - -1.436812724004609e-16
+ - -2.071260253832781e-16
+ - 1.904583360403346e-16
+ - 6.617444900424221e-18
+ - 2.248276904919129e-16
+ - -9.727644003623604e-17
+ - -4.4833189200374094e-17
+ - -1.3665023719376017e-16
+ - -3.060568266446202e-16
+ - 4.443614250634865e-16
+ - 6.935082255644583e-16
+ - -2.0911125885340537e-16
+ - 1.4273828650215044e-15
+ - 2.072914615057887e-16
+ - 2.0795320599583113e-16
+ - -5.757177063369073e-16
+ - -3.027481041944081e-16
+ - -3.0465061960328004e-16
+ - -5.49413362857721e-16
+ - 2.7098436867237187e-16
+ - -2.071260253832781e-16
+ - 7.533961019132975e-16
+ - -4.0961983933625926e-16
+ - 1.5981129434524492e-16
+ - 7.012216847765153e-16
+ - -3.3145127144999814e-16
+ - 2.4104043049795226e-16
+ - -9.975798187389513e-17
+ - -2.3756627192522955e-16
+ - 1.2035477912646553e-16
+ - 8.053430443816276e-16
+ - 4.590852399669304e-16
+ - -3.5415737926457875e-16
+ - -1.2639319759810263e-16
+ - -1.3354003809056077e-15
+ - 1.3052910066086777e-16
+ - 2.424724869334347e-16
+ - -4.1524466750161983e-17
+ - -1.2341534739291173e-16
+ - 5.075580238625378e-16
+ - -5.743942173568224e-16
+ - 9.396771758602393e-17
+ - -2.0447904742310842e-16
+ - 4.604087289470152e-16
+ - 4.107778921938335e-16
+ - 3.6114705544065183e-16
+ - -2.3161057151484772e-17
+ - -2.2557215304321065e-16
+ - -6.999602343423719e-16
+ - -1.576192657219794e-16
+ - -1.8743912680451605e-16
+ - -2.6800651846718097e-16
+ - -1.602300545303499e-16
+ - 2.842192584732203e-16
+ - 3.752091258540533e-16
+ - -4.9961708998202865e-17
+ - -4.755461341567356e-16
+ - -4.937441076329022e-16
+ - 2.5030485335854617e-16
+ - -5.183113718257271e-16
+ - -4.582580593543773e-17
+ - -3.845459270182456e-16
+ - -2.3243775212740075e-17
+ - 6.440428249337872e-16
+ - 6.303116267654071e-17
+ - -1.7668577884132669e-16
+ - -3.775252315692018e-16
+ - -2.541098841762901e-16
+ - -1.5405411728187585e-15
+ - 8.741644713460395e-16
+ - -9.019577399278214e-16
+ - 2.0686132758726116e-15
+ - 3.027481041944081e-17
+ - -4.524677950665061e-17
+ - -3.945237931571665e-16
+ - 1.2953648392580413e-16
+ - -1.0978754680110059e-16
+ - -3.479948837010587e-16
+ - 3.557290224284295e-16
+ - 1.8945537954761405e-16
+ - -3.1317057991257623e-16
+ - 1.6433597229590999e-15
+ - -5.612420456172293e-17
+ - -6.43132926259979e-17
+ - 5.537147020429967e-16
+ - 8.010417051963519e-16
+ - -1.621274000603934e-16
+ - 2.647391550475965e-16
+ - 4.885742288044458e-16
+ - 2.274746684520826e-16
+ - 4.466775307786349e-16
+ - 2.9778502051908992e-18
+ - -5.833277679723951e-16
+ - 2.693300074472658e-16
+ - -2.071260253832781e-16
+ - 6.690236794328887e-16
+ - 1.647743780205631e-16
+ - -1.1779051922755114e-16
+ - 4.849759931398401e-16
+ - -1.7254987577856155e-16
+ - -3.960540772903896e-16
+ - 8.453785860291942e-17
+ - -6.157118889538461e-16
+ - -1.387595477557704e-16
+ - -3.269017780809565e-16
+ - -6.372599439108524e-16
+ - -1.7949819292400698e-16
+ - -3.8248831524451995e-16
+ - -2.833920778606673e-16
+ - -7.2179780251377185e-16
+ - -4.691768434400773e-16
+ - -1.0364573075289436e-16
+ - -3.2057384639492583e-16
+ - 4.446095792472524e-16
+ - -3.6197423605320486e-16
+ - -1.0759965408089784e-15
+ - 3.573420246229079e-16
+ - 1.7321162026860397e-16
+ - 5.880426974639474e-16
+ - -1.5782606087511766e-16
+ - 7.983947272361822e-16
+ - -4.4254162771586976e-16
+ - -1.8322050568049563e-17
+ - -4.611118324676853e-16
+ - 1.450213049927968e-15
+ - 7.378580310943718e-17
+ - 2.309074679941777e-16
+ - 1.6899299914458353e-16
+ - -7.108583389127582e-17
+ - -1.2304311611726287e-16
+ - -4.0696252161843265e-16
+ - -2.928219368437718e-16
+ - 5.1554031677367444e-17
+ - -5.681903627626747e-16
+ - -1.029426272322243e-15
+ - -1.3019822841584656e-16
+ - -4.867957904874568e-16
+ - -5.812184574103849e-16
+ - 3.265709058359353e-16
+ - -1.0600319549867048e-16
+ - 3.866242183072851e-16
+ - 4.3269817842648873e-16
+ - 1.5071230760716162e-16
+ - 5.97224402263286e-17
+ - 9.893080126134211e-16
+ - 3.143286327701505e-17
+ - 1.449634023499181e-16
+ - -1.2018934300395492e-16
+ - 4.996170899820287e-16
+ - -1.2345670642353937e-17
+ - 1.0906376376511669e-16
+ - 5.962317855282223e-16
+ - 6.667075737177403e-17
+ - -1.0823658315256366e-16
+ - -2.7503755367388167e-17
+ - 2.3475385784254925e-16
+ - -3.6354587921705566e-17
+ - 1.5278025913854419e-16
+ - 1.668257859396946e-15
+ - -1.0549861532501315e-15
+- - 0.9042688061849811
+ - 0.5600758565959615
+ - -1.182972194575198
+ - 2.9271691837054825
+ - -3.722133129099742
+ - 3.254927663365981
+ - -1.7260195425772529
+ - -0.3640868159459673
+ - 1.471112208273053
+ - 2.1802877921540063
+ - -4.799224631372601
+ - -2.5616529799529215
+ - 3.173518366671872
+ - -1.5797764853511929
+ - -0.6240948597056514
+ - 1.57365387717535
+ - 2.191168862176243
+ - -4.140687533169342
+ - -2.4230614626062787
+ - 3.026986281255498
+ - -1.3382724022287065
+ - -0.7810958194901334
+ - 2.7338185769980248
+ - -3.682450386545072
+ - 3.4395289936374196
+ - -1.4378976075564058
+ - -3.0671107608610337
+ - -2.028227518052515
+ - -0.7821559516715931
+ - 2.8405902616097563
+ - -3.7189799084879143
+ - 3.328331912747511
+ - -1.3184222187388974
+ - -3.0938860158567967
+ - -2.48239662611246
+ - -0.9624603259693417
+ - 3.0040191291536824
+ - -3.7322569430258077
+ - 3.252205099167702
+ - -1.6103795571287896
+ - -0.48928862420728836
+ - 2.4333174592070863
+ - -5.875462627624456
+ - -5.726864909333917
+ - -0.561835147157408
+ - -0.3285489310007386
+ - 4.7568531358082975
+ - 4.9290048659965695
+ - -1.6779503938470415
+ - -0.41783797224407326
+ - 2.375626639626078
+ - -3.6007635281921027
+ - 3.567917595356116
+ - -2.3793720835537324
+ - 0.3920250817795203
+ - 1.4615961783079745
+ - 3.8398175834148183
+ - 1.7764243036133556
+ - -3.640782150508339
+ - 3.5158690196089784
+ - -2.1713407701951777
+ - 0.20421062834628453
+ - 1.0601842570138917
+ - 3.696594715031
+ - 1.868331863967741
+ - -3.6914938317220916
+ - 3.4178613013622225
+ - -2.0390487831790107
+ - -0.12247299346365416
+ - 2.1396856974426908
+ - -3.4665539337443736
+ - 2.405495524004936
+ - 4.281963281519042
+ - -1.2405486713696077
+ - -1.0803282716140457
+ - -0.2821390746628569
+ - 2.3494812723615675
+ - -3.556379618041177
+ - 2.5132345587983123
+ - 4.883341122877384
+ - -1.0621723185330303
+ - -0.9220534885485168
+ - -0.5428379645157984
+ - 2.4740355043581754
+ - -3.602252720722514
+ - 3.527061714365316
+ - -2.2807535037780426
+ - 0.29392748775984723
+ - 0.755956809568756
+ - 0.7094401657308431
+ - -3.164418027096279
+ - -2.736482496476211
+ - 1.1413437237268491
+ - 0.9871070938579706
+ - -2.793362523552331
+ - 3.7132633498355476
+ - -3.352359268601548
+ - 1.9049991000256674
+ - -0.053879142839481926
+ - -0.8267280717599421
+ - -4.425093899709795
+ - -2.13300679912001
+ - 3.7288876988584723
+ - -3.2770524917807684
+ - 1.674789954559231
+ - 0.17300647051428777
+ - -0.40615035556763895
+ - -3.9864322731124613
+ - -2.0868724004714982
+ - 3.73920850882909
+ - -3.1426138311708574
+ - 1.5302079195164278
+ - 0.6985867182664076
+ - -2.587954888468579
+ - 3.6415948733765044
+ - -2.31997554370083
+ - -4.240459809907621
+ - 0.5921273209337929
+ - 0.7303941452623801
+ - 0.8550676497993563
+ - -2.770873259183333
+ - 3.692250701884155
+ - -2.2825786669878485
+ - -4.549661873708816
+ - 0.3223425848737639
+ - 0.5534756713173962
+ - 1.108165862922106
+ - -2.8776741826807255
+ - 3.7139107454206144
+ - -3.2930618682826416
+ - 1.7954362057260755
+ - 0.28577344470665195
+ - -2.842827861151788
+ - -2.6545068655687927
+ - 1.6906785182607669
+ - 1.8957407082247835
+ - 6.560629673745994
+ - 6.654194698144305
+ - -3.33154047204366
+ - 1.865057604101138
+ - 0.20271987668767838
+ - -2.3035214947175624
+ - 3.536486056189505
+ - -3.625661656831741
+ - 1.7476399856790419
+ - 3.794692016868539
+ - 1.5357118992674665
+ - 0.4326672163778615
+ - -2.427478875348335
+ - 3.5861878731164016
+ - -3.5527783748044657
+ - 1.601237156932093
+ - 3.3124784311366655
+ - 1.6964456700392874
+ - 0.5811682921059895
+ - -2.620828963392177
+ - 3.651392353945044
+ - -3.499436822979706
+ - 2.1155966544611027
+ - -0.09341577805405937
+ - -1.9617904153112438
+ - 2.1549578321959015
+ - 3.4114945545647264
+ - -3.4279487551361423
+ - -2.162134937187998
+ - 1.9820243901186698
+ - 0.16884021262295498
+ - -2.1801766513560805
+ - 2.3254461165944673
+ - 4.080059731170257
+ - 1.9629394600670347
+ - 0.6696410030314787
+ - -2.6238725086020422
+ - 3.6527028696407142
+ - -3.4985058313102475
+ - 2.112706144581035
+ - -0.08962716601829543
+ - -1.9652915424771962
+ - 3.7842240198695305
+ - 4.480572612506158
+ - -9.340523476948789e-16
+ - -3.156521217502353e-16
+ - 1.1712877473750872e-16
+ - 2.4215712432489885e-16
+ - -2.903403950061127e-16
+ - 2.3144513539233714e-16
+ - -2.21849840286722e-16
+ - -7.957477492760125e-17
+ - -6.384179967684267e-16
+ - 1.6141395678206641e-16
+ - -3.1432863277015048e-18
+ - -2.10103875588469e-16
+ - 3.6395946952333213e-16
+ - 1.4566650587058817e-16
+ - -8.590270661363191e-17
+ - 3.019209235818551e-17
+ - -1.773475233313691e-16
+ - -2.3194144375986896e-16
+ - 1.5509636485369266e-16
+ - -8.594406564425956e-17
+ - -1.0825726266787748e-16
+ - -1.378082900513344e-16
+ - 1.5364879878172487e-16
+ - 2.779326858178173e-17
+ - 1.5062958954590634e-16
+ - -3.705769144237564e-17
+ - -2.729696021424991e-17
+ - -1.0141234309900118e-16
+ - -2.4649982254080225e-16
+ - 2.926565007212612e-16
+ - 4.878711252837757e-16
+ - -1.684139727157964e-16
+ - 1.0303361709960513e-15
+ - 1.5087774372967222e-16
+ - 1.6593243087813733e-16
+ - -3.6826080870860787e-16
+ - -2.0282468619800236e-16
+ - -2.2170508367952522e-16
+ - -3.8257103330577525e-16
+ - 1.4856163801452377e-16
+ - -1.649398141430737e-16
+ - 5.336969312192135e-16
+ - -3.298796282861474e-16
+ - 1.228363209641246e-16
+ - 5.364679862712661e-16
+ - -2.1341259803868112e-16
+ - 1.8468875126777723e-16
+ - 2.1175823681357505e-17
+ - -2.3392667722999623e-16
+ - 9.655265700025214e-17
+ - 5.8465125695248e-16
+ - 3.2557828910087164e-16
+ - -2.654422585682666e-16
+ - -5.525566491854224e-17
+ - -9.638308497467878e-16
+ - 9.992341799640573e-17
+ - 1.9998125284235133e-16
+ - -1.5716431638507526e-17
+ - -9.198248411589667e-17
+ - 3.808339540194139e-16
+ - -4.579271871093561e-16
+ - 7.279189390466644e-17
+ - -1.8082168190409183e-16
+ - 3.659447029934594e-16
+ - 3.211115137930853e-16
+ - 2.8289576949313546e-16
+ - 1.670904837357116e-17
+ - -1.947183161949827e-16
+ - -4.829080416084576e-16
+ - -1.0395592348260174e-16
+ - -1.196103165751678e-16
+ - -1.952146245625145e-16
+ - -1.1126613214603914e-16
+ - 2.072087434445334e-16
+ - 3.5031098941620717e-16
+ - -1.3400325923359047e-17
+ - -3.5287524931512156e-16
+ - -3.685916809536291e-16
+ - 1.9058241313221755e-16
+ - -3.6420762370709804e-16
+ - -3.465886766597186e-17
+ - -3.2260043889568074e-16
+ - -1.323488980084844e-18
+ - 4.650409403773122e-16
+ - 6.989676176073084e-17
+ - -1.194448804526572e-16
+ - -2.713152409173931e-16
+ - -1.679176643482646e-16
+ - -1.1431636065482842e-15
+ - 6.78949846783525e-16
+ - -6.028492304286465e-16
+ - 1.4373090323721407e-15
+ - -2.1175823681357505e-17
+ - -6.121136532892404e-18
+ - -2.540892046609763e-16
+ - 1.0141234309900118e-16
+ - -3.980806697911445e-17
+ - -2.2532399885944474e-16
+ - 2.0515371661022198e-16
+ - 1.3069453678337837e-16
+ - -2.421984833555265e-16
+ - 1.181751582123883e-15
+ - -5.098534500623724e-17
+ - -3.1556940368898006e-17
+ - 4.1772620933927893e-16
+ - 5.962317855282223e-16
+ - -1.1712877473750872e-16
+ - 1.9302259593924898e-16
+ - 3.893539143287101e-16
+ - 1.5815693312013887e-16
+ - 3.1978802481300045e-16
+ - -1.9686898578762056e-17
+ - -4.774486495656076e-16
+ - 2.0547166415817205e-16
+ - -1.5021599923962983e-16
+ - 4.8869830589632875e-16
+ - 1.402898318889935e-16
+ - -6.667075737177403e-17
+ - 3.547777647239935e-16
+ - -1.2639319759810263e-16
+ - -3.0837293235976867e-16
+ - 3.6561383074843823e-17
+ - -3.6004070137136216e-16
+ - -7.634877053864444e-17
+ - -2.274746684520826e-16
+ - -4.744707993604167e-16
+ - -1.3400325923359048e-16
+ - -3.4907021849737763e-16
+ - -1.9935052762527964e-16
+ - -5.227781471335135e-16
+ - -3.35504456451508e-16
+ - -4.119359450514077e-17
+ - -1.423164243897484e-16
+ - 3.5816920523546093e-16
+ - -2.294599019222099e-16
+ - -8.137802866296685e-16
+ - 2.5568152734014085e-16
+ - 6.054962083888163e-17
+ - 4.547839007816546e-16
+ - -1.2076836943274204e-16
+ - 5.852302833812671e-16
+ - -3.837290861633495e-16
+ - 4.756288522179908e-18
+ - -3.0045784787340193e-16
+ - 1.0243804705856695e-15
+ - 1.903678631608366e-17
+ - 1.6516728881152578e-16
+ - 1.5228395077101237e-16
+ - -1.675040740419881e-17
+ - -9.064865537815491e-17
+ - -3.004526779945735e-16
+ - -2.4579671902013217e-16
+ - 2.1289561015583547e-17
+ - -3.849491775668652e-16
+ - -7.061640889365196e-16
+ - -1.065822219274576e-16
+ - -3.5084865681436664e-16
+ - -4.293894559762766e-16
+ - 2.484850560109295e-16
+ - -6.787016925997592e-17
+ - 2.8802428929096424e-16
+ - 3.2218684858940423e-16
+ - 1.285438671907405e-16
+ - 5.1781506345819526e-17
+ - 7.085629127129234e-16
+ - 2.3822801641527194e-17
+ - 1.0323214044661784e-16
+ - -1.0860881442821252e-16
+ - 3.7884872054928663e-16
+ - -3.515517603350367e-19
+ - 9.922031447573566e-17
+ - 3.9439971606528355e-16
+ - 5.823351512373315e-17
+ - -6.33413554062481e-17
+ - -2.862044919433476e-17
+ - 1.589013956714366e-16
+ - -2.3347172789309203e-17
+ - 1.0840201927507426e-16
+ - 1.348304398461435e-15
+ - -6.866012674496405e-16
+- - 6.351857048811697
+ - 5.231181075660828
+ - -3.3010959110942726
+ - 1.80207451714538
+ - 0.27767308452337
+ - -2.3650730899683294
+ - 3.564625869354965
+ - -3.6112526612441176
+ - 1.8243111413002602
+ - 3.9513363501236234
+ - 1.7333994459645254
+ - 0.5428220328343801
+ - -2.487150201843911
+ - 3.611256539802238
+ - -3.5332560344110924
+ - 1.5662298428379016
+ - 3.261644239864349
+ - 1.7770653928946707
+ - 0.629149353590731
+ - -2.677151528216383
+ - 3.6714205997081653
+ - -3.4768451773497273
+ - 2.0560608583929376
+ - -0.018656690659378136
+ - -2.0277426886123795
+ - 2.1799291990877974
+ - 3.4670675697273112
+ - -3.380192258487584
+ - -2.142081011765848
+ - 1.9205755122160095
+ - 0.2438219359720842
+ - -2.243451525648851
+ - 2.258314294025733
+ - 3.9519749318937554
+ - -3.4650206635698635
+ - -2.0591361621737074
+ - 1.69049497420328
+ - 0.40655787643010777
+ - -2.3693856132589364
+ - 3.6019188652768435
+ - -3.575855239822699
+ - 2.3913315575430354
+ - -2.178534766631258
+ - -2.317943407511697
+ - -3.4862477339923923
+ - -3.5537509743693776
+ - -5.351516769399216
+ - -5.304917729869878
+ - 3.5809618393536544
+ - -3.5965309569959927
+ - 2.4485346613282992
+ - -0.38641661821810924
+ - -1.7058147118604472
+ - 3.2482259491106555
+ - -2.4510672005133283
+ - -4.606247940090465
+ - 1.9456439499880276
+ - 1.3627943070051762
+ - -0.2268756381879177
+ - -1.84964732511868
+ - 3.3708205787246963
+ - -2.4274938235856367
+ - -4.2738492552611484
+ - 1.5099287672001858
+ - 1.2232439636943135
+ - 0.03568374468638766
+ - -2.0731972996952646
+ - 3.437129879932596
+ - -3.6674225271630414
+ - 2.665045921711905
+ - -0.7981876899485646
+ - -0.7680351693790498
+ - -0.6601098499803469
+ - 4.254639497896214
+ - 2.334181546571992
+ - -3.6322036831243127
+ - 2.4742935597352873
+ - -0.5397928644824683
+ - -0.9256403723324076
+ - -1.0683489761256126
+ - 4.889566398481853
+ - 2.516792999761383
+ - -3.559529573285514
+ - 2.349304781671925
+ - -0.38088458515486767
+ - -1.8199471635249271
+ - 3.30902904766502
+ - -3.7284479131707644
+ - 5.174500642452323
+ - 6.408230303254748
+ - 6.3095243526612
+ - 5.085498180827387
+ - -3.7068453391065943
+ - 3.392327306310182
+ - -1.9810716170058633
+ - -0.19439844675488302
+ - 2.200790634669065
+ - -3.4971322825347824
+ - 2.5389242469047577
+ - 4.8955639787778855
+ - -1.3056308882782912
+ - -1.0440901734941619
+ - -0.3540748619120622
+ - 2.330871406893421
+ - -3.5823180555591567
+ - 2.3661310513983165
+ - 4.275902355451728
+ - -0.8708886846654772
+ - -0.8825624299526418
+ - -0.6144926307989924
+ - 2.5303952980408373
+ - -3.6252952877922806
+ - 3.506909056155922
+ - -2.2262962334759653
+ - 0.22262627275472097
+ - 1.1164706447608386
+ - 1.307599236960391
+ - -4.28577456227104
+ - -2.4140796632369006
+ - 3.4479582947743945
+ - -2.009912417404485
+ - -0.03993397942308879
+ - 1.259319117157798
+ - 1.7317947149430852
+ - -4.635274532092157
+ - -2.446950459284602
+ - 3.3371177787297324
+ - -1.870129402995871
+ - -0.19994451548014563
+ - 2.3040367190930713
+ - -3.5401103850630906
+ - 3.6310086197945224
+ - -5.502880208254934
+ - -5.540283515802876
+ - -3.5021183037620665
+ - -3.4234089104047927
+ - -2.003154827147411
+ - -1.857519085757775
+ - 2.2441417671580153
+ - -3.5169237886313964
+ - 3.6501730061520736
+ - -2.513349078715381
+ - 0.5937031591690545
+ - 1.5207434183291861
+ - -1.9903591939576406
+ - -3.3051588505301326
+ - 4.07281264951573
+ - 2.304374083291318
+ - -2.392510908970062
+ - 0.43183313614388386
+ - 1.7570085015208803
+ - -2.0817451686318136
+ - -3.244371156135907
+ - 3.591142235242957
+ - 2.2328467454857406
+ - -2.1845388368393026
+ - 0.1699704160919001
+ - 1.8966747135676385
+ - -3.4039170810938
+ - 3.7050957031943565
+ - -2.8066758800661122
+ - 0.7471902285604239
+ - 1.9721111962474733
+ - 3.1186079604026395
+ - 1.4708490572569666
+ - -3.467825884930991
+ - 3.657861158856488
+ - -2.625975011785555
+ - 0.6687742159728294
+ - 1.9625525841027827
+ - 4.088354537407372
+ - 2.3295680943565706
+ - -2.1866657541043097
+ - 0.17380998567125683
+ - 1.8923942742491195
+ - -3.4006832668921168
+ - 3.703889415319268
+ - -2.807916771615491
+ - 3.198676470307259
+ - 4.0973833980955
+ - -1.3976043629695954e-15
+ - -2.241163151651173e-15
+ - -3.475812933947822e-16
+ - -1.995573227784179e-16
+ - 2.4037868600790984e-16
+ - 1.4492204331929045e-16
+ - 5.474591486605645e-16
+ - 2.3442298559752804e-16
+ - 6.24025054110004e-16
+ - -4.3675136342799855e-17
+ - -8.542707776141392e-17
+ - -6.551270451419978e-16
+ - -1.401243957664829e-16
+ - -3.810821082031798e-16
+ - 5.434576624473391e-17
+ - 2.8239946112560365e-16
+ - 1.7124706631379053e-16
+ - 3.676404232491931e-16
+ - 1.5402103005737373e-16
+ - 8.536503921547244e-17
+ - 3.070908024103115e-17
+ - 1.8148342639413425e-16
+ - 1.0951871310202085e-16
+ - 1.4301952791041848e-16
+ - -2.61120239867677e-16
+ - 2.0042586242159858e-16
+ - 6.56781406367104e-17
+ - -2.3326493273995377e-17
+ - -2.5295183131871586e-16
+ - -3.9746028433172975e-16
+ - -1.0331485850787314e-16
+ - -1.258968892305708e-16
+ - -3.924144825951563e-16
+ - -8.933550615572698e-17
+ - 2.5791491499403403e-16
+ - 5.082197683525802e-16
+ - 2.2309061120555156e-16
+ - 9.785546646502316e-17
+ - 3.781869760592442e-16
+ - -5.199657330508332e-16
+ - -1.0703717126436177e-16
+ - -3.127569896062997e-16
+ - -3.1995346093551106e-16
+ - 1.9149231180602588e-17
+ - -5.0209863181968774e-17
+ - 1.170460566762534e-17
+ - 8.809473523689745e-18
+ - 7.101345558767742e-16
+ - -5.3948719550708465e-16
+ - -2.4732700315335524e-17
+ - -1.9885421925774783e-16
+ - -1.8231060700668727e-16
+ - -3.9642630856603845e-17
+ - 1.0370776929883583e-16
+ - 8.15145134640381e-16
+ - 7.080666043453917e-17
+ - 4.3675136342799855e-17
+ - 1.4502544089585958e-16
+ - -6.160427611988674e-17
+ - -1.3880090678639804e-16
+ - -3.1631386624027773e-16
+ - 5.707546226615891e-17
+ - -2.837229501056885e-16
+ - 1.0006817460360251e-16
+ - 8.205631676526033e-17
+ - 1.5695752123193698e-16
+ - 3.585621160264236e-16
+ - -1.53752196358294e-16
+ - 3.35504456451508e-16
+ - 2.0480991966812963e-16
+ - 2.2598574334948716e-16
+ - 7.006219788324144e-17
+ - 1.2108373204127788e-16
+ - 1.6463996117102322e-16
+ - 4.2202754852455467e-16
+ - 2.8206858888058244e-16
+ - -5.823351512373315e-17
+ - 8.205631676526033e-17
+ - -7.940933880509064e-17
+ - 3.816611346319669e-16
+ - 3.30872245021211e-19
+ - -4.466775307786349e-17
+ - 8.189088064274973e-17
+ - -2.268129239620402e-16
+ - 1.9345686576083932e-16
+ - 1.1745964698252993e-16
+ - 3.3798599828916706e-16
+ - 3.657792668709488e-16
+ - 1.2131430863702702e-15
+ - -1.8797679420267551e-16
+ - 5.793573010321406e-16
+ - -1.3320916584553956e-15
+ - -4.34683411896616e-16
+ - 3.3798599828916706e-16
+ - 3.6975231875061755e-16
+ - 5.790264287871194e-17
+ - 3.332710687976148e-16
+ - 1.7453510924868881e-16
+ - -2.2805369488086973e-16
+ - 8.08982639076861e-17
+ - -1.330416617714976e-16
+ - -3.806685178969033e-16
+ - -2.0042586242159858e-16
+ - 4.411974592204711e-16
+ - 2.414540208042288e-16
+ - -2.574186066265022e-16
+ - 2.6221625417930974e-17
+ - -1.10924920143361e-16
+ - -2.7925617479790214e-16
+ - -1.622101181216487e-16
+ - -1.3334151474354806e-16
+ - -1.3962808739895107e-16
+ - -1.8677738231447362e-16
+ - -1.95628214868791e-17
+ - 6.865599084190129e-18
+ - -7.6638283753038e-17
+ - 2.5551609121763025e-16
+ - 3.447688793121019e-16
+ - -3.7884872054928663e-16
+ - 1.4591466005435408e-16
+ - -1.594804221002237e-16
+ - -7.4859845436049e-17
+ - 7.783769564123989e-16
+ - 1.8578476557941e-16
+ - 1.7494869955496533e-16
+ - 1.9041697700970695e-16
+ - 2.3243775212740075e-17
+ - -1.548895697005544e-16
+ - 2.9993569011172783e-16
+ - 1.9091328537723876e-16
+ - 4.0697286137608955e-17
+ - 2.693300074472658e-16
+ - 7.160075382259007e-16
+ - 4.9961708998202865e-17
+ - 4.259980154648092e-16
+ - -1.773475233313691e-16
+ - -1.134891800422754e-16
+ - -6.327931686030662e-17
+ - 2.0199750558544933e-16
+ - -8.751570880811032e-17
+ - -1.4392942658422682e-16
+ - -1.9124415762225997e-16
+ - 2.0059129854410918e-17
+ - 4.82742605485947e-16
+ - -5.899452128728193e-16
+ - -3.5287524931512156e-16
+ - -1.0089535521615554e-16
+ - -1.43433118216695e-16
+ - 3.692534254436715e-16
+ - 2.2333876538931747e-18
+ - 3.8732732182795515e-17
+ - -3.4265956875009167e-16
+ - -2.041481751780872e-16
+ - 3.987010552505593e-16
+ - 7.684507890617626e-16
+ - -4.053185001509835e-17
+ - 4.1507923137910924e-16
+ - -9.078307222769479e-18
+ - 2.478233115208871e-16
+ - 1.190416299040376e-16
+ - -2.03817302933066e-16
+ - -2.4626200811469325e-16
+ - -5.16781087692504e-17
+ - 8.743299074685501e-17
+ - -1.5406238908800138e-16
+ - 3.2094607767057474e-17
+ - 1.535247216898419e-16
+ - -1.1444043774671138e-16
+ - 2.741069754847595e-17
+ - -9.105190592677451e-17
+ - 1.018259334052777e-16
+ - -5.000306802883052e-16
+ - 8.652309207304668e-17
+ - 1.0695445320310647e-16
+ - -5.37667398159468e-19
+ - -1.0774027478503184e-16
+ - 9.593227154083737e-17
+ - 5.128519797828771e-18
+ - 9.443093872905364e-16
+ - 7.581937494661051e-16
+- - 8.430677180155428
+ - 6.964966410425755
+ - -4.297547752544986
+ - 2.0775256131217104
+ - 0.8112900609691274
+ - -3.5618395381103225
+ - 4.994136017941872
+ - -4.810792051881836
+ - 2.27878926634478
+ - 5.054110672145846
+ - 2.894609071587097
+ - 1.0310733365428288
+ - -3.7163334401064136
+ - 5.039594314324836
+ - -4.675357172055479
+ - 1.919850502007725
+ - 4.125862391834792
+ - 2.8757898526465255
+ - 1.1307884777188477
+ - -3.954454265742565
+ - 5.0920285399593705
+ - -4.581062311871657
+ - 2.4416510643573983
+ - 0.40834239454329646
+ - -3.130181815499086
+ - 3.0991384438106313
+ - 5.020853163503932
+ - -4.304372871687505
+ - -2.7869707737214364
+ - 2.246986986145115
+ - 0.7654219264805827
+ - -3.4070130355409236
+ - 3.190429257597542
+ - 5.675739556637563
+ - -4.364928556191124
+ - -2.6542683834503316
+ - 1.918515734539834
+ - 0.9857075210593764
+ - -3.5673135537937286
+ - 5.030644173807846
+ - -4.748479723372385
+ - 2.9276340658880526
+ - -2.236491169850333
+ - -2.441351458591225
+ - -4.61950736941316
+ - -4.737691561147263
+ - -7.752504388044127
+ - -7.710128392955596
+ - 5.0104316235893425
+ - -4.784679596368071
+ - 3.011306908845465
+ - -0.09555376716410272
+ - -2.7126102588584535
+ - 4.6457791832831505
+ - -3.3404575340887606
+ - -6.362981798008863
+ - 2.1630723196628865
+ - 1.6225604584257858
+ - 0.1235847365158513
+ - -2.899799506032841
+ - 4.786064718179935
+ - -3.2866686666434304
+ - -5.868980752650848
+ - 1.5943129843369799
+ - 1.4241824088528832
+ - 0.4824421739289029
+ - -3.188724611920211
+ - 4.859615129320104
+ - -4.914722915908115
+ - 3.3300753919930153
+ - -0.6647845393826445
+ - -1.3153880696879523
+ - -1.3911898815747137
+ - 5.864390578315272
+ - 3.2643735210459845
+ - -4.848593849878733
+ - 3.0490077005395766
+ - -0.3069209838655476
+ - -1.5398952972971738
+ - -2.0106582785526808
+ - 6.696755682644405
+ - 3.491180148022411
+ - -4.720235715813401
+ - 2.866360457168936
+ - -0.08794360982957268
+ - -2.861198044373043
+ - 4.7158864388886945
+ - -5.045750953744534
+ - 6.865729508364354
+ - 8.52937288646334
+ - 8.852659131166396
+ - 7.15716351303029
+ - -5.11645597192291
+ - 4.4432200308922
+ - -2.333852001937907
+ - -0.6983227915727607
+ - 3.3525093464396054
+ - -4.92447840784714
+ - 3.4187426085795267
+ - 6.677105007580319
+ - -1.2339872696702396
+ - -1.1522417711725255
+ - -0.9147723303188288
+ - 3.5184770856767638
+ - -5.011873438764638
+ - 3.159799328087366
+ - 5.794760856092116
+ - -0.7013087488435008
+ - -0.9405731457896265
+ - -1.2659971954721143
+ - 3.7708181893648365
+ - -5.052620591338137
+ - 4.631185134414499
+ - -2.6876204197413722
+ - -0.12939166264496862
+ - 1.7736316655606508
+ - 2.2565523251136637
+ - -5.829918925260784
+ - -3.3305704731355714
+ - 4.533536623762731
+ - -2.375262662243952
+ - -0.48824362058835513
+ - 1.9612236894962671
+ - 2.863078860425254
+ - -6.267905430803968
+ - -3.3539269206580697
+ - 4.354774798842328
+ - -2.174819983952352
+ - -0.7058524342629026
+ - 3.484291825178684
+ - -4.969347422352952
+ - 4.84656854338847
+ - -7.06145933130846
+ - -7.13390263768369
+ - -4.905955541011146
+ - -4.82430284160685
+ - -3.4644820626136412
+ - -3.279753938185622
+ - 3.4083200520678623
+ - -4.946376964094934
+ - 4.882100056469966
+ - -3.1069054716742417
+ - 0.3817195166807026
+ - 2.4706655761702074
+ - -2.8808038519421517
+ - -4.888872645360446
+ - 5.293251932560231
+ - 3.0462348414180482
+ - -2.929904723123185
+ - 0.1583107250522602
+ - 2.7796356543780973
+ - -2.9863985492442553
+ - -4.750417564591168
+ - 4.626950016781737
+ - 2.932620736893016
+ - -2.627627402632701
+ - -0.2013160817127592
+ - 2.9610739547505
+ - -4.823980751171097
+ - 4.990771150595584
+ - -3.5413684277521247
+ - 0.7506149195775135
+ - 2.2490592882485765
+ - 4.594978116745814
+ - 2.2313511969859263
+ - -4.894153079939535
+ - 4.896422886150712
+ - -3.2727976308289155
+ - 0.6251547689169252
+ - 2.1575224379083546
+ - 5.543994367298317
+ - 3.0522039336650164
+ - -2.6301276968353076
+ - -0.19630982351474666
+ - 2.9552126630451467
+ - -4.819292151587484
+ - 4.988701876708222
+ - -3.5426222463828085
+ - 3.853733209927076
+ - 4.979664046632101
+ - -1.837333576602785e-15
+ - -2.9434394917086933e-15
+ - -4.853895834461166e-16
+ - -3.194985115986069e-16
+ - 3.6792993646358666e-16
+ - 1.7784383169890093e-16
+ - 7.459695709762199e-16
+ - 3.7421650911898967e-16
+ - 9.595295105615121e-16
+ - -7.891303043755883e-17
+ - -1.2600804162538263e-16
+ - -8.749916519585926e-16
+ - -2.1953373457157352e-16
+ - -5.145063410079832e-16
+ - 7.593518023236793e-17
+ - 3.752091258540533e-16
+ - 2.5030485335854617e-16
+ - 5.043733785042086e-16
+ - 1.9686898578762056e-16
+ - 1.0910512279574434e-16
+ - 4.845210438029359e-17
+ - 2.50801161726078e-16
+ - 1.2341534739291173e-16
+ - 1.6287186261169112e-16
+ - -3.756227161603298e-16
+ - 2.701158290291912e-16
+ - 9.016268676828e-17
+ - -1.919059021123024e-17
+ - -3.361662009415504e-16
+ - -5.747250896018436e-16
+ - -2.066297170157463e-16
+ - -1.5997673046775553e-16
+ - -5.864710543000966e-16
+ - -1.5418646617988433e-16
+ - 3.2624003359091407e-16
+ - 7.408229566024915e-16
+ - 3.06553135012152e-16
+ - 1.425438990582005e-16
+ - 5.48586182245168e-16
+ - -7.18819952308581e-16
+ - -1.462455322993753e-16
+ - -4.774486495656076e-16
+ - -4.0316783055834564e-16
+ - 5.459392042849982e-18
+ - -1.272617372412833e-16
+ - 4.359241828154455e-17
+ - -1.4723814903443893e-17
+ - 9.264009270287633e-16
+ - -6.798597454573333e-16
+ - -4.0697286137608955e-17
+ - -3.188781261391921e-16
+ - -2.6542157905295276e-16
+ - -3.614262288973885e-17
+ - 1.3834595744949388e-16
+ - 1.2262952581098633e-15
+ - 8.42069863578982e-17
+ - 4.111087644388547e-17
+ - 1.7472122488651325e-16
+ - -6.758065604558236e-17
+ - -2.2118809579667958e-16
+ - -4.052357820897282e-16
+ - 7.130296880207099e-17
+ - -3.63380443094545e-16
+ - 9.311468757932862e-17
+ - 7.576974410985732e-17
+ - 1.7511413567747593e-16
+ - 5.113216956496541e-16
+ - -1.821761901571474e-16
+ - 5.060690987599423e-16
+ - 2.8587361969832636e-16
+ - 3.102547682533268e-16
+ - 1.2176098616780567e-16
+ - 1.7689257399446494e-16
+ - 1.9808907719113628e-16
+ - 5.470972571425725e-16
+ - 3.7024604217873514e-16
+ - -5.194694246833013e-17
+ - 1.4541835168682227e-16
+ - -1.3751877683694085e-16
+ - 5.542110104105285e-16
+ - -7.279189390466644e-18
+ - 1.0257039595657542e-17
+ - 1.0455562942670269e-16
+ - -3.629668527882685e-16
+ - 2.6519410438450067e-16
+ - 1.6113478332532977e-16
+ - 4.825771693634363e-16
+ - 4.966599192921516e-16
+ - 1.798290651690282e-15
+ - -3.412533617087515e-16
+ - 7.514108684431702e-16
+ - -1.851561083138697e-15
+ - -5.656261028637603e-16
+ - 4.614840637433341e-16
+ - 5.221487143861489e-16
+ - 6.915229920943311e-17
+ - 4.044086014771752e-16
+ - 2.4666525866331285e-16
+ - -3.0804206011474746e-16
+ - 1.080297879994254e-16
+ - -1.7779213291061636e-16
+ - -6.093012392065601e-16
+ - -2.785117122466044e-16
+ - 5.963351831047915e-16
+ - 3.035752848069611e-16
+ - -3.634631611558003e-16
+ - 4.822462971184151e-17
+ - -1.7503141761622063e-16
+ - -4.2086949566698043e-16
+ - -2.3161057151484775e-16
+ - -2.096075672209372e-16
+ - -1.5170492434222525e-16
+ - -1.8148342639413425e-16
+ - -4.987899093694756e-17
+ - 3.14742223076427e-17
+ - -1.3102540902839958e-16
+ - 3.4046754012682614e-16
+ - 4.726510020128e-16
+ - -5.452774597949558e-16
+ - 1.9422200782745087e-16
+ - -1.7949819292400698e-16
+ - -7.0351711097635e-17
+ - 1.0589152611597584e-15
+ - 2.479887476433977e-16
+ - 2.5849394142282115e-16
+ - 3.4907021849737763e-16
+ - 5.821283560841932e-17
+ - -1.4285409178790788e-16
+ - 4.226892930145971e-16
+ - 2.9464173419138846e-16
+ - 5.889525961377557e-17
+ - 3.668546016672677e-16
+ - 9.129592420747766e-16
+ - 3.2094607767057474e-17
+ - 6.041727194087313e-16
+ - -1.7668577884132669e-16
+ - -1.8694281843698423e-16
+ - -8.768114493062092e-17
+ - 2.362427829451447e-16
+ - -1.0389388493666026e-16
+ - -2.837229501056885e-16
+ - -1.9265036466360012e-16
+ - 2.638706154044158e-17
+ - 6.817622608662053e-16
+ - -8.735027268559971e-16
+ - -4.986244732469651e-16
+ - -1.5658528995628811e-16
+ - -2.1035202977223491e-16
+ - 4.873748169162439e-16
+ - 1.0174321534402239e-17
+ - 8.950094227823758e-17
+ - -4.433688083284228e-16
+ - -2.809105360230082e-16
+ - 5.775375036845239e-16
+ - 1.0632579593756618e-15
+ - -5.906069573628618e-17
+ - 6.124445255342616e-16
+ - 3.561012537040784e-17
+ - 2.9397998970134604e-16
+ - 1.4282307251493714e-16
+ - -3.260332384377758e-16
+ - -3.4319723614825113e-16
+ - -9.886876271540062e-17
+ - 1.2333262933165643e-16
+ - -2.7976282292309087e-16
+ - 3.308722450212111e-17
+ - 2.0311419941239592e-16
+ - -1.4177875699158894e-16
+ - -9.716787258083845e-18
+ - -1.1787323728880644e-16
+ - 1.3234889800848443e-16
+ - -7.07901168222881e-16
+ - 1.048865016717239e-16
+ - 1.2506970861801778e-16
+ - 7.279189390466644e-18
+ - -1.622101181216487e-16
+ - 1.2405641236764033e-16
+ - 8.519960309296185e-18
+ - 1.2536749363853685e-15
+ - 1.0114764530298422e-15
+- - -5.1606627283941675
+ - -4.218913000339454
+ - 2.7813707320974053
+ - -1.9369804588870094
+ - 0.3892976977759095
+ - 1.292937666673847
+ - -2.539654336430059
+ - 2.887411587865565
+ - -1.6870345547554246
+ - -3.4838907794320932
+ - -0.5550206107651096
+ - 0.005232239221240285
+ - 1.403883915301171
+ - -2.6002190375393925
+ - 2.8708256356311073
+ - -1.5009040166846805
+ - -2.941976922122844
+ - -0.7008097704839715
+ - -0.08626522839737615
+ - 1.5775276709585586
+ - -2.689432092780271
+ - 2.851962827541768
+ - -2.104483922285521
+ - 0.6161765194362301
+ - 0.9957811600732682
+ - -1.4754697253914302
+ - -2.214729087910681
+ - 3.0078680150678534
+ - 1.8210471103822512
+ - -2.014790005325234
+ - 0.4163545758130543
+ - 1.185579595782406
+ - -1.5574678443763368
+ - -2.592489560553124
+ - 3.15154550683019
+ - 1.7861428309364378
+ - -1.8619661264897807
+ - 0.2893672328024675
+ - 1.2968030000596182
+ - -2.588590890671313
+ - 2.880643178799064
+ - -2.31798628167728
+ - 2.7110783292751366
+ - 2.795852486263306
+ - 2.8435009063011454
+ - 2.857269835104518
+ - 3.414638541807932
+ - 3.348795887171457
+ - -2.560639464633706
+ - 2.8848605860277576
+ - -2.353330710966479
+ - 0.8923279148897716
+ - 0.7202366774640979
+ - -2.179702258179446
+ - 1.8660861159921698
+ - 3.384328129347691
+ - -2.1832471591087157
+ - -1.3748060912901392
+ - 0.7742501540184025
+ - 0.8433682393467102
+ - -2.3106021215907466
+ - 1.8792635808555955
+ - 3.1901519905517195
+ - -1.8155223997019758
+ - -1.2803320193316148
+ - 0.5748958112854495
+ - 1.0352499464624219
+ - -2.386186136927298
+ - 2.8908358160624266
+ - -2.4841582104477555
+ - 1.1942676788402187
+ - 0.19872227525446307
+ - -0.20368794931672282
+ - -3.144523426581076
+ - -1.657545359432037
+ - 2.891008476760948
+ - -2.3683084690409255
+ - 1.006673138021975
+ - 0.30475872609785853
+ - 0.016468171019878974
+ - -3.6752671861446
+ - -1.8282821200398809
+ - 2.876861374403514
+ - -2.291760650764112
+ - 0.8882139046962824
+ - 0.8171584193640504
+ - -2.244359749319635
+ - 2.8685397118563523
+ - -4.207351513601341
+ - -5.172161731887269
+ - -4.439263495221807
+ - -3.546604673850003
+ - 2.7082066153962603
+ - -2.862633048179939
+ - 2.0129901341912535
+ - -0.4958760184828536
+ - -1.1894255376969871
+ - 2.4137311840488476
+ - -1.9925400072198394
+ - -3.7198072370057664
+ - 1.7776149424456782
+ - 1.183833910605351
+ - -0.37169722216753365
+ - -1.3037821154686073
+ - 2.5207543970227326
+ - -1.8946748577426702
+ - -3.302382042178854
+ - 1.3606901440446824
+ - 1.0486839755124373
+ - -0.16906569792495546
+ - -1.4847541836582412
+ - 2.5781495862629114
+ - -2.9041370572809506
+ - 2.1715488628198054
+ - -0.812529100762289
+ - -0.48790190346211165
+ - -0.3138353843585463
+ - 3.2786995943362753
+ - 1.7797087449413762
+ - -2.883183746574051
+ - 2.0328249058421384
+ - -0.6131666229959376
+ - -0.6068426099012214
+ - -0.595975219494674
+ - 3.5998548452332617
+ - 1.8355380468318996
+ - -2.8395272003364465
+ - 1.9397473386716493
+ - -0.49161510484085014
+ - -1.2808258431861361
+ - 2.466105412539147
+ - -2.9322719254278753
+ - 4.819641850099208
+ - 4.8172962632869805
+ - 2.482723076164775
+ - 2.3879539250306823
+ - 0.46988961034644666
+ - 0.3380301847174869
+ - -1.2268932232958845
+ - 2.43605655945401
+ - -2.933227378377886
+ - 2.349787047426643
+ - -1.087335764590334
+ - -0.6070462661430198
+ - 1.2736346927060858
+ - 1.9640431000915755
+ - -3.4706238290385185
+ - -1.8898918949483954
+ - 2.2764192150976994
+ - -0.9671927055813709
+ - -0.8047061967908661
+ - 1.3704406493550674
+ - 1.9976626666369084
+ - -3.11807120725149
+ - -1.8586159084207985
+ - 2.1442188254692094
+ - -0.7727034224591164
+ - -0.9247709923017471
+ - 2.3046264751659775
+ - -2.9264867846403613
+ - 2.52325748553799
+ - -0.9534793077813677
+ - -2.131669205293394
+ - -1.8790028351366286
+ - -0.7939776611159047
+ - 2.3785369195280155
+ - -2.9326548935332295
+ - 2.4186550520780594
+ - -0.920485789022815
+ - -2.237187793928245
+ - -2.374822703746334
+ - -0.9999620972750812
+ - 2.487420905577708
+ - -0.7759739847496483
+ - -0.9215277919031992
+ - 2.302554833934083
+ - -2.9261834912249904
+ - 2.5248480405733766
+ - -3.161736284150095
+ - -3.988031629641064
+ - 1.5434363049626941e-15
+ - 2.160761196111019e-15
+ - 2.557228863707685e-16
+ - 2.755338620414135e-16
+ - -3.06553135012152e-16
+ - -1.563371357725222e-16
+ - -3.732652514145537e-16
+ - -5.836586402174163e-16
+ - -6.895170791088899e-16
+ - 9.636654136242771e-18
+ - 1.4773445740197074e-16
+ - 7.605098551812535e-16
+ - -3.7553999809907456e-17
+ - 2.0499603530595406e-16
+ - -1.6378176128549948e-17
+ - -3.034098486844505e-16
+ - -1.7638592586927621e-16
+ - -2.099384394659584e-16
+ - -1.1514354126738145e-16
+ - 1.1042861177582918e-16
+ - 2.98612201131643e-17
+ - -7.361907451721946e-17
+ - -8.536503921547244e-17
+ - 4.971355481443696e-17
+ - 2.2821913100338034e-16
+ - -1.4417758076799272e-16
+ - -5.335314950967028e-17
+ - 4.566036981292712e-17
+ - 4.700040240526303e-16
+ - 3.624705444207367e-16
+ - 5.604148650046762e-17
+ - 1.9929365895816662e-16
+ - 1.2473883637299657e-16
+ - 1.6099002671813299e-16
+ - -2.51628342338631e-16
+ - -4.701694601751409e-16
+ - -1.209751645858803e-16
+ - -2.2333876538931747e-18
+ - -2.0315555844302357e-16
+ - 4.688459711950561e-16
+ - 1.6675961149069035e-16
+ - 2.328720219489911e-16
+ - 4.133421520927479e-16
+ - 1.8115255414911306e-17
+ - -2.2375235569559396e-17
+ - -2.895132143935597e-19
+ - 1.0918784085699964e-17
+ - -2.547716286663325e-16
+ - 3.334830338295815e-16
+ - 4.913452838564984e-17
+ - 3.374896899216353e-17
+ - 9.098986738083304e-18
+ - 1.3830459841886623e-16
+ - 7.878895334567589e-18
+ - -7.810859729185101e-16
+ - -8.197359870400503e-17
+ - -3.350081480839762e-17
+ - 3.110199103199384e-17
+ - 4.776968037493734e-17
+ - 7.874759431504822e-17
+ - 4.683496628275243e-16
+ - 1.0422475718168147e-17
+ - 2.426947917230583e-16
+ - -1.151021822367538e-16
+ - -1.9041697700970695e-16
+ - -1.9748937124703533e-16
+ - -4.1590641199166227e-16
+ - 1.0439019330419208e-16
+ - -1.406207041340147e-16
+ - -1.1481266902236024e-16
+ - -1.6001808949838318e-16
+ - -7.039307012826266e-17
+ - -9.979934090452278e-17
+ - -1.6478213283880577e-16
+ - -5.298919004014695e-16
+ - -1.6717320179696687e-16
+ - 1.8454399466058045e-16
+ - 3.1701696976094786e-17
+ - 1.196103165751678e-16
+ - -2.4335653621310074e-16
+ - 6.410649747285964e-17
+ - -2.1488084362596274e-16
+ - 4.694249976238432e-18
+ - 1.311908451509102e-16
+ - -2.0861495048587355e-16
+ - -7.568702604860202e-17
+ - -2.9083670337364453e-16
+ - -1.8599156073254825e-16
+ - -1.1120616155162904e-15
+ - 2.1829296365274398e-16
+ - 1.9372569945991906e-16
+ - 3.960540772903896e-16
+ - 2.40833635344814e-16
+ - -3.645798549827469e-16
+ - -2.7983520122668926e-16
+ - -7.287461196592174e-17
+ - 1.2738581433316625e-17
+ - 3.5113817002876025e-17
+ - -8.205631676526033e-17
+ - -2.43563331366239e-16
+ - 3.0051471654051495e-16
+ - -1.1137986948026518e-16
+ - 2.7966976510417866e-16
+ - -3.481706595812262e-16
+ - -2.8955457342418734e-16
+ - -1.1894857208512538e-16
+ - -2.642842057106923e-17
+ - 1.1423364259357312e-16
+ - 2.9464173419138846e-16
+ - 1.0976686728578676e-16
+ - 8.232515046434007e-17
+ - -6.843885593110613e-17
+ - 8.768114493062092e-17
+ - -2.420537267483297e-17
+ - -1.6295458067294645e-17
+ - -1.255660169855496e-16
+ - -2.96358133962436e-16
+ - -2.8794157122970893e-16
+ - 2.7991791928794457e-16
+ - -6.452008777913615e-18
+ - 1.667182524600627e-16
+ - -1.8189701670041076e-16
+ - -2.660212849970537e-16
+ - -3.05850031491482e-17
+ - -9.132073962585424e-17
+ - -4.1822251770681074e-16
+ - -8.065010972392019e-17
+ - -1.0381116687540496e-16
+ - -1.9587636905255693e-16
+ - 3.629254937576409e-17
+ - 2.385071898720086e-16
+ - -1.6361632516298885e-16
+ - -5.376673981594679e-17
+ - -9.835177483255498e-17
+ - -3.286802163979455e-16
+ - 3.510761314828187e-16
+ - 7.519071768107022e-17
+ - -9.371956340225802e-17
+ - -2.3094882702480533e-16
+ - 1.0300466577816576e-16
+ - 1.4905794638205559e-16
+ - 6.617444900424221e-18
+ - -2.2333876538931747e-18
+ - -3.273980864484883e-16
+ - 2.2251158477676444e-16
+ - 3.8629334606226387e-16
+ - 7.194403377679958e-17
+ - 1.3693975040815373e-16
+ - -2.749548356126264e-16
+ - 6.393330653210635e-17
+ - 2.812414082680294e-17
+ - 3.991973636180911e-16
+ - 2.0497535579064023e-16
+ - -2.9985297205047253e-16
+ - -4.494485858306876e-16
+ - 8.577862952174896e-17
+ - -4.165681564817047e-16
+ - 1.0081263715490023e-17
+ - -1.6626330312315854e-16
+ - 3.838118042246048e-17
+ - 2.9728871215155815e-16
+ - 1.258968892305708e-16
+ - 1.7246715771730625e-16
+ - -1.5203579658724646e-16
+ - -2.1821024559148868e-16
+ - -2.6924728938601048e-17
+ - -2.5938316058131565e-16
+ - 8.594406564425956e-17
+ - -1.2455272073517214e-16
+ - 3.47726050001979e-17
+ - -1.5260448325837667e-16
+ - 3.7927265061322005e-16
+ - -2.5311726744122644e-17
+ - 7.990564717262246e-17
+ - -6.940045339319902e-17
+ - 2.5559880927888552e-17
+ - -3.015073332755786e-17
+ - -1.41654679899706e-16
+ - -1.557084785069819e-15
+ - -1.406207041340147e-17
+- - 4.58288827388438
+ - 3.670547447131993
+ - -2.803615731672744
+ - 2.7796152351043593
+ - -1.9346528948409472
+ - 0.29059704612562987
+ - 1.2955744280069939
+ - -2.542439849827703
+ - 1.9969464913463078
+ - 3.759937510550366
+ - -1.5848371721072407
+ - -1.0912386916170007
+ - 0.16747443715253998
+ - 1.408595479037433
+ - -2.637571606659966
+ - 1.8890123942413535
+ - 3.3236209154745677
+ - -1.186781223732184
+ - -0.9579848173758038
+ - -0.03768297366593543
+ - 1.581958264242921
+ - -2.6905455428215705
+ - 2.8339470368584787
+ - -2.1024887801555217
+ - 0.6107327661193906
+ - 0.5904296396352006
+ - 0.500631070834862
+ - -3.308126558089342
+ - -1.8136598253620806
+ - 2.8079687769863293
+ - -1.9536962378575007
+ - 0.41080147644152465
+ - 0.7078531359441539
+ - 0.7966610616158593
+ - -3.6177606408620337
+ - -1.861770404526605
+ - 2.7512762560134987
+ - -1.8576985115759195
+ - 0.28630278391082603
+ - 1.3844977605601798
+ - -2.5901232599474007
+ - 2.8801756162007686
+ - -4.699131385354109
+ - -4.705084001987118
+ - -2.5521596934183868
+ - -2.464373416590812
+ - -0.760032776286772
+ - -0.6334060751822728
+ - 1.3330836505645287
+ - -2.5632315284241503
+ - 2.884448672113618
+ - -2.2924741101508435
+ - 0.8893634741146271
+ - 0.7254847497206584
+ - -1.3520759172391243
+ - -2.133623154383004
+ - 3.405834654854572
+ - 1.8724536159139733
+ - -2.2116788949267843
+ - 0.7687802192994525
+ - 0.9219617246563402
+ - -1.4424896864780798
+ - -2.145950941194397
+ - 3.0458282427024628
+ - 1.8345728367440919
+ - -2.0726789224522406
+ - 0.5693670738858512
+ - 1.0379051535238248
+ - -2.4427078137060874
+ - 2.89072348503662
+ - -2.481209243582986
+ - 0.8590105176088179
+ - 1.9826785853648683
+ - 2.0322598650746633
+ - 0.890312513600475
+ - -2.5088933500294996
+ - 2.887189359903523
+ - -2.364995651834504
+ - 0.8184491624260999
+ - 2.0587225202135704
+ - 2.5398013729578803
+ - 1.0963939674619005
+ - -2.6097041071933886
+ - 2.876071746669909
+ - -2.289769830181861
+ - 0.79321812767672
+ - 0.8198712470480275
+ - -2.2478613582224956
+ - 3.744263059804597
+ - 4.509585081521515
+ - 2.2694208410424324
+ - 1.7246551526440754
+ - -1.757821591199309
+ - 2.7096129290844875
+ - -2.8617470817090114
+ - 1.9406591561083724
+ - -0.4932385998030386
+ - -1.1941728605565107
+ - 1.5984436068582164
+ - 2.6759602973119674
+ - -3.3241605798678027
+ - -1.8683819948519673
+ - 1.8479396023090209
+ - -0.36653894508318374
+ - -1.3772487755548566
+ - 1.61509425523427
+ - 2.5147841026801534
+ - -2.79877785580929
+ - -1.73884063188557
+ - 1.6857453397086344
+ - -0.16393135683663063
+ - -1.4869989465914284
+ - 2.621031955106623
+ - -2.903678975223155
+ - 2.167905906326254
+ - -0.5874484740470727
+ - -1.5440173877329453
+ - -2.4166279018114625
+ - -1.1382088947174183
+ - 2.6720879212596813
+ - -2.8667131337935468
+ - 2.02886737406414
+ - -0.47479489225003757
+ - -1.4456426898219048
+ - -2.792450084827919
+ - -1.2587141307614083
+ - 2.74227771822562
+ - -2.8379906452235795
+ - 1.9374516144794256
+ - -0.3936511977945303
+ - -1.2833486062802404
+ - 2.4685723566524564
+ - -5.127120905103724
+ - -5.04529397157089
+ - -1.2889741037197884
+ - -1.1212894451366695
+ - 2.401605193389522
+ - 2.5463878499252575
+ - -0.4534911560923425
+ - -1.2293452062492694
+ - 2.4343038760296003
+ - -2.9279705402565632
+ - 2.3468610682293134
+ - -1.0830314683899769
+ - -0.2947739244109663
+ - 0.012068743792065156
+ - 3.475712155169799
+ - 1.721392759106303
+ - -2.919162727138105
+ - 2.2718800231660143
+ - -0.8895795462772906
+ - -0.43566438348755226
+ - -0.2199029084340017
+ - 3.257021056460131
+ - 1.7589513803993342
+ - -2.8953311479004706
+ - 2.1396019058932705
+ - -0.7709449348929546
+ - -1.0160386299151487
+ - 2.303089441383437
+ - -2.9241040431217904
+ - 1.69025497725036
+ - 3.182131067623622
+ - 0.07432304455392268
+ - -0.2714188834954758
+ - -1.1311566551766645
+ - 2.421095762455831
+ - -2.9299684045312677
+ - 1.7357541968313512
+ - 3.5516843504000533
+ - 0.36931388679346283
+ - -0.1030460818008497
+ - -1.3178602727520867
+ - 2.4867858890193366
+ - -0.773146618756353
+ - -1.0155973954482398
+ - 2.304429584170429
+ - -2.9268411009902637
+ - 4.178398972360161
+ - 5.146214884254207
+ - -1.1400203202205827e-15
+ - -1.2143011392278444e-15
+ - -1.2896779725467393e-16
+ - -1.9852334701272664e-18
+ - -1.0141234309900118e-16
+ - 1.921540562960683e-16
+ - 1.78546935219571e-16
+ - 1.8566068848752704e-16
+ - 6.418921553411495e-17
+ - 8.41242682966429e-17
+ - -5.633099971486118e-17
+ - -5.554828006023288e-16
+ - 1.0790571090754245e-16
+ - -1.3358966892731397e-16
+ - -8.164272645898382e-17
+ - 3.076698288390986e-16
+ - -8.189088064274974e-18
+ - 7.16338410470922e-17
+ - 2.8144820342116767e-16
+ - -3.3294019655259364e-17
+ - -4.79764755280756e-18
+ - 7.372247209378859e-17
+ - 1.621274000603934e-16
+ - 5.947428604256269e-17
+ - -1.4545971071744992e-16
+ - 4.090408129074721e-17
+ - -9.553936074987468e-18
+ - -6.032214617042954e-17
+ - -2.6403605152692643e-16
+ - -9.661469554619362e-17
+ - 1.6473301898993544e-16
+ - -1.7006833394090247e-16
+ - 2.7710550520526427e-16
+ - 2.6759292816090442e-17
+ - 1.9041697700970695e-16
+ - 1.5112589791343813e-16
+ - 1.9107872149974936e-17
+ - -7.779633661061224e-17
+ - 2.4298430493745185e-17
+ - -2.900095227610915e-16
+ - -7.694847648274539e-17
+ - 7.361907451721946e-17
+ - -3.8530072932720024e-16
+ - 7.932662074383534e-17
+ - 2.756165801026688e-16
+ - -1.0836066024444661e-17
+ - 1.0166049728276709e-16
+ - 5.55699935513124e-16
+ - -4.635520152747167e-16
+ - 9.173432993213076e-17
+ - 2.2085722355165836e-16
+ - 8.296621543906866e-17
+ - -1.6278914455043582e-16
+ - 8.784658105313153e-17
+ - -1.1845226371759356e-16
+ - 5.331179047904263e-17
+ - 1.6742135598073278e-16
+ - 1.0753347963189359e-16
+ - -3.407984123718474e-17
+ - 2.0303148135114062e-16
+ - -4.577617509868455e-16
+ - 5.045801736573468e-17
+ - -2.623816903018204e-16
+ - 2.862044919433476e-16
+ - 1.799945012915388e-16
+ - 2.44514589070675e-16
+ - 2.413713027429735e-16
+ - -2.2888087549342276e-16
+ - -2.961306592939839e-17
+ - 6.828375956625243e-17
+ - 1.2949512489517648e-16
+ - 2.4815418376590826e-18
+ - 2.8377464889397306e-17
+ - 1.2095190013115224e-16
+ - 5.772066314395027e-16
+ - 1.2223661502002366e-16
+ - -2.4827826085779126e-16
+ - -1.712263867984767e-16
+ - 8.3876114112877e-17
+ - -5.376673981594679e-18
+ - -2.729696021424991e-18
+ - -2.2333876538931747e-16
+ - 5.600012746983997e-17
+ - 9.268558763656674e-17
+ - 1.535247216898419e-16
+ - 1.0008885411891633e-17
+ - 1.1745964698252991e-17
+ - 8.354524186785578e-17
+ - -3.5403330217269584e-17
+ - 4.2186211240204406e-16
+ - 6.667075737177403e-17
+ - 2.249931266144235e-17
+ - -2.71144634916054e-16
+ - 2.3194144375986896e-16
+ - 1.1468859193047729e-16
+ - 7.46116912522831e-17
+ - 1.6520864784215343e-16
+ - 1.7122638679847673e-17
+ - -1.0091603473146936e-16
+ - 1.286265852519958e-16
+ - -2.2606846141074246e-16
+ - 4.446095792472524e-16
+ - -1.4856163801452377e-16
+ - 1.4773445740197074e-16
+ - 2.2102265967416897e-16
+ - 2.036518668105554e-16
+ - -5.172980755753496e-17
+ - 5.558653716356346e-17
+ - 2.5760472226432664e-16
+ - 3.970466940254533e-18
+ - 9.45053849841834e-17
+ - -8.526164163890332e-17
+ - -4.670261738474394e-16
+ - 1.3598849270371775e-16
+ - -7.361907451721946e-17
+ - 1.5683344414005402e-16
+ - 2.334303688624644e-16
+ - 1.4049662704213175e-16
+ - 4.648755042548015e-17
+ - -2.9778502051908996e-17
+ - -2.2218071253174323e-16
+ - -8.230447094902625e-18
+ - 3.410879255862409e-16
+ - 9.446402595355575e-17
+ - -4.0366413892587744e-17
+ - -1.3615392882622836e-16
+ - -4.417144471033167e-17
+ - -4.1234953535768425e-16
+ - 5.70754622661589e-18
+ - -1.7462816706760103e-16
+ - -1.7850557618894335e-16
+ - 1.9533870165439746e-16
+ - 4.063524759166748e-16
+ - 3.3757240798289054e-16
+ - 1.361022300379438e-16
+ - -5.442021249986369e-16
+ - 5.773720675620133e-17
+ - -2.26482051717019e-16
+ - 3.685916809536291e-16
+ - -1.1998254785081666e-16
+ - 2.721424215299461e-16
+ - -3.9778081681909405e-16
+ - 8.428970441915351e-17
+ - 1.3383782311107988e-16
+ - 1.1563984963491327e-16
+ - -2.797111241348063e-16
+ - 2.5146290621612038e-17
+ - 1.3516131209116472e-16
+ - 2.4385284458063256e-16
+ - -4.9630836753181654e-17
+ - -1.0701649174904794e-16
+ - -3.0043199847925965e-16
+ - -9.504305238234287e-17
+ - 6.981404369947554e-17
+ - 1.2631047953684733e-16
+ - -1.3857343211794596e-16
+ - -8.437242248040882e-18
+ - -1.9893693731900313e-16
+ - 2.076378433872953e-16
+ - 5.829555366967463e-17
+ - 7.974021105011186e-17
+ - 1.799945012915388e-16
+ - 1.0290126820159663e-16
+ - 8.156000839772852e-17
+ - 2.916225249555699e-16
+ - 1.0877425055072312e-17
+ - 8.941822421698228e-17
+ - -1.977788844614289e-16
+ - 2.2751602748271026e-16
+ - 3.242031013325023e-17
+ - 1.0306670432410724e-16
+ - -2.1175823681357505e-17
+ - 8.203563724994651e-17
+ - -1.1745964698252991e-17
+ - -3.010937429693021e-17
+ - -4.424382301393006e-17
+ - -3.0977913940110886e-17
+ - 5.641371777611649e-17
+ - 1.2642214891954196e-15
+ - 7.560430798734672e-17
+- - -2.5107482603450144
+ - -1.925877098778258
+ - 1.8317071840223391
+ - -2.7859372745392137
+ - 2.760119359901823
+ - -1.8465484762025983
+ - 0.2863258926040123
+ - 1.2910336864609335
+ - -1.6521228895546423
+ - -2.8051782005486046
+ - 3.1928645830569016
+ - 1.8135565738319304
+ - -1.7481558522555531
+ - 0.16153839282464985
+ - 1.4694833877447715
+ - -1.657150698286911
+ - -2.6163840107120215
+ - 2.674266472172115
+ - 1.6823626150909858
+ - -1.5821560984968137
+ - -0.042185368664472235
+ - 1.573092069564131
+ - -2.7099168492790673
+ - 2.814294179205702
+ - -2.084861091266076
+ - 0.48190128315046693
+ - 1.3660530673270626
+ - 2.5250307847624565
+ - 1.213463408587762
+ - -2.7523093213341565
+ - 2.7682682666342346
+ - -1.9368119505719268
+ - 0.36767244841847857
+ - 1.2480054043086293
+ - 2.898309429879808
+ - 1.3283197307249797
+ - -2.813064774849521
+ - 2.7310238551423973
+ - -1.8432396771407336
+ - 0.18683773761896075
+ - 1.377099202144621
+ - -2.574801547797434
+ - 5.1382170252256065
+ - 5.06385075828113
+ - 1.4283780453102515
+ - 1.2683875230773702
+ - -2.1259864118119873
+ - -2.271617827870749
+ - 0.2447592165917205
+ - 1.3281015011673527
+ - -2.546819071226895
+ - 2.8566638216566043
+ - -2.2755900360786403
+ - 0.8789491384249523
+ - 0.39938875699442283
+ - 0.1934828690783974
+ - -3.5072263018173255
+ - -1.754828711500355
+ - 2.8427517192275396
+ - -2.193545668480375
+ - 0.6849496091690331
+ - 0.5369945920253133
+ - 0.40696367924872745
+ - -3.272609146289271
+ - -1.7855722266272316
+ - 2.8057426251324142
+ - -2.0552440631203877
+ - 0.5633899219122749
+ - 1.1213977640918966
+ - -2.4274188191560095
+ - 2.8712404307705444
+ - -1.6291628277591892
+ - -3.1021595155271906
+ - -0.2628718849568249
+ - 0.1629982771452958
+ - 1.2349656372211606
+ - -2.533201720773374
+ - 2.8673396955477415
+ - -1.6669086862451095
+ - -3.4476401671062353
+ - -0.5814658308454242
+ - -0.010846538673964902
+ - 1.413623547755032
+ - -2.5941306233802552
+ - 2.8562399783327383
+ - -2.2115351937347962
+ - 0.7857496434249862
+ - 0.818825800362482
+ - -2.060208805979587
+ - -2.377126840220316
+ - 0.6282144673007519
+ - 0.6492594877224545
+ - 0.16138690173426767
+ - -1.74951912852086
+ - 2.6919922080030934
+ - -2.819323636537304
+ - 1.9261222394157225
+ - -0.4854510574824529
+ - -0.6843954397632288
+ - -0.764127845993247
+ - 3.7740690667723857
+ - 1.937760975189381
+ - -2.7847560676364878
+ - 1.831990961057196
+ - -0.28325180114986825
+ - -0.8093673959726746
+ - -0.9102124816926508
+ - 3.312669838885082
+ - 1.8561295098072008
+ - -2.7191715792597573
+ - 1.6707037852279423
+ - -0.16077951873222265
+ - -1.5605195801122707
+ - 2.6042037017626103
+ - -2.883454711019875
+ - 1.463821223714165
+ - 2.8851499238615688
+ - 0.7700914693129361
+ - 0.12877008976483026
+ - -1.6629984784929752
+ - 2.683852430283626
+ - -2.846399697970934
+ - 1.3942465444610526
+ - 3.001527060704231
+ - 1.0773356666660123
+ - 0.2741323828533784
+ - -1.8267551846962242
+ - 2.7250495065737206
+ - -2.8182419655606488
+ - 1.8510764489631277
+ - -0.3889931506540019
+ - -1.2788517914146078
+ - 3.7583647537608256
+ - 3.6243742476241834
+ - -0.29062948928233096
+ - -0.4687773555248512
+ - -4.469461904861638
+ - -4.584196042697943
+ - 1.8979800504855329
+ - -0.44913535589595643
+ - -1.2203858741916351
+ - 2.467683960401497
+ - -2.9087784831325076
+ - 2.33061756285159
+ - -0.7741488605103813
+ - -1.971532558879568
+ - -2.3445296781060225
+ - -0.9912704057519482
+ - 2.5293391605660003
+ - -2.899773728901125
+ - 2.2079865086080455
+ - -0.6355053745620182
+ - -1.6182988725466525
+ - -2.3303646095068387
+ - -1.084951590068682
+ - 2.6175614903550057
+ - -2.8759637450892552
+ - 2.126127980801725
+ - -0.673951567690217
+ - -1.0085253764015891
+ - 2.288914445037842
+ - -1.8697624686493741
+ - -3.185618954377823
+ - 1.7429783917081108
+ - 1.2412066697358368
+ - -0.5521015717726733
+ - -1.1956525039648047
+ - 2.406027424095851
+ - -1.9783689317542326
+ - -3.6966944644589494
+ - 1.7439292929436592
+ - 1.16523090487223
+ - -0.3525217797372501
+ - -1.310597527358805
+ - 2.4698713154046468
+ - -0.6726784502039063
+ - -1.0110849910085116
+ - 2.2919712008923865
+ - -3.8227104034909534
+ - -4.614765086459656
+ - 1.170129694517513e-15
+ - 1.3459882927462864e-15
+ - 1.6212740006039342e-17
+ - -1.2279496193349696e-16
+ - 2.932355271500483e-17
+ - -2.067951531382569e-16
+ - -6.87387089031566e-17
+ - -4.9341323538788095e-17
+ - 3.245029543045527e-16
+ - -1.0745076157063828e-16
+ - -7.610061635487855e-18
+ - 3.328574784913383e-16
+ - -1.9790296155331185e-16
+ - 7.46944093135384e-17
+ - -1.0587911840678753e-17
+ - 4.896909226313923e-17
+ - 4.4931416898114766e-17
+ - -1.1828682759508294e-17
+ - -5.976379925695625e-17
+ - 3.7967590116183964e-17
+ - 8.019516038701602e-17
+ - 5.285684114213846e-17
+ - -1.233946678775979e-16
+ - -7.262645778215583e-17
+ - -8.437242248040881e-17
+ - -3.6065074707312007e-17
+ - 1.9356026333740845e-17
+ - 1.0075059860895876e-16
+ - 2.844674126569862e-16
+ - -9.330597309598151e-17
+ - -4.286449934249789e-16
+ - 1.6113478332532977e-16
+ - -5.43953970814871e-16
+ - -1.083141313349905e-16
+ - -2.835575139831779e-16
+ - 8.933550615572698e-17
+ - 5.939156798130739e-17
+ - 8.434140320743807e-17
+ - 1.515808472503423e-16
+ - 3.2208345101283515e-17
+ - 6.931773533194372e-17
+ - -2.772709413277749e-16
+ - 3.4294908196448522e-16
+ - -9.045219998267356e-17
+ - -3.2950739701049852e-16
+ - 3.172651239447137e-16
+ - -1.3141831981936227e-16
+ - -2.1754850110144625e-17
+ - 3.393094872692519e-16
+ - 1.1166938269465874e-18
+ - -3.12012527055002e-16
+ - -1.5493092873118206e-16
+ - 1.7099891213002462e-16
+ - 9.032812289079061e-17
+ - 3.159829939952565e-16
+ - -1.3613324931091453e-16
+ - -7.394994676224067e-17
+ - -8.10637000301967e-17
+ - 1.5137405209720404e-16
+ - -1.3525436991007694e-16
+ - 3.8596247381724266e-16
+ - -2.5311726744122644e-17
+ - 2.1639044824387202e-16
+ - -2.5535065509511964e-16
+ - -2.691542315670983e-16
+ - -2.7685735102149836e-16
+ - -4.566036981292712e-17
+ - 1.240357328523265e-16
+ - 3.2053248736429817e-16
+ - 2.1672132048889322e-17
+ - 4.8720938079373324e-17
+ - 1.5087774372967222e-16
+ - 4.907248983970836e-17
+ - -3.12839707667555e-16
+ - -1.9736529415515238e-16
+ - -1.2788212270069808e-16
+ - 2.7708482568995045e-16
+ - 1.8392360920116568e-16
+ - -8.798616778149985e-17
+ - 1.220298198668854e-16
+ - -6.369290716658312e-18
+ - 1.9256764660234482e-16
+ - -2.378144261089954e-18
+ - -2.5319998550248177e-16
+ - -9.562207881112999e-17
+ - 1.7701665108634792e-17
+ - 1.0422475718168147e-17
+ - -7.891303043755883e-17
+ - 3.298382692555198e-17
+ - -2.826062562787419e-16
+ - 1.4202691117535485e-16
+ - -4.736436187478636e-16
+ - 1.3962808739895107e-16
+ - -1.0732668447875533e-16
+ - 9.371956340225802e-17
+ - -1.4004167770522759e-16
+ - -1.4266797615008345e-16
+ - 1.589841137326919e-16
+ - -2.273919503908273e-16
+ - -1.3247297510036738e-16
+ - 1.9236085144920656e-16
+ - -7.320548421094294e-16
+ - 9.185840702401371e-17
+ - -2.4753379830649353e-16
+ - -4.556110813942076e-16
+ - -2.0464448354561902e-16
+ - 8.972841694668966e-17
+ - -1.048865016717239e-16
+ - 9.132073962585424e-17
+ - -3.0936554909483235e-17
+ - -1.7490734052433768e-16
+ - 1.1898993111575303e-16
+ - 3.620983131450878e-16
+ - -1.234670461811963e-16
+ - 1.287093033132511e-16
+ - -3.3848230665669888e-16
+ - -1.5005056311711922e-16
+ - -9.4670821106694e-17
+ - 1.112557923883822e-17
+ - -2.4815418376590826e-18
+ - 2.6171994581177796e-16
+ - -9.512577044359817e-18
+ - 1.5015396069368835e-16
+ - 3.152075121709881e-17
+ - 9.181704799338606e-17
+ - 2.716461131624143e-16
+ - 8.41242682966429e-17
+ - 1.2804755882320868e-16
+ - 1.5302841332231012e-17
+ - 3.143493122854643e-16
+ - 2.4319110009059014e-16
+ - 1.3152171739593138e-17
+ - -6.046690277762632e-17
+ - -1.6119682187127124e-16
+ - 6.56781406367104e-17
+ - 5.707546226615891e-16
+ - -1.7615845120082413e-16
+ - -3.36331637064061e-16
+ - -3.9874241428118694e-16
+ - 1.2688950596563445e-16
+ - -4.343525396515948e-16
+ - 2.209244319764283e-16
+ - 9.003860967639705e-17
+ - 1.0840201927507426e-16
+ - -5.744769354180777e-16
+ - -3.060568266446202e-18
+ - -1.0558960519239397e-16
+ - 1.3830459841886623e-16
+ - -6.100457017578579e-17
+ - 7.605925732425088e-17
+ - 2.456726419282492e-16
+ - 2.937731945482078e-16
+ - 2.804142276554764e-17
+ - 2.0683651216888455e-16
+ - 1.4814804770824726e-16
+ - 1.8859717966209028e-17
+ - 3.143286327701505e-17
+ - 3.628841347270132e-16
+ - -3.687571170761397e-16
+ - -2.1672132048889322e-17
+ - -9.669741360744892e-17
+ - 5.98051582875839e-17
+ - -4.79764755280756e-18
+ - -3.987010552505593e-17
+ - -5.88559685346793e-16
+ - -7.989530741496555e-17
+ - -2.251999217675618e-16
+ - 5.525566491854224e-17
+ - -3.1978802481300045e-16
+ - 1.2808891785383634e-16
+ - -1.5422782521051199e-16
+ - 2.8330935979941194e-18
+ - 1.4227506535912076e-17
+ - 1.584050873039048e-17
+ - -2.187892720202758e-17
+ - -1.4558378780933287e-16
+ - -8.030889772124206e-17
+ - -1.0000613605766103e-16
+ - -9.295855723870925e-16
+ - 1.8363409598677212e-16
+- - -0.38487074971703444
+ - -0.45220258274824854
+ - -0.3435003269124414
+ - 1.8258458331694123
+ - -2.7934874729287023
+ - 2.7529768903006486
+ - -1.8732243634614085
+ - 0.30747148195187674
+ - 0.7768381520938502
+ - 0.9456192760380081
+ - -3.8012668335661592
+ - -1.9659324780100194
+ - 2.7144035088794833
+ - -1.772859462450621
+ - 0.1050905554875756
+ - 0.8945031285479882
+ - 1.0673102993482344
+ - -3.3260780550657882
+ - -1.8786461028218238
+ - 2.637460627978951
+ - -1.606816211915792
+ - -0.020153305880354938
+ - 1.6423762801911792
+ - -2.71559972962553
+ - 2.8325910074089866
+ - -1.4126656654688228
+ - -2.8182839209512016
+ - -0.9284253365480584
+ - -0.2197882189584712
+ - 1.7438614590669084
+ - -2.784696931451762
+ - 2.7876333366584976
+ - -1.338067703928777
+ - -2.9178278914327964
+ - -1.2471255200506612
+ - -0.3655398983917848
+ - 1.9005783963139757
+ - -2.8221822621262245
+ - 2.751688906955437
+ - -1.79464004257039
+ - 0.2098923151827088
+ - 1.3669869770389373
+ - -3.9447026633399904
+ - -3.812877677541562
+ - 0.16319820650478015
+ - 0.3452112123540541
+ - 4.3666567273423285
+ - 4.485105730792855
+ - -1.8406752237232769
+ - 0.26563510019155284
+ - 1.315293902844033
+ - -2.5951100507208302
+ - 2.873536583244537
+ - -2.2996177938870077
+ - 0.6912511198714517
+ - 1.830026655046589
+ - 2.4919436110513695
+ - 1.0765767686810517
+ - -2.6497882982591197
+ - 2.8600562068929323
+ - -2.166516513531844
+ - 0.5497911866228699
+ - 1.4811949934917816
+ - 2.458861805970651
+ - 1.1669044231197994
+ - -2.731152594867464
+ - 2.8241795918760073
+ - -2.0814832570376303
+ - 0.49371593703060035
+ - 1.1067361795892388
+ - -2.4289062750239183
+ - 1.8886718840677656
+ - 3.2454105685859242
+ - -1.610163027957481
+ - -1.176173597345566
+ - 0.371889442668422
+ - 1.292800961061675
+ - -2.536371497332404
+ - 1.9935778775326984
+ - 3.753231930439969
+ - -1.584196631173166
+ - -1.0903467205631354
+ - 0.16800723180823632
+ - 1.403714648144564
+ - -2.5971046740168697
+ - 2.8624601856544296
+ - -2.2374601196802475
+ - 0.8088022647486642
+ - -0.29937803512616973
+ - -0.5368868651959868
+ - -3.3582342670987577
+ - -2.842942031178078
+ - 1.4259846696960763
+ - 0.14255136270088736
+ - -1.7407750724474607
+ - 2.7308609630304193
+ - -2.8396977317093803
+ - 1.9507900601710733
+ - -0.45804750337873185
+ - -1.4127240376206984
+ - -3.0262032666838077
+ - -1.3903300846699242
+ - 2.7695656669009905
+ - -2.8050532228943372
+ - 1.7971413655350563
+ - -0.2633588196174447
+ - -1.0024686236167022
+ - -2.776552400085301
+ - -1.3831679916286965
+ - 2.8191295728171992
+ - -2.7404122692778676
+ - 1.6973785355838968
+ - -0.08764251044949277
+ - -1.5499173033940807
+ - 2.609617662025413
+ - -1.883482858103566
+ - -3.321779960034133
+ - 1.1403100097705388
+ - 0.9330162026601863
+ - 0.03763738079465713
+ - -1.7186466081779581
+ - 2.6909427300307156
+ - -1.8796353530035517
+ - -3.618197286811267
+ - 1.0003095757866025
+ - 0.8088380969049513
+ - 0.24038008083100904
+ - -1.8208581443100336
+ - 2.7322499854502866
+ - -2.8132637830925566
+ - 1.8775860942019154
+ - -0.4106001457423076
+ - -1.1746183878452199
+ - -1.0304892148815583
+ - 1.8234194270739414
+ - 1.9626123560863964
+ - 5.136018453433896
+ - 5.179347974754609
+ - -2.8313666356769955
+ - 1.924760730523415
+ - -0.4744877992633028
+ - -1.294213240062961
+ - 2.471417878647143
+ - -2.927759672499387
+ - 1.6083058507579664
+ - 3.3245546604309757
+ - 0.4534669721876286
+ - -0.06296913945452616
+ - -1.4039994828462925
+ - 2.5354450960453407
+ - -2.9123929405892257
+ - 1.5161318230440037
+ - 2.9613082609376296
+ - 0.6506126511690336
+ - 0.0575989149597524
+ - -1.5808516390879794
+ - 2.6254425838950195
+ - -2.8972817057963742
+ - 2.0896862759197123
+ - -0.7005000836186844
+ - -0.9955269013020649
+ - 1.4553533974426798
+ - 2.1738353540052393
+ - -3.0251748467754522
+ - -1.8262848866680168
+ - 2.003318735999074
+ - -0.4996641547031316
+ - -1.1843591010676084
+ - 1.5931687267466785
+ - 2.665145081234783
+ - -3.3251211010855553
+ - -1.867970793719678
+ - 1.8508811490259331
+ - -0.37499704203212003
+ - -1.298089946404305
+ - 2.5217009956042906
+ - -0.6975277518997515
+ - -0.9978673803229167
+ - 2.24460748875082
+ - 2.6065000113822347
+ - 6.284297908718489e-16
+ - 2.1357803416119172e-16
+ - 2.3210687988237957e-16
+ - 1.9992955405406676e-16
+ - -2.354156023325917e-16
+ - -1.3164579448781435e-16
+ - -1.5629577674189455e-16
+ - 5.788196336339811e-17
+ - -5.377501162207233e-16
+ - 1.2533854231709752e-16
+ - 1.0176389485933622e-16
+ - 1.2490427249550716e-17
+ - 3.1245713663424924e-16
+ - 2.4484546131569616e-17
+ - -1.576916440255778e-16
+ - -1.677625679834109e-16
+ - -8.015380135638837e-17
+ - -7.337092033345355e-17
+ - 1.0521737391674511e-16
+ - -1.139027703485519e-16
+ - 6.121136532892405e-17
+ - -4.756288522179908e-18
+ - 5.542110104105285e-17
+ - -7.031035206700735e-18
+ - 2.0265925007549175e-17
+ - -2.9745414827406875e-16
+ - -1.135718981035307e-16
+ - -8.056739166266488e-17
+ - -4.284795573024683e-17
+ - 2.610168422911079e-16
+ - 4.688459711950561e-16
+ - -9.347140921849211e-17
+ - -4.6611627517363103e-17
+ - 1.6487002077888953e-16
+ - 4.384057246531046e-17
+ - -4.536258479240804e-16
+ - 3.1019272970738534e-18
+ - -4.6032601088575984e-17
+ - -2.630434347918628e-16
+ - 1.0596183646804283e-16
+ - 3.1035816582989593e-16
+ - 2.4716156703084467e-16
+ - -2.0522350997440614e-16
+ - 9.950982769012922e-17
+ - 1.9364298139866375e-16
+ - -1.9026188064485325e-16
+ - 1.1803867341131705e-16
+ - -1.9753073027766298e-16
+ - -1.2242273065784808e-17
+ - 3.4348674936264474e-17
+ - 2.9149844786368695e-16
+ - 2.028918946227723e-16
+ - -1.3979352352146168e-16
+ - -1.2705494208814505e-16
+ - -6.83582058213822e-16
+ - 8.437242248040882e-18
+ - 5.77992453021428e-18
+ - 7.767225951872929e-17
+ - -6.849055471939069e-17
+ - 2.0315555844302357e-16
+ - -1.8776999904953728e-17
+ - -8.602678370551487e-17
+ - 5.744769354180777e-17
+ - 1.4608009617686469e-16
+ - 6.749793798432706e-17
+ - 2.03817302933066e-16
+ - -2.9704055796779224e-16
+ - -5.587605037795702e-17
+ - -4.513717807548734e-16
+ - -1.0290126820159663e-16
+ - 6.758065604558236e-17
+ - -8.776386299187622e-17
+ - -4.954811869192635e-17
+ - 5.060277397293146e-17
+ - 7.328820227219825e-17
+ - -1.0297881638402348e-16
+ - -2.537996914465827e-16
+ - -2.1957509360220117e-16
+ - 1.288643996781048e-16
+ - -3.123433993000232e-16
+ - 8.41242682966429e-17
+ - -1.1406820647106252e-16
+ - -1.4677285993987785e-17
+ - 2.9191203816996347e-16
+ - -1.6787630531763694e-16
+ - 4.79764755280756e-17
+ - -9.446402595355575e-17
+ - -1.330520015291545e-16
+ - -6.478478557515312e-16
+ - 4.603260108857599e-16
+ - -2.0464448354561902e-16
+ - 5.610145709487772e-16
+ - 4.7562885221799085e-17
+ - 1.7453510924868884e-17
+ - -1.651052502655843e-16
+ - -6.243145673243976e-17
+ - 9.520848850485347e-17
+ - -2.1142736456855385e-16
+ - 2.7338319244877565e-16
+ - 1.8317914664986795e-16
+ - -1.5406238908800139e-18
+ - 7.741169762577509e-16
+ - 1.737079286361358e-18
+ - -1.601214870749523e-16
+ - -2.780774424250141e-16
+ - -3.1267427154504446e-17
+ - -5.736497548055247e-17
+ - 1.205719140372607e-16
+ - 2.746239633676052e-16
+ - 9.838279410552572e-17
+ - 9.57978546912975e-17
+ - -8.304893350032397e-17
+ - -2.936491174563248e-16
+ - 1.8082168190409183e-16
+ - -1.4268865566539727e-16
+ - -3.7223127564886245e-18
+ - -4.168990287267259e-17
+ - -1.0323214044661784e-16
+ - 2.0183206946293873e-16
+ - -6.485096002415737e-17
+ - -7.295733002717704e-17
+ - 3.4576149604716557e-17
+ - -4.015341488485534e-16
+ - -9.405043564727923e-17
+ - -2.4141266177360113e-16
+ - -2.537790119312689e-16
+ - -1.5708159832381993e-16
+ - -1.0240495983406481e-16
+ - -1.67752228225754e-16
+ - -2.0547166415817205e-16
+ - -1.5269754107728888e-16
+ - -1.1183481881716934e-16
+ - -1.6847601126173789e-16
+ - 2.2958397901409283e-16
+ - -2.764024016845942e-16
+ - -1.7751295945387971e-16
+ - 1.9620724129757814e-16
+ - 1.401243957664829e-16
+ - 2.10103875588469e-17
+ - -8.677124625681259e-17
+ - 5.814666115941508e-16
+ - -1.466591226056518e-16
+ - 1.112557923883822e-17
+ - -2.802487915329658e-16
+ - 2.5204193264490753e-16
+ - 1.3557490239744124e-16
+ - 1.0768857599674728e-16
+ - 1.079470699381701e-16
+ - 3.5072457972248373e-17
+ - -7.502528155855961e-17
+ - -2.187065539590205e-16
+ - -5.2463930351175774e-17
+ - 9.6924888275901e-17
+ - -2.187892720202758e-16
+ - 3.226004388956808e-17
+ - 5.205034004489926e-17
+ - -2.998116130198449e-16
+ - -1.4434301689050333e-16
+ - 1.2440796412797536e-16
+ - 1.2688950596563445e-16
+ - 2.4377012651937726e-16
+ - 9.082443125832243e-17
+ - 8.39588321741323e-17
+ - -3.1805094552663914e-17
+ - 7.575320049760626e-16
+ - 3.13087861851321e-17
+ - 6.583840688039255e-17
+ - -9.304747915455869e-17
+ - 3.011144224846159e-16
+ - 4.7232012976777874e-17
+ - 1.3028094647710186e-16
+ - 3.961367953516449e-16
+ - 1.9283648030142455e-17
+ - -1.1266199942972237e-16
+ - -2.0296944280519913e-17
+ - 5.3518585632180884e-17
+ - -1.0571368228427692e-16
+ - 7.337092033345355e-17
+ - -4.170644648492365e-16
+ - -5.107013101902393e-16
+- - 3.139297299042872
+ - 2.669275326122068
+ - -1.3289535483172097
+ - -0.3434336225573843
+ - 1.8242935287550397
+ - -2.8212231319445955
+ - 2.7547993478124804
+ - -1.8741756671964047
+ - 0.3514968937731879
+ - 1.2182063688908877
+ - 3.1482599423219293
+ - 1.4667090109253331
+ - -2.851544011958347
+ - 2.715381281545262
+ - -1.7115752479350104
+ - 0.16069281651700162
+ - 0.82780568219606
+ - 2.8736015278999694
+ - 1.452016157053032
+ - -2.892120104605501
+ - 2.6383959337503375
+ - -1.6096858455481042
+ - -0.11365041097357746
+ - 1.640628855029812
+ - -2.716524138485217
+ - 1.8713308286204549
+ - 3.330572933308505
+ - -0.9680730060871439
+ - -0.8419830425687529
+ - -0.23692620970726155
+ - 1.8048472942294975
+ - -2.7856481623194136
+ - 1.8608839145627167
+ - 3.6137462401462193
+ - -0.8092330327666704
+ - -0.7137459989391969
+ - -0.4406687726354861
+ - 1.9008961320281628
+ - -2.8223981295336995
+ - 2.723161233330391
+ - -1.797567392537189
+ - 0.21019408114533877
+ - 1.4506448008670396
+ - 1.3052568474564596
+ - -1.6932863451575197
+ - -1.8369560208781164
+ - -5.1511685163844065
+ - -5.203291946129408
+ - 2.7421380473286097
+ - -1.8415751310166646
+ - 0.26836525598014793
+ - 1.3980180561738158
+ - -2.594936718397077
+ - 2.874715282963388
+ - -1.547907605357198
+ - -3.2381467023293435
+ - -0.6563973605814863
+ - -0.04508909628460291
+ - 1.5062951893722512
+ - -2.6507506072207905
+ - 2.8496883604719025
+ - -1.449437314088899
+ - -2.8700723361170932
+ - -0.8348745374813845
+ - -0.16482217153556397
+ - 1.6751374219741182
+ - -2.732119253484911
+ - 2.825730075979962
+ - -2.0152958440050535
+ - 0.4964892363176334
+ - 1.1069428512211128
+ - -1.5216672583399826
+ - -2.3135230715513853
+ - 2.941229111802995
+ - 1.7951553465817296
+ - -1.9221686101549413
+ - 0.29553641029765354
+ - 1.2930836066650833
+ - -1.6586757692113236
+ - -2.814783018082971
+ - 3.2150649171061367
+ - 1.8253328743794943
+ - -1.7640917611129894
+ - 0.16818109029062375
+ - 1.4017923887414079
+ - -2.6401351792254872
+ - 2.8638677589978934
+ - -2.2384976904319838
+ - 2.5486372049008135
+ - 3.259270132825672
+ - 4.963330107186452
+ - 4.084917696351101
+ - -2.6112584427787247
+ - 1.4263826647818507
+ - 0.14010591122892865
+ - -1.816196497207679
+ - 2.7311451028536005
+ - -2.8408534299820953
+ - 1.443435235262614
+ - 3.1114889552982903
+ - 1.2798517635564326
+ - 0.38512941173021875
+ - -1.9115966118228398
+ - 2.7705774180369773
+ - -2.7829824382703308
+ - 1.2438303194589
+ - 2.5741793752885176
+ - 1.3236177168869137
+ - 0.45445330925843763
+ - -2.062758365049934
+ - 2.8200963061342215
+ - -2.742281606615978
+ - 1.621477877902221
+ - -0.09025490703147082
+ - -1.5505718100393304
+ - 1.677550578151289
+ - 2.6565132767651423
+ - -2.6641702229741964
+ - -1.6808960368828223
+ - 1.5184009195407333
+ - 0.11468012067546182
+ - -1.7193832852544397
+ - 1.740406894833106
+ - 3.0340143297928734
+ - -2.73698209142738
+ - -1.6189248733130042
+ - 1.3405793936479735
+ - 0.24037047425697858
+ - -1.8195815631565335
+ - 2.761943511658465
+ - -2.8151501596086357
+ - 1.8781888288151098
+ - -1.7839407556542892
+ - -1.8903254831625511
+ - -2.717465502709812
+ - -2.7646396177508383
+ - -4.098874325899653
+ - -4.061182921679668
+ - 2.7461513454856363
+ - -2.833812084915618
+ - 1.9267317975448734
+ - -0.3798260395114864
+ - -1.2954782026647076
+ - 2.475215403226957
+ - -1.9060481365050612
+ - -3.57050656981366
+ - 1.5788198298228184
+ - 1.091395689885384
+ - -0.25506523903159545
+ - -1.4075800663621878
+ - 2.5750943893651392
+ - -1.8906341902766939
+ - -3.31754117133973
+ - 1.236625103768059
+ - 0.9839787035742819
+ - -0.05195689996294121
+ - -1.5844801765426868
+ - 2.6279912540842174
+ - -2.884397423775555
+ - 2.091882502104239
+ - -0.6989496395024654
+ - -0.5610410920415533
+ - -0.4470808246847552
+ - 3.299675835765083
+ - 1.8039288818362353
+ - -2.8585189155733057
+ - 1.9473224722233755
+ - -0.49785221663123963
+ - -0.682287691787821
+ - -0.7560287393909293
+ - 3.797848448099931
+ - 1.9489055258170842
+ - -2.8068883702080467
+ - 1.8508516314204775
+ - -0.37554175506646714
+ - -1.3851336861416172
+ - 2.524174070951677
+ - -0.6980464709111897
+ - 0.06915018658515615
+ - 0.2552062993215695
+ - -5.161607022330893e-16
+ - -6.806042080086311e-16
+ - -2.6221625417930977e-16
+ - -1.5505500582306501e-16
+ - 2.0199750558544933e-16
+ - 7.527343574232552e-18
+ - 3.472917801803886e-16
+ - -7.378451063973007e-17
+ - 5.231090193785347e-16
+ - -9.471218013732166e-17
+ - -2.909607804655275e-17
+ - -1.3822188035761092e-16
+ - -2.8603905582083697e-16
+ - -2.8756933995406007e-16
+ - 5.186422440707483e-17
+ - -1.7536228986124187e-17
+ - 1.0645814483557465e-16
+ - 2.895132143935597e-16
+ - 6.695510070733913e-17
+ - 2.1874791298964814e-16
+ - 6.716706573930585e-17
+ - 1.6924115332834944e-16
+ - 3.879477072873699e-17
+ - 9.913759641448035e-17
+ - -1.9660015208854083e-16
+ - 9.047287949798739e-17
+ - 5.748905257243542e-17
+ - 4.044913195384305e-17
+ - 7.312276614968765e-17
+ - -2.843846945957309e-16
+ - -2.506357256035674e-16
+ - 8.371067799036639e-17
+ - -3.813302623869457e-16
+ - -8.462057666417472e-17
+ - 6.885244623738264e-17
+ - 3.864587821847745e-16
+ - 1.4823076576950256e-16
+ - 1.2742717336379391e-16
+ - 4.016789054557502e-16
+ - -2.504702894810568e-16
+ - -9.760731228125725e-17
+ - -2.812414082680294e-16
+ - 1.3565762045869652e-17
+ - -9.802090258753376e-18
+ - -2.4652050205611607e-16
+ - 2.791669943881113e-17
+ - -5.3089485689419e-17
+ - 5.591534145705329e-16
+ - -2.666830294870961e-16
+ - -1.9051003482861916e-17
+ - -2.8868603378100666e-16
+ - -2.4683069478582346e-16
+ - 9.847585192443793e-17
+ - 7.014491594449675e-17
+ - 7.2179780251377185e-16
+ - 1.9852334701272664e-18
+ - -3.2177325828312777e-17
+ - 1.6095900744516225e-16
+ - 4.475047113911879e-17
+ - -1.9025154088719634e-16
+ - 3.4048175729360445e-17
+ - 9.727644003623604e-17
+ - -1.0865017345884017e-16
+ - -8.933550615572698e-17
+ - -1.3797372617384502e-16
+ - -9.423655128510367e-17
+ - 2.0944213109842658e-16
+ - -1.802219759599909e-17
+ - 4.554249657563832e-16
+ - 1.977788844614289e-16
+ - 1.5087774372967222e-16
+ - 7.576974410985732e-17
+ - 1.141664341688032e-16
+ - 5.098534500623724e-17
+ - -5.98878763488392e-17
+ - 1.8752184486577135e-16
+ - 1.37146545561292e-16
+ - 2.027833271673747e-16
+ - -6.476824196290207e-17
+ - 3.9092555749256083e-16
+ - 7.77549775799846e-18
+ - -4.350970022028925e-17
+ - 5.5297023949169894e-17
+ - -3.12839707667555e-16
+ - 8.214937458417255e-17
+ - 3.639594695233322e-17
+ - 2.6236101078650655e-16
+ - 3.114541801415287e-16
+ - 1.2411017910745625e-15
+ - -3.3467727583895495e-16
+ - 6.624062345324645e-16
+ - -1.4227506535912074e-15
+ - -2.4980854499101436e-16
+ - 1.0703717126436177e-16
+ - 2.3409211335250683e-16
+ - 1.2113026095073397e-17
+ - 2.4563128289762157e-16
+ - 2.278882587583591e-16
+ - -2.0737417956704401e-16
+ - -8.619221982802547e-17
+ - 4.582580593543773e-17
+ - -7.449588596652566e-16
+ - -6.038418471637102e-17
+ - 3.032444125619399e-16
+ - 1.2289835951006609e-16
+ - -4.3038207271134025e-16
+ - 5.124383894766006e-17
+ - -1.0587911840678753e-16
+ - -2.9712327602904754e-16
+ - -1.345822856623776e-16
+ - -1.1572256769616857e-16
+ - -5.939156798130739e-17
+ - 1.0091603473146936e-16
+ - -1.3698110943878138e-16
+ - 3.4576149604716557e-17
+ - -2.132471619161705e-16
+ - 5.045801736573468e-17
+ - 2.44514589070675e-16
+ - -3.573420246229079e-16
+ - 1.7666509932601286e-16
+ - 1.819797347616661e-17
+ - -6.5843576759221e-17
+ - 6.935909436257136e-16
+ - 1.9467695716435504e-16
+ - 2.238350737568493e-16
+ - 1.2705494208814505e-16
+ - 3.010937429693021e-17
+ - -1.1249656330721175e-17
+ - 2.898440866385809e-16
+ - 3.2756869244982737e-16
+ - 2.3756627192522955e-16
+ - 1.8413040435430394e-16
+ - 6.145951951268995e-16
+ - -1.768512149638373e-16
+ - 3.1929171644546863e-16
+ - 1.5550995515996918e-16
+ - -1.6899299914458353e-16
+ - -1.0422475718168147e-17
+ - -2.481541837659083e-19
+ - 2.9778502051908996e-17
+ - -3.183818177716603e-16
+ - 3.1267427154504446e-17
+ - -1.5468277454741618e-17
+ - 4.015134693332396e-16
+ - -6.515701685080198e-16
+ - -1.9566957389941867e-16
+ - -1.1767161201449664e-16
+ - -1.7925003874024107e-16
+ - 1.7085415552282784e-16
+ - 7.891303043755883e-17
+ - 1.9100634319615098e-16
+ - -4.8803656140628627e-17
+ - -1.2010662494269962e-16
+ - 3.3790328022791176e-16
+ - 5.224472748884923e-16
+ - -7.858215819253762e-19
+ - 3.8240559718326464e-16
+ - 7.667964278366565e-17
+ - 9.562207881112999e-17
+ - 8.970773743137584e-17
+ - -1.5596490449687334e-16
+ - -2.0473754136453124e-16
+ - -3.6892255319865034e-17
+ - -4.135903062765138e-19
+ - -5.67445900211377e-16
+ - -1.7536228986124187e-17
+ - -2.114480440838677e-18
+ - -2.0048790096754005e-17
+ - -2.0421538360285714e-16
+ - -1.1994118882018901e-16
+ - 4.301339185275744e-18
+ - -4.263082081945166e-16
+ - 2.816808479684482e-17
+ - -5.608284553109528e-17
+ - 3.143286327701505e-17
+ - -1.5844644633453243e-16
+ - 9.438130789230045e-17
+ - -7.312276614968765e-17
+ - -3.30872245021211e-19
+ - 7.901229211106519e-16
+- - -3.325825921833832
+ - -2.749189082953775
+ - 1.6743667386596468
+ - -0.81130380384147
+ - -0.36735722188281217
+ - 1.4213206996836063
+ - -2.0042164725597473
+ - 1.884286290040383
+ - -0.8884800181882763
+ - -1.9798173565524828
+ - -1.1854909566225655
+ - -0.4295533823463779
+ - 1.4823664543154578
+ - -2.0202986699950323
+ - 1.8291737129178243
+ - -0.745677401162992
+ - -1.6126810888890868
+ - -1.1724316070126475
+ - -0.4677989462078651
+ - 1.5746219958393253
+ - -2.0396326360288013
+ - 1.789891679140901
+ - -0.9568994782864535
+ - -0.20771516810148422
+ - 1.2522267995881649
+ - -1.237672260333887
+ - -2.011425581472847
+ - 1.6846434915772457
+ - 1.0952922889075187
+ - -0.8783657916231569
+ - -0.34856470382510474
+ - 1.361388843441255
+ - -1.2727455529097287
+ - -2.2705871996304285
+ - 1.7047138327733877
+ - 1.0412815543668945
+ - -0.7477422986973588
+ - -0.43643047297509685
+ - 1.4234686832713461
+ - -2.0176582869775954
+ - 1.8585575700906012
+ - -1.151619989309098
+ - 0.8341775588981456
+ - 0.9164439082743865
+ - 1.8217546375104032
+ - 1.8704754187422505
+ - 3.105912336579846
+ - 3.090640424590545
+ - -2.010239181820503
+ - 1.8734782782190624
+ - -1.185198864163149
+ - -0.007755953595100084
+ - 1.0881936211557846
+ - -1.8720422996555943
+ - 1.324161920453056
+ - 2.528396178831586
+ - -0.822512236893852
+ - -0.626396761256418
+ - -0.0940944877492184
+ - 1.1624170438432613
+ - -1.9250871803094776
+ - 1.3012922620640563
+ - 2.3296436253449584
+ - -0.5988486643514608
+ - -0.5471761077107832
+ - -0.2370706358350358
+ - 1.2751666493406266
+ - -1.9536936807474594
+ - 1.9274432497065395
+ - -1.313275416557252
+ - 0.21846260783540772
+ - 0.5406334002152059
+ - 0.5866165401976892
+ - -2.3293795306160128
+ - -1.2999532893635126
+ - 1.9005898481482244
+ - -1.1996899193432435
+ - 0.0768451544408134
+ - 0.6303247614329589
+ - 0.8366866864216463
+ - -2.656990223283828
+ - -1.3882854445177328
+ - 1.8469547910031217
+ - -1.1270531621774802
+ - -0.010782553562476743
+ - 1.1466208161491833
+ - -1.8989617675647987
+ - 1.9828130497806686
+ - -2.7082820338215625
+ - -3.3665174352605933
+ - -3.527384815643027
+ - -2.8533137507406856
+ - 2.0180010186588295
+ - -1.763256850511261
+ - 0.884159985829127
+ - 0.29301387731803114
+ - -1.369016839463903
+ - 1.948603101735197
+ - -1.3522323431491827
+ - -2.647209405611807
+ - 0.4501341209085103
+ - 0.43738192284339084
+ - 0.379383988629937
+ - -1.4333501896127656
+ - 1.9818499052999579
+ - -1.2479050052416565
+ - -2.2947247690636257
+ - 0.24325234506521484
+ - 0.3540794894249515
+ - 0.5176966608803674
+ - -1.5326351363680861
+ - 1.9960718847366767
+ - -1.8400048946206347
+ - 1.025763818567384
+ - 0.06745064170906384
+ - -0.7211049249959727
+ - -0.9284520133539789
+ - 2.310201503641021
+ - 1.3231423824635047
+ - -1.7994024164740516
+ - 0.9013521624627407
+ - 0.21042151947513824
+ - -0.794956997488096
+ - -1.170907703749956
+ - 2.4810753165822557
+ - 1.3308652928939557
+ - -1.7272059782285203
+ - 0.8205314750461697
+ - 0.2959961902187986
+ - -1.4206068203930498
+ - 1.9653829772631293
+ - -1.9287601397651621
+ - 2.768230139367083
+ - 2.798478107265431
+ - 1.9595538639920518
+ - 1.9303866573236197
+ - 1.4258902265302813
+ - 1.3527956821570115
+ - -1.390753178611409
+ - 1.9568997698319006
+ - -1.9434445572875148
+ - 1.1939997994506355
+ - -0.1355616635435545
+ - -1.022659298921715
+ - 1.153987917450263
+ - 1.9654534740062164
+ - -2.079835413454516
+ - -1.2007812007395315
+ - 1.1236096646648241
+ - -0.046151565650706924
+ - -1.1435523314585332
+ - 1.194490972433835
+ - 1.906590129062844
+ - -1.8150149816429315
+ - -1.154593550641787
+ - 1.0017840601741375
+ - 0.09595109575436195
+ - -1.2154877613748447
+ - 1.9106618773570359
+ - -1.9889685915205735
+ - 1.3687043344953556
+ - -0.27839372408445834
+ - -0.8601525068837204
+ - -1.8461264377811897
+ - -0.9007372368104433
+ - 1.9379258605805265
+ - -1.948762790044927
+ - 1.261294211883788
+ - -0.22733082849782804
+ - -0.8182548796058602
+ - -2.2235548017386635
+ - -1.039279948507483
+ - 1.9728861429574098
+ - -1.9198769931007342
+ - 1.1915613413326442
+ - -0.06523467254850691
+ - -1.0816907959173498
+ - 1.8253896363080944
+ - -1.4914954683576689
+ - -1.9307724268452933
+ - 9.427377441266856e-16
+ - 1.4518260521224463e-15
+ - 1.9571093293004632e-16
+ - 1.8131799027162364e-16
+ - -2.8504643908577334e-16
+ - -7.039307012826266e-17
+ - -3.040509136591791e-16
+ - -2.9439358000762255e-16
+ - -5.1558167580430215e-16
+ - 4.408872664907637e-17
+ - 8.737095220091354e-17
+ - 4.3625505506046675e-16
+ - 5.1781506345819526e-17
+ - 1.886178591774041e-16
+ - -4.20207751176938e-17
+ - -1.373119816838026e-16
+ - -1.4210962923661015e-16
+ - -2.1072426104788378e-16
+ - -2.69660879692287e-17
+ - 1.9686898578762056e-17
+ - 1.1714945425282253e-17
+ - -6.377562522783843e-17
+ - -5.004442705945817e-17
+ - 6.61744490042422e-19
+ - 1.496369728108427e-16
+ - -1.0695445320310647e-16
+ - -4.144174868890668e-17
+ - 1.1828682759508294e-17
+ - 2.509665978485886e-16
+ - 2.8529459326953925e-16
+ - 1.0439019330419208e-16
+ - 6.158359660457291e-17
+ - 2.1006251655784135e-16
+ - 1.1650838927809395e-16
+ - -1.6384379983144093e-16
+ - -3.7951046503932905e-16
+ - -1.1233112718470116e-16
+ - -4.95067596612987e-17
+ - -2.072914615057887e-16
+ - 3.063876988896414e-16
+ - 1.1415092453231782e-16
+ - 2.2929446579969927e-16
+ - 1.7159861807412557e-16
+ - 3.316994256337641e-17
+ - 8.225277216074168e-17
+ - 1.8864887845037484e-17
+ - 2.729696021424991e-17
+ - -1.861983558856865e-16
+ - 2.339680362606239e-16
+ - 6.021616365444619e-17
+ - 1.0501057876360685e-16
+ - 7.40533443388098e-17
+ - 2.7214242152994607e-17
+ - 2.9778502051908996e-17
+ - -6.672866001465273e-16
+ - -5.881254155252027e-17
+ - 3.168101746078096e-17
+ - -1.4723814903443893e-17
+ - 3.0977913940110886e-17
+ - 1.3607121076497305e-16
+ - 2.0356914874930009e-16
+ - 3.469634928747817e-18
+ - 1.419028340834719e-16
+ - -1.2376689915324675e-17
+ - -7.758954145747398e-17
+ - -7.65555656917827e-17
+ - -2.4232256044740946e-16
+ - 2.3161057151484772e-17
+ - -1.8578476557941e-16
+ - -1.0860881442821252e-16
+ - -1.1724251207173476e-16
+ - -3.0256715843541215e-17
+ - -8.49307693938821e-17
+ - -1.2943567128864923e-16
+ - -1.8669466425321832e-16
+ - -1.361125697956007e-16
+ - 5.387013739251592e-17
+ - -7.045510867420413e-17
+ - 9.165161187087545e-17
+ - -2.5783219693277873e-16
+ - 2.903403950061127e-17
+ - -1.5894275470206424e-16
+ - -5.583469134732937e-19
+ - 1.7254987577856155e-16
+ - -1.0891900715791991e-16
+ - -7.500460204324578e-17
+ - -2.5415124320691775e-16
+ - -2.057611773725656e-16
+ - -1.0025429024142695e-15
+ - 2.68833699079734e-16
+ - -5.662051292925474e-17
+ - 5.855611556262883e-16
+ - 1.8230026724903036e-16
+ - -2.1730034691768035e-16
+ - -2.0047756120988315e-16
+ - -4.2806596699619176e-17
+ - -5.877118252189262e-17
+ - -1.7174337468132237e-17
+ - -2.6593856693579837e-17
+ - -1.2931934901500896e-16
+ - 1.4148924377719538e-16
+ - 1.6119165199244279e-16
+ - 1.7015105200215777e-16
+ - -2.978057000344038e-16
+ - -1.9848198798209897e-16
+ - 9.132073962585424e-17
+ - -3.7367884172083025e-17
+ - 9.90135193225974e-17
+ - 3.278943948160201e-16
+ - 1.048865016717239e-16
+ - 1.049692197329792e-16
+ - -2.1837568171399928e-17
+ - -4.0035541647566533e-17
+ - 3.077111878697263e-17
+ - -1.2655863372061322e-17
+ - 9.967526381263982e-18
+ - -1.4789989352448135e-16
+ - -2.236696376343387e-16
+ - 2.929046549050271e-16
+ - -6.038418471637102e-17
+ - 7.494256349730431e-17
+ - -8.040195554015428e-17
+ - -2.784289941853491e-16
+ - -4.576376738949625e-17
+ - -1.1911400820763599e-16
+ - -2.9968753592796193e-16
+ - -5.719953935804186e-17
+ - -1.3532674821367533e-16
+ - -1.9910237344151374e-16
+ - -9.562207881112999e-17
+ - 7.4859845436049e-17
+ - -1.1216569106219055e-16
+ - -1.3019822841584656e-16
+ - 4.615667818045894e-17
+ - -2.486504921334401e-16
+ - 8.904599294133342e-17
+ - 8.10637000301967e-17
+ - -1.6460894189805248e-16
+ - -9.206520217715197e-17
+ - 4.384057246531046e-17
+ - 1.7759567751513502e-16
+ - -6.344475298281722e-17
+ - 3.135014521575975e-17
+ - -2.7363134663254155e-16
+ - 3.1664473848529894e-16
+ - 2.1935278881257755e-16
+ - 7.616265490082001e-17
+ - 1.6378176128549945e-16
+ - -1.74038800881157e-16
+ - 1.3906974048547778e-17
+ - -3.5072457972248373e-17
+ - 2.3500201202631516e-16
+ - 1.4103429444029122e-16
+ - -2.4352197233561135e-16
+ - -4.258325793422986e-16
+ - 6.131476290549317e-18
+ - -3.604853109506094e-16
+ - -1.7288074802358278e-17
+ - -1.2597960729182611e-16
+ - -1.7743024139262444e-17
+ - 2.2420730503249815e-16
+ - 2.0919397691466067e-16
+ - 1.3338287377417571e-16
+ - -7.657624520709652e-17
+ - 9.59529510561512e-18
+ - -2.1496356168721804e-17
+ - -1.5460005648616085e-16
+ - 2.1421392925709185e-17
+ - -2.1093105620102203e-17
+ - 8.509620551639271e-17
+ - -1.0341825608444227e-16
+ - 3.4104656655561326e-16
+ - -7.99263266879363e-18
+ - 2.1713491079516973e-17
+ - -2.4836097891904653e-17
+ - 2.3905519702782497e-17
+ - -6.429261311068408e-17
+ - -7.584147617860216e-17
+ - -7.429736261951294e-16
+ - -2.1473608701876596e-16
+- - 4.691598678959584
+ - 3.805993075337225
+ - -2.661626040858086
+ - 2.167763181785364
+ - -0.9734554191620525
+ - -0.6215966575465979
+ - 1.9331330371792592
+ - -2.620321233352002
+ - 1.7270034888770187
+ - 3.4253767303883627
+ - -0.3006335906840277
+ - -0.4258566572238315
+ - -0.7318261699725606
+ - 2.011311152847244
+ - -2.647649221722644
+ - 1.5800197549336328
+ - 2.9501328682457997
+ - -0.0640020929826703
+ - -0.3225230413403799
+ - -0.9095984096290136
+ - 2.1287265026961775
+ - -2.6576910702834824
+ - 2.2834636465306666
+ - -1.1666815456142445
+ - -0.3296480488782132
+ - 1.062395133585942
+ - 1.445239859966888
+ - -2.981356603853526
+ - -1.7316831166885467
+ - 2.222887724555977
+ - -0.9959610535665515
+ - -0.5141909110290604
+ - 1.1542282152223442
+ - 1.7733826499345775
+ - -3.1825239267201875
+ - -1.730608732865759
+ - 2.1144128588594158
+ - -0.8871813742673718
+ - -0.6254397586671091
+ - 1.9952372403172467
+ - -2.6349822887007894
+ - 2.421998737708623
+ - -3.352767424135993
+ - -3.402971485083271
+ - -2.5955264839601373
+ - -2.5692842154894646
+ - -2.2236512507431376
+ - -2.137373620390978
+ - 1.959522777917147
+ - -2.626943281063503
+ - 2.443621943453683
+ - -1.396316418925084
+ - -0.06600087722293962
+ - 1.5088393283492725
+ - -1.578245249954367
+ - -2.7388631043601266
+ - 2.553351260108306
+ - 1.502362845820032
+ - -1.2981304065033268
+ - -0.18212973228835558
+ - 1.6590989128431886
+ - -1.6207287948709135
+ - -2.6339416985920843
+ - 2.2060801425135743
+ - 1.4343071912967642
+ - -1.1318005262374424
+ - -0.3679818351924636
+ - 1.7465673019451857
+ - -2.5836040834949596
+ - 2.5199594697019805
+ - -1.6400428299149412
+ - 0.22063073649631365
+ - 0.8834461069311179
+ - 2.5641000269145917
+ - 1.2814775544840633
+ - -2.6091829715337296
+ - 2.453311184272369
+ - -1.4888590612987882
+ - 0.1450060636479897
+ - 0.7885410982995363
+ - 3.0606339137472625
+ - 1.457800446424893
+ - -2.640428744122311
+ - 2.4055953145541076
+ - -1.3929481407711408
+ - -0.15801048460035752
+ - 1.5819321177597543
+ - -2.49549279235372
+ - 3.8280295110730744
+ - 4.669685272775783
+ - 3.387455465139244
+ - 2.672041874428473
+ - -2.2150012375696315
+ - 2.663588373874062
+ - -2.250058101868175
+ - 1.0284824175274436
+ - 0.47706059884613006
+ - -1.830201140165199
+ - 1.7451652132081306
+ - 3.138567439677418
+ - -2.2925391001913042
+ - -1.3928940523491928
+ - 0.9225583623218353
+ - 0.5909324994885541
+ - -1.9614463714930397
+ - 1.6963303278228554
+ - 2.8402867407031676
+ - -1.8533845063283936
+ - -1.2663381284897868
+ - 0.7450567177097347
+ - 0.7715252245403192
+ - -2.036571300232289
+ - 2.6527214186294574
+ - -2.3558982261796437
+ - 1.295443992505783
+ - 0.047981302207060116
+ - -0.4210755518013448
+ - -2.7888704549598478
+ - -1.446563164672349
+ - 2.660838790522337
+ - -2.2630302904804975
+ - 1.129093816222813
+ - 0.15883609662289144
+ - -0.22355763185308905
+ - -3.1159595725349782
+ - -1.5248060066687041
+ - 2.6632137123666593
+ - -2.1994809592775595
+ - 1.024830108692566
+ - 0.5672917338059136
+ - -1.8943573327800056
+ - 2.6095175435797255
+ - -4.709783012951956
+ - -4.6767564983317245
+ - -1.9008143974409824
+ - -1.7819412617146622
+ - 0.6652910633338607
+ - 0.7956772622978135
+ - 0.513668335280566
+ - -1.8564482855967448
+ - 2.596793375075713
+ - -2.4660035180208024
+ - 1.5200464226360106
+ - -0.0805276285715421
+ - -0.8337865987886588
+ - -1.1049118504542834
+ - 3.3077517484707664
+ - 1.734825409440059
+ - -2.4209721281868535
+ - 1.423276379068738
+ - 0.10627710410286843
+ - -0.9430787354319901
+ - -1.2138076874656798
+ - 3.023816751282848
+ - 1.7317100306315723
+ - -2.3372159538798303
+ - 1.2619709560258092
+ - 0.21991926945625936
+ - -1.6995266680558212
+ - 2.542124361230653
+ - -2.562507516446564
+ - 1.19372188341189
+ - 2.437519340087962
+ - 1.0903487704597667
+ - 0.343376259199548
+ - -1.7857280464314758
+ - 2.5915130112428266
+ - -2.5055207911557864
+ - 1.1927147119892971
+ - 2.640351373230817
+ - 1.4847829536966406
+ - 0.5249998891359445
+ - -1.9197670424491406
+ - 2.6156430644482493
+ - -2.4645034291889902
+ - 1.4435407839644643
+ - 0.009223607695749833
+ - -1.4610930712401113
+ - 3.405555332659451
+ - 4.247445313593195
+ - -1.1459346616003369e-15
+ - -1.6984913107857592e-15
+ - -1.8214517088417667e-16
+ - -1.1050099007942757e-16
+ - 1.3858377187560287e-16
+ - 1.3656751913250487e-16
+ - 3.1221932220814025e-16
+ - 3.2326218338572317e-16
+ - 3.5502591890775943e-16
+ - 1.5054687148465104e-17
+ - -8.197359870400503e-17
+ - -6.215435122723449e-16
+ - 5.405625303034035e-17
+ - -2.0530622803566144e-16
+ - -2.1423977865123414e-17
+ - 2.628779986693522e-16
+ - 1.0402830178620013e-16
+ - 1.9176114550510562e-16
+ - 1.6303729873420173e-16
+ - -5.939156798130739e-17
+ - -5.025122221259642e-18
+ - 7.320548421094295e-17
+ - 1.2506970861801778e-16
+ - 2.91374370771804e-17
+ - -1.8351001889488917e-16
+ - 7.17165591083475e-17
+ - 9.223063829966259e-18
+ - -5.128519797828771e-17
+ - -3.2516469879459513e-16
+ - -2.3781442610899546e-16
+ - 3.226004388956808e-17
+ - -1.3349661110840175e-16
+ - -7.772912818584231e-17
+ - -5.753041160306307e-17
+ - 2.1423977865123414e-16
+ - 3.398057956367837e-16
+ - 1.014692117661142e-16
+ - 2.936491174563248e-18
+ - 1.4525291556431166e-16
+ - -3.7010128557153836e-16
+ - -8.809473523689744e-17
+ - -1.2600028680713994e-16
+ - -3.3686930446222047e-16
+ - 2.9737143021281345e-17
+ - 8.867376166568455e-17
+ - -1.8363409598677214e-17
+ - 4.0573209045726e-17
+ - 4.017823030323193e-16
+ - -4.2120036791200164e-16
+ - 1.2407709188295415e-19
+ - 5.790264287871194e-17
+ - 1.323488980084844e-18
+ - -1.2597960729182611e-16
+ - 1.4558378780933287e-17
+ - 3.6759906421856545e-16
+ - 7.783769564123989e-17
+ - 5.4428484305989215e-17
+ - 7.932662074383534e-17
+ - -5.5338382979797545e-17
+ - 1.790846026177305e-17
+ - -3.6776450034107605e-16
+ - -5.045801736573468e-18
+ - -2.2598574334948716e-16
+ - 1.7023377006341307e-16
+ - 1.596251787074205e-16
+ - 2.0594083066185447e-16
+ - 2.503875714198015e-16
+ - -1.294046520156785e-16
+ - 7.295733002717704e-17
+ - 1.0356301269163905e-16
+ - 1.6667689342943505e-16
+ - 8.602678370551488e-18
+ - 8.166340597429764e-17
+ - 1.5778987172331846e-16
+ - 4.37413107918041e-16
+ - 1.4213030875192398e-16
+ - -1.7904324358710282e-16
+ - -5.761312966431838e-17
+ - -1.685380498076794e-17
+ - 1.6167245072348923e-16
+ - -7.444625512977249e-18
+ - -3.6892255319865034e-17
+ - 2.2437274115500873e-17
+ - -5.2608686958372554e-17
+ - 1.1692197958437046e-16
+ - 8.532368018484479e-17
+ - 1.904583360403346e-16
+ - 1.7381132621270492e-16
+ - 6.296498822753646e-16
+ - 5.078888961075589e-17
+ - 5.750973208774925e-17
+ - -3.9328302223833696e-16
+ - -2.6823399313563305e-16
+ - 2.5963131476508156e-16
+ - 1.9788228203799802e-16
+ - 4.896909226313923e-17
+ - 1.426085225435562e-16
+ - 3.846389848371579e-18
+ - -6.131476290549317e-18
+ - 1.7908460261773047e-16
+ - -1.9943324568653495e-16
+ - 1.8843174353957968e-16
+ - -1.9853368677038353e-16
+ - 2.634570250981393e-16
+ - 2.0522350997440614e-16
+ - 1.985233470127266e-17
+ - 7.444625512977249e-18
+ - -3.3914405114674135e-17
+ - -8.908735197196107e-17
+ - -6.57608586979657e-17
+ - -3.654070355953e-17
+ - -3.5734202462290796e-17
+ - -2.2896359355467806e-16
+ - 7.135466759035555e-17
+ - -4.772832134430969e-17
+ - 4.384057246531046e-17
+ - 2.0842883484804912e-16
+ - 2.0973164431282014e-16
+ - -1.7680985593320964e-16
+ - 1.8280691537421912e-17
+ - -1.6498117317370135e-16
+ - 5.728225741929717e-17
+ - 3.496078858955371e-16
+ - 6.536794790700301e-17
+ - 4.350970022028925e-17
+ - 1.4566650587058817e-16
+ - -1.4475660719677982e-18
+ - -1.1441975823139755e-16
+ - 1.3565762045869654e-16
+ - -1.1042861177582918e-17
+ - -1.6497083341604443e-16
+ - 1.680831004707752e-16
+ - 2.7677463296024306e-16
+ - 1.5468277454741615e-16
+ - 2.232146882974345e-16
+ - -3.307688474446419e-16
+ - -1.0753347963189358e-17
+ - 2.932355271500483e-17
+ - 2.45341769683228e-16
+ - -1.0379048736009114e-16
+ - 5.542110104105285e-17
+ - -1.6899299914458353e-16
+ - 1.871496135901225e-17
+ - 2.4649982254080225e-16
+ - -1.9438744394996148e-16
+ - -2.792975338285298e-16
+ - -3.037820799600994e-17
+ - -4.857101159334809e-17
+ - 2.565914260139492e-16
+ - -4.892773323251158e-17
+ - -5.091296670263885e-17
+ - -3.060568266446202e-16
+ - -1.5236666883226767e-16
+ - 2.008394527278751e-16
+ - 4.2665975995485163e-16
+ - -6.44683889908516e-17
+ - 2.2846728518714624e-16
+ - -9.083477101597934e-17
+ - 1.9951596374779025e-16
+ - 7.046544843186105e-17
+ - -9.961322526669835e-17
+ - -6.154223757394526e-17
+ - -3.763671787116276e-17
+ - 8.937686518635463e-17
+ - 2.3322357370932615e-16
+ - 1.977995639767427e-17
+ - 1.5315249041419305e-16
+ - -1.1971371415173693e-16
+ - 1.4732086709569423e-16
+ - -4.608559234656766e-17
+ - 1.3408597729484579e-16
+ - -2.360773468226341e-16
+ - 4.741037379635962e-17
+ - -4.0738645168236607e-17
+ - 2.4215712432489882e-17
+ - -1.2573145310806019e-17
+ - 1.257314531080602e-16
+ - 8.908735197196107e-17
+ - 1.085426399792083e-15
+ - 1.5025735827025748e-16
+- - 12.106147477856656
+ - 9.878118310761353
+ - -6.647178569510293
+ - 4.766410873395624
+ - -1.3466785704488187
+ - -2.7165059646305427
+ - 5.680038615761361
+ - -6.807922075191996
+ - 4.081086688967327
+ - 8.337686457598974
+ - 0.7873047953241008
+ - -0.28143421231570237
+ - -2.981107119888916
+ - 5.838534747642613
+ - -6.794469784932147
+ - 3.658665643320599
+ - 7.077577468485581
+ - 1.1958399577255074
+ - -0.053917150752515214
+ - -3.402820325262936
+ - 6.069371094060776
+ - -6.769253662571036
+ - 5.136038533525983
+ - -1.8706328530978198
+ - -2.0054784652333018
+ - 3.282922100647479
+ - 4.832236715515178
+ - -7.21384674868111
+ - -4.320593000594387
+ - 4.940680595123832
+ - -1.4072201268919
+ - -2.456740316019877
+ - 3.4863323388725878
+ - 5.708642028177355
+ - -7.595996726974388
+ - -4.2583120223032065
+ - 4.600001326867413
+ - -1.1152361186466682
+ - -2.7257786861602287
+ - 5.806138772183902
+ - -6.805411058965274
+ - 5.601378455583637
+ - -6.927519727120276
+ - -7.1092284474498015
+ - -6.67716497271767
+ - -6.6846896239618365
+ - -7.447352430452663
+ - -7.276008712995385
+ - 5.733984990139144
+ - -6.807711730750142
+ - 5.677571128449161
+ - -2.5047049504778776
+ - -1.3507407258864137
+ - 4.7736488402293835
+ - -4.30200651375981
+ - -7.72320278861563
+ - 5.484991880543435
+ - 3.3864982542888913
+ - -2.2319140631806067
+ - -1.64061941247332
+ - 5.102344490364322
+ - -4.352412738748531
+ - -7.313461255515228
+ - 4.614055493696528
+ - 3.176267264457953
+ - -1.7754293218102954
+ - -2.099686253888775
+ - 5.28999188396576
+ - -6.790500700184279
+ - 5.957186542190271
+ - -3.193339324309212
+ - -0.20968676470622902
+ - 0.9241311367891608
+ - 7.188266343174356
+ - 3.7442788236843576
+ - -6.805500137589391
+ - 5.711794741657507
+ - -2.764003968800501
+ - -0.4451510426206935
+ - 0.47495464119222885
+ - 8.4422715918928
+ - 4.158287130315207
+ - -6.802156103360097
+ - 5.544564890403553
+ - -2.4952989405172157
+ - -1.5805408250294608
+ - 4.934408740323423
+ - -6.69482272699355
+ - 9.87180503056647
+ - 12.112438542001703
+ - 9.999404945243217
+ - 7.966811915907394
+ - -6.232586180878833
+ - 6.7169123572537295
+ - -5.0281213477073186
+ - 1.495070337138677
+ - 2.366468550316907
+ - -5.466946153621946
+ - 4.631846613294562
+ - 8.570696538968349
+ - -4.602482738707865
+ - -2.9795224927348842
+ - 1.209866204669069
+ - 2.6427148319860883
+ - -5.738062553396524
+ - 4.427930192987769
+ - 7.643398850858241
+ - -3.586002072490833
+ - -2.660125319649327
+ - 0.7371646582409523
+ - 3.0758733276788726
+ - -5.889020995259816
+ - 6.783275081832554
+ - -5.375655575578143
+ - 2.2245276655224013
+ - 0.89168475672201
+ - 0.28465916696255017
+ - -7.568767573138637
+ - -4.065397206604014
+ - 6.753141970790009
+ - -5.06982666372269
+ - 1.7680132554126595
+ - 1.1724476924478653
+ - 0.9088176198111111
+ - -8.344619792798834
+ - -4.213940260870287
+ - 6.675976043766011
+ - -4.866595173456644
+ - 1.4852084758155888
+ - 2.585496195134706
+ - -5.600446736264945
+ - 6.805122884950278
+ - -11.515105539866767
+ - -11.489825491394452
+ - -5.5829757712278125
+ - -5.336287141135395
+ - -0.40386539462992765
+ - -0.08997637048830462
+ - 2.4564059299649093
+ - -5.52317989253291
+ - 6.798869991658101
+ - -5.760535982031692
+ - 2.853009470327184
+ - 0.9823565865502706
+ - -2.7806154871707904
+ - -4.172310152354462
+ - 8.239141257239279
+ - 4.444101683744671
+ - -5.600618544565227
+ - 2.5807754586181293
+ - 1.452227028663183
+ - -3.0213103606401797
+ - -4.301245215098491
+ - 7.435464064077637
+ - 4.386911094737189
+ - -5.315425912040386
+ - 2.132797110273358
+ - 1.7351012781780122
+ - -5.190880070776432
+ - 6.751966814017154
+ - -6.128343401435758
+ - 2.445684359078494
+ - 5.319942901991145
+ - 4.012895880851505
+ - 1.6206507072119196
+ - -5.37476243166509
+ - 6.796075542189965
+ - -5.905676951680775
+ - 2.3868184847223537
+ - 5.635817217155893
+ - 5.1400069971654565
+ - 2.1002522096787466
+ - -5.654242079002422
+ - 6.80621320857723
+ - -5.755129399337153
+ - 2.637634290177855
+ - 1.2087911483620974
+ - -4.669222317485242
+ - 8.171443642288354
+ - 9.790340568438177
+ - -2.899102610875851e-15
+ - -4.292529711752054e-15
+ - -5.623173804135482e-16
+ - -1.7536228986124184e-16
+ - 1.2176098616780567e-16
+ - 5.512331602053376e-16
+ - 8.46702075009279e-16
+ - 4.622285262946319e-16
+ - 7.80858498250058e-16
+ - -7.610061635487855e-18
+ - -2.9447629806887785e-16
+ - -1.6244172869316356e-15
+ - -8.519960309296184e-17
+ - -4.384057246531046e-16
+ - 1.8073896384283655e-17
+ - 1.2915598084402972e-15
+ - 2.4649982254080225e-16
+ - 4.2667009971250854e-16
+ - 4.1904969831936377e-16
+ - -1.0331485850787314e-16
+ - -6.617444900424221e-17
+ - 2.1341259803868112e-16
+ - 3.336846591038913e-16
+ - 2.4302566396807953e-16
+ - -4.3915018720440234e-16
+ - 5.080543322300696e-16
+ - 8.685396431806789e-17
+ - -6.766337410683766e-17
+ - -6.564298546067688e-16
+ - -6.79777027396078e-16
+ - -2.752857078576476e-16
+ - -2.954689148039415e-16
+ - -2.6221625417930977e-16
+ - -1.344995676011223e-16
+ - 3.9514417861658127e-16
+ - 1.1577219853292175e-15
+ - 2.934009632725589e-16
+ - 1.6385284711939076e-17
+ - 4.0631111688604714e-16
+ - -1.0481205541659414e-15
+ - -3.305413727761898e-16
+ - -3.9526825570846423e-16
+ - -7.468613750741286e-16
+ - 9.975798187389513e-17
+ - 3.517171964575473e-16
+ - 4.170644648492365e-16
+ - 1.110076382046163e-16
+ - 1.6369904322424416e-15
+ - -1.2655863372061321e-15
+ - 1.0141234309900118e-16
+ - 3.5403330217269584e-17
+ - -1.342514134173564e-16
+ - -2.4922951856222724e-16
+ - 4.288104295474895e-16
+ - 7.001256704648825e-16
+ - 1.433504001554397e-16
+ - 2.996048178667066e-16
+ - 2.6767564622215976e-16
+ - -2.9116757561866574e-17
+ - 1.4988512699460861e-16
+ - -9.219755107516046e-16
+ - -2.9778502051908992e-18
+ - -6.109556004316661e-16
+ - 5.231090193785347e-16
+ - 4.2239977980020353e-16
+ - 4.472358776921082e-16
+ - 7.371833619072582e-16
+ - -4.700040240526303e-16
+ - 4.403909581232319e-16
+ - 2.6817195458969157e-16
+ - 4.475874294524433e-16
+ - 4.6983858793011966e-17
+ - 2.0617476767884212e-16
+ - 1.65022532204329e-16
+ - 1.4416103715574164e-15
+ - 3.838118042246048e-16
+ - -2.509665978485886e-16
+ - -1.2407709188295415e-16
+ - 3.970466940254532e-17
+ - 3.8023424807531295e-16
+ - -2.9778502051908996e-17
+ - -5.558653716356346e-16
+ - 1.348304398461435e-16
+ - -1.9025154088719634e-16
+ - 3.720658395263518e-16
+ - 1.968353815752356e-16
+ - 3.130051437900656e-16
+ - 3.8563160157222145e-16
+ - 4.0895809484621683e-16
+ - 4.572654426193137e-16
+ - 6.809350802536523e-16
+ - -1.422088909101165e-15
+ - -7.998836523387777e-16
+ - 5.660396931700368e-16
+ - 6.478478557515312e-16
+ - 1.2904017555827232e-16
+ - 5.250115347874067e-16
+ - 3.212769499155959e-16
+ - -6.547961728969766e-16
+ - 1.4756902127946014e-16
+ - -4.0961983933625926e-16
+ - 6.088049308390284e-17
+ - -3.5833464135797154e-16
+ - 4.524677950665061e-16
+ - 3.985356191280487e-16
+ - 2.1705219273391444e-16
+ - 5.4097612060968004e-17
+ - -3.2673634195844593e-17
+ - 2.340507543218792e-16
+ - -1.6709048373571157e-16
+ - -1.1812139147257235e-16
+ - -2.1440521477374475e-16
+ - -7.991805488181076e-16
+ - 1.8851446160083498e-16
+ - -4.566036981292712e-17
+ - 1.919059021123024e-17
+ - 5.204465317818796e-16
+ - 4.366272863361156e-16
+ - -2.240005098793599e-16
+ - -1.8859717966209028e-17
+ - -4.1226681729642894e-16
+ - -1.2688950596563445e-16
+ - 1.424570450938824e-15
+ - 3.2276587501819135e-16
+ - 2.1556326763131899e-16
+ - 1.8363409598677212e-16
+ - 9.990790835992036e-18
+ - -8.963329117624608e-16
+ - 2.417021749879947e-16
+ - 9.057627707455652e-17
+ - -2.1854111783650989e-16
+ - 5.684074976734699e-16
+ - 1.2859349802749366e-15
+ - 5.602907879127933e-16
+ - 6.756411243333129e-16
+ - -7.040961374051371e-16
+ - -1.10924920143361e-16
+ - -7.342055117020673e-16
+ - 6.306424990104282e-16
+ - -2.2813641294212503e-16
+ - -6.948317145445432e-18
+ - -8.749089338973373e-16
+ - 2.239177918181046e-16
+ - 7.639840137539763e-16
+ - -7.576974410985733e-16
+ - -7.952514409084807e-16
+ - -8.470329472543002e-17
+ - 2.4649982254080225e-16
+ - 6.89868630869225e-16
+ - -7.643148859989974e-17
+ - -2.9985297205047253e-17
+ - -6.307252170716835e-16
+ - -4.08461786478685e-16
+ - 6.445391333013191e-16
+ - 1.0485341444722179e-15
+ - -2.5849394142282115e-16
+ - 3.924144825951563e-16
+ - -1.2391165576044355e-16
+ - 3.012591790918127e-16
+ - 1.7159861807412557e-16
+ - -1.1572256769616857e-16
+ - 1.2465611831174127e-16
+ - 1.4740358515694953e-16
+ - 2.154185110241222e-16
+ - 9.363684534100272e-17
+ - 1.4889251025954498e-17
+ - 1.3019822841584656e-16
+ - -3.634631611558003e-16
+ - 2.1787937334646746e-16
+ - 3.8339821391832827e-17
+ - 4.301339185275743e-17
+ - -6.359364549307676e-16
+ - 1.7039920618592368e-16
+ - -6.849055471939069e-17
+ - 9.444334643824192e-17
+ - -4.87002585640595e-17
+ - 6.028492304286465e-16
+ - 1.8363409598677214e-17
+ - 2.8716402145390905e-15
+ - 1.0700408403985966e-15
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.3570008539536933
+ - 5.059639543470011
+ - 3.2745717745541207
+ - 3.267150455875677
+ - 1.8520472228924714
+ - -0.38573222903680215
+ - -2.442819012476674
+ - -3.70456568563428
+ - -4.764299848376788
+ - -3.17317265943206
+ - 1.8786365113743742
+ - 3.646370070828686
+ - 3.4137077235445847
+ - 3.0483092776351626
+ - 1.658549291723504
+ - 1.4877304900538246
+ - 0.06934947215846722
+ - -2.7380095915754685
+ - -3.8656574277568434
+ - -1.5393704163191204
+ - 0.7235005139758426
+ - 2.68342849740124
+ - 3.4625651846829837
+ - 2.747793750861375
+ - 1.1031082578260936
+ - 0.7718777359480232
+ - -0.3836898177499538
+ - -2.5764431594390955
+ - -3.409512890385485
+ - -1.0296677892306887
+ - 1.2480767743010353
+ - 3.1346785676607696
+ - 4.255325129566842
+ - 3.0281047209808056
+ - -0.5907357731010977
+ - -2.0967499204483637
+ - -2.8819567094566896
+ - -3.4516737251261183
+ - -2.5364455424919403
+ - -0.49738556857559374
+ - 1.7420056357121325
+ - 3.4232189092847207
+ - 5.016876139556291
+ - 3.128782866422225
+ - -0.07237609592006017
+ - -0.4004287332017773
+ - -3.099143672611009
+ - -4.763033090583624
+ - -2.004813718675013
+ - 0.18628589569177756
+ - 2.3056296005204358
+ - 3.4116271047539213
+ - 3.043453260883791
+ - 1.6502422296419754
+ - 1.5025198749856943
+ - 0.17548886152061435
+ - -2.9225858568160583
+ - -3.935415215330974
+ - -1.5334164151428278
+ - 0.7283869756243625
+ - 2.77277307813997
+ - 3.805733872578298
+ - 2.7192448674493317
+ - -0.0029983523679042784
+ - -1.3854302954546418
+ - -2.5469417717918326
+ - -3.454226462316696
+ - -2.8767693492518718
+ - -1.025986006334036
+ - 1.2536548265780938
+ - 3.1393727390259305
+ - 4.179071969308966
+ - 2.8218711339204727
+ - -0.4553553719977426
+ - -2.070390680956023
+ - -2.887573082886186
+ - -3.454425656640626
+ - -2.8718770333962063
+ - -3.196692429661858
+ - -1.5017887779886847
+ - 3.239987994161366
+ - 4.697789294379138
+ - 2.654403972968512
+ - 0.69470032942686
+ - -1.5719157668648593
+ - -3.1499578642804096
+ - -3.3631963094956947
+ - -2.450933907287261
+ - -4.1987324840118605
+ - -2.70592925385174
+ - 5.676973498523028
+ - 7.838881750530499
+ - 2.848024017638821
+ - 1.0038028231507563
+ - -1.2800609198328543
+ - -3.0044180624114563
+ - -3.4255739111870604
+ - -2.7027326777290583
+ - -2.95243950557387
+ - -1.3049208675287427
+ - 3.251563877450993
+ - 4.633555435488759
+ - 2.501238973653888
+ - 0.4704558071409954
+ - -1.7414099427676275
+ - -2.6702527546080046
+ - -2.2608508814317125
+ - -0.969919308985917
+ - -0.20853089273252318
+ - 1.5939355638983936
+ - 3.160179903109193
+ - 3.37093673353553
+ - 2.092099441155265
+ - -0.07775468719116808
+ - -2.246808225708509
+ - -3.2382914648730603
+ - -2.5080159013186143
+ - -0.5323394032492321
+ - 0.5291688265181085
+ - 2.061258567468598
+ - 3.3466632985478597
+ - 3.5270905801631174
+ - 4.187807626320054
+ - 2.2530520909969987
+ - -2.7891056181180023
+ - -4.662550552650832
+ - -3.2545493930120153
+ - -1.8097962193427752
+ - 0.4203159048950157
+ - 2.4708368177334603
+ - 3.4454136824863943
+ - 3.2756871101218237
+ - 4.203108072470169
+ - 1.855733584301139
+ - -2.850965534085712
+ - -3.02641824484595
+ - -1.462402510127363
+ - -1.0059216463977867
+ - 1.113913821282068
+ - 2.908103186223023
+ - 3.4563153330541825
+ - 2.4781301554529067
+ - 0.4409561543624853
+ - -1.7678381718250027
+ - -2.753423999181531
+ - -2.387328864986642
+ - -0.9173832931389139
+ - -0.1733210911915457
+ - 1.6185753103686273
+ - 3.1690139527316448
+ - 3.6770098549187864
+ - 4.381791097948378
+ - 2.2929196037646467
+ - -2.3112954528234377
+ - -4.398149890707375
+ - -3.3909407019372457
+ - -2.2283083638228622
+ - -0.10109535376965938
+ - 2.07673981109358
+ - 3.3472245023103455
+ - 3.509879741710868
+ - 4.0849381292306
+ - 1.9952268443586973
+ - -2.5467589691068664
+ - -4.576350489475718
+ - -3.241038057392293
+ - -1.7861271420834073
+ - 0.2834364435612625
+ - 0.9929270727965112
+ - 1.4556211762377809
+ - 2.1148174171803458
+ - 2.090495355050551
+ - -0.2490376841317845
+ - -2.339779006107872
+ - -3.430528617191918
+ - -3.007799805820992
+ - -1.2946585087127431
+ - 0.8726463932171238
+ - 2.9172077854781864
+ - 2.4554324821666866
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.262883096605368
+ - 6.719927314691588
+ - 4.624271567560094
+ - 4.841048379189473
+ - 2.9728973839788453
+ - -0.2146850286706965
+ - -3.2888161756672605
+ - -5.295712145885448
+ - -6.875343142258042
+ - -4.66099083912216
+ - 2.4529303151948936
+ - 4.968508939632646
+ - 4.878603629846987
+ - 4.574422174296026
+ - 2.7358833782339738
+ - 2.5911476327789087
+ - 0.38496578562645317
+ - -4.041087205869688
+ - -5.848961909276266
+ - -2.5365267615065163
+ - 0.7087392890678927
+ - 3.661232589435418
+ - 5.0034490394339945
+ - 4.185512186043595
+ - 1.9542610345713616
+ - 1.5734886727452833
+ - -0.27296612345725485
+ - -3.8496621363214856
+ - -5.246970484178806
+ - -1.8197065512187514
+ - 1.4828914822759833
+ - 4.327700017840307
+ - 5.949075924100727
+ - 4.323282501709867
+ - -0.5528600224843236
+ - -2.6099205534213
+ - -3.9773337576580126
+ - -5.021805548307643
+ - -3.9066817414405097
+ - -1.0614311692751897
+ - 2.2213168626489934
+ - 4.797280275286633
+ - 7.104534233580897
+ - 4.525468403045564
+ - 0.24288009696754187
+ - -0.23390266811315746
+ - -4.526031523349007
+ - -7.109325723208056
+ - -3.181883882222139
+ - -0.07553124136944914
+ - 3.07542292638772
+ - 4.875601103326288
+ - 4.567564923578698
+ - 2.7240185792924545
+ - 2.62116067748187
+ - 0.5607501230804124
+ - -4.3252885348558054
+ - -5.955126576440388
+ - -2.5282042611390896
+ - 0.7155677094467419
+ - 3.757645499852582
+ - 5.239476921923476
+ - 3.846947806530926
+ - 0.2803204589526897
+ - -1.5618849513353532
+ - -3.4499472287001494
+ - -4.971085317661703
+ - -4.356320771584906
+ - -1.814068911851213
+ - 1.491296313246971
+ - 4.334978440777627
+ - 5.843032826991024
+ - 4.039492159703025
+ - -0.3776259375946333
+ - -2.5801311611524858
+ - -3.9857196841505664
+ - -5.025887819638572
+ - -4.3962857897704755
+ - -4.977013906959608
+ - -2.4600882205739767
+ - 4.6597210503021165
+ - 6.87660129599866
+ - 4.061781875041876
+ - 1.343385905342917
+ - -1.9643528975986895
+ - -4.412935301986525
+ - -4.947918784419349
+ - -3.8296464180569187
+ - -6.735954557182514
+ - -4.411983880790648
+ - 8.212155465951277
+ - 11.391956606681411
+ - 4.316549783909258
+ - 1.782685775201777
+ - -1.5290789298318161
+ - -4.174120273194895
+ - -5.006933423137087
+ - -4.17017161343897
+ - -4.644176654721802
+ - -2.1846348816799703
+ - 4.698173496455698
+ - 6.814861975482912
+ - 3.8574631856512585
+ - 1.0230980498880877
+ - -2.1866464852019076
+ - -3.483487206362007
+ - -3.0965927978914816
+ - -1.6707151962870916
+ - -0.7644314848793857
+ - 1.9988359138132343
+ - 4.4298185025487555
+ - 4.9616442765402065
+ - 3.3015732453745543
+ - 0.2329966211726494
+ - -2.949471266064947
+ - -4.352181160812605
+ - -3.49208367056884
+ - -1.0497417745730075
+ - 0.30516862799569555
+ - 2.703710411540838
+ - 4.7508123938355755
+ - 5.231915093725429
+ - 6.27795374337407
+ - 3.4689078533954447
+ - -3.9037500377615983
+ - -6.663058952078016
+ - -4.826342555843195
+ - -2.9124961916545664
+ - 0.2636294830509282
+ - 3.332066951362917
+ - 4.947519118921844
+ - 4.92229958803698
+ - 6.39314851971841
+ - 2.9357254253334655
+ - -3.9244396623933806
+ - -4.206006935796638
+ - -2.391303156839863
+ - -1.9697602512993384
+ - 1.284148468716323
+ - 4.02060798986577
+ - 5.035429428986501
+ - 3.8270762112202887
+ - 0.981279147851735
+ - -2.2267750109592646
+ - -3.59982185339878
+ - -3.2601327998041914
+ - -1.621306024038956
+ - -0.7233117296873667
+ - 2.0359893899117814
+ - 4.446087471839143
+ - 5.396385035449871
+ - 6.492532034028266
+ - 3.48713731086138
+ - -3.177611572307245
+ - -6.21670779725544
+ - -4.97530311504383
+ - -3.488907345710373
+ - -0.49354235110705585
+ - 2.7283512234878633
+ - 4.755807275104376
+ - 5.211822499212464
+ - 6.130476131856484
+ - 3.0905599560352957
+ - -3.5570481879753673
+ - -6.546097471786096
+ - -4.811221740507708
+ - -2.8810829876930786
+ - 0.03566017916792888
+ - 0.9709301814741667
+ - 1.815882135754579
+ - 3.3064893227678485
+ - 3.452734060734452
+ - -0.015178299217416275
+ - -3.1307732391665923
+ - -4.909548141238001
+ - -4.522938999268041
+ - -2.194237464263911
+ - 0.8975049202827643
+ - 3.49262940164978
+ - 3.0418575921860387
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.1268542244141324
+ - 4.2120132296168125
+ - 1.2174260409472137
+ - 1.9625104102285356
+ - 1.8649370553145475
+ - 0.9426634453740318
+ - -0.3787940842448531
+ - -1.5886001259653246
+ - -2.2560525012488175
+ - -1.77177484284105
+ - 0.04017415151883575
+ - 0.7606559113859126
+ - 1.4595150774897092
+ - 2.0207315019273313
+ - 1.9122538866939476
+ - 2.1662729154267404
+ - 0.970336132332088
+ - -1.5922956705199485
+ - -2.720483411370486
+ - -1.765751387096652
+ - -0.760927563963945
+ - 0.5756399885787487
+ - 1.6614621021602807
+ - 2.0257293268434813
+ - 1.7148295133445899
+ - 1.8779260670462574
+ - 0.7421422906222963
+ - -1.6531099991969749
+ - -2.689648955213312
+ - -1.5860257430428109
+ - -0.45612504306832324
+ - 0.8395720795270551
+ - 1.3839712589698925
+ - 1.2806740217926076
+ - 0.7062728215150245
+ - 0.3757153040084066
+ - -0.7670749194390369
+ - -1.7684362627981631
+ - -2.011751686958087
+ - -1.366415892743103
+ - -0.1378625770250746
+ - 1.1512362098760154
+ - 1.9304092200684193
+ - 1.5155827455890982
+ - 1.1086929415621318
+ - 0.9422555353592224
+ - -1.644152876474559
+ - -3.031438705250339
+ - -1.899530534935326
+ - -1.0449924774031236
+ - 0.26310189457299726
+ - 1.4585273328048132
+ - 2.018926343189537
+ - 1.9087232272182537
+ - 2.2018069407138974
+ - 1.0950165226018065
+ - -1.738405171775382
+ - -2.771606266862258
+ - -1.7638172199328521
+ - -0.7593487679198627
+ - 0.5109286281343725
+ - 0.9710115825490598
+ - 1.0336543670572473
+ - 0.9352857991217309
+ - 0.7834141421851386
+ - -0.46387659861551267
+ - -1.590616989297381
+ - -2.036404624340444
+ - -1.583215239507619
+ - -0.4523172775501207
+ - 0.8434498916588321
+ - 1.3610151231533154
+ - 1.2285061155940882
+ - 0.7041274625541168
+ - 0.36105710464569163
+ - -0.7706580163188076
+ - -1.770107219887795
+ - -2.1888385427914794
+ - -2.711176501775071
+ - -1.6748833983448959
+ - 1.4819384336477814
+ - 2.544543153168139
+ - 2.0178399800350664
+ - 1.4506710707071568
+ - 0.25627817868505354
+ - -1.0547357028218898
+ - -1.9035646848663017
+ - -2.123842764015422
+ - -4.2153468116992014
+ - -2.9499807395891966
+ - 2.753180510614507
+ - 3.9742173892410273
+ - 2.028428391339499
+ - 1.5747804034795052
+ - 0.4408784777174869
+ - -0.891082973416361
+ - -1.8310822632996022
+ - -2.167904453282079
+ - -2.6601577752814785
+ - -1.6101148311949405
+ - 1.5589821632224792
+ - 2.6159980675992434
+ - 2.0003114873619503
+ - 1.3554060183121048
+ - 0.24941078175892267
+ - -0.04704929247236552
+ - -0.5242117430999317
+ - -1.3511763669327463
+ - -1.6240166399694798
+ - -0.236945535020522
+ - 1.066590955664294
+ - 1.915644684909292
+ - 1.9202207943696965
+ - 1.0991639709066199
+ - -0.10010813343913307
+ - -0.47715089662610877
+ - -0.7689627805256295
+ - -1.1785086380743577
+ - -1.258145441197281
+ - 0.08465662649868334
+ - 1.325625176241904
+ - 2.137426576848193
+ - 2.7548893147342266
+ - 1.7827546094977205
+ - -0.9218974657642407
+ - -1.99249573177859
+ - -1.9679932857500875
+ - -1.8468095995517784
+ - -0.9294564812520314
+ - 0.4013359185481438
+ - 1.5507496410645965
+ - 2.193393390488728
+ - 3.068552153165976
+ - 1.726852711958409
+ - -0.725511058253839
+ - -0.9019597316254012
+ - -1.6169182935698945
+ - -2.181338042326737
+ - -0.5365480109052224
+ - 0.7976948618075085
+ - 1.7934230881252065
+ - 1.9991101138013099
+ - 1.3439109720535043
+ - 0.23034675542656563
+ - -0.0742962223338201
+ - -0.5216431701701532
+ - -1.413193175427452
+ - -1.639235904554844
+ - -0.2200252239077364
+ - 1.08235593940666
+ - 2.037694986570606
+ - 2.631664461871161
+ - 1.6722923351865906
+ - -0.5751575837081421
+ - -1.6540527343162192
+ - -1.8750644733704531
+ - -1.9543528886865964
+ - -1.1919107170519672
+ - 0.09955905124320055
+ - 1.3396558882525709
+ - 2.144885314147594
+ - 2.7093762696934123
+ - 1.6399936900350058
+ - -0.8171029974480257
+ - -1.9761221778984475
+ - -1.9760002620643504
+ - -1.8446318551322816
+ - -1.0944408800574679
+ - -1.0500130248279813
+ - -0.24766009216632343
+ - 1.8392772281300978
+ - 2.424518147053147
+ - 1.0147750603299377
+ - -0.2992436973729772
+ - -1.4894281695134888
+ - -2.024505392406071
+ - -1.6855884465329964
+ - -0.7773961073180621
+ - -0.9786839442863748
+ - -0.4878117140054495
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.158689896229123
+ - 4.458334861216321
+ - 1.9476027293489435
+ - 1.2136310351771595
+ - 1.9669276485666918
+ - 1.8528088130259541
+ - 0.9428251405898159
+ - -0.29397539637300074
+ - -0.7401366176687492
+ - -0.9504745322447257
+ - -1.1519347577171708
+ - -1.0755012324901643
+ - 0.2634857723005564
+ - 1.454733698485574
+ - 2.1730339741807256
+ - 2.7157468504123146
+ - 1.6042586421395386
+ - -0.9280577701884931
+ - -2.1132306808700805
+ - -2.0014293118016866
+ - -1.7632970302583755
+ - -0.7645227642958043
+ - 0.575005142152875
+ - 1.6584208579633717
+ - 2.1982386748183695
+ - 2.6905992765532627
+ - 1.51065123395529
+ - -1.1363671009012952
+ - -2.3570984715377454
+ - -2.0270095876936223
+ - -1.5859412430564812
+ - -0.6090094159826944
+ - -0.41156904034713476
+ - 0.20996395718876937
+ - 1.5841647208051421
+ - 2.00049949972412
+ - 0.5680856078364817
+ - -0.7639062275167724
+ - -1.771938255115661
+ - -1.9994651994600294
+ - -1.3658019162435215
+ - -0.2666809186830147
+ - 0.022578007215936887
+ - 0.5438503786227699
+ - 1.9314809154435675
+ - 1.8616612852651626
+ - -0.7816355135899195
+ - -2.058902275526277
+ - -1.926502298533267
+ - -1.8971946939440298
+ - -1.0503619552477563
+ - 0.26315779238587766
+ - 1.4548192534873516
+ - 2.17243034608344
+ - 2.766542261149233
+ - 1.747241112902727
+ - -1.0565172728472394
+ - -2.1548166739084085
+ - -2.002011093507614
+ - -1.7637882369112492
+ - -0.9325463668287597
+ - -0.8214658956548285
+ - -0.009289684253666093
+ - 1.5916748840045034
+ - 2.231459098873657
+ - 0.8658386069292392
+ - -0.4600038498251414
+ - -1.5927929418679996
+ - -2.024624695757369
+ - -1.583093601867531
+ - -0.6054675819854783
+ - -0.4010600864697045
+ - 0.2552465555216857
+ - 1.4925855989750738
+ - 1.9584666494061855
+ - 0.565643272173809
+ - -0.764959147921981
+ - -1.855066073047551
+ - -2.5319204208290644
+ - -1.8713901341341574
+ - 0.4144345591293854
+ - 1.2736919664584228
+ - 1.7056696556936373
+ - 2.014514615185793
+ - 1.4565991267624816
+ - 0.253215415177493
+ - -1.051055988644009
+ - -2.0180041925283256
+ - -4.437749366555523
+ - -3.256585838987635
+ - 0.992312334070798
+ - 1.6635248453421958
+ - 1.5979053103685146
+ - 2.0246965084824624
+ - 1.580801941650926
+ - 0.4368484237091269
+ - -0.8873396502088541
+ - -1.9293464835320346
+ - -2.6038500484443774
+ - -1.8891713235855776
+ - 0.5378681197904024
+ - 1.436866408959084
+ - 1.7753600226949702
+ - 1.9982422863002471
+ - 1.5550171245307007
+ - 1.654423605422079
+ - 0.5774624692712405
+ - -1.6666391807678367
+ - -2.6249330606889285
+ - -1.4380414501746155
+ - -0.23970403366328605
+ - 1.066560171569313
+ - 1.9049752112854332
+ - 1.9187782129237578
+ - 1.2891999958622735
+ - 1.2923243765806984
+ - 0.32199325339844215
+ - -1.6573716941917316
+ - -2.4822078262588207
+ - -1.194944655407288
+ - 0.07945642394708224
+ - 1.3421018896936439
+ - 1.962466437516498
+ - 1.5667770908488083
+ - 0.24462158810029402
+ - -0.35825027165309176
+ - -1.2311344089974159
+ - -1.9635588344150174
+ - -1.852824725864596
+ - -0.9227084483129061
+ - 0.39796487394811564
+ - 1.6005226895266185
+ - 2.4856685239434473
+ - 1.7298275993475845
+ - 0.6186029928767999
+ - 0.43264999957091443
+ - -1.798447815691831
+ - -3.054301480477672
+ - -1.6354968974558317
+ - -0.5330228593049945
+ - 0.8033614721096229
+ - 1.7883281130914985
+ - 1.9978648395968661
+ - 1.5397792087590647
+ - 1.6621319407215074
+ - 0.6639790180970992
+ - -1.8061741282251735
+ - -2.673671286555463
+ - -1.4252855862362301
+ - -0.21864583581927735
+ - 1.0752102645458457
+ - 1.6270209003714655
+ - 1.353126741603734
+ - 0.5236333537516146
+ - 0.04527279398008719
+ - -0.9845923545510166
+ - -1.8745181172224814
+ - -1.960254314187382
+ - -1.1796692432616862
+ - 0.10294057902830549
+ - 1.3659595792810264
+ - 1.951923642273935
+ - 1.4915873911904218
+ - 0.26533284932077844
+ - -0.3864097633663221
+ - -1.2535203910034354
+ - -1.9752304046466236
+ - -2.0443446760704562
+ - -2.4296607031115327
+ - -1.3664148620490326
+ - 1.7526364246745958
+ - 2.7631826870799454
+ - 1.8865921146738098
+ - 1.0111120571663725
+ - -0.3034037962744926
+ - -1.4874592075046698
+ - -2.0241219499592376
+ - -1.8881627416093245
+ - -3.55828978087163
+ - -2.424007021453419
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.8282756193000007
+ - 2.7825936626462577
+ - 1.885402395519602
+ - 1.950780065380067
+ - 1.2209171855345466
+ - 1.966920266670408
+ - 1.8622895867159819
+ - 1.131842853950518
+ - 1.1001568500417098
+ - 0.28356246804538376
+ - -1.8512589613242385
+ - -2.454028042617963
+ - -1.05025158200183
+ - 0.2593769640273958
+ - 1.4974586675254273
+ - 2.0957716405822295
+ - 1.5484093707449598
+ - 0.1387144788088117
+ - -0.5924651869855606
+ - -1.3746808119356053
+ - -2.0085531356688677
+ - -1.779497367928985
+ - -0.7631478089961854
+ - 0.574576874567366
+ - 1.7351793318276223
+ - 2.345566479323627
+ - 1.6302206782369153
+ - -0.1277453646583626
+ - -1.0067865638727433
+ - -1.595231860117003
+ - -2.0355729349564458
+ - -1.799845023074144
+ - -2.0356994297399322
+ - -0.9549439360184897
+ - 1.7817813004730243
+ - 2.7679818304930617
+ - 1.6627653968652163
+ - 0.5735155033780734
+ - -0.7670615158120853
+ - -1.7722844986114035
+ - -2.008837630016533
+ - -1.574396164499863
+ - -1.9014753004244787
+ - -0.6657506960910627
+ - 1.9240067689560771
+ - 1.9812470644638998
+ - 0.42093763037786636
+ - -0.19504307083992273
+ - -1.1226535622600728
+ - -1.9340228529659678
+ - -1.915262230782232
+ - -1.049776053521092
+ - 0.26132262007314117
+ - 1.5000512631099612
+ - 2.139970664342944
+ - 1.648086267535713
+ - 0.08337035758861225
+ - -0.6065455354044331
+ - -1.3775349644116792
+ - -2.0109081253509276
+ - -1.9787138225818537
+ - -2.2657318966902023
+ - -1.051771713603431
+ - 1.5637957137933132
+ - 2.7219818701477987
+ - 1.8266314015450051
+ - 0.8728544210759784
+ - -0.4606923756465196
+ - -1.5943030931256592
+ - -2.034914532882597
+ - -1.798167178772336
+ - -1.9961439354807413
+ - -0.8314102603387091
+ - 1.639962931158177
+ - 2.716605344916667
+ - 1.6625209276503694
+ - 0.5735366843556654
+ - -0.7200588633869234
+ - -1.2600247675727967
+ - -1.2614229106539079
+ - -0.835445632127513
+ - -0.5508297065309511
+ - 0.6567734089969735
+ - 1.7114020204659233
+ - 2.0327595875773197
+ - 1.45639864812218
+ - 0.2576771858610915
+ - -1.0414292204896958
+ - -2.746885359515908
+ - -2.159651021432854
+ - -1.2025309298752385
+ - -1.3725102805174891
+ - 0.47673381605705056
+ - 1.6028785723904337
+ - 2.0427901144607885
+ - 1.580877317135722
+ - 0.4423256164465394
+ - -0.8578405097059588
+ - -1.4242979376545712
+ - -1.3543668437948193
+ - -0.7187022768249912
+ - -0.3660019063013843
+ - 0.7839216482935859
+ - 1.7814105654937735
+ - 2.194372344811774
+ - 2.6481150556000213
+ - 1.4338178572429197
+ - -1.2643431163672614
+ - -2.49710262510354
+ - -2.0229833554261427
+ - -1.4470529918933326
+ - -0.245423622002537
+ - 1.068049865154724
+ - 1.9135976240480583
+ - 2.1271903506958143
+ - 2.5104261262136762
+ - 1.2777798329368266
+ - -1.4230271493084252
+ - -2.6398387681112534
+ - -1.963507633080678
+ - -1.2052178923075827
+ - -0.03478220751072867
+ - 0.3209271758648742
+ - 0.6743058363947508
+ - 1.3095984664158045
+ - 1.4360651930620247
+ - 0.03922435000786146
+ - -1.2338104281865219
+ - -1.980195769115678
+ - -1.8532826823728756
+ - -0.9303825588787037
+ - 0.3153223236442279
+ - 0.8287211112721631
+ - 0.9867275187772138
+ - 1.700478233148568
+ - 1.5851912806043778
+ - -1.204912857567734
+ - -2.612894952254226
+ - -2.0327816863606096
+ - -1.638367521860225
+ - -0.5365600727673624
+ - 0.8055131383446212
+ - 1.7923507262331182
+ - 2.189546203185437
+ - 2.687574528148679
+ - 1.567252204726705
+ - -1.4214779662551797
+ - -2.558453146504171
+ - -2.0199082816517517
+ - -1.4297657931736865
+ - -0.35429074790506937
+ - -0.08278141613310161
+ - 0.4492643675862641
+ - 1.4003126488437578
+ - 1.730847062915581
+ - 0.33356696649848766
+ - -0.9859210001459479
+ - -1.8857403311922967
+ - -1.954447643058613
+ - -1.1823767646430592
+ - -0.004760331151028914
+ - 0.3500201261157241
+ - 0.6993460594110397
+ - 1.2370079810325176
+ - 1.3753665076827903
+ - 0.012065658758565655
+ - -1.2543452690704113
+ - -2.115740204568424
+ - -2.766071892342738
+ - -1.8996286362248511
+ - 0.9097799005892397
+ - 1.911224051899353
+ - 1.947674735376437
+ - 1.889821742266622
+ - 1.0175114817672413
+ - -0.3070378995946268
+ - -1.4907910016056394
+ - -2.1883293508853865
+ - -4.611950752984037
+ - -3.3212950828286023
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.31180780320495316
+ - -0.1245702033909282
+ - 0.9915146285532522
+ - 1.8745219847608938
+ - 1.9533161035771769
+ - 1.2138338327815434
+ - 1.962718806399094
+ - 2.0620468442363618
+ - 2.45984878452098
+ - 1.3956281198825145
+ - -1.7358614974335465
+ - -2.7536906640170913
+ - -1.9040789083524337
+ - -1.0533682694923472
+ - 0.15975683020113518
+ - 0.5499319699538465
+ - 0.8095141763287583
+ - 1.1469801773465071
+ - 1.1934079909795643
+ - -0.1400777822523362
+ - -1.3685768546092023
+ - -2.012189034742526
+ - -1.7680764466548826
+ - -0.765391177980757
+ - 0.5056819306524033
+ - 0.9651881680826068
+ - 1.031101161491747
+ - 0.9397428752718663
+ - 0.7909370248711239
+ - -0.45881697424055445
+ - -1.5885671324936017
+ - -2.1998649684040035
+ - -2.766079688212485
+ - -1.7016033523595642
+ - 1.1940617064894523
+ - 2.3166025689963714
+ - 2.0268459340461495
+ - 1.6613453177633206
+ - 0.57863410144608
+ - -0.7628918965347301
+ - -1.7675107361267017
+ - -2.1910199379705544
+ - -2.9917278078003995
+ - -1.5847607939705106
+ - 1.067955046963288
+ - 1.2273284208933857
+ - 1.4408736965792874
+ - 1.7595052669482953
+ - 0.1783406646677443
+ - -1.1179668897520256
+ - -1.937628904666875
+ - -1.9030085002756878
+ - -1.0504159762888057
+ - 0.1644094433977763
+ - 0.568021964679546
+ - 0.8218163398124523
+ - 1.189343201745297
+ - 1.213112173670321
+ - -0.143950350864963
+ - -1.371762581719404
+ - -2.154816817254975
+ - -2.714345702773482
+ - -1.6329951482981782
+ - 0.846154213141801
+ - 2.0132395638920744
+ - 1.98421878972827
+ - 1.8240904309018475
+ - 0.8774258582786016
+ - -0.45975598684670804
+ - -1.5903955206340497
+ - -2.2007963911908632
+ - -2.7148508917877323
+ - -1.5541059823067382
+ - 1.0644248369359446
+ - 2.278522180494939
+ - 2.028912359859145
+ - 1.6624335426472612
+ - 0.7353637150465275
+ - 0.570774236180705
+ - -0.09359394894797246
+ - -1.7199930297811714
+ - -2.136983990315194
+ - -0.684411248239406
+ - 0.6527394136328732
+ - 1.7138414016810037
+ - 2.0202698858183665
+ - 1.4560426415424
+ - 0.39690063889957844
+ - 0.15969141972676135
+ - -0.107481886016982
+ - -2.8725106866855805
+ - -3.8108235262801746
+ - -0.8575028689153213
+ - 0.47307528982759744
+ - 1.6049891786039023
+ - 2.0305473158006553
+ - 1.5802389865323896
+ - 0.5946886315869229
+ - 0.3863768245393418
+ - -0.22089632343143353
+ - -1.6614457172535695
+ - -2.0119647343742817
+ - -0.5557383579920617
+ - 0.7783672411067075
+ - 1.8675304640876393
+ - 2.476381676011636
+ - 1.6599509917785926
+ - -0.30341764155983075
+ - -1.2676381966473382
+ - -1.7171811897921039
+ - -2.0192216935140688
+ - -1.4524520930339029
+ - -0.24202078137309888
+ - 1.0644364832384416
+ - 2.0291113987865397
+ - 2.62439096578082
+ - 1.6724121000358148
+ - -0.560488271495913
+ - -1.633598674262619
+ - -1.8680177133556353
+ - -1.9615643173826054
+ - -1.399774433037564
+ - -1.4662639802655861
+ - -0.5177945298265272
+ - 1.799662035910532
+ - 2.6015174039141535
+ - 1.2954653044651807
+ - 0.041921728281133316
+ - -1.2345470150540279
+ - -1.9688213108906554
+ - -1.8517234716317588
+ - -1.1121655538463704
+ - -1.197872592105372
+ - -0.1934167845667017
+ - 2.0350888613085347
+ - 2.041490910869499
+ - -0.07848039551716221
+ - -1.0179993950600728
+ - -1.5345278750374658
+ - -2.0238996261107345
+ - -1.6431952419858011
+ - -0.5350242271213295
+ - 0.7958288518690819
+ - 1.875268020155482
+ - 2.5302626508680075
+ - 1.781571356417084
+ - -0.4088935015986027
+ - -1.3145738681571357
+ - -1.7251644488990543
+ - -2.013339255623845
+ - -1.6311167448603672
+ - -1.7603564877863485
+ - -0.6550037410925794
+ - 1.6615967751518954
+ - 2.6572749200319996
+ - 1.5079120873625436
+ - 0.3397286863658345
+ - -0.9793582075128368
+ - -1.8691819618054435
+ - -1.9494416108280566
+ - -1.3768136009810632
+ - -1.4102670751611377
+ - -0.40331699170440527
+ - 1.66555051430939
+ - 2.534968716966024
+ - 1.2754998228331313
+ - 0.021558344030461998
+ - -1.2541942936790158
+ - -1.8833860830704867
+ - -1.5963715031814847
+ - -0.3364344747935428
+ - 0.21420987750607937
+ - 1.149913430307276
+ - 1.937251876053716
+ - 1.8929750397679814
+ - 1.0117547647497775
+ - -0.29862959129353556
+ - -1.5241131001269406
+ - -3.634215264909761
+ - -2.7560167003311213
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.3050708841963945
+ - -2.961017271196053
+ - -0.3239964174488158
+ - 0.9916760845224829
+ - 1.8851871162198286
+ - 1.947810788854555
+ - 1.2175503231533993
+ - 2.099013017802057
+ - 2.7525131215980556
+ - 1.9003000361961995
+ - -0.8738026898835599
+ - -1.8660506882620136
+ - -1.9331269177089323
+ - -1.9048927827694513
+ - -1.2388634103637015
+ - -1.2235849862365828
+ - -0.273558022975607
+ - 1.655510867514485
+ - 2.454987462286765
+ - 1.1475770440870006
+ - -0.14314976623661907
+ - -1.377207981130737
+ - -2.0058893026332005
+ - -1.7679609556552223
+ - -0.9343008173802737
+ - -0.8226199866292588
+ - -0.008416664231780054
+ - 1.5963702281502248
+ - 2.2375735696919805
+ - 0.8684536120415075
+ - -0.4602636995319377
+ - -1.6504275231152252
+ - -2.3012894223857816
+ - -1.7112848744617468
+ - 0.0957170359274857
+ - 0.8705115518643171
+ - 1.5161698783980087
+ - 2.0275237585285835
+ - 1.6673017194070074
+ - 0.5690158521240738
+ - -0.7666376899156864
+ - -1.8607208908870096
+ - -2.7875456197692907
+ - -1.816082912259007
+ - -0.24285124123446772
+ - -0.05055989322245567
+ - 1.834476497821357
+ - 2.9450475992827605
+ - 1.3949087601546954
+ - 0.17461030257821614
+ - -1.1256566318829662
+ - -1.931924643226124
+ - -1.902210313943679
+ - -1.23416633590182
+ - -1.239238564636669
+ - -0.3534136031571751
+ - 1.7767692545721134
+ - 2.4997951415451234
+ - 1.1443597136403774
+ - -0.14578984263376155
+ - -1.4021729292921905
+ - -1.9917166154671553
+ - -1.5077487812632835
+ - -0.23156335326973249
+ - 0.44190614579108123
+ - 1.2866163953491303
+ - 1.9844092731307685
+ - 1.829922385005302
+ - 0.8660618306136232
+ - -0.4637772086169815
+ - -1.6535526572966344
+ - -2.2605112894958452
+ - -1.6034664477149534
+ - 0.03400302798082395
+ - 0.862043563617059
+ - 1.5196448691180262
+ - 2.029204788143046
+ - 1.865637284049814
+ - 2.145078413304913
+ - 1.1076667741735593
+ - -1.85883517720329
+ - -2.7937836283058326
+ - -1.7230546461785996
+ - -0.6807251874753901
+ - 0.6589386680147774
+ - 1.711041089964635
+ - 2.020496987518543
+ - 1.6559003117801638
+ - 2.9804349409116275
+ - 1.9789012916504418
+ - -3.295974253905515
+ - -4.594130446988574
+ - -1.8147172546918788
+ - -0.8537610491984504
+ - 0.4787672590596485
+ - 1.60336363180129
+ - 2.031125452986316
+ - 1.7826500025430074
+ - 2.0200632494935125
+ - 1.0010152261871208
+ - -1.883346550192552
+ - -2.78204445148947
+ - -1.648263277127134
+ - -0.5538910550132594
+ - 0.7385829156578277
+ - 1.2395026950714332
+ - 1.1700982273730443
+ - 0.7824907961487894
+ - 0.5003560868766651
+ - -0.6738786738259956
+ - -1.7186939470129552
+ - -2.0270629772485975
+ - -1.4401952731931906
+ - -0.23800491160260556
+ - 1.0580157482436487
+ - 1.6078067355591288
+ - 1.3447014608484789
+ - 0.5382881491007117
+ - 0.07003888213580822
+ - -0.9688516384516752
+ - -1.8689528928843906
+ - -2.1540990708147074
+ - -2.6116806784307087
+ - -1.4799630875514382
+ - 1.5120369522092598
+ - 2.640086341051227
+ - 1.9865862059621215
+ - 1.292108036595156
+ - 0.038227998281504284
+ - -1.2360470231492295
+ - -1.9704267578686738
+ - -2.0524428619166857
+ - -2.696834994583339
+ - -1.2833537284038141
+ - 1.4915683091258611
+ - 1.6161874098850222
+ - 1.0751202708468357
+ - 1.0058014060557146
+ - -0.37854497376250323
+ - -1.5358180689533003
+ - -2.035881154211169
+ - -1.637339327603576
+ - -0.537464163054273
+ - 0.7554817672856801
+ - 1.2845290470219586
+ - 1.2276135008439606
+ - 0.7737807283693618
+ - 0.4879572807511828
+ - -0.6894211757795727
+ - -1.72668308381869
+ - -2.19819459901595
+ - -2.6701848936010655
+ - -1.470782981616387
+ - 1.2059809174467937
+ - 2.4342270900122718
+ - 2.0261550527871215
+ - 1.5113237797354968
+ - 0.3433393791163909
+ - -0.9796804493561532
+ - -1.8727071316005812
+ - -2.1480446141038603
+ - -2.5530468496119436
+ - -1.3258601532010497
+ - 1.3745057191869205
+ - 2.5963778342741994
+ - 1.9823681320628082
+ - 1.280682060533355
+ - 0.14225548083612197
+ - -0.19503526305174873
+ - -0.6076125592592262
+ - -1.4304798662066178
+ - -1.5650548528098083
+ - -0.1382308048489476
+ - 1.150360049620068
+ - 1.948311743318867
+ - 1.8872056543769833
+ - 1.015094426637854
+ - -0.20762575782566725
+ - -1.0975972110289705
+ - -1.0075179667892198
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.900467645874818
+ - -5.326332165398557
+ - -1.7334865446570489
+ - -0.3143208117730453
+ - 1.2457735604376348
+ - 2.259502669271457
+ - 2.295025760902074
+ - 1.5612330450850878
+ - 2.267838283258761
+ - 1.9121199162132705
+ - 0.3732936649975033
+ - -0.29417048673375684
+ - -1.3906840080137803
+ - -2.312416878083852
+ - -2.471042470314247
+ - -2.889490468293873
+ - -1.431975731772051
+ - 1.7446493727992511
+ - 3.168116900168415
+ - 2.2799108710230165
+ - 1.302332249840908
+ - -0.24014939831403723
+ - -1.6807686235646222
+ - -2.389178224723857
+ - -2.3045323381208997
+ - -2.6242963152752363
+ - -1.1959352642832664
+ - 1.8726587253607665
+ - 3.2272987410950273
+ - 2.1292635082157982
+ - 0.9684712701259381
+ - -0.5299325588507748
+ - -1.0838670787711384
+ - -1.2127370555900026
+ - -1.190157293794024
+ - -1.0441964741651832
+ - 0.480031071416676
+ - 1.8429110312545538
+ - 2.4170599923463607
+ - 1.9243072042648248
+ - 0.6074569629640207
+ - -0.928466310070257
+ - -1.7236556221865358
+ - -1.540057503795846
+ - -1.6711202571172719
+ - -1.498410709346507
+ - 1.7387496255838912
+ - 3.4251877555289294
+ - 2.372203525411965
+ - 1.6023336667385788
+ - 0.13910452495406803
+ - -1.389689492458805
+ - -2.310842701620543
+ - -2.467690652131133
+ - -2.939106758246184
+ - -1.5935503934589554
+ - 1.9201134371272088
+ - 3.2283175543541915
+ - 2.2783988505412793
+ - 1.3011028705472103
+ - -0.12298117746515005
+ - -0.5713169387537479
+ - -0.9153529849419234
+ - -1.3963570830214151
+ - -1.4885359774115636
+ - 0.10484844574450705
+ - 1.5769733450649448
+ - 2.375364434020472
+ - 2.125919534524702
+ - 0.9640749716695296
+ - -0.5346372832496522
+ - -1.0671963063691627
+ - -1.1824510459649813
+ - -1.1557352761260171
+ - -1.0162429831752167
+ - 0.4840830228504788
+ - 1.844770002056371
+ - 2.6039599075732642
+ - 3.3085024124940836
+ - 2.1529820033017106
+ - -1.4642072827784218
+ - -2.7136728216392587
+ - -2.3989425260588244
+ - -2.0045315300780264
+ - -0.7449349378487495
+ - 0.8474828530959789
+ - 2.064959080705863
+ - 2.6040470024266607
+ - 5.321986752686608
+ - 3.7780311732779244
+ - -2.7991938369733194
+ - -4.122703903028119
+ - -2.3700904698394867
+ - -2.118448146419466
+ - -0.9530953846936214
+ - 0.636838698206199
+ - 1.9424125498168627
+ - 2.61172815317561
+ - 3.2886984972324926
+ - 2.1017331706029325
+ - -1.576504374553658
+ - -2.835112583448886
+ - -2.4081079014506823
+ - -1.9140884167388996
+ - -0.7737746894278592
+ - -0.5455904302132548
+ - 0.260858918794673
+ - 1.7925926599440352
+ - 2.375320326847658
+ - 0.7211642117514554
+ - -0.8628166257504084
+ - -2.081199164167905
+ - -2.382947984255649
+ - -1.6581410452366154
+ - -0.3687638275401007
+ - -0.034777851571856234
+ - 0.5690838116058033
+ - 1.6358450230601682
+ - 1.9994795872898348
+ - 0.3490305838862216
+ - -1.2063493553414852
+ - -2.376137833224924
+ - -3.145165733849873
+ - -2.1406979963408235
+ - 0.7324748763321766
+ - 1.8980124660213793
+ - 2.1861559690001022
+ - 2.338504826837538
+ - 1.4838973849137782
+ - -0.02907426900024575
+ - -1.5195142152337886
+ - -2.5176309763921534
+ - -3.609695106889045
+ - -2.1489070159642023
+ - 0.4251553933691881
+ - 0.6479957792682653
+ - 2.07556758168526
+ - 3.0230831761463306
+ - 1.0575407760063211
+ - -0.5196934433131852
+ - -1.8791260848721512
+ - -2.41164431915094
+ - -1.9037380404565993
+ - -0.7514213211048432
+ - -0.5241116311353279
+ - 0.2278587161283961
+ - 1.8972521422934905
+ - 2.4061510074472983
+ - 0.7015973120079149
+ - -0.8843051589676973
+ - -2.1927420685039527
+ - -2.916549625127386
+ - -1.9666678267136848
+ - 0.3252489404093996
+ - 1.4539552894101904
+ - 2.0160312148163073
+ - 2.402468351373968
+ - 1.7552953313665662
+ - 0.33036314844307413
+ - -1.2271583991393133
+ - -2.3912381231015662
+ - -3.100973286991856
+ - -1.9871241411344727
+ - 0.6319859424970213
+ - 1.893461151138552
+ - 2.2012206110600188
+ - 2.3407135618726773
+ - 1.698526261041557
+ - 1.7958470361458514
+ - 0.7052554771626933
+ - -2.256922070451361
+ - -3.1358472096831886
+ - -1.5717135879843964
+ - -0.09304727755017993
+ - 1.4314418767983044
+ - 2.327389563252985
+ - 2.2167241980024466
+ - 1.3613021187545211
+ - 2.1331589241395377
+ - 1.2941840840701813
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.15229549132776
+ - -4.380709230783474
+ - -1.686292872674765
+ - -0.7336388644661658
+ - 0.5387979732312653
+ - 1.5765981045786919
+ - 1.92965014150432
+ - 1.6396270340260577
+ - 1.8384198671334664
+ - 1.231578200983175
+ - 0.7474818432406724
+ - 0.4515513813071433
+ - -0.6712680508970326
+ - -1.6495823292967202
+ - -2.087263662273944
+ - -2.5324008480081317
+ - -1.3905814198337947
+ - 1.1556280746281031
+ - 2.3230599756217662
+ - 1.9239680208475145
+ - 1.424337290097176
+ - 0.30909146054647146
+ - -0.9459016136083892
+ - -1.7858753377901122
+ - -2.036668723030073
+ - -2.4175634748861614
+ - -1.2509978697381843
+ - 1.3139886139141446
+ - 2.473697339044364
+ - 1.879649690426464
+ - 1.203319310642225
+ - 0.11642760833937527
+ - -0.19947953630175708
+ - -0.574982274320294
+ - -1.2873546398131752
+ - -1.449856757139742
+ - -0.11408173076308036
+ - 1.1071616159082702
+ - 1.8561227721630993
+ - 1.7866416916728565
+ - 0.9494456085656895
+ - -0.21593765167886028
+ - -0.6724893146604439
+ - -0.8756233501237553
+ - -1.6539301932874364
+ - -1.5511007523079272
+ - 1.0765408601845523
+ - 2.3930850513255386
+ - 1.9200285261842587
+ - 1.6095762496845811
+ - 0.6044279563243062
+ - -0.6707146290942326
+ - -1.649023729019597
+ - -2.085662147923546
+ - -2.5780694665303114
+ - -1.5275305195034492
+ - 1.2902811359535502
+ - 2.3679534831771
+ - 1.9236936276951113
+ - 1.4241233275227887
+ - 0.4421591581851916
+ - 0.212038349714942
+ - -0.3459611523723519
+ - -1.3703269089106693
+ - -1.741342693378321
+ - -0.4141084838537553
+ - 0.8457791223681229
+ - 1.7461467055873563
+ - 1.8771170041674092
+ - 1.2001393530311875
+ - 0.11276565340333522
+ - -0.19860390714550447
+ - -0.5871334555265679
+ - -1.2261109264412506
+ - -1.4170869776514168
+ - -0.11124707768927333
+ - 1.108426706673735
+ - 1.971374463872746
+ - 2.596548763534377
+ - 1.8070886200640246
+ - -0.7786489174202619
+ - -1.7083860628733376
+ - -1.8144089223505926
+ - -1.8252862006354265
+ - -1.0497777120474028
+ - 0.19196339286144803
+ - 1.3429321349855545
+ - 2.0568994019547726
+ - 4.3682428045562425
+ - 3.156732807014267
+ - -1.5935287404783613
+ - -2.4529839261663335
+ - -1.746807846583501
+ - -1.8742906826123351
+ - -1.1947288682277402
+ - 0.01487803368195387
+ - 1.2100624896107959
+ - 2.0133259838686093
+ - 2.626699086012673
+ - 1.7967761138149299
+ - -0.8864538711708517
+ - -1.8405467768112198
+ - -1.854487584168246
+ - -1.7820838052075443
+ - -1.1124699104567537
+ - -1.077168029702635
+ - -0.20300581251293767
+ - 1.5615286771532273
+ - 2.287680876405782
+ - 1.0309298758111078
+ - -0.2049298750723343
+ - -1.3572913879255817
+ - -1.912851291617774
+ - -1.642290339180279
+ - -0.8177669279077514
+ - -0.6913957837986197
+ - 0.049171574329689605
+ - 1.4965877403589156
+ - 2.0687422086329494
+ - 0.7607488623648966
+ - -0.5040580966546876
+ - -1.614908574390643
+ - -2.235159260673889
+ - -1.64255385307757
+ - 0.1523921462940291
+ - 0.9154384186108745
+ - 1.483869083633136
+ - 1.9265555714288678
+ - 1.5409009848408017
+ - 0.4729899635859285
+ - -0.7912051872887026
+ - -1.8047302126278495
+ - -2.6877217780144083
+ - -1.7312505629214643
+ - -0.1616201826296181
+ - 0.021357091791761647
+ - 1.7391453043716185
+ - 2.761239592652788
+ - 1.2634585807215477
+ - 0.08048296673205432
+ - -1.1417434919791785
+ - -1.8626468656257482
+ - -1.7779184768907124
+ - -1.0959071554437112
+ - -1.072980177268805
+ - -0.26104800822647
+ - 1.6748550007649585
+ - 2.3250701255693293
+ - 1.0167374220395575
+ - -0.22421526566878563
+ - -1.4045819962374815
+ - -1.9715309364172113
+ - -1.4637514822353461
+ - -0.1500829300007572
+ - 0.5335181367216145
+ - 1.2893063125031805
+ - 1.904352570272215
+ - 1.7012896960307509
+ - 0.7455795602980962
+ - -0.5243560436398755
+ - -1.6332141403489975
+ - -2.2126894139704856
+ - -1.5442409043201184
+ - 0.10300986068574415
+ - 0.9284696186984855
+ - 1.501388838826836
+ - 1.9335263431567702
+ - 1.7236526845365736
+ - 1.9631238849930035
+ - 0.9872507373600682
+ - -1.7846184910840013
+ - -2.6517142142200845
+ - -1.5922771360533274
+ - -0.5661808373037153
+ - 0.7078340396706041
+ - 1.6724914907530026
+ - 1.911656569799835
+ - 1.5124546784385775
+ - 2.6845804207932304
+ - 1.7678790021668487
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.781838154988589
+ - -5.32559567445099
+ - -2.2857374323074677
+ - -1.3217053822628084
+ - 0.215522285135847
+ - 1.6617605527885964
+ - 2.383926939678796
+ - 2.314955162631121
+ - 2.7040792974277186
+ - 1.4558571834430962
+ - 1.3071784447499215
+ - 1.176329081387607
+ - -0.38858519715506634
+ - -1.7771429827522338
+ - -2.5871579537409533
+ - -3.219660034260439
+ - -1.883063683375132
+ - 1.1522323459186465
+ - 2.5684693479547107
+ - 2.3831247782546314
+ - 2.0511000076745414
+ - 0.8340684620881278
+ - -0.7550673570528776
+ - -2.009018035562817
+ - -2.6037712848670873
+ - -3.1734831600923563
+ - -1.7627235839862814
+ - 1.3927670764024198
+ - 2.8438398321798855
+ - 2.4012437023587307
+ - 1.8308732772257914
+ - 0.641166359929868
+ - 0.3834872641573628
+ - -0.316826913498455
+ - -1.8441116978354846
+ - -2.2972775705323496
+ - -0.5990628964451741
+ - 0.9763539858992468
+ - 2.1372216556746237
+ - 2.356532116641064
+ - 1.5611841650460483
+ - 0.23296359974316425
+ - -0.14342553146908346
+ - -0.7107492293444556
+ - -2.2635212794357833
+ - -2.173991181538636
+ - 0.98892860925985
+ - 2.5256729451425617
+ - 2.3061015610053377
+ - 2.220655961911422
+ - 1.1781022311184817
+ - -0.38815133371771793
+ - -1.777129511864947
+ - -2.5862566181774618
+ - -3.279578289589862
+ - -2.0532243633574074
+ - 1.3071906231025043
+ - 2.6188674441665207
+ - 2.3836685632846284
+ - 2.0515607423846305
+ - 1.0290401960901272
+ - 0.8746876553459219
+ - -0.052489562002271464
+ - -1.8666192329464173
+ - -2.5847191171490227
+ - -0.956071007098401
+ - 0.6200012980712867
+ - 1.9350574496626067
+ - 2.3983625868095824
+ - 1.8274012878377504
+ - 0.6369023623106607
+ - 0.3729400866701535
+ - -0.36512595717613483
+ - -1.739865071920085
+ - -2.2485919669049834
+ - -0.5960672754746267
+ - 0.977653629808129
+ - 2.242534135622816
+ - 3.0439102805411036
+ - 2.2297405131629855
+ - -0.5615659345350301
+ - -1.6032720936003615
+ - -2.0622547513605074
+ - -2.378780766726944
+ - -1.6716328560613476
+ - -0.22354158965363816
+ - 1.3110565298446974
+ - 2.42381270360743
+ - 5.302396322374569
+ - 3.8823471803277205
+ - -1.2961007233675763
+ - -2.133688895299742
+ - -1.9403836017428926
+ - -2.3979282580488657
+ - -1.824098789664526
+ - -0.4422954960399076
+ - 1.1205063095990717
+ - 2.325706379614874
+ - 3.1225750153647884
+ - 2.2460069311343425
+ - -0.7065954013724441
+ - -1.7931422850551466
+ - -2.140416365869201
+ - -2.3544715062840966
+ - -1.783104379970703
+ - -1.878032926355768
+ - -0.6245379477310503
+ - 1.9772144950063126
+ - 3.0833366742200043
+ - 1.6493552461189669
+ - 0.20745708805941923
+ - -1.3294199851065602
+ - -2.2828879029815514
+ - -2.248497644099991
+ - -1.4595783480694655
+ - -1.4401297750127784
+ - -0.319167485824946
+ - 1.9561450885284004
+ - 2.898753995409092
+ - 1.3533622037971684
+ - -0.1711949095360995
+ - -1.656209970424467
+ - -2.399165346726881
+ - -1.8900082217022678
+ - -0.22187480511222377
+ - 0.5288338820653422
+ - 1.5197160309346767
+ - 2.3450144431440676
+ - 2.16316215048895
+ - 1.0245407720973192
+ - -0.5470382562687212
+ - -1.9534212368470694
+ - -3.0131249942608234
+ - -2.071968522367158
+ - -0.6590309494608161
+ - -0.4368588387059416
+ - 2.1432767908217913
+ - 3.605481057874176
+ - 1.892117788212525
+ - 0.5573323934895886
+ - -1.0227334842345397
+ - -2.1550850546060207
+ - -2.3533404795263486
+ - -1.7646179332144887
+ - -1.885135177556155
+ - -0.7230542696215446
+ - 2.1396350816304888
+ - 3.1396760105746555
+ - 1.6338214532226443
+ - 0.18255383407783088
+ - -1.3466983636952075
+ - -2.010280869586265
+ - -1.6403700866536401
+ - -0.5602320712077701
+ - 0.04942873920730448
+ - 1.233755436401046
+ - 2.2503430238676434
+ - 2.3013094466720814
+ - 1.335087660361485
+ - -0.1987506507920375
+ - -1.6837889806201614
+ - -2.3844026458945415
+ - -1.795816598410014
+ - -0.2518136457346208
+ - 0.5598506499308914
+ - 1.5456555630260214
+ - 2.358151907378374
+ - 2.3909663961676713
+ - 2.826319088631438
+ - 1.5685769751313012
+ - -2.104759435826573
+ - -3.2893462472812627
+ - -2.2067584782604532
+ - -1.1312737594069453
+ - 0.43579180210759855
+ - 1.814577608763735
+ - 2.4040350912454325
+ - 2.194063728442414
+ - 4.105087291472545
+ - 2.7855942756283603
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.0241580453300254
+ - 2.482152329423284
+ - -0.15821817342969546
+ - -1.6150396769810738
+ - -2.381669347414996
+ - -2.097579194836734
+ - -0.9135114380017426
+ - 0.5907262701600071
+ - 1.174734997128892
+ - 1.3069309657611388
+ - 1.4590556609823695
+ - 2.708227435399261
+ - 2.3999390512979306
+ - 2.0129992650869997
+ - 0.9479097919733651
+ - 0.768530824874646
+ - -0.12176714110872788
+ - -1.8484654541279104
+ - -2.5241185372410477
+ - -0.8814446680800393
+ - 0.7026522404481292
+ - 1.9901549247895642
+ - 2.4014683531952064
+ - 1.7775308564446797
+ - 0.5501589494859791
+ - 0.2620567419687947
+ - -0.43401153636493794
+ - -1.7113333419736707
+ - -2.1736707870302285
+ - -0.5161844751545289
+ - 1.0568467637425871
+ - 2.294527559203395
+ - 3.070546006867605
+ - 2.1313825444889267
+ - -0.5891171384585759
+ - -1.7046864430856212
+ - -2.1104116932554615
+ - -2.3735743089493657
+ - -1.6151003708581058
+ - -0.14052883084321632
+ - 1.3846810094575663
+ - 2.4632467220312746
+ - 3.5659074763594636
+ - 2.1673834965500554
+ - -0.25746890960785507
+ - -0.48335366161590404
+ - -2.1209424980243234
+ - -3.1681809176539937
+ - -1.2204861783366139
+ - 0.3348316052214205
+ - 1.7519283304764992
+ - 2.39849566091791
+ - 2.009536549954246
+ - 0.9420644143103628
+ - 0.7736310743879306
+ - -0.06152437089505291
+ - -1.9660467819534444
+ - -2.569298821066363
+ - -0.8771463896660697
+ - 0.7061823035938034
+ - 2.0716252582735364
+ - 2.7944852598573164
+ - 1.9350869721553332
+ - -0.17188346123759118
+ - -1.2233921780121182
+ - -1.903884235075952
+ - -2.4078018420228764
+ - -1.8762656147707835
+ - -0.5138207158088313
+ - 1.0605143624089648
+ - 2.2974903946148464
+ - 3.0151903478318878
+ - 1.979867955422702
+ - -0.48305911554077396
+ - -1.6814640780809542
+ - -2.1141459077197826
+ - -2.375418562684197
+ - -1.8448144051152495
+ - -2.0036558635960238
+ - -0.8685821081636038
+ - 2.2602798795023005
+ - 3.2055184366595513
+ - 1.706067545587165
+ - 0.27926611641760646
+ - -1.2733894069027405
+ - -2.2674504342469555
+ - -2.2800184283171157
+ - -1.5280362333107753
+ - -2.513095858898396
+ - -1.5773060188627324
+ - 3.9319855448817
+ - 5.398086062206195
+ - 1.8552756403274508
+ - 0.4980338922920444
+ - -1.0790501445608305
+ - -2.1835195260237303
+ - -2.3418460778182757
+ - -1.716587167775756
+ - -1.8222575372558887
+ - -0.7266625364387486
+ - 2.255350918139093
+ - 3.1424291708059373
+ - 1.5896950584686247
+ - 0.12150662531516701
+ - -1.4044411610153638
+ - -2.0756970414933957
+ - -1.6696425910872623
+ - -0.5121211011284219
+ - 0.13163018278028446
+ - 1.2870729446109679
+ - 2.273279570734988
+ - 2.283870565628692
+ - 1.2848650018399046
+ - -0.25994070078766107
+ - -1.7355623764419428
+ - -2.441102046824239
+ - -1.8181958889823484
+ - -0.2018743311265613
+ - 0.6411071049159985
+ - 1.5935364262528633
+ - 2.371880277083979
+ - 2.365551055308622
+ - 2.769331020621051
+ - 1.4354145681594985
+ - -2.009874248894661
+ - -3.278088042437472
+ - -2.1835376188511555
+ - -1.0778262193196924
+ - 0.49655912922316425
+ - 1.8558186948246067
+ - 2.40814826136883
+ - 2.1591767998008575
+ - 2.7244130485631253
+ - 1.1354273619410489
+ - -2.093756019427701
+ - -2.1987172683944087
+ - -0.8483474641809897
+ - -0.3897299245763209
+ - 0.9667075779589208
+ - 2.1252688539073605
+ - 2.37266895259503
+ - 1.5718751483229085
+ - 0.10056416488962222
+ - -1.4216110945041198
+ - -2.135669014014326
+ - -1.7688292531954395
+ - -0.4598732877974999
+ - 0.1618709238873192
+ - 1.303235278957196
+ - 2.277317732734886
+ - 2.500646926976255
+ - 2.9430805067182493
+ - 1.4865566393185574
+ - -1.6997800313159603
+ - -3.1330655630400805
+ - -2.3068406624991877
+ - -1.384994352443274
+ - 0.13715452184909505
+ - 1.6029148717001052
+ - 2.3697756983630933
+ - 2.350764556626419
+ - 2.6972880164419224
+ - 1.2600518510135015
+ - -1.8397101025062155
+ - -3.213775925853344
+ - -2.1715396052941505
+ - -1.0597472762336937
+ - 0.41962464826153223
+ - 0.9653537482825053
+ - 1.1810554258056085
+ - 1.3172720199527193
+ - 1.19219640317394
+ - -0.37833402139147865
+ - -1.772031818696636
+ - -2.4076471391683354
+ - -1.9806970814693987
+ - -0.7049699621643107
+ - 0.8220509255321139
+ - 2.4544054230626355
+ - 2.0049766784057392
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.11484187972498
+ - 2.7023963787032517
+ - 0.24377005347001623
+ - -0.9997489827908878
+ - -1.8173469853105522
+ - -1.8338355742087349
+ - -1.0617511444634429
+ - 0.07542515640055299
+ - 0.4510154314142167
+ - 0.7478034359958766
+ - 1.2339340372869692
+ - 1.8412743685031394
+ - 1.858451588476265
+ - 1.788794705941494
+ - 1.1197124553989055
+ - 1.0856439823258968
+ - 0.20724810316834016
+ - -1.56657295960398
+ - -2.2968818479653796
+ - -1.037614810395395
+ - 0.2010402285610996
+ - 1.357881336311836
+ - 1.9176742725552507
+ - 1.6492422108776457
+ - 0.8245429879112903
+ - 0.6991211450416123
+ - -0.04560487193687429
+ - -1.5020189985883114
+ - -2.0781360255166224
+ - -0.7670103422933865
+ - 0.5011312166480026
+ - 1.616339280613389
+ - 2.2381915124456
+ - 1.6460075029123404
+ - -0.1488368712822808
+ - -0.9122658181897485
+ - -1.485161234163655
+ - -1.931857986586937
+ - -1.547944787763963
+ - -0.47866576005200556
+ - 0.789324601403943
+ - 1.8073512322159915
+ - 2.6925774661107664
+ - 1.7353880518009477
+ - 0.16593878819069702
+ - -0.01737286635687807
+ - -1.7447013577583932
+ - -2.7723191231007247
+ - -1.2792549811231877
+ - -0.10122308482938698
+ - 1.1249964220049222
+ - 1.8573017780354062
+ - 1.7861997650351196
+ - 1.1151937049286
+ - 1.0989590759781687
+ - 0.27931889214562405
+ - -1.6791652143840043
+ - -2.3386962197038916
+ - -1.0344834781797037
+ - 0.20361028944094484
+ - 1.3879812559056723
+ - 1.9536579066769546
+ - 1.4571467590555824
+ - 0.1671192051420649
+ - -0.506362002536417
+ - -1.2739549177652183
+ - -1.9010110841429928
+ - -1.7114454807619053
+ - -0.764784278198887
+ - 0.5044276160466507
+ - 1.6192337908048435
+ - 2.198417451285577
+ - 1.540220481738843
+ - -0.08595005974877568
+ - -0.9025946549300412
+ - -1.4884321557145206
+ - -1.9334448736261955
+ - -1.7366246956384668
+ - -1.9825491697901798
+ - -1.0036772505583824
+ - 1.781299741396788
+ - 2.6540979176808115
+ - 1.6041730633836238
+ - 0.5860662857837367
+ - -0.6884956438854253
+ - -1.6622487401778554
+ - -1.914853485496417
+ - -1.5281761874086073
+ - -2.7218885944966247
+ - -1.7962061716128976
+ - 3.1493341254626928
+ - 4.379759070406235
+ - 1.6965734498836924
+ - 0.7528955398665462
+ - -0.5188291213480838
+ - -1.5647417632921958
+ - -1.9309470653171654
+ - -1.6537993268379776
+ - -1.8591995640225265
+ - -0.8999976674962011
+ - 1.8005922904198277
+ - 2.6369510116435144
+ - 1.5294296464658539
+ - 0.464096958311887
+ - -0.7689507737823342
+ - -1.2564867623896352
+ - -1.1511139858891966
+ - -0.6967703757205813
+ - -0.39007584382953797
+ - 0.7022709641382858
+ - 1.6691624759502661
+ - 1.9206469867037386
+ - 1.3237772132066663
+ - 0.16170725793896107
+ - -1.068136389910668
+ - -1.5994664808875751
+ - -1.3107306746763139
+ - -0.4611450605365141
+ - 0.020629263945830402
+ - 0.978632018007923
+ - 1.8029919603375382
+ - 2.033589854005607
+ - 2.453645434708793
+ - 1.3742343321935222
+ - -1.4696616420373803
+ - -2.538158430078496
+ - -1.8756830245849283
+ - -1.1786095075234635
+ - 0.028976158046731332
+ - 1.2271170606478228
+ - 1.8897077386340602
+ - 1.9261748245762038
+ - 2.517311502647377
+ - 1.1784654278956852
+ - -1.463187848330849
+ - -1.5769822572078576
+ - -0.9748249643355624
+ - -0.8631729903586125
+ - 0.4239373775420942
+ - 1.5028983903581927
+ - 1.938529564112592
+ - 1.5184122739026247
+ - 0.44823776829050516
+ - -0.7847363596688206
+ - -1.3002644807022057
+ - -1.209764517364488
+ - -0.6833912341665002
+ - -0.3763624678925532
+ - 0.716834275106316
+ - 1.676133009168734
+ - 2.0856891317875617
+ - 2.522105700226411
+ - 1.3729636947548998
+ - -1.1838694448567886
+ - -2.353608163778033
+ - -1.9226850348292412
+ - -1.393587491347214
+ - -0.26200850764197514
+ - 0.9885501039045466
+ - 1.8057842276076705
+ - 2.0268903638008466
+ - 2.397366640003655
+ - 1.2280109191107755
+ - -1.3375128749340306
+ - -2.4949247715335634
+ - -1.87081100857042
+ - -1.1671553820987763
+ - -0.0647270317479948
+ - 0.27487674230274073
+ - 0.6356956002486441
+ - 1.3198117422087625
+ - 1.4138928482831479
+ - 0.066449775551575
+ - -1.1474699543142628
+ - -1.8717035858571642
+ - -1.7705413278925195
+ - -0.9087996710488208
+ - 0.2677798453086969
+ - 1.1871035634904301
+ - 1.0597131489581135
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.269602790217436
+ - 4.456088019625389
+ - 1.4202436378709076
+ - 0.20823325960931113
+ - -1.09819284484481
+ - -1.9227884671879156
+ - -1.9152036294234718
+ - -1.2651897996957
+ - -1.2828305031651228
+ - -0.4192945296956109
+ - 1.8788031224643378
+ - 2.543252703957207
+ - 1.2178957712732337
+ - 1.9636628829744385
+ - 2.060981986620352
+ - 2.399429204794863
+ - 1.1734930138864923
+ - -1.4917688381962733
+ - -2.6830444471623305
+ - -1.9017810086274343
+ - -1.048860009478846
+ - 0.25926986432788407
+ - 1.4564330667990233
+ - 2.0194552693793906
+ - 1.911730234153962
+ - 2.165668197114198
+ - 0.9697354891220349
+ - -1.5927499171398576
+ - -2.720811958389288
+ - -1.7665797407665804
+ - -0.7633777731640702
+ - 0.506966892525198
+ - 0.9864869449931968
+ - 1.0632556850940105
+ - 0.9601655272684384
+ - 0.8055067031678729
+ - -0.46022081815274035
+ - -1.5888688799266353
+ - -2.0373310689287387
+ - -1.5864052055326543
+ - -0.4563896876170255
+ - 0.8398572319719335
+ - 1.5278689432949657
+ - 1.333475834766243
+ - 1.365885700858692
+ - 1.2168769510135202
+ - -1.495384844431238
+ - -2.9144025144042125
+ - -1.988192051204788
+ - -1.3069303617718533
+ - -0.05992934280371328
+ - 1.2170336375566004
+ - 1.9622611008750517
+ - 2.058044299023083
+ - 2.4403778060007637
+ - 1.3082004777964011
+ - -1.6396775202742224
+ - -2.7339414667765256
+ - -1.9004039232336822
+ - -1.0477384246802752
+ - 0.1654744098732457
+ - 0.5565248408123752
+ - 0.8126667952328873
+ - 1.1426521400849157
+ - 1.1857611227253677
+ - -0.1453548884016195
+ - -1.3712946172222689
+ - -2.0111660593392124
+ - -1.7637569917696931
+ - -0.7596470736788489
+ - 0.5109288001164101
+ - 0.9710623638724446
+ - 1.0336497149764172
+ - 0.9351610484906399
+ - 0.7832413858832544
+ - -0.4636687470961019
+ - -1.5904540651124117
+ - -2.198125123574785
+ - -2.782289770531627
+ - -1.7970284275154025
+ - 1.2740026060605292
+ - 2.3306005765619
+ - 2.025262221482965
+ - 1.6566713165721563
+ - 0.5728711678026631
+ - -0.767194685156057
+ - -1.7685157743872586
+ - -2.1883544873581706
+ - -4.453476751559623
+ - -3.155059302415179
+ - 2.423478679832632
+ - 3.557131434283106
+ - 2.0061774366910003
+ - 1.7571237320597954
+ - 0.7500447738691599
+ - -0.5914105098045136
+ - -1.669686672200035
+ - -2.200527518248442
+ - -2.7603722593447784
+ - -1.7504857781382857
+ - 1.3661731534430492
+ - 2.428479824961485
+ - 2.0291816304246018
+ - 1.577413612729429
+ - 0.5925091785526488
+ - 0.3840533223957805
+ - -0.26633804842111053
+ - -1.489664491199005
+ - -1.9487422228734768
+ - -0.5529033803253871
+ - 0.7799827653774333
+ - 1.7819857299315074
+ - 1.9990257277930346
+ - 1.3551378164931562
+ - 0.2492488503210915
+ - -0.04725358957205688
+ - -0.5243543059796295
+ - -1.3511564838963015
+ - -1.6239192509358813
+ - -0.23743748687794353
+ - 1.0654749983779248
+ - 2.0270030939250074
+ - 2.6717936985897768
+ - 1.8045410780175974
+ - -0.6646402825901997
+ - -1.6622681530001464
+ - -1.8651574103472925
+ - -1.956054640093043
+ - -1.2045333376221516
+ - 0.08156540857676169
+ - 1.3240650540131327
+ - 2.1369179070235664
+ - 3.052304495609469
+ - 1.801969361716218
+ - -0.41458862551971426
+ - -0.6010542105485905
+ - -1.7327546240784186
+ - -2.4974898112395434
+ - -0.8394037833241045
+ - 0.4932903865016381
+ - 1.618614408929528
+ - 2.031535523327061
+ - 1.5682532552129957
+ - 0.5735978217617337
+ - 0.36453178420811294
+ - -0.24229010598567874
+ - -1.574085381897454
+ - -1.9731495878365608
+ - -0.5363141462129075
+ - 0.7977762018695977
+ - 1.8804254435441135
+ - 2.489238694483052
+ - 1.6630538838429687
+ - -0.3202116686237278
+ - -1.2926939757173732
+ - -1.7291233862181383
+ - -2.0181851650043487
+ - -1.4388271180845713
+ - -0.2218001705616587
+ - 1.0825200704980849
+ - 2.038959069922668
+ - 2.6332236622509524
+ - 1.6728342074098064
+ - -0.5767377528410876
+ - -1.656533995359111
+ - -1.8771699455971094
+ - -1.9573089257486085
+ - -1.3833792065503532
+ - -1.4464333369600046
+ - -0.5431177340944799
+ - 1.8964223006850036
+ - 2.6151316596780942
+ - 1.2804050147854678
+ - 0.021437839739124692
+ - -1.2516442705347268
+ - -1.974968520864458
+ - -1.8443496383585967
+ - -1.0936313834506546
+ - -1.677474377205426
+ - -1.0016954473856552
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.956958330788157
+ - 4.224578470542853
+ - 2.014440371325426
+ - 1.4154373769208128
+ - 0.20427055129828203
+ - -1.1005766372098167
+ - -1.9235705500210591
+ - -2.111000184809621
+ - -2.5455709045712958
+ - -1.4814594633933174
+ - 1.6789326873209702
+ - 2.7160973748465693
+ - 1.948721529378975
+ - 1.2148619623407833
+ - 2.0947078565515316
+ - 2.6744420039072887
+ - 1.6581491511150235
+ - -0.6983010549995837
+ - -1.819182836954413
+ - -1.9281473271674592
+ - -1.8998766143096883
+ - -1.0529341329343325
+ - 0.2618367336908995
+ - 1.4553080211176632
+ - 2.174585297283824
+ - 2.7175802492208416
+ - 1.6048236985654318
+ - -0.930106047701266
+ - -2.116379733582895
+ - -2.0039905007775296
+ - -1.7665584110549621
+ - -0.9351907763103636
+ - -0.8386762054294364
+ - -0.07497414636795822
+ - 1.7011381246194366
+ - 2.2788576720001017
+ - 0.8682787041619233
+ - -0.4589266872545612
+ - -1.5935536808882076
+ - -2.0268855118571305
+ - -1.5858751521425114
+ - -0.6078383764675206
+ - -0.46178504748790633
+ - 0.261786684430853
+ - 2.0114391310906825
+ - 1.9707104091277885
+ - -0.5114207714178038
+ - -1.6760131532368077
+ - -1.8053749999919397
+ - -1.9868749874155411
+ - -1.3130309032922534
+ - -0.056864324918984396
+ - 1.2154200105625579
+ - 2.0948853280423947
+ - 2.7257266589706197
+ - 1.7962665083345948
+ - -0.8137622989893734
+ - -1.8555938910850496
+ - -1.9293274766823774
+ - -1.9008575030134667
+ - -1.2359443153540655
+ - -1.2205734602352785
+ - -0.27263881885361296
+ - 1.6520870381588406
+ - 2.4497376292595416
+ - 1.1448753472886035
+ - -0.14329594957315206
+ - -1.3747269111168865
+ - -2.0018724706750834
+ - -1.7641398595587832
+ - -0.9319669150310875
+ - -0.8203945227672548
+ - -0.008034178783015291
+ - 1.5930060569178834
+ - 2.232681565490288
+ - 0.8662864008248412
+ - -0.45975312541033525
+ - -1.6473808500899594
+ - -2.3183892600256564
+ - -1.7968307718041376
+ - 0.1167273318011812
+ - 0.8674514350637732
+ - 1.5133738812553803
+ - 2.023419746430387
+ - 1.6636494656074226
+ - 0.5674353664825011
+ - -0.7654813030487204
+ - -1.8571860133223592
+ - -4.1993071991458635
+ - -3.117895205449051
+ - 0.4807371800180244
+ - 0.9682186636630198
+ - 1.3828116501428194
+ - 2.0040916965689117
+ - 1.7643159829717798
+ - 0.7439272422611346
+ - -0.5895469639948459
+ - -1.7408257553059607
+ - -2.416658995212471
+ - -1.834324789315781
+ - 0.24370341621468955
+ - 1.0430010245851113
+ - 1.6005101449881176
+ - 2.0282218445915876
+ - 1.782177472535501
+ - 1.9751712727223312
+ - 0.8179372944566339
+ - -1.6357860791459438
+ - -2.703916088357547
+ - -1.6465205812530288
+ - -0.5544014423937637
+ - 0.7808206643804783
+ - 1.7745918476380298
+ - 1.9987762134322349
+ - 1.5552015591670358
+ - 1.6543369162082522
+ - 0.5767254600224521
+ - -1.668489179139848
+ - -2.6271455794107355
+ - -1.4394393327105433
+ - -0.24122342224130575
+ - 1.0516679246213614
+ - 1.6315659036170027
+ - 1.4080518042309507
+ - 0.5236162124466167
+ - 0.07916932802448068
+ - -0.9628680544618525
+ - -1.8626919723078614
+ - -1.963461643384837
+ - -1.1965320892677112
+ - 0.07976501965268
+ - 1.344165672750356
+ - 2.173053067960634
+ - 1.6156884270762937
+ - 0.917706201741789
+ - 0.7416988891484416
+ - -1.7249423567251059
+ - -3.0723839015879384
+ - -1.8050082056542804
+ - -0.8344201144646342
+ - 0.49942259489774365
+ - 1.6162028698949529
+ - 2.030682787911522
+ - 1.7689195331416554
+ - 1.9912145794073446
+ - 0.9199532344057489
+ - -1.7856733999370342
+ - -2.7579009887217305
+ - -1.635665440644644
+ - -0.5334002528705042
+ - 0.7601963202208485
+ - 1.2646868247851064
+ - 1.1824743914374491
+ - 0.7669535089380232
+ - 0.4723539977836418
+ - -0.6938227995317738
+ - -1.7298099318751259
+ - -2.0245216433254956
+ - -1.4250854910619275
+ - -0.21690305082041855
+ - 1.0780930290300739
+ - 1.6305745875942887
+ - 1.3549580526135374
+ - 0.5216707051606341
+ - 0.04160189783458259
+ - -0.9874070111391074
+ - -1.877093898314468
+ - -2.1489794721396804
+ - -2.6174687139733854
+ - -1.558810544955804
+ - 1.6143016804779444
+ - 2.6653749112749394
+ - 1.9819410395249888
+ - 1.2755991962077393
+ - 0.016925880570247874
+ - -1.2527403826322083
+ - -1.9753654485348127
+ - -2.0438837203538585
+ - -3.9748249959669453
+ - -2.7530468231747554
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.7209633826270077
+ - 2.70503446133598
+ - 2.096467513548803
+ - 2.3771007776289546
+ - 1.6346484438167352
+ - 0.16749928599798972
+ - -1.3619333520591344
+ - -2.4523958529315197
+ - -3.235211841326812
+ - -2.2574797486428007
+ - 0.9515561757394879
+ - 2.107405508794365
+ - 2.2581894900581037
+ - 2.290258725135991
+ - 1.5562814363885231
+ - 2.195081099042027
+ - 1.7205776488239768
+ - 0.4174111354369439
+ - -0.2900329497024015
+ - -1.38575757245949
+ - -2.3099254606025887
+ - -2.242447282775866
+ - -1.1834699429099627
+ - 0.37732013551920857
+ - 1.8297425566186498
+ - 2.542399342178497
+ - 1.8553005541702776
+ - 0.10467710273924552
+ - -0.7959650749888091
+ - -1.6806786969615142
+ - -2.3903928418972344
+ - -2.3084376863491447
+ - -2.6790412185950476
+ - -1.355735731960509
+ - 2.0442284979646366
+ - 3.2888044878477967
+ - 2.13128169890667
+ - 0.9708920997793016
+ - -0.6123105586946369
+ - -1.9292433733225844
+ - -2.407955808839282
+ - -2.0846342329422454
+ - -2.602376550294
+ - -1.0428032473858078
+ - 2.1531480994714647
+ - 2.248471315745413
+ - 0.7668731861439545
+ - 0.2393749294295444
+ - -1.0599715662554525
+ - -2.1752491319602036
+ - -2.357648148020159
+ - -1.4983142650653256
+ - -0.0004762211478111789
+ - 1.5149701747999154
+ - 2.2429640176203436
+ - 1.8215834630946623
+ - 0.3733822154313025
+ - -0.29904779771672435
+ - -1.3895123231549995
+ - -2.3130211885038663
+ - -2.4732428605434773
+ - -2.8925083560298983
+ - -1.4341163426515267
+ - 1.7446811604858319
+ - 3.169247736463939
+ - 2.2819305707661144
+ - 1.3050480719783506
+ - -0.2379096632610912
+ - -1.6799948170836712
+ - -2.3901932727548947
+ - -2.307015250980293
+ - -2.6276018135787425
+ - -1.1981497182763226
+ - 1.873043355042379
+ - 3.2289655566750475
+ - 2.13154696691308
+ - 0.9711797656861892
+ - -0.527699392203025
+ - -1.098865332360095
+ - -1.2630251673034896
+ - -1.2427640182072714
+ - -1.0651308272419595
+ - 0.477968299730218
+ - 1.8424006284831342
+ - 2.4183227323238063
+ - 1.9267936652948827
+ - 0.610089018895246
+ - -0.9265679632729547
+ - -2.66132465389939
+ - -2.1494709099741214
+ - -1.886037103983529
+ - -2.2830414600445357
+ - 0.2585604168298977
+ - 1.6916894228263246
+ - 2.4015109494940465
+ - 2.051685085508603
+ - 0.8220472552886631
+ - -0.6976197643475878
+ - -1.305542198077611
+ - -1.3855890708021175
+ - -1.113649336026156
+ - -0.8527958993290995
+ - 0.6344944630488909
+ - 1.9420066392813318
+ - 2.614860524418409
+ - 3.210115447908213
+ - 1.8163053593217922
+ - -1.3173080602396194
+ - -2.765480695795733
+ - -2.4095307925818705
+ - -1.9173484766070092
+ - -0.5971644914571294
+ - 0.9906883541082784
+ - 2.1420529528469796
+ - 2.588407888144738
+ - 3.1110237769163493
+ - 1.6659610661196438
+ - -1.5362978602952029
+ - -2.9954722112365992
+ - -2.388020418126998
+ - -1.6654767603129699
+ - -0.3771769067940684
+ - -0.043770820698111675
+ - 0.5360292042111633
+ - 1.728420937030346
+ - 2.0492276887191734
+ - 0.35598565161737517
+ - -1.2026748159547562
+ - -2.249206842340112
+ - -2.3043577752745157
+ - -1.3683749143400583
+ - 0.03747990861105144
+ - 0.5212018165533406
+ - 0.9226496453270897
+ - 2.1703758104577164
+ - 2.0586075473256895
+ - -1.2037674267120448
+ - -2.8181471496643904
+ - -2.3744059496402685
+ - -2.106574181978758
+ - -0.9301147036710512
+ - 0.6607970601471561
+ - 1.9570406164362182
+ - 2.6120099799884215
+ - 3.2621061972077774
+ - 1.977282974796382
+ - -1.4976297824765135
+ - -2.8372936309196928
+ - -2.408461717662789
+ - -1.8989109057749267
+ - -0.7479667684976479
+ - -0.5127140127187135
+ - 0.28117350549095627
+ - 1.7837694833208517
+ - 2.3526807531713714
+ - 0.6974056777150626
+ - -0.88600695534793
+ - -2.093820381970427
+ - -2.379398179271787
+ - -1.6400489981307194
+ - -0.34203532163503186
+ - -0.0014485986253189732
+ - 0.5886963832094175
+ - 1.624196606025534
+ - 1.9732438060492061
+ - 0.32439383241561276
+ - -1.2278515436599908
+ - -2.387272961388763
+ - -3.1807758884930677
+ - -2.2586593126116394
+ - 0.8119593554280061
+ - 1.931392917195007
+ - 2.19649820503808
+ - 2.3325438838725865
+ - 1.4641365190989548
+ - -0.05393855740017303
+ - -1.5387532292763393
+ - -2.524771969231436
+ - -5.424431445033355
+ - -3.940426151900763
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.5484800334626441
+ - 1.0213389599802927
+ - 1.2655199581271999
+ - 1.7617492875932894
+ - 1.5008525440762757
+ - 0.5757491757341876
+ - -0.5907617285399337
+ - -1.5727203217324803
+ - -2.164764049548061
+ - -1.621454530895022
+ - 0.28672271578785274
+ - 1.0120837022677316
+ - 1.4463351266859752
+ - 1.7703283050861756
+ - 1.5056637583418775
+ - 1.6515795390589723
+ - 1.0367762841470964
+ - 0.6656021452267078
+ - 0.40452529483655214
+ - -0.6120338269679024
+ - -1.5146469554032396
+ - -1.768175916651186
+ - -1.2407593953981342
+ - -0.18337320731593126
+ - 0.947832628353549
+ - 1.4313668536996873
+ - 1.1868696229010998
+ - 0.45097691002616147
+ - 0.028035048507053587
+ - -0.8681462044639148
+ - -1.6424713041573393
+ - -1.8761673916167367
+ - -2.2701747746659366
+ - -1.2803021291207364
+ - 1.3329785665838882
+ - 2.3168398878866445
+ - 1.7303574513331168
+ - 1.109740401807119
+ - 0.008582426395719807
+ - -1.0994388502346761
+ - -1.727403718784049
+ - -1.7833237692251998
+ - -2.3379832071556033
+ - -1.1049738630354997
+ - 1.3213560537217746
+ - 1.4286827343308532
+ - 0.9325786610607932
+ - 0.8616253562724209
+ - -0.3437888176875519
+ - -1.3519292940838943
+ - -1.7815031963165757
+ - -1.4247275134224484
+ - -0.45775324314035415
+ - 0.6740120174921405
+ - 1.1392981675114102
+ - 1.0822979138804616
+ - 0.66654858091335
+ - 0.4095239109361977
+ - -0.6152142809296072
+ - -1.5172656993983484
+ - -1.9220751560065552
+ - -2.332519386005435
+ - -1.2815818540796102
+ - 1.0623213310551727
+ - 2.1371554212700015
+ - 1.7716913215644967
+ - 1.3135021392601756
+ - 0.2876093918670039
+ - -0.8682836959398434
+ - -1.6431884804251278
+ - -1.8760075526749143
+ - -2.2274053822248443
+ - -1.153390988192613
+ - 1.2084406260164082
+ - 2.2764581044062484
+ - 1.7313633341454557
+ - 1.1103291452689508
+ - 0.11049831212437375
+ - -0.1883094180618755
+ - -0.542983794025259
+ - -1.243392127694854
+ - -1.3544016444390665
+ - -0.10807787207370217
+ - 1.0169247941840454
+ - 1.708147006785273
+ - 1.6461826048810235
+ - 0.8768447091682663
+ - -0.1955384442747499
+ - -0.9886603027408793
+ - -0.9015103253101183
+ - -2.001213970408235
+ - -2.5678009569706557
+ - -0.2707197885312637
+ - 0.8787356877643269
+ - 1.6540461072003987
+ - 1.7003195855084388
+ - 1.0152254152900155
+ - -0.018345067724134665
+ - -0.3508135850584779
+ - -0.647171642140473
+ - -1.1665484283183423
+ - -1.2155122148933286
+ - 0.010211460755851338
+ - 1.1112548262606217
+ - 1.8532433332447666
+ - 2.3551509518484437
+ - 1.4452936625674533
+ - -0.6559676600260445
+ - -1.651819005760135
+ - -1.7061055364879203
+ - -1.6419706700498782
+ - -0.8701415706247403
+ - 0.28850069857832067
+ - 1.315411649623172
+ - 1.9131098591958275
+ - 2.380222189280401
+ - 1.3909402255942016
+ - -0.8550251699928447
+ - -1.902684073025721
+ - -1.7632572899344319
+ - -1.5167031204852843
+ - -0.7597212946810412
+ - -0.6561117838867525
+ - -0.012412723775839284
+ - 1.4712063004827045
+ - 1.9480581847372944
+ - 0.7058578643914246
+ - -0.4599558639995351
+ - -1.4321196876564823
+ - -1.773902046397391
+ - -1.350720279042258
+ - -0.46955889576799903
+ - -0.31455021530419264
+ - 0.282618334202121
+ - 1.7494933646106787
+ - 1.7078397874090048
+ - -0.5128377296878783
+ - -1.564017789973746
+ - -1.6125756477620194
+ - -1.7192498445440474
+ - -1.0856194239260202
+ - 0.029693520241069648
+ - 1.1248390756412534
+ - 1.855481535242938
+ - 2.399297189499237
+ - 1.5622812047292094
+ - -0.7736142736652736
+ - -1.7008193935035818
+ - -1.7091592382703502
+ - -1.6320771639904235
+ - -1.0079310076114918
+ - -0.9706839737011668
+ - -0.17351886380616305
+ - 1.4330738159154608
+ - 2.0930096286489235
+ - 0.9341586549258636
+ - -0.2043144923823749
+ - -1.2591725549299184
+ - -1.7603367846368219
+ - -1.501311925369383
+ - -0.7357462532184426
+ - -0.6148908589430622
+ - 0.058396045752883784
+ - 1.3713447193236437
+ - 1.8888563300761998
+ - 0.6845992259560181
+ - -0.478836992288337
+ - -1.4955768312446698
+ - -2.0851736466605115
+ - -1.5934903378736693
+ - 0.17630564347101688
+ - 0.8612864156307629
+ - 1.3742943516806598
+ - 1.7713574822490845
+ - 1.4067669858308947
+ - 0.41927541952211406
+ - -0.7419350593020609
+ - -1.6678280287114158
+ - -3.7399843392468206
+ - -2.7673542191891083
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.2340096995692383
+ - -0.012662875390268495
+ - 1.0473278050989447
+ - 1.9164972327374699
+ - 1.9633122903045792
+ - 1.1423403328230308
+ - -0.16433691434829617
+ - -1.431113376253633
+ - -2.0887269507558504
+ - -1.7048750035186588
+ - -0.1662880199278354
+ - 0.4727868848903645
+ - 1.3136770828114885
+ - 2.0091733609336915
+ - 2.0404069483051064
+ - 2.355836976883329
+ - 1.1229591690226008
+ - 1.1311195729281618
+ - 1.1478869065638253
+ - -0.19160801221289087
+ - -1.4222323007903932
+ - -2.0448613182788233
+ - -1.7652582611343262
+ - -0.7285342121931817
+ - 0.5646116268015627
+ - 1.0396123798205943
+ - 1.0761307371128852
+ - 0.9172410052019252
+ - 0.7365821634301263
+ - -0.5131064573821597
+ - -1.6391968767167775
+ - -2.22984844870218
+ - -2.794825730340856
+ - -1.7075766497906277
+ - 1.2420293257046708
+ - 2.3825435370304255
+ - 2.0546470767726652
+ - 1.6530444920669722
+ - 0.5376689091070477
+ - -0.8185021588126221
+ - -1.8137626584990705
+ - -2.2122889031851596
+ - -3.01099180129594
+ - -1.5815159353573993
+ - 1.1238695457163836
+ - 1.2825342959488741
+ - 1.4306628379608286
+ - 1.7191085281404488
+ - 0.13081398692888066
+ - -1.1733460058646885
+ - -1.9770297525534006
+ - -1.908970604521469
+ - -1.0205963106239357
+ - 0.22042658987459102
+ - 0.6417383351929423
+ - 0.8714400293709553
+ - 1.1705158810066432
+ - 1.1666701761536988
+ - -0.1955227028689492
+ - -1.4254511830254064
+ - -2.1926804166446052
+ - -2.753110895112316
+ - -1.644054937743426
+ - 0.8920071994585886
+ - 2.0830077821785773
+ - 2.019265848295306
+ - 1.8245513629865167
+ - 0.8429710093610924
+ - -0.5139931919922835
+ - -1.6409645022699693
+ - -2.2306961377699515
+ - -2.7429906459128355
+ - -1.5579556473374094
+ - 1.1092184002193002
+ - 2.343144722350741
+ - 2.0566661888435838
+ - 1.6541142866601788
+ - 0.6933360482532298
+ - 0.510540904941656
+ - -0.14152891867910994
+ - -1.7209189684504536
+ - -2.1189470938967827
+ - -0.6458233781836954
+ - 0.7079990436132473
+ - 1.762031151950351
+ - 2.0400659678575117
+ - 1.4391211185129416
+ - 0.34850957737657984
+ - 0.04853581536579544
+ - -0.19053537563453274
+ - -2.8664632164468196
+ - -3.7940147222730163
+ - -0.822787196694297
+ - 0.5274019674242083
+ - 1.6555985014018357
+ - 2.055053359799708
+ - 1.568279809957576
+ - 0.5498507222256463
+ - 0.32310323836076604
+ - -0.27012471836634905
+ - -1.6588605278715112
+ - -1.988972408964789
+ - -0.5145357311708828
+ - 0.8340492550761996
+ - 1.919227382350129
+ - 2.5346286636813042
+ - 1.6855570619357123
+ - -0.34756601541652116
+ - -1.342408569072246
+ - -1.7649225317988484
+ - -2.0386702011800444
+ - -1.4351149815699995
+ - -0.19546085233360902
+ - 1.120006276949458
+ - 2.075157901123091
+ - 2.6744632626343177
+ - 1.6916404980017337
+ - -0.6061073526375058
+ - -1.707188218205691
+ - -1.910612727130811
+ - -1.9725594789720924
+ - -1.375120160223743
+ - -1.426363395381884
+ - -0.48161424553896637
+ - 1.8177770745080977
+ - 2.6097055572036116
+ - 1.2729255069581713
+ - -0.007445451103162054
+ - -1.2895765373184371
+ - -2.005204828761453
+ - -1.8539380480064631
+ - -1.0790708872720116
+ - -1.1429631022070117
+ - -0.1509636269396103
+ - 2.064223013627371
+ - 2.0659655340190053
+ - -0.1244708585845992
+ - -1.1019724575944383
+ - -1.586054681100873
+ - -2.0507954053890267
+ - -1.6337750380687082
+ - -0.4933559503931039
+ - 0.8516167659837244
+ - 1.926635082352072
+ - 2.5890710851377934
+ - 1.8101714494253958
+ - -0.4572696140436933
+ - -1.3908888117948837
+ - -1.7726407145940462
+ - -2.0322167013055807
+ - -1.6147437617242781
+ - -1.7308859823546356
+ - -0.6251342583598604
+ - 1.685854198174676
+ - 2.6760400159894333
+ - 1.4930146349926954
+ - 0.29458696819982433
+ - -1.0354123276622047
+ - -1.9114017478570449
+ - -1.9597631625738279
+ - -1.3514040117541157
+ - -1.3702617867799454
+ - -0.3682786754332764
+ - 1.6833011030432872
+ - 2.5420038265666167
+ - 1.2522621203529984
+ - -0.02823868361924151
+ - -1.3141967807645407
+ - -1.9573025418421148
+ - -1.6415028245738914
+ - -0.29435292459272566
+ - 0.2854936577368138
+ - 1.2052356547065275
+ - 1.9756597180168247
+ - 1.897853388236382
+ - 0.980853448608314
+ - -0.3517858625091487
+ - -1.5819570509607748
+ - -3.7482888657521296
+ - -2.8355817877620404
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.3124636783733723
+ - -4.630627714470109
+ - -1.8745092709773095
+ - -0.9432732000744959
+ - 0.3979805455454485
+ - 1.5670432708801898
+ - 2.054592996242061
+ - 1.8587304050175397
+ - 2.126422020626402
+ - 1.0825902218797006
+ - -1.8913685956567072
+ - -2.8248686563598167
+ - -1.7181946616515522
+ - -0.64498149488419
+ - 0.6565625220484455
+ - 1.147905226526698
+ - 1.131122838165482
+ - 1.122929948961392
+ - 2.3557931661095903
+ - 2.0509711720620625
+ - 1.6303252266415766
+ - 0.5056246417792647
+ - -0.8457316929046523
+ - -1.824499540881614
+ - -2.2027481541464793
+ - -2.6470072288926936
+ - -1.4167886093779032
+ - 1.3090709723504255
+ - 2.551032770643413
+ - 2.032228593256137
+ - 1.4156181027401307
+ - 0.31810062775069115
+ - 0.03349892357073134
+ - -0.4586017685183976
+ - -1.469737675154967
+ - -1.7412869515670366
+ - -0.30029885760733144
+ - 1.026044983706941
+ - 1.9154644396481582
+ - 1.9605955334843872
+ - 1.162462159376203
+ - -0.034844330197286576
+ - -0.44770844435689505
+ - -0.7874935558435154
+ - -1.8469822764012012
+ - -1.7521358838822871
+ - 1.013116822495731
+ - 2.379877889367816
+ - 2.018608960628534
+ - 1.8044137079673002
+ - 0.8119555945927593
+ - -0.5422068418371229
+ - -1.654264479505882
+ - -2.224448600462861
+ - -2.7819113108649076
+ - -1.6912664751610893
+ - 1.2618543023070439
+ - 2.4016167207184167
+ - 2.051021367978507
+ - 1.6303802644314946
+ - 0.6592447129940363
+ - 0.464950241370438
+ - -0.22201056765830288
+ - -1.5268516223124853
+ - -2.0232745512004224
+ - -0.614420546933414
+ - 0.7346834912619248
+ - 1.7724863557652515
+ - 2.029624821128887
+ - 1.412409403820632
+ - 0.3143001410215597
+ - 0.029890732429653594
+ - -0.48453472573715056
+ - -1.3933690950979614
+ - -1.7031921673244685
+ - -0.29747664290231635
+ - 1.0272883329627862
+ - 2.0237045446243567
+ - 2.70068766127737
+ - 1.9230146342550927
+ - -0.6727715860229678
+ - -1.6209770652182158
+ - -1.8618997649696198
+ - -1.9917927385954493
+ - -1.2640195400535887
+ - 0.024557445271663886
+ - 1.2940339650118897
+ - 2.1442856766817497
+ - 4.6143082060424945
+ - 3.3542787612707863
+ - -1.4341615958596423
+ - -2.2617459407026876
+ - -1.7749486916680974
+ - -2.027810896839319
+ - -1.407967038522014
+ - -0.16398425467722266
+ - 1.1422549059614135
+ - 2.0806072080291393
+ - 2.748956670455319
+ - 1.923355036120073
+ - -0.7921807362267231
+ - -1.7720758399167866
+ - -1.9157557565085843
+ - -1.9571355260095058
+ - -1.3440508065542618
+ - -1.3605422920571397
+ - -0.36203899231330483
+ - 1.6814017940276236
+ - 2.5361594552406705
+ - 1.2443462859400904
+ - -0.03839073062838592
+ - -1.3095633468596772
+ - -2.005369151934344
+ - -1.8343378810646433
+ - -1.0461001454487053
+ - -0.9648989277709192
+ - -0.09594742225878003
+ - 1.6353478551499343
+ - 2.3365720330488173
+ - 0.9714245778394617
+ - -0.3604370541020487
+ - -1.5871893853585244
+ - -2.2385013501755826
+ - -1.694557096774507
+ - 0.002158223365179181
+ - 0.7396651931707926
+ - 1.4575785389229858
+ - 2.037601485273532
+ - 1.7419680558922512
+ - 0.6754449131784032
+ - -0.6744110134693893
+ - -1.8137787231426346
+ - -2.7417810795243134
+ - -1.8172530541498007
+ - -0.35139693372351943
+ - -0.15808830302749907
+ - 1.8496864665244115
+ - 3.015826000823901
+ - 1.4745513121276776
+ - 0.26443717611136053
+ - -1.0642931982477692
+ - -1.926236416843234
+ - -1.9542684579895824
+ - -1.327181587049386
+ - -1.3608658438842054
+ - -0.4343030832231998
+ - 1.8108139406769312
+ - 2.579928797085568
+ - 1.2300098204023622
+ - -0.05934850404448105
+ - -1.3438578779240882
+ - -1.933136260486092
+ - -1.492959860007029
+ - -0.30610833994742354
+ - 0.3300743224787345
+ - 1.2326212128228127
+ - 1.9877152374470783
+ - 1.8893207754273997
+ - 0.9554531143759087
+ - -0.3830225373362625
+ - -1.6086200992060988
+ - -2.219651433025277
+ - -1.6005226188739385
+ - -0.038292986142901046
+ - 0.7593753789559972
+ - 1.477909473492775
+ - 2.046789211301821
+ - 1.9373444622302654
+ - 2.2467761831701334
+ - 1.1873683547662135
+ - -1.8611376733242861
+ - -2.828625053878603
+ - -1.7889130745500814
+ - -0.7713929195043967
+ - 0.5824261297242367
+ - 1.682551939189642
+ - 2.0519593179044207
+ - 1.7374592891411915
+ - 3.1661737315473695
+ - 2.117142661124556
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.629665281654065
+ - -3.746172872821407
+ - -1.750936408397739
+ - -1.1906306201725139
+ - -0.11516981229492272
+ - 1.0142056212454587
+ - 1.7000257178853142
+ - 1.823659844957248
+ - 2.1868850431101117
+ - 1.2562782536622439
+ - -1.4942225118504477
+ - -2.392362052522862
+ - -1.683719221412532
+ - -0.9697771297043047
+ - 0.07700545517444245
+ - 0.40453059644875833
+ - 0.6655984480546915
+ - 1.03675343007257
+ - 1.6515483534110076
+ - 1.703168025717762
+ - 1.6367634065759393
+ - 0.864903191646938
+ - -0.291454788266631
+ - -1.3148304345870292
+ - -1.9091438287649567
+ - -2.3746375750900652
+ - -1.3867790056408422
+ - 0.8554957405890257
+ - 1.9012449783883785
+ - 1.759615753954809
+ - 1.5112686871407113
+ - 0.7542927153364853
+ - 0.6497401060759407
+ - 0.009118709340461042
+ - -1.4666050038115566
+ - -1.9405319620417474
+ - -0.7008496585042706
+ - 0.4624364820930649
+ - 1.4309961997576
+ - 1.7696567984567737
+ - 1.3452008123777643
+ - 0.46463380245282954
+ - 0.3083072162995763
+ - -0.28523796112584426
+ - -1.7457028779372905
+ - -1.7042609578619765
+ - 0.5015108569586506
+ - 1.54379394160961
+ - 1.6051411979360874
+ - 1.722261029548619
+ - 1.0977995907230957
+ - -0.013702924114579818
+ - -1.1119422145616253
+ - -1.8500386414563685
+ - -2.3952240753997027
+ - -1.5633990454109183
+ - 0.7608453147220994
+ - 1.6844634479934735
+ - 1.7040823517470052
+ - 1.6375253357879798
+ - 1.0222056496750778
+ - 0.9897533934075607
+ - 0.18651384228577175
+ - -1.434869646952458
+ - -2.1021038865026087
+ - -0.9472832119659046
+ - 0.18833998942264324
+ - 1.2472263226662836
+ - 1.7577062919802076
+ - 1.5090651411092224
+ - 0.7514047981200497
+ - 0.6352713053117447
+ - -0.04520876686719575
+ - -1.3751896792593985
+ - -1.9009137812013042
+ - -0.6990146771449841
+ - 0.4632048152949813
+ - 1.4839496771651528
+ - 2.072762847715411
+ - 1.588417716503078
+ - -0.1613026332860921
+ - -0.8403072273534062
+ - -1.3635357178928469
+ - -1.7702964687078104
+ - -1.415898050603848
+ - -0.4345950703594933
+ - 0.7270597749342332
+ - 1.6583921566517217
+ - 3.724970504955981
+ - 2.758099126684727
+ - -0.5225309004271634
+ - -0.9859146539821059
+ - -1.2537156939135434
+ - -1.7592246631471467
+ - -1.5087288698950314
+ - -0.5905787954653892
+ - 0.575404536362557
+ - 1.5619830585215813
+ - 2.1535977751833397
+ - 1.6173411643291833
+ - -0.27180225264151026
+ - -0.9915929785208978
+ - -1.436385380869404
+ - -1.7703188095462774
+ - -1.5157114623886594
+ - -1.6661594720777908
+ - -0.6686108489362611
+ - 1.4387055445702115
+ - 2.3523511766963243
+ - 1.4006143088809855
+ - 0.4230846227399247
+ - -0.7405244830787747
+ - -1.580019743909502
+ - -1.7346053345202799
+ - -1.3092253809050718
+ - -1.3769947056783316
+ - -0.4545360233554721
+ - 1.4590173369789299
+ - 2.2720282209075346
+ - 1.2121109539965538
+ - 0.14762547541400367
+ - -0.9786579879725702
+ - -1.4945500234997786
+ - -1.2646353409243414
+ - -0.40320910203895727
+ - 0.017459881142445257
+ - 0.8964905072529462
+ - 1.6513176962194485
+ - 1.6975981069810249
+ - 0.9935567167822874
+ - -0.13299627190146254
+ - -1.2280590984027968
+ - -1.9651439182964672
+ - -1.437631888594906
+ - -0.7443524617753831
+ - -0.5882363721531082
+ - 1.5252504823795774
+ - 2.687130470904465
+ - 1.5471437074896874
+ - 0.6709577423181898
+ - -0.4976951068704069
+ - -1.4495890500726154
+ - -1.7719111961862022
+ - -1.5037050354238937
+ - -1.678551039397323
+ - -0.7548776086944956
+ - 1.5679182539132355
+ - 2.398587731570439
+ - 1.3907276678737877
+ - 0.4046794011486583
+ - -0.7282729340526455
+ - -1.1794836115609073
+ - -1.0694476112245859
+ - -0.6233952176129729
+ - -0.32892562132322556
+ - 0.6653330871657483
+ - 1.5436432667930595
+ - 1.7602742922931578
+ - 1.1993563024594533
+ - 0.12648927244518163
+ - -1.0012924352289323
+ - -1.491787353663591
+ - -1.213753005744606
+ - -0.4060007784467859
+ - 0.04850015520634169
+ - 0.9175541147387929
+ - 1.6633881565432755
+ - 1.8612607424103151
+ - 2.2550470642051845
+ - 1.3269901204792967
+ - -1.4412174830474496
+ - -2.3536794210737693
+ - -1.7168155885670144
+ - -1.0646549833604315
+ - 0.04874146903815292
+ - 1.143697302682804
+ - 1.7396527896144653
+ - 1.7590827503878848
+ - 3.3983876132412454
+ - 2.3457545589415645
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.5319970132296041
+ - -2.388333697106356
+ - -1.7924389907165454
+ - -1.9919794423420882
+ - -1.3340489935085438
+ - -0.0845419631471807
+ - 1.193022511729364
+ - 2.085336708679279
+ - 2.7398595029539234
+ - 1.8981213001378678
+ - -0.8491195149115448
+ - -1.8339293148092057
+ - -1.9204254303657833
+ - -1.91019176358531
+ - -1.260604886762422
+ - -1.2535774439112048
+ - -0.2951081716856603
+ - 1.6551035106300058
+ - 2.46538806332188
+ - 1.2125399937475596
+ - 1.960075164236456
+ - 1.8660125019567784
+ - 0.9467841053555013
+ - -0.37341908628076464
+ - -1.583758978027963
+ - -2.186472931307419
+ - -1.5779729501332331
+ - -0.041564745160846024
+ - 0.7433884385622096
+ - 1.4550407329493327
+ - 2.0190780719567805
+ - 1.9140096376529283
+ - 2.2098202865615018
+ - 1.1020344342364246
+ - -1.7355404248428037
+ - -2.7708818591510656
+ - -1.767348918370608
+ - -0.7653680115904977
+ - 0.5702605598799376
+ - 1.6575167405919187
+ - 2.0249068119930795
+ - 1.7174394489621512
+ - 2.130172903280797
+ - 0.8328055348187136
+ - -1.8382267355382063
+ - -1.9135728230359292
+ - -0.5976110864665126
+ - -0.11602279591994019
+ - 0.9428478823361706
+ - 1.8549927694643882
+ - 1.971455898939966
+ - 1.2167232385698057
+ - -0.05613590745914863
+ - -1.3249946990910155
+ - -1.9442207754318015
+ - -1.5595558806709602
+ - -0.264707363680609
+ - 0.32860959399920153
+ - 1.2156375997387818
+ - 1.962629810958679
+ - 2.061536410238062
+ - 2.400552254414946
+ - 1.174738612423233
+ - -1.490536535331261
+ - -2.681951792475418
+ - -1.9022811914660112
+ - -1.0508127476940008
+ - 0.25670755133220297
+ - 1.4543867273350766
+ - 2.0188044921125075
+ - 1.9127061185735132
+ - 2.1672884164470725
+ - 0.9712293798097698
+ - -1.5918007881239777
+ - -2.7202483016705648
+ - -1.7674706723806162
+ - -0.7655632903943382
+ - 0.5042014164366061
+ - 0.998218238035352
+ - 1.106984343447963
+ - 1.0015792948304725
+ - 0.8227316891750808
+ - -0.4576729028174815
+ - -1.5869877223659898
+ - -2.0369244081425535
+ - -1.5876627298521955
+ - -0.4587544114569191
+ - 0.8371602404076801
+ - 2.3517408883146005
+ - 1.8866993259768294
+ - 1.5058953340472891
+ - 1.8049169371308535
+ - -0.2738152060239805
+ - -1.4639671620422758
+ - -2.0279826504925897
+ - -1.697068800487384
+ - -0.6386853400685689
+ - 0.6462320316863719
+ - 1.170256781350048
+ - 1.208039356083981
+ - 0.8910528952418
+ - 0.6425144844454361
+ - -0.5885571511023754
+ - -1.6679199261172788
+ - -2.2016904891285423
+ - -2.6929992821375
+ - -1.5097826960727843
+ - 1.1434801292819363
+ - 2.366600889892782
+ - 2.029004335848093
+ - 1.5794026504126575
+ - 0.4475702589129685
+ - -0.8852774956111458
+ - -1.8286479391632184
+ - -2.1697016009059693
+ - -2.597786904399682
+ - -1.3767432160685682
+ - 1.3224480615521204
+ - 2.5493921658061915
+ - 2.0019446524849105
+ - 1.36074915177604
+ - 0.25671938726728827
+ - -0.04040597377576034
+ - -0.4998215235390509
+ - -1.4248839582586994
+ - -1.6641677547055296
+ - -0.24367739427838328
+ - 1.0611451417297344
+ - 1.9138328792485517
+ - 1.9228557288904413
+ - 1.105081848258795
+ - -0.09287805608553881
+ - -0.5233821188105386
+ - -0.8227556495609877
+ - -1.801324798038238
+ - -1.7025746395603387
+ - 1.0556250156396667
+ - 2.4264101316127342
+ - 2.0079109250628626
+ - 1.7457537185290213
+ - 0.7304428608092647
+ - -0.610601262883968
+ - -1.6802169085504561
+ - -2.1987624421818333
+ - -2.7358700542078638
+ - -1.6449660273622977
+ - 1.2965636862186622
+ - 2.4273003395602433
+ - 2.027631373545562
+ - 1.5634849594947544
+ - 0.5707218725369414
+ - 0.3566372350540344
+ - -0.2828241658838668
+ - -1.4810476874550038
+ - -1.9283336043873247
+ - -0.5328397287976173
+ - 0.7983716235778779
+ - 1.7907624180313828
+ - 1.9942897115322937
+ - 1.3390118246198983
+ - 0.22701404498384348
+ - -0.07465445705272387
+ - -0.5400293942427339
+ - -1.3403406754801424
+ - -1.6008457659769693
+ - -0.21693749001483464
+ - 1.0822145319115537
+ - 2.034333342074873
+ - 2.699092890878326
+ - 1.9026739292306656
+ - -0.7329973859501904
+ - -1.6889475123692739
+ - -1.8719816640783784
+ - -1.9493721201102459
+ - -1.1871716086731898
+ - 0.10196309676979179
+ - 1.3387070255624098
+ - 2.1408612750574108
+ - 4.580242185920575
+ - 3.320939889071634
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.6372800048668001
+ - 0.578262629039143
+ - -0.8121758858583421
+ - -1.7899856029891819
+ - -2.0003700329598035
+ - -1.3270418069046994
+ - -0.087616899359279
+ - 1.1956293459292882
+ - 1.8166721391714038
+ - 1.5625907683343865
+ - 0.3963552430779502
+ - -0.12491986870476714
+ - -1.0960517500853588
+ - -1.918555093310993
+ - -2.108598870527317
+ - -2.4821927623817395
+ - -1.2545244371150681
+ - 1.4314825601551033
+ - 2.639856844780757
+ - 1.945166020055901
+ - 1.2147010074374494
+ - 1.9710560165880453
+ - 1.8581781510522002
+ - 0.9471229901989624
+ - -0.29220320549230394
+ - -0.7101380376947076
+ - -0.8967221746496902
+ - -1.0717539094767201
+ - -1.0438754991144783
+ - 0.2618326642193452
+ - 1.456616984087961
+ - 2.1778627396481354
+ - 2.774280309769976
+ - 1.753545621820087
+ - -1.0551772517847116
+ - -2.1558045951830174
+ - -2.005867366883875
+ - -1.768652217574777
+ - -0.7684924325618709
+ - 0.5741803979474093
+ - 1.6610795990311913
+ - 2.2035218146393176
+ - 3.0479578152770546
+ - 1.668403956052422
+ - -0.8916278366752616
+ - -1.0609449395713462
+ - -1.546000482431912
+ - -1.9997105453393516
+ - -0.376634953767428
+ - 0.9460131842463376
+ - 1.866205057244615
+ - 1.9639671715760878
+ - 1.2166703128234113
+ - 0.05260744057361215
+ - -0.2981233003708891
+ - -0.6597076121981819
+ - -1.3177712282319902
+ - -1.4531804449542298
+ - -0.056178961135714627
+ - 1.217894836987728
+ - 2.099239923003346
+ - 2.680106837774531
+ - 1.6614969460780353
+ - -0.7002369331407712
+ - -1.823584682266586
+ - -1.9323211335523482
+ - -1.9035581544081877
+ - -1.0545325884334638
+ - 0.2630295644648757
+ - 1.4587669114523694
+ - 2.179168791259364
+ - 2.723190813825766
+ - 1.60797287767476
+ - -0.9324764332122821
+ - -2.1212930047874847
+ - -2.00821868046854
+ - -1.769868161132611
+ - -0.9364682593235859
+ - -0.8374497346284626
+ - -0.09421647137696956
+ - 1.7929723335782577
+ - 2.3044889305971337
+ - 0.8694690282635076
+ - -0.46051787054673093
+ - -1.5972476331562457
+ - -2.0310560825717645
+ - -1.5887255030845087
+ - -0.6084014670184127
+ - -0.6119322749849943
+ - -0.22034356573277805
+ - 3.0247848015425807
+ - 4.04797360582147
+ - 1.034769421333792
+ - -0.27658257218624044
+ - -1.4738562283927052
+ - -2.0229230186642075
+ - -1.6985827522135017
+ - -0.8007791147844613
+ - -0.657012287162953
+ - 0.033578889253496634
+ - 1.7458658489566419
+ - 2.193738095266133
+ - 0.7455335100721991
+ - -0.5900576297697021
+ - -1.743742311467491
+ - -2.3535073126758457
+ - -1.631407212571977
+ - 0.1401228859176959
+ - 1.0246931997016258
+ - 1.6025262187172358
+ - 2.031357717451745
+ - 1.5866414250569711
+ - 0.43928202074970385
+ - -0.8893324038174228
+ - -1.935152959514913
+ - -2.5408509258900187
+ - -1.6699615018122298
+ - 0.4027679420657354
+ - 1.4117061357849439
+ - 1.7806983727179073
+ - 2.0049781497089776
+ - 1.560913862746708
+ - 1.6914191530682101
+ - 0.6857841211711609
+ - -1.8073395342652414
+ - -2.684701419301241
+ - -1.4434874475421424
+ - -0.2415087921302361
+ - 1.0691891739421016
+ - 1.9108877353555558
+ - 1.925409955101244
+ - 1.2942870444887784
+ - 1.4711675391211345
+ - 0.37206715885257097
+ - -2.0091441802407837
+ - -2.0344910135737226
+ - -0.10221634842682421
+ - 0.7270753673073648
+ - 1.3965863752214491
+ - 2.0064188109215393
+ - 1.754168315540633
+ - 0.7257572452356128
+ - -0.6078726931492574
+ - -1.7531640850604313
+ - -2.407583956220476
+ - -1.7464598772669548
+ - 0.2333706577608541
+ - 1.0675399703263007
+ - 1.611946948052197
+ - 2.0275012492201885
+ - 1.769400321634336
+ - 1.9568447632082155
+ - 0.8038306059539233
+ - -1.6385343518372708
+ - -2.7006048110964587
+ - -1.6347999444412755
+ - -0.5356676078713268
+ - 0.7985198865777451
+ - 1.7834320895614748
+ - 1.9950140553836797
+ - 1.5399544322961078
+ - 1.6333443426631404
+ - 0.561628009532758
+ - -1.6687134649188455
+ - -2.619801246230989
+ - -1.4254294840122783
+ - -0.221961204735651
+ - 1.0697964153845414
+ - 1.6713178328401694
+ - 1.4867917707820597
+ - 0.5199751501943538
+ - 0.06173106028742073
+ - -0.9796092157143951
+ - -1.8697964630988673
+ - -1.9578282985645667
+ - -1.1806170485001413
+ - 0.09904926174492898
+ - 1.3603980743615505
+ - 3.3394514784240577
+ - 2.5602616359927977
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.539066017009828
+ - 3.3055303297605034
+ - 0.5217147566323477
+ - -0.815275126608739
+ - -1.8061853159508245
+ - -2.0014031218812005
+ - -1.3348189581142547
+ - -0.21278297036132132
+ - 0.10680845576673548
+ - 0.5519669882770728
+ - 1.4751124877420714
+ - 1.643776376761754
+ - 0.2038567517191204
+ - -1.0994649133668861
+ - -2.0500256337051495
+ - -2.6444011531135434
+ - -1.676117499102915
+ - 0.5896956128719293
+ - 1.6763371248982668
+ - 1.886475112199152
+ - 1.9549058477256374
+ - 1.2263302446067241
+ - 1.9712276479553725
+ - 1.863652500539315
+ - 1.129771096774607
+ - 1.0775008475988261
+ - 0.17360496907493056
+ - -1.643190259210412
+ - -2.3869825213365634
+ - -1.0483608481309945
+ - 0.2639983966608153
+ - 1.5032912954071014
+ - 2.1441012894815015
+ - 1.6509573313298647
+ - 0.08260173640498532
+ - -0.6088306326517003
+ - -1.3800570784055521
+ - -2.0125165636196902
+ - -1.7803397622884072
+ - -0.760485857355322
+ - 0.5795843093696935
+ - 1.740868107573246
+ - 2.6542678401457223
+ - 1.7872510896781315
+ - 0.4427529816809189
+ - 0.252172683454448
+ - -1.8308145602874213
+ - -3.027311338103965
+ - -1.5381563428291836
+ - -0.37407698579331594
+ - 0.95569440338531
+ - 1.8666822623094472
+ - 1.9690448054000262
+ - 1.4122012817713991
+ - 1.4821513239969202
+ - 0.527735400716488
+ - -1.8060512144788192
+ - -2.6142590338547365
+ - -1.3080873423637003
+ - -0.05465732969873476
+ - 1.2316595570690432
+ - 1.8046726044069294
+ - 1.4332986291688519
+ - 0.3947657720894454
+ - -0.17577592929013672
+ - -1.1290430610893705
+ - -1.9381891703931404
+ - -1.9154022459898439
+ - -1.0458228139066097
+ - 0.267651221051717
+ - 1.5066507270735456
+ - 2.1064594498834857
+ - 1.5533524099681923
+ - 0.1312711889582592
+ - -0.6053774618095543
+ - -1.383630362036689
+ - -2.0142320580379653
+ - -1.978128967855121
+ - -2.3181582079178646
+ - -1.2588636313022343
+ - 1.8137361413741753
+ - 2.7973414647724275
+ - 1.826113680467923
+ - 0.8684050136876019
+ - -0.4671751560752444
+ - -1.5999531151569863
+ - -2.037309230310661
+ - -1.7964681187326468
+ - -3.3217438488433446
+ - -2.2395107100399847
+ - 3.24423484244708
+ - 4.552749919691129
+ - 1.9014996196821334
+ - 1.0341294433217578
+ - -0.28216345267510184
+ - -1.477388573321701
+ - -2.0294737423554854
+ - -1.9073270587557822
+ - -2.207117646390783
+ - -1.159355790528073
+ - 1.850583200937133
+ - 2.804061357080813
+ - 1.7626049883572563
+ - 0.7459635308002361
+ - -0.5321526818215444
+ - -0.9977833968363411
+ - -1.0498101214540623
+ - -0.9270804227880657
+ - -0.7637320442610336
+ - 0.4834211730479633
+ - 1.6087143057555489
+ - 2.0452568708923664
+ - 1.578877892012979
+ - 0.43675049767966473
+ - -0.8651677473693227
+ - -1.3878449586678652
+ - -1.2439149388007193
+ - -0.6937546118178599
+ - -0.3387248409430001
+ - 0.7906766500771986
+ - 1.7866418148402277
+ - 2.196310577479259
+ - 2.6996108091628748
+ - 1.5796362121375476
+ - -1.4115812727302015
+ - -2.550785547633989
+ - -2.0247914908657396
+ - -1.4444255901578629
+ - -0.2394736897691418
+ - 1.0747024891945915
+ - 1.9180890030818192
+ - 2.1279334771179874
+ - 2.8379718519524464
+ - 1.410475928297614
+ - -1.351116187599562
+ - -1.4900500041139486
+ - -1.2199063255325289
+ - -1.2916276322058244
+ - 0.18082749761444133
+ - 1.4025920563082943
+ - 2.0247914404102443
+ - 1.7536339091207962
+ - 0.730295501389673
+ - -0.5499007523907936
+ - -1.0397772051478644
+ - -1.0950402146118012
+ - -0.9340900032999228
+ - -0.7572788034917375
+ - 0.49960706000647703
+ - 1.6186215025102855
+ - 2.2090000094309614
+ - 2.71849320839117
+ - 1.5474819557278237
+ - -1.089846596047646
+ - -2.3107146927357323
+ - -2.0354064937493255
+ - -1.6432044494607667
+ - -0.5415017138960281
+ - 0.8026549656782072
+ - 1.7927851271200976
+ - 2.1931648582301753
+ - 2.642675963867075
+ - 1.4247955289441099
+ - -1.2784779811018756
+ - -2.512286233800051
+ - -2.02323274504836
+ - -1.4348359665426167
+ - -0.3594280560430843
+ - -0.08079825156145917
+ - 0.4282341265870748
+ - 1.5529374879222084
+ - 1.7917339109196015
+ - 0.33830728512039937
+ - -0.9834969439118866
+ - -1.8866828903486157
+ - -1.9583495702899396
+ - -1.187542120554475
+ - -0.009465248521578309
+ - 0.6541251656899596
+ - 0.6927457769003927
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.3257950907965386
+ - 4.581777477206518
+ - 1.6288499629620854
+ - 0.5214429552543598
+ - -0.8149204398940023
+ - -1.794763283186179
+ - -1.9964407483407807
+ - -1.530876953298701
+ - -1.6544435877922867
+ - -0.7046260788873548
+ - 1.9059932349088002
+ - 2.691936397441251
+ - 1.4171120869075104
+ - 0.2065817286294525
+ - -1.0871703206676382
+ - -1.6407424452464887
+ - -1.3595370491506567
+ - -0.5142769767431647
+ - -0.02892142883809397
+ - 0.9956337364532235
+ - 1.8798920800258017
+ - 1.9576292781728744
+ - 1.2151785550052032
+ - 1.9605400822966388
+ - 2.0570348606537348
+ - 2.394397579789649
+ - 1.1700461144729235
+ - -1.4913522445698892
+ - -2.6807109301154406
+ - -1.8994692471041605
+ - -1.048040233981699
+ - 0.16402264397726524
+ - 0.5667167028141137
+ - 0.8199791034759502
+ - 1.1867995129319115
+ - 1.2105354879531232
+ - -0.14402269885964014
+ - -1.3693994050736331
+ - -2.0095280123878103
+ - -1.7630928856414436
+ - -0.7602383608037911
+ - 0.5092680617986195
+ - 1.0889633584945995
+ - 1.118153002260208
+ - 1.5852052092386468
+ - 1.4573613261635803
+ - -1.3088865211599632
+ - -2.7223372484971846
+ - -2.024205195639609
+ - -1.5324912991406756
+ - -0.3785931879170203
+ - 0.9458786606981759
+ - 1.8548837433146874
+ - 2.1523695093754944
+ - 2.6132045337724517
+ - 1.4854018984331712
+ - -1.4990195115200406
+ - -2.6252654461360474
+ - -1.9862180129599187
+ - -1.306290709522152
+ - -0.1813005448885237
+ - 0.13111861017930668
+ - 0.5723910561551561
+ - 1.318404935120114
+ - 1.5536833283754976
+ - 0.17419629498587352
+ - -1.1180940338240126
+ - -1.9336665594994937
+ - -1.8967064926913615
+ - -1.0444914307029065
+ - 0.16796057498119796
+ - 0.5591585624910156
+ - 0.8135105415141487
+ - 1.1397872890459235
+ - 1.1813279239781775
+ - -0.14724550069129347
+ - -1.3708582342284452
+ - -2.1499716733496093
+ - -2.7801832983443613
+ - -1.8712231205755798
+ - 1.0346272959025344
+ - 2.0577020252432896
+ - 1.979771376189964
+ - 1.8176578107189807
+ - 0.8717690026018228
+ - -0.46213157070770616
+ - -1.5884902240704022
+ - -2.1952028461864077
+ - -4.573342696435583
+ - -3.2760312744304785
+ - 2.033410362356895
+ - 3.0508762791743993
+ - 1.9317685021778657
+ - 1.892035082959533
+ - 1.0369583445427355
+ - -0.2789056084007105
+ - -1.4661223069112743
+ - -2.1754444404333495
+ - -2.787684919439427
+ - -1.8439589292458671
+ - 1.139388095777463
+ - 2.1792221496072886
+ - 2.0048497518370194
+ - 1.7563330606310739
+ - 0.9171702016473553
+ - 0.8013946020054977
+ - -0.0037513887890767306
+ - -1.5880795752198502
+ - -2.2198024384537294
+ - -0.8516930609016601
+ - 0.4755098503699062
+ - 1.6029867970216582
+ - 2.0249867267637365
+ - 1.573531564879216
+ - 0.5890683779381302
+ - 0.38014007355297524
+ - -0.2681877708740686
+ - -1.487052689576817
+ - -1.9441498345144619
+ - -0.5505419624811813
+ - 0.779782471336789
+ - 1.8646450925328715
+ - 2.519702728519216
+ - 1.7790490304352262
+ - -0.39227238175596413
+ - -1.291541063780988
+ - -1.7145440541782115
+ - -2.0133110480951335
+ - -1.4457975073629221
+ - -0.23756010230923644
+ - 1.0647997682927457
+ - 2.025171360615368
+ - 2.956553250146825
+ - 1.8294142798249364
+ - -0.09554760399517664
+ - -0.28707783746449217
+ - -1.8023726245541019
+ - -2.745732152085249
+ - -1.117727983773528
+ - 0.1786575158538421
+ - 1.4030866327463036
+ - 2.010668900156221
+ - 1.7497278370573104
+ - 0.8989028488171505
+ - 0.7900358158216658
+ - 0.04096351696787631
+ - -1.6925060536281924
+ - -2.2526800293342486
+ - -0.8358639955824264
+ - 0.4948472286219289
+ - 1.6754529591369396
+ - 2.2830973936550683
+ - 1.610500091511041
+ - -0.059121909205103344
+ - -0.9007409654430415
+ - -1.539328390422564
+ - -2.0288023093769887
+ - -1.6460570840113344
+ - -0.5345796821399468
+ - 0.7993670895727802
+ - 1.880747175593268
+ - 2.4890222666967805
+ - 1.661738415386017
+ - -0.32340887125417517
+ - -1.2964955666258753
+ - -1.7302135071851947
+ - -2.0179327300876375
+ - -1.6337105701314443
+ - -1.8016670493597264
+ - -0.8218415935643435
+ - 1.9035834845411634
+ - 2.735849397358359
+ - 1.5103181468205584
+ - 0.3387801284302013
+ - -0.9832634266713876
+ - -1.8743261207118163
+ - -1.9536062313250693
+ - -1.3785847359184802
+ - -2.326419526634145
+ - -1.4849740117132795
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.6760612711726646
+ - 3.8779627872657683
+ - 2.028211830864815
+ - 1.6258086485942707
+ - 0.5213654948094136
+ - -0.8166401904875539
+ - -1.794650117337057
+ - -2.182138354024609
+ - -2.6930595322167417
+ - -1.6504726444671116
+ - 1.5137568020066323
+ - 2.5749862238375925
+ - 2.013129759768358
+ - 1.4160134615580262
+ - 0.33808489887935916
+ - 0.06340517820812705
+ - -0.4594979224765124
+ - -1.3903498633512703
+ - -1.711706621190436
+ - -0.31862215437508423
+ - 0.9959734218365051
+ - 1.886552107509681
+ - 1.9456312563121838
+ - 1.2127899688074875
+ - 2.0932386221827146
+ - 2.6727016666972907
+ - 1.6568937103647274
+ - -0.6983351410693531
+ - -1.8185924080436742
+ - -1.9277999106252743
+ - -1.9011574017241464
+ - -1.2379918388550741
+ - -1.2453857124039933
+ - -0.35914001060431466
+ - 1.7735563312666764
+ - 2.498041398803293
+ - 1.146753651174992
+ - -0.14049583506110414
+ - -1.3722088405871011
+ - -2.000744566825629
+ - -1.7648834310177581
+ - -0.9343486570235504
+ - -0.9359717397198415
+ - -0.028410372107918656
+ - 2.0384672723306494
+ - 2.0280315706315974
+ - -0.2265119868270898
+ - -1.2471163040011126
+ - -1.6359202591654622
+ - -2.0243166797582584
+ - -1.5420435135302841
+ - -0.37674182138489387
+ - 0.9428138487142145
+ - 1.9615319058491296
+ - 2.612553934916048
+ - 1.797930499474319
+ - -0.5484221907373772
+ - -1.5059595995597779
+ - -1.8052401164183443
+ - -1.9881707495855558
+ - -1.5079013223319528
+ - -1.5890505476206456
+ - -0.5298884039656381
+ - 1.6690041902546326
+ - 2.6040705522022956
+ - 1.394779863113169
+ - 0.17855354538918194
+ - -1.1193256551423805
+ - -1.9260053079085482
+ - -1.8992374094206055
+ - -1.2351741046304865
+ - -1.219783153248387
+ - -0.2722235490697024
+ - 1.651665030085702
+ - 2.44893482118063
+ - 1.145266707952862
+ - -0.14107244297794416
+ - -1.395183241988554
+ - -2.042551719911531
+ - -1.6743682185354882
+ - -0.18533882598569776
+ - 0.4365134049854915
+ - 1.2801798608467745
+ - 1.9787765573035512
+ - 1.8275218613393236
+ - 0.867964213953366
+ - -0.45841889953365267
+ - -1.646498871511991
+ - -3.8486562491771945
+ - -2.896044892471647
+ - -0.04573546289583782
+ - 0.24435056435694108
+ - 1.1301802340659717
+ - 1.9303238473945465
+ - 1.9018865723302387
+ - 1.0326111574518717
+ - -0.27487408303906957
+ - -1.5053987434807368
+ - -2.1646699508450595
+ - -1.7306637525473272
+ - -0.05816711653222333
+ - 0.6198416408223852
+ - 1.3825281611877132
+ - 2.0046137987394475
+ - 1.9631063278508938
+ - 2.2449737765606113
+ - 1.0377747842363843
+ - -1.5614798496162663
+ - -2.711626774406733
+ - -1.8122814084396786
+ - -0.8557556130065748
+ - 0.4731859879623384
+ - 1.5966580135675523
+ - 2.0261807240767538
+ - 1.781146670371307
+ - 1.9740732589852439
+ - 0.8172678458348234
+ - -1.6354680316738224
+ - -2.7031259608472054
+ - -1.6468532630563202
+ - -0.556878442341943
+ - 0.7321471833213067
+ - 1.2560521579992256
+ - 1.2113597888780314
+ - 0.7899310531066548
+ - 0.5163471490198578
+ - -0.6679603833608336
+ - -1.712065658552643
+ - -2.022572255267865
+ - -1.4398338169366751
+ - -0.24190077483537323
+ - 1.0511204753045935
+ - 1.801563775160372
+ - 1.4582748043260163
+ - 1.1937781539767038
+ - 1.03241991536464
+ - -1.6054421035619248
+ - -3.0091775576299296
+ - -1.9274382373206147
+ - -1.115001356499574
+ - 0.1809651668931602
+ - 1.4005431116609568
+ - 2.0098608642588336
+ - 1.9521884215014864
+ - 2.2689624606011765
+ - 1.152654874226905
+ - -1.717793451849557
+ - -2.7694504442165107
+ - -1.8036231105971599
+ - -0.8353688710726087
+ - 0.42371077882691355
+ - 0.8673231015205988
+ - 0.9797801004715969
+ - 0.9909989424777484
+ - 0.8887412287664769
+ - -0.38344121612382775
+ - -1.5386756876761576
+ - -2.0354460700222234
+ - -1.6338038827547106
+ - -0.5323637983841818
+ - 0.760450974522706
+ - 1.2646794157492984
+ - 1.181862892435536
+ - 0.7652843892339075
+ - 0.47032929962078557
+ - -0.694011193910306
+ - -1.7288268537703038
+ - -2.19714568396613
+ - -2.7367535539696757
+ - -1.710743359669418
+ - 1.4326241728135671
+ - 2.4965620046369454
+ - 2.025206095745539
+ - 1.507430939148086
+ - 0.33817024408313595
+ - -0.9838461736570493
+ - -1.8740863863653576
+ - -2.146137646241732
+ - -4.2878559364900735
+ - -3.0105718080677533
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.1353084868783514
+ - 1.9173702770116474
+ - 1.8813848988515134
+ - 2.405895369700456
+ - 1.8958595204948472
+ - 0.5463017853625256
+ - -1.0291852355661173
+ - -2.2778420069718623
+ - -3.0800493815481245
+ - -2.241743606822376
+ - 0.6139246634974089
+ - 1.6742571736794016
+ - 2.0959221274189717
+ - 2.378855701605476
+ - 1.8690124036745572
+ - 1.9954061826008502
+ - 0.7076956462054551
+ - -1.9792123406193833
+ - -3.1283787914090317
+ - -1.7282757528367163
+ - -0.3125318473047261
+ - 1.2433582160050065
+ - 2.253938887156264
+ - 2.288727370523168
+ - 1.5563066717815184
+ - 2.1953579872113127
+ - 1.7207964806228526
+ - 0.4174678247088144
+ - -0.29006304297480096
+ - -1.3861245081395648
+ - -2.3116177998349805
+ - -2.474315578290956
+ - -2.948969758020073
+ - -1.6020237737842233
+ - 1.9170932938182328
+ - 3.228028103173647
+ - 2.2829051618654947
+ - 1.3081757944873251
+ - -0.2339635447398804
+ - -1.6769724246543187
+ - -2.3893922368546487
+ - -2.3087247907935606
+ - -2.9753484146817333
+ - -1.332518737110409
+ - 1.9502874806816894
+ - 2.0773669429189754
+ - 1.0800314821371444
+ - 0.8130967106260376
+ - -0.7042280965106898
+ - -1.9844977440386116
+ - -2.414717432672272
+ - -1.7786623842850933
+ - -0.3820871616848352
+ - 1.1589059799136157
+ - 1.8337722431192243
+ - 1.6202756426695983
+ - 0.7031320791721863
+ - 0.22389182352992193
+ - -1.06044617720263
+ - -2.176690184380204
+ - -2.577514048024916
+ - -3.085047599027922
+ - -1.6339583504262818
+ - 1.573324741781385
+ - 3.0310352665604308
+ - 2.3767124607577665
+ - 1.6097625791788626
+ - 0.14626314730918272
+ - -1.3859684370256988
+ - -2.3121367987386243
+ - -2.473620042746547
+ - -2.8930306426701797
+ - -1.4340862312526181
+ - 1.7457800510289543
+ - 3.170771880517315
+ - 2.2838477964569615
+ - 1.3087808191284203
+ - -0.11561621560356534
+ - -0.5898350163691203
+ - -0.95037503094909
+ - -1.5267427007645742
+ - -1.5493972335590416
+ - 0.09805077444460698
+ - 1.5739343001034996
+ - 2.377408655959244
+ - 2.1321531872562836
+ - 0.9717910732490398
+ - -0.5280115459578223
+ - -1.87289393499433
+ - -1.598580659239366
+ - -2.4122902117626013
+ - -3.0412881964277005
+ - -0.1240418648366126
+ - 1.3992947996855492
+ - 2.325651381361226
+ - 2.2264994729687624
+ - 1.170709085622679
+ - -0.2900216864279643
+ - -0.8067980563605781
+ - -1.0855616236391952
+ - -1.411788416163884
+ - -1.3499086228423889
+ - 0.25837688212402876
+ - 1.6918561082743357
+ - 2.5758566921574184
+ - 3.229001191482129
+ - 1.921042622480795
+ - -1.0660119026893264
+ - -2.4671268059467852
+ - -2.3722440416148984
+ - -2.1249188583391097
+ - -0.9611118844339273
+ - 0.6308194541987755
+ - 1.9409591136469657
+ - 2.615387348770597
+ - 3.2108981026158747
+ - 1.8164942082634068
+ - -1.3183204570890217
+ - -2.7669885851878204
+ - -2.411454777957444
+ - -1.9212263039075168
+ - -0.7823584649118398
+ - -0.5646183951583539
+ - 0.20072600086550418
+ - 1.908054601467246
+ - 2.4322189272843655
+ - 0.729076508684699
+ - -0.8573406178304671
+ - -2.080524359810164
+ - -2.387387799909203
+ - -1.6657524870707014
+ - -0.37698949148068944
+ - -0.05716973939894643
+ - 0.5991170952661434
+ - 2.3142641573127958
+ - 2.235499952963651
+ - -0.9018890734409828
+ - -2.4146187918051716
+ - -2.2803782097770857
+ - -2.2639082278149405
+ - -1.271994400478332
+ - 0.2849896079825138
+ - 1.709109999170629
+ - 2.576599048036063
+ - 3.2863013347344876
+ - 2.0820349557594695
+ - -1.2351725010534977
+ - -2.5362864804038
+ - -2.3743680694483364
+ - -2.109402117041079
+ - -1.1354495853648385
+ - -1.0117295601490224
+ - -0.034042871458035986
+ - 1.8980348144455548
+ - 2.672639633390382
+ - 1.0539932574088453
+ - -0.519360542819784
+ - -1.8750458416182858
+ - -2.4056222905659546
+ - -1.898368497998694
+ - -0.7485158686157551
+ - -0.5135614395034617
+ - 0.28054149398948874
+ - 1.7836981207811617
+ - 2.3528973295625453
+ - 0.6988997717216174
+ - -0.883006711907552
+ - -2.1878359683471302
+ - -2.992210423243367
+ - -2.2188764591494587
+ - 0.4668311696296849
+ - 1.4791358580343357
+ - 2.0115249675981035
+ - 2.3963647453685315
+ - 1.7502189083102075
+ - 0.32855808004572123
+ - -1.2249376588801844
+ - -2.3856894869489205
+ - -5.256351931494387
+ - -3.860491847253006
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.08862143412425555
+ - 0.3910481012825878
+ - 1.052319578750462
+ - 1.7098629075245515
+ - 1.6332613590402578
+ - 0.8344334607564677
+ - -0.3178606378598268
+ - -1.3769686335943356
+ - -1.9588265813785346
+ - -1.542182640183552
+ - 0.0228402566374214
+ - 0.646717516219074
+ - 1.265014876026379
+ - 1.762709520761314
+ - 1.6763167158016203
+ - 1.9016343052726667
+ - 0.8557925181626684
+ - -1.3867244712596003
+ - -2.374712046666676
+ - -1.547834013641767
+ - -0.6763313763526997
+ - 0.4899498542551908
+ - 1.4428922670106887
+ - 1.7691369462960997
+ - 1.5058310270211728
+ - 1.6519951789490261
+ - 1.0370723166661693
+ - 0.6655994723930582
+ - 0.4043726878272087
+ - -0.6121936319441527
+ - -1.5152847514327603
+ - -1.921808257052605
+ - -2.377049985849564
+ - -1.4107606590593542
+ - 1.1825948623144862
+ - 2.1750004349588523
+ - 1.771433976485993
+ - 1.3152037224910615
+ - 0.29054814277289925
+ - -0.8654043378719211
+ - -1.6416096647882272
+ - -1.8762696852198877
+ - -2.5189265116429396
+ - -1.275140161561168
+ - 1.1149495129439255
+ - 1.2415029983788497
+ - 1.127417847237
+ - 1.253853815329389
+ - -0.06401398392620922
+ - -1.1532855268989266
+ - -1.7498933362879345
+ - -1.5745870782425768
+ - -0.7234474457595077
+ - 0.38024458833483615
+ - 0.7865082935843954
+ - 0.8870058637953877
+ - 0.8848479599286295
+ - 0.7826869679249403
+ - -0.3440417246954281
+ - -1.3523439248989702
+ - -1.9198326131885088
+ - -2.3790503208058174
+ - -1.3773292011119795
+ - 0.8902107784930339
+ - 1.9450129376584908
+ - 1.7686305852956896
+ - 1.4861764292959465
+ - 0.5623014081151865
+ - -0.6127186939957605
+ - -1.5165072023640533
+ - -1.9221968209597922
+ - -2.3327037701068023
+ - -1.2814105393728996
+ - 1.063147650217222
+ - 2.138225432936139
+ - 1.7729030897287226
+ - 1.316004776516227
+ - 0.4133933563530225
+ - 0.19937225714852044
+ - -0.2870695903922098
+ - -1.40351278947245
+ - -1.6593550904817296
+ - -0.3870715974537914
+ - 0.7742421043426327
+ - 1.606476440898148
+ - 1.730862721798324
+ - 1.1102285902031606
+ - 0.11000872964877405
+ - -0.35915740912258304
+ - -0.4528896217373452
+ - -2.3105619247424127
+ - -3.026672309240712
+ - -0.5449430600183324
+ - 0.6239529611854685
+ - 1.5285519017961977
+ - 1.7599518850344007
+ - 1.2331154426180113
+ - 0.2865689750165545
+ - 0.03596001016299243
+ - -0.39633763759477003
+ - -1.3404360336732346
+ - -1.5358360226771646
+ - -0.27087309514230756
+ - 0.8783109015536876
+ - 1.746955497228959
+ - 2.2711581071818605
+ - 1.4632550274530425
+ - -0.44113063096618443
+ - -1.3603930596766922
+ - -1.6072269508082515
+ - -1.7284756427933234
+ - -1.1054801822830034
+ - 0.007950310865536346
+ - 1.1105708249558246
+ - 1.8535662105439106
+ - 2.3556202732642286
+ - 1.4453389278837312
+ - -0.6567595786291435
+ - -1.6529468699050789
+ - -1.7073086369946218
+ - -1.6443770589828608
+ - -1.030427756739653
+ - -1.0174439421487527
+ - -0.262099327607401
+ - 1.5439767767901613
+ - 2.152717148960529
+ - 0.9548613642268653
+ - -0.18311075364537183
+ - -1.24660337492809
+ - -1.7619796907065006
+ - -1.5163698294782708
+ - -0.7592804479596629
+ - -0.7330320456470828
+ - 0.02942744705480714
+ - 1.7840006786527223
+ - 1.7687096701589604
+ - -0.2662169590009075
+ - -1.1977671778421366
+ - -1.475251294226357
+ - -1.7650500526649917
+ - -1.2955169601163032
+ - -0.2519711694866714
+ - 0.8929858059251098
+ - 1.7517807055463417
+ - 2.317426638554118
+ - 1.575381052103943
+ - -0.5455490112163469
+ - -1.405372766237931
+ - -1.6125352898462695
+ - -1.7211731640715395
+ - -1.2550932772818253
+ - -1.302624029732514
+ - -0.4015069599384745
+ - 1.4586537927061123
+ - 2.244594713890342
+ - 1.1613391457911193
+ - 0.07778666640621222
+ - -1.0434808232161228
+ - -1.706591540433006
+ - -1.6315437391088843
+ - -1.0084205279061293
+ - -0.9714219111613391
+ - -0.1739816989808551
+ - 1.4332513558272812
+ - 2.0934885724569665
+ - 0.935544020335059
+ - -0.20157094188839442
+ - -1.284469680769138
+ - -1.857624925007775
+ - -1.4974385568571937
+ - -0.08857197734863628
+ - 0.4879413087957498
+ - 1.1790310056935314
+ - 1.7452072409682597
+ - 1.5616533752292034
+ - 0.6872329666376608
+ - -0.4768653099290844
+ - -1.4945833753285267
+ - -3.458811263919822
+ - -2.5924564162143415
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.7638123473351711
+ - -0.7515888430169594
+ - 0.7538075609261281
+ - 1.7762111989934581
+ - 2.0372989753907556
+ - 1.3984900125163078
+ - 0.16263637787977048
+ - -1.1421608291413454
+ - -1.7605765099212078
+ - -1.5412305345787825
+ - -0.46898035147899486
+ - 0.02455373157186086
+ - 1.0465210040036752
+ - 1.9169818303395685
+ - 2.1560672858456345
+ - 2.5515809629021096
+ - 1.3094479612537562
+ - -1.4168252367686538
+ - -2.6472497864303297
+ - -1.9886833239730053
+ - -1.243830949688627
+ - 0.03981692476571152
+ - 1.309440724068665
+ - 2.0076457234088423
+ - 2.0406369702344294
+ - 2.3563871800167866
+ - 1.1233176596555998
+ - 1.1310252620066612
+ - 1.1475751077868659
+ - -0.19156630037050404
+ - -1.4220614161065237
+ - -2.1909972206743666
+ - -2.8044041641628232
+ - -1.7898720730774116
+ - 1.0141365830951228
+ - 2.117417616366939
+ - 2.0177004771249236
+ - 1.8255943660912066
+ - 0.84618755947624
+ - -0.5100193673217343
+ - -1.6379543721255314
+ - -2.2296630217575766
+ - -3.0985104964003867
+ - -1.7156198652000358
+ - 0.835146133502917
+ - 1.0097932140948316
+ - 1.5999632730525166
+ - 2.1080328771445487
+ - 0.45362217206289673
+ - -0.8916799189841667
+ - -1.8580254138626633
+ - -2.005682747827945
+ - -1.2900145843556348
+ - -0.13335245959548808
+ - 0.20125481054885308
+ - 0.606215719101843
+ - 1.3781188807425953
+ - 1.556117490164033
+ - 0.13071608673901633
+ - -1.1728998342851165
+ - -2.099192463603622
+ - -2.693623494739196
+ - -1.6882607747497003
+ - 0.6531261160583403
+ - 1.7712727986665613
+ - 1.9320029041569133
+ - 1.9515280702768256
+ - 1.1303056003374232
+ - -0.1928693807742365
+ - -1.424347041360403
+ - -2.192451904037639
+ - -2.752866567467207
+ - -1.6435891876274145
+ - 0.8928004555716855
+ - 2.083879890833228
+ - 2.0201785711036417
+ - 1.826868859619374
+ - 1.0199585152082935
+ - 0.9442084961920408
+ - 0.16457047925881324
+ - -1.8374607664846403
+ - -2.3889129692826185
+ - -0.9463737572640216
+ - 0.39395008924507285
+ - 1.5697398814982226
+ - 2.054878790887377
+ - 1.65329095943861
+ - 0.6925321128497539
+ - 0.7850528516516967
+ - 0.3436769489364786
+ - -3.1106138797060576
+ - -4.175159016678524
+ - -1.110407969829717
+ - 0.20664054344212643
+ - 1.439766754446897
+ - 2.039858984978783
+ - 1.758920806862475
+ - 0.8847870426554538
+ - 0.7634716676824741
+ - 0.03534303473094392
+ - -1.794125431651508
+ - -2.282356545021067
+ - -0.8229789799591526
+ - 0.526202245160961
+ - 1.715005703583737
+ - 2.331063859157402
+ - 1.6367844341307611
+ - -0.08112089780990046
+ - -0.9448864432314581
+ - -1.5757877628908643
+ - -2.055680953018095
+ - -1.6517445003503644
+ - -0.516499458124958
+ - 0.8332795502570636
+ - 1.919316232772839
+ - 2.534783737290572
+ - 1.6853652135393424
+ - -0.3483890518207729
+ - -1.3434579155290622
+ - -1.7658059669006922
+ - -2.040609841251108
+ - -1.6357288885079004
+ - -1.7911701460308591
+ - -0.7545860317813614
+ - 1.8278283220421356
+ - 2.741675898041843
+ - 1.5123070128456282
+ - 0.3176538165522699
+ - -1.01849438273806
+ - -1.908127487074613
+ - -1.9714558599684946
+ - -1.3742548006507405
+ - -1.5865602188230334
+ - -0.44174778360227823
+ - 2.0191719009195284
+ - 2.051770788120417
+ - 0.17001874195414962
+ - -0.6266287028990203
+ - -1.359224766164392
+ - -2.01954973099444
+ - -1.8123259196088557
+ - -0.8033575443405395
+ - 0.5443213532089447
+ - 1.7251389652795472
+ - 2.3857359228696318
+ - 1.7505311456267232
+ - -0.17075909036669343
+ - -0.9866401532133636
+ - -1.585828464077858
+ - -2.052533409009179
+ - -1.8378014821115733
+ - -2.0485923454789314
+ - -0.866702599374697
+ - 1.6460066647178209
+ - 2.742990630432563
+ - 1.6976738051336844
+ - 0.6133365956551097
+ - -0.7394612136719325
+ - -1.7691466197143222
+ - -2.03134268337508
+ - -1.6153038234384332
+ - -1.731760516136787
+ - -0.6256405049007117
+ - 1.6861787417630274
+ - 2.6767442677488784
+ - 1.4947772335956608
+ - 0.2982157273532828
+ - -1.0120729013001961
+ - -1.6092424024615943
+ - -1.460796807049281
+ - -0.592906009362666
+ - -0.1643400806039785
+ - 0.9262145480222342
+ - 1.8631150831954888
+ - 2.0009233047872517
+ - 1.254573789544653
+ - -0.026232421537665442
+ - -1.3131572584291795
+ - -3.263104713352335
+ - -2.5128973044808336
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.173642207442121
+ - -4.486759773355397
+ - -1.9841981172801715
+ - -1.2201873797372178
+ - 0.07250460058993315
+ - 1.3367515876605693
+ - 2.0178703808522336
+ - 2.030142264114085
+ - 2.3945627217816083
+ - 1.3214659405313898
+ - -1.806887964275232
+ - -2.8137661927620026
+ - -1.875174278243129
+ - -0.945821436940772
+ - 0.31086273818148374
+ - 0.7368240587288248
+ - 0.9172779335137574
+ - 1.075751906594115
+ - 1.0390617510492561
+ - -0.2792946852629795
+ - -1.4843823027281526
+ - -2.054595289940308
+ - -1.7181314988336436
+ - -0.6451818405825703
+ - 0.6566464448809908
+ - 1.1480360628922135
+ - 1.1310962331169467
+ - 1.1226005468830629
+ - 2.3553467945441424
+ - 2.0518402942989784
+ - 1.6338091224852247
+ - 0.6641663905426098
+ - 0.47843136522533314
+ - -0.17207493030329196
+ - -1.6228968480229147
+ - -2.068106222095327
+ - -0.618954845673307
+ - 0.7308355302873066
+ - 1.7709853642806752
+ - 2.0311387873932643
+ - 1.416264456364256
+ - 0.3192331681498936
+ - 0.04645504245291695
+ - -0.5110048608260207
+ - -1.9697317511420294
+ - -1.9031081968486228
+ - 0.7537872477666961
+ - 2.0326605366912576
+ - 1.9358954300715465
+ - 1.9363613879723613
+ - 1.1025510199869828
+ - -0.22098276281132984
+ - -1.440727422102255
+ - -2.1914773518325976
+ - -2.7990954905958563
+ - -1.7785085874347
+ - 1.0364163781813454
+ - 2.141880426532501
+ - 2.0193881712395267
+ - 1.8078914123033574
+ - 0.9889304344899514
+ - 0.8900088973287632
+ - 0.04713300992613903
+ - -1.6224135209708346
+ - -2.293675163000105
+ - -0.9178087995647588
+ - 0.4210325021656357
+ - 1.5836713201436856
+ - 2.049461135117499
+ - 1.6309861494854843
+ - 0.6606200783043676
+ - 0.4666643693483044
+ - -0.22108699617831082
+ - -1.5276769204849514
+ - -2.0249032267300677
+ - -0.6165419514219531
+ - 0.7318707920235884
+ - 1.8510707083481421
+ - 2.5364833825155646
+ - 1.886683772212671
+ - -0.37755515841626985
+ - -1.2332067575902417
+ - -1.701803482912249
+ - -2.043745700510121
+ - -1.5064590235789608
+ - -0.30172494996817506
+ - 1.024750931827036
+ - 2.0229816622666115
+ - 4.465223138999501
+ - 3.28192657128829
+ - -0.9328424000014927
+ - -1.587101574494348
+ - -1.5892763131539671
+ - -2.0498426382325894
+ - -1.629014666097249
+ - -0.486883462670258
+ - 0.8570110934669802
+ - 1.9291235804083644
+ - 2.6131799094529553
+ - 1.907531922869082
+ - -0.5032069454174238
+ - -1.4004145519694495
+ - -1.7749577495244802
+ - -2.030263267719271
+ - -1.6091214440051747
+ - -1.7233038278875954
+ - -0.6199110995403239
+ - 1.6853480534100522
+ - 2.6726664838882486
+ - 1.4878494138282812
+ - 0.28809305567580595
+ - -1.0404421820775314
+ - -1.9127433846934723
+ - -1.9568595269204674
+ - -1.345178475724336
+ - -1.362090007750416
+ - -0.3629411319606619
+ - 1.6819645411044601
+ - 2.5374036270832074
+ - 1.2465371190436096
+ - -0.03463602117137685
+ - -1.3191355957763118
+ - -1.9423214973926246
+ - -1.5657890695124421
+ - -0.28796964072269887
+ - 0.3005847428458876
+ - 1.209802008914556
+ - 1.9763646714281897
+ - 1.8943792146776617
+ - 0.9747206298951905
+ - -0.35791881753251775
+ - -1.5860228109467045
+ - -2.47540568122124
+ - -1.737488460096628
+ - -0.670015799603882
+ - -0.48290748703145864
+ - 1.812880054427394
+ - 3.0992751511181305
+ - 1.6824621115719338
+ - 0.5835774681488263
+ - -0.7709853133227701
+ - -1.7884977868416259
+ - -2.030287831425363
+ - -1.5939527266453835
+ - -1.7323043246508731
+ - -0.7098465106816276
+ - 1.8283015277454289
+ - 2.7228313437679623
+ - 1.475185574302053
+ - 0.26674882114558934
+ - -1.045024038197665
+ - -1.5977188481717404
+ - -1.347465878869549
+ - -0.5657411747699924
+ - -0.10704431622341448
+ - 0.9566188730701383
+ - 1.879809098879311
+ - 1.9966583009380203
+ - 1.2311789077647508
+ - -0.058570113653356896
+ - -1.3436963310488927
+ - -1.9330018992739548
+ - -1.4927219103751432
+ - -0.3057234424512891
+ - 0.3304913718901954
+ - 1.2328082467800952
+ - 1.9885874021471481
+ - 2.0876935691226777
+ - 2.490260979439356
+ - 1.4129254694783755
+ - -1.7571468589134542
+ - -2.7875235709821733
+ - -1.926423377847499
+ - -1.063015310403593
+ - 0.26174378444180724
+ - 1.4744882441287375
+ - 2.045229290549673
+ - 1.936659425451382
+ - 3.667255726667116
+ - 2.5047392923954805
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.3992485736914646
+ - -3.465081469999594
+ - -1.7743521293775493
+ - -1.383569946732873
+ - -0.3951603154569089
+ - 0.7706956113953807
+ - 1.5974528739596585
+ - 1.8980645396838698
+ - 2.330869295350261
+ - 1.4132181203052887
+ - -1.35839368114932
+ - -2.283518093289964
+ - -1.7512951502117684
+ - -1.1928015893530874
+ - -0.22864224280916506
+ - 0.028108832566797953
+ - 0.45092289313400724
+ - 1.1865712102967556
+ - 1.4309753218162735
+ - 0.216910948105776
+ - -0.9246733424584531
+ - -1.6722872556608244
+ - -1.6827239629510413
+ - -0.9695991190275484
+ - 0.07702214495291632
+ - 0.40451389028560353
+ - 0.6654969963554782
+ - 1.036507758285946
+ - 1.6512564836162853
+ - 1.7038623198672707
+ - 1.6395457246653118
+ - 1.025815441526264
+ - 1.0120950160141728
+ - 0.2594266335941378
+ - -1.539834900132416
+ - -2.1460646814219086
+ - -0.9506054627340258
+ - 0.18499260113834462
+ - 1.245293959021582
+ - 1.7580456711389427
+ - 1.5115158575229954
+ - 0.7551684892045999
+ - 0.7278832036133129
+ - -0.03151542914021011
+ - -1.780760782919463
+ - -1.765728925211569
+ - 0.2538395361958916
+ - 1.1760415456141964
+ - 1.4662611540824135
+ - 1.766338271426123
+ - 1.3065564826597935
+ - 0.26790780942983444
+ - -0.8790412577810195
+ - -1.7445303456321282
+ - -2.3110051236622464
+ - -1.574944405233678
+ - 0.5320802426923463
+ - 1.387419892914229
+ - 1.60579289323657
+ - 1.7249761017910645
+ - 1.2682946526415941
+ - 1.320631914780345
+ - 0.4142626220146611
+ - -1.459019659566434
+ - -2.2515725024167477
+ - -1.1734685098076438
+ - -0.0938815437020551
+ - 1.0303491000198213
+ - 1.7022274340590269
+ - 1.637768466621473
+ - 1.0232681724923947
+ - 0.991086910581953
+ - 0.1871577944187673
+ - -1.4357136201960448
+ - -2.103613752408562
+ - -0.9492040504047964
+ - 0.18554696646824242
+ - 1.2714208974573427
+ - 1.8432122194444611
+ - 1.4908119968246263
+ - 0.10366965214890757
+ - -0.4662236315327847
+ - -1.1669655887221906
+ - -1.7423946322808792
+ - -1.5693406823511746
+ - -0.7020559854861559
+ - 0.4613341553936329
+ - 1.483543706508776
+ - 3.4401909519234413
+ - 2.5805122709497264
+ - -0.062268535133661124
+ - -0.3548088161180705
+ - -1.0393198402824777
+ - -1.7056034691390236
+ - -1.6396079801929695
+ - -0.8486155476680259
+ - 0.30199870596333067
+ - 1.3647260189547392
+ - 1.9455699965251927
+ - 1.5364802599837308
+ - -0.007713059338825754
+ - -0.6253347281056094
+ - -1.2536812246975026
+ - -1.7609425350900618
+ - -1.6848184489986164
+ - -1.9145034534669516
+ - -0.8665208145719222
+ - 1.3825429402227287
+ - 2.3743084265305616
+ - 1.5556212151274893
+ - 0.6911982409470331
+ - -0.47438258368267355
+ - -1.4335088227527029
+ - -1.769923196617475
+ - -1.5166436658790443
+ - -1.6674463718698873
+ - -0.6692984783538878
+ - 1.43934419306101
+ - 2.353590377628723
+ - 1.4025843784676761
+ - 0.4265566032909321
+ - -0.7035828857598513
+ - -1.173491340997795
+ - -1.099572671147307
+ - -0.6403381366705646
+ - -0.36742272571436724
+ - 0.6425607596664697
+ - 1.5293153855896446
+ - 1.7605993741663
+ - 1.2142259491283873
+ - 0.14941826049497903
+ - -0.9779069737469234
+ - -1.6506628909002317
+ - -1.3082739876341027
+ - -0.9922727029852902
+ - -0.8480505259783925
+ - 1.4298461355872745
+ - 2.6487945151443144
+ - 1.6649372820015156
+ - 0.9223756898675116
+ - -0.22045391417580157
+ - -1.269013978313661
+ - -1.7649985623277948
+ - -1.6747960841744445
+ - -1.9339718792930705
+ - -0.9646731560996478
+ - 1.5182488392455693
+ - 2.424224405318986
+ - 1.5476062892834297
+ - 0.6732165292314332
+ - -0.43664281828046353
+ - -0.8371503091454239
+ - -0.8978389228700608
+ - -0.8247190797294965
+ - -0.6977356206535995
+ - 0.3962864041910889
+ - 1.3852718701036777
+ - 1.7812442547817677
+ - 1.3908953581911285
+ - 0.40511483847974333
+ - -0.7280176700425384
+ - -1.1791809401286872
+ - -1.0691425693291647
+ - -0.6231557655542299
+ - -0.32874489077866564
+ - 0.6650921605686728
+ - 1.5435416932060348
+ - 1.9156784635988624
+ - 2.3746340646525117
+ - 1.4693454240510055
+ - -1.290516057402273
+ - -2.2201916225199283
+ - -1.7659856587103067
+ - -1.2756820134554736
+ - -0.23384705502682385
+ - 0.9142695319488273
+ - 1.661678484901371
+ - 1.8604741512931229
+ - 3.6959734266749424
+ - 2.5876680274774424
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.0457681259135392
+ - -1.7360509082966449
+ - -1.620084769810793
+ - -2.026335320986866
+ - -1.5611115606223689
+ - -0.40447347645403303
+ - 0.9183945847656015
+ - 1.9486475933244656
+ - 2.6228340963744334
+ - 1.8944420437835336
+ - -0.5686332600059305
+ - -1.477859084008895
+ - -1.7932661720214826
+ - -1.994574296696263
+ - -1.5307517439739018
+ - -1.6203079494047263
+ - -0.5520457785516971
+ - 1.6694480235263074
+ - 2.615960564685421
+ - 1.4157680820301268
+ - 0.20658141984596387
+ - -1.0962986868933402
+ - -1.9181779764564322
+ - -1.9098752343800267
+ - -1.260926086573007
+ - -1.2539743233836185
+ - -0.29514945505727014
+ - 1.655771499757511
+ - 2.4663424249766814
+ - 1.2139501285314545
+ - 1.9628395084246797
+ - 2.0635938921304144
+ - 2.44866194891812
+ - 1.3153372708494435
+ - -1.6370788048202098
+ - -2.7336234249230347
+ - -1.9041691488790051
+ - -1.0537206923777913
+ - 0.2540222650748694
+ - 1.4531155043302209
+ - 2.01948355366947
+ - 1.9151299569975297
+ - 2.4555233262703675
+ - 1.0813777358905505
+ - -1.6764148565349521
+ - -1.7789265080603145
+ - -0.864767651148959
+ - -0.6005155728060196
+ - 0.6475614438368332
+ - 1.7034790065571606
+ - 2.0295557335818635
+ - 1.4593346656644721
+ - 0.26545210146157017
+ - -1.0313695914030758
+ - -1.6089178766672136
+ - -1.3976445426960977
+ - -0.5441739410773228
+ - -0.11080392514458783
+ - 0.944230995713032
+ - 1.8575616738010077
+ - 2.1599053590079396
+ - 2.5750839615374117
+ - 1.3492346533342112
+ - -1.3535401956087625
+ - -2.5789346625523386
+ - -1.9918412668430203
+ - -1.3131375928618054
+ - -0.06602733070734462
+ - 1.2137411687358592
+ - 1.9631718474570121
+ - 2.0628986323350635
+ - 2.402120874932664
+ - 1.1751411960744065
+ - -1.4925053322844934
+ - -2.6849151580101505
+ - -1.904863317360967
+ - -1.0541833565979142
+ - 0.15917772796146812
+ - 0.573921857556871
+ - 0.8488726255015743
+ - 1.2461638838086948
+ - 1.2353436216937297
+ - -0.13954358940860073
+ - -1.3685686182315158
+ - -2.0127109789560285
+ - -1.768898752258274
+ - -0.7661521649713439
+ - 0.5052281286356534
+ - 1.6986298861482418
+ - 1.4315888369585148
+ - 1.9573725992157844
+ - 2.453576293492302
+ - 0.047508274078984225
+ - -1.2247449357614797
+ - -1.9742498510439794
+ - -1.8530957350245416
+ - -0.935994254753777
+ - 0.3057087165632127
+ - 0.7555052507124949
+ - 0.9610863943091991
+ - 1.1470242611831052
+ - 1.0650509733266151
+ - -0.27429426501463244
+ - -1.4653600008235
+ - -2.1799211320594347
+ - -2.722541326226512
+ - -1.6057555002983188
+ - 0.9373015905141441
+ - 2.1269146437874604
+ - 2.007809852577895
+ - 1.762461856608777
+ - 0.7568043838080328
+ - -0.586217843880589
+ - -1.6682777863602298
+ - -2.2034236359537314
+ - -2.6951560271090402
+ - -1.5106691626474926
+ - 1.1452781149763498
+ - 2.3695638751778807
+ - 2.0318293110108994
+ - 1.5833394439303827
+ - 0.5997692138776877
+ - 0.39870003946950955
+ - -0.21953493513303332
+ - -1.583599420175533
+ - -1.9956116036989782
+ - -0.559594661168298
+ - 0.7752346181512789
+ - 1.7812306475731765
+ - 2.002608033737785
+ - 1.3614903585383136
+ - 0.2562391776805429
+ - -0.03819824981995715
+ - -0.5540279346859275
+ - -1.9317928057034688
+ - -1.860380704411955
+ - 0.8063390725992783
+ - 2.098318231823766
+ - 1.9387533962255503
+ - 1.8872814414234513
+ - 1.0224970052351503
+ - -0.29670988005888016
+ - -1.4795910889044546
+ - -2.180010386581783
+ - -2.77010860707438
+ - -1.7416352738523357
+ - 1.0817462622316392
+ - 2.185684158163383
+ - 2.0091250184530645
+ - 1.7489285036344775
+ - 0.9004316856132696
+ - 0.77933761231114
+ - -0.01838075505905464
+ - -1.584911592451586
+ - -2.20795172991986
+ - -0.8362983174192009
+ - 0.4931547003766268
+ - 1.6152875774619806
+ - 2.026488312636302
+ - 1.5636618963340654
+ - 0.5710092733824872
+ - 0.3569116621006639
+ - -0.28284413247342294
+ - -1.481647874328112
+ - -1.9291591648579924
+ - -0.5339123755035355
+ - 0.7968237815242778
+ - 1.8763998029716997
+ - 2.5536886500556815
+ - 1.8787366878963014
+ - -0.4456028933645873
+ - -1.31602887543543
+ - -1.725426790337431
+ - -2.0130565553317727
+ - -1.4344702226225559
+ - -0.22014099820994937
+ - 1.080785307402805
+ - 2.0343728961950607
+ - 4.461631093930022
+ - 3.2703062322436858
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.1439671685687063
+ - 1.2906291965577223
+ - -0.5101368998401049
+ - -1.619976441465554
+ - -2.036150198951126
+ - -1.5533700335423715
+ - -0.4059177173191119
+ - 0.8910427855927928
+ - 1.462370492736604
+ - 1.3738879493538518
+ - 0.6852513282233484
+ - 0.3159074603637048
+ - -0.8146129801558234
+ - -1.7932468456239108
+ - -2.1831714934185604
+ - -2.6282819803052075
+ - -1.4140234084368986
+ - 1.279810145537731
+ - 2.508683463387464
+ - 2.0127845848047254
+ - 1.4173210913806187
+ - 0.20889375320639608
+ - -1.0952513052292139
+ - -1.9198337880069205
+ - -2.1101282168136635
+ - -2.4837779589853106
+ - -1.2546630628717665
+ - 1.4342201953535323
+ - 2.6437537713731496
+ - 1.9478967822457516
+ - 1.217518867468122
+ - 2.0999953707242485
+ - 2.7328818372431023
+ - 1.8019715083792152
+ - -0.8129003453883219
+ - -1.8569582230961472
+ - -1.9330110897002768
+ - -1.905105644470679
+ - -1.0562794792604173
+ - 0.26186026487797454
+ - 1.4586738832682289
+ - 2.180194538182413
+ - 3.0778052753091685
+ - 1.7690769877751726
+ - -0.5928310770410861
+ - -0.7746861283234554
+ - -1.6833494800843858
+ - -2.343631936638214
+ - -0.685570101457963
+ - 0.6531255418199283
+ - 1.715620712897391
+ - 2.022647606362992
+ - 1.4579992177511942
+ - 0.39777274754139225
+ - 0.13828586345561986
+ - -0.38814541224481225
+ - -1.4967704135981912
+ - -1.8076149002966297
+ - -0.37433458223200405
+ - 0.9485180988321241
+ - 1.9693576035300162
+ - 2.57285878503022
+ - 1.6743410046984253
+ - -0.45370805616390997
+ - -1.4852241795277759
+ - -1.8115840720242096
+ - -1.9929539568824668
+ - -1.3163574897266976
+ - -0.05596372159916219
+ - 1.2201382626393469
+ - 2.101873606909378
+ - 2.6830193086070944
+ - 1.6623297016777112
+ - -0.7036726976732031
+ - -1.828816557539826
+ - -1.9357693802653277
+ - -1.906498717745444
+ - -1.238891343262275
+ - -1.2464156357795622
+ - -0.3919743992658399
+ - 1.8741821844477267
+ - 2.526444719900408
+ - 1.1476102199805729
+ - -0.1448303119300824
+ - -1.3798843460052537
+ - -2.008379153602426
+ - -1.7691914268914455
+ - -0.933852255144232
+ - -1.3213222092538655
+ - -0.7389702173908803
+ - 3.2083001699718836
+ - 4.346795619977173
+ - 1.2972359411702568
+ - 0.042305403652996176
+ - -1.23572093237735
+ - -1.9710378004583278
+ - -1.854018253732407
+ - -1.113820003260608
+ - -1.0758368655417436
+ - -0.26589886892031955
+ - 1.8462570627088561
+ - 2.440632500544135
+ - 1.033665226736286
+ - -0.2780687804537418
+ - -1.5120258961835373
+ - -2.111276156056652
+ - -1.553834578268236
+ - -0.12312735981172465
+ - 0.6170150511786795
+ - 1.3881536169640536
+ - 2.0108263831853095
+ - 1.769550938178126
+ - 0.7453418391228375
+ - -0.5925313053568824
+ - -1.747265804574456
+ - -2.357691708495985
+ - -1.633259735135171
+ - 0.14325130459884042
+ - 1.0300095896376567
+ - 1.6064349229555104
+ - 2.0348642019171894
+ - 1.7873236880502454
+ - 2.017386232448366
+ - 0.9403046717226101
+ - -1.78409850630336
+ - -2.764683755791198
+ - -1.6512780754960923
+ - -0.5551601359625773
+ - 0.7844031114128188
+ - 1.780941531128931
+ - 2.005149685705186
+ - 1.5594045591519525
+ - 1.8782529938933559
+ - 0.6497569761446463
+ - -1.9282994583335422
+ - -1.9833711916358137
+ - -0.3884692218069811
+ - 0.24870694244444433
+ - 1.149105939785135
+ - 1.939130419329275
+ - 1.8967588481699598
+ - 1.015776540732066
+ - -0.2960971794516902
+ - -1.5239449483334615
+ - -2.1645923695083553
+ - -1.6561501829171656
+ - -0.051216315750892694
+ - 0.6524981118139043
+ - 1.3996776299933014
+ - 2.0102767659181437
+ - 1.9552563741804998
+ - 2.23187336759405
+ - 1.0254680390113067
+ - -1.5695637723984024
+ - -2.716688972886721
+ - -1.8051175631271332
+ - -0.8377257941651624
+ - 0.4943551349930172
+ - 1.6116152732090254
+ - 2.0285382382405492
+ - 1.769967905992679
+ - 1.9571380422716536
+ - 0.8031480831856191
+ - -1.6409907970147104
+ - -2.7036877668758508
+ - -1.6366159622917773
+ - -0.5372959405306864
+ - 0.7546277181283549
+ - 1.300198761605148
+ - 1.2827855417723302
+ - 0.8025580460030225
+ - 0.5007072280095645
+ - -0.6886937564980051
+ - -1.7254691899593653
+ - -2.022841562933145
+ - -1.4268153148995433
+ - -0.22127715868526998
+ - 1.072515726205768
+ - 2.803663493300297
+ - 2.197706437814144
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.3110268490878907
+ - 4.3722521080705254
+ - 0.9119997846662175
+ - -0.6737239102475829
+ - -1.9753191824062182
+ - -2.407324292952036
+ - -1.8014270526298837
+ - -0.5842843451140103
+ - -0.30036529578102095
+ - 0.3699836544340501
+ - 1.9171869638657584
+ - 2.2755682201889194
+ - 0.547635575885582
+ - -1.0302569866307123
+ - -2.2817459257648256
+ - -3.0017101828676336
+ - -1.9808969052556475
+ - 0.45371421066379264
+ - 1.6409101556397911
+ - 2.0985328198940367
+ - 2.3824716260514203
+ - 1.6410228835016385
+ - 0.17206136259865626
+ - -1.3611290909445337
+ - -2.4556675256377516
+ - -3.154065789705119
+ - -1.9805190043284115
+ - 0.7546925332276615
+ - 2.0617744581839452
+ - 2.261183869173435
+ - 2.2961112109044586
+ - 1.5630631113332258
+ - 2.2467093719497
+ - 1.8239556431649955
+ - 0.37199947912093456
+ - -0.30193357611006216
+ - -1.3920117215152201
+ - -2.314023992751534
+ - -2.242621822042438
+ - -1.1796286327595862
+ - 0.3835071575770362
+ - 1.8362162281897965
+ - 2.876213043417319
+ - 2.031006519153127
+ - 0.8236812200923882
+ - 0.604998104199367
+ - -2.1205678772331673
+ - -3.64316042538007
+ - -2.008129891079277
+ - -0.743250066951677
+ - 0.8467734841265632
+ - 2.066882977088882
+ - 2.3902437789943187
+ - 1.9157075666276777
+ - 2.097387549338352
+ - 0.8827733359968325
+ - -2.14281007191077
+ - -3.2133085858111983
+ - -1.7726433986501586
+ - -0.37380630985455326
+ - 1.166412952835306
+ - 1.8062912782622425
+ - 1.5493144053383334
+ - 0.7111352295254055
+ - 0.2078810559381014
+ - -1.0672700152380854
+ - -2.1793790478109107
+ - -2.3568121212329123
+ - -1.492880304855563
+ - 0.007200811241937771
+ - 1.5223301479849993
+ - 2.207852248885165
+ - 1.7264166652305466
+ - 0.4083284673244827
+ - -0.3056958657266113
+ - -1.3963132121877557
+ - -2.3160671368719177
+ - -2.4714778318721944
+ - -2.9601721820264593
+ - -1.696075035839084
+ - 2.0365757505248583
+ - 3.2542262725879447
+ - 2.280330140080139
+ - 1.299092049099866
+ - -0.24567231912336068
+ - -1.6861341104787142
+ - -2.39207951414775
+ - -2.3039716251081237
+ - -4.386126609359726
+ - -3.0043429058554856
+ - 3.687613014587836
+ - 5.2233040479063995
+ - 2.3426795134650282
+ - 1.480239377429497
+ - -0.023312091562850478
+ - -1.5207479099869603
+ - -2.354393852456433
+ - -2.40811451953825
+ - -2.852846527729276
+ - -1.5915692439537117
+ - 2.0984708300005384
+ - 3.2906090579676914
+ - 2.224040125114684
+ - 1.1636954136544517
+ - -0.2984282938486511
+ - -0.7845597646213717
+ - -1.0329768237274717
+ - -1.3005245800004308
+ - -1.2947174466415519
+ - 0.2665640975957221
+ - 1.6980239038225353
+ - 2.4034454277998702
+ - 2.048354089449194
+ - 0.8149198565365314
+ - -0.7062069391884714
+ - -1.2712445347767787
+ - -1.288594923571333
+ - -1.0463906189095127
+ - -0.8093553980076172
+ - 0.642413897999349
+ - 1.9474989904556674
+ - 2.616058523258581
+ - 3.27135216482613
+ - 1.988838838385504
+ - -1.4838306018144145
+ - -2.8241175883938183
+ - -2.410661361407284
+ - -1.9133141156906484
+ - -0.5896800073975655
+ - 0.9983217492124457
+ - 2.1465590751389074
+ - 2.5881706324974147
+ - 3.5144109581443486
+ - 1.8348797228388725
+ - -1.3516813939815318
+ - -1.5351959314081034
+ - -1.6409065061898152
+ - -1.9425501788026338
+ - -0.09610283544554506
+ - 1.4226512321587492
+ - 2.3343471110809855
+ - 2.216646851275192
+ - 1.1466735549032474
+ - -0.3203478828999708
+ - -0.828618027720087
+ - -1.06648569640729
+ - -1.333002809976451
+ - -1.296429338980105
+ - 0.2863500826761029
+ - 1.7125005825925612
+ - 2.582176178778393
+ - 3.231942402583881
+ - 1.9159301148248509
+ - -1.085902002814106
+ - -2.492344416009592
+ - -2.3781636191881605
+ - -2.112527608722745
+ - -0.9356701698844908
+ - 0.6580979240291773
+ - 1.958335272978639
+ - 2.616910673664346
+ - 3.207862661043227
+ - 1.8078726771096927
+ - -1.3361033713450308
+ - -2.7874799527385643
+ - -2.4129678275888717
+ - -1.905018856818853
+ - -0.7536482386972039
+ - -0.5208750490549342
+ - 0.21962145262321311
+ - 1.9931053705166115
+ - 2.431784712067348
+ - 0.7026514432439858
+ - -0.8838584350694693
+ - -2.0957051701783365
+ - -2.3844936878253833
+ - -1.6461451662279787
+ - -0.34709091075549375
+ - 0.0730932744969741
+ - 0.31719335376189556
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.9127206207181606
+ - 3.9322639299652913
+ - 1.1248104413297295
+ - -0.050523305566831496
+ - -1.2086443913733496
+ - -1.8356967063624818
+ - -1.6693254383798812
+ - -0.9411341012155645
+ - -0.8763208159215458
+ - -0.16151451977096018
+ - 1.6776202796805637
+ - 2.185631126404867
+ - 0.8740747309223839
+ - -0.3445908996302633
+ - -1.4621260605162831
+ - -2.0187374866442225
+ - -1.4574470607499084
+ - -0.03978245587833324
+ - 0.684630318324492
+ - 1.3428048401385713
+ - 1.8636498064099865
+ - 1.5835599514424994
+ - 0.6026473338670193
+ - -0.6308644590785953
+ - -1.6671571892285402
+ - -2.22981382611233
+ - -1.519345414160068
+ - 0.20528293012856935
+ - 1.0589065436561824
+ - 1.5332120367135977
+ - 1.871691466702076
+ - 1.587758180061892
+ - 1.772355659459068
+ - 1.1465736512593123
+ - 0.6951816116044875
+ - 0.4193629769480119
+ - -0.6570521275354196
+ - -1.6035548603513228
+ - -1.8628427244087409
+ - -1.2993495504944987
+ - -0.18092820281950425
+ - 1.0111958384861568
+ - 1.7157067079879036
+ - 1.3695308662477916
+ - 1.0675096243956683
+ - 0.9166780333818841
+ - -1.4939161887360426
+ - -2.780888345128356
+ - -1.7697786960057336
+ - -1.0094580549124834
+ - 0.18874222143006486
+ - 1.3068342122523697
+ - 1.8556381958550632
+ - 1.7884728414552107
+ - 2.0742434881251635
+ - 1.047475912644629
+ - -1.5894062598825294
+ - -2.554191847770252
+ - -1.6524610667266773
+ - -0.7500176007760511
+ - 0.4139242547313696
+ - 0.827366760885239
+ - 0.917766916969096
+ - 0.8989326953486082
+ - 0.7914055201247668
+ - -0.3749825202061638
+ - -1.432592810690187
+ - -1.8770710715048338
+ - -1.4930036347056714
+ - -0.4695529900950877
+ - 0.7232946840106524
+ - 1.1917905142509464
+ - 1.102172782388661
+ - 0.6893570194294218
+ - 0.4045466105908447
+ - -0.6603389627482973
+ - -1.6050839997047792
+ - -2.023702361871114
+ - -2.516656866448345
+ - -1.5678704027015207
+ - 1.3341048895910932
+ - 2.3147759056802966
+ - 1.8654131117590302
+ - 1.3748347917329553
+ - 0.290000851200306
+ - -0.926052198329115
+ - -1.735879276245987
+ - -1.9729447320022697
+ - -3.934347290330964
+ - -2.759800457994409
+ - 2.4880622017346012
+ - 3.6014286367517516
+ - 1.8702038367816505
+ - 1.4855140973104617
+ - 0.4592944942355497
+ - -0.7728229539761424
+ - -1.6644858628989445
+ - -2.008286595056047
+ - -2.474416415926164
+ - -1.5110988329430153
+ - 1.4078253120530437
+ - 2.385232470794895
+ - 1.8528263570964603
+ - 1.2895165831202662
+ - 0.2881117766872491
+ - 0.029019980663534884
+ - -0.4409190109445744
+ - -1.2715642566172376
+ - -1.5549371163607622
+ - -0.2720331025617335
+ - 0.9371607549125441
+ - 1.747272640690571
+ - 1.7872348508568896
+ - 1.0585018806129682
+ - -0.03373707148604084
+ - -0.3685297789360312
+ - -0.6692619904449308
+ - -1.1177931420205165
+ - -1.2238323963633426
+ - 0.02404431893065263
+ - 1.180917013389301
+ - 1.9560720944360601
+ - 2.5311069332214564
+ - 1.6506471423321403
+ - -0.8084223609048441
+ - -1.7852201884854926
+ - -1.8008185150235538
+ - -1.7245333092412864
+ - -0.9049315472283134
+ - 0.31699429989332967
+ - 1.3945234707788423
+ - 2.0168497010760795
+ - 2.832123928769849
+ - 1.6079723839240951
+ - -0.6179690506423939
+ - -0.7826639792184901
+ - -1.5132589262115688
+ - -2.0683709845588374
+ - -0.5466175827146434
+ - 0.6857515132972857
+ - 1.6274392293329714
+ - 1.85231495446747
+ - 1.27928971040838
+ - 0.2705275224277712
+ - 0.005149750999987828
+ - -0.43493403097827743
+ - -1.332625816425946
+ - -1.5705420256937404
+ - -0.25645949933539663
+ - 0.9520653278787579
+ - 1.8560577107661145
+ - 2.407288957910489
+ - 1.5433796281486798
+ - -0.48847668633249186
+ - -1.4673154650396891
+ - -1.7077175709590517
+ - -1.8162480315629705
+ - -1.1426616417871074
+ - 0.03793490818852129
+ - 1.1943848628652423
+ - 1.9637196202239002
+ - 2.4902281323744604
+ - 1.520618563189592
+ - -0.7144487901153785
+ - -1.7718803039948416
+ - -1.8088894129746953
+ - -1.7230979246953089
+ - -1.0596789670871212
+ - -1.0366986871388335
+ - -0.2784869229377369
+ - 1.7088115352325153
+ - 2.2719252646074066
+ - 0.9821621771976838
+ - -0.22252448702312888
+ - -1.3360052800073725
+ - -1.8619908536079137
+ - -1.5839179165634707
+ - -0.7713701102556211
+ - -1.021569687159524
+ - -0.5370509924596887
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.6869221754931893
+ - 5.0535158828676146
+ - 1.7090806688797073
+ - 0.4156258909122786
+ - -1.0619147631456523
+ - -2.074142749897344
+ - -2.187871058262339
+ - -1.5691243172171538
+ - -1.6506876788374827
+ - -0.6352267098087958
+ - 2.1156275222794467
+ - 2.9291632558396556
+ - 1.4534400998858947
+ - 0.06071135428952194
+ - -1.3685451371470982
+ - -2.0052177562889293
+ - -1.5925947807834515
+ - -0.438613083785892
+ - 0.19531146136620398
+ - 1.2545296294698702
+ - 2.1535926914369847
+ - 2.1282643792997207
+ - 1.1620278210724413
+ - -0.2974113178610085
+ - -1.6740999622768686
+ - -2.340554618284427
+ - -1.7259940773635722
+ - -0.14584127830698207
+ - 0.6726442699793075
+ - 1.5374075655562995
+ - 2.2380882635651718
+ - 2.1979576218604686
+ - 2.5625524877899326
+ - 1.3133643745729855
+ - 1.2054263197967416
+ - 1.1367442907028358
+ - -0.32969317401388065
+ - -1.6475530387497963
+ - -2.260683018122522
+ - -1.8761456022825787
+ - -0.6874970149617629
+ - 0.7455710933643671
+ - 1.4512449552107665
+ - 1.3645477749842942
+ - 1.65458869721113
+ - 1.5004156800800155
+ - -1.562329592117562
+ - -3.1449762920834132
+ - -2.243033903166819
+ - -1.5923447496410503
+ - -0.25306424532447486
+ - 1.201808260875106
+ - 2.1303163307218966
+ - 2.3551533432941554
+ - 2.8282908504963804
+ - 1.5655248864284228
+ - -1.7503615626457378
+ - -2.991989599550631
+ - -2.1740044049002125
+ - -1.321938361528974
+ - -0.017570723720162957
+ - 0.3735551228341624
+ - 0.7679210907463052
+ - 1.3796638809026027
+ - 1.5400557735061708
+ - 0.024160361558886453
+ - -1.3846965236764854
+ - -2.202420493275292
+ - -2.048813459266707
+ - -1.0153205271634884
+ - 0.37072977562849163
+ - 0.8447225011010924
+ - 1.0266480794537387
+ - 1.1646311964700664
+ - 1.1078114426676675
+ - -0.3334136727981055
+ - -1.6492516105231925
+ - -2.4285045940060392
+ - -3.108258185776933
+ - -2.0516856199699167
+ - 1.2840348724468609
+ - 2.4453135505673553
+ - 2.236867509098006
+ - 1.9455050019472926
+ - 0.8147861084395889
+ - -0.6792689713712546
+ - -1.8713603940756807
+ - -2.4497040439611415
+ - -5.047198589881868
+ - -3.5967362232593136
+ - 2.480698326219336
+ - 3.67983432836671
+ - 2.1986515727131226
+ - 2.0425446839182015
+ - 1.00579815966812
+ - -0.4784657364439533
+ - -1.7471633836380716
+ - -2.444662473112281
+ - -3.1009428329984616
+ - -2.01092863015311
+ - 1.3943968668994031
+ - 2.568510430310718
+ - 2.253604468836889
+ - 1.8673999568379531
+ - 0.8517768886725579
+ - 0.6729231955044
+ - -0.14431405893407992
+ - -1.7223196962347886
+ - -2.3361974337062072
+ - -0.7924059201974287
+ - 0.6939041802646962
+ - 1.8870167277552086
+ - 2.249270065621197
+ - 1.642036350336479
+ - 0.47699977709588515
+ - 0.19676235467480832
+ - -0.4364248399261545
+ - -1.5894118872622756
+ - -2.0018895890698603
+ - -0.4482012945579926
+ - 1.0239397528959326
+ - 2.170566189971973
+ - 2.897181184352161
+ - 2.0018682467338436
+ - -0.5837460707559113
+ - -1.6412658223392942
+ - -1.9965452870772018
+ - -2.2195220020289352
+ - -1.487076136820143
+ - -0.09520381178630535
+ - 1.3283729562687725
+ - 2.322962451309066
+ - 3.3553416795106408
+ - 2.029906895669041
+ - -0.2770333644558267
+ - -0.4883849919256154
+ - -1.9771805739093442
+ - -2.9361525450107315
+ - -1.1006511119388074
+ - 0.3675650445356447
+ - 1.6830986936084227
+ - 2.2582575008166628
+ - 1.85865405968661
+ - 0.8310212558508757
+ - 0.6558779092291086
+ - -0.10536836471030134
+ - -1.8283517557961124
+ - -2.3684217944524666
+ - -0.7743136528876935
+ - 0.7146889175376993
+ - 1.9818626304985174
+ - 2.6615926027163925
+ - 1.8279372294999996
+ - -0.20539644552335892
+ - -1.2158226706768829
+ - -1.8216312158724903
+ - -2.2617221163297136
+ - -1.7290478464196646
+ - -0.4305359240154761
+ - 1.0444673394570132
+ - 2.186347478395006
+ - 2.8586812272064916
+ - 1.863079014065004
+ - -0.49662380443371396
+ - -1.6410879091001964
+ - -2.012105890129003
+ - -2.222890798481495
+ - -1.6922472642590376
+ - -1.8239674108387998
+ - -0.7697548897871752
+ - 2.1236238682650246
+ - 2.993165865452582
+ - 1.5652407968411874
+ - 0.2092781420815342
+ - -1.2421085691016607
+ - -2.1484517828118452
+ - -2.1250477940838666
+ - -1.3886435033726399
+ - -2.2536413654218737
+ - -1.401693086481678
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.3946512269375498
+ - -0.2043536739193473
+ - 1.0796167926328497
+ - 2.0778505927453508
+ - 2.1847077052082335
+ - 1.326076492578072
+ - -0.09700891287588116
+ - -1.5041319491298955
+ - -2.2194196369309216
+ - -1.838398501929545
+ - -0.2614324687512255
+ - 0.4060011498233647
+ - 1.380209777273576
+ - 2.192471233339712
+ - 2.2804882816748124
+ - 2.6490604468142727
+ - 1.2867460329163658
+ - -1.671252052534512
+ - -2.9916646761639387
+ - -2.104449011597223
+ - -1.1395694419172953
+ - 0.320033559722028
+ - 1.642237727354669
+ - 2.2495778277730625
+ - 2.109509545567702
+ - 2.3833384823184725
+ - 1.0574150988930207
+ - -1.7797333067347076
+ - -3.0269399044890752
+ - -1.9494771327024893
+ - -0.8197336249271
+ - 0.597480862778314
+ - 1.1378845197014011
+ - 1.2056058539132963
+ - 1.311296211084453
+ - 2.5597540323290344
+ - 2.256868573465484
+ - 1.8678664869748072
+ - 0.6725869425581631
+ - -0.82335558311376
+ - -1.9553720563279284
+ - -2.444755079866558
+ - -3.3438433197495825
+ - -1.7790604622414745
+ - 1.1652841147696562
+ - 1.3444186488023215
+ - 1.6217312662024448
+ - 1.9964895940997622
+ - 0.22748255816716667
+ - -1.2216776978486068
+ - -2.1501075249683406
+ - -2.130624479477557
+ - -1.1952051360561893
+ - 0.15197478065279124
+ - 0.5943676539078792
+ - 0.8928964362967544
+ - 1.344644272183553
+ - 1.3872585896412997
+ - -0.13160029565660508
+ - -1.5072691214452112
+ - -2.3945579574481513
+ - -3.021507393696015
+ - -1.824878068685869
+ - 0.9223716650583168
+ - 2.2173448239598446
+ - 2.204874544626336
+ - 2.045306502368729
+ - 1.003891408243462
+ - -0.48420640818701255
+ - -1.7542527184300372
+ - -2.450726679754765
+ - -3.0282169686455767
+ - -1.7405798340726506
+ - 1.1677552992823164
+ - 2.517811720330924
+ - 2.259213449441204
+ - 1.8690981359920225
+ - 0.8489596687177087
+ - 0.6749095880647137
+ - -0.07722938638509658
+ - -1.9283007698345886
+ - -2.406878325524447
+ - -0.7898330225349077
+ - 0.7000292121435333
+ - 1.8940641547378394
+ - 2.2541238294628974
+ - 1.6426209053124496
+ - 0.4730812798604548
+ - 0.24329789769892365
+ - -0.07251461408153982
+ - -3.224777552561309
+ - -4.283200522276581
+ - -0.9817037374053237
+ - 0.49909054734894115
+ - 1.7705963279433858
+ - 2.2629240900420684
+ - 1.7790281662508833
+ - 0.692832077726666
+ - 0.46988445556035774
+ - -0.21923952205181743
+ - -1.864674818304194
+ - -2.2695461184761445
+ - -0.6470507005739213
+ - 0.8406674159808927
+ - 2.064386913113962
+ - 2.743382980495716
+ - 1.8466933180499279
+ - -0.31471702003937785
+ - -1.3783118928633569
+ - -1.8980676052251622
+ - -2.2531495130115453
+ - -1.6388380570195398
+ - -0.2983376645264314
+ - 1.1615379714893845
+ - 2.248855034241965
+ - 2.914090761180706
+ - 1.8643566786216392
+ - -0.6021538590523201
+ - -1.7893943206279852
+ - -2.0701963204762617
+ - -2.1933808064477143
+ - -1.583995336733757
+ - -1.667366927289102
+ - -0.6015955917630113
+ - 2.0077008705196477
+ - 2.9126604646547807
+ - 1.4657991395743257
+ - 0.07556794746780013
+ - -1.3526163896797854
+ - -2.186834921229406
+ - -2.075282200049209
+ - -1.2663472018621118
+ - -1.375063256233641
+ - -0.24146010163985343
+ - 2.2653418872887805
+ - 2.275216068170071
+ - -0.06140505484805958
+ - -1.0930471701171174
+ - -1.69105021616482
+ - -2.254088496610431
+ - -1.8481602942169995
+ - -0.6240896233892916
+ - 0.86018792852548
+ - 2.0732584657857416
+ - 2.803489017172287
+ - 1.9813495447482397
+ - -0.4305559652381592
+ - -1.4300554449633118
+ - -1.9071776185032072
+ - -2.246882288050282
+ - -1.8386344375510855
+ - -1.9911360993933254
+ - -0.7518146107436884
+ - 1.8493197659721259
+ - 2.9690692318674756
+ - 1.699619020266486
+ - 0.4070923746379505
+ - -1.0658484275637634
+ - -2.0717211103372297
+ - -2.1801735298257596
+ - -1.5586803029720744
+ - -1.6046304930523243
+ - -0.4725564917331932
+ - 1.857516452826348
+ - 2.838692107962511
+ - 1.443812388412369
+ - 0.05298192942252797
+ - -1.3717723074050938
+ - -2.069320370877346
+ - -1.7640999330028575
+ - -0.40162872987368575
+ - 0.19899517867043584
+ - 1.2575352485800781
+ - 2.1502604474903744
+ - 2.119999417035621
+ - 1.1524772701204626
+ - -0.30414195147985484
+ - -1.675715405243959
+ - -4.009577594129899
+ - -3.0446563406130704
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.9624184084185018
+ - -1.0596775314720743
+ - 0.527183068316656
+ - 1.5276310879894957
+ - 1.8737745591765536
+ - 1.392550501407
+ - 0.3157877032442979
+ - -0.8794290539964127
+ - -1.4162879310430285
+ - -1.303833871156943
+ - -0.5792156893658967
+ - -0.20991689789144016
+ - 0.8045483006946172
+ - 1.6793512639484585
+ - 2.0023506598105403
+ - 2.400141867326376
+ - 1.2762661650944471
+ - -1.2100780267772941
+ - -2.341157616656063
+ - -1.8462869064393257
+ - -1.262954678094352
+ - -0.13321574726755062
+ - 1.058569114450017
+ - 1.7873061244751487
+ - 1.925088681797152
+ - 2.2551585649822097
+ - 1.1232872603356956
+ - -1.3459719750814176
+ - -2.4535641439759313
+ - -1.7773168179331085
+ - -1.0314748429856195
+ - 0.06822864136577761
+ - 0.4197428677287439
+ - 0.6949510023923084
+ - 1.145011320592201
+ - 1.7704023569444978
+ - 1.7986893523808243
+ - 1.7340660920629558
+ - 0.9220720226529996
+ - -0.2998058263615491
+ - -1.384678797708814
+ - -2.0177734708635735
+ - -2.836860253469043
+ - -1.6150834868531374
+ - 0.6029525231346468
+ - 0.768570957685571
+ - 1.5291049904340481
+ - 2.100539224268659
+ - 0.5757878534570644
+ - -0.657538312642765
+ - -1.6123537539681614
+ - -1.8570543905590948
+ - -1.3016892292175994
+ - -0.30327692310584675
+ - -0.04669640223483008
+ - 0.4088663222392325
+ - 1.3490644405795422
+ - 1.6035683906753684
+ - 0.2866455519769656
+ - -0.9259741635072698
+ - -1.8428416531104121
+ - -2.3959828880057423
+ - -1.5438961469203694
+ - 0.46476852307583283
+ - 1.4344378856976832
+ - 1.695437763267143
+ - 1.8239308399308747
+ - 1.1670761585456093
+ - -0.007529588285950459
+ - -1.1711115791395406
+ - -1.9554609874405857
+ - -2.4852670321565795
+ - -1.5250976969651826
+ - 0.6923231966143881
+ - 1.743231840741738
+ - 1.8011612982154177
+ - 1.7353192421290276
+ - 1.087998454592573
+ - 1.0751699973347124
+ - 0.3067244155787629
+ - -1.7157615868002942
+ - -2.2920087625939467
+ - -1.0082067052599788
+ - 0.19235084428613292
+ - 1.3146920552294885
+ - 1.8589786288402579
+ - 1.6003767939603377
+ - 0.8020157104506929
+ - 1.0885722730458072
+ - 0.5861772730735734
+ - -2.928848550093285
+ - -3.9588595745268775
+ - -1.1492988320418005
+ - 0.020122853638206116
+ - 1.1854113021716148
+ - 1.829915339563919
+ - 1.6833624378099439
+ - 0.970523110976224
+ - 0.9158087918566256
+ - 0.1899720702701076
+ - -1.6864127153950046
+ - -2.208131237143627
+ - -0.9011227233716904
+ - 0.31471302332450846
+ - 1.4393912129751962
+ - 1.9947606733360552
+ - 1.4493896168642304
+ - 0.06484625876922559
+ - -0.6454979908340466
+ - -1.321773253305056
+ - -1.860840385037562
+ - -1.6002557093029204
+ - -0.6315236008728691
+ - 0.602305271235425
+ - 1.648502633177783
+ - 2.2113631361037642
+ - 1.5151531445341955
+ - -0.18046686166448056
+ - -1.022083460239617
+ - -1.5159144599490024
+ - -1.8736812365023392
+ - -1.6085952926106328
+ - -1.8025806559994138
+ - -0.8211417768837024
+ - 1.6519568891961938
+ - 2.5383816375157373
+ - 1.486411279297353
+ - 0.45447854630638623
+ - -0.7772715009336808
+ - -1.6688485528246744
+ - -1.8369853877177167
+ - -1.3909237208813736
+ - -1.659031594884074
+ - -0.548516250329251
+ - 1.79582103284804
+ - 1.8411629419974038
+ - 0.30562306113847487
+ - -0.31848369804173715
+ - -1.1071563929906856
+ - -1.8033071404724828
+ - -1.7252194265213994
+ - -0.8842522984437532
+ - 0.3313226994985258
+ - 1.4499365319425288
+ - 2.0441421271838562
+ - 1.5462442531865062
+ - -0.00552623709769219
+ - -0.6796350234223134
+ - -1.332027040108621
+ - -1.8597192238588007
+ - -1.7712109345607046
+ - -2.0101190336585746
+ - -0.9058964742409633
+ - 1.4623190454643633
+ - 2.5059185090904004
+ - 1.6354393658379835
+ - 0.7175861159305089
+ - -0.513004607901825
+ - -1.5202446442219248
+ - -1.8671639388430943
+ - -1.5918970579972114
+ - -1.747343699893749
+ - -0.6968883578049557
+ - 1.5206264179593258
+ - 2.481326412803416
+ - 1.4722396128477986
+ - 0.4376682668284258
+ - -0.7554128674039324
+ - -1.2696424507328175
+ - -1.222540791054772
+ - -0.6887215703560179
+ - -0.38092479706509547
+ - 0.6900195372546452
+ - 1.6202883849559178
+ - 1.8560578801744096
+ - 1.2719874280307284
+ - 0.1448924562624341
+ - -1.04392281253859
+ - -2.688692510940336
+ - -2.09691775318364
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.736110920577922
+ - -3.602834900433658
+ - -0.7152673211541123
+ - 0.6212507042474709
+ - 1.6952823228941722
+ - 2.0228838547947925
+ - 1.47856547199788
+ - 0.43200699631251155
+ - 0.17538068750102312
+ - -0.3636868265994102
+ - -1.5853562376644592
+ - -1.8585731867302613
+ - -0.40586464864074934
+ - 0.9182054239358783
+ - 1.9504153670315636
+ - 2.5544991783347557
+ - 1.6708709336828511
+ - -0.4271581889829791
+ - -1.4462846280566595
+ - -1.7940347575863802
+ - -1.9964188590303895
+ - -1.339429015606654
+ - -0.08848597900528003
+ - 1.1921972045220084
+ - 2.0879465784631592
+ - 2.6712324932004714
+ - 1.6631540938120322
+ - -0.6782219876906415
+ - -1.7935918809814249
+ - -1.9228131694212716
+ - -1.915057700556718
+ - -1.2663461449256468
+ - -1.2830963263078805
+ - -0.3849658559363096
+ - 1.781753686743911
+ - 2.5201241269134234
+ - 1.217832982524705
+ - 1.9636396552899857
+ - 1.8663094655280852
+ - 0.9436699614569987
+ - -0.3785884135499004
+ - -1.5892649548678646
+ - -2.4737112398879018
+ - -1.7279855137362343
+ - -0.6398553834006795
+ - -0.45420066594630876
+ - 1.7965703916759412
+ - 3.061027654420433
+ - 1.659060103367443
+ - 0.5718786426794144
+ - -0.765917903853216
+ - -1.7688476112245057
+ - -2.0046082995179337
+ - -1.5707861426209393
+ - -1.7059303468674045
+ - -0.6972568252475452
+ - 1.8059166225446042
+ - 2.687793049609217
+ - 1.4537722479938877
+ - 0.258783157995438
+ - -1.036721109443837
+ - -1.5832751348825667
+ - -1.333265761658275
+ - -0.5551291875197379
+ - -0.09937434433133954
+ - 0.9490499526994731
+ - 1.8586216332515748
+ - 1.9709317253439564
+ - 1.212276009785028
+ - -0.06257571263730809
+ - -1.3312826300852982
+ - -1.9137826761315877
+ - -1.4762136141487654
+ - -0.29814337386019857
+ - 0.3327498639185998
+ - 1.2214473868265208
+ - 1.9653600407555598
+ - 2.0602420454631885
+ - 2.456578770673721
+ - 1.3925510608529963
+ - -1.7373863485429444
+ - -2.7543770121929003
+ - -1.9011110425978057
+ - -1.045914103565545
+ - 0.26323679912013376
+ - 1.4596641195046063
+ - 2.0205674671954714
+ - 1.9103265491670758
+ - 3.615502559959603
+ - 2.468768739106356
+ - -3.1372558927412606
+ - -4.434564066971269
+ - -1.9585911009838064
+ - -1.201398836939569
+ - 0.07635629949058115
+ - 1.3239156404644852
+ - 1.9939755574073181
+ - 2.0030829310297564
+ - 2.3616808510606835
+ - 1.302006887168941
+ - -1.7862407186944065
+ - -2.7798671788845435
+ - -1.8502006540002507
+ - -0.9300055111545409
+ - 0.3121294957389559
+ - 0.7339056418231374
+ - 0.9092764825807282
+ - 1.0595362685638052
+ - 1.020409767883174
+ - -0.28054885147433267
+ - -1.4694128775177713
+ - -2.029793738353279
+ - -1.69443456623906
+ - -0.6327701332531731
+ - 0.6534889142432302
+ - 1.139721546012519
+ - 1.1200952073145174
+ - 0.8412237959096717
+ - 0.6079160509978503
+ - -0.5952490158015524
+ - -1.6726786018116677
+ - -2.2029000341338176
+ - -2.744581107075836
+ - -1.6552763007338571
+ - 1.2853084524185732
+ - 2.4169370794950407
+ - 2.030140812101515
+ - 1.5761676877569197
+ - 0.44133693675737784
+ - -0.8917570763755578
+ - -1.832594946679827
+ - -2.1697036714126736
+ - -2.9350606545508087
+ - -1.5170123702770186
+ - 1.1849351117792921
+ - 1.3361969997867518
+ - 1.3476853267243025
+ - 1.5624715509122837
+ - 0.024431566971051102
+ - -1.2429450812527632
+ - -1.9797190388202357
+ - -1.8433782902393872
+ - -0.915374715330196
+ - 0.33044820923450086
+ - 0.7720911265882716
+ - 0.94118695487511
+ - 1.08250816866157
+ - 1.020145672966772
+ - -0.29712065489512146
+ - -1.4811185010134669
+ - -2.183254758585878
+ - -2.72262197542729
+ - -1.600159670632678
+ - 0.9528937889322215
+ - 2.1458738995927047
+ - 2.010962072095324
+ - 1.750731388394414
+ - 0.7351794437979517
+ - -0.6082003003502586
+ - -1.6811662687776043
+ - -2.202783436110664
+ - -2.6903339729645417
+ - -1.5022615732032523
+ - 1.1589511979535287
+ - 2.384415542361767
+ - 2.0313278448014565
+ - 1.5686152710883816
+ - 0.5755842962999443
+ - 0.36159870506103076
+ - -0.23761321477144257
+ - -1.652327492301999
+ - -1.993747935596039
+ - -0.5373283323174639
+ - 0.7964275089721974
+ - 1.7922114055974308
+ - 1.998499060048788
+ - 1.344153814228939
+ - 0.23136941447839643
+ - -0.18960894150882127
+ - -0.3592227596966502
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.321226753740091
+ - -4.6058209810966035
+ - -1.7404569694519731
+ - -0.712098344589826
+ - 0.6270539769023578
+ - 1.6927450676966085
+ - 2.023563324116641
+ - 1.6795454244838077
+ - 1.8682225741201015
+ - 0.8755581182083924
+ - -1.9002222764178818
+ - -2.7531185482875604
+ - -1.553646952463134
+ - -0.4045797702499607
+ - 0.8932532098311363
+ - 1.4189752588171924
+ - 1.2570156488840405
+ - 0.6685012728777058
+ - 0.29675455709241083
+ - -0.8166154255866278
+ - -1.7953426779222348
+ - -2.0043406023496133
+ - -1.327866685141673
+ - -0.08496408299354545
+ - 1.2009106731758061
+ - 1.769042429722227
+ - 1.4159458871794226
+ - 0.4170414101534806
+ - -0.13575159246126067
+ - -1.1009124684788794
+ - -1.9237881021222039
+ - -2.1124550452050355
+ - -2.533082560966533
+ - -1.3972965744635826
+ - 1.5822992927118942
+ - 2.69691729294134
+ - 1.9487336792512362
+ - 1.21499409953617
+ - 1.967940489894703
+ - 1.853020507101409
+ - 0.9421461724473955
+ - -0.2953204266312005
+ - -0.799959838046568
+ - -0.969369189006983
+ - -1.7040710253769513
+ - -1.5910672713706098
+ - 1.1759361490881666
+ - 2.568929351870195
+ - 2.022562205332783
+ - 1.655913921614994
+ - 0.5743903819442359
+ - -0.7640598322521717
+ - -1.765126529506944
+ - -2.185847508827013
+ - -2.6905035503884243
+ - -1.578983834839259
+ - 1.392608578632603
+ - 2.5254493705309984
+ - 2.0163391972499016
+ - 1.4531647575830353
+ - 0.397138447537821
+ - 0.13790430247658803
+ - -0.4144669881088618
+ - -1.4130810544905
+ - -1.7663459659659972
+ - -0.37300456547339694
+ - 0.9454979799037245
+ - 1.8617478669268785
+ - 1.9575379517235096
+ - 1.2110363440663123
+ - 0.04967505715126065
+ - -0.29348849466952814
+ - -0.665352737624769
+ - -1.2547596883574121
+ - -1.4174235689930552
+ - -0.05345313592602329
+ - 1.2163565588324883
+ - 2.0939090327575087
+ - 2.7455101887574784
+ - 1.8954194747881268
+ - -0.8717237919758201
+ - -1.8614482661114584
+ - -1.9274242306880145
+ - -1.8970595136743191
+ - -1.049222972390145
+ - 0.26479792881452396
+ - 1.4562546109522394
+ - 2.1731750468700026
+ - 4.593824580114727
+ - 3.312781813739015
+ - -1.763782986937763
+ - -2.695987359993471
+ - -1.8618182706568274
+ - -1.954153581955039
+ - -1.204896056618893
+ - 0.07909190812372542
+ - 1.3205564271810404
+ - 2.133581618624866
+ - 2.771418427677681
+ - 1.8806057195391266
+ - -0.9831434054961099
+ - -1.9963751785055484
+ - -1.9655048838348024
+ - -1.8477475485724548
+ - -1.1102760467971688
+ - -1.054155576921448
+ - -0.16137858875721947
+ - 1.630900697746314
+ - 2.3635792406325606
+ - 1.0293191702657907
+ - -0.2783864574904508
+ - -1.471225392342926
+ - -2.0170134300174034
+ - -1.6919540249564686
+ - -0.7956412705595014
+ - -0.6442774313235036
+ - 0.1039221999866736
+ - 1.5546469104561154
+ - 2.1221451631456048
+ - 0.7407806866529917
+ - -0.5908171894144095
+ - -1.7402066015145945
+ - -2.393860255167506
+ - -1.7416829153743447
+ - 0.21633272809488024
+ - 1.0429757890801716
+ - 1.599289495706703
+ - 2.0251546075158573
+ - 1.5801284449660042
+ - 0.4353405814498169
+ - -0.8890309480104688
+ - -1.9306257620314038
+ - -2.860889950858849
+ - -1.8247219697685475
+ - -0.10617674241726237
+ - 0.08624008203236588
+ - 1.8245175881270812
+ - 2.8688531768025776
+ - 1.2792983578910828
+ - 0.02129231108237329
+ - -1.250755410357765
+ - -1.9734301674426935
+ - -1.8428266110081588
+ - -1.092634882208146
+ - -1.0480706252553633
+ - -0.21855008513713073
+ - 1.7466525517242302
+ - 2.4013884419187344
+ - 1.0141602754905656
+ - -0.29846209160842374
+ - -1.526490086718501
+ - -2.1261108557762602
+ - -1.55814042175671
+ - -0.10573186138971727
+ - 0.6435145731627236
+ - 1.4015413957885658
+ - 2.0111384944650865
+ - 1.756591620292
+ - 0.7248084567050301
+ - -0.6117620668113947
+ - -1.7587200662739342
+ - -2.3685062591223485
+ - -1.6348283583808667
+ - 0.16026478352588644
+ - 1.0545870491686367
+ - 1.6170699782198177
+ - 2.031839906715066
+ - 1.7714916720125968
+ - 2.003382099495022
+ - 0.9872112432052498
+ - -1.8852530300539554
+ - -2.7789240990583504
+ - -1.6367427037084419
+ - -0.5342240524962808
+ - 0.8027401541155951
+ - 1.7885707262098478
+ - 1.998858537670065
+ - 1.5411922425618318
+ - 2.706483276733235
+ - 1.770990407555433
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.47586454037047
+ - -3.625695562053767
+ - -2.018461833444141
+ - -1.7428469803052593
+ - -0.7152573062592423
+ - 0.6313936162924235
+ - 1.6976381290872238
+ - 2.2069259353286617
+ - 2.7610428867954946
+ - 1.7413812133339135
+ - -1.3965815620283435
+ - -2.463265927506045
+ - -2.035233054991346
+ - -1.5573630625679566
+ - -0.552767344277067
+ - -0.3324200960432435
+ - 0.29959498628606496
+ - 1.4795564799243706
+ - 1.9177262776111317
+ - 0.5163367521928481
+ - -0.8192404583072074
+ - -1.8070274741236434
+ - -1.9987433622821733
+ - -1.3298206359049796
+ - -0.2070994620823423
+ - 0.10078858484205874
+ - 0.5571918666296067
+ - 1.3361550039198336
+ - 1.5862739183145045
+ - 0.19861129913082162
+ - -1.1028073483870606
+ - -2.0503257883132155
+ - -2.6947840045944003
+ - -1.8104054828488416
+ - 0.6997124628779382
+ - 1.71111577181397
+ - 1.886771589273493
+ - 1.9517901291217477
+ - 1.2211334414978003
+ - 1.9662432413865722
+ - 1.8610153635453417
+ - 1.130395381248787
+ - 1.2245077162446762
+ - 0.20992003244729815
+ - -2.0369270597778035
+ - -2.0455603980722143
+ - 0.046004474300839336
+ - 0.9671633064352441
+ - 1.5149556440563856
+ - 2.029427314528654
+ - 1.6715166514758752
+ - 0.5736864633807258
+ - -0.7635209622114568
+ - -1.8602293863327186
+ - -2.517990919505328
+ - -1.7826830516460879
+ - 0.37725484517703173
+ - 1.2733116724875961
+ - 1.7111582751589485
+ - 2.024847898896094
+ - 1.6645836272381194
+ - 1.805454950195979
+ - 0.6862165553234603
+ - -1.664478219534344
+ - -2.6771488751997055
+ - -1.5386734965837126
+ - -0.37852781137045616
+ - 0.9492095743070257
+ - 1.8610334290824302
+ - 1.96665079413628
+ - 1.413901339744311
+ - 1.458896132066314
+ - 0.4352346459825064
+ - -1.6734418062704166
+ - -2.5622038671348233
+ - -1.3096320816084703
+ - -0.05981488253852025
+ - 1.2245736374749185
+ - 1.8512665548551845
+ - 1.5824914836683
+ - 0.37286106898647275
+ - -0.1626295959369627
+ - -1.1225163412376153
+ - -1.9328856560199275
+ - -1.9136076831573086
+ - -1.048338262034141
+ - 0.261932051627035
+ - 1.4996125441270935
+ - 3.5941241539574227
+ - 2.7308379337262343
+ - 0.3750890335697938
+ - 0.21129464922272903
+ - -0.9617024269308648
+ - -1.866628446983911
+ - -1.9708242857328222
+ - -1.2040756728041664
+ - 0.07528450732282387
+ - 1.3442959854282617
+ - 1.9872170890995802
+ - 1.6500532373349879
+ - 0.2467189354988516
+ - -0.34917045511093625
+ - -1.2334660138187021
+ - -1.9716635219833578
+ - -2.0586478981384992
+ - -2.3936318194814192
+ - -1.1660690188012837
+ - 1.5007901319551846
+ - 2.6918886166212617
+ - 1.8996884288416984
+ - 1.0367577600436095
+ - -0.276209527035054
+ - -1.4707394126971496
+ - -2.0249879240401585
+ - -1.906532405663455
+ - -2.1564598080751756
+ - -0.9605267651570152
+ - 1.5999668853867812
+ - 2.726227694453681
+ - 1.761848887922126
+ - 0.7495441856430569
+ - -0.5253788459378981
+ - -1.009460519191686
+ - -1.0771842231830357
+ - -0.9495818157752929
+ - -0.7854970584149091
+ - 0.477190625293888
+ - 1.602206078301991
+ - 2.041272644218841
+ - 1.5791838621654701
+ - 0.44118464161120174
+ - -0.8580447489257561
+ - -1.5525475995145666
+ - -1.3464643155818896
+ - -1.3558820454448617
+ - -1.2051609835041062
+ - 1.5160454836189308
+ - 2.9423207728653913
+ - 1.986660124835611
+ - 1.2806429951045044
+ - 0.020143368522056997
+ - -1.2527720462183987
+ - -1.9786085378812206
+ - -2.049293967544971
+ - -2.4223782091345494
+ - -1.2879669652472565
+ - 1.6597118371299133
+ - 2.751592262455313
+ - 1.8924838629938245
+ - 1.016942472842172
+ - -0.20910915919600534
+ - -0.6105685269536812
+ - -0.8439439505962716
+ - -1.1223526015286833
+ - -1.1415028502883318
+ - 0.18555598729992118
+ - 1.4050157640746985
+ - 2.0238466824698342
+ - 1.7497330859769267
+ - 0.7251334138353164
+ - -0.5546006533456866
+ - -1.0240335327648369
+ - -1.0627341788039224
+ - -0.9109391082101053
+ - -0.7346107282868298
+ - 0.5039517003312621
+ - 1.6202933199326974
+ - 2.2074080533859437
+ - 2.7866747154259146
+ - 1.7904087505591415
+ - -1.305848064269264
+ - -2.368199455482162
+ - -2.0339564745210215
+ - -1.6389846945523632
+ - -0.5363206751398543
+ - 0.8065077127749101
+ - 1.7936676876700595
+ - 2.190741070008662
+ - 4.4450979681536325
+ - 3.1446044249888456
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.5364402931990573
+ - -1.0440598823224065
+ - -1.406946133866373
+ - -2.0075168259571563
+ - -1.745475490339349
+ - -0.7110838089715145
+ - 0.622176505860402
+ - 1.7622909311932664
+ - 2.438376307652033
+ - 1.8413587019197803
+ - -0.2757357065019409
+ - -1.086298872575489
+ - -1.6204119975491995
+ - -2.0261782603104144
+ - -1.7586183034650824
+ - -1.941592136683572
+ - -0.7923559247775392
+ - 1.6401030091194746
+ - 2.6969685676261403
+ - 1.6249032238873984
+ - 0.5206215059236712
+ - -0.8122545228390443
+ - -1.7897813577646888
+ - -1.991294791461138
+ - -1.5272970040078833
+ - -1.6160946107818377
+ - -0.5494552400818286
+ - 1.6682771251582909
+ - 2.6130068572982093
+ - 1.4137945241833458
+ - 0.2066085793675484
+ - -1.083771558477684
+ - -1.6683925843842602
+ - -1.426093141732587
+ - -0.49368389332369644
+ - -0.031820408926437414
+ - 0.9925183227130452
+ - 1.8747327290747204
+ - 1.952638996807295
+ - 1.212564558762887
+ - 1.9614093068605438
+ - 2.0611348945699155
+ - 2.713991420231874
+ - 1.299580033420192
+ - -1.4722577143258726
+ - -1.5990248371974023
+ - -1.1070466754118626
+ - -1.065168421913353
+ - 0.3379281541049161
+ - 1.5088245985245896
+ - 2.0341880964427763
+ - 1.6617657475195826
+ - 0.5773338459833564
+ - -0.7133683272195387
+ - -1.234524785297056
+ - -1.2006638508820593
+ - -0.8070250612243826
+ - -0.5435384300702735
+ - 0.6505309753538976
+ - 1.7049305858622488
+ - 2.2010590360251134
+ - 2.680907512703585
+ - 1.4870089927021901
+ - -1.1824098822725468
+ - -2.4095130904556825
+ - -2.028649528216117
+ - -1.5389242148569025
+ - -0.3842502448472799
+ - 0.9435043223240508
+ - 1.856791588176315
+ - 2.157961009132498
+ - 2.5722414627457164
+ - 1.3466237859748782
+ - -1.355122721619986
+ - -2.57982367844877
+ - -1.9913605825517338
+ - -1.312801934500184
+ - -0.1870203387627146
+ - 0.1383083130943965
+ - 0.5708431650310976
+ - 1.4561175670075872
+ - 1.612169598346202
+ - 0.1794780285924304
+ - -1.1163276816023253
+ - -1.9361849528014685
+ - -1.902406441543716
+ - -1.050903357148651
+ - 0.16297976248093524
+ - 1.0067903563393854
+ - 0.943041725017992
+ - 2.353889743283182
+ - 3.032669619812661
+ - 0.36481389993189267
+ - -0.955632908480488
+ - -1.8694648682412034
+ - -1.9594139609984904
+ - -1.206309409018995
+ - -0.03984994603293966
+ - 0.3246173343456773
+ - 0.6911898854249774
+ - 1.3708490270828124
+ - 1.4561567218127265
+ - 0.044409822199374144
+ - -1.2263144075908814
+ - -2.101454340338465
+ - -2.680780836231891
+ - -1.6589960161850938
+ - 0.7084496525664337
+ - 1.833799370036232
+ - 1.9344033330673986
+ - 1.897946916299809
+ - 1.0436177836096086
+ - -0.2744475463663547
+ - -1.4657623974127187
+ - -2.1793525559500666
+ - -2.721347742922059
+ - -1.6040128750327136
+ - 0.9397564406554602
+ - 2.129457897864801
+ - 2.0084322154254286
+ - 1.7626848976952272
+ - 0.9242028656991124
+ - 0.8236153804523858
+ - 0.06405638121440121
+ - -1.6996146899263826
+ - -2.2721146503875937
+ - -0.8581771917612833
+ - 0.4715670875693845
+ - 1.6032955431687756
+ - 2.0294134586192047
+ - 1.5801525285376625
+ - 0.5956518947984196
+ - 0.4438012449971658
+ - -0.27316860102430623
+ - -2.0107228146150273
+ - -1.968275321523878
+ - 0.5381692234198475
+ - 1.7183043588531195
+ - 1.819604632768214
+ - 1.9783362840273098
+ - 1.2853408897612946
+ - 0.022209389123060818
+ - -1.2420917962351985
+ - -2.1045362885538075
+ - -2.731772364704166
+ - -1.792021239291338
+ - 0.8405597845411094
+ - 1.8891217464013381
+ - 1.9383532068743596
+ - 1.8871324204025508
+ - 1.2037959562717824
+ - 1.1780526686601178
+ - 0.24425186195378745
+ - -1.6465209699772037
+ - -2.4275466712853375
+ - -1.1153118578577514
+ - 0.17771097384392423
+ - 1.3991807743915519
+ - 2.005527423784916
+ - 1.7455663701101765
+ - 0.8971336730687615
+ - 0.7754425050715286
+ - -0.02050265481859789
+ - -1.5830674209433617
+ - -2.2042989168962435
+ - -0.8342155862812651
+ - 0.4931077084176072
+ - 1.6708683875964008
+ - 2.3429029250749296
+ - 1.8059814448963216
+ - -0.14906531605886097
+ - -0.9119862696566567
+ - -1.5351154590156408
+ - -2.023658776796443
+ - -1.6421976354526053
+ - -0.5337145473603687
+ - 0.796890820150669
+ - 1.8757195543640148
+ - 4.2276181199625755
+ - 3.134773058747016
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.6225397857117159
+ - 1.9719039204814997
+ - -0.19329332398495475
+ - -1.4063367368513466
+ - -2.018160115829411
+ - -1.7395281803551912
+ - -0.7148303165719295
+ - 0.5615521521104279
+ - 1.0678162751162747
+ - 1.1479910370271447
+ - 0.9572353687051931
+ - 0.7502602081388732
+ - -0.5103945961558483
+ - -1.6199101012640686
+ - -2.2002453186586104
+ - -2.705392807551938
+ - -1.536756565946438
+ - 1.0935940495469727
+ - 2.3105082211796635
+ - 2.02738593109462
+ - 1.6284660227836778
+ - 0.5263716657368409
+ - -0.811492764804726
+ - -1.7915704698454211
+ - -2.182189812194047
+ - -2.627111419812334
+ - -1.4130424176307863
+ - 1.28020390125043
+ - 2.508728782879286
+ - 2.0131555034153394
+ - 1.419378241474543
+ - 0.3436978291700896
+ - 0.07025927209261783
+ - -0.4300647684226612
+ - -1.4675209974625574
+ - -1.7508142181078077
+ - -0.3237878498949954
+ - 0.9910006069015588
+ - 1.883911216866201
+ - 1.9464987524667718
+ - 1.2167704326060111
+ - 2.099026970109378
+ - 3.026270220742095
+ - 1.8233287248392995
+ - -0.2770561518267249
+ - -0.46668618934715633
+ - -1.7767048022478924
+ - -2.6269671139984467
+ - -0.9776701650122459
+ - 0.3416878463568239
+ - 1.5189526161488949
+ - 2.028011723242263
+ - 1.6617486910802217
+ - 0.7338796096552245
+ - 0.572900268146727
+ - -0.10514331589845692
+ - -1.6368963865656834
+ - -2.1157002793793174
+ - -0.6839364940559256
+ - 0.6528697167738942
+ - 1.7867620063354384
+ - 2.397008939539379
+ - 1.6428953200994878
+ - -0.19411128291704413
+ - -1.10608192991452
+ - -1.6423530127950143
+ - -2.029950117154225
+ - -1.544441737177511
+ - -0.37483945233840105
+ - 0.9481745768633865
+ - 1.9685823182654285
+ - 2.5716191886864204
+ - 1.6728948527594525
+ - -0.4552544627644427
+ - -1.4866508692882852
+ - -1.8117439363388073
+ - -1.9932246708657901
+ - -1.509800309967734
+ - -1.6241286936183914
+ - -0.6806248047463005
+ - 1.906106016598689
+ - 2.6824491035806934
+ - 1.3965498117051243
+ - 0.17604367012159697
+ - -1.125045682728533
+ - -1.9324148480482939
+ - -1.9035769707554748
+ - -1.2359652052917747
+ - -1.9987926228112451
+ - -1.24025622315556
+ - 3.3076421222418317
+ - 4.53180600870668
+ - 1.5264713590381362
+ - 0.36143729328234475
+ - -0.9638411446398962
+ - -1.866728629793884
+ - -1.9610188819753858
+ - -1.3987047755480213
+ - -1.4679689461008891
+ - -0.5596161203841661
+ - 1.8981818625005997
+ - 2.6239538505686224
+ - 1.2956559012400908
+ - 0.04261914103321815
+ - -1.2392722777012082
+ - -1.8120892795036199
+ - -1.434779464654324
+ - -0.38424271062579546
+ - 0.19124793895419048
+ - 1.1360980552771875
+ - 1.936953410486437
+ - 1.906380385979898
+ - 1.0329714965942016
+ - -0.2787688521944942
+ - -1.5122966925926271
+ - -2.111300695491363
+ - -1.5531444433277615
+ - -0.12116749503064955
+ - 0.6193997538963579
+ - 1.3888788424537082
+ - 2.010985839613498
+ - 1.9673689820318618
+ - 2.291326758765668
+ - 1.1710117679176628
+ - -1.7135067388274259
+ - -2.7717879856629133
+ - -1.8162266175946862
+ - -0.8554509243048466
+ - 0.47762562896438443
+ - 1.6032744796104412
+ - 2.032126467923916
+ - 1.7843594614605993
+ - 2.2373473132174246
+ - 0.911426561787202
+ - -1.7960405543517193
+ - -1.8795054800763087
+ - -0.665658026998764
+ - -0.2383008989932757
+ - 0.8701365883471603
+ - 1.8201984437956134
+ - 1.9897256434925568
+ - 1.2801358549392519
+ - 0.024853942257632294
+ - -1.2533880787224883
+ - -1.8632384495674814
+ - -1.521594540454808
+ - -0.33566410593734086
+ - 0.2183965061693136
+ - 1.149434010250984
+ - 1.939740989879892
+ - 2.090126790816905
+ - 2.4489749591727765
+ - 1.2208946736892372
+ - -1.4587324280441025
+ - -2.660899434174421
+ - -1.9283591900378334
+ - -1.1188908002483287
+ - 0.17579703413709866
+ - 1.396381286374998
+ - 2.008483620952236
+ - 1.9540925740179054
+ - 2.2304908653296716
+ - 1.0244305420806439
+ - -1.5696893277416444
+ - -2.716332480594256
+ - -1.805363827967744
+ - -0.8397510809462383
+ - 0.41812413663328285
+ - 0.8930520307140292
+ - 1.0439342626245893
+ - 1.0650961772502183
+ - 0.9283066307896042
+ - -0.3782939272078506
+ - -1.534827428112362
+ - -2.0345609126531565
+ - -1.6362804915043792
+ - -0.5371135757643697
+ - 0.7549970675270735
+ - 2.1913065451602507
+ - 1.775389803088414
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.6109053290741406
+ - 4.837290920496819
+ - 1.253642787138503
+ - -0.29929899036541924
+ - -1.7293065154107286
+ - -2.398836163536242
+ - -2.0325355982530726
+ - -0.9802702619832195
+ - -0.8191841208454798
+ - 0.012354200547554957
+ - 2.0836524773425413
+ - 2.6292936778210514
+ - 0.9123361758506611
+ - -0.6724008986216214
+ - -2.050569258842048
+ - -2.7741040594813575
+ - -1.9312804081897228
+ - 0.1422795641242626
+ - 1.1800129983272178
+ - 1.8843764651306913
+ - 2.411743169176446
+ - 1.9020540844265732
+ - 0.5501049808401725
+ - -1.029389298155392
+ - -2.282033809433353
+ - -3.0021421834555446
+ - -1.9808510448490597
+ - 0.45469182918106904
+ - 1.6422419739467398
+ - 2.099767655512423
+ - 2.3850391094064483
+ - 1.8754885275551116
+ - 2.039719034188885
+ - 0.8382502202835291
+ - -2.145319626586018
+ - -3.197288100124794
+ - -1.734249934115888
+ - -0.3158091285794646
+ - 1.244195005750251
+ - 2.2585336333226813
+ - 2.2950836869399183
+ - 1.562302324465265
+ - 2.4825244295821656
+ - 1.879911145693274
+ - 1.1737024077616869
+ - 0.9685808886565931
+ - -2.014207499569914
+ - -3.6325699747121036
+ - -2.1925931673462706
+ - -1.0961902712798313
+ - 0.4767648473096025
+ - 1.8433317037156385
+ - 2.4082931182819953
+ - 2.1721153562934776
+ - 2.471402490638
+ - 1.180305217479779
+ - -2.099443881263124
+ - -3.2854223982552506
+ - -2.00793594334137
+ - -0.7459427277325751
+ - 0.7803731236437466
+ - 1.3581631022599068
+ - 1.3320873659789725
+ - 0.9950862713814236
+ - 0.7154641936326934
+ - -0.7110243533294067
+ - -1.9875380222177825
+ - -2.4126689293617805
+ - -1.7724305866022125
+ - -0.3743689421568487
+ - 1.1655303226771239
+ - 1.8050661305444098
+ - 1.5482085010665916
+ - 0.7104794630381844
+ - 0.2075304280853863
+ - -1.0665734307277293
+ - -2.1785695044735967
+ - -2.5744720870937643
+ - -3.1580651618209075
+ - -1.9105933013672973
+ - 1.853596741248791
+ - 3.108844512478143
+ - 2.373934920195647
+ - 1.6031049495995853
+ - 0.13858040935264213
+ - -1.3912830251963464
+ - -2.3128108476734326
+ - -2.4693795176207893
+ - -4.844289971542072
+ - -3.370308511019741
+ - 3.4144522356943425
+ - 4.898413469100317
+ - 2.4017264314123383
+ - 1.761561971880016
+ - 0.3599414410567078
+ - -1.2047018190094212
+ - -2.240997685033021
+ - -2.5377582790722553
+ - -3.0829240575609695
+ - -1.8248631024687951
+ - 1.9365756370756433
+ - 3.179404723077635
+ - 2.3422093868414335
+ - 1.4825836042024207
+ - 0.11680413295939678
+ - -0.27797357821084
+ - -0.750813895705085
+ - -1.5207110731019833
+ - -1.7460760803603539
+ - -0.1161273917704935
+ - 1.404771496345186
+ - 2.3263263341066023
+ - 2.2220619094941143
+ - 1.1631033392992423
+ - -0.2982889811901908
+ - -0.7841689085092661
+ - -1.0323738388877164
+ - -1.299613788386075
+ - -1.2937539708256662
+ - 0.2660065634343641
+ - 1.6963522968541656
+ - 2.5756758232294055
+ - 3.289171819173627
+ - 2.0895034129894507
+ - -1.2191175640563428
+ - -2.5183491995435037
+ - -2.372104312222064
+ - -2.1198437180265075
+ - -0.9532647643547426
+ - 0.6379729111545773
+ - 1.9443582847073382
+ - 2.6137814298216355
+ - 3.624278316937033
+ - 1.9961058467744175
+ - -1.0154037183561044
+ - -1.2181548682758119
+ - -1.845545340004935
+ - -2.4072270028453215
+ - -0.4759326871365999
+ - 1.0970981828853128
+ - 2.2035445267778857
+ - 2.3389600194580904
+ - 1.4678334691192492
+ - 0.09426035047739072
+ - -0.3140707048970561
+ - -0.7588751181431855
+ - -1.5822251264584752
+ - -1.7592654920345876
+ - -0.09601753581614088
+ - 1.422302299623913
+ - 2.482335543054935
+ - 3.1745913402159647
+ - 1.9753517799555895
+ - -0.8093358607178784
+ - -2.1356121298088686
+ - -2.284848222561542
+ - -2.2700093785680253
+ - -1.2770684749171446
+ - 0.28318788869504524
+ - 1.7113314305205973
+ - 2.5821451309050807
+ - 3.231957957105819
+ - 1.9155738337562254
+ - -1.0869111333745296
+ - -2.4935667746814705
+ - -2.37947215190073
+ - -2.1155051237513303
+ - -1.1405194626019375
+ - -1.032673224209824
+ - -0.13933607101247367
+ - 2.137857616990105
+ - 2.758591355089585
+ - 1.0586770183497922
+ - -0.5181406118605754
+ - -1.877829479557768
+ - -2.4111876423520195
+ - -1.9043068247836616
+ - -0.7528328036283475
+ - -0.7924170148756502
+ - -0.30953468716370786
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 4.67730093031314
+ - 6.347582691877223
+ - 1.9303729930295166
+ - 0.12752711860572255
+ - -1.73725166488765
+ - -2.8392540947274725
+ - -2.713197648059545
+ - -1.6756846962756784
+ - -1.6427877125473946
+ - -0.4467914667006033
+ - 2.6905183789809746
+ - 3.5804679876951906
+ - 1.5545985745077506
+ - -0.3371585322492555
+ - -2.138107949798748
+ - -3.002391470956164
+ - -2.2306515706413856
+ - -0.23281020505917804
+ - 0.8073233796083517
+ - 1.962606588427179
+ - 2.9033135715634213
+ - 2.596773881776247
+ - 1.1414282297381813
+ - -0.7950175235962929
+ - -2.487376438331177
+ - -3.370995219825845
+ - -2.354000194542854
+ - 0.1531382552690736
+ - 1.4099005089669554
+ - 2.2865797600977924
+ - 2.948561759991315
+ - 2.6315266500685914
+ - 2.9849210636940344
+ - 1.4126065226840296
+ - -2.574909077203869
+ - -4.014277640157982
+ - -2.4309328779377384
+ - -0.8680083131740313
+ - 1.0749543276508329
+ - 2.5481361908839046
+ - 2.915970410168107
+ - 2.3100897948375456
+ - 2.800660500612513
+ - 2.0386721904559244
+ - 1.846204804857689
+ - 1.6199859178816858
+ - -2.2559621905826632
+ - -4.302419540581434
+ - -2.843184642331885
+ - -1.757873973805486
+ - 0.08903228246988089
+ - 1.9017158360125113
+ - 2.884733807683103
+ - 2.911689449979585
+ - 3.419053948305883
+ - 1.7863184501916918
+ - -2.4385223844319577
+ - -3.9966708691818797
+ - -2.6893702004247055
+ - -1.3664923156819258
+ - 0.42908071715729806
+ - 1.0354727779418482
+ - 1.3024359510967805
+ - 1.548725449293553
+ - 1.505057705661881
+ - -0.38512741287157604
+ - -2.113973992411959
+ - -2.9387187066519025
+ - -2.466659252161892
+ - -0.9371731325079687
+ - 0.924439205274302
+ - 1.624972324051841
+ - 1.609570432389076
+ - 1.234048332642882
+ - 0.9088268729769402
+ - -0.8417794308481243
+ - -2.411072639984606
+ - -3.1917925837210497
+ - -4.007652307712156
+ - -2.546902048190952
+ - 1.966264752203339
+ - 3.506217219221541
+ - 2.9414052689571357
+ - 2.2970354903161625
+ - 0.6604799013716335
+ - -1.2726066863896435
+ - -2.645709952475193
+ - -3.1474622607563814
+ - -6.34703067949295
+ - -4.476715059555779
+ - 3.7044459075462686
+ - 5.400880056895427
+ - 2.929832826087836
+ - 2.456031094721968
+ - 0.9222051431436177
+ - -1.0235693244448614
+ - -2.516347080139877
+ - -3.182557465796711
+ - -3.959901746837685
+ - -2.469268817900161
+ - 2.0920631327848698
+ - 3.6341555496785474
+ - 2.9354069765373447
+ - 2.1730329501688237
+ - 0.674581052973959
+ - 0.32339980417014785
+ - -0.5279971996304685
+ - -2.090971053144923
+ - -2.657041592420729
+ - -0.6317861362307547
+ - 1.290695463212931
+ - 2.6645418233024865
+ - 2.8643174670756837
+ - 1.8312398827215652
+ - 0.17194297074998924
+ - -0.3032199999636705
+ - -0.8960114275079438
+ - -1.8709022563046658
+ - -2.162243741527885
+ - -0.16963975960439295
+ - 1.6914728312574416
+ - 3.0082124539247497
+ - 3.931064939893303
+ - 2.612563500995497
+ - -1.1069356616550845
+ - -2.59765621154462
+ - -2.7686921947030294
+ - -2.785217980177828
+ - -1.6017896682038355
+ - 0.2930352266600642
+ - 2.049301434171151
+ - 3.1386437103700158
+ - 4.448002476992574
+ - 2.5797379575114303
+ - -0.7725451545972032
+ - -1.0382688408111378
+ - -2.456866197052808
+ - -3.4597877026783537
+ - -1.0556060821911277
+ - 0.8834504007965088
+ - 2.4493859452812217
+ - 2.9368929003654
+ - 2.1584381410224776
+ - 0.6469941686333124
+ - 0.29079152619504917
+ - -0.504738233690419
+ - -2.2015281598561263
+ - -2.68752493788776
+ - -0.6074791120211102
+ - 1.315465275128087
+ - 2.8205871029959937
+ - 3.697926034311478
+ - 2.4237132188320203
+ - -0.6047517152142039
+ - -2.0771387227524767
+ - -2.5943601250017103
+ - -2.900347346706444
+ - -1.9578934094293443
+ - -0.14729595508079432
+ - 1.7146156221521884
+ - 3.0231480029368503
+ - 3.871183788898864
+ - 2.414986974484993
+ - -0.9698799006774552
+ - -2.5835075480249556
+ - -2.783977792314556
+ - -2.785168631079649
+ - -1.854327597112622
+ - -1.8873905259845207
+ - -0.6287386035299812
+ - 2.7269056425733265
+ - 3.6993613649193957
+ - 1.7172824983978487
+ - -0.1437281093869674
+ - -1.9500282114994483
+ - -2.899326918222383
+ - -2.595750646239867
+ - -1.4180427035227674
+ - -2.058360765312526
+ - -1.1764892311217245
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.493225878231976
+ - 4.85154971679486
+ - 1.8576107590489948
+ - 0.7943946797565937
+ - -0.6152074576962313
+ - -1.7567820468954218
+ - -2.135446955291775
+ - -1.8023084519029373
+ - -2.016249619558296
+ - -0.9616984265255138
+ - 1.9978824543765787
+ - 2.9110941323893433
+ - 1.6669732128967962
+ - 0.4725899706239956
+ - -0.8938461304207355
+ - -1.4403670694269393
+ - -1.298224837192695
+ - -0.7398917285790894
+ - -0.37569466911041005
+ - 0.8167453284361075
+ - 1.8688656219054132
+ - 2.11986500186564
+ - 1.43444061873474
+ - 0.13682396320376397
+ - -1.2217958818418142
+ - -1.8150186651380427
+ - -1.4705997963785535
+ - -0.4770603763783122
+ - 0.07954845094321394
+ - 1.1197299203289313
+ - 2.011001837767633
+ - 2.239676049723143
+ - 2.694486442515481
+ - 1.4984685309886139
+ - -1.6462620032173687
+ - -2.8253687347715664
+ - -2.0659205675417915
+ - -1.2710425384196444
+ - 0.07454380586169382
+ - 1.3909310925128255
+ - 2.1005547664998327
+ - 2.113927994793962
+ - 2.7536506071594173
+ - 1.2759374093570757
+ - 1.8210487382634002
+ - 1.705673093445558
+ - -1.2057091541106335
+ - -2.66644965879604
+ - -2.12757567297419
+ - -1.7714618914047988
+ - -0.6507287218338083
+ - 0.7607869789931108
+ - 1.8358409046911213
+ - 2.3076946944953445
+ - 2.849036406419276
+ - 1.6834509689242148
+ - -1.439962230003839
+ - -2.633403617780835
+ - -2.1285569781936173
+ - -1.5637057100632834
+ - -0.4689887710766292
+ - -0.20884757352623307
+ - 0.39863807693524195
+ - 1.5091611560774811
+ - 1.908800548204738
+ - 0.43956145308015926
+ - -0.9538665350637228
+ - -1.9417251876443367
+ - -2.0739693781163537
+ - -1.313620938509775
+ - -0.10384342756152944
+ - 0.24582184627715645
+ - 0.6649128062466373
+ - 1.3473993574256669
+ - 1.5472473149453068
+ - 0.10380467683829751
+ - -1.243128068496334
+ - -2.189742490823358
+ - -2.8803705262799277
+ - -1.999931878247931
+ - 0.8785436930912451
+ - 1.9119439567506624
+ - 2.0154622850295465
+ - 2.0147421860077364
+ - 1.145959863630033
+ - -0.23182946643928998
+ - -1.5008050688757728
+ - -2.281206111273714
+ - -4.838083386547372
+ - -3.494133216437642
+ - 1.791803331505718
+ - 2.75239402241323
+ - 1.9422654294812791
+ - 2.0707145541668
+ - 1.3074903909337061
+ - -0.03585768650380973
+ - -1.3548761560026432
+ - -2.2348479215043877
+ - -2.911991279053195
+ - -1.9872958804524918
+ - 0.9973485431279454
+ - 2.05707954368628
+ - 2.058609001402684
+ - 1.965706428063758
+ - 1.2139041586781996
+ - 1.168996667023928
+ - 0.2089253859135759
+ - -1.7260421675443989
+ - -2.5208316256474115
+ - -1.1250596700802489
+ - 0.24617571251777895
+ - 1.516668036103947
+ - 2.1202384826165317
+ - 1.8081955474003713
+ - 0.8860636674107509
+ - 0.7404528570948703
+ - -0.07040641040255505
+ - -1.6516863922603364
+ - -2.2749255968123974
+ - -0.8244732242101437
+ - 0.5768221977250525
+ - 1.8014030839220607
+ - 2.488788945383816
+ - 1.8235918708167012
+ - -0.18590859177958188
+ - -1.0384218546760118
+ - -1.655318756304432
+ - -2.133500048943624
+ - -1.6943133719567647
+ - -0.5049026421131462
+ - 0.8937041468508593
+ - 2.00883031650147
+ - 2.9873101525533032
+ - 1.9187032276633162
+ - 0.15951909230904895
+ - -0.04313556068868954
+ - -1.9248488674757447
+ - -3.0475415565318564
+ - -1.3842605587816645
+ - -0.06979040334378413
+ - 1.2798350130174394
+ - 2.0674473935366344
+ - 1.9609286608138325
+ - 1.1954916913783462
+ - 1.1638437471452119
+ - 0.2720285194665233
+ - -1.8505099741232727
+ - -2.561779586348761
+ - -1.1092692215382531
+ - 0.267472461390249
+ - 1.5707372825829455
+ - 2.1997061793638304
+ - 1.6269318873005174
+ - 0.15031331430838465
+ - -0.6160896212330604
+ - -1.4419249615396712
+ - -2.1117608598753246
+ - -1.8743320248354025
+ - -0.8076658720113346
+ - 0.5991808555753895
+ - 1.8214527986924265
+ - 2.463376196773897
+ - 1.7136472223533568
+ - -0.12995092482346374
+ - -1.0522157288259741
+ - -1.6745257923429229
+ - -2.141022260846333
+ - -1.8964658590921823
+ - -2.155593877299463
+ - -1.0778525350314978
+ - 1.9791552127241996
+ - 2.933952197927709
+ - 1.7520031495353021
+ - 0.6083857110888535
+ - -0.8017899180567163
+ - -1.861455499209555
+ - -2.1137512097052475
+ - -1.6600487848176728
+ - -2.9376034691981197
+ - -1.9310693744909224
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.2268305196527173
+ - 0.6784829272137716
+ - 1.4839005018631808
+ - 2.343238479583315
+ - 2.196320744894375
+ - 1.0780699704942143
+ - -0.49628136930747324
+ - -1.922516628825561
+ - -2.718187524066325
+ - -2.120928793191648
+ - 0.09196053493172016
+ - 0.9659730215617376
+ - 1.7665495324710048
+ - 2.4050878695896594
+ - 2.246208391420903
+ - 2.53511028631832
+ - 1.1210350535728801
+ - -1.9033186222516927
+ - -3.2321547844627814
+ - -2.0743083977940224
+ - -0.860222964831035
+ - 0.7291976603970736
+ - 2.0007010056548755
+ - 2.4035571951407806
+ - 2.0049780549188405
+ - 2.185103333410876
+ - 0.846796757608357
+ - -1.9695515873158338
+ - -3.185516682130953
+ - -1.8546049742988286
+ - -0.49587536404788146
+ - 1.044613580981843
+ - 1.6998043328644419
+ - 1.5508845349478653
+ - 0.8003926502970653
+ - 0.3825547141497018
+ - -0.9548527463626992
+ - -2.123838958230597
+ - -2.3823005632088137
+ - -1.5883441100662326
+ - -0.11674307853200228
+ - 1.411149224419787
+ - 2.34863797927064
+ - 1.824313924549515
+ - 1.5677317075717216
+ - 1.7358464632873705
+ - 1.4922495583824147
+ - 1.619130767337135
+ - -0.15176701431368014
+ - -1.6182104324867115
+ - -2.3931401296476844
+ - -2.1122998672813
+ - -0.9251318658177304
+ - 0.5861523576565759
+ - 1.153679150054751
+ - 1.2543826231636572
+ - 1.156114348065277
+ - 0.9811244092629121
+ - -0.5315827262201022
+ - -1.8818400077305075
+ - -2.6180741894789925
+ - -3.2329424946422294
+ - -1.8558241249778697
+ - 1.2534119478913948
+ - 2.6961825317843857
+ - 2.4121107276118714
+ - 1.986499723954969
+ - 0.7033460204885826
+ - -0.8943063357634331
+ - -2.0968494667946875
+ - -2.610136145588004
+ - -3.156208676089578
+ - -1.717608672719528
+ - 1.4830144760691044
+ - 2.9471821105940217
+ - 2.407656271804558
+ - 1.7468759655113077
+ - 0.4938178828804789
+ - 0.18246819933008201
+ - -0.4503833516360349
+ - -1.8766872605934481
+ - -2.1921228270728728
+ - -0.46344056632798586
+ - 1.1115581286312102
+ - 2.2137516244278657
+ - 2.3403930186629642
+ - 1.4599275175141901
+ - 0.07956256849389381
+ - -0.6348278389250728
+ - -0.7209030753975819
+ - -3.078983056443514
+ - -4.020866675500089
+ - -0.6797886275000946
+ - 0.9094406142541065
+ - 2.11300032938837
+ - 2.38582690655839
+ - 1.6310470840937998
+ - 0.32043786972012517
+ - -0.04012195932843772
+ - -0.5981932132893573
+ - -1.7875136557345808
+ - -2.0201706139568065
+ - -0.3045308360395903
+ - 1.2512071471032051
+ - 2.406349044644883
+ - 3.1159235631295212
+ - 1.9909074296790672
+ - -0.6509646383383958
+ - -1.9219738295331517
+ - -2.2141292332108597
+ - -2.33671868116452
+ - -1.4530034552700266
+ - 0.0755024916087594
+ - 1.5614004980509413
+ - 2.5409291314880678
+ - 3.2173899190219646
+ - 1.9580802209194605
+ - -0.9411431403604376
+ - -2.311244436307121
+ - -2.3406889913264477
+ - -2.2125663175159738
+ - -1.342523312325114
+ - -1.303928241585912
+ - -0.2998058630603845
+ - 2.088331843387092
+ - 2.8879059108334513
+ - 1.244496663301605
+ - -0.3134680360058425
+ - -1.7424161606372273
+ - -2.4050862168436598
+ - -2.029285059045434
+ - -0.9684504285949445
+ - -0.9029773410391435
+ - 0.09847724291916239
+ - 2.424408070419725
+ - 2.3974832347653776
+ - -0.419809763945445
+ - -1.7174992736441779
+ - -2.0430586146498544
+ - -2.3959668711988726
+ - -1.7179702458151889
+ - -0.2786266258661107
+ - 1.2709630418172881
+ - 2.4123381928754015
+ - 3.1785304019408716
+ - 2.144904638900211
+ - -0.7963835560819217
+ - -1.9842304378453204
+ - -2.2208543825275484
+ - -2.3261661083223366
+ - -1.6542651985417467
+ - -1.6995279602105728
+ - -0.4948822809188642
+ - 1.9828792834015798
+ - 3.025411668839688
+ - 1.5310436395604345
+ - 0.04104006452811486
+ - -1.4724283046304005
+ - -2.3392068027834476
+ - -2.194480709940659
+ - -1.3120629753726532
+ - -1.2422868436409344
+ - -0.18365259703419634
+ - 1.9398700428007953
+ - 2.8071601066314
+ - 1.2177104620782335
+ - -0.33873432787423563
+ - -1.799943191576701
+ - -2.5851907460002153
+ - -2.0637923886273946
+ - -0.059711483796156026
+ - 0.7513349480496029
+ - 1.6525319102195921
+ - 2.3854960150474636
+ - 2.0935071878464475
+ - 0.8752357364735509
+ - -0.7112703082235626
+ - -2.0776924419812106
+ - -4.780678354499074
+ - -3.574953215111193
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.7289707172373081
+ - -0.6468812753289815
+ - 0.983489864614327
+ - 2.1390934594262836
+ - 2.3775455647731136
+ - 1.5656269876573576
+ - 0.08594828000962547
+ - -1.4397873545842015
+ - -2.1814283728662693
+ - -1.8696623610486
+ - -0.4549091422486117
+ - 0.17393202530156882
+ - 1.3200014539811988
+ - 2.2894707664183005
+ - 2.504065092178585
+ - 2.944374118351864
+ - 1.483199692448659
+ - -1.7115702701746915
+ - -3.1478549444228676
+ - -2.310049060059787
+ - -1.3772336498710018
+ - 0.15258031868224825
+ - 1.6192146771991203
+ - 2.379927816075233
+ - 2.3512987803738246
+ - 2.69499981800767
+ - 1.254609149618392
+ - -1.8501983157409099
+ - -3.225680016490163
+ - -2.172093581208814
+ - -1.0497291121909738
+ - 0.4369879061373244
+ - 0.9713429960521138
+ - 1.1492615309676966
+ - 1.2560671721537104
+ - 1.1588834820451208
+ - -0.3943167798475635
+ - -1.7878320965138934
+ - -2.416461285808142
+ - -1.9786038693146502
+ - -0.6929473434963127
+ - 0.8400907274576417
+ - 1.6077074550402788
+ - 1.485238841391896
+ - 1.7364244849447315
+ - 1.5690420878122395
+ - 1.8312062586068336
+ - 2.3590474461732245
+ - 0.43029246826626694
+ - -1.1421781709972463
+ - -2.2286458944234
+ - -2.3329275555685567
+ - -1.43346837283935
+ - -0.04275325820180784
+ - 0.37972367872326995
+ - 0.800366628620728
+ - 1.557315890663278
+ - 1.7083080260939172
+ - 0.04855558843584917
+ - -1.4642509737449658
+ - -2.5046718740569722
+ - -3.1943616454667327
+ - -1.9757477640620111
+ - 0.8471440315044828
+ - 2.188736490949148
+ - 2.3055836077179137
+ - 2.259303921835491
+ - 1.2394149412511521
+ - -0.3312159639648086
+ - -1.7490209293165204
+ - -2.5967342504910667
+ - -3.2417602718865157
+ - -1.9096919822138365
+ - 1.1223915838995553
+ - 2.540245337939045
+ - 2.393097483526071
+ - 2.097553262675741
+ - 1.0966329289277688
+ - 0.9727132022708066
+ - 0.09498116385995553
+ - -2.128220562781548
+ - -2.7286163423500076
+ - -1.0183294118064372
+ - 0.5659481034892345
+ - 1.9125346197263486
+ - 2.417406804797959
+ - 1.8795511929850501
+ - 0.7050491210155382
+ - 0.6870984405906153
+ - 0.2322979148498661
+ - -3.587672929399927
+ - -4.798179818829538
+ - -1.2158697352679477
+ - 0.347329293751148
+ - 1.766944627913175
+ - 2.4094083539971525
+ - 2.0116743746051697
+ - 0.9346116377355264
+ - 0.7575033507339615
+ - -0.05714311250675691
+ - -2.0710841301907754
+ - -2.5954383582964566
+ - -0.8703251716609552
+ - 0.7198376508605523
+ - 2.087626504171203
+ - 2.81359667879675
+ - 1.9451436206106412
+ - -0.1817997399389149
+ - -1.2423732259590958
+ - -1.9186408483973183
+ - -2.417642014591674
+ - -1.8769335049314906
+ - -0.5049864188377106
+ - 1.0749760082535578
+ - 2.312807621192567
+ - 3.0330648364082076
+ - 1.9886612624108342
+ - -0.4940241684516131
+ - -1.7012641959600567
+ - -2.128288053502328
+ - -2.3833676288236902
+ - -1.8438308989507801
+ - -1.9933501789672816
+ - -0.8011805974465017
+ - 2.1513103719829823
+ - 3.1890749869544996
+ - 1.705213369729868
+ - 0.2692822915187706
+ - -1.2882380007232523
+ - -2.2806157603211914
+ - -2.2858520652411425
+ - -1.5244340916235324
+ - -1.726677229133716
+ - -0.4266605384105545
+ - 2.3946806818131323
+ - 2.4231259560204177
+ - 0.10515904320618907
+ - -0.8924063750514151
+ - -1.6755653606988645
+ - -2.390660258772978
+ - -2.0785382140131228
+ - -0.846693228207863
+ - 0.7410165199511539
+ - 2.098695017771325
+ - 2.877976358439965
+ - 2.082739154164195
+ - -0.29395420892780927
+ - -1.293769474931931
+ - -1.9297311998995683
+ - -2.412863690780246
+ - -2.0941701692375596
+ - -2.312025143311095
+ - -0.9434989551964629
+ - 1.9531283077240358
+ - 3.211658779380649
+ - 1.9349448127667752
+ - 0.6198781806101119
+ - -0.9673700606383138
+ - -2.131402367693189
+ - -2.371303790270658
+ - -1.8186883488379748
+ - -1.9243905131211672
+ - -0.6542338457739528
+ - 1.9866606891760323
+ - 3.1116429846968283
+ - 1.6835352549284357
+ - 0.2459313248349172
+ - -1.2907089624438368
+ - -2.009485797464178
+ - -1.7803714395887122
+ - -0.6023246316241724
+ - -0.048206548319325186
+ - 1.1820290457348512
+ - 2.232559269007405
+ - 2.325260919806836
+ - 1.3903026845509323
+ - -0.1362247122396696
+ - -1.6348356570592337
+ - -4.00336989031748
+ - -3.0664727775809397
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.5037932932223708
+ - -4.850884667240943
+ - -1.8056851955176911
+ - -0.7000652117203562
+ - 0.7114632838515039
+ - 1.8124179688788669
+ - 2.1268116041212255
+ - 1.73154967500012
+ - 1.913138528242121
+ - 0.877717516550478
+ - -2.005520612425461
+ - -2.8871051258357556
+ - -1.602017586005653
+ - -0.37379424844687714
+ - 0.9938144048816618
+ - 1.5556814479678143
+ - 1.3530302723453516
+ - 0.6638173661048933
+ - 0.24142903032690802
+ - -0.9090129826860381
+ - -1.9159523158879284
+ - -2.101308215377341
+ - -1.3582604573297616
+ - -0.03615678981280277
+ - 1.3134725989822287
+ - 1.9177192086050803
+ - 1.5148233277514018
+ - 0.39667476167070914
+ - -0.21447044041015462
+ - -1.2044707363832325
+ - -2.0435286763378553
+ - -2.208496138935924
+ - -2.638272846100274
+ - -1.44164468182077
+ - 1.6895396588623797
+ - 2.857807910633993
+ - 2.0375276552988777
+ - 1.1887224743608018
+ - -0.17553248712100983
+ - -1.4659965881422623
+ - -2.1175944885401967
+ - -2.066551251089732
+ - -2.6703903596761274
+ - -1.2062887629591357
+ - 1.7125774856356197
+ - 1.8279685427347154
+ - 1.2756503865154412
+ - 2.75016937234751
+ - 2.1334371674081742
+ - 1.713370229729608
+ - 0.5534644407567207
+ - -0.8543355988703388
+ - -1.885477012515581
+ - -2.296259002571433
+ - -2.8167663325313055
+ - -1.6402093117564016
+ - 1.497065641216923
+ - 2.690002020228236
+ - 2.1183917997476427
+ - 1.493288102783861
+ - 0.36118191939526384
+ - 0.07358660885048861
+ - -0.4792724819130507
+ - -1.4649555111563313
+ - -1.8059986564831094
+ - -0.34027881998596926
+ - 1.0432183408481308
+ - 1.982610080084696
+ - 2.048178579787139
+ - 1.2326855993205268
+ - -0.0057337861657864525
+ - -0.3804654309405573
+ - -0.741248370907596
+ - -1.2925692724121274
+ - -1.4317657785057292
+ - -0.002774093244890883
+ - 1.3240330342433593
+ - 2.2232131049545543
+ - 2.904681020136928
+ - 1.9924525325735243
+ - -0.9628258934105454
+ - -2.0154995822250923
+ - -2.046645737630922
+ - -1.9794395016117403
+ - -1.059123234193184
+ - 0.33195609371353335
+ - 1.5710834920748054
+ - 2.297718056938126
+ - 4.839183409472011
+ - 3.4838506427464746
+ - -1.9321014480442418
+ - -2.9379888612456364
+ - -1.9821590477004583
+ - -2.0442661704408684
+ - -1.225837959871538
+ - 0.13677217957013849
+ - 1.431536265612085
+ - 2.261260098531057
+ - 2.9270883762329967
+ - 1.973504505141747
+ - -1.078551720807914
+ - -2.154213842402535
+ - -2.083333526868379
+ - -1.924226321833793
+ - -1.1193296086375621
+ - -1.044211397443904
+ - -0.12609222653142937
+ - 1.7085168658106933
+ - 2.454238770128246
+ - 1.0380866068968595
+ - -0.34623000138210047
+ - -1.586745687879591
+ - -2.129276857405583
+ - -1.7527137041193421
+ - -0.7839180354815868
+ - -0.6089136079810105
+ - 0.15346454158853232
+ - 1.6214836806165853
+ - 2.190483384918789
+ - 0.730424773469461
+ - -0.6735424173721368
+ - -1.8684590652660615
+ - -2.5581793079763773
+ - -1.846761835331092
+ - 0.2751307472704788
+ - 1.1663103810040767
+ - 1.7173946167904837
+ - 2.1325701718580863
+ - 1.6305340531605639
+ - 0.4062932581658448
+ - -0.9845150750131925
+ - -2.0612924061960585
+ - -3.0426505408369704
+ - -1.9256097566633845
+ - -0.05810262589038696
+ - 0.14458402453081579
+ - 1.9182271278757994
+ - 2.9926167804629866
+ - 1.3060031011552196
+ - -0.030942924015246752
+ - -1.3597315429669876
+ - -2.0911294478192084
+ - -1.9185870923235218
+ - -1.1005581757185743
+ - -1.0363860932546578
+ - -0.18305886720512374
+ - 1.8275641087122334
+ - 2.492794935875831
+ - 1.0219212438150274
+ - -0.36720410244557133
+ - -1.6496221244901286
+ - -2.284128282488582
+ - -1.6572022350951576
+ - -0.06748107472871176
+ - 0.7473472026356136
+ - 1.514865774105093
+ - 2.1256697078664164
+ - 1.822987111459041
+ - 0.7135830619758279
+ - -0.6952666005771815
+ - -1.8873386333705613
+ - -2.530018092271469
+ - -1.7312803164490849
+ - 0.2125837319908394
+ - 1.1767754597897564
+ - 1.735581734710998
+ - 2.1390692469707355
+ - 1.8314239069868246
+ - 2.058900096810517
+ - 0.9969531161701172
+ - -1.9930875831880626
+ - -2.919155051370914
+ - -1.6923505729581676
+ - -0.5111999312405614
+ - 0.8947817537003309
+ - 1.9091331497199258
+ - 2.0959159073205154
+ - 1.581919611518404
+ - 2.7527451604170388
+ - 1.7913022163900423
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -4.486610235000198
+ - -6.359587014403672
+ - -2.8673968581277127
+ - -1.8297463587514402
+ - 0.0002707823649125016
+ - 1.8352778566937917
+ - 2.8690260558742247
+ - 2.9525624517161715
+ - 3.5034797201306542
+ - 1.9622669558950583
+ - -2.5526846317300733
+ - -4.0133613350839985
+ - -2.726755072749219
+ - -1.4456563654855084
+ - 0.3341346080042162
+ - 0.9214906415709457
+ - 1.2416616220038117
+ - 1.6056079423746303
+ - 1.615561503731489
+ - -0.2975945541940139
+ - -2.053612483359327
+ - -2.931641848150437
+ - -2.5161335598490493
+ - -1.0215680200451285
+ - 0.8330290525728443
+ - 1.5177191844766285
+ - 1.5559680303142047
+ - 1.29745693755487
+ - 1.0248281185386172
+ - -0.757392850274541
+ - -2.3616026228373763
+ - -3.1941852749090236
+ - -3.9993240628227364
+ - -2.438020389936288
+ - 1.793944357692382
+ - 3.428905432390195
+ - 2.943298197796049
+ - 2.353512207058733
+ - 0.7474329489223094
+ - -1.19354345828664
+ - -2.6084845089179978
+ - -3.1650275745119263
+ - -4.303134125413877
+ - -2.253889772614542
+ - 1.6291776728586007
+ - 1.8551184397805127
+ - 2.035464756941601
+ - 2.7916546560845736
+ - 2.737407295265732
+ - 2.8061646882417457
+ - 1.666147120373847
+ - -0.21358769767005992
+ - -1.9890262484878836
+ - -3.1180476534729586
+ - -4.0013747150765635
+ - -2.566633581776708
+ - 1.4080636958907822
+ - 2.9753238896005336
+ - 2.8728020768086933
+ - 2.637209871003715
+ - 1.516343482029928
+ - 1.4053728384017576
+ - 0.15264878056942105
+ - -2.3464348546084506
+ - -3.3601626541016087
+ - -1.40647332770917
+ - 0.501580376548426
+ - 2.200930659413397
+ - 2.9320649683696973
+ - 2.3976887901870807
+ - 1.0529320119599408
+ - 0.8047327931013215
+ - -0.23205917189375094
+ - -2.2234831046522334
+ - -2.9927441757864575
+ - -0.9813641780174741
+ - 0.9511035788892716
+ - 2.5877982069722556
+ - 3.5689575717252335
+ - 2.6818699644808968
+ - -0.4453523310287002
+ - -1.637503380707788
+ - -2.3786844312597344
+ - -2.9340896804274585
+ - -2.22748702492699
+ - -0.5342245017887466
+ - 1.3775007027349815
+ - 2.8494949585144
+ - 6.32717712820443
+ - 4.662265703609141
+ - -1.1727025022973183
+ - -2.051737604726509
+ - -2.209934855693899
+ - -2.9333045215758826
+ - -2.395660276363889
+ - -0.7974784518225024
+ - 1.1329790864435896
+ - 2.7059377497596024
+ - 3.6874690685803646
+ - 2.71814047932394
+ - -0.6267146612747496
+ - -1.8813199345574996
+ - -2.4892414601792976
+ - -2.9215609038134107
+ - -2.381222821975719
+ - -2.5752070623833156
+ - -0.9667651439857495
+ - 2.4072246435735187
+ - 3.8587420432478217
+ - 2.2012563187189618
+ - 0.5148298399179884
+ - -1.399958290056988
+ - -2.701214604326678
+ - -2.832434919790972
+ - -2.0152088702151683
+ - -2.0704662690718165
+ - -0.6028106792037071
+ - 2.415923232432684
+ - 3.686041697525155
+ - 1.86678816342606
+ - 0.053887296066156706
+ - -1.7981571118777888
+ - -2.678883387336232
+ - -2.194450528789078
+ - -0.5031189110937256
+ - 0.2898522311571486
+ - 1.648505197509346
+ - 2.801997387963195
+ - 2.752716567247866
+ - 1.4864157642096254
+ - -0.41057740845711516
+ - -2.191941919650634
+ - -3.449359866859691
+ - -2.455106652085383
+ - -1.057561343965844
+ - -0.7924150662709196
+ - 2.5763583458283215
+ - 4.450930403514783
+ - 2.467796491989754
+ - 0.9343284149569906
+ - -1.0076170506916464
+ - -2.5095393008729654
+ - -2.922511807977435
+ - -2.3601114869439512
+ - -2.5908201968194935
+ - -1.1007597965749325
+ - 2.615597160660668
+ - 3.9323852492085902
+ - 2.1837123982633093
+ - 0.48423829223202164
+ - -1.3970730200322974
+ - -2.1744910150607772
+ - -1.8774717353087693
+ - -0.889994071332544
+ - -0.2914647014206928
+ - 1.2781085608526606
+ - 2.6493577236128476
+ - 2.884436053416818
+ - 1.8450634714349403
+ - 0.019296097235691877
+ - -1.8342059852101593
+ - -2.6685984172372286
+ - -2.0967882201487633
+ - -0.5212669870900336
+ - 0.335770256806408
+ - 1.682194629713127
+ - 2.8204116280417106
+ - 3.028040723121528
+ - 3.632276774017632
+ - 2.0886056012956615
+ - -2.475489655076303
+ - -3.966381276580776
+ - -2.793741887279347
+ - -1.6100334718651481
+ - 0.27194810560341987
+ - 2.0389624811602984
+ - 2.9175955017220763
+ - 2.827920000148075
+ - 5.394212114420582
+ - 3.698651208121891
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.974457230711517
+ - -2.9737061040630626
+ - -1.918250320811743
+ - -1.9085888617105704
+ - -1.0765751066917546
+ - 0.23368105155796562
+ - 1.434773587959053
+ - 2.1686387633833624
+ - 2.787486331776638
+ - 1.8546424601650175
+ - -1.1051914040988566
+ - -2.1402635843707754
+ - -1.9984039067871722
+ - -1.7793992721946286
+ - -0.9623802726405833
+ - -0.8600834773754564
+ - -0.03390475919959699
+ - 1.5998467293655834
+ - 2.2554068459902687
+ - 0.8932857131898313
+ - -0.4311488617171647
+ - -1.5749591062504662
+ - -2.0257203280341227
+ - -1.6025287004959852
+ - -0.6369364081146293
+ - -0.44089181067987404
+ - 0.2310625886925857
+ - 1.504343665683035
+ - 1.987217798154879
+ - 0.594631670521888
+ - -0.7376664246385629
+ - -1.8386146811940942
+ - -2.49417296635598
+ - -1.7727706219726196
+ - 0.3526397989388052
+ - 1.236463304411723
+ - 1.690420090935918
+ - 2.0185501523774145
+ - 1.4782625051288716
+ - 0.28297398345760455
+ - -1.02605476459908
+ - -2.0061894820696327
+ - -2.9384155717213414
+ - -1.8303433245503102
+ - 0.050468799194488975
+ - 0.2423270966792979
+ - 1.8119884280638254
+ - 2.7812588332352477
+ - 1.211223911753309
+ - 1.9586633975615948
+ - 1.8651095188169788
+ - 0.9467970313207796
+ - -0.37250614644698093
+ - -1.5822468560662009
+ - -2.227301753859242
+ - -1.6808299598924523
+ - 0.018004021720458507
+ - 0.7546595863636184
+ - 1.4536468709097
+ - 2.017733739607099
+ - 1.913165582708099
+ - 2.1685026433947487
+ - 0.9731613487877081
+ - -1.5889078849722154
+ - -2.717179924677056
+ - -1.7665697133182894
+ - -0.7655252952827617
+ - 0.5692330101506196
+ - 1.6560751714428723
+ - 2.023664895698239
+ - 1.7168235779214716
+ - 1.8814458430666359
+ - 0.7456396387995725
+ - -1.6504034124107168
+ - -2.687638903190074
+ - -1.587841599061346
+ - -0.4613732432460696
+ - 0.8326127588512087
+ - 1.3927133958696887
+ - 1.3345481819147118
+ - 0.7350441309091469
+ - 0.3945876760470737
+ - -0.760660795714149
+ - -1.7634158733204515
+ - -2.01028986910453
+ - -1.369173639804996
+ - -0.14362559632923144
+ - 1.144370733730958
+ - 2.9388451427806452
+ - 2.2896109536470663
+ - 1.0223743258078724
+ - 1.1190532002260931
+ - -0.5845221026225874
+ - -1.6640080373009831
+ - -2.0307406715935334
+ - -1.5007738351734539
+ - -0.32906005803052074
+ - 0.9666708724821748
+ - 1.551050010742954
+ - 1.4220723670410114
+ - 0.616010955531654
+ - 0.2090367585757426
+ - -0.884475988681057
+ - -1.8266732260035126
+ - -2.1685506541776607
+ - -2.596959848885119
+ - -1.3774789241409546
+ - 1.3188198294978728
+ - 2.54470233837905
+ - 1.9995811043321898
+ - 1.359318334028877
+ - 0.13090326341181352
+ - -1.1588059011116412
+ - -1.9417230808675854
+ - -2.082521772514043
+ - -2.4370857715704135
+ - -1.2102381244767506
+ - 1.4646837249980866
+ - 2.663810014368382
+ - 1.9227214758239495
+ - 1.107029337944481
+ - -0.08862544336850593
+ - -0.4733046647379305
+ - -0.764367375281209
+ - -1.2326895267282936
+ - -1.2953428411964976
+ - 0.07453082692287148
+ - 1.3173174790629942
+ - 1.9973538016933452
+ - 1.7963258217036155
+ - 0.8242917392490583
+ - -0.43554041136017063
+ - -0.9898340152005195
+ - -1.0678625004787858
+ - -1.627697812937077
+ - -1.5043853287665143
+ - 1.275741996610692
+ - 2.6903971607105754
+ - 2.026412119429003
+ - 1.562577449414651
+ - 0.42373383965839984
+ - -0.9056031382094529
+ - -1.8367523750432406
+ - -2.162720649247564
+ - -2.6341380523930864
+ - -1.5086190176343475
+ - 1.4766437537368884
+ - 2.605806128693552
+ - 1.9955935611152984
+ - 1.3414415050496382
+ - 0.23076630803495787
+ - -0.06990107836906649
+ - -0.5370962542877121
+ - -1.3416612582723488
+ - -1.6041715526808353
+ - -0.21976469799647802
+ - 1.0801387873062058
+ - 1.919702763088403
+ - 1.9129738171296737
+ - 1.0837994366415535
+ - -0.11852748909545968
+ - -0.4992505667263635
+ - -0.7807491015103981
+ - -1.1674470271272082
+ - -1.2366936693027377
+ - 0.10165297766289422
+ - 1.3373517909378958
+ - 2.1398965181504965
+ - 2.7757773744125354
+ - 1.8791001673167673
+ - -0.9987813002907987
+ - -2.015533029167835
+ - -1.970329237279165
+ - -1.8380592873925015
+ - -0.9133479669741956
+ - 0.41770496117588113
+ - 1.560337085213606
+ - 2.1929465214735875
+ - 4.583773826706333
+ - 3.2885463860241644
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.1198730289613176
+ - -0.14170925915786622
+ - -1.0922241966970732
+ - -1.9159149942777824
+ - -1.9173276398149037
+ - -1.0711569430454275
+ - 0.22995143269228874
+ - 1.469086399519991
+ - 2.1246454365363743
+ - 1.712458111563608
+ - 0.1005927733818559
+ - -0.558900086067426
+ - -1.3489312948109933
+ - -1.9971221568753679
+ - -1.9845345086136135
+ - -2.278354638476966
+ - -1.0666013190018153
+ - 1.5477619978650259
+ - 2.7070827712787073
+ - 1.8318831867828156
+ - 0.8964519381612414
+ - -0.4288447204580984
+ - -1.5682573712671766
+ - -2.025834442981095
+ - -1.809298867953628
+ - -2.0150565631158175
+ - -0.8494709793636592
+ - 1.627414574456963
+ - 2.708225975034002
+ - 1.6726698280077712
+ - 0.600211905517267
+ - -0.6855880292478386
+ - -1.2005008472796719
+ - -1.1811209660326796
+ - -0.8258252826189838
+ - -0.5769063427502993
+ - 0.6250056093479853
+ - 1.6872759691397627
+ - 2.0267021968381775
+ - 1.4711362344186418
+ - 0.28673398118970433
+ - -1.0076257746177435
+ - -1.7453839414406798
+ - -1.4328595801195556
+ - -1.2303911077466276
+ - -1.0718391276761778
+ - 1.5771823140599919
+ - 2.9813485488872327
+ - 1.9437558183729082
+ - 1.2138098078407673
+ - 1.971069405156895
+ - 1.859095449385679
+ - 0.9485400399882465
+ - -0.29075949938037576
+ - -0.7236037063663766
+ - -0.9131703629517036
+ - -1.109014804995796
+ - -1.0673031236267498
+ - 0.2604989550068194
+ - 1.4559171804883189
+ - 2.178042595274218
+ - 2.722663794344318
+ - 1.6092512842215139
+ - -0.9279253428701884
+ - -2.1155842357990693
+ - -2.0060287640850274
+ - -1.7696821254482937
+ - -0.7699435148411996
+ - 0.5729478996825303
+ - 1.6605842545582021
+ - 2.2039481448433675
+ - 2.6982364466828
+ - 1.51585332417722
+ - -1.137073373215126
+ - -2.3607320308526183
+ - -2.0322615556897303
+ - -1.5923504230258934
+ - -0.6144426503042185
+ - -0.41216173405782813
+ - 0.20314383382320603
+ - 1.669835257655816
+ - 2.0296706668390847
+ - 0.5731080057260727
+ - -0.7624548067953044
+ - -1.7746961035068916
+ - -2.0052254827212392
+ - -1.3720682994984297
+ - -0.27135555721660337
+ - 0.10589311348441151
+ - 0.2989867729238771
+ - 2.770932875287012
+ - 3.6554513747911788
+ - 0.7500142006753001
+ - -0.5860702458601933
+ - -1.6748276593015305
+ - -2.0262347452155467
+ - -1.5041235013977763
+ - -0.4714571939346173
+ - -0.2262433569129869
+ - 0.3296094312638761
+ - 1.6048412481876249
+ - 1.8968373947697152
+ - 0.4422180087845424
+ - -0.8852530332045146
+ - -1.9319337940052022
+ - -2.5376216623277266
+ - -1.669489196634309
+ - 0.3977049281621141
+ - 1.4044060962244507
+ - 1.7768842839247072
+ - 2.003392067037155
+ - 1.3676128038155468
+ - 0.12548580860634767
+ - -1.1623539257260644
+ - -2.075351623636616
+ - -2.6619625051931566
+ - -1.6666205410638624
+ - 0.6504015733628765
+ - 1.7564595723686847
+ - 1.9110647749499075
+ - 1.9276716204248217
+ - 1.2993824682984105
+ - 1.3280940829514427
+ - 0.41720682084603156
+ - -1.787389325879325
+ - -2.5415734973406097
+ - -1.203205527064668
+ - 0.07511066432496913
+ - 1.3260208864892942
+ - 1.9942320646512304
+ - 1.8005828156709542
+ - 1.0007319491284983
+ - 1.0326684796539631
+ - 0.08799035111895338
+ - -2.0414863118587023
+ - -2.036768917211343
+ - 0.1839299640730145
+ - 1.183950732321449
+ - 1.608660505949765
+ - 2.025389908504187
+ - 1.5711223740706286
+ - 0.4210449732675114
+ - -0.9024309608633692
+ - -1.9386577708457944
+ - -2.591169461677457
+ - -1.7944287073241472
+ - 0.5098871065493055
+ - 1.4535367037636695
+ - 1.783997997338826
+ - 1.9963478170061955
+ - 1.5431052973555548
+ - 1.6377017087822248
+ - 0.565044129356962
+ - -1.6679204828029754
+ - -2.6204235196847856
+ - -1.4271070203308538
+ - -0.22354734273928997
+ - 1.0810006337908564
+ - 1.9113110953169214
+ - 1.9143355090107683
+ - 1.275347722102676
+ - 1.2735561452173478
+ - 0.3088911238179561
+ - -1.6565015079743908
+ - -2.4743421512215047
+ - -1.1822091694161523
+ - 0.0958643118968657
+ - 1.3567360130683015
+ - 1.9994181817924062
+ - 1.6536268540044
+ - 0.2275246926314326
+ - -0.37485737709709727
+ - -1.2446515466710735
+ - -1.9683713920233796
+ - -1.8468253136529078
+ - -0.9085199418749751
+ - 0.41418812829282536
+ - 1.6133792381727163
+ - 3.7911677531102566
+ - 2.858741742969857
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.1696177912596686
+ - 2.7610305142307876
+ - 0.20769320188575058
+ - -1.0969211722715873
+ - -1.9339843064677444
+ - -1.9184334310425255
+ - -1.0781450470802643
+ - 0.13352938598231737
+ - 0.5431773851873295
+ - 0.8311965109156894
+ - 1.2670886175338159
+ - 1.268895406971131
+ - -0.11544821141477757
+ - -1.3542148589745053
+ - -2.1542226334886396
+ - -2.7187808857771913
+ - -1.6427762109187893
+ - 0.8279414612514822
+ - 1.992716150256954
+ - 1.9835697302145614
+ - 1.841919151314586
+ - 0.9061285553720807
+ - -0.4328416177637108
+ - -1.5768260572413135
+ - -2.205284735654946
+ - -2.7254653728243583
+ - -1.5672941603321884
+ - 1.0489917475687152
+ - 2.2636152476283913
+ - 2.032940424383824
+ - 1.683761241616742
+ - 0.7670561786895354
+ - 0.6153525553413456
+ - -0.07803526693224344
+ - -1.65211196452487
+ - -2.1476134071192075
+ - -0.7135989650515754
+ - 0.6271439434590821
+ - 1.7028799624616053
+ - 2.028827558833746
+ - 1.4803134699790288
+ - 0.42892754832444174
+ - 0.20449884512465055
+ - -0.41602421584297716
+ - -1.9849286694493813
+ - -1.9281804130661955
+ - 0.6613305897318392
+ - 1.8962483813803275
+ - 1.885577766618543
+ - 1.9549206999624247
+ - 1.227255293023269
+ - 1.9726563626153588
+ - 1.8649648840977626
+ - 1.1305237032122812
+ - 1.097299818721884
+ - 0.2509541480530676
+ - -1.7615394266123856
+ - -2.4351232271480554
+ - -1.0490590147644825
+ - 0.2642458122198153
+ - 1.5044184969268772
+ - 2.104408970111728
+ - 1.5534233288802322
+ - 0.1355232568322704
+ - -0.5994812905003222
+ - -1.3810908385696514
+ - -2.0139770227338163
+ - -1.7815900946556464
+ - -0.7609768350635284
+ - 0.5800500864011673
+ - 1.7421545578285857
+ - 2.354040970799835
+ - 1.6348893645758151
+ - -0.1315716386289284
+ - -1.0145172839730028
+ - -1.601666576694
+ - -2.040381885614226
+ - -1.8014029067911372
+ - -2.0454021331444343
+ - -1.0197230195164633
+ - 1.8875942666903647
+ - 2.794903607455547
+ - 1.6642245658748254
+ - 0.57075989139739
+ - -0.7728646330335358
+ - -1.7785737915898743
+ - -2.012905859008215
+ - -1.5748559472281631
+ - -2.7823576692848158
+ - -1.8273576152893478
+ - 3.3303158901343566
+ - 4.623856704555944
+ - 1.7655995598393033
+ - 0.74830703596957
+ - -0.5953422370320162
+ - -1.6795556750877574
+ - -2.034443856997847
+ - -1.7111298699619364
+ - -1.911995924602153
+ - -0.9087291668698685
+ - 1.9048550596621971
+ - 2.7722575490652446
+ - 1.5826891635489595
+ - 0.441182237395643
+ - -0.8612583066555362
+ - -1.3835918868080834
+ - -1.2424321709827426
+ - -0.6980732705386824
+ - -0.3454955279692866
+ - 0.7870495563092613
+ - 1.7855809785500318
+ - 2.0186653834353456
+ - 1.360019657746764
+ - 0.12099449608926906
+ - -1.1730451231361245
+ - -1.7394832078141886
+ - -1.4057300148323408
+ - -0.4471701421332747
+ - 0.08845356605490622
+ - 1.0751149809536282
+ - 1.9196862214560384
+ - 2.1316754068752224
+ - 2.562799035048747
+ - 1.422852671105247
+ - -1.5730630159456167
+ - -2.695842226617505
+ - -1.96633407376523
+ - -1.2037136907895227
+ - 0.0804857924237155
+ - 1.3326885172225729
+ - 2.0035888720872705
+ - 2.0102630754390054
+ - 2.6166466586821
+ - 1.2098207161823202
+ - -1.5761769132085728
+ - -1.6924921130472876
+ - -0.9909229459757439
+ - -0.8382618276130039
+ - 0.49566460757092834
+ - 1.6162132300232805
+ - 2.044776444198256
+ - 1.5706023782960188
+ - 0.42429025891956856
+ - -0.8776799029329191
+ - -1.4304710080468224
+ - -1.3072637499751947
+ - -0.6800729175946508
+ - -0.3295691274652368
+ - 0.8022352153514409
+ - 1.7924458792141693
+ - 2.194354695144066
+ - 2.6447568972243882
+ - 1.4272231498072783
+ - -1.275905745081222
+ - -2.5099307150101127
+ - -2.023033364235852
+ - -1.4352465534035856
+ - -0.22679448206317648
+ - 1.0852826443169676
+ - 1.9220321653472412
+ - 2.123895482172344
+ - 2.5030950698323924
+ - 1.26900816615204
+ - -1.4327594544984874
+ - -2.649002519180249
+ - -1.9605404969147933
+ - -1.191189392644168
+ - -0.0142555321152353
+ - 0.35805762946322367
+ - 0.7141686654441443
+ - 1.3598653684760953
+ - 1.4330728398602948
+ - 0.02031891824440091
+ - -1.2501576797146308
+ - -1.9869295416848605
+ - -1.8474014166322457
+ - -0.9144982709088417
+ - 0.33598159389869375
+ - 1.3607150624702755
+ - 1.194484125539757
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.267617697989711
+ - 4.453329722906559
+ - 1.419265849904202
+ - 0.2079067600071278
+ - -1.097723936956396
+ - -1.921731036188127
+ - -1.9140159910273942
+ - -1.2642638747127515
+ - -1.281812571998264
+ - -0.4188603694793085
+ - 1.8776728296844873
+ - 2.541640276285033
+ - 1.1720409988157003
+ - -0.11243861693366738
+ - -1.3742430956103895
+ - -1.9612255003511003
+ - -1.4958693087961965
+ - -0.2588349016951071
+ - 0.3976979254580572
+ - 1.2608073426889976
+ - 1.9774005293633319
+ - 1.8448096312802231
+ - 0.896316941283218
+ - -0.4312542582991701
+ - -1.6296492823286628
+ - -2.235621290206296
+ - -1.59568055019392
+ - 0.006475678481421394
+ - 0.8195519781028726
+ - 1.497510054086635
+ - 2.0274236580051572
+ - 1.8850384128488094
+ - 2.1643606611850794
+ - 1.0622294924014244
+ - -1.7518250074823767
+ - -2.775078958992769
+ - -1.7408324489168086
+ - -0.7122368490484102
+ - 0.6272126381241488
+ - 1.6931278324890506
+ - 2.0240101569305664
+ - 1.6799056462783897
+ - 2.069073433011131
+ - 0.7868398676110524
+ - -1.865929860493138
+ - -1.9362683008268178
+ - -0.5484862447498171
+ - -0.027885460558365223
+ - 0.995645446333382
+ - 1.8808088148066244
+ - 1.9590602237269086
+ - 1.2164867615089334
+ - 1.9611665436233647
+ - 2.0567636502747875
+ - 2.4388141934269827
+ - 1.3073138206569406
+ - -1.6387946002088671
+ - -2.732390599526692
+ - -1.8992228454983502
+ - -1.0469521635857846
+ - 0.1656023719578204
+ - 0.5564829120365362
+ - 0.8123379417044314
+ - 1.1418643570577791
+ - 1.1848122193277424
+ - -0.1454752160075598
+ - -1.3706451246627853
+ - -2.0100233453589134
+ - -1.7626240433914195
+ - -0.7590139210061353
+ - 0.5108489664258151
+ - 0.970763248243654
+ - 1.0331761022406927
+ - 0.9344762706727792
+ - 0.7825091247743943
+ - -0.46359887974423575
+ - -1.5896518530715564
+ - -2.1968516992731746
+ - -2.7806373373305573
+ - -1.7959167460836722
+ - 1.2734003483432828
+ - 2.3293982675339557
+ - 2.0240900093108927
+ - 1.6555870199840133
+ - 0.5723378637215927
+ - -0.7669376248813592
+ - -1.7675822716200495
+ - -2.187051868368509
+ - -4.450725258005936
+ - -3.1530975619580435
+ - 2.422309452665887
+ - 3.555398357617591
+ - 2.0050349508016447
+ - 1.7559952278952617
+ - 0.749414702333779
+ - -0.5912612013645322
+ - -1.6688271392610396
+ - -2.1992372871832493
+ - -2.75871229215666
+ - -1.7493867228384952
+ - 1.3655082653585782
+ - 2.4272035548637607
+ - 2.027993217186135
+ - 1.5763620399683338
+ - 0.5919455716707328
+ - 0.3835441212479862
+ - -0.266346846464708
+ - -1.488719645087038
+ - -1.9474033666170338
+ - -0.5523823143216846
+ - 0.7797170740432073
+ - 1.7810435870168042
+ - 1.997825720432973
+ - 1.3541938790080879
+ - 0.24887761727198163
+ - -0.04751676439706971
+ - -0.5242074855394842
+ - -1.3502716885475905
+ - -1.622741026064953
+ - -0.23709432646270345
+ - 1.0650286454872346
+ - 2.025905890362194
+ - 2.6703085355736214
+ - 1.8034871297800854
+ - -0.6644204329023201
+ - -1.6615332386853618
+ - -1.864148227757995
+ - -1.9548586394243495
+ - -1.2036657094677738
+ - 0.0817227627864966
+ - 1.3234478328331776
+ - 2.1357228422422416
+ - 3.050555984231937
+ - 1.8008847496366684
+ - -0.4145499074121227
+ - -0.600901569405265
+ - -1.7316843079661408
+ - -2.4958349727189755
+ - -0.8387251032434316
+ - 0.4932020978725419
+ - 1.6177935090700024
+ - 2.0303450568352677
+ - 1.5672064966303665
+ - 0.5730443771193678
+ - 0.36402467325607735
+ - -0.2423264608414456
+ - -1.5730761522473524
+ - -1.971788636789538
+ - -0.5358016884186161
+ - 0.7974975107881949
+ - 1.87944284233656
+ - 2.4878986234482166
+ - 1.6621026220946005
+ - -0.3201876676925321
+ - -1.2921878052617222
+ - -1.7282196838835102
+ - -2.0169832289925904
+ - -1.4378401527912372
+ - -0.22146401705239302
+ - 1.0820597246678434
+ - 2.0378519399681188
+ - 2.631756443960085
+ - 1.6718501750488766
+ - -0.5765569728950939
+ - -1.6557903296433865
+ - -1.8761509032223163
+ - -1.9561086066229867
+ - -1.3823935448840678
+ - -1.4453302512651187
+ - -0.5426173016398881
+ - 1.8952921669834626
+ - 2.6134948497430313
+ - 1.2794960923982466
+ - 0.021221309362677368
+ - -1.2510747157770403
+ - -1.9738622734889
+ - -1.8431851878266914
+ - -1.0927955054775216
+ - -1.6759502338764212
+ - -1.0007529856951467
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.952361525166298
+ - 4.218401961472424
+ - 2.0126832692650694
+ - 1.4155563305680319
+ - 0.20622442671361346
+ - -1.0976489978503052
+ - -1.9209346213173828
+ - -2.109539903040999
+ - -2.5442199141302586
+ - -1.4812388580821978
+ - 1.6762764433380506
+ - 2.712654178942903
+ - 1.94736578599425
+ - 1.1704479102052452
+ - -0.007195906538663026
+ - -0.3637586853966848
+ - -0.7058097815559267
+ - -1.2277886072623139
+ - -1.3591671592488141
+ - -0.0005211786173719944
+ - 1.2607567321104305
+ - 1.9837296260682238
+ - 1.8317734521131195
+ - 0.8932527565394404
+ - -0.3557863440840724
+ - -0.7861584727613362
+ - -0.9369137369003595
+ - -1.0327014786046746
+ - -0.9688658471793105
+ - 0.3205055596407695
+ - 1.4962026905283436
+ - 2.1848874029586076
+ - 2.7724460063980763
+ - 1.7384719640988138
+ - -1.0967413449140557
+ - -2.204108250760309
+ - -2.0125506969029927
+ - -1.7371072629027131
+ - -0.7121664643259701
+ - 0.6304593154982385
+ - 1.693116992889578
+ - 2.20028451119346
+ - 3.0318953204037893
+ - 1.6438774806852052
+ - -0.9442926052468674
+ - -1.1106884444431153
+ - -1.5150537281507181
+ - -1.9287057389878537
+ - -0.3177122326132202
+ - 0.9973891666959429
+ - 1.887869120151765
+ - 1.9462574586829902
+ - 1.2124634911229226
+ - 2.092062461159349
+ - 2.7224619495473994
+ - 1.794628925212402
+ - -0.8112215293509687
+ - -1.8515376476109724
+ - -1.9267185403183273
+ - -1.8997011554683836
+ - -1.2366424477841536
+ - -1.2219283653627904
+ - -0.274127134151608
+ - 1.6506845217616593
+ - 2.4485236648280444
+ - 1.1455101502487142
+ - -0.14099183433555382
+ - -1.371740351583718
+ - -1.9995218074965257
+ - -1.7634311775281348
+ - -0.933155768879229
+ - -0.822326909780986
+ - -0.009813393517506087
+ - 1.591939479061128
+ - 2.232082522025312
+ - 0.8673734711963634
+ - -0.457178586059308
+ - -1.6441666628221931
+ - -2.3144054112684196
+ - -1.7943546621218747
+ - 0.11457905395617782
+ - 0.8637535058110549
+ - 1.5104100164713314
+ - 2.0212613131920607
+ - 1.6632266324388858
+ - 0.5689424334126157
+ - -0.7627042044508436
+ - -1.8540597030089037
+ - -4.193125783595641
+ - -3.113544861736041
+ - 0.4767638990417497
+ - 0.9625195592063129
+ - 1.3798367338094273
+ - 2.0017539878733164
+ - 1.7636234052939244
+ - 0.7451925876604938
+ - -0.586880294219387
+ - -1.7376394149579684
+ - -2.412745786145302
+ - -1.8319403740481173
+ - 0.2414402562729278
+ - 1.0391945913577574
+ - 1.5975692879174574
+ - 2.0261998229989078
+ - 1.7817594966573918
+ - 1.9751686399802797
+ - 0.8186722403055592
+ - -1.6337826018297952
+ - -2.701483770830739
+ - -1.6461262801395522
+ - -0.5559266857983522
+ - 0.7780261348492412
+ - 1.771762318978987
+ - 1.9971255354084991
+ - 1.555295130707495
+ - 1.6549639762331585
+ - 0.577821215004562
+ - -1.66673477987142
+ - -2.6252420844626942
+ - -1.4395163270047873
+ - -0.24313227815561322
+ - 1.048546630846972
+ - 1.627541314408245
+ - 1.4054301284232364
+ - 0.5249344562493309
+ - 0.08203606043519103
+ - -0.9599929945738714
+ - -1.859965576436499
+ - -1.9620577744148993
+ - -1.1970751572699037
+ - 0.07752034333393995
+ - 1.3409549030971983
+ - 2.168563904852203
+ - 1.6131424279481827
+ - 0.9187262837994273
+ - 0.742979685996654
+ - -1.7225521247253373
+ - -3.069137021651381
+ - -1.8041757199986392
+ - -0.8355472769166653
+ - 0.49681393292575965
+ - 1.613263843955626
+ - 2.0286776726466895
+ - 1.7685294556525333
+ - 1.9912495416002514
+ - 0.9206808956202754
+ - -1.7835753451870582
+ - -2.7554441885737613
+ - -1.6352958436531746
+ - -0.5349497380223761
+ - 0.7572274067684204
+ - 1.2608513211393786
+ - 1.1800193860694412
+ - 0.7677639546852889
+ - 0.47472355270521954
+ - -0.6910893535899115
+ - -1.7269329720511086
+ - -2.0227360754527015
+ - -1.4251839346570903
+ - -0.21883447176063087
+ - 1.074959380026925
+ - 1.6266148813996446
+ - 1.352544098041778
+ - 0.5228383996392222
+ - 0.04445020144423492
+ - -0.9845191797497261
+ - -1.8743699015505388
+ - -2.147329582042518
+ - -2.6158627176642204
+ - -1.5584045793875023
+ - 1.6115925462697198
+ - 2.6617917659249666
+ - 1.9804122986497743
+ - 1.2759922609337375
+ - 0.0190796934118058
+ - -1.2497752381197584
+ - -1.9728680565202517
+ - -2.042694816492185
+ - -3.973224411900023
+ - -2.7522346159136073
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.7122264482088283
+ - 2.693188726749349
+ - 2.092626970251527
+ - 2.376494412370542
+ - 1.6375509574510054
+ - 0.17263534874394815
+ - -1.356788700664723
+ - -2.4489635185654084
+ - -3.231717298838587
+ - -2.2563115421135977
+ - 0.946514395741161
+ - 2.1005828414416197
+ - 2.255007287869873
+ - 2.290510898623337
+ - 1.5599228996230394
+ - 1.5733280072823503
+ - 0.4088334491678845
+ - -1.9713887149533287
+ - -2.965631909391861
+ - -1.4443164863138964
+ - 0.06489179880736912
+ - 1.551994704320024
+ - 2.357157741780159
+ - 2.143513387529242
+ - 1.2084690466015862
+ - 1.1072893125770111
+ - 0.09625271935963779
+ - -1.91479239710757
+ - -2.727687155686643
+ - -1.122360845962417
+ - 0.44248823227942896
+ - 1.8774747341947715
+ - 2.642919295931658
+ - 1.9948959444959526
+ - -0.02019384647097312
+ - -0.8940669666515567
+ - -1.7242577954726146
+ - -2.3930427373867422
+ - -2.0333812734781427
+ - -0.7738228414622459
+ - 0.8100921117003127
+ - 2.140745953668196
+ - 3.231199026491812
+ - 2.135444349622835
+ - 0.3920007857006918
+ - 0.16519378407524402
+ - -2.1703737843085547
+ - -3.530356779220053
+ - -1.7266089002062508
+ - -0.31096594525479976
+ - 1.2441502821727852
+ - 2.2535953439126586
+ - 2.287407811862261
+ - 1.5544450526912272
+ - 2.2364166387271833
+ - 1.8180484621644522
+ - 0.37775883488977063
+ - -0.2917505848811771
+ - -1.384408353421215
+ - -2.31017309009929
+ - -2.473631169052881
+ - -2.8939280970235304
+ - -1.4362592497547655
+ - 1.741591929064339
+ - 3.1660176326326703
+ - 2.282271381577246
+ - 1.3086855371989181
+ - -0.23253044398856457
+ - -1.6752500641920576
+ - -2.388111794922639
+ - -2.3083317624555577
+ - -2.630135979348697
+ - -1.2008902858106651
+ - 1.8705038428305516
+ - 3.2268028278120826
+ - 2.1327421591114617
+ - 0.975411060409174
+ - -0.5218182561398526
+ - -1.0914254454950787
+ - -1.2581960805256747
+ - -1.2461452729237095
+ - -1.0713262090346978
+ - 0.47254726006552156
+ - 1.8379342167453914
+ - 2.4167401520166494
+ - 1.9288034696546776
+ - 0.6148035029480404
+ - -0.9207050551681757
+ - -2.6494896715333023
+ - -2.1410340078737677
+ - -1.8924518451296237
+ - -2.292415469893652
+ - 0.2531942451594295
+ - 1.6869600918843306
+ - 2.3994572180245957
+ - 2.053221719641228
+ - 0.8264934842242074
+ - -0.6917287048792894
+ - -1.2981566452198186
+ - -1.3808837776658456
+ - -1.117278993687311
+ - -0.8592564044622683
+ - 0.6290598979330994
+ - 1.937752882355914
+ - 2.613220873890436
+ - 3.2090171956427933
+ - 1.8169809305603672
+ - -1.3132967267716893
+ - -2.760223814178889
+ - -2.4079997894382297
+ - -1.9193939188490243
+ - -0.6019148342686711
+ - 0.9853260838325533
+ - 2.1383883674500654
+ - 2.587683915361635
+ - 3.1110768641505904
+ - 1.6673281987558357
+ - -1.5326533482311901
+ - -2.9910773363636554
+ - -2.3873326284777305
+ - -1.6682890888773487
+ - -0.38258444869737906
+ - -0.05089617300644329
+ - 0.5311943221692987
+ - 1.7301612008423677
+ - 2.0536172016009284
+ - 0.3609632745641238
+ - -1.1974239830521503
+ - -2.245940661875779
+ - -2.304528572567347
+ - -1.3718852605093699
+ - 0.031770421671489385
+ - 0.513058747804967
+ - 0.9178131387371578
+ - 2.17143927048276
+ - 2.0601713935444894
+ - -1.1991105925559855
+ - -2.811437081178677
+ - -2.3721171255992584
+ - -2.10784897391071
+ - -0.9344218917011636
+ - 0.6553545584974232
+ - 1.9528100205358583
+ - 2.610426820556481
+ - 3.261070834118967
+ - 1.9778909386175016
+ - -1.4933919280013177
+ - -2.8319731170529776
+ - -2.406981577344525
+ - -1.9010052952950856
+ - -0.7529758668219375
+ - -0.5193451107227892
+ - 0.27671923778314567
+ - 1.784591357658949
+ - 2.3560836662539986
+ - 0.7020131988094476
+ - -0.8805941756414132
+ - -2.0899331031393027
+ - -2.3787563986340836
+ - -1.6429092073039215
+ - -0.34747565477233705
+ - -0.008473108669174131
+ - 0.5842114260392605
+ - 1.6257054510795403
+ - 1.9776235703879828
+ - 0.3294040142196645
+ - -1.2225975788948364
+ - -2.383528833318794
+ - -3.1768490668225313
+ - -2.257160614620807
+ - 0.8068750223061643
+ - 1.924384681260076
+ - 2.1930313846854923
+ - 2.332437049670727
+ - 1.4674520023600535
+ - -0.04865916943347919
+ - -1.53379588495796
+ - -2.521798624980489
+ - -5.419856601641566
+ - -3.937672666409395
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.5831684658055297
+ - 1.083546928349303
+ - 1.3363642394525013
+ - 1.8577396849129595
+ - 1.5807293466273207
+ - 0.6041555866078709
+ - -0.6256997557874997
+ - -1.6600191976307903
+ - -2.2842466549284195
+ - -1.710139345131558
+ - 0.30509159426557797
+ - 1.070853271049112
+ - 1.5266317030768148
+ - 1.8663074039474807
+ - 1.5853890837714617
+ - 1.7383507866863963
+ - 0.6906343315605188
+ - -1.5201397651124964
+ - -2.4774729472883994
+ - -1.4650877635455153
+ - -0.4269291553364082
+ - 0.7991972214097549
+ - 1.6754447991439478
+ - 1.8255162414060695
+ - 1.3650771236539003
+ - 1.4306379809757253
+ - 0.4638407380536325
+ - -1.538970597929856
+ - -2.3886206925426925
+ - -1.2639290180303493
+ - -0.13587270041472738
+ - 1.0507820600773123
+ - 1.5976963845874557
+ - 1.344388634249216
+ - 0.40817133173289577
+ - -0.04558090958337464
+ - -0.9626974860790105
+ - -1.7488508531214366
+ - -1.7845621595860073
+ - -1.0314735788674343
+ - 0.16010608324422698
+ - 1.3118586529634684
+ - 2.093114140104834
+ - 1.5239504245233817
+ - 0.7667675710387571
+ - 0.6017022620177912
+ - -1.6097374915136666
+ - -2.827795706720572
+ - -1.6275054199640593
+ - -0.7053086181710649
+ - 0.5243494317977438
+ - 1.5256327008353074
+ - 1.8643259043551677
+ - 1.58168942325409
+ - 1.7654490239194938
+ - 1.1430243968808065
+ - 0.7003083292886294
+ - 0.42768104609739016
+ - -0.6514598064874827
+ - -1.6012285774956387
+ - -2.026215658517027
+ - -2.458367410865716
+ - -1.3499752211614944
+ - 1.1217175572736198
+ - 2.2549959632018877
+ - 1.8676953359975952
+ - 1.382796985889761
+ - 0.3002337291197144
+ - -0.9180698861296326
+ - -1.7335600769148276
+ - -1.9771325751277284
+ - -2.3469275919974164
+ - -1.214494332864993
+ - 1.2754619596327261
+ - 2.4012599607979186
+ - 1.8247034477905844
+ - 1.168262982028192
+ - 0.1132219920666739
+ - -0.202695851974205
+ - -0.5751489333365942
+ - -1.309024577378533
+ - -1.4244795981752725
+ - -0.11093007055123782
+ - 1.0746203112628767
+ - 1.801768641833914
+ - 1.7344442584085389
+ - 0.9218325509916884
+ - -0.20942123158667955
+ - -1.0490922851519844
+ - -0.9552046404666289
+ - -2.106276181641817
+ - -2.7019053940999527
+ - -0.2824342816997585
+ - 0.9290778283464596
+ - 1.7449946841121615
+ - 1.7917828886619793
+ - 1.067876508709529
+ - -0.022622278785602225
+ - -0.37399301847055216
+ - -0.6849277185034811
+ - -1.2278706771284609
+ - -1.277900810239145
+ - 0.013789445286454606
+ - 1.1739578583357444
+ - 1.9547745503001746
+ - 2.483630420938027
+ - 1.5233914119995149
+ - -0.6938089342231858
+ - -1.7444398856260062
+ - -1.7995852827092507
+ - -1.729985104553884
+ - -0.9147451422713707
+ - 0.3071465382027343
+ - 1.388870763603873
+ - 2.0173799434045647
+ - 2.5094188846708914
+ - 1.4657014100639827
+ - -0.9034718626930635
+ - -2.0084448541839337
+ - -1.8593711485598106
+ - -1.5974886442011467
+ - -0.7979619642352241
+ - -0.6877553614580716
+ - -0.010400245560809904
+ - 1.5501179205929827
+ - 2.051376616438303
+ - 0.7414158774020398
+ - -0.48785039534436636
+ - -1.511691501799569
+ - -1.8701216229513469
+ - -1.422106356014875
+ - -0.491876791232175
+ - -0.32706791335712665
+ - 0.30064930625514524
+ - 1.843891303835829
+ - 1.7996977378017882
+ - -0.5432692570796424
+ - -1.6527000329308337
+ - -1.7014072256531263
+ - -1.8118878795642603
+ - -1.1421704196550804
+ - 0.034331831930898775
+ - 1.1882653823065175
+ - 1.9571099700206738
+ - 2.530152620476248
+ - 1.6467685056107682
+ - -0.8179731454868006
+ - -1.7961405146149354
+ - -1.8027843643056596
+ - -1.719528363918231
+ - -1.0598710845117614
+ - -1.0196875724615495
+ - -0.18046962431330563
+ - 1.5104285287805688
+ - 2.2047547557608826
+ - 0.9823182787781763
+ - -0.21841517960474666
+ - -1.3297019694389944
+ - -1.8562711410143926
+ - -1.5812371518895914
+ - -0.7726666710791601
+ - -0.6443541666876347
+ - 0.0640571422391839
+ - 1.4449642031571366
+ - 1.9889703371676566
+ - 0.7189842356306313
+ - -0.5077595569280697
+ - -1.5788640290907592
+ - -2.200579926843268
+ - -1.680841053280426
+ - 0.18870577648308845
+ - 0.9119757095202891
+ - 1.4508395213747942
+ - 1.8675912297205923
+ - 1.481305449524079
+ - 0.4391054708589696
+ - -0.7849792047381703
+ - -1.760038123960787
+ - -3.9456392346048004
+ - -2.9191514920727006
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.0784606979123783
+ - 0.23412982303952923
+ - 1.245144771680668
+ - 2.1453776855377793
+ - 2.124763344611656
+ - 1.1648011885294889
+ - -0.28960425671175594
+ - -1.6638112999436627
+ - -2.396971155869748
+ - -1.9215120937864574
+ - -0.0805355158683448
+ - 0.6680100625329217
+ - 1.5279205788888133
+ - 2.230714707866314
+ - 2.1951948364693035
+ - 2.513684863883591
+ - 1.1669484937290258
+ - -1.7346772896271885
+ - -3.0195493990039015
+ - -2.026470986951284
+ - -0.968548493752003
+ - 0.5107728898970659
+ - 1.7684273927052896
+ - 2.2573950223859947
+ - 1.994952237568329
+ - 2.214670741109184
+ - 0.9225166039478908
+ - -1.819214420178278
+ - -3.013657479333078
+ - -1.8444586487144776
+ - -0.6365248543342839
+ - 0.7984764940510761
+ - 1.3788558912166886
+ - 1.3384558475809043
+ - 0.8934279564973444
+ - 0.5977604630464871
+ - -0.7282991602727278
+ - -1.8983498839093502
+ - -2.2550359860292577
+ - -1.6158338369812695
+ - -0.286140268589681
+ - 1.1550024133977541
+ - 1.9863719426081514
+ - 1.6152011538944535
+ - 1.3437612902481406
+ - 1.1653167768846053
+ - -1.7724911897149198
+ - -3.333390249352869
+ - -2.1560419372153126
+ - -1.2746652196899115
+ - 0.159322331243138
+ - 1.526871707125276
+ - 2.228868929326512
+ - 2.191501604622585
+ - 2.555576010452982
+ - 1.3102160484993062
+ - 1.2119336962919867
+ - 1.1467099348730008
+ - -0.3235036756541132
+ - -1.6454003559660075
+ - -2.4320679895724053
+ - -3.0342663579121547
+ - -1.7852082848914885
+ - 1.056759249995471
+ - 2.3852019266555655
+ - 2.240111734624034
+ - 1.9550662364213311
+ - 0.8265671372758316
+ - -0.6704721605273223
+ - -1.869307006839893
+ - -2.4551602685668286
+ - -2.999918214652984
+ - -1.677043815221413
+ - 1.2870428360708575
+ - 2.6524175087512125
+ - 2.264029433524465
+ - 1.7531007835298837
+ - 0.6495535594579911
+ - 0.4134949084687098
+ - -0.25762841313241225
+ - -1.8450989076928912
+ - -2.229414704080403
+ - -0.6062817212120476
+ - 0.8805085657343361
+ - 1.99370025169177
+ - 2.228648057615053
+ - 1.5038178636096997
+ - 0.2661756283055466
+ - -0.19404766296244838
+ - -0.38784472646675044
+ - -3.0565075495899103
+ - -4.026064604772996
+ - -0.8043729809772552
+ - 0.685030556127912
+ - 1.8850659508125238
+ - 2.255122931634195
+ - 1.6531240892600332
+ - 0.4896670846643936
+ - 0.2060267218298134
+ - -0.3982139390699319
+ - -1.7708750233273043
+ - -2.079253970021477
+ - -0.459890990249868
+ - 1.0164386947584971
+ - 2.1698132149065583
+ - 2.8433843451351843
+ - 1.861831623091874
+ - -0.4699092383207087
+ - -1.6031186538511422
+ - -1.9958072762938048
+ - -2.226381978738385
+ - -1.498607426400708
+ - -0.10632028466953374
+ - 1.322440601613113
+ - 2.3243101028527895
+ - 2.9750566400830922
+ - 1.8542391777152927
+ - -0.7500528232804132
+ - -1.9911699172650574
+ - -2.140451738085574
+ - -2.136880689906118
+ - -1.4181682213311864
+ - -1.4393093778435526
+ - -0.4357469754465451
+ - 1.9868675063639278
+ - 2.8130326229681777
+ - 1.3134000252831828
+ - -0.11719923998353553
+ - -1.5028505177212927
+ - -2.228008319513249
+ - -1.9904119958123396
+ - -1.0824334017343484
+ - -1.102581288093678
+ - -0.06775226326936916
+ - 2.275175381917792
+ - 2.2667337524489923
+ - -0.23505699681205583
+ - -1.3659900440868173
+ - -1.8126135036677418
+ - -2.255843492227683
+ - -1.728891121249535
+ - -0.43618028070864345
+ - 1.0354874845296431
+ - 2.177009214322901
+ - 2.9029134186551335
+ - 2.0019139684674663
+ - -0.5967534647719889
+ - -1.6584567484697297
+ - -2.003478429999972
+ - -2.2182069440916483
+ - -1.6931220515140317
+ - -1.7885278240129139
+ - -0.6034202097369484
+ - 1.8591626833689545
+ - 2.907467539117869
+ - 1.5660158052587438
+ - 0.21562044564165112
+ - -1.2329151388218527
+ - -2.1404588919837435
+ - -2.121685780732104
+ - -1.3910965514396945
+ - -1.378995637417148
+ - -0.3168957430769856
+ - 1.842038499705081
+ - 2.7379775492859255
+ - 1.2897238828847926
+ - -0.14042030619151524
+ - -1.5402211014829001
+ - -2.2597572205674563
+ - -1.8578502791415086
+ - -0.22213722177191503
+ - 0.463486921841275
+ - 1.413171055396108
+ - 2.200848592452333
+ - 2.043340184257285
+ - 0.9820994309272807
+ - -0.4943618936340063
+ - -1.8222063841399003
+ - -4.266712102510145
+ - -3.2128571116143907
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.605559292126302
+ - -5.058639427546786
+ - -2.108895314154928
+ - -1.1419358224102019
+ - 0.3207722633613209
+ - 1.6457617870130303
+ - 2.2543603421266063
+ - 2.1139489056830385
+ - 2.444615542582066
+ - 1.281856886519968
+ - -2.0568161891735666
+ - -3.1138719962620898
+ - -1.95358166239973
+ - -0.8214103382045779
+ - 0.5988188029456584
+ - 1.1173323582245147
+ - 1.1706076270576242
+ - 1.0243646878407746
+ - 0.8384922481711702
+ - -0.5440958077182658
+ - -1.7910384934721808
+ - -2.27114837281786
+ - -1.7485921431314981
+ - -0.47769688929649046
+ - 0.968217198171973
+ - 1.549794047330062
+ - 1.3854869673463857
+ - 0.7647874277453122
+ - 0.36621320581442995
+ - -0.8849281289306746
+ - -1.987643376870388
+ - -2.438036334839873
+ - -2.995382478771384
+ - -1.7508931023248033
+ - 1.5717133350881465
+ - 2.8366936775197784
+ - 2.2476662681932784
+ - 1.5987335976276338
+ - 0.2584750173820513
+ - -1.1997871818627284
+ - -2.1325317850693115
+ - -2.3608928945132197
+ - -3.1470751104876356
+ - -1.5616547923999602
+ - 1.5076789957172418
+ - 1.6617333438001065
+ - 1.3629697518386228
+ - 1.4456084525561024
+ - -0.1938229050822003
+ - -1.5535702100048392
+ - -2.249234556339379
+ - -1.952517870930958
+ - -0.8182833279140438
+ - 0.6035989659782918
+ - 1.1464490608166256
+ - 1.211891921588097
+ - 1.310680292018188
+ - 2.5561967300176995
+ - 2.2522702141073654
+ - 1.864132946604411
+ - 0.8476516783506922
+ - 0.6679123349875977
+ - -0.14705933649204428
+ - -1.7200332841042691
+ - -2.331596736545024
+ - -0.7886078221822111
+ - 0.6967143925458673
+ - 1.8876173726275718
+ - 2.247394341024237
+ - 1.6384993482093537
+ - 0.4729823828554754
+ - 0.19199125165538533
+ - -0.4388852936045901
+ - -1.5868081548395183
+ - -1.9969839260339033
+ - -0.44449281598485374
+ - 1.0263053997355827
+ - 2.1707889938131086
+ - 2.921074079502747
+ - 2.109274154197444
+ - -0.6350848504570895
+ - -1.6479629216932352
+ - -1.9967629056570504
+ - -2.2173264168981297
+ - -1.4834034673779668
+ - -0.09167718507407913
+ - 1.330234585664251
+ - 2.3225653629779175
+ - 5.038725956802888
+ - 3.6759059571858286
+ - -1.4004479190149368
+ - -2.2508236333261844
+ - -1.8914828610457843
+ - -2.246189712794315
+ - -1.6344979254228538
+ - -0.2985460984562957
+ - 1.156901786496881
+ - 2.241296559861739
+ - 2.9847010671768817
+ - 2.1171182480525763
+ - -0.7691558703497262
+ - -1.8206035634600224
+ - -2.06323269215372
+ - -2.186785118363501
+ - -1.5799737860779448
+ - -1.6337314200589346
+ - -0.49347791447262984
+ - 1.8572608693741068
+ - 2.8489436272281794
+ - 1.4620744217013217
+ - 0.07648495984865832
+ - -1.3474386387429125
+ - -2.179676106380035
+ - -2.069230173741351
+ - -1.263492288503623
+ - -1.2095747989826138
+ - -0.20309951700549628
+ - 1.8219633502008332
+ - 2.6520682895148804
+ - 1.1723477691186184
+ - -0.2792224396267302
+ - -1.6542553079426865
+ - -2.3628961242171203
+ - -1.8234658058097917
+ - -0.10323882912626016
+ - 0.6565653726020847
+ - 1.5185795380711256
+ - 2.2266811915073954
+ - 1.9781580279115196
+ - 0.8544670783987234
+ - -0.6291554033962276
+ - -1.9190204211349917
+ - -2.929238336666136
+ - -1.976728784526034
+ - -0.5038441913685305
+ - -0.2927389370482019
+ - 2.0281658874383983
+ - 3.359055792728325
+ - 1.7032098981226356
+ - 0.4080525555242725
+ - -1.0679193885953475
+ - -2.0759125551680944
+ - -2.184672363980174
+ - -1.5619804289726311
+ - -1.6372608016823709
+ - -0.5796723431493962
+ - 2.0050286944331486
+ - 2.899583008996876
+ - 1.4468670448127883
+ - 0.05321604867378033
+ - -1.3744717878169679
+ - -2.0115688120765784
+ - -1.5948650082154905
+ - -0.4323886176828792
+ - 0.2051789708746278
+ - 1.2600070378719976
+ - 2.154629819701628
+ - 2.1243889678240317
+ - 1.154946939539019
+ - -0.30463474249355843
+ - -1.6790442109856156
+ - -2.345557491526732
+ - -1.727307871849502
+ - -0.13962551496588135
+ - 0.6820162652647043
+ - 1.541992188855367
+ - 2.2379284048281995
+ - 2.1930524722074805
+ - 2.568482429511651
+ - 1.3926570393218716
+ - -2.016348626291265
+ - -3.107098078669441
+ - -2.024549538156652
+ - -0.957580019244922
+ - 0.5260984304837492
+ - 1.7813483338361236
+ - 2.2623731982768223
+ - 1.990215804767732
+ - 3.6769811309281413
+ - 2.4778553158045646
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.7655407387506985
+ - -3.9415304426226085
+ - -1.8480400137441466
+ - -1.2633118945198347
+ - -0.13202132101119504
+ - 1.0607913281382446
+ - 1.7895991207749047
+ - 1.9266747265305477
+ - 2.31246920617751
+ - 1.3312139719257323
+ - -1.5712353915449946
+ - -2.5197528955584887
+ - -1.778787834537428
+ - -1.0314510027484123
+ - 0.06975336390401743
+ - 0.4126230646091049
+ - 0.6941083161590295
+ - 1.0993587940384715
+ - 1.1854402617892146
+ - -0.0576871954433515
+ - -1.2078201754911153
+ - -1.8420237272093023
+ - -1.6636945523108226
+ - -0.7712430830042397
+ - 0.39027190860040656
+ - 0.7993901956719309
+ - 0.9033958771201847
+ - 0.9143400987513254
+ - 0.8203054878597962
+ - -0.35292941681055573
+ - -1.418656569499009
+ - -2.0220389651804065
+ - -2.555307416415316
+ - -1.5887112884585635
+ - 1.0521517467520276
+ - 2.0801156225839867
+ - 1.8627536749609475
+ - 1.5713611873802438
+ - 0.6018225161969429
+ - -0.6364692880938675
+ - -1.592901430135478
+ - -2.0262145467967745
+ - -2.780700163968567
+ - -1.4922302453526404
+ - 0.9223947239991047
+ - 1.0730116527641884
+ - 1.3671416317225256
+ - 1.7094954449719868
+ - 0.2354711314835781
+ - -0.9701074720254081
+ - -1.762390783483575
+ - -1.777780567782332
+ - -1.0287109192210273
+ - 0.07409750769949333
+ - 0.42759029450987773
+ - 0.700358813747376
+ - 1.1433748487006705
+ - 1.7658804848927367
+ - 1.7940389326105228
+ - 1.730803392884189
+ - 1.0876258931169793
+ - 1.0565665635443793
+ - 0.20532129862952386
+ - -1.5146331275303178
+ - -2.223240813451206
+ - -1.007840924767525
+ - 0.18808887175008301
+ - 1.3076194455727574
+ - 1.852219758905772
+ - 1.5968325568415054
+ - 0.8029132635272679
+ - 0.6835441452087502
+ - -0.038958375028305375
+ - -1.4530391035315822
+ - -2.0129892782688095
+ - -0.7468302570748419
+ - 0.47822665820522114
+ - 1.5575177415888721
+ - 2.1780573793237843
+ - 1.6720433464642843
+ - -0.16020902242132642
+ - -0.8724359941773784
+ - -1.4310848926878326
+ - -1.8665364770665507
+ - -1.499474424624623
+ - -0.4685263959882482
+ - 0.7570287477414724
+ - 1.7429625181282338
+ - 3.9190225567179877
+ - 2.90301311014509
+ - -0.5339754428677151
+ - -1.0164542704258153
+ - -1.314561509825075
+ - -1.8538906520797085
+ - -1.5965606188558583
+ - -0.6327292480722947
+ - 0.5967518956779018
+ - 1.6404150624776783
+ - 2.264144462490511
+ - 1.7031867221589494
+ - -0.27681566632989474
+ - -1.0323321650195765
+ - -1.5084601415163479
+ - -1.8672570397965174
+ - -1.6053603295473218
+ - -1.7670467920368347
+ - -0.712793935914059
+ - 1.5156607424169277
+ - 2.4824514852623083
+ - 1.4834082117675387
+ - 0.45641003904479843
+ - -0.7712216980658813
+ - -1.661345773705234
+ - -1.8312599176263795
+ - -1.3889634561125541
+ - -1.4635678008702846
+ - -0.48758416942262994
+ - 1.5384598237260334
+ - 2.3999526660683985
+ - 1.2858777646348287
+ - 0.16621546256213252
+ - -1.0221086817114429
+ - -1.564630274423707
+ - -1.3279325272984228
+ - -0.43427740931063136
+ - 0.003976023958991641
+ - 0.9362182635944092
+ - 1.7374839922268777
+ - 1.7932585455318477
+ - 1.0564514559751774
+ - -0.12969723524856683
+ - -1.286152176139217
+ - -2.0613387828017333
+ - -1.5117775564148086
+ - -0.794574301420246
+ - -0.6303250415519484
+ - 1.6054871684294723
+ - 2.833367430876584
+ - 1.6365964439789427
+ - 0.7172769138230766
+ - -0.5146294498938228
+ - -1.5224682943172914
+ - -1.8690291128541274
+ - -1.5927727561682994
+ - -1.7803926778140895
+ - -0.8042488381760097
+ - 1.6522191455705084
+ - 2.5313678928805343
+ - 1.4730530839279297
+ - 0.4370124916546236
+ - -0.7573378334762811
+ - -1.2314488711970313
+ - -1.121770927221891
+ - -0.66522322712559
+ - -0.36085899969790763
+ - 0.6917866542931598
+ - 1.622526080922397
+ - 1.8578003600247355
+ - 1.2724639531276347
+ - 0.1439124175120801
+ - -1.0460510934514418
+ - -1.5620307957698434
+ - -1.275020733364336
+ - -0.4364736180746113
+ - 0.036994850989607045
+ - 0.9584935810288382
+ - 1.7502996875935313
+ - 1.965592679413189
+ - 2.38346338296537
+ - 1.4052657677277947
+ - -1.5147598486697413
+ - -2.4780194505193407
+ - -1.813012382884515
+ - -1.1310936026297327
+ - 0.04080139586209493
+ - 1.1979312172740777
+ - 1.8323285183523665
+ - 1.8595639373904853
+ - 3.5962855930448923
+ - 2.4837424943579807
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.52634433139828
+ - -2.3808484350682892
+ - -1.7905751936846679
+ - -1.9926390171493276
+ - -1.3369593163964273
+ - -0.08842095222388684
+ - 1.189851280664091
+ - 2.0839408002510202
+ - 2.738781741909926
+ - 1.8983091584625384
+ - -0.8458327643333077
+ - -1.8298677666058447
+ - -1.9191239308513055
+ - -1.9114457619365137
+ - -1.2640246003477011
+ - -1.2581590897846522
+ - -0.29825266308957715
+ - 1.6554783077653124
+ - 2.4675068236609623
+ - 1.1706841105278871
+ - -0.11175567541048126
+ - -1.351019070055334
+ - -1.996495439335667
+ - -1.7792937630121461
+ - -0.962802913914572
+ - -0.8605980584832306
+ - -0.034051200202520296
+ - 1.6004519353708562
+ - 2.256332627088031
+ - 0.8946662423389949
+ - -0.4288576091771189
+ - -1.6242685425998156
+ - -2.272252467808138
+ - -1.6984942687159115
+ - 0.06783061118232511
+ - 0.8280954442685418
+ - 1.4919951143372794
+ - 2.021139621522233
+ - 1.681531940830141
+ - 0.5976232415561689
+ - -0.7360511463674347
+ - -1.838379499313087
+ - -2.7612439898200045
+ - -1.8079739678630191
+ - -0.27341812203979526
+ - -0.08177648391526855
+ - 1.8302406961093418
+ - 2.9519574371914263
+ - 1.4143747068448498
+ - 0.20524530003382438
+ - -1.0970031325359566
+ - -1.917927084885454
+ - -1.9087906813233912
+ - -1.2593623808125078
+ - -1.2745283161211391
+ - -0.3797828756579478
+ - 1.7777650430566003
+ - 2.51259581429957
+ - 1.2125077144317051
+ - 1.9616002513290447
+ - 2.062976036218958
+ - 2.402948186554927
+ - 1.1769912783141339
+ - -1.4890639768743767
+ - -2.681039038712132
+ - -1.9035974362084653
+ - -1.0541098271241482
+ - 0.2528383200544431
+ - 1.4516606508463137
+ - 2.0183780496519774
+ - 1.9147561038203142
+ - 2.170387324099122
+ - 0.9738169726832461
+ - -1.5907951560565234
+ - -2.720151973105046
+ - -1.7693487453614314
+ - -0.7691468078053854
+ - 0.5000974259514841
+ - 0.993230793875749
+ - 1.1039996691624958
+ - 1.004660558902842
+ - 0.8278123658793739
+ - -0.4538858339048699
+ - -1.58454131381257
+ - -2.036880487073498
+ - -1.5900466307297871
+ - -0.46252869324820933
+ - 0.8332549969216113
+ - 2.344239981942965
+ - 1.8814641236591758
+ - 1.5115139401991229
+ - 1.8129005739845192
+ - -0.26996849522282934
+ - -1.4612568828033843
+ - -2.027582918465219
+ - -1.6991615995051255
+ - -0.6423587267933426
+ - 0.6422018519074223
+ - 1.165407705679403
+ - 1.2052054592337458
+ - 0.8942570644313051
+ - 0.6476899982960609
+ - -0.5848341466597833
+ - -1.6656787363438876
+ - -2.201695675955092
+ - -2.693681361196648
+ - -1.5111299348099578
+ - 1.1411265420886318
+ - 2.364000997932298
+ - 2.028993698287762
+ - 1.5818098097827022
+ - 0.45136115114378683
+ - -0.8817702813848826
+ - -1.8269350665670088
+ - -2.170370773396748
+ - -2.5992724688687243
+ - -1.3785296736829389
+ - 1.3204664046939296
+ - 2.5475365592326553
+ - 2.0025476255814323
+ - 1.3636033725821104
+ - 0.26089310838138613
+ - -0.035117869307471954
+ - -0.49649522217504394
+ - -1.4269761948368451
+ - -1.6683615332723958
+ - -0.24752409994888383
+ - 1.0578207502619066
+ - 1.9124638277792945
+ - 1.924057317482652
+ - 1.1083133277223622
+ - -0.08867391462447029
+ - -0.5176065748905668
+ - -0.8196070324041587
+ - -1.8031235038047764
+ - -1.7046909386320535
+ - 1.0527400359300936
+ - 2.4227610992293473
+ - 2.0073256992444404
+ - 1.7476785085890723
+ - 0.7340627823167399
+ - -0.6068828644572254
+ - -1.677999227133735
+ - -2.198810486225819
+ - -2.7366281315246774
+ - -1.646338965681973
+ - 1.2941270897002601
+ - 2.424687513897073
+ - 2.0276604823448925
+ - 1.5659219515529261
+ - 0.5747771629588115
+ - 0.361779166512522
+ - -0.27965946840729666
+ - -1.482488920471549
+ - -1.931951764241723
+ - -0.5365740098626682
+ - 0.794780441484762
+ - 1.7888625625433343
+ - 1.9949241822688353
+ - 1.3418941605311314
+ - 0.2311990967086597
+ - -0.06945844097205987
+ - -0.5369845972975854
+ - -1.3422138022740426
+ - -1.6050074834759398
+ - -0.22079433687923308
+ - 1.0789010100149359
+ - 2.032676937996038
+ - 2.6976708914575256
+ - 1.902618113288678
+ - -0.7296162243742649
+ - -1.684666756998305
+ - -1.8704411034303463
+ - -1.950380641466608
+ - -1.1903071518630892
+ - 0.09808399885787583
+ - 1.335757012821231
+ - 2.1398388181561985
+ - 4.579385461079563
+ - 3.3207400511433867
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.6419773777020442
+ - 0.5844680775902713
+ - -0.8106130605201094
+ - -1.790516250637374
+ - -2.002773702459432
+ - -1.3302610231704697
+ - -0.09025831238878843
+ - 1.1944535659402948
+ - 1.8157599207685167
+ - 1.5627300222434835
+ - 0.39909083989580224
+ - -0.12153883713159547
+ - -1.0949549541478931
+ - -1.9195798858430473
+ - -2.1114280638667484
+ - -2.4859889823412322
+ - -1.2571307702941386
+ - 1.4317786385235667
+ - 2.6416005352512757
+ - 1.9477674863249859
+ - 1.1729207697211046
+ - -0.11028243858187697
+ - -1.3483141682455562
+ - -1.9984193844159497
+ - -1.9858465150288056
+ - -2.2796305059522988
+ - -1.0665277010362395
+ - 1.5504745403225233
+ - 2.710837141350571
+ - 1.83442052645077
+ - 0.8989569342889114
+ - -0.3482237593987789
+ - -0.7933380510521213
+ - -0.9529260062239318
+ - -1.0692391795732221
+ - -0.9975420781686772
+ - 0.31383986237918565
+ - 1.4913642712295907
+ - 2.0309023283206673
+ - 1.6741453347320967
+ - 0.5999506479545594
+ - -0.6879657681173114
+ - -1.3275008190968882
+ - -1.237088907025541
+ - -1.472849991874906
+ - -1.3332582909047508
+ - 1.4129994737039846
+ - 2.833973477012843
+ - 2.011445030397024
+ - 1.416623059383741
+ - 0.20914204484078014
+ - -1.0941586151543035
+ - -1.9183781512254487
+ - -2.108792093169135
+ - -2.529079472973277
+ - -1.395280299192023
+ - 1.5791927990603816
+ - 2.6919356701779242
+ - 1.9466615020453413
+ - 1.2170235778618312
+ - 2.100419304160523
+ - 2.682082360399164
+ - 1.6633575753780339
+ - -0.699001493210349
+ - -1.822809385371937
+ - -1.933397710900412
+ - -1.906288334745876
+ - -1.0577451052369333
+ - 0.2607560576742351
+ - 1.4583957844436592
+ - 2.180855576054315
+ - 2.7257507171569935
+ - 1.6101116267514672
+ - -0.9316268717473357
+ - -2.121195492590491
+ - -2.0097625914271564
+ - -1.7728349716406084
+ - -0.9398763609741875
+ - -0.841592960220091
+ - -0.0967031915563109
+ - 1.7955196593707525
+ - 2.3086968670651764
+ - 0.8726146837132297
+ - -0.458473266249899
+ - -1.5971939193292655
+ - -2.0330222581413806
+ - -1.5918524883189116
+ - -0.6116476531778011
+ - -0.6181472292406652
+ - -0.22469250892969733
+ - 3.029441873903196
+ - 4.054605948361835
+ - 1.0379643184542104
+ - -0.274321043696311
+ - -1.4735071396242325
+ - -2.024647192963686
+ - -1.70162587755542
+ - -0.8041281392884565
+ - -0.6610427224322785
+ - 0.03121733399137995
+ - 1.7485185149664972
+ - 2.1980270415756156
+ - 0.7486275953654372
+ - -0.5881837719319587
+ - -1.7437289948529489
+ - -2.354056896640391
+ - -1.6325112253124163
+ - 0.13815833958194593
+ - 1.0225194405328544
+ - 1.602500429811485
+ - 2.03334229440775
+ - 1.5897832784718435
+ - 0.4422001839646943
+ - -0.8878954044407112
+ - -1.935691771791359
+ - -2.542069425269582
+ - -1.6714323375256517
+ - 0.4011111099342351
+ - 1.41014919280296
+ - 1.7811826995850453
+ - 2.0073372148684863
+ - 1.5643766974988882
+ - 1.6958080085050813
+ - 0.6885485583033544
+ - -1.8090647862074294
+ - -2.6881753304844316
+ - -1.4466788795047312
+ - -0.24427627984012465
+ - 1.0680365098121096
+ - 1.9118685608432933
+ - 1.9280834632818584
+ - 1.2977778966128057
+ - 1.4759636091506314
+ - 0.37468803089097497
+ - -2.0106217356251026
+ - -2.03623328135809
+ - -0.10462015304411483
+ - 0.7240349771892467
+ - 1.3960835136432512
+ - 2.008001676110601
+ - 1.7571690823767063
+ - 0.728848737006866
+ - -0.6060179071976286
+ - -1.753185666069919
+ - -2.408193975719439
+ - -1.747584353853972
+ - 0.23133715398394322
+ - 1.0653561462675536
+ - 1.6119534257879045
+ - 2.0295101106760245
+ - 1.7727619805461061
+ - 1.9611121239506184
+ - 0.8064613273373037
+ - -1.6397157332345176
+ - -2.7035934466753737
+ - -1.6378942143033013
+ - -0.5386566947055412
+ - 0.7969280171230136
+ - 1.783941477319916
+ - 1.997395269168058
+ - 1.5434250831684606
+ - 1.637656616268976
+ - 0.5641591067836053
+ - -1.6702562340307128
+ - -2.6232461632866295
+ - -1.4286282534915142
+ - -0.2247195614655576
+ - 1.0684052338372376
+ - 1.6701200799476927
+ - 1.4867286672517583
+ - 0.5227867527838016
+ - 0.06529135530281173
+ - -0.9783146109975501
+ - -1.8706174269252518
+ - -1.9604214051493818
+ - -1.1838383147793348
+ - 0.09659103125663397
+ - 1.3595321052399019
+ - 3.338746924403518
+ - 2.5600807846306433
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.9335940515224985
+ - 3.8055471904304476
+ - 0.5519466978861054
+ - -1.0274271103730004
+ - -2.1702528981388647
+ - -2.3568684292179904
+ - -1.5289026552928384
+ - -0.17851542120288877
+ - 0.2199009230868252
+ - 0.7145043245787803
+ - 1.705744990920852
+ - 1.8702178946165577
+ - 0.1736920972494524
+ - -1.3588630349636976
+ - -2.4545201793733358
+ - -3.1533576841738147
+ - -1.9815258937216766
+ - 0.7505165719080471
+ - 2.0564639901023467
+ - 2.2589576111916307
+ - 2.2952900694695235
+ - 1.3428400621453627
+ - -0.20589931217688623
+ - -1.6558306525388775
+ - -2.5672986457173357
+ - -3.227160863917308
+ - -1.9317760474963113
+ - 1.032840857646061
+ - 2.426151116446156
+ - 2.3654921302945984
+ - 2.1520639839947804
+ - 1.2159769794902642
+ - 1.1352835245712052
+ - 0.1835639791711246
+ - -2.053419154917038
+ - -2.7912709057962046
+ - -1.128088143349999
+ - 0.44201884694645727
+ - 1.827769517347645
+ - 2.409382919215048
+ - 1.9512223314509463
+ - 0.8333031573572884
+ - 0.7080320942330494
+ - -0.21618967725804958
+ - -2.408567225023197
+ - -2.3700135654980987
+ - 0.5157518065029159
+ - 1.857347468962471
+ - 2.0976533911791853
+ - 2.3827122888304175
+ - 1.6422879233189651
+ - 0.1737933481405875
+ - -1.3596818405119435
+ - -2.4549894055845045
+ - -3.214247142058013
+ - -2.1434685702288627
+ - 0.8829213859539622
+ - 2.097858332687651
+ - 2.26055331558656
+ - 2.2966149674452554
+ - 1.564552939455415
+ - 2.205171216951798
+ - 1.7261968116290465
+ - 0.41301998846687693
+ - -0.29903169732757057
+ - -1.3933806009232124
+ - -2.3157627036928092
+ - -2.243974566137399
+ - -1.180003634134771
+ - 0.3842595140525038
+ - 1.8378655735241562
+ - 2.552095166356534
+ - 1.860399399770771
+ - 0.09962896569058803
+ - -0.8056205065401714
+ - -1.6881753851594878
+ - -2.3953870405872095
+ - -2.3092317523211974
+ - -2.6921509364875136
+ - -1.4425301716268117
+ - 2.1676931558239843
+ - 3.318408707721471
+ - 2.132041455852769
+ - 0.9667759527927082
+ - -0.6195534047287559
+ - -1.9364159362218365
+ - -2.4119738639956068
+ - -2.0841147964338016
+ - -3.825872539465253
+ - -2.5690602117338055
+ - 3.8675290555654707
+ - 5.416827727671965
+ - 2.227032970827453
+ - 1.1659234585825897
+ - -0.4016459532094392
+ - -1.7960268176893674
+ - -2.4089490538838585
+ - -2.221070793902215
+ - -2.555630322375297
+ - -1.3220139713374008
+ - 2.2072290926319424
+ - 3.320109588466461
+ - 2.052841934425158
+ - 0.8199778572117571
+ - -0.7016472831405827
+ - -1.2662109339481726
+ - -1.2866842747502791
+ - -1.0510489297225105
+ - -0.8168278966992586
+ - 0.6383867677419834
+ - 1.9464376194629753
+ - 2.420933930510347
+ - 1.8265443046567715
+ - 0.45076578730251554
+ - -1.0922206038406876
+ - -1.721701980339537
+ - -1.5104008238923046
+ - -0.7704628132281749
+ - -0.3106626964658054
+ - 0.9988354721611599
+ - 2.1481817774326366
+ - 2.5920301725486037
+ - 3.1737601968474447
+ - 1.8406975560258239
+ - -1.709260601551057
+ - -3.05736946577952
+ - -2.389849806764035
+ - -1.6623549027804883
+ - -0.21580816454942472
+ - 1.3301768940988146
+ - 2.2939864692821987
+ - 2.4995799263556657
+ - 3.319869743531722
+ - 1.6306301014585798
+ - -1.6510983993643102
+ - -1.811107541616601
+ - -1.3984782003564025
+ - -1.4356430171842722
+ - 0.2817715334121132
+ - 1.7097290148109408
+ - 2.406600207149739
+ - 2.0415345999651855
+ - 0.8011278172642162
+ - -0.7224270406037454
+ - -1.317088303669887
+ - -1.344534948626973
+ - -1.0540230000204578
+ - -0.807145581376177
+ - 0.6573832948993747
+ - 1.9575453093205306
+ - 2.6177616756099042
+ - 3.209634413848269
+ - 1.810349192152501
+ - -1.3327857968198822
+ - -2.7841122372266485
+ - -2.4122845127321186
+ - -1.9051940643024836
+ - -0.5752731945721659
+ - 1.0126624193596732
+ - 2.1546645003269207
+ - 2.587309525125387
+ - 3.105619314223208
+ - 1.6571990853117067
+ - -1.549801785131088
+ - -3.0099206213884133
+ - -2.3870959122618443
+ - -1.6503498642790253
+ - -0.35274450757638137
+ - -0.002152782875263869
+ - 0.5691343214292143
+ - 1.8012713605924193
+ - 2.0492243817706948
+ - 0.33349181055040994
+ - -1.2238164316363649
+ - -2.259876622894706
+ - -2.2998119960627936
+ - -1.3506678262452498
+ - 0.06253100152181533
+ - 0.9270331367173308
+ - 0.9290652509578616
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.5898676995836
+ - 3.4530866915482563
+ - 0.8377079423858421
+ - -0.31796817509299546
+ - -1.3411247526054042
+ - -1.7742691321273338
+ - -1.4416861917926962
+ - -0.6217019689517351
+ - -0.47092621987161126
+ - 0.10164878628180979
+ - 1.4961726874572487
+ - 1.8507991245099757
+ - 0.5796110187322004
+ - -0.5892995831164589
+ - -1.5746100904842757
+ - -2.108179521179365
+ - -1.4395151230521694
+ - 0.18567619906594574
+ - 0.9909451227499133
+ - 1.447435996969734
+ - 1.7740335487075019
+ - 1.3375569383791257
+ - 0.3085670407992894
+ - -0.8462598115807618
+ - -1.730709940987764
+ - -2.2570538577038612
+ - -1.4632119295206847
+ - 0.4135073460469768
+ - 1.3217047513480076
+ - 1.5929057994164257
+ - 1.7388740868305241
+ - 1.3046369312973534
+ - 1.3942252406436646
+ - 0.5357016245269687
+ - -1.5795976928396653
+ - -2.318724375591095
+ - -1.2068728730575577
+ - -0.13449408900338441
+ - 0.9999880098931453
+ - 1.6955694809295287
+ - 1.6575272880678993
+ - 1.0631185804674042
+ - 1.182831577021903
+ - 0.25678738009876245
+ - -1.7705184820410813
+ - -1.7858283526375158
+ - -0.03384533737176398
+ - 0.7263852238751981
+ - 1.2677912190183211
+ - 1.7667192952464934
+ - 1.5063931818224425
+ - 0.5794092091619824
+ - -0.59054204050609
+ - -1.5760538013423075
+ - -2.150733561962914
+ - -1.5438388204193958
+ - 0.2580052060491314
+ - 1.0119591329729642
+ - 1.4493912107828595
+ - 1.7756494585164402
+ - 1.5114982793827212
+ - 1.6584439268594198
+ - 1.0402402430987963
+ - 0.6616273764867685
+ - 0.3972044007127869
+ - -0.6174159331395094
+ - -1.5178687582842774
+ - -1.7678396017827243
+ - -1.2370069627133273
+ - -0.1778372825437383
+ - 0.9533135833672327
+ - 1.4376510983803084
+ - 1.1898012524998505
+ - 0.44667675355712094
+ - 0.02052780121356522
+ - -0.8732101165377536
+ - -1.6449298141818387
+ - -1.8751706998757018
+ - -2.2817302365344574
+ - -1.35589769126141
+ - 1.4166320154853587
+ - 2.334185347336753
+ - 1.729459350585852
+ - 1.105597128601989
+ - 0.002961427864431053
+ - -1.1040525101552052
+ - -1.7290323713480458
+ - -1.7813891814674943
+ - -3.4600319174504994
+ - -2.3950312041677457
+ - 2.5930034988421355
+ - 3.702628702496416
+ - 1.7589305223235834
+ - 1.228521327211595
+ - 0.16674201657435955
+ - -0.9717048648743611
+ - -1.684811645243138
+ - -1.8411551101966994
+ - -2.217895828120067
+ - -1.2877082943089482
+ - 1.472475324223789
+ - 2.3774661274050057
+ - 1.6996679332303477
+ - 1.0127148550370417
+ - -0.02113998022521917
+ - -0.3364060028692635
+ - -0.6276427355191591
+ - -1.0664182105142228
+ - -1.173090504024726
+ - 0.01321940093012273
+ - 1.1136045073687186
+ - 1.7384588986018399
+ - 1.5965446173121858
+ - 0.769128406144039
+ - -0.325883532660352
+ - -0.7052923321232104
+ - -0.828922818190361
+ - -0.8945400803605315
+ - -0.8304000133776064
+ - 0.2938843575441583
+ - 1.3181058407925754
+ - 1.9131549201454758
+ - 2.4251717995999265
+ - 1.5175175644918624
+ - -0.9690724970402574
+ - -1.9394631914921887
+ - -1.762300074952701
+ - -1.5125417202483697
+ - -0.6101322772611528
+ - 0.5645139679948786
+ - 1.4886502372339439
+ - 1.9242310907233924
+ - 2.648907323203831
+ - 1.4328556915373325
+ - -0.837101357932526
+ - -0.9819007073242371
+ - -1.3104015293402544
+ - -1.6580469704448648
+ - -0.253310575137021
+ - 0.8946755030205906
+ - 1.6616475073381702
+ - 1.6961965340768768
+ - 1.0012315344644742
+ - -0.03763773390971576
+ - -0.3651417828134046
+ - -0.640182736694282
+ - -1.1043462914099849
+ - -1.179862279134972
+ - 0.027997416172314393
+ - 1.1257670390696946
+ - 1.8595865444082649
+ - 2.3599779994462433
+ - 1.4438630880424352
+ - -0.6694275148041
+ - -1.6699222284112298
+ - -1.7120094853202519
+ - -1.6361639934819132
+ - -0.8550728636375944
+ - 0.3061914666120672
+ - 1.3281032086944797
+ - 1.9164813652067587
+ - 2.381283511601804
+ - 1.3872116865360407
+ - -0.8673937711500854
+ - -1.9180962061713247
+ - -1.7664332475796833
+ - -1.5083127507473753
+ - -0.7424370651672609
+ - -0.630448868979661
+ - -0.010062455058703009
+ - 1.541831326605401
+ - 1.9532763535633049
+ - 0.6899591104583015
+ - -0.4773790508835582
+ - -1.4435617442643962
+ - -1.7742906465183939
+ - -1.3399604334896982
+ - -0.45116181242846104
+ - -0.3614395197124786
+ - -0.06651073049564742
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.2923213195469545
+ - 4.479294395624025
+ - 1.4010647462176204
+ - 0.16084666225834326
+ - -1.153477232203804
+ - -1.9615562147956718
+ - -1.9208927281303114
+ - -1.2355071889764084
+ - -1.2366013620471712
+ - -0.37834424844875925
+ - 1.8926667152731835
+ - 2.5443634779056077
+ - 1.1457096557870188
+ - -0.1636750717328159
+ - -1.43352979018449
+ - -2.031835841285927
+ - -1.5327534430402459
+ - -0.22142067630861326
+ - 0.4687761843551119
+ - 1.3154826188645956
+ - 2.013176425542015
+ - 1.8462006978275791
+ - 0.8626087080104793
+ - -0.4853319156442782
+ - -1.686199628093627
+ - -2.3013946786447237
+ - -1.6277381270517397
+ - 0.04766526512838238
+ - 0.8934581909729123
+ - 1.5497301311619691
+ - 2.0560436309614514
+ - 1.8802063251053143
+ - 2.1483630285107482
+ - 1.0394117340764826
+ - -1.7843206795896434
+ - -2.8080727127702207
+ - -1.736575109356317
+ - -0.6743006235851561
+ - 0.6826130418010375
+ - 1.7415481370281838
+ - 2.0446821257782224
+ - 1.6655713305544142
+ - 2.038669813157043
+ - 0.7558305831181452
+ - -1.9094091596399712
+ - -1.9762058014401416
+ - -0.5122473427626947
+ - 0.04730435859996658
+ - 1.051388819697403
+ - 1.9228301369714607
+ - 1.9692010884343711
+ - 1.145173838124629
+ - -0.16575315686136757
+ - -1.4363512608795665
+ - -2.075184299527727
+ - -1.6283046424522019
+ - -0.17221911415300634
+ - 0.480592499800999
+ - 1.3184909039460315
+ - 2.015658829838432
+ - 2.0464159297839757
+ - 2.3626029438037
+ - 1.125926799977095
+ - 1.1259725210576057
+ - 1.139178445518206
+ - -0.1971570483051001
+ - -1.4244748932217985
+ - -2.0428171883493937
+ - -1.7598236805514367
+ - -0.7220630987828959
+ - 0.5699576993033084
+ - 1.0454180728834466
+ - 1.0783515941149362
+ - 0.9119246034645044
+ - 0.7280142346453443
+ - -0.5180526884837117
+ - -1.6404505305187984
+ - -2.22695209728696
+ - -2.809496467599273
+ - -1.8026885392695116
+ - 1.324060417446161
+ - 2.39616037019365
+ - 2.0519999584009168
+ - 1.647288738099423
+ - 0.5312650147328828
+ - -0.8227183610218081
+ - -1.8139919375404212
+ - -2.208413235863595
+ - -4.477573552886628
+ - -3.166446382025008
+ - 2.508429224566129
+ - 3.6714075968287165
+ - 2.0372918463962937
+ - 1.7528207534371778
+ - 0.7120390822247014
+ - -0.6464093791066311
+ - -1.7179209277880474
+ - -2.2257390980227147
+ - -2.782726358204607
+ - -1.7526515891384693
+ - 1.4151369022762879
+ - 2.491255780222465
+ - 2.0526200834993586
+ - 1.5644320952830502
+ - 0.5470278209193733
+ - 0.32193234965580586
+ - -0.31032170983493923
+ - -1.4885363984629292
+ - -1.9248107545221882
+ - -0.5111230585660157
+ - 0.8355370454108934
+ - 1.8274288036393225
+ - 2.014245470540735
+ - 1.3337845724419313
+ - 0.19806130779996073
+ - -0.11512712040780583
+ - -0.5698172568368486
+ - -1.34277973083996
+ - -1.5890925190852652
+ - -0.19035205921528192
+ - 1.1208246256824523
+ - 2.072191245779527
+ - 2.7215949928380265
+ - 1.82599266006474
+ - -0.714014463946914
+ - -1.7368041176006659
+ - -1.906929166915058
+ - -1.9659212016772354
+ - -1.1781207822622186
+ - 0.13268456085163396
+ - 1.3777440193539015
+ - 2.175186289259654
+ - 3.096897028872486
+ - 1.8150507350738365
+ - -0.46891155511278887
+ - -0.6563791960899925
+ - -1.7385160354458244
+ - -2.4824512171325366
+ - -0.8036128116800114
+ - 0.5476778228641673
+ - 1.668243915565981
+ - 2.0544534170370743
+ - 1.5547820370966454
+ - 0.5278274102231387
+ - 0.3009238327109458
+ - -0.28930189507698195
+ - -1.5706146131797574
+ - -1.9481141107069615
+ - -0.4942483597320753
+ - 0.8532592425822264
+ - 1.9309198192028685
+ - 2.5458042689416382
+ - 1.687410294553646
+ - -0.3644803890052348
+ - -1.3670095725533113
+ - -1.7757598450438312
+ - -2.036011338657394
+ - -1.4200428124221567
+ - -0.1746111983925942
+ - 1.137634632257057
+ - 2.0836089116257304
+ - 2.6814084789447095
+ - 1.6907441067933782
+ - -0.6222593621142207
+ - -1.729329984624116
+ - -1.9184800120597167
+ - -1.9666545274544889
+ - -1.3572583867897585
+ - -1.4043669265725962
+ - -0.5044068238128678
+ - 1.913610602834122
+ - 2.621345620810774
+ - 1.2565124127617562
+ - -0.028403691700553253
+ - -1.306062558009988
+ - -2.0099208029182685
+ - -1.844932913019892
+ - -1.0592511276313632
+ - -1.5912214926256993
+ - -0.935115394291062
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.33945857651262
+ - 0.7783037322707184
+ - 1.331411947401448
+ - 2.011848928873246
+ - 1.8281192444000212
+ - 0.8357216641825798
+ - -0.5094108771974509
+ - -1.699357555233313
+ - -2.380140516995206
+ - -1.8312571629945251
+ - 0.1622504232888075
+ - 0.9387899877339821
+ - 1.561954543025606
+ - 2.0504342211987523
+ - 1.8584320619714296
+ - 2.079180435628413
+ - 0.891415699907611
+ - -1.6381512267681815
+ - -2.744555391610382
+ - -1.7165758310852934
+ - -0.647062811197178
+ - 0.7053865419115541
+ - 1.7497786756673568
+ - 2.0349222729120076
+ - 1.640888256624886
+ - 1.7678234905340497
+ - 0.65259385845969
+ - -1.6829361613999707
+ - -2.685903907064226
+ - -1.5182660908391352
+ - -0.3334504053342949
+ - 0.9767403300772907
+ - 1.5491284751691865
+ - 1.3727488283623883
+ - 0.6059812847141279
+ - 0.20328025782115489
+ - -0.8936023309089167
+ - -1.846814787198946
+ - -2.0080257274882944
+ - -1.2820008971803556
+ - -0.009586175632219732
+ - 1.2808494101385315
+ - 2.099392465475729
+ - 1.5941567870692497
+ - 1.0083938259069776
+ - 0.8343656636113649
+ - -1.7096767329371794
+ - -3.0886997704695647
+ - -1.869944325085566
+ - -0.942565632649069
+ - 0.394510898673791
+ - 1.560911690527354
+ - 2.0484595248788198
+ - 1.8546555713714592
+ - 2.1126523967451676
+ - 1.0124565538431587
+ - -1.7840155313381372
+ - -2.7959402586468327
+ - -1.714416140367249
+ - -0.6452961334884281
+ - 0.6522107180104568
+ - 1.1416821383359104
+ - 1.1263590173122777
+ - 1.12206716102552
+ - 2.3570079223388536
+ - 2.0549641314659257
+ - 1.6366359625421913
+ - 0.5115409114955086
+ - -0.8428270526577377
+ - -1.8258322778423353
+ - -2.2079222493184503
+ - -2.654116122443793
+ - -1.421876586658438
+ - 1.3090531131023389
+ - 2.5535942993577243
+ - 2.03698372534312
+ - 1.4220953582505411
+ - 0.32414844044427255
+ - 0.03204540860206903
+ - -0.4649229037351775
+ - -1.5471260955330126
+ - -1.769655560332407
+ - -0.30588465303720963
+ - 1.0237266257489583
+ - 1.917423164323692
+ - 1.965982193906013
+ - 1.1689369528418982
+ - -0.02944648602861763
+ - -0.7408707511864805
+ - -0.7565923078363433
+ - -2.523437496996513
+ - -3.277890719026641
+ - -0.4916262411038673
+ - 0.8554658407304758
+ - 1.8392081927271777
+ - 2.0126380159679584
+ - 1.319577284345034
+ - 0.17586446490617744
+ - -0.15721143906123805
+ - -0.5891728753193999
+ - -1.4668096449870085
+ - -1.6183398565193297
+ - -0.169901173672019
+ - 1.139544361581453
+ - 2.082895056468871
+ - 2.680028538490569
+ - 1.689608987625842
+ - -0.6226587294296083
+ - -1.7293312419600415
+ - -1.9168562776775802
+ - -1.9622742146773717
+ - -1.1624151341080946
+ - 0.1535362143986238
+ - 1.394743002855105
+ - 2.1826245181018766
+ - 2.7475369237037413
+ - 1.650063246956825
+ - -0.864480188342576
+ - -2.047543526976047
+ - -2.0109691278033317
+ - -1.843455302602042
+ - -1.0570838053171658
+ - -0.9953860163601428
+ - -0.1758674060184087
+ - 1.7551318911204705
+ - 2.3940323958585896
+ - 0.9805163017240945
+ - -0.3549938538970694
+ - -1.542735686755791
+ - -2.051801780337812
+ - -1.6753049389625831
+ - -0.732499704838714
+ - -0.6357776871395372
+ - 0.16439802331706346
+ - 2.0534857595719442
+ - 2.0221718246782423
+ - -0.4359320180507981
+ - -1.5790191898046961
+ - -1.78341402228443
+ - -2.0256744074663375
+ - -1.3961342817659437
+ - -0.14765894790627473
+ - 1.1560199307725896
+ - 2.0871727594055125
+ - 2.7326694724547393
+ - 1.822289100219726
+ - -0.7506950381214371
+ - -1.7836235922211767
+ - -1.9218664835287012
+ - -1.9524654041834
+ - -1.3300350943011203
+ - -1.3416013496258574
+ - -0.34888269535979965
+ - 1.6803504901307456
+ - 2.528018824026763
+ - 1.2314657255012231
+ - -0.054794581045571174
+ - -1.322432781683044
+ - -2.0090082602083656
+ - -1.8272444092971818
+ - -1.0305244338871076
+ - -0.9444263670828222
+ - -0.08246781191678627
+ - 1.6321689634142944
+ - 2.325290939698308
+ - 0.9570913552818084
+ - -0.37664415606829127
+ - -1.599865985331299
+ - -2.273763778401913
+ - -1.787939998772768
+ - 0.03341412426673967
+ - 0.7585549480161385
+ - 1.4692996293348226
+ - 2.039644949353645
+ - 1.733418073007093
+ - 0.6600491224895854
+ - -0.6899885848125697
+ - -1.8243333431363409
+ - -4.1603675479014575
+ - -3.0998319187417165
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.458620550090095
+ - -0.3677562906779558
+ - 0.7657991759556141
+ - 1.592976123908064
+ - 1.7370262857916798
+ - 1.113594283205701
+ - 0.015504882511351752
+ - -1.100572944414013
+ - -1.651496608906242
+ - -1.3983145137850053
+ - -0.2902807814882592
+ - 0.19322989440661165
+ - 1.0093349943814625
+ - 1.6965105346932843
+ - 1.8239572360783867
+ - 2.135965143336283
+ - 1.0631574683402374
+ - -1.2769335835816575
+ - -2.3264454389647296
+ - -1.6828115684848488
+ - -0.9723540874482142
+ - 0.15979827147841325
+ - 1.2244665271520419
+ - 1.7556090265884998
+ - 1.7041213141769873
+ - 1.9439400769961177
+ - 0.8909660519591457
+ - -1.373136926401607
+ - -2.373568909652157
+ - -1.5744431321725245
+ - -0.7280008926603784
+ - 0.3719130706777452
+ - 0.7755844407566787
+ - 0.8798330313311895
+ - 0.8881108598140669
+ - 0.7901480251160721
+ - -0.3366013458061604
+ - -1.3449782055743669
+ - -1.7777828798831201
+ - -1.4258925930562039
+ - -0.46326652673217594
+ - 0.6659377644191752
+ - 1.2455197502183784
+ - 1.1222616655754838
+ - 1.2417737498984405
+ - 1.115759904487981
+ - -1.270051761597429
+ - -2.5111728938170317
+ - -1.7481448706619058
+ - -1.1914686794738054
+ - -0.11929071314025894
+ - 1.0086100689610167
+ - 1.695374843403477
+ - 1.821527184477923
+ - 2.1727193189130407
+ - 1.1824394267917389
+ - -1.4059870387789513
+ - -2.370679004368278
+ - -1.6817319959327388
+ - -0.9714765360138654
+ - 0.07214356419631461
+ - 0.39798519639548924
+ - 0.6610806333731064
+ - 1.0372013420574864
+ - 1.6544710039151016
+ - 1.707637026127844
+ - 1.6423726169717776
+ - 0.8692376588644584
+ - -0.290313657876903
+ - -1.3173506907940773
+ - -1.9145240790245563
+ - -2.381687108675799
+ - -1.3913932281695554
+ - 0.8566654383074259
+ - 1.9052269362893068
+ - 1.7645675342945413
+ - 1.5167921168992
+ - 0.7585438829429894
+ - 0.6518316494739951
+ - 0.025189670030295236
+ - -1.5475337152224222
+ - -1.9665329613354499
+ - -0.7047823241429607
+ - 0.46184188793215436
+ - 1.43400839320204
+ - 1.7749566400275532
+ - 1.3504938640423494
+ - 0.4681405633148799
+ - 0.39767909538823465
+ - 0.09286378118084689
+ - -2.6018118559434784
+ - -3.4717070450333662
+ - -0.8518837327991114
+ - 0.3021063994718799
+ - 1.3304125498729196
+ - 1.7734525683125328
+ - 1.4510514252220126
+ - 0.6382217987279513
+ - 0.4926440145969914
+ - -0.08655103904906236
+ - -1.5027992534556784
+ - -1.8652119133816543
+ - -0.5948271624781357
+ - 0.5740669584988038
+ - 1.5644642667589548
+ - 2.0980542889501206
+ - 1.4370528886616778
+ - -0.17250005894319204
+ - -0.9712799422547898
+ - -1.438036997245546
+ - -1.774809965432855
+ - -1.3482073095711073
+ - -0.32442066619011495
+ - 0.8320604570006465
+ - 1.7229476015026715
+ - 2.2500760853874238
+ - 1.4628460870316047
+ - -0.4007516384927731
+ - -1.3036966424427168
+ - -1.5856915517329324
+ - -1.742168956654045
+ - -1.3174576954841137
+ - -1.4121780624633338
+ - -0.5491703861027949
+ - 1.580034371813902
+ - 2.3251459671188255
+ - 1.218651625803785
+ - 0.15055341646510942
+ - -0.9865548558630822
+ - -1.6907136421703746
+ - -1.6632682562168204
+ - -1.0776165557254782
+ - -1.204644485642489
+ - -0.2712511150246215
+ - 1.7669801568716355
+ - 1.7833915216128282
+ - 0.034364857994162876
+ - -0.7253571935472088
+ - -1.2648401621544947
+ - -1.7620112248158555
+ - -1.5019663960920053
+ - -0.5772281674689078
+ - 0.589555634660716
+ - 1.5722036013764136
+ - 2.145349940518048
+ - 1.5397889740343007
+ - -0.25787413376432095
+ - -1.0100437404199625
+ - -1.4458511360798414
+ - -1.7708165466934227
+ - -1.5069693558446338
+ - -1.653315252463263
+ - -0.658372420086101
+ - 1.4416218828015706
+ - 2.3512393238820377
+ - 1.3926006713954244
+ - 0.409211675426513
+ - -0.7543013413230067
+ - -1.5876096102743678
+ - -1.7327889906963112
+ - -1.2984983264108614
+ - -1.3619680912114382
+ - -0.4434232132664329
+ - 1.4600414416831784
+ - 2.2678267971094552
+ - 1.202259629497925
+ - 0.13318853475479098
+ - -0.9929002473688414
+ - -1.527998747725015
+ - -1.3351609514220315
+ - -0.39925348100443947
+ - 0.030160272064653115
+ - 0.9096365169916849
+ - 1.6576406459859088
+ - 1.6943482649408472
+ - 0.9821428168244335
+ - -0.14761419537545734
+ - -1.2410194137333672
+ - -3.0137791947888126
+ - -2.3013263944648643
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.406932127960443
+ - -3.110794661559696
+ - -0.40954114956709664
+ - 0.9157866180993154
+ - 1.8516844629830955
+ - 1.9716236869181798
+ - 1.243061163589281
+ - 0.08910076510259234
+ - -0.2626298075762958
+ - -0.6516348052296745
+ - -1.4007175412452473
+ - -1.509776607391518
+ - -0.08982028954075925
+ - 1.1903502229372904
+ - 2.087077598139004
+ - 2.670760805738858
+ - 1.6640848151209644
+ - -0.6747243671701146
+ - -1.7891892112158865
+ - -1.9210028360673435
+ - -1.914410567687129
+ - -1.0829679516148547
+ - 0.22954072757732794
+ - 1.4346473668413373
+ - 2.172621406165488
+ - 2.7209669625384296
+ - 1.6149080950399592
+ - -0.909009178967736
+ - -2.0919643094135676
+ - -2.0020562235235304
+ - -1.7856133068772098
+ - -0.9691055799924865
+ - -0.8830193386636165
+ - -0.1044250485280886
+ - 1.7136011399594633
+ - 2.308142774261525
+ - 0.8994891217653728
+ - -0.4275208843175477
+ - -1.575478303517735
+ - -2.0301686498282416
+ - -1.6089665803371551
+ - -0.6432271196499227
+ - -0.5119771081783961
+ - 0.23270734633990867
+ - 2.0201467171399314
+ - 1.982415027293162
+ - -0.48362161823570615
+ - -1.636792893363926
+ - -1.7932615401412004
+ - -1.9965815882157127
+ - -1.3404650960290159
+ - -0.08994062912343938
+ - 1.190957191789065
+ - 2.087336769356787
+ - 2.722106979479182
+ - 1.8017309774925627
+ - -0.7888673740075268
+ - -1.8250722793594991
+ - -1.9222460932680225
+ - -1.9154431234343623
+ - -1.2675725190696117
+ - -1.2621074401868195
+ - -0.29990303615904285
+ - 1.658694874951077
+ - 2.4728480460925653
+ - 1.218961391141244
+ - 1.9651035873596672
+ - 1.8674737578102307
+ - 0.9440260957505212
+ - -0.37918542105087866
+ - -1.5906331128550326
+ - -2.194710388307025
+ - -1.5823505979651087
+ - -0.03740369340023876
+ - 0.7514361175166423
+ - 1.4613841196072275
+ - 2.023417209730049
+ - 1.9148704027351329
+ - 2.2205771661629505
+ - 1.17337356465779
+ - -1.8399728151158303
+ - -2.7962586177470237
+ - -1.7681655592739758
+ - -0.762052964631362
+ - 0.5762984441500641
+ - 1.663614493303081
+ - 2.02844103228837
+ - 1.7171947645540904
+ - 3.1288333388132394
+ - 2.0921483417615367
+ - -3.274726326365846
+ - -4.577790849220875
+ - -1.8528258313766226
+ - -0.9319857606808511
+ - 0.3939761967347885
+ - 1.5494673124259128
+ - 2.031094613079237
+ - 1.8371203961699183
+ - 2.101557696612538
+ - 1.0697708190366182
+ - -1.8698221493230225
+ - -2.792490346422523
+ - -1.6982242258686597
+ - -0.6370712477232434
+ - 0.6496334015567988
+ - 1.1354796233409137
+ - 1.118513428884797
+ - 0.8452350789152882
+ - 0.6143188274288612
+ - -0.5918061947962123
+ - -1.6717495830465965
+ - -2.0356055185738966
+ - -1.5006060011748883
+ - -0.32396287494237697
+ - 0.9750413210702769
+ - 1.5133072801895326
+ - 1.3016012795042498
+ - 0.6056502080379202
+ - 0.1861503160353444
+ - -0.8921853871499928
+ - -1.8340134726348674
+ - -2.1730620486287218
+ - -2.650548013121858
+ - -1.5235306136052504
+ - 1.4691360557241617
+ - 2.6023877168077543
+ - 2.0037625359359
+ - 1.3583595819026455
+ - 0.12520068902303877
+ - -1.1667460653704804
+ - -1.9484731983064152
+ - -2.0857517740547036
+ - -2.7587158363243183
+ - -1.3387174683377028
+ - 1.4313809586572204
+ - 1.5622269143553413
+ - 1.1380465991543043
+ - 1.129623514723636
+ - -0.29324154926547635
+ - -1.4787674994013071
+ - -2.0317734867881927
+ - -1.6881417943943078
+ - -0.6209677664237475
+ - 0.666909495418602
+ - 1.179221641327455
+ - 1.1707402363938264
+ - 0.8433121819890785
+ - 0.6044816129474362
+ - -0.6076370375452932
+ - -1.6805707131062202
+ - -2.203602498611351
+ - -2.691953681916564
+ - -1.5044220570581168
+ - 1.1562042976421532
+ - 2.381681703644729
+ - 2.030833756595305
+ - 1.5688199658464934
+ - 0.42908066465600214
+ - -0.903518203595576
+ - -1.8388022861761908
+ - -2.168262798366167
+ - -2.5926294159222025
+ - -1.3690581383140379
+ - 1.3334722090382805
+ - 2.560916919476259
+ - 2.0006920159644297
+ - 1.3477222718672877
+ - 0.23614068062523302
+ - -0.07592680387063179
+ - -0.5303060668813294
+ - -1.4838749756826806
+ - -1.6635145674057437
+ - -0.2247302008328023
+ - 1.0786441773714082
+ - 1.922336497647578
+ - 1.918581855772857
+ - 1.0899493557644724
+ - -0.11389346476213284
+ - -0.906445018203832
+ - -0.8718755331395185
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.3144043011268054
+ - -4.5479955547666515
+ - -1.5554572717431914
+ - -0.4056629727931602
+ - 0.9233673024795817
+ - 1.8479169006936296
+ - 1.9718122997774445
+ - 1.4358215322105339
+ - 1.5200705267312424
+ - 0.5998180604485648
+ - -1.9013435988097576
+ - -2.6440636364030725
+ - -1.3297684061775437
+ - -0.08776458419801174
+ - 1.198067330106526
+ - 1.7658840176626887
+ - 1.414836301871407
+ - 0.4202306681686645
+ - -0.1307471715878971
+ - -1.098043249317433
+ - -1.9222804733363106
+ - -1.9214989524024948
+ - -1.0712808022150209
+ - 0.23389267182667445
+ - 1.475823781205855
+ - 2.071890424419221
+ - 1.5384348551278382
+ - 0.15820061257756227
+ - -0.5600935918191026
+ - -1.3551365502047192
+ - -2.003204254081496
+ - -1.9884521701974969
+ - -2.3249514396415427
+ - -1.2009838251457907
+ - 1.6997893588161466
+ - 2.7667056433701247
+ - 1.8355109679822117
+ - 0.8959339977342499
+ - -0.43329659193238207
+ - -1.5746889133664412
+ - -2.0314720988542083
+ - -1.81223036808402
+ - -2.283122433708222
+ - -0.9461202020799472
+ - 1.7749850326033372
+ - 1.8626470002086861
+ - 0.7180828473779548
+ - 0.3302816285914739
+ - -0.8167723082963426
+ - -1.7963681590705047
+ - -2.005799817678515
+ - -1.329109637014107
+ - -0.08545834633696905
+ - 1.2013363590082473
+ - 1.8048950665123342
+ - 1.495038966762756
+ - 0.38913627974377607
+ - -0.1362180249020044
+ - -1.101300776488661
+ - -1.924964686666006
+ - -2.1140406548481616
+ - -2.488157799965636
+ - -1.256892206315358
+ - 1.4367054062174844
+ - 2.6483645823582838
+ - 1.950194955009191
+ - 1.2161601802601052
+ - 1.9683016422258135
+ - 1.8524211132170452
+ - 0.9408526272894346
+ - -0.2968861959397582
+ - -0.7150421128062926
+ - -0.8983085678457772
+ - -1.0664665781039253
+ - -1.0356702228172283
+ - 0.26616943439556456
+ - 1.4570729081764737
+ - 2.174244605188801
+ - 2.7890417484971817
+ - 1.8488693658529922
+ - -1.1272724804271246
+ - -2.1658778563135437
+ - -2.002553221251769
+ - -1.7626464991308122
+ - -0.7623654841744872
+ - 0.5777150940069912
+ - 1.6605175090308977
+ - 2.199008994460231
+ - 4.541714380086423
+ - 3.240228367140437
+ - -2.185407362659505
+ - -3.249379192692642
+ - -1.9652416775040324
+ - -1.8470030794947032
+ - -0.9325212766357688
+ - 0.39674312613907803
+ - 1.546609895334778
+ - 2.1911523846713017
+ - 2.785547795717311
+ - 1.8143052074716837
+ - -1.227622571734644
+ - -2.278897746309571
+ - -2.019780954411424
+ - -1.6944258272484851
+ - -0.7982491656240999
+ - -0.6474238136129384
+ - 0.10209535001657422
+ - 1.5558349838011791
+ - 2.1247291332238687
+ - 0.7422728281226384
+ - -0.5909110992001866
+ - -1.6746728775431343
+ - -2.0211423065919805
+ - -1.4963113377454946
+ - -0.46351898775923633
+ - -0.22118181248653992
+ - 0.36489525457301003
+ - 1.4404780906652166
+ - 1.829860866192037
+ - 0.434887341808661
+ - -0.8890344199189306
+ - -1.9308604700486844
+ - -2.5839780688807434
+ - -1.7937589210674012
+ - 0.49540716686777386
+ - 1.4341329676860572
+ - 1.7759244293029839
+ - 1.9977124016372527
+ - 1.35964310250939
+ - 0.11874114432786648
+ - -1.164982839855224
+ - -2.0728992454304773
+ - -3.000999040275399
+ - -1.8244469639366856
+ - 0.21530211210776323
+ - 0.40549144178195284
+ - 1.7815331921267434
+ - 2.6607251115693478
+ - 1.0167400300487455
+ - -0.2970022224045985
+ - -1.4878719538312035
+ - -2.0243198987812514
+ - -1.6868452867787846
+ - -0.7796847316872288
+ - -0.6329681754397277
+ - 0.06499054592787303
+ - 1.653071000113183
+ - 2.154527735116653
+ - 0.7261099317986819
+ - -0.6097257519867331
+ - -1.7570767386293233
+ - -2.3669282713651336
+ - -1.634856037765684
+ - 0.15706652680169955
+ - 1.0501437930651334
+ - 1.6148720931045208
+ - 2.030716917898738
+ - 1.5732280748679137
+ - 0.41899790430887135
+ - -0.9077234477151336
+ - -1.9454552490663828
+ - -2.5502529221990775
+ - -1.6707161434952964
+ - 0.41921356776880697
+ - 1.4350947986358205
+ - 1.7902692818945671
+ - 2.001086136059582
+ - 1.5447029782411508
+ - 1.6738543694431351
+ - 0.7198488227255774
+ - -1.9064264706863403
+ - -2.6985764952728037
+ - -1.4286007223658475
+ - -0.22092361163317184
+ - 1.0866222085568622
+ - 1.917456987900953
+ - 1.918359140329393
+ - 1.275871083832363
+ - 2.0900671180684163
+ - 1.3082751442804426
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.7954432556630535
+ - -4.028516895178546
+ - -2.034389589107275
+ - -1.5566391242708093
+ - -0.4063583326081419
+ - 0.9267726417672393
+ - 1.8525875017913218
+ - 2.1678410410483333
+ - 2.6532139870089093
+ - 1.5968194986045192
+ - -1.5836107933235373
+ - -2.6418093574828396
+ - -2.000393809810842
+ - -1.3323702287647186
+ - -0.21069793812629087
+ - 0.09629615649311951
+ - 0.5545142170379014
+ - 1.3376589258843368
+ - 1.5897235831940382
+ - 0.20130626947652608
+ - -1.1010873581528913
+ - -1.9341264721338005
+ - -1.9144741610554756
+ - -1.0718224225685997
+ - 0.1401255848885325
+ - 0.5269881495137674
+ - 0.7981647221294959
+ - 1.1608047905195802
+ - 1.2185550014621707
+ - -0.12153940391394134
+ - -1.3575400683462622
+ - -2.1536317149852873
+ - -2.769019803938625
+ - -1.7832782195150014
+ - 0.9528010971957708
+ - 2.0335287421389587
+ - 1.9830470333166792
+ - 1.8374656011149912
+ - 0.8996502248914092
+ - -0.438489999185686
+ - -1.5792268753389869
+ - -2.203580548805518
+ - -3.0755632846632017
+ - -1.7208869073285769
+ - 0.7634295449578791
+ - 0.9391019931180453
+ - 1.6141582681118571
+ - 2.16158974391465
+ - 0.5153139567739674
+ - -0.8206906612748934
+ - -1.8082825310514374
+ - -1.9992373242439343
+ - -1.3293535004230423
+ - -0.2058174870207134
+ - 0.10610736523872852
+ - 0.5424870438020364
+ - 1.403307019535218
+ - 1.6171280927662939
+ - 0.19743122460815743
+ - -1.1042728111335758
+ - -2.051589034190313
+ - -2.6452185507519435
+ - -1.675028240944829
+ - 0.5943035037767584
+ - 1.6822292491806916
+ - 1.8879375591174723
+ - 1.9521534343033609
+ - 1.220533720985625
+ - 1.96494592664229
+ - 1.859581404100452
+ - 1.1293066101719245
+ - 1.0780572208860157
+ - 0.17550391651672267
+ - -1.6390538080372155
+ - -2.3821588911806932
+ - -1.047908066908427
+ - 0.26036071282717943
+ - 1.496738718657858
+ - 2.1565127900458174
+ - 1.729233467745127
+ - 0.07404856659111592
+ - -0.5992029365360896
+ - -1.3740264734677055
+ - -2.0064005416721185
+ - -1.7767663131919533
+ - -0.7610472596847844
+ - 0.5751543703754268
+ - 1.7340179346085887
+ - 4.0005459600799815
+ - 2.994689051464394
+ - -0.14980906451623185
+ - -0.514982146375412
+ - -1.2304201322374229
+ - -1.9685080810071383
+ - -1.861325642930433
+ - -0.9310167203238126
+ - 0.39341737459262854
+ - 1.601332762940563
+ - 2.2704432146118614
+ - 1.7788514663165456
+ - -0.053759252557686606
+ - -0.7806610695544206
+ - -1.4712887547491549
+ - -2.0245595667045073
+ - -1.9067628330292252
+ - -2.157148383033337
+ - -0.961811674581246
+ - 1.5978089425411108
+ - 2.7238654325551006
+ - 1.7607387073702716
+ - 0.7484643765911113
+ - -0.590218207919755
+ - -1.671718124076512
+ - -2.027277278376313
+ - -1.7070497434104421
+ - -1.8661687962864222
+ - -0.7323762838995286
+ - 1.6568570111632965
+ - 2.6899290910078895
+ - 1.5789004365236268
+ - 0.4426028205886596
+ - -0.8550445449238534
+ - -1.4026993842782283
+ - -1.2912480916679647
+ - -0.6953035969722577
+ - -0.35664371521567895
+ - 0.7813454060275233
+ - 1.777614490742168
+ - 2.0118588471493197
+ - 1.3573837251608867
+ - 0.12363472897290537
+ - -1.1659498057533138
+ - -1.9497605189000837
+ - -1.524932864132537
+ - -1.0977711390548246
+ - -0.9300665240583569
+ - 1.658821605653882
+ - 3.0494479314609833
+ - 1.8926495520437054
+ - 1.016878613418462
+ - -0.30039310586745926
+ - -1.4885401542932453
+ - -2.0287998497096957
+ - -1.8949142586905312
+ - -2.1783161687190984
+ - -1.0725480814847428
+ - 1.7526037990196353
+ - 2.780583513281524
+ - 1.7512155917337862
+ - 0.7277366861688294
+ - -0.551196442332394
+ - -1.019928653949799
+ - -1.060609482119895
+ - -0.9132108335301341
+ - -0.7388515810163995
+ - 0.5009938207040168
+ - 1.6183226889498816
+ - 2.04272245219284
+ - 1.565293154434183
+ - 0.41802611043880206
+ - -0.8828058321575211
+ - -1.4077959999012335
+ - -1.2528109846236906
+ - -0.6789618928321707
+ - -0.3135179476948851
+ - 0.8069787088133417
+ - 1.7935921438664704
+ - 2.191474200892081
+ - 2.7076398057748796
+ - 1.6637777068830129
+ - -1.5081628292764235
+ - -2.5732501138368407
+ - -2.0203995276233386
+ - -1.429622445778406
+ - -0.22059904104770542
+ - 1.0893179268517434
+ - 1.922187392712462
+ - 2.120069129066713
+ - 4.195306962404918
+ - 2.931570209759078
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.0422992871121273
+ - -1.7310396112440976
+ - -1.6172851750410562
+ - -2.023963137085828
+ - -1.5601946358385612
+ - -0.405419737664406
+ - 0.9160063522542166
+ - 1.9456011424049846
+ - 2.6190394831557793
+ - 1.8920633643546232
+ - -0.5666527227419962
+ - -1.4744211859619725
+ - -1.7904550605086111
+ - -1.9924689464559175
+ - -1.5300656640446422
+ - -1.6199433708716995
+ - -0.5525238014315537
+ - 1.6674287037548021
+ - 2.6133766142690478
+ - 1.4151264486162771
+ - 0.20778204938131264
+ - -1.0937683816270527
+ - -1.9154258222866776
+ - -1.908093712158599
+ - -1.2607184727492937
+ - -1.2542045299564597
+ - -0.29597872688045096
+ - 1.6539610571987282
+ - 2.464229006950275
+ - 1.1687507224238847
+ - -0.11153561520487519
+ - -1.369398785842487
+ - -1.9929690997627756
+ - -1.580541840383867
+ - -0.21627816804853847
+ - 0.4016613360750863
+ - 1.2563593251161052
+ - 1.9709663074798203
+ - 1.8391552017422754
+ - 0.893944893494308
+ - -0.4293551284869314
+ - -1.6240553708408227
+ - -2.5135638201554404
+ - -1.7386203721319746
+ - -0.5873596840029803
+ - -0.4009341162382942
+ - 1.8005748881738726
+ - 3.0441449991936222
+ - 1.6234631749081192
+ - 0.5193848500607946
+ - -0.8127526291158705
+ - -1.7893082220261962
+ - -1.990070110646283
+ - -1.525721726080555
+ - -1.6437314355340729
+ - -0.6517076206083461
+ - 1.8011084496053653
+ - 2.661652418511553
+ - 1.412340837953287
+ - 0.20549998748086826
+ - -1.0841565893451484
+ - -1.63604057057893
+ - -1.355463334005659
+ - -0.5123179110576417
+ - -0.02825097093708262
+ - 0.9928761903251251
+ - 1.874133298352053
+ - 1.951340232510103
+ - 1.2111407334014634
+ - 1.9604685842396516
+ - 2.0610049235917356
+ - 2.400183994569766
+ - 1.1746017844334449
+ - -1.4901934475966172
+ - -2.6814038905997153
+ - -1.9031102320363829
+ - -1.0541772297551857
+ - 0.1574197328282577
+ - 0.5713018125206983
+ - 0.8466433742163483
+ - 1.245719781516254
+ - 1.2356665708952685
+ - -0.13792985701761262
+ - -1.3658712065428118
+ - -2.0100898784074035
+ - -1.7675127175211458
+ - -0.7665917163680499
+ - 0.5030974767811142
+ - 1.6936565129402967
+ - 1.4277746217354945
+ - 1.9569582998982926
+ - 2.4533892796592203
+ - 0.04890108370064009
+ - -1.2221349575606277
+ - -1.9715437073658246
+ - -1.8514892998039953
+ - -0.9361749707606647
+ - 0.303791168708125
+ - 0.752705200835974
+ - 0.9587717380183144
+ - 1.1467537639948604
+ - 1.0656283625725604
+ - -0.2725316751223148
+ - -1.4626172053719715
+ - -2.1771022529268858
+ - -2.719275348031537
+ - -1.6041882897852444
+ - 0.935197303395912
+ - 2.123184376918142
+ - 2.0052070958243813
+ - 1.761093463702837
+ - 0.7572601885764471
+ - -0.5841299333383332
+ - -1.6654705900068978
+ - -2.2008258783625734
+ - -2.6922304594448048
+ - -1.5093914952222922
+ - 1.1430428853197143
+ - 2.3657982167748557
+ - 2.0294272439758405
+ - 1.582371189672383
+ - 0.6005713534673045
+ - 0.4001788850776368
+ - -0.21799144677325064
+ - -1.5823422122733597
+ - -1.9946127442251156
+ - -0.5603262531782403
+ - 0.7729731203108823
+ - 1.7784054343358766
+ - 2.000471464173644
+ - 1.360952051956617
+ - 0.2574969359293089
+ - -0.03597617747406342
+ - -0.5521180440278755
+ - -1.929975104549163
+ - -1.8587755409841127
+ - 0.8042022023204913
+ - 2.0942342018798046
+ - 1.9360244040444268
+ - 1.885568993008053
+ - 1.022544315121719
+ - -0.2949184837077703
+ - -1.4768378097089154
+ - -2.1772092040134114
+ - -2.7668154447070887
+ - -1.739901386768263
+ - 1.0794247361753837
+ - 2.181874213711133
+ - 2.006537363716808
+ - 1.7475889140736771
+ - 0.9008021538933964
+ - 0.7802702894883524
+ - -0.017157366199310395
+ - -1.5834078986181825
+ - -2.2064647090456826
+ - -0.8366309946244902
+ - 0.4911577990314827
+ - 1.6124789753087045
+ - 2.024108277130016
+ - 1.5627304951172425
+ - 0.5718551917143091
+ - 0.3584116833561191
+ - -0.2813231786869159
+ - -1.4804404417439914
+ - -1.9282365563967194
+ - -0.5346816810627588
+ - 0.7945402267688821
+ - 1.8733481212203993
+ - 2.5498535651032626
+ - 1.8762837200049591
+ - -0.4437478463731305
+ - -1.3127172019431845
+ - -1.7226127934077509
+ - -2.010832109981645
+ - -1.433801681768695
+ - -0.2213237827009608
+ - 1.0782710112077845
+ - 2.0313554465044095
+ - 4.455558449364217
+ - 3.2660078054571797
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.1492837403098615
+ - 1.2982024128293252
+ - -0.5063417844704418
+ - -1.6171662755913765
+ - -2.0355413427635964
+ - -1.555237943844357
+ - -0.40943851661117037
+ - 0.8870271102789146
+ - 1.4574903197226206
+ - 1.370982119032934
+ - 0.6882894426406586
+ - 0.32088993367592267
+ - -0.8109053599583222
+ - -1.7908722343663608
+ - -2.182942575249092
+ - -2.628666045786471
+ - -1.41517797717578
+ - 1.2773841036771338
+ - 2.5058825111946854
+ - 2.0125608414296945
+ - 1.4195027351882412
+ - 0.2125517896608025
+ - -1.091727121843547
+ - -1.917961553107301
+ - -2.110553784267043
+ - -2.484957370703306
+ - -1.2562638823106869
+ - 1.4321425522901898
+ - 2.6416642248950777
+ - 1.9482774118961037
+ - 1.1751652768923633
+ - -0.00020734480311516268
+ - -0.36344618371503046
+ - -0.698526354031696
+ - -1.2853726013066704
+ - -1.3935427386314043
+ - -0.0069579370391961055
+ - 1.2551245351271527
+ - 1.9813317911577353
+ - 1.8336799375802355
+ - 0.8986092746098983
+ - -0.3487318019062437
+ - -0.8727034320037015
+ - -1.0077236068145807
+ - -1.677334254320342
+ - -1.5604804745748542
+ - 1.210697019667029
+ - 2.61092450559739
+ - 2.026151104990338
+ - 1.6279737859384638
+ - 0.5268400806862982
+ - -0.8102637400747015
+ - -1.7901214685631632
+ - -2.1810008963617413
+ - -2.6756109868692346
+ - -1.558305136308696
+ - 1.4211417147110634
+ - 2.5541219405991304
+ - 2.012056111268099
+ - 1.4191016420555589
+ - 0.3443515544919921
+ - 0.07157029375025162
+ - -0.45421067529372494
+ - -1.3918674952934404
+ - -1.7165159823525198
+ - -0.3243878360134261
+ - 0.9897039451759557
+ - 1.8824792943976152
+ - 1.9455620499304116
+ - 1.2167252735299265
+ - 2.0999072682463584
+ - 2.681194488275673
+ - 1.6621286089947205
+ - -0.7006352248928694
+ - -1.8244708196509105
+ - -1.9339424800759446
+ - -1.9071356816259257
+ - -1.2418020073805833
+ - -1.2505557298282184
+ - -0.39526462116086913
+ - 1.8741862483724876
+ - 2.5277629661767325
+ - 1.150285153997839
+ - -0.14105865498861886
+ - -1.3766400590630192
+ - -2.007097030389195
+ - -1.7704128631877092
+ - -0.9371873597256942
+ - -1.3288468955694925
+ - -0.7446315743981445
+ - 3.2088162488385383
+ - 4.348062186342266
+ - 1.2996501234663957
+ - 0.046017132194383345
+ - -1.2323077990638003
+ - -1.969433443308156
+ - -1.854902979958136
+ - -1.1169160735597796
+ - -1.0801760065825832
+ - -0.26926880768350836
+ - 1.8465004632452833
+ - 2.442282962599069
+ - 1.036513407475501
+ - -0.27427689220164714
+ - -1.5085474379354327
+ - -2.107374474647631
+ - -1.5521404132426153
+ - -0.12615059153754968
+ - 0.6119399471256307
+ - 1.3849386592662436
+ - 2.0095695866746937
+ - 1.770795995261408
+ - 0.7485513543150945
+ - -0.5887566493085468
+ - -1.7441796716981417
+ - -2.3543534015521597
+ - -1.632001505540335
+ - 0.1401358094614749
+ - 1.0250285919418891
+ - 1.603579220989274
+ - 2.0341826558582365
+ - 1.7890683160958682
+ - 2.0201723686906266
+ - 0.94280953192264
+ - -1.7829232208093846
+ - -2.764212774594409
+ - -1.6528755107089066
+ - -0.5585517788991219
+ - 0.7806700699993835
+ - 1.7785204833362172
+ - 2.0050659817193717
+ - 1.5617176732432414
+ - 1.882049273403683
+ - 0.652682631604129
+ - -1.9263778716686604
+ - -1.9817693555164677
+ - -0.3916272518405425
+ - 0.24300419779217902
+ - 1.145629733064401
+ - 1.9373614123592424
+ - 1.8974719978103476
+ - 1.0186593719882973
+ - -0.2922972598911792
+ - -1.5204944010955999
+ - -2.1606644569352884
+ - -1.6542563430358979
+ - -0.05452290430615879
+ - 0.6473221061855365
+ - 1.3964866586572424
+ - 2.0090619646666434
+ - 1.956446220608661
+ - 2.2339599120772102
+ - 1.0275490573752701
+ - -1.5679636171553604
+ - -2.7155102714342707
+ - -1.8062006175375465
+ - -0.8408406460338939
+ - 0.490544272060978
+ - 1.6087880564788337
+ - 2.0279083641307816
+ - 1.7717669802893588
+ - 1.9599324885500506
+ - 0.805573139709651
+ - -1.6398356955731883
+ - -2.703307044626868
+ - -1.6382606686426529
+ - -0.5407138458617335
+ - 0.7505589970460163
+ - 1.2952061860117698
+ - 1.279747005054269
+ - 0.8054585521484957
+ - 0.5055726243834682
+ - -0.6849397922271818
+ - -1.7229065185443264
+ - -2.0225814436277645
+ - -1.4289761597027872
+ - -0.22491348004640818
+ - 1.0686047392132987
+ - 2.796039593653595
+ - 2.1923692519572384
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.3159138702185014
+ - 4.379423016316819
+ - 0.9162418572394085
+ - -0.6698708039850789
+ - -1.9735173809397768
+ - -2.4083724141832508
+ - -1.8048553561748333
+ - -0.5889745076908158
+ - -0.30628155010646796
+ - 0.3661712797030052
+ - 1.9199518009898338
+ - 2.280573883560439
+ - 0.5519610346592763
+ - -1.026757509412985
+ - -2.2802542193000264
+ - -3.0006046878051635
+ - -1.9812841944022244
+ - 0.45045387318023655
+ - 1.636562043572768
+ - 2.097141795922861
+ - 2.3839272867847314
+ - 1.6447094167268532
+ - 0.17635433042641682
+ - -1.3580800532659958
+ - -2.454897035357346
+ - -3.1538695177981486
+ - -1.9814614531797576
+ - 0.7517074756973493
+ - 2.058091043532416
+ - 2.2604582076791164
+ - 2.2981902926640445
+ - 1.5672851654857307
+ - 1.610244844579949
+ - 0.5192173001402172
+ - -2.126463485249162
+ - -3.03366110224775
+ - -1.451113285970061
+ - 0.06185629131215895
+ - 1.554041602557158
+ - 2.363395435481869
+ - 2.151232964384211
+ - 1.2150949087320178
+ - 1.2656262911162406
+ - 0.12910285740326694
+ - -2.4256027236770215
+ - -2.4231929358187636
+ - 0.17486058998085846
+ - 1.3374383576187103
+ - 1.8837477729664165
+ - 2.412251184830119
+ - 1.9034892205015908
+ - 0.5518338879532381
+ - -1.0281159737046948
+ - -2.2816457482662456
+ - -3.0600902531584118
+ - -2.1320928655497156
+ - 0.562938258816634
+ - 1.6703959075970298
+ - 2.0994038887042263
+ - 2.385798820695888
+ - 1.8771367842754956
+ - 2.005104464259176
+ - 0.7127975719603739
+ - -1.984258815621661
+ - -3.1380305670531303
+ - -1.7357681000496394
+ - -0.31751882726027947
+ - 1.243036990269678
+ - 2.2584354644276896
+ - 2.2960782167777873
+ - 1.5640786510458864
+ - 2.204419790294061
+ - 1.7252501218513328
+ - 0.41189274283539135
+ - -0.30012813359356894
+ - -1.3933019130993063
+ - -2.3156356374498364
+ - -2.4737955219400587
+ - -2.9637701475031006
+ - -1.6992704182526812
+ - 2.035504741736398
+ - 3.254157490074644
+ - 2.2824537618398564
+ - 1.30309732259983
+ - -0.2415048839014853
+ - -1.6836469717919216
+ - -2.392333537385079
+ - -2.3069046718973754
+ - -4.393226754097672
+ - -3.0098157251238664
+ - 3.686331036491717
+ - 5.222195506488646
+ - 2.344447170565435
+ - 1.484075206728816
+ - -0.019053161973350084
+ - -1.5179453145109394
+ - -2.354248683379515
+ - -2.4106981451478897
+ - -2.856750758582979
+ - -1.594922462032864
+ - 2.0976617862401543
+ - 3.2909346152577106
+ - 2.2264101991857084
+ - 1.167799234119381
+ - -0.29394180552945925
+ - -0.7792915769350477
+ - -1.030321169264847
+ - -1.303597954796372
+ - -1.3003504358077267
+ - 0.26242133815544744
+ - 1.6955624522385342
+ - 2.4037260170508774
+ - 2.0512612603507847
+ - 0.8191852077038563
+ - -0.7019921038020138
+ - -1.2664201542923526
+ - -1.2863461427431921
+ - -1.0497110537382344
+ - -0.815124841407612
+ - 0.6385190673592342
+ - 1.9456214724422847
+ - 2.616848370975708
+ - 3.273099046865575
+ - 1.9909038453449934
+ - -1.481580768497761
+ - -2.822050245217368
+ - -2.411374499710384
+ - -1.916521890964292
+ - -0.5940118704958259
+ - 0.9947814650038148
+ - 2.1453222051238288
+ - 2.589682171120623
+ - 3.5172919149201283
+ - 1.8375476194845157
+ - -1.348576210131834
+ - -1.5323914804575667
+ - -1.643966194656149
+ - -1.948625471088229
+ - -0.10037642933358185
+ - 1.4196981135584221
+ - 2.3339964591762006
+ - 2.2190607388067516
+ - 1.1507956244706523
+ - -0.31588704749288293
+ - -0.823300080199731
+ - -1.0635641813351857
+ - -1.3364126886011207
+ - -1.3021872660103453
+ - 0.28222944079947915
+ - 1.7100829859951316
+ - 2.582290222206329
+ - 3.232835784972113
+ - 1.9175022353699163
+ - -1.0833364446695064
+ - -2.489567615836663
+ - -2.3782532305535473
+ - -2.11528474102667
+ - -0.9399173921385091
+ - 0.6542320934868557
+ - 1.9565141456975184
+ - 2.617765758368544
+ - 3.2096504297426387
+ - 1.8099314232895478
+ - -1.3339573623964305
+ - -2.785536656271959
+ - -2.4137391511622823
+ - -1.9082659431210487
+ - -0.7583141313440327
+ - -0.5268143669025805
+ - 0.2157243456282296
+ - 1.9956625369636252
+ - 2.436562957298642
+ - 0.7069521022225737
+ - -0.8802014492204787
+ - -2.0942721655166427
+ - -2.385921432632048
+ - -1.6497998285335853
+ - -0.3517742665568283
+ - 0.06358063015133358
+ - 0.3103896968973997
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.767295153909737
+ - 3.737509101565505
+ - 1.0746567977684864
+ - -0.03791672317067392
+ - -1.1384661488443
+ - -1.7388067216473242
+ - -1.5875594024171267
+ - -0.9020948126468268
+ - -0.8439520725701729
+ - -0.16251121913889305
+ - 1.5937013664144624
+ - 2.079926922030115
+ - 0.8377363766721234
+ - -0.31693921664542246
+ - -1.3789938112974314
+ - -1.9063951173590061
+ - -1.3793819301902668
+ - -0.0459640476186068
+ - 0.6363440469311774
+ - 1.2664060702686488
+ - 1.766289920707139
+ - 1.507105743281709
+ - 0.5809539591337158
+ - -0.5888336424999375
+ - -1.5747549129470406
+ - -2.1083621453185533
+ - -1.4393465972519162
+ - 0.18650399447214197
+ - 0.9920136402631142
+ - 1.4481879748871285
+ - 1.775492479560084
+ - 1.5124482674670885
+ - 1.6905766466913525
+ - 0.763855727229261
+ - -1.568315927054153
+ - -2.403025664115175
+ - -1.3976508771960414
+ - -0.4125704158759642
+ - 0.7540853266729052
+ - 1.5906372732846668
+ - 1.7377422209168518
+ - 1.30373564808604
+ - 1.5496483842358932
+ - 0.5037504240787889
+ - -1.7094920490966485
+ - -1.7511346980977642
+ - -0.2868090827174639
+ - 0.3081773112224902
+ - 1.0553747470793957
+ - 1.7151809334914172
+ - 1.6385636633692702
+ - 0.8373724889767302
+ - -0.3185326482740769
+ - -1.381066625503012
+ - -1.946131135016261
+ - -1.4710530349908608
+ - 0.008488073372044488
+ - 0.6508414732288514
+ - 1.2687782162313506
+ - 1.7682471411943759
+ - 1.681798366315302
+ - 1.9079201794719751
+ - 0.8587261718630985
+ - -1.3910229986284348
+ - -2.3822157888681494
+ - -1.5528943122724357
+ - -0.6787844788000574
+ - 0.4911721802546833
+ - 1.4472569706400573
+ - 1.7747493885383359
+ - 1.5108213595534075
+ - 1.6575437305697622
+ - 1.039400085487363
+ - 0.6610851732613389
+ - 0.3968721639443502
+ - -0.6168082701222208
+ - -1.5169119109578428
+ - -1.9198720171474153
+ - -2.3893850338296083
+ - -1.4910072257328635
+ - 1.2589937399959863
+ - 2.189029984676145
+ - 1.7696690345912087
+ - 1.310514768858746
+ - 0.2849383853605094
+ - -0.8694546269819073
+ - -1.642366881954763
+ - -1.8734446359657189
+ - -3.7392995140205993
+ - -2.624179070095171
+ - 2.349803675014145
+ - 3.4031976758179003
+ - 1.7732891434886977
+ - 1.4147614027401505
+ - 0.44528868850531794
+ - -0.7237306085726571
+ - -1.5738255942743435
+ - -1.9059752463445214
+ - -2.350222826258195
+ - -1.4377227511313575
+ - 1.32939037194353
+ - 2.256681451289792
+ - 1.758397214415648
+ - 1.2300823909135459
+ - 0.28397086841985153
+ - 0.04094448416372639
+ - -0.4102045382917751
+ - -1.2104562165575394
+ - -1.4850399688900653
+ - -0.26787723057069024
+ - 0.8800223417910623
+ - 1.6532153167778993
+ - 1.6977359812956931
+ - 1.0120110253539565
+ - -0.02112190488151419
+ - -0.33618627943676976
+ - -0.6272097324217375
+ - -1.0656596514035692
+ - -1.1722467480114582
+ - 0.012775917474777031
+ - 1.1120585010586341
+ - 1.8519952229645167
+ - 2.398296292847673
+ - 1.566400124098156
+ - -0.7588173763410188
+ - -1.6830934123974122
+ - -1.7049653899680182
+ - -1.639207384209019
+ - -0.8669377322770389
+ - 0.2907311987891756
+ - 1.315717490980777
+ - 1.9113250666343724
+ - 2.6859041276882043
+ - 1.5275820821249508
+ - -0.5764959227369332
+ - -0.7330287471537807
+ - -1.439009373583212
+ - -1.9717832265110944
+ - -0.5279198081816199
+ - 0.6409930964117391
+ - 1.5382658520376256
+ - 1.7580235582233412
+ - 1.2204550834978656
+ - 0.26728992783009137
+ - 0.01852946806144052
+ - -0.4038602110036828
+ - -1.2690721209199005
+ - -1.5001254909716686
+ - -0.2531084465976308
+ - 0.8942254126968342
+ - 1.7556700952287139
+ - 2.279003229748504
+ - 1.4636861908039367
+ - -0.45540848543139073
+ - -1.380586762871332
+ - -1.6153140017637613
+ - -1.724790559132472
+ - -1.091559023003815
+ - 0.025978316872577484
+ - 1.1249309970348274
+ - 1.8593909350343487
+ - 2.3597373315314822
+ - 1.4434062253665259
+ - -0.6702051859625635
+ - -1.6707776457639822
+ - -1.712746290097608
+ - -1.6379521628180278
+ - -1.0141530146174673
+ - -0.9956960376019087
+ - -0.2733582071063383
+ - 1.622672225090149
+ - 2.160960947327511
+ - 0.9399004722447262
+ - -0.2010915153637948
+ - -1.2598663884060113
+ - -1.7646497150796732
+ - -1.5073669667031269
+ - -0.7415271578417089
+ - -0.9906982843932732
+ - -0.5253974248348002
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.3640558013116237
+ - 4.627377475255494
+ - 1.6209940511079084
+ - 0.48273326291813545
+ - -0.8679257187914248
+ - -1.8386704280015314
+ - -2.0124337753914934
+ - -1.5132647909985049
+ - -1.6229900750602166
+ - -0.6725750241251943
+ - 1.9286592787898926
+ - 2.707745197359729
+ - 1.4010640826602483
+ - 0.16263546066957393
+ - -1.144634406087507
+ - -1.7109116221493768
+ - -1.3986936775511123
+ - -0.4840024739445064
+ - 0.03333990974510545
+ - 1.0485904920830214
+ - 1.9206717398463216
+ - 1.9686122206466992
+ - 1.1464250588909142
+ - -0.16321393817362262
+ - -1.4333626425038484
+ - -2.0315856224855473
+ - -1.5322895710968014
+ - -0.2206258442775411
+ - 0.469649646885006
+ - 1.3157319576628745
+ - 2.0138059658823
+ - 2.046097803075014
+ - 2.407018688073606
+ - 1.2640087598387144
+ - -1.697146961549094
+ - -2.790613114087641
+ - -1.888434747097656
+ - -0.9725944675360573
+ - 0.36583948302534613
+ - 1.5462796935915972
+ - 2.0540625067245646
+ - 1.8788439932802097
+ - 2.384540542001031
+ - 1.0142445484109202
+ - -1.7586937357294514
+ - -1.8536153761706606
+ - -0.7877943572212167
+ - -0.44528932767887525
+ - 0.7586207962138016
+ - 1.7826894417892798
+ - 2.0426635215935716
+ - 1.4003602801601418
+ - 0.160231821031163
+ - -1.1480797475733706
+ - -1.7491631031464574
+ - -1.4754423993707342
+ - -0.457812235859218
+ - 0.03702201321926508
+ - 1.0519662510755974
+ - 1.9234531170761286
+ - 2.1614131164322536
+ - 2.5573873018287725
+ - 1.3116703925838071
+ - -1.4221392249393623
+ - -2.6558131132768796
+ - -1.9936246406261888
+ - -1.2450789068324577
+ - 0.04281505996174414
+ - 1.3153680897479523
+ - 2.013938819617406
+ - 2.045185272739072
+ - 2.361087885114762
+ - 1.1247375023948962
+ - 1.1256779304168707
+ - 1.1393696440889742
+ - -0.1957803214493451
+ - -1.422287337817326
+ - -2.1871180727829733
+ - -2.8193807189253057
+ - -1.886499300539659
+ - 1.0842578404331233
+ - 2.1265795623585295
+ - 2.0141453444199304
+ - 1.8194365934503518
+ - 0.8400620134126606
+ - -0.5134008629010586
+ - -1.637151914751125
+ - -2.2249025452333826
+ - -4.619682292251691
+ - -3.304077358199827
+ - 2.1191705904554876
+ - 3.1679888448317644
+ - 1.9697177505925998
+ - 1.898683990632668
+ - 1.0093209246055486
+ - -0.32870412604929306
+ - -1.5165284075419379
+ - -2.209557940422971
+ - -2.822664755914761
+ - -1.856022717919218
+ - 1.1886321382706218
+ - 2.246324667491792
+ - 2.036466495169495
+ - 1.7546199782148275
+ - 0.8823121227047489
+ - 0.7512947203040755
+ - -0.04236846342116468
+ - -1.5958389679859646
+ - -2.211028947958732
+ - -0.8197222048169711
+ - 0.5268807179315116
+ - 1.6516995078498247
+ - 2.049497487489235
+ - 1.563463412840142
+ - 0.547396281755258
+ - 0.3226737816485244
+ - -0.3095588868049244
+ - -1.4878940579225175
+ - -1.9242965176140991
+ - -0.5122569331382263
+ - 0.8326489145642949
+ - 1.9145733848796203
+ - 2.5772902792541164
+ - 1.8076776117301805
+ - -0.4377591615283176
+ - -1.3640659124086278
+ - -1.7606467014903033
+ - -2.03306222728139
+ - -1.4305836574879767
+ - -0.1940102969300427
+ - 1.1177722787221416
+ - 2.0699110890549366
+ - 3.011975328499552
+ - 1.8509718275490132
+ - -0.14374402224274874
+ - -0.3372088756723886
+ - -1.8173580903353335
+ - -2.7476609366829856
+ - -1.0924806631374224
+ - 0.22736819943488196
+ - 1.4543655317533055
+ - 2.0418572991138944
+ - 1.7475470348294888
+ - 0.863691389161968
+ - 0.7385690902151556
+ - -6.500821071207318e-05
+ - -1.6987875154880934
+ - -2.243120710257209
+ - -0.8035564804905863
+ - 0.5462629568168192
+ - 1.7289945608702013
+ - 2.345313642536956
+ - 1.6407438701071184
+ - -0.0982950642792284
+ - -0.9709241184116303
+ - -1.5887362568586845
+ - -2.0556193465969415
+ - -1.6386432126557031
+ - -0.4961168733124546
+ - 0.8521363500051112
+ - 1.930293109005162
+ - 2.54502144438818
+ - 1.6866117178663205
+ - -0.36513626037901525
+ - -1.3675217281799532
+ - -1.7759992772677382
+ - -2.037254201449118
+ - -1.6197915843044133
+ - -1.7746782540712203
+ - -0.7924000399771376
+ - 1.9291583753366148
+ - 2.7563814384315477
+ - 1.497674290385707
+ - 0.2969093017427198
+ - -1.0364345853143795
+ - -1.9153241976439925
+ - -1.964884700618673
+ - -1.3560115982483436
+ - -2.263528162445769
+ - -1.4347264807237194
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.19628305447177713
+ - 0.039748544386199895
+ - 1.0670548407578395
+ - 1.9245439936584892
+ - 1.95616795892105
+ - 1.123121595958603
+ - -0.18728847218135694
+ - -1.4501459765452378
+ - -2.1099016793522978
+ - -1.714779497521895
+ - -0.14473257106469026
+ - 0.5040310448865114
+ - 1.3312805574625288
+ - 2.0137309750634245
+ - 2.0302417598498854
+ - 2.339695500019545
+ - 1.108686133458139
+ - -1.552631020786911
+ - -2.735271042532324
+ - -1.8738964239422948
+ - -0.9484804914802605
+ - 0.3891776828654734
+ - 1.5585229679366785
+ - 2.0500192480916413
+ - 1.859684175778449
+ - 2.080895955760398
+ - 0.8923408931268513
+ - -1.63897839111199
+ - -2.746178229753089
+ - -1.719041005772374
+ - -0.6513182912353903
+ - 0.646793791714408
+ - 1.1588608882128002
+ - 1.1648323808385161
+ - 0.8721402146981789
+ - 0.6451341774224773
+ - -0.5891211011514349
+ - -1.6826345812195451
+ - -2.0554259824153207
+ - -1.5206196586986702
+ - -0.335563533456726
+ - 0.9758354552928764
+ - 1.709773934007565
+ - 1.424708186762431
+ - 1.28218323727908
+ - 1.1241460544656625
+ - -1.5755566186511683
+ - -3.0016171594128633
+ - -1.9804202204126324
+ - -1.2205140695122845
+ - 0.06820113956327216
+ - 1.3303552990984666
+ - 2.012148337844007
+ - 2.0270272971454695
+ - 2.3790538031848394
+ - 1.2412636994264972
+ - -1.7018765286385187
+ - -2.786966005795149
+ - -1.8722786604172517
+ - -0.9471614614429656
+ - 0.3056851525856684
+ - 0.7297119251810389
+ - 0.9121869482383467
+ - 1.0757361345656544
+ - 1.0416274142962518
+ - -0.27453831725633293
+ - -1.477907647455051
+ - -2.0491861579324335
+ - -1.7161839348129577
+ - -0.6475061431882395
+ - 0.6507767512192641
+ - 1.1402166984482944
+ - 1.125808183468289
+ - 1.123430646339338
+ - 2.3591944145222428
+ - 2.0572398518513566
+ - 1.6402903370737205
+ - 0.669569390565555
+ - 0.47936777257794977
+ - -0.1630249536343787
+ - -1.7110039077154486
+ - -2.0977826961047192
+ - -0.6239493745114437
+ - 0.7295064970742576
+ - 1.7739048241448128
+ - 2.0370313110941214
+ - 1.4225787698792092
+ - 0.32384929495536297
+ - -0.003738528679153539
+ - -0.22815892926679238
+ - -2.8463877135397153
+ - -3.7632840252527
+ - -0.8016551125863353
+ - 0.5495603178847281
+ - 1.6692386226115554
+ - 2.054124708076165
+ - 1.5532756910967915
+ - 0.5256363143500125
+ - 0.29163847069381627
+ - -0.2914514541285978
+ - -1.6476843034293547
+ - -1.9662799320152806
+ - -0.4922317786236311
+ - 0.8549957720757214
+ - 1.9317927835473074
+ - 2.5465532559007418
+ - 1.6873599884356587
+ - -0.36605611510750685
+ - -1.369213913587403
+ - -1.7765712163480831
+ - -2.035480268408024
+ - -1.418404113298315
+ - -0.17257834200812427
+ - 1.139180162307314
+ - 2.0841531955603934
+ - 2.6817368451025363
+ - 1.6904369340657415
+ - -0.6237276847474487
+ - -1.7312457575783429
+ - -1.9189864464516653
+ - -1.965828843838634
+ - -1.3553572368319529
+ - -1.3991694508404733
+ - -0.46185300405669794
+ - 1.8152963240412066
+ - 2.5978313493142644
+ - 1.2547651274675682
+ - -0.030417494674504185
+ - -1.307478928497253
+ - -2.010109891409904
+ - -1.843826216372062
+ - -1.0571519693831497
+ - -1.110461700352018
+ - -0.13026574733302085
+ - 2.0653945554296564
+ - 2.0649549514248675
+ - -0.14516206622363212
+ - -1.1345289066660094
+ - -1.6005390735595713
+ - -2.051004844361909
+ - -1.619563290362953
+ - -0.47096292290518144
+ - 0.8725070719223674
+ - 1.9389975049346986
+ - 2.6009209225435144
+ - 1.8126201506440252
+ - -0.47707245972004686
+ - -1.418123733673077
+ - -1.784114361873692
+ - -2.0287975412973234
+ - -1.597401110308312
+ - -1.7067290444332088
+ - -0.6074548487102844
+ - 1.6870250572559218
+ - 2.6686906923477283
+ - 1.477093032654913
+ - 0.2717696701853414
+ - -1.0553212868255162
+ - -1.9195931989198682
+ - -1.9527924432172463
+ - -1.331430171974028
+ - -1.343357508189524
+ - -0.3497326930413012
+ - 1.6814577077444655
+ - 2.529994234852746
+ - 1.2338996415471313
+ - -0.05128677524101404
+ - -1.3342734107558363
+ - -1.9800121387750433
+ - -1.6526731115047724
+ - -0.27296448264557477
+ - 0.317034235780675
+ - 1.2237828669188116
+ - 1.9816875433614425
+ - 1.8887183694242837
+ - 0.9605502989925171
+ - -0.3744543483540211
+ - -1.5994160025051174
+ - -3.779018700672335
+ - -2.8556487684793903
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.9083417721161081
+ - -0.998686055631611
+ - 0.5027781055030256
+ - 1.4505848766459497
+ - 1.7770814673347932
+ - 1.3188994026384482
+ - 0.29669094882284325
+ - -0.8369310227466805
+ - -1.3466299650814664
+ - -1.2384653577910913
+ - -0.5468349858151348
+ - -0.19515209959389204
+ - 0.76569232397035
+ - 1.5941009392761214
+ - 1.8986962902076754
+ - 2.275385289895483
+ - 1.2091958844841983
+ - -1.149198702924383
+ - -2.221923935919825
+ - -1.750721966117297
+ - -1.1957760253187506
+ - -0.12347748207960733
+ - 1.0063975957476443
+ - 1.696071761645931
+ - 1.8249331647928968
+ - 2.137297166644551
+ - 1.0638029328241005
+ - -1.2777803227862987
+ - -2.3279535663756947
+ - -1.6848625199233938
+ - -0.9759392739837572
+ - 0.06782874405779044
+ - 0.4019980219937771
+ - 0.6614672142047546
+ - 1.084174817217373
+ - 1.1439860122373422
+ - -0.05625997462710763
+ - -1.145604176956174
+ - -1.745589690482304
+ - -1.5755790061647696
+ - -0.7292698294719829
+ - 0.3714836535164593
+ - 0.8530292698119041
+ - 0.9275064985716865
+ - 1.4298594430413682
+ - 1.3230576091458641
+ - -1.1000821428645027
+ - -2.330932365788472
+ - -1.7723651658169435
+ - -1.385277299063242
+ - -0.39983951747313295
+ - 0.765100421498823
+ - 1.5933554382342898
+ - 1.8968604408846654
+ - 2.31576919764826
+ - 1.3336295829807627
+ - -1.275863159726606
+ - -2.2645963538873115
+ - -1.7501632167435437
+ - -1.1953279261747969
+ - -0.23402498756730214
+ - 0.021057211206451012
+ - 0.44630601630832784
+ - 1.1877421358194962
+ - 1.434959975261128
+ - 0.22186255232532218
+ - -0.9191531652921814
+ - -1.6685752882158698
+ - -1.6824672256931774
+ - -0.9728827597793263
+ - 0.07125669865891812
+ - 0.3971358958631083
+ - 0.6608993220206909
+ - 1.0383709879463003
+ - 1.656199261630958
+ - 1.7091724019842658
+ - 1.6448427012177456
+ - 1.0293252003628335
+ - 1.0161890628227381
+ - 0.28827976081608486
+ - -1.6267880394951701
+ - -2.17213073768731
+ - -0.9538568052627207
+ - 0.1852883493620242
+ - 1.2490221983573389
+ - 1.7635692793788227
+ - 1.5164486972919002
+ - 0.7578450487794263
+ - 1.0261258093144987
+ - 0.5513485960381239
+ - -2.776554540629417
+ - -3.7525288705342117
+ - -1.0878311616067609
+ - 0.021947967737000508
+ - 1.1265770149750924
+ - 1.7362630284657243
+ - 1.5953898515409508
+ - 0.9177947824546459
+ - 0.8649334958911636
+ - 0.17751520915175112
+ - -1.5987764539944873
+ - -2.0923412307251907
+ - -0.852189736956482
+ - 0.301324857322806
+ - 1.3674372709879556
+ - 1.8943397497805312
+ - 1.37553873934007
+ - 0.05915204534886558
+ - -0.6159633674924144
+ - -1.2557122061921435
+ - -1.7653166790630543
+ - -1.516309016183934
+ - -0.5962990487694142
+ - 0.5739880410334744
+ - 1.565400087242001
+ - 2.0992704692597384
+ - 1.4375527265947161
+ - -0.17350862640421358
+ - -0.9729445221860852
+ - -1.439508473185014
+ - -1.7770435401750528
+ - -1.523827820061431
+ - -1.7069356636022575
+ - -0.7766263254953439
+ - 1.5672002715539997
+ - 2.4071024504811778
+ - 1.4080967153131716
+ - 0.4282904930526894
+ - -0.7398467599557318
+ - -1.5841803412333113
+ - -1.7417874991997329
+ - -1.317004151432184
+ - -1.5700329104336814
+ - -0.5178156661647596
+ - 1.7041819737247947
+ - 1.7469252040483267
+ - 0.28733872527433374
+ - -0.306411931670325
+ - -1.0524311257349486
+ - -1.711161274090205
+ - -1.6352086742629979
+ - -0.8361714630011806
+ - 0.3170779202790715
+ - 1.3774183756720184
+ - 1.941190269995603
+ - 1.467526495710289
+ - -0.007793222995652407
+ - -0.6484118045854207
+ - -1.2654203711248795
+ - -1.7642248556412705
+ - -1.678446553858463
+ - -1.9042597336135714
+ - -0.8573182137741269
+ - 1.3877265273459565
+ - 2.3768909394197033
+ - 1.5497978385116247
+ - 0.6779688747577318
+ - -0.4893469009209623
+ - -1.4435945249882807
+ - -1.7708316969511746
+ - -1.5079587110893629
+ - -1.6545615055759013
+ - -0.6588824635340939
+ - 1.4426647923801097
+ - 2.352953728999253
+ - 1.3946240386188644
+ - 0.41232838606505323
+ - -0.7193881950060359
+ - -1.2076781513898498
+ - -1.1614901887880478
+ - -0.6507635782338234
+ - -0.35738115433506534
+ - 0.6571390092353523
+ - 1.5382462889572865
+ - 1.7600135587910535
+ - 1.2043565998672257
+ - 0.13456717001817
+ - -0.992813572932316
+ - -2.5552630448740885
+ - -1.9923326766825262
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.741574427367147
+ - -3.610568243802999
+ - -0.7188810694735467
+ - 0.618830581368278
+ - 1.6951051296261377
+ - 2.0250312079399038
+ - 1.482099360207949
+ - 0.4357591911839786
+ - 0.1798606775437174
+ - -0.36112181720814773
+ - -1.5884723904086995
+ - -1.8635294803478557
+ - -0.40933054748699943
+ - 0.9162482137360176
+ - 1.9506413740964759
+ - 2.555420990836731
+ - 1.6722922074212074
+ - -0.42504442971559114
+ - -1.4440620851769557
+ - -1.7942288337379575
+ - -1.9988497409175396
+ - -1.3430584005957693
+ - -0.09171379743406691
+ - 1.1907576611043944
+ - 2.0887986813357817
+ - 2.6729052431302764
+ - 1.664979731200578
+ - -0.6764794274611468
+ - -1.7920937570942537
+ - -1.9235851348925912
+ - -1.9178922303746897
+ - -1.2703194063914902
+ - -1.2880953838441345
+ - -0.38806399797795116
+ - 1.783873139265434
+ - 2.524260858497513
+ - 1.1764949527944162
+ - -0.10902954030117135
+ - -1.3525634945580531
+ - -2.001641457821985
+ - -1.785802575192596
+ - -0.9685050221706614
+ - -0.9848757662915707
+ - -0.057356273213899016
+ - 2.044727165150658
+ - 2.037290937746027
+ - -0.19853840221684255
+ - -1.206540936573833
+ - -1.621903343427612
+ - -2.031589295003224
+ - -1.5675522643664848
+ - -0.409257028624411
+ - 0.9173141521823158
+ - 1.9516775587919808
+ - 2.6058390660591
+ - 1.801242498646473
+ - -0.5229609965257421
+ - -1.473748359720011
+ - -1.7960379989200075
+ - -2.0003472630784183
+ - -1.5376309215024646
+ - -1.6285516679246004
+ - -0.5564289442903078
+ - 1.6736097830007972
+ - 2.624010031181615
+ - 1.4221114818429719
+ - 0.21091713967548537
+ - -1.0958473446175816
+ - -1.9218192069397788
+ - -1.9160181874247295
+ - -1.2675383158717612
+ - -1.261717116119455
+ - -0.2990049099797757
+ - 1.6603976630124984
+ - 2.474774887309168
+ - 1.2200562187515824
+ - 1.9663775373325032
+ - 2.0633525019470476
+ - 2.4609031658203726
+ - 1.3958540650423488
+ - -1.7377768838398997
+ - -2.756198603554537
+ - -1.9039699479086818
+ - -1.049577877046771
+ - 0.26034219313237283
+ - 1.4588228273388242
+ - 2.0221276359382685
+ - 1.9137887839295578
+ - 3.6231945203852285
+ - 2.4744849022115343
+ - -3.1384467516139916
+ - -4.43677104313277
+ - -1.9612266510614127
+ - -1.2050449301575183
+ - 0.07326562085730248
+ - 1.3227497096329854
+ - 1.995223624010878
+ - 2.006350813352552
+ - 2.36616660261999
+ - 1.305366532137799
+ - -1.7868584998452803
+ - -2.78199767996637
+ - -1.8532068645877042
+ - -0.9336656866032294
+ - 0.3090334414161216
+ - 0.7305224160575978
+ - 0.9079348057903669
+ - 1.0625226967438641
+ - 1.0252569604209123
+ - -0.2776858519745704
+ - -1.4685960349906688
+ - -2.0313810303792446
+ - -1.697729493666334
+ - -0.6363472727284998
+ - 0.6508270130166031
+ - 1.1369435710568536
+ - 1.1191988964486979
+ - 0.8442446766984865
+ - 0.6125848075709637
+ - -0.5927831399587637
+ - -1.6724325377551965
+ - -2.2049805636547246
+ - -2.7477355477063248
+ - -1.6579248620438654
+ - 1.284523905088376
+ - 2.4170605196354984
+ - 2.0320470626794336
+ - 1.5796049058396675
+ - 0.44483171907094193
+ - -0.8897507555969068
+ - -1.8329298590668024
+ - -2.172293418202884
+ - -2.9391803656370343
+ - -1.5200105446965488
+ - 1.1834496621077453
+ - 1.335036755962399
+ - 1.3508576456866366
+ - 1.5680149826178067
+ - 0.02760410418164662
+ - -1.2416117533109772
+ - -1.9808064344366598
+ - -1.846411016048053
+ - -0.919037537504894
+ - 0.32737855265784693
+ - 0.7686870651838309
+ - 0.9396704725969203
+ - 1.0857598369439108
+ - 1.0250865566648675
+ - -0.29427976483568824
+ - -1.480340717434484
+ - -2.1848226702846163
+ - -2.7251319937121443
+ - -1.6024059252257126
+ - 0.9516468905936564
+ - 2.1452826903071376
+ - 2.0123949390073834
+ - 1.7539532658661143
+ - 0.7388126273130832
+ - -0.6057612847993684
+ - -1.6809653115400223
+ - -2.2049111225817346
+ - -2.6934810684342314
+ - -1.5048011546360351
+ - 1.1581563281127811
+ - 2.384603665832906
+ - 2.033277739051244
+ - 1.5720770639630748
+ - 0.5794180217006396
+ - 0.3662243708108728
+ - -0.23489953807111633
+ - -1.6553375695954973
+ - -1.9986297572061278
+ - -0.5408662547317976
+ - 0.7942717217170445
+ - 1.7923729667468018
+ - 2.0009104423689688
+ - 1.3477645455854075
+ - 0.23498225552345275
+ - -0.18272718068262542
+ - -0.3544481934265235
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.323940862263224
+ - -4.60966088577742
+ - -1.742169729833609
+ - -0.7131691727634929
+ - 0.6270901615407171
+ - 1.6938710729293427
+ - 2.025290607840213
+ - 1.6813022273200826
+ - 1.8702945989459734
+ - 0.8767138288362937
+ - -1.9017639492211982
+ - -2.755530308759335
+ - -1.5552702413464512
+ - -0.4054167129623191
+ - 0.893492976102488
+ - 1.4195830196350774
+ - 1.25778294251535
+ - 0.6694463543193073
+ - 0.2976706563081531
+ - -0.8168273816549418
+ - -1.7965987868420235
+ - -2.006103192451442
+ - -1.3293578959714103
+ - -0.08554370615421404
+ - 1.2014471649560565
+ - 1.770002989441871
+ - 1.4168983431422173
+ - 0.417797829011207
+ - -0.13519467149874184
+ - -1.1013988844976992
+ - -1.9252238141053795
+ - -2.1143708776442303
+ - -2.5354722959830314
+ - -1.3987492252028841
+ - 1.5833948575207029
+ - 2.699000452142664
+ - 1.9504993631538505
+ - 1.1713854237664647
+ - -0.11544033288611714
+ - -1.3548242475486134
+ - -2.0034772762609805
+ - -1.9877305729490258
+ - -2.5797397508829727
+ - -1.1816345194260491
+ - 1.5950465042985102
+ - 1.7086216862757038
+ - 0.9745331400903798
+ - 0.8061873180722408
+ - -0.5153844059081598
+ - -1.6263848583249163
+ - -2.040967669943946
+ - -1.5544578039239751
+ - -0.4028337900218975
+ - 0.8973104164758663
+ - 1.452890460180337
+ - 1.3181209517460117
+ - 0.6614358441348546
+ - 0.3002591730326835
+ - -0.8203824701709552
+ - -1.7995242902085915
+ - -2.187864886304285
+ - -2.6331997469373096
+ - -1.4156190773634998
+ - 1.2851003121464166
+ - 2.51689357258963
+ - 2.017126678336238
+ - 1.4177793236439817
+ - 0.2052551992737383
+ - -1.1013851055182493
+ - -1.925814230263129
+ - -2.1139444590533776
+ - -2.487509817240786
+ - -1.2554360197981072
+ - 1.4394405377887045
+ - 2.65145127221627
+ - 1.9514378674370636
+ - 1.2169610402921796
+ - 2.0954832700989945
+ - 2.74767532827828
+ - 1.8970339691550067
+ - -0.872023808038603
+ - -1.862487943658004
+ - -1.9288705622098774
+ - -1.898817035678151
+ - -1.050537295937041
+ - 0.2645118664973577
+ - 1.4571117211482902
+ - 2.17490000078858
+ - 4.597645439919973
+ - 3.315590181025314
+ - -1.7645734480726079
+ - -2.697389653453029
+ - -1.8631664077399723
+ - -1.955913589237162
+ - -1.2063129401600816
+ - 0.07864572736298472
+ - 1.321268022256528
+ - 2.135224773515155
+ - 2.7736514079133734
+ - 1.8822410607286353
+ - -0.9835495754593282
+ - -1.9975581577812926
+ - -1.967015789233905
+ - -1.8494956747118672
+ - -1.111679188855423
+ - -1.0556584496345638
+ - -0.16193478558801222
+ - 1.6323470806555496
+ - 2.3658800832596585
+ - 1.0306183381760614
+ - -0.27811259274091027
+ - -1.4720968198279885
+ - -2.0186445247087272
+ - -1.6936433264985717
+ - -0.7968212822781261
+ - -0.6454725337672156
+ - 0.10358530655853164
+ - 1.5560938113405645
+ - 2.1243340206738903
+ - 0.7418755939382901
+ - -0.5908199519546435
+ - -1.7413173880151518
+ - -2.3955088257963264
+ - -1.7430145985177752
+ - 0.21605834384151942
+ - 1.0432113852695168
+ - 1.6003065096183744
+ - 2.026843890679215
+ - 1.5817668791022004
+ - 0.43620218167323105
+ - -0.889313006004285
+ - -1.9319679602733675
+ - -2.8629990111180486
+ - -1.8262043868117859
+ - -0.10677774298759539
+ - 0.08579915877982622
+ - 1.8260686776726882
+ - 2.871513045490637
+ - 1.2807590487593747
+ - 0.02181951111790347
+ - -1.2513907735265386
+ - -1.974951645929281
+ - -1.8445748700776237
+ - -1.0940227751621907
+ - -1.0495753915173118
+ - -0.21918415407595293
+ - 1.7482228710277112
+ - 2.4037320812792817
+ - 1.0154461212561614
+ - -0.2982066070671356
+ - -1.527362646728305
+ - -2.1274603098837597
+ - -1.5592814192017734
+ - -0.10624068450092783
+ - 0.6434003450204411
+ - 1.4023393659592636
+ - 2.0127404105342954
+ - 1.7583138965573402
+ - 0.725888382155655
+ - -0.6117851212481842
+ - -1.7598518329000192
+ - -2.3701460755119137
+ - -1.6360982852187218
+ - 0.15997696452109414
+ - 1.0548459902684946
+ - 1.6181074743402737
+ - 2.033540691051536
+ - 1.7732954416434608
+ - 2.005534117045181
+ - 0.9884441640136346
+ - -1.8867517321909515
+ - -2.7813114028381336
+ - -1.6384078838825953
+ - -0.5351618838734047
+ - 0.8029380120030655
+ - 1.789817587791272
+ - 2.000612032656235
+ - 1.54287028674591
+ - 2.709609222405675
+ - 1.7731525830726884
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.00356680011328
+ - -4.384549781805405
+ - -2.396267003043401
+ - -2.026239889262594
+ - -0.7817724085042677
+ - 0.8117603125689858
+ - 2.0457061302810886
+ - 2.60790774331206
+ - 3.2500816075318775
+ - 2.03342243017798
+ - -1.6956757036551837
+ - -2.9584110052064876
+ - -2.405277097525895
+ - -1.7980452692465052
+ - -0.5820394784052537
+ - -0.3022573957084805
+ - 0.40975502643505574
+ - 1.7236043220363426
+ - 2.2031808058462263
+ - 0.544646024760125
+ - -1.0315568601150686
+ - -2.169423903871118
+ - -2.3514305266765105
+ - -1.5212286099864498
+ - -0.1711533894281875
+ - 0.21076471401163394
+ - 0.7121441627810013
+ - 1.546439740279526
+ - 1.801741211179123
+ - 0.16689208402089345
+ - -1.3619123107955895
+ - -2.4527531639868907
+ - -3.2105266769005616
+ - -2.140398619872521
+ - 0.8836930720272166
+ - 2.0975595966323506
+ - 2.257355194651211
+ - 2.289332948430304
+ - 1.3350771485700095
+ - -0.21203726834123687
+ - -1.657725985113149
+ - -2.5642551608645014
+ - -3.6394454171888455
+ - -2.117795429267008
+ - 0.6066034157906195
+ - 0.8249836327925334
+ - 2.028051758303217
+ - 2.8709222065450613
+ - 0.904385186693944
+ - -0.6795512639294052
+ - -1.9768479230362137
+ - -2.4038587208496
+ - -1.7944924442858883
+ - -0.5761712769601954
+ - -0.29842670334315713
+ - 0.373628996282257
+ - 1.8208960723608087
+ - 2.24194862354632
+ - 0.540147464721071
+ - -1.0352479273394501
+ - -2.282543112006584
+ - -3.0013603356307477
+ - -1.978828149836838
+ - 0.45872505242089473
+ - 1.6468658266055405
+ - 2.099293930661757
+ - 2.3783556328249147
+ - 1.6337831077425575
+ - 0.16489488770506786
+ - -1.3651478541220439
+ - -2.455148961989919
+ - -3.152097150453168
+ - -1.9775333914495294
+ - 0.7590434414353068
+ - 2.066345070071232
+ - 2.260737070182281
+ - 2.2910305580959687
+ - 1.5550025146526019
+ - 2.260033472259791
+ - 1.9074414080984716
+ - 0.3780269508481306
+ - -0.2863088463976252
+ - -1.3845890512162848
+ - -2.307146729133811
+ - -2.239246557745163
+ - -1.1812626211604038
+ - 0.377594323532135
+ - 1.8279683638555881
+ - 4.347891878208901
+ - 3.2938943200169173
+ - 0.3322103424770627
+ - 0.09482434138726134
+ - -1.1976332551090203
+ - -2.234676363679359
+ - -2.312930961355664
+ - -1.3689368180737471
+ - 0.15737797387636093
+ - 1.6486932964389776
+ - 2.4164865522419827
+ - 1.9836971103138172
+ - 0.22813461067552337
+ - -0.5063614109228839
+ - -1.513188031159492
+ - -2.348705238465032
+ - -2.4079669609014096
+ - -2.7869628465583896
+ - -1.3386154237085288
+ - 1.7999381823382326
+ - 3.198041687105329
+ - 2.2222942117572413
+ - 1.16731907007107
+ - -0.39469220870617017
+ - -1.786574250884303
+ - -2.4010809014109333
+ - -2.217443560868191
+ - -2.4942749804779
+ - -1.0898316564187964
+ - 1.9089148425159477
+ - 3.2241251331440077
+ - 2.0494652655954795
+ - 0.8228380568400346
+ - -0.6934315422067708
+ - -1.280928493790493
+ - -1.3228273828816968
+ - -1.0712619186395795
+ - -0.8393330359927337
+ - 0.6308387046501561
+ - 1.9369533956012512
+ - 2.4135950194295352
+ - 1.824597221543356
+ - 0.45500853443900346
+ - -1.0831404831932154
+ - -1.9256077138992531
+ - -1.634428467751585
+ - -1.5520995170289666
+ - -1.3697848448272858
+ - 1.827820829248035
+ - 3.5110251568168684
+ - 2.3350214133669773
+ - 1.461694300075002
+ - -0.04476110228811034
+ - -1.5356304937004706
+ - -2.3563578071373326
+ - -2.3963428318867814
+ - -2.8194147449175313
+ - -1.4807325951596657
+ - 1.9874558446546666
+ - 3.2681813616435837
+ - 2.2132557856224504
+ - 1.1436339067117622
+ - -0.3211553294613736
+ - -0.8114962151570962
+ - -1.0468759259426452
+ - -1.28574335080437
+ - -1.2669895787922607
+ - 0.2875265599974688
+ - 1.711301235949725
+ - 2.4032807861131267
+ - 2.034782112465365
+ - 0.7938665936117364
+ - -0.7277586016681596
+ - -1.2961712053021863
+ - -1.3005568225062334
+ - -1.0302273160640845
+ - -0.7806796442963371
+ - 0.6623230198075792
+ - 1.9579467940296464
+ - 2.6134372647791073
+ - 3.2866350028510465
+ - 2.0953826015895554
+ - -1.5913914425519544
+ - -2.8513900217835992
+ - -2.408321311967406
+ - -1.8981545035418672
+ - -0.5681864670833094
+ - 1.0166670375232665
+ - 2.153888960183952
+ - 2.581954835344581
+ - 5.216074571771357
+ - 3.682247618160725
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.7972474641748772
+ - -2.722388601979726
+ - -1.80438631224365
+ - -1.8353046438412655
+ - -1.0756014928572872
+ - 0.1617070369661152
+ - 1.3212841144294556
+ - 2.0512167559167604
+ - 2.647961347018076
+ - 1.776225990192752
+ - -1.0043710339479759
+ - -1.9813936416238522
+ - -1.8899654377579849
+ - -1.7212501527304216
+ - -0.9745650165171238
+ - -0.8953203893581553
+ - -0.08242446885179668
+ - 1.53560980061934
+ - 2.1901762731751635
+ - 0.9041076849796839
+ - -0.350459578304435
+ - -1.4588951211168149
+ - -1.9254908108347173
+ - -1.5611220537986905
+ - -0.6689259208030711
+ - -0.49982411468908716
+ - 0.17001118273413546
+ - 1.452240851096051
+ - 1.945325535122637
+ - 0.6237044839863081
+ - -0.6446546480887538
+ - -1.7120456892230296
+ - -2.335528458059673
+ - -1.675826629123159
+ - 0.28217209873735183
+ - 1.1012750402326932
+ - 1.5737948498930514
+ - 1.9246862597308336
+ - 1.4476886371664475
+ - 0.32938198698994586
+ - -0.9231276295955746
+ - -1.880607936971018
+ - -2.7674893884643947
+ - -1.7405468074982553
+ - -0.013276648655555456
+ - 0.16957180268555988
+ - 1.7307489751755396
+ - 2.68359819164249
+ - 1.1587387925605943
+ - -0.05049057220968947
+ - -1.2426579112096687
+ - -1.88880869399247
+ - -1.7185750224331047
+ - -0.969963236263287
+ - -0.9048677533247897
+ - -0.1449017694980456
+ - 1.6409439140296185
+ - 2.229794155168222
+ - 0.9008359545916855
+ - -0.35314032230776304
+ - -1.5035384026208782
+ - -2.076280634868177
+ - -1.4994475644467975
+ - -0.04217535550488362
+ - 0.7026129914688595
+ - 1.3808298581603249
+ - 1.9177237963283194
+ - 1.6304462750936681
+ - 0.621603389787883
+ - -0.647808574598628
+ - -1.714732769506355
+ - -2.2937640928381744
+ - -1.563333284032805
+ - 0.21003281718923947
+ - 1.0878942685398596
+ - 1.576960417661266
+ - 1.9262325881800195
+ - 1.6349723506039988
+ - 1.8327676904487278
+ - 1.2284672026003969
+ - 0.7517848523096214
+ - 0.45823908461240803
+ - -0.6669599111265162
+ - -1.647083656261832
+ - -1.9213620726793506
+ - -1.3470355861170222
+ - -0.19735424487528652
+ - 1.031911268088503
+ - 2.6888237159407375
+ - 2.105239915387205
+ - 1.0672632216707287
+ - 1.1981614834074215
+ - -0.4975812799584401
+ - -1.547796443367023
+ - -1.9352172559107805
+ - -1.4682248032723577
+ - -0.3730587440159461
+ - 0.8599886484773015
+ - 1.4054637992241066
+ - 1.3144941675771167
+ - 0.6399542900178756
+ - 0.28239126937524894
+ - -0.7863397689424599
+ - -1.7107726178431215
+ - -2.0734678320824584
+ - -2.493901847609769
+ - -1.338422246884746
+ - 1.2234925397065657
+ - 2.3915072036775094
+ - 1.9116902097933635
+ - 1.337946803891024
+ - 0.18551990563105544
+ - -1.0521286189890178
+ - -1.8292023071518446
+ - -2.0018294194304342
+ - -2.353907487508796
+ - -1.1855652851190106
+ - 1.3688823019616205
+ - 2.5172570482901424
+ - 1.8479787804747323
+ - 1.103911123437708
+ - -0.01823941190026363
+ - -0.36813936134799724
+ - -0.6778653449987027
+ - -1.2118951008031635
+ - -1.305480564772148
+ - 0.010006888161086606
+ - 1.2065558397596097
+ - 1.887900275524591
+ - 1.736567592105779
+ - 0.8395903396679786
+ - -0.3494400289903225
+ - -0.8540766345220948
+ - -0.9708911215436961
+ - -1.5848605879687279
+ - -1.4720278550250607
+ - 1.173839976017856
+ - 2.5139167811460874
+ - 1.9280698810490393
+ - 1.5246183304413288
+ - 0.4627464515287054
+ - -0.80665268701585
+ - -1.7208056565768628
+ - -2.068464015301504
+ - -2.530424930009462
+ - -1.4642033148752618
+ - 1.3730249616186767
+ - 2.449675025463421
+ - 1.908387256458553
+ - 1.3212828070485965
+ - 0.28517998991176186
+ - 0.01517607495461061
+ - -0.463193698973098
+ - -1.3056374263160633
+ - -1.5913004236508292
+ - -0.26953744145284164
+ - 0.9755623018777132
+ - 1.8051690536674274
+ - 1.8390854506870462
+ - 1.0820560858741732
+ - -0.04670356181880457
+ - -0.39446151955881276
+ - -0.6980490838099948
+ - -1.146001831193799
+ - -1.2486853235077424
+ - 0.03578738392720453
+ - 1.2258527119599423
+ - 2.0195479433492234
+ - 2.6312258999744467
+ - 1.795721575639961
+ - -0.9010776782518504
+ - -1.8586136707280272
+ - -1.859296233104264
+ - -1.773431385199733
+ - -0.9231472728960232
+ - 0.33760038990684366
+ - 1.4448336194566305
+ - 2.080373928494022
+ - 4.368681433036666
+ - 3.140926618702041
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.576165895559323
+ - -2.5103516850093035
+ - -2.0431412063703163
+ - -2.3840042266764376
+ - -1.699039124216926
+ - -0.26107688401386137
+ - 1.2796014483402744
+ - 2.409053328300967
+ - 3.1965958322322776
+ - 2.2533907444691894
+ - -0.8680505715710337
+ - -2.0002239317382764
+ - -2.2178983170495385
+ - -2.3119439057401063
+ - -1.6334063170967632
+ - -1.6735379954293648
+ - -0.4796328928547334
+ - 1.9737003339838155
+ - 3.0048214596593024
+ - 1.5118310009714924
+ - 0.024380352906527843
+ - -1.4793415018988643
+ - -2.333289092892156
+ - -2.1783656789845462
+ - -1.2910380547881248
+ - -1.2166286225773117
+ - -0.16935373572540685
+ - 1.9287390924598586
+ - 2.784319557158281
+ - 1.198321892975418
+ - -0.3536373211064598
+ - -1.8053175855265615
+ - -2.5635484953560583
+ - -1.9609146079394573
+ - -0.05916376222611404
+ - 0.7745166926335056
+ - 1.65755118558093
+ - 2.3777838721381594
+ - 2.076342162100167
+ - 0.8561730684443252
+ - -0.7240177983177486
+ - -2.07977551272202
+ - -3.1603510006939395
+ - -2.1149634297722195
+ - -0.4794703378556142
+ - -0.25423896824203723
+ - 2.1609585183476954
+ - 3.5542587158244796
+ - 1.784096849476093
+ - 0.3985334665118739
+ - -1.1641149461225824
+ - -2.216501332431079
+ - -2.3089150700422874
+ - -1.6280148916478736
+ - -1.6966321124978117
+ - -0.5852304317758265
+ - 2.1246628479446135
+ - 3.059982859410941
+ - 1.508240772738679
+ - 0.021442036015471747
+ - -1.4898411865094896
+ - -2.169465877484952
+ - -1.707133890259437
+ - -0.43072356699702036
+ - 0.26452364970020864
+ - 1.3659912543877033
+ - 2.296786778418993
+ - 2.241617742034413
+ - 1.1953526435167612
+ - -0.35791832403308216
+ - -1.8092335404130546
+ - -2.518464752687706
+ - -1.8435595796891031
+ - -0.119385970963879
+ - 0.7693702300117743
+ - 1.6617474095228837
+ - 2.3797992118273816
+ - 2.30982785250005
+ - 2.698030131678297
+ - 1.4528544610527832
+ - 1.3128148057994415
+ - 1.1846579938033004
+ - -0.38406181342078083
+ - -1.7759063508986173
+ - -2.407999734862643
+ - -1.9773581175914705
+ - -0.6993999291742731
+ - 0.8280195351657693
+ - 2.4664564381285294
+ - 2.0132226653123326
+ - 2.015836799768633
+ - 2.470008297402902
+ - -0.16401114593666338
+ - -1.619298408105372
+ - -2.382556623956251
+ - -2.094694191316461
+ - -0.9081174220327136
+ - 0.5968599620821513
+ - 1.1822291994807566
+ - 1.3113394473262117
+ - 1.1872126376613978
+ - 0.9755148816634376
+ - -0.5415136042260975
+ - -1.8800316146968348
+ - -2.6049923509033714
+ - -3.214496163714915
+ - -1.842023089794208
+ - 1.255099409123432
+ - 2.691534199508191
+ - 2.4001040456227196
+ - 1.968460792156491
+ - 0.6870276961039988
+ - -0.9016857385142703
+ - -2.0921800748129096
+ - -2.5948421443805736
+ - -3.135416191496288
+ - -1.7030049582006537
+ - 1.482302208777418
+ - 2.9387663822085535
+ - 2.3935978003483642
+ - 1.728512685342982
+ - 0.4772453577943506
+ - 0.1724277255240026
+ - -0.4531367517685832
+ - -1.7726503424741853
+ - -2.1436437922268508
+ - -0.44813171920821987
+ - 1.1172467848114533
+ - 2.2073315653642314
+ - 2.324668270288185
+ - 1.441720624275946
+ - 0.0649210990230751
+ - -0.3782965064764073
+ - -0.8426289645596757
+ - -2.2057319997354443
+ - -2.102127259056829
+ - 1.1290723676855525
+ - 2.718226898888807
+ - 2.3509664192313777
+ - 2.145257629945325
+ - 1.014501518314683
+ - -0.567887359646366
+ - -1.8956118585371236
+ - -2.6030319266421307
+ - -3.267796422324947
+ - -2.002990623404771
+ - 1.4326505473606896
+ - 2.7626879793832173
+ - 2.3998264256107342
+ - 1.9507490855554763
+ - 0.8436329056510936
+ - 0.6359403153460385
+ - -0.20326140070374832
+ - -1.8118443114002039
+ - -2.431511612329075
+ - -0.7854445919201767
+ - 0.7953391479715075
+ - 2.039583470578587
+ - 2.3856653178834475
+ - 1.7037271730473103
+ - 0.442429975624219
+ - 0.12795527967783338
+ - -0.512503751391463
+ - -1.6634617801963107
+ - -2.066855693981952
+ - -0.41689179513194824
+ - 1.1425440821737924
+ - 2.337789883958323
+ - 3.1339148141422535
+ - 2.2486304423487002
+ - -0.7266177177790969
+ - -1.8195085187870788
+ - -2.1506032738187173
+ - -2.3481060965604392
+ - -1.5346878966841975
+ - -0.04056868860113902
+ - 1.461084801291005
+ - 2.490187661124258
+ - 5.382464795278996
+ - 3.9203362293807924
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.8943043786076843
+ - 5.318516177556641
+ - 1.7331206255171334
+ - 0.31780964747247015
+ - -1.2399185382087181
+ - -2.2538641063967773
+ - -2.2920256478321943
+ - -1.561904697127378
+ - -1.6067043198745437
+ - -0.5620975650445782
+ - 2.2366296467173417
+ - 3.052832914659809
+ - 1.4474977567254381
+ - -0.06144507636990393
+ - -1.5673948255985009
+ - -2.2570469094490453
+ - -1.7459248964250438
+ - -0.3651708523547009
+ - 0.3759552853088149
+ - 1.4376075547036753
+ - 2.326646635693779
+ - 2.216696054262037
+ - 1.1265087416251782
+ - -0.4407865604945938
+ - -1.87850531455818
+ - -2.5940197470239723
+ - -1.8729163579299162
+ - -0.051523117068844604
+ - 0.8792383092869438
+ - 1.7258190680837007
+ - 2.3971135188104262
+ - 2.274038229468131
+ - 2.6260458176459154
+ - 1.3103706319354735
+ - -2.0600758338396306
+ - -3.2900082363305234
+ - -2.0997778815638086
+ - -0.9112129357319416
+ - 0.6745579433498384
+ - 1.9665532083916077
+ - 2.4044536276993558
+ - 2.0410135128951055
+ - 2.5321890518051697
+ - 0.9909609092070986
+ - -2.181492174312748
+ - -2.271186292755671
+ - -0.7118307932301126
+ - -0.14179953789547636
+ - 1.1171641139479875
+ - 2.201486171614978
+ - 2.3414983738116235
+ - 1.4468008322846306
+ - -0.06401516966596105
+ - -1.570958540903099
+ - -2.305907815956328
+ - -1.8505800481848882
+ - -0.31662214274106204
+ - 0.3865702639289329
+ - 1.4412879918133006
+ - 2.3296807540898237
+ - 2.4487997135226913
+ - 2.8519981662162226
+ - 1.3963812920971586
+ - -1.76883034204113
+ - -3.18386234369792
+ - -2.2596188376090143
+ - -1.2499484891523
+ - 0.30217538435032415
+ - 1.7250495391252378
+ - 2.396791557681873
+ - 2.272497372764652
+ - 2.5755072036417324
+ - 1.1549673563894336
+ - -1.8893858141069302
+ - -3.2298939166723994
+ - -2.0999290228422156
+ - -0.9114465458262284
+ - 0.595878417220716
+ - 1.181830284715232
+ - 1.3123774221691764
+ - 1.4585320974071285
+ - 2.7053782356917195
+ - 2.394123799920954
+ - 2.003072623182284
+ - 0.7474789168631479
+ - -0.8420492027263747
+ - -2.058992500427373
+ - -2.599541728743866
+ - -5.314105373660191
+ - -3.7729124937221
+ - 2.7892609436052
+ - 4.109026167208773
+ - 2.364949445502541
+ - 2.1164521320016934
+ - 0.9551173830217584
+ - -0.6316806986052572
+ - -1.9363581242707064
+ - -2.6067978523152497
+ - -3.2832477998741116
+ - -2.0992331881173567
+ - 1.5707938075004113
+ - 2.826907653357647
+ - 2.4035461905179902
+ - 1.9130210823136942
+ - 0.7765965006789192
+ - 0.5499929674701111
+ - -0.25700311017634375
+ - -1.7907027621462337
+ - -2.3746125254144217
+ - -0.7237485503276667
+ - 0.8573633194224742
+ - 2.075217342866775
+ - 2.3790790590319153
+ - 1.6580345097230875
+ - 0.3724959925302543
+ - 0.040211828508315034
+ - -0.5647672933916181
+ - -1.6347159119362218
+ - -2.0000670553118107
+ - -0.35245637499194316
+ - 1.2005327511637955
+ - 2.3698523820226223
+ - 3.137662678782801
+ - 2.136592689389378
+ - -0.7276627593032788
+ - -1.889897843704412
+ - -2.1803554282810946
+ - -2.3351184757400607
+ - -1.4843928760453708
+ - 0.024902948425272103
+ - 1.5134864079195882
+ - 2.511748744506586
+ - 3.60209897730672
+ - 2.145470740435514
+ - -0.42028631907246267
+ - -0.6427989554504263
+ - -2.0728054260700324
+ - -3.020930282395586
+ - -1.0592682118548853
+ - 0.5147141509262234
+ - 1.8730288709710683
+ - 2.4071207054037815
+ - 1.9027216287769058
+ - 0.7542917044349498
+ - 0.5286571266369546
+ - -0.22379596544538347
+ - -1.8954355569690455
+ - -2.4054965232284125
+ - -0.7042268522832501
+ - 0.8788339282687306
+ - 2.186230145801098
+ - 2.9087539475468285
+ - 1.9625190990155117
+ - -0.3212986246581821
+ - -1.446348873844102
+ - -2.0100247383529153
+ - -2.3983669974916637
+ - -1.7548732440413821
+ - -0.3338187511523792
+ - 1.2213377625808495
+ - 2.3849793956583643
+ - 3.0936488668512325
+ - 1.9834755181105754
+ - -0.627595139824394
+ - -1.8854902492435863
+ - -2.1954407511542384
+ - -2.3373670350457023
+ - -1.6987578982645333
+ - -1.797242136427646
+ - -0.7076113887002083
+ - 2.2530337267592824
+ - 3.1318657111195094
+ - 1.571908395385533
+ - 0.0969798263217682
+ - -1.4254517348636768
+ - -2.321985003105606
+ - -2.2142239827308625
+ - -1.3625752798153914
+ - -2.1375901305132103
+ - -1.298085366183463
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.165504632291785
+ - 4.379877043916293
+ - 1.6213988030760351
+ - 0.6157521528961554
+ - -0.6590920773042538
+ - -1.6461287675960001
+ - -1.9188582383623096
+ - -1.551194422176089
+ - -1.7095418198077943
+ - -0.7779552072609298
+ - 1.812162380472108
+ - 2.602685388023291
+ - 1.435243149549743
+ - 0.32037859478256014
+ - -0.9146798259762283
+ - -1.4246733991152867
+ - -1.2311909750272803
+ - -0.5861896603366602
+ - -0.19470317953177296
+ - 0.8367727781176922
+ - 1.738131675348845
+ - 1.894110980077192
+ - 1.2132008196658741
+ - 0.015191110319896037
+ - -1.201869517576314
+ - -1.7493780578374594
+ - -1.3754425552183331
+ - -0.3442315844746838
+ - 0.21705649617578718
+ - 1.1022443258012276
+ - 1.8507973986579727
+ - 1.988703218744387
+ - 2.3724167589147602
+ - 1.291848739077768
+ - -1.5330344138866738
+ - -2.586018858087364
+ - -1.8348147836231266
+ - -1.0590565703819654
+ - 0.17600532705395813
+ - 1.3367069251440828
+ - 1.9149883991455774
+ - 1.8577287806560947
+ - 2.396722915959437
+ - 1.077114946385729
+ - -1.5573322637958273
+ - -1.66018096508971
+ - -0.875414940345677
+ - -0.6694258803042393
+ - 0.5537042481724077
+ - 1.5851284936002235
+ - 1.9375983074694103
+ - 1.4345004125935101
+ - 0.3179743505284861
+ - -0.9182018685974338
+ - -1.4575947557157067
+ - -1.2928135348330871
+ - -0.5737640612227894
+ - -0.19549726026667164
+ - 0.8400967151697067
+ - 1.7408692575806288
+ - 2.069555250939613
+ - 2.479139234297469
+ - 1.3160291291661714
+ - -1.2560911482307977
+ - -2.4257254615363433
+ - -1.9082852196345896
+ - -1.2998374816659881
+ - -0.12899524959215786
+ - 1.102137877859849
+ - 1.8512352316875442
+ - 1.9881702024027532
+ - 2.3274333387804234
+ - 1.1568983624137332
+ - -1.395692248027763
+ - -2.5401961284425476
+ - -1.8355927020993756
+ - -1.0595506752770758
+ - 0.08009511805417935
+ - 0.4572862265146829
+ - 0.7523571278825194
+ - 1.232648512572541
+ - 1.8378198636022511
+ - 1.8533803966690563
+ - 1.7811667024321431
+ - 0.9412548148659805
+ - -0.31709479574802496
+ - -1.4307623240023655
+ - -2.0775359022910953
+ - -4.369618903019863
+ - -3.143879751128467
+ - 1.7689032529575217
+ - 2.6850568937828267
+ - 1.7966644156594846
+ - 1.8412369576572054
+ - 1.092684896882679
+ - -0.14099410184039085
+ - -1.3058677175119506
+ - -2.046335177007314
+ - -2.6455686865129615
+ - -1.7795407519790565
+ - 0.9879347583281219
+ - 1.96195429231709
+ - 1.8853868910631597
+ - 1.730244346054967
+ - 0.9942738979731494
+ - 0.9212031562660328
+ - 0.09949097793852006
+ - -1.5396272628683414
+ - -2.204447562623884
+ - -0.922236303433889
+ - 0.32997073915224845
+ - 1.4448700823434582
+ - 1.9241471876310237
+ - 1.5729524932166463
+ - 0.6901089982651454
+ - 0.5269898077604438
+ - -0.15296745108190923
+ - -1.458843893778203
+ - -1.9632000102769969
+ - -0.6432130791923352
+ - 0.6249322917628194
+ - 1.6987129908178633
+ - 2.3218897388565543
+ - 1.671509552345223
+ - -0.2638929114390197
+ - -1.0752822628690628
+ - -1.5614476749607615
+ - -1.925393576894169
+ - -1.461193284217428
+ - -0.34975476250457427
+ - 0.9046942834285696
+ - 1.8702957506755846
+ - 2.756895485097184
+ - 1.7398817126852821
+ - 0.0348768427076184
+ - -0.14814041832500674
+ - -1.7308700612494659
+ - -2.6925853617428848
+ - -1.1656577963296897
+ - 0.045406326649318235
+ - 1.2415932780953112
+ - 1.8922434151801537
+ - 1.7250023043665823
+ - 0.9772631807948022
+ - 0.9136751217878009
+ - 0.1498628666409236
+ - -1.6461793510572822
+ - -2.2388467503499285
+ - -0.9075760043205761
+ - 0.34885314543094187
+ - 1.5031700149220242
+ - 2.0770481203182505
+ - 1.5015798732182952
+ - 0.04656939704945826
+ - -0.697571954478058
+ - -1.3804633941464548
+ - -1.9217347744685231
+ - -1.6371217712492845
+ - -0.6280015115931225
+ - 0.6444376863365958
+ - 1.7155566779168805
+ - 2.2959841430267214
+ - 1.5662770391533913
+ - -0.2062742781700313
+ - -1.0841525656137472
+ - -1.5776929725567277
+ - -1.9310855813951364
+ - -1.6423650814266961
+ - -1.842267080797735
+ - -0.8861495323199021
+ - 1.8020300714173403
+ - 2.633219504963859
+ - 1.5177267743401441
+ - 0.4447246094566906
+ - -0.8240491116975793
+ - -1.7320761498436061
+ - -1.8893672522693643
+ - -1.4148113821000181
+ - -2.453429258324954
+ - -1.5931685521426664
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.588353898450075
+ - 3.7671494625393156
+ - 2.022704046067955
+ - 1.6750200068410883
+ - 0.6043051122817634
+ - -0.7365393033850834
+ - -1.7518115327233836
+ - -2.191365276360148
+ - -2.7205057756418976
+ - -1.688445661758008
+ - 1.4624394070180777
+ - 2.5253309285873455
+ - 2.021313367537788
+ - 1.4758031466961443
+ - 0.4300720438566657
+ - 0.17889854955350545
+ - -0.3905145476677412
+ - -1.4277618061888075
+ - -1.7990714535057275
+ - -0.40333698825142156
+ - 0.9194153306486277
+ - 1.8511673612829265
+ - 1.9671759643861761
+ - 1.2366241919821557
+ - 0.0828103803168609
+ - -0.2530983840629666
+ - -0.6429399609564167
+ - -1.2725037080680344
+ - -1.45365680011121
+ - -0.08401043830319103
+ - 1.1930838296755135
+ - 2.0857834360499004
+ - 2.7193872744595775
+ - 1.7994044034164274
+ - -0.7896884562365031
+ - -1.8251605615952426
+ - -1.9198325211911762
+ - -1.9095122574642864
+ - -1.0764391771265662
+ - 0.2348173926749311
+ - 1.43641898137369
+ - 2.1702438967625595
+ - 3.068997704808618
+ - 1.7709924699765505
+ - -0.5657042011486634
+ - -0.7479387763362977
+ - -1.6886425003257766
+ - -2.363789300136032
+ - -0.7088539657173974
+ - 0.6262712127374205
+ - 1.6967462586286048
+ - 2.0201263190795884
+ - 1.4728038927906528
+ - 0.42514261037551615
+ - 0.1742522285978474
+ - -0.3640474933501807
+ - -1.5062248700033878
+ - -1.8306059546770255
+ - -0.39952986639789134
+ - 0.9225414594230004
+ - 1.951280267729528
+ - 2.5544456117201837
+ - 1.6692691292612618
+ - -0.4314640458574264
+ - -1.451491988155456
+ - -1.7948538257341842
+ - -1.9931051206614776
+ - -1.3333936208235362
+ - -0.0823949350322902
+ - 1.1957317499203768
+ - 2.0877042916304727
+ - 2.6698114828727886
+ - 1.660770673967184
+ - -0.6819900852480971
+ - -1.7976540928415474
+ - -1.9226160856303847
+ - -1.9109146190778994
+ - -1.259604528391876
+ - -1.2760215754816095
+ - -0.4153994790086735
+ - 1.8740877561580984
+ - 2.5357264884473274
+ - 1.211626597339682
+ - 1.9577751406799864
+ - 1.8633074071913507
+ - 0.9448714362138104
+ - -0.3737245995225525
+ - -1.5823364252326428
+ - -3.736885801750419
+ - -2.8232156422668337
+ - -0.18712795986449665
+ - 0.04861091366229067
+ - 1.057081815815457
+ - 1.901707267336772
+ - 1.9302579330220528
+ - 1.1055857247952525
+ - -0.18896752242792575
+ - -1.435225193050829
+ - -2.0870538573948285
+ - -1.6949129414938173
+ - -0.13911656851924778
+ - 0.5031967197090078
+ - 1.3176037051376697
+ - 1.9891555298351662
+ - 2.0028642365582208
+ - 2.3073574724860975
+ - 1.0922058110946316
+ - -1.5343937933199956
+ - -2.7013841999541457
+ - -1.8486443989439287
+ - -0.9329409420473593
+ - 0.3882753706810365
+ - 1.541529794799041
+ - 2.0243479682746006
+ - 1.8338413261383189
+ - 2.051117864504868
+ - 0.8782692816013445
+ - -1.619151142587992
+ - -2.711286929493322
+ - -1.6951736794557717
+ - -0.6392665506378791
+ - 0.6428636677200871
+ - 1.1493326592038826
+ - 1.1529384664821525
+ - 0.8579909113652221
+ - 0.6315938034855851
+ - -0.585587401327886
+ - -1.6637619936184296
+ - -2.029285617915767
+ - -1.4987495598435867
+ - -0.3273353466161059
+ - 0.967509326833328
+ - 1.6934538508860881
+ - 1.4092972156427632
+ - 1.262626405060094
+ - 1.1059417206594873
+ - -1.5659958112269616
+ - -2.9785066440935677
+ - -1.9516199849922502
+ - -1.1854203585678202
+ - 0.09446683591625762
+ - 1.3361589711322273
+ - 1.9951277901446847
+ - 1.992624967285148
+ - 2.3333730221644666
+ - 1.2100249783943584
+ - -1.691726772799372
+ - -2.75997814792211
+ - -1.840615908503798
+ - -0.9128142643782532
+ - 0.3312607881870253
+ - 0.7564901775901199
+ - 0.9207935462997461
+ - 1.0467744451635483
+ - 0.9967160935141528
+ - -0.29819626755434836
+ - -1.480262409849171
+ - -2.029137884137184
+ - -1.6825337605536972
+ - -0.6148156786888879
+ - 0.6715404397141108
+ - 1.1605045868654795
+ - 1.1299210195547251
+ - 0.8273494898661042
+ - 0.5835245701777217
+ - -0.6119261276030609
+ - -1.6810837529221936
+ - -2.2001237042483943
+ - -2.7564139805930803
+ - -1.7438474033818725
+ - 1.3772387783123825
+ - 2.4398102459786246
+ - 2.027646202714459
+ - 1.5629541931470843
+ - 0.42305860541611257
+ - -0.907035653616252
+ - -1.8383235578421986
+ - -2.1638982268174036
+ - -4.352577560500787
+ - -3.0661720847330254
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.725475190315846
+ - 1.3017270259582738
+ - 1.4889387626648738
+ - 2.0193770187728983
+ - 1.6818233310103659
+ - 0.599850229040377
+ - -0.7328549331581056
+ - -1.8352879479402562
+ - -2.512337798900553
+ - -1.8654372288605874
+ - 0.3843385734386772
+ - 1.2332653160657858
+ - 1.6880836506805676
+ - 2.019503853305687
+ - 1.678967599053905
+ - 1.82796188448025
+ - 0.7057526897299868
+ - -1.6549404563678871
+ - -2.673732975583882
+ - -1.5518287682585201
+ - -0.406179281368318
+ - 0.9189163986345067
+ - 1.8414846828988465
+ - 1.9661790082738124
+ - 1.4328899111375257
+ - 1.486614324292507
+ - 0.4570974646387074
+ - -1.6677631587163266
+ - -2.565370579457514
+ - -1.3270445129492445
+ - -0.0892983154568336
+ - 1.19273852812268
+ - 1.7934792931069647
+ - 1.4874263660590532
+ - 0.3922990648845085
+ - -0.12874784578566598
+ - -1.093147647472942
+ - -1.9157805879360108
+ - -1.9161909724436508
+ - -1.0695154965570952
+ - 0.2313886005079232
+ - 1.4698315322779458
+ - 2.3276984112139973
+ - 1.6741646415558071
+ - 0.777684612200312
+ - 0.5967748262980377
+ - -1.7603268910365146
+ - -3.0655828553285978
+ - -1.7354367614260404
+ - -0.7106495288253444
+ - 0.6242997259366763
+ - 1.6869849436472
+ - 2.0172965736636703
+ - 1.674873934507897
+ - 1.8561238052736306
+ - 0.8148462750833835
+ - -1.7941770608326246
+ - -2.723431160018873
+ - -1.5493200825198432
+ - -0.40412859743928486
+ - 0.8896358220179174
+ - 1.413590097433299
+ - 1.25263112194968
+ - 0.6670362571127465
+ - 0.2969354156298175
+ - -0.8132996005324864
+ - -1.7893354253561427
+ - -1.9982160752224456
+ - -1.3243383837152598
+ - -0.08552618212553492
+ - 1.1963955269696198
+ - 1.7626585809032125
+ - 1.4111459499339345
+ - 0.4163956821926766
+ - -0.13421851860775566
+ - -1.0967689024772944
+ - -1.9174936207365858
+ - -2.1060972577843327
+ - -2.5404448554023977
+ - -1.4798510684882094
+ - 1.6712016850940796
+ - 2.705676163587237
+ - 1.9428656533976032
+ - 1.2120133786369292
+ - 1.9691347044843783
+ - 1.857877783494833
+ - 0.9485579705555102
+ - -0.28949481998421944
+ - -1.2643048377678148
+ - -1.1254107833649278
+ - -2.2135252624398825
+ - -2.8266287714182177
+ - -0.24878414394135376
+ - 1.057141682339708
+ - 1.9126637121594803
+ - 1.9250456409412313
+ - 1.1096637719351141
+ - -0.08739054406180556
+ - -0.4842097311889239
+ - -0.7923392291041422
+ - -1.2917381959911742
+ - -1.3155999600744426
+ - 0.07292060513786577
+ - 1.3174091719097443
+ - 2.1355252362036907
+ - 2.702747871998849
+ - 1.64344923164119
+ - -0.7945143442885393
+ - -1.9463174700485257
+ - -1.966199328825782
+ - -1.8526792429077483
+ - -0.9404901417151259
+ - 0.3900004239099832
+ - 1.5439826715402931
+ - 2.193569918403875
+ - 2.718371657805639
+ - 1.573552754680387
+ - -1.0177897483031733
+ - -2.2231652226028795
+ - -2.0219819953717835
+ - -1.700921591248478
+ - -0.8069179877978297
+ - -0.6690468260701542
+ - 0.04028411504785778
+ - 1.6610360190326028
+ - 2.1757857773314195
+ - 0.7502589172292984
+ - -0.5846202864902854
+ - -1.6727951321662637
+ - -2.024515903649085
+ - -1.503452414077351
+ - -0.47204163426532847
+ - -0.267255552125322
+ - 0.37732838785502276
+ - 1.9865713444362574
+ - 1.9333464095481314
+ - -0.6383032800095393
+ - -1.8625698031719433
+ - -1.867973935682049
+ - -1.9496373307671158
+ - -1.19164260569489
+ - 0.09525219864688461
+ - 1.3326548845923782
+ - 2.1375115486053224
+ - 2.752601818520578
+ - 1.777852985628741
+ - -0.931495017245992
+ - -2.003046923552737
+ - -1.969187591986016
+ - -1.8408383172003482
+ - -1.0949650659863002
+ - -1.034011798035213
+ - -0.14807950207222212
+ - 1.6278597766813145
+ - 2.352581267216956
+ - 1.0152372824089695
+ - -0.29438281214269024
+ - -1.48224650969988
+ - -2.018171810093602
+ - -1.6828224260024587
+ - -0.7791629791618275
+ - -0.6231121254377476
+ - 0.11721715325294076
+ - 1.5495812769693893
+ - 2.108317750438892
+ - 0.7256048466667566
+ - -0.6062337570215196
+ - -1.7507064239119368
+ - -2.4263323866131974
+ - -1.8372217325017843
+ - 0.2587016206309947
+ - 1.0631246072036191
+ - 1.6090102669398056
+ - 2.024717948828313
+ - 1.5696832863014218
+ - 0.419476459925702
+ - -0.9034571591544522
+ - -1.9387851484358147
+ - -4.324258092725686
+ - -3.1924152949231632
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.4566368001804941
+ - -1.7335177540136937
+ - 0.31117156668624546
+ - 1.493935175303067
+ - 2.037623490823662
+ - 1.6820623932418381
+ - 0.6056496743996163
+ - -0.6864305425131166
+ - -1.2198774751633643
+ - -1.2384572642416167
+ - -0.8631940389070852
+ - -0.5951062835716736
+ - 0.6256413475082571
+ - 1.6940291808924821
+ - 2.2079588640493495
+ - 2.694217916771856
+ - 1.5013506610092378
+ - -1.1691053560026765
+ - -2.398170091337584
+ - -2.0349104381391347
+ - -1.5610919085513353
+ - -0.4128369688787982
+ - 0.9211218413651995
+ - 1.8501887567544861
+ - 2.169543907163387
+ - 2.5910539434845554
+ - 1.363725040338819
+ - -1.3450490155418389
+ - -2.5744026932331754
+ - -2.0019404453100003
+ - -1.337524197620205
+ - -0.2177768887837945
+ - 0.0908858919490041
+ - 0.5328524653534155
+ - 1.409102760529652
+ - 1.6289604980216732
+ - 0.20782810956855094
+ - -1.095782452703013
+ - -1.9323312294607227
+ - -1.9169930645514184
+ - -1.0775367747113276
+ - 0.13309139408754286
+ - 0.579929070007475
+ - 0.8549299881945294
+ - 1.7902196873158713
+ - 1.6886665719432568
+ - -1.0730149234334638
+ - -2.4475580144406646
+ - -2.0170057210518357
+ - -1.7456071465175722
+ - -0.7210562548646657
+ - 0.6251041776424962
+ - 1.6935679151088099
+ - 2.206470883107372
+ - 2.7431567804993486
+ - 1.646298633169025
+ - -1.3092692641622774
+ - -2.4446593990002383
+ - -2.0347882189752324
+ - -1.5610045441944818
+ - -0.5593224422439014
+ - -0.34083337339039815
+ - 0.29430907726246375
+ - 1.4815738796537123
+ - 1.9232353313266848
+ - 0.5223717311837662
+ - -0.8131211028529534
+ - -1.8034558712705246
+ - -1.9993089700355788
+ - -1.3342507165254265
+ - -0.2139553147244181
+ - 0.09217684627080862
+ - 0.5520370384596125
+ - 1.3389207028737196
+ - 1.5927597588975175
+ - 0.20492803752795585
+ - -1.0970691382800255
+ - -2.047095809983138
+ - -2.7134578467887795
+ - -1.909651738498372
+ - 0.7468276248737913
+ - 1.70923120735598
+ - 1.8837741113134512
+ - 1.9529879777315202
+ - 1.2260221566185243
+ - 1.9726743403755993
+ - 1.866215581445856
+ - 1.1326017284896623
+ - 1.7619825623222625
+ - 1.063561122791435
+ - -3.2921049741629873
+ - -4.492499961500567
+ - -1.451786697446269
+ - -0.2462460423388147
+ - 1.0700660648816158
+ - 1.9170066729026451
+ - 1.9341040057471786
+ - 1.3027173264069212
+ - 1.3329246804905437
+ - 0.4550426087447089
+ - -1.8911429247134903
+ - -2.57315248517729
+ - -1.2074441059072636
+ - 0.07517336146022496
+ - 1.3475722566624957
+ - 1.9337700605528283
+ - 1.4877367576152396
+ - 0.29055856677474096
+ - -0.3492256670612014
+ - -1.2361202666711535
+ - -1.9764724350229643
+ - -1.868133515805706
+ - -0.9336523007832636
+ - 0.39605538640991994
+ - 1.6084221343728986
+ - 2.215444862632553
+ - 1.592517884160781
+ - 0.024594940169506856
+ - -0.7745188950515296
+ - -1.4778080320568487
+ - -2.0325687431498247
+ - -1.9135989940465215
+ - -2.2050427944752067
+ - -1.0935267596969789
+ - 1.7503959585723663
+ - 2.7868003293326966
+ - 1.7670546008930808
+ - 0.7503394949309689
+ - -0.5936053931560693
+ - -1.6788829447164157
+ - -2.035120640688204
+ - -1.7128911135837037
+ - -2.1193600864002784
+ - -0.8208918922803267
+ - 1.8561574543312132
+ - 1.9297002872776012
+ - 0.5678464407404527
+ - 0.06049788480455979
+ - -0.9783753458841216
+ - -1.875562406126179
+ - -1.968160154706366
+ - -1.1909549327094358
+ - 0.09314822662848486
+ - 1.3609690494249018
+ - 1.9860424270216905
+ - 1.5808116307323057
+ - 0.2330798582958012
+ - -0.37961668178619173
+ - -1.2488739357127803
+ - -1.9780512009448756
+ - -2.0537728527864054
+ - -2.3846235939423543
+ - -1.1567176920070958
+ - 1.5088146247290495
+ - 2.6983712804903197
+ - 1.8952569378040103
+ - 1.022496378609111
+ - -0.29419445255425497
+ - -1.4845023764844052
+ - -2.0286469334344317
+ - -1.898739085318143
+ - -2.1440386876058226
+ - -0.9494850905841103
+ - 1.605924498831944
+ - 2.7289619621276744
+ - 1.7547243253817115
+ - 0.7337416299027186
+ - -0.5446720412977887
+ - -1.0486382356920878
+ - -1.1385082784346197
+ - -0.9752168071143191
+ - -0.7767719602138644
+ - 0.49497607605179655
+ - 1.6147772669798983
+ - 2.043191259931307
+ - 1.5695744917107495
+ - 0.424253176176155
+ - -0.8766976148675064
+ - -2.4307641707592262
+ - -1.9421812223234118
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.0017826737998297
+ - -4.0118187787479895
+ - -1.006783439263465
+ - 0.30829677898120594
+ - 1.4956475554386457
+ - 2.025134323653636
+ - 1.6803922870722199
+ - 0.768045445904775
+ - 0.61383082446011
+ - -0.0637012417189769
+ - -1.7331506875413527
+ - -2.1655922764159605
+ - -0.7153928239018472
+ - 0.6206097719360288
+ - 1.7644850316610317
+ - 2.3743974317564653
+ - 1.636789706468248
+ - -0.1664351935039629
+ - -1.0642370687836562
+ - -1.6217331816787162
+ - -2.0303975318295153
+ - -1.5658490009156694
+ - -0.40779477839267164
+ - 0.9179063676110282
+ - 1.9511962161951006
+ - 2.555513454750439
+ - 1.6711706653686458
+ - -0.4283102515428669
+ - -1.448051924969411
+ - -1.7955989780517416
+ - -1.9989792805442057
+ - -1.535777239438234
+ - -1.6560555361158253
+ - -0.6591198269540643
+ - 1.8069875006156708
+ - 2.6726407134812518
+ - 1.4204022452670018
+ - 0.2095499956902483
+ - -1.0962830728302435
+ - -1.9211281158749929
+ - -1.9145068884602428
+ - -1.2656947742778466
+ - -1.427987581176255
+ - -0.34341202582943026
+ - 2.0157373881751863
+ - 2.038528537404897
+ - 0.08925757693770796
+ - -0.7485225363348137
+ - -1.4097044851211782
+ - -2.013279549094319
+ - -1.7517696408435948
+ - -0.7151300192395675
+ - 0.6221026852415746
+ - 1.7662626157774934
+ - 2.422575386458936
+ - 1.7537543240961224
+ - -0.2457107416043965
+ - -1.0870052515528563
+ - -1.624054126544525
+ - -2.032316359731225
+ - -1.765227543437958
+ - -1.949330771486411
+ - -0.7962141742697111
+ - 1.6447213660799485
+ - 2.7053886772162983
+ - 1.6310025940393025
+ - 0.5241541853715904
+ - -0.8128173045994737
+ - -1.794200854517071
+ - -1.9976484808685884
+ - -1.5334758271951299
+ - -1.6231418118000753
+ - -0.5526923353026048
+ - 1.673242837244133
+ - 2.6215972081230032
+ - 1.4195040014809446
+ - 0.20925826861906596
+ - -1.0851020835507552
+ - -1.6901713848074211
+ - -1.4983020770309785
+ - -0.5092402310568656
+ - -0.04354406135868724
+ - 0.9937209814535799
+ - 1.8795918982546473
+ - 1.9590750586825392
+ - 1.217736637663071
+ - 1.9631014187587907
+ - 2.058740034021688
+ - 4.018749029576202
+ - 2.78894409742845
+ - -2.921448578088268
+ - -4.181196320360498
+ - -2.017510146388056
+ - -1.444294227470554
+ - -0.2465806728504898
+ - 1.0634782919282417
+ - 1.9075982431348093
+ - 2.121759366521816
+ - 2.5667399433354245
+ - 1.5048571936411932
+ - -1.6579859254327047
+ - -2.698999506546392
+ - -1.9584873251822168
+ - -1.203327630420821
+ - -0.036683004480906944
+ - 0.31000392370373986
+ - 0.6754872645076904
+ - 1.2502019033571206
+ - 1.4058873624091308
+ - 0.040961481173681494
+ - -1.2288783859233074
+ - -1.974183738233555
+ - -1.8488452198833352
+ - -0.9294218946538331
+ - 0.31243594608375475
+ - 0.7341673613799966
+ - 0.9091712809227367
+ - 1.0587429452795512
+ - 1.0193469391186607
+ - -0.2805041529310808
+ - -1.468609159492601
+ - -2.1790843344142523
+ - -2.772381169615393
+ - -1.7478909614486013
+ - 1.0679914322175208
+ - 2.1702648860031624
+ - 2.0070609546865494
+ - 1.757714962250452
+ - 0.750088934794431
+ - -0.5919350386375862
+ - -1.6705567948940225
+ - -2.201400490904119
+ - -3.041388065224344
+ - -1.6600695456771133
+ - 0.906782676241344
+ - 1.07497583704134
+ - 1.5265756384382694
+ - 1.9616996690562025
+ - 0.3449515539204052
+ - -0.9741095045409087
+ - -1.8785933485738837
+ - -1.9551284281609986
+ - -1.1905444369914244
+ - -0.017756801935732053
+ - 0.3416432796951443
+ - 0.6860805739896765
+ - 1.297774209575344
+ - 1.415304296476755
+ - 0.02404406314182313
+ - -1.2432144600928636
+ - -2.10919362612285
+ - -2.6869134770661103
+ - -1.657727572892749
+ - 0.7240274538919538
+ - 1.8549468709517247
+ - 1.9416025004967725
+ - 1.8917157167795038
+ - 1.0265836224696177
+ - -0.29477526757762146
+ - -1.4806303981387012
+ - -2.183705445924892
+ - -2.7231751940955804
+ - -1.600100547388212
+ - 0.9541370004749737
+ - 2.147590780709578
+ - 2.0125228595038824
+ - 1.753465176449044
+ - 0.9046034187653776
+ - 0.7949947241928896
+ - 0.0640792985532226
+ - -1.782118029923144
+ - -2.2786899840265673
+ - -0.8401509782231588
+ - 0.49163423725514227
+ - 1.6167632424780287
+ - 2.0303130392303697
+ - 1.5681767934892183
+ - 0.5747061771721064
+ - 0.5395282640696647
+ - 0.16775829356564761
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.245491563250528
+ - -4.549525452042143
+ - -1.8835421794077494
+ - -1.00310459430009
+ - 0.3129369214223583
+ - 1.4943096822504103
+ - 2.025360999499416
+ - 1.8833069544609349
+ - 2.1724896501491093
+ - 1.1315760350678736
+ - -1.8518219376819927
+ - -2.794498633338914
+ - -1.7405478810626516
+ - -0.7136920114561769
+ - 0.5639542868822052
+ - 1.0342078203628056
+ - 1.0667470454451011
+ - 0.9019975909263654
+ - 0.7200421325075257
+ - -0.512779375694949
+ - -1.6227991977051497
+ - -2.0379402121818164
+ - -1.5533343098273988
+ - -0.40408258008847664
+ - 0.8940825741251461
+ - 1.4199548628755796
+ - 1.2573196668693696
+ - 0.6674410359084502
+ - 0.29510790611324184
+ - -0.8174109295500142
+ - -1.7959255638740503
+ - -2.1848334889934553
+ - -2.679749415848736
+ - -1.5603163813608503
+ - 1.4245715676830648
+ - 2.5595318064061416
+ - 2.014324400220517
+ - 1.4169938500407089
+ - 0.20683351302103717
+ - -1.098137647694641
+ - -1.9223045069157536
+ - -2.1113407363747947
+ - -2.809312680360309
+ - -1.3868625427937227
+ - 1.3720954528497398
+ - 1.5086874689418683
+ - 1.2062716099674085
+ - 1.2627889035027073
+ - -0.19905400802516166
+ - -1.4126023295367125
+ - -2.0222367592916264
+ - -1.7396032384711293
+ - -0.7108991826515787
+ - 0.5682148536227607
+ - 1.0608909982209247
+ - 1.105536851363329
+ - 0.9173830290401599
+ - 0.7306578488849019
+ - -0.5165319752080196
+ - -1.6258881501572964
+ - -2.2040638809269746
+ - -2.709130347963207
+ - -1.5375345731467298
+ - 1.0988102419486556
+ - 2.318199990184881
+ - 2.0309240054525644
+ - 1.6279062451895447
+ - 0.5219411028900837
+ - -0.8178413545507336
+ - -1.7971022922323419
+ - -2.185036017080474
+ - -2.629569929310574
+ - -1.4129794010001515
+ - 1.2852193823240503
+ - 2.515715598661795
+ - 2.0158035639221574
+ - 1.4178165963305613
+ - 0.3384066932683902
+ - 0.054770785818954386
+ - -0.44430711814620133
+ - -1.538683075744167
+ - -1.7672715098634761
+ - -0.3189277235155176
+ - 0.9974080796173761
+ - 1.8891160191413245
+ - 1.9481928289011872
+ - 1.214246185840105
+ - 2.0930885731606153
+ - 4.532067719373291
+ - 3.3034683102957723
+ - -1.295200831187774
+ - -2.0715926958690867
+ - -1.7113109183855855
+ - -2.013490838257266
+ - -1.4493296481353832
+ - -0.2428932651239121
+ - 1.0599712754962856
+ - 2.0225084225766814
+ - 2.6882474309175737
+ - 1.9006176524978478
+ - -0.7123867671382971
+ - -1.6621097657336978
+ - -1.8619305755777553
+ - -1.9562476334396874
+ - -1.3970099373279317
+ - -1.4376853751964485
+ - -0.42280575990915326
+ - 1.6659561804394505
+ - 2.5454099648464967
+ - 1.292902564095254
+ - 0.04339035888931261
+ - -1.2296666562618273
+ - -1.9626776096316272
+ - -1.8469665847462646
+ - -1.1104466905995403
+ - -1.0544859401778555
+ - -0.16158475742678582
+ - 1.6309937774037107
+ - 2.363812322416888
+ - 1.0305285790487286
+ - -0.275683521333566
+ - -1.5048485037521269
+ - -2.142793297406152
+ - -1.645891350774213
+ - -0.07020508589543462
+ - 0.6229875403079428
+ - 1.3815570978927996
+ - 2.002422668497901
+ - 1.7629513265334888
+ - 0.7434703832070916
+ - -0.5889109033179758
+ - -1.739270186972776
+ - -2.648589501519031
+ - -1.779606303112667
+ - -0.4274092170294134
+ - -0.23753419471347786
+ - 1.8224348121010627
+ - 3.0071606463342935
+ - 1.5119904543163063
+ - 0.34142844400715605
+ - -0.9807615939857361
+ - -1.8730702577351186
+ - -1.9541288081066468
+ - -1.3807357193210614
+ - -1.4401796651131575
+ - -0.4987699772756623
+ - 1.797481860636888
+ - 2.5903474838760476
+ - 1.2791300058523165
+ - 0.022543625218254086
+ - -1.2562184837637151
+ - -1.8306297139074852
+ - -1.4420912571667843
+ - -0.36786226240681763
+ - 0.2178714948612932
+ - 1.151759006179166
+ - 1.9413857207906984
+ - 1.8976255935287505
+ - 1.014869320773022
+ - -0.29837962723309813
+ - -1.5268482377632195
+ - -2.1265012570396964
+ - -1.5580027833419094
+ - -0.10460428274776357
+ - 0.6450350479529624
+ - 1.402356078039096
+ - 2.0122781210027956
+ - 1.9559035132420437
+ - 2.285524076515257
+ - 1.23201148010769
+ - -1.8170233992397786
+ - -2.7907409428502503
+ - -1.8057219945595677
+ - -0.8365713074270087
+ - 0.4967768215577285
+ - 1.6142333358025054
+ - 2.0302329036986535
+ - 1.7701526193893353
+ - 3.2600829728132004
+ - 2.1930735144142957
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.5579645563945057
+ - -3.810219016695761
+ - -2.326314071962237
+ - -2.205646437575917
+ - -1.1342077151859815
+ - 0.44161486246663845
+ - 1.8171112299115189
+ - 2.599182929308418
+ - 3.3098404070313325
+ - 2.1629220120636683
+ - -1.436191742080422
+ - -2.682244221590996
+ - -2.395785356466573
+ - -2.028639229791371
+ - -0.9783450698254464
+ - -0.8080154272645912
+ - 0.09648648995852428
+ - 1.856503443689244
+ - 2.5482251355100116
+ - 0.9094437474611886
+ - -0.6729075994259148
+ - -1.9714741205881776
+ - -2.402136674384746
+ - -1.797137526616364
+ - -0.5823487509421451
+ - -0.3028861744235182
+ - 0.40911278844070115
+ - 1.7230719461949278
+ - 2.202766067953771
+ - 0.5458345338678231
+ - -1.0286373329276435
+ - -2.2772087092000626
+ - -3.053614813373071
+ - -2.1273216030875375
+ - 0.5625418232319501
+ - 1.6678090966986603
+ - 2.094361022439467
+ - 2.3772674804578826
+ - 1.6370255014453574
+ - 0.17104251112308055
+ - -1.3587602165484576
+ - -2.4506549544682064
+ - -3.5540040187031843
+ - -2.168372543549334
+ - 0.22664547119952508
+ - 0.4528375036236046
+ - 2.125776894069903
+ - 3.1892405728524857
+ - 1.246160738373653
+ - -0.30427480217497394
+ - -1.7296292682622636
+ - -2.3943401895431933
+ - -2.025189726838335
+ - -0.9725111029416681
+ - -0.8138860862014633
+ - 0.034230579166486474
+ - 1.9756735301593722
+ - 2.5938968470165404
+ - 0.9051700369158858
+ - -0.6764147467618634
+ - -2.050053290951853
+ - -2.7721435378388617
+ - -1.9282997869923189
+ - 0.14662636125791903
+ - 1.1845768577798215
+ - 1.8839267957982493
+ - 2.406664672084537
+ - 1.8945154787259566
+ - 0.5434388620185137
+ - -1.0323311974286886
+ - -2.280215065025299
+ - -2.998611997602197
+ - -1.977028607391163
+ - 0.4582699817630608
+ - 1.6453079690969528
+ - 2.0981208939433027
+ - 2.379122067944519
+ - 1.867239422144137
+ - 2.0360444119215177
+ - 0.8946086005699708
+ - -2.2589458305152488
+ - -3.214264721894001
+ - -1.7266503572089447
+ - -0.3095379080627421
+ - 1.2464380488784685
+ - 2.2557409016697414
+ - 2.2884849308417556
+ - 1.554075626252521
+ - 3.7700369969048904
+ - 2.908695746740613
+ - 0.9522226576745424
+ - 0.9603827085503721
+ - -0.8511410287817721
+ - -2.0654688456009422
+ - -2.394598451150018
+ - -1.6660733475145808
+ - -0.2260459545442084
+ - 1.306573419996142
+ - 2.0267743507678913
+ - 1.7876630924681078
+ - 0.5822745810761506
+ - 0.019893215291789768
+ - -1.1969004330948352
+ - -2.235596673834005
+ - -2.5382538579186638
+ - -3.010262329702522
+ - -1.5542011320639342
+ - 1.6457745675165698
+ - 3.0918801750907163
+ - 2.341072507463132
+ - 1.4869432336882902
+ - -0.01115231033756232
+ - -1.5084935060667468
+ - -2.3473191682477657
+ - -2.408644935566505
+ - -2.7880788867521575
+ - -1.3392502390483672
+ - 1.8003770396237555
+ - 3.1989764999331363
+ - 2.2244823332906067
+ - 1.1720609153538821
+ - -0.28484108373891615
+ - -0.7839149952780277
+ - -1.0389675689553335
+ - -1.3522886463574517
+ - -1.3338426642005259
+ - 0.2540540092148066
+ - 1.6862267467517902
+ - 2.3974422770507426
+ - 2.0508119549470014
+ - 0.8247228842738927
+ - -0.6922662676088618
+ - -1.4101567323028903
+ - -1.386473044942477
+ - -1.8274873809377747
+ - -1.669337487350129
+ - 1.6183977864918193
+ - 3.3084375450118952
+ - 2.3977171828050685
+ - 1.7457576824667558
+ - 0.3391396744771711
+ - -1.2213202179263778
+ - -2.2463173172144244
+ - -2.529859878038395
+ - -3.0510859760736175
+ - -1.7066320641533845
+ - 1.8342389198859146
+ - 3.1640975354350847
+ - 2.3349991791744187
+ - 1.4648511091880976
+ - 0.09436471009452402
+ - -0.305197225151206
+ - -0.7657711503181585
+ - -1.5082894625162913
+ - -1.721111791074981
+ - -0.09544345435500866
+ - 1.4200925002237996
+ - 2.329656539551293
+ - 2.211896842719145
+ - 1.1439032251483787
+ - -0.3201826620767544
+ - -0.8101534472601555
+ - -1.045826547072811
+ - -1.2854842543814582
+ - -1.2671645531008138
+ - 0.2862160850870132
+ - 1.7092952110585669
+ - 2.5769364201887788
+ - 3.3112176150742445
+ - 2.2021415646968228
+ - -1.3158626578937598
+ - -2.5458301530614507
+ - -2.3733385837008973
+ - -2.1079447462010736
+ - -0.9333106996992508
+ - 0.6571839300788026
+ - 1.9545713460868281
+ - 2.611519102879871
+ - 5.403654734276101
+ - 3.8585114173879504
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -4.413702290107175
+ - -6.73588241807946
+ - -4.619439987468655
+ - -4.823541491755543
+ - -2.9502109755897576
+ - 0.2325344351300661
+ - 3.294190710337979
+ - 5.2866598606426125
+ - 6.860084511715749
+ - 4.6462642926507804
+ - -2.4613263231679743
+ - -4.973188094671148
+ - -4.870337553936163
+ - -4.554869903315436
+ - -2.7114670081388024
+ - -2.561635115921958
+ - -0.36883118176477325
+ - 4.027301473800011
+ - 5.8215107618957305
+ - 2.5140131809457764
+ - -0.7251414427387296
+ - -3.664432576277113
+ - -4.991992935315162
+ - -4.164424627021398
+ - -1.9305105026336078
+ - -1.545408391488686
+ - 0.2874199490531238
+ - 3.8340642379588488
+ - 5.217846579894712
+ - 1.7977804984878039
+ - -1.4966580326781571
+ - -4.328596793386601
+ - -5.946132938480334
+ - -4.3161891047408885
+ - 0.567699227237894
+ - 2.6263803723413894
+ - 3.97824388389804
+ - 5.008482345195036
+ - 3.884812586488854
+ - 1.0406578929254133
+ - -2.2320728696400995
+ - -4.794284999573264
+ - -7.095996468271082
+ - -4.514874610039288
+ - -0.2237242284422106
+ - 0.25182003221005106
+ - 4.513113014531377
+ - 7.080941114298824
+ - 3.1593463134372652
+ - 0.056905029650011804
+ - -3.0820938933016437
+ - -4.8673408882857965
+ - -4.548020425763105
+ - -2.6996193787944076
+ - -2.5911123816913326
+ - -0.5430181612047327
+ - 4.309916279955138
+ - 5.9271468866997274
+ - 2.505691926532908
+ - -0.7319644210926667
+ - -3.762365647126593
+ - -5.241360946910253
+ - -3.842552887310818
+ - -0.2644293722795822
+ - 1.5818207971936284
+ - 3.4543820869445816
+ - 4.960789626304349
+ - 4.335674742028755
+ - 1.7921673177850843
+ - -1.5050216312287399
+ - -4.335831819866481
+ - -5.840112577660267
+ - -4.032287690014906
+ - 0.39177960756109176
+ - 2.596210671724778
+ - 3.986596939709593
+ - 5.012549343738761
+ - 4.373033425295138
+ - 4.946500056783385
+ - 2.4389300821143642
+ - -4.650235972217004
+ - -6.856137500022122
+ - -4.0403755009630125
+ - -1.3221386022909953
+ - 1.9762914114523866
+ - 4.4102603356964405
+ - 4.931875909180569
+ - 3.805464864127083
+ - 6.685045710514545
+ - 5.238275159462163
+ - 3.0621305551762807
+ - 3.5221973617053446
+ - -1.1106960518040485
+ - -3.9080833106981063
+ - -5.032521328884885
+ - -3.935384553381056
+ - -1.153490050391743
+ - 2.047687853082636
+ - 3.4309819520855904
+ - 3.2929119087369054
+ - 1.8273302028783396
+ - 0.9908430880932622
+ - -1.8705965184293563
+ - -4.3564469438800195
+ - -5.413376657201809
+ - -6.544246024391207
+ - -3.559900536202462
+ - 3.0790592789529327
+ - 6.115835096827574
+ - 4.990340252873574
+ - 3.6105553688521934
+ - 0.6698040539230323
+ - -2.575242493194697
+ - -4.691526031690199
+ - -5.258965040915031
+ - -6.218295873506175
+ - -3.182486114284072
+ - 3.476838379521186
+ - 6.480599321612871
+ - 4.854044061646462
+ - 3.021632713819099
+ - 0.1567070324198502
+ - -0.7017507906612752
+ - -1.606963232426496
+ - -3.266162751381892
+ - -3.6140205658647577
+ - -0.16208172437495003
+ - 2.9872187380361743
+ - 4.861689702151841
+ - 4.592195937258876
+ - 2.3500511704395763
+ - -0.7064433049962976
+ - -1.9460094740272205
+ - -2.3807156339114632
+ - -4.225397722832755
+ - -3.9464017654808248
+ - 2.9234271912674656
+ - 6.3835007630575324
+ - 5.004624449767551
+ - 4.074332199993058
+ - 1.385069928547763
+ - -1.9239814877208952
+ - -4.383857297376101
+ - -5.402081102687616
+ - -6.6426333079494855
+ - -3.889488889020716
+ - 3.4652419682974793
+ - 6.266911804349607
+ - 4.983299882961594
+ - 3.568364515579562
+ - 0.9428147553380363
+ - 0.2916195066806564
+ - -1.054605550923037
+ - -3.478805628070227
+ - -4.331134652504475
+ - -0.8862363959645908
+ - 2.371196767614877
+ - 4.619628291229972
+ - 4.832151977818418
+ - 2.9656619184093986
+ - 0.08277806406150622
+ - -0.7751319942942867
+ - -1.6735536666573587
+ - -3.0833448619081505
+ - -3.4635115095375117
+ - -0.09524508699932198
+ - 3.0380273290318502
+ - 5.191120336238511
+ - 6.799375007620605
+ - 4.685211528815389
+ - -2.18688191534284
+ - -4.6418246484803936
+ - -4.77851602657182
+ - -4.679092983004069
+ - -2.5632894467932696
+ - 0.6915573971198266
+ - 3.62747967542207
+ - 5.380963248768036
+ - 11.362339281376148
+ - 8.18976141976658
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.705855326358585
+ - -4.196940780027288
+ - -3.0849502142579404
+ - -3.3823474137957703
+ - -2.22361329141744
+ - -0.07866167056983313
+ - 2.085884239033092
+ - 3.5760511189243855
+ - 4.68571932699111
+ - 3.230398745634483
+ - -1.5019218747238763
+ - -3.193019028758627
+ - -3.293510657344616
+ - -3.2329913417331158
+ - -2.089864151279875
+ - -2.0582023262349924
+ - -0.4497801135125138
+ - 2.8132312468221765
+ - 4.16415280411015
+ - 1.935986752579837
+ - -0.26240835510610644
+ - -2.356272534287379
+ - -3.414342695854942
+ - -2.9973880849263765
+ - -1.5702820201014587
+ - -1.3747637231318146
+ - 0.001350472091776343
+ - 2.710223395007141
+ - 3.7909038079672666
+ - 1.4597781019168332
+ - -0.8012884029477111
+ - -2.8205282243740686
+ - -3.928269616866221
+ - -2.9157970677342098
+ - 0.1796713031026327
+ - 1.5050909185376864
+ - 2.5911789970629204
+ - 3.4492708267401295
+ - 2.824572424196348
+ - 0.9494795064040155
+ - -1.321413263855864
+ - -3.1755515464690567
+ - -4.752887954599247
+ - -3.0910214350771303
+ - -0.39402898538873954
+ - -0.06687133147159213
+ - 3.119914371940902
+ - 5.000339961717623
+ - 2.358495916227162
+ - 0.2780246875499551
+ - -1.9303065244206814
+ - -3.291462545367712
+ - -3.2284167882560006
+ - -2.081857800261224
+ - -2.0843593866164185
+ - -0.5844629296476512
+ - 3.01865911664898
+ - 4.240125003063328
+ - 1.9304909430385404
+ - -0.26691361090311305
+ - -2.4005782695493614
+ - -3.4046585440164883
+ - -2.5710171934316755
+ - -0.37830237858686094
+ - 0.7766588928332845
+ - 2.2028521820298157
+ - 3.3789105498011582
+ - 3.103722540982567
+ - 1.455719450261996
+ - -0.807247338475689
+ - -2.82581980085806
+ - -3.8586292326138385
+ - -2.7314812986257873
+ - 0.07349324842864917
+ - 1.4902117400454162
+ - 2.597079861530996
+ - 3.4521266956468732
+ - 3.161899146306763
+ - 3.6313745119538607
+ - 1.8692810954606298
+ - -3.1652658135141545
+ - -4.750555628432365
+ - -2.92032532464204
+ - -1.139804947325239
+ - 1.1387110577586212
+ - 2.9201899774042928
+ - 3.434306408830482
+ - 2.8025769333277775
+ - 5.036172516975479
+ - 3.340534063544049
+ - 2.4701883868995624
+ - 2.9385770232560207
+ - -0.5313728826850802
+ - -2.5396818999014266
+ - -3.4615576020465495
+ - -2.85576390316868
+ - -1.0261414821468011
+ - 1.1689586955929159
+ - 2.075746157413175
+ - 2.1057968302726637
+ - 1.4639695708650606
+ - 1.0070955625806086
+ - -1.0654664173193202
+ - -2.8792387767776657
+ - -3.750605666904967
+ - -4.5761034876057884
+ - -2.5493397386725625
+ - 1.9876327509910667
+ - 4.075624574662399
+ - 3.4566620883641623
+ - 2.6500473906280977
+ - 0.6985256890334898
+ - -1.5672301865961853
+ - -3.1441187449878627
+ - -3.684866094791386
+ - -4.400270021960276
+ - -2.315237958500384
+ - 2.2862350929801796
+ - 4.3744416814682765
+ - 3.4002113560117215
+ - 2.2699505927343475
+ - 0.36689779422167146
+ - -0.15826620398957134
+ - -0.9075523624142016
+ - -2.392097692267577
+ - -2.763995667706362
+ - -0.35024293034913695
+ - 1.8637931099678062
+ - 3.2833999609569395
+ - 3.255484298896116
+ - 1.828041484004845
+ - -0.22917644892220648
+ - -0.9894634259719042
+ - -1.4546661353772887
+ - -3.038363842769421
+ - -2.864769245720445
+ - 1.84693199496756
+ - 4.195431455622806
+ - 3.4305520617201686
+ - 2.9415557466783144
+ - 1.1833381613481129
+ - -1.1028941949479845
+ - -2.8997660624197787
+ - -3.7450144605473477
+ - -4.648101519787497
+ - -2.7792114525190574
+ - 2.2498693888350436
+ - 4.1793026418576265
+ - 3.4537845754524765
+ - 2.6224803982602514
+ - 0.9038948403816598
+ - 0.5206513599827327
+ - -0.5350962980676467
+ - -2.498840767729077
+ - -3.2240551028911426
+ - -0.8447919574051472
+ - 1.4206156251062452
+ - 3.0827348322555483
+ - 3.386718733557906
+ - 2.23255087948069
+ - 0.3161651413736132
+ - -0.2149968814249969
+ - -0.9712538184354892
+ - -2.25179707145566
+ - -2.656908592644156
+ - -0.3045293897293931
+ - 1.8995400746514555
+ - 3.4936003572273453
+ - 4.62214285856044
+ - 3.2422728147821855
+ - -1.3057537603570286
+ - -2.9497703063688543
+ - -3.2150368451614617
+ - -3.3038745980339805
+ - -1.9695783729790648
+ - 0.2391230076117289
+ - 2.3303645825668484
+ - 3.664372896292841
+ - 7.8174816713542805
+ - 5.660896811664779
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 5.676763041937224
+ - 7.833817359255776
+ - 2.830013468888896
+ - 0.9736674519147832
+ - -1.3093841402801134
+ - -3.019964073489264
+ - -3.420750188893844
+ - -2.678919642098583
+ - -2.9183493712650983
+ - -1.2778368023262685
+ - 3.251939505997958
+ - 4.6231796362063005
+ - 2.479366462348972
+ - 0.43925344317882503
+ - -1.7716088883088346
+ - -2.7046775492695927
+ - -2.276597724986164
+ - -0.9455165640638934
+ - -0.16639311118650735
+ - 1.6218165475967128
+ - 3.1729546032573492
+ - 3.3630426379934675
+ - 2.066968504756111
+ - -0.10920298528584972
+ - -2.2740998753410677
+ - -3.268417825212202
+ - -2.520298787822065
+ - -0.5068588509255442
+ - 0.5710549859118014
+ - 2.086495109335758
+ - 3.354766996571061
+ - 3.5151501795801545
+ - 4.167625436372094
+ - 2.233877573321543
+ - -2.800918424744286
+ - -4.669811469202446
+ - -3.2436498516755323
+ - -1.7829190848782244
+ - 0.4516525708444162
+ - 2.492792454834077
+ - 3.448610686306806
+ - 3.2589222423565074
+ - 4.174468843225682
+ - 1.8323876325728412
+ - -2.871669919474678
+ - -3.045172339698087
+ - -1.4614709540850275
+ - -0.9980492312984479
+ - 1.1224368684502595
+ - 2.917300071901327
+ - 3.462203856761357
+ - 2.4780978344894247
+ - 0.43505622805779215
+ - -1.7776952116181803
+ - -2.7661934251413327
+ - -2.3956732816045982
+ - -0.9133563353025914
+ - -0.16437535318479754
+ - 1.6276545051814355
+ - 3.1777650166199933
+ - 3.6825004783748976
+ - 4.387120888986923
+ - 2.2939479316923643
+ - -2.318955866815687
+ - -4.4093892733123266
+ - -3.39602861890882
+ - -2.2273442237927954
+ - -0.09447119026471867
+ - 2.086111329985603
+ - 3.3552960293423992
+ - 3.5139290611624214
+ - 4.088379954210946
+ - 1.995019296486985
+ - -2.55410612275127
+ - -4.586523884450035
+ - -3.2448046161518005
+ - -1.7836955303221451
+ - 0.2913245489571987
+ - 1.0039548306021775
+ - 1.464083248544084
+ - 2.113995067546641
+ - 2.0860652172631946
+ - -0.2562854475082855
+ - -2.3492216604318927
+ - -3.4381065755747815
+ - -3.0101578093509804
+ - -1.2908171399644293
+ - 0.8814707333679002
+ - 2.937043934641041
+ - 2.4701246425438486
+ - 3.354279025781605
+ - 5.054469147790805
+ - 3.2679126805972514
+ - 3.2577706055515385
+ - 1.843977146223682
+ - -0.3889212801422926
+ - -2.4397880670960195
+ - -3.696259128207151
+ - -4.752837932591359
+ - -3.1645538572538676
+ - 1.877224380232687
+ - 3.6411314963954378
+ - 3.4060692769081515
+ - 3.0388637832143948
+ - 1.650436377005233
+ - 1.4788030450608336
+ - 0.06575278604358424
+ - -2.7303404797563333
+ - -3.8531015463388285
+ - -1.5318737927179535
+ - 0.7257971893030886
+ - 2.6795153742760496
+ - 3.4541549639822895
+ - 2.7385322890895787
+ - 1.096091690696037
+ - 0.7644873512813247
+ - -0.3861465460195819
+ - -2.5686602720651006
+ - -3.397376832955152
+ - -1.023171954697648
+ - 1.2489050441553802
+ - 3.1294960099545373
+ - 4.247396165026284
+ - 3.0213801874501742
+ - -0.5929218375823331
+ - -2.0967126044677533
+ - -2.877209593946787
+ - -3.4428795344766967
+ - -2.5273775272105943
+ - -0.49205158304488084
+ - 1.7413369048068659
+ - 3.4166521510700574
+ - 5.006499336713157
+ - 3.121653021399786
+ - -0.07500311820447503
+ - -0.40242725348668484
+ - -3.0872058759489165
+ - -4.742086997305802
+ - -1.9791086584329247
+ - 0.2176876121580704
+ - 2.3291990570923446
+ - 3.416923357981489
+ - 3.0283203291958913
+ - 1.6195174940387154
+ - 1.4617105972499622
+ - 0.14754359983565832
+ - -2.913596305871462
+ - -3.911393633023934
+ - -1.5051373617251484
+ - 0.7591394731533142
+ - 2.7957366562351695
+ - 3.829789967631195
+ - 2.727031327686636
+ - -0.02891279939389247
+ - -1.425639350886274
+ - -2.5681855125181534
+ - -3.4564384862303403
+ - -2.8589227354894615
+ - -0.9959141013560125
+ - 1.2829412253533856
+ - 3.158042131855112
+ - 4.197333749910891
+ - 2.8256401500032875
+ - -0.4809272247068575
+ - -2.1080798357406003
+ - -2.9048873065892873
+ - -3.4516748061316034
+ - -2.849748002953618
+ - -3.164459036668209
+ - -1.475546953319304
+ - 3.242340138972862
+ - 4.690249630093387
+ - 2.6340958187618724
+ - 0.6638627845974214
+ - -1.6000369788410844
+ - -3.1629237770670424
+ - -3.355532812072574
+ - -2.4249709014811924
+ - -4.1382934934793525
+ - -2.660523119616967
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 8.217006624368254
+ - 11.391747266490883
+ - 4.293073665296835
+ - 1.7399892886602057
+ - -1.572674282657633
+ - -4.199345011910387
+ - -5.00306413927741
+ - -4.138166915381649
+ - -4.597527003349249
+ - -2.1466273285042075
+ - 4.701670022914645
+ - 6.804055478350207
+ - 3.8280835802947473
+ - 0.9783731913921069
+ - -2.231928054242732
+ - -3.5357274331376645
+ - -3.121432866608091
+ - -1.6362834717382941
+ - -0.7036444090490613
+ - 2.040629294785838
+ - 4.451174409980065
+ - 4.953282315254734
+ - 3.267106894000973
+ - 0.18741801688067017
+ - -2.991004755912546
+ - -4.3987171267367895
+ - -3.5121356079690225
+ - -1.0133529907938759
+ - 0.3662615279471107
+ - 2.742101506225197
+ - 4.765578380868729
+ - 5.2178396453779685
+ - 6.25255186240435
+ - 3.443207054430355
+ - -3.9233770182722996
+ - -6.677800451709975
+ - -4.81352578859625
+ - -2.875246586150998
+ - 0.3093576550501049
+ - 3.3660823094295838
+ - 4.955274437136652
+ - 4.901014246433846
+ - 6.35551353247141
+ - 2.903592212814368
+ - -3.956969193864502
+ - -4.235806515105943
+ - -2.390001024549719
+ - -1.9572757803463867
+ - 1.2968852628358691
+ - 4.033696544381431
+ - 5.043203889964061
+ - 3.826084721195299
+ - 0.9720062715431608
+ - -2.241315629665121
+ - -3.6184826559771857
+ - -3.2721036141863573
+ - -1.6147426590364742
+ - -0.709439971892582
+ - 2.049386280064021
+ - 4.458388846268356
+ - 5.403461540448273
+ - 6.499092522181737
+ - 3.4878530914050487
+ - -3.1885556503919155
+ - -6.23238234911012
+ - -4.98186682032509
+ - -3.4865727081784033
+ - -0.4832808982051487
+ - 2.742025176494196
+ - 4.766992212295919
+ - 5.216738137272702
+ - 6.134235710611568
+ - 3.089481521905786
+ - -3.567419352554476
+ - -6.5600591867752716
+ - -4.815803156288198
+ - -2.876651625960828
+ - 0.0477261458270536
+ - 0.9875719590227963
+ - 1.8283885437772611
+ - 3.3044166322330177
+ - 3.445102753947188
+ - -0.02626911035659393
+ - -3.1444570379255468
+ - -4.919939697565387
+ - -4.525435227294774
+ - -2.1878171717758934
+ - 0.9107919095144622
+ - 3.522133932886552
+ - 3.063598962723869
+ - 5.257421234858295
+ - 6.710367952597389
+ - 4.613968177309742
+ - 4.827368671072519
+ - 2.9617218512266783
+ - -0.21840894671116026
+ - -3.2835365013459676
+ - -5.283095181276618
+ - -6.858148735941334
+ - -4.648315056912305
+ - 2.45001176120274
+ - 4.9597403777068925
+ - 4.866997065833408
+ - 4.5607964529330545
+ - 2.724774464414619
+ - 2.5791323151657055
+ - 0.3804534266096434
+ - -4.0298611241543165
+ - -5.830964739303208
+ - -2.526257516313108
+ - 0.7111450492877414
+ - 3.6547076393335387
+ - 4.990853140751545
+ - 4.172301292869357
+ - 1.9448585756312256
+ - 1.563826845446657
+ - -0.27578127258975044
+ - -3.8383947315585036
+ - -5.2297775332576295
+ - -1.8109966858777011
+ - 1.4831475715891447
+ - 4.319318074630433
+ - 5.936586932571389
+ - 4.3130504653849995
+ - -0.5552105682184539
+ - -2.608575308094159
+ - -3.9696494815849377
+ - -5.008739276924988
+ - -3.893842156672476
+ - -1.0544948129151046
+ - 2.2194067377028133
+ - 4.78699659494961
+ - 7.088551308463623
+ - 4.51476482559581
+ - 0.2397171886435622
+ - -0.23620885074706
+ - -4.511205522003993
+ - -7.083320556829899
+ - -3.1465117895482853
+ - -0.029921475451425154
+ - 3.1116235499979856
+ - 4.8863635052966465
+ - 4.5484304174523995
+ - 2.6810563055553147
+ - 2.5634711657681355
+ - 0.5204706399962482
+ - -4.314934192467525
+ - -5.923939599233968
+ - -2.488674973868845
+ - 0.7607303331219581
+ - 3.793393623310256
+ - 5.277744104673423
+ - 3.860684913498279
+ - 0.24281762221359326
+ - -1.6213286073875401
+ - -3.483001526900179
+ - -4.977423302178585
+ - -4.333107987878986
+ - -1.7714844167903236
+ - 1.5348144067954819
+ - 4.364845504289716
+ - 5.873254283705074
+ - 4.047508932793888
+ - -0.41504382028321846
+ - -2.6365503806572206
+ - -4.0133970354860145
+ - -5.025044336089134
+ - -4.366871578210791
+ - -4.933272905104056
+ - -2.4234782292344508
+ - 4.66606723065778
+ - 6.869957252404462
+ - 4.034805110281604
+ - 1.2993926047106843
+ - -2.0064739076316167
+ - -4.434558622918424
+ - -4.939883488385041
+ - -3.7943018777252617
+ - -6.65230792750795
+ - -4.348735260113495
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.7700441503573336
+ - 3.995180128001564
+ - 2.0281755077538155
+ - 1.5631158388036992
+ - 0.4227837010025758
+ - -0.9076268631060833
+ - -1.8389724418338103
+ - -2.16439373679334
+ - -2.65239223513049
+ - -1.6008349838355866
+ - 1.5688824334962423
+ - 2.624796610697091
+ - 1.9971429027617176
+ - 1.3416283145187546
+ - 0.229511098071131
+ - -0.0717812625252029
+ - -0.5386311633492199
+ - -1.34220013713683
+ - -1.6041348233363617
+ - -0.2186145498396058
+ - 1.0822517958436983
+ - 1.9218774616295873
+ - 1.9142439035372576
+ - 1.0836282683444016
+ - -0.1201035121954618
+ - -0.5014888602891185
+ - -0.7824352417219205
+ - -1.1677002403518542
+ - -1.2361814719141222
+ - 0.10309742374166514
+ - 1.3395703275956536
+ - 2.142156994780407
+ - 2.7575836619526255
+ - 1.7801572329478867
+ - -0.9359812463149615
+ - -2.0099634600841974
+ - -1.9724156963448722
+ - -1.8391392949150702
+ - -0.9129513498027836
+ - 0.4194042482301732
+ - 1.5626022027760125
+ - 2.1950240825359737
+ - 3.067147104907162
+ - 1.720922175702695
+ - -0.744039437309645
+ - -0.9198426641397648
+ - -1.6166160289572162
+ - -2.1739120364463123
+ - -0.5310732933817282
+ - 0.8014462117910128
+ - 1.7938314180055313
+ - 1.9959855560687165
+ - 1.3386204326061373
+ - 0.22463937116194727
+ - -0.08111066751792102
+ - -0.5253609199215223
+ - -1.4088113846275248
+ - -1.6318334718981922
+ - -0.2147560193102204
+ - 1.085422893196363
+ - 2.0375076716127616
+ - 2.630466663491679
+ - 1.6702513289692822
+ - -0.5784209456166883
+ - -1.6575815000846124
+ - -1.8749113935542925
+ - -1.9507922173155072
+ - -1.186463372569602
+ - 0.10449021384386002
+ - 1.3419541579646919
+ - 2.143749211889944
+ - 2.707033114152792
+ - 1.6373321707142479
+ - -0.819820337479563
+ - -1.9785718776632857
+ - -1.9749732260061765
+ - -1.8404453244517263
+ - -1.0884590980614721
+ - -1.042396456193831
+ - -0.24268284140583932
+ - 1.8359723400365238
+ - 2.4183457835483786
+ - 1.0092645961337032
+ - -0.3039031164304445
+ - -1.491225817557297
+ - -2.0226385783728635
+ - -1.6808840240582017
+ - -0.771398963471197
+ - -0.9663980681775897
+ - -0.479080207701877
+ - 3.1205173449313515
+ - 4.202661039604133
+ - 1.2119900393428773
+ - 1.9575959328426078
+ - 1.8626634519552527
+ - 0.9440432382318891
+ - -0.37437832297567514
+ - -1.582594202923085
+ - -2.248473603699563
+ - -1.7669102947711741
+ - 0.036607247646257064
+ - 0.7541974578189559
+ - 1.453977732400991
+ - 2.016275337566452
+ - 1.9103826608751568
+ - 2.1649013251500415
+ - 0.9708641365862758
+ - -1.5881414971282641
+ - -2.7149398996162115
+ - -1.7640084571333972
+ - -0.7628298795688973
+ - 0.5708979350803575
+ - 1.6559687405220556
+ - 2.0218514687822386
+ - 1.7138865547336772
+ - 1.877727783419933
+ - 0.7433816834374565
+ - -1.6493062838875716
+ - -2.684957031264864
+ - -1.5851356326623989
+ - -0.45882345791867446
+ - 0.8341464091110726
+ - 1.3767722008026593
+ - 1.2757526088987101
+ - 0.7078839333147567
+ - 0.37998265437416623
+ - -0.7620834214880616
+ - -1.7630365943757398
+ - -2.0082686511475623
+ - -1.366394662504184
+ - -0.14128928590504417
+ - 1.1454703244567914
+ - 1.9221778630372457
+ - 1.5108424644923149
+ - 1.1095160084334077
+ - 0.9432108176383903
+ - -1.6464023094413207
+ - -3.0354136867988615
+ - -1.8930276488105917
+ - -1.0291550452268898
+ - 0.2814617594789773
+ - 1.4713004235697096
+ - 2.0206578331001306
+ - 1.8987037750493654
+ - 2.18643868620152
+ - 1.081942262147477
+ - -1.742764960967842
+ - -2.7716780217132566
+ - -1.7546387510398047
+ - -0.7422071824091095
+ - 0.5303897680639096
+ - 0.9940914710136421
+ - 1.0455700266529262
+ - 0.9226663541147648
+ - 0.7597072232145085
+ - -0.4818259139892753
+ - -1.602016546094895
+ - -2.036317436718069
+ - -1.571647844792542
+ - -0.4343193369034396
+ - 0.8619170146129932
+ - 1.3823911409648162
+ - 1.2387735050437083
+ - 0.6903228363386645
+ - 0.33652937841016645
+ - -0.7877131542862078
+ - -1.7790923165014734
+ - -2.1866527833726024
+ - -2.705044415905407
+ - -1.6666017496375285
+ - 1.4927659121034036
+ - 2.5549137707296805
+ - 2.015890392388506
+ - 1.437741058935839
+ - 0.2378960940584892
+ - -1.0704590140215478
+ - -1.909886537006924
+ - -2.1185333304926783
+ - -4.198483848350786
+ - -2.9359719325792426
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.02111255546138
+ - 1.702445220230213
+ - 1.6091737750745962
+ - 2.0244436236736374
+ - 1.569091957100493
+ - 0.41882591071829284
+ - -0.9038839048595806
+ - -1.9388463926569206
+ - -2.612793166368692
+ - -1.8909899029935133
+ - 0.5544518582461747
+ - 1.4585608590631787
+ - 1.7841810425017164
+ - 1.9950906848013057
+ - 1.540808111462341
+ - 1.6347458337001073
+ - 0.5631814067301056
+ - -1.667232252826193
+ - -2.6185089702699194
+ - -1.424993225097377
+ - -0.22138242817066187
+ - 1.082281576486648
+ - 1.9111393226272317
+ - 1.9127982395935068
+ - 1.2729399850033218
+ - 1.2705243989157553
+ - 0.30707184710044205
+ - -1.6555506450118103
+ - -2.4720812061714073
+ - -1.1799921547883476
+ - 0.09789575494958373
+ - 1.3578978852208046
+ - 1.9801549508121528
+ - 1.5748165905524691
+ - 0.22835577557929046
+ - -0.3832243931131038
+ - -1.2457308082762348
+ - -1.9679787977482324
+ - -1.8451244810931395
+ - -0.9062580053271858
+ - 0.41603439820038973
+ - 1.6141836206073337
+ - 2.5018822655393693
+ - 1.7349111002763316
+ - 0.600557889225158
+ - 0.41443521927187416
+ - -1.7985391095706016
+ - -3.0467925833703178
+ - -1.631727309598019
+ - -0.5326202072093857
+ - 0.8002307862324074
+ - 1.7830382178541262
+ - 1.9927045146927815
+ - 1.5364806151571249
+ - 1.6588433180049593
+ - 0.6630797749124049
+ - -1.801341891659216
+ - -2.666899628117773
+ - -1.4222265504747778
+ - -0.21911689147853466
+ - 1.0713256012956853
+ - 1.621523169822005
+ - 1.348989674412259
+ - 0.5230621659739828
+ - 0.04657511217561388
+ - -0.9810274471089098
+ - -1.8690921873389912
+ - -1.9552978744603553
+ - -1.177374663758593
+ - 0.10160435176056855
+ - 1.3613984021956198
+ - 1.9457053953961863
+ - 1.4871983523636394
+ - 0.2654862783652593
+ - -0.3839657207062013
+ - -1.2493282519582147
+ - -1.969693841413557
+ - -2.039300803811157
+ - -2.4238774209180027
+ - -1.3634512323076307
+ - 1.747553161975157
+ - 2.7555688203577096
+ - 1.8819334376356107
+ - 1.0093255685171374
+ - -0.30153723843601316
+ - -1.482754562009871
+ - -2.0186207775835503
+ - -1.883700868429196
+ - -3.550291180272898
+ - -2.4187087778886927
+ - 3.1496868231494894
+ - 4.4457969156978585
+ - 1.942688269095789
+ - 1.2113702195092013
+ - 1.9683048775963854
+ - 1.857225449421546
+ - 0.9483620380296829
+ - -0.28916228865416754
+ - -0.7346993566295182
+ - -0.9478042594265879
+ - -1.1570802926345893
+ - -1.083076241424852
+ - 0.2590351661783737
+ - 1.4532945267344475
+ - 2.1751229576306805
+ - 2.71921414799847
+ - 1.6074922451556242
+ - -0.9259780957386855
+ - -2.1119635894932474
+ - -2.0033360601898056
+ - -1.7680221914962917
+ - -0.7700412734695732
+ - 0.571130583271715
+ - 1.6578451181532923
+ - 2.201193345947777
+ - 2.6950625005692452
+ - 1.5143535608801268
+ - -1.134957008007684
+ - -2.357006163228273
+ - -2.0297158563118236
+ - -1.5910657794606267
+ - -0.6148653554717054
+ - -0.41865539822195136
+ - 0.20596665917177934
+ - 1.5883230694294352
+ - 2.0077285736258976
+ - 0.5734864043706143
+ - -0.7604403173345018
+ - -1.7719079618827813
+ - -2.00289368381203
+ - -1.371192014018577
+ - -0.27221606096583634
+ - 0.015326945841931066
+ - 0.5404242158583881
+ - 1.9345862296774698
+ - 1.8645830991060395
+ - -0.7932128226881224
+ - -2.0792637135981025
+ - -1.9321452659000045
+ - -1.8906716075786385
+ - -1.0344642112721774
+ - 0.28142845996420807
+ - 1.4675915316187471
+ - 2.175356518634483
+ - 2.7669270918215916
+ - 1.7431696090951798
+ - -1.0697666492919673
+ - -2.170541291462227
+ - -2.004778169759542
+ - -1.7546267630744579
+ - -0.9143832218246234
+ - -0.7978615149405505
+ - 0.005906133356248823
+ - 1.587057367859773
+ - 2.2172806073311784
+ - 0.8491280672262835
+ - -0.4779431677831963
+ - -1.6042365754316334
+ - -2.02449574883612
+ - -1.5715242983391002
+ - -0.5862048148258078
+ - -0.37658826218426217
+ - 0.2702502072706472
+ - 1.4857310892069713
+ - 1.941256301313297
+ - 0.5479002767742839
+ - -0.7820180713668704
+ - -1.865724247721173
+ - -2.542433974356793
+ - -1.8743583319787944
+ - 0.431310497159502
+ - 1.2962163737657935
+ - 1.7155465490387527
+ - 2.0125669030257978
+ - 1.4436200750183887
+ - 0.23491182835019528
+ - -1.0667790331072635
+ - -2.025843243747649
+ - -4.448343691070659
+ - -3.2622671490243573
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.174175262571439
+ - -1.332357853800225
+ - 0.49470264412966514
+ - 1.6141852316751557
+ - 2.0425372171480087
+ - 1.5691443854145375
+ - 0.4242335129915681
+ - -0.8762979129795123
+ - -1.4461493095715638
+ - -1.3665372178909
+ - -0.7025650242572726
+ - -0.34072465525629236
+ - 0.8009684745703051
+ - 1.7902804899590552
+ - 2.1920017824701565
+ - 2.6419958225778033
+ - 1.4258351338665378
+ - -1.27428221781833
+ - -2.5069527450737605
+ - -2.0208636258845676
+ - -1.4339637991220364
+ - -0.22696206566941451
+ - 1.0837376174305942
+ - 1.919785054585329
+ - 2.1216914431836784
+ - 2.500575226061483
+ - 1.2678402419169301
+ - -1.4310094238688669
+ - -2.645957403831147
+ - -1.9585043952448034
+ - -1.190222095463674
+ - -0.014695927205041714
+ - 0.34603165960833676
+ - 0.6895508879830318
+ - 1.2981587534203394
+ - 1.4143306366498691
+ - 0.020714894294960373
+ - -1.2484553971597192
+ - -1.9846515036002945
+ - -1.8455508112995274
+ - -0.9138684230755014
+ - 0.33516234489745955
+ - 0.8556204504362525
+ - 1.000669945578435
+ - 1.6907010093027384
+ - 1.5744996680244876
+ - -1.205359675928747
+ - -2.6085415364912996
+ - -2.0323488718712612
+ - -1.6414986107689378
+ - -0.541891520341953
+ - 0.8003321071766332
+ - 1.7895467442281696
+ - 2.1900872930469264
+ - 2.689242113026239
+ - 1.5695688951881028
+ - -1.4182779257153042
+ - -2.5552350828137835
+ - -2.0203863069643098
+ - -1.4335837096550663
+ - -0.36020985154831653
+ - -0.09022250177111675
+ - 0.444808454338498
+ - 1.4026891397256427
+ - 1.7364351784647212
+ - 0.33901773513843314
+ - -0.9809637091033815
+ - -1.8834142138811922
+ - -1.9557882692063144
+ - -1.186783515157271
+ - -0.010790967137741615
+ - 0.3425955721502821
+ - 0.6951166470126747
+ - 1.2399757600664447
+ - 1.3816667901091026
+ - 0.017625569761134812
+ - -1.2498420374111976
+ - -2.1138128845992803
+ - -2.7646224956809187
+ - -1.8999637038695911
+ - 0.9051046529738245
+ - 1.9054476850969229
+ - 1.9458800587103835
+ - 1.8916884720336622
+ - 1.022249640478312
+ - -0.30151491238666284
+ - -1.4868630612127227
+ - -2.1873324035569746
+ - -4.611703890557783
+ - -3.3217269397724887
+ - 1.8204803400628449
+ - 2.772266778611079
+ - 1.8831308875829667
+ - 1.9521570356246285
+ - 1.2253636390483091
+ - 1.9724791422834007
+ - 1.8665633358610576
+ - 1.1333831707089048
+ - 1.1011000706959118
+ - 0.2828793021574602
+ - -1.8557691908115381
+ - -2.459456254575994
+ - -1.0516921828663643
+ - 0.2615857652312279
+ - 1.5026203233727957
+ - 2.1025987905738663
+ - 1.5529630902100167
+ - 0.13781562453804597
+ - -0.596035569141651
+ - -1.379427251239443
+ - -2.014072740718223
+ - -1.7834148094935522
+ - -0.7637269378194873
+ - 0.5775628009840614
+ - 1.740770513396268
+ - 2.3527820364615506
+ - 1.6347974793936926
+ - -0.1293452158625532
+ - -1.0113493303477197
+ - -1.6003794992862206
+ - -2.040921598798382
+ - -1.8036069988084658
+ - -2.0396163234452427
+ - -0.9562899197676961
+ - 1.7867020189972065
+ - 2.7750647530369825
+ - 1.6662474912165504
+ - 0.5735462113321269
+ - -0.7705087658069065
+ - -1.777695681988144
+ - -2.0138730093807817
+ - -1.5773124431660583
+ - -1.9046153115296618
+ - -0.6663805474486885
+ - 1.928062735326177
+ - 1.9848818873722813
+ - 0.4049941100051491
+ - -0.22306463786148617
+ - -1.1380498185057024
+ - -1.939659218058762
+ - -1.908691772176431
+ - -1.033869378463662
+ - 0.27966445064703005
+ - 1.514704984307757
+ - 2.1559961463092665
+ - 1.654804183569482
+ - 0.06691571475653148
+ - -0.6311940921198114
+ - -1.3910947342581599
+ - -2.013705293510794
+ - -1.9696869712375629
+ - -2.2517819653683073
+ - -1.0398386398664836
+ - 1.5691988926674858
+ - 2.7234794888529312
+ - 1.818371211604905
+ - 0.8560904521593986
+ - -0.478770312762017
+ - -1.6057070965990026
+ - -2.0347856381251535
+ - -1.786414224490482
+ - -1.9791206468875042
+ - -0.8181254218596163
+ - 1.643038550486989
+ - 2.7141601933980524
+ - 1.6517403994253865
+ - 0.5557341091520204
+ - -0.7390077008995095
+ - -1.2827059998851127
+ - -1.2743989917575205
+ - -0.8197793668588254
+ - -0.5258251183626892
+ - 0.6742570230201658
+ - 1.721313998445084
+ - 2.0307998791070374
+ - 1.443400461441105
+ - 0.2393024463117325
+ - -1.0590804219501622
+ - -2.7804609472003894
+ - -2.182639015770355
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.8571065783663365
+ - -3.7871446073238286
+ - -0.8407418198776415
+ - 0.4909837802193841
+ - 1.6163336094213607
+ - 2.0302943755521508
+ - 1.5685744413934108
+ - 0.5753917123878701
+ - 0.36122215873717584
+ - -0.23807681557810184
+ - -1.6528731867187572
+ - -1.9942439108433248
+ - -0.5379634161834944
+ - 0.7953768254837628
+ - 1.8780735207242347
+ - 2.486553770165442
+ - 1.6618030679267395
+ - -0.3183426663514414
+ - -1.2894590164322068
+ - -1.726952214706032
+ - -2.0171508448218343
+ - -1.439385756907406
+ - -0.22370441668444907
+ - 1.0800929039638443
+ - 2.0368257813908124
+ - 2.6308637037040987
+ - 1.6718505340443028
+ - -0.5747779384961602
+ - -1.6533047035420503
+ - -1.8751952755430734
+ - -1.9566343812545135
+ - -1.3842459107998892
+ - -1.4447969549374748
+ - -0.5020495211073763
+ - 1.7981058467137216
+ - 2.5926162750249335
+ - 1.2811963428083086
+ - 0.023485127299713904
+ - -1.2492240349030108
+ - -1.9732399031307581
+ - -1.8440519701936249
+ - -1.0948811465349622
+ - -1.1721244957072872
+ - -0.17674237151362795
+ - 2.037912363515995
+ - 2.043056724504113
+ - -0.07908656834159647
+ - -1.0187294105590299
+ - -1.5376310964008444
+ - -2.0291923912723586
+ - -1.6483816023281783
+ - -0.537811096298126
+ - 0.7966237822846391
+ - 1.8794197896634675
+ - 2.5361634278495457
+ - 1.7860902955879956
+ - -0.4087410886761572
+ - -1.316337610761816
+ - -1.728977580834565
+ - -2.0188285757146667
+ - -1.636464839305235
+ - -1.7664640030397818
+ - -0.6578140792643844
+ - 1.6658802051555808
+ - 2.664694996913678
+ - 1.5128494457514692
+ - 0.3420298204731601
+ - -0.9806949147038071
+ - -1.8735756458310608
+ - -1.954983036461812
+ - -1.3816576398811025
+ - -1.4156264552483264
+ - -0.40552105104248637
+ - 1.6700307930697553
+ - 2.542356238591287
+ - 1.2799788026833232
+ - 0.02303956325859813
+ - -1.256241367793893
+ - -1.8869207014005456
+ - -1.5998657660261661
+ - -0.33863872471911727
+ - 0.21282321937513557
+ - 1.1517814579263734
+ - 1.9419576841461312
+ - 1.8985022860665486
+ - 1.015662302826286
+ - -0.2980111986111692
+ - -1.5270294653840026
+ - -3.6418485834481307
+ - -2.762002607102497
+ - -0.31495425183860254
+ - -0.12812593395119726
+ - 0.9928945188566491
+ - 1.8789385608338132
+ - 1.9588784104467398
+ - 1.2180861401761893
+ - 1.9638413735697018
+ - 2.0596268491767824
+ - 2.4558707319122077
+ - 1.3918844219881366
+ - -1.737745666099522
+ - -2.754572706415485
+ - -1.901866616153158
+ - -1.0484765232753315
+ - 0.16572236807223373
+ - 0.5571163567400573
+ - 0.8133829556118628
+ - 1.1434917627903807
+ - 1.1865626906988473
+ - -0.1455776655320954
+ - -1.3724585436866397
+ - -2.012773673612955
+ - -1.7650964755270613
+ - -0.7601515705579498
+ - 0.511450300461938
+ - 0.9719806135033583
+ - 1.0345360838971354
+ - 0.9358311341000776
+ - 0.7837198756256234
+ - -0.46414179739893563
+ - -1.5917815300845333
+ - -2.1998685800253956
+ - -2.765091710397195
+ - -1.6996977598246263
+ - 1.1975764877787756
+ - 2.320415155557028
+ - 2.026868798295554
+ - 1.6579186791738838
+ - 0.5732209631999817
+ - -0.7679042089701483
+ - -1.7699697270383168
+ - -2.190024619218623
+ - -2.9893616396746787
+ - -1.58230954474199
+ - 1.0711752068231755
+ - 1.230074940383468
+ - 1.4275847049003234
+ - 1.7361629267867262
+ - 0.15995703239488973
+ - -1.1333073036223082
+ - -1.9433069139469865
+ - -1.8964871694476155
+ - -1.0345800711566984
+ - 0.18435722722307918
+ - 0.59265939152269
+ - 0.836387843500235
+ - 1.1769323761159836
+ - 1.1903882583968874
+ - -0.1623494631055147
+ - -1.3853146859823595
+ - -2.158930328639451
+ - -2.7162268602347894
+ - -1.6295959133691755
+ - 0.8592201742178722
+ - 2.0297920544778116
+ - 1.9880731779343068
+ - 1.8158982792552447
+ - 0.8606700455111801
+ - -0.4776922140472804
+ - -1.6017925364119632
+ - -2.2017555600537086
+ - -2.712802714659009
+ - -1.548403368106558
+ - 1.0760989943956836
+ - 2.2919576278070135
+ - 2.0298663634903793
+ - 1.6517370533063267
+ - 0.7164606050210733
+ - 0.5458981424412779
+ - -0.11088003692187189
+ - -1.7124488784626712
+ - -2.120520965122059
+ - -0.6670127944021967
+ - 0.670169233156221
+ - 1.723792950410869
+ - 2.0183230747752345
+ - 1.443113508422388
+ - 0.3771975623612784
+ - 0.11788518355967369
+ - -0.13768129347155939
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.3000774789614074
+ - -4.597022683284004
+ - -1.8063730372902016
+ - -0.8369996521305431
+ - 0.4967567426934312
+ - 1.6146320801087917
+ - 2.030872629442206
+ - 1.770826417290384
+ - 2.002454565567413
+ - 0.986250763062407
+ - -1.885985007255601
+ - -2.779465007404552
+ - -1.6374171536930515
+ - -0.5361127614482778
+ - 0.7574245793598856
+ - 1.2614909249702992
+ - 1.1809299082758662
+ - 0.7690348191776976
+ - 0.4760294031365543
+ - -0.6912638380117699
+ - -1.728468213581065
+ - -2.0249856066560192
+ - -1.4271514897041715
+ - -0.21967568411503252
+ - 1.0755444603588191
+ - 1.6277203910650795
+ - 1.3537045576999058
+ - 0.5238802689272456
+ - 0.045309304199474085
+ - -0.9850482356969977
+ - -1.876152120020126
+ - -2.149787038382894
+ - -2.6030719855094175
+ - -1.4704997620752398
+ - 1.520976159964256
+ - 2.647775353242108
+ - 1.982676046050261
+ - 1.2778395905665585
+ - 0.01970864411708653
+ - -1.2506423008922987
+ - -1.974848710248923
+ - -2.0451405297890926
+ - -2.683316773414355
+ - -1.2711422224137066
+ - 1.5057028337569094
+ - 1.6292644344739085
+ - 1.0746166534383277
+ - 1.0003321438083668
+ - -0.3838274067762361
+ - -1.5409811156618092
+ - -2.038690411139147
+ - -1.6365462727086069
+ - -0.5334337182575497
+ - 0.7614355215816422
+ - 1.2920976558240513
+ - 1.23237621035282
+ - 0.7708378074129094
+ - 0.4820003773026193
+ - -0.6949081404789506
+ - -1.731470690336261
+ - -2.2006725570189087
+ - -2.6723372492603437
+ - -1.4707474832062895
+ - 1.2103159502649194
+ - 2.440273871096955
+ - 2.028456364444829
+ - 1.5099936571780488
+ - 0.3389368748535112
+ - -0.9852176312416315
+ - -1.8769908425800053
+ - -2.149623553405756
+ - -2.5540458510371535
+ - -1.3251018522709999
+ - 1.3785607223109542
+ - 2.6016657232941203
+ - 1.9838442146634307
+ - 1.2785213164462674
+ - 0.13713871095852723
+ - -0.20200281069680062
+ - -0.6127430563972052
+ - -1.429278642784716
+ - -1.5614805973370771
+ - -0.13352585116223287
+ - 1.1558622619374754
+ - 1.9522438216794316
+ - 1.8878249264971425
+ - 1.012156484367442
+ - -0.21317683807162863
+ - -1.1097778705353025
+ - -1.0164481170200765
+ - -2.3022411727058048
+ - -2.9563107642249036
+ - -0.3195806808770762
+ - 0.9972129374748173
+ - 1.889464014073542
+ - 1.948933469574357
+ - 1.2150569109520386
+ - 2.093697824599876
+ - 2.7453553210221475
+ - 1.8951255496800115
+ - -0.8722650300516711
+ - -1.86203346332724
+ - -1.9282356263071887
+ - -1.8994398984163303
+ - -1.2346670596467024
+ - -1.2191385556169179
+ - -0.27203577498066406
+ - 1.6509499729010864
+ - 2.447833602960547
+ - 1.1436960125022013
+ - -0.1437319923538912
+ - -1.3742276775320155
+ - -2.0006540964826947
+ - -1.7627367229918096
+ - -0.9308397548816951
+ - -0.8191725082562537
+ - -0.007595741784322754
+ - 1.5918443018916912
+ - 2.2308248429958595
+ - 0.8652451422307575
+ - -0.4599724811371643
+ - -1.6466932687026679
+ - -2.29585067599701
+ - -1.7069672064821466
+ - 0.0963209292593016
+ - 0.8694315945212521
+ - 1.5127439767616533
+ - 2.0221353439019087
+ - 1.6622647728413802
+ - 0.5665580063692329
+ - -0.7654767628693511
+ - -1.856265444056866
+ - -2.780724241683263
+ - -1.811623993593323
+ - -0.2418483362399851
+ - -0.04987890065184531
+ - 1.8295477470620987
+ - 2.936406624434382
+ - 1.3814699952200375
+ - 0.15622735371443738
+ - -1.141066542159168
+ - -1.9375411066994221
+ - -1.8956834523756259
+ - -1.2175436899904624
+ - -1.2166468819274878
+ - -0.33730811586672277
+ - 1.7737217180689178
+ - 2.4887679263526
+ - 1.1290710410982274
+ - -0.16419910833708398
+ - -1.417578541556071
+ - -2.0085258247527764
+ - -1.514296686800631
+ - -0.21650490580350343
+ - 0.4662987066570325
+ - 1.3008546984385307
+ - 1.9882655129964373
+ - 1.8216948180524806
+ - 0.8493538267772898
+ - -0.4817256413909331
+ - -1.6667362354615036
+ - -2.274231914110822
+ - -1.6077566250492452
+ - 0.04919912194899208
+ - 0.8854818871779002
+ - 1.5318536736490533
+ - 2.0301777680731496
+ - 1.8549179987012503
+ - 2.128730289880368
+ - 1.0935381818814474
+ - -1.8626133735758856
+ - -2.792899795984887
+ - -1.713231416286518
+ - -0.6633257583567344
+ - 0.6764470185668584
+ - 1.7209188354351508
+ - 2.0185478401513137
+ - 1.6426401866868092
+ - 2.9484453289332997
+ - 1.954534585735895
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.8244068450350275
+ - -4.155153073267308
+ - -2.373866635862324
+ - -2.1079915732241146
+ - -0.9328561377662237
+ - 0.657940886915024
+ - 1.9552989764537598
+ - 2.611981013505863
+ - 3.2849722180040377
+ - 2.0941314803115407
+ - -1.5911912691277077
+ - -2.850634897281265
+ - -2.408423786989964
+ - -1.9007246100226434
+ - -0.7510440629284064
+ - -0.5166234629002892
+ - 0.2787445947170178
+ - 1.7848256870979748
+ - 2.3553696217979048
+ - 0.7002398935823413
+ - -0.8832402088035314
+ - -2.0923204375693367
+ - -2.379824656948483
+ - -1.6422106061232464
+ - -0.34521994192567923
+ - -0.005407560043689133
+ - 0.586355245214002
+ - 1.6255925785675285
+ - 1.9763637932520175
+ - 0.3273325543128097
+ - -1.2252899373377872
+ - -2.3859503809285227
+ - -3.153840677605382
+ - -2.141244057676233
+ - 0.7507669442318207
+ - 1.9224038932871286
+ - 2.195268855369471
+ - 2.333257229025342
+ - 1.466494587706669
+ - -0.050973122190686816
+ - -1.536463727485847
+ - -2.5239306042323255
+ - -3.614203112670789
+ - -2.145441216872581
+ - 0.44802930503383553
+ - 0.6703563009918563
+ - 2.0753313594638945
+ - 3.013817344724499
+ - 1.0513367617433562
+ - -0.5231704065037414
+ - -1.8783774368616473
+ - -2.406989200164246
+ - -1.8972039356511867
+ - -0.745177747777116
+ - -0.5168876861888372
+ - 0.23148212672622015
+ - 1.891642163302269
+ - 2.397167880373905
+ - 0.6958282231270863
+ - -0.8868636635272433
+ - -2.1911963487465616
+ - -2.9135331286980475
+ - -1.9633850207718822
+ - 0.32835204099743026
+ - 1.4566291249202563
+ - 2.0146294465552534
+ - 2.3973773430391168
+ - 1.7486942571334927
+ - 0.3251659088334227
+ - -1.228726560866569
+ - -2.388608972497607
+ - -3.0966830347772296
+ - -1.9832003966382568
+ - 0.6343464906287227
+ - 1.8947705946506501
+ - 2.1988194142166035
+ - 2.335027046165963
+ - 1.6914191666524077
+ - 1.7870245111795395
+ - 0.6997797370755207
+ - -2.252180047767636
+ - -3.1276582552117373
+ - -1.565162136880273
+ - -0.08827194497529506
+ - 1.4323768146291393
+ - 2.3240600475505806
+ - 2.2105899758636474
+ - 1.3543880088853115
+ - 2.1194000180695753
+ - 1.2845428546468238
+ - -3.8916392412035252
+ - -5.313568903616481
+ - -1.726910456914981
+ - -0.3091503901120005
+ - 1.2473052321628586
+ - 2.2567082394613314
+ - 2.2891353930379634
+ - 1.55418639753553
+ - 2.259172040373614
+ - 1.9068484903771026
+ - 0.3782906580011937
+ - -0.28574104116597143
+ - -1.384182517369305
+ - -2.3079455130802304
+ - -2.4701211334622046
+ - -2.8895025420963796
+ - -1.433593087823228
+ - 1.740218986290609
+ - 3.1627402614575146
+ - 2.2790388551363807
+ - 1.3057005896794416
+ - -0.23397556415360377
+ - -1.6745107538047677
+ - -2.385527393519862
+ - -2.304743354800161
+ - -2.6257047592860308
+ - -1.1983512863648722
+ - 1.868777544188668
+ - 3.223096056907312
+ - 2.1294332970987413
+ - 0.9726889412376485
+ - -0.5230313520759425
+ - -1.0749529000700826
+ - -1.2069439237838306
+ - -1.1930655845079208
+ - -1.0505557314101217
+ - 0.47367733746032376
+ - 1.83688152417864
+ - 2.4139537203176684
+ - 1.9255056209669044
+ - 0.6124161893637489
+ - -0.9213766374659041
+ - -1.7137655000711443
+ - -1.5346281384237346
+ - -1.6729542941129638
+ - -1.5002970994152336
+ - 1.7448593507217567
+ - 3.435949870477575
+ - 2.368427690966537
+ - 1.5859422389187452
+ - 0.11714281176059782
+ - -1.4075285306370757
+ - -2.3169163930470833
+ - -2.4598248865471697
+ - -2.9255849599925856
+ - -1.580485151484162
+ - 1.928692406865693
+ - 3.2339643974253662
+ - 2.2712240178416843
+ - 1.2826156182431594
+ - -0.14672597355291114
+ - -0.6002097805785951
+ - -0.9313382516057217
+ - -1.3835021907026588
+ - -1.462432534115806
+ - 0.12673387417298898
+ - 1.5934740192428711
+ - 2.379350050914752
+ - 2.115593328345677
+ - 0.9439717395501214
+ - -0.5578890811601236
+ - -1.0948828386884648
+ - -1.1969031983053513
+ - -1.1410328169648243
+ - -0.988333597451644
+ - 0.5055403381841955
+ - 1.858812261260249
+ - 2.6058015568142756
+ - 3.3067854426261376
+ - 2.1466756277573227
+ - -1.4798219771419385
+ - -2.7308869830223514
+ - -2.400716675619349
+ - -1.9923485494874191
+ - -0.7239897650813641
+ - 0.8679555624669841
+ - 2.076160098014775
+ - 2.602111569946872
+ - 5.310761387815379
+ - 3.7675981047265763
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.6183034861042624
+ - -2.485842050786489
+ - -1.7541676058843467
+ - -1.8701502128379255
+ - -1.1808275049863093
+ - 0.032422248396830104
+ - 1.2236821586125997
+ - 2.0184073937861537
+ - 2.6299632313574963
+ - 1.7948167353709745
+ - -0.9007843368675792
+ - -1.8578789760316592
+ - -1.8592369442025707
+ - -1.7753081306566354
+ - -1.0963024447287613
+ - -1.0557409198323555
+ - -0.1886575101146583
+ - 1.5588629391072346
+ - 2.2766635376655886
+ - 1.0160637813792528
+ - -0.22237092822600613
+ - -1.3698027757850426
+ - -1.914888418633864
+ - -1.6330469141011736
+ - -0.8002116232169663
+ - -0.6687005898618534
+ - 0.06362043474780114
+ - 1.4917027111904992
+ - 2.0545690870257842
+ - 0.7445870722396273
+ - -0.5209925194421523
+ - -1.626957491712601
+ - -2.2477651386754687
+ - -1.6469813800291722
+ - 0.16793758339427722
+ - 0.9378907622446577
+ - 1.495020420040075
+ - 1.9268633790464618
+ - 1.530190632919853
+ - 0.4559652500687267
+ - -0.8071824446870389
+ - -1.814312457752909
+ - -2.6979567580839015
+ - -1.732589447438995
+ - -0.14338504675867514
+ - 0.03948448403321406
+ - 1.739102666403106
+ - 2.75374837244638
+ - 1.2591028554947727
+ - 0.07893904469941965
+ - -1.1398139223232735
+ - -1.8580871091444757
+ - -1.7727065342017405
+ - -1.091783390780552
+ - -1.0684858792536769
+ - -0.2591874042130194
+ - 1.6701693968049063
+ - 2.3180740817863805
+ - 1.0129212099906595
+ - -0.22494874036817009
+ - -1.4019513239949544
+ - -1.967490188583099
+ - -1.460322580961084
+ - -0.1485938759039757
+ - 0.5338596805417286
+ - 1.286898584480309
+ - 1.899554372304473
+ - 1.6961590618193263
+ - 0.742383624126172
+ - -0.524255995848011
+ - -1.6298132499345024
+ - -2.2077824113894278
+ - -1.5404341387320826
+ - 0.10383411133960431
+ - 0.9276891667611827
+ - 1.4982689460605279
+ - 1.9284418515029327
+ - 1.7182822275869805
+ - 1.9567079803359528
+ - 0.9835970198231359
+ - -1.7801338422006863
+ - -2.644580650201407
+ - -1.5873217528565278
+ - -0.5634131985080207
+ - 0.7072130304860469
+ - 1.6687468833284196
+ - 1.9064190512671153
+ - 1.5074635562692897
+ - 2.6751101498640857
+ - 1.7614037894220405
+ - -3.1441879289810393
+ - -4.369238800012687
+ - -1.6811938405957998
+ - -0.7304709240522747
+ - 0.5386624254753171
+ - 1.5732096994297553
+ - 1.9244873342176039
+ - 1.6344008099583534
+ - 1.8322453918863444
+ - 1.2281567091928516
+ - 0.7520968852563129
+ - 0.4587567357054707
+ - -0.6664409785158286
+ - -1.6471134309928324
+ - -2.088006596855305
+ - -2.5342247195580168
+ - -1.3928979486661173
+ - 1.1528388190893515
+ - 2.3203343943914434
+ - 1.9246342445500726
+ - 1.4281075349933465
+ - 0.31435326118449347
+ - -0.9414701642392755
+ - -1.7841739681058402
+ - -2.038299882193616
+ - -2.4204450985612285
+ - -1.2538664475538566
+ - 1.3117611798892854
+ - 2.4720381064259347
+ - 1.8811347132464198
+ - 1.20762463725552
+ - 0.12214524492407057
+ - -0.19234477358450483
+ - -0.5706645490453166
+ - -1.2906511594649046
+ - -1.456087130451992
+ - -0.11935072159550533
+ - 1.1030321057833987
+ - 1.8549163096034222
+ - 1.7888998986821414
+ - 0.9541744946232523
+ - -0.21031609792672706
+ - -0.6648940675662964
+ - -0.8717447186404315
+ - -1.65626245730716
+ - -1.5533568018416446
+ - 1.0849570613143167
+ - 2.407893343086406
+ - 1.9215421242014845
+ - 1.5998711745147083
+ - 0.5876691435279419
+ - -0.687138354988891
+ - -1.6580531102065657
+ - -2.084182689143341
+ - -2.5730887490616334
+ - -1.5203866178162828
+ - 1.300521066424563
+ - 2.3783683169747185
+ - 1.9223955157122918
+ - 1.412230638974315
+ - 0.42352830168457467
+ - 0.1885794077872713
+ - -0.3600610293195015
+ - -1.3629771447723826
+ - -1.723898511424137
+ - -0.3969524454760305
+ - 0.8615160271806661
+ - 1.7536786477485007
+ - 1.8730915311281917
+ - 1.1863639374319324
+ - 0.09374679388777143
+ - -0.2220556326616653
+ - -0.6005448944697204
+ - -1.216879305580171
+ - -1.3973598417094457
+ - -0.09371340677112423
+ - 1.1227594222031656
+ - 1.9776725495698342
+ - 2.601407024696202
+ - 1.8062288981181116
+ - -0.7934883055244903
+ - -1.7268021758318928
+ - -1.820271207725622
+ - -1.8195947802990182
+ - -1.034939918677036
+ - 0.20941382285140042
+ - 1.3554749427425399
+ - 2.060270649164697
+ - 4.369499039243939
+ - 3.15571493771747
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.3298722123754865
+ - -2.1792159324214504
+ - -1.953179263466371
+ - -2.3969292369834845
+ - -1.8096820046354636
+ - -0.4207966503530922
+ - 1.1397966898746523
+ - 2.3362926587225497
+ - 3.132268748707238
+ - 2.2475084185302183
+ - -0.7260532771049243
+ - -1.818343330115023
+ - -2.150251683077915
+ - -2.350048040807208
+ - -1.7657363699664754
+ - -1.85415276626215
+ - -0.6074223130195104
+ - 1.977341224190519
+ - 3.074820371326881
+ - 1.6334026218403528
+ - 0.18567205658529354
+ - -1.3476737843676008
+ - -2.2895312730556507
+ - -2.2407513740518734
+ - -1.4398727343060487
+ - -1.4138609204454495
+ - -0.3013816051725639
+ - 1.9534154514840787
+ - 2.88590129643851
+ - 1.3352379265351797
+ - -0.19300913262033728
+ - -1.6744569292537494
+ - -2.419439711350952
+ - -1.898989871679134
+ - -0.2025232008863384
+ - 0.558292342302226
+ - 1.536580379773349
+ - 2.349571608425525
+ - 2.1534009868029607
+ - 1.004736206506058
+ - -0.5683044115835909
+ - -1.9690517703541377
+ - -3.031472642427692
+ - -2.0773861829204177
+ - -0.6373853514418963
+ - -0.41505970856088986
+ - 2.14336214287241
+ - 3.5964912456188034
+ - 1.8874982043180677
+ - 0.5566457740409845
+ - -1.0191991397851792
+ - -2.1488803963758
+ - -2.347151014968392
+ - -1.7605196240571634
+ - -1.8809806518665404
+ - -0.7218051351876714
+ - 2.1338740436154207
+ - 3.1315258084072197
+ - 1.6300222250393794
+ - 0.18290227058439407
+ - -1.3422704981461666
+ - -2.0039574791960653
+ - -1.6355421733152855
+ - -0.5593836160706094
+ - 0.04816345740529404
+ - 1.2296931851527564
+ - 2.2439571116923633
+ - 2.2953422134980164
+ - 1.3321781543232487
+ - -0.1973717164553914
+ - -1.678534109272789
+ - -2.377190229809729
+ - -1.7906643705679992
+ - -0.25182231395642735
+ - 0.5572215171577168
+ - 1.5408268950321686
+ - 2.351602035824576
+ - 2.3848671565827826
+ - 2.819279493451847
+ - 1.564904028309728
+ - -2.098778690039214
+ - -3.2803135433989423
+ - -2.2011259175413103
+ - -1.1289584788060854
+ - 0.43377939748119976
+ - 1.8091150377920087
+ - 2.3974938601172604
+ - 2.188625225189449
+ - 4.0952442594292116
+ - 2.7790380853561696
+ - -3.771216011944172
+ - -5.310770765046263
+ - -2.279818617471708
+ - -1.3188352853468985
+ - 0.21409523102363837
+ - 1.6566551272843844
+ - 2.3773626843538858
+ - 2.309116775396614
+ - 2.697435342477553
+ - 1.4525246157661358
+ - 1.3132459533833296
+ - 1.185335052414195
+ - -0.3831875307615405
+ - -1.7752349706417583
+ - -2.589418769835592
+ - -3.2235183186827223
+ - -1.8867721557831774
+ - 1.14961457197531
+ - 2.56669065788566
+ - 2.385186242145659
+ - 2.056588051645365
+ - 0.8406317001903514
+ - -0.7503272926161326
+ - -2.0081269424235697
+ - -2.6070729241653066
+ - -3.1785452842677504
+ - -1.7670083476814955
+ - 1.3909319285489687
+ - 2.84344869874998
+ - 2.4042661532821072
+ - 1.8368639377884615
+ - 0.6481549283877811
+ - 0.391982887963901
+ - -0.3119821891452927
+ - -1.8489375751046866
+ - -2.305756565327061
+ - -0.6055075241297035
+ - 0.9720842232355575
+ - 2.136974761502743
+ - 2.360428639724883
+ - 1.5675211665370865
+ - 0.23960820955677106
+ - -0.13467966913726237
+ - -0.7065648823257729
+ - -2.2671018952009163
+ - -2.1773712410197885
+ - 1.0022280035745115
+ - 2.5490642488390804
+ - 2.31212036625816
+ - 2.2122738291637454
+ - 1.1589082475300025
+ - -0.40970230157011167
+ - -1.7917558848137223
+ - -2.5889722004376026
+ - -3.279078349076909
+ - -2.047797979274092
+ - 1.3225197301945237
+ - 2.6367490838674703
+ - 2.386254572510386
+ - 2.040099494972781
+ - 1.0072035191518967
+ - 0.8464441371218278
+ - -0.07049244522082729
+ - -1.8605998311128449
+ - -2.567153568446272
+ - -0.9359779986686396
+ - 0.6410917720360333
+ - 1.9480623578396392
+ - 2.3975104004178824
+ - 1.8131503613720166
+ - 0.6138761636174329
+ - 0.34381431480750985
+ - -0.3828098271126322
+ - -1.7312301473818736
+ - -2.2275294596488586
+ - -0.57485501210155
+ - 0.99759592032711
+ - 2.2545180595807937
+ - 3.0554890819063427
+ - 2.2326098865626047
+ - -0.5814125787991408
+ - -1.6295125883156965
+ - -2.073364842341515
+ - -2.3757777169302514
+ - -1.6557557530064138
+ - -0.20177323106781758
+ - 1.3293176159786724
+ - 2.4324010343173925
+ - 5.313412388441674
+ - 3.8879517421525773
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.928764292466476
+ - 5.390332891303031
+ - 1.8412636470971173
+ - 0.47662674082229767
+ - -1.0986577533846325
+ - -2.1926547299476473
+ - -2.3366507000800514
+ - -1.6986367061050711
+ - -1.7970567483917703
+ - -0.7072047500015516
+ - 2.253849437488475
+ - 3.1327355120762985
+ - 1.573197219924364
+ - 0.09964971585309987
+ - -1.424405130010723
+ - -2.0980834506359325
+ - -1.6793196667478647
+ - -0.4947011093053667
+ - 0.16091602383265985
+ - 1.305512041791661
+ - 2.2804117564289745
+ - 2.2765791222790974
+ - 1.2663329022123173
+ - -0.28167089836887527
+ - -1.7532397790172431
+ - -2.4602048457721355
+ - -1.8253409044079223
+ - -0.1839452034717531
+ - 0.6698190889449906
+ - 1.6098915451146885
+ - 2.375677607277239
+ - 2.3553736523794666
+ - 2.753089666802795
+ - 1.4209190604467725
+ - -2.016541522275499
+ - -3.2805890196975582
+ - -2.174228482877437
+ - -1.058238150548767
+ - 0.5180264650529336
+ - 1.8696804759487486
+ - 2.4084950913833176
+ - 2.145795636409245
+ - 2.7023137882030426
+ - 1.1182801148894121
+ - -2.106557787699698
+ - -2.2101137774062765
+ - -0.8476751534430023
+ - -0.384931481906216
+ - 0.9723676735302516
+ - 2.1317673278628866
+ - 2.377191127167061
+ - 1.572416335941069
+ - 0.09691813993582232
+ - -1.4282702470686663
+ - -2.1444007233514792
+ - -1.774668427645021
+ - -0.4575244340524505
+ - 0.16751143741117175
+ - 1.309366727915458
+ - 2.283592283308884
+ - 2.5049664904251934
+ - 2.9474577070911243
+ - 1.4877292682137786
+ - -1.7051676787463177
+ - -3.1411986184902516
+ - -2.3108396899275245
+ - -1.384887285827199
+ - 0.14133741658538232
+ - 1.609335778954876
+ - 2.3756591875264075
+ - 2.354131121584339
+ - 2.700399225412304
+ - 1.260372321954213
+ - -1.8449522217487617
+ - -3.2212725438816774
+ - -2.1746656965811932
+ - -1.0586082533101022
+ - 0.42469721864158977
+ - 0.9725805805558886
+ - 1.1867581149271247
+ - 1.3172292465473416
+ - 1.1898574856303645
+ - -0.3829922236706188
+ - -1.7785575039001684
+ - -2.413236120385046
+ - -1.9828759897187151
+ - -0.702824461780393
+ - 0.827851481012464
+ - 2.467661075269208
+ - 2.0148616266620567
+ - 2.023182350889391
+ - 2.4798122189398595
+ - -0.16243040011697374
+ - -1.621470094636555
+ - -2.387556171424356
+ - -2.1003184700059085
+ - -0.9119461652762174
+ - 0.596121093315544
+ - 1.18230753863354
+ - 1.3127763969658781
+ - 1.4586000460168267
+ - 2.7053093454586534
+ - 2.394980778162002
+ - 2.006434538674621
+ - 0.9419165829379974
+ - 0.7618112495531155
+ - -0.12467019720948522
+ - -1.8432325059897456
+ - -2.5153231614598077
+ - -0.8759092460139464
+ - 0.7047897281212606
+ - 1.9879602184584115
+ - 2.3958997013585868
+ - 1.7710049353358825
+ - 0.5448532114999376
+ - 0.2563242188163852
+ - -0.43615375955050845
+ - -1.7059480578664583
+ - -2.1650487199325115
+ - -0.511275603593499
+ - 1.0579824131247924
+ - 2.2914659355141156
+ - 3.0656621960782164
+ - 2.127025955375301
+ - -0.5911154981983928
+ - -1.705430901571629
+ - -2.1076112418092943
+ - -2.367688979217387
+ - -1.6086538618013817
+ - -0.13636930072401496
+ - 1.3847802249092676
+ - 2.459166357447679
+ - 3.5593001863680196
+ - 2.162677708898548
+ - -0.25966860598257235
+ - -0.48508675622970543
+ - -2.1112168742685
+ - -3.1511111210052465
+ - -1.2016013288606238
+ - 0.3564707352958194
+ - 1.7669969136461885
+ - 2.4003141373570416
+ - 1.997410897788718
+ - 0.919899015057034
+ - 0.7445639900108042
+ - -0.08096653704064273
+ - -1.958239816504464
+ - -2.550536099205395
+ - -0.8567374827615019
+ - 0.7270782941025264
+ - 2.0860212942066116
+ - 2.809078075633386
+ - 1.9390045707494195
+ - -0.18982294066673325
+ - -1.250479152227849
+ - -1.9172119403354693
+ - -2.4074619618886057
+ - -1.8623515235327575
+ - -0.4924455048802544
+ - 1.0801107828328176
+ - 2.3087148723909414
+ - 3.025569373667291
+ - 1.9809485861956813
+ - -0.5005163604939825
+ - -1.7064354322487871
+ - -2.124568596795455
+ - -2.3716426684427616
+ - -1.8279381738323566
+ - -1.9796082010150509
+ - -0.84960074257883
+ - 2.260153077321186
+ - 3.1977535086260884
+ - 1.6905697600810377
+ - 0.2575402779135054
+ - -1.2920067410162435
+ - -2.2747205517585516
+ - -2.2728908056654284
+ - -1.5087337015912439
+ - -2.468977953507643
+ - -1.544404482143005
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.152274229283172
+ - 4.38116904201332
+ - 1.6881102562295816
+ - 0.7367093557623051
+ - -0.5357943273156723
+ - -1.5749884248235193
+ - -1.9301142418643376
+ - -1.6420372131704375
+ - -1.8418675850207702
+ - -0.8856672729866037
+ - 1.8025516784046949
+ - 2.6336869608797744
+ - 1.5186361219121576
+ - 0.44703134445724696
+ - -0.7866504766227239
+ - -1.277032173162558
+ - -1.1610717370905357
+ - -0.683747847853549
+ - -0.3667994579302923
+ - 0.7186046700651699
+ - 1.6779548006489533
+ - 1.9180805379738755
+ - 1.3109547591065769
+ - 0.14420993309194316
+ - -1.084494545260202
+ - -1.6179319331534625
+ - -1.3188988494702591
+ - -0.4472886660117359
+ - 0.04416320742280057
+ - 0.9937495632188288
+ - 1.8092920577590026
+ - 2.028861569628961
+ - 2.4446982947112894
+ - 1.3648046942366754
+ - -1.477720247160198
+ - -2.544699324641468
+ - -1.8713857105395881
+ - -1.1646658196788549
+ - 0.04659598202051235
+ - 1.2406340860070117
+ - 1.893337543059718
+ - 1.9186332018740424
+ - 2.5036731374368006
+ - 1.1664855889084864
+ - -1.4762029749656482
+ - -1.5889695743522962
+ - -0.9743351184336537
+ - -0.8581556559418222
+ - 0.42890726093569737
+ - 1.5078727072976676
+ - 1.9413552882213485
+ - 1.5178341884925832
+ - 0.4445270602482053
+ - -0.7903716419125403
+ - -1.30746042299346
+ - -1.214334351441437
+ - -0.6807196319519689
+ - -0.3708477275271336
+ - 0.7220270629954982
+ - 1.6807756484234448
+ - 2.088221564691516
+ - 2.524380900317526
+ - 1.3730765612866478
+ - -1.1880377205700554
+ - -2.3594970143722684
+ - -1.9250354152066813
+ - -1.3924953238805151
+ - -0.2579310559705452
+ - 0.9938186140288819
+ - 1.809970768951234
+ - 2.028578211610682
+ - 2.398553080948761
+ - 1.2274343659911888
+ - -1.341436356609007
+ - -2.500120975671559
+ - -1.8723863473410214
+ - -1.1652645885039314
+ - -0.05996254857622768
+ - 0.2814031716120532
+ - 0.6405473555902269
+ - 1.3188319202279901
+ - 1.410710200373515
+ - 0.06206949273934697
+ - -1.1527227456690627
+ - -1.8755692349300528
+ - -1.7713070331544316
+ - -0.9061566796273537
+ - 0.2729846702594131
+ - 1.1985881055835959
+ - 1.0681531340062382
+ - 2.1124280141494394
+ - 2.6982948943655183
+ - 0.23967831539915543
+ - -1.005018370079566
+ - -1.82152839908804
+ - -1.835077437943256
+ - -1.0595389310230972
+ - 0.08038957480886144
+ - 0.45773799741629884
+ - 0.7527081231375414
+ - 1.23263136658586
+ - 1.8376623184628176
+ - 1.8538838523258736
+ - 1.7835772241134096
+ - 1.1155835349587757
+ - 1.0812243800675891
+ - 0.2056622371985141
+ - -1.5622401200537066
+ - -2.2900147428495554
+ - -1.0337970487891996
+ - 0.20177088738631324
+ - 1.3551980166547213
+ - 1.9127537525729947
+ - 1.644214941569541
+ - 0.8210937292726682
+ - 0.6956313368727779
+ - -0.04652976331888919
+ - -1.497696128820325
+ - -2.071618572147055
+ - -0.7638139787027655
+ - 0.5010321307886662
+ - 1.61293947878891
+ - 2.233188567612299
+ - 1.6419778867778039
+ - -0.14956829799532098
+ - -0.9114795084989348
+ - -1.4820431806990908
+ - -1.9267748963711575
+ - -1.5430790673085861
+ - -0.47616895513471674
+ - 0.788394635293719
+ - 1.803243192187791
+ - 2.6862444627173274
+ - 1.7312016413856959
+ - 0.164859275789472
+ - -0.018134810842190797
+ - -1.7395272537916426
+ - -2.7632456822484035
+ - -1.2660694353300785
+ - -0.08369317772159539
+ - 1.1393202351918803
+ - 1.8620785636648476
+ - 1.7794390237967088
+ - 1.0990284785289255
+ - 1.0771168587483786
+ - 0.26390229623058575
+ - -1.6757492987619194
+ - -2.327482106090942
+ - -1.0196128300337026
+ - 0.22107175746497887
+ - 1.4022203154441109
+ - 1.9690595895826215
+ - 1.4629329079655222
+ - 0.15273371291346174
+ - -0.5294261341104397
+ - -1.2871177811964756
+ - -1.904098900753695
+ - -1.7030887475674745
+ - -0.7486452769640339
+ - 0.5213581600977777
+ - 1.6312867625562182
+ - 2.2108040227085035
+ - 1.5438319976015247
+ - -0.10038898030677555
+ - -0.9246289434614905
+ - -1.499597360118404
+ - -1.9337781438951192
+ - -1.7258883656909207
+ - -1.9663792938989035
+ - -0.9899203374490895
+ - 1.7843499809475767
+ - 2.6524426604107463
+ - 1.5943303129350381
+ - 0.569323909530564
+ - -0.7049508321328131
+ - -1.6711416957638632
+ - -1.9124108487078524
+ - -1.5150851302966883
+ - -2.690602691632552
+ - -1.7724604837127922
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.4441071191755435
+ - 3.5835682626087255
+ - 2.008846621986993
+ - 1.7478618790652274
+ - 0.732796190587494
+ - -0.6090431547926465
+ - -1.6801196409215298
+ - -2.2001776976154654
+ - -2.75652578184635
+ - -1.7436316032698924
+ - 1.378201107103358
+ - 2.4409401127574255
+ - 2.0289287525318804
+ - 1.5657476511380686
+ - 0.5732012846167192
+ - 0.35954309513577426
+ - -0.2813431322750033
+ - -1.4827377411405802
+ - -1.9314301000417702
+ - -0.5351278832788376
+ - 0.7969952741204557
+ - 1.790902392805775
+ - 1.9958821176397845
+ - 1.341365669584014
+ - 0.22934339879905813
+ - -0.07199337671526161
+ - -0.538775739591133
+ - -1.3421705084986533
+ - -1.6040228386743554
+ - -0.21909065419138665
+ - 1.0811646854917067
+ - 2.034754149531949
+ - 2.6784211044000794
+ - 1.8045396429692546
+ - -0.6798859606935977
+ - -1.682398895746907
+ - -1.8723602179187573
+ - -1.9511317886139732
+ - -1.1895588844290321
+ - 0.09999986445397324
+ - 1.33801061749385
+ - 2.1416813225615052
+ - 3.055324110520412
+ - 1.7985872309270423
+ - -0.4337917785311782
+ - -0.6197916300045678
+ - -1.7325395296936497
+ - -2.4897229868763078
+ - -0.8341273998438763
+ - 0.49635083110764905
+ - 1.6181394354427536
+ - 2.027725201266131
+ - 1.5627680666975778
+ - 0.5682578765301975
+ - 0.3583214538334748
+ - -0.24545046279125957
+ - -1.5694002466741483
+ - -1.965589024370153
+ - -0.531380679851036
+ - 0.8000746025194176
+ - 1.8792888779101375
+ - 2.486894742118574
+ - 1.660391410031675
+ - -0.32293023618872974
+ - -1.2951449633305916
+ - -1.7280952029203183
+ - -2.0139963418898583
+ - -1.4332701930920426
+ - -0.21732784433798089
+ - 1.0839921308795677
+ - 2.036902162020559
+ - 2.6297931680238786
+ - 1.6696183181364068
+ - -0.5788413169990143
+ - -1.6578434913230218
+ - -1.8752929692621354
+ - -1.9525984529744342
+ - -1.3773786244445476
+ - -1.4389555212288685
+ - -0.5384387609993627
+ - 1.8925223867771375
+ - 2.6083265657193135
+ - 1.2748741182420464
+ - 0.017309120484116224
+ - -1.2525865771780305
+ - -1.972298908466957
+ - -1.839239822785982
+ - -1.0877668446021251
+ - -1.6657509946264637
+ - -0.9934619765211545
+ - 3.2623143244768062
+ - 4.445522170203563
+ - 1.4147063409845
+ - 0.20378268708745753
+ - -1.0996350030572568
+ - -1.9205761857319699
+ - -1.9103123198261334
+ - -1.2592289010008977
+ - -1.2754704355466764
+ - -0.41477909637856464
+ - 1.8746807730179673
+ - 2.536231892420518
+ - 1.2123966032211297
+ - 1.9597828493649643
+ - 2.0600383068165264
+ - 2.399230333503313
+ - 1.174732489070346
+ - -1.4879638708952878
+ - -2.6783508473711035
+ - -1.9008921049266139
+ - -1.0515628116957612
+ - 0.2541259441003914
+ - 1.451115218952175
+ - 2.0162510293869085
+ - 1.9117388632946888
+ - 2.166648002412294
+ - 0.9716552244904307
+ - -1.589391735340944
+ - -2.717088889840605
+ - -1.766566805261051
+ - -0.7668099776953309
+ - 0.5011980283183683
+ - 0.9790065066349436
+ - 1.0583575815186408
+ - 0.9624944353144085
+ - 0.810711719384484
+ - -0.45491017281200813
+ - -1.583728944009503
+ - -2.0345769976230454
+ - -1.5872612088846396
+ - -0.46046375000136
+ - 0.8339017724142299
+ - 1.519532592278019
+ - 1.3288659470454567
+ - 1.36732516325209
+ - 1.2183739524802066
+ - -1.5001056946350222
+ - -2.922720126738776
+ - -1.9845010302857138
+ - -1.2927820599629458
+ - -0.041405702025842615
+ - 1.2317562283104149
+ - 1.9668777628687724
+ - 2.0508888619901002
+ - 2.4283578768594527
+ - 1.2968549954220017
+ - -1.6464880401620532
+ - -2.738001007668473
+ - -1.8938711083812694
+ - -1.0318901637412516
+ - 0.18544307052718575
+ - 0.5807319650318874
+ - 0.8259305489577836
+ - 1.1315262918629414
+ - 1.1634589978597518
+ - -0.16376171678208765
+ - -1.3848498406944014
+ - -2.014010470263167
+ - -1.7546033150385743
+ - -0.7425106565291143
+ - 0.5303936103351267
+ - 0.9941468305095914
+ - 1.0455648970233367
+ - 0.922531246125
+ - 0.7595202971600264
+ - -0.481633354327542
+ - -1.6018813875699827
+ - -2.199114873316747
+ - -2.780131042290851
+ - -1.7912539654560293
+ - 1.2868360525799885
+ - 2.3445117222515193
+ - 2.0262393030368675
+ - 1.645980217006971
+ - 0.555072991110804
+ - -0.7842518779110056
+ - -1.7775030774437242
+ - -2.1861635656132687
+ - -4.4428771680072465
+ - -3.1454596168036106
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.5106457098478323
+ - 1.0090992394571532
+ - 1.3962477256544372
+ - 2.006743841792877
+ - 1.7549997421741794
+ - 0.7267275595069049
+ - -0.6071827118864228
+ - -1.7529876631307515
+ - -2.4292370435580475
+ - -1.8388315483496918
+ - 0.26087725352872915
+ - 1.0665185380674702
+ - 1.6117798310740663
+ - 2.0279689761345865
+ - 1.7703525212184905
+ - 1.9580797502727374
+ - 0.8046397999697137
+ - -1.638761709389739
+ - -2.701324718141208
+ - -1.6356760723763193
+ - -0.5366233272321296
+ - 0.7978994520991659
+ - 1.783419373036714
+ - 1.995611916325576
+ - 1.5409669654595528
+ - 1.6346273043209378
+ - 0.5624283990384739
+ - -1.6690637232379557
+ - -2.6206874963189923
+ - -1.4263628677046027
+ - -0.2228713477224213
+ - 1.0692154802254517
+ - 1.6518746195188165
+ - 1.418249501120028
+ - 0.5078785119013205
+ - 0.05395410349372044
+ - -0.9790700166244667
+ - -1.8698783562094337
+ - -1.9585013044369515
+ - -1.1815837861081113
+ - 0.09820789505741975
+ - 1.3599641145920836
+ - 2.192649237788491
+ - 1.6232218952487663
+ - 0.9009819817329339
+ - 0.7246099529308895
+ - -1.7251271932474286
+ - -3.0653527554742306
+ - -1.8019205592307186
+ - -0.8348917342361731
+ - 0.49560415348475856
+ - 1.6107162723812825
+ - 2.025898164877485
+ - 1.7664496921547779
+ - 1.9890367576612356
+ - 0.9198270638412409
+ - -1.7810481024793638
+ - -2.7517387582709727
+ - -1.6333689695597053
+ - -0.5347354481415784
+ - 0.7556339144904476
+ - 1.2584659791624366
+ - 1.1780815959239586
+ - 0.7671016239837252
+ - 0.47479245794735786
+ - -0.6896311670684198
+ - -1.7242722855158854
+ - -2.0200186562346993
+ - -1.4236106209911548
+ - -0.21907036789387765
+ - 1.0729679421276332
+ - 1.6237885875037388
+ - 1.3504232961617764
+ - 0.5225405160530869
+ - 0.04512211663624646
+ - -0.9826922387749785
+ - -1.8715833668654553
+ - -2.14450799642927
+ - -2.612533567696007
+ - -1.5565534002299126
+ - 1.609105926728069
+ - 2.6579018760162616
+ - 1.9778073768356406
+ - 1.2746584864129622
+ - 0.019595833036275292
+ - -1.2476299620276348
+ - -1.9700279921181485
+ - -2.0401067825018666
+ - -3.9684428531980522
+ - -2.7489694545455348
+ - 2.9478783653595184
+ - 4.212066828854416
+ - 2.009984328662196
+ - 1.413998353152041
+ - 0.20648028516879605
+ - -1.095684738687693
+ - -1.9181176222641032
+ - -2.1068086381895887
+ - -2.5410368031637502
+ - -1.4795219033934188
+ - 1.6737293654939724
+ - 2.708742810396805
+ - 1.9448415415129832
+ - 1.2142819563799572
+ - 2.0976604044309473
+ - 2.678903698927661
+ - 1.6618527500560947
+ - -0.696884547153517
+ - -1.819082229985453
+ - -1.9308511542481541
+ - -1.905002372729389
+ - -1.0582826440782844
+ - 0.25862919899278386
+ - 1.455606269517113
+ - 2.178330200052926
+ - 2.7229268337293457
+ - 1.6089034830241653
+ - -0.9293954176372781
+ - -2.117457687102161
+ - -2.007427251570225
+ - -1.7719566214292202
+ - -0.9407667039070629
+ - -0.8452634526159767
+ - -0.07847208161773729
+ - 1.705664967974634
+ - 2.2863561815001816
+ - 0.8734243983421819
+ - -0.45618037769667585
+ - -1.5943992737478534
+ - -2.030959372799643
+ - -1.5914041675267177
+ - -0.6129475154720904
+ - -0.4683065021640067
+ - 0.2589206626037275
+ - 2.014915805616854
+ - 1.9739358640173563
+ - -0.5245899932338517
+ - -1.699169658291586
+ - -1.8137172209896975
+ - -1.9831425702448473
+ - -1.2988122581246349
+ - -0.038415750510486825
+ - 1.2301383821564587
+ - 2.1008935974717655
+ - 2.73007288094564
+ - 1.794743970743599
+ - -0.8283816195338499
+ - -1.8742358372664931
+ - -1.9349341110314602
+ - -1.8943242505824331
+ - -1.2193161152165697
+ - -1.198404197664717
+ - -0.2576221019091082
+ - 1.6498014550765292
+ - 2.43891247139958
+ - 1.1295882687612653
+ - -0.16169896299820616
+ - -1.3883289040818012
+ - -2.004647102600874
+ - -1.7549660544303973
+ - -0.913782231031842
+ - -0.7967646207210927
+ - 0.0071716738880252175
+ - 1.5883658647531402
+ - 2.2184663600374024
+ - 0.8495478088983197
+ - -0.4777224964582035
+ - -1.6605819010158167
+ - -2.332417495065376
+ - -1.8024491073708688
+ - 0.13401325123054966
+ - 0.8915559565338487
+ - 1.525588024705426
+ - 2.024380956165766
+ - 1.6528999768577088
+ - 0.5496944343997178
+ - -0.7825394809552967
+ - -1.8678322422364948
+ - -4.216147065296409
+ - -3.1281826025395287
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.854386379791417
+ - -2.2377656292142873
+ - 0.2803323198971821
+ - 1.7071929230124774
+ - 2.4040420570646153
+ - 2.040088605050796
+ - 0.8014029258614858
+ - -0.7204933169717846
+ - -1.3331875908620232
+ - -1.4017633084134813
+ - -1.0956844424429735
+ - -0.8236039298979408
+ - 0.655608368459666
+ - 1.9548943636861864
+ - 2.615113434586179
+ - 3.206592222698797
+ - 1.8089114643438353
+ - -1.330736121270214
+ - -2.780510890713937
+ - -2.4098411154335158
+ - -1.9039732316023452
+ - -0.5758134803949371
+ - 1.0105988116071494
+ - 2.151971991403143
+ - 2.5848922611492355
+ - 3.1029255494188424
+ - 1.656051973457044
+ - -1.5476464920437853
+ - -3.006315861948418
+ - -2.384860528526726
+ - -1.6495265726850796
+ - -0.3536253285248319
+ - -0.01383078650627267
+ - 0.5548744158685237
+ - 1.7167933787549392
+ - 2.025679613740307
+ - 0.334292871828103
+ - -1.2215895788084812
+ - -2.257183495816133
+ - -2.297839377869618
+ - -1.3502602946696165
+ - 0.061219617259269825
+ - 0.5539552990302223
+ - 0.9404419785001421
+ - 2.1614558059478837
+ - 2.048480439135056
+ - -1.2043552175323202
+ - -2.814046232854184
+ - -2.374740850456599
+ - -2.110949194360515
+ - -0.936626782976258
+ - 0.6550207710846436
+ - 1.9544788370496764
+ - 2.6135592403630983
+ - 3.265191466418362
+ - 1.9806677547806175
+ - -1.4944465124291633
+ - -2.8345621741740286
+ - -2.4098659966766216
+ - -1.9040092761892198
+ - -0.7550961881349811
+ - -0.521525757824193
+ - 0.27610432962522746
+ - 1.7871553380941434
+ - 2.359992430570226
+ - 0.7039740461544008
+ - -0.8805696385391389
+ - -2.091861141304537
+ - -2.3817927203160907
+ - -1.6457390057832821
+ - -0.34915088966662655
+ - -0.010060796018402983
+ - 0.5839984321198423
+ - 1.62821198718629
+ - 1.9812476355999438
+ - 0.3309571919471887
+ - -1.2230615139910825
+ - -2.385879841976625
+ - -3.1802171223190427
+ - -2.2598449193320858
+ - 0.8068230593536068
+ - 1.925374444383141
+ - 2.1951916104242764
+ - 2.3355321021370936
+ - 1.4701488615452811
+ - -0.047551506347314296
+ - -1.5347401862936072
+ - -2.524506493579806
+ - -5.426059292867194
+ - -3.942317481265635
+ - 1.7125289141802509
+ - 2.6940108356070867
+ - 2.0945725390289676
+ - 2.3795366513686904
+ - 1.6403826000657136
+ - 0.17400609081722382
+ - -1.3574567866767204
+ - -2.4514745591672615
+ - -3.235259331309309
+ - -2.259068667940132
+ - 0.9466605331538293
+ - 2.1018528840214223
+ - 2.257315317565838
+ - 2.2936287704758627
+ - 1.5628175203433896
+ - 2.203553156383348
+ - 1.7260023125415922
+ - 0.4156727355324274
+ - -0.29522019773684355
+ - -1.391771365795314
+ - -2.316302836141566
+ - -2.246441743123069
+ - -1.183309135425515
+ - 0.3815394016736977
+ - 1.8366525905934266
+ - 2.551157199262391
+ - 1.8606416055063926
+ - 0.1021458346932203
+ - -0.8022190448631039
+ - -1.6870440118240424
+ - -2.396438668085026
+ - -2.312136955596546
+ - -2.682649862791294
+ - -1.3565920510817304
+ - 2.0499272175459597
+ - 3.2967018062946267
+ - 2.1347105267650788
+ - 0.9700826956764406
+ - -0.6170258728986809
+ - -1.9357911947739934
+ - -2.413508552918049
+ - -2.0872573437621442
+ - -2.6048837864817056
+ - -1.0428218425764813
+ - 2.157924491236288
+ - 2.2527176310055133
+ - 0.7479430877659264
+ - 0.20610761107338646
+ - -1.079611923419962
+ - -2.184548998876721
+ - -2.3525801102277444
+ - -1.481078653093607
+ - 0.021435698113700392
+ - 1.534263790333507
+ - 2.26475521211194
+ - 1.831758177837615
+ - 0.35416480882018403
+ - -0.3288475530698421
+ - -1.4073510322833864
+ - -2.3190916934668078
+ - -2.4653766329797615
+ - -2.879255337109696
+ - -1.421552156746627
+ - 1.7531944775433246
+ - 3.17477586131379
+ - 2.274754541404287
+ - 1.2865602562514091
+ - -0.25978754303528584
+ - -1.6956008080120029
+ - -2.392859162687426
+ - -2.2956961088703047
+ - -2.610364577576069
+ - -1.1836922302041883
+ - 1.8789274660307993
+ - 3.229853873500067
+ - 2.121182535416793
+ - 0.9510572754018002
+ - -0.5509595768688468
+ - -1.127258301553509
+ - -1.280017358218551
+ - -1.2255141358158248
+ - -1.0365150915621555
+ - 0.49941935974080864
+ - 1.8564157488298823
+ - 2.4188346070241513
+ - 1.9135382722646368
+ - 0.588856974916419
+ - -0.9487484475197429
+ - -2.7045757272673434
+ - -2.1794696773941986
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.9819186217313942
+ - -2.539483261404812
+ - -0.25476151804852004
+ - 0.8927012991928531
+ - 1.6599942157193597
+ - 1.6955983075530132
+ - 1.0019355356872224
+ - -0.03584601471842932
+ - -0.3727635876604179
+ - -0.6610868408959574
+ - -1.1556708586668898
+ - -1.1961854139919408
+ - 0.026349747616781695
+ - 1.1237887724823656
+ - 1.857936484224892
+ - 2.358181002477507
+ - 1.4431604078872846
+ - -0.6678084128401303
+ - -1.667300647508436
+ - -1.7104852179869097
+ - -1.6357502172471912
+ - -0.8559600737342158
+ - 0.3043963068130091
+ - 1.3261757242894685
+ - 1.9150723533370848
+ - 2.379821635538602
+ - 1.3867554708998309
+ - -0.8657623249819333
+ - -1.915579827793746
+ - -1.7651273953988018
+ - -1.5082133747964337
+ - -0.7435922609497602
+ - -0.6348556969174833
+ - 0.0019392249591117577
+ - 1.4659049697739241
+ - 1.934817416128352
+ - 0.6910166085555387
+ - -0.4755079323095207
+ - -1.4416847825083727
+ - -1.7732348921261998
+ - -1.3401756605459485
+ - -0.45259019296477265
+ - -0.2903105917709297
+ - 0.2969564779119134
+ - 1.7471764338785394
+ - 1.7044950238275869
+ - -0.5133355003360556
+ - -1.5627051197338468
+ - -1.6140605793052014
+ - -1.7232950158377303
+ - -1.0904680018053148
+ - 0.026182736856358725
+ - 1.1241667074950166
+ - 1.8579060812836996
+ - 2.403094366197882
+ - 1.565595551179342
+ - -0.7722821210413796
+ - -1.7005015594379147
+ - -1.7113786275632226
+ - -1.6364955869389113
+ - -1.0130955133327564
+ - -0.9768482255559214
+ - -0.176758700216989
+ - 1.436286005846109
+ - 2.099149180022669
+ - 0.9389211536951249
+ - -0.20115008112280514
+ - -1.2589757720281565
+ - -1.7632028217740077
+ - -1.505988297217235
+ - -0.7406856835280647
+ - -0.620649876475733
+ - 0.05556791349126927
+ - 1.3748929714507998
+ - 1.895256914737165
+ - 0.6891600596283439
+ - -0.4762871160838326
+ - -1.4959145909717302
+ - -2.0864911380885878
+ - -1.5954838752150564
+ - 0.1733031303987264
+ - 0.858289257400027
+ - 1.374588525068543
+ - 1.7745955457139606
+ - 1.4115653509412123
+ - 0.42351722325283075
+ - -0.740069981904478
+ - -1.668992837091985
+ - -3.7439566414765477
+ - -2.7707137215533897
+ - 0.5437556415701155
+ - 1.0154067311755166
+ - 1.2653675423529438
+ - 1.7646417344609262
+ - 1.5055555703887058
+ - 0.5801887807102681
+ - -0.588492722872127
+ - -1.573408152003074
+ - -2.166515793855116
+ - -1.6237170936060512
+ - 0.2839553216054681
+ - 1.0094915920560987
+ - 1.4469512165444118
+ - 1.7737991833648699
+ - 1.51086129603223
+ - 1.6580778109195446
+ - 1.040618537998999
+ - 0.6633913480491143
+ - 0.3994808859700521
+ - -0.6168208429540749
+ - -1.5188736579567041
+ - -1.7700188888256
+ - -1.2393973722897735
+ - -0.17941312782856156
+ - 0.9530929714521462
+ - 1.4378080393083716
+ - 1.1904896377593135
+ - 0.4482664458082321
+ - 0.022404500344789524
+ - -0.8729967403435193
+ - -1.646275494565946
+ - -1.877639887635368
+ - -2.2711792901117183
+ - -1.2798125393253401
+ - 1.3367755876943976
+ - 2.321640858795704
+ - 1.7317308021805913
+ - 1.1079259079558652
+ - 0.0043495132944854535
+ - -1.1042258322189116
+ - -1.7306827871642685
+ - -1.783933219632198
+ - -2.3379494295789423
+ - -1.1039134862416011
+ - 1.3246580006993198
+ - 1.4315675882772214
+ - 0.9192628012879278
+ - 0.8382293455724871
+ - -0.3596063356075518
+ - -1.362309518877227
+ - -1.781961357465685
+ - -1.4150334276224628
+ - -0.44214228791289073
+ - 0.6903730111864207
+ - 1.1586950967552276
+ - 1.0926910573254238
+ - 0.6535010088886183
+ - 0.38777609949937764
+ - -0.6303221567430057
+ - -1.5255828434268788
+ - -1.9207391697203084
+ - -2.328069019092256
+ - -1.2751052610938771
+ - 1.0713980394004585
+ - 2.146563876332863
+ - 1.7705169050964622
+ - 1.302582330739371
+ - 0.2716112587896875
+ - -0.8823021488634137
+ - -1.6492130892151684
+ - -1.8719245428436926
+ - -2.219659138161436
+ - -1.1451582026307052
+ - 1.2158656140680133
+ - 2.2826638409116455
+ - 1.7276577008614227
+ - 1.0976684460099433
+ - 0.09301516955452777
+ - -0.2104353345389796
+ - -0.5572702287923785
+ - -1.2332468265963283
+ - -1.3358518564047237
+ - -0.09196952009735407
+ - 1.030090073294105
+ - 1.7126854671513043
+ - 1.6400638419002935
+ - 0.8627702790400118
+ - -0.21294073415531778
+ - -1.0240689694859875
+ - -0.9265936000370836
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.8502286553086296
+ - -3.7691943951334883
+ - -0.8056301435708363
+ - 0.5454227886832301
+ - 1.6667220793787354
+ - 2.054343042040698
+ - 1.556119623736494
+ - 0.5301857026036063
+ - 0.29755573493003584
+ - -0.287465094736578
+ - -1.6498118599833678
+ - -1.9705855546802495
+ - -0.49641993979560867
+ - 0.8510919387201601
+ - 1.9294810834663485
+ - 2.544370642793492
+ - 1.687060325673032
+ - -0.36260497447524465
+ - -1.3642116555090502
+ - -1.7744284345581975
+ - -2.0361223510397304
+ - -1.4215645192663986
+ - -0.1768672284575855
+ - 1.1356153184638862
+ - 2.082512309461614
+ - 2.680427684138093
+ - 1.6906979349091165
+ - -0.6204457192392202
+ - -1.7267689035264875
+ - -1.9174598202996505
+ - -1.967130620987746
+ - -1.3590893216919886
+ - -1.404306844885322
+ - -0.46556159957163373
+ - 1.8157992931689566
+ - 2.6001138802323314
+ - 1.2581929080882994
+ - -0.02611601838866597
+ - -1.3041561800145927
+ - -2.009236763276712
+ - -1.8457587969089795
+ - -1.061326518280469
+ - -1.1166344224766824
+ - -0.1340501619800767
+ - 2.0666089489947326
+ - 2.067081148975006
+ - -0.12508335184510433
+ - -1.102517377815311
+ - -1.5890831440595883
+ - -2.0561130775041265
+ - -1.6390749321767943
+ - -0.4962950429987484
+ - 0.852286474664819
+ - 1.9307309555179262
+ - 2.594927804303034
+ - 1.8146976110988937
+ - -0.4569940017410972
+ - -1.3924929704095752
+ - -1.7764017723201084
+ - -2.0377543352868526
+ - -1.6202255376300494
+ - -1.7371729971998242
+ - -0.6280678217374018
+ - 1.6901515979760646
+ - 2.6835422607948276
+ - 1.4980748700567832
+ - 0.29704054416436604
+ - -1.0366325575747148
+ - -1.9157665396815526
+ - -1.9653751217037705
+ - -1.3563954962051978
+ - -1.3758139265821896
+ - -0.3706083175431384
+ - 1.6878149687964337
+ - 2.5495021524137864
+ - 1.2568767897557924
+ - -0.026607653357686827
+ - -1.3161298711222804
+ - -1.9607143131811628
+ - -1.6449453078332357
+ - -0.296700312784151
+ - 0.28390526072595157
+ - 1.2069982582913246
+ - 1.980351556839256
+ - 1.9034644853832616
+ - 0.9849058367539402
+ - -0.35102426329687875
+ - -1.584779911730881
+ - -3.755770336314728
+ - -2.8414733488933437
+ - -0.23740466522155873
+ - -0.0165593007660704
+ - 1.0485925729220464
+ - 1.9208859340474134
+ - 1.9689463192112258
+ - 1.1467324965989207
+ - -0.16306689919714468
+ - -1.4334277284488646
+ - -2.092593914615104
+ - -1.7085760009375395
+ - -0.16831477724423444
+ - 0.471707432670498
+ - 1.3157915186563338
+ - 2.0140611400216306
+ - 2.0464648607856977
+ - 2.3631566748866066
+ - 1.1269353664728725
+ - 1.1276606192576493
+ - 1.141028304849972
+ - -0.1971925655014552
+ - -1.4262592062176107
+ - -2.045589339206127
+ - -1.762356501451118
+ - -0.7232744408978085
+ - 0.5704929529630394
+ - 1.0465627327288498
+ - 1.079682046509406
+ - 0.913338994295376
+ - 0.7293195386130349
+ - -0.5185350085196965
+ - -1.6425621524558398
+ - -2.2300001141414616
+ - -2.794010322962238
+ - -1.7057594750240541
+ - 1.2456725511538407
+ - 2.386564186475652
+ - 2.0548066241948373
+ - 1.649682768484089
+ - 0.5322206655909998
+ - -0.8236344048423853
+ - -1.8163742281525692
+ - -2.211426909550627
+ - -3.0087932311919103
+ - -1.5791350604322751
+ - 1.1271895940549654
+ - 1.2853729220193455
+ - 1.4169930363736059
+ - 1.6950966265304488
+ - 0.11216579779530438
+ - -1.1886232277433026
+ - -1.9823434467612835
+ - -1.90194406026444
+ - -1.0043325027688421
+ - 0.24058061755805402
+ - 0.6665488787340348
+ - 0.8860052079819072
+ - 1.1576877821076008
+ - 1.1433980576230096
+ - -0.21411376562050652
+ - -1.438861519644312
+ - -2.196361938292502
+ - -2.754407624992381
+ - -1.6402489554599213
+ - 0.9050430546399435
+ - 2.0993115532015296
+ - 2.0227232602298995
+ - 1.815851308816703
+ - 0.8258147900121627
+ - -0.5320450895528868
+ - -1.6521445769622616
+ - -2.231174581555167
+ - -2.7403100308894173
+ - -1.5518358630153453
+ - 1.1207966600358144
+ - 2.3562340984942303
+ - 2.057177874398999
+ - 1.6429155430220819
+ - 0.6740381539579202
+ - 0.48523410680000684
+ - -0.15900464436678807
+ - -1.712898088300496
+ - -2.1018053524568194
+ - -0.6280598700934223
+ - 0.725495166057582
+ - 1.7717205218968533
+ - 2.037643438703516
+ - 1.4257087201084457
+ - 0.32847769176411673
+ - 0.006184677623231648
+ - -0.22107862640807027
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.4617757334420904
+ - -2.2986577064906313
+ - -1.7842305968619525
+ - -2.0250090413472845
+ - -1.3942419105938162
+ - -0.1453726716991721
+ - 1.15771844012578
+ - 2.087699504745109
+ - 2.7546419623749583
+ - 1.9227997610690808
+ - -0.8081236751540307
+ - -1.7920091885141236
+ - -1.9223614940142149
+ - -1.9514619356010245
+ - -1.3278536810862696
+ - -1.3387394828645665
+ - -0.3470000295660232
+ - 1.6798984438827782
+ - 2.5264173903270257
+ - 1.2294596816530974
+ - -0.05705391953141917
+ - -1.3239766817755356
+ - -2.0091489870600476
+ - -1.8259297662684344
+ - -1.0281821320290199
+ - -0.941425047019606
+ - -0.08058822543516829
+ - 1.6314367418064077
+ - 2.3232990210128697
+ - 0.9549355335318787
+ - -0.3788165762814502
+ - -1.6013306940564327
+ - -2.253758517966385
+ - -1.700642132611872
+ - 0.018767354728831814
+ - 0.7642428473284859
+ - 1.4706572863347627
+ - 2.0395596295274547
+ - 1.731918946388613
+ - 0.6577973548806617
+ - -0.6920190588740415
+ - -1.8254618539311687
+ - -2.7549050783110016
+ - -1.8201477266793897
+ - -0.3323256628990142
+ - -0.1390198485046562
+ - 1.8496949538562695
+ - 3.0079532826156044
+ - 1.4702108934862863
+ - 0.26326982215227634
+ - -1.061789603281173
+ - -1.9211583505584016
+ - -1.9488164618566308
+ - -1.3231797700052852
+ - -1.3566262855230904
+ - -0.4327316840438302
+ - 1.8058357639136182
+ - 2.572672257652127
+ - 1.2263038763408947
+ - -0.059639767935550925
+ - -1.3405971152281466
+ - -1.928314201171115
+ - -1.4890779346642027
+ - -0.3049097553637674
+ - 0.3297794608994099
+ - 1.2296330233499733
+ - 1.9824275178435158
+ - 1.8840028981791375
+ - 0.9524557774600734
+ - -0.3824260294604512
+ - -1.6045878471313166
+ - -2.213977726306543
+ - -1.5962939908660776
+ - -0.03781624009905626
+ - 0.7578945597739084
+ - 1.4742072624967775
+ - 2.0412707381325377
+ - 1.9318353772651309
+ - 2.24029111871354
+ - 1.1838063536103591
+ - -1.8561907720726187
+ - -2.8209438602052215
+ - -1.7838279240787394
+ - -0.7688770036835143
+ - 0.5812788722799006
+ - 1.6782383773269478
+ - 2.046355103495752
+ - 1.7324290899800183
+ - 3.156815570958498
+ - 2.1108118144956314
+ - -3.303594660454233
+ - -4.618159313937697
+ - -1.8692286921846268
+ - -0.9403075380777158
+ - 0.39734457210091045
+ - 1.5630766219152334
+ - 2.0490233021033237
+ - 1.8534071527092386
+ - 2.1202320102503607
+ - 1.079296351323596
+ - -1.8863118729047674
+ - -2.817156044660605
+ - -1.7132759152193304
+ - -0.642798567174021
+ - 0.6552472600798995
+ - 1.1453367556834952
+ - 1.1283258780756307
+ - 1.1202833408710342
+ - 2.3535111680907073
+ - 2.052163928547812
+ - 1.6346636313977556
+ - 0.5112516406018478
+ - -0.841300032356714
+ - -1.823160635107736
+ - -2.2049870774886204
+ - -2.6506617237292547
+ - -1.4201321084790761
+ - 1.3070571202742742
+ - 2.549913550692665
+ - 2.0342734224906405
+ - 1.4204644112612794
+ - 0.3241592057169528
+ - 0.04097132687661234
+ - -0.45419551680473425
+ - -1.473541672789487
+ - -1.7482258950299787
+ - -0.30588375066519913
+ - 1.0219728015220697
+ - 1.914665287582321
+ - 1.9634319123698034
+ - 1.1676903863657502
+ - -0.028975988205903195
+ - -0.43987010374400665
+ - -0.783600858895137
+ - -1.8497384711840517
+ - -1.7547693992290214
+ - 1.0232107445071448
+ - 2.397634695231516
+ - 2.021839999791372
+ - 1.7954884781118525
+ - 0.794701230029615
+ - -0.560186141775668
+ - -1.6652335617932785
+ - -2.224646723935925
+ - -2.778814636971805
+ - -1.6849868900446077
+ - 1.2738028385208506
+ - 2.4146635466893396
+ - 2.0512745694316323
+ - 1.6189788184577618
+ - 0.6398683431465749
+ - 0.44026068099209037
+ - -0.2372512099664237
+ - -1.5202206554183337
+ - -2.00625658122264
+ - -0.5965838916569483
+ - 0.752082988954004
+ - 1.7819502179993953
+ - 2.0269472558935653
+ - 1.3988223546950376
+ - 0.2942334286561969
+ - 0.004860947360628755
+ - -0.49924981877876795
+ - -1.3846210121609672
+ - -1.6834794201324734
+ - -0.2789831069692994
+ - 1.0434216794270743
+ - 2.03205111966493
+ - 2.708037354426277
+ - 1.9236338504997303
+ - -0.6891627085409661
+ - -1.6419475629665745
+ - -1.869651390214252
+ - -1.9873051726937205
+ - -1.2491789161191518
+ - 0.04321961186290951
+ - 1.3084684374382691
+ - 2.1496018554883065
+ - 4.619339590460654
+ - 3.3558733463782713
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.5485042026235061
+ - -1.0213281165417722
+ - -1.2650525773400523
+ - -1.760970856829068
+ - -1.500094944537464
+ - -0.5753524646630546
+ - 0.5906329393793932
+ - 1.5721059347079687
+ - 2.1638920083005866
+ - 1.6207546238444304
+ - -0.28672560863370244
+ - -1.0118273392274235
+ - -1.4457692035996992
+ - -1.7695221172552713
+ - -1.5048824043981042
+ - -1.6506780026449355
+ - -0.6567700684425926
+ - 1.4408387364931012
+ - 2.3493211166336354
+ - 1.390679673802325
+ - 0.4074071520306428
+ - -0.7552123523967076
+ - -1.5872221465419996
+ - -1.7312753664581124
+ - -1.2963571942149528
+ - -1.359318789949274
+ - -0.4418911170834145
+ - 1.4590451085513947
+ - 2.2656443745152437
+ - 1.200286653842315
+ - 0.13153585335200277
+ - -0.9936781922542574
+ - -1.5118160337235762
+ - -1.2731379790343615
+ - -0.389321615148977
+ - 0.0394949263831449
+ - 0.9103612345428255
+ - 1.6570623798705688
+ - 1.6927102476409
+ - 0.9801673162716361
+ - -0.1490740205732343
+ - -1.2414708756627753
+ - -1.9816346293253193
+ - -1.4437433518457583
+ - -0.7294437289382346
+ - -0.573046925771506
+ - 1.5253937964147293
+ - 2.680878001570699
+ - 1.5443043250214925
+ - 0.6711972910400124
+ - -0.4944874926792328
+ - -1.44482304666175
+ - -1.7676463974829677
+ - -1.5013775818070079
+ - -1.6764233789562961
+ - -0.7546137087932853
+ - 1.5638264724733089
+ - 2.393070110250177
+ - 1.3885651706536415
+ - 0.40567724206464056
+ - -0.7244117953666123
+ - -1.174179055407175
+ - -1.0656512492834584
+ - -0.62338219041971
+ - -0.33083566126375336
+ - 0.6617865330826339
+ - 1.538815687987453
+ - 1.7562407194123821
+ - 1.197902001256948
+ - 0.1282224172813464
+ - -0.9969159180671411
+ - -1.485957007090046
+ - -1.2098104874303894
+ - -0.40662038059813715
+ - 0.04563083150587972
+ - 0.9135287441367551
+ - 1.6585569965129554
+ - 1.8572311736641556
+ - 2.2505567390959027
+ - 1.3248731908863718
+ - -1.4366894883796912
+ - -2.3471067832118617
+ - -1.7130912636161209
+ - -1.0636633036212033
+ - 0.04656262608091594
+ - 1.139302237189756
+ - 1.7349458931732806
+ - 1.7556391116792769
+ - 3.39247777053655
+ - 2.3419415226901115
+ - -2.62172852817525
+ - -3.7352102776235507
+ - -1.746942960224392
+ - -1.1892072905679398
+ - -0.11693982513468675
+ - 1.0100157275972554
+ - 1.695233512125557
+ - 1.819865667515324
+ - 2.1827350078802152
+ - 1.2544359993929732
+ - -1.4896770359894789
+ - -2.3858773692584294
+ - -1.6802080000819755
+ - -0.9690986911993023
+ - 0.07459105536894395
+ - 0.40082049914853624
+ - 0.6624482097101507
+ - 1.03538128245388
+ - 1.6512287537798394
+ - 1.7053777990438883
+ - 1.641172914881105
+ - 0.8696210379577046
+ - -0.2885133168738517
+ - -1.3149181949270055
+ - -1.9122667031858889
+ - -2.379144667088915
+ - -1.3902770752670464
+ - 0.8547345793526929
+ - 1.9019567834962123
+ - 1.762480618387429
+ - 1.5159419972746204
+ - 0.7592315719577053
+ - 0.6556081678784634
+ - 0.012281226561675527
+ - -1.470496374841195
+ - -1.9470454868120783
+ - -0.7054067733187694
+ - 0.45988851519276425
+ - 1.4315629394914353
+ - 1.7730965055688268
+ - 1.3500154196653809
+ - 0.4691928267154713
+ - 0.31416341517175905
+ - -0.2826168003475671
+ - -1.748673953658311
+ - -1.7070254601403094
+ - 0.5127282799771827
+ - 1.5635192980507504
+ - 1.6119114501297573
+ - 1.7184384818117837
+ - 1.085014079917411
+ - -0.02982445445185138
+ - -1.1244460625790973
+ - -1.85468888285677
+ - -2.3982441837036195
+ - -1.5615598092956502
+ - 0.7733767422954377
+ - 1.70021075333336
+ - 1.7084289896906217
+ - 1.6312821214443542
+ - 1.0073385308793419
+ - 0.970053402202338
+ - 0.17332701829342775
+ - -1.4324052275010963
+ - -2.0919580567273557
+ - -0.933612730817614
+ - 0.20436491944807847
+ - 1.2587103416076728
+ - 1.7595600386374617
+ - 1.5005555963344182
+ - 0.7352652034298233
+ - 0.6144098070575288
+ - -0.05848556775653052
+ - -1.3706865114895708
+ - -1.887870156695563
+ - -0.6841561471545142
+ - 0.4787613158932521
+ - 1.4950062460780875
+ - 2.084350979682708
+ - 1.5928122120025945
+ - -0.1763598801394682
+ - -0.8611038976643522
+ - -1.3737687831636025
+ - -1.7705610086611472
+ - -1.4060415088766094
+ - -0.418946350012121
+ - 0.7417340091144852
+ - 1.6671588074343462
+ - 3.7384788430959306
+ - 2.766194437850548
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.478857975800511
+ - 1.7663288574332496
+ - -0.29208173117670405
+ - -1.4766529149757448
+ - -2.029600372114659
+ - -1.6868723639256102
+ - -0.6211371728581141
+ - 0.6653319578130641
+ - 1.1932426566514232
+ - 1.2213548540558
+ - 0.8756973513477632
+ - 0.6177666777553498
+ - -0.6061897516096741
+ - -1.6783510409803715
+ - -2.2013455378408877
+ - -2.6893496396459877
+ - -1.5031730769353573
+ - 1.154499216027114
+ - 2.3786592936786985
+ - 2.028751492706614
+ - 1.567737999654934
+ - 0.4294753769204854
+ - -0.9018213735473025
+ - -1.8365381474005524
+ - -2.1661909646126265
+ - -2.5903084123472047
+ - -1.368049054751092
+ - 1.3316705202921504
+ - 2.5578784074045533
+ - 1.9987761116980336
+ - 1.3469713329205304
+ - 0.2368195818486694
+ - -0.0656107345503344
+ - -0.5155659576297408
+ - -1.4147303293431335
+ - -1.6439142338680293
+ - -0.22534634557189154
+ - 1.0768058884032468
+ - 1.920065652019997
+ - 1.916878761442695
+ - 1.0895459785889363
+ - -0.11284895848576841
+ - -0.5508334631336048
+ - -0.8375230440315302
+ - -1.7933192385446697
+ - -1.693574003973974
+ - 1.0561098952606691
+ - 2.4227602206660124
+ - 2.008038723699503
+ - 1.7493207104208792
+ - 0.7358971350682508
+ - -0.6056656110818954
+ - -1.6779186114566906
+ - -2.1999029637252745
+ - -2.738268792879315
+ - -1.6477028370066418
+ - 1.293769207393398
+ - 2.424800505171097
+ - 2.028662473400435
+ - 1.5676782330558672
+ - 0.5767109654756681
+ - 0.36406662623975256
+ - -0.2785123527173682
+ - -1.4837981179642918
+ - -1.9343715945735116
+ - -0.5383569680940783
+ - 0.7937082608203208
+ - 1.7889654553823566
+ - 1.9961614245766057
+ - 1.3437231902449767
+ - 0.23301808530800708
+ - -0.06736046797110216
+ - -0.536011779557095
+ - -1.343634773438993
+ - -1.6074949108164032
+ - -0.2224750014945296
+ - 1.078076929185678
+ - 2.032996579752283
+ - 2.6984106590903023
+ - 1.903529665816666
+ - -0.728593849401369
+ - -1.683723259139392
+ - -1.8707307170139473
+ - -1.9517497186568238
+ - -1.1921675403564835
+ - 0.09655004577328843
+ - 1.3352070669403333
+ - 2.1404705369282633
+ - 4.581264573995594
+ - 3.3222828722421007
+ - -1.5247403725248085
+ - -2.3788195176469706
+ - -1.790696286235039
+ - -1.993886306780031
+ - -1.3387981078811746
+ - -0.09004188354413177
+ - 1.1891415924146014
+ - 2.0843952810315693
+ - 2.739687161810416
+ - 1.899318701895233
+ - -0.8449106268401155
+ - -1.829088059319893
+ - -1.9195366700273822
+ - -1.9128955334935756
+ - -1.2660383422394308
+ - -1.2606497724257035
+ - -0.2996759783018378
+ - 1.65644626002653
+ - 2.4695865734460374
+ - 1.2175386849454495
+ - 1.9654810938427436
+ - 1.8694979357297867
+ - 0.9468029895378006
+ - -0.3768518030763346
+ - -1.589532301412349
+ - -2.1938180211630187
+ - -1.5824905064692087
+ - -0.03954672547284022
+ - 0.7485061154787461
+ - 1.4603583459068994
+ - 2.024228020734334
+ - 1.9172664638529167
+ - 2.213050738688103
+ - 1.1028909843562402
+ - -1.740368592453387
+ - -2.7776297364766664
+ - -1.7703665920538834
+ - -0.7648398831448144
+ - 0.5741206820610412
+ - 1.6630118656581
+ - 2.029663301346998
+ - 1.7198025596583375
+ - 2.1325078400674102
+ - 0.8329538946871964
+ - -1.8422587018244674
+ - -1.9171635876828887
+ - -0.5816596627556927
+ - -0.08798949923708997
+ - 0.9591503154676099
+ - 1.86235484866918
+ - 1.9666880794057677
+ - 1.2018993433180785
+ - -0.07457552513013578
+ - -1.340907623879353
+ - -1.9620801618052304
+ - -1.567729599441617
+ - -0.2484557072786022
+ - 0.3536231649954728
+ - 1.2303529433637275
+ - 1.96724489120382
+ - 2.054389177978153
+ - 2.3887824650092973
+ - 1.1638595605569344
+ - -1.4973285465117399
+ - -2.6859278046421866
+ - -1.8957555924739171
+ - -1.034976311355813
+ - 0.27506766559680834
+ - 1.4671612223126567
+ - 2.020538039068287
+ - 1.9026886170330055
+ - 2.152222285966902
+ - 0.9588073963716072
+ - -1.596352883666192
+ - -2.720307068593991
+ - -1.75829402130595
+ - -0.7484224569492197
+ - 0.5236629516204941
+ - 1.0218773045576017
+ - 1.1210143136855737
+ - 0.9867979164698276
+ - 0.798423480625657
+ - -0.47562261872527734
+ - -1.5983888118277387
+ - -2.036839305690744
+ - -1.5760969168000678
+ - -0.44075687958249693
+ - 0.8556280834268017
+ - 2.387570082844738
+ - 1.9114855630851135
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.0120191295921983
+ - 4.027808467865949
+ - 1.0188472397296753
+ - -0.2948395645904582
+ - -1.4865909759168165
+ - -2.0244904414295894
+ - -1.6883831570163739
+ - -0.7820962604731552
+ - -0.632309704346234
+ - 0.050885001959166766
+ - 1.738818014646099
+ - 2.1778945420090685
+ - 0.7283313242220284
+ - -0.6076930564224936
+ - -1.7559142785642465
+ - -2.3658553588778353
+ - -1.6347387751388422
+ - 0.15525695456484265
+ - 1.0475580047663728
+ - 1.6137946886408474
+ - 2.031104748316424
+ - 1.5749314522647002
+ - 0.4212596085050636
+ - -0.9058766743115698
+ - -1.9446529216834385
+ - -2.549647791069159
+ - -1.6709007472384023
+ - 0.4174996553222038
+ - 1.4327929481686008
+ - 1.7895194329522146
+ - 2.0018264674112944
+ - 1.5467048725469397
+ - 1.6713562404837767
+ - 0.6705693266368618
+ - -1.807402341109635
+ - -2.678168586765548
+ - -1.4304392533985415
+ - -0.2231873566770925
+ - 1.0849105634347451
+ - 1.9170517524546966
+ - 1.9194298368669687
+ - 1.2780743243773116
+ - 1.4465970627517655
+ - 0.3556068775885549
+ - -2.013845815893908
+ - -2.037929459527685
+ - -0.10160849220006518
+ - 0.7285788625434553
+ - 1.4001272557769633
+ - 2.0118477815886244
+ - 1.759131163942233
+ - 0.7280587029962051
+ - -0.6092044837125768
+ - -1.7577247284682351
+ - -2.413924139026838
+ - -1.7511513543280015
+ - 0.2337048102587379
+ - 1.0700211846374894
+ - 1.6161385937615744
+ - 2.033041851208688
+ - 1.7744514812255803
+ - 1.9625056947802408
+ - 0.8062726885071019
+ - -1.6429528633918906
+ - -2.708026830490865
+ - -1.6394653463832272
+ - -0.5374608030129759
+ - 0.8003825765967437
+ - 1.7881373486429648
+ - 2.000520091104211
+ - 1.5444239477750241
+ - 1.638170697005432
+ - 0.5634273734248052
+ - -1.6732589932846806
+ - -2.6270745002184395
+ - -1.429564722875029
+ - -0.22290849875197072
+ - 1.072391136713128
+ - 1.6755017821655247
+ - 1.4906491305000278
+ - 0.5217044021764253
+ - 0.0623717418558321
+ - -0.9819826584760153
+ - -1.8747680223587269
+ - -1.9632662036377795
+ - -1.1841186355635251
+ - 0.09897676812323068
+ - 1.36381882653859
+ - 3.3480322984231776
+ - 2.5668919612485768
+ - 0.6395715177432048
+ - 0.5806128881076374
+ - -0.8140782902654272
+ - -1.7947107509560063
+ - -2.005893188394666
+ - -1.330923545236435
+ - -0.08819903827387159
+ - 1.1985803773952948
+ - 1.8212725427125322
+ - 1.5666723619118488
+ - 0.397752339785033
+ - -0.12478897805461535
+ - -1.0987546237918078
+ - -1.923680765409256
+ - -2.1144604337226363
+ - -2.4891555764290825
+ - -1.2581355483418328
+ - 1.4352444635608872
+ - 2.6469538344498553
+ - 1.9505719852753045
+ - 1.2181742312386399
+ - 1.9710923833246587
+ - 1.8547521289383881
+ - 0.9417306343255215
+ - -0.2977763943352313
+ - -0.7166010314758223
+ - -0.8998441367827852
+ - -1.0676288687715496
+ - -1.0365189257897351
+ - 0.2669794605544524
+ - 1.459370436384738
+ - 2.177273433527577
+ - 2.772556942721709
+ - 1.7512008940944694
+ - -1.0583343404700156
+ - -2.1589539360010623
+ - -2.005343751504482
+ - -1.7648128438787032
+ - -0.7629786459019328
+ - 0.5789359331122212
+ - 1.663037128525472
+ - 2.2019480516662213
+ - 3.0448147306921682
+ - 1.6655615811386186
+ - -0.8945916322025502
+ - -1.063445135353008
+ - -1.5336442064894784
+ - -1.9780091454866973
+ - -0.3584912800582198
+ - 0.9622907562442448
+ - 1.8735952375423257
+ - 1.9591783105224958
+ - 1.2018422203989507
+ - 0.03259630086726011
+ - -0.32316600348583313
+ - -0.6749541336891632
+ - -1.3064782696389308
+ - -1.431639120149516
+ - -0.03772830944311873
+ - 1.23261899808198
+ - 2.1052667711024236
+ - 2.6844120049339963
+ - 1.6595751368736937
+ - -0.7140060633317412
+ - -1.8418713632865173
+ - -1.9379371077769492
+ - -1.8970348003053086
+ - -1.0386334680986042
+ - 0.2813022587196194
+ - 1.4715409375289776
+ - 2.182095754260979
+ - 2.723583606831314
+ - 1.603686696991586
+ - -0.945055188355145
+ - -2.136713419865225
+ - -2.010986515273689
+ - -1.7607061766958265
+ - -0.9183035977549641
+ - -0.8131897783298536
+ - -0.07691928727063865
+ - 1.7870009998352252
+ - 2.29000984214609
+ - 0.8527570357069221
+ - -0.4784591756372675
+ - -1.6086928831374234
+ - -2.030927560874041
+ - -1.5771553635045172
+ - -0.5891369485592444
+ - -0.5704451932305019
+ - -0.19017497959049323
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.2512951167852164
+ - 4.559767220349782
+ - 1.894797049461943
+ - 1.0181566359925376
+ - -0.3005604851824174
+ - -1.490083825294082
+ - -2.0310467979950797
+ - -1.897120701148722
+ - -2.19134688023096
+ - -1.145509736606412
+ - 1.854911058635864
+ - 2.803985632913672
+ - 1.7532540707916564
+ - 0.7287055725502027
+ - -0.5516343391942035
+ - -1.0208578603988028
+ - -1.06167975590898
+ - -0.9143447993396299
+ - -0.7398858229126826
+ - 0.5013900129311462
+ - 1.6200209268352896
+ - 2.045004042189888
+ - 1.5671451057867385
+ - 0.4186583909214242
+ - -0.883625213681274
+ - -1.4091784876333049
+ - -1.254115239753232
+ - -0.6798488091476727
+ - -0.3140894685710417
+ - 0.8077235440518237
+ - 1.7955117124379096
+ - 2.1939401027207492
+ - 2.693360376819305
+ - 1.5715150797191668
+ - -1.4218681655140057
+ - -2.5608376435887816
+ - -2.022671824617555
+ - -1.4313365797894846
+ - -0.22101214755531456
+ - 1.090390233358209
+ - 1.9242763500393694
+ - 2.1224843078624507
+ - 2.8268893461340188
+ - 1.39941642723381
+ - -1.366540416277467
+ - -1.5044868315328035
+ - -1.2194372495658874
+ - -1.2856016651408282
+ - 0.18626588217053613
+ - 1.4075478057543709
+ - 2.0271206797056998
+ - 1.752299590643702
+ - 0.7258956866721702
+ - -0.5559261445775888
+ - -1.047337739213287
+ - -1.0996695546535828
+ - -0.9307607080427597
+ - -0.7508697415544829
+ - 0.5051621341417122
+ - 1.6231243160987283
+ - 2.210931429336671
+ - 2.7199380445217116
+ - 1.5469946659966334
+ - -1.0940331270655126
+ - -2.3163242553151893
+ - -2.037204930171859
+ - -1.6413443093378224
+ - -0.5367703099051967
+ - 0.808174019648178
+ - 1.7967137360691303
+ - 2.1941668832491876
+ - 2.6429446352026083
+ - 1.4235930238125967
+ - -1.282318686964381
+ - -2.5170486903498195
+ - -2.0241773824471587
+ - -1.4321735387933046
+ - -0.354007587408156
+ - -0.07353608894433548
+ - 0.4334396310864196
+ - 1.5512375343010927
+ - 1.7874991236262139
+ - 0.3333207981373883
+ - -0.9889270377192025
+ - -1.890218861779799
+ - -1.958422942987172
+ - -1.1841442360698908
+ - -0.0036954137532840626
+ - 0.666589460326484
+ - 0.7018218338106991
+ - 2.5353872005920044
+ - 3.29967868392346
+ - 0.5169753604731827
+ - -0.8207901725704441
+ - -1.8101029601310248
+ - -2.0019869515551245
+ - -1.331840028838914
+ - -0.20719902354442224
+ - 0.11421370618083761
+ - 0.5571821809525594
+ - 1.4730856615479988
+ - 1.6391244467093384
+ - 0.19871578292969852
+ - -1.1048100096621392
+ - -2.053788621564502
+ - -2.648250942143695
+ - -1.6772111608761464
+ - 0.5942623812422726
+ - 1.6832815320405357
+ - 1.8899581081491506
+ - 1.9549417670320375
+ - 1.2228901605613522
+ - 1.9658226991972394
+ - 1.8586196026901864
+ - 1.1268024709260518
+ - 1.074710478393818
+ - 0.17322986382473235
+ - -1.6387301986062337
+ - -2.3805523847211596
+ - -1.0456052918888863
+ - 0.2631596318052555
+ - 1.499096994574888
+ - 2.138150649541652
+ - 1.6464117627860722
+ - 0.08248307998015283
+ - -0.6070108820454283
+ - -1.3762060002116685
+ - -2.007010656545391
+ - -1.775544817128545
+ - -0.7585235277918687
+ - 0.5778890765745098
+ - 1.7360228985532036
+ - 2.6469838492721496
+ - 1.7826337631250584
+ - 0.44213930349001157
+ - 0.2518451261168402
+ - -1.8273949505608846
+ - -3.021323168606179
+ - -1.5259906699892718
+ - -0.35587422140118297
+ - 0.9720965347080747
+ - 1.874027984171455
+ - 1.9642359250765744
+ - 1.3967089617979667
+ - 1.460702034905767
+ - 0.5119679593563082
+ - -1.8046044950983615
+ - -2.6054925953558943
+ - -1.2938465955325182
+ - -0.036140326449855556
+ - 1.2483059148952969
+ - 1.8232506251456624
+ - 1.4411933949630842
+ - 0.3799345244269368
+ - -0.20053484650680362
+ - -1.1444197249679118
+ - -1.9438240824685322
+ - -1.9088298469840244
+ - -1.0299143694246577
+ - 0.2859937821184813
+ - 1.521303785500304
+ - 2.122194354881648
+ - 1.559078334908002
+ - 0.11606376734964749
+ - -0.6295609492528531
+ - -1.3971895322231047
+ - -2.0170276238586298
+ - -1.969100096816308
+ - -2.3037587664143135
+ - -1.2457485186183697
+ - 1.81918024113671
+ - 2.7989697069646713
+ - 1.8178515847664178
+ - 0.8516394588306796
+ - -0.48525359999080014
+ - -1.6113561973608703
+ - -2.037178555168343
+ - -1.7847131212069496
+ - -3.292473367281117
+ - -2.2169534272676983
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.057232504432223
+ - 3.0820495349375765
+ - 1.9372647239396588
+ - 1.8853967584114741
+ - 1.0209986165317055
+ - -0.297157492574912
+ - -1.4788037521178543
+ - -2.1782371911309837
+ - -2.7878238149621275
+ - -1.8396882127135405
+ - 1.15321140507635
+ - 2.1949871911862906
+ - 2.007493868777163
+ - 1.7470649043677606
+ - 0.8989526852429874
+ - 0.7777435541902648
+ - -0.018945530131497818
+ - -1.5833652811350631
+ - -2.205489380563091
+ - -0.8349319997224761
+ - 0.49341837964363167
+ - 1.6143313376620108
+ - 2.0247339002014715
+ - 1.5618670203807294
+ - 0.5697714156986293
+ - 0.3556473803431769
+ - -0.28317360729406466
+ - -1.4801078205799552
+ - -1.9268220950105324
+ - -0.5327669504706799
+ - 0.7967921130153435
+ - 1.8751882826454291
+ - 2.5300560945255643
+ - 1.7816210468441909
+ - -0.40827206840848046
+ - -1.3137863103223864
+ - -1.724315161653172
+ - -2.0112402899831117
+ - -1.432731149482862
+ - -0.21924365501815726
+ - 1.0804562143865757
+ - 2.032916006967956
+ - 2.9638803227685666
+ - 1.8286467252463903
+ - -0.1149186203701917
+ - -0.306173415396384
+ - -1.8022495467489763
+ - -2.737829997237982
+ - -1.1127858696815272
+ - 0.18095319970779353
+ - 1.4017484122931705
+ - 2.0062781732141635
+ - 1.7441927798427763
+ - 0.894066459989867
+ - 0.7845863485734484
+ - 0.03843817400259214
+ - -1.6876424448969252
+ - -2.2451598811190054
+ - -0.8313920711501208
+ - 0.4963237687588321
+ - 1.6734050306839137
+ - 2.279678392994385
+ - 1.6072910089535528
+ - -0.061229469442651174
+ - -0.9020595686949356
+ - -1.5374595245991682
+ - -2.024100060737991
+ - -1.640536492989796
+ - -0.5306789044405053
+ - 0.7999816894174208
+ - 1.8778311162038321
+ - 2.484603365796816
+ - 1.6580568685328942
+ - -0.32484910139634293
+ - -1.2966405836113355
+ - -1.7275429450955109
+ - -2.012825752003115
+ - -1.6278478978155189
+ - -1.7945218413888575
+ - -0.8175803861343286
+ - 1.8991954725823261
+ - 2.7285945820086397
+ - 1.504911291169365
+ - 0.335285219250301
+ - -0.9833332292181379
+ - -1.870930337327271
+ - -1.9482278495127723
+ - -1.3730046429097533
+ - -2.315559235090235
+ - -1.4774489778828548
+ - 3.317753448503731
+ - 4.57028403049662
+ - 1.6233567130259485
+ - 0.5175683731555616
+ - -0.8155007475260129
+ - -1.791783469599863
+ - -1.9912056355414707
+ - -1.5251162224290695
+ - -1.6474924571372964
+ - -0.7005745455600189
+ - 1.9014278135315454
+ - 2.6845413190609055
+ - 1.4117942721711083
+ - 0.20337404418788785
+ - -1.0871698912094343
+ - -1.6397735805679792
+ - -1.3576246205323772
+ - -0.5109174427183204
+ - -0.025192718817353292
+ - 0.9956528402553241
+ - 1.876466256535221
+ - 1.952221232375277
+ - 1.210173463817332
+ - 1.958087221680268
+ - 2.057986603291175
+ - 2.3965197049634392
+ - 1.1725901811304018
+ - -1.4885233560508966
+ - -2.678045441880534
+ - -1.9003262282693745
+ - -1.0521102841961119
+ - 0.15806414336419072
+ - 0.5591525957326063
+ - 0.8152319284204984
+ - 1.1897792310489892
+ - 1.2165341902141384
+ - -0.13853428095582054
+ - -1.3646510668793423
+ - -2.0075684518047847
+ - -1.7647962287343628
+ - -0.764847839680065
+ - 0.5032801061001247
+ - 1.0807405086804696
+ - 1.1137926683937107
+ - 1.5872181980449311
+ - 1.4593563195165014
+ - -1.3159341460743683
+ - -2.734742753804177
+ - -2.023397994100017
+ - -1.5203866133969457
+ - -0.36039049183465477
+ - 0.9621496500611026
+ - 1.8622400820893414
+ - 2.148239985285646
+ - 2.6048175274865444
+ - 1.4760662401953082
+ - -1.508081771229092
+ - -2.6331722516547904
+ - -1.982478384708703
+ - -1.2921380309047894
+ - -0.16134974253400072
+ - 0.15581163184153748
+ - 0.5866451027181208
+ - 1.3090500229773097
+ - 1.533355530825419
+ - 0.1558161748178563
+ - -1.1334324831819842
+ - -1.9393429248406364
+ - -1.8901844197479574
+ - -1.0286561303941653
+ - 0.18790656392488472
+ - 0.5833343541518301
+ - 0.8267483160712205
+ - 1.12865165772898
+ - 1.1590252256237636
+ - -0.16564293840627178
+ - -1.3844083811552355
+ - -2.154083545515645
+ - -2.782019743716551
+ - -1.8680847872676138
+ - 1.0491143922888955
+ - 2.0747599154993
+ - 1.9836242348952235
+ - 1.8094651570403222
+ - 0.855014021474312
+ - -0.4800659669570194
+ - -1.5998853334129328
+ - -2.1961605590836766
+ - -4.5692286147279
+ - -3.2710528845700373
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.015505967233319515
+ - 0.2861171008957659
+ - 1.145437291393216
+ - 1.9358231292363148
+ - 1.8952209598359768
+ - 1.0166932836408622
+ - -0.2931389235951366
+ - -1.5199118602656765
+ - -2.180565209103135
+ - -1.7377507612851497
+ - -0.040855482742867016
+ - 0.6445671366359251
+ - 1.3959584576973805
+ - 2.007278682700096
+ - 1.9539887104437734
+ - 2.230932045935295
+ - 1.02581719857616
+ - -1.56676937503846
+ - -2.7129530057314444
+ - -1.8039371697970328
+ - -0.8389941108074768
+ - 0.4911756187392164
+ - 1.607926513969265
+ - 2.025927879415793
+ - 1.7693230654154346
+ - 1.95698481265589
+ - 0.8039764313548167
+ - -1.6384331543137345
+ - -2.700522993342671
+ - -1.6360070980429255
+ - -0.5391000222171944
+ - 0.7509890226116527
+ - 1.2784543581923131
+ - 1.2234547903179585
+ - 0.7751404858766618
+ - 0.49155757577057346
+ - -0.685345653983578
+ - -1.7218399102575148
+ - -2.0204948271783265
+ - -1.4267898941040624
+ - -0.22357140094530337
+ - 1.0686471173985124
+ - 1.8240377405171513
+ - 1.4680691559016548
+ - 1.1788233288612306
+ - 1.0169141632818934
+ - -1.6057159779060775
+ - -3.002812308879626
+ - -1.9251171933532645
+ - -1.116338463361705
+ - 0.17655717737676216
+ - 1.3950042602824784
+ - 2.0055802313184565
+ - 1.9506162507239122
+ - 2.2679577998500977
+ - 1.1533083983225136
+ - -1.713498456294389
+ - -2.764063363980735
+ - -1.8021532596481058
+ - -0.8375365123471455
+ - 0.41858857611983336
+ - 0.8605408119033966
+ - 0.9752468177130648
+ - 0.9918654993971354
+ - 0.8922560602799867
+ - -0.37873120045558
+ - -1.5331724810691034
+ - -2.0315176980085234
+ - -1.6331912643413324
+ - -0.5353083351211567
+ - 0.7548952996830104
+ - 1.257502938893604
+ - 1.1773018813890486
+ - 0.7668505880117057
+ - 0.47483701734751355
+ - -0.6888964257569299
+ - -1.7234883798045808
+ - -2.1933674431733006
+ - -2.732800813506687
+ - -1.7092554740412196
+ - 1.427453043500956
+ - 2.489428258199279
+ - 2.021709141223554
+ - 1.5073645068418042
+ - 0.34157628975774
+ - -0.9784635890905191
+ - -1.8690546749269656
+ - -2.1431485656590556
+ - -4.283265888975503
+ - -3.00782841685089
+ - 2.6671444952974586
+ - 3.8658087002369412
+ - 2.0243341531720813
+ - 1.6252330130049462
+ - 0.5243527460344388
+ - -0.8114005617714467
+ - -1.7894259258426173
+ - -2.1786820316523294
+ - -2.689552512591924
+ - -1.6493222321360457
+ - 1.5086332310367065
+ - 2.568047836623059
+ - 2.0099256064363815
+ - 1.4163116295439704
+ - 0.34182644235049764
+ - 0.06874725620328005
+ - -0.45542042417242934
+ - -1.3896368506352734
+ - -1.7127800317877937
+ - -0.32205481068779584
+ - 0.9905810986098089
+ - 1.8815159644301698
+ - 1.9431785167074749
+ - 1.213958012564998
+ - 2.097677945884249
+ - 2.6787937846114063
+ - 1.6612445045438655
+ - -0.6983457603027245
+ - -1.8208170187529393
+ - -1.9318792427594251
+ - -1.9066874740407491
+ - -1.2431388685073832
+ - -1.2512972457756366
+ - -0.3620438182434885
+ - 1.7783333552480403
+ - 2.505611879104215
+ - 1.151506865562705
+ - -0.1385449048466427
+ - -1.3739116470709913
+ - -2.0053586900220823
+ - -1.7704055151707918
+ - -0.9388946607125026
+ - -0.9415877753945144
+ - -0.03063797527195889
+ - 2.04222483570914
+ - 2.0314765568117217
+ - -0.24093112267530656
+ - -1.2724664991446313
+ - -1.6467522962233345
+ - -2.023485643711455
+ - -1.529887647104236
+ - -0.358603148060979
+ - 0.9590968055663274
+ - 1.9704762665583442
+ - 2.6207632637299305
+ - 1.7990080968827868
+ - -0.5640301178913477
+ - -1.5270375717246891
+ - -1.8135499069306742
+ - -1.9844499008432706
+ - -1.4932549230227254
+ - -1.5689095453750714
+ - -0.5154492365711174
+ - 1.6691209921196948
+ - 2.5968995752395125
+ - 1.3813271279985722
+ - 0.1601722283321463
+ - -1.1347349672683056
+ - -1.9316223761296698
+ - -1.8927122162386254
+ - -1.2185536372224177
+ - -1.1976244720849003
+ - -0.2572173201005758
+ - 1.649371467782406
+ - 2.4381038625997453
+ - 1.1299800697442568
+ - -0.15948025557870896
+ - -1.4105883654591098
+ - -2.0597380090317094
+ - -1.6824991724215832
+ - -0.1680989701091551
+ - 0.4615664108384806
+ - 1.2944177187288686
+ - 1.9826335934053285
+ - 1.819296082402742
+ - 0.8512581630189405
+ - -0.4763661483292474
+ - -1.6596822616367994
+ - -3.871321878706139
+ - -2.9106853982057563
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.383728301648392
+ - -2.9998331791954773
+ - -0.10215439931482292
+ - 1.4170513296424285
+ - 2.331610593611374
+ - 2.2179939620220632
+ - 1.1514918612651892
+ - -0.3136300029233232
+ - -0.8359972725572041
+ - -1.1035402348267749
+ - -1.3956389170044192
+ - -1.3222888148971212
+ - 0.2801554079262056
+ - 1.7073881505285775
+ - 2.5798717679947885
+ - 3.230141722941251
+ - 1.9163512463556451
+ - -1.0811784128475683
+ - -2.485961718795998
+ - -2.3760202008047364
+ - -2.114462144667779
+ - -0.9408725063047316
+ - 0.651921588222944
+ - 1.9538455207416607
+ - 2.615640245733351
+ - 3.2073749157509654
+ - 1.8091008064355383
+ - -1.3317473616584825
+ - -2.7820174771723702
+ - -2.4117706771622474
+ - -1.9078623245512052
+ - -0.7596276857724675
+ - -0.5350944097385358
+ - 0.2201208037903764
+ - 1.8990529276882735
+ - 2.411899162671445
+ - 0.7081521048783194
+ - -0.8777640420264732
+ - -2.091645571279537
+ - -2.3842643444652967
+ - -1.6498218078094573
+ - -0.35348410810895686
+ - -0.024048719125661155
+ - 0.6180857604265907
+ - 2.3088185757813027
+ - 2.2287215035153887
+ - -0.9025358231841287
+ - -2.4119086438581667
+ - -2.2817489828633453
+ - -2.269005908867041
+ - -1.2786038940001676
+ - 0.27978590017011684
+ - 1.7075402275437015
+ - 2.5792319404802293
+ - 3.29068426942691
+ - 2.086132982330594
+ - -1.2328075386734036
+ - -2.5349456608550063
+ - -2.376772700283901
+ - -2.115096023302346
+ - -1.1425657510858456
+ - -1.020342301079325
+ - -0.03874204847410383
+ - 1.9020480265767703
+ - 2.6806409499755346
+ - 1.0605531070246585
+ - -0.5145792864171422
+ - -1.8741101324248932
+ - -2.4089563665066858
+ - -1.9045105767243045
+ - -0.755438828080891
+ - -0.5217575712348075
+ - 0.2763319761697279
+ - 1.7882396100550833
+ - 2.361388990393715
+ - 0.7052894233348569
+ - -0.878993054677996
+ - -2.1875691676387006
+ - -2.993089581164694
+ - -2.2210065520548294
+ - 0.462303540045288
+ - 1.4742652177834281
+ - 2.01125587572195
+ - 2.4002429703549333
+ - 1.7565897064242149
+ - 0.3346121609975354
+ - -1.2218013057622439
+ - -2.3865567559621383
+ - -5.260307113292696
+ - -3.8640394928890163
+ - 1.1280453435530273
+ - 1.9080794762535593
+ - 1.8805115109016848
+ - 2.4092677471611603
+ - 1.9020412268389901
+ - 0.5525680290935774
+ - -1.025529353210537
+ - -2.278053071320717
+ - -3.081529572602763
+ - -2.244256964091433
+ - 0.6096879593817988
+ - 1.669907924505477
+ - 2.0960918959536974
+ - 2.383078524196621
+ - 1.8759224587248313
+ - 2.0041637410924746
+ - 0.713037379704414
+ - -1.9817413733819755
+ - -3.1346299397897024
+ - -1.7346376665061214
+ - -0.31856952618661966
+ - 1.2402476243653302
+ - 2.2551384988927112
+ - 2.2936927207273876
+ - 1.5634164648235853
+ - 2.2041806251206233
+ - 1.7259198961455036
+ - 0.4142097367039661
+ - -0.2972232697546533
+ - -1.392677895170136
+ - -2.3171724124049997
+ - -2.4770008566702035
+ - -2.9512289983575974
+ - -1.6019525530651066
+ - 1.9225052325088579
+ - 3.2351434411762803
+ - 2.285401208144617
+ - 1.30634329032344
+ - -0.239351869457047
+ - -1.683544651186496
+ - -2.394314567298667
+ - -2.310266259211599
+ - -2.976307751856373
+ - -1.3316414270272188
+ - 1.95492316965479
+ - 2.081445912077253
+ - 1.0614676606792837
+ - 0.7804771228320629
+ - -0.7251586991747262
+ - -1.9968200925625001
+ - -2.413103947431666
+ - -1.7637874299006893
+ - -0.3604343204756055
+ - 1.1801534370873576
+ - 1.8585360037130403
+ - 1.6329532651716487
+ - 0.6846789295324228
+ - 0.19401286912838656
+ - -1.080075249738062
+ - -2.186019616922599
+ - -2.573301816059405
+ - -3.0761157713014073
+ - -1.6236073214341162
+ - 1.5842498373801788
+ - 3.0410615491702027
+ - 2.372906827362828
+ - 1.5933719002616211
+ - 0.12430070024341008
+ - -1.4038094098447176
+ - -2.3182128974460863
+ - -2.4657562578724628
+ - -2.8797801160733782
+ - -1.421524458021286
+ - 1.7542917973378735
+ - 3.1762990784401093
+ - 2.2766748176745844
+ - 1.290294014874247
+ - -0.13936192526467878
+ - -0.6194753811511187
+ - -0.9689854539387696
+ - -1.5114856963309027
+ - -1.522652566095407
+ - 0.11993709172208682
+ - 1.5904370079011925
+ - 2.381396659616128
+ - 2.121828494088515
+ - 0.9516878660751611
+ - -0.5512646087282062
+ - -1.919466675287093
+ - -1.6313205526187031
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.294375032354127
+ - -3.0023849872728747
+ - -0.5295631789803212
+ - 0.6390181503360418
+ - 1.5368103572336353
+ - 1.7577337305322356
+ - 1.2214439649914133
+ - 0.2692486187979112
+ - 0.013764697553458848
+ - -0.411019724488444
+ - -1.3313661399795045
+ - -1.5184872768264412
+ - -0.25491099173252124
+ - 0.8922960323737151
+ - 1.7542605401659184
+ - 2.277542102160268
+ - 1.4632272489777716
+ - -0.4537754718157934
+ - -1.3780690237104127
+ - -1.614010450827516
+ - -1.7246920761569364
+ - -1.0927188100995782
+ - 0.0240731220821396
+ - 1.1231008562879534
+ - 1.8582590616317973
+ - 2.3586503265662744
+ - 1.4432056692235018
+ - -0.6686003575179363
+ - -1.6684285943623611
+ - -1.7116945059495825
+ - -1.6381707197844633
+ - -1.0155829349524552
+ - -0.9973835673797018
+ - -0.24793500281117353
+ - 1.5408556767227561
+ - 2.142436779170548
+ - 0.9412115723809602
+ - -0.19914087195479097
+ - -1.2581165849665275
+ - -1.7638736499311911
+ - -1.5078940230771694
+ - -0.7431933026473133
+ - -0.7095276739525547
+ - 0.04404621358292477
+ - 1.784372876495852
+ - 1.7680029944350752
+ - -0.26673799751133
+ - -1.1975470000988249
+ - -1.4774473631993816
+ - -1.7694660155286186
+ - -1.3002362973621568
+ - -0.2549084739434829
+ - 0.8930816862581848
+ - 1.7549128983702316
+ - 2.3220340226928737
+ - 1.5790895945965566
+ - -0.5448829668171717
+ - -1.4061058904156745
+ - -1.615408719989236
+ - -1.7258519619769976
+ - -1.2600328025283691
+ - -1.3083830611472447
+ - -0.40433577040404445
+ - 1.462200337597868
+ - 2.2509931813265527
+ - 1.1658969399809784
+ - 0.08032973248438013
+ - -1.0440560060123878
+ - -1.7100393038695394
+ - -1.6363626869980463
+ - -1.0130105166176109
+ - -0.9766306118671129
+ - -0.17632757489064368
+ - 1.4370444166295426
+ - 2.099986612828609
+ - 0.9397852848479209
+ - -0.19970659517844716
+ - -1.2856338446990256
+ - -1.859960550850516
+ - -1.5000538532317242
+ - -0.09099525403496944
+ - 0.48592549967621834
+ - 1.1800871215443771
+ - 1.7489745787342528
+ - 1.5665193812305158
+ - 0.6910496464763266
+ - -0.4757321026440726
+ - -1.4965449408480642
+ - -3.464354930650553
+ - -2.59691199820239
+ - 0.08496784400893238
+ - 0.3866559776943338
+ - 1.0529358254171675
+ - 1.7133337182821837
+ - 1.638102478238341
+ - 0.8385086582025845
+ - -0.3162985291233061
+ - -1.3784727938519683
+ - -1.9615744772697243
+ - -1.5450407949866336
+ - 0.020679818727934254
+ - 0.6451313228574284
+ - 1.2663843053509172
+ - 1.7666721972274433
+ - 1.6815768481466227
+ - 1.9080749839400537
+ - 0.8594128695316887
+ - -1.389433173806201
+ - -2.3803402875702866
+ - -1.5526814315056818
+ - -0.6801285648788867
+ - 0.488843174293829
+ - 1.4449727267640569
+ - 1.7734888312204748
+ - 1.5110213451705676
+ - 1.6582164416396123
+ - 1.0403791682939374
+ - 0.6624595381732424
+ - 0.3983003853576228
+ - -0.6169824914341369
+ - -1.5185639690625796
+ - -1.922462798789254
+ - -2.3770057590116216
+ - -1.4095993298110856
+ - 1.1860197499441596
+ - 2.179017958204211
+ - 1.7720540959206437
+ - 1.312701357484388
+ - 0.28598932158499285
+ - -0.8700101535896902
+ - -1.6442817582049447
+ - -1.8760466383858807
+ - -2.5177391097549062
+ - -1.2734554208488562
+ - 1.1180089388042016
+ - 1.2441428222896602
+ - 1.1149298765242082
+ - 1.23191552138582
+ - -0.08013550581930876
+ - -1.165488821445694
+ - -1.7529102167065924
+ - -1.5670582544408704
+ - -0.7086799788201142
+ - 0.3973821285625913
+ - 0.8073155049055585
+ - 0.8988338252063754
+ - 0.8729140820738199
+ - 0.7617858035266843
+ - -0.35985635163977386
+ - -1.3627465022683727
+ - -1.9212789017699046
+ - -2.378009803600815
+ - -1.3727738046633255
+ - 0.9007091344290001
+ - 1.9573861214891952
+ - 1.7700200892978561
+ - 1.4772762871026304
+ - 0.5469064623485655
+ - -0.6278210541616176
+ - -1.5248256148837267
+ - -1.9208622679470715
+ - -2.328255045981751
+ - -1.2749352216877694
+ - 1.0722241516327007
+ - 2.1476342934872483
+ - 1.7717332638570082
+ - 1.3050919182440994
+ - 0.3962760511017542
+ - 0.1772370213939824
+ - -0.3019685463918973
+ - -1.3952771059949252
+ - -1.6429740453477972
+ - -0.3713093360761869
+ - 0.7887153199536089
+ - 1.6134197906632957
+ - 1.727185684593701
+ - 1.0975826721877375
+ - 0.09253085287223752
+ - -0.3955700640538053
+ - -0.47897367457665424
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.0986987873548753
+ - -4.156095421932353
+ - -1.0946403952929653
+ - 0.22520464029145848
+ - 1.453139908657294
+ - 2.0421147495987237
+ - 1.7491631783171437
+ - 0.8661487424646157
+ - 0.7386949752877418
+ - 0.01782149507301011
+ - -1.787572443519843
+ - -2.2670521859333577
+ - -0.805820545510677
+ - 0.5442412384870488
+ - 1.7278988030749038
+ - 2.3443370587939327
+ - 1.6406955429307397
+ - -0.09648002770251304
+ - -0.9683604278600788
+ - -1.5877199248915899
+ - -2.056097618119828
+ - -1.6404215796212287
+ - -0.49840976503740586
+ - 0.8503135962383356
+ - 1.9295691527852419
+ - 2.5445258290775685
+ - 1.6868684932687295
+ - -0.3634280200811433
+ - -1.365261076264987
+ - -1.7753208260425557
+ - -2.0380847913204314
+ - -1.6218689104354798
+ - -1.771430313078821
+ - -0.7394186767703719
+ - 1.828490318394471
+ - 2.7359547483522952
+ - 1.499582675360739
+ - 0.2991960734507876
+ - -1.0347554022682766
+ - -1.914997060026671
+ - -1.9660426188918432
+ - -1.3582799138363193
+ - -1.5621850786949236
+ - -0.4252059450660666
+ - 2.024613860374758
+ - 2.055935178501802
+ - 0.16940432307075998
+ - -0.6284328309788451
+ - -1.3629620666920526
+ - -2.0250820727833787
+ - -1.8172545813971799
+ - -0.8055020498295488
+ - 0.5458646347584207
+ - 1.7298953544739744
+ - 2.3923005420436785
+ - 1.7553322304734222
+ - -0.17127638268026346
+ - -0.9894108860074134
+ - -1.5902010078589968
+ - -2.0581470461537563
+ - -1.8427921630991626
+ - -2.0541434507307836
+ - -0.8690323971557606
+ - 1.650518250508367
+ - 2.750485744736537
+ - 1.7022842004885879
+ - 0.6149595474952304
+ - -0.7415365684739408
+ - -1.774013036636865
+ - -2.0368893619769093
+ - -1.6196785140101833
+ - -1.7364369700838693
+ - -0.6273078358579888
+ - 1.6907927756412202
+ - 2.6840462094348707
+ - 1.4988257725972483
+ - 0.2989749103637427
+ - -1.0148954495150837
+ - -1.613707330290612
+ - -1.4648261032394698
+ - -0.5944765740347994
+ - -0.16471131403572142
+ - 0.9287980403536187
+ - 1.8682334553976996
+ - 2.006381248277425
+ - 1.25795951311429
+ - -0.02636102116344754
+ - -1.316797928451816
+ - -3.2721199998588624
+ - -2.5198307526952943
+ - -0.7658103676194759
+ - -0.7535168920632849
+ - 0.7559217239893905
+ - 1.7810965852849854
+ - 2.0428615486152
+ - 1.4022726607650944
+ - 0.16302443403365077
+ - -1.145337017621262
+ - -1.765451971963656
+ - -1.5454769267098274
+ - -0.4702110524828009
+ - 0.024699161958742572
+ - 1.049431655497943
+ - 1.9222440582424485
+ - 2.1619476095481627
+ - 2.5585297804711526
+ - 1.312999063302921
+ - -1.4207250118699206
+ - -2.654509183666095
+ - -1.9941073318793592
+ - -1.2471870894316106
+ - 0.03998287185401823
+ - 1.3130651239522673
+ - 2.013147216475597
+ - 2.046192425540165
+ - 2.362791498111653
+ - 1.1263544143697108
+ - 1.1267810886436136
+ - 1.1400951590053519
+ - -0.1966975430613726
+ - -1.4246713604382422
+ - -2.1901830199529653
+ - -2.8023922290446635
+ - -1.7873421305243515
+ - 1.0171922580019264
+ - 2.120352539669991
+ - 2.0169697527777615
+ - 1.8215649425040996
+ - 0.840582725372584
+ - -0.5147263799043927
+ - -1.639745638043576
+ - -2.2278600955452457
+ - -3.0950496615360263
+ - -1.7126051545187881
+ - 0.8380440586772547
+ - 1.012226725460317
+ - 1.5878311574924557
+ - 2.086726100449949
+ - 0.4353900879200516
+ - -0.9084628995905392
+ - -1.8661208059274035
+ - -2.001487612421732
+ - -1.275414261791684
+ - -0.11312256056012522
+ - 0.22669173733224268
+ - 0.6218606587933332
+ - 1.3671289038088035
+ - 1.534802966274688
+ - 0.1120662615182602
+ - -1.1882011012013431
+ - -2.1059856094366656
+ - -2.698866960225008
+ - -1.6868664184886588
+ - 0.6672896589023286
+ - 1.7903792419760651
+ - 1.9383250484676917
+ - 1.9455579463654111
+ - 1.1145679345925525
+ - -0.21144487320985916
+ - -1.4377549339046465
+ - -2.1961350204761634
+ - -2.7541656990549352
+ - -1.6397848313837258
+ - 0.9058364870805519
+ - 2.1001848358496518
+ - 2.023644058883761
+ - 1.8181846942419126
+ - 1.0018894664834574
+ - 0.9199394083172174
+ - 0.1471003095325839
+ - -1.8320125818539903
+ - -2.375025851592961
+ - -0.9297523454586102
+ - 0.4122556736878177
+ - 1.581849172128431
+ - 2.055421250144557
+ - 1.6421102378101828
+ - 0.6732416252784064
+ - 0.7432788374165944
+ - 0.3132252683485525
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.9622009774404298
+ - -1.626842888020272
+ - -1.6010115922998658
+ - -2.0500021804111204
+ - -1.617484931371311
+ - -0.46872873235472023
+ - 0.873941277574235
+ - 1.9391365388225585
+ - 2.6227676119564345
+ - 1.909760647708764
+ - -0.520105321399334
+ - -1.4226711880682201
+ - -1.7842518536619958
+ - -2.0274829619398824
+ - -1.5950566460610651
+ - -1.7037233483153935
+ - -0.6055727464541534
+ - 1.6862905438481803
+ - 2.6667019013584095
+ - 1.474935703286889
+ - 0.26959509272500587
+ - -1.0565761589792324
+ - -1.9193744579488983
+ - -1.951199703592378
+ - -1.3289829211438082
+ - -1.3402869697589646
+ - -0.347902126342244
+ - 1.6804612396310354
+ - 2.527661602039551
+ - 1.2316458043935699
+ - -0.053318680739561405
+ - -1.3354016868952496
+ - -1.9606308220255189
+ - -1.5742492115268387
+ - -0.2715537856956503
+ - 0.32593981771592057
+ - 1.2248309316210537
+ - 1.9812421089314172
+ - 1.8869643931243414
+ - 0.9582570490704275
+ - -0.37629250309145634
+ - -1.6001794776171656
+ - -2.4923289021464927
+ - -1.742993357070244
+ - -0.6519095089326332
+ - -0.4646012371809347
+ - 1.8129859899376022
+ - 3.0917303351916976
+ - 1.6787378652356468
+ - 0.5832943843750897
+ - -0.7677127495044616
+ - -1.7831062823211485
+ - -2.025109669632523
+ - -1.5907270244631266
+ - -1.7291290827874848
+ - -0.7090454678081912
+ - 1.8234318445244004
+ - 2.716052919163502
+ - 1.4721932791994978
+ - 0.26735008507342856
+ - -1.0409884957309774
+ - -1.5920413834079299
+ - -1.343234777648601
+ - -0.565265030777395
+ - -0.1085271735221955
+ - 0.9529148102956252
+ - 1.8742918359392766
+ - 1.991697995052428
+ - 1.2289698613105013
+ - -0.05709641718937924
+ - -1.3389911611268128
+ - -1.9266161080443884
+ - -1.4882510868557326
+ - -0.3059815587627542
+ - 0.32785952156893317
+ - 1.228483125858505
+ - 1.982977694696786
+ - 2.0826616648878855
+ - 2.4845188935468028
+ - 1.4100218814893581
+ - -1.7519769239650345
+ - -2.7798241018877206
+ - -1.9217752305986306
+ - -1.0613251157839634
+ - 0.25973635844692067
+ - 1.4696602014094367
+ - 2.039675177162591
+ - 1.932233715587341
+ - 3.6593774650860316
+ - 2.4995423161041885
+ - -3.1645030660578484
+ - -4.474051200915986
+ - -1.9792810997756114
+ - -1.2180128477407235
+ - 0.07098913637734479
+ - 1.3322056216729579
+ - 2.0122686242291987
+ - 2.0253513503731684
+ - 2.389179292547479
+ - 1.3188635313245396
+ - -1.8016627430085985
+ - -2.8061175404033807
+ - -1.870743585031204
+ - -0.9444852912700409
+ - 0.3086211666394457
+ - 0.7331663770216881
+ - 0.9139322007780383
+ - 1.0737383044385136
+ - 1.0379439749252652
+ - -0.2772473666054967
+ - -1.479534249884129
+ - -2.0490245231747872
+ - -1.7142986108664453
+ - -0.6447232421133497
+ - 0.6535376147107378
+ - 1.1433844573468492
+ - 1.1272884966796783
+ - 1.1212710190452089
+ - 2.355420729757111
+ - 2.054688734192531
+ - 1.6390439251474742
+ - 0.6700635273087249
+ - 0.48554471782998415
+ - -0.16809361816175966
+ - -1.6271656560306986
+ - -2.0754741038500493
+ - -0.6243940754871893
+ - 0.7274244925278199
+ - 1.77108008519097
+ - 2.0347072829616217
+ - 1.4217492134398595
+ - 0.32478417338259225
+ - 0.05370248170547399
+ - -0.507611317297396
+ - -1.9729333381312575
+ - -1.9061140325254118
+ - 0.7657531886872789
+ - 2.05370496987129
+ - 1.9420032273055816
+ - 1.930147340039861
+ - 1.0866731668268765
+ - -0.23953243184212455
+ - -1.4539556867210601
+ - -2.1948854216972453
+ - -2.800052696201406
+ - -1.7747455499082636
+ - 1.050045839472759
+ - 2.1582411363559286
+ - 2.0226002152571625
+ - 1.7989790914939419
+ - 0.9707351043852582
+ - 0.8662826207991727
+ - 0.03175200245558907
+ - -1.6180658040097025
+ - -2.279779912057141
+ - -0.9010702597277104
+ - 0.43928714972584915
+ - 1.5955828935663157
+ - 2.049746121572368
+ - 1.619599296166393
+ - 0.64124445365625
+ - 0.4419736476421231
+ - -0.23632779963152098
+ - -1.5210443734824761
+ - -2.007882883539035
+ - -0.5986966370394208
+ - 0.7492968314993863
+ - 1.8622409636531392
+ - 2.5476461328457387
+ - 1.8900726481299086
+ - -0.3947239822755126
+ - -1.2562701023635285
+ - -1.7121521683976189
+ - -2.0421874619654483
+ - -1.4936191387059314
+ - -0.283247998682581
+ - 1.0408834205132051
+ - 2.031331493887279
+ - 4.476858325581943
+ - 3.288346064526457
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.08869190887053059
+ - -0.39123069392346344
+ - -1.0523334503241242
+ - -1.7098682586114073
+ - -1.6332526333938286
+ - -0.8344198669535661
+ - 0.31787928984015434
+ - 1.3769847488832216
+ - 1.9588519087685974
+ - 1.542188022790574
+ - -0.0228539722787063
+ - -0.6467633456146987
+ - -1.2650282863514604
+ - -1.7627102215096675
+ - -1.6763037555750435
+ - -1.9016079134555213
+ - -0.8557836681538147
+ - 1.3867276231738699
+ - 2.3747088791228927
+ - 1.547824376675176
+ - 0.6763149599809483
+ - -0.4899672638516525
+ - -1.4429073261306504
+ - -1.769135726791198
+ - -1.5058157273552448
+ - -1.6519647792348504
+ - -0.6574576703037035
+ - 1.4414774225361042
+ - 2.3505603777283657
+ - 1.392647942042376
+ - 0.4108684457349976
+ - -0.7198397163961266
+ - -1.192712277085073
+ - -1.1098009874240673
+ - -0.627195206768767
+ - -0.3456205004560009
+ - 0.6575629731373223
+ - 1.5373761262108827
+ - 1.7582188368571983
+ - 1.2024272804912208
+ - 0.13333682602658697
+ - -0.9929271410401604
+ - -1.6697942451333732
+ - -1.3164159079515918
+ - -0.9788260384318762
+ - -0.8341573600173893
+ - 1.430068777529938
+ - 2.6430880831785273
+ - 1.662754677050861
+ - 0.9233789726525378
+ - -0.21670643421426555
+ - -1.264171229665816
+ - -1.7611500858186167
+ - -1.6732441333428543
+ - -1.932863607948667
+ - -0.9650941894759538
+ - 1.5144215415712863
+ - 2.4193537879447464
+ - 1.5461577963108795
+ - 0.674953899151504
+ - -0.4322638084789101
+ - -0.8313171383446435
+ - -0.893894368021487
+ - -0.8253386614135193
+ - -0.7006058845914019
+ - 0.3922604811372934
+ - 1.3804434988020269
+ - 1.7776906884386114
+ - 1.390191012643177
+ - 0.4075436202669268
+ - -0.7232337528851415
+ - -1.172969155487179
+ - -1.0651515151141102
+ - -0.624392633218631
+ - -0.3325023537771199
+ - 0.6606885913864975
+ - 1.5388309019743092
+ - 1.9122333847800532
+ - 2.3709798967569986
+ - 1.4678922828775378
+ - -1.2859805496965364
+ - -2.2138753621297984
+ - -1.7627980182347578
+ - -1.2754538675347862
+ - -0.23668818079045428
+ - 0.9096064515160034
+ - 1.6572104754013957
+ - 1.8577021105970368
+ - 3.691603499813962
+ - 2.5850051087670445
+ - -2.391404335783693
+ - -3.4543629788954937
+ - -1.7708422563846353
+ - -1.382897774353024
+ - -0.39762645452143924
+ - 0.76617247861936
+ - 1.5928311948349299
+ - 1.8948933534654806
+ - 2.327596962248249
+ - 1.4120571804319355
+ - -1.3538891287543444
+ - -2.2773580720440694
+ - -1.7483564464493786
+ - -1.1928921313237248
+ - -0.23176703075563623
+ - 0.023599515970879288
+ - 0.44742306147603755
+ - 1.185809756823443
+ - 1.4316875782486274
+ - 0.21977681074365046
+ - -0.9200006520312886
+ - -1.6678140851276446
+ - -1.6804282552787406
+ - -0.9704534333120144
+ - 0.07326759052272132
+ - 0.3993211861285807
+ - 0.661737706268571
+ - 1.0363768596056617
+ - 1.6529826903055682
+ - 1.7073115525673712
+ - 1.6443652906653357
+ - 1.0304084245249057
+ - 1.0174058308693823
+ - 0.26208632810946336
+ - -1.5439716869335849
+ - -2.1526835949850742
+ - -0.9548463175835576
+ - 0.18312865221894226
+ - 1.2466192649225196
+ - 1.7619833567946515
+ - 1.5163554068799856
+ - 0.7592609791050283
+ - 0.732979800202236
+ - -0.02943959169174272
+ - -1.7839983990869264
+ - -1.7687045992580852
+ - 0.26622999999038793
+ - 1.1978259270887375
+ - 1.475267737421216
+ - 1.7650461698109452
+ - 1.2955051126163417
+ - 0.2519552692569317
+ - -0.8930035654578418
+ - -1.7517962693466314
+ - -2.31744680376003
+ - -1.5753831314376856
+ - 0.5455630704403016
+ - 1.4054140106766477
+ - 1.6125481135061803
+ - 1.7211693728721678
+ - 1.2550769255218348
+ - 1.302591057697227
+ - 0.40149940650719224
+ - -1.4586550061589794
+ - -2.24457926851283
+ - -1.1613252778963228
+ - -0.07777243185945214
+ - 1.0434987746171414
+ - 1.706596326805806
+ - 1.631536542545794
+ - 1.0084020238549725
+ - 0.9713865195697194
+ - 0.17397119626680996
+ - -1.433247967621209
+ - -2.093466317409352
+ - -0.935528365731929
+ - 0.20158985969136986
+ - 1.2844897714822974
+ - 1.8576562279354125
+ - 1.497447582228376
+ - 0.08855589897777119
+ - -0.48798963874149737
+ - -1.179046814165186
+ - -1.745211104220101
+ - -1.5616430709180211
+ - -0.6872177410505999
+ - 0.4768859493479802
+ - 1.4946012443056345
+ - 3.4589170520555705
+ - 2.5924934157808397
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.9328038534748
+ - 2.418015857870324
+ - 0.029051952438674825
+ - -1.2393951516427761
+ - -1.9787671805322125
+ - -1.8454548569928002
+ - -0.919561088181434
+ - 0.3255249310451161
+ - 0.7799179054954108
+ - 0.975991109649153
+ - 1.1331223092909937
+ - 1.0415040974467153
+ - -0.29257657400940307
+ - -1.4780742072133906
+ - -2.182747640272822
+ - -2.7228068750303778
+ - -1.601391914872442
+ - 0.9498426896689187
+ - 2.1422431298107116
+ - 2.010479011325851
+ - 1.7531998832971056
+ - 0.7395556603551556
+ - -0.6038504970979937
+ - -1.6787107241963275
+ - -2.2030738302263035
+ - -2.6914985559380598
+ - -1.5040529356708912
+ - 1.156300145056383
+ - 2.3816230906338287
+ - 2.03157642965975
+ - 1.5716733456097653
+ - 0.5804611431713711
+ - 0.3737187949964537
+ - -0.23582251181015382
+ - -1.575609292309322
+ - -1.9779786710047809
+ - -0.541819062518574
+ - 0.7922470315379768
+ - 1.7901472295302283
+ - 1.9994643085990245
+ - 1.3477180289950543
+ - 0.23636498385850763
+ - -0.0660983613174062
+ - -0.5698621678901297
+ - -1.926677277524302
+ - -1.8541590017820377
+ - 0.8068761211489113
+ - 2.0958228184590646
+ - 1.9397555230360837
+ - 1.8914760058885265
+ - 1.0280610156756889
+ - -0.292232224730821
+ - -1.4781178623035758
+ - -2.1820706411752955
+ - -2.7736139544059566
+ - -1.7449875095968248
+ - 1.079627842232156
+ - 2.184344550042339
+ - 2.0110050653342166
+ - 1.7536452895873476
+ - 0.906439865336422
+ - 0.7866366828911785
+ - -0.014359228926864986
+ - -1.588205075248138
+ - -2.214601936782788
+ - -0.8418362490725589
+ - 0.4890211266051162
+ - 1.614344805854646
+ - 2.0291619350365258
+ - 1.5687783886754945
+ - 0.5768811907152411
+ - 0.3638915593368528
+ - -0.2792181859734544
+ - -1.485402372411394
+ - -1.9362533915966655
+ - -0.5393313521816454
+ - 0.7933200906950013
+ - 1.8760062479065618
+ - 2.5542157339510148
+ - 1.8803933710282483
+ - -0.44169047177664517
+ - -1.3117462972194942
+ - -1.7250445814891247
+ - -2.0161968536562345
+ - -1.4397937474771474
+ - -0.225300564287199
+ - 1.0780070763336858
+ - 2.0349355709459855
+ - 4.464621426245433
+ - 3.27305295803145
+ - -1.0394627186552414
+ - -1.7279500366207263
+ - -1.6191949010048594
+ - -2.029041719492361
+ - -1.5662621681406284
+ - -0.40979829240720583
+ - 0.9151862385067427
+ - 1.9486564746627841
+ - 2.623869257333243
+ - 1.8964252130459016
+ - -0.5649588774708534
+ - -1.474008296324189
+ - -1.793253415479595
+ - -1.9980110087338283
+ - -1.53652809343316
+ - -1.6276568363027246
+ - -0.5565667217139553
+ - 1.6714644210066167
+ - 2.6210776756002474
+ - 1.4210856607754503
+ - 0.21172813980693253
+ - -1.0935411406332618
+ - -1.9190351892403426
+ - -1.913954600710335
+ - -1.2668970730936047
+ - -1.2614111563382406
+ - -0.2995062786759597
+ - 1.6584127629817567
+ - 2.472250368675955
+ - 1.2194532620151082
+ - 1.9676011700793323
+ - 2.066011909859687
+ - 2.4507705442330505
+ - 1.3154158165925947
+ - -1.6416894948695016
+ - -2.739745851914292
+ - -1.906415306655881
+ - -1.0523269599589666
+ - 0.2584695641228349
+ - 1.4586590151483378
+ - 2.0237323610090527
+ - 1.916592686818339
+ - 2.456564472218362
+ - 1.080771188408582
+ - -1.6803485531086684
+ - -1.7823942967938333
+ - -0.8490445489745988
+ - -0.5728868998676709
+ - 0.6650345812474399
+ - 1.7134276270267406
+ - 2.0276775793173285
+ - 1.4464269648564356
+ - 0.24713779752842116
+ - -1.0490109715547995
+ - -1.6293748314573393
+ - -1.407970689234636
+ - -0.5284847554608746
+ - -0.0855970997162002
+ - 0.9605308455256937
+ - 1.8649488494126876
+ - 2.1558039665544726
+ - 2.566899381112503
+ - 1.340167325280454
+ - -1.3624007671195428
+ - -2.5867247402930342
+ - -1.98812544217509
+ - -1.298989979211181
+ - -0.04750307474821068
+ - 1.2284653516795379
+ - 1.967790515530556
+ - 2.055744916715662
+ - 2.3903411787995474
+ - 1.1642553767441677
+ - -1.4992967265949917
+ - -2.688886882947923
+ - -1.8983321130582598
+ - -1.0383355182748208
+ - 0.17914716902404457
+ - 0.5987526731076026
+ - 0.8643384465341556
+ - 1.232988691980353
+ - 1.212490699400332
+ - -0.1579511648897124
+ - -1.3821255290911214
+ - -2.0155573914970133
+ - -1.7597463964574558
+ - -0.7490157812625226
+ - 0.5246940167855376
+ - 1.7374420785775913
+ - 1.45881246226419
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.1999942301375572
+ - 4.332631886058058
+ - 1.2829645862517365
+ - 0.023850959234115454
+ - -1.250423529167473
+ - -1.975478479845422
+ - -1.8463559384403263
+ - -1.0964835562692108
+ - -1.0523404399568408
+ - -0.24873219422258472
+ - 1.8417799415990488
+ - 2.4280947392332943
+ - 1.0177144908319138
+ - -0.29635626249579955
+ - -1.5265574022668098
+ - -2.1268530066051405
+ - -1.5594609338414729
+ - -0.10795698002706235
+ - 0.6410962492937737
+ - 1.4015896535418026
+ - 2.013478440746547
+ - 1.7602346642318047
+ - 0.7281422292462328
+ - -0.610167022132633
+ - -1.759427723260446
+ - -2.3700235061432453
+ - -1.6365747597694655
+ - 0.15839891579578091
+ - 1.0528849601861945
+ - 1.6177046205037666
+ - 2.0346112385541733
+ - 1.775498681355845
+ - 1.9999571131668608
+ - 0.9262344522801336
+ - -1.7867428674925008
+ - -2.7620573602417506
+ - -1.6404335362210576
+ - -0.5373821692724123
+ - 0.8014818291463175
+ - 1.7897689742838017
+ - 2.0019852358392267
+ - 1.545219779171827
+ - 1.8560434424667074
+ - 0.6339614902229709
+ - -1.9359049559326063
+ - -1.989729537048551
+ - -0.3878706186599356
+ - 0.2514147592671211
+ - 1.1532754887102243
+ - 1.944670073430795
+ - 1.9012676746325576
+ - 1.0172584736864272
+ - -0.2982592438332297
+ - -1.5290683243676397
+ - -2.171509062881919
+ - -1.6610247853444735
+ - -0.050112544360969576
+ - 0.6560751532712362
+ - 1.4043908077848977
+ - 2.0157903539527475
+ - 1.9597346211142073
+ - 2.236710688562137
+ - 1.0272747123483923
+ - -1.5741109887863873
+ - -2.723968246802489
+ - -1.8092574711590046
+ - -0.8386735039406856
+ - 0.49702032979660754
+ - 1.6167251936544613
+ - 2.0338796669553463
+ - 1.7737521613968905
+ - 1.961019296088764
+ - 0.8042665225506896
+ - -1.6455511482722045
+ - -2.710635821375158
+ - -1.6401216268547512
+ - -0.53737291265747
+ - 0.7580451296088295
+ - 1.3053364329642125
+ - 1.2871464158426966
+ - 0.8034956306085217
+ - 0.5001454106732114
+ - -0.6918268655204015
+ - -1.7307670798358477
+ - -2.0280301219691856
+ - -1.429600566142729
+ - -0.2204774101500811
+ - 1.0766739550425748
+ - 2.813587556316542
+ - 2.2052346647203187
+ - 1.1448500427018495
+ - 1.2910107931289556
+ - -0.5128354907704952
+ - -1.625101059765658
+ - -2.0415023849172202
+ - -1.5565843953863219
+ - -0.4056263342251726
+ - 0.8947829727847731
+ - 1.4678733218685251
+ - 1.3784284402173186
+ - 0.6858440149399992
+ - 0.3148376145631847
+ - -0.8180453563307184
+ - -1.798645066240064
+ - -2.1887520556770714
+ - -2.6347545393798835
+ - -1.4171525270674075
+ - 1.2839344840864464
+ - 2.516042712046901
+ - 2.0179345519624112
+ - 1.4200744762693485
+ - 0.20805481116360683
+ - -1.0993216341386256
+ - -1.925363964191767
+ - -2.115280588626266
+ - -2.4895884390482124
+ - -1.2572244587670278
+ - 1.43860451807908
+ - 2.6511883624914727
+ - 1.9526585292008198
+ - 1.219482934706933
+ - 2.0984718325125686
+ - 2.730019285386151
+ - 1.7989723231921595
+ - -0.8154248245617222
+ - -1.8589877039842013
+ - -1.9316260118215793
+ - -1.9006832602674297
+ - -1.0507133765503394
+ - 0.26611277788641324
+ - 1.4597930266609649
+ - 2.1777289585183848
+ - 3.073484670198446
+ - 1.7656664872224814
+ - -0.5953276839896976
+ - -0.7767442551343968
+ - -1.6727237837912785
+ - -2.3249743118009163
+ - -0.6681655026194058
+ - 0.6705784445295627
+ - 1.7255971868503517
+ - 2.0207165927042556
+ - 1.4450700030900554
+ - 0.3780535006282834
+ - 0.11308845545841974
+ - -0.4041693670281392
+ - -1.4874825060208745
+ - -1.7883830255162774
+ - -0.3561640248300482
+ - 0.9648228549843217
+ - 1.978318456922937
+ - 2.5809464853644952
+ - 1.6748138647157935
+ - -0.46832852359311
+ - -1.5059182289941482
+ - -1.8199000202264628
+ - -1.9892209277022987
+ - -1.3021371971112008
+ - -0.03751311245228633
+ - 1.2348581541973427
+ - 2.1078823414600905
+ - 2.6872985495582276
+ - 1.6603873261776234
+ - -0.7174475076190749
+ - -1.8471007380125772
+ - -1.9413764657501418
+ - -1.8999646259958465
+ - -1.2222613486689595
+ - -1.2236148422571886
+ - -0.37499914778867244
+ - 1.8708372034745804
+ - 2.515414870306036
+ - 1.1323214465490405
+ - -0.16323528517931452
+ - -1.3934877088739828
+ - -2.0111538650347995
+ - -1.7600164520140247
+ - -0.9156656029910069
+ - -1.2811585227555038
+ - -0.7094431214402548
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.7003908402501953
+ - 5.23784058002149
+ - 2.337436985503373
+ - 1.462910079871686
+ - -0.045308606890415395
+ - -1.5377006711038683
+ - -2.35904758976876
+ - -2.398765027013385
+ - -2.837376407281173
+ - -1.5769108782549277
+ - 2.1061125702648167
+ - 3.294397418164087
+ - 2.2154951965124097
+ - 1.1444583244170319
+ - -0.3220443068214631
+ - -0.8130391748165589
+ - -1.0483687223437654
+ - -1.2868491704030245
+ - -1.2677673326763055
+ - 0.28833600227460193
+ - 1.7135273916432094
+ - 2.405976581290636
+ - 2.0367577396893264
+ - 0.7942755485172472
+ - -0.7290805597765853
+ - -1.298218647080334
+ - -1.3022946624893073
+ - -1.0310182816021107
+ - -0.7808908332692645
+ - 0.6635278812730501
+ - 1.960386693339763
+ - 2.6163114655712194
+ - 3.267744212799373
+ - 1.9814852426766594
+ - -1.4978638898677443
+ - -2.839450318178604
+ - -2.4109717027504485
+ - -1.8999390334668167
+ - -0.5683290207376399
+ - 1.0182322409445625
+ - 2.15647802917217
+ - 2.5847112233741596
+ - 3.5053110849730222
+ - 1.8238191512092956
+ - -1.3715912299867135
+ - -1.5540675724942534
+ - -1.6404152002858596
+ - -1.9346899130723272
+ - -0.08954543526082345
+ - 1.4280857061801588
+ - 2.3363090580285775
+ - 2.214259270852877
+ - 1.140991911848524
+ - -0.32745647185394455
+ - -0.8373860615860835
+ - -1.071655547700692
+ - -1.3285381082239538
+ - -1.288286022030149
+ - 0.29290698749841454
+ - 1.7172890433243988
+ - 2.5835731209028516
+ - 3.2325250481485877
+ - 1.914664761759211
+ - -1.090534144535714
+ - -2.4981821790599215
+ - -2.379473701500708
+ - -2.1095467735857834
+ - -0.9296660811606694
+ - 0.6644794738999101
+ - 1.962348030382702
+ - 2.6171812273124146
+ - 3.2070440462717764
+ - 1.8057884364860146
+ - -1.3402320294232326
+ - -2.792197373806809
+ - -2.4132421240318314
+ - -1.9011501309754955
+ - -0.7468829111397168
+ - -0.5119848849383548
+ - 0.22578306858573657
+ - 1.9903590008374494
+ - 2.425843980120359
+ - 0.6964244478224938
+ - -0.8900530742135847
+ - -2.0991984360260973
+ - -2.383733772108372
+ - -1.6414869111959653
+ - -0.3400513484561632
+ - 0.08800813265388781
+ - 0.3279598861615595
+ - 3.3054399628558153
+ - 4.363683596440265
+ - 0.9059945444743547
+ - -0.6800950892089132
+ - -1.9793127471093068
+ - -2.4071681153867543
+ - -1.7972157791618824
+ - -0.5773832810309615
+ - -0.2913820192054487
+ - 0.3761034105679668
+ - 1.9140757831526307
+ - 2.2691830391611796
+ - 0.5412785254209111
+ - -1.0362976869511655
+ - -2.285445159462196
+ - -3.0052574385961033
+ - -1.981503465462173
+ - 0.4590269519950706
+ - 1.6486508272488225
+ - 2.10196159400997
+ - 2.3816675234269127
+ - 1.6363158809776475
+ - 0.16552140911826904
+ - -1.3666779166130123
+ - -2.4583527316833496
+ - -3.156288980587662
+ - -1.980264410153718
+ - 0.7597703401045449
+ - 2.068749006934718
+ - 2.2636828582529778
+ - 2.2942894041881554
+ - 1.557479806515709
+ - 2.2390060648052064
+ - 1.8183237802345948
+ - 0.37261291414963793
+ - -0.2986748700005727
+ - -1.3868809980365315
+ - -2.307447740227152
+ - -2.2374278128097873
+ - -1.1781168378735487
+ - 0.3807111898822285
+ - 1.8299857921187486
+ - 2.867037536301514
+ - 2.0253988858976
+ - 0.8235711525304774
+ - 0.6051649096579527
+ - -2.1189329439718083
+ - -3.6403131205009376
+ - -1.9959721652826061
+ - -0.722389135394026
+ - 0.8673583973539013
+ - 2.0780912952545045
+ - 2.3873187063351837
+ - 1.8994653831665553
+ - 2.0742459307169847
+ - 0.8649850289492147
+ - -2.143608314725443
+ - -3.2066277181454437
+ - -1.7577271600214568
+ - -0.3521346367543899
+ - 1.1876662975524832
+ - 1.830605567729234
+ - 1.5605682868391582
+ - 0.6942625749360849
+ - 0.17855994104435402
+ - -1.0868902862870453
+ - -2.188676984177673
+ - -2.3517417151879956
+ - -1.475642786969615
+ - 0.029113280873959427
+ - 1.5416227228038941
+ - 2.229244765377369
+ - 1.735289381427078
+ - 0.39064966395034373
+ - -0.33493518324749627
+ - -1.4141509609011569
+ - -2.322135578942133
+ - -2.4636091476283752
+ - -2.946466157190689
+ - -1.6824127116833043
+ - 2.0454775165814434
+ - 3.2600065827022373
+ - 2.2731518023544366
+ - 1.2806025492156756
+ - -0.26755048907246576
+ - -1.7017387566266238
+ - -2.394743154063655
+ - -2.292650057511877
+ - -4.3563427077218035
+ - -2.9809471429860084
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.5042744836556845
+ - 3.6217149479114044
+ - 1.870461665249323
+ - 1.4751419309268123
+ - 0.44272004180120567
+ - -0.7882899542540923
+ - -1.672202791254261
+ - -2.005574859793799
+ - -2.4679013371619365
+ - -1.5029336559400113
+ - 1.4173294146908928
+ - 2.3939767312072626
+ - 1.8503894703544461
+ - 1.2771432636852293
+ - 0.26982710262839954
+ - 0.006208811819646419
+ - -0.4543387623319803
+ - -1.2636163189652487
+ - -1.537001462306114
+ - -0.2551915694882711
+ - 0.9518561731679653
+ - 1.7534821208545186
+ - 1.7821896746900519
+ - 1.0444458877246696
+ - -0.0521945097219495
+ - -0.3910817265457109
+ - -0.6818679789339884
+ - -1.1081143811748704
+ - -1.2038887215128447
+ - 0.041064895374931264
+ - 1.1940934637854574
+ - 1.960950270089708
+ - 2.5342575531653178
+ - 1.6486841902021412
+ - -0.8216289227846314
+ - -1.8018052965437965
+ - -1.8053717431786684
+ - -1.7179092302282406
+ - -0.8899407813806511
+ - 0.333748150691696
+ - 1.405825316740536
+ - 2.0188830835101736
+ - 2.831570014080347
+ - 1.6029221148339723
+ - -0.635199807075339
+ - -0.7993286638560773
+ - -1.5129943309556217
+ - -2.061453193742342
+ - -0.5415931333240218
+ - 0.689101018922321
+ - 1.6276679177814428
+ - 1.8493130204313808
+ - 1.2743693471245408
+ - 0.26531654353517287
+ - -0.001044248066602662
+ - -0.43827493432523607
+ - -1.32852671504342
+ - -1.563676729003331
+ - -0.2516480167430499
+ - 0.954769489095844
+ - 1.855725021952534
+ - 2.4059896385635624
+ - 1.5413895387645966
+ - -0.49139990973711073
+ - -1.4703943116631766
+ - -1.7074289757968901
+ - -1.8128528914583766
+ - -1.1376107179034423
+ - 0.04241339548845889
+ - 1.1963691754403083
+ - 1.9625151782898695
+ - 2.4878805649847955
+ - 1.5180665014945616
+ - -0.7168559781255666
+ - -1.773951750770991
+ - -1.8077976490953516
+ - -1.7191421172221086
+ - -1.0541495724634455
+ - -1.0296854712398875
+ - -0.2739388651455538
+ - 1.7056582686693216
+ - 2.2661165736553035
+ - 0.9770679341736502
+ - -0.22673984464004945
+ - -1.3375221945581717
+ - -1.860131194188298
+ - -1.5795035904428478
+ - -0.7658519713708317
+ - -1.01031366763751
+ - -0.5290680546513272
+ - 2.906706360262401
+ - 3.9234200146003904
+ - 1.1197714006568866
+ - -0.05498552396193379
+ - -1.210605027010883
+ - -1.8342819728908066
+ - -1.665165996916013
+ - -0.9355931197615643
+ - -0.8693558302173368
+ - -0.15707913591175773
+ - 1.6742316220087334
+ - 2.1795699839660134
+ - 0.8689654781503905
+ - -0.3486108402468156
+ - -1.4636987717570515
+ - -2.019807362551905
+ - -1.4568396203362382
+ - -0.036003335372298155
+ - 0.6896088552083595
+ - 1.344271394238964
+ - 1.8617577626577415
+ - 1.5791114768370362
+ - 0.597601813426529
+ - -0.6343337067728401
+ - -1.6678682793154527
+ - -2.229798884998032
+ - -1.5180860103255513
+ - 0.20872204667805208
+ - 1.0630782231493658
+ - 1.5338868320269636
+ - 1.869075209344393
+ - 1.5826880536004142
+ - 1.7656576150679983
+ - 1.1420309665649049
+ - 0.6967907119075752
+ - 0.42346286497052377
+ - -0.6523871344731452
+ - -1.5986100941172858
+ - -1.8597475589540116
+ - -1.2994774654524088
+ - -0.18420275318155807
+ - 1.0058372168078187
+ - 1.708084613611818
+ - 1.3651735220506236
+ - 1.0683736686781764
+ - 0.9176516614301601
+ - -1.4964099518342315
+ - -2.7852909488488233
+ - -1.7642439885617924
+ - -0.995110797562448
+ - 0.20573135816335641
+ - 1.3189623552708862
+ - 1.8577230819774033
+ - 1.7796981191700814
+ - 2.060608675011924
+ - 1.0356880845607455
+ - -1.5938462078881304
+ - -2.5549288331887796
+ - -1.644426561336017
+ - -0.7343989418337797
+ - 0.43198860066593225
+ - 0.8488784023790169
+ - 0.9290017997709873
+ - 0.8875254921251092
+ - 0.7697401723129732
+ - -0.39164177944222517
+ - -1.4434866983184524
+ - -1.8774836003218656
+ - -1.4827230993108291
+ - -0.4530705844974882
+ - 0.740523135966936
+ - 1.2118257797367071
+ - 1.1119353518209618
+ - 0.6768012855613046
+ - 0.3820224309182692
+ - -0.6762481317094332
+ - -1.6137955378480633
+ - -2.0222171544651295
+ - -2.511660008428359
+ - -1.5606411319348892
+ - 1.3444451141641982
+ - 2.324952126818725
+ - 1.864104240267737
+ - 1.3632659985164604
+ - 0.27311688064437223
+ - -0.9408023273422775
+ - -1.742167968779235
+ - -1.9685641466080914
+ - -3.9198214672961287
+ - -2.7475998916672024
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.5056176075957457
+ - 3.7121457468208874
+ - 2.203285558705912
+ - 2.0337256866101017
+ - 0.9872737764060573
+ - -0.49853357126683995
+ - -1.7601363185038001
+ - -2.4461066735495227
+ - -3.0989712651292054
+ - -2.004777061160188
+ - 1.4088877432873756
+ - 2.584365928632384
+ - 2.2550136143851023
+ - 1.8557623024500605
+ - 0.8308351186018702
+ - 0.6460322830408023
+ - -0.16119414301274335
+ - -1.7158703704133769
+ - -2.3186006788653866
+ - -0.7731324247655063
+ - 0.7134406021054324
+ - 1.8983998026183566
+ - 2.2474449180613445
+ - 1.6278753660860237
+ - 0.45510878741767474
+ - 0.16925747985049294
+ - -0.4528718117340579
+ - -1.5805611357990856
+ - -1.9811533334942055
+ - -0.42803081344782645
+ - 1.0422453370263887
+ - 2.1808592791323567
+ - 2.9067637822116366
+ - 2.0033694781147906
+ - -0.60122494591227
+ - -1.6649986856109869
+ - -2.006094952040543
+ - -2.215685767565201
+ - -1.4714549552817364
+ - -0.07467037234584377
+ - 1.3449576141236035
+ - 2.330026984167728
+ - 3.361231746489443
+ - 2.0276538730121465
+ - -0.2985928480392924
+ - -0.5095350972233755
+ - -1.9769939143976123
+ - -2.9273932883387963
+ - -1.0949493960238261
+ - 0.37053881917395365
+ - 1.6820637298158552
+ - 2.2536601421828126
+ - 1.8524946856369156
+ - 0.8253473476542371
+ - 0.6493814609728236
+ - -0.10852956259013345
+ - -1.8230114207493187
+ - -2.3599956753859908
+ - -0.7690695107596421
+ - 0.7167776596447035
+ - 1.9800601580510557
+ - 2.6583451618602205
+ - 1.8246424369994556
+ - -0.2080779007089643
+ - -1.217900583798263
+ - -1.8199911565739693
+ - -2.2567408682785137
+ - -1.7228586337628173
+ - -0.4258713914613406
+ - 1.0456117584653486
+ - 2.183546927485666
+ - 2.8542700762177486
+ - 1.8592130013514752
+ - -0.498587383118184
+ - -1.641871343330171
+ - -2.0095447300613904
+ - -2.217394831297306
+ - -1.6856215276039133
+ - -1.8158043743190144
+ - -0.7647696101918907
+ - 2.118980284410759
+ - 2.9852978687825433
+ - 1.5591318884385605
+ - 0.20503399260444322
+ - -1.2426521587659205
+ - -2.145044148498148
+ - -2.1191802249325464
+ - -1.3822553709555132
+ - -2.241042918918849
+ - -1.3929049078004443
+ - 3.6783367678308725
+ - 5.041165863652676
+ - 1.7029179037085915
+ - 0.41098827339038346
+ - -1.0630232049793302
+ - -2.0712220626673084
+ - -2.1822037594161845
+ - -1.5625792892108168
+ - -1.6427008114321473
+ - -0.6304511461921735
+ - 2.110761641144783
+ - 2.9210982415335645
+ - 1.4474001187259153
+ - 0.05676763353358559
+ - -1.369048431037838
+ - -2.0047580168004995
+ - -1.5908165446762939
+ - -0.4346207433714374
+ - 0.19999366376273606
+ - 1.2550151105004275
+ - 2.1501498006931112
+ - 2.1223613091742646
+ - 1.1562672197319477
+ - -0.3005535999819805
+ - -1.6735395277513432
+ - -2.3387924579433608
+ - -1.7234839964163544
+ - -0.14239725837943507
+ - 0.6761875895425945
+ - 1.5369139913932173
+ - 2.233879985573039
+ - 2.1913996767565855
+ - 2.554143623047184
+ - 1.3079784150210108
+ - 1.2084091400558565
+ - 1.1430247876609794
+ - -0.32365423399656207
+ - -1.6420373465800921
+ - -2.258069044461551
+ - -1.8775970931599768
+ - -0.692362810223342
+ - 0.7388963517052314
+ - 1.441994661078683
+ - 1.3595415134623905
+ - 1.656532368408183
+ - 1.5023795453852034
+ - -1.5689643777955218
+ - -3.156659211474428
+ - -2.240592923900137
+ - -1.5777260027389561
+ - -0.23254966365419244
+ - 1.2191664232935933
+ - 2.1370758149046174
+ - 2.3489234974583937
+ - 2.8169788851854918
+ - 1.5540188702782698
+ - -1.7592879638058623
+ - -2.9987732074517095
+ - -2.1683345012790505
+ - -1.3052165195060554
+ - 0.004735814672893757
+ - 0.40089273827333544
+ - 0.7833229507521229
+ - 1.3682638226036075
+ - 1.5162838140393373
+ - 0.003604488469296389
+ - -1.4008871662671032
+ - -2.2072532027985883
+ - -2.040120081037443
+ - -0.9969286796381853
+ - 0.39276463428828484
+ - 0.8711589761037402
+ - 1.0407368504782335
+ - 1.1513886750912528
+ - 1.082129007516539
+ - -0.35374367139577073
+ - -1.6632624582004467
+ - -2.4314339780426004
+ - -3.108178606686337
+ - -2.046771518382438
+ - 1.2993432159901817
+ - 2.462698228807416
+ - 2.239638879283471
+ - 1.9350156367907616
+ - 0.7955040484180868
+ - -0.6988443222116903
+ - -1.882810704883129
+ - -2.4490941891558977
+ - -5.039139350591263
+ - -3.588706176639686
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.207982971819489
+ - -4.2573054033742785
+ - -0.9631366294682595
+ - 0.5191085213961392
+ - 1.783445969042261
+ - 2.2629049577179754
+ - 1.7662339449762665
+ - 0.6714050497027266
+ - 0.4419027458436674
+ - -0.2384136000006938
+ - -1.855336792034119
+ - -2.2500587002177834
+ - -0.6273146847255261
+ - 0.8597231972783543
+ - 2.076377507096542
+ - 2.755038911322592
+ - 1.8489720349229526
+ - -0.33138836005376565
+ - -1.4027925268545254
+ - -1.909178429294641
+ - -2.251103077594711
+ - -1.624465203181188
+ - -0.2779576939147956
+ - 1.1791228447712583
+ - 2.257714345978532
+ - 2.9216433835470665
+ - 1.8639473266406663
+ - -0.6181504361348281
+ - -1.8115656274864365
+ - -2.0784365646493477
+ - -2.188140831679718
+ - -1.5668718551668923
+ - -1.643634269917522
+ - -0.5841167753440719
+ - 2.006199583683904
+ - 2.903077799480308
+ - 1.4500658032897418
+ - 0.05502810347982698
+ - -1.369131848645295
+ - -2.1920136397390815
+ - -2.0669728881546225
+ - -1.2472301622016002
+ - -1.3465245841998346
+ - -0.2228993628653764
+ - 2.2687612846729355
+ - 2.2772323711107707
+ - -0.062081146618964314
+ - -1.0939725433411214
+ - -1.6945734407059658
+ - -2.2600095189381997
+ - -1.8539106731275024
+ - -0.6271268562111019
+ - 0.8611517320606268
+ - 2.077946661858324
+ - 2.8101317504007866
+ - 1.9864130102158426
+ - -0.43045625041943797
+ - -1.4321254270485435
+ - -1.9114838605665805
+ - -2.253010179713855
+ - -1.844554522109136
+ - -1.9978812886684865
+ - -0.7548948926105719
+ - 1.8541152274468407
+ - 2.977342715552123
+ - 1.7050847613547966
+ - 0.4095847740643769
+ - -1.0674147381843517
+ - -2.0766650089336585
+ - -2.186346982183081
+ - -1.5640271806230581
+ - -1.610529083577954
+ - -0.47495553388004313
+ - 1.8625213092203587
+ - 2.846912483411482
+ - 1.4487566917526316
+ - 0.05455640570229687
+ - -1.37413379780087
+ - -2.073355108653115
+ - -1.768048417139203
+ - -0.404017856518997
+ - 0.19755660708562847
+ - 1.2596910212464487
+ - 2.155545738125788
+ - 2.1261492624471585
+ - 1.1567754694289696
+ - -0.3035312158891385
+ - -1.6790399138845546
+ - -4.018225240599545
+ - -3.051423562200694
+ - -0.3980362252874061
+ - -0.20814495051095983
+ - 1.0812307706731816
+ - 2.082819580086166
+ - 2.1909038946574677
+ - 1.3307641927741178
+ - -0.09583525679270762
+ - -1.5069068887293835
+ - -2.223944982872494
+ - -1.8426214722291754
+ - -0.2634629607223992
+ - 0.4051259989430882
+ - 1.3827472913475403
+ - 2.1979592332018068
+ - 2.287124685930582
+ - 2.657038806768757
+ - 1.291022419156624
+ - -1.675181084670317
+ - -2.999333392013936
+ - -2.1105676910631024
+ - -1.1438384650341809
+ - 0.31946083408379716
+ - 1.6456246799720788
+ - 2.255441929498364
+ - 2.115912992570839
+ - 2.3908643785735952
+ - 1.0611997777236482
+ - -1.784125596026006
+ - -3.035006970642029
+ - -1.9553885402162752
+ - -0.8232510727314826
+ - 0.597562414984379
+ - 1.1390921309679434
+ - 1.2077939479270952
+ - 1.3151634971448365
+ - 2.5639093022044435
+ - 2.2568151545327395
+ - 1.8639862977956196
+ - 0.6665368647826477
+ - -0.8289072031669141
+ - -1.9580413860649435
+ - -2.443561807879292
+ - -3.3410930406887123
+ - -1.7762709076417194
+ - 1.1688375702455973
+ - 1.3474454448402566
+ - 1.6070489954737956
+ - 1.9707001169593692
+ - 0.20701978468658955
+ - -1.2389173629427992
+ - -2.1566857140363678
+ - -2.1236034921434497
+ - -1.1776939229433347
+ - 0.1742253596157666
+ - 0.6218964812122943
+ - 0.9092409104618152
+ - 1.330967857865286
+ - 1.3620925405690392
+ - -0.15212241669552282
+ - -1.5225487634155637
+ - -2.399420768249146
+ - -3.0239548513203256
+ - -1.8213013807177965
+ - 0.9370415322142623
+ - 2.236050973967682
+ - 2.20942652798357
+ - 2.0364134033057013
+ - 0.9853326916373585
+ - -0.5042535778797825
+ - -1.7671590817884253
+ - -2.452080294304891
+ - -3.0262856889519463
+ - -1.7344260877217548
+ - 1.1809024528249537
+ - 2.5330786637393565
+ - 2.260539094393424
+ - 1.8573933309167554
+ - 0.8279896791073045
+ - 0.6472621463594315
+ - -0.09650467410218215
+ - -1.9201163035582065
+ - -2.3888086868683405
+ - -0.7705331984742374
+ - 0.7195370333900892
+ - 1.9053757049691782
+ - 2.2522157612244684
+ - 1.6284013780279971
+ - 0.4511760348286353
+ - 0.19673067036908506
+ - -0.10618198327962412
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.9203500537196208
+ - -3.944665099697616
+ - -1.1358125781005266
+ - 0.03712917972451801
+ - 1.1986240811053355
+ - 1.8334830410644816
+ - 1.67581519327376
+ - 0.9542626897770451
+ - 0.8938855417162236
+ - 0.1740924853330757
+ - -1.6818008522232357
+ - -2.1959387642164168
+ - -0.8861596579937938
+ - 0.33148076753352
+ - 1.4523732868791128
+ - 2.0085467656061335
+ - 1.4541596741551996
+ - 0.05084290436598056
+ - -0.6675115804508038
+ - -1.3337792927897942
+ - -1.8627503620148993
+ - -1.5912076651811653
+ - -0.615486734912648
+ - 0.6183895345789603
+ - 1.6592402337208274
+ - 2.2220955694440083
+ - 1.5177736369492465
+ - -0.19437873121734084
+ - -1.0428772244656794
+ - -1.5258676805740767
+ - -1.8729095717975708
+ - -1.5972321942722663
+ - -1.7859956683085085
+ - -0.8079352412510414
+ - 1.6539198163708224
+ - 2.5352310331194627
+ - 1.475987136579969
+ - 0.43795941524367293
+ - -0.7927920099019503
+ - -1.6765064219670998
+ - -1.8335403374550985
+ - -1.377447419779827
+ - -1.6380824319648322
+ - -0.5338054581360911
+ - 1.8023057962385554
+ - 1.8464929715935854
+ - 0.3050685357149826
+ - -0.3207607462171955
+ - -1.1108903166957904
+ - -1.8084025549832585
+ - -1.7294676657762713
+ - -0.8857730120066306
+ - 0.333165253489802
+ - 1.4545635731506743
+ - 2.050422761811731
+ - 1.5507120329649446
+ - -0.00640270687232354
+ - -0.6827349854345699
+ - -1.3362829122727844
+ - -1.8648161249067146
+ - -1.775452992033639
+ - -2.0147392186905315
+ - -0.9076829045453534
+ - 1.4664945814901316
+ - 2.512667527498637
+ - 1.6393601627773295
+ - 0.718618283328611
+ - -0.5153169642164657
+ - -1.5248886182706822
+ - -1.8721273854135994
+ - -1.5955190552062282
+ - -1.7511034972465422
+ - -0.6980476452989549
+ - 1.5248352228628093
+ - 2.487803402730905
+ - 1.4755939972350036
+ - 0.43790091617820354
+ - -0.7584161576267916
+ - -1.2742100833576295
+ - -1.2264746532947268
+ - -0.689734403283646
+ - -0.38062922889568784
+ - 0.6927719769030362
+ - 1.6251204956807477
+ - 1.860895873158593
+ - 1.2746926136130126
+ - 0.14431581494385357
+ - -1.0476260815751042
+ - -2.6976080092239547
+ - -2.103703459468368
+ - -0.9634952800706545
+ - -1.060395556057264
+ - 0.5295274503843282
+ - 1.5322896017210879
+ - 1.878749117036884
+ - 1.3956428840898003
+ - 0.3156807719695225
+ - -0.8827366667074995
+ - -1.421202329732622
+ - -1.3079419007066924
+ - -0.579912364240691
+ - -0.20915181500853572
+ - 0.8075827221462095
+ - 1.684286014248668
+ - 2.007556548973336
+ - 2.406210358787514
+ - 1.2792454135647626
+ - -1.2138196390443434
+ - -2.347905316882229
+ - -1.8510904965042176
+ - -1.2656310792835173
+ - -0.1326034662842926
+ - 1.0622084991822858
+ - 1.7923877447909382
+ - 1.9299250866169002
+ - 2.2606457419306802
+ - 1.12575679818105
+ - -1.3499728305817589
+ - -2.460415623929256
+ - -1.781785842447839
+ - -1.0334352134908973
+ - 0.06946221447573181
+ - 0.4221749437425081
+ - 0.6975993009639634
+ - 1.147460149958874
+ - 1.7724844998064782
+ - 1.797570113199691
+ - 1.7300901820441943
+ - 0.9169413422259635
+ - -0.3038264891021812
+ - -1.3858679696894598
+ - -2.015662008947747
+ - -2.833088695845449
+ - -1.612039297249115
+ - 0.6053449270879839
+ - 0.7705537512461357
+ - 1.5189707666169212
+ - 2.0827435695702
+ - 0.5595772105523127
+ - -0.6734381755402902
+ - -1.621087114587034
+ - -1.8547406016836114
+ - -1.2893964128641786
+ - -0.28501167034060676
+ - -0.0234548591949068
+ - 0.42352039697689825
+ - 1.3401147260737647
+ - 1.5853787178929006
+ - 0.2698127391687219
+ - -0.9407384623129057
+ - -1.850572513478104
+ - -2.40274986787452
+ - -1.5438883541286506
+ - 0.47811272169046165
+ - 1.4531022574906862
+ - 1.702616482283963
+ - 1.8199654072203335
+ - 1.153631850917852
+ - -0.02453600328061335
+ - -1.184344425030332
+ - -1.9604380906008632
+ - -2.4884975547942694
+ - -1.522868825805662
+ - 0.7048224328818558
+ - 1.7595859506465867
+ - 1.8058124936654145
+ - 1.7287971155757555
+ - 1.072355499748294
+ - 1.0538421927703427
+ - 0.29098772355731994
+ - -1.7121849360570747
+ - -2.2811822424723007
+ - -0.9938230849414603
+ - 0.20926207322839907
+ - 1.32685436612204
+ - 1.8610022216102111
+ - 1.591458954625414
+ - 0.7850199447556473
+ - 1.051234529644672
+ - 0.5587893556841437
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.1472235243671407
+ - -4.445684480593696
+ - -1.9536794206699073
+ - -1.1864987563252924
+ - 0.09486367384800987
+ - 1.337858901469528
+ - 1.9973901466147919
+ - 1.994700833936781
+ - 2.3480527363184787
+ - 1.2893309315529884
+ - -1.7922246059604212
+ - -2.7823538300497206
+ - -1.842534937930479
+ - -0.9135673284380399
+ - 0.3319411798864518
+ - 0.7577066897098035
+ - 0.9220101070166405
+ - 1.0477496464875138
+ - 0.9974523311856426
+ - -0.2988153355178626
+ - -1.482098616749848
+ - -2.0314114888351247
+ - -1.684238208224141
+ - -0.6152220086192578
+ - 0.672588856224565
+ - 1.1621519774386742
+ - 1.1313502166365188
+ - 0.8280632133693566
+ - 0.5837875580785006
+ - -0.6128816504650021
+ - -1.6831097119825962
+ - -2.2025550979062403
+ - -2.7408470668578464
+ - -1.6486633738016085
+ - 1.296802546956026
+ - 2.4292390409153977
+ - 2.029887979858649
+ - 1.564503135590652
+ - 0.4232421083092757
+ - -0.9083009385172818
+ - -1.8404850969849187
+ - -2.166240879717858
+ - -2.926654189832776
+ - -1.5073154631772314
+ - 1.2014216245866562
+ - 1.3517842797714765
+ - 1.347259394304972
+ - 1.5559765853360028
+ - 0.018924268222154157
+ - -1.2476062188478798
+ - -1.9815184714642071
+ - -1.8415125618734685
+ - -0.9106703864644006
+ - 0.33644648834875174
+ - 0.7795174173001707
+ - 0.9456027441428468
+ - 1.0788391285593935
+ - 1.013380912375688
+ - -0.30265284439526724
+ - -1.4852549766533156
+ - -2.1845949520743684
+ - -2.723319038418127
+ - -1.599218374077872
+ - 0.956858660711679
+ - 2.1509427466396183
+ - 2.012216150158663
+ - 1.748360102113634
+ - 0.7301904444932963
+ - -0.6136088569170104
+ - -1.6846661920341752
+ - -2.2031786471359065
+ - -2.6898511404722623
+ - -1.5006247336380598
+ - 1.162508705197203
+ - 2.388561171159532
+ - 2.0317131319279533
+ - 1.5654840476264575
+ - 0.5699434954690202
+ - 0.35415619884659755
+ - -0.24280872214990984
+ - -1.6501457279915108
+ - -1.988908108481621
+ - -0.5321369511724997
+ - 0.8016933612142935
+ - 1.795283276094898
+ - 1.9980128263413697
+ - 1.340342082955747
+ - 0.22547195217866178
+ - -0.20215556188264153
+ - -0.3682968095012113
+ - -2.731624977049313
+ - -3.595909733822681
+ - -0.7102758268398445
+ - 0.626651549119112
+ - 1.6987671979079961
+ - 2.0229067836864756
+ - 1.4751395595094496
+ - 0.42624119214195905
+ - 0.16784573777950892
+ - -0.3688567763291969
+ - -1.5828628256523656
+ - -1.8533495897600702
+ - -0.40055396491512246
+ - 0.9233512059894187
+ - 1.9536723622284102
+ - 2.5576745104877863
+ - 1.6715079439720355
+ - -0.43165486611947784
+ - -1.4528990648376081
+ - -1.7970525720438433
+ - -1.9958953395925798
+ - -1.3355759519179806
+ - -0.08299742689096094
+ - 1.1969505627567563
+ - 2.0903619916430327
+ - 2.673304138498699
+ - 1.663066908268591
+ - -0.6825403928234758
+ - -1.7995890491047517
+ - -1.9250595293365735
+ - -1.9136728317169127
+ - -1.2617511925379479
+ - -1.2767213199460197
+ - -0.3802629218552759
+ - 1.7813740314904485
+ - 2.5175779898487844
+ - 1.2136111476209035
+ - 1.9581052790384166
+ - 1.8618419262397388
+ - 0.9422471755353469
+ - -0.3763748924651111
+ - -1.5841017748099562
+ - -2.466075382004486
+ - -1.723283062632147
+ - -0.6396500657760935
+ - -0.45424009226450307
+ - 1.7947514890771123
+ - 3.0578528264810103
+ - 1.6483993115071778
+ - 0.5541634868624341
+ - -0.783061699944781
+ - -1.7778398858012838
+ - -2.001636857819843
+ - -1.556708084379288
+ - -1.6860069099996542
+ - -0.6820978459213887
+ - 1.8061315101054183
+ - 2.681485170701339
+ - 1.440840630589666
+ - 0.24046447016017553
+ - -1.0543592886416835
+ - -1.6033529688642556
+ - -1.3424067405252995
+ - -0.5407774327648082
+ - -0.07465328501879571
+ - 0.9653348694893343
+ - 1.8659821437313497
+ - 1.966161877565449
+ - 1.1974504630689244
+ - -0.08101580245482215
+ - -1.3471947274250573
+ - -1.9313159231349535
+ - -1.48331281636302
+ - -0.2831777390926436
+ - 0.3572925594238225
+ - 1.2361619727282345
+ - 1.9699734234683173
+ - 2.053092687093004
+ - 2.4444124316181632
+ - 1.3806910886436008
+ - -1.7444438651261378
+ - -2.758547855549757
+ - -1.8945834512700555
+ - -1.0300762218347153
+ - 0.28159716203598795
+ - 1.4724375406572512
+ - 2.022299131251043
+ - 1.9003069328345459
+ - 3.589500662160079
+ - 2.4484379742385562
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.7893273192131407
+ - -2.729764591887709
+ - -1.8690258646422298
+ - -1.949244262033648
+ - -1.189938127916563
+ - 0.09751413067304704
+ - 1.3344993376310892
+ - 2.1383165300843423
+ - 2.774061139257418
+ - 1.878010409780659
+ - -0.9979296218718843
+ - -2.0140288062104954
+ - -1.9699385552488136
+ - -1.8400980451711164
+ - -1.092962644342333
+ - -1.0313285518646687
+ - -0.1462478637338865
+ - 1.6276338722002448
+ - 2.351323390548688
+ - 1.0133969879569518
+ - -0.2966434878302377
+ - -1.4839602411920894
+ - -2.018580972376566
+ - -1.681754450253306
+ - -0.7769583900182785
+ - -0.6202339747022683
+ - 0.11908311998533826
+ - 1.5490685677243818
+ - 2.106640285535949
+ - 0.7235784526636545
+ - -0.6084526584594906
+ - -1.7523786863035415
+ - -2.4064318300280902
+ - -1.7458419521737187
+ - 0.2326145200673868
+ - 1.0662836530028468
+ - 1.6105580378270878
+ - 2.024901723835139
+ - 1.568418473195111
+ - 0.4173180891758441
+ - -0.9055752468794894
+ - -1.9401517319955106
+ - -2.870837056728585
+ - -1.8256073311368466
+ - -0.08693256678329016
+ - 0.10533177033310567
+ - 1.824453845510009
+ - 2.860960851516775
+ - 1.2746256892408627
+ - 0.019504975716529763
+ - -1.2488905064192974
+ - -1.9687272379033405
+ - -1.8373266325399618
+ - -1.088173103590881
+ - -1.0431649015299334
+ - -0.21645427243904602
+ - 1.7417350984437021
+ - 2.3939839940198957
+ - 1.0100321698072832
+ - -0.29940419939685015
+ - -1.5238937295679271
+ - -2.122056954676376
+ - -1.5546261923130573
+ - -0.10403372733626735
+ - 0.644105361024269
+ - 1.3991663976160702
+ - 2.006169900604126
+ - 1.7511601251975102
+ - 0.7213137999454208
+ - -0.611830187306748
+ - -1.7552988301436372
+ - -2.3635189561618466
+ - -1.6308982330798085
+ - 0.1612706957784821
+ - 1.0539981521788095
+ - 1.6139325186979694
+ - 2.0265449434382403
+ - 1.7657860486859378
+ - 1.996531742702284
+ - 0.9832638049688425
+ - -1.8806108008767695
+ - -2.7714736434596206
+ - -1.6314787076644168
+ - -0.5311695549043214
+ - 0.8022605564301619
+ - 1.784759140333419
+ - 1.9933758592171216
+ - 1.5358579335594995
+ - 2.6962960880087175
+ - 1.7640010800928083
+ - -3.312808123100277
+ - -4.593882476554863
+ - -1.7350573276288297
+ - -0.7086323766096541
+ - 0.6270854551270693
+ - 1.68931845083612
+ - 2.0181748879811963
+ - 1.6739796599196142
+ - 1.8616119660083719
+ - 0.8718468381353399
+ - -1.8954330745072003
+ - -2.7455769082823562
+ - -1.5485069597759253
+ - -0.40183327747447894
+ - 0.8926592103120804
+ - 1.4172838293176786
+ - 1.2547030674861261
+ - 0.6654620984136702
+ - 0.2936772552028166
+ - -0.8160874512655136
+ - -1.7915033765367983
+ - -1.9988313810129918
+ - -1.3231182795592742
+ - -0.08301302871087464
+ - 1.1993773990133325
+ - 1.7662275652546706
+ - 1.413039821593848
+ - 0.41457921675216614
+ - -0.13772020739499397
+ - -1.099518856319608
+ - -1.9193658791809087
+ - -2.1064488626805646
+ - -2.5255567274700668
+ - -1.3927012675305304
+ - 1.5789461822045678
+ - 2.6904915853010882
+ - 1.94319934780421
+ - 1.2105489362511013
+ - 1.9665039206445192
+ - 1.8552360828332752
+ - 0.9470369565287107
+ - -0.28938389046899826
+ - -0.7919070582081359
+ - -0.9652180668306543
+ - -1.7064204050497138
+ - -1.5933513887971689
+ - 1.184362043738999
+ - 2.5837559654070827
+ - 2.023577668477925
+ - 1.645239264885351
+ - 0.5566078573618441
+ - -0.7811091049114052
+ - -1.7741169907641061
+ - -2.1836698416127764
+ - -2.684501115138398
+ - -1.5710237293632838
+ - 1.402977762247269
+ - 2.5356799633269027
+ - 2.014400451710924
+ - 1.4402479101904042
+ - 0.3774382529655741
+ - 0.11320205570316119
+ - -0.4291726347626007
+ - -1.4049517533151274
+ - -1.7475034462143355
+ - -0.3548617549361624
+ - 0.9617735387556117
+ - 1.869136513629748
+ - 1.9527485708527401
+ - 1.1962090725982395
+ - 0.02966585600472527
+ - -0.3180603684654747
+ - -0.6792632110472123
+ - -1.2446970159609014
+ - -1.396280307418833
+ - -0.035004280032051846
+ - 1.2310787696962142
+ - 2.0999343825658703
+ - 2.749836247756448
+ - 1.8939760606918332
+ - -0.8870767605386802
+ - -1.8802798690038929
+ - -1.9330388046917344
+ - -1.890535878068674
+ - -1.0333248771876087
+ - 0.283068685342844
+ - 1.4690267703129076
+ - 2.1761007306901656
+ - 4.593836894430722
+ - 3.3107684101165518
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.3449324970374129
+ - 0.16935192676760952
+ - -0.9779617971283956
+ - -1.873861255229322
+ - -1.9658793106554184
+ - -1.1891048682569545
+ - 0.09377785936118838
+ - 1.3601502749836887
+ - 2.005046082125602
+ - 1.6586921977549887
+ - 0.22947785402831777
+ - -0.3744284651548868
+ - -1.2481279147499555
+ - -1.9761318413940914
+ - -2.051308636903052
+ - -2.3816275399427216
+ - -1.1550590203507871
+ - 1.5074810582666351
+ - 2.695656737053917
+ - 1.8929858400100092
+ - 1.0207848719540098
+ - -0.2946066322460815
+ - -1.4834347448892895
+ - -2.0265610122032665
+ - -1.896326035472986
+ - -2.1411679162110318
+ - -0.9479856563355541
+ - 1.6044025184188295
+ - 2.726063073484703
+ - 1.7524979311663063
+ - 0.7322861548903654
+ - -0.5448605961402514
+ - -1.032970917971125
+ - -1.0903580086345819
+ - -0.9355184801103401
+ - -0.7611987083144927
+ - 0.4951595100798453
+ - 1.613512711374041
+ - 2.0410198041220275
+ - 1.5674509226442845
+ - 0.42309244266999246
+ - -0.876495015445071
+ - -1.576620391103435
+ - -1.3575860482809126
+ - -1.3421709688127699
+ - -1.1907873400303979
+ - 1.5163726574543626
+ - 2.936430369553986
+ - 1.9848402851878004
+ - 1.2825101197859439
+ - 0.024880720313468777
+ - -1.2472506732552235
+ - -1.9746823847844215
+ - -2.048298314189867
+ - -2.4221175052664723
+ - -1.2891029519841928
+ - 1.655662663382371
+ - 2.746739552418084
+ - 1.8915450983477786
+ - 1.0196119271996529
+ - -0.20368269154754395
+ - -0.6034959754614765
+ - -0.8393637489034632
+ - -1.1236613258532266
+ - -1.1456601539381543
+ - 0.18056392507861863
+ - 1.3995840132679613
+ - 2.0203138310575985
+ - 1.7496661071429696
+ - 0.7285381414382588
+ - -0.5488255913328631
+ - -1.0166774890325279
+ - -1.0581980566149032
+ - -0.9129273193479472
+ - -0.7396962514905792
+ - 0.4986327234034707
+ - 1.6151110129776156
+ - 2.204098269436215
+ - 2.7833731423905386
+ - 1.7894161822047305
+ - -1.3007392357998553
+ - -2.3613429469433185
+ - -2.0308900183249183
+ - -1.6394664904001193
+ - -0.5401569600559493
+ - 0.8010034337006241
+ - 1.788873105375818
+ - 2.188272558184288
+ - 4.441672080752536
+ - 3.1427214715656504
+ - -2.467130882965138
+ - -3.613875878420922
+ - -2.0149815591464977
+ - -1.742817358211191
+ - -0.7187045405390262
+ - 0.6259836479458883
+ - 1.6926045716478473
+ - 2.203961445552126
+ - 2.7582109658352865
+ - 1.740734261957767
+ - -1.391554381905004
+ - -2.4566511491996397
+ - -2.032481249196237
+ - -1.5582085936903647
+ - -0.5569692334523623
+ - -0.33826530944258076
+ - 0.2953202163395934
+ - 1.4792905759664514
+ - 1.9195253921966726
+ - 0.5201948492183595
+ - -0.8137300199099631
+ - -1.802232633765277
+ - -1.9967856355610065
+ - -1.331522911621002
+ - -0.21193353532734263
+ - 0.09428466737247067
+ - 0.5527107449985311
+ - 1.3366172914528869
+ - 1.5891966257856733
+ - 0.20305618262105268
+ - -1.0972447815703745
+ - -2.045494089255343
+ - -2.6893493869902803
+ - -1.8079001570030888
+ - 0.6948220042345158
+ - 1.7035687486670628
+ - 1.8823072915461692
+ - 1.9503551099966874
+ - 1.2233577410500682
+ - 1.971153954393429
+ - 1.8664830859780466
+ - 1.1345474370813096
+ - 1.22950561731859
+ - 0.21172754752025924
+ - -2.0408265147382454
+ - -2.049111679993844
+ - 0.06107585073734262
+ - 0.9936577245099377
+ - 1.52724905683905
+ - 2.0304211240429355
+ - 1.6607629253194565
+ - 0.5559062553819798
+ - -0.7806363380428235
+ - -1.8709317815869295
+ - -2.5285456560985917
+ - -1.7853795208748946
+ - 0.3933405395246639
+ - 1.2957244161207984
+ - 1.7210859412336716
+ - 2.0229223541787817
+ - 1.6513112100415717
+ - 1.786766788393409
+ - 0.6722699527982496
+ - -1.6660987332793982
+ - -2.672331746557451
+ - -1.5264915791659472
+ - -0.3603266395620978
+ - 0.9656112648261003
+ - 1.8683800002776165
+ - 1.9618436981238465
+ - 1.398411191258595
+ - 1.4378596931335668
+ - 0.4204894174793225
+ - -1.672638851444736
+ - -2.553590788421557
+ - -1.295393368691343
+ - -0.041299266459630384
+ - 1.241219686121085
+ - 1.8702751729914817
+ - 1.5921225725433001
+ - 0.3558062904458722
+ - -0.18804958830866036
+ - -1.1378927371108993
+ - -1.9385215959832187
+ - -1.9070371659727259
+ - -1.032431771638804
+ - 0.2802735169526506
+ - 1.5142656448488867
+ - 3.6202336545623752
+ - 2.748072482325716
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.3324096093096607
+ - 3.001039260753986
+ - 0.3466510557112072
+ - -0.9718483205097395
+ - -1.8767388049929683
+ - -1.9545058969167808
+ - -1.1914104703190602
+ - -0.019840733271614338
+ - 0.3498074460851521
+ - 0.7072811612913651
+ - 1.358750896037501
+ - 1.434414980087558
+ - 0.025960496299745478
+ - -1.2409601989030254
+ - -2.107351048231436
+ - -2.6849206769963025
+ - -1.656972869119126
+ - 0.7221723249285646
+ - 1.8519696899532698
+ - 1.9398994925977546
+ - 1.8913085209380773
+ - 1.0276580419358483
+ - -0.2926994482453559
+ - -1.47844382805593
+ - -2.1821452860070485
+ - -2.721573587168086
+ - -1.5996292354152828
+ - 0.9522748549597958
+ - 2.1447445216448173
+ - 2.011076298599606
+ - 1.7534166928544552
+ - 0.905985313176742
+ - 0.7995076834274764
+ - 0.047655382501222913
+ - -1.6939778217719426
+ - -2.2575398290343225
+ - -0.8414161261753419
+ - 0.4894755628271816
+ - 1.614640017408315
+ - 2.0291604559250334
+ - 1.5684878917401885
+ - 0.5763922212252642
+ - 0.4161843221653962
+ - -0.28964725623290477
+ - -2.008605764372511
+ - -1.9649708324367858
+ - 0.5387439895187619
+ - 1.7170186775326466
+ - 1.8214473541287093
+ - 1.983043546370364
+ - 1.2908685346495925
+ - 0.026116132411918274
+ - -1.2414749607902913
+ - -2.107454532965949
+ - -2.7362832524204697
+ - -1.7958961033204592
+ - 0.8391668800961105
+ - 1.888967312285303
+ - 1.9410257823432115
+ - 1.892245158751738
+ - 1.2096663514040664
+ - 1.1850321727863202
+ - 0.24788066594931268
+ - -1.6502668913260528
+ - -2.434630454912779
+ - -1.1207258568508704
+ - 0.17421050369007535
+ - 1.3991094099883992
+ - 2.0089262360215634
+ - 1.750951038831917
+ - 0.9027214418115507
+ - 0.7819289362757063
+ - -0.017359612999680796
+ - -1.5871803800276152
+ - -2.211649438763269
+ - -0.8393756791968452
+ - 0.49032391459927466
+ - 1.6714201443992782
+ - 2.3446150727129558
+ - 1.8083888889952293
+ - -0.14574189235670826
+ - -0.9087491115999244
+ - -1.5356044394879418
+ - -2.0274732276525107
+ - -1.6477070755261825
+ - -0.5384881692218145
+ - 0.7949006182279381
+ - 1.8772126881665294
+ - 4.232481162674867
+ - 3.1388396351456027
+ - -0.5312426359111286
+ - -1.0375720686065446
+ - -1.406924941193719
+ - -2.0109452152929936
+ - -1.750889800705901
+ - -0.716096100208865
+ - 0.619718681731859
+ - 1.7632416507261137
+ - 2.440581466086355
+ - 1.844069073419287
+ - -0.2726871178616365
+ - -1.083530589299236
+ - -1.621267983252573
+ - -2.030251896335479
+ - -1.7645839350838108
+ - -1.9490235910556277
+ - -0.7967124667755161
+ - 1.6427345852474717
+ - 2.702862823080117
+ - 1.6303982217718849
+ - 0.5253769604888752
+ - -0.8102905355957292
+ - -1.7914847029581251
+ - -1.9959087791778778
+ - -1.5333081372559763
+ - -1.6234283506618972
+ - -0.5535390199966208
+ - 1.671467326227784
+ - 2.61954411330283
+ - 1.4193379634649286
+ - 0.21086104953137366
+ - -1.0822482119862054
+ - -1.6674512157483434
+ - -1.4267879555480025
+ - -0.49795867552501477
+ - -0.03716304400081054
+ - 0.991095638300364
+ - 1.876948270103433
+ - 1.9575523405285817
+ - 1.2180113739609577
+ - 1.9650439412870722
+ - 2.061666771949416
+ - 2.7137224886627678
+ - 1.2982408871049569
+ - -1.4759913458394887
+ - -1.6022802301507564
+ - -1.091960212707929
+ - -1.0386619433002626
+ - 0.3561059490958344
+ - 1.5210777803903024
+ - 2.03522354950838
+ - 1.6510945120509948
+ - 0.5596217063062188
+ - -0.7322629269008538
+ - -1.2570231862126586
+ - -1.2128543388081285
+ - -0.7923029173173337
+ - -0.5187978211980977
+ - 0.6679763318850344
+ - 1.7148730871294968
+ - 2.200084098156232
+ - 2.676490640059601
+ - 1.4799743129505132
+ - -1.1930899159941657
+ - -2.420880943476225
+ - -2.0278160852135323
+ - -1.526820013811893
+ - -0.3660466691840189
+ - 0.959777142617256
+ - 1.8641498440278317
+ - 2.1538329406488286
+ - 2.564027143095956
+ - 1.337544903255143
+ - -1.3639567936312886
+ - -2.5875707794131593
+ - -1.987622341050392
+ - -1.2986494812394573
+ - -0.1670684824855069
+ - 0.16365282258484873
+ - 0.5873288422191096
+ - 1.4448785027447621
+ - 1.591355849811686
+ - 0.16109689884227038
+ - -1.1316679889003194
+ - -1.9418631832371012
+ - -1.895885492045479
+ - -1.0350678906303892
+ - 0.1829271257163328
+ - 1.0475474048639404
+ - 0.9719714549370367
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.3040351483188264
+ - 4.524044990800942
+ - 1.5142358586774014
+ - 0.3432732829532813
+ - -0.9801305803346803
+ - -1.873937241135527
+ - -1.9561076476193517
+ - -1.3831796164390575
+ - -1.4463060750405938
+ - -0.5430440975498771
+ - 1.8964050445286675
+ - 2.6150681438918317
+ - 1.281384390434106
+ - 0.024161127200650112
+ - -1.2557885124739725
+ - -1.8304961295037472
+ - -1.4425613931752035
+ - -0.36943763030187937
+ - 0.21591298401970882
+ - 1.1513550506679944
+ - 1.9424526795592005
+ - 1.8997148029535225
+ - 1.0170536853659613
+ - -0.29703362254630455
+ - -1.5268098191931287
+ - -2.126855913215122
+ - -1.5587576153344933
+ - -0.10600335901351363
+ - 0.6434655078005214
+ - 1.4023091489734927
+ - 2.0136507230030363
+ - 1.9582513641627626
+ - 2.2770043263617006
+ - 1.1584636390036762
+ - -1.718673657304036
+ - -2.7731543955091893
+ - -1.8078823867922365
+ - -0.8386895485252407
+ - 0.4956151479993311
+ - 1.6145429085418483
+ - 2.0318735690432796
+ - 1.7725869810743644
+ - 2.2180969885258452
+ - 0.896717022496539
+ - -1.8063608750232805
+ - -1.8886277944675245
+ - -0.6650845758731116
+ - -0.2344553410668893
+ - 0.8748270283737033
+ - 1.8257025412229324
+ - 1.993659108803732
+ - 1.2807554885984638
+ - 0.021915325042829482
+ - -1.2589408614751751
+ - -1.87055086945603
+ - -1.526523947354391
+ - -0.33381665679105255
+ - 0.2229792813621829
+ - 1.1545460995862218
+ - 1.9450814536310814
+ - 2.0939111004916713
+ - 2.4528570480142973
+ - 1.222015362182064
+ - -1.4632884867355478
+ - -2.667842664815744
+ - -1.9318617410927896
+ - -1.118964284391374
+ - 0.17919756004928414
+ - 1.4017622484223293
+ - 2.0135183126988125
+ - 1.957088430749409
+ - 2.2333201717076396
+ - 1.024835515793781
+ - -1.5741437968435636
+ - -2.722770019885553
+ - -1.8081443879669326
+ - -0.838951949471595
+ - 0.42227722163322223
+ - 0.8990113672485717
+ - 1.0486852812040905
+ - 1.0652138567716873
+ - 0.9265520014728482
+ - -0.38210695134108297
+ - -1.5403127241765342
+ - -2.0393616805254973
+ - -1.6382725632271538
+ - -0.5354590284251559
+ - 0.7597857596895474
+ - 2.2023164179789276
+ - 1.783620267244313
+ - 1.6219844730183322
+ - 1.9702979739412334
+ - -0.19672002609312458
+ - -1.4117268038370439
+ - -2.023198898913474
+ - -1.7419871809396872
+ - -0.7136693741632971
+ - 0.5659857873857681
+ - 1.0740795873834152
+ - 1.152872120664156
+ - 0.957004484988588
+ - 0.7480127611505417
+ - -0.5144686670466105
+ - -1.62543906186604
+ - -2.20539592365312
+ - -2.7112016681853026
+ - -1.5393187708676546
+ - 1.0979731219344615
+ - 2.3179359275893994
+ - 2.032142437506649
+ - 1.6304235595907672
+ - 0.5246758760772525
+ - -0.8161023555473018
+ - -1.7970926060050214
+ - -2.1867831025819644
+ - -2.632112682968318
+ - -1.414973004511748
+ - 1.2847325155941547
+ - 2.516044863853903
+ - 2.017404410554265
+ - 1.420497500883265
+ - 0.34127640615486304
+ - 0.06632846763981054
+ - -0.4336417927715109
+ - -1.4693432958759063
+ - -1.7516652605065453
+ - -0.321574278325624
+ - 0.9958914234786923
+ - 1.8893824533839672
+ - 1.9501334837728033
+ - 1.2170179403544918
+ - 2.0957309950908374
+ - 3.0208813046838063
+ - 1.8194379687695794
+ - -0.27901747654413545
+ - -0.46824587126177886
+ - -1.768098495968825
+ - -2.6118604458221033
+ - -0.9614686817720008
+ - 0.35985889020109396
+ - 1.5312622003838214
+ - 2.029001943253728
+ - 1.6510688896045598
+ - 0.7149756735156896
+ - 0.5482146856717738
+ - -0.12152365976707039
+ - -1.629868086642245
+ - -2.099297054884499
+ - -0.6665284005043307
+ - 0.6703299960766099
+ - 1.7984320544918253
+ - 2.4086811303342324
+ - 1.6457605732238094
+ - -0.20919952531073815
+ - -1.1286455242592148
+ - -1.653160203594572
+ - -2.029118245609249
+ - -1.5322840469592698
+ - -0.35669877748476553
+ - 0.9644587781705176
+ - 1.9775268385555913
+ - 2.5796881657652366
+ - 1.6733577407784541
+ - -0.4698656155784769
+ - -1.507326741146137
+ - -1.820053896810844
+ - -1.9895027718420668
+ - -1.4951519474517332
+ - -1.6033971109388736
+ - -0.664422407557729
+ - 1.905487221664771
+ - 2.675175420426147
+ - 1.3830952317894742
+ - 0.15766047939598035
+ - -1.1404560723513892
+ - -1.9380317357568988
+ - -1.8970503989922982
+ - -1.2193426421793228
+ - -1.9610213866312722
+ - -1.2121552117266003
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.4322868685182772
+ - 4.920160222769831
+ - 2.3998744209516976
+ - 1.7465618331880715
+ - 0.33820512500769023
+ - -1.2235842302671824
+ - -2.2489266735812103
+ - -2.531946770908118
+ - -3.071703838532129
+ - -1.812656088640219
+ - 1.947090053364566
+ - 3.1878068986358192
+ - 2.336930809744425
+ - 1.465252429775574
+ - 0.09307995047515309
+ - -0.30718537037049687
+ - -0.7674648349175871
+ - -1.5090613842974683
+ - -1.7213204385506036
+ - -0.09426788715175659
+ - 1.4224752372959077
+ - 2.332230550386159
+ - 2.2135235629729832
+ - 1.143889349060716
+ - -0.32185869380233023
+ - -0.812585367406428
+ - -1.0477175200836606
+ - -1.2859295699757174
+ - -1.2668161203455248
+ - 0.287749685686258
+ - 1.7118287619791022
+ - 2.5796335653068154
+ - 3.290248936613149
+ - 2.08506691802242
+ - -1.2350670975350204
+ - -2.537480714530701
+ - -2.375827542727816
+ - -2.1093589343790344
+ - -0.933034257932267
+ - 0.6590330790811566
+ - 1.9571877267253928
+ - 2.6140331287517435
+ - 3.6202712723173294
+ - 1.9877729437145775
+ - -1.036840604579903
+ - -1.2387356751807381
+ - -1.8451211566696448
+ - -2.3986380436459065
+ - -0.46939884191478365
+ - 1.1018265402192793
+ - 2.20442469748998
+ - 2.33559218510213
+ - 1.4616939243074418
+ - 0.08737583131323227
+ - -0.3223655096014495
+ - -0.7635035141633149
+ - -1.5772044384078152
+ - -1.7506235370882062
+ - -0.08966315594114438
+ - 1.4262601567996807
+ - 2.482544393033708
+ - 3.173699797008577
+ - 1.9732303281375778
+ - -0.8134236764947356
+ - -2.14025357250888
+ - -2.2850638250714526
+ - -2.2661021331764943
+ - -1.2707058729595553
+ - 0.28920004622648515
+ - 1.7144105172998436
+ - 2.5812242597977035
+ - 3.2296915712114598
+ - 1.9126916191443057
+ - -1.090387408879359
+ - -2.496966217977144
+ - -2.378647607722517
+ - -2.1108140502025163
+ - -1.1334867095190522
+ - -1.0236448697714982
+ - -0.1333423059519019
+ - 2.1342364809041627
+ - 2.7516120073734385
+ - 1.0521997923847997
+ - -0.523865412225025
+ - -1.880332432584814
+ - -2.409353251313299
+ - -1.8989525245844965
+ - -0.7457134632965944
+ - -0.7777004446079199
+ - -0.2990312656268363
+ - 3.6038765965512196
+ - 4.8268317093414135
+ - 1.2472897929875941
+ - -0.3052938040348575
+ - -1.732358915031242
+ - -2.3975884649011023
+ - -2.0275528118182744
+ - -0.9731801763911336
+ - -0.81016379620452
+ - 0.018238296677205453
+ - 2.0797050374750823
+ - 2.6219457362340957
+ - 0.905800725885197
+ - -0.6779069831215421
+ - -2.0531914215364266
+ - -2.776248966646404
+ - -1.9309806748956653
+ - 0.14732754052239516
+ - 1.1869229796837413
+ - 1.8868143544303568
+ - 2.409865989522459
+ - 1.896653899474868
+ - 0.5435591953972475
+ - -1.0342586926532793
+ - -2.2835741509686924
+ - -3.002908437497469
+ - -1.9796998481255668
+ - 0.45937079432536576
+ - 1.6482031825555417
+ - 2.1012121546188234
+ - 2.382194701013694
+ - 1.8692571503973334
+ - 2.0313722607426588
+ - 0.8324465772771764
+ - -2.14374784503714
+ - -3.1926892291629274
+ - -1.7285186847263607
+ - -0.3093355427081612
+ - 1.2486246620534767
+ - 2.2589554541801826
+ - 2.2913428839561565
+ - 1.5555488883529036
+ - 2.4727958493946938
+ - 1.8742065600599853
+ - 1.174356686052157
+ - 0.9694348973450971
+ - -2.0155318920280823
+ - -3.6349352540346493
+ - -2.1834475181185677
+ - -1.0766609375307166
+ - 0.4982756252180162
+ - 1.857320377388657
+ - 2.4087951006225268
+ - 2.1588050537448096
+ - 2.451542201967802
+ - 1.1640053126735286
+ - -2.1032688386472325
+ - -3.2833852623762203
+ - -1.9957311389456576
+ - -0.7250898018186144
+ - 0.8029964988642043
+ - 1.3847136185665165
+ - 1.3453873574247577
+ - 0.9794465261152996
+ - 0.6868286541715095
+ - -0.731895892200891
+ - -1.999801245876026
+ - -2.411006775004912
+ - -1.7575389068273948
+ - -0.35273837912993655
+ - 1.1867235808687264
+ - 1.8293030548921674
+ - 1.5594100971601346
+ - 0.6936151146987302
+ - 0.1782476452019616
+ - -1.0861526295850534
+ - -2.1878400072592856
+ - -2.5702114523651955
+ - -3.148737624254071
+ - -1.8995171782310174
+ - 1.8652666379814429
+ - 3.119160517772742
+ - 2.370084508052757
+ - 1.5867033156224726
+ - 0.11664567432662758
+ - -1.4090697212913483
+ - -2.3188296668768134
+ - -2.4614745911868914
+ - -4.821119713391281
+ - -3.3514829499752175
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.73248995815633
+ - 5.436490492934987
+ - 2.9322256314295085
+ - 2.4413619394510375
+ - 0.8967282274599968
+ - -1.0486216979243677
+ - -2.5302065067255075
+ - -3.18044499913241
+ - -3.9523266591990933
+ - -2.4580843126826006
+ - 2.1084493946682827
+ - 3.6503908415299318
+ - 2.9335597679277265
+ - 2.155020380540871
+ - 0.6462428754707599
+ - 0.28769494212896535
+ - -0.5494893764432923
+ - -2.0798721519847696
+ - -2.6305974045445533
+ - -0.6056916575129282
+ - 1.3147138449817595
+ - 2.6761277246468347
+ - 2.858314383132566
+ - 1.8103455879595316
+ - 0.1429918504959092
+ - -0.33894158308664984
+ - -0.91647162357387
+ - -1.8569283258165679
+ - -2.132301704978255
+ - -0.14294990783795294
+ - 1.7133708587275076
+ - 3.0179347993555585
+ - 3.938692394323033
+ - 2.6112437562365063
+ - -1.1284847131421547
+ - -2.625536895629405
+ - -2.7777403728946823
+ - -2.7766747189202485
+ - -1.5792676551340923
+ - 0.31961877205618716
+ - 2.068489877359718
+ - 3.143970985997665
+ - 4.450141526181361
+ - 2.5735324837094176
+ - -0.8000969317838748
+ - -1.0650561548289403
+ - -2.456609462984232
+ - -3.448841968944877
+ - -1.0478990783127273
+ - 0.8882737126537164
+ - 2.4492449834766585
+ - 2.931836130504797
+ - 2.1506724958079544
+ - 0.6390924572156015
+ - 0.28149333809808286
+ - -0.5096232522087487
+ - -2.194979277826914
+ - -2.6767535175525206
+ - -0.6001811892151042
+ - 1.3192407506687096
+ - 2.819535534509376
+ - 3.695259616240359
+ - 2.420267055704082
+ - -0.6089939063210883
+ - -2.0813233124126813
+ - -2.5934188737733357
+ - -2.8947111391887366
+ - -1.9499724566463708
+ - -0.14058540838519024
+ - 1.7172385680441125
+ - 3.0207559657753533
+ - 3.8669193553101087
+ - 2.4107041118663544
+ - -0.973280330582874
+ - -2.5860894830126666
+ - -2.781800945719607
+ - -2.7787186362697884
+ - -1.8457132004259182
+ - -1.8765559136833787
+ - -0.6218295042248491
+ - 2.721664439014964
+ - 3.689967105566079
+ - 1.70934427985791
+ - -0.14998881221030755
+ - -1.9519074934142766
+ - -2.8959817258273173
+ - -2.5886538783915847
+ - -1.4095309719479028
+ - -2.0411627142963935
+ - -1.1643477906119697
+ - 4.6674074574006585
+ - 6.33313892889379
+ - 1.9224751851561237
+ - 0.12084472632669736
+ - -1.739834836569865
+ - -2.836584520238977
+ - -2.706458021255319
+ - -1.6670881737234458
+ - -1.6320731873030965
+ - -0.44008627541928264
+ - 2.684933151682026
+ - 3.5707204985504752
+ - 1.5466699838987483
+ - -0.34308961539452276
+ - -2.1400334592528636
+ - -3.003396670685457
+ - -2.229306218600576
+ - -0.22712622789470838
+ - 0.8145920893867507
+ - 1.9644082577293547
+ - 2.8999192762047317
+ - 2.589625964040607
+ - 1.1336760419039087
+ - -0.8000368951982183
+ - -2.487947706995658
+ - -3.370309368098641
+ - -2.3516578815109415
+ - 0.15823900987187287
+ - 1.4158468482089783
+ - 2.2871364029109476
+ - 2.944078092387277
+ - 2.6234444545563775
+ - 2.9743406316751453
+ - 1.4055511466797161
+ - -2.5720015665542073
+ - -4.00737071988602
+ - -2.4234945346674457
+ - -0.8604602179245823
+ - 1.0793605071374084
+ - 2.547443820098993
+ - 2.910511029268158
+ - 2.3015665506034786
+ - 2.7886335827381523
+ - 2.0319487004203935
+ - 1.8480607240285845
+ - 1.6219601036368902
+ - -2.2615448027834804
+ - -4.312291307278796
+ - -2.836397488183862
+ - -1.736471218055556
+ - 0.11584803670205317
+ - 1.9221054971874982
+ - 2.889973380919237
+ - 2.8998449777021373
+ - 3.3998995663051925
+ - 1.7689656960777838
+ - -2.44716826120098
+ - -4.00054166906184
+ - -2.678540714637439
+ - -1.3428218922129855
+ - 0.45782035647943353
+ - 1.0700526004067579
+ - 1.3210124721288334
+ - 1.5318110098056112
+ - 1.4719586517660246
+ - -0.41162443891397604
+ - -2.132563827451724
+ - -2.9413611613396404
+ - -2.4521415951675065
+ - -0.9118513133091998
+ - 0.9521983593080187
+ - 1.657626851712917
+ - 1.626036541697122
+ - 1.215111754034027
+ - 0.8739709845616676
+ - -0.8674048533186257
+ - -2.4264270364464
+ - -3.1916179680560273
+ - -4.002500545314585
+ - -2.537244093821865
+ - 1.9838824598402256
+ - 3.524620890317806
+ - 2.941338583592137
+ - 2.280374014263365
+ - 0.6343380568170057
+ - -1.2966989694126212
+ - -2.6574078264008545
+ - -3.1426977904927393
+ - -6.328458222468723
+ - -4.460536546084536
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.819683978800072
+ - 2.7894181759964325
+ - 1.9507237038376068
+ - 2.0663504720993746
+ - 1.2921345831037916
+ - -0.05544765264767621
+ - -1.3702494623613684
+ - -2.2407992098216756
+ - -2.9159981793596943
+ - -1.9853562891615555
+ - 1.0134707530651963
+ - 2.0766848486350686
+ - 2.064167647072401
+ - 1.9583874391412865
+ - 1.1960069188984797
+ - 1.1452222084038621
+ - 0.19293370264380197
+ - -1.723281479784688
+ - -2.508846523222826
+ - -1.1086041477982151
+ - 0.26567672349996385
+ - 1.5308242768557998
+ - 2.122777002785973
+ - 1.798102044796303
+ - 0.8665762681300271
+ - 0.7152094120195124
+ - -0.08654517352415377
+ - -1.646438910271791
+ - -2.259386884650749
+ - -0.8065337853443871
+ - 0.5957988644104939
+ - 1.8150785563048943
+ - 2.5031718674983168
+ - 1.8287619464597085
+ - -0.20328593504080442
+ - -1.0636159566882737
+ - -1.6679740046700426
+ - -2.1341096718275514
+ - -1.6825680519435706
+ - -0.48596004891561956
+ - 0.911651800125423
+ - 2.019778198720871
+ - 2.9991090991271814
+ - 1.9204387203442634
+ - 0.1391745919852846
+ - -0.06339121274925295
+ - -1.925189460325784
+ - -3.0397931392715414
+ - -1.3795766483529643
+ - -0.06788877681767433
+ - 1.2781399231478743
+ - 2.062894893610844
+ - 1.9554951978116903
+ - 1.1909892016886872
+ - 1.1588571773707879
+ - 0.2698442447271829
+ - -1.8456752867460302
+ - -2.5544459698655224
+ - -1.1051042139329847
+ - 0.2685476772216541
+ - 1.56832678922331
+ - 2.195881939014828
+ - 1.6235497106456318
+ - 0.1485267217466082
+ - -0.616871267706608
+ - -1.4397212021794006
+ - -2.1069338354867364
+ - -1.868951326634684
+ - -0.8041085056492373
+ - 0.5993974646937955
+ - 1.8182170066973995
+ - 2.458613281276179
+ - 1.7098394358178983
+ - -0.13106168424781864
+ - -1.0518356714965378
+ - -1.6715593937037245
+ - -2.135851961726848
+ - -1.8907962454705447
+ - -2.148757683702358
+ - -1.073873911589307
+ - 1.9746467226833377
+ - 2.926658337285619
+ - 1.7467729311514777
+ - 0.605253034953723
+ - -0.8014671847006116
+ - -1.8578103369286596
+ - -2.108372914453909
+ - -1.6547210760273914
+ - -2.9273730675028635
+ - -1.9240302184156086
+ - 3.4850268114909917
+ - 4.8398981210535315
+ - 1.8522602420184462
+ - 0.7908649248457007
+ - -0.6153885732743529
+ - -1.7535249974489193
+ - -2.130175001624595
+ - -1.796766392433633
+ - -2.0096373619059795
+ - -0.957945451151129
+ - 1.9932207027069022
+ - 2.903696934106611
+ - 1.661855720579421
+ - 0.46975535240930166
+ - -0.8934226589487054
+ - -1.438896618716807
+ - -1.2960536561925264
+ - -0.736806998697076
+ - -0.3724817615873286
+ - 0.816374256864157
+ - 1.865192484562936
+ - 2.1144596798351416
+ - 1.429687720513394
+ - 0.13476267052749583
+ - -1.2204428319402298
+ - -1.8124321603736246
+ - -1.467832919208119
+ - -0.47453197242790524
+ - 0.08168043727299341
+ - 1.118502322374669
+ - 2.006737098001775
+ - 2.2337660369175905
+ - 2.687054327848914
+ - 1.4938952907376593
+ - -1.643057379380618
+ - -2.819148691257735
+ - -2.060475374111723
+ - -1.2665759750746495
+ - 0.07610352176926419
+ - 1.3888862483732025
+ - 2.095808570646893
+ - 2.107987286227721
+ - 2.7456066665555476
+ - 1.271944523754229
+ - 1.8238967253973655
+ - 1.7084050466740508
+ - -1.2152626211743884
+ - -2.6833129639966478
+ - -2.129530394504392
+ - -1.7608484482944864
+ - -0.6321011452145482
+ - 0.7792164964772385
+ - 1.846149815636922
+ - 2.306330786095999
+ - 2.8438312142949402
+ - 1.6756857363091695
+ - -1.451573176753187
+ - -2.6453585884763022
+ - -2.127373197327774
+ - -1.5506242085819364
+ - -0.44824868054800254
+ - -0.18268525865361224
+ - 0.41442820390803714
+ - 1.5011443892695864
+ - 1.8895645580133047
+ - 0.42046411119600346
+ - -0.9715534020200536
+ - -1.9503756260245093
+ - -2.069734083045907
+ - -1.2984064842239926
+ - -0.08262466843316126
+ - 0.27203280211591835
+ - 0.6799676128800125
+ - 1.3372616197956073
+ - 1.5254177291245945
+ - 0.08424391238985315
+ - -1.2592834466007294
+ - -2.197046408243625
+ - -2.8861530990870055
+ - -1.9992214727968096
+ - 0.895219212499959
+ - 1.9327412217110886
+ - 2.0222579763343487
+ - 2.00863970999952
+ - 1.1295385444027248
+ - -0.2513391574854159
+ - -1.5149944272748928
+ - -2.2852540305388525
+ - -4.840088065772997
+ - -3.4934322432349196
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.3646457702045796
+ - -3.0256571190294568
+ - -0.2882714592299161
+ - 1.0914725942984955
+ - 2.0063056549909204
+ - 2.036767240471738
+ - 1.19131007331954
+ - -0.06354929178566718
+ - -0.4745375577358294
+ - -0.8124451956071596
+ - -1.3792862976706837
+ - -1.4182372598511797
+ - 0.050523805385433614
+ - 1.3681396320460968
+ - 2.2432552828812318
+ - 2.843838752735888
+ - 1.7357323406193428
+ - -0.8181230184016024
+ - -2.0262096025527097
+ - -2.065291302114537
+ - -1.9629392351999624
+ - -1.01445326384019
+ - 0.38513588363814993
+ - 1.609844442737436
+ - 2.3088929451968254
+ - 2.865909207693782
+ - 1.6654078651660467
+ - -1.0552660337270285
+ - -2.322239593888966
+ - -2.128183687047153
+ - -1.8066864293789984
+ - -0.8768436499669952
+ - -0.7398980201095222
+ - 0.01904161389576098
+ - 1.759438822707102
+ - 2.314976065965577
+ - 0.815019188842493
+ - -0.5908311059795344
+ - -1.7475726287552658
+ - -2.134997182392282
+ - -1.6019020098013648
+ - -0.5253314380531016
+ - -0.32138543587226037
+ - 0.374344957498253
+ - 2.100518878084912
+ - 2.047385519629727
+ - -0.6343699551410725
+ - -1.9053996599935685
+ - -1.9519172438896135
+ - -2.0711736668625953
+ - -1.2985248767411317
+ - 0.05031155354305623
+ - 1.3685666779152765
+ - 2.2431765610355217
+ - 2.897934496736041
+ - 1.8835416690509323
+ - -0.944769629530058
+ - -2.0665197797396435
+ - -2.0663368065061394
+ - -1.9638076929109538
+ - -1.2029070745492736
+ - -1.153615003260085
+ - -0.1975423645479667
+ - 1.7270676099357591
+ - 2.5165020990771914
+ - 1.114963010700712
+ - -0.2609369421339392
+ - -1.5297503127123417
+ - -2.1258518599412723
+ - -1.8039780806752517
+ - -0.8733202127928631
+ - -0.723236520574307
+ - 0.08239053774151273
+ - 1.6507477753883522
+ - 2.26754665667554
+ - 0.812754953166647
+ - -0.5917828153849659
+ - -1.8146346011003673
+ - -2.526578127194548
+ - -1.9268004103510668
+ - 0.22627041826041494
+ - 1.0580011568277703
+ - 1.6675426903112935
+ - 2.1377212294337227
+ - 1.6886821593407355
+ - 0.491881713768056
+ - -0.9084704632455997
+ - -2.0204321486257903
+ - -4.525180854458728
+ - -3.3466283260654506
+ - 0.6851978299616196
+ - 1.2643298274173642
+ - 1.537274793722854
+ - 2.1274587985431848
+ - 1.8033128890297443
+ - 0.6810752664084292
+ - -0.7265471283655008
+ - -1.9068825496801218
+ - -2.621454824885657
+ - -1.959663466183165
+ - 0.35938941736549523
+ - 1.2394596447460424
+ - 1.7537100560448444
+ - 2.135527215857478
+ - 1.8071454607646114
+ - 1.9790357527441413
+ - 0.7823686787817946
+ - -1.741325466302428
+ - -2.8335057923191225
+ - -1.6700663505666973
+ - -0.477925914339699
+ - 0.9247520772156739
+ - 1.9225429271292909
+ - 2.087107722838318
+ - 1.5535955883590093
+ - 1.6253478569093096
+ - 0.5222448048391114
+ - -1.7614383340288517
+ - -2.7295171766637636
+ - -1.4385395188664312
+ - -0.1445180133203325
+ - 1.212929449303308
+ - 1.8404289116512733
+ - 1.5445229845075423
+ - 0.45767824348255404
+ - -0.06722046926272314
+ - -1.1113281663581258
+ - -2.0055632275262023
+ - -2.0391679892857195
+ - -1.171415475975285
+ - 0.19423339356074273
+ - 1.5106309305952137
+ - 2.407009314222067
+ - 1.7488134766764536
+ - 1.6082569360137167
+ - 1.7356538138089748
+ - 1.0933960314006224
+ - 0.9825975449991723
+ - -0.45153559383194963
+ - -1.6529189096358745
+ - -2.1468158297561493
+ - -1.6930525234276728
+ - -0.5143647910780943
+ - 0.8505720924679132
+ - 1.4181885406719752
+ - 1.328190225531114
+ - 0.7719214782265115
+ - 0.44172790081651736
+ - -0.7767827647106089
+ - -1.8471712597094592
+ - -2.3118788620626742
+ - -2.798860954747303
+ - -1.5282625901677607
+ - 1.3010126307914949
+ - 2.59638776929487
+ - 2.131132619263394
+ - 1.556184742196326
+ - 0.3085174366163846
+ - -1.079010194956032
+ - -1.9934078167388585
+ - -2.2498864819053574
+ - -2.6644486180180325
+ - -1.3697030278514633
+ - 1.4730918172201568
+ - 2.7565804661828084
+ - 2.0765646719006177
+ - 1.3073482528323912
+ - 0.09167662158602886
+ - -0.2792277855598038
+ - -0.6878350180452152
+ - -1.4735751683007525
+ - -1.5873621336595765
+ - -0.09201989564570152
+ - 1.2560172762738178
+ - 2.068127463036476
+ - 1.968253061135202
+ - 1.0227779492317444
+ - -0.27673824753963316
+ - -1.2747457264862219
+ - -1.1452635229480694
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.3387872586013247
+ - -4.512222503153817
+ - -1.3074045321339225
+ - 0.027573691541651773
+ - 1.3558502262189724
+ - 2.0884516805128834
+ - 1.9182541143341982
+ - 1.1027105806359947
+ - 1.038752532214859
+ - 0.21239787831692625
+ - -1.9225308368151495
+ - -2.515622465937527
+ - -1.0238951056019587
+ - 0.36356429015244207
+ - 1.6455149867093557
+ - 2.279271794172995
+ - 1.6546927730283223
+ - 0.0701722069641453
+ - -0.7423334186768403
+ - -1.511076050495431
+ - -2.1232807846555937
+ - -1.8230415549978398
+ - -0.716058755429432
+ - 0.6914497782356847
+ - 1.883449760806421
+ - 2.5255330165841388
+ - 1.7291288054102902
+ - -0.20964474338411532
+ - -1.171592922517559
+ - -1.7319860147702375
+ - -2.1372004196331504
+ - -1.831925925204157
+ - -2.0517944701867235
+ - -0.933134410885015
+ - 1.885009421169664
+ - 2.894813496095935
+ - 1.6927994974480032
+ - 0.5139619782636946
+ - -0.8908884895638599
+ - -1.9058253622457453
+ - -2.0946138101318246
+ - -1.5830816150708953
+ - -1.8868712658923432
+ - -0.6215960588275059
+ - 2.0515611436324988
+ - 2.103325737290965
+ - 0.3611333479472674
+ - -0.3436623173475192
+ - -1.255314361017069
+ - -2.0590118039627656
+ - -1.9787003993197012
+ - -1.0234469057739544
+ - 0.36550235034933753
+ - 1.648048525240951
+ - 2.3268724417459374
+ - 1.7641035551410835
+ - 0.005848066215288829
+ - -0.7593475538414355
+ - -1.513955968197977
+ - -2.125654109832644
+ - -2.0331364109597567
+ - -2.3101127993194397
+ - -1.045272577767738
+ - 1.6690574391738833
+ - 2.8659389553281316
+ - 1.877231843999608
+ - 0.8333976440226677
+ - -0.573561591315915
+ - -1.7308911238368423
+ - -2.1363358375558033
+ - -1.8299974860549748
+ - -2.0117410098530177
+ - -0.807143195817851
+ - 1.73748801933021
+ - 2.840717985949661
+ - 1.6923771186477266
+ - 0.5139069679036875
+ - -0.8502596035023268
+ - -1.43583356076541
+ - -1.3891212418570402
+ - -0.7995594107360131
+ - -0.45430680711491844
+ - 0.7765255037636203
+ - 1.8464540816351422
+ - 2.1249834074794642
+ - 1.464907104348008
+ - 0.1793623403075888
+ - -1.1813058026647498
+ - -3.0513270638578804
+ - -2.3821012777259263
+ - -1.1220740233425988
+ - -1.2420515372140024
+ - 0.5898627717122191
+ - 1.7394130852594065
+ - 2.1439911047612075
+ - 1.6019092005753435
+ - 0.37467706320433747
+ - -0.9925097685641859
+ - -1.6042242779044473
+ - -1.4827259395830479
+ - -0.6746227382982726
+ - -0.2588583764811371
+ - 0.9078812801491218
+ - 1.9148004585311669
+ - 2.292662192309426
+ - 2.750551266263937
+ - 1.4660933382396126
+ - -1.377108223882209
+ - -2.6712536678856265
+ - -2.1139224888648123
+ - -1.4546395297978976
+ - -0.16606828528723758
+ - 1.1995140765955146
+ - 2.040297457562144
+ - 2.206579755810668
+ - 2.587433875534389
+ - 1.2925163602676208
+ - -1.534034858376004
+ - -2.8026208023088923
+ - -2.0371463108274916
+ - -1.1912121613981215
+ - 0.06320336831999313
+ - 0.4616646061698055
+ - 0.7838227254649722
+ - 1.3184807957047195
+ - 1.400193230110769
+ - -0.05071126692101407
+ - -1.368409979090543
+ - -2.10163654435241
+ - -1.9078424702489258
+ - -0.8950542993685696
+ - 0.4297420922830203
+ - 1.0040966105821134
+ - 1.1059892322304539
+ - 1.7339333034274762
+ - 1.6058895576724554
+ - 1.7385289966807782
+ - 2.3910263321098735
+ - 0.6524325412560456
+ - -0.7544076708846089
+ - -1.84166846699969
+ - -2.117814906618365
+ - -1.4815693429658703
+ - -0.3410022834868854
+ - -0.04695094210620997
+ - 0.4703939396737782
+ - 1.5365211621970574
+ - 1.8243338854095696
+ - 0.32241974240271815
+ - -1.0603166425001245
+ - -2.104327265050367
+ - -2.73506378573078
+ - -1.7612038518585271
+ - 0.5338102766190885
+ - 1.6414084916493021
+ - 1.9360267283078465
+ - 2.0795803582478896
+ - 1.3276959579584575
+ - -0.013209610701266245
+ - -1.3395416511682547
+ - -2.232051670879012
+ - -2.835955975438169
+ - -1.7391572738746908
+ - 0.7931639088360644
+ - 1.9930367697161766
+ - 2.0559456832111067
+ - 1.9778024266996586
+ - 1.2368890090777376
+ - 1.2207066013543768
+ - 0.34562422828020184
+ - -1.9562921035676355
+ - -2.6116777442478454
+ - -1.1462091753594974
+ - 0.22401580886616018
+ - 1.5030416854018198
+ - 2.1211873370571896
+ - 1.823215528462228
+ - 0.9102856278273582
+ - 1.231617918288828
+ - 0.6612338124396927
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.931734491698374
+ - -2.937192980363576
+ - -1.9808886892763287
+ - -2.042375445164957
+ - -1.2241391808947315
+ - 0.13752759554598767
+ - 1.4310298472005025
+ - 2.2596468127007294
+ - 2.9248360093007846
+ - 1.9717800782670085
+ - -1.078371533782488
+ - -2.1532953230989293
+ - -2.081850544023359
+ - -1.9223042004298565
+ - -1.1176065359356429
+ - -1.0422900479626085
+ - -0.12527819482619595
+ - 1.7069760027388194
+ - 2.451669683472501
+ - 1.0364949156958447
+ - -0.34680761924197806
+ - -1.586056410434633
+ - -2.127621822397515
+ - -1.7508109414115158
+ - -0.7824028508658075
+ - -0.6072883999034463
+ - 0.1540530189363886
+ - 1.6199048247476397
+ - 2.1879757156098596
+ - 0.7290226375866409
+ - -0.6738250521154602
+ - -1.8675145685614816
+ - -2.5566936642326548
+ - -1.8454580393258866
+ - 0.27567319276302477
+ - 1.1664598025309758
+ - 1.71653025502424
+ - 2.1308268051799484
+ - 1.6286594528430933
+ - 0.40511568247162216
+ - -0.9844939129597667
+ - -2.060094122698057
+ - -3.0406085002151815
+ - -1.9237839513840962
+ - -0.05640008600383612
+ - 0.1459721206474563
+ - 1.9181688499057865
+ - 2.9925221921321747
+ - 1.3145937101503817
+ - -0.014391315300919322
+ - -1.3423337848106764
+ - -2.0805741426777162
+ - -1.9193672485146334
+ - -1.1125440793036523
+ - -1.0538892518742269
+ - -0.19700480323153682
+ - 1.8254674261159507
+ - 2.4960904638538914
+ - 1.03291971795922
+ - -0.3497407399732885
+ - -1.6314624923362921
+ - -2.263035080319128
+ - -1.646958571930952
+ - -0.08079421190590481
+ - 0.7235191685985695
+ - 1.4981079351221327
+ - 2.1166002342815444
+ - 1.8255434971021687
+ - 0.7266675595303611
+ - -0.6773495798643565
+ - -1.8705419083226098
+ - -2.511042581526996
+ - -1.7228637782928788
+ - 0.1984075393444515
+ - 1.1526680366797672
+ - 1.7200592162495163
+ - 2.1325476226655367
+ - 1.836190423959143
+ - 2.06810882853737
+ - 1.0069781938321125
+ - -1.9844382434442736
+ - -2.9122365166951676
+ - -1.6966816220933545
+ - -0.5254384442156389
+ - 0.8767320377031902
+ - 1.8952407138668383
+ - 2.0921263220424455
+ - 1.589621553871975
+ - 2.7741345692582344
+ - 1.8084017310642235
+ - -3.4908622846201083
+ - -4.835480043142476
+ - -1.8083918108347277
+ - -0.7132332510728968
+ - 0.6934667177953713
+ - 1.7975349884964562
+ - 2.121420608098953
+ - 1.7375693834488388
+ - 1.92386164581424
+ - 0.8886272299518456
+ - -1.9978595665035
+ - -2.8817904420722913
+ - -1.6075036779094676
+ - -0.38873511301350266
+ - 0.9743085505495903
+ - 1.5318723537451486
+ - 1.3397520325514347
+ - 0.6741197266964033
+ - 0.26258632791780073
+ - -0.8910360413594345
+ - -1.90213457445184
+ - -2.0976192840804866
+ - -1.366359305049594
+ - -0.05248304059602706
+ - 1.294298722722006
+ - 1.8948124985492323
+ - 1.502756047481694
+ - 0.40853554883100485
+ - -0.19174799412209245
+ - -1.1867782564693723
+ - -2.0316810591019823
+ - -2.2065262199638247
+ - -2.639017287899961
+ - -1.4463154678761347
+ - 1.6770681183537157
+ - 2.8433706155745666
+ - 2.035649254976353
+ - 1.1983663368623734
+ - -0.1584767542251266
+ - -1.4490480082427275
+ - -2.1080395217667873
+ - -2.0676269765046986
+ - -2.675443170123061
+ - -1.2140661938487347
+ - 1.6951317857213843
+ - 1.811080905685736
+ - 1.2706429873125047
+ - 2.7482719941894223
+ - 2.13178109434176
+ - 1.7114770138044044
+ - 0.5521787321779977
+ - -0.8544438701308837
+ - -1.8843690736817702
+ - -2.294292221428362
+ - -2.8141970293995717
+ - -1.6385031797824192
+ - 1.49633792714865
+ - 2.688299288464548
+ - 2.1165806600979034
+ - 1.4914681352358863
+ - 0.35996210305816195
+ - 0.07236503161709298
+ - -0.47957502382758777
+ - -1.4633837241770389
+ - -1.803646120171868
+ - -0.33914923526498847
+ - 1.043136871945486
+ - 1.9813479339086275
+ - 2.0462903300839645
+ - 1.230987378381105
+ - -0.0066702453718623525
+ - -0.3813122574522406
+ - -0.7413008310296554
+ - -1.2910465068117447
+ - -1.4296089129641152
+ - -0.0019041393917916542
+ - 1.3236505277558535
+ - 2.221691448959081
+ - 2.9025260706137685
+ - 1.9907669166261805
+ - -0.9627663091508053
+ - -2.014749090155364
+ - -2.0452481194118484
+ - -1.9775254824472241
+ - -1.0575155902910054
+ - 0.33254590182084315
+ - 1.5704087209111794
+ - 2.295990115492634
+ - 4.835254755790727
+ - 3.48092727170049
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.1791178131139954
+ - -2.061399121666785
+ - -2.2161617946805596
+ - -2.939496549511115
+ - -2.3991495230480213
+ - -0.796714767925211
+ - 1.1376391974916584
+ - 2.712976471060274
+ - 3.696515293710249
+ - 2.724158134534165
+ - -0.6303054656274728
+ - -1.8882707268560885
+ - -2.495727671547641
+ - -2.9273329397423815
+ - -2.384340837906308
+ - -2.5779915231820514
+ - -0.9668707670493913
+ - 2.4124152597351847
+ - 3.8660574111338923
+ - 2.2041505163535033
+ - 0.5134253491897947
+ - -1.4050729316191226
+ - -2.7077886934803916
+ - -2.837632318241926
+ - -2.0172703659578084
+ - -2.07188996351859
+ - -0.6020564612692404
+ - 2.420803354265826
+ - 3.6924859574390476
+ - 1.8687127817324531
+ - 0.05148831302207101
+ - -1.8041271576165925
+ - -2.686980993584052
+ - -2.2002045085707236
+ - -0.5019697785468459
+ - 0.29387172314042476
+ - 1.6539940274201475
+ - 2.808547644717251
+ - 2.7575102750772014
+ - 1.487328715209651
+ - -0.41391191908531444
+ - -2.1984709770653867
+ - -3.4588268220403133
+ - -2.460673941958822
+ - -1.0570259935433564
+ - -0.7916928486260366
+ - 2.576566761463357
+ - 4.451303845792343
+ - 2.4809164242003954
+ - 0.9591393401597816
+ - -0.9817903353010482
+ - -2.494111076288207
+ - -2.9240466837065013
+ - -2.3782921146533917
+ - -2.6172609689081656
+ - -1.1217045954345157
+ - 2.6128012883927325
+ - 3.937800819323992
+ - 2.2003975404984564
+ - 0.5103522628126488
+ - -1.3701591273295468
+ - -2.1432993664574695
+ - -1.862428193952178
+ - -0.9099680931519315
+ - -0.32704928850668696
+ - 1.2532708158407186
+ - 2.636163869016806
+ - 2.8886159433833436
+ - 1.8648176340113491
+ - 0.046027820540120674
+ - -1.8093808028333929
+ - -2.6406287204504646
+ - -2.0844982923090654
+ - -0.5424817248018162
+ - 0.29984852143390733
+ - 1.6592510691438165
+ - 2.8110404696665996
+ - 3.0355360267859
+ - 3.6464758670662487
+ - 2.103826525437682
+ - -2.462900482899763
+ - -3.956563443101796
+ - -2.8005577783657554
+ - -1.6314793782708894
+ - 0.2450553874138997
+ - 2.0184960309869813
+ - 2.9123124363666206
+ - 2.8397690549798296
+ - 5.426806444029165
+ - 3.7246304319758456
+ - -4.467888701700567
+ - -6.3374128578480775
+ - -2.8717986987898225
+ - -1.8496231941563932
+ - -0.026577141043686487
+ - 1.8133078226283363
+ - 2.8613477709048802
+ - 2.961917702871381
+ - 3.519921623940707
+ - 1.9787915664342646
+ - -2.5415796321593795
+ - -4.00594213540023
+ - -2.7352855952476873
+ - -1.468129206740744
+ - 0.30507746353548687
+ - 0.8860882914631013
+ - 1.222010247641229
+ - 1.6211812071035412
+ - 1.6473297891175906
+ - -0.2708136714533117
+ - -2.033259304569458
+ - -2.926510719522061
+ - -2.528535135673753
+ - -1.046053784299803
+ - 0.8045304838156895
+ - 1.483738686246512
+ - 1.538163110354108
+ - 1.3153159858265406
+ - 1.0588563418134285
+ - -0.7310946846634462
+ - -2.3442276460457303
+ - -3.191651955508726
+ - -4.000942335440558
+ - -2.4452979410532034
+ - 1.775566545780859
+ - 3.40780248812468
+ - 2.9408695820881037
+ - 2.3681980434908
+ - 0.7729721756352133
+ - -1.1684103885879256
+ - -2.5945611491665543
+ - -3.1670462559864325
+ - -4.311245333219519
+ - -2.2658228749280815
+ - 1.6037604520629922
+ - 1.8308243100139026
+ - 2.034977589011062
+ - 2.800057900332057
+ - 2.7440235896892724
+ - 2.811232217551029
+ - 1.667517054690285
+ - -0.21653143688304502
+ - -1.994989321544398
+ - -3.1250652084551853
+ - -4.009920888634375
+ - -2.5715268125675226
+ - 1.41285861732798
+ - 2.9837831307383222
+ - 2.879277364438611
+ - 2.6415591668753535
+ - 1.5170866017875804
+ - 1.4051387614052364
+ - 0.1509015995887227
+ - -2.3507862662653927
+ - -3.365362780665983
+ - -1.4071812187724235
+ - 0.5050902809490013
+ - 2.207162439485413
+ - 2.93827127249182
+ - 2.401201495833168
+ - 1.0525415175423127
+ - 0.8031053940986526
+ - -0.23459683294898628
+ - -2.227268622572733
+ - -2.9967512180742863
+ - -0.9810289484934034
+ - 0.9554477370499606
+ - 2.5947440627479867
+ - 3.5779663020119177
+ - 2.6879673208362385
+ - -0.44859797101440674
+ - -1.644049749330348
+ - -2.3850799263208544
+ - -2.940052363379562
+ - -2.230446319379755
+ - -0.5328637088130856
+ - 1.382567944852354
+ - 2.8566120696585546
+ - 6.34205142751771
+ - 4.672936555569675
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.0142236552531203
+ - 1.1074282346500495
+ - -0.5899976992899415
+ - -1.6677803475921915
+ - -2.0311778000897465
+ - -1.497673189529444
+ - -0.32377822251607813
+ - 0.9723877062886721
+ - 1.5579205692931735
+ - 1.4260397932093647
+ - 0.6113811704158331
+ - 0.201593944580011
+ - -0.8897538192432733
+ - -1.829764026043764
+ - -2.1683946237035188
+ - -2.5958002788232424
+ - -1.3754592138543622
+ - 1.3220995682187882
+ - 2.5482648503805705
+ - 1.9994568456896245
+ - 1.355779814240005
+ - 0.1254619261681884
+ - -1.1637499300784324
+ - -1.9440474937668344
+ - -2.0814164232135575
+ - -2.4347793379718343
+ - -1.2075960038866056
+ - 1.4674200463650913
+ - 2.6662961689444193
+ - 1.9217227886272876
+ - 1.1028618529911587
+ - -0.09460391347685485
+ - -0.480868232547505
+ - -0.7690806682311327
+ - -1.229608208369117
+ - -1.2892245234646507
+ - 0.08003813956157255
+ - 1.321992263433221
+ - 1.9991787475282814
+ - 1.79448608009518
+ - 0.819602726699277
+ - -0.44152208082537703
+ - -0.9980225648436719
+ - -1.072175066273811
+ - -1.6256023760517284
+ - -1.502321512245339
+ - 1.2682591602938917
+ - 2.677236029016077
+ - 2.0266684260245036
+ - 1.574269524205217
+ - 0.44184049276537113
+ - -0.889068354050311
+ - -1.8288883174816277
+ - -2.166265767185281
+ - -2.6418166088192114
+ - -1.517553858409585
+ - 1.46716998273984
+ - 2.597181600612515
+ - 1.998793899625172
+ - 1.3552439459036807
+ - 0.250675491785861
+ - -0.0451626974828873
+ - -0.5226808915306226
+ - -1.3506608566034248
+ - -1.6240839984516662
+ - -0.23810452723782666
+ - 1.0644900511788156
+ - 1.9134978760780732
+ - 1.9189820125223929
+ - 1.0993564374626863
+ - -0.09852800670716665
+ - -0.47491304732557643
+ - -0.7672847711943708
+ - -1.1782766456197404
+ - -1.2586832191809465
+ - 0.08320829744705
+ - 1.3234232513310018
+ - 2.135197820574642
+ - 2.7731832849592264
+ - 1.8817303024888528
+ - -0.9840069479939791
+ - -1.9979083194269749
+ - -1.9659360000540067
+ - -1.8457601973645548
+ - -0.9298720507358746
+ - 0.3996377849555443
+ - 1.5485051868729365
+ - 2.191390853051322
+ - 4.5866431281958215
+ - 3.292634396741487
+ - -1.9500720570958199
+ - -2.941689419124557
+ - -1.9122261677719883
+ - -1.914714623175889
+ - -1.0922586528155085
+ - 0.21534615205889554
+ - 1.4216881580680942
+ - 2.16525275371924
+ - 2.7865883837207606
+ - 1.8584128357770968
+ - -1.091052600783786
+ - -2.1238991593058416
+ - -1.9952130440519118
+ - -1.7881927985880568
+ - -0.9803550770089214
+ - -0.8835254271299327
+ - -0.04910581153530734
+ - 1.604130524689506
+ - 2.269120780514345
+ - 0.9098213329399385
+ - -0.41310391160643994
+ - -1.5631738588041497
+ - -2.025422013285085
+ - -1.6137692942812478
+ - -0.6560804333583072
+ - -0.46529050578923514
+ - 0.21599794519752932
+ - 1.5108863777565131
+ - 2.0040226380061164
+ - 0.6122636482048048
+ - -0.7204379023120164
+ - -1.827559869675385
+ - -2.483129680169442
+ - -1.7697133702158383
+ - 0.33652713137203877
+ - 1.2138577240771147
+ - 1.6801785371358493
+ - 2.0200736273301145
+ - 1.4909402187820857
+ - 0.3012328680560159
+ - -1.0101023961164621
+ - -1.9978919252584608
+ - -2.930281999524934
+ - -1.8306111788588584
+ - 0.031105369396467863
+ - 0.22320316213600533
+ - 1.8121213797354936
+ - 2.789215948488047
+ - 1.216109283517921
+ - 1.9608286424575834
+ - 1.8636316094193295
+ - 0.9423190634060981
+ - -0.37803892280263673
+ - -1.5869910641310407
+ - -2.232615370097745
+ - -1.6832458441746447
+ - 0.022887816128850567
+ - 0.7621589423974656
+ - 1.4580342730581843
+ - 2.0190719928859786
+ - 1.9109713728192692
+ - 2.1649130019626677
+ - 0.9698683344984392
+ - -1.590910745642772
+ - -2.7183091849357277
+ - -1.7645658631954988
+ - -0.7607474137761037
+ - 0.5747371408375008
+ - 1.6598743578457205
+ - 2.024137020031579
+ - 1.7137714564379323
+ - 1.8768723941415089
+ - 0.7418883709295031
+ - -1.6517316144813063
+ - -2.6875916501505372
+ - -1.5850453262854174
+ - -0.4562106425658563
+ - 0.8384415126131233
+ - 1.3997900788933135
+ - 1.3387324308088704
+ - 0.7305840191373387
+ - 0.3872724904677798
+ - -0.7660369433981822
+ - -1.7667996851636691
+ - -2.010215745006754
+ - -1.3656646377285353
+ - -0.13821317630977978
+ - 1.14989332860778
+ - 2.949541995399433
+ - 2.2970047822045956
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.7620753969590055
+ - 3.6434050187370293
+ - 0.7462629007646151
+ - -0.5864728436671018
+ - -1.6716950664188728
+ - -2.0209419062936704
+ - -1.4989604469955187
+ - -0.46815710500940805
+ - -0.22295061741024563
+ - 0.33060022822326174
+ - 1.5997489364802577
+ - 1.8900024766809165
+ - 0.4391575747883792
+ - -0.8847815019642925
+ - -1.9280469147871462
+ - -2.532120857322628
+ - -1.665349782432472
+ - 0.3982761974863353
+ - 1.4031027918689214
+ - 1.773317327177861
+ - 1.997963087042631
+ - 1.3626537871664042
+ - 0.12319027008454936
+ - -1.1610167943994842
+ - -2.0707879002764993
+ - -2.6557407930121344
+ - -1.662229081118989
+ - 0.6502478653718609
+ - 1.7540140513818887
+ - 1.9068702518260896
+ - 1.9221320057658202
+ - 1.2943359998374946
+ - 1.3223344034448257
+ - 0.4144296411697101
+ - -1.7825770493698911
+ - -2.53401140924571
+ - -1.198544473328089
+ - 0.07689786144572987
+ - 1.3241531106741447
+ - 1.9895246701326377
+ - 1.7950786936106324
+ - 0.996311360567114
+ - 1.0272490683009468
+ - 0.08589615381991447
+ - -2.0376843460913516
+ - -2.0332907552898996
+ - 0.1693063209564057
+ - 1.1582417779539198
+ - 1.597367157168426
+ - 2.025642773018866
+ - 1.582832349228991
+ - 0.43906746003830616
+ - -0.8858867419056582
+ - -1.9291578113399315
+ - -2.582218206537574
+ - -1.7928384751866908
+ - 0.4941301513088874
+ - 1.432038993306299
+ - 1.7751769356647873
+ - 1.999499421244231
+ - 1.5573143608709294
+ - 1.6573795850362558
+ - 0.5793251827669728
+ - -1.6673274147030794
+ - -2.626847678815068
+ - -1.4401552887122815
+ - -0.24186890463222743
+ - 1.0652792600317922
+ - 1.9051469942028132
+ - 1.9203155130012026
+ - 1.291607755933077
+ - 1.2953561269324423
+ - 0.3238124872638746
+ - -1.658322601851468
+ - -2.48446886289762
+ - -1.1971616868225299
+ - 0.07742506039071835
+ - 1.3409400732701324
+ - 1.9816570378885345
+ - 1.645021899843453
+ - 0.24470342264524744
+ - -0.34969179701695174
+ - -1.2300551474830415
+ - -1.9639513851748693
+ - -1.8545255813086654
+ - -0.9249703324162001
+ - 0.396118657875315
+ - 1.5997322190091467
+ - 3.767413275465166
+ - 2.843281270907769
+ - 0.1500750322345542
+ - -0.09989295190734797
+ - -1.0766518972348043
+ - -1.9098673750882356
+ - -1.9234472563878373
+ - -1.0867725329401432
+ - 0.21161689246716478
+ - 1.454150569239807
+ - 2.1081398309522053
+ - 1.7048805454920037
+ - 0.11787953288556409
+ - -0.5340095036722486
+ - -1.3351128521398166
+ - -1.9938863841411743
+ - -1.9930874718467533
+ - -2.291748859389704
+ - -1.0782570510661058
+ - 1.542029354818602
+ - 2.704983014594554
+ - 1.8397061993304207
+ - 0.9129612401072188
+ - -0.41072866521592416
+ - -1.556538563331712
+ - -2.0255088522773392
+ - -1.8206084845613988
+ - -2.0315734256801776
+ - -0.8625228359345594
+ - 1.6239841035533498
+ - 2.710055994297498
+ - 1.683040803039865
+ - 0.6178229276520887
+ - -0.6665462658876858
+ - -1.1777508767553186
+ - -1.1686860469300764
+ - -0.840383361687826
+ - -0.6015367255761617
+ - 0.6074380464012613
+ - 1.6770177444791106
+ - 2.028201331805425
+ - 1.4837630283904015
+ - 0.3049855705480929
+ - -0.9898091538555156
+ - -1.7224067310425282
+ - -1.422646218716463
+ - -1.2449498176666896
+ - -1.0869840341566468
+ - 1.5768916018890122
+ - 2.987562412280251
+ - 1.9459177665194916
+ - 1.212304950848374
+ - 1.9665577126561364
+ - 1.853562980491211
+ - 0.9443722957140703
+ - -0.29214879970157887
+ - -0.7243724550921588
+ - -0.912364086528083
+ - -1.1047983020715328
+ - -1.0620860005215012
+ - 0.26180038594165467
+ - 1.4535908588420525
+ - 2.172824790103174
+ - 2.7157906369219753
+ - 1.6047038215056206
+ - -0.9269188456211734
+ - -2.1118662306801927
+ - -2.0012300949826445
+ - -1.764202379244951
+ - -0.7661409841588064
+ - 0.5733875882347911
+ - 1.6574943587261444
+ - 2.1983237969972005
+ - 2.6910041571800343
+ - 1.5113008644860566
+ - -1.135373724593405
+ - -2.3560418489984816
+ - -2.0270828331488837
+ - -1.5870621892107168
+ - -0.6108133628265804
+ - -0.40841588885621466
+ - 0.20447458372661692
+ - 1.6646846040879983
+ - 2.0226257793097835
+ - 0.5697479020900946
+ - -0.7623475430236041
+ - -1.771154229254106
+ - -1.999805111431561
+ - -1.3671124385906293
+ - -0.2685318231728484
+ - 0.11011323721138927
+ - 0.3014570472035277
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.324593195337227
+ - 4.616611616005885
+ - 1.7651921243770534
+ - 0.7514362782860668
+ - -0.5900107394050921
+ - -1.67437270104961
+ - -2.0316369248202717
+ - -1.7116679879734205
+ - -1.913695020691515
+ - -0.911133507013941
+ - 1.901509027310198
+ - 2.7689906889303013
+ - 1.5831644478954296
+ - 0.4449986547397447
+ - -0.8553389101508971
+ - -1.3761499045640226
+ - -1.237974929120549
+ - -0.7004481296765255
+ - -0.3510819101793694
+ - 0.7815985225281818
+ - 1.7806214937898335
+ - 2.0163362618884593
+ - 1.3613578263585087
+ - 0.12540019382805015
+ - -1.1670137207492906
+ - -1.7320571792324815
+ - -1.4014989866951468
+ - -0.45013665193410557
+ - 0.08215440487016293
+ - 1.0695543341689193
+ - 1.91518049327919
+ - 2.129744773303283
+ - 2.5613330061430157
+ - 1.4232081891423205
+ - -1.56861186477655
+ - -2.6901192149282505
+ - -1.9645363761046042
+ - -1.2055780927487378
+ - 0.07574837491326186
+ - 1.327164251929537
+ - 1.9996582277462267
+ - 2.009314099425963
+ - 2.6163350871040647
+ - 1.2108427806700999
+ - -1.572330746456137
+ - -1.6891217305097388
+ - -1.0063880492050608
+ - -0.865435063055675
+ - 0.477684713755401
+ - 1.604906607864823
+ - 2.045029330968914
+ - 1.5823352151072463
+ - 0.442382345725801
+ - -0.859222456146004
+ - -1.4087371893725606
+ - -1.2958245554030685
+ - -0.6953182143391984
+ - -0.3546738198778324
+ - 0.7851883290550216
+ - 1.7835760109266523
+ - 2.1967252734384313
+ - 2.650876111589364
+ - 1.4352058327195676
+ - -1.2659666480585126
+ - -2.500080759338004
+ - -2.0251531096482798
+ - -1.4483356496550106
+ - -0.2452560237975654
+ - 1.0695949046696662
+ - 1.915844814928541
+ - 2.129394368976224
+ - 2.5129458564624296
+ - 1.2789476845289887
+ - -1.4247772426080774
+ - -2.6428840796285265
+ - -1.9655437227624852
+ - -1.206185056147583
+ - -0.034341751239121615
+ - 0.3327806222597817
+ - 0.6980316921807278
+ - 1.3720361869105677
+ - 1.4549247279383855
+ - 0.03882838502595766
+ - -1.2355126807440306
+ - -1.9824738737597485
+ - -1.8551331965462061
+ - -0.9310123086194539
+ - 0.3161216952635343
+ - 1.3205634445450367
+ - 1.16612903190306
+ - 2.192606541271114
+ - 2.794607211119353
+ - 0.22610168826654256
+ - -1.08129854902552
+ - -1.9278893877651002
+ - -1.9245871460080206
+ - -1.0938203173895573
+ - 0.11347902279978934
+ - 0.5181729728519976
+ - 0.8155305392684711
+ - 1.2800651486807122
+ - 1.291577234149964
+ - -0.09695609155216958
+ - -1.3403346733316683
+ - -2.1496530271121856
+ - -2.716336527645453
+ - -1.6458523837694246
+ - 0.8146569091391888
+ - 1.9756935716781925
+ - 1.9792951432701167
+ - 1.8497656383355523
+ - 0.9227623809901551
+ - -0.41474918189400783
+ - -1.565063543629523
+ - -2.2038709406322132
+ - -2.726963855777371
+ - -1.5726978769777267
+ - 1.0370590117769365
+ - 2.2496660136315034
+ - 2.0315670825551955
+ - 1.6941539244067092
+ - 0.7858739250104346
+ - 0.6400013515734434
+ - -0.06158065156451283
+ - -1.6588304499970254
+ - -2.163639648831823
+ - -0.7309172183976185
+ - 0.6095201308439051
+ - 1.6925425892018318
+ - 2.0303668891468227
+ - 1.4929888145647112
+ - 0.44858248196898876
+ - 0.23241678643982272
+ - -0.3997274538652641
+ - -1.9883917616601083
+ - -1.9328023494170026
+ - 0.6607689347224358
+ - 1.898079609502938
+ - 1.8840969408789852
+ - 1.9504114464817501
+ - 1.2216764040429007
+ - 1.9684711470060066
+ - 1.863963555806033
+ - 1.1330791502074646
+ - 1.1013924489697655
+ - 0.25462130205390887
+ - -1.7598152927658304
+ - -2.4344411872559353
+ - -1.0513962968740722
+ - 0.2592766342803141
+ - 1.4984496730247838
+ - 2.0972432716016174
+ - 1.5495969818155138
+ - 0.1390918342211105
+ - -0.5925452382620001
+ - -1.375587429876523
+ - -2.010173022220654
+ - -1.7811310211339195
+ - -0.7640748852738551
+ - 0.5747504565272734
+ - 1.7364051046868267
+ - 2.347294176927004
+ - 1.631511775465601
+ - -0.12759191347128773
+ - -1.0072340011698395
+ - -1.5963586975372788
+ - -2.03726050864783
+ - -1.801538028292642
+ - -2.046598437946377
+ - -1.0218120714475538
+ - 1.8839880046637465
+ - 2.7911814348234647
+ - 1.6643294508671462
+ - 0.5742989281266113
+ - -0.7674028450799646
+ - -1.7735983628281409
+ - -2.0105528612770938
+ - -1.5759450383770115
+ - -2.786419614435995
+ - -1.830863499085698
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.4222533455461206
+ - 3.5561620082856527
+ - 2.0081594641179303
+ - 1.7612850492936443
+ - 0.754599222837759
+ - -0.5884742533524353
+ - -1.669620200119839
+ - -2.203385913834178
+ - -2.7646663946263
+ - -1.7541343095225033
+ - 1.3653886210573511
+ - 2.4289545368119456
+ - 2.0318034705982124
+ - 1.5818485423132702
+ - 0.5972919018018988
+ - 0.38964994889276444
+ - -0.26353678886184895
+ - -1.4930006116125372
+ - -1.9548197516780863
+ - -0.5573180348850583
+ - 0.7774155782405306
+ - 1.7823781869478854
+ - 2.002216516914326
+ - 1.3597327512576494
+ - 0.25372030432029397
+ - -0.04215855374929441
+ - -0.5220033282277079
+ - -1.3547497024585073
+ - -1.6301253128615143
+ - -0.24157206525804553
+ - 1.0635465885460016
+ - 2.027950389611731
+ - 2.6737935099607113
+ - 1.8068264045719715
+ - -0.6622944366486013
+ - -1.6601779781340023
+ - -1.8660139181471862
+ - -1.9595615217677322
+ - -1.2091905753341798
+ - 0.0778159877011851
+ - 1.322828172811535
+ - 2.1386727203057463
+ - 3.0555024955887715
+ - 1.8045801159241865
+ - -0.4123557278087837
+ - -0.5991256971038961
+ - -1.7411722990930991
+ - -2.512491774066034
+ - -0.8554784943257967
+ - 0.47529366697093495
+ - 1.6064490786795589
+ - 2.0305978849640924
+ - 1.5788710511348627
+ - 0.5923413320598774
+ - 0.38898766799589335
+ - -0.22605874751049856
+ - -1.5810847765698324
+ - -1.989437255481628
+ - -0.5535766970593852
+ - 0.7804879975987622
+ - 1.868899772183843
+ - 2.4777264262173353
+ - 1.660250502524104
+ - -0.30526263901199596
+ - -1.2703671529587544
+ - -1.7184486521386302
+ - -2.0190539878358313
+ - -1.4509065039835864
+ - -0.23978038420613906
+ - 1.0664033912825974
+ - 2.0301375214749866
+ - 2.6252835659666873
+ - 1.6724116805036322
+ - -0.5622673526374167
+ - -1.6360845010789205
+ - -1.8689733183737487
+ - -1.9610384311118791
+ - -1.3979220301899526
+ - -1.4669938582858624
+ - -0.5591881501935533
+ - 1.8970747634994998
+ - 2.622387290840864
+ - 1.2937650718358764
+ - 0.03965791340089898
+ - -1.2363977805186757
+ - -1.9694436129337949
+ - -1.8508566053518722
+ - -1.1101248961532615
+ - -1.7148317094469505
+ - -1.0295293633052554
+ - 3.2732362876631216
+ - 4.4638377171138846
+ - 1.4323988072869347
+ - 0.22623821102066774
+ - -1.0820719720778766
+ - -1.9156851628171985
+ - -1.9201119631149035
+ - -1.2805986343832785
+ - -1.3043092128335503
+ - -0.4357257373529082
+ - 1.8806052080320736
+ - 2.5521043125738108
+ - 1.1870627959617006
+ - -0.0940090314618426
+ - -1.358533415905333
+ - -1.9439809388763711
+ - -1.4889877318110865
+ - -0.2738312909391573
+ - 0.37322273952960344
+ - 1.2462901079164532
+ - 1.9731019200573838
+ - 1.8526213954516455
+ - 0.9128195233597114
+ - -0.413213881347046
+ - -1.6161037442642996
+ - -2.2214028902795335
+ - -1.5910337370680445
+ - -0.008717833845812789
+ - 0.7959360894840385
+ - 1.484968672926473
+ - 2.0259963727789847
+ - 1.8953322649195412
+ - 2.1800420180544897
+ - 1.075456779633839
+ - -1.7477211663081167
+ - -2.77541137671392
+ - -1.7502627827930257
+ - -0.7294719391255415
+ - 0.6095682802643694
+ - 1.6828730287474687
+ - 2.0255050092013125
+ - 1.6927349460920462
+ - 2.089631638974814
+ - 0.8020477826417564
+ - -1.8567422022307107
+ - -1.9283024771245365
+ - -0.5490718092496923
+ - -0.031255469395021405
+ - 0.9911658303062371
+ - 1.8752763892139706
+ - 1.9548719618965438
+ - 1.2154980086094458
+ - 1.9637811931597964
+ - 2.0621466826709773
+ - 2.445975385008553
+ - 1.3122316646837229
+ - -1.6403294889468554
+ - -2.736555827000973
+ - -1.904177132355293
+ - -1.0523792222115305
+ - 0.16151312321578937
+ - 0.5521842784047645
+ - 0.8109220803454299
+ - 1.146427556595615
+ - 1.1919153163015583
+ - -0.14169250926344068
+ - -1.370198774347547
+ - -2.0131185802750564
+ - -1.7679023464642756
+ - -0.7641914825244269
+ - 0.5075098175993922
+ - 0.9674787527198074
+ - 1.0324659712151876
+ - 0.9389865771257003
+ - 0.7891798003455401
+ - -0.46050248903454205
+ - -1.5900794060564276
+ - -2.2007010806668807
+ - -2.786260590236388
+ - -1.8005128210173218
+ - 1.2729328420605928
+ - 2.330648760611211
+ - 2.0276223155056012
+ - 1.6610055796622984
+ - 0.577315522639933
+ - -0.7646025981484075
+ - -1.7688764194162738
+ - -2.191583268317215
+ - -4.461298649356367
+ - -3.1610483865510024
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.482365198676399
+ - 0.9709159976260826
+ - 1.3851272170688798
+ - 2.0069142607183306
+ - 1.76642973436979
+ - 0.7443977283874966
+ - -0.5909107418769131
+ - -1.7435911894580352
+ - -2.4203664106546294
+ - -1.836973442753801
+ - 0.24457954065861043
+ - 1.0451800198053467
+ - 1.60305445742826
+ - 2.0309844923629945
+ - 1.7842343880159715
+ - 1.97731744614376
+ - 0.8186349814546771
+ - -1.6381153885118607
+ - -2.7075264438191966
+ - -1.6484247533629997
+ - -0.5545949503829511
+ - 0.7824283222755515
+ - 1.7772974252271376
+ - 2.001406283213279
+ - 1.5568711776917235
+ - 1.6559596636459664
+ - 0.5770614577931117
+ - -1.6707874975206776
+ - -2.630525981365738
+ - -1.4409897310836013
+ - -0.24097036603598568
+ - 1.0536626588554263
+ - 1.6344477546003047
+ - 1.4102979487453755
+ - 0.5238336585023831
+ - 0.07846576266461741
+ - -0.9646972931283777
+ - -1.8654655137611111
+ - -1.9659868577941153
+ - -1.197691969565462
+ - 0.0804589867145248
+ - 1.3465106880757234
+ - 2.1766079053955667
+ - 1.6179044126181428
+ - 0.9183335249952955
+ - 0.7424058510053625
+ - -1.7220132848961398
+ - -3.0681680315578825
+ - -1.812496995872228
+ - -0.8523086052792598
+ - 0.4788244199691476
+ - 1.6019952666674404
+ - 2.0289305583553654
+ - 1.780353078405991
+ - 2.0086754135188127
+ - 0.9347450209913669
+ - -1.780941891842363
+ - -2.7580823650575224
+ - -1.6461420293016653
+ - -0.5527279627720714
+ - 0.7383856434776649
+ - 1.2388628026194548
+ - 1.1691876388762168
+ - 0.7812199352537437
+ - 0.49905011895536844
+ - -0.6737041143827914
+ - -1.71715861093007
+ - -2.024813518747183
+ - -1.4382277398134777
+ - -0.23716363781452668
+ - 1.0574305537598496
+ - 1.6067009585955356
+ - 1.3435409495704893
+ - 0.5372462603145308
+ - 0.06917966826965434
+ - -0.9683225022867785
+ - -1.86717060532577
+ - -2.1516416756481553
+ - -2.624607395958141
+ - -1.5682725292305593
+ - 1.602280506973422
+ - 2.6539724899868493
+ - 1.9843225175224397
+ - 1.2902606982897096
+ - 0.037598991330327555
+ - -1.2351798835139056
+ - -1.968446066696121
+ - -2.0500477810181845
+ - -3.994103780270639
+ - -2.7690407698941963
+ - 2.9382930608185696
+ - 4.201452862446948
+ - 2.014917600036788
+ - 1.428688463081024
+ - 0.22463864538469985
+ - -1.0820781309037675
+ - -1.914883108639738
+ - -2.115148326806971
+ - -2.554538101835541
+ - -1.4920355367213167
+ - 1.6679612223572673
+ - 2.706467191277446
+ - 1.952470350267251
+ - 1.1854656765888294
+ - 0.012824920704371683
+ - -0.3392251339220499
+ - -0.6919916821564449
+ - -1.2380303978423104
+ - -1.380513875317744
+ - -0.018970792979013728
+ - 1.2462350564914624
+ - 1.979407991990224
+ - 1.839590697175165
+ - 0.9097671839691217
+ - -0.33601207575533554
+ - -0.7624369210308666
+ - -0.9242760331657359
+ - -1.0445953498743648
+ - -0.9919242413902601
+ - 0.30226117819886156
+ - 1.4836393708576217
+ - 2.182275677205928
+ - 2.7724614048580714
+ - 1.7427961674010173
+ - -1.083645580194753
+ - -2.188695905618452
+ - -2.010079449038173
+ - -1.7465357141732738
+ - -0.7294784512922201
+ - 0.6128946623843876
+ - 1.682853465007754
+ - 2.2008049301088293
+ - 3.036286217403081
+ - 1.6514555086398066
+ - -0.9264840654438344
+ - -1.0936383206895965
+ - -1.515410953108319
+ - -1.9357955111177536
+ - -0.32324441424510686
+ - 0.9932214444644176
+ - 1.8868664898567018
+ - 1.9488720705086735
+ - 1.2175471640140862
+ - 2.097938884455875
+ - 2.729590528709564
+ - 1.798672834290106
+ - -0.8153354593463951
+ - -1.8587283475423075
+ - -1.9321414651889963
+ - -1.9032469029640025
+ - -1.2371026302265948
+ - -1.2215260968845678
+ - -0.2725371068064486
+ - 1.6542719064526974
+ - 2.452734753524948
+ - 1.1459537037981473
+ - -0.14407556750291994
+ - -1.3770363940088837
+ - -2.004695065173242
+ - -1.7662583038457857
+ - -0.9326611766834738
+ - -0.8207553779645825
+ - -0.007566010033220422
+ - 1.5950354327095584
+ - 2.235272292929953
+ - 0.8669382815612336
+ - -0.4609501331615828
+ - -1.6500511664980513
+ - -2.322008543441293
+ - -1.7994642646104162
+ - 0.11743312935781122
+ - 0.8694090361700342
+ - 1.5158288114885108
+ - 2.0262154998439925
+ - 1.6655799890898126
+ - 0.5676472760484107
+ - -0.7670668813434257
+ - -1.8600622471657735
+ - -4.205619963705261
+ - -3.122491346777572
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.8820421297445162
+ - -2.2777816244197298
+ - 0.2593887784546178
+ - 1.690435304325492
+ - 2.3987052553923096
+ - 2.0485631680762504
+ - 0.8199572104962807
+ - -0.6979722525735114
+ - -1.3054156700784685
+ - -1.3847447990092996
+ - -1.1113438351585188
+ - -0.8502059158149944
+ - 0.6348289944196444
+ - 1.9403092023232917
+ - 2.6116715152585437
+ - 3.2059960796881817
+ - 1.8136951897509868
+ - -1.316398513560759
+ - -2.7628943378154904
+ - -2.406594661233723
+ - -1.914299506676288
+ - -0.5953119086186293
+ - 0.9905228145909754
+ - 2.139953992833861
+ - 2.585050981887272
+ - 3.1067818425097067
+ - 1.6634016560318126
+ - -1.5350122775670605
+ - -2.992383152755683
+ - -2.3849279087909405
+ - -1.6625994486468747
+ - -0.3754757512670724
+ - -0.0421296240065791
+ - 0.5363623497076929
+ - 1.7256942379310753
+ - 2.045471460117887
+ - 0.3544103407820975
+ - -1.202198483701872
+ - -2.2468727927050898
+ - -2.301195366746226
+ - -1.3657482720583647
+ - 0.03865488107354925
+ - 0.5222532255889072
+ - 0.9223780372007248
+ - 2.1682019669309405
+ - 2.057078523443112
+ - -1.1872536373472462
+ - -2.790578788323526
+ - -2.368307279742123
+ - -2.1183054881912704
+ - -0.9546611863124497
+ - 0.6342523027988943
+ - 1.939923648076178
+ - 2.610173909535098
+ - 3.2646787659296668
+ - 1.985244046817563
+ - -1.4793598133976444
+ - -2.8166417951685467
+ - -2.406665673288674
+ - -1.914369081917683
+ - -0.7757066443586635
+ - -0.5483124118827725
+ - 0.25883352337737
+ - 1.7923583373626135
+ - 2.3760344173035133
+ - 0.7229376333767537
+ - -0.8601705746650845
+ - -2.0788118907548285
+ - -2.3818797178264712
+ - -1.6588396633803935
+ - -0.3710196655043365
+ - -0.0378436137103294
+ - 0.5669399960374277
+ - 1.6359579197883034
+ - 2.0007394488418866
+ - 0.35110213238262344
+ - -1.203657029288452
+ - -2.373716353121642
+ - -3.1682000418163994
+ - -2.2564164252655896
+ - 0.7876351857957807
+ - 1.8997626437783324
+ - 2.1839185242012413
+ - 2.3376845947045983
+ - 1.484854819090585
+ - -0.026760290346133284
+ - -1.5168463992697325
+ - -2.515540922186398
+ - -5.413909120720345
+ - -3.9357704133720017
+ - 1.6798102110750932
+ - 2.6498546283490714
+ - 2.081719289429594
+ - 2.379763607932523
+ - 1.6536435119220536
+ - 0.1944731729543355
+ - -1.3386330834380122
+ - -2.440622329945818
+ - -3.2250208853664515
+ - -2.256945546183296
+ - 0.9277994151998603
+ - 2.0771764862718762
+ - 2.2472385471234584
+ - 2.2971504789327764
+ - 1.5789167382990517
+ - 1.5988996362629129
+ - 0.426477258984197
+ - -1.973137425089711
+ - -2.9770400055728974
+ - -1.461773412127688
+ - 0.04299156683984219
+ - 1.5350699298608874
+ - 2.3527040814244735
+ - 2.153362839209799
+ - 1.2294849495183626
+ - 1.1348254566441707
+ - 0.11427466995659032
+ - -1.919366818017787
+ - -2.7432404234010845
+ - -1.141700634913408
+ - 0.4209180040743334
+ - 1.8608666484787364
+ - 2.6249958621582588
+ - 1.9877402314831336
+ - -0.0007042791962950514
+ - -0.8652202093028266
+ - -1.7088977243093977
+ - -2.3907263880343526
+ - -2.0451571669433397
+ - -0.7945248431053461
+ - 0.789424330902136
+ - 2.1270203256674187
+ - 3.215774074499105
+ - 2.1320309890624696
+ - 0.4143748730277523
+ - 0.1875658245278118
+ - -2.1703632418730865
+ - -3.5395936017077188
+ - -1.731698540634896
+ - -0.3123302004362212
+ - 1.2470930849990913
+ - 2.2595563913895846
+ - 2.2938040570735287
+ - 1.559136309963789
+ - 2.241385020688152
+ - 1.819887607032063
+ - 0.3719175992417449
+ - -0.3002634249379534
+ - -1.3887528190287528
+ - -2.3105091831034974
+ - -2.46979977965409
+ - -2.88826406871645
+ - -1.4317016465346994
+ - 1.7429938660823951
+ - 3.1656638536091264
+ - 2.2787602051402107
+ - 1.3024789756820605
+ - -0.23876876808637454
+ - -1.6787624614291021
+ - -2.387406222675869
+ - -2.3035956313457446
+ - -2.6234733271943
+ - -1.1959264660657836
+ - 1.871058663211173
+ - 3.2250577176220725
+ - 2.1283936556457865
+ - 0.9689345445580108
+ - -0.5282801330768476
+ - -1.0990309317805187
+ - -1.2623719143153997
+ - -1.2403386590939456
+ - -1.0623120878912993
+ - 0.4785119561351752
+ - 1.8408814122917199
+ - 2.415388374282177
+ - 1.9237382352881827
+ - 0.6082272388937823
+ - -0.9266041881100142
+ - -2.660462204596524
+ - -2.1484561124889385
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.0979045310485964
+ - -2.6903407104937687
+ - -0.27821756255540275
+ - 0.9305866260016074
+ - 1.743134959060437
+ - 1.7873673529174947
+ - 1.0628206001596057
+ - -0.02663025738863465
+ - -0.37837894975992037
+ - -0.686877644129249
+ - -1.2230763035874623
+ - -1.2710582676492244
+ - 0.01749845481096887
+ - 1.1746812240234699
+ - 1.9522353913502244
+ - 2.4797255835332273
+ - 1.5200725203918422
+ - -0.6952623057815459
+ - -1.7447874269521926
+ - -1.797261399827504
+ - -1.725337215750813
+ - -0.9097669088742464
+ - 0.3102553532468265
+ - 1.3887860074357898
+ - 2.0140927844155545
+ - 2.5046723338241863
+ - 1.4620147951313327
+ - -0.904281053571603
+ - -2.007704437666418
+ - -1.8563556328708073
+ - -1.5925613530456135
+ - -0.7927496159332614
+ - -0.6815608639409781
+ - -0.0070597436884333176
+ - 1.546016330697116
+ - 2.044508016243279
+ - 0.7366064412450786
+ - -0.49054459278192175
+ - -1.5111014995523788
+ - -1.8664989366388884
+ - -1.4170288035741372
+ - -0.4870638173252535
+ - -0.3208838895627627
+ - 0.3034192861769037
+ - 1.8407605019374258
+ - 1.7967842388064115
+ - -0.5314507196101961
+ - -1.6319175797735417
+ - -1.6942897113993924
+ - -1.815945124864553
+ - -1.155672483717012
+ - 0.017327422042772617
+ - 1.1750930380175335
+ - 1.9522321602180128
+ - 2.5270020989609048
+ - 1.6487314717925852
+ - -0.8047665396214208
+ - -1.7795554377729006
+ - -1.7982246741088705
+ - -1.7261376501055297
+ - -1.0755677094086264
+ - -1.040481387981124
+ - -0.1943815199639148
+ - 1.5130490657440145
+ - 2.2154872584720176
+ - 0.9967516037801984
+ - -0.20151526646116533
+ - -1.3176072959866791
+ - -1.8543416825669934
+ - -1.5902350481442222
+ - -0.789701493373803
+ - -0.666367886656823
+ - 0.050053753818119655
+ - 1.4497342844779204
+ - 2.0027564634013477
+ - 0.7346670248761371
+ - -0.49135778302416017
+ - -1.5672236882826105
+ - -2.1883874757316724
+ - -1.676229197677153
+ - 0.172826130157293
+ - 0.8900522724200247
+ - 1.4400660296655154
+ - 1.8673381992078815
+ - 1.4917227730780713
+ - 0.45561781182678757
+ - -0.7695119090132067
+ - -1.7508156652127935
+ - -3.931444757837113
+ - -2.910652983742654
+ - 0.5557801182182714
+ - 1.0462080847896833
+ - 1.3244248768059401
+ - 1.8559236953766547
+ - 1.5898584472914095
+ - 0.6202247125437405
+ - -0.6096457047273045
+ - -1.6493648438834214
+ - -2.2734201620352916
+ - -1.7065627036392186
+ - 0.2893548167891666
+ - 1.0495251932174452
+ - 1.5167550419152125
+ - 1.8671737493228202
+ - 1.59683366680785
+ - 1.7547049012471003
+ - 0.7031335967711791
+ - -1.5179108935538186
+ - -2.4807034050041823
+ - -1.4755872213554018
+ - -0.4434716632565455
+ - 0.7837157689339087
+ - 1.6678711145618372
+ - 1.8290541059473593
+ - 1.3786695060816976
+ - 1.4493025109518922
+ - 0.4771849935076848
+ - -1.5389627626714337
+ - -2.3953875163909317
+ - -1.2764188984703067
+ - -0.1528458338022842
+ - 1.0349535808247394
+ - 1.5795066578781962
+ - 1.335438904746645
+ - 0.4228254858894426
+ - -0.022339111655981105
+ - -0.9480802374814187
+ - -1.74281578140094
+ - -1.7897427183662362
+ - -1.0456111158747963
+ - 0.14314963781093357
+ - 1.2977302982733308
+ - 2.0757490234218072
+ - 1.5175256425058594
+ - 0.7825061526109763
+ - 0.617735192747167
+ - -1.6095871715696104
+ - -2.8343956218768147
+ - -1.6305067261042812
+ - -0.7050637417681589
+ - 0.5277268474075686
+ - 1.5306584002968153
+ - 1.8688280894945162
+ - 1.584152016794247
+ - 1.7677033604128756
+ - 1.1433096980107569
+ - 0.6959901839247089
+ - 0.42185504735537416
+ - -0.6537478226877218
+ - -1.60018370578485
+ - -2.022148770948452
+ - -2.4527783584938545
+ - -1.3459728877139345
+ - 1.1217377329648126
+ - 2.2529911571008205
+ - 1.8639598125078343
+ - 1.3777055576587283
+ - 0.2959747555230338
+ - -0.919611331427888
+ - -1.731739284156177
+ - -1.9725209784370357
+ - -2.3407824154540147
+ - -1.2103368106630996
+ - 1.2748147927175153
+ - 2.398242800885117
+ - 1.8204618910111152
+ - 1.1631665108035356
+ - 0.10896622001276472
+ - -0.20744011393440523
+ - -0.5773883311387847
+ - -1.3042491457830843
+ - -1.4175450150958817
+ - -0.10699667783433213
+ - 1.0756739731049716
+ - 1.7994774344122706
+ - 1.7298116752243866
+ - 0.9168659238848739
+ - -0.21305994999289693
+ - -1.0553408032184635
+ - -0.9592378005366993
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.046606510558915
+ - -4.012584674033796
+ - -0.8001262149776454
+ - 0.6855705427956895
+ - 1.8816520698858747
+ - 2.249253313170769
+ - 1.6473387110220048
+ - 0.48590733090693905
+ - 0.20224450132449695
+ - -0.3994022645004589
+ - -1.7651842407456382
+ - -2.0715832900578772
+ - -0.4564048998982889
+ - 1.0160048207279895
+ - 2.16555885613553
+ - 2.837338634505036
+ - 1.8572518396064617
+ - -0.47062064766708
+ - -1.6017877512273435
+ - -1.9919035960709077
+ - -2.220351911706475
+ - -1.4930409487152516
+ - -0.10367939865231575
+ - 1.321039955197893
+ - 2.3192905336489584
+ - 2.9681923210541545
+ - 1.8493673405726976
+ - -0.7499571190514809
+ - -1.98856155549129
+ - -2.1358386971283903
+ - -2.130713023807294
+ - -1.4124919121560122
+ - -1.4328112640091124
+ - -0.4325855457350009
+ - 1.9815238856601614
+ - 2.804601824623544
+ - 1.308157616967132
+ - -0.11927713391725903
+ - -1.500856407055845
+ - -2.2228122064607656
+ - -1.984269347270989
+ - -1.0774413850113587
+ - -1.0964387208103619
+ - -0.06534829327591671
+ - 2.2709623640176724
+ - 2.2628756122560305
+ - -0.21887020063763943
+ - -1.3375326246448005
+ - -1.8002732029828958
+ - -2.2564306061014543
+ - -1.7421748511775477
+ - -0.4563237168459513
+ - 1.017190632376803
+ - 2.1667170149977393
+ - 2.8933309408372465
+ - 2.000412754331422
+ - -0.5792745732934091
+ - -1.6347240052072645
+ - -1.9939193236095383
+ - -2.2220193752073683
+ - -1.7091859565008047
+ - -1.8106991422485108
+ - -0.6194168051716333
+ - 1.8587533975278485
+ - 2.915020287246066
+ - 1.5807688849161365
+ - 0.23606731671138154
+ - -1.215561988438978
+ - -2.1338792641247766
+ - -2.128637153704379
+ - -1.4094051809563093
+ - -1.4034763984139096
+ - -0.3335671223377922
+ - 1.8443172530321015
+ - 2.7496335252354394
+ - 1.306561658054162
+ - -0.11989048527594127
+ - -1.5228264557040143
+ - -2.240269924251181
+ - -1.8485122954791529
+ - -0.2413113720325347
+ - 0.4355049923453392
+ - 1.3970959874943316
+ - 2.196220777352455
+ - 2.052198012803852
+ - 1.0005648010836636
+ - -0.4742920577225713
+ - -1.8072446621322056
+ - -4.2408173424135285
+ - -3.196062665838604
+ - -0.1121285546116276
+ - 0.1875613379652742
+ - 1.227959422206309
+ - 2.138928531242483
+ - 2.1318707006712083
+ - 1.1823610090816588
+ - -0.26921131712363755
+ - -1.6473918944394912
+ - -2.3789015988867317
+ - -1.9133276569900661
+ - -0.09981090246466892
+ - 0.6403623092300145
+ - 1.5127280006859571
+ - 2.22741064391463
+ - 2.205023483906243
+ - 2.528951824442539
+ - 1.1800956848313289
+ - -1.7285235550861782
+ - -3.0176180911692954
+ - -2.035463327738961
+ - -0.9870776788695151
+ - 0.49065338306206874
+ - 1.755607184494334
+ - 2.2573377060842543
+ - 2.007825816006313
+ - 2.233377094817943
+ - 0.9371865482270817
+ - -1.815637696608949
+ - -3.0161047892514006
+ - -1.856265834282508
+ - -0.6562368500489849
+ - 0.7773643019543911
+ - 1.3536898031566909
+ - 1.3247794345093364
+ - 0.9097725305021579
+ - 0.6252896031292139
+ - -0.7088203188482199
+ - -1.8871749549846129
+ - -2.2570118647264263
+ - -1.6301239679313255
+ - -0.30651867258721444
+ - 1.13530291908643
+ - 1.9610346974643775
+ - 1.6040419182997867
+ - 1.3601929891037003
+ - 1.1823830231287464
+ - -1.7721761510950773
+ - -3.3403941705195495
+ - -2.158534975962843
+ - -1.2730769663533699
+ - 0.1642948412999063
+ - 1.5330397710159793
+ - 2.2335725735542753
+ - 2.193146248676814
+ - 2.556557163377468
+ - 1.3093982989497073
+ - 1.2071938839971896
+ - 1.1408067847991337
+ - -0.3250427948360746
+ - -1.6428919582838002
+ - -2.426304379264825
+ - -3.0266557383190826
+ - -1.7801486382371565
+ - 1.0557116261913915
+ - 2.381166193604971
+ - 2.2348114820640617
+ - 1.9489478925405093
+ - 0.8222635856519241
+ - -0.6710534122394928
+ - -1.8659407411985243
+ - -2.448929423338232
+ - -2.9918888733253497
+ - -1.671966580897257
+ - 1.2852194287068823
+ - 2.647287612817255
+ - 2.2582926501000764
+ - 1.7471816780499356
+ - 0.6454308668963189
+ - 0.4092117689441969
+ - -0.25919421774601575
+ - -1.8393488247464935
+ - -2.221517804651993
+ - -0.6024653446301521
+ - 0.880480760670333
+ - 1.9898253166185067
+ - 2.2226281988946717
+ - 1.4982555939691007
+ - 0.262941885108863
+ - -0.19894517058157618
+ - -0.3907414460379371
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.4045870014749071
+ - -2.257394257480128
+ - -1.8967644892395557
+ - -2.2523096635152955
+ - -1.6388227344960493
+ - -0.2991588351267752
+ - 1.1602400007337352
+ - 2.24751198609599
+ - 2.992936635895107
+ - 2.122909489186819
+ - -0.7714375571350889
+ - -1.825808555314968
+ - -2.068955168803212
+ - -2.1927108240731386
+ - -1.5841221201376787
+ - -1.6379653447641078
+ - -0.49466373477970915
+ - 1.8623300816529669
+ - 2.8566378006823943
+ - 1.4659143147319809
+ - 0.0764890024463659
+ - -1.3512870281513665
+ - -2.1856863977202314
+ - -2.074803928617262
+ - -1.2667550360767783
+ - -1.2126287882043068
+ - -0.20348667807207493
+ - 1.8269094850494167
+ - 2.6591846069139264
+ - 1.175376625338424
+ - -0.2801893081083153
+ - -1.6589408419187384
+ - -2.36953449694991
+ - -1.8285260249389115
+ - -0.10333874013890776
+ - 0.658633831242408
+ - 1.5228818294106825
+ - 2.2328001295483126
+ - 1.9834643436076953
+ - 0.8566126584220063
+ - -0.6310720299713292
+ - -1.924423813919608
+ - -2.9373534179588066
+ - -1.9818641141914306
+ - -0.5044997942003635
+ - -0.2930793073021403
+ - 2.031862808887295
+ - 3.3655288404725705
+ - 1.7166298762830978
+ - 0.4282446823893952
+ - -1.0496490590835292
+ - -2.067646076590889
+ - -2.189897698098216
+ - -1.579102061228549
+ - -1.6609933346356347
+ - -0.5971511284612836
+ - 2.006529860861976
+ - 2.9091654905804383
+ - 1.4626049248230397
+ - 0.07377581195975949
+ - -1.355914046598279
+ - -1.9908323033256528
+ - -1.5860141861052337
+ - -0.44883556106359374
+ - 0.17767420944563994
+ - 1.242865309041287
+ - 2.148259051238144
+ - 2.1315758160848683
+ - 1.1725520740090507
+ - -0.2842498398543095
+ - -1.662683909850283
+ - -2.3279605576206466
+ - -1.720858525059566
+ - -0.1565055686786808
+ - 0.6551253280758469
+ - 1.5268538883315665
+ - 2.2347063038553774
+ - 2.2029635626750226
+ - 2.584337610335455
+ - 1.4071478033211118
+ - -2.010197025634285
+ - -3.1051264197699875
+ - -2.033618007409832
+ - -0.9761473041572902
+ - 0.5059951562448844
+ - 1.768591732115939
+ - 2.26239935579972
+ - 2.003164819568026
+ - 3.7092911572717364
+ - 2.5027740343853053
+ - -3.5975289495628298
+ - -5.050579493411726
+ - -2.116227557639021
+ - -1.1596131177590459
+ - 0.30032601491459304
+ - 1.6315773812767063
+ - 2.2524949581808213
+ - 2.1251717322893806
+ - 2.4620000453107567
+ - 1.2971651684819658
+ - -2.0519020377075567
+ - -3.1137922690765287
+ - -1.9638629732094788
+ - -0.8405315708795679
+ - 0.5771534760050578
+ - 1.0916499438813516
+ - 1.1573651074473785
+ - 1.03845339805185
+ - 0.864928441211965
+ - -0.5241133085636778
+ - -1.7783884842823277
+ - -2.2713097529967827
+ - -1.761529177020874
+ - -0.49776247387483025
+ - 0.9476697355774922
+ - 1.5260220540037897
+ - 1.3740869213179374
+ - 0.7801892101043024
+ - 0.3935505815503213
+ - -0.865951450827896
+ - -1.9776889865998861
+ - -2.4405405467313446
+ - -3.0021659650994503
+ - -1.759819424212665
+ - 1.56020729927067
+ - 2.825381629414586
+ - 2.2499019810848226
+ - 1.6131845522801511
+ - 0.2789623886316657
+ - -1.1823031708076104
+ - -2.125548719297893
+ - -2.3668200914543545
+ - -3.159216871211893
+ - -1.5738549338682994
+ - 1.4904745723184234
+ - 1.6456202957170427
+ - 1.3634881587909606
+ - 1.4523335911776685
+ - -0.187776399420757
+ - -1.5480832492745245
+ - -2.246680610832029
+ - -1.954034263379759
+ - -0.8231910843186142
+ - 0.5969064686265748
+ - 1.138057960285002
+ - 1.2067623914179735
+ - 1.3144009165965818
+ - 2.563340159803321
+ - 2.258440483054255
+ - 1.8691121021021868
+ - 0.8497596420946429
+ - 0.6694696580735419
+ - -0.14762972480115322
+ - -1.72467033538291
+ - -2.337794202502747
+ - -0.790571046893086
+ - 0.6988136983786872
+ - 1.8928904781838438
+ - 2.2535189741920436
+ - 1.642836618895171
+ - 0.4740567479534825
+ - 0.19224153110891481
+ - -0.4402490565068997
+ - -1.5910570930045287
+ - -2.0022355143201556
+ - -0.4455065095653519
+ - 1.02929334141855
+ - 2.1768251802879077
+ - 2.929153756800728
+ - 2.115056840147518
+ - -0.637004323914601
+ - -1.6527065525950142
+ - -2.0023160102884296
+ - -2.223348779357497
+ - -1.4873022590282052
+ - -0.09172290582781023
+ - 1.3340361290468161
+ - 2.3289838223171655
+ - 5.052578882721004
+ - 3.685989325275329
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.5389337834117973
+ - -1.0239259725488423
+ - -1.319391258085522
+ - -1.8587049497917154
+ - -1.599285210074385
+ - -0.6321537837511713
+ - 0.6003581300476968
+ - 1.6458777352247314
+ - 2.2711684699001027
+ - 1.7078633514985642
+ - -0.2795905334648565
+ - -1.0377140539917673
+ - -1.5134939467895343
+ - -1.8717477437745997
+ - -1.6077988360260511
+ - -1.7692314984887183
+ - -0.7128905239693392
+ - 1.519695623598648
+ - 2.4881453759401126
+ - 1.4856715395221038
+ - 0.4553366855240817
+ - -0.7751821502048345
+ - -1.6664505770811298
+ - -1.8353067199430282
+ - -1.390582654129403
+ - -1.4646967484864923
+ - -0.4870129280076394
+ - 1.5422557406050563
+ - 2.4049730391670274
+ - 1.2873892251922918
+ - 0.16436906344501306
+ - -1.0267340969507017
+ - -1.5709078350212367
+ - -1.332397840751296
+ - -0.43340050363916977
+ - 0.007075653753339752
+ - 0.940470779742858
+ - 1.742572047605872
+ - 1.7969932374784874
+ - 1.0571779058149515
+ - -0.13227134180910563
+ - -1.2912088338876593
+ - -2.068691263752016
+ - -1.5161655564650869
+ - -0.7943276170126834
+ - -0.6298986929109711
+ - 1.6054475347085062
+ - 2.833277450937267
+ - 1.6447390331802212
+ - 0.7329479569640105
+ - -0.4981733539697247
+ - -1.5124996707518825
+ - -1.8697910650474847
+ - -1.6041345894109484
+ - -1.7969775818804286
+ - -0.8174553466187112
+ - 1.650256133049854
+ - 2.534518412375225
+ - 1.483479043266265
+ - 0.4535427224275677
+ - -0.7401638628740265
+ - -1.2115049865868455
+ - -1.1120921047360397
+ - -0.6778292052961916
+ - -0.3834108825984876
+ - 0.6759383056363654
+ - 1.613964701903854
+ - 1.8602429212174416
+ - 1.2848612784100943
+ - 0.16086820774732502
+ - -1.0301704250057435
+ - -1.544094963859553
+ - -1.2670727673729048
+ - -0.44989335303836764
+ - 0.014183655117569525
+ - 0.9438175353078407
+ - 1.7441508340502176
+ - 1.9701279672536924
+ - 2.392207436858949
+ - 1.4147697980087195
+ - -1.506594635118897
+ - -2.4715042671854976
+ - -1.8171336540258523
+ - -1.1445810918680963
+ - 0.023722376941355615
+ - 1.1848006870097811
+ - 1.8287658893207162
+ - 1.866875493989699
+ - 3.6165709497876426
+ - 2.4999543896980594
+ - -2.7533398436063763
+ - -3.927003826727409
+ - -1.850624614216334
+ - -1.275788141072909
+ - -0.14905224564217712
+ - 1.0467217483012765
+ - 1.784520608617213
+ - 1.9323953342077753
+ - 2.322645307254752
+ - 1.341554155394083
+ - -1.5640060611068296
+ - -2.5147558671354204
+ - -1.7840016305237782
+ - -1.0456018425550215
+ - 0.05129683878017145
+ - 0.39009889802595177
+ - 0.6815525748680462
+ - 1.1091213221403056
+ - 1.205475312469638
+ - -0.040677266765833664
+ - -1.194760426628433
+ - -1.8385564703413153
+ - -1.6713791676054213
+ - -0.7867015296137826
+ - 0.3721335733583462
+ - 0.7777247871579962
+ - 0.8919886707011696
+ - 0.9255749184706545
+ - 0.8418169229449042
+ - -0.3361923824900457
+ - -1.4074637388892228
+ - -2.0202006058234496
+ - -2.5560443012493326
+ - -1.5931511748025122
+ - 1.0403638812028604
+ - 2.0664806694101006
+ - 1.860999903437588
+ - 1.5805066006309711
+ - 0.6179690826870041
+ - -0.620439718216437
+ - -1.5838802484488832
+ - -2.027267175053267
+ - -2.7855372193141594
+ - -1.4996432963746973
+ - 0.9061983804231131
+ - 1.057543379344081
+ - 1.3674850304283626
+ - 1.7159301902210324
+ - 0.24057746852057282
+ - -0.966161069063224
+ - -1.7613096154457455
+ - -1.7800506663808169
+ - -1.0333340138524474
+ - 0.06864462231320394
+ - 0.4209463866274879
+ - 0.696550408917366
+ - 1.1470892325457969
+ - 1.7724411827803352
+ - 1.7990703754839013
+ - 1.73419406332636
+ - 1.088222036338541
+ - 1.0564084924237398
+ - 0.20397834883156893
+ - -1.5180208385167484
+ - -2.2272980378139975
+ - -1.008408204855235
+ - 0.19079946903807177
+ - 1.312452760730316
+ - 1.8570450267352963
+ - 1.599575252209243
+ - 0.8026291883057587
+ - 0.6823037140639701
+ - -0.04091608168211757
+ - -1.4559891274456462
+ - -2.0161219971526654
+ - -0.7465876075366789
+ - 0.48158674022106795
+ - 1.5629070272076706
+ - 2.1850506257841285
+ - 1.6767807661347722
+ - -0.16271524323945225
+ - -0.8775026071024025
+ - -1.4360470895983743
+ - -1.8711741847157612
+ - -1.5017882903024056
+ - -0.4674869946162447
+ - 0.7609523346732191
+ - 1.7484878072172778
+ - 3.9305759981184645
+ - 2.9113034937923046
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.5028137641902737
+ - 1.800645543640408
+ - -0.2752375677558651
+ - -1.464315773651224
+ - -2.0271051076747617
+ - -1.6953484051262815
+ - -0.6368717857915169
+ - 0.6475416767164475
+ - 1.1716488969679737
+ - 1.2085710876822744
+ - 0.8892991482578626
+ - 0.6400735042663374
+ - -0.5897675241865602
+ - -1.6679752140440933
+ - -2.200556000547655
+ - -2.6913334731136236
+ - -1.5084649904748946
+ - 1.1438439298866552
+ - 2.366449063613526
+ - 2.027962650945242
+ - 1.5776181437363417
+ - 0.44580274369568285
+ - -0.8862420794749896
+ - -1.8284049113693677
+ - -2.1683106543388195
+ - -2.595837939198476
+ - -1.3753114488239349
+ - 1.3225685414364807
+ - 2.5488428857519456
+ - 2.000667664199653
+ - 1.3588903141095554
+ - 0.2548912765392492
+ - -0.042547411685377394
+ - -0.5009124542911659
+ - -1.4233039352682344
+ - -1.6615916426727175
+ - -0.24199203898740063
+ - 1.0619486765868762
+ - 1.9134037079997883
+ - 1.9213845853355023
+ - 1.1032012329383758
+ - -0.09451463210722547
+ - -0.5254363312047512
+ - -0.8235304468685172
+ - -1.800481131214391
+ - -1.70215713754147
+ - 1.0431043663901225
+ - 2.4058094420585974
+ - 2.0046281407744644
+ - 1.7569403122414131
+ - 0.7513114590605721
+ - -0.589250146145737
+ - -1.6675663318137515
+ - -2.199160255291775
+ - -2.7403700708063816
+ - -1.652958788077114
+ - 1.2826301070169326
+ - 2.4123848469672895
+ - 2.027913337070565
+ - 1.5775878971860597
+ - 0.5940852586638362
+ - 0.38628981835953263
+ - -0.2646543306742013
+ - -1.489415668671849
+ - -1.9492639442661501
+ - -0.5543496597160025
+ - 0.7777679114336722
+ - 1.7799459854646558
+ - 1.9980677675999234
+ - 1.3556663339455615
+ - 0.2511047240566135
+ - -0.044718355733114445
+ - -0.5225631574488426
+ - -1.3511997917177867
+ - -1.6249040201506448
+ - -0.23914129740253823
+ - 1.0632113631146711
+ - 2.0249259792381644
+ - 2.6910709267965442
+ - 1.9024779415920312
+ - -0.7135848554948783
+ - -1.6643430486316382
+ - -1.8632383499878358
+ - -1.9553034316123608
+ - -1.2052816460006737
+ - 0.07964947592736547
+ - 1.3218114979656976
+ - 2.1351117804723874
+ - 4.575544432574542
+ - 3.3199867539870174
+ - -1.4994099967334538
+ - -2.344929849829815
+ - -1.7818390632580654
+ - -1.9959049802261764
+ - -1.3508668719273789
+ - -0.10685177597247172
+ - 1.1748517001299024
+ - 2.0774431977878334
+ - 2.7338382635901475
+ - 1.899329644630716
+ - -0.8302735750445269
+ - -1.8106059778802979
+ - -1.9130666689802083
+ - -1.9175320078574254
+ - -1.2803591274615744
+ - -1.2800368954210704
+ - -0.3132018756520104
+ - 1.657376257224571
+ - 2.4777550595039566
+ - 1.1856991869922038
+ - -0.09332350187732961
+ - -1.3370983000930445
+ - -1.9932524050687594
+ - -1.7880519285850955
+ - -0.9807648116557668
+ - -0.8840300473940321
+ - -0.049251505074398995
+ - 1.6047177111273303
+ - 2.270020972870986
+ - 0.9111978044707065
+ - -0.4107848261957823
+ - -1.610684698644229
+ - -2.257725777233768
+ - -1.692897264163881
+ - 0.05141926154802166
+ - 0.8039911664753876
+ - 1.4794294044824061
+ - 2.019704546879653
+ - 1.6918889694049561
+ - 0.615227026206233
+ - -0.7188177432137288
+ - -1.8272789273446737
+ - -2.748947683417507
+ - -1.805562913317405
+ - -0.29238861750349515
+ - -0.10070972639600559
+ - 1.8302489129699404
+ - 2.9597768558558704
+ - 1.4187596101634528
+ - 0.20654662717515923
+ - -1.099341325720117
+ - -1.9228813681964212
+ - -1.9142135737740884
+ - -1.2634405381975087
+ - -1.278889857186211
+ - -0.38146330789491306
+ - 1.782692572051138
+ - 2.519833063708885
+ - 1.2162834678849301
+ - 1.9620390367955782
+ - 2.059892164124996
+ - 2.3983384261435137
+ - 1.1732226002748727
+ - -1.4903686144515245
+ - -2.680949877976536
+ - -1.9007723260856293
+ - -1.048934537258871
+ - 0.25814313827981566
+ - 1.4547502844173723
+ - 2.017938817279112
+ - 1.9108941063488034
+ - 2.164913280189692
+ - 0.9696881958564713
+ - -1.5913901253475236
+ - -2.718887175134735
+ - -1.7658037253468246
+ - -0.763720441247492
+ - 0.5056110480187961
+ - 0.9997519629761535
+ - 1.1076240436397782
+ - 0.9998202146106125
+ - 0.8202408337614114
+ - -0.45897463200909283
+ - -1.5871625615064318
+ - -2.035895254888786
+ - -1.5858803376684776
+ - -0.45699375768813416
+ - 0.8383180398107306
+ - 2.3537196000160683
+ - 1.8878996782142712
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.020999817190355
+ - 4.043260314661435
+ - 1.034897536730266
+ - -0.2738498253086413
+ - -1.4696871368756312
+ - -2.019157779462382
+ - -1.6968383656452757
+ - -0.8016563831496396
+ - -0.6588696307730018
+ - 0.03139371701300856
+ - 1.7436509074121223
+ - 2.191802543124655
+ - 0.7463293443052136
+ - -0.5868485445270832
+ - -1.7391647180184164
+ - -2.347833324606619
+ - -1.6281162266847675
+ - 0.1380106857116094
+ - 1.0200805583072952
+ - 1.5983070856834172
+ - 2.0278016806574284
+ - 1.585277511004587
+ - 0.4407239423595758
+ - -0.8857276025944624
+ - -1.930564455224754
+ - -2.5352802836132504
+ - -1.6668952681754972
+ - 0.4002413921366378
+ - 1.406628011936295
+ - 1.7764658419931505
+ - 2.001823659132832
+ - 1.5599023559189806
+ - 1.6908873482573807
+ - 0.6864439013216549
+ - -1.8041396782782821
+ - -2.6807566999890424
+ - -1.4425425887166972
+ - -0.2433344357457902
+ - 1.065365749394338
+ - 1.9067556192981459
+ - 1.9227430086113617
+ - 1.2940456916256422
+ - 1.4716030098503303
+ - 0.373291143391515
+ - -2.0066474912591987
+ - -2.032634899268298
+ - -0.12007568781184255
+ - 0.696867332010543
+ - 1.3826249865733637
+ - 2.005349505900679
+ - 1.7664853631157464
+ - 0.7460483902433644
+ - -0.5883822267369607
+ - -1.7410236908497774
+ - -2.3956390977385364
+ - -1.7434424400248947
+ - 0.21504159765302744
+ - 1.0420376837024072
+ - 1.6006836837609362
+ - 2.029763003767055
+ - 1.7845870596837217
+ - 1.9782038633774428
+ - 0.8197588212883821
+ - -1.6367401048792485
+ - -2.7061849580801334
+ - -1.648738822741428
+ - -0.5564347488258887
+ - 0.7798492952568188
+ - 1.7751139376945821
+ - 2.000559632273673
+ - 1.557659772588471
+ - 1.65736632834382
+ - 0.5784561268556616
+ - -1.669681724694136
+ - -2.6297044382468946
+ - -1.4417047797125542
+ - -0.24307151614026476
+ - 1.0508577915999793
+ - 1.6497105365394849
+ - 1.4758592046776478
+ - 0.5394301881817782
+ - 0.0906873827063124
+ - -0.9621126851852865
+ - -1.8634309820000767
+ - -1.9653817998340035
+ - -1.198786586417462
+ - 0.078148249757222
+ - 1.3437396676185507
+ - 3.309849729439124
+ - 2.5407126104520694
+ - 0.6716395490417395
+ - 0.625977622042853
+ - -0.7936655329532954
+ - -1.7817971744089682
+ - -2.006071688123313
+ - -1.3441516701681255
+ - -0.10869895649100818
+ - 1.1775947769581252
+ - 1.7964111807449412
+ - 1.5527911507507426
+ - 0.41602287260496973
+ - -0.09615077149441478
+ - -1.0793720961018438
+ - -1.9135220589221464
+ - -2.117033476584654
+ - -2.495955776734883
+ - -1.267116312622764
+ - 1.4238981857228745
+ - 2.6356476800932733
+ - 1.9528705402810727
+ - 1.1879445313455277
+ - -0.09177265887362668
+ - -1.3344910820675675
+ - -1.995195156435325
+ - -1.9944260632976887
+ - -2.2930591048835502
+ - -1.0782034410858388
+ - 1.54475409264935
+ - 2.708764588680023
+ - 1.8422686257594898
+ - 0.9154934237748423
+ - -0.3284316739687289
+ - -0.7691451669962099
+ - -0.9389502540701183
+ - -1.0824366920498576
+ - -1.0210457576147636
+ - 0.2955908124753027
+ - 1.4788134589008144
+ - 2.02947937660378
+ - 1.684510525584203
+ - 0.6175690304561895
+ - -0.6689305210678508
+ - -1.30230375418494
+ - -1.2249082814742602
+ - -1.4852268818085208
+ - -1.346390652199761
+ - 1.412628105735633
+ - 2.839345225276912
+ - 2.0127797572904087
+ - 1.4142966171582163
+ - 0.204169991172757
+ - -1.0995856811358622
+ - -1.9219237982925075
+ - -2.109245273101666
+ - -2.5286546145987456
+ - -1.3937182369101864
+ - 1.5829593081454199
+ - 2.696229879896091
+ - 1.9471002443655892
+ - 1.213932042726462
+ - 2.0947909384463936
+ - 2.674844128212188
+ - 1.658799312827912
+ - -0.6973060821786904
+ - -1.8181220788878458
+ - -1.92821791819212
+ - -1.9009990878741598
+ - -1.0546248152219273
+ - 0.26032201070405064
+ - 1.4546175634041725
+ - 2.174961316431436
+ - 2.718334384421127
+ - 1.605662602708241
+ - -0.9292800752317993
+ - -2.1156524539044392
+ - -2.0043318321176504
+ - -1.767869227931102
+ - -0.9370428417703565
+ - -0.8389350363748592
+ - -0.09617866712317939
+ - 1.7905403155760793
+ - 2.3021916166551737
+ - 0.8699862240642673
+ - -0.4574958268803369
+ - -1.5930176716311584
+ - -2.027484440016454
+ - -1.5873431900201669
+ - -0.6096912523216192
+ - -0.6158374467587524
+ - -0.22362502012114174
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.861889456666033
+ - 5.409892483443471
+ - 2.227398050797779
+ - 1.1702959537722106
+ - -0.3951342163122827
+ - -1.7902485979118419
+ - -2.406383934390473
+ - -2.222616373422163
+ - -2.558759656692376
+ - -1.3255409606902588
+ - 2.2039103446481643
+ - 3.3173270816328984
+ - 2.0542428235508114
+ - 0.8250740950635228
+ - -0.6945179464856025
+ - -1.2573986232601266
+ - -1.2816138409108226
+ - -1.054432586631251
+ - -0.8241370333172386
+ - 0.6318185055268815
+ - 1.94099805477538
+ - 2.4189712400492196
+ - 1.8289357100335213
+ - 0.4564541673938049
+ - -1.0851045784971403
+ - -1.7130885718604287
+ - -1.5057012693806224
+ - -0.7744763902404127
+ - -0.318664698352139
+ - 0.9922716690934814
+ - 2.1433891110455043
+ - 2.5906331887970135
+ - 3.1731729400087105
+ - 1.8418652949013858
+ - -1.704363785598891
+ - -3.0514111761201366
+ - -2.3885396852257585
+ - -1.6653401207886782
+ - -0.2218192342746272
+ - 1.3237887262432972
+ - 2.289970474723784
+ - 2.4993698354025535
+ - 3.320775542943284
+ - 1.632540356582093
+ - -1.646779591586678
+ - -1.8073589760460513
+ - -1.4160066005625085
+ - -1.4664381937165436
+ - 0.25999057004810994
+ - 1.6942255243091213
+ - 2.404069129625769
+ - 2.0531309449470023
+ - 0.8217721189893812
+ - -0.6995533498410748
+ - -1.2896052695253701
+ - -1.3293031489288312
+ - -1.0709728278955195
+ - -0.8361502341959086
+ - 0.6362692565150959
+ - 1.944657670485697
+ - 2.617508855308175
+ - 3.213157688552944
+ - 1.8177430338348721
+ - -1.3193577371581708
+ - -2.769082324610912
+ - -2.411974264287838
+ - -1.9185691620236274
+ - -0.5966241972664238
+ - 0.9927519147761402
+ - 2.1447455958757846
+ - 2.590825195948688
+ - 3.1137174772781617
+ - 1.667108097321868
+ - -1.538453205701904
+ - -2.9990773046976407
+ - -2.3902558195085852
+ - -1.6662998642323765
+ - -0.37629601430825815
+ - -0.032310626246443624
+ - 0.5492098759434325
+ - 1.8136731159473904
+ - 2.0728856189444924
+ - 0.35518460265912144
+ - -1.2049015987785225
+ - -2.2519000852673705
+ - -2.3063302970832624
+ - -1.3687823219896122
+ - 0.038760698724681394
+ - 0.8780329560548268
+ - 0.8941384577151767
+ - 2.957570599197116
+ - 3.8411305298305236
+ - 0.5732618302173853
+ - -1.0075769413640376
+ - -2.160425932511438
+ - -2.3614366707286734
+ - -1.5458065125736375
+ - -0.2022292252381325
+ - 0.18980696055532523
+ - 0.6949707618903357
+ - 1.7192205581993498
+ - 1.8950800807872865
+ - 0.19555229337237262
+ - -1.340701793283148
+ - -2.446178591691019
+ - -3.1467293763941204
+ - -1.9828638745038398
+ - 0.7337821123790347
+ - 2.03373215698853
+ - 2.251198215791392
+ - 2.301950564924265
+ - 1.3611066680876087
+ - -0.18406917352023394
+ - -1.63984665467877
+ - -2.5625897466420753
+ - -3.2251501334476576
+ - -1.935949749174121
+ - 1.0173870623315309
+ - 2.4066512582270025
+ - 2.3610690541781056
+ - 2.1619311329527178
+ - 1.2369987692589564
+ - 1.1633578997563905
+ - 0.20298141215929177
+ - -2.0590184523754926
+ - -2.80710743480343
+ - -1.147424215160604
+ - 0.42046993752641904
+ - 1.8132836307824223
+ - 2.4083835457893192
+ - 1.9640495342915452
+ - 0.8557692598829124
+ - 0.7405153576512175
+ - -0.1964421041322919
+ - -2.409720524194766
+ - -2.372605481131758
+ - 0.5150561864182382
+ - 1.8583221186553784
+ - 2.0951000132795743
+ - 2.3769236941958654
+ - 1.6357771514023551
+ - 0.16943664042493584
+ - -1.3600255860796726
+ - -2.4511582391243185
+ - -3.2084691189753665
+ - -2.1386584255033454
+ - 0.8842403171720381
+ - 2.097508312206215
+ - 2.2570416432435634
+ - 2.290400023613043
+ - 1.557683026033092
+ - 2.197073336156482
+ - 1.722088248558168
+ - 0.4176463452254322
+ - -0.29047240140429287
+ - -1.3870433461092446
+ - -2.311913679237157
+ - -2.2442816934402123
+ - -1.1843426376335366
+ - 0.37778082916844846
+ - 1.8313951137576192
+ - 2.5446576050259067
+ - 1.8569049194428682
+ - 0.10464655437725771
+ - -0.7968258069661278
+ - -1.6821985319430028
+ - -2.3924232215559655
+ - -2.3103078202046032
+ - -2.6947049105499987
+ - -1.4457100658172128
+ - 2.1640333346041576
+ - 3.315055932644012
+ - 2.133010101990916
+ - 0.9715828491556104
+ - -0.6129642776815772
+ - -1.930952497823135
+ - -2.4099777787871197
+ - -2.0862958049216513
+ - -3.8324566426780926
+ - -2.5744550096978216
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.5907365903906103
+ - 3.700203680567486
+ - 1.7604367313196883
+ - 1.232564217359004
+ - 0.17158967266203545
+ - -0.968193277535068
+ - -1.6841371394734748
+ - -1.8435768214143748
+ - -2.2217337489512174
+ - -1.2911787838776145
+ - 1.4711035794131424
+ - 2.377122444334493
+ - 1.701884716712022
+ - 1.0171312000079407
+ - -0.015976265628445497
+ - -0.33024223944723385
+ - -0.6244025153445296
+ - -1.0696284471724073
+ - -1.1792274229368565
+ - 0.008457654015756825
+ - 1.1104390430633728
+ - 1.738259831772095
+ - 1.5994081429046478
+ - 0.7738030176640004
+ - -0.3209445053093098
+ - -0.699533333661832
+ - -0.826094008651608
+ - -0.8980866233797011
+ - -0.836798453888115
+ - 0.2893238830396324
+ - 1.3155545563610764
+ - 1.913490026651995
+ - 2.4264563391189085
+ - 1.5194364832386136
+ - -0.9661992943201947
+ - -1.936503654980325
+ - -1.7625918330916255
+ - -1.5157773100764795
+ - -0.6149291039483792
+ - 0.5602720384328842
+ - 1.486783441207469
+ - 1.9254325240919978
+ - 2.651422187455857
+ - 1.4352249717715928
+ - -0.8344282785498511
+ - -0.9796365902583876
+ - -1.321504318915246
+ - -1.6775478200052927
+ - -0.269269134596087
+ - 0.8807099150628404
+ - 1.6556993925554768
+ - 1.7009176885197574
+ - 1.0145214179277267
+ - -0.02013669516046135
+ - -0.34333979977415957
+ - -0.6270398849900803
+ - -1.1145746064537039
+ - -1.1990831860246165
+ - 0.011859035002237098
+ - 1.1132331664751214
+ - 1.854893404772645
+ - 2.356947865603936
+ - 1.4459962836551927
+ - -0.6575867660037458
+ - -1.6544407938524062
+ - -1.7076298170603532
+ - -1.6423843235014908
+ - -0.8692543795914555
+ - 0.2902958288932978
+ - 1.3173392311171426
+ - 1.9145188515869458
+ - 2.381683924134773
+ - 1.3913963747604736
+ - -0.8566566545496727
+ - -1.9052006769113206
+ - -1.7645631180899528
+ - -1.516802361689663
+ - -0.7585660769420565
+ - -0.6518772433264306
+ - -0.025203290811678616
+ - 1.5475391084874723
+ - 1.9665583240228637
+ - 0.7048003957893981
+ - -0.46182694301088306
+ - -1.4339967254889
+ - -1.7749577031547612
+ - -1.3505049706705565
+ - -0.4681623025026867
+ - -0.39786041448818754
+ - -0.0929337209564346
+ - 2.6018489098161797
+ - 3.4718129822578714
+ - 0.8519042010843945
+ - -0.30208995875169325
+ - -1.330399235584157
+ - -1.773451976627753
+ - -1.4510630680939447
+ - -0.6382467263578142
+ - -0.49269205802913957
+ - 0.08653508943083552
+ - 1.5028082965385725
+ - 1.8652432076107297
+ - 0.5948467965611107
+ - -0.5740501827933931
+ - -1.5644500495612836
+ - -2.098032118872038
+ - -1.4370494962988263
+ - 0.17248963102870463
+ - 0.9712448384353776
+ - 1.4380268825022957
+ - 1.7748094418921898
+ - 1.3482230812839608
+ - 0.3244359060049938
+ - -0.8320456870884523
+ - -1.7229370506928667
+ - -2.2500607119407117
+ - -1.46284732532141
+ - 0.40074414726239466
+ - 1.303663915610788
+ - 1.585683983713496
+ - 1.7421757889346143
+ - 1.3174798302619262
+ - 1.4122192913682075
+ - 0.5491843923285703
+ - -1.5800364679105314
+ - -2.325166175015594
+ - -1.218669326234551
+ - -0.1505702047597658
+ - 0.9865420882260986
+ - 1.6907050693315475
+ - 1.663278882042036
+ - 1.0776402312962314
+ - 1.2047031141529434
+ - 0.2712641908277434
+ - -1.7669748704707968
+ - -1.783389006961855
+ - -0.03437700203732567
+ - 0.7253048235464697
+ - 1.2648245930971116
+ - 1.7620076406557068
+ - 1.5019799055007605
+ - 0.5772461583235724
+ - -0.589539781245125
+ - -1.5721855704808334
+ - -2.1453166357995554
+ - -1.5397839417974957
+ - 0.25786106806368964
+ - 1.0100056210501993
+ - 1.4458367813205462
+ - 1.7708141730354596
+ - 1.5069853088106333
+ - 1.6533514681679913
+ - 1.0379898109182315
+ - 0.665454691682976
+ - 0.40370197362485744
+ - -0.6132482949901966
+ - -1.5161438499772038
+ - -1.769310009679293
+ - -1.241031510121933
+ - -0.1826687594816481
+ - 0.9492861940825171
+ - 1.4332629667329697
+ - 1.1881024132602156
+ - 0.4506365939212006
+ - 0.026930614358085782
+ - -0.869484750076483
+ - -1.64393755981246
+ - -1.8772753641378037
+ - -2.2851952484174114
+ - -1.3591641620253316
+ - 1.4149731214210293
+ - 2.333396900127523
+ - 1.7313831857896722
+ - 1.1098688272043955
+ - 0.007749743909106028
+ - -1.100862950987513
+ - -1.7288024023475614
+ - -1.784230289530474
+ - -3.467255644975686
+ - -2.4006396913217367
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.508148763908903
+ - 3.671871623126113
+ - 2.0403422110979905
+ - 1.7581354661930322
+ - 0.717337209369887
+ - -0.6434701267272571
+ - -1.7185886973658815
+ - -2.229831762361814
+ - -2.7886366323289873
+ - -1.757405587900819
+ - 1.4148877065463716
+ - 2.4928455056663537
+ - 2.056378197137164
+ - 1.5699668935964535
+ - 0.5525078976669315
+ - 0.32821779261721706
+ - -0.30738835505869405
+ - -1.4928312979094012
+ - -1.932309261432699
+ - -0.5161817011145774
+ - 0.8330830212233716
+ - 1.8286468608896806
+ - 2.018607319117209
+ - 1.3393939788722427
+ - 0.20305150005928235
+ - -0.10957605484023586
+ - -0.567487464072638
+ - -1.3472913107271842
+ - -1.596587596464627
+ - -0.1949655491063389
+ - 1.1191926872591658
+ - 2.074121693113928
+ - 2.724957398943713
+ - 1.8292838406460303
+ - -0.7117526979409385
+ - -1.7352486745595832
+ - -1.9086893719456728
+ - -1.9706100598279281
+ - -1.1837295209776173
+ - 0.12863283751925136
+ - 1.3769810882201743
+ - 2.178043940930781
+ - 3.1017392462000433
+ - 1.8187176432672796
+ - -0.4666066823490948
+ - -0.6545035950009047
+ - -1.7484366898101442
+ - -2.4998686172286173
+ - -0.820762821750886
+ - 0.529657056384339
+ - 1.6571202901383153
+ - 2.0551635725444934
+ - 1.5669422512308153
+ - 0.5474924962465116
+ - 0.32627863387340905
+ - -0.27288612732492906
+ - -1.579074736926879
+ - -1.9664233786701653
+ - -0.512364231571701
+ - 0.8362166552059563
+ - 1.9206660576052352
+ - 2.536062043863965
+ - 1.6859069402250535
+ - -0.34944144206863303
+ - -1.3452067105058987
+ - -1.766253899579998
+ - -2.038559033552114
+ - -1.4335933141207164
+ - -0.19320483428739843
+ - 1.1220256929602315
+ - 2.0762544116210115
+ - 2.675443777787038
+ - 1.6916865865920385
+ - -0.6079210389865196
+ - -1.709749514693739
+ - -1.9116328427193667
+ - -1.9720832361766802
+ - -1.3732892247775
+ - -1.4266232815466173
+ - -0.5213051076303833
+ - 1.9158393354772645
+ - 2.6309333470091474
+ - 1.2712450585667954
+ - -0.009733099085758807
+ - -1.2914829794246323
+ - -2.005888721895568
+ - -1.8531120789754658
+ - -1.0770404774129219
+ - -1.6309616243474376
+ - -0.964473503524416
+ - 3.298740761891391
+ - 4.490929477901748
+ - 1.4146785047844148
+ - 0.17945254326002452
+ - -1.1378762193360634
+ - -1.9558650404212405
+ - -1.9274926907138044
+ - -1.2523278900261712
+ - -1.2596645113777114
+ - -0.3955130062734196
+ - 1.8960555944262427
+ - 2.5555262469199174
+ - 1.161180435837946
+ - -0.14504149418272058
+ - -1.4179321741656215
+ - -2.0148155418083196
+ - -1.5261209133812488
+ - -0.23666144313184426
+ - 0.44408561707608796
+ - 1.3010668943372738
+ - 2.0092666860328
+ - 1.8545222854083396
+ - 0.8795170251940809
+ - -0.4671637037929364
+ - -1.6728501663164943
+ - -2.2874994984403743
+ - -1.6233904556564558
+ - 0.03228429306304017
+ - 0.8697320008379757
+ - 1.5373677779378583
+ - 2.055052099985162
+ - 1.8910498930946869
+ - 2.1647236439207496
+ - 1.0530411185760256
+ - -1.7805576716322074
+ - -2.809029964676722
+ - -1.7465121477663699
+ - -0.6919093548305604
+ - 0.6648896153745932
+ - 1.731544567540715
+ - 2.046648297181967
+ - 1.6789361857934038
+ - 2.0599453877533263
+ - 0.7713975702496007
+ - -1.9005286202456704
+ - -1.9685700124613554
+ - -0.5128441236993453
+ - 0.044069188429517674
+ - 1.0469341647669244
+ - 1.9172229633942806
+ - 1.9648710042077953
+ - 1.1440386562305591
+ - -0.163226559066791
+ - -1.4309676879970614
+ - -2.0679950821541953
+ - -1.623333797854349
+ - -0.17365752837539178
+ - 0.47653166901582256
+ - 1.3135366961922845
+ - 2.010136954146437
+ - 2.0421676202663623
+ - 2.3581019974541406
+ - 1.124386577162278
+ - 1.1305914267342816
+ - 1.1464226991944064
+ - -0.19322791501612915
+ - -1.4238870430027897
+ - -2.0458367807003635
+ - -1.7651258403513992
+ - -0.727353130138824
+ - 0.5664541860048623
+ - 1.041928913158203
+ - 1.0775216492942332
+ - 0.9165077914613153
+ - 0.7348477819280645
+ - -0.514804823912044
+ - -1.6407472110031949
+ - -2.2307352019808637
+ - -2.815062217917087
+ - -1.8072814176217213
+ - 1.3234595863590874
+ - 2.3972410089993494
+ - 2.0554707020839413
+ - 1.65274593452847
+ - 0.5363652491899408
+ - -0.8202308146696792
+ - -1.8151693530196915
+ - -2.2129032475124215
+ - -4.488110071402899
+ - -3.1743873528259363
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.514280933815417
+ - -3.265318715201621
+ - -0.48730172380089193
+ - 0.8566327043143129
+ - 1.8367023215994658
+ - 2.0075569136417926
+ - 1.3141227390574806
+ - 0.17186155585442509
+ - -0.16146279719512896
+ - -0.590871411746683
+ - -1.4615577315175865
+ - -1.611019696734078
+ - -0.16619421170345042
+ - 1.1398346811455442
+ - 2.079631693774788
+ - 2.675202984974884
+ - 1.6857245765225652
+ - -0.6238570172720855
+ - -1.7290346871665272
+ - -1.9138657023925554
+ - -1.956983386523435
+ - -1.1570948940194192
+ - 0.15653411717675292
+ - 1.394145136348784
+ - 2.178589405674058
+ - 2.741859428602949
+ - 1.6458321329097982
+ - -0.8649563064809295
+ - -2.046060584653216
+ - -2.0072642582300846
+ - -1.837933805256756
+ - -1.0515724186891446
+ - -0.9889324545429837
+ - -0.17252030973907884
+ - 1.7504542712401425
+ - 2.3864003090581227
+ - 0.9754290277926158
+ - -0.35751005987037837
+ - -1.5415867897039937
+ - -2.0474852331539655
+ - -1.669697843723266
+ - -0.7275074723225315
+ - -0.6294689113959635
+ - 0.1670889767515193
+ - 2.049863122539789
+ - 2.0188248913405036
+ - -0.42214705657156637
+ - -1.5547813867516922
+ - -1.7741052656077683
+ - -2.0284762086408374
+ - -1.4098595429316056
+ - -0.1662705571224288
+ - 1.1405564950784843
+ - 2.0800803503355283
+ - 2.72694841473436
+ - 1.8229511320237517
+ - -0.7355276145698274
+ - -1.7638836743880761
+ - -1.9152606600895383
+ - -1.9581389902511512
+ - -1.3462324754306987
+ - -1.3634046513055886
+ - -0.3639217140244061
+ - 1.681853824212255
+ - 2.537761005362385
+ - 1.2463525257479726
+ - -0.036131398784614674
+ - -1.3080195409379614
+ - -2.0052283708020653
+ - -1.835652586331591
+ - -1.048442670905366
+ - -0.9679005909555009
+ - -0.0978270028880601
+ - 1.6360800946536889
+ - 2.338564171153189
+ - 0.9735805563279213
+ - -0.358264722590263
+ - -1.5857248137969169
+ - -2.2584594507767934
+ - -1.7813870173927169
+ - 0.01589251517487851
+ - 0.7337780603328032
+ - 1.4562209521418599
+ - 2.0376867192952064
+ - 1.7434672713344537
+ - 0.6776967599844345
+ - -0.6723806258541359
+ - -1.8126710303522706
+ - -4.141304026615202
+ - -3.0879168288469283
+ - 0.30900632321286625
+ - 0.7365282944703495
+ - 1.3171624269599067
+ - 2.0081917127673616
+ - 1.8366712658848654
+ - 0.8527363884168627
+ - -0.49130520420372664
+ - -1.6862206981126195
+ - -2.366253439367829
+ - -1.825808989770784
+ - 0.14478012854370403
+ - 0.9145205482481011
+ - 1.5497875870585203
+ - 2.0497003011977566
+ - 1.869510036947148
+ - 2.0954853902249955
+ - 0.9044517810204511
+ - -1.6343468727175239
+ - -2.7458544341743765
+ - -1.726729371010637
+ - -0.6647543971553036
+ - 0.6877503098945554
+ - 1.7399941584035485
+ - 2.0371442626530842
+ - 1.6545115139762028
+ - 1.7869301018600563
+ - 0.6667574616247662
+ - -1.6815417523852167
+ - -2.691147155633457
+ - -1.5307756982386123
+ - -0.3518745937316451
+ - 0.958498369985723
+ - 1.5278138966612702
+ - 1.3617588362036617
+ - 0.621626346858153
+ - 0.22871758707157488
+ - -0.8767631904555335
+ - -1.8386454132342653
+ - -2.0120795774163596
+ - -1.296520233617535
+ - -0.02825865256681762
+ - 1.2642346827261055
+ - 2.078534470168655
+ - 1.5857463128923703
+ - 1.0247606999659118
+ - 0.8511657420015691
+ - -1.7094589995263576
+ - -3.0956072538064805
+ - -1.8728166997126385
+ - -0.9417933309000294
+ - 0.398585003534812
+ - 1.5664957806357787
+ - 2.053142686724691
+ - 1.8568566526128758
+ - 2.114463670256774
+ - 1.012319878955316
+ - -1.7885959882056504
+ - -2.8019290964303787
+ - -1.716465434346815
+ - -0.6436588937762232
+ - 0.6570295008366618
+ - 1.1481840108659196
+ - 1.1308633548892724
+ - 1.1216729982663287
+ - 2.3541684630365194
+ - 2.0505355518870094
+ - 1.6310295095284373
+ - 0.507167544839871
+ - -0.8440306412675808
+ - -1.8233696072745496
+ - -2.2025764327468584
+ - -2.6470988273046654
+ - -1.4172669674526293
+ - 1.3079342650569963
+ - 2.549687612204633
+ - 2.0320645678690874
+ - 1.4165631085651638
+ - 0.31984737423069115
+ - 0.027372200499702893
+ - -0.46695168274793236
+ - -1.5418631457163
+ - -1.7621891117769648
+ - -0.30190706020365443
+ - 1.024384211991864
+ - 1.914464480046744
+ - 1.9607050434788336
+ - 1.1636257196464044
+ - -0.033010813698602606
+ - -0.7467365378479993
+ - -0.7602758468104296
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.5943361360789834
+ - -3.461631976103941
+ - -0.8490621106796689
+ - 0.3018671126167885
+ - 1.3272034936207966
+ - 1.7686840786116786
+ - 1.446784138191738
+ - 0.6358927538425041
+ - 0.49051874349881364
+ - -0.08686711157672604
+ - -1.4984917427344264
+ - -1.859639588091052
+ - -0.592663189622217
+ - 0.5730689855118606
+ - 1.5606014063272942
+ - 2.0927472621682246
+ - 1.4332545660324807
+ - -0.17251340296859133
+ - -0.9693693662516217
+ - -1.4344888682347396
+ - -1.7699797782396534
+ - -1.3441713479721353
+ - -0.32296525240861157
+ - 0.830326783282513
+ - 1.7185690592813347
+ - 2.24424291777624
+ - 1.458901523857835
+ - -0.4001320367512481
+ - -1.300826325181664
+ - -1.5816642932643903
+ - -1.7373351513963888
+ - -1.3134256794766102
+ - -1.4077022530919896
+ - -0.5471937427910879
+ - 1.5757434698624784
+ - 2.3186204550921903
+ - 1.2149250521570811
+ - 0.1495608392659457
+ - -0.9843752143261321
+ - -1.6863163201822597
+ - -1.6585587432686997
+ - -1.0742114117792152
+ - -1.2006155632122173
+ - -0.26988939430934483
+ - 1.7635337858458124
+ - 1.7802639916123342
+ - 0.047735357091507793
+ - -0.7018539229226309
+ - -1.2534831360758052
+ - -1.760264996071687
+ - -1.5106003982820977
+ - -0.5924544881429709
+ - 0.5743273193656568
+ - 1.5620806524091424
+ - 2.1350697334230566
+ - 1.5366679297350818
+ - -0.24370975846861986
+ - -0.9899833118592906
+ - -1.4364672513660113
+ - -1.7716132449982254
+ - -1.5177985832582426
+ - -1.6687970341675054
+ - -0.6702132264700329
+ - 1.439488680304302
+ - 2.354269488859055
+ - 1.4025354374891934
+ - 0.42488911489197434
+ - -0.7396135543721198
+ - -1.5804071821171648
+ - -1.736119013503103
+ - -1.3113666599078058
+ - -1.3796442118793728
+ - -0.45606810028074485
+ - 1.4600136908695571
+ - 2.2742108219284445
+ - 1.2140840286515757
+ - 0.14927805859297974
+ - -0.9778801773230984
+ - -1.510650103102331
+ - -1.3260910917137547
+ - -0.4139356258779706
+ - 0.007964796862904805
+ - 0.8957658516885311
+ - 1.6518958981340606
+ - 1.6992361855566498
+ - 0.9955322393398579
+ - -0.13153653546697006
+ - -1.227614497795833
+ - -2.989492253612172
+ - -2.285139635444811
+ - -0.48470505525477475
+ - -0.40417007751120526
+ - 0.7512298391938218
+ - 1.58587028057101
+ - 1.7404745265290429
+ - 1.1261016846058025
+ - 0.031633694007933574
+ - -1.086190009060473
+ - -1.6351156398779922
+ - -1.390078855558117
+ - -0.3051798393555217
+ - 0.17109436925460447
+ - 0.9960380260783869
+ - 1.6917652417435525
+ - 1.829451265443088
+ - 2.1453740221736353
+ - 1.0722340115230364
+ - -1.2704582812368148
+ - -2.3219966988726246
+ - -1.6878204723072874
+ - -0.9858063409610318
+ - 0.14366598550249907
+ - 1.2127781582451231
+ - 1.753360529116041
+ - 1.7121768654039708
+ - 1.9563134157152415
+ - 0.9014644676801954
+ - -1.3685815014050962
+ - -2.3725282583432383
+ - -1.5818169700118563
+ - -0.742696384709123
+ - 0.3547285472613459
+ - 0.7546832528662963
+ - 0.867899157471362
+ - 0.8999389242136724
+ - 0.8109555683899999
+ - -0.32075450847508774
+ - -1.3344414318097713
+ - -1.777116552861669
+ - -1.4354189955402719
+ - -0.47882194056762717
+ - 0.6495089855585513
+ - 1.2238932986648943
+ - 1.11198454086816
+ - 1.253046123457611
+ - 1.1276603084968877
+ - -1.2697425292988054
+ - -2.516044475666481
+ - -1.7494779641091007
+ - -1.1895942748913857
+ - -0.11502764492650155
+ - 1.0133838823988126
+ - 1.6986034891887267
+ - 1.8221098538638287
+ - 2.172584136897975
+ - 1.1812213888500083
+ - -1.409374959341721
+ - -2.3746229187033707
+ - -1.6822874345658196
+ - -0.9689208760984968
+ - 0.07699131326134602
+ - 0.4042518761811324
+ - 0.6650705079198045
+ - 1.0358532465691381
+ - 1.650558328546238
+ - 1.7031763110097309
+ - 1.637702626710151
+ - 0.8663696327926608
+ - -0.29010689877226714
+ - -1.314178408540118
+ - -1.909415580723992
+ - -2.3752285733543537
+ - -1.387476353742527
+ - 0.8547385897216566
+ - 1.9005417245364362
+ - 1.7598614115293314
+ - 1.5123792549028994
+ - 0.7559044843864108
+ - 0.6492880913841458
+ - 0.024570336368903916
+ - -1.5431389381191984
+ - -1.9607287936403293
+ - -0.7023352265744988
+ - 0.46115854404238665
+ - 1.4304768209308814
+ - 1.7701300564112203
+ - 1.3464561409789757
+ - 0.46625511842102374
+ - 0.39527738966513104
+ - 0.09165061782091538
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.269764013726378
+ - -4.571643705142636
+ - -1.8529790489509792
+ - -0.9355506881521837
+ - 0.3885221350818333
+ - 1.544529967917304
+ - 2.0287934777851575
+ - 1.8382578442066326
+ - 2.103992354547304
+ - 1.0726205262137132
+ - -1.866906624821162
+ - -2.789946264363925
+ - -1.6992524974511058
+ - -0.6412628006822411
+ - 0.6436442873533149
+ - 1.1280496524530266
+ - 1.1142004951580935
+ - 0.8479837131171449
+ - 0.6203548091745849
+ - -0.5862889594064633
+ - -1.667084267807724
+ - -2.033805630378278
+ - -1.5024751130640939
+ - -0.3286729557325143
+ - 0.969036800189009
+ - 1.5060121589537088
+ - 1.297582252642004
+ - 0.6089428446344041
+ - 0.19279805153332036
+ - -0.8866474192863473
+ - -1.82987359005091
+ - -2.171722016971397
+ - -2.6498433680665583
+ - -1.5243789634937164
+ - 1.4649391510216005
+ - 2.597214741376195
+ - 2.002508604035303
+ - 1.360734704408151
+ - 0.13019562513867883
+ - -1.1613320000378322
+ - -1.944970701687578
+ - -2.0854079903211242
+ - -2.7592470659771173
+ - -1.340200387758451
+ - 1.427696634258382
+ - 1.5590221319443998
+ - 1.1529685319751488
+ - 1.1558400838477592
+ - -0.27496665291156064
+ - -1.4660817368835224
+ - -2.030155810405389
+ - -1.6983381314385972
+ - -0.6385158803152894
+ - 0.6478094580173673
+ - 1.156368388800323
+ - 1.158205345117602
+ - 0.8578043679356843
+ - 0.6290683287961669
+ - -0.590004324915992
+ - -1.670139645741408
+ - -2.2039475534367234
+ - -2.695603444272888
+ - -1.5110316539297903
+ - 1.1451851978679157
+ - 2.369623481142208
+ - 2.0310866845435838
+ - 1.5804845199744915
+ - 0.4471755124524594
+ - -0.8869742796633182
+ - -1.8309121702513202
+ - -2.171773512399589
+ - -2.600107943191545
+ - -1.3777522466792258
+ - 1.3242497809413414
+ - 2.5524309241594803
+ - 2.0038606027782895
+ - 1.361499946986538
+ - 0.256040388494142
+ - -0.05054092807171903
+ - -0.5136559015848702
+ - -1.4946980739598665
+ - -1.6838682028194556
+ - -0.2430612296013685
+ - 1.0629833648006397
+ - 1.9161038118995957
+ - 1.9245587822361296
+ - 1.1054851191005761
+ - -0.09389808616485477
+ - -0.8653966967957777
+ - -0.8426738312619473
+ - -2.4277397130118397
+ - -3.1415581771724774
+ - -0.42760083966067375
+ - 0.8992966321624224
+ - 1.843875065469768
+ - 1.9759712901676074
+ - 1.2576158596419877
+ - 0.10909995693817749
+ - -0.23734502708870292
+ - -0.6353446393623806
+ - -1.4124241584345494
+ - -1.5311030111130686
+ - -0.10825817531482483
+ - 1.1753525257647428
+ - 2.080579106001747
+ - 2.665853390032655
+ - 1.6656333486289219
+ - -0.6607980384755826
+ - -1.7704928663388197
+ - -1.9149527345072315
+ - -1.9205062259082464
+ - -1.0986301018152667
+ - 0.21120904640780885
+ - 1.4215456493226266
+ - 2.1692047914149217
+ - 2.7199621750522547
+ - 1.6188330144126515
+ - -0.8962210006073342
+ - -2.076067239852822
+ - -1.9988371838731518
+ - -1.7943776581991933
+ - -0.9870598597057252
+ - -0.9068929302009145
+ - -0.12080884094835309
+ - 1.718751976660202
+ - 2.322068143367309
+ - 0.9160057157640762
+ - -0.4094762377992511
+ - -1.5636742562351773
+ - -2.029840882531667
+ - -1.620179773202268
+ - -0.6623165144781605
+ - -0.5394698755423998
+ - 0.21613953299261834
+ - 2.0216568263800214
+ - 1.9851259791460922
+ - -0.48304068370207626
+ - -1.6378324294288578
+ - -1.791254621363586
+ - -1.9917829243714753
+ - -1.3349582082376825
+ - -0.08615802576530089
+ - 1.191400607020819
+ - 2.084253468852867
+ - 2.7174053229687574
+ - 1.7977606928847263
+ - -0.7901112545734306
+ - -1.8249883415822266
+ - -1.9194210047948332
+ - -1.9102633992604576
+ - -1.2617440876845785
+ - -1.2552091102489007
+ - -0.2963619029867499
+ - 1.6548673131839384
+ - 2.465694539946306
+ - 1.2135854673930033
+ - 1.9617387655935974
+ - 1.8675775335822047
+ - 0.9475621649501782
+ - -0.373760080991095
+ - -1.5851160286402457
+ - -2.1883388834118156
+ - -1.5793121401845056
+ - -0.04157855607604565
+ - 0.7440520708611215
+ - 1.4562885499319518
+ - 2.020784715302364
+ - 1.9156105899039557
+ - 2.222523080902759
+ - 1.1759258405933326
+ - -1.836775717389301
+ - -2.7932393777927733
+ - -1.7688282330238387
+ - -0.7659934267538365
+ - 0.5707651021219081
+ - 1.6589299555092265
+ - 2.026613923044223
+ - 1.7188710698348126
+ - 3.1340611510334875
+ - 2.0964701387738027
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.1862471141538165
+ - -3.2513763192406273
+ - -1.9688023741440726
+ - -1.8524290429548418
+ - -0.9374820896548915
+ - 0.3944418723060664
+ - 1.54794006053841
+ - 2.195709961880558
+ - 2.791942642734501
+ - 1.8192387117497153
+ - -1.2280164160951228
+ - -2.28137237372232
+ - -2.0239697942078996
+ - -1.6999635035987015
+ - -0.8032983279710337
+ - -0.6530827644217219
+ - 0.09965377394391381
+ - 1.5602509810822236
+ - 2.1321472687804284
+ - 0.7469363642026269
+ - -0.5891178349844247
+ - -1.6765336838107738
+ - -2.02584470836491
+ - -1.5018146847016811
+ - -0.4679868848793265
+ - -0.22600665915254506
+ - 0.363096033314626
+ - 1.4450212745274702
+ - 1.8371306650161139
+ - 0.43902108953126057
+ - -0.8880865785918052
+ - -1.933452829028099
+ - -2.5881090750437585
+ - -1.797439612109756
+ - 0.49373012469661165
+ - 1.4335189890557773
+ - 1.7782957335406548
+ - 2.0026810404762654
+ - 1.3650784659275508
+ - 0.12224171069721447
+ - -1.164909350087871
+ - -2.0763499320859586
+ - -3.006583471623162
+ - -1.8284210134425816
+ - 0.2134533369917665
+ - 0.40403573137559157
+ - 1.7897114823980036
+ - 2.675079083652515
+ - 1.0326519446464932
+ - -0.2787452702508105
+ - -1.475137177069364
+ - -2.022752321008516
+ - -1.697044911874951
+ - -0.7983676703100617
+ - -0.6574748946701556
+ - 0.04859053660830651
+ - 1.6596284885178572
+ - 2.1703177919719727
+ - 0.7433122171372903
+ - -0.5920904033647142
+ - -1.7449047213479436
+ - -2.354580012359225
+ - -1.6315244000177147
+ - 0.14193245544141722
+ - 1.0272791636682843
+ - 1.6036035895865184
+ - 2.0309697573232057
+ - 1.5849380945372369
+ - 0.43702035417601814
+ - -0.8911792623989357
+ - -1.9359552157975561
+ - -2.541455828255388
+ - -1.6697768278860803
+ - 0.4044818818513427
+ - 1.4140081677133982
+ - 1.7814481637081838
+ - 2.004237695492773
+ - 1.5589119797668078
+ - 1.6941101551556306
+ - 0.735847126290601
+ - -1.9065016926394829
+ - -2.7050810847989823
+ - -1.441648963979369
+ - -0.2392450807405867
+ - 1.0709008806562055
+ - 1.9112928656379125
+ - 1.9243391902302613
+ - 1.2921310589973944
+ - 2.127244592927653
+ - 1.3360049449372278
+ - -3.317066014351454
+ - -4.554458991121415
+ - -1.5672501823050136
+ - -0.42371256962392845
+ - 0.9068134369069183
+ - 1.8401807553520457
+ - 1.9761616463503346
+ - 1.4509384321045544
+ - 1.5413014840892592
+ - 0.616220216314295
+ - -1.9025783882718095
+ - -2.652195991927982
+ - -1.3436618110803251
+ - -0.10619881883161796
+ - 1.1812082837315003
+ - 1.7469721548080341
+ - 1.4066503715001213
+ - 0.43491697073548474
+ - -0.10604325497037215
+ - -1.0824720620462274
+ - -1.9162326070521118
+ - -1.9276171449257544
+ - -1.0868943041216814
+ - 0.21555997659804768
+ - 1.4608887409895077
+ - 2.055743068157097
+ - 1.5323825988444153
+ - 0.17332070461007432
+ - -0.5358665415664369
+ - -1.3413188331716541
+ - -1.9999679180985306
+ - -1.9970034812124875
+ - -2.3386119575223807
+ - -1.2131904518404586
+ - 1.6941373444132442
+ - 2.7645499487827627
+ - 1.8433324542760012
+ - 0.9124411066022748
+ - -0.4151822840116181
+ - -1.5629706005953183
+ - -2.031145728077286
+ - -1.8234868972885647
+ - -2.3017247411357262
+ - -0.9605681240836409
+ - 1.7641574665057547
+ - 1.8530039374058154
+ - 0.718649519099127
+ - 0.33434154016148815
+ - -0.8119930120087008
+ - -1.7908883424536115
+ - -2.0019929035410047
+ - -1.3286632817459814
+ - -0.08854215064236443
+ - 1.1957156169231113
+ - 1.7975269394213582
+ - 1.4901140840342957
+ - 0.3911257588593115
+ - -0.13144953486962566
+ - -1.0961254086407763
+ - -1.9196753118239058
+ - -2.1104059918593356
+ - -2.4844775826699927
+ - -1.2559112927968417
+ - 1.4321618365724904
+ - 2.64150985508486
+ - 1.946829938404733
+ - 1.2162606599872403
+ - 1.9718377177575315
+ - 1.8578390907253732
+ - 0.9458106683452147
+ - -0.2940563394509441
+ - -0.7124306985259509
+ - -0.8980466125578632
+ - -1.0708861038882538
+ - -1.0419862877268358
+ - 0.2635415961063576
+ - 1.4580436512073556
+ - 2.178530872391357
+ - 2.795145647272271
+ - 1.8536830470941512
+ - -1.127318094622445
+ - -2.167864235202756
+ - -2.006489445366818
+ - -1.7681518939500083
+ - -0.7670742600304954
+ - 0.5758868252394644
+ - 1.6623368125324238
+ - 2.203908006095873
+ - 4.552905565826584
+ - 3.248572612092006
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.15610845546507013
+ - -0.5242900108048276
+ - -1.23586417954335
+ - -1.973461172417373
+ - -1.8636518912509588
+ - -0.9296803798153264
+ - 0.39781749529145277
+ - 1.6073564395877942
+ - 2.2780536776928804
+ - 1.7837480275080706
+ - -0.057303854478181475
+ - -0.7871042153107234
+ - -1.4768422774993033
+ - -2.029059520242904
+ - -1.9086911009767293
+ - -2.1585895337476133
+ - -0.9613224668319027
+ - 1.6019933362062582
+ - 2.729470945285921
+ - 1.7625342198127203
+ - 0.7466023858009113
+ - -0.5949495997772125
+ - -1.6772353067090071
+ - -2.031202960969627
+ - -1.7080487512830456
+ - -1.8664339726313692
+ - -0.731172138638168
+ - 1.6606955009090552
+ - 2.6946875615071844
+ - 1.5798422724500154
+ - 0.43993895956015355
+ - -0.8604646018174605
+ - -1.4099008491432974
+ - -1.296183277614719
+ - -0.693728894912737
+ - -0.3524183864247999
+ - 0.7863315372345256
+ - 1.7830424906765903
+ - 2.0153918210318764
+ - 1.35745447172486
+ - 0.12023585668632378
+ - -1.1717196015510194
+ - -1.958006864321033
+ - -1.5296925013894307
+ - -1.0969807402622136
+ - -0.9291393651587118
+ - 1.6567059893543088
+ - 3.0457079943328327
+ - 1.8993275530806455
+ - 1.0328513592798312
+ - -0.2819960469641412
+ - -1.4758447879079875
+ - -2.027226839569779
+ - -1.9051206274374735
+ - -2.1939121082475
+ - -1.0857529285966316
+ - 1.7483713276577335
+ - 2.780736636570168
+ - 1.7605665485603632
+ - 0.7449945791203211
+ - -0.5317146928675821
+ - -0.9968539226529133
+ - -1.0487397872259596
+ - -0.9259464617200278
+ - -0.7626977104423985
+ - 0.48302491111883433
+ - 1.6070159848566798
+ - 2.042975330544942
+ - 1.577025965558873
+ - 0.43611816953008037
+ - -0.8643482705992911
+ - -1.3864622463903615
+ - -1.2426106434813906
+ - -0.6928676930862627
+ - -0.3381532352264974
+ - 0.7899317474051692
+ - 1.7847221881576227
+ - 2.193844713665141
+ - 2.7140115893239583
+ - 1.6722217621327207
+ - -1.497421199444036
+ - -2.5630531010527937
+ - -2.0225192312769327
+ - -1.4427114476691938
+ - -0.2390605495772233
+ - 1.073630119734477
+ - 1.91600000918178
+ - 2.1255679695137046
+ - 4.212565463638346
+ - 2.9458630516354596
+ - -2.778749417880152
+ - -4.007809937758306
+ - -2.034808053845973
+ - -1.5684687331086737
+ - -0.42454660690424895
+ - 0.9102483351093519
+ - 1.8448209075208886
+ - 2.1715390290385286
+ - 2.6612202724746448
+ - 1.606259673404146
+ - -1.5738055949296308
+ - -2.633195275971634
+ - -2.003734966282161
+ - -1.3463018853717312
+ - -0.23068133404175686
+ - 0.07148907258759869
+ - 0.5400913836217986
+ - 1.3467734844096746
+ - 1.6098005374292448
+ - 0.2197149436759409
+ - -1.0854631858171908
+ - -1.9280294499655994
+ - -1.9206260433443487
+ - -1.0874968812603119
+ - 0.12007456264780512
+ - 0.5026112466852858
+ - 0.7847117609373745
+ - 1.1717433420707115
+ - 1.240691086595357
+ - -0.10304666502094251
+ - -1.3436581172919941
+ - -2.1490598489752695
+ - -2.7665406359667943
+ - -1.7860286840694386
+ - 0.9387472770587072
+ - 2.0161671264444574
+ - 1.9787703965768955
+ - 1.8453103275661924
+ - 0.9162834379375203
+ - -0.42039661354277136
+ - -1.5674624974038536
+ - -2.2021225654263636
+ - -3.0772215849898386
+ - -1.7269762512618834
+ - 0.7448923800327198
+ - 0.9212220556609291
+ - 1.614466227559843
+ - 2.1690153958675524
+ - 0.5208137114267584
+ - -0.8168908425897625
+ - -1.807823285375457
+ - -2.0023310757335966
+ - -1.3346464534815843
+ - -0.21156003182928582
+ - 0.09924162195559762
+ - 0.5387284422490135
+ - 1.4076827816424609
+ - 1.624540382386751
+ - 0.20273269363524507
+ - -1.1011547201128387
+ - -2.0517232003556125
+ - -2.6463546151106923
+ - -1.677039317096838
+ - 0.5910011443877272
+ - 1.6786307008546566
+ - 1.8880415993781678
+ - 1.955687659965718
+ - 1.2259886739625967
+ - 1.969915434875336
+ - 1.8619321172072678
+ - 1.1282195743808725
+ - 1.075769455934852
+ - 0.17286695157678353
+ - -1.641812657287567
+ - -2.384679161786586
+ - -1.0469263857351372
+ - 0.26452826329148527
+ - 1.5027344866773522
+ - 2.1641562805072
+ - 1.73424010328988
+ - 0.0707688866373292
+ - -0.6053552675330236
+ - -1.3795497032348565
+ - -2.01110168969757
+ - -1.778616785074532
+ - -0.7592210081427134
+ - 0.5798478318944393
+ - 1.7400376921724066
+ - 4.012894413596494
+ - 3.0034706643950515
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.9479638562515957
+ - 2.4408574715991023
+ - 0.043969991888141005
+ - -1.2244295127347833
+ - -1.970202863960728
+ - -1.8470956371325276
+ - -0.9306378242650601
+ - 0.30862795485507005
+ - 0.7581778416982067
+ - 0.9614717083030706
+ - 1.1416138126628064
+ - 1.0580484268519652
+ - -0.2770039897904934
+ - -1.4640922064645412
+ - -2.175051403486145
+ - -2.715852586516604
+ - -1.6009767276118516
+ - 0.9373040434466565
+ - 2.124500515225366
+ - 2.003335532964312
+ - 1.7563882776626856
+ - 0.7517377400418828
+ - -0.588030646832106
+ - -1.666083299549585
+ - -2.1979067294432464
+ - -2.6878076247997904
+ - -1.5057075342788029
+ - 1.1444819979249454
+ - 2.3659404333142144
+ - 2.0267538049706024
+ - 1.5772614403175111
+ - 0.5947069627147543
+ - 0.39307539434775
+ - -0.22200766942077033
+ - -1.5782021283602454
+ - -1.987399510201941
+ - -0.5549178134193573
+ - 0.7764676832636905
+ - 1.7784731043702953
+ - 1.9970726242622607
+ - 1.3555711468602885
+ - 0.25194691603621877
+ - -0.043254153157595565
+ - -0.5555660602510284
+ - -1.926887536913138
+ - -1.8558684718967255
+ - 0.7926999714490293
+ - 2.074004559833096
+ - 1.9305001704947433
+ - 1.8922072522056599
+ - 1.0385040573097026
+ - -0.2766665563455739
+ - -1.4641564591285232
+ - -2.1744164439670977
+ - -2.7665999926159883
+ - -1.7440792478491027
+ - 1.0662419648465702
+ - 2.1662837942176334
+ - 2.0038932486725995
+ - 1.7568570156661545
+ - 0.919019771627329
+ - 0.8039215951675668
+ - -0.001963182296546172
+ - -1.5881221853313072
+ - -2.2207777098978125
+ - -0.8533921360934189
+ - 0.4732492387245931
+ - 1.6011345234390102
+ - 2.024361129969384
+ - 1.57439501401923
+ - 0.5911522614424572
+ - 0.3829045810750338
+ - -0.2663373316588163
+ - -1.4873853182041146
+ - -1.9455642700813685
+ - -0.5524567634235977
+ - 0.7775306054732893
+ - 1.8628050602694672
+ - 2.539496497583673
+ - 1.8734305035674852
+ - -0.4268997048604882
+ - -1.2902739934910967
+ - -1.7128417581712176
+ - -2.0129028275732574
+ - -1.4468680121269921
+ - -0.23964025377415474
+ - 1.0626145912698701
+ - 2.0236410694229825
+ - 4.445237014698558
+ - 3.260526568076714
+ - -1.0135638713148973
+ - -1.6922264256506594
+ - -1.6061161710025287
+ - -2.0243399128822586
+ - -1.5719996884306384
+ - -0.4234664007770447
+ - 0.8995188146680756
+ - 1.9362207192827434
+ - 2.6102570249782877
+ - 1.8903606897907408
+ - -0.5501043123168683
+ - -1.4528178094611652
+ - -1.7817440070076171
+ - -1.9957423972203163
+ - -1.5443678008001867
+ - -1.6397195699389613
+ - -0.5668381571563698
+ - 1.6669377334883226
+ - 2.6199603832191167
+ - 1.428260800209964
+ - 0.22611570363841252
+ - -1.0781145491517057
+ - -1.9093792323106158
+ - -1.9141902664747912
+ - -1.277055050174341
+ - -1.276080496583314
+ - -0.3109176976728186
+ - 1.6558832980944893
+ - 2.474506055201793
+ - 1.1837742027295242
+ - -0.09310379376268911
+ - -1.3536872405431966
+ - -1.9754032799068684
+ - -1.5725994300735524
+ - -0.23255660364264286
+ - 0.37671269908973176
+ - 1.2418404207733271
+ - 1.9666671884747524
+ - 1.8469677323687623
+ - 0.9104494572783537
+ - -0.4113125682782071
+ - -1.6104940803822758
+ - -2.497504420766029
+ - -1.7336446139652304
+ - -0.6054502001518218
+ - -0.4191858735918918
+ - 1.8004876559709067
+ - 3.0516697897242406
+ - 1.6272595849157436
+ - 0.5198246037227067
+ - -0.8158519979756357
+ - -1.7945864982071589
+ - -1.9952433442560664
+ - -1.5290536931166165
+ - -1.6470654795245714
+ - -0.6526393359800136
+ - 1.805946593263857
+ - 2.6684459981604474
+ - 1.41543057275774
+ - 0.20506615815066737
+ - -1.0880098809548666
+ - -1.6415039910705949
+ - -1.3595869476811586
+ - -0.5129194880226454
+ - -0.02699807315921725
+ - 0.9964121094052527
+ - 1.8795511535150533
+ - 1.9563130213343913
+ - 1.2134689181922897
+ - 1.9591687107672595
+ - 2.056470629477685
+ - 2.393993795101377
+ - 1.1702216414311344
+ - -1.4900707191325566
+ - -2.6790073880941048
+ - -1.8989429628429704
+ - -1.04864291157901
+ - 0.16248492008792798
+ - 0.5771176820126381
+ - 0.8496353318952218
+ - 1.240644398045104
+ - 1.2280512702703108
+ - -0.14260811360618803
+ - -1.367692726753341
+ - -2.0082587877114983
+ - -1.7628282395563464
+ - -0.7610868967300941
+ - 0.5075858434417716
+ - 1.7017189995722843
+ - 1.4331216806399587
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.2010149449922096
+ - 4.337720655890723
+ - 1.2973519607553043
+ - 0.04735336916181189
+ - -1.2278986681649688
+ - -1.9638920120302368
+ - -1.8506193933742718
+ - -1.1153415911624656
+ - -1.0791847748363654
+ - -0.26991494339866806
+ - 1.841987429881423
+ - 2.4368362964958585
+ - 1.0350414167484545
+ - -0.27210968324658275
+ - -1.5034237900188423
+ - -2.100589943822585
+ - -1.5476051562856596
+ - -0.12701630765112393
+ - 0.608425290445309
+ - 1.380227328215296
+ - 2.00406361945109
+ - 1.7668647201337413
+ - 0.7479369782468926
+ - -0.5858120682436402
+ - -1.7386221638001143
+ - -2.347174243734828
+ - -1.6274383591549013
+ - 0.1385700693296399
+ - 1.0205204584539913
+ - 1.5984627361252544
+ - 2.0288412866613306
+ - 1.785287004200684
+ - 2.0162245519940787
+ - 0.9414359785856369
+ - -1.7780152475872038
+ - -2.757134690690832
+ - -1.6493757419115211
+ - -0.5584838033612588
+ - 0.7772636624621426
+ - 1.773135720252692
+ - 2.0000313262428406
+ - 1.5587755920193849
+ - 1.8788673750360898
+ - 0.6520230008842118
+ - -1.9223359055343645
+ - -1.9781455743137824
+ - -0.4075088914794074
+ - 0.21509115439586998
+ - 1.1303533038922309
+ - 1.931862103615681
+ - 1.9041376381135637
+ - 1.0345772091754095
+ - -0.27403252816818763
+ - -1.505981259317456
+ - -2.1448232954991813
+ - -1.6476615921963627
+ - -0.07092780533517042
+ - 0.6227927460111926
+ - 1.3830563310152606
+ - 2.0063970862889615
+ - 1.9655639511767529
+ - 2.2480018466586755
+ - 1.0395066502691865
+ - -1.562674084026865
+ - -2.7141841219232865
+ - -1.814544944915735
+ - -0.8576020970982086
+ - 0.47255474579577894
+ - 1.5975195698904914
+ - 2.028161251904329
+ - 1.7835906878324803
+ - 1.9770210614768504
+ - 0.8188645240110659
+ - -1.6368705979573686
+ - -2.705910150693731
+ - -1.6491068974775098
+ - -0.5584921461693053
+ - 0.731717337911563
+ - 1.2726775765157599
+ - 1.2668912974310766
+ - 0.8211236766843754
+ - 0.5305275897166049
+ - -0.6675546049684625
+ - -1.713132213582488
+ - -2.0246588992277896
+ - -1.4420200566664823
+ - -0.2432427457764552
+ - 1.051076044347886
+ - 2.7627438388737446
+ - 2.1695899544564874
+ - 1.1776184649439168
+ - 1.3383051324609276
+ - -0.48846199063467655
+ - -1.6059953194394017
+ - -2.0359183056076606
+ - -1.5670284135506596
+ - -0.42749737527440385
+ - 0.8686836752598076
+ - 1.435798863798424
+ - 1.3589351374886596
+ - 0.7044168539461897
+ - 0.34610535686957744
+ - -0.7939632810018507
+ - -1.7821408125709073
+ - -2.1854393990693644
+ - -2.6349267861986667
+ - -1.423221746176958
+ - 1.2675554274135057
+ - 2.496217922239224
+ - 2.0147971807261715
+ - 1.4326367623013774
+ - 0.23096681835034183
+ - -1.0761569497497787
+ - -1.9119117639672054
+ - -2.1161644022811954
+ - -2.494928900976859
+ - -1.2662484507675371
+ - 1.4242738951278255
+ - 2.6357274313606025
+ - 1.9533840109550251
+ - 1.1901847673284205
+ - 0.01981413455378565
+ - -0.3384449423520777
+ - -0.6833733450509493
+ - -1.2968542374747956
+ - -1.4152926274369553
+ - -0.025408106833173332
+ - 1.2406038194095508
+ - 1.9770119890898563
+ - 1.8414993427946587
+ - 0.9151252344763215
+ - -0.32897684958818607
+ - -0.8459444308077367
+ - -0.9938899659744822
+ - -1.687192246094615
+ - -1.5712439410733887
+ - 1.2102544775970367
+ - 2.6153082751533607
+ - 2.0266197188094255
+ - 1.6248838907418954
+ - 0.5215373817820762
+ - -0.8154412602456188
+ - -1.7929484777539348
+ - -2.180501946694686
+ - -2.67399868191852
+ - -1.5560254475941748
+ - 1.4243565666192133
+ - 2.5573756615290257
+ - 2.0116168892442063
+ - 1.4153235403559592
+ - 0.3384599505312492
+ - 0.06415711161061499
+ - -0.4586590781096608
+ - -1.3895251636800554
+ - -1.7109795546802526
+ - -0.3189625245714525
+ - 0.9946618331491885
+ - 1.8848318395733077
+ - 1.9442620749282875
+ - 1.2123558840240236
+ - 2.093898092485695
+ - 2.6737898062697236
+ - 1.6579013024286284
+ - -0.6977006884555608
+ - -1.8182181636618657
+ - -1.928402461529545
+ - -1.9026253136097135
+ - -1.2398426504506808
+ - -1.2490606579757915
+ - -0.39556362733436967
+ - 1.8695108161345102
+ - 2.521971909829141
+ - 1.1484610370156547
+ - -0.13923324933425676
+ - -1.37193736641731
+ - -2.00158792762841
+ - -1.7664714433782815
+ - -0.9361537618936339
+ - -1.3285163539100224
+ - -0.7450009645578997
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.6822188974291703
+ - 5.217441181873483
+ - 2.3458475717234166
+ - 1.48916998383642
+ - -0.012444549745357258
+ - -1.5127401870357102
+ - -2.352675839847098
+ - -2.4133272101969085
+ - -2.8611850010708264
+ - -1.5992067533504264
+ - 2.0952104598954278
+ - 3.2895521880324545
+ - 2.2288113171854302
+ - 1.1734905866817031
+ - -0.2868262908644534
+ - -0.7706789662296545
+ - -1.0256211738403385
+ - -1.307608679917366
+ - -1.3083486368014356
+ - 0.25586212570015593
+ - 1.6907794510854315
+ - 2.4027870613990427
+ - 2.054592001677052
+ - 0.8253252149325768
+ - -0.695069265067463
+ - -1.2582235256060683
+ - -1.2821354303423964
+ - -1.0542504164453257
+ - -0.8236140932457168
+ - 0.6321295200680198
+ - 1.9416056256197407
+ - 2.6165778506203115
+ - 3.2739395143522936
+ - 1.9929646443851015
+ - -1.4772553402043285
+ - -2.81723474344414
+ - -2.411102012227003
+ - -1.9203968701516798
+ - -0.6003809073386219
+ - 0.9887268346610041
+ - 2.142183276180726
+ - 2.5906018055423976
+ - 3.5197467745805695
+ - 1.8402765372061718
+ - -1.3446453524213404
+ - -1.529026374268127
+ - -1.6601316567936855
+ - -1.977021705229061
+ - -0.12226767691437097
+ - 1.401941588975137
+ - 2.3280373103364806
+ - 2.2275661214500073
+ - 1.1700127877949977
+ - -0.29227860780548215
+ - -0.7942882693003768
+ - -1.0466010371167842
+ - -1.3516207659631552
+ - -1.329644843804662
+ - 0.2604507841045428
+ - 1.6945510160088253
+ - 2.5782752688017156
+ - 3.2316953776958046
+ - 1.9221935798376808
+ - -1.068169919094851
+ - -2.470732944700879
+ - -2.3744771707578876
+ - -2.1257413287406512
+ - -0.9601567282252973
+ - 0.6331299020894557
+ - 1.9436278615390379
+ - 2.6175129520847387
+ - 3.213173646575932
+ - 1.8173247598868494
+ - -1.3205304935382811
+ - -2.770508087334821
+ - -2.4134233069529794
+ - -1.9216297424218642
+ - -0.7810447906202955
+ - -0.5565677337218546
+ - 0.19524640278050673
+ - 2.005308213448414
+ - 2.456961634969146
+ - 0.7278764777979118
+ - -0.8597779540861544
+ - -2.083151071454617
+ - -2.389044842255362
+ - -1.6657303694055485
+ - -0.37531815335872015
+ - 0.013899362179586178
+ - 0.2745914056071426
+ - 3.3353516647196324
+ - 4.409059142871459
+ - 0.9364793721627286
+ - -0.6488069097610161
+ - -1.9606993956633803
+ - -2.409489632024595
+ - -1.8193349975882136
+ - -0.6121159291353061
+ - -0.3362913012364075
+ - 0.34586989867843565
+ - 1.9307944052860695
+ - 2.3024150313422904
+ - 0.5732804531758133
+ - -1.006883316356019
+ - -2.2684929616230463
+ - -2.989528724809695
+ - -1.9797540335276533
+ - 0.43286255009138147
+ - 1.6111746884802283
+ - 2.086236280632644
+ - 2.387197497036087
+ - 1.6608013240519621
+ - 0.1981900912145667
+ - -1.339926954897448
+ - -2.4465579024299373
+ - -3.147243533688927
+ - -1.9828008474791223
+ - 0.7349736537538271
+ - 2.0353608582328566
+ - 2.252691357329075
+ - 2.304830513921133
+ - 1.586278070803372
+ - 1.636312542709495
+ - 0.5381122639567311
+ - -2.1290345254583123
+ - -3.0452718999468424
+ - -1.468569331323832
+ - 0.0399583583856178
+ - 1.5371193459790402
+ - 2.3589435807114305
+ - 2.1610827564141886
+ - 1.236057130691076
+ - 1.2966650975905056
+ - 0.1489571456976007
+ - -2.4231005314927083
+ - -2.422178543152256
+ - 0.17414309387440377
+ - 1.336920935670219
+ - 1.8802672546850632
+ - 2.406040793988488
+ - 1.8972433666581254
+ - 0.5483136043052724
+ - -1.0274151910524079
+ - -2.2769098424625467
+ - -3.0532956390208086
+ - -2.1268157160800247
+ - 0.5633374142361064
+ - 1.6686283604398302
+ - 2.095055592401811
+ - 2.3793173800675422
+ - 1.8706663071048621
+ - 1.9976669223247252
+ - 0.709302122114689
+ - -1.979243891332209
+ - -3.129239167059132
+ - -1.7297955267338077
+ - -0.31456399169770727
+ - 1.241689351071464
+ - 2.253369179490845
+ - 2.2894961145114596
+ - 1.5581705871617828
+ - 2.197829883173316
+ - 1.7224566939955488
+ - 0.41717227952983765
+ - -0.2913230511953951
+ - -1.3878402068871747
+ - -2.313640680567876
+ - -2.4759752005612508
+ - -2.967666736874722
+ - -1.7032478291998059
+ - 2.032679527465124
+ - 3.252179410676329
+ - 2.2844402693527655
+ - 1.3085540576337285
+ - -0.2349152920259959
+ - -1.6788344634292791
+ - -2.3913556543287675
+ - -2.310133867085463
+ - -4.40184613215341
+ - -3.0166192380116565
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.3487709715250746
+ - 3.4025010836010856
+ - 1.7755051941326783
+ - 1.4191748889015368
+ - 0.4500067441104991
+ - -0.7207929056350059
+ - -1.573919624128683
+ - -1.9091046157307945
+ - -2.3548746662626376
+ - -1.4416138094069204
+ - 1.328723029569716
+ - 2.257396845910411
+ - 1.7612680604610256
+ - 1.2347588843716326
+ - 0.2889092173837974
+ - 0.046702540601630343
+ - -0.40737568082584463
+ - -1.2140006761987983
+ - -1.491435489107228
+ - -0.2724339101791732
+ - 0.8774786306625653
+ - 1.653788460920332
+ - 1.7011811935421413
+ - 1.0168279568483
+ - -0.016532727921106737
+ - -0.33097811584259756
+ - -0.6248635093458841
+ - -1.0694508329700427
+ - -1.178742302110412
+ - 0.008535403288368548
+ - 1.1101931324450447
+ - 1.8531569573727276
+ - 2.400592741814845
+ - 1.5689055366089382
+ - -0.7564902010845246
+ - -1.681109870575385
+ - -1.7060192908050216
+ - -1.6429721706930112
+ - -0.8718018990451132
+ - 0.28691480975271777
+ - 1.3145829073916346
+ - 1.9133194821601482
+ - 2.6894702163933633
+ - 1.53046358169917
+ - -0.5742236463480215
+ - -0.7311450505637204
+ - -1.4486327266142076
+ - -1.988681811953343
+ - -0.5432960390718636
+ - 0.6259279284836314
+ - 1.5300074491518685
+ - 1.7602416034900903
+ - 1.2321265353100788
+ - 0.28461038090363366
+ - 0.04056427469322179
+ - -0.38997279585165545
+ - -1.2775747458999867
+ - -1.5173914659799619
+ - -0.2690706549582973
+ - 0.8802403510787887
+ - 1.7483651309667982
+ - 2.2726192854629232
+ - 1.4637139369429646
+ - -0.4427636333274479
+ - -1.3629110005656402
+ - -1.6085305654230988
+ - -1.7285740216417909
+ - -1.1043203820276906
+ - 0.009855451752074735
+ - 1.1124010678589014
+ - 1.8546981356219723
+ - 2.3567072650376257
+ - 1.4455394322117152
+ - -0.6583644323288458
+ - -1.6552961818947713
+ - -1.708360452883053
+ - -1.6441583681311558
+ - -1.0289977741693264
+ - -1.0159301655296593
+ - -0.2882814876657259
+ - 1.6260856971241306
+ - 2.1712552157671374
+ - 0.953550257365935
+ - -0.18506134918720338
+ - -1.2483532788427072
+ - -1.7627557221941796
+ - -1.5158426717313913
+ - -0.7576506728052195
+ - -1.0261107443893402
+ - -0.5513703374850528
+ - 2.775390529937279
+ - 3.751017616508478
+ - 1.0874576860165328
+ - -0.021794111035908916
+ - -1.12595544107398
+ - -1.735448451724395
+ - -1.5947367917358557
+ - -0.9175234045087668
+ - -0.8647485897370264
+ - -0.17756841366278292
+ - 1.5980958910097016
+ - 2.091515126321266
+ - 0.8519340878359264
+ - -0.30104671088557344
+ - -1.3667051736305063
+ - -1.893351527179321
+ - -1.3748787925213255
+ - -0.059240815885078395
+ - 0.6154826656460954
+ - 1.2550412026728974
+ - 1.7645036741594187
+ - 1.5157048905307027
+ - 0.5961661264172279
+ - -0.5735929182692351
+ - -1.564596882817607
+ - -2.098216376238986
+ - -1.4368822167299637
+ - 0.1733171926759786
+ - 0.9723136832206172
+ - 1.4387718213547176
+ - 1.7762487324098124
+ - 1.5232423171686276
+ - 1.7063238909553882
+ - 0.7763870980081926
+ - -1.5664767450839956
+ - -2.406045921355923
+ - -1.4075531441205522
+ - -0.4282374470643685
+ - 0.7393813797221525
+ - 1.5833992311551919
+ - 1.7410325186106563
+ - 1.3165302968440165
+ - 1.5695311711348041
+ - 0.517703940800572
+ - -1.7033683076418924
+ - -1.7461059285447156
+ - -0.28733492666103977
+ - 0.30602855485046426
+ - 1.0518398543089897
+ - 1.7103507575195567
+ - 1.6345318661840982
+ - 0.8359236683721142
+ - -0.31679271383458685
+ - -1.3766843913337186
+ - -1.9401812386922155
+ - -1.4668185510531944
+ - 0.007663605968453378
+ - 0.6479115927633354
+ - 1.264747537598084
+ - 1.7634143602765855
+ - 1.6777714016043608
+ - 1.9035325486350587
+ - 0.8570269724545916
+ - -1.3870651242270378
+ - -2.375815576550624
+ - -1.5491723591648372
+ - -0.6777986544372265
+ - 0.48898657796028383
+ - 1.442857330989124
+ - 1.770041952655027
+ - 1.5073813428195466
+ - 1.653970844148968
+ - 1.0382951205882232
+ - 0.6650755607636761
+ - 0.4030160743126801
+ - -0.6136224482313877
+ - -1.5166839478409095
+ - -1.9227125629602921
+ - -2.393707639142793
+ - -1.4947327724782848
+ - 1.258026718169748
+ - 2.1893001898018523
+ - 1.7722722911203608
+ - 1.3150934749348477
+ - 0.28952762986205416
+ - -0.8668836242686986
+ - -1.642906283505177
+ - -1.8769495957190447
+ - -3.747741278970519
+ - -2.6306052187110267
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.120349748911616
+ - 3.1704615842147117
+ - 1.973474525500278
+ - 1.9042132682570012
+ - 1.0142474787490974
+ - -0.32655993133256467
+ - -1.5180701619398191
+ - -2.2143112728651237
+ - -2.8292850788608894
+ - -1.8610731476623665
+ - 1.189219674014671
+ - 2.249091085294001
+ - 2.0408362528218893
+ - 1.7602306439429896
+ - 0.8873007366311866
+ - 0.7568437678756746
+ - -0.04003924997070332
+ - -1.6003480128669774
+ - -2.21852014519217
+ - -0.8243306550202645
+ - 0.5252578000849386
+ - 1.6537730623976805
+ - 2.0543610447608383
+ - 1.5690073568457505
+ - 0.5517692655402175
+ - 0.3273486188304795
+ - -0.30789179393298044
+ - -1.4925057041655443
+ - -1.9315949701701018
+ - -0.516303886477057
+ - 0.831889306020339
+ - 1.917393667088024
+ - 2.5817006010151906
+ - 1.8115205040129994
+ - -0.4362317017406422
+ - -1.3637199426237006
+ - -1.7632281285317895
+ - -2.0381776614932767
+ - -1.4360389935848663
+ - -0.19739491221772779
+ - 1.1178999846335296
+ - 2.0735806810057453
+ - 3.0178502911963023
+ - 1.8550877339037541
+ - -0.14200484873568572
+ - -0.3358572754554828
+ - -1.8251320011540768
+ - -2.7613036556433825
+ - -1.1082368918578114
+ - 0.20880414901994757
+ - 1.4409924743640175
+ - 2.0396014062656316
+ - 1.7573046432065256
+ - 0.8823298069947179
+ - 0.763146513555379
+ - 0.016544058440508786
+ - -1.7048725159523583
+ - -2.2583778115655737
+ - -0.8207150436658016
+ - 0.5282240624675798
+ - 1.7161015773734964
+ - 2.3320405319295805
+ - 1.6368327269205658
+ - -0.0829359193539777
+ - -0.9474504018464026
+ - -1.576804184856138
+ - -2.055202556329322
+ - -1.6499661211953134
+ - -0.5142066486764718
+ - 0.8351024406969767
+ - 1.9200402661822435
+ - 2.5352793593087077
+ - 1.6851083800530264
+ - -0.3500973174176748
+ - -1.345718918417922
+ - -1.7664844719473891
+ - -2.039779093654124
+ - -1.633651503601324
+ - -1.7946113434004465
+ - -0.8083428976385973
+ - 1.9286030987659042
+ - 2.7620667179431244
+ - 1.510398619982294
+ - 0.3153670992369944
+ - -1.0201737106625033
+ - -1.9084546132130242
+ - -1.9702978145947458
+ - -1.372034985694178
+ - -2.3004387957873864
+ - -1.4623401778988396
+ - 3.3656503647866645
+ - 4.632408801571241
+ - 1.6324066624957718
+ - 0.500854908534967
+ - -0.8508768427964742
+ - -1.8302338971311263
+ - -2.016179834026644
+ - -1.5280790346009776
+ - -1.6439604016797795
+ - -0.6889660885813933
+ - 1.9292785121727867
+ - 2.715094907241532
+ - 1.4146759644556868
+ - 0.18125140866678696
+ - -1.1271859188609368
+ - -1.6911989178610238
+ - -1.389945624994775
+ - -0.4987175340990415
+ - 0.008310251365089442
+ - 1.0324776879723736
+ - 1.913918158516263
+ - 1.974164000713631
+ - 1.1618623433351245
+ - -0.14459416967404756
+ - -1.4177681780167672
+ - -2.0145676796147116
+ - -1.525658632293404
+ - -0.23586645406811121
+ - 0.444960144354844
+ - 1.3013075349158993
+ - 2.0098692279921857
+ - 2.054088340179226
+ - 2.420065428002938
+ - 1.2759572255219438
+ - -1.690867425691213
+ - -2.787516567094007
+ - -1.8957377744379607
+ - -0.9889936381256902
+ - 0.3473745770563912
+ - 1.5339059780709974
+ - 2.0530596356573825
+ - 1.8896289420484556
+ - 2.4026013559688915
+ - 1.0285525773521131
+ - -1.7471542479331237
+ - -1.8432581486288868
+ - -0.7883595777179234
+ - -0.4496437650192645
+ - 0.7536840756315365
+ - 1.7771755636639477
+ - 2.038960397533229
+ - 1.4001100651746767
+ - 0.16351913459981404
+ - -1.1423162626744103
+ - -1.7416465545216657
+ - -1.470466822746248
+ - -0.45998918933717786
+ - 0.031984048309680976
+ - 1.0466586206139197
+ - 1.9181629696782585
+ - 2.15791099729973
+ - 2.5538997335290228
+ - 1.310840692390092
+ - -1.417558527959433
+ - -2.6489831747910015
+ - -1.9903811646176552
+ - -1.2453825030323349
+ - 0.03908153040605935
+ - 1.3098455703229985
+ - 2.0090134906824875
+ - 2.042516003368603
+ - 2.3586997024226393
+ - 1.1246386673892825
+ - 1.1301070449435469
+ - 1.1456163076403105
+ - -0.19330000470771888
+ - -1.4234683862548572
+ - -2.1916077876321465
+ - -2.825722047563513
+ - -1.891440465525327
+ - 1.0844936022952376
+ - 2.128857467429173
+ - 2.018269392207455
+ - 1.8250278455296698
+ - 0.844717370917742
+ - -0.5117420662451155
+ - -1.6391831793698608
+ - -2.229985366628438
+ - -4.631211514426307
+ - -3.3126486636383676
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.8374668761682624
+ - -3.7511709915892495
+ - -0.7979497939039248
+ - 0.5498433849406879
+ - 1.6659641482317504
+ - 2.0487302855832303
+ - 1.5480947849940134
+ - 0.5224090611274234
+ - 0.2884603675480877
+ - -0.2923393705759202
+ - -1.642553520139908
+ - -1.9594376309034363
+ - -0.48923803123891163
+ - 0.8543940293264278
+ - 1.9277549903236852
+ - 2.540872669495474
+ - 1.6831265443758185
+ - -0.3665323659114584
+ - -1.3677299683696145
+ - -1.772865079510495
+ - -2.029959982596171
+ - -1.4134412066623159
+ - -0.1703682616476971
+ - 1.137705546033987
+ - 2.0794454543121224
+ - 2.675347576420022
+ - 1.6859636868699373
+ - -0.6234693147208276
+ - -1.7286123143589143
+ - -1.9146589308739232
+ - -1.9602161011216994
+ - -1.3503226844137755
+ - -1.3934500115395714
+ - -0.45913360281046084
+ - 1.8104011212791966
+ - 2.5901849038624807
+ - 1.2501145508072664
+ - -0.03210844354373552
+ - -1.3054702759890986
+ - -2.0052791233665204
+ - -1.8382691697529856
+ - -1.0527686216301633
+ - -1.1051187044466064
+ - -0.1282423404739459
+ - 2.061515184351279
+ - 2.06141132918148
+ - -0.13021641635140727
+ - -1.1082544995781685
+ - -1.5887789896227247
+ - -2.050845223092202
+ - -1.631093023312322
+ - -0.4891176696729784
+ - 0.855577017421725
+ - 1.928984552620122
+ - 2.5913294987184012
+ - 1.8106424533282197
+ - -0.4610197515817813
+ - -1.3960671078859475
+ - -1.7748202588221431
+ - -2.031577789966027
+ - -1.6114659957353563
+ - -1.726309743828565
+ - -0.6217932378411167
+ - 1.6860825498115708
+ - 2.6746552137823696
+ - 1.4900068169632976
+ - 0.29026765102090607
+ - -1.0391874232219727
+ - -1.9129621602084588
+ - -1.9584522440801513
+ - -1.3476258344361687
+ - -1.3651607392541336
+ - -0.3647717009565173
+ - 1.68296101530902
+ - 2.5397362434617623
+ - 1.248791021168488
+ - -0.032604167082859334
+ - -1.3180075116258083
+ - -1.9616254050096222
+ - -1.643624495537032
+ - -0.2903049245853979
+ - 0.291486536063226
+ - 1.2087540418351193
+ - 1.9768100708583762
+ - 1.8961331591616464
+ - 0.9770138771451211
+ - -0.3560807215102187
+ - -1.585272433057767
+ - -3.7541988487849016
+ - -2.8394143882483323
+ - -0.22682680020850945
+ - -0.0026038728284640475
+ - 1.0510695443837965
+ - 1.918029909186011
+ - 1.9619684375805462
+ - 1.1387068822107491
+ - -0.16868435085643757
+ - -1.4347275591392135
+ - -2.092759997758653
+ - -1.7067586412806386
+ - -0.16220840139248993
+ - 0.47872392499111605
+ - 1.3170177254265194
+ - 2.0100461877059566
+ - 2.0384913546404335
+ - 2.3527848812338914
+ - 1.120264431097747
+ - -1.546511268912929
+ - -2.7325904806922106
+ - -1.8814385287314543
+ - -0.965006162005445
+ - 0.37075388045387003
+ - 1.5463402483475241
+ - 2.0492740595801413
+ - 1.8707598401258172
+ - 2.0971998992698904
+ - 0.9053768165169416
+ - -1.6351723913426204
+ - -2.7474748769763857
+ - -1.7291946533340834
+ - -0.6690198355498972
+ - 0.6273803908077298
+ - 1.1355887221063823
+ - 1.152004274035777
+ - 0.8867054908287358
+ - 0.6699450578311855
+ - -0.5712121962265376
+ - -1.6719057327375477
+ - -2.056527487091848
+ - -1.5330978124795598
+ - -0.3539777290065986
+ - 0.9575971355596286
+ - 1.686160163725777
+ - 1.4140714038797906
+ - 1.2966315631929894
+ - 1.1392129597317224
+ - -1.575250307023948
+ - -3.007796603603535
+ - -1.982493698246967
+ - -1.218870726648914
+ - 0.07284135215841864
+ - 1.3359494642139613
+ - 2.016284794311592
+ - 2.0283018311326244
+ - 2.3796623546699327
+ - 1.2403380270636664
+ - -1.7060870918116664
+ - -2.792123215401701
+ - -1.8734745930000953
+ - -0.9446933145117957
+ - 0.31103418764697227
+ - 0.7367328325616407
+ - 0.9167990742837491
+ - 1.0746170323215385
+ - 1.0377191480359047
+ - -0.27945814868811997
+ - -1.4834361558461524
+ - -2.0529437280089153
+ - -1.716504614260356
+ - -0.6442748132358845
+ - 0.6565177998061433
+ - 1.1475757090260756
+ - 1.1304089933800747
+ - 1.121614746259398
+ - 2.3543170769696546
+ - 2.051953192997178
+ - 1.6349749165458878
+ - 0.6660037110874705
+ - 0.4757257528764576
+ - -0.164258714929156
+ - -1.7058063268166663
+ - -2.090717358810568
+ - -0.6206474284559662
+ - 0.729273151037304
+ - 1.770222979749142
+ - 2.0315189155592677
+ - 1.417618100299479
+ - 0.3211105875314554
+ - -0.0077437733649566975
+ - -0.23046262661925296
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.769594858911565
+ - -3.743272955142895
+ - -1.085668223375348
+ - 0.020945352390077148
+ - 1.1228284585783845
+ - 1.731417990093811
+ - 1.5915388152587502
+ - 0.9162408984866461
+ - 0.8638353242485929
+ - 0.1779214577573469
+ - -1.5947534185465315
+ - -2.087417937063268
+ - -0.8507394503153226
+ - 0.29958776219705296
+ - 1.363056902873011
+ - 1.888504515101608
+ - 1.3715924193775413
+ - 0.059770974015915544
+ - -0.6130931008078067
+ - -1.2516850412878016
+ - -1.7604858686745488
+ - -1.512752946299132
+ - -0.5955932318643276
+ - 0.5715591259787426
+ - 1.5606144751643753
+ - 2.0930562401391484
+ - 1.4335597676536442
+ - -0.17227208578497724
+ - -0.9691865527041424
+ - -1.4351033226381387
+ - -1.772330201768183
+ - -1.520380098282204
+ - -1.7032876747707402
+ - -0.7752807787839352
+ - 1.562896797187783
+ - 2.4008347649924233
+ - 1.4049066515830633
+ - 0.4280610811278651
+ - -0.7370052234475816
+ - -1.5795153044952708
+ - -1.7373169228734693
+ - -1.3142728544455538
+ - -1.5670159778573785
+ - -0.5170944231114212
+ - 1.700653761858995
+ - 1.743755158488611
+ - 0.30117068504637057
+ - -0.2821006904775978
+ - -1.0393999725338048
+ - -1.706896437704616
+ - -1.6415640444195272
+ - -0.8503671312787912
+ - 0.3011974528515715
+ - 1.3651596381302271
+ - 1.9279497607002953
+ - 1.4622252484524003
+ - 0.006558767772764262
+ - -0.6271556734180533
+ - -1.2540732934340708
+ - -1.7624571508255364
+ - -1.6869613499704905
+ - -1.917155480509682
+ - -0.8680553814774127
+ - 1.3835418304832532
+ - 2.3764905100631704
+ - 1.5575947599613114
+ - 0.6928521378575346
+ - -0.4737623267675216
+ - -1.4341960388719925
+ - -1.7716191844710532
+ - -1.5187867573124911
+ - -1.6700432588379253
+ - -0.6707232586411433
+ - 1.4405315760696928
+ - 2.355983808245118
+ - 1.4045605419026452
+ - 0.42801645746201816
+ - -0.703131547258149
+ - -1.1883515189586205
+ - -1.1506126840868596
+ - -0.6646788303657438
+ - -0.37933131280176036
+ - 0.6421368857703377
+ - 1.5301855111908407
+ - 1.7623941053149412
+ - 1.2161552599657621
+ - 0.15064851682131603
+ - -0.9777932142884951
+ - -2.526946013999532
+ - -1.9730375868687113
+ - -0.9334254461947131
+ - -1.0340957491823402
+ - 0.4872938328666357
+ - 1.4412739725844177
+ - 1.7779795101985532
+ - 1.329637918998697
+ - 0.31258752711119026
+ - -0.8211479049770078
+ - -1.3280802677178327
+ - -1.2283200913086714
+ - -0.5611215103928494
+ - -0.21727827838615033
+ - 0.7511126313287054
+ - 1.5869705386075836
+ - 1.901488131140315
+ - 2.281591044773971
+ - 1.2166209093230846
+ - -1.1409659499372895
+ - -2.2141777565845486
+ - -1.753238575468729
+ - -1.2076507991186802
+ - -0.1396303385798969
+ - 0.9930953176343126
+ - 1.6913204285389967
+ - 1.8304260397552576
+ - 2.1467057727603143
+ - 1.0728797032391038
+ - -1.2713037240885585
+ - -2.3235031446388374
+ - -1.6898695842899827
+ - -0.9893935701725248
+ - 0.05033140037387212
+ - 0.38025019285360934
+ - 0.6484196529785445
+ - 1.0945680520149041
+ - 1.1633832453150168
+ - -0.0401338424246484
+ - -1.1332646864085494
+ - -1.7423679539963923
+ - -1.5829248515872247
+ - -0.7439546865254224
+ - 0.3543151374402573
+ - 0.8298878657548308
+ - 0.9157073946106091
+ - 1.4389861953072083
+ - 1.332948547484425
+ - -1.0997082325038903
+ - -2.3349652182150944
+ - -1.7729440844296134
+ - -1.3827184771180103
+ - -0.3952577960712926
+ - 0.7696852444725161
+ - 1.5959720102746902
+ - 1.8966083468002268
+ - 2.3145873776461667
+ - 1.3317717141335454
+ - -1.2787870892323905
+ - -2.267649328015731
+ - -1.7499490401624855
+ - -1.192151179121703
+ - -0.22891417755912744
+ - 0.02751834196763721
+ - 0.45022486906640413
+ - 1.185815635368062
+ - 1.430274270963413
+ - 0.21715684956934422
+ - -0.9235614580899435
+ - -1.6707857043772343
+ - -1.6814965654796676
+ - -0.9691694054608407
+ - 0.07649934705704571
+ - 0.4036258412088457
+ - 0.6646461934295057
+ - 1.0359141227349224
+ - 1.6508589288889475
+ - 1.7043397323115237
+ - 1.6408024065837885
+ - 1.0274385964543016
+ - 1.0146531470995055
+ - 0.2883816686892013
+ - -1.6226325628774252
+ - -2.166918055249925
+ - -0.952102260351137
+ - 0.18385383552924148
+ - 1.2450042500598184
+ - 1.758736868424394
+ - 1.5128850189409884
+ - 0.7567600976757949
+ - 1.0254515596978666
+ - 0.551392981889527
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.1347476703974264
+ - -4.4324322142923736
+ - -1.9622538888185874
+ - -1.209237101183721
+ - 0.06770228546983409
+ - 1.3182707932568039
+ - 1.9937477850919607
+ - 2.008407884291933
+ - 2.3697142097320696
+ - 1.3088694072059248
+ - -1.7846598624422625
+ - -2.7806216104481196
+ - -1.8550839817712743
+ - -0.9383803854724153
+ - 0.3030257222697512
+ - 0.7232233470204646
+ - 0.9039125310374996
+ - 1.0658141289536525
+ - 1.0319046392420541
+ - -0.2721483702628035
+ - -1.4644609292012836
+ - -2.030435511959714
+ - -1.7004003271186932
+ - -0.6414620823952512
+ - 0.644955099855751
+ - 1.1299631356062956
+ - 1.1155718778588026
+ - 0.8479974283161281
+ - 0.6196771038081925
+ - -0.5873641638644187
+ - -1.6689269435105305
+ - -2.2045838634244768
+ - -2.7482315238240407
+ - -1.6595307566017155
+ - 1.280787730356075
+ - 2.4128252918099085
+ - 2.0316619809409273
+ - 1.582742506474177
+ - 0.4501538273229774
+ - -0.8845906626833498
+ - -1.830149426506104
+ - -2.1729007572996992
+ - -2.941020807234652
+ - -1.5221914621062562
+ - 1.1800739522450348
+ - 1.332139221974214
+ - 1.3647054349041257
+ - 1.5923406632997839
+ - 0.04606435837898225
+ - -1.2269615180836453
+ - -1.976289134987752
+ - -1.8540518067051908
+ - -0.9354706166172231
+ - 0.3075622804035281
+ - 0.7444289003951312
+ - 0.9256119168657371
+ - 1.0988561800028227
+ - 1.0484926419214673
+ - -0.27599738127277873
+ - -1.4676265408806914
+ - -2.1819962446440253
+ - -2.7248665430298753
+ - -1.6067694950195432
+ - 0.9391057713973007
+ - 2.12995433030651
+ - 2.0097258517792524
+ - 1.7632151605292288
+ - 0.7560612840482942
+ - -0.5881286097188334
+ - -1.6705324431243882
+ - -2.205261007749334
+ - -2.69713859823647
+ - -1.5114173416545222
+ - 1.1471343194130266
+ - 2.3725446461072432
+ - 2.0335306668426467
+ - 1.5837430308392695
+ - 0.5987259432904718
+ - 0.3913973599734972
+ - -0.21769838273766945
+ - -1.663890730342587
+ - -2.016334442077967
+ - -0.5586417980742155
+ - 0.7772592682809367
+ - 1.783456446493387
+ - 2.0040541269949625
+ - 1.3615367609488198
+ - 0.254887704969413
+ - -0.14089709817819274
+ - -0.32436389724099934
+ - -2.7586589482247956
+ - -3.636471104095088
+ - -0.736123116217583
+ - 0.6012335261651708
+ - 1.6847334277176627
+ - 2.026489992635129
+ - 1.4946829023843708
+ - 0.4553766772504989
+ - 0.20520221080239737
+ - -0.34410169474741814
+ - -1.598017389025053
+ - -1.882415536854736
+ - -0.42740549599216865
+ - 0.8997299003217952
+ - 1.9412256545147768
+ - 2.546737312100847
+ - 1.671429393551491
+ - -0.41032498252605687
+ - -1.4230314070405203
+ - -1.7854945143264813
+ - -2.0021166293616677
+ - -1.3569654499206514
+ - -0.11014286226274171
+ - 1.1757601659568522
+ - 2.082302819534852
+ - 2.6680025604105806
+ - 1.666533864379494
+ - -0.6625469778489204
+ - -1.7733916778498175
+ - -1.9175294789677753
+ - -1.923979105012299
+ - -1.2866531690956668
+ - -1.3103971002781432
+ - -0.4040899138637902
+ - 1.7864958035176641
+ - 2.5346923957341296
+ - 1.1915093189331638
+ - -0.09059931458965875
+ - -1.338644804270726
+ - -1.9983999785623803
+ - -1.794561122688731
+ - -0.9864224533857261
+ - -1.0112891510861264
+ - -0.0740978323085511
+ - 2.0431616180899925
+ - 2.0369737939289565
+ - -0.19793607424541862
+ - -1.206327146367975
+ - -1.6191042455966342
+ - -2.026410606522466
+ - -1.5622409971274438
+ - -0.4061607997230564
+ - 0.9168787702176008
+ - 1.947815533750635
+ - 2.600256145399385
+ - 1.7968582444765635
+ - -0.5234353515748799
+ - -1.4724683092346655
+ - -1.792492953327533
+ - -1.9949165876933335
+ - -1.5321099461162697
+ - -1.6221754441171283
+ - -0.5533870474757032
+ - 1.6694351299849512
+ - 2.6166245493032525
+ - 1.4170159523562949
+ - 0.20828952693618372
+ - -1.0948654027075675
+ - -1.9176518313050004
+ - -1.9104781776107835
+ - -1.2624676731556073
+ - -1.2560283266244443
+ - -0.29654239984541114
+ - 1.6559807530777721
+ - 2.4673447718158377
+ - 1.215369413643347
+ - 1.9645489261422813
+ - 2.0650272677299686
+ - 2.463991345578144
+ - 1.3990919102341746
+ - -1.7352675807165014
+ - -2.7543235653040634
+ - -1.9054944856078624
+ - -1.0540863732792005
+ - 0.2547804984619466
+ - 1.4546636514569975
+ - 2.0211500832980587
+ - 1.9163576542964986
+ - 3.6301653976215076
+ - 2.480016738760639
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.7668258388409992
+ - -2.701315315512296
+ - -1.8673530668090648
+ - -1.961450191534645
+ - -1.2108194237302736
+ - 0.07716446369049872
+ - 1.3234289121605205
+ - 2.14034531734713
+ - 2.7806239126853742
+ - 1.8873743103572376
+ - -0.9847548435251042
+ - -2.001138693991857
+ - -1.9717263802316938
+ - -1.855006243021506
+ - -1.1161551039841744
+ - -1.0604933438940958
+ - -0.1637405869157818
+ - 1.6368917787914108
+ - 2.373155310862355
+ - 1.0347560656278363
+ - -0.2771652945877672
+ - -1.4747605561088
+ - -2.023751711727724
+ - -1.6989819099959644
+ - -0.8006035405986599
+ - -0.6493517785780181
+ - 0.10246738667951688
+ - 1.560651750816985
+ - 2.1312783965483697
+ - 0.7453793984683074
+ - -0.5907429234440864
+ - -1.7447328688961827
+ - -2.400589419389144
+ - -1.7471677074744256
+ - 0.215130427714852
+ - 1.0437919638302615
+ - 1.6034378648333105
+ - 2.032138948128348
+ - 1.5869526858376133
+ - 0.438985980937088
+ - -0.8901122408045645
+ - -1.9361498572701965
+ - -2.8694915869130506
+ - -1.8305449935175673
+ - -0.10803919288073839
+ - 0.08488278110461048
+ - 1.8319969831145808
+ - 2.8819112700938128
+ - 1.2950160860270044
+ - 0.04027392629376156
+ - -1.2366882108758463
+ - -1.9705108397366624
+ - -1.852237172778011
+ - -1.1113593020574553
+ - -1.0728730108782298
+ - -0.23547315778868858
+ - 1.7523365807683569
+ - 2.4162469824669066
+ - 1.031396956892289
+ - -0.27991919866720794
+ - -1.5128311676321653
+ - -2.1118834042639363
+ - -1.553655016137313
+ - -0.12141108184937532
+ - 0.619319325631217
+ - 1.3889033580782522
+ - 2.010088246032336
+ - 1.767630175001466
+ - 0.7430880535560338
+ - -0.5941494971694667
+ - -1.747689928822694
+ - -2.357814206284248
+ - -1.6327832108287343
+ - 0.14482937065718707
+ - 1.0319708521832323
+ - 1.6068377858838194
+ - 2.033793540573508
+ - 1.7851204128778393
+ - 2.0231461515143514
+ - 1.0032149071576795
+ - -1.8841017526896442
+ - -2.78387889097556
+ - -1.6492524296555908
+ - -0.5529398735813956
+ - 0.785859387002514
+ - 1.7809901034086018
+ - 2.0037763930268273
+ - 1.5571048945742132
+ - 2.7433378866239155
+ - 1.7986681732744088
+ - -3.321833327086405
+ - -4.609545175571728
+ - -1.7515932696895933
+ - -0.7304146944415504
+ - 0.6094226195179285
+ - 1.6835904821494534
+ - 2.026768157433441
+ - 1.6941793997837409
+ - 1.8890894424351488
+ - 0.89205494505349
+ - -1.900266372661586
+ - -2.7597832029647518
+ - -1.5670906779436222
+ - -0.42349636904157856
+ - 0.8751315357153497
+ - 1.3983829517699684
+ - 1.2476770028825195
+ - 0.6833495567770236
+ - 0.32225428831842917
+ - -0.7998807190911543
+ - -1.7878792130079242
+ - -2.0093994998588816
+ - -1.343246413808006
+ - -0.10398272498526252
+ - 1.1845889182200915
+ - 1.7510958002161912
+ - 1.4087229305847044
+ - 0.43250387923803535
+ - -0.11046844624675675
+ - -1.0858165090444585
+ - -1.919165170364302
+ - -2.119974362395772
+ - -2.545640600363578
+ - -1.4090878823484498
+ - 1.575384142929341
+ - 2.6929180630807528
+ - 1.955600660225566
+ - 1.186407023417903
+ - -0.09693205142186637
+ - -1.3410014258656076
+ - -2.000252024942414
+ - -1.9962569829082915
+ - -2.594856369371043
+ - -1.1945862918704073
+ - 1.5818155717955267
+ - 1.6964924497854872
+ - 0.9750585680845255
+ - 0.8112681004735712
+ - -0.5102208919416376
+ - -1.6210966007337702
+ - -2.0378438445242715
+ - -1.5548854616323144
+ - -0.4066054599606379
+ - 0.8914208000718296
+ - 1.4453368612761663
+ - 1.3132815627184744
+ - 0.6641115107872904
+ - 0.30589649038735534
+ - -0.814956007110472
+ - -1.79455844628516
+ - -2.185026818346317
+ - -2.630578373363177
+ - -1.4153512823604997
+ - 1.2806772786166187
+ - 2.5105696409335243
+ - 2.0144940731519134
+ - 1.4187501558860969
+ - 0.20942508582052746
+ - -1.0958506778608463
+ - -1.9213037451656731
+ - -2.1119825952906957
+ - -2.486023368805801
+ - -1.2558941637600878
+ - 1.4352526288174694
+ - 2.6458250010419295
+ - 1.9496090949464986
+ - 1.2187792574820806
+ - 2.1003824045117017
+ - 2.7544262964993798
+ - 1.9021003075509422
+ - -0.8728870888889292
+ - -1.8656092928269934
+ - -1.933373912853384
+ - -1.9043528438370219
+ - -1.0547246334925826
+ - 0.2635278938651369
+ - 1.4597330907631572
+ - 2.180289331201815
+ - 4.60960295122275
+ - 3.324398403103455
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.3238136578102455
+ - 0.08260335058223701
+ - -1.2041935301813165
+ - -2.240107933877904
+ - -2.3148893526628984
+ - -1.3665465514552129
+ - 0.1630604416952574
+ - 1.6558003003750519
+ - 2.4253093408965074
+ - 1.9891724547833192
+ - 0.22339051904803814
+ - -0.5145529475189663
+ - -1.5197435140124456
+ - -2.353490516441223
+ - -2.409360141551612
+ - -2.7875410402770346
+ - -1.337347601089879
+ - 1.8045680260558157
+ - 3.203874894223711
+ - 2.2236007991220297
+ - 1.164335716117205
+ - -0.4006967540582997
+ - -1.792953922996858
+ - -2.4050903294920336
+ - -2.217710451643874
+ - -2.4934520675269276
+ - -1.0877452315326257
+ - 1.9130410382058
+ - 3.228837988479963
+ - 2.0497361380921806
+ - 0.8189672488370883
+ - -0.7001969042540239
+ - -1.2897487840590465
+ - -1.328663221687545
+ - -1.068699439749356
+ - -0.8334118077712919
+ - 0.6370657485886134
+ - 1.943145882762548
+ - 2.4170848295878233
+ - 1.823834014711277
+ - 0.45034869210210343
+ - -1.090172644871167
+ - -1.9354979952543419
+ - -1.639952485119634
+ - -1.5505660024076877
+ - -1.368161104470973
+ - 1.8229226158493188
+ - 3.502391683082137
+ - 2.3402329699292004
+ - 1.4790235434587975
+ - -0.022764637747675457
+ - -1.5186776209792523
+ - -2.351704120544174
+ - -2.4056924050066457
+ - -2.834694382679884
+ - -1.4947378607704802
+ - 1.980064809241176
+ - 3.2645118641333024
+ - 2.2218008109404845
+ - 1.1628709048695305
+ - -0.29753931162068686
+ - -0.7830166725409382
+ - -1.0314839744311888
+ - -1.299418771677008
+ - -1.2939395053164922
+ - 0.26575466123710245
+ - 1.6957976576938076
+ - 2.40074969845699
+ - 2.0463785567177704
+ - 0.8145108099797742
+ - -0.7048849652797137
+ - -1.269196979626459
+ - -1.2868570489316424
+ - -1.0455996524287587
+ - -0.8091439894213598
+ - 0.6412090334608174
+ - 1.9450590340553087
+ - 2.613184394886816
+ - 3.290361387528011
+ - 2.1029847872583303
+ - -1.5767032326908272
+ - -2.835866302677151
+ - -2.4080110259805316
+ - -1.9115295808170991
+ - -0.5895373416421807
+ - 0.9967565410416471
+ - 2.1439699665979104
+ - 2.585470513463277
+ - 5.230512879207772
+ - 3.6949560139184485
+ - -2.9801144051741497
+ - -4.354682912065657
+ - -2.393941685090463
+ - -2.0379618262799832
+ - -0.8025456377787079
+ - 0.7910935732947412
+ - 2.0340309725381025
+ - 2.609244777242614
+ - 3.2558006821551877
+ - 2.042285824941279
+ - -1.6819814962654898
+ - -2.9446491878641217
+ - -2.4064273364021074
+ - -1.8125434757056516
+ - -0.6051892986685506
+ - -0.3314905329675836
+ - 0.39206872814420335
+ - 1.7324444658578848
+ - 2.2245315471871323
+ - 0.5659616280577355
+ - -1.0117047158843955
+ - -2.159594370879942
+ - -2.355996826532154
+ - -1.5381318607122163
+ - -0.19486816677235627
+ - 0.18144000140386862
+ - 0.695258269934114
+ - 1.5576643440996203
+ - 1.8260211843568528
+ - 0.18875320686368072
+ - -1.34374884199223
+ - -2.4444088377278557
+ - -3.203785339364625
+ - -2.1411564826332095
+ - 0.8658882822017977
+ - 2.074378575116752
+ - 2.249593336122557
+ - 2.295991661676923
+ - 1.3533433714468652
+ - -0.19020586503082568
+ - -1.641739652712056
+ - -2.5594989383837596
+ - -3.637140739447908
+ - -2.122562616565181
+ - 0.5839471446288514
+ - 0.8029339591740549
+ - 2.0283331272442395
+ - 2.88006589176542
+ - 0.9107221166836116
+ - -0.6757079494579077
+ - -1.9771558797428133
+ - -2.408193468177484
+ - -1.8009634254653446
+ - -0.5826330979353228
+ - -0.30599323048785876
+ - 0.3697056583087231
+ - 1.8263832823475585
+ - 2.250900044832731
+ - 0.5461163296906941
+ - -1.032288844954435
+ - -2.2836191600399527
+ - -3.00381586330569
+ - -1.9818156208662228
+ - 0.4553311148672159
+ - 1.6436350469752057
+ - 2.100262592972658
+ - 2.3831576056602453
+ - 1.6403642324649412
+ - 0.17035081827509796
+ - -1.3631553610531233
+ - -2.457328547476721
+ - -3.1558628583721866
+ - -1.9811989980411817
+ - 0.7563613074236395
+ - 2.0644545435806916
+ - 2.262723179781861
+ - 2.2964836727825384
+ - 1.5621380418639281
+ - 2.268972840279152
+ - 1.9130965032919922
+ - 0.3735591498575974
+ - -0.2942230742173602
+ - -1.3911652131952243
+ - -2.3122147015183088
+ - -2.2406170987367617
+ - -1.1783194803348187
+ - 0.38355724568975974
+ - 1.8349861308224593
+ - 4.362007269091843
+ - 3.3038376933353346
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.0593714469193554
+ - 1.1869390693968394
+ - -0.5027585734621597
+ - -1.5512397350772462
+ - -1.9354363168174489
+ - -1.4651137683712883
+ - -0.36797726049604346
+ - 0.8653591473996038
+ - 1.4118800484768639
+ - 1.3181476723556529
+ - 0.6354680464188109
+ - 0.27525569248806564
+ - -0.7912986312693587
+ - -1.7135484709245694
+ - -2.0731063660582665
+ - -2.492539139002713
+ - -1.3363566128101594
+ - 1.2264987326082668
+ - 2.3946637093288103
+ - 1.9113756444084722
+ - 1.334431034448442
+ - 0.18030533819724476
+ - -1.0567414994267676
+ - -1.8312342481033999
+ - -2.0005688654190172
+ - -2.3514640856036375
+ - -1.18292101514528
+ - 1.3713547108403055
+ - 2.519372920621158
+ - 1.8468358198386163
+ - 1.0998187727230266
+ - -0.023945978828811974
+ - -0.3753235893320676
+ - -0.6822962781240015
+ - -1.2088287779555473
+ - -1.2995049112240116
+ - 0.015264419003608065
+ - 1.2108958155230876
+ - 1.8894492980011661
+ - 1.7346330141515693
+ - 0.8350271032697176
+ - -0.35511433286751376
+ - -0.8618083023353601
+ - -0.9749185461680537
+ - -1.5827379298147668
+ - -1.4699510902620612
+ - 1.1662864451215085
+ - 2.500623824119847
+ - 1.927730416504801
+ - 1.5352822388047191
+ - 0.47983505068768645
+ - -0.7906757272545433
+ - -1.7128023885618595
+ - -2.0712115530034163
+ - -2.536965854514073
+ - -1.472261940757802
+ - 1.3635952473342563
+ - 2.4407277774953124
+ - 1.9108551273669163
+ - 1.3340162213185756
+ - 0.304037393281803
+ - 0.03871012944416858
+ - -0.4493372559850777
+ - -1.3138056214706058
+ - -1.6097658919248534
+ - -0.2869063220230502
+ - 0.9603773014238381
+ - 1.7987189827100112
+ - 1.8442459878560922
+ - 1.096531332903961
+ - -0.02765985640886145
+ - -0.37118499218949
+ - -0.685026521708061
+ - -1.1559595971100955
+ - -1.269230781022935
+ - 0.018226371186104103
+ - 1.2122287973562957
+ - 2.014466199162267
+ - 2.627961775294652
+ - 1.7976809519047285
+ - -0.8867472208370419
+ - -1.841281512235349
+ - -1.8545535900683405
+ - -1.780222383629287
+ - -0.9385907644109999
+ - 0.32030725234434754
+ - 1.4331384309359085
+ - 2.0782644049462724
+ - 4.370091058390907
+ - 3.143866585861456
+ - -1.7735012912858965
+ - -2.691101495565011
+ - -1.798108432521996
+ - -1.8405781635579377
+ - -1.0901990865012843
+ - 0.14421236815604913
+ - 1.3084335414064459
+ - 2.047374452389806
+ - 2.646306037874171
+ - 1.7792762164157525
+ - -0.9906140224280446
+ - -1.9652234634536978
+ - -1.8863575821671303
+ - -1.7290965827327909
+ - -0.9913733291934413
+ - -0.9173546830431838
+ - -0.09686340382259422
+ - 1.5392213118403901
+ - 2.2025627577156945
+ - 0.9195679244196301
+ - -0.3331837073136039
+ - -1.4472400457781074
+ - -1.924624488901924
+ - -1.5713453113753342
+ - -0.6869392146467004
+ - -0.5228883968489133
+ - 0.15562564879571592
+ - 1.4580269594760782
+ - 1.9607270799126222
+ - 0.6402927344537443
+ - -0.6280665844933122
+ - -1.7010090446738444
+ - -2.3243142494113673
+ - -1.6724106661333533
+ - 0.26675543649712946
+ - 1.0794325832560963
+ - 1.5635738354767683
+ - 1.9255536332505652
+ - 1.4593136188325988
+ - 0.346655741063139
+ - -0.9076695880072083
+ - -1.8721451334807202
+ - -2.758914303246195
+ - -1.7402727897406607
+ - -0.03165687804559973
+ - 0.15137923699845493
+ - 1.730830153044842
+ - 2.691121631389831
+ - 1.1632838854189058
+ - -0.04861241105703479
+ - -1.2442533708455088
+ - -1.893182214827103
+ - -1.7238276693725365
+ - -0.9743436061921001
+ - -0.9097293416242609
+ - -0.14704671512455084
+ - 1.6456108720739515
+ - 2.2368892026779412
+ - 0.9048877980416338
+ - -0.3520585126124226
+ - -1.5058232995724834
+ - -2.0799245257437917
+ - -1.5026908848351632
+ - -0.04393447731625485
+ - 0.7017993050490186
+ - 1.3829184057584192
+ - 1.9223662569984232
+ - 1.6356522779695972
+ - 0.6250731240884833
+ - -0.6475553690508227
+ - -1.7178185321756947
+ - -2.2983202646137575
+ - -1.5669923728039976
+ - 0.20892469912602152
+ - 1.0882025154394135
+ - 1.5797889871180033
+ - 1.9312130284000784
+ - 1.6404629610919101
+ - 1.8393964814817358
+ - 1.2323365446876349
+ - 0.747449178930524
+ - 0.4512074070135349
+ - -0.6720248803838174
+ - -1.650145811967522
+ - -1.9210943955435937
+ - -1.3435470691544489
+ - -0.19216608792861084
+ - 1.037078667745697
+ - 2.6987621256780647
+ - 2.1120840929218856
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.005350450677859
+ - 2.4553050570560417
+ - -0.1701080769159366
+ - -1.6225583610290781
+ - -2.3815640463433625
+ - -2.089875991105229
+ - -0.9015705501553547
+ - 0.6029597940716773
+ - 1.1892698659879086
+ - 1.3150125653498268
+ - 1.1812297416840047
+ - 0.9664793194803192
+ - -0.5471509460336872
+ - -1.8823571909835128
+ - -2.603189357795736
+ - -3.211176505810194
+ - -1.8385864267004737
+ - 1.2580290396482152
+ - 2.6938872389563646
+ - 2.3984649297921177
+ - 1.9632256627918931
+ - 0.6804382646037672
+ - -0.9067202750239594
+ - -2.093505512541835
+ - -2.5919707155521494
+ - -3.130847495340553
+ - -1.6989504188032485
+ - 1.4844747339666449
+ - 2.939746432614786
+ - 2.3909727527532767
+ - 1.7227152621224349
+ - 0.47017875390213204
+ - 0.16375679691316283
+ - -0.4581901032261445
+ - -1.7680550769363237
+ - -2.135378584616915
+ - -0.4416167296967164
+ - 1.1218419249537226
+ - 2.2080196285990925
+ - 2.3211340523473085
+ - 1.4355117929134844
+ - 0.058121404861731014
+ - -0.3873321381233787
+ - -0.8470587227805189
+ - -2.2023720977820234
+ - -2.098931799000446
+ - 1.1167003088837542
+ - 2.696464081808861
+ - 2.346369171107372
+ - 2.154976069054379
+ - 1.0343702776631019
+ - -0.5466232100414653
+ - -1.8821042480460508
+ - -2.6019015843820514
+ - -3.2702974958747575
+ - -2.009657941731333
+ - 1.41815494528554
+ - 2.746446498045446
+ - 2.398701676572496
+ - 1.9634362839557522
+ - 0.8660472421537943
+ - 0.6646524092047061
+ - -0.18533222071626956
+ - -1.8189893686157523
+ - -2.450614474520919
+ - -0.8060747372151105
+ - 0.774675965770938
+ - 2.0277899968705815
+ - 2.3879797670658127
+ - 1.7190607321630678
+ - 0.46579168235392676
+ - 0.15724129553426028
+ - -0.49508371362414966
+ - -1.6731388809085477
+ - -2.089242164594521
+ - -0.4384188234864138
+ - 1.123244795028938
+ - 2.327202769757155
+ - 3.124221136262824
+ - 2.2471289689624205
+ - -0.7071598486526275
+ - -1.7943074913090873
+ - -2.1407779052153724
+ - -2.352554428394972
+ - -1.5515487361006015
+ - -0.06242312711067816
+ - 1.443666348749658
+ - 2.4830989577944726
+ - 5.374711455595829
+ - 3.917114910414169
+ - -1.5432637413779873
+ - -2.4662322360302107
+ - -2.0315597546461825
+ - -2.386464876356236
+ - -1.71453611790061
+ - -0.2827959961480745
+ - 1.2610397489875884
+ - 2.3999114019978993
+ - 3.1888308848804363
+ - 2.253263941234519
+ - -0.849069079135541
+ - -1.976175882319654
+ - -2.209392488816966
+ - -2.317794535577527
+ - -1.6518226650641283
+ - -1.6985093643290103
+ - -0.4970901638712059
+ - 1.9747809646921675
+ - 3.015200395506946
+ - 1.528753592357544
+ - 0.046241595273603
+ - -1.4619415534479259
+ - -2.3280547811258696
+ - -2.1874667158144456
+ - -1.3115890773997338
+ - -1.2437158063845866
+ - -0.18729327951880956
+ - 1.9326566436676504
+ - 2.79891219882001
+ - 1.2172304223330683
+ - -0.33197810324157934
+ - -1.7881239299080618
+ - -2.5447856723664137
+ - -1.9531075999208922
+ - -0.07860602531391428
+ - 0.7454492743624935
+ - 1.6416536203540681
+ - 2.374668886840178
+ - 2.087401328014365
+ - 0.8765572400730265
+ - -0.7031348457126998
+ - -2.0653697977468575
+ - -3.143883201169624
+ - -2.1108355709786735
+ - -0.5015869413195686
+ - -0.2764089661199078
+ - 2.160921310053624
+ - 3.563408325231112
+ - 1.789019448470684
+ - 0.3996564202236453
+ - -1.1672688017803212
+ - -2.222549774682827
+ - -2.3152382232278303
+ - -1.6324952933592631
+ - -1.7013109663734312
+ - -0.5868595334915303
+ - 2.130476049114415
+ - 3.0683671481510477
+ - 1.5123913357834728
+ - 0.021534300885988924
+ - -1.493885441223305
+ - -2.175365366164846
+ - -1.7117882579956367
+ - -0.4319284543901482
+ - 0.2652020487458474
+ - 1.3696990722768398
+ - 2.3030578566090276
+ - 2.2477600436829612
+ - 1.1986505374215382
+ - -0.35886386190853764
+ - -1.8141548947901147
+ - -2.525323843004253
+ - -1.8485909978323902
+ - -0.11974007004463398
+ - 0.7714303921019211
+ - 1.666267366695067
+ - 2.386302481861503
+ - 2.3161611481657376
+ - 2.705434731988775
+ - 1.4568515039070387
+ - 1.3069456125824372
+ - 1.1756364172795495
+ - -0.3899087577578379
+ - -1.7786286710486865
+ - -2.4064124548998485
+ - -1.9721508574595354
+ - -0.6928355275189337
+ - 0.8337551166814778
+ - 2.4770277434359307
+ - 2.020336996508845
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.78951629773143
+ - 4.110375421915974
+ - 2.3688139659931866
+ - 2.1227781861295814
+ - 0.9611890879370464
+ - -0.6285481802756145
+ - -1.9374922910851853
+ - -2.6118678469504855
+ - -3.290471694241728
+ - -2.1049337240991344
+ - 1.5708364274667104
+ - 2.8292455995355796
+ - 2.408203731007652
+ - 1.9195499662198436
+ - 0.7828338109020595
+ - 0.5570777260025668
+ - -0.25380105548254933
+ - -1.7958312684032995
+ - -2.383413658845001
+ - -0.7295075985113185
+ - 0.8548149581845051
+ - 2.0769902185167646
+ - 2.384401378935838
+ - 1.664594345936748
+ - 0.3781077733564557
+ - 0.046378384439870746
+ - -0.5622973206254843
+ - -1.6400531161229175
+ - -2.0087883120909087
+ - -0.3576461652705619
+ - 1.1989661082457235
+ - 2.372475439453531
+ - 3.1420303689355804
+ - 2.140677977947978
+ - -0.7253013545963032
+ - -1.8885560382168443
+ - -2.182751113727564
+ - -2.340794655869459
+ - -1.490916680048444
+ - 0.02041304569458349
+ - 1.5129474285105933
+ - 2.515429254286255
+ - 3.6081980906607085
+ - 2.149956006426735
+ - -0.4178067866557099
+ - -0.6408067248739012
+ - -2.0835933717958737
+ - -3.0398679561967143
+ - -1.078845863019826
+ - 0.49333794968677513
+ - 1.859067288201059
+ - 2.4067663079237254
+ - 1.9160365312303216
+ - 0.7769694438330806
+ - 0.5581151612038638
+ - -0.2044444809936723
+ - -1.9044171638385479
+ - -2.4257707980581924
+ - -0.7251134417203138
+ - 0.8584247245595487
+ - 2.1731337254116214
+ - 2.89590104919544
+ - 1.9597894103489166
+ - -0.30351280438069095
+ - -1.4200801993570977
+ - -1.997891690765551
+ - -2.4001707272343165
+ - -1.7698906045188476
+ - -0.3554480119688393
+ - 1.2024401052325557
+ - 2.3751832632690504
+ - 3.085132501929634
+ - 1.9836022600457595
+ - -0.610479548368674
+ - -1.8616100812452947
+ - -2.1863326982640605
+ - -2.3425776654762234
+ - -1.7167101607569546
+ - -1.8224427711981737
+ - -0.7270691225744748
+ - 2.2545352104529797
+ - 3.141559434478401
+ - 1.5884015886485756
+ - 0.11881602344492136
+ - -1.4076599925084559
+ - -2.316114173896465
+ - -2.2227190931325973
+ - -1.3827544710095494
+ - -2.1831154907501458
+ - -1.331856183315054
+ - 3.899908881137325
+ - 5.329532150758584
+ - 1.7482228869772918
+ - 0.3394611349789145
+ - -1.221020992523825
+ - -2.2460822019692306
+ - -2.2986314224867037
+ - -1.5808502586081166
+ - -1.632944595554121
+ - -0.5819441307200728
+ - 2.2394990220068416
+ - 3.0644116979261535
+ - 1.4649174768417352
+ - -0.03957410317288748
+ - -1.5483398512362592
+ - -2.23598443324678
+ - -1.7372900007381278
+ - -0.3828546547211695
+ - 0.34682977646144264
+ - 1.4200019006419613
+ - 2.32091688846413
+ - 2.2253569243976354
+ - 1.1457716497761086
+ - -0.41927399975416163
+ - -1.8619321040827235
+ - -2.5764542395243266
+ - -1.8668969973351717
+ - -0.06952593586309078
+ - 0.8509949531839363
+ - 1.7104781095727204
+ - 2.3947695173302876
+ - 2.2856268216354256
+ - 2.6439273501180875
+ - 1.3256996557041172
+ - -2.0546494914485183
+ - -3.289508414935283
+ - -2.110389858602211
+ - -0.9314030040424607
+ - 0.653451459628824
+ - 1.9538582936789155
+ - 2.4055727672615737
+ - 2.05567178143958
+ - 2.555880946801138
+ - 1.0087339383474987
+ - -2.170000183577408
+ - -2.261130773427692
+ - -0.7125188662446575
+ - -0.14604652439791335
+ - 1.1117406607613858
+ - 2.1949400717668532
+ - 2.3366655148178253
+ - 1.4458225314178246
+ - -0.06074385176723376
+ - -1.5644853543535975
+ - -2.29733564113578
+ - -1.844741792215486
+ - -0.31860691321580886
+ - 0.3814108215875267
+ - 1.43532955362868
+ - 2.3232902520591
+ - 2.444110595143664
+ - 2.8471194082454585
+ - 1.3948575319991958
+ - -1.7634224969419063
+ - -3.1755227129904586
+ - -2.2552802357000923
+ - -1.2496154021324524
+ - 0.2983439620349862
+ - 1.7187358841805298
+ - 2.3907265598738796
+ - 2.2687179839627287
+ - 2.571851465515164
+ - 1.154285798461126
+ - -1.8840663463051508
+ - -3.2221056910413055
+ - -2.096423121499099
+ - -0.9121491918577296
+ - 0.5911534317116689
+ - 1.1749845358509052
+ - 1.3068452915359967
+ - 1.4581617931331199
+ - 2.707126635523393
+ - 2.398460621872291
+ - 2.0095337037111607
+ - 0.7532889160083349
+ - -0.8394605209576569
+ - -2.060716983973866
+ - -2.605051063510323
+ - -5.326874414287957
+ - -3.7824887624805252
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 1.7707562446740235
+ - 2.688397155296859
+ - 1.8005240400235938
+ - 1.8464899861581683
+ - 1.0970735776562501
+ - -0.13941229715091477
+ - -1.3077543934753686
+ - -2.051097816161189
+ - -2.652093074026974
+ - -1.7843909187763458
+ - 0.9889147997407365
+ - 1.9651366363093028
+ - 1.8897674296911653
+ - 1.7355011636564108
+ - 0.9986581407467211
+ - 0.9259815456577268
+ - 0.1013437829460632
+ - -1.5439313248113467
+ - -2.211410006836657
+ - -0.9262884347375137
+ - 0.3288923744859149
+ - 1.4472417117657779
+ - 1.928929936401775
+ - 1.5780739933815295
+ - 0.6938555776368407
+ - 0.5308827825353433
+ - -0.15176068530016057
+ - -1.4631842317272241
+ - -1.9698850675751247
+ - -0.6466827532332525
+ - 0.6246780634466613
+ - 1.701796783843
+ - 2.326534005928351
+ - 1.6753690915187265
+ - -0.2628531220459835
+ - -1.0755874505030372
+ - -1.5642738156311722
+ - -1.9303716290840498
+ - -1.4661867995420321
+ - -0.35255633967498046
+ - 0.9052746779896607
+ - 1.874128975873367
+ - 2.762893886954413
+ - 1.7439419017126199
+ - 0.03620084866629509
+ - -0.14715520282831424
+ - -1.736986503774736
+ - -2.7033154234992747
+ - -1.1795873389401854
+ - 0.02786151955212476
+ - 1.2279913426309346
+ - 1.888608246524739
+ - 1.7328307627477555
+ - 0.9940632242179013
+ - 0.9361271632664167
+ - 0.16540822113179104
+ - -1.6506068329892178
+ - -2.251452544535332
+ - -0.9230358721364883
+ - 0.33156186740923077
+ - 1.4898124325889988
+ - 2.0628748338134293
+ - 1.4966947990750143
+ - 0.061018218786702855
+ - -0.6748768878601422
+ - -1.368109852070234
+ - -1.9198106645356943
+ - -1.6464965340183277
+ - -0.644562447985488
+ - 0.6278587480136059
+ - 1.7045199358239695
+ - 2.284966726875143
+ - 1.5636113030266443
+ - -0.19192600387971448
+ - -1.062725442669015
+ - -1.567462156351526
+ - -1.9319284114577508
+ - -1.6541284265483471
+ - -1.8595989827938308
+ - -0.9004798954351829
+ - 1.8000706799561277
+ - 2.636483610746707
+ - 1.528518409875697
+ - 0.46177865790724487
+ - -0.8080561563928561
+ - -1.7242172035720302
+ - -1.8929672886765028
+ - -1.428796474360022
+ - -2.4862861197012363
+ - -1.617942792177259
+ - 3.164486641838538
+ - 4.381133008079928
+ - 1.6308707312237716
+ - 0.6323529051060608
+ - -0.6424873257155116
+ - -1.636860417010313
+ - -1.92086252697887
+ - -1.5639304904763491
+ - -1.7279577690450239
+ - -0.792794537284755
+ - 1.8113026466453859
+ - 2.607543595279166
+ - 1.4469376030107837
+ - 0.33768089996796596
+ - -0.8974945618639749
+ - -1.4049462872984304
+ - -1.2219593707358871
+ - -0.599601048502143
+ - -0.2181546940074781
+ - 0.8209093614064055
+ - 1.7303772834965436
+ - 1.8978380550509661
+ - 1.2267937546428151
+ - 0.03274017393692933
+ - -1.1862040968526133
+ - -1.7319338784686593
+ - -1.368092812733829
+ - -0.3583314058381126
+ - 0.19359770342560623
+ - 1.0877618022093838
+ - 1.8456099786336317
+ - 1.9946550161584973
+ - 2.382831500455615
+ - 1.3020886021095455
+ - -1.5258905298727168
+ - -2.5810381837388126
+ - -1.8402407719057616
+ - -1.073679541020241
+ - 0.15844998239748403
+ - 1.323971686734063
+ - 1.9125169011231031
+ - 1.8664207097611911
+ - 2.4118516690013774
+ - 1.0897677286644334
+ - -1.5452231253766004
+ - -1.6491388713741149
+ - -0.8759242141621506
+ - -0.6740556417188751
+ - 0.5488635213413254
+ - 1.5800493690407298
+ - 1.9344796759186733
+ - 1.4347264665168333
+ - 0.32142569325923037
+ - -0.91264526758327
+ - -1.45043516170898
+ - -1.288184172948407
+ - -0.5761713310891527
+ - -0.2006889078935207
+ - 0.8349777851184277
+ - 1.7360699706591605
+ - 2.0666853495973427
+ - 2.4764213565816675
+ - 1.3156258639101635
+ - -1.2518512712361634
+ - -2.4195889687556016
+ - -1.9056244403086704
+ - -1.3005818999859942
+ - -0.132837290655599
+ - 1.0968881173702798
+ - 1.8468441190940548
+ - 1.986120429073352
+ - 2.325783228695356
+ - 1.1571854210526795
+ - -1.3916533672291267
+ - -2.534691453516524
+ - -1.8336840802131362
+ - -1.0611073585196615
+ - 0.07555378518883597
+ - 0.45098726994975163
+ - 0.7475817078099031
+ - 1.2333013753164235
+ - 1.8405586015676796
+ - 1.8575540263034531
+ - 1.7864356292196313
+ - 0.9453533079321547
+ - -0.31598182707686334
+ - -1.4330937595147772
+ - -2.0825697623326267
+ - -4.380854522424716
+ - -3.1521770717965967
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -0.18021948676291535
+ - 0.0586958703805677
+ - 1.0625922492247297
+ - 1.9063659165850388
+ - 1.9320543751301142
+ - 1.1037177858823595
+ - -0.19367247108105343
+ - -1.4412220637173048
+ - -2.094527126010287
+ - -1.699588296892131
+ - -0.13521641830023595
+ - 0.5100007196635417
+ - 1.3231346237575006
+ - 1.993289282341135
+ - 2.004201269427632
+ - 2.3080508149608674
+ - 1.0912624692628539
+ - -1.538356681755478
+ - -2.7064491535073407
+ - -1.8498955417757024
+ - -0.9305675927517079
+ - 0.39326467988874697
+ - 1.5469367114387855
+ - 2.0278450581371135
+ - 1.834233472000979
+ - 2.050631451804883
+ - 0.8766306457394315
+ - -1.6227065449918472
+ - -2.715428680057384
+ - -1.6955561067983809
+ - -0.6361336397213547
+ - 0.648504412330422
+ - 1.1567159040815689
+ - 1.1578603421945644
+ - 0.8559576976710065
+ - 0.6267688746730393
+ - -0.5907787475839478
+ - -1.6690259711082178
+ - -2.032354561196726
+ - -1.4982605839962537
+ - -0.32352233809241704
+ - 0.9734019034921352
+ - 1.7017697553808955
+ - 1.413975152349056
+ - 1.2614424519108933
+ - 1.1046686125074388
+ - -1.562302501941202
+ - -2.9719945217717143
+ - -1.9565058736299874
+ - -1.200320385198906
+ - 0.07595944226272655
+ - 1.3222156104819065
+ - 1.9917132493822498
+ - 2.00100708330039
+ - 2.346837443586862
+ - 1.2221308974595582
+ - -1.6859291447481455
+ - -2.75758674513621
+ - -1.8482816666259543
+ - -0.9292523788699181
+ - 0.3114490256856062
+ - 0.7326888891355657
+ - 0.9080598597844822
+ - 1.0585610679005455
+ - 1.0196734176509217
+ - -0.2799297321116126
+ - -1.467576589744275
+ - -2.02752019012548
+ - -1.6927301566901036
+ - -0.6323637527230649
+ - 0.6524404215542753
+ - 1.1380739640595496
+ - 1.11866597696123
+ - 0.8405100691108685
+ - 0.607652958621376
+ - -0.5942934435550824
+ - -1.6706526012062404
+ - -2.2004686973308014
+ - -2.7602524646580755
+ - -1.7506943200981466
+ - 1.3652137385374703
+ - 2.4273508211357018
+ - 2.0278990832803894
+ - 1.574618726489749
+ - 0.4411533864970242
+ - -0.8904917390349231
+ - -1.8304333849122492
+ - -2.1674089179526526
+ - -4.365845321793466
+ - -3.0776561879329174
+ - 2.569252508496375
+ - 3.742943101108261
+ - 2.0212580803767946
+ - 1.6853202353584302
+ - 0.6219592147031453
+ - -0.7193150315125115
+ - -1.7424199109211342
+ - -2.193047500612419
+ - -2.7260139426126337
+ - -1.6963410522634934
+ - 1.4512734065344615
+ - 2.5143775525287424
+ - 2.0227950916477364
+ - 1.4883917677068168
+ - 0.4496841637165072
+ - 0.2035719853737174
+ - -0.3757134298985188
+ - -1.435571501265022
+ - -1.8175151398579341
+ - -0.42139704942691086
+ - 0.9029237112021619
+ - 1.843355817300302
+ - 1.9715218865132762
+ - 1.2511783280792934
+ - 0.10281037378141519
+ - -0.22845738593808965
+ - -0.628877196102388
+ - -1.282282849572463
+ - -1.474480658889539
+ - -0.10244908180334798
+ - 1.1780842933589575
+ - 2.0792826514814293
+ - 2.7143976602004005
+ - 1.8004992790299892
+ - -0.7748887702053477
+ - -1.8060942130220077
+ - -1.9137803513757647
+ - -1.9156063455414856
+ - -1.0921009544307119
+ - 0.2164846517286986
+ - 1.4233153296875258
+ - 2.1667864629928375
+ - 3.067833209622424
+ - 1.7754576135168445
+ - -0.5467305956495995
+ - -0.7295079306346011
+ - -1.6888949301366387
+ - -2.3714347251091517
+ - -0.7142289038510793
+ - 0.6229110601005103
+ - 1.6968505291416398
+ - 2.0236586376963905
+ - 1.4782227183026027
+ - 0.43065251480044336
+ - 0.1807346684919762
+ - -0.3606433732098422
+ - -1.5107955748123756
+ - -1.8381214644932495
+ - -0.404618782293537
+ - 0.9199128053820762
+ - 1.9520202207462025
+ - 2.5563134330871304
+ - 1.6716774116716977
+ - -0.4285082712570361
+ - -1.4485800566743767
+ - -1.7955163182295484
+ - -1.9970412884844986
+ - -1.338920216685543
+ - -0.08707323952768647
+ - 1.193907499475188
+ - 2.0893791826973995
+ - 2.6727937137398485
+ - 1.6637622092232283
+ - -0.6796220106233459
+ - -1.795860600985996
+ - -1.9241403867492277
+ - -1.9154178164738522
+ - -1.265614274096496
+ - -1.283579113959027
+ - -0.4202173973249657
+ - 1.877748136879904
+ - 2.5422844613356332
+ - 1.217164633147083
+ - 1.9621391354978188
+ - 1.8646126750851655
+ - 0.9425323767687801
+ - -0.3786782153688788
+ - -1.5882734919744241
+ - -3.748879337066424
+ - -2.8316822703201017
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.2044537690900357
+ - -2.814073457954036
+ - -0.24412472322127718
+ - 1.0589281697036628
+ - 1.9107963756936355
+ - 1.9203397530061073
+ - 1.1041615023540865
+ - -0.09185300952274038
+ - -0.489133459970595
+ - -0.7945882968568059
+ - -1.2865454604409434
+ - -1.3081339834641468
+ - 0.07704937222168706
+ - 1.318350023034579
+ - 2.1329261567035025
+ - 2.6986904194388526
+ - 1.639932543316706
+ - -0.7962119036008791
+ - -1.9469062139189548
+ - -1.963821813990221
+ - -1.8477076552988365
+ - -0.9350565732441797
+ - 0.3934953002008855
+ - 1.5440491766946676
+ - 2.190145751832015
+ - 2.713380578049413
+ - 1.5696202019240297
+ - -1.0187947677988076
+ - -2.222573904721358
+ - -2.0188417890613892
+ - -1.6956237583209064
+ - -0.8012103926077268
+ - -0.6622336142098343
+ - 0.04400002758175393
+ - 1.656651482121256
+ - 2.168380376070129
+ - 0.744993101644414
+ - -0.5876747242812733
+ - -1.672313655616896
+ - -2.0207013311468676
+ - -1.497967072520369
+ - -0.46674098712556006
+ - -0.2604118858452918
+ - 0.3804361553479616
+ - 1.9832409225143384
+ - 1.9302395392741982
+ - -0.6257655146373281
+ - -1.8405219332208227
+ - -1.860738903375905
+ - -1.9545466143692156
+ - -1.2066005704718181
+ - 0.07682991866786724
+ - 1.3187120689710439
+ - 2.1327766676812883
+ - 2.7499010906737866
+ - 1.780445538501114
+ - -0.9174105485293914
+ - -1.9855765299712942
+ - -1.9647539522509163
+ - -1.8484877941000104
+ - -1.1122785861394864
+ - -1.0568391031568785
+ - -0.16321028275729887
+ - 1.6311265974866378
+ - 2.364837109248633
+ - 1.0311595445928443
+ - -0.276125735988519
+ - -1.4695117643518707
+ - -2.016604327511769
+ - -1.6930220099031612
+ - -0.7978459704302141
+ - -0.6471557952317555
+ - 0.1020562209214982
+ - 1.5551596438248192
+ - 2.1238226712194366
+ - 0.7428071464629254
+ - -0.5885983194707433
+ - -1.7385345009433393
+ - -2.4137375958168654
+ - -1.8326971267912098
+ - 0.24154210938544862
+ - 1.0396180976999327
+ - 1.5977418153784437
+ - 2.02497082439991
+ - 1.5813932511474005
+ - 0.4374989710580087
+ - -0.8869129091329601
+ - -1.9292852429786944
+ - -4.3099866547880215
+ - -3.184027590834155
+ - 0.6959521591653761
+ - 1.2615594981167744
+ - 1.4763742406191445
+ - 2.01793293275726
+ - 1.6921649759968864
+ - 0.6174389021753011
+ - -0.7156297012454019
+ - -1.8242076959279647
+ - -2.5012472582957264
+ - -1.862043014741971
+ - 0.3673667491690916
+ - 1.2104489623093497
+ - 1.6778087156273906
+ - 2.0209697146017014
+ - 1.69182045064901
+ - 1.8461796233977463
+ - 0.7194961989429837
+ - -1.6529535199973402
+ - -2.67793404619763
+ - -1.563623196603279
+ - -0.4242310536276451
+ - 0.9023607991085545
+ - 1.8337480690058308
+ - 1.9705291397067883
+ - 1.4480086986341407
+ - 1.5072495965152564
+ - 0.47169291342622194
+ - -1.668189020992052
+ - -2.573379783051667
+ - -1.340939682468679
+ - -0.10773473867746623
+ - 1.1758777871782298
+ - 1.7742135044357243
+ - 1.4781047253322541
+ - 0.4082986752519878
+ - -0.10356768367709827
+ - -1.077574945386192
+ - -1.9097324814002232
+ - -1.922310135074833
+ - -1.0851310050168028
+ - 0.21305379161818605
+ - 1.4548858855048261
+ - 2.309465832278009
+ - 1.6676361863617948
+ - 0.7950048560853925
+ - 0.6143791704299107
+ - -1.7601806946675687
+ - -3.0728321441659143
+ - -1.7388176413363028
+ - -0.7105423224080825
+ - 0.6278404786463571
+ - 1.692403591469588
+ - 2.022250796510506
+ - 1.6776967988688831
+ - 1.8587718379766243
+ - 0.8152960923942124
+ - -1.7989009599508625
+ - -2.729864323581972
+ - -1.5519414491595902
+ - -0.40315133819251
+ - 0.8939266628505204
+ - 1.4195247347749096
+ - 1.256928423868499
+ - 0.667188593126126
+ - 0.29496580254242416
+ - -0.8172400369438084
+ - -1.7948408046280782
+ - -2.0029204398294427
+ - -1.3261599094080438
+ - -0.08370081248145331
+ - 1.201298131222958
+ - 1.7692248404728899
+ - 1.415631592942453
+ - 0.4158232192874368
+ - -0.13729779250126978
+ - -1.101277383610248
+ - -1.923029418096001
+ - -2.1108197652613265
+ - -2.5457475431562155
+ - -1.4824095530834436
+ - 1.6763639409148612
+ - 2.7132275986295977
+ - 1.9472296552959127
+ - 1.2133102657883104
+ - 1.9667938091211747
+ - 1.852923744845627
+ - 0.9431381454560082
+ - -0.29356801694425033
+ - -1.271379379669434
+ - -1.1300092658878158
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -3.2847757044609036
+ - -4.482881095202291
+ - -1.4499908171959885
+ - -0.248112001135637
+ - 1.0653278927396612
+ - 1.9114828697749238
+ - 1.9301748683864055
+ - 1.3017191683801543
+ - 1.3326827888975201
+ - 0.45619811026902546
+ - -1.886892874118129
+ - -2.568242413418135
+ - -1.2065030172081028
+ - 0.07250466274765927
+ - 1.3421446837250175
+ - 1.9266956713671732
+ - 1.4831547457571888
+ - 0.2918662049086898
+ - -0.34506904658920673
+ - -1.2311271934152628
+ - -1.9710380558198037
+ - -1.864597707900509
+ - -0.9335833270995746
+ - 0.3926509573470894
+ - 1.6026455411774316
+ - 2.2080864796272404
+ - 1.5879797456297537
+ - 0.02658244549185505
+ - -0.7694334479993198
+ - -1.4724876076417508
+ - -2.0273836150492754
+ - -1.9102860392054382
+ - -2.2017401300347372
+ - -1.0926236042237394
+ - 1.7455431862912667
+ - 2.779999677977694
+ - 1.7639852396958733
+ - 0.7508195052045016
+ - -0.5897690907731746
+ - -1.673376725683485
+ - -2.0303231429975623
+ - -1.7104706076384402
+ - -2.116945375649873
+ - -0.8207000304505764
+ - 1.8521097004426403
+ - 1.9260934358243473
+ - 0.583851102800323
+ - 0.08862491339894747
+ - -0.9620986981151527
+ - -1.8683295736991397
+ - -1.973105164157277
+ - -1.205925712883236
+ - 0.07465497510389198
+ - 1.345114756583573
+ - 1.9682864101955375
+ - 1.5727402911093913
+ - 0.24940461913645376
+ - -0.3545511351832366
+ - -1.234212014681314
+ - -1.9735828898278247
+ - -2.0611122110294398
+ - -2.396628057664706
+ - -1.167727714142251
+ - 1.502123676984509
+ - 2.694603218461285
+ - 1.9019595948318357
+ - 1.0384692554327946
+ - -0.27579744383671484
+ - -1.471807075886817
+ - -2.0270738955567613
+ - -1.9089455465373253
+ - -2.1593307116816742
+ - -0.9620261830935563
+ - 1.601488896749582
+ - 2.729126721515999
+ - 1.7640753318142044
+ - 0.7509995716636026
+ - -0.5251904716751689
+ - -1.0249864962774673
+ - -1.1245249810907503
+ - -0.9901272500630817
+ - -0.8012246059243934
+ - 0.4770072764801159
+ - 1.6034706201471929
+ - 2.0434441277313247
+ - 1.581307414772008
+ - 0.44234527996538725
+ - -0.858240246816055
+ - -2.3950151771705652
+ - -1.9174717767236606
+ - -1.4838834427084964
+ - -1.7723761796477637
+ - 0.29286984451518583
+ - 1.4813296873962485
+ - 2.0361674059692443
+ - 1.6924306004812624
+ - 0.6233057920023465
+ - -0.6673234014917726
+ - -1.1969151981630926
+ - -1.2251990028223696
+ - -0.8786713657040208
+ - -0.6199851134809937
+ - 0.6080014256617431
+ - 1.6837022315261407
+ - 2.2084859572737074
+ - 2.698100584938243
+ - 1.5081053131174762
+ - -1.1581454656138095
+ - -2.3862681716359098
+ - -2.035330925889025
+ - -1.5729233048558675
+ - -0.43102582089156954
+ - 0.9045984766099544
+ - 1.8424239578714883
+ - 2.1732440762678746
+ - 2.598769762144008
+ - 1.3725598867843787
+ - -1.3359061252389026
+ - -2.566099245806197
+ - -2.0052836224197854
+ - -1.3514574556616241
+ - -0.23776065787123976
+ - 0.06560485955009933
+ - 0.5170993768413382
+ - 1.4194056432977236
+ - 1.6494149163789875
+ - 0.22623709976826586
+ - -1.08015946025113
+ - -1.926236102950116
+ - -1.9231470435386218
+ - -1.0932126194922696
+ - 0.1130646378427853
+ - 0.5524342166666648
+ - 0.8401863312461062
+ - 1.7984106368377235
+ - 1.697848757412007
+ - -1.0725318021854593
+ - -2.4512831640812833
+ - -2.0169275781118103
+ - -1.7420670389037411
+ - -0.7155944902810083
+ - 0.630078470035529
+ - 1.69591917069563
+ - 2.2053800616718484
+ - 2.740815272256048
+ - 1.6435900991388803
+ - -1.312109437060965
+ - -2.4472318774103528
+ - -2.0338030432409324
+ - -1.5568306156609164
+ - -0.5533193115913541
+ - -0.33337774453346536
+ - 0.2986483655517991
+ - 1.4788475453651795
+ - 1.9172170900847711
+ - 0.5168417438347604
+ - -0.8178265190919894
+ - -1.8053061906309018
+ - -1.9974783781359498
+ - -1.3295506176226304
+ - -0.20792855062005167
+ - 0.0995072456825187
+ - 0.5560871812465638
+ - 1.3356446149871413
+ - 1.5861192702873355
+ - 0.19936976766031705
+ - -1.1012534228041442
+ - -2.0484898650263004
+ - -2.71421095130495
+ - -1.9088396234692229
+ - 0.7512703548014515
+ - 1.7145225150145718
+ - 1.8850778728033455
+ - 1.9506479761940636
+ - 1.2210323461212838
+ - 1.9672331350148242
+ - 1.8626655636446412
+ - 1.1321555311948193
+ - 1.7628950351879857
+ - 1.0648272891289596
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -2.9190983017370185
+ - -4.178763316930104
+ - -2.0193770065612306
+ - -1.4489988197855175
+ - -0.25210715600168193
+ - 1.0595707234508833
+ - 1.90697905224562
+ - 2.124674393653777
+ - 2.5712982626717173
+ - 1.508916164875053
+ - -1.656555331841508
+ - -2.6988171956233136
+ - -1.9611569355822807
+ - -1.2084379216989618
+ - -0.04255238982931191
+ - 0.3030251147406011
+ - 0.6718581035221551
+ - 1.253945546770809
+ - 1.4129680082468634
+ - 0.0463745319273666
+ - -1.2253768173189397
+ - -1.9741098449014007
+ - -1.8522411407942958
+ - -0.9348044701612981
+ - 0.30684872992530987
+ - 0.7276810703979874
+ - 0.9060275272787741
+ - 1.0628539063494848
+ - 1.0266948996614527
+ - -0.2753445537994858
+ - -1.4658238420458523
+ - -2.1796331237442326
+ - -2.7740543871941923
+ - -1.750205919596261
+ - 1.0648095006088878
+ - 2.167069814440104
+ - 2.007547231005436
+ - 1.7615265621962595
+ - 0.755596513939212
+ - -0.5871613906539465
+ - -1.668564725836362
+ - -2.20293484751471
+ - -3.044478317776328
+ - -1.6628855042821453
+ - 0.90380101581601
+ - 1.072458518170324
+ - 1.5389972366734765
+ - 1.9835160176189925
+ - 0.36311383436001904
+ - -0.9578940946607867
+ - -1.8713193868925888
+ - -1.9600363999406982
+ - -1.2054433096560988
+ - -0.03776600160463511
+ - 0.3166253687784334
+ - 0.6708783952519087
+ - 1.309145044554411
+ - 1.4369291743713946
+ - 0.04249341264303711
+ - -1.22856869771001
+ - -2.1032968999465087
+ - -2.682773558773956
+ - -1.659750694003356
+ - 0.7103047573703019
+ - 1.8367766025106487
+ - 1.936106326272162
+ - 1.89835405265269
+ - 1.0425433073819474
+ - -0.27652338962920014
+ - -1.4679490125644359
+ - -2.1809127052608415
+ - -2.7229492856099795
+ - -1.6044841492987096
+ - 0.9416186081193483
+ - 2.1323042596880706
+ - 2.00987875643733
+ - 1.7627332796794102
+ - 0.9228208348999538
+ - 0.8192997946892052
+ - 0.0813778193168103
+ - -1.7881977087495682
+ - -2.293306602998751
+ - -0.8569119917111357
+ - 0.4737257602938383
+ - 1.605418777927293
+ - 2.0305659685084194
+ - 1.5798413340173427
+ - 0.5940030453192533
+ - 0.5810419337555374
+ - 0.19793254534810864
+ - -3.0147304595243685
+ - -4.032226871349545
+ - -1.022764993042348
+ - 0.29006142132843704
+ - 1.4830063635169815
+ - 2.0236912187152445
+ - 1.6906933694775685
+ - 0.7867726158260008
+ - 0.6385673498100892
+ - -0.046401620145959055
+ - -1.7403037065993607
+ - -2.1815662600504195
+ - -0.732636313433462
+ - 0.603015042631934
+ - 1.752423010037242
+ - 2.3621966958591574
+ - 1.6335589369176255
+ - -0.15131359054589397
+ - -1.0414410000358427
+ - -1.6105657795004231
+ - -2.0307748835574326
+ - -1.5776532367492626
+ - -0.4258394810085236
+ - 0.9014208554148091
+ - 1.941817243740843
+ - 2.54687448251415
+ - 1.6703339883286823
+ - -0.4136070011514606
+ - -1.4270570892171766
+ - -1.786889262655979
+ - -2.0022530184290197
+ - -1.5500782836161748
+ - -1.6762170094966247
+ - -0.6743727695393583
+ - 1.807035436266718
+ - 2.6793364044182866
+ - 1.4335355860231738
+ - 0.2278815309175149
+ - -1.0806312311008381
+ - -1.9150827191758542
+ - -1.9206034828016576
+ - -1.2819828300190066
+ - -1.452641661355916
+ - -0.35988896167494255
+ - 2.0111636466804517
+ - 2.035217769454837
+ - 0.08986539703137518
+ - -0.7470717476560735
+ - -1.4061930966502731
+ - -2.0078592527531387
+ - -1.7467908945678048
+ - -0.7127950412858156
+ - 0.6208074509603356
+ - 1.76172937327331
+ - 2.4162644874933115
+ - 1.7490740862530736
+ - -0.2454098404652557
+ - -1.0845727767436504
+ - -1.619887858381755
+ - -2.0267786170859807
+ - -1.7601554466343459
+ - -1.9436385581985323
+ - -0.7937465788739161
+ - 1.6403115710087017
+ - 2.697965960756341
+ - 1.6263180133626374
+ - 0.5223259945759521
+ - -0.8109903555370135
+ - -1.7895163430676173
+ - -1.9921393781957597
+ - -1.5289801221368449
+ - -1.6182783415726605
+ - -0.5508650464259683
+ - 1.6687012292695713
+ - 2.6143153081018946
+ - 1.4153447213091102
+ - 0.2082743075381923
+ - -1.0825444979798726
+ - -1.6860313159720088
+ - -1.4944690770816846
+ - -0.507478239230126
+ - -0.04285222041934066
+ - 0.9913818145543257
+ - 1.8746379191249505
+ - 1.9536303985745398
+ - 1.214206818140802
+ - 1.962991562901802
+ - 2.062126690326334
+ - 4.027265968177238
+ - 2.795531132708065
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - -1.298812202869837
+ - -2.0773509849322336
+ - -1.7160152879078832
+ - -2.018991925069136
+ - -1.4532604903887214
+ - -0.24351177560397522
+ - 1.0629091815617853
+ - 2.028058675947901
+ - 2.695615334954488
+ - 1.9058155404791566
+ - -0.7143749844835223
+ - -1.6667059933535036
+ - -1.867040354205667
+ - -1.961585043601534
+ - -1.4007915887270412
+ - -1.4415645749785193
+ - -0.42392521368380054
+ - 1.6705097726074143
+ - 2.552349032905278
+ - 1.2964026396853527
+ - 0.04346295210485847
+ - -1.2330661704080266
+ - -1.9680560478032827
+ - -1.851998324766987
+ - -1.1134401762322874
+ - -1.057312721026676
+ - -0.1619888414667842
+ - 1.6354458336213338
+ - 2.3702459901589674
+ - 1.0333069338554504
+ - -0.27648307655278176
+ - -1.5090001127664543
+ - -2.1486928768312836
+ - -1.6504088769802532
+ - -0.07035608218943903
+ - 0.6247524366243712
+ - 1.3853687851741812
+ - 2.0079052975315705
+ - 1.7677491796221354
+ - 0.7454605746514491
+ - -0.5905654250048264
+ - -1.7440756171002132
+ - -2.6558220367127823
+ - -1.784200069602052
+ - -0.4280473660363669
+ - -0.237884614267664
+ - 1.8259465281881622
+ - 3.0133107538091655
+ - 1.5242079018466461
+ - 0.35959242868409014
+ - -0.9644721538794042
+ - -1.8658615308406405
+ - -1.9590400038761902
+ - -1.3962608800527487
+ - -1.4616458952097897
+ - -0.5145161106678983
+ - 1.7990323891621505
+ - 2.599241724377497
+ - 1.2934015566169852
+ - 0.0410015972658056
+ - -1.2397022120243986
+ - -1.812222721231614
+ - -1.4343092863025058
+ - -0.3826673697807954
+ - 0.19320650878639037
+ - 1.136501986043062
+ - 1.935886370010985
+ - 1.9042911492766306
+ - 1.0307871547516343
+ - -0.28011490003211836
+ - -1.5123350824709305
+ - -2.11094593060491
+ - -1.5523895722758476
+ - -0.11976841825791612
+ - 0.620969398443808
+ - 1.3889257493192588
+ - 2.009613143889823
+ - 1.9650210564810924
+ - 2.3000145608064737
+ - 1.2451582190834556
+ - -1.8117067274311571
+ - -2.789286417987614
+ - -1.81406619740854
+ - -0.853332687781882
+ - 0.47878733161932585
+ - 1.6029648552181663
+ - 2.0304857097366753
+ - 1.781976177410988
+ - 3.2894545416460903
+ - 2.2156895547498574
+ - -3.2386500958391733
+ - -4.5428052425323155
+ - -1.8903366489300513
+ - -1.019085879432406
+ - 0.29461877780305584
+ - 1.4817459961259656
+ - 2.0239153375283276
+ - 1.8935937686983604
+ - 2.188340163402624
+ - 1.1454452681105338
+ - -1.847619981367542
+ - -2.794742802827925
+ - -1.7499734228712316
+ - -0.7309367595783909
+ - 0.5445702203461861
+ - 1.0112710377275604
+ - 1.0549804947259915
+ - 0.9147461455649588
+ - 0.7438539445579201
+ - -0.4949001038099171
+ - -1.6116273773244971
+ - -2.0383152653049934
+ - -1.5651226331602035
+ - -0.42214006099487145
+ - 0.8757392853592502
+ - 1.3987766147230953
+ - 1.247228528265118
+ - 0.6813417977970297
+ - 0.3196806558314226
+ - -0.8004689700462498
+ - -1.7871929917373062
+ - -2.1873281513330025
+ - -2.686141252010819
+ - -1.5685052671058513
+ - 1.414404201564303
+ - 2.5496669533853757
+ - 2.0165587838722185
+ - 1.4301257446628828
+ - 0.22524732934860545
+ - -1.0825673200096089
+ - -1.9162533873775567
+ - -2.116899546434404
+ - -2.820528311946347
+ - -1.397968760008408
+ - 1.3568012023215186
+ - 1.494382583722819
+ - 1.2067417148760504
+ - 1.268760596162482
+ - -0.19364132206644424
+ - -1.4076464888093534
+ - -2.0198816699338074
+ - -1.7408973436836883
+ - -0.7152618354367051
+ - 0.562211132770964
+ - 1.0533510910133215
+ - 1.1009114765467398
+ - 0.920676997939722
+ - 0.7370185902056756
+ - -0.5109970199469173
+ - -1.6213787471766221
+ - -2.2021009979586714
+ - -2.70764180420509
+ - -1.5379900401789661
+ - 1.0946254144908654
+ - 2.3125766738942395
+ - 2.0290966863201434
+ - 1.6297254648544062
+ - 0.5266371459187502
+ - -0.8123365240594238
+ - -1.7931607398510407
+ - -2.1839978780933587
+ - -2.629252723932558
+ - -1.4141486019992715
+ - 1.2813749825964147
+ - 2.510931056156248
+ - 2.0148257282757465
+ - 1.420437779248438
+ - 0.3437915655256666
+ - 0.061992812898440934
+ - -0.4391212169830291
+ - -1.540344660218788
+ - -1.7714499738577627
+ - -0.32388131806261
+ - 0.9919883200467602
+ - 1.8855632429051843
+ - 1.948082852771039
+ - 1.2176035994451067
+ - 2.098827549883563
+ - 4.544477981089117
+ - 3.3125091576858887
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.9428619696412242
+ - 0.946962025166003
+ - -0.8576927377688806
+ - -2.0702434881838347
+ - -2.3955320177721195
+ - -1.6627423997534985
+ - -0.21991086873268534
+ - 1.3134875241892037
+ - 2.035164386197904
+ - 1.7926168255429733
+ - 0.5769646619832742
+ - 0.011195389803330251
+ - -1.2032819413193696
+ - -2.239604570031354
+ - -2.538519321882681
+ - -3.0094379272738503
+ - -1.5521141350512113
+ - 1.6498992816661648
+ - 3.0965906578719955
+ - 2.34134030396315
+ - 1.4830687698982248
+ - -0.017515729470036795
+ - -1.5145397437272756
+ - -2.3504507919266144
+ - -2.407777690781106
+ - -2.7858745029029546
+ - -1.3363976501363555
+ - 1.8038937146900715
+ - 3.2024475048230556
+ - 2.223707273363031
+ - 1.1673955607180664
+ - -0.29188076172203953
+ - -0.7928958817159353
+ - -1.0446612044060026
+ - -1.3489249063733286
+ - -1.3269252588447804
+ - 0.26053742861207574
+ - 1.6919895671674483
+ - 2.399998823811161
+ - 2.0490230101059197
+ - 0.8193865218584685
+ - -0.6993852751015203
+ - -1.4199773452743942
+ - -1.3917339561824125
+ - -1.8252526785791405
+ - -1.6671029225011647
+ - 1.610663813127903
+ - 3.294821787588786
+ - 2.3994906554064332
+ - 1.7607430073736323
+ - 0.360898831150377
+ - -1.2023872728170257
+ - -2.2383322247114217
+ - -2.535628285752656
+ - -3.0620934869461376
+ - -1.7183115922465992
+ - 1.8240855773769042
+ - 3.155769282113997
+ - 2.3402378835728164
+ - 1.4821763148674896
+ - 0.1181194629177328
+ - -0.275939132618508
+ - -0.7490819575634193
+ - -1.519924620352301
+ - -1.745866391744267
+ - -0.11733093428100502
+ - 1.40233584262637
+ - 2.323697310290448
+ - 2.22040226099632
+ - 1.1631203164544315
+ - -0.2965742244627959
+ - -0.7816816377882956
+ - -1.0304407771337523
+ - -1.2991612208791055
+ - -1.2941135120707266
+ - 0.2644374490826205
+ - 1.6937630807194493
+ - 2.572921345825252
+ - 3.310157223918525
+ - 2.2066202280961837
+ - -1.2990829492860925
+ - -2.526410863131049
+ - -2.369562424388844
+ - -2.118401287354987
+ - -0.9535499390798738
+ - 0.6360817063199292
+ - 1.9416849179578959
+ - 2.611266229082969
+ - 5.410379360686819
+ - 3.865739771817261
+ - -2.530506096569938
+ - -3.774444215169816
+ - -2.32056790175816
+ - -2.2142879549518764
+ - -1.1535694818797912
+ - 0.4200620194105485
+ - 1.80264861875618
+ - 2.5967439104411896
+ - 3.3107980262701107
+ - 2.1687338444936253
+ - -1.42024214435288
+ - -2.6644084714666527
+ - -2.393454073594339
+ - -2.0403477195502866
+ - -1.0003386152158156
+ - -0.8364119859251353
+ - 0.07845243999327495
+ - 1.8627387732711655
+ - 2.566108418340254
+ - 0.9296821173086026
+ - -0.6518414651743433
+ - -1.958653543899695
+ - -2.403252172318615
+ - -1.8116169227324888
+ - -0.6054915417778232
+ - -0.33211225721015647
+ - 0.39143245805453836
+ - 1.731914280976661
+ - 2.224116793423999
+ - 0.5671552399754209
+ - -1.0087607014234559
+ - -2.265444720475449
+ - -3.042339953600774
+ - -2.124984980254925
+ - 0.5437080117278479
+ - 1.6419237352871805
+ - 2.083453060761382
+ - 2.3805361540875003
+ - 1.6531174048757609
+ - 0.19287991682901404
+ - -1.3406046122672226
+ - -2.4422756848033256
+ - -3.546495566854155
+ - -2.1700229545425027
+ - 0.20363322485382482
+ - 0.43020675796060504
+ - 2.125949335015686
+ - 3.1986092544237192
+ - 1.252138066267014
+ - -0.30132654030965444
+ - -1.7309790801566562
+ - -2.3994034172740544
+ - -2.031764672296629
+ - -0.9784102612913737
+ - -0.8205875231974062
+ - 0.031045475066396995
+ - 1.9814129424214906
+ - 2.602860299961352
+ - 0.9106235009933055
+ - -0.6744255091829147
+ - -2.0522343776972805
+ - -2.775910634817924
+ - -1.9319658974532237
+ - 0.14394534360733496
+ - 1.1826881614677025
+ - 1.885914633743545
+ - 2.412117609182261
+ - 1.9010974916869416
+ - 0.5482434162431561
+ - -1.0313579899515692
+ - -2.283444284474061
+ - -3.003593784771127
+ - -1.9812799507091605
+ - 0.4563686210275862
+ - 1.6448072703524161
+ - 2.101076348929103
+ - 2.385089748780318
+ - 1.8742572722675641
+ - 2.0446438461184315
+ - 0.8997988889360895
+ - -2.264031841622759
+ - -3.222774225673384
+ - -1.7331216906595712
+ - -0.31387684965423124
+ - 1.2461091248416643
+ - 2.259578669404886
+ - 2.294811749330865
+ - 1.5607983720174696
+ - 3.7832081982281176
+ - 2.9178531751463486
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 3.041293541912159
+ - 3.4926518535639035
+ - -1.1240463142519317
+ - -3.9166375148586376
+ - -5.032575330829751
+ - -3.9268907148895873
+ - -1.1401569427673235
+ - 2.0614445561446746
+ - 3.4473164992986414
+ - 3.3020758119409144
+ - 1.8154760354622201
+ - 0.9721848775753387
+ - -1.8833008726898774
+ - -4.363219458020892
+ - -5.411881912926606
+ - -6.540031566007247
+ - -3.5541638310019845
+ - 3.0865617087193
+ - 6.123417302808967
+ - 4.989010831700019
+ - 3.6010422558764117
+ - 0.6561744137280822
+ - -2.586974917745978
+ - -4.696329590790729
+ - -5.255147941203569
+ - -6.21130434926338
+ - -3.175283284026149
+ - 3.482911887366128
+ - 6.485437856128579
+ - 4.850574277960062
+ - 3.010680500842831
+ - 0.14185047671988063
+ - -0.7203621642328689
+ - -1.6183216685871424
+ - -3.257853767877036
+ - -3.5981099600512
+ - -0.14839236788951524
+ - 2.998199221139488
+ - 4.86521994535002
+ - 4.5866942812924965
+ - 2.337943195211792
+ - -0.7211231636715052
+ - -1.965918117840148
+ - -2.3909729674577993
+ - -4.219572759592342
+ - -3.9407402455224347
+ - 2.902529116835049
+ - 6.346727733924081
+ - 5.0020343127140015
+ - 4.100670335153184
+ - 1.4290307791747345
+ - -1.8817822818467709
+ - -4.361551974602897
+ - -5.407382386910693
+ - -6.657374875915258
+ - -3.909115915150509
+ - 3.4395409780626336
+ - 6.241509647630526
+ - 4.988016834335054
+ - 3.600256343386041
+ - 0.9915256831557784
+ - 0.35271272212399746
+ - -1.0182166405381643
+ - -3.4988576228608608
+ - -4.377670645005658
+ - -0.931096208610921
+ - 2.330904242197512
+ - 4.601281124285905
+ - 4.84392187726904
+ - 3.0022884114503574
+ - 0.13226680795985912
+ - -0.7143444737325246
+ - -1.6391218349959558
+ - -3.1081849688606433
+ - -3.5157518235683898
+ - -0.14087431017622712
+ - 3.0015664027427262
+ - 5.176136106224364
+ - 6.788568352312049
+ - 4.688708023238531
+ - -2.1488742060077013
+ - -4.5951745375903315
+ - -4.764554263684022
+ - -4.6951546394695916
+ - -2.6025708168643362
+ - 0.6463563077371604
+ - 3.5958327132811245
+ - 5.3736425562893135
+ - 11.362129100984884
+ - 8.194612233216873
+ - -4.350452433218283
+ - -6.652232680656463
+ - -4.60154061436709
+ - -4.835608145263353
+ - -2.9871608706987653
+ - 0.1869659242829572
+ - 3.25965325251981
+ - 5.274865807354169
+ - 6.853440348881976
+ - 4.652610440437212
+ - -2.424716087125185
+ - -4.929446348200273
+ - -4.859295118369295
+ - -4.573718202622063
+ - -2.754246607764926
+ - -2.6180543170038604
+ - -0.4062491172082141
+ - 4.035318233722699
+ - 5.851731979537882
+ - 2.5533549084257112
+ - -0.6799737895041297
+ - -3.6328773082724943
+ - -4.988037491879769
+ - -4.189586284309692
+ - -1.976689666295737
+ - -1.6048523992987846
+ - 0.24991700823123505
+ - 3.847801229061582
+ - 5.256113353184385
+ - 1.840299568092674
+ - -1.453015621432382
+ - -4.298423019625125
+ - -5.914945720885693
+ - -4.305834645626529
+ - 0.5274195593301578
+ - 2.5686901913235776
+ - 3.9503103985061965
+ - 5.0090291699619645
+ - 3.9137143720160648
+ - 1.0852176820430535
+ - -2.1911178295403846
+ - -4.7706489061362385
+ - -7.071282547652127
+ - -4.512613547600775
+ - -0.27131266296604434
+ - 0.20460341012063094
+ - 4.51326809225043
+ - 7.10045967631372
+ - 3.1708908526875605
+ - 0.061303342606240416
+ - -3.086728841807953
+ - -4.878985445994195
+ - -4.5616212152882625
+ - -2.7106377724594535
+ - -2.603221287758096
+ - -0.5481828193778316
+ - 4.322080236232493
+ - 5.9454542329840585
+ - 2.5158864568194197
+ - -0.7296575738195653
+ - -3.768810496534259
+ - -5.251414253558865
+ - -3.8512572922992097
+ - -0.2686114173912276
+ - 1.5803911962489285
+ - 3.460277650635771
+ - 4.973089241135782
+ - 4.3491038173377605
+ - 1.8007925248665042
+ - -1.5048767866362756
+ - -4.344314843247848
+ - -5.852471458425423
+ - -4.042018225804517
+ - 0.3893106201400571
+ - 2.59769884872869
+ - 3.9943764995812603
+ - 5.0256527439754155
+ - 4.3871375145664215
+ - 4.963429229244928
+ - 2.4486790952086603
+ - -4.661727908369611
+ - -6.87457214883052
+ - -4.053387994414579
+ - -1.3296737477291118
+ - 1.9775012700671182
+ - 4.419704928714806
+ - 4.945439942846856
+ - 3.8186467716756223
+ - 6.710210450910591
+ - 5.25553741492215
+- - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 0.0
+ - 2.4554564570794635
+ - 2.917794725547957
+ - -0.5404120025023113
+ - -2.545058025022901
+ - -3.4609402217236926
+ - -2.8494091998373876
+ - -1.0168196963841416
+ - 1.1781555470378748
+ - 2.086536408608889
+ - 2.1116723716571024
+ - 1.4555775000751732
+ - 0.9941318233746644
+ - -1.0739623913243568
+ - -2.8833309710710378
+ - -3.748873376869669
+ - -4.572353224380824
+ - -2.544930487897277
+ - 1.9923931791164935
+ - 4.080044932705076
+ - 3.455098546693311
+ - 2.6430337804769257
+ - 0.6890628248717823
+ - -1.5749659222718646
+ - -3.1468129174638326
+ - -3.6815563521979633
+ - -4.394651824317531
+ - -2.3098692581823443
+ - 2.2899608342344386
+ - 4.37692723334724
+ - 3.3971931993889712
+ - 2.2620236320970717
+ - 0.35665767151569194
+ - -0.1709775981940567
+ - -0.9151567705714683
+ - -2.3859571944035163
+ - -2.752580798607256
+ - -0.3408050198525998
+ - 1.8709580166645314
+ - 3.2851960932232
+ - 3.251102475534407
+ - 1.8194068280249134
+ - -0.2391772290710394
+ - -1.002906763926047
+ - -1.4614474051147606
+ - -3.0339700898598627
+ - -2.8605438855339016
+ - 1.8309643558820305
+ - 4.167339063468179
+ - 3.426603367157773
+ - 2.957903654401986
+ - 1.212969417756859
+ - -1.0730414598458249
+ - -2.882528756232933
+ - -3.7463207539870993
+ - -4.655362505491634
+ - -2.791024297933808
+ - 2.230694737110958
+ - 4.159120261421307
+ - 3.454870381261672
+ - 2.642866575560122
+ - 0.9369841500805917
+ - 0.5625377231390329
+ - -0.5096156614918291
+ - -2.51112370091928
+ - -3.2541814966992386
+ - -0.8752574331651389
+ - 1.3918804218929606
+ - 3.068117375278509
+ - 3.3927201734530095
+ - 2.2564539856566137
+ - 0.35016177024751033
+ - -0.17285879368886287
+ - -0.9468509981650985
+ - -2.2675439457180957
+ - -2.691333444397582
+ - -0.3358665025284137
+ - 1.8731510226190977
+ - 3.481048053897844
+ - 4.611766958114848
+ - 3.2426484230581525
+ - -1.2786695831242492
+ - -2.91567984250589
+ - -3.20336634256119
+ - -3.312893676326778
+ - -1.9954814352149228
+ - 0.20773960591476157
+ - 2.307030745675631
+ - 3.657008447944594
+ - 7.812416778436697
+ - 5.6606861417733105
+ - -2.6604483142766675
+ - -4.136499582797554
+ - -3.070640778778808
+ - -3.3885566563070015
+ - -2.2477454961276573
+ - -0.11009896613843223
+ - 2.060706988991165
+ - 3.5656512629864774
+ - 4.6781795978192875
+ - 3.232750872369608
+ - -1.4756798733985126
+ - -3.1607850935654205
+ - -3.2838079594830405
+ - -3.2439805388247795
+ - -2.118108712903108
+ - -2.0958914691183734
+ - -0.475352007020123
+ - 2.8170002578668503
+ - 4.182414433984064
+ - 1.9619526546813009
+ - -0.2310333982429064
+ - -2.3329857512128718
+ - -3.4094609052249645
+ - -3.0128879344532886
+ - -1.6012025761696183
+ - -1.4149730305303159
+ - -0.024564053413143848
+ - 2.718009774188655
+ - 3.8149596158227683
+ - 1.4882391551674168
+ - -0.770628236805569
+ - -2.7979038613909077
+ - -3.904247873951451
+ - -2.906807441871005
+ - 0.1517259056858704
+ - 1.4642811558959288
+ - 2.5702469585190935
+ - 3.4474780176431725
+ - 2.842765369376539
+ - 0.97967179872602
+ - -1.2922826937593754
+ - -3.1572265600447587
+ - -4.7328240351224125
+ - -3.0875007098413523
+ - -0.4264964527175868
+ - -0.09923053934579895
+ - 3.11994992511876
+ - 5.013707014122117
+ - 2.366087659216201
+ - 0.28043329919573906
+ - -1.934111453159277
+ - -3.299816383995726
+ - -3.2376974226177224
+ - -2.088963505611172
+ - -2.09201089100741
+ - -0.5874908014531274
+ - 3.027060918914678
+ - 4.252535575903846
+ - 1.9370686598679516
+ - -0.2659696477837442
+ - -2.405649680039881
+ - -3.4123064037831647
+ - -2.577347326471555
+ - -0.38068071138535603
+ - 0.7765467749098585
+ - 2.207496668544166
+ - 3.387658712305472
+ - 3.112821065782249
+ - 1.4611472063414306
+ - -0.8077996402160035
+ - -2.832236677801913
+ - -3.8677781382692284
+ - -2.7384473310651973
+ - 0.07231878565058572
+ - 1.4921068308400427
+ - 2.6029689270146372
+ - 3.461332372120818
+ - 3.1713793204372447
+ - 3.6426267887210813
+ - 1.8755892685055031
+ - -3.1734458991547583
+ - -4.763424695918232
+ - -2.929074197031434
+ - -1.14444465605308
+ - 1.1401954023346128
+ - 2.9271594011710858
+ - 3.44372803868973
+ - 2.8113192016260986
+ - 5.052618756069655
+ - 3.351727442969951
+observable_names:
+- BPM_001
+- BPM_002
+- BPM_003
+- BPM_004
+- BPM_005
+- BPM_006
+- BPM_007
+- BPM_008
+- BPM_009
+- BPM_010
+- BPM_011
+- BPM_012
+- BPM_013
+- BPM_014
+- BPM_015
+- BPM_016
+- BPM_017
+- BPM_018
+- BPM_019
+- BPM_020
+- BPM_021
+- BPM_022
+- BPM_023
+- BPM_024
+- BPM_025
+- BPM_026
+- BPM_027
+- BPM_028
+- BPM_029
+- BPM_030
+- BPM_031
+- BPM_032
+- BPM_033
+- BPM_034
+- BPM_035
+- BPM_036
+- BPM_037
+- BPM_038
+- BPM_039
+- BPM_040
+- BPM_041
+- BPM_042
+- BPM_043
+- BPM_044
+- BPM_045
+- BPM_046
+- BPM_047
+- BPM_048
+- BPM_049
+- BPM_050
+- BPM_051
+- BPM_052
+- BPM_053
+- BPM_054
+- BPM_055
+- BPM_056
+- BPM_057
+- BPM_058
+- BPM_059
+- BPM_060
+- BPM_061
+- BPM_062
+- BPM_063
+- BPM_064
+- BPM_065
+- BPM_066
+- BPM_067
+- BPM_068
+- BPM_069
+- BPM_070
+- BPM_071
+- BPM_072
+- BPM_073
+- BPM_074
+- BPM_075
+- BPM_076
+- BPM_077
+- BPM_078
+- BPM_079
+- BPM_080
+- BPM_081
+- BPM_082
+- BPM_083
+- BPM_084
+- BPM_085
+- BPM_086
+- BPM_087
+- BPM_088
+- BPM_089
+- BPM_090
+- BPM_091
+- BPM_092
+- BPM_093
+- BPM_094
+- BPM_095
+- BPM_096
+- BPM_097
+- BPM_098
+- BPM_099
+- BPM_100
+- BPM_101
+- BPM_102
+- BPM_103
+- BPM_104
+- BPM_105
+- BPM_106
+- BPM_107
+- BPM_108
+- BPM_109
+- BPM_110
+- BPM_111
+- BPM_112
+- BPM_113
+- BPM_114
+- BPM_115
+- BPM_116
+- BPM_117
+- BPM_118
+- BPM_119
+- BPM_120
+- BPM_121
+- BPM_122
+- BPM_123
+- BPM_124
+- BPM_125
+- BPM_126
+- BPM_127
+- BPM_128
+- BPM_129
+- BPM_130
+- BPM_131
+- BPM_132
+- BPM_133
+- BPM_134
+- BPM_135
+- BPM_136
+- BPM_137
+- BPM_138
+- BPM_139
+- BPM_140
+- BPM_141
+- BPM_142
+- BPM_143
+- BPM_144
+- BPM_145
+- BPM_146
+- BPM_147
+- BPM_148
+- BPM_149
+- BPM_150
+- BPM_151
+- BPM_152
+- BPM_153
+- BPM_154
+- BPM_155
+- BPM_156
+- BPM_157
+- BPM_158
+- BPM_159
+- BPM_160
+- BPM_161
+- BPM_162
+- BPM_163
+- BPM_164
+- BPM_165
+- BPM_166
+- BPM_167
+- BPM_168
+- BPM_169
+- BPM_170
+- BPM_171
+- BPM_172
+- BPM_173
+- BPM_174
+- BPM_175
+- BPM_176
+- BPM_177
+- BPM_178
+- BPM_179
+- BPM_180
+- BPM_001
+- BPM_002
+- BPM_003
+- BPM_004
+- BPM_005
+- BPM_006
+- BPM_007
+- BPM_008
+- BPM_009
+- BPM_010
+- BPM_011
+- BPM_012
+- BPM_013
+- BPM_014
+- BPM_015
+- BPM_016
+- BPM_017
+- BPM_018
+- BPM_019
+- BPM_020
+- BPM_021
+- BPM_022
+- BPM_023
+- BPM_024
+- BPM_025
+- BPM_026
+- BPM_027
+- BPM_028
+- BPM_029
+- BPM_030
+- BPM_031
+- BPM_032
+- BPM_033
+- BPM_034
+- BPM_035
+- BPM_036
+- BPM_037
+- BPM_038
+- BPM_039
+- BPM_040
+- BPM_041
+- BPM_042
+- BPM_043
+- BPM_044
+- BPM_045
+- BPM_046
+- BPM_047
+- BPM_048
+- BPM_049
+- BPM_050
+- BPM_051
+- BPM_052
+- BPM_053
+- BPM_054
+- BPM_055
+- BPM_056
+- BPM_057
+- BPM_058
+- BPM_059
+- BPM_060
+- BPM_061
+- BPM_062
+- BPM_063
+- BPM_064
+- BPM_065
+- BPM_066
+- BPM_067
+- BPM_068
+- BPM_069
+- BPM_070
+- BPM_071
+- BPM_072
+- BPM_073
+- BPM_074
+- BPM_075
+- BPM_076
+- BPM_077
+- BPM_078
+- BPM_079
+- BPM_080
+- BPM_081
+- BPM_082
+- BPM_083
+- BPM_084
+- BPM_085
+- BPM_086
+- BPM_087
+- BPM_088
+- BPM_089
+- BPM_090
+- BPM_091
+- BPM_092
+- BPM_093
+- BPM_094
+- BPM_095
+- BPM_096
+- BPM_097
+- BPM_098
+- BPM_099
+- BPM_100
+- BPM_101
+- BPM_102
+- BPM_103
+- BPM_104
+- BPM_105
+- BPM_106
+- BPM_107
+- BPM_108
+- BPM_109
+- BPM_110
+- BPM_111
+- BPM_112
+- BPM_113
+- BPM_114
+- BPM_115
+- BPM_116
+- BPM_117
+- BPM_118
+- BPM_119
+- BPM_120
+- BPM_121
+- BPM_122
+- BPM_123
+- BPM_124
+- BPM_125
+- BPM_126
+- BPM_127
+- BPM_128
+- BPM_129
+- BPM_130
+- BPM_131
+- BPM_132
+- BPM_133
+- BPM_134
+- BPM_135
+- BPM_136
+- BPM_137
+- BPM_138
+- BPM_139
+- BPM_140
+- BPM_141
+- BPM_142
+- BPM_143
+- BPM_144
+- BPM_145
+- BPM_146
+- BPM_147
+- BPM_148
+- BPM_149
+- BPM_150
+- BPM_151
+- BPM_152
+- BPM_153
+- BPM_154
+- BPM_155
+- BPM_156
+- BPM_157
+- BPM_158
+- BPM_159
+- BPM_160
+- BPM_161
+- BPM_162
+- BPM_163
+- BPM_164
+- BPM_165
+- BPM_166
+- BPM_167
+- BPM_168
+- BPM_169
+- BPM_170
+- BPM_171
+- BPM_172
+- BPM_173
+- BPM_174
+- BPM_175
+- BPM_176
+- BPM_177
+- BPM_178
+- BPM_179
+- BPM_180
+observable_planes:
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+rf_response: null
+type: pyaml.tuning_tools.orbit_response_matrix_data
+variable_names:
+- SH1_COR_001.hcorrector
+- SH2_HCOR_001.hcorrector
+- SXF11_HCOR_001.hcorrector
+- SXF1_HCOR_001.hcorrector
+- SXF13_HCOR_001.hcorrector
+- SXF13_HCOR_002.hcorrector
+- SXF1_HCOR_002.hcorrector
+- SXF12_HCOR_001.hcorrector
+- SH6_COR_001.hcorrector
+- SH4_COR_001.hcorrector
+- SH4_COR_002.hcorrector
+- SH6_COR_002.hcorrector
+- SXF21_HCOR_001.hcorrector
+- SXF2_HCOR_001.hcorrector
+- SXF22_HCOR_001.hcorrector
+- SH9_COR_001.hcorrector
+- SH7_COR_001.hcorrector
+- SH7_COR_002.hcorrector
+- SH9_COR_002.hcorrector
+- SXF31_HCOR_001.hcorrector
+- SXF3_HCOR_001.hcorrector
+- SXF33_HCOR_001.hcorrector
+- SXF33_HCOR_002.hcorrector
+- SXF3_HCOR_002.hcorrector
+- SXF32_HCOR_001.hcorrector
+- SH9_COR_003.hcorrector
+- SH7_COR_003.hcorrector
+- SH7_COR_004.hcorrector
+- SH9_COR_004.hcorrector
+- SXF41_HCOR_001.hcorrector
+- SXF4_HCOR_001.hcorrector
+- SXF42_HCOR_001.hcorrector
+- SH12_COR_001.hcorrector
+- SH10_COR_001.hcorrector
+- SH10_COR_002.hcorrector
+- SH12_COR_002.hcorrector
+- SXF51_HCOR_001.hcorrector
+- SXF5_HCOR_001.hcorrector
+- SXF53_HCOR_001.hcorrector
+- SXF53_HCOR_002.hcorrector
+- SXF5_HCOR_002.hcorrector
+- SXF52_HCOR_001.hcorrector
+- SH14_HCOR_001.hcorrector
+- SH13_COR_001.hcorrector
+- SH16_COR_001.hcorrector
+- SH16_COR_002.hcorrector
+- SH13_COR_002.hcorrector
+- SH14_HCOR_002.hcorrector
+- SXF52_HCOR_002.hcorrector
+- SXF5_HCOR_003.hcorrector
+- SXF53_HCOR_003.hcorrector
+- SXF53_HCOR_004.hcorrector
+- SXF5_HCOR_004.hcorrector
+- SXF51_HCOR_002.hcorrector
+- SH12_COR_003.hcorrector
+- SH10_COR_003.hcorrector
+- SH10_COR_004.hcorrector
+- SH12_COR_004.hcorrector
+- SXF42_HCOR_002.hcorrector
+- SXF4_HCOR_002.hcorrector
+- SXF41_HCOR_002.hcorrector
+- SH9_COR_005.hcorrector
+- SH7_COR_005.hcorrector
+- SH7_COR_006.hcorrector
+- SH9_COR_006.hcorrector
+- SXF32_HCOR_002.hcorrector
+- SXF3_HCOR_003.hcorrector
+- SXF33_HCOR_003.hcorrector
+- SXF33_HCOR_004.hcorrector
+- SXF3_HCOR_004.hcorrector
+- SXF31_HCOR_002.hcorrector
+- SH9_COR_007.hcorrector
+- SH7_COR_007.hcorrector
+- SH7_COR_008.hcorrector
+- SH9_COR_008.hcorrector
+- SXF22_HCOR_002.hcorrector
+- SXF2_HCOR_002.hcorrector
+- SXF21_HCOR_002.hcorrector
+- SH6_COR_003.hcorrector
+- SH4_COR_003.hcorrector
+- SH4_COR_004.hcorrector
+- SH6_COR_004.hcorrector
+- SXF12_HCOR_002.hcorrector
+- SXF1_HCOR_003.hcorrector
+- SXF13_HCOR_003.hcorrector
+- SXF13_HCOR_004.hcorrector
+- SXF1_HCOR_004.hcorrector
+- SXF11_HCOR_002.hcorrector
+- SH2_HCOR_002.hcorrector
+- SH1_COR_002.hcorrector
+- SH1_COR_003.hcorrector
+- SH2_HCOR_003.hcorrector
+- SXF11_HCOR_003.hcorrector
+- SXF1_HCOR_005.hcorrector
+- SXF13_HCOR_005.hcorrector
+- SXF13_HCOR_006.hcorrector
+- SXF1_HCOR_006.hcorrector
+- SXF12_HCOR_003.hcorrector
+- SH6_COR_005.hcorrector
+- SH4_COR_005.hcorrector
+- SH4_COR_006.hcorrector
+- SH6_COR_006.hcorrector
+- SXF21_HCOR_003.hcorrector
+- SXF2_HCOR_003.hcorrector
+- SXF22_HCOR_003.hcorrector
+- SH9_COR_009.hcorrector
+- SH7_COR_009.hcorrector
+- SH7_COR_010.hcorrector
+- SH9_COR_010.hcorrector
+- SXF31_HCOR_003.hcorrector
+- SXF3_HCOR_005.hcorrector
+- SXF33_HCOR_005.hcorrector
+- SXF33_HCOR_006.hcorrector
+- SXF3_HCOR_006.hcorrector
+- SXF32_HCOR_003.hcorrector
+- SH9_COR_011.hcorrector
+- SH7_COR_011.hcorrector
+- SH7_COR_012.hcorrector
+- SH9_COR_012.hcorrector
+- SXF41_HCOR_003.hcorrector
+- SXF4_HCOR_003.hcorrector
+- SXF42_HCOR_003.hcorrector
+- SH12_COR_005.hcorrector
+- SH10_COR_005.hcorrector
+- SH10_COR_006.hcorrector
+- SH12_COR_006.hcorrector
+- SXF51_HCOR_003.hcorrector
+- SXF5_HCOR_005.hcorrector
+- SXF53_HCOR_005.hcorrector
+- SXF53_HCOR_006.hcorrector
+- SXF5_HCOR_006.hcorrector
+- SXF52_HCOR_003.hcorrector
+- SH14_HCOR_003.hcorrector
+- SH13_COR_003.hcorrector
+- SH16_COR_003.hcorrector
+- SH16_COR_004.hcorrector
+- SH13_COR_004.hcorrector
+- SH14_HCOR_004.hcorrector
+- SXF52_HCOR_004.hcorrector
+- SXF5_HCOR_007.hcorrector
+- SXF53_HCOR_007.hcorrector
+- SXF53_HCOR_008.hcorrector
+- SXF5_HCOR_008.hcorrector
+- SXF51_HCOR_004.hcorrector
+- SH12_COR_007.hcorrector
+- SH10_COR_007.hcorrector
+- SH10_COR_008.hcorrector
+- SH12_COR_008.hcorrector
+- SXF42_HCOR_004.hcorrector
+- SXF4_HCOR_004.hcorrector
+- SXF41_HCOR_004.hcorrector
+- SH9_COR_013.hcorrector
+- SH7_COR_013.hcorrector
+- SH7_COR_014.hcorrector
+- SH9_COR_014.hcorrector
+- SXF32_HCOR_004.hcorrector
+- SXF3_HCOR_007.hcorrector
+- SXF33_HCOR_007.hcorrector
+- SXF33_HCOR_008.hcorrector
+- SXF3_HCOR_008.hcorrector
+- SXF31_HCOR_004.hcorrector
+- SH9_COR_015.hcorrector
+- SH7_COR_015.hcorrector
+- SH7_COR_016.hcorrector
+- SH9_COR_016.hcorrector
+- SXF22_HCOR_004.hcorrector
+- SXF2_HCOR_004.hcorrector
+- SXF21_HCOR_004.hcorrector
+- SH6_COR_007.hcorrector
+- SH4_COR_007.hcorrector
+- SH4_COR_008.hcorrector
+- SH6_COR_008.hcorrector
+- SXF12_HCOR_004.hcorrector
+- SXF1_HCOR_007.hcorrector
+- SXF13_HCOR_007.hcorrector
+- SXF13_HCOR_008.hcorrector
+- SXF1_HCOR_008.hcorrector
+- SXF11_HCOR_004.hcorrector
+- SH2_HCOR_004.hcorrector
+- SH1_COR_004.hcorrector
+- SH1_COR_001.vcorrector
+- SH3_VCOR_001.vcorrector
+- SXD11_VCOR_001.vcorrector
+- SXD1_VCOR_001.vcorrector
+- SXD13_VCOR_001.vcorrector
+- SXD1_VCOR_002.vcorrector
+- SXD1_VCOR_003.vcorrector
+- SXD12_VCOR_001.vcorrector
+- SH6_COR_001.vcorrector
+- SH4_COR_001.vcorrector
+- SH4_COR_002.vcorrector
+- SH6_COR_002.vcorrector
+- SXD21_VCOR_001.vcorrector
+- SXD2_VCOR_001.vcorrector
+- SXD22_VCOR_001.vcorrector
+- SH9_COR_001.vcorrector
+- SH7_COR_001.vcorrector
+- SH7_COR_002.vcorrector
+- SH9_COR_002.vcorrector
+- SXD31_VCOR_001.vcorrector
+- SXD3_VCOR_001.vcorrector
+- SXD33_VCOR_001.vcorrector
+- SXD3_VCOR_002.vcorrector
+- SXD3_VCOR_003.vcorrector
+- SXD32_VCOR_001.vcorrector
+- SH9_COR_003.vcorrector
+- SH7_COR_003.vcorrector
+- SH7_COR_004.vcorrector
+- SH9_COR_004.vcorrector
+- SXD41_VCOR_001.vcorrector
+- SXD4_VCOR_001.vcorrector
+- SXD42_VCOR_001.vcorrector
+- SH12_COR_001.vcorrector
+- SH10_COR_001.vcorrector
+- SH10_COR_002.vcorrector
+- SH12_COR_002.vcorrector
+- SXD51_VCOR_001.vcorrector
+- SXD5_VCOR_001.vcorrector
+- SXD53_VCOR_001.vcorrector
+- SXD5_VCOR_002.vcorrector
+- SXD5_VCOR_003.vcorrector
+- SXD52_VCOR_001.vcorrector
+- SH15_VCOR_001.vcorrector
+- SH13_COR_001.vcorrector
+- SH16_COR_001.vcorrector
+- SH16_COR_002.vcorrector
+- SH13_COR_002.vcorrector
+- SH15_VCOR_002.vcorrector
+- SXD52_VCOR_002.vcorrector
+- SXD5_VCOR_004.vcorrector
+- SXD53_VCOR_002.vcorrector
+- SXD5_VCOR_005.vcorrector
+- SXD5_VCOR_006.vcorrector
+- SXD51_VCOR_002.vcorrector
+- SH12_COR_003.vcorrector
+- SH10_COR_003.vcorrector
+- SH10_COR_004.vcorrector
+- SH12_COR_004.vcorrector
+- SXD42_VCOR_002.vcorrector
+- SXD4_VCOR_002.vcorrector
+- SXD41_VCOR_002.vcorrector
+- SH9_COR_005.vcorrector
+- SH7_COR_005.vcorrector
+- SH7_COR_006.vcorrector
+- SH9_COR_006.vcorrector
+- SXD32_VCOR_002.vcorrector
+- SXD3_VCOR_004.vcorrector
+- SXD33_VCOR_002.vcorrector
+- SXD3_VCOR_005.vcorrector
+- SXD3_VCOR_006.vcorrector
+- SXD31_VCOR_002.vcorrector
+- SH9_COR_007.vcorrector
+- SH7_COR_007.vcorrector
+- SH7_COR_008.vcorrector
+- SH9_COR_008.vcorrector
+- SXD22_VCOR_002.vcorrector
+- SXD2_VCOR_002.vcorrector
+- SXD21_VCOR_002.vcorrector
+- SH6_COR_003.vcorrector
+- SH4_COR_003.vcorrector
+- SH4_COR_004.vcorrector
+- SH6_COR_004.vcorrector
+- SXD12_VCOR_002.vcorrector
+- SXD1_VCOR_004.vcorrector
+- SXD13_VCOR_002.vcorrector
+- SXD1_VCOR_005.vcorrector
+- SXD1_VCOR_006.vcorrector
+- SXD11_VCOR_002.vcorrector
+- SH3_VCOR_002.vcorrector
+- SH1_COR_002.vcorrector
+- SH1_COR_003.vcorrector
+- SH3_VCOR_003.vcorrector
+- SXD11_VCOR_003.vcorrector
+- SXD1_VCOR_007.vcorrector
+- SXD13_VCOR_003.vcorrector
+- SXD1_VCOR_008.vcorrector
+- SXD1_VCOR_009.vcorrector
+- SXD12_VCOR_003.vcorrector
+- SH6_COR_005.vcorrector
+- SH4_COR_005.vcorrector
+- SH4_COR_006.vcorrector
+- SH6_COR_006.vcorrector
+- SXD21_VCOR_003.vcorrector
+- SXD2_VCOR_003.vcorrector
+- SXD22_VCOR_003.vcorrector
+- SH9_COR_009.vcorrector
+- SH7_COR_009.vcorrector
+- SH7_COR_010.vcorrector
+- SH9_COR_010.vcorrector
+- SXD31_VCOR_003.vcorrector
+- SXD3_VCOR_007.vcorrector
+- SXD33_VCOR_003.vcorrector
+- SXD3_VCOR_008.vcorrector
+- SXD3_VCOR_009.vcorrector
+- SXD32_VCOR_003.vcorrector
+- SH9_COR_011.vcorrector
+- SH7_COR_011.vcorrector
+- SH7_COR_012.vcorrector
+- SH9_COR_012.vcorrector
+- SXD41_VCOR_003.vcorrector
+- SXD4_VCOR_003.vcorrector
+- SXD42_VCOR_003.vcorrector
+- SH12_COR_005.vcorrector
+- SH10_COR_005.vcorrector
+- SH10_COR_006.vcorrector
+- SH12_COR_006.vcorrector
+- SXD51_VCOR_003.vcorrector
+- SXD5_VCOR_007.vcorrector
+- SXD53_VCOR_003.vcorrector
+- SXD5_VCOR_008.vcorrector
+- SXD5_VCOR_009.vcorrector
+- SXD52_VCOR_003.vcorrector
+- SH15_VCOR_003.vcorrector
+- SH13_COR_003.vcorrector
+- SH16_COR_003.vcorrector
+- SH16_COR_004.vcorrector
+- SH13_COR_004.vcorrector
+- SH15_VCOR_004.vcorrector
+- SXD52_VCOR_004.vcorrector
+- SXD5_VCOR_010.vcorrector
+- SXD53_VCOR_004.vcorrector
+- SXD5_VCOR_011.vcorrector
+- SXD5_VCOR_012.vcorrector
+- SXD51_VCOR_004.vcorrector
+- SH12_COR_007.vcorrector
+- SH10_COR_007.vcorrector
+- SH10_COR_008.vcorrector
+- SH12_COR_008.vcorrector
+- SXD42_VCOR_004.vcorrector
+- SXD4_VCOR_004.vcorrector
+- SXD41_VCOR_004.vcorrector
+- SH9_COR_013.vcorrector
+- SH7_COR_013.vcorrector
+- SH7_COR_014.vcorrector
+- SH9_COR_014.vcorrector
+- SXD32_VCOR_004.vcorrector
+- SXD3_VCOR_010.vcorrector
+- SXD33_VCOR_004.vcorrector
+- SXD3_VCOR_011.vcorrector
+- SXD3_VCOR_012.vcorrector
+- SXD31_VCOR_004.vcorrector
+- SH9_COR_015.vcorrector
+- SH7_COR_015.vcorrector
+- SH7_COR_016.vcorrector
+- SH9_COR_016.vcorrector
+- SXD22_VCOR_004.vcorrector
+- SXD2_VCOR_004.vcorrector
+- SXD21_VCOR_004.vcorrector
+- SH6_COR_007.vcorrector
+- SH4_COR_007.vcorrector
+- SH4_COR_008.vcorrector
+- SH6_COR_008.vcorrector
+- SXD12_VCOR_004.vcorrector
+- SXD1_VCOR_010.vcorrector
+- SXD13_VCOR_004.vcorrector
+- SXD1_VCOR_011.vcorrector
+- SXD1_VCOR_012.vcorrector
+- SXD11_VCOR_004.vcorrector
+- SH3_VCOR_004.vcorrector
+- SH1_COR_004.vcorrector
+variable_planes:
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- H
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
+- V
diff --git a/examples/SOLEIL_examples/p.yaml b/examples/use_cases/config/soleil_ii/p.yaml
similarity index 94%
rename from examples/SOLEIL_examples/p.yaml
rename to examples/use_cases/config/soleil_ii/p.yaml
index 270842a75..d8829096d 100644
--- a/examples/SOLEIL_examples/p.yaml
+++ b/examples/use_cases/config/soleil_ii/p.yaml
@@ -14,6 +14,7 @@ controls:
- type: tango.pyaml.controlsystem
name: live
tango_host: localhost:11000
+ catalog: catalogs.yaml
arrays: arrays.yaml
devices:
- devices.yaml
diff --git a/examples/use_cases/config/soleil_ii/trm.json b/examples/use_cases/config/soleil_ii/trm.json
new file mode 100644
index 000000000..426def208
--- /dev/null
+++ b/examples/use_cases/config/soleil_ii/trm.json
@@ -0,0 +1,639 @@
+{
+ "type": "pyaml.tuning_tools.response_matrix_data",
+ "matrix": [
+ [
+ 0.14112466920759847,
+ 0.12508652345369353,
+ 0.12508453275505982,
+ 0.12514074167291334,
+ 0.1249331279032928,
+ 0.12183144072930308,
+ 0.12167340868193821,
+ 0.12489224133035992,
+ 0.12497108739886742,
+ 0.12489106642790682,
+ 0.1251106206791308,
+ 0.2525778989868055,
+ 0.2521967843216455,
+ 0.12489672283622077,
+ 0.12499756842940246,
+ 0.12491259720848191,
+ 0.12512863077604464,
+ 0.23394571535673148,
+ 0.5130845983160326,
+ 0.5121397926818594,
+ 0.23354661677216226,
+ 0.12488240237987225,
+ 0.12500541040647017,
+ 0.1249171599502219,
+ 0.12512324022831423,
+ 0.12185264235536897,
+ 0.12189911319235303,
+ 0.12513526330848457,
+ 0.12496704837525185,
+ 0.1250623010206342,
+ 0.12487531635679838,
+ 0.23347085812827628,
+ 0.5120017926767695,
+ 0.513049860132786,
+ 0.23391357592894568,
+ 0.12514850007647182,
+ 0.12495781687896224,
+ 0.12505559756850748,
+ 0.12488163188478785,
+ 0.23413870299046624,
+ 0.23455711975417515,
+ 0.1251379387254281,
+ 0.12493071969313374,
+ 0.12502910551007163,
+ 0.1248694411874196,
+ 0.1216928599534206,
+ 0.12177476828922895,
+ 0.12489063288972924,
+ 0.12511703755666015,
+ 0.12503099354971292,
+ 0.12512544911313928,
+ 0.08214565559166997,
+ 0.08204562337521537,
+ 0.1249053826648805,
+ 0.1251131473995193,
+ 0.12503787074014117,
+ 0.1251108145198243,
+ 0.1219260426304769,
+ 0.12178369429766134,
+ 0.12507398564434724,
+ 0.1248850537348134,
+ 0.12493888150433285,
+ 0.12492708836683852,
+ 0.2343103372378641,
+ 0.23454906955003296,
+ 0.12507272994069507,
+ 0.12488963543752507,
+ 0.12493509495709043,
+ 0.12494865949366774,
+ 0.23372069465640855,
+ 0.5125093008680193,
+ 0.5128929724644293,
+ 0.23388276271302244,
+ 0.12504918486713756,
+ 0.12487770758851102,
+ 0.12491390488478249,
+ 0.12495040151672132,
+ 0.12168780455087957,
+ 0.12188983785418883,
+ 0.125002672209662,
+ 0.12513079644443925,
+ 0.12512504128842084,
+ 0.12501837816775163,
+ 0.23355339940847597,
+ 0.512293012284698,
+ 0.5123582755054978,
+ 0.23358096749323543,
+ 0.12503504157165835,
+ 0.1251316890933385,
+ 0.12514191898987947,
+ 0.125007121604237,
+ 0.2521583886772316,
+ 0.2522268604402411,
+ 0.12504585391401313,
+ 0.1251112751161909,
+ 0.12513728888244313,
+ 0.12497486167933891,
+ 0.12186825945006974,
+ 0.12167965731091357,
+ 0.12492606595837508,
+ 0.12493481624592517,
+ 0.12488038413532854,
+ 0.12507461255997776,
+ 0.1412335032626999,
+ 0.14099639540474107,
+ 0.12494483680267066,
+ 0.1251107202782653,
+ 0.12506396958222865,
+ 0.1250724206499909,
+ 0.12190834338376977,
+ 0.12175615423079544,
+ 0.12503304572128449,
+ 0.12490058808276028,
+ 0.12492440711811548,
+ 0.12496804304348852,
+ 0.25235818073671146,
+ 0.2524739429452527,
+ 0.12503251704257257,
+ 0.12491032147168846,
+ 0.12492612757469823,
+ 0.12498937821542322,
+ 0.2337761973822683,
+ 0.5126473829240863,
+ 0.5127268271641894,
+ 0.2338097557136043,
+ 0.12501049562366195,
+ 0.1249031371467757,
+ 0.1249106194943228,
+ 0.1249900760339484,
+ 0.12172281377556549,
+ 0.12189575513329998,
+ 0.1250348199944573,
+ 0.12509627951851066,
+ 0.12511485575938952,
+ 0.12498412494771349,
+ 0.23352781944210865,
+ 0.5122132589527317,
+ 0.5125181045678162,
+ 0.23365659033952602,
+ 0.12506332168987777,
+ 0.1250944128820819,
+ 0.12512627714794666,
+ 0.12497635608624269,
+ 0.2341619744653245,
+ 0.2343139838603958,
+ 0.12506970693534902,
+ 0.12507197670685866,
+ 0.1251165023583023,
+ 0.1249481952753928,
+ 0.12182854241085672,
+ 0.12169743659451449,
+ 0.12491427520955334,
+ 0.12497575448425224,
+ 0.12491147396889724,
+ 0.1250892315471097,
+ 0.08219843631290802,
+ 0.08206246297723374,
+ 0.1250349181163013,
+ 0.12513122083346317,
+ 0.12514790788234476,
+ 0.12498830866819466,
+ 0.12188838051635509,
+ 0.12167057153650296,
+ 0.12493195640961297,
+ 0.12491408052642261,
+ 0.12486457428564912,
+ 0.12506706031423231,
+ 0.234555307264378,
+ 0.23433108080614384,
+ 0.1249295276673501,
+ 0.12493799183388443,
+ 0.12487863944257716,
+ 0.12509151539336072,
+ 0.23394543421376146,
+ 0.5130454845398702,
+ 0.5123395951689702,
+ 0.2336472570811654,
+ 0.12490764973335788,
+ 0.12494444353022827,
+ 0.12487641218567047,
+ 0.1250933091199169,
+ 0.12179576624629651,
+ 0.12193564965254367,
+ 0.12512950019649693,
+ 0.12502658308219394,
+ 0.1251156919200025,
+ 0.12488631985696497,
+ 0.23341921333655535,
+ 0.5119241964569032,
+ 0.5129409178348254,
+ 0.23384869020104393,
+ 0.1251513244665825,
+ 0.1250147568461757,
+ 0.12511266738893245,
+ 0.12488410190400479,
+ 0.25203996090977787,
+ 0.25251263557221626,
+ 0.12514929102191985,
+ 0.12498393586082845,
+ 0.12508872265559745,
+ 0.12486332516745136,
+ 0.12172912257751856,
+ 0.12171778880187833,
+ 0.12486039290365847,
+ 0.12507655523041894,
+ 0.1249700606860138,
+ 0.12515101924184813,
+ 0.1412425067133516
+ ],
+ [
+ -1.1291306773138499,
+ -0.3362875706096613,
+ -0.3360784536978745,
+ -0.3351881718621774,
+ -0.3349023939581697,
+ -0.3383509644848126,
+ -0.33844008495925726,
+ -0.3353721237601137,
+ -0.3356969849223068,
+ -0.3363773927380076,
+ -0.3364307602541916,
+ -0.4332203997630679,
+ -0.43392518097018495,
+ -0.3364171352124301,
+ -0.3362511970063653,
+ -0.3355368139951742,
+ -0.33530543941562296,
+ -0.3915947577543544,
+ -0.19290431540330832,
+ -0.1929000825214855,
+ -0.3915879235086295,
+ -0.33495840648811726,
+ -0.33506836162999765,
+ -0.33558948840761715,
+ -0.33576922028066836,
+ -0.3398779661753504,
+ -0.339855294873348,
+ -0.33564972628952194,
+ -0.3354600521908724,
+ -0.33499231515127237,
+ -0.3349219808188031,
+ -0.39170169796781673,
+ -0.19296616001734934,
+ -0.1928523879461963,
+ -0.3915180065708346,
+ -0.33537898069646577,
+ -0.33564196050628325,
+ -0.336372197860757,
+ -0.3365153483227967,
+ -0.4197715186383122,
+ -0.41928255758733046,
+ -0.33642701015829113,
+ -0.3363303971555265,
+ -0.33556993430788884,
+ -0.3352438171575489,
+ -0.3383855031742766,
+ -0.33834025045714755,
+ -0.335005302398772,
+ -0.33531157424082636,
+ -0.3361786048195481,
+ -0.33635430271422573,
+ -0.6396050621310101,
+ -0.6372129495717527,
+ -0.3345757878208677,
+ -0.3346589217467777,
+ -0.3353610068882462,
+ -0.3356681523383753,
+ -0.34016096427241793,
+ -0.3402250312022348,
+ -0.3360058309053726,
+ -0.3357267811056053,
+ -0.3348738216057967,
+ -0.33467872326120585,
+ -0.4177170197028901,
+ -0.4178276090287536,
+ -0.3349694928494462,
+ -0.3352496548066908,
+ -0.33626047216650523,
+ -0.33654248862202696,
+ -0.3936041256182854,
+ -0.1937895093625519,
+ -0.19317499946708283,
+ -0.39261196295575784,
+ -0.3367620331842791,
+ -0.3367260379787962,
+ -0.3358788835589599,
+ -0.33544395823986717,
+ -0.3381904982250883,
+ -0.33803240912433363,
+ -0.3346107133314069,
+ -0.33497630942930234,
+ -0.33619575523197165,
+ -0.3365080315407831,
+ -0.3934053281688388,
+ -0.19363576634434665,
+ -0.19342741235950367,
+ -0.39306892823182116,
+ -0.3370553022990497,
+ -0.33699367296075033,
+ -0.33609340715390346,
+ -0.3356543431832226,
+ -0.4315540266843221,
+ -0.43280611518597967,
+ -0.33465257357001565,
+ -0.33454611701871917,
+ -0.3348408426934735,
+ -0.33511113319417696,
+ -0.33984442444562335,
+ -0.3400862536961369,
+ -0.33638574673888755,
+ -0.3362215073194341,
+ -0.33535728608807824,
+ -0.33504111750365384,
+ -1.1232204829979553,
+ -1.1274467703667468,
+ -0.3347403173517005,
+ -0.3345565940622297,
+ -0.33465120772424584,
+ -0.33488752547078393,
+ -0.339668803077231,
+ -0.3399742770728853,
+ -0.33649759276316304,
+ -0.3363952368833356,
+ -0.3355812475820952,
+ -0.33523111875721767,
+ -0.4314065312067683,
+ -0.43274559134404145,
+ -0.3348860305706358,
+ -0.33490927680424054,
+ -0.3354807023763229,
+ -0.3357752617126897,
+ -0.39340343573973646,
+ -0.19379767258659308,
+ -0.19273956246468327,
+ -0.3916950553669585,
+ -0.3364088371438645,
+ -0.3366283266588166,
+ -0.33648122217233567,
+ -0.33617995951629176,
+ -0.3388241326314212,
+ -0.3384655073891407,
+ -0.33428974418997504,
+ -0.33443373429714596,
+ -0.3354253822592246,
+ -0.3358326355137886,
+ -0.39349480143141546,
+ -0.19378481098164535,
+ -0.19297625657754836,
+ -0.3921893428063261,
+ -0.33693857757438606,
+ -0.3371439660022624,
+ -0.33682332821349803,
+ -0.33643961346563334,
+ -0.41797125930553847,
+ -0.41966511941915474,
+ -0.3351717981240343,
+ -0.33483784954840834,
+ -0.33438548667480417,
+ -0.3344679728977673,
+ -0.33911087220345193,
+ -0.3394993224553611,
+ -0.33651538597273545,
+ -0.33660325072176756,
+ -0.33614083339394973,
+ -0.3357928432849433,
+ -0.6366656061812526,
+ -0.6396809619638733,
+ -0.33589329546551694,
+ -0.3356101262976807,
+ -0.33483503640219237,
+ -0.33468029486266593,
+ -0.3385940629798134,
+ -0.33881290616544213,
+ -0.3358337572114123,
+ -0.3360844708246158,
+ -0.3363441965359981,
+ -0.3362378605951677,
+ -0.4185352442998558,
+ -0.41971641265747817,
+ -0.33595139294240184,
+ -0.3357685189950277,
+ -0.3353030431734738,
+ -0.3352270369633148,
+ -0.3920607319440883,
+ -0.19316436064203968,
+ -0.1927322297531897,
+ -0.39136303223585855,
+ -0.3352785073266751,
+ -0.3354912604870419,
+ -0.33601442842745577,
+ -0.3360924967478751,
+ -0.3397497979730213,
+ -0.33957425133329666,
+ -0.33516723969234663,
+ -0.3350121874328149,
+ -0.3349024228357922,
+ -0.33499645847762105,
+ -0.392244002635489,
+ -0.19324387636615592,
+ -0.19276227963932469,
+ -0.39146643736592823,
+ -0.335796476597261,
+ -0.33611720611625984,
+ -0.33670544371638966,
+ -0.3367118694110882,
+ -0.4334680818884329,
+ -0.4337572975473547,
+ -0.33620882316798273,
+ -0.3359803040635101,
+ -0.3351007020211405,
+ -0.3348402629781977,
+ -0.33839027219773055,
+ -0.33851110279098373,
+ -0.33547712807169283,
+ -0.33579055662269486,
+ -0.33638560901377845,
+ -0.33640296130443836,
+ -1.1275094155671628
+ ]
+ ],
+ "variable_names": [
+ "QCORR_001",
+ "QCORR_002",
+ "QCORR_003",
+ "QCORR_004",
+ "QCORR_005",
+ "QCORR_006",
+ "QCORR_007",
+ "QCORR_008",
+ "QCORR_009",
+ "QCORR_010",
+ "QCORR_011",
+ "QCORR_012",
+ "QCORR_013",
+ "QCORR_014",
+ "QCORR_015",
+ "QCORR_016",
+ "QCORR_017",
+ "QCORR_018",
+ "QCORR_019",
+ "QCORR_020",
+ "QCORR_021",
+ "QCORR_022",
+ "QCORR_023",
+ "QCORR_024",
+ "QCORR_025",
+ "QCORR_026",
+ "QCORR_027",
+ "QCORR_028",
+ "QCORR_029",
+ "QCORR_030",
+ "QCORR_031",
+ "QCORR_032",
+ "QCORR_033",
+ "QCORR_034",
+ "QCORR_035",
+ "QCORR_036",
+ "QCORR_037",
+ "QCORR_038",
+ "QCORR_039",
+ "QCORR_040",
+ "QCORR_041",
+ "QCORR_042",
+ "QCORR_043",
+ "QCORR_044",
+ "QCORR_045",
+ "QCORR_046",
+ "QCORR_047",
+ "QCORR_048",
+ "QCORR_049",
+ "QCORR_050",
+ "QCORR_051",
+ "QCORR_052",
+ "QCORR_053",
+ "QCORR_054",
+ "QCORR_055",
+ "QCORR_056",
+ "QCORR_057",
+ "QCORR_058",
+ "QCORR_059",
+ "QCORR_060",
+ "QCORR_061",
+ "QCORR_062",
+ "QCORR_063",
+ "QCORR_064",
+ "QCORR_065",
+ "QCORR_066",
+ "QCORR_067",
+ "QCORR_068",
+ "QCORR_069",
+ "QCORR_070",
+ "QCORR_071",
+ "QCORR_072",
+ "QCORR_073",
+ "QCORR_074",
+ "QCORR_075",
+ "QCORR_076",
+ "QCORR_077",
+ "QCORR_078",
+ "QCORR_079",
+ "QCORR_080",
+ "QCORR_081",
+ "QCORR_082",
+ "QCORR_083",
+ "QCORR_084",
+ "QCORR_085",
+ "QCORR_086",
+ "QCORR_087",
+ "QCORR_088",
+ "QCORR_089",
+ "QCORR_090",
+ "QCORR_091",
+ "QCORR_092",
+ "QCORR_093",
+ "QCORR_094",
+ "QCORR_095",
+ "QCORR_096",
+ "QCORR_097",
+ "QCORR_098",
+ "QCORR_099",
+ "QCORR_100",
+ "QCORR_101",
+ "QCORR_102",
+ "QCORR_103",
+ "QCORR_104",
+ "QCORR_105",
+ "QCORR_106",
+ "QCORR_107",
+ "QCORR_108",
+ "QCORR_109",
+ "QCORR_110",
+ "QCORR_111",
+ "QCORR_112",
+ "QCORR_113",
+ "QCORR_114",
+ "QCORR_115",
+ "QCORR_116",
+ "QCORR_117",
+ "QCORR_118",
+ "QCORR_119",
+ "QCORR_120",
+ "QCORR_121",
+ "QCORR_122",
+ "QCORR_123",
+ "QCORR_124",
+ "QCORR_125",
+ "QCORR_126",
+ "QCORR_127",
+ "QCORR_128",
+ "QCORR_129",
+ "QCORR_130",
+ "QCORR_131",
+ "QCORR_132",
+ "QCORR_133",
+ "QCORR_134",
+ "QCORR_135",
+ "QCORR_136",
+ "QCORR_137",
+ "QCORR_138",
+ "QCORR_139",
+ "QCORR_140",
+ "QCORR_141",
+ "QCORR_142",
+ "QCORR_143",
+ "QCORR_144",
+ "QCORR_145",
+ "QCORR_146",
+ "QCORR_147",
+ "QCORR_148",
+ "QCORR_149",
+ "QCORR_150",
+ "QCORR_151",
+ "QCORR_152",
+ "QCORR_153",
+ "QCORR_154",
+ "QCORR_155",
+ "QCORR_156",
+ "QCORR_157",
+ "QCORR_158",
+ "QCORR_159",
+ "QCORR_160",
+ "QCORR_161",
+ "QCORR_162",
+ "QCORR_163",
+ "QCORR_164",
+ "QCORR_165",
+ "QCORR_166",
+ "QCORR_167",
+ "QCORR_168",
+ "QCORR_169",
+ "QCORR_170",
+ "QCORR_171",
+ "QCORR_172",
+ "QCORR_173",
+ "QCORR_174",
+ "QCORR_175",
+ "QCORR_176",
+ "QCORR_177",
+ "QCORR_178",
+ "QCORR_179",
+ "QCORR_180",
+ "QCORR_181",
+ "QCORR_182",
+ "QCORR_183",
+ "QCORR_184",
+ "QCORR_185",
+ "QCORR_186",
+ "QCORR_187",
+ "QCORR_188",
+ "QCORR_189",
+ "QCORR_190",
+ "QCORR_191",
+ "QCORR_192",
+ "QCORR_193",
+ "QCORR_194",
+ "QCORR_195",
+ "QCORR_196",
+ "QCORR_197",
+ "QCORR_198",
+ "QCORR_199",
+ "QCORR_200",
+ "QCORR_201",
+ "QCORR_202",
+ "QCORR_203",
+ "QCORR_204",
+ "QCORR_205",
+ "QCORR_206",
+ "QCORR_207",
+ "QCORR_208"
+ ],
+ "observable_names": [
+ "BETATRON_TUNE.x",
+ "BETATRON_TUNE.y"
+ ]
+}
diff --git a/examples/SOLEIL_examples/tuning_tools.yaml b/examples/use_cases/config/soleil_ii/tuning_tools.yaml
similarity index 61%
rename from examples/SOLEIL_examples/tuning_tools.yaml
rename to examples/use_cases/config/soleil_ii/tuning_tools.yaml
index 295b9d767..5d67c0f29 100644
--- a/examples/SOLEIL_examples/tuning_tools.yaml
+++ b/examples/use_cases/config/soleil_ii/tuning_tools.yaml
@@ -1,23 +1,19 @@
- type: pyaml.diagnostics.tune_monitor
name: BETATRON_TUNE
- tune_h:
- type: tango.pyaml.attribute_read_only
- attribute: simulator/ringsimulator/ringsimulator/Tune_h
- tune_v:
- type: tango.pyaml.attribute_read_only
- attribute: simulator/ringsimulator/ringsimulator/Tune_v
+ tune_h: simulator/ringsimulator/ringsimulator/Tune_h
+ tune_v: simulator/ringsimulator/ringsimulator/Tune_v
- type: pyaml.tuning_tools.tune
name: DEFAULT_TUNE_CORRECTION
- quad_array_name: QCORR
+ quad_array_name: QForTune
betatron_tune_name: BETATRON_TUNE
- response_matrix: file:trm.json
+ response_matrix: ${path:trm.json}
- type: pyaml.tuning_tools.tune_response_matrix
name: DEFAULT_TUNE_RESPONSE_MATRIX
- quad_array_name: QCORR
+ quad_array_name: QForTune
betatron_tune_name: BETATRON_TUNE
quad_delta: 1e-3
-- type: pyaml.diagnostics.chromaticity_monitor
- name: DEFAULT_CHROMATICITY_MEASUREMENT
+- type: pyaml.tuning_tools.chromaticity_monitor
+ name: CHROMATICITY_MONITOR
betatron_tune_name: BETATRON_TUNE
rf_plant_name: RF
fit_order: 2
@@ -29,8 +25,8 @@
max_e_delta: 5e-2
- type: pyaml.tuning_tools.orbit_response_matrix
bpm_array_name: BPM
- hcorr_array_name: HCORR
- vcorr_array_name: VCORR
+ hcorr_array_name: HCorr
+ vcorr_array_name: VCorr
corrector_delta: 1e-5
name: DEFAULT_ORBIT_RESPONSE_MATRIX
- type: pyaml.tuning_tools.dispersion
@@ -40,8 +36,8 @@
name: DEFAULT_DISPERSION
- type: pyaml.tuning_tools.orbit
bpm_array_name: BPM
- hcorr_array_name: HCORR
- vcorr_array_name: VCORR
+ hcorr_array_name: HCorr
+ vcorr_array_name: VCorr
name: DEFAULT_ORBIT_CORRECTION
singular_values: 16
- response_matrix: file:orm.json
+ response_matrix: ${path:orm.json}
diff --git a/examples/use_cases/orbit_correction.png b/examples/use_cases/orbit_correction.png
new file mode 100644
index 000000000..748ae689e
Binary files /dev/null and b/examples/use_cases/orbit_correction.png differ
diff --git a/pyaml/__init__.py b/pyaml/__init__.py
index 65050bc04..0bb1c8b0b 100644
--- a/pyaml/__init__.py
+++ b/pyaml/__init__.py
@@ -16,9 +16,10 @@
import logging.config
import os
+from pyaml.common.element import ReprOptions, set_repr_options
from pyaml.common.exception import PyAMLConfigException, PyAMLException
-__all__ = ["PyAMLException", "PyAMLConfigException"]
+__all__ = ["PyAMLException", "PyAMLConfigException", "ReprOptions", "set_repr_options"]
config_file = os.getenv("PYAML_LOG_CONFIG", "pyaml_logging.conf")
diff --git a/pyaml/accelerator.py b/pyaml/accelerator.py
index 2af928af5..0bc273018 100644
--- a/pyaml/accelerator.py
+++ b/pyaml/accelerator.py
@@ -2,118 +2,176 @@
Accelerator class
"""
-from pydantic import BaseModel, ConfigDict, Field
+import warnings
from .arrays.array import ArrayConfig
-from .common.element import Element
-from .common.element_holder import ElementHolder
+from .common.element import Element, __pyaml_repr__
from .common.exception import PyAMLConfigException
+from .common.holders.element_holder import ElementHolder
from .configuration import ConfigurationManager, UnsupportedConfigurationRootError
from .configuration.factory import Factory
from .control.controlsystem import ControlSystem
from .lattice.simulator import Simulator
+from .validation import DynamicValidation, SchemaValidator, register_schema
from .yellow_pages import YellowPages
# Define the main class name for this module
PYAMLCLASS = "Accelerator"
-class ConfigModel(BaseModel):
+@register_schema
+class Accelerator(DynamicValidation):
"""
- Configuration model for Accelerator
+ Top-level accelerator object.
+
+ An Accelerator represents a complete accelerator model, including its
+ machine-wide properties, devices, arrays, control systems, and simulators.
+ It serves as the main entry point for loading, constructing, and interacting
+ with an accelerator configuration.
Parameters
----------
facility : str
- Facility name
+ Facility name.
machine : str
- Accelerator name
+ Accelerator name.
energy : float
- Accelerator nominal energy. For ramped machine,
- this value can be dynamically set
+ Nominal accelerator energy.
alphac : float, optional
- Moment compaction factor.
- harmonic_number: int, optional
- Number of bucket
+ Momentum compaction factor.
+ harmonic_number : int, optional
+ Harmonic number.
controls : list[ControlSystem], optional
- List of control system used. An accelerator
- can access several control systems
+ Control systems associated with the accelerator.
simulators : list[Simulator], optional
- Simulator list
- data_folder : str
- Data folder
+ Simulators associated with the accelerator.
arrays : list[ArrayConfig], optional
- Element family
- description : str , optional
- Acceleration description
- devices : list[.common.element.Element]
- Element list
+ Array configurations.
+ devices : list[Element], optional
+ Accelerator devices.
+ data_folder : str, optional
+ Path to the accelerator data directory.
+ description : str, optional
+ Human-readable description of the accelerator.
+
+ Attributes
+ ----------
+ live
+ Control system named ``live``, if one is configured.
+ design
+ Simulator named ``design``, if one is configured.
+ yellow_pages
+ Discovery service over the arrays, tools and diagnostics of every mode.
+
+ Methods
+ -------
+ set_energy(E)
+ Set the energy for all simulators and control systems.
+ set_mcf(alphac)
+ Set the moment compaction factor for all simulators and control systems.
+ set_harmonic_number(h)
+ Set the number of bucket.
+ add_device(config, ignore_external=False)
+ Dynamically add a device to this accelerator.
+ post_init()
+ Method triggered after all initialisations are done
+ get_description()
+ Returns the description of the accelerator
+ simulators()
+ Return all registered simulator modes.
+ controls()
+ Return all registered control modes.
+ modes()
+ Return all registered control and simulator modes.
+ from_dict(config_dict, ignore_external=False, validate=False)
+ Construct an accelerator from a dictionary.
+ load(filename, include_locations=False, ignore_external=False, validate=False)
+ Load an accelerator from a config file.
+
+ Notes
+ -----
+ Control systems and simulators are registered by name and are exposed as
+ attributes of the accelerator instance. The control system named ``"live"``
+ and the simulator named ``"design"`` are additionally available through the
+ :attr:`live` and :attr:`design` properties.
"""
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ __pyaml_repr_exclude__ = ("description", "yellow_pages")
+
+ def __init__(
+ self,
+ facility: str,
+ machine: str,
+ energy: float,
+ alphac: float | None = None,
+ harmonic_number: int | None = None,
+ controls: list[ControlSystem] | None = None,
+ simulators: list[Simulator] | None = None,
+ arrays: list[ArrayConfig] | None = None,
+ devices: list[Element] | None = None,
+ data_folder: str | None = None,
+ description: str | None = None,
+ ):
+ """
+ Initialize the Accelerator.
+ """
+ self.facility = facility
+ self.machine = machine
+ self._data_folder = data_folder
+ self.description = description
- facility: str
- machine: str
- energy: float
- alphac: float | None = None
- harmonic_number: int | None = None
- controls: list[ControlSystem] = None
- simulators: list[Simulator] = None
- data_folder: str
- description: str | None = None
- arrays: list[ArrayConfig] = Field(default=None, repr=False)
- devices: list[Element] = Field(repr=False)
+ self._energy = float(energy) if energy is not None else None
+ self._alphac = float(alphac) if alphac is not None else None
+ self._harmonic_number = int(harmonic_number) if harmonic_number is not None else None
+ self._arrays = arrays
+ self._devices = devices
-class Accelerator(object):
- """PyAML top level class"""
+ self.__design = None
+ self.__live = None
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
- __design = None
- __live = None
self._controls: dict[str, ElementHolder] = {}
self._simulators: dict[str, ElementHolder] = {}
- if cfg.controls is not None:
- for c in cfg.controls:
+ if controls is not None:
+ for c in controls:
if c.name() == "live":
self.__live = c
else:
# Add as dynamic attribute
setattr(self, c.name(), c)
- c.fill_device(cfg.devices)
+ c.fill_device(self._devices)
c._peer = self
self._controls[c.name()] = c
- if cfg.simulators is not None:
- for s in cfg.simulators:
+ if simulators is not None:
+ for s in simulators:
if s.name() == "design":
self.__design = s
else:
# Add as dynamic attribute
setattr(self, s.name(), s)
- s.fill_device(cfg.devices)
+ s.fill_device(self._devices)
s._peer = self
self._simulators[s.name()] = s
- if cfg.arrays is not None:
- for a in cfg.arrays:
- if cfg.simulators is not None:
- for s in cfg.simulators:
+ if arrays is not None:
+ for a in self._arrays:
+ if self._simulators is not None:
+ for s in self._simulators.values():
a.fill_array(s)
- if cfg.controls is not None:
- for c in cfg.controls:
+ if self._controls is not None:
+ for c in self._controls.values():
a.fill_array(c)
- if cfg.energy is not None:
- self.set_energy(cfg.energy)
+ if self._energy is not None:
+ self.set_energy(self._energy)
- if cfg.alphac is not None:
- self.set_mcf(cfg.alphac)
+ if self._alphac is not None:
+ self.set_mcf(self._alphac)
- if cfg.harmonic_number is not None:
- self.set_harmonic_number(cfg.harmonic_number)
+ if self._harmonic_number is not None:
+ self.set_harmonic_number(self._harmonic_number)
self._yellow_pages = YellowPages(self)
@@ -121,12 +179,22 @@ def __init__(self, cfg: ConfigModel):
def _set_properties(self, method: str, value):
# Sets global property
- if self._cfg.simulators is not None:
- for s in self._cfg.simulators:
+ """
+ Propagate a machine-wide property to every element of every mode.
+
+ Parameters
+ ----------
+ method : str
+ Name of the element setter to call, for example ``"set_energy"``.
+ value : object
+ Value passed to that setter on every element.
+ """
+ if self._simulators is not None:
+ for s in self._simulators.values():
m = getattr(s, method)
m(value)
- if self._cfg.controls is not None:
- for c in self._cfg.controls:
+ if self._controls is not None:
+ for c in self._controls.values():
m = getattr(c, method)
m(value)
@@ -165,46 +233,48 @@ def set_harmonic_number(self, h: int):
def add_device(self, config: dict, ignore_external=False):
"""
- Dynamically add a device to this accelerator
+ Dynamically add a device to this accelerator.
- config_dict : str
- Dictionary containing accelerator config
- ignore_external: bool
- Ignore external modules and return None for object that
- cannot be created. pydantic schema that support that an
- object is not created should handle None fields.
+ Parameters
+ ----------
+ config : dict
+ Configuration dictionary describing the device to add.
+ ignore_external : bool
+ Ignore external modules and return ``None`` for objects that
+ cannot be created. Pydantic schemas that support an absent object
+ should declare the corresponding fields as optional.
"""
- dev = Factory.depth_first_build(config, ignore_external)
+ dev = Factory.build(config, ignore_external)
if not isinstance(dev, Element):
raise PyAMLConfigException(
"Invalid device type, Element or sub classes of Element expected " + f"but got {dev.__class__.__name__}"
)
- self._cfg.devices.append(dev)
- if self._cfg.controls is not None:
- for c in self._cfg.controls:
+ self._devices.append(dev)
+ if self._controls is not None:
+ for c in self._controls:
c.fill_device([dev])
- if self._cfg.simulators is not None:
- for s in self._cfg.simulators:
+ if self._simulators is not None:
+ for s in self._simulators:
s.fill_device([dev])
def post_init(self):
"""
Method triggered after all initialisations are done
"""
- if self._cfg.simulators is not None:
- for s in self._cfg.simulators:
+ if self._simulators is not None:
+ for s in self._simulators.values():
s.post_init()
- if self._cfg.controls is not None:
- for c in self._cfg.controls:
+ if self._controls is not None:
+ for c in self._controls.values():
c.post_init()
def get_description(self) -> str:
"""
Returns the description of the accelerator
"""
- return self._cfg.description
+ return self.description
@property
def live(self) -> ControlSystem:
@@ -232,6 +302,7 @@ def design(self) -> Simulator:
@property
def yellow_pages(self) -> YellowPages:
+ """Return the yellow pages."""
return self._yellow_pages
def simulators(self) -> dict[str, "ElementHolder"]:
@@ -249,33 +320,57 @@ def modes(self) -> dict[str, "ElementHolder"]:
modes.update(self._controls)
return modes
+ def _pyaml_repr_fields(self) -> dict[str, object]:
+ return {
+ "facility": self.facility,
+ "machine": self.machine,
+ "simulators": list(self._simulators),
+ "controls": list(self._controls),
+ }
+
def __repr__(self):
- return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
+ """
+ Implement the __repr__ string.
+ """
+ return __pyaml_repr__(self)
@staticmethod
- def from_dict(config_dict: dict, ignore_external=False) -> "Accelerator":
+ def from_dict(config_dict: dict, ignore_external: bool = False, validate: bool = False) -> "Accelerator":
"""
Construct an accelerator from a dictionary.
Parameters
----------
- config_dict : str
- Dictionary containing accelerator config
- ignore_external: bool
- Ignore external modules and return None for object that
- cannot be created. pydantic schema that support that an
- object is not created should handle None fields.
+ config_dict : dict
+ Dictionary containing the accelerator configuration.
+ ignore_external : bool
+ Ignore external modules and return ``None`` for objects that
+ cannot be created. Pydantic schemas that support an absent object
+ should declare the corresponding fields as optional.
+ validate : bool
+ Validate the configuration dictionary against the registered
+ Pydantic schemas before constructing the accelerator. If ``True``,
+ validation errors are raised before the factory builds the object.
+
+ Returns
+ -------
+ Accelerator
+ Constructed accelerator instance.
"""
if ignore_external:
# control systems are external, so remove controls field
config_dict.pop("controls", None)
+
+ if validate:
+ config_dict = SchemaValidator.validate_to_dict(config_dict)
+
# Ensure factory is clean before building a new accelerator
Factory.clear()
- return Factory.depth_first_build(config_dict, ignore_external)
+ return Factory.build(config_dict, ignore_external)
@staticmethod
- def load(filename: str, use_fast_loader: bool = False, ignore_external=False) -> "Accelerator":
+ def load(filename: str, include_locations: bool = False, ignore_external=False, validate: bool = False) -> "Accelerator":
"""
Load an accelerator from a config file.
@@ -283,22 +378,35 @@ def load(filename: str, use_fast_loader: bool = False, ignore_external=False) ->
----------
filename : str
Configuration file name, yaml or json.
- use_fast_loader : bool
- Use fast yaml loader. When specified,
- no line number are reported in case of error,
+ include_locations : bool
+ When False, use faster loader but no line number
+ are reported in case of error,
only the element name that triggered the error
- will be reported in the exception)
+ will be reported in the exception
ignore_external : bool
Ignore external modules and return None for object that
cannot be created. pydantic schema that support that an
object is not created should handle None fields.
+ validate : bool
+ Validate the loaded data
"""
+
manager = ConfigurationManager()
+
+ if not validate and include_locations:
+ warnings.warn(
+ "'include_locations=True' is ignored when 'validate=False'. "
+ "Source-location metadata is only needed for validation.",
+ UserWarning,
+ stacklevel=2,
+ )
+ include_locations = False
+
try:
- manager.add(filename, use_fast_loader=use_fast_loader)
+ manager.add(filename, include_locations=include_locations)
except UnsupportedConfigurationRootError as ex:
raise PyAMLConfigException(
"Accelerator.load() expects a 'pyaml.accelerator' root configuration. "
"Use the factory APIs to build sub-elements directly."
) from ex
- return manager.build(ignore_external=ignore_external)
+ return manager.build(ignore_external=ignore_external, validate=validate)
diff --git a/pyaml/apidoc/gen_api.py b/pyaml/apidoc/gen_api.py
index 148e68733..e2b05a8ae 100644
--- a/pyaml/apidoc/gen_api.py
+++ b/pyaml/apidoc/gen_api.py
@@ -1,7 +1,6 @@
import importlib
import inspect
import sys
-from pathlib import Path
# List of PyAML modules to include in the API reference
# for i in `find . | grep ".py" | grep -v "cache" | grep -v "__init__"`;
@@ -22,74 +21,85 @@
"pyaml.arrays.serialized_magnet",
"pyaml.arrays.serialized_magnet_array",
"pyaml.bpm.bpm",
- "pyaml.bpm.bpm_model",
- "pyaml.bpm.bpm_simple_model",
- "pyaml.bpm.bpm_tiltoffset_model",
"pyaml.common.abstract",
"pyaml.common.abstract_aggregator",
"pyaml.common.constants",
"pyaml.common.element",
- "pyaml.common.element_holder",
"pyaml.common.exception",
- "pyaml.configuration.csvcurve",
- "pyaml.configuration.csvmatrix",
- "pyaml.configuration.curve",
+ "pyaml.common.holders.element_holder",
+ "pyaml.common.holders.sub_holders",
+ "pyaml.common.holders.rf_holder",
"pyaml.configuration.factory",
"pyaml.configuration.fileloader",
- "pyaml.configuration.inline_curve",
- "pyaml.configuration.inline_matrix",
"pyaml.configuration.manager",
- "pyaml.configuration.matrix",
+ "pyaml.configuration.restfetcher",
+ "pyaml.configuration.unbound_element",
"pyaml.control.abstract_impl",
"pyaml.control.controlsystem",
"pyaml.control.deviceaccess",
"pyaml.control.deviceaccesslist",
"pyaml.control.readback_value",
- "pyaml.diagnostics.chromaticity_monitor",
+ "pyaml.diagnostics.atune_monitor",
"pyaml.diagnostics.tune_monitor",
"pyaml.external.pySC_interface",
"pyaml.lattice.abstract_impl",
"pyaml.lattice.attribute_linker",
- "pyaml.lattice.element",
"pyaml.lattice.lattice_elements_linker",
"pyaml.lattice.polynom_info",
"pyaml.lattice.simulator",
"pyaml.magnet.cfm_magnet",
"pyaml.magnet.corrector",
+ "pyaml.magnet.linear_cfm_model",
+ "pyaml.magnet.linear_model",
+ "pyaml.magnet.linear_serialized_model",
"pyaml.magnet.function_mapping",
"pyaml.magnet.hcorrector",
"pyaml.magnet.identity_cfm_model",
"pyaml.magnet.identity_model",
- "pyaml.magnet.linear_cfm_model",
- "pyaml.magnet.linear_model",
- "pyaml.magnet.linear_serialized_model",
"pyaml.magnet.magnet",
+ "pyaml.magnet.serialized_magnet",
+ "pyaml.magnet.spline_model",
"pyaml.magnet.model",
"pyaml.magnet.octupole",
"pyaml.magnet.quadrupole",
- "pyaml.magnet.serialized_magnet",
"pyaml.magnet.sextupole",
"pyaml.magnet.skewoctu",
"pyaml.magnet.skewquad",
"pyaml.magnet.skewsext",
- "pyaml.magnet.spline_model",
"pyaml.magnet.vcorrector",
+ "pyaml.magnet.csvcurve",
+ "pyaml.magnet.csvmatrix",
+ "pyaml.magnet.curve",
+ "pyaml.magnet.inline_curve",
+ "pyaml.magnet.inline_matrix",
+ "pyaml.magnet.matrix",
"pyaml.rf.rf_plant",
"pyaml.rf.rf_transmitter",
# "pyaml.tuning_tools.LOCO.loco",
# "pyaml.tuning_tools.SOFB.sofb",
+ "pyaml.tuning_tools.chromaticity",
+ "pyaml.tuning_tools.measurement_tool",
+ "pyaml.tuning_tools.chromaticity_response_matrix",
"pyaml.tuning_tools.dispersion",
+ "pyaml.tuning_tools.response_matrix_data",
"pyaml.tuning_tools.orbit",
"pyaml.tuning_tools.orbit_response_matrix",
- "pyaml.tuning_tools.chromaticity",
- "pyaml.tuning_tools.tune",
- "pyaml.tuning_tools.chromaticity_response_matrix",
- "pyaml.tuning_tools.measurement_tool",
"pyaml.tuning_tools.orbit_response_matrix_data",
- "pyaml.tuning_tools.response_matrix_data",
+ "pyaml.tuning_tools.chromaticity_monitor",
+ "pyaml.tuning_tools.tune",
"pyaml.tuning_tools.tune_response_matrix",
"pyaml.tuning_tools.tuning_tool",
+ "pyaml.tuning_tools.bba",
+ "pyaml.tuning_tools.bba2",
"pyaml.yellow_pages",
+ "pyaml._version",
+ "pyaml.validation.configuration_models",
+ "pyaml.validation.errors",
+ "pyaml.validation.generator",
+ "pyaml.validation.registry",
+ "pyaml.validation.schema_builder",
+ "pyaml.validation.validation_models",
+ "pyaml.validation.validator",
]
@@ -126,7 +136,7 @@ def generate_selective_module(m):
if m in ["pyaml.arrays.element_array"]:
# Include special members for operator overloading
file.write(" :special-members: __add__, __and__, __or__, __sub__ \n")
- if m in ["pyaml.yellow_pages", "pyaml.configuration.manager"]:
+ if m in ["pyaml.yellow_pages", "pyaml.magnet.manager"]:
# Include special members for exploratory overloading
file.write(" :special-members: __dir__, __getattr__, __getitem__, __repr__, __str__ \n")
file.write(" :exclude-members: model_config\n")
diff --git a/pyaml/arrays/__init__.py b/pyaml/arrays/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/pyaml/arrays/array.py b/pyaml/arrays/array.py
index e3b59b73d..64af7470e 100644
--- a/pyaml/arrays/array.py
+++ b/pyaml/arrays/array.py
@@ -2,18 +2,17 @@
Array configuration
"""
-from pydantic import BaseModel, ConfigDict
-
from pyaml.common.exception import PyAMLException
-from ..common.element_holder import ElementHolder
+from ..common.element import __pyaml_repr__
+from ..common.holders.element_holder import ElementHolder
+from ..validation import DynamicValidation, register_schema
-class ArrayConfigModel(BaseModel):
+@register_schema
+class ArrayConfig(DynamicValidation):
"""
- Base class for configuration of array of :py:class:`~pyaml.arrays.element.Element`,
- :py:class:`~pyaml.arrays.bpm.BPM`, :py:class:`~pyaml.arrays.magnet.Magnet` or
- :py:class:`~pyaml.arrays.cfm_magnet.CombinedFunctionMagnet`.
+ Base class for configuration of arrays (families).
Parameters
----------
@@ -21,21 +20,36 @@ class ArrayConfigModel(BaseModel):
Name of the array
elements : list[str]
List of pyaml element names
- """
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ Attributes
+ ----------
+ name
+ Return the name.
+ elements
+ Return the elements.
- name: str
- elements: list[str]
+ Methods
+ -------
+ fill_array(holder)
+ Fill array with elements from the holder and add the array to the holder.
+ """
+ def __init__(self, name: str, elements: list[str]):
+ """
+ Initialize the ArrayConfig.
+ """
+ self._name = name
+ self._elements = elements
-class ArrayConfig(object):
- """
- Base class that implements configuration for access to arrays (families)
- """
+ @property
+ def name(self):
+ """Return the name."""
+ return self._name
- def __init__(self, cfg: ArrayConfigModel):
- self._cfg = cfg
+ @property
+ def elements(self):
+ """Return the elements."""
+ return self._elements
def fill_array(self, holder: ElementHolder):
"""
@@ -57,6 +71,7 @@ def fill_array(self, holder: ElementHolder):
raise PyAMLException("Array.fill_array() is not subclassed")
def __repr__(self):
- # ArrayConfigModel is a super class
- # ConfigModel is expected from sub classes
- return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self)
diff --git a/pyaml/arrays/bpm.py b/pyaml/arrays/bpm.py
index 0883a378a..4ea849271 100644
--- a/pyaml/arrays/bpm.py
+++ b/pyaml/arrays/bpm.py
@@ -1,20 +1,40 @@
-from ..common.element_holder import ElementHolder
-from .array import ArrayConfig, ArrayConfigModel
+"""
+BPM module.
-# Define the main class name for this module
-PYAMLCLASS = "BPM"
+This module provides BPM functionality for the PyAML accelerator middle layer.
+"""
+from ..common.holders.element_holder import ElementHolder
+from ..validation import DynamicValidation, register_schema
+from .array import ArrayConfig
-class ConfigModel(ArrayConfigModel):
- """Configuration model for :py:class:`.BPMArray`."""
+# Define the main class name for this module
+PYAMLCLASS = "BPM"
-class BPM(ArrayConfig):
+@register_schema
+class BPM(ArrayConfig, DynamicValidation):
"""
:py:class:`.BPMArray` configuration.
- Example
+ Parameters
+ ----------
+ name : str
+ Name under which the array is registered and later looked up.
+ elements : list[str]
+ Element name patterns making up the array: literal names, ``fnmatch`` wildcards, or ``re:`` regular
+ expressions.
+
+ Methods
-------
+ fill_array(holder)
+ Fill the :py:class:`.BPMArray` using element holder (:py:class:`~pyaml.lattice.simulator.Simulator` or
+ :py:class:`~pyaml.control.controlsystem.ControlSystem`) and add the array to the holder. This method is
+ called when an :py:class:`~pyaml.accelerator.Accelerator` is loaded but can be used to create arrays by
+ code as shown bellow:
+
+ Examples
+ --------
Here is an example using a yaml configuration file:
.. code-block:: yaml
@@ -37,11 +57,13 @@ class BPM(ArrayConfig):
name="BPM",
elements=["BPM_C04-01","BPM_C04-02","BPM_C04-03"]
))
-
"""
- def __init__(self, cfg: ArrayConfigModel):
- super().__init__(cfg)
+ def __init__(self, name: str, elements: list[str]):
+ """
+ Initialize the BPM.
+ """
+ super().__init__(name, elements)
def fill_array(self, holder: ElementHolder):
"""
@@ -66,4 +88,4 @@ def fill_array(self, holder: ElementHolder):
holder : ElementHolder
The element holder to populate the :py:class:`.BPMArray` with.
"""
- holder.fill_bpm_array(self._cfg.name, self._cfg.elements)
+ holder.bpms.add(self._name, self._elements)
diff --git a/pyaml/arrays/bpm_array.py b/pyaml/arrays/bpm_array.py
index ea44abb65..9006af38c 100644
--- a/pyaml/arrays/bpm_array.py
+++ b/pyaml/arrays/bpm_array.py
@@ -1,3 +1,9 @@
+"""
+BPM Array module.
+
+This module provides bpm array functionality for the PyAML accelerator middle layer.
+"""
+
import numpy as np
from ..bpm.bpm import BPM
@@ -20,9 +26,21 @@ class RWBPMPosition(ReadFloatArray):
Name of the position accessor
bpms : list[pyaml.bpm.bpm.BPM]
List of BPM objects to access
+
+ Methods
+ -------
+ get()
+ Get BPM positions.
+ unit()
+ Get the units for BPM positions.
+ set_aggregator(agg)
+ Set the device access list aggregator for improved performance.
"""
def __init__(self, name: str, bpms: list[BPM]):
+ """
+ Initialize the RWBPMPosition.
+ """
self.__bpms = bpms
self.__name = name
self.__aggregator: DeviceAccessList = None
@@ -84,9 +102,21 @@ class RWBPMSinglePosition(ReadFloatArray):
List of BPM objects to access
idx : int
Index for the position axis (0 for horizontal, 1 for vertical)
+
+ Methods
+ -------
+ get()
+ Get single axis BPM positions.
+ unit()
+ Get the units for BPM positions.
+ set_aggregator(agg)
+ Set the device access list aggregator for improved performance.
"""
def __init__(self, name: str, bpms: list[BPM], idx: int):
+ """
+ Initialize the RWBPMSinglePosition.
+ """
self.__bpms = bpms
self.__name = name
self.__idx = idx
@@ -145,11 +175,20 @@ class BPMArray(ElementArray):
either a (:py:class:`~pyaml.lattice.simulator.Simulator`
or a :py:class:`~pyaml.control.controlsystem.ControlSystem`).
use_aggregator : bool
- Use aggregator to increase performance by using paralell
+ Use aggregator to increase performance by using parallel
access to underlying devices.
- Example
- -------
+ Attributes
+ ----------
+ positions
+ Returns position of each bpm of this array
+ h
+ Returns horizontal position of each bpm of this array
+ v
+ Returns vertical position of each bpm of this array
+
+ Examples
+ --------
An array can be retrieved from the configuration as in the following
example:
@@ -161,10 +200,12 @@ class BPMArray(ElementArray):
>>> orbit = bpms.positions.get() # Get the orbit
or can be created by code using :py:class:`pyaml.arrays.bpm.BPM`.
-
"""
def __init__(self, arrayName: str, bpms: list[BPM], use_aggregator=True):
+ """
+ Initialize the BPMArray.
+ """
super().__init__(arrayName, bpms, use_aggregator)
self.__hvpos = RWBPMPosition(arrayName, bpms)
diff --git a/pyaml/arrays/cfm_magnet.py b/pyaml/arrays/cfm_magnet.py
index f69ce658d..5526ed966 100644
--- a/pyaml/arrays/cfm_magnet.py
+++ b/pyaml/arrays/cfm_magnet.py
@@ -1,22 +1,37 @@
-from ..common.element_holder import ElementHolder
-from .array import ArrayConfig, ArrayConfigModel
-
-# Define the main class name for this module
-PYAMLCLASS = "CombinedFunctionMagnet"
+"""
+Cfm Magnet module.
+This module provides cfm magnet functionality for the PyAML accelerator middle layer.
+"""
-class ConfigModel(ArrayConfigModel):
- """Configuration model for Combined Function Magnet array."""
+from ..common.holders.element_holder import ElementHolder
+from ..validation import DynamicValidation, register_schema
+from .array import ArrayConfig
- ...
+# Define the main class name for this module
+PYAMLCLASS = "CombinedFunctionMagnet"
-class CombinedFunctionMagnet(ArrayConfig):
+@register_schema
+class CombinedFunctionMagnet(ArrayConfig, DynamicValidation):
"""
- Combined function magnet array confirguration
+ :py:class:`.CombinedFunctionMagnetArray` configuration.
- Example
+ Parameters
+ ----------
+ name : str
+ Name under which the array is registered and later looked up.
+ elements : list[str]
+ Element name patterns making up the array: literal names, ``fnmatch`` wildcards, or ``re:`` regular
+ expressions.
+
+ Methods
-------
+ fill_array(holder)
+ Fill the combined function magnet array in the element holder.
+
+ Examples
+ --------
A magnet array configuration can also be created by code using
the following example::
@@ -28,8 +43,11 @@ class CombinedFunctionMagnet(ArrayConfig):
)
"""
- def __init__(self, cfg: ArrayConfigModel):
- super().__init__(cfg)
+ def __init__(self, name: str, elements: list[str]):
+ """
+ Initialize the CombinedFunctionMagnet.
+ """
+ super().__init__(name, elements)
def fill_array(self, holder: ElementHolder):
"""
@@ -40,4 +58,4 @@ def fill_array(self, holder: ElementHolder):
holder : ElementHolder
The element holder to populate with combined function magnet array
"""
- holder.fill_cfm_magnet_array(self._cfg.name, self._cfg.elements)
+ holder.combined_function_magnets.add(self._name, self._elements)
diff --git a/pyaml/arrays/cfm_magnet_array.py b/pyaml/arrays/cfm_magnet_array.py
index 539b6de5b..fcedc5b64 100644
--- a/pyaml/arrays/cfm_magnet_array.py
+++ b/pyaml/arrays/cfm_magnet_array.py
@@ -1,3 +1,9 @@
+"""
+Combined function magnet array module.
+
+This module provides combined function magnet array functionality.
+"""
+
import numpy as np
from ..common.abstract import ReadWriteFloatArray
@@ -9,13 +15,39 @@
class RWMagnetStrengths(ReadWriteFloatArray):
+ """
+ Array accessor for the multipole strengths of combined-function magnets.
+
+ Parameters
+ ----------
+ name : str
+ Name of the array, used when the accessor is reported or logged.
+ magnets : list[CombinedFunctionMagnet]
+ Combined-function magnets making up the array; each contributes one entry per multipole.
+
+ Methods
+ -------
+ get()
+ Return the strength of every multipole, concatenated over the magnets.
+ set(value)
+ Set the strength of every multipole, concatenated over the magnets.
+ set_and_wait(value)
+ Set every multipole strength and wait for the readbacks to converge.
+ unit()
+ Return the strength unit of every multipole.
+ """
+
def __init__(self, name: str, magnets: list[CombinedFunctionMagnet]):
+ """
+ Initialize the RWMagnetStrengths.
+ """
self.__name = name
self.__magnets = magnets
self.__nb = sum(m.nb_multipole() for m in magnets)
# Gets the values
def get(self) -> np.array:
+ """Return the strength of every multipole, concatenated over the magnets."""
r = np.zeros(self.__nb)
idx = 0
for m in self.__magnets:
@@ -25,6 +57,14 @@ def get(self) -> np.array:
# Sets the values
def set(self, value: np.array):
+ """
+ Set the strength of every multipole, concatenated over the magnets.
+
+ Parameters
+ ----------
+ value : np.array
+ Strength of every multipole, concatenated magnet by magnet. A scalar is broadcast to all of them.
+ """
nvalue = np.ones(self.__nb) * value if isinstance(value, float) else value
idx = 0
for m in self.__magnets:
@@ -33,10 +73,24 @@ def set(self, value: np.array):
# Sets the values and waits that the read values reach their setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set every multipole strength and wait for the readbacks to converge.
+
+ Parameters
+ ----------
+ value : np.array
+ Strength of every multipole, concatenated magnet by magnet. A scalar is broadcast to all of them.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the values
def unit(self) -> list[str]:
+ """Return the strength unit of every multipole."""
r = []
for m in self.__magnets:
r.extend(m.strengths.unit())
@@ -44,13 +98,39 @@ def unit(self) -> list[str]:
class RWMagnetHardwares(ReadWriteFloatArray):
+ """
+ Array accessor for the hardware values of combined-function magnets.
+
+ Parameters
+ ----------
+ name : str
+ Name of the array, used when the accessor is reported or logged.
+ magnets : list[CombinedFunctionMagnet]
+ Combined-function magnets making up the array; each contributes one entry per multipole.
+
+ Methods
+ -------
+ get()
+ Return the hardware value of every multipole, concatenated over the magnets.
+ set(value)
+ Set the hardware value of every multipole, concatenated over the magnets.
+ set_and_wait(value)
+ Set every hardware value and wait for the readbacks to converge.
+ unit()
+ Return the hardware unit of every multipole.
+ """
+
def __init__(self, name: str, magnets: list[CombinedFunctionMagnet]):
+ """
+ Initialize the RWMagnetHardwares.
+ """
self.__name = name
self.__magnets = magnets
self.__nb = sum(m.nb_multipole() for m in magnets)
# Gets the values
def get(self) -> np.array:
+ """Return the hardware value of every multipole, concatenated over the magnets."""
r = np.zeros(self.__nb)
idx = 0
for m in self.__magnets:
@@ -60,6 +140,14 @@ def get(self) -> np.array:
# Sets the values
def set(self, value: np.array):
+ """
+ Set the hardware value of every multipole, concatenated over the magnets.
+
+ Parameters
+ ----------
+ value : np.array
+ Hardware value of every multipole, concatenated magnet by magnet. A scalar is broadcast to all of them.
+ """
nvalue = np.ones(self.__nb) * value if isinstance(value, float) else value
idx = 0
for m in self.__magnets:
@@ -68,10 +156,24 @@ def set(self, value: np.array):
# Sets the values and waits that the read values reach their setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set every hardware value and wait for the readbacks to converge.
+
+ Parameters
+ ----------
+ value : np.array
+ Hardware value of every multipole, concatenated magnet by magnet. A scalar is broadcast to all of them.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the values
def unit(self) -> list[str]:
+ """Return the hardware unit of every multipole."""
r = []
for m in self.__magnets:
r.extend(m.hardwares.unit())
@@ -86,12 +188,19 @@ class CombinedFunctionMagnetArray(ElementArray):
----------
arrayName : str
Array name
- magnets : list[Magnet]
+ magnets : list[CombinedFunctionMagnet]
Magnet list, all elements must be attached to the same instance of
either a Simulator or a ControlSystem.
use_aggregator : bool
- Use aggregator to increase performance by using paralell
+ Use aggregator to increase performance by using parallel
access to underlying devices.
+
+ Attributes
+ ----------
+ strengths
+ Give access to strength of each magnet of this array
+ hardwares
+ Give access to hardware value of each magnet of this array
"""
def __init__(
@@ -100,6 +209,9 @@ def __init__(
magnets: list[CombinedFunctionMagnet],
use_aggregator=False,
):
+ """
+ Initialize the CombinedFunctionMagnetArray.
+ """
super().__init__(arrayName, magnets, use_aggregator)
self.__rwstrengths = RWMagnetStrengths(arrayName, magnets)
diff --git a/pyaml/arrays/element.py b/pyaml/arrays/element.py
index 6a40d0275..6483f03de 100644
--- a/pyaml/arrays/element.py
+++ b/pyaml/arrays/element.py
@@ -1,20 +1,40 @@
-from ..common.element_holder import ElementHolder
-from .array import ArrayConfig, ArrayConfigModel
+"""
+Element module.
-# Define the main class name for this module
-PYAMLCLASS = "Element"
+This module provides element functionality.
+"""
+from ..common.holders.element_holder import ElementHolder
+from ..validation import DynamicValidation, register_schema
+from .array import ArrayConfig
-class ConfigModel(ArrayConfigModel):
- """Configuration model for :py:class:`.ElementArray`."""
+# Define the main class name for this module
+PYAMLCLASS = "Element"
-class Element(ArrayConfig):
+@register_schema
+class Element(ArrayConfig, DynamicValidation):
"""
:py:class:`.ElementArray` configuration.
- Example
+ Parameters
+ ----------
+ name : str
+ Name under which the array is registered and later looked up.
+ elements : list[str]
+ Element name patterns making up the array: literal names, ``fnmatch`` wildcards, or ``re:`` regular
+ expressions.
+
+ Methods
-------
+ fill_array(holder)
+ Fill the :py:class:`.ElementArray` using element holder (:py:class:`~pyaml.lattice.simulator.Simulator` or
+ :py:class:`~pyaml.control.controlsystem.ControlSystem`) and add the array to the holder. This method is
+ called when an :py:class:`~pyaml.accelerator.Accelerator` is loaded but can be used to create arrays by
+ code as shown bellow:
+
+ Examples
+ --------
An element array configuration can also be created by code using
the following example:
@@ -25,16 +45,16 @@ class Element(ArrayConfig):
elt_cfg = Element(
ElementArrayConfigModel(name="MyArray", elements=["BPM_C04-01","SH1A-C04-H"])
)
-
-
"""
- def __init__(self, cfg: ArrayConfigModel):
- super().__init__(cfg)
+ def __init__(self, name: str, elements: list[str]):
+ """
+ Initialize the Element.
+ """
+ super().__init__(name, elements)
def fill_array(self, holder: ElementHolder):
"""
-
Fill the :py:class:`.ElementArray` using element holder
(:py:class:`~pyaml.lattice.simulator.Simulator`
or :py:class:`~pyaml.control.controlsystem.ControlSystem`)
@@ -54,4 +74,4 @@ def fill_array(self, holder: ElementHolder):
holder : ElementHolder
The element holder to populate with element array
"""
- holder.fill_element_array(self._cfg.name, self._cfg.elements)
+ holder.fill_element_array(self._name, self._elements)
diff --git a/pyaml/arrays/element_array.py b/pyaml/arrays/element_array.py
index 8ffae693b..26b7ce260 100644
--- a/pyaml/arrays/element_array.py
+++ b/pyaml/arrays/element_array.py
@@ -1,20 +1,29 @@
+"""
+Element Array module.
+
+This module provides element array functionality.
+"""
+
import fnmatch
import importlib
-from typing import Sequence
+from typing import TYPE_CHECKING, Sequence
import numpy as np
from ..bpm.bpm import BPM
-from ..common.element import Element
+from ..common.element import Element, __pyaml_repr__
from ..common.exception import PyAMLException
from ..magnet.cfm_magnet import CombinedFunctionMagnet
from ..magnet.magnet import Magnet
from ..magnet.serialized_magnet import SerializedMagnets
+if TYPE_CHECKING:
+ from ..common.holders.element_holder import ElementHolder
+
class ElementArray(list[Element]):
"""
- Class that implements access to an element array
+ Class that implements access to an element array.
Parameters
----------
@@ -24,11 +33,27 @@ class ElementArray(list[Element]):
Element list, all elements must be attached to the same instance of
either a Simulator or a ControlSystem.
use_aggregator : bool
- Use aggregator to increase performance by using paralell
+ Use aggregator to increase performance by using parallel
access to underlying devices.
- Example
+ Methods
-------
+ get_peer()
+ Returns the peer (:py:class:`~pyaml.lattice.simulator.Simulator` or
+ :py:class:`~pyaml.control.controlsystem.ControlSystem`) of an element list
+ get_name()
+ Returns the array name
+ names()
+ Returns the element names
+ mask_by_type(element_type)
+ Return a boolean mask indicating which elements are instances of the given type.
+ of_type(element_type)
+ Return a new array containing only elements of the given type.
+ exclude_type(element_type)
+ Return a copy of the array without the elements of a given type.
+
+ Examples
+ --------
An array can be retrieved from the configuration as in the following example:
@@ -36,10 +61,12 @@ class ElementArray(list[Element]):
>>> sr = Accelerator.load("acc.yaml")
>>> elements = sr.design.get_elements("QuadForTune")
-
"""
def __init__(self, array_name: str, elements: list[Element], use_aggregator=True):
+ """
+ Initialize the ElementArray.
+ """
super().__init__(i for i in elements)
self.__name = array_name
self.__peer = None
@@ -53,7 +80,7 @@ def __init__(self, array_name: str, elements: list[Element], use_aggregator=True
"of either a Simulator or a ControlSystem"
)
- def get_peer(self):
+ def get_peer(self) -> "ElementHolder":
"""
Returns the peer (:py:class:`~pyaml.lattice.simulator.Simulator`
or :py:class:`~pyaml.control.controlsystem.ControlSystem`) of
@@ -73,7 +100,30 @@ def names(self) -> list[str]:
"""
return [e.get_name() for e in self]
+ def _pyaml_repr_fields(self) -> dict[str, object]:
+ return {
+ "name": self.get_name(),
+ "size": len(self),
+ "peer": self.get_peer(),
+ "elements": self.names(),
+ }
+
+ def __repr__(self):
+ return __pyaml_repr__(self)
+
def __create_array(self, array_name: str, element_type: type, elements: list):
+ """
+ Implement the __create_array protocol operation.
+
+ Parameters
+ ----------
+ array_name : str
+ Name given to the newly created array.
+ element_type : type
+ Common element type of ``elements``, used to pick the matching array class.
+ elements : list
+ Elements to place in the new array.
+ """
if element_type is None:
element_type = Element
@@ -99,6 +149,21 @@ def __create_array(self, array_name: str, element_type: type, elements: list):
raise PyAMLException(f"Unsupported sliced array for type {str(element_type)}")
def __eval_field(self, attribute_name: str, element: Element) -> str:
+ """
+ Implement the __eval_field protocol operation.
+
+ Parameters
+ ----------
+ attribute_name : str
+ Attribute to read, resolved through the element's ``get_`` method.
+ element : Element
+ Element to read the attribute from.
+
+ Returns
+ -------
+ str
+ Attribute value, or ``None`` if the element has no such getter.
+ """
function_name = "get_" + attribute_name
func = getattr(element, function_name, None)
return func() if func is not None else ""
@@ -117,7 +182,8 @@ def __ensure_compatible_operand(self, other: object) -> "ElementArray":
return other
def __auto_array(self, elements: list[Element]):
- """Create the most specific array type for the given element list.
+ """
+ Create the most specific array type for the given element list.
The target element type is the most specific common base class (nearest common
ancestor) of all elements. This supports heterogeneous subclasses (e.g.,
@@ -127,10 +193,30 @@ def __auto_array(self, elements: list[Element]):
if len(elements) == 0:
return []
+ return self._typed_array(elements)
+
+ def _typed_array(self, elements: list[Element]) -> "ElementArray":
+ """Build a collection using the most specific compatible array type.
+
+ Parameters
+ ----------
+ elements : list[Element]
+ Selected references, in their desired order.
+
+ Returns
+ -------
+ ElementArray
+ Specialized array when possible, otherwise a generic array.
+ An empty selection returns an empty generic array.
+ """
+ if not elements:
+ return self.__create_array("", Element, elements)
+
import inspect
def mro_as_list(cls: type) -> list[type]:
# inspect.getmro returns (cls, ..., object)
+ """Return the class MRO, most specific first."""
return list(inspect.getmro(cls))
# Start from the first element MRO as reference order (most specific first).
@@ -154,6 +240,22 @@ def mro_as_list(cls: type) -> list[type]:
return self.__create_array("", chosen, elements)
+ def _select_names(self, pattern: str) -> "ElementArray":
+ """Select names without interpreting field selectors.
+
+ Parameters
+ ----------
+ pattern : str
+ A fnmatch pattern applied to each element name.
+
+ Returns
+ -------
+ ElementArray
+ Typed selection in the original order, including an empty array
+ when no names match.
+ """
+ return self._typed_array([element for element in self if fnmatch.fnmatch(element.get_name(), pattern)])
+
def __is_bool_mask(self, other: object) -> bool:
"""Return True if 'other' looks like a boolean mask (list or numpy array)."""
# --- numpy boolean array ---
@@ -216,7 +318,6 @@ def __and__(self, other: object):
:py:class:`.CombinedFunctionMagnetArray` or
:py:class:`.SerializedMagnetsArray` or
:py:class:`.ElementArray`.
-
"""
# --- mask filtering ---
if self.__is_bool_mask(other):
@@ -237,6 +338,14 @@ def __and__(self, other: object):
def __rand__(self, other: object):
# Support "array on the right" for array operands; for masks, we don't enforce
# commutativity.
+ """
+ Implement the __rand__ protocol operation.
+
+ Parameters
+ ----------
+ other : object
+ Left-hand operand, evaluated when it does not implement the operation itself.
+ """
if isinstance(other, ElementArray):
return other.__and__(self)
return NotImplemented
@@ -281,7 +390,6 @@ def __sub__(self, other: object):
:py:class:`.CombinedFunctionMagnetArray` or
:py:class:`.SerializedMagnetsArray` or
:py:class:`.ElementArray`.
-
"""
# --- mask removal ---
if self.__is_bool_mask(other):
@@ -307,14 +415,10 @@ def __or__(self, other: object):
Order is stable: elements from ``self`` first, followed by
elements from ``other`` that are not already present.
- Example
- -------
-
- .. code-block:: python
-
- >>> hcorr = sr.live.get_magnets("HCORR")
- >>> vcorr = sr.live.get_magnets("VCORR")
- >>> all_corr = hcorr | vcorr
+ Parameters
+ ----------
+ other : ElementArray or list[Element]
+ Array whose elements are combined with this one.
Returns
-------
@@ -327,6 +431,14 @@ def __or__(self, other: object):
:py:class:`.SerializedMagnetsArray` or
:py:class:`.ElementArray`.
+ Examples
+ --------
+
+ .. code-block:: python
+
+ >>> hcorr = sr.live.get_magnets("HCORR")
+ >>> vcorr = sr.live.get_magnets("VCORR")
+ >>> all_corr = hcorr | vcorr
"""
other_arr = self.__ensure_compatible_operand(other)
@@ -348,6 +460,14 @@ def __or__(self, other: object):
return self.__auto_array(res)
def __ror__(self, other: object):
+ """
+ Implement the __ror__ protocol operation.
+
+ Parameters
+ ----------
+ other : object
+ Left-hand operand, evaluated when it does not implement the operation itself.
+ """
if isinstance(other, ElementArray):
return other.__or__(self)
return NotImplemented
@@ -356,12 +476,10 @@ def __add__(self, other: object):
"""
Alias for the union operator ``|``.
- Example
- -------
-
- .. code-block:: python
-
- >>> all_corr = hcorr + vcorr
+ Parameters
+ ----------
+ other : ElementArray or list[Element]
+ Array whose elements are combined with this one.
Returns
-------
@@ -374,16 +492,31 @@ def __add__(self, other: object):
:py:class:`.SerializedMagnetsArray` or
:py:class:`.ElementArray`.
+ Examples
+ --------
+
+ .. code-block:: python
+
+ >>> all_corr = hcorr + vcorr
"""
return self.__or__(other)
def __radd__(self, other: object):
+ """
+ Implement the __radd__ protocol operation.
+
+ Parameters
+ ----------
+ other : object
+ Left-hand operand, evaluated when it does not implement the operation itself.
+ """
if isinstance(other, ElementArray):
return other.__add__(self)
return NotImplemented
def mask_by_type(self, element_type: type) -> list[bool]:
- """Return a boolean mask indicating which elements are instances of the given
+ """
+ Return a boolean mask indicating which elements are instances of the given
type.
Parameters
@@ -403,7 +536,8 @@ def mask_by_type(self, element_type: type) -> list[bool]:
return [isinstance(e, element_type) for e in self]
def of_type(self, element_type: type):
- """Return a new array containing only elements of the given type.
+ """
+ Return a new array containing only elements of the given type.
The resulting array is automatically typed according to the most
specific common base class of the filtered elements.
@@ -426,51 +560,62 @@ def of_type(self, element_type: type):
return self.__auto_array(filtered)
def exclude_type(self, element_type):
+ """
+ Return a copy of the array without the elements of a given type.
+
+ Parameters
+ ----------
+ element_type : object
+ Element type to drop; instances of its subclasses are dropped as well.
+ """
mask = self.mask_by_type(element_type)
return self - mask
def __getitem__(self, key):
+ """Return an element or a selection typed by its common element class.
+
+ Parameters
+ ----------
+ key : int, slice or str
+ Element index, slice, name pattern, or existing field selector.
+
+ Returns
+ -------
+ Element or ElementArray
+ Indexed element or an array inferred from all selected elements.
+ Different Magnet subclasses produce a MagnetArray; mixed element
+ families produce an ElementArray. Empty selections return an
+ empty ElementArray.
+
+ Examples
+ --------
+ >>> magnets = sr.design.magnets.get()
+ >>> subset = magnets[:] # MagnetArray, including mixed magnet classes
+ >>> correctors = magnets["SH*"] # MagnetArray
+ """
if isinstance(key, slice):
# Slicing
- element_type = None
- r = []
- for i in range(*key.indices(len(self))):
- if element_type is None:
- element_type = type(self[i])
- elif not isinstance(self[i], element_type):
- element_type = Element # Fall back to element
- r.append(self[i])
- return self.__create_array("", element_type, r)
+ r = super().__getitem__(key)
elif isinstance(key, str):
fields = key.split(":")
if len(fields) <= 1:
# Selection by name
- element_type = None
r = []
for e in self:
if fnmatch.fnmatch(e.get_name(), key):
- if element_type is None:
- element_type = type(e)
- elif not isinstance(e, element_type):
- element_type = Element # Fall back to element
r.append(e)
else:
# Selection by fields
- element_type = None
r = []
for e in self:
txt = self.__eval_field(fields[0], e)
if fnmatch.fnmatch(txt, fields[1]):
- if element_type is None:
- element_type = type(e)
- elif not isinstance(e, element_type):
- element_type = Element # Fall back to element
r.append(e)
- return self.__create_array("", element_type, r)
-
else:
# Default to super selection
return super().__getitem__(key)
+
+ return self.__auto_array(r) if r else self.__create_array("", Element, r)
diff --git a/pyaml/arrays/magnet.py b/pyaml/arrays/magnet.py
index d65282cd6..c37d21693 100644
--- a/pyaml/arrays/magnet.py
+++ b/pyaml/arrays/magnet.py
@@ -1,22 +1,37 @@
-from ..common.element_holder import ElementHolder
-from .array import ArrayConfig, ArrayConfigModel
-
-# Define the main class name for this module
-PYAMLCLASS = "Magnet"
+"""
+Magnet module.
+This module provides magnet functionality for the PyAML accelerator middle layer.
+"""
-class ConfigModel(ArrayConfigModel):
- """Configuration model for Magnet array."""
+from ..common.holders.element_holder import ElementHolder
+from ..validation import DynamicValidation, register_schema
+from .array import ArrayConfig
- ...
+# Define the main class name for this module
+PYAMLCLASS = "Magnet"
-class Magnet(ArrayConfig):
+@register_schema
+class Magnet(ArrayConfig, DynamicValidation):
"""
- Magnet array confirguration
+ :py:class:`.MagnetArray` configuration.
- Example
+ Parameters
+ ----------
+ name : str
+ Name under which the array is registered and later looked up.
+ elements : list[str]
+ Element name patterns making up the array: literal names, ``fnmatch`` wildcards, or ``re:`` regular
+ expressions.
+
+ Methods
-------
+ fill_array(holder)
+ Fill the magnet array in the element holder.
+
+ Examples
+ --------
A magnet array configuration can also be created by code using
the following example::
@@ -27,8 +42,11 @@ class Magnet(ArrayConfig):
)
"""
- def __init__(self, cfg: ArrayConfigModel):
- super().__init__(cfg)
+ def __init__(self, name: str, elements: list[str]):
+ """
+ Initialize the Magnet.
+ """
+ super().__init__(name, elements)
def fill_array(self, holder: ElementHolder):
"""
@@ -39,4 +57,4 @@ def fill_array(self, holder: ElementHolder):
holder : ElementHolder
The element holder to populate with magnet array
"""
- holder.fill_magnet_array(self._cfg.name, self._cfg.elements)
+ holder.magnets.add(self._name, self._elements)
diff --git a/pyaml/arrays/magnet_array.py b/pyaml/arrays/magnet_array.py
index 5c7f65044..b24a956f4 100644
--- a/pyaml/arrays/magnet_array.py
+++ b/pyaml/arrays/magnet_array.py
@@ -1,3 +1,9 @@
+"""
+Magnet Array module.
+
+This module provides magnet array functionality for the PyAML accelerator middle layer.
+"""
+
import numpy as np
from ..common.abstract import ReadWriteFloatArray
@@ -7,7 +13,34 @@
class RWMagnetStrength(ReadWriteFloatArray):
+ """
+ Array accessor for the strengths of a magnet family.
+
+ Parameters
+ ----------
+ name : str
+ Name of the array, used when the accessor is reported or logged.
+ magnets : list[Magnet]
+ Magnets making up the array, in the order their values are read and written.
+
+ Methods
+ -------
+ get()
+ Return the strength of every magnet in the array.
+ set(value)
+ Set the strength of every magnet in the array.
+ set_and_wait(value)
+ Set every strength and wait for the readbacks to converge.
+ unit()
+ Return the strength unit of every magnet in the array.
+ set_aggregator(agg)
+ Install an aggregator so the array is read and written in a single call.
+ """
+
def __init__(self, name: str, magnets: list[Magnet]):
+ """
+ Initialize the RWMagnetStrength.
+ """
self.__name = name
self.__magnets = magnets
self.__nb = len(self.__magnets)
@@ -15,6 +48,7 @@ def __init__(self, name: str, magnets: list[Magnet]):
# Gets the values
def get(self) -> np.array:
+ """Return the strength of every magnet in the array."""
if not self.__aggregator:
return np.array([m.strength.get() for m in self.__magnets])
else:
@@ -22,6 +56,14 @@ def get(self) -> np.array:
# Sets the values
def set(self, value: np.array):
+ """
+ Set the strength of every magnet in the array.
+
+ Parameters
+ ----------
+ value : np.array
+ Strength for each magnet, ordered like the array. A scalar is broadcast to every magnet.
+ """
nvalue = np.ones(self.__nb) * value if isinstance(value, float) else value
if not self.__aggregator:
for idx, m in enumerate(self.__magnets):
@@ -31,19 +73,69 @@ def set(self, value: np.array):
# Sets the values and waits that the read values reach their setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set every strength and wait for the readbacks to converge.
+
+ Parameters
+ ----------
+ value : np.array
+ Strength for each magnet, ordered like the array. A scalar is broadcast to every magnet.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the values
def unit(self) -> list[str]:
+ """Return the strength unit of every magnet in the array."""
return [m.strength.unit() for m in self.__magnets]
# Set the aggregator (Control system only)
def set_aggregator(self, agg: ScalarAggregator):
+ """
+ Install an aggregator so the array is read and written in a single call.
+
+ Parameters
+ ----------
+ agg : ScalarAggregator
+ Aggregator performing grouped device access. Only available on the control-system side; ``None``
+ restores per-magnet access.
+ """
self.__aggregator = agg
class RWMagnetHardware(ReadWriteFloatArray):
+ """
+ Array accessor for the hardware values of a magnet family.
+
+ Parameters
+ ----------
+ name : str
+ Name of the array, used when the accessor is reported or logged.
+ magnets : list[Magnet]
+ Magnets making up the array, in the order their values are read and written.
+
+ Methods
+ -------
+ get()
+ Return the hardware value of every magnet in the array.
+ set(value)
+ Set the hardware value of every magnet in the array.
+ set_and_wait(value)
+ Set every hardware value and wait for the readbacks to converge.
+ unit()
+ Return the hardware unit of every magnet in the array.
+ set_aggregator(agg)
+ Install an aggregator so the array is read and written in a single call.
+ """
+
def __init__(self, name: str, magnets: list[Magnet]):
+ """
+ Initialize the RWMagnetHardware.
+ """
self.__name = name
self.__magnets = magnets
self.__nb = len(self.__magnets)
@@ -51,6 +143,7 @@ def __init__(self, name: str, magnets: list[Magnet]):
# Gets the values
def get(self) -> np.array:
+ """Return the hardware value of every magnet in the array."""
if not self.__aggregator:
return np.array([m.hardware.get() for m in self.__magnets])
else:
@@ -58,6 +151,14 @@ def get(self) -> np.array:
# Sets the values
def set(self, value: np.array):
+ """
+ Set the hardware value of every magnet in the array.
+
+ Parameters
+ ----------
+ value : np.array
+ Hardware value for each magnet, ordered like the array. A scalar is broadcast to every magnet.
+ """
nvalue = np.ones(self.__nb) * value if isinstance(value, float) else value
if not self.__aggregator:
for idx, m in enumerate(self.__magnets):
@@ -67,20 +168,43 @@ def set(self, value: np.array):
# Sets the values and waits that the read values reach their setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set every hardware value and wait for the readbacks to converge.
+
+ Parameters
+ ----------
+ value : np.array
+ Hardware value for each magnet, ordered like the array. A scalar is broadcast to every magnet.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the values
def unit(self) -> list[str]:
+ """Return the hardware unit of every magnet in the array."""
return [m.hardware.unit() for m in self.__magnets]
# Set the aggregator
def set_aggregator(self, agg: ScalarAggregator):
+ """
+ Install an aggregator so the array is read and written in a single call.
+
+ Parameters
+ ----------
+ agg : ScalarAggregator
+ Aggregator performing grouped device access. Only available on the control-system side; ``None``
+ restores per-magnet access.
+ """
self.__aggregator = agg
class MagnetArray(ElementArray):
"""
- Class that implements access to a magnet array
+ Class that implements access to a magnet array.
Parameters
----------
@@ -91,19 +215,28 @@ class MagnetArray(ElementArray):
either a Simulator or a ControlSystem.
use_aggregator : bool
Use aggregator to increase performance by using
- paralell access to underlying devices.
+ parallel access to underlying devices.
- Example
- -------
+ Attributes
+ ----------
+ strengths
+ Give access to strength of each magnet of this array
+ hardwares
+ Give access to hardware value of each magnet of this array
+
+ Examples
+ --------
An array can be retrieved from the configuration as in the following example::
sr = Accelerator.load("acc.yaml")
quads = sr.design.get_magnets("QuadForTune")
-
"""
def __init__(self, arrayName: str, magnets: list[Magnet], use_aggregator=True):
+ """
+ Initialize the MagnetArray.
+ """
super().__init__(arrayName, magnets, use_aggregator)
self.__rwstrengths = RWMagnetStrength(arrayName, magnets)
diff --git a/pyaml/arrays/serialized_magnet.py b/pyaml/arrays/serialized_magnet.py
index fd4124036..5f3c07a3a 100644
--- a/pyaml/arrays/serialized_magnet.py
+++ b/pyaml/arrays/serialized_magnet.py
@@ -1,22 +1,37 @@
-from ..common.element_holder import ElementHolder
-from .array import ArrayConfig, ArrayConfigModel
-
-# Define the main class name for this module
-PYAMLCLASS = "SerializedMagnets"
+"""
+Serialized Magnet module.
+This module provides serialized magnet functionality.
+"""
-class ConfigModel(ArrayConfigModel):
- """Configuration model for Serialized Magnets array."""
+from ..common.holders.element_holder import ElementHolder
+from ..validation import DynamicValidation, register_schema
+from .array import ArrayConfig
- ...
+# Define the main class name for this module
+PYAMLCLASS = "SerializedMagnets"
-class SerializedMagnets(ArrayConfig):
+@register_schema
+class SerializedMagnets(ArrayConfig, DynamicValidation):
"""
- Serialized magnets array configuration
+ Serialized magnets array configuration.
- Example
+ Parameters
+ ----------
+ name : str
+ Name under which the array is registered and later looked up.
+ elements : list[str]
+ Element name patterns making up the array: literal names, ``fnmatch`` wildcards, or ``re:`` regular
+ expressions.
+
+ Methods
-------
+ fill_array(holder)
+ Fill the serialized magnet array in the element holder.
+
+ Examples
+ --------
A magnet array configuration can also be created by code using
the following example::
@@ -28,8 +43,11 @@ class SerializedMagnets(ArrayConfig):
)
"""
- def __init__(self, cfg: ArrayConfigModel):
- super().__init__(cfg)
+ def __init__(self, name: str, elements: list[str]):
+ """
+ Initialize the SerializedMagnets.
+ """
+ super().__init__(name, elements)
def fill_array(self, holder: ElementHolder):
"""
@@ -40,4 +58,4 @@ def fill_array(self, holder: ElementHolder):
holder : ElementHolder
The element holder to populate with serialized magnet array
"""
- holder.fill_serialized_magnet_array(self._cfg.name, self._cfg.elements)
+ holder.serialized_magnets.add(self._name, self._elements)
diff --git a/pyaml/arrays/serialized_magnet_array.py b/pyaml/arrays/serialized_magnet_array.py
index c436e0164..c891e5c6a 100644
--- a/pyaml/arrays/serialized_magnet_array.py
+++ b/pyaml/arrays/serialized_magnet_array.py
@@ -1,3 +1,9 @@
+"""
+Serialized Magnet Array module.
+
+This module provides serialized magnet array functionality.
+"""
+
import numpy as np
from ..common.abstract import ReadWriteFloatArray
@@ -9,27 +15,75 @@
class RWMagnetStrengths(ReadWriteFloatArray):
+ """
+ Array accessor for the strengths of serialized magnet groups.
+
+ Parameters
+ ----------
+ name : str
+ Name of the array, used when the accessor is reported or logged.
+ magnets : list[SerializedMagnets]
+ Serialized magnet groups making up the array, in the order their values are read and written.
+
+ Methods
+ -------
+ get()
+ Return the shared strength of every serialized group.
+ set(value)
+ Set the shared strength of every serialized group.
+ set_and_wait(value)
+ Set every shared strength and wait for the readbacks to converge.
+ unit()
+ Return the strength unit of every serialized group.
+ """
+
def __init__(self, name: str, magnets: list[SerializedMagnets]):
+ """
+ Initialize the RWMagnetStrengths.
+ """
self.__name = name
self.__magnets = magnets
self.__nb = sum(m.get_nb_magnets() for m in magnets)
# Gets the values
def get(self) -> np.array:
+ """Return the shared strength of every serialized group."""
return np.array([m.strength.get() for m in self.__magnets])
# Sets the values
def set(self, value: np.array):
+ """
+ Set the shared strength of every serialized group.
+
+ Parameters
+ ----------
+ value : np.array
+ Shared strength for each serialized group, ordered like the array.
+ """
nvalue = np.ones(len(self.__magnets)) * value if isinstance(value, float) else value
for value, m in zip(nvalue, self.__magnets, strict=True):
m.strength.set(value)
# Sets the values and waits that the read values reach their setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set every shared strength and wait for the readbacks to converge.
+
+ Parameters
+ ----------
+ value : np.array
+ Shared strength for each serialized group, ordered like the array.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the values
def unit(self) -> list[str]:
+ """Return the strength unit of every serialized group."""
r = []
for m in self.__magnets:
r.extend(m.strength.unit())
@@ -37,27 +91,75 @@ def unit(self) -> list[str]:
class RWMagnetHardwares(ReadWriteFloatArray):
+ """
+ Array accessor for the hardware values of serialized magnet groups.
+
+ Parameters
+ ----------
+ name : str
+ Name of the array, used when the accessor is reported or logged.
+ magnets : list[SerializedMagnets]
+ Serialized magnet groups making up the array, in the order their values are read and written.
+
+ Methods
+ -------
+ get()
+ Return the shared hardware value of every serialized group.
+ set(value)
+ Set the shared hardware value of every serialized group.
+ set_and_wait(value)
+ Set every shared hardware value and wait for the readbacks to converge.
+ unit()
+ Return the hardware unit of every serialized group.
+ """
+
def __init__(self, name: str, magnets: list[SerializedMagnets]):
+ """
+ Initialize the RWMagnetHardwares.
+ """
self.__name = name
self.__magnets = magnets
self.__nb = sum(m.get_nb_magnets() for m in magnets)
# Gets the values
def get(self) -> np.array:
+ """Return the shared hardware value of every serialized group."""
return np.array([m.hardware.get() for m in self.__magnets])
# Sets the values
def set(self, value: np.array):
+ """
+ Set the shared hardware value of every serialized group.
+
+ Parameters
+ ----------
+ value : np.array
+ Shared hardware value for each serialized group, ordered like the array.
+ """
nvalue = np.ones(len(self.__magnets)) * value if isinstance(value, float) else value
for value, m in zip(nvalue, self.__magnets, strict=True):
m.hardware.set(value)
# Sets the values and waits that the read values reach their setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set every shared hardware value and wait for the readbacks to converge.
+
+ Parameters
+ ----------
+ value : np.array
+ Shared hardware value for each serialized group, ordered like the array.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the values
def unit(self) -> list[str]:
+ """Return the hardware unit of every serialized group."""
r = []
for m in self.__magnets:
r.extend(m.hardware.unit())
@@ -72,12 +174,19 @@ class SerializedMagnetsArray(ElementArray):
----------
arrayName : str
Array name
- magnets : list[Magnet]
+ magnets : list[SerializedMagnets]
Magnet list, all elements must be attached to the same instance of
either a Simulator or a ControlSystem.
use_aggregator : bool
Use aggregator to increase performance by using parallel
access to underlying devices.
+
+ Attributes
+ ----------
+ strengths
+ Give access to strength of each magnet of this array
+ hardwares
+ Give access to hardware value of each magnet of this array
"""
def __init__(
@@ -86,6 +195,9 @@ def __init__(
magnets: list[SerializedMagnets],
use_aggregator=False,
):
+ """
+ Initialize the SerializedMagnetsArray.
+ """
super().__init__(arrayName, magnets, use_aggregator)
self.__rwstrengths = RWMagnetStrengths(arrayName, magnets)
diff --git a/pyaml/bpm/__init__.py b/pyaml/bpm/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/pyaml/bpm/bpm.py b/pyaml/bpm/bpm.py
index 1a14f4b9b..dd7015c2e 100644
--- a/pyaml/bpm/bpm.py
+++ b/pyaml/bpm/bpm.py
@@ -1,129 +1,155 @@
-from ..bpm.bpm_model import BPMModel
-from ..common.element import Element, ElementConfigModel
+"""Beam-position monitor elements and their runtime interfaces."""
+
+import copy
+from typing import TYPE_CHECKING, Self
+
+from ..common.abstract import ReadFloatArray, ReadWriteFloatArray, ReadWriteFloatScalar
+from ..common.element import Element, __pyaml_repr__
from ..common.exception import PyAMLException
-from ..lattice.abstract_impl import RBpmArray, RWBpmOffsetArray, RWBpmTiltScalar
+from ..validation import DynamicValidation, register_schema
-try:
- from typing import Self # Python 3.11+
-except ImportError:
- from typing_extensions import Self # Python 3.10 and earlier
+if TYPE_CHECKING:
+ from ..common.holders.element_holder import ElementHolder
PYAMLCLASS = "BPM"
-class ConfigModel(ElementConfigModel):
- """
- Configuration model for BPM element.
-
- Attributes
- ----------
- model : BPMModel or None, optional
- Object in charge of BPM modeling
+@register_schema
+class BPM(Element, DynamicValidation):
"""
+ Beam position monitor (BPM) element.
- model: BPMModel | None = None
+ Represents a BPM in the accelerator lattice and provides access to its
+ associated readback signals, including horizontal and vertical beam
+ positions, calibration offsets, and mechanical tilt.
+ Parameters
+ ----------
+ name : str
+ Name of the BPM.
+ lattice_names : str | None, optional
+ Lattice-specific name or names identifying the BPM.
+ description : str | None, optional
+ Description of the BPM.
+ x_pos : str | None, optional
+ Device catalog key for the horizontal beam position.
+ y_pos : str | None, optional
+ Device catalog key for the vertical beam position.
+ x_offset : str | None, optional
+ Device catalog key for the horizontal BPM offset.
+ y_offset : str | None, optional
+ Device catalog key for the vertical BPM offset.
+ tilt : str | None, optional
+ Device catalog key for the BPM tilt.
-class BPM(Element):
- """
- Class providing access to one BPM of a physical or simulated lattice
+ Attributes
+ ----------
+ positions
+ Read accessor for the horizontal and vertical beam positions, in metres.
+ offset
+ Read/write accessor for the two calibration offsets, in metres.
+ tilt
+ Read/write accessor for the mechanical tilt, in radians.
+
+ Methods
+ -------
+ attach(peer, positions, offset, tilt)
+ Attach BPM attributes to a peer.
+ get_pos_devices()
+ Return configured device keys used for position readback.
+ get_tilt_device()
+ Return the configured device key used for tilt access.
+ get_offset_devices()
+ Return configured device keys used for offset control.
"""
- def __init__(self, cfg: ConfigModel):
- """
- Construct a BPM
-
- Parameters
- ----------
- name : str
- Element name
- model : BPMModel
- BPM model in charge of computing beam position
- """
-
- super().__init__(cfg.name)
-
- self.__model = cfg.model if hasattr(cfg, "model") else None
- self._cfg = cfg
- self.__positions = None
- self.__offset = None
- self.__tilt = None
-
- @property
- def model(self) -> BPMModel:
+ def __init__(
+ self,
+ name: str,
+ lattice_names: str | None = None,
+ description: str | None = None,
+ x_pos: str | None = None,
+ y_pos: str | None = None,
+ x_offset: str | None = None,
+ y_offset: str | None = None,
+ tilt: str | None = None,
+ ):
"""
- Get the BPM model.
-
- Returns
- -------
- BPMModel
- The BPM model instance
+ Initialize a beam-position monitor configuration.
"""
- return self.__model
+ super().__init__(name, lattice_names, description)
+ self.x_pos = x_pos
+ self.y_pos = y_pos
+ self.x_offset = x_offset
+ self.y_offset = y_offset
+ self.tilt_name = tilt
+ self._positions = None
+ self._offset = None
+ self._tilt = None
@property
- def positions(self) -> RBpmArray:
+ def positions(self) -> ReadFloatArray:
"""
Get the BPM position readings.
Returns
-------
- RBpmArray
- BPM position array containing horizontal and vertical positions
+ ReadFloatArray
+ Read-only array containing horizontal and vertical positions.
Raises
------
PyAMLException
If positions have not been attached
"""
- if self.__positions is None:
+ if self._positions is None:
raise PyAMLException(f"{str(self)} has no attached positions")
- return self.__positions
+ return self._positions
@property
- def offset(self) -> RWBpmOffsetArray:
+ def offset(self) -> ReadWriteFloatArray:
"""
Get the BPM offset values.
Returns
-------
- RWBpmOffsetArray
- BPM offset array for position correction
+ ReadWriteFloatArray
+ Read/write array containing horizontal and vertical offsets.
Raises
------
PyAMLException
If offset has not been attached
"""
- if self.__offset is None:
+ if self._offset is None:
raise PyAMLException(f"{str(self)} has no attached offset")
- return self.__offset
+ return self._offset
@property
- def tilt(self) -> RWBpmTiltScalar:
+ def tilt(self) -> ReadWriteFloatScalar:
"""
Get the BPM tilt angle.
Returns
-------
- RWBpmTiltScalar
- BPM tilt angle for rotation correction
+ ReadWriteFloatScalar
+ Read/write BPM tilt angle used for rotation correction.
Raises
------
PyAMLException
If tilt has not been attached
"""
- if self.__tilt is None:
+ if self._tilt is None:
raise PyAMLException(f"{str(self)} has no attached tilt")
- return self.__tilt
+ return self._tilt
def attach(
self,
peer,
- positions: RBpmArray,
- offset: RWBpmOffsetArray,
- tilt: RWBpmTiltScalar,
+ positions: ReadFloatArray,
+ offset: ReadWriteFloatArray,
+ tilt: ReadWriteFloatScalar,
) -> Self:
"""
Attach BPM attributes to a peer.
@@ -131,25 +157,66 @@ def attach(
Parameters
----------
peer : object
- The peer object (simulator or control system)
+ Simulator or control-system peer.
positions : RBpmArray
- BPM position readings
+ Read-only horizontal and vertical position interface.
offset : RWBpmOffsetArray
- BPM offset values for correction
+ Read/write horizontal and vertical offset interface.
tilt : RWBpmTiltScalar
- BPM tilt angle for rotation correction
+ Read/write tilt interface.
Returns
-------
Self
- A new attached instance of BPM
+ Shallow copy of this BPM bound to ``peer`` and its interfaces.
"""
# Attach positions, offset and tilt attributes and returns a new
# reference
- obj = self.__class__(self._cfg)
- obj.__model = self.__model
- obj.__positions = positions
- obj.__offset = offset
- obj.__tilt = tilt
+ obj = copy.copy(self)
+ obj._positions = positions
+ obj._offset = offset
+ obj._tilt = tilt
obj._peer = peer
return obj
+
+ def _fill_device(self, holder: "ElementHolder") -> None:
+ holder._fill_bpm(self)
+
+ def get_pos_devices(self) -> list[str | None]:
+ """
+ Return configured device keys used for position readback.
+
+ Returns
+ -------
+ list of str or None
+ Horizontal and vertical position device keys.
+ """
+ return [self.x_pos, self.y_pos]
+
+ def get_tilt_device(self) -> str | None:
+ """
+ Return the configured device key used for tilt access.
+
+ Returns
+ -------
+ str or None
+ Tilt device key.
+ """
+ return self.tilt_name
+
+ def get_offset_devices(self) -> list[str | None]:
+ """
+ Return configured device keys used for offset control.
+
+ Returns
+ -------
+ list of str or None
+ Horizontal and vertical offset device keys.
+ """
+ return [self.x_offset, self.y_offset]
+
+ def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self, exclude=["positions", "offset", "tilt"])
diff --git a/pyaml/bpm/bpm_model.py b/pyaml/bpm/bpm_model.py
deleted file mode 100644
index e00c2aa3b..000000000
--- a/pyaml/bpm/bpm_model.py
+++ /dev/null
@@ -1,147 +0,0 @@
-from abc import ABCMeta, abstractmethod
-
-import numpy as np
-from numpy.typing import NDArray
-
-from ..control.deviceaccess import DeviceAccess
-
-
-class BPMModel(metaclass=ABCMeta):
- """
- Abstract class providing interface to accessing BPM positions, offsets,
- tilts.
- """
-
- @abstractmethod
- def get_pos_devices(self) -> list[DeviceAccess | None]:
- """
- Get device handles used for position reading
-
- Returns
- -------
- list[DeviceAccess]
- h and v position devices
- """
- pass
-
- @abstractmethod
- def get_tilt_device(self) -> DeviceAccess | None:
- """
- Get device handle used for tilt access
-
- Returns
- -------
- list[DeviceAccess]
- tilt device
- """
- pass
-
- @abstractmethod
- def get_offset_devices(self) -> list[DeviceAccess | None]:
- """
- Get device handles used for offset access
-
- Returns
- -------
- list[DeviceAccess]
- h and v offset devices
- """
- pass
-
- def x_pos_index(self) -> int | None:
- """
- Returns the index of the horizontal position in
- an array, otherwise a scalar value is expected from the
- corresponding DeviceAccess
-
- Returns
- -------
- int
- Index in the array, None for a scalar value
- """
- return None
-
- def y_pos_index(self) -> int | None:
- """
- Returns the index of the veritcal position in
- an array, otherwise a scalar value is expected from the
- corresponding DeviceAccess
-
- Returns
- -------
- int
- Index in the array, None for a scalar value
- """
- return None
-
- def is_pos_indexed(self) -> bool:
- """
- Check if position values are indexed (array-based).
-
- Returns
- -------
- bool
- True if both x and y positions are indexed, False otherwise
- """
- return self.x_pos_index() is not None and self.y_pos_index() is not None
-
- def tilt_index(self) -> int | None:
- """
- Returns the index of the tilt angle in
- an array, otherwise a scalar value is expected from the
- corresponding DeviceAccess
-
- Returns
- -------
- int
- Index in the array, None for a scalar value
- """
- return None
-
- def is_tilt_indexed(self) -> bool:
- """
- Check if tilt value is indexed (array-based).
-
- Returns
- -------
- bool
- True if tilt is indexed, False otherwise
- """
- return self.tilt_index() is not None
-
- def x_offset_index(self) -> int | None:
- """
- Returns the index of the horizontal offset in
- an array, otherwise a scalar value is expected from the
- corresponding DeviceAccess
-
- Returns
- -------
- int
- Index in the array, None for a scalar value
- """
- return None
-
- def y_offset_index(self) -> int | None:
- """
- Returns the index of the veritcal offset in
- an array, otherwise a scalar value is expected from the
- corresponding DeviceAccess
-
- Returns
- -------
- int
- Index in the array, None for a scalar value
- """
- return None
-
- def is_offset_indexed(self) -> bool:
- """
- Check if offset values are indexed (array-based).
-
- Returns
- -------
- bool
- True if both x and y offsets are indexed, False otherwise
- """
- return self.x_offset_index() is not None and self.y_offset_index() is not None
diff --git a/pyaml/bpm/bpm_simple_model.py b/pyaml/bpm/bpm_simple_model.py
deleted file mode 100644
index 582a60254..000000000
--- a/pyaml/bpm/bpm_simple_model.py
+++ /dev/null
@@ -1,111 +0,0 @@
-import numpy as np
-from numpy.typing import NDArray
-from pydantic import BaseModel, ConfigDict
-
-from pyaml.bpm.bpm_model import BPMModel
-
-from ..common.element import __pyaml_repr__
-from ..control.deviceaccess import DeviceAccess
-
-# Define the main class name for this module
-PYAMLCLASS = "BPMSimpleModel"
-
-
-class ConfigModel(BaseModel):
- """
- Configuration model for BPM simple model
-
- Parameters
- ----------
- x_pos : DeviceAccess, optional
- Horizontal position device
- y_pos : DeviceAccess, optional
- Vertical position device
- x_pos_index : int, optional
- Index in the array when specified, otherwise scalar
- value is expected
- y_pos_index : int, optional
- Index in the array when specified, otherwise scalar
- value is expected
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- x_pos: DeviceAccess | None
- y_pos: DeviceAccess | None
- x_pos_index: int | None = None
- y_pos_index: int | None = None
-
-
-class BPMSimpleModel(BPMModel):
- """
- Concrete implementation of BPMModel that simulates a BPM with tilt and
- offset values.
- """
-
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
- self.__x_pos = cfg.x_pos
- self.__y_pos = cfg.y_pos
-
- def get_pos_devices(self) -> list[DeviceAccess | None]:
- """
- Get device handles used for position reading
-
- Returns
- -------
- list[DeviceAccess]
- Array of DeviceAcess
- """
- return [self.__x_pos, self.__y_pos]
-
- def get_tilt_device(self) -> DeviceAccess | None:
- """
- Get device handle used for tilt access
-
- Returns
- -------
- list[DeviceAccess]
- Array of DeviceAcess
- """
- return None
-
- def get_offset_devices(self) -> list[DeviceAccess | None]:
- """
- Get device handles used for offset access
-
- Returns
- -------
- list[DeviceAccess]
- Array of DeviceAcess
- """
- return [None, None]
-
- def x_pos_index(self) -> int | None:
- """
- Returns the index of the horizontal position in
- an array, otherwise a scalar value is expected from the
- corresponding DeviceAccess
-
- Returns
- -------
- int
- Index in the array, None for a scalar value
- """
- return self._cfg.x_pos_index
-
- def y_pos_index(self) -> int | None:
- """
- Returns the index of the veritcal position in
- an array, otherwise a scalar value is expected from the
- corresponding DeviceAccess
-
- Returns
- -------
- int
- Index in the array, None for a scalar value
- """
- return self._cfg.y_pos_index
-
- def __repr__(self):
- return __pyaml_repr__(self)
diff --git a/pyaml/bpm/bpm_tiltoffset_model.py b/pyaml/bpm/bpm_tiltoffset_model.py
deleted file mode 100644
index 6bccbd8cf..000000000
--- a/pyaml/bpm/bpm_tiltoffset_model.py
+++ /dev/null
@@ -1,94 +0,0 @@
-import numpy as np
-from numpy.typing import NDArray
-from pydantic import BaseModel, ConfigDict
-
-from pyaml.bpm.bpm_model import BPMModel
-from pyaml.bpm.bpm_simple_model import BPMSimpleModel
-
-from ..common.element import __pyaml_repr__
-from ..control.deviceaccess import DeviceAccess
-
-# Define the main class name for this module
-PYAMLCLASS = "BPMTiltOffsetModel"
-
-# TODO: Implepement indexed offset and tilt
-
-
-class ConfigModel(BaseModel):
- """
- Configuration model for BPM with tilt and offset
-
- Parameters
- ----------
- x_pos : DeviceAccess, optional
- Horizontal position device
- y_pos : DeviceAccess, optional
- Vertical position device
- x_offset : DeviceAccess, optional
- Horizontal BPM offset device
- y_offset : DeviceAccess, optional
- Vertical BPM offset device
- tilt : DeviceAccess, optional
- BPM tilt device
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- x_pos: DeviceAccess | None
- y_pos: DeviceAccess | None
- x_pos_index: int | None = None
- y_pos_index: int | None = None
- x_offset: DeviceAccess | None
- y_offset: DeviceAccess | None
- tilt: DeviceAccess | None
-
-
-class BPMTiltOffsetModel(BPMSimpleModel):
- """
- Concrete implementation of BPMModel that simulates a BPM with tilt and
- offset values.
- """
-
- def __init__(self, cfg: ConfigModel):
- super().__init__(cfg)
- self.__x_pos = cfg.x_pos
- self.__y_pos = cfg.y_pos
- self.__x_offset = cfg.x_offset
- self.__y_offset = cfg.y_offset
- self.__tilt = cfg.tilt
-
- def get_pos_devices(self) -> list[DeviceAccess | None]:
- """
- Get device handles used for position reading
-
- Returns
- -------
- list[DeviceAccess]
- Array of DeviceAcess
- """
- return [self.__x_pos, self.__y_pos]
-
- def get_tilt_device(self) -> DeviceAccess | None:
- """
- Get device handle used for tilt access
-
- Returns
- -------
- DeviceAccess
- DeviceAcess
- """
- return self.__tilt
-
- def get_offset_devices(self) -> list[DeviceAccess | None]:
- """
- Get device handles used for offset access
-
- Returns
- -------
- list[DeviceAccess]
- Array of DeviceAcess
- """
- return [self.__x_offset, self.__y_offset]
-
- def __repr__(self):
- return __pyaml_repr__(self)
diff --git a/pyaml/common/abstract.py b/pyaml/common/abstract.py
index 3eb1989b2..39805038c 100644
--- a/pyaml/common/abstract.py
+++ b/pyaml/common/abstract.py
@@ -1,3 +1,11 @@
+"""
+Abstract read/write interfaces for scalar and array values.
+
+The interfaces define the small protocol used by PyAML runtime elements to
+read values, write setpoints, report units, and map scalar channels onto
+array-backed data.
+"""
+
from abc import ABCMeta, abstractmethod
from numpy import array, double
@@ -7,76 +15,169 @@
class ReadFloatScalar(metaclass=ABCMeta):
"""
- Abstract class providing read access to a scalar double
+ Define read-only access to one floating-point value.
+
+ Methods
+ -------
+ get()
+ Return the current scalar value.
+ unit()
+ Return the physical unit of the scalar value.
"""
@abstractmethod
def get(self) -> double:
- """Get the value"""
+ """
+ Return the current scalar value.
+
+ Returns
+ -------
+ float
+ Current value.
+ """
pass
@abstractmethod
def unit(self) -> str:
- """Get the unit of the value"""
+ """
+ Return the physical unit of the scalar value.
+
+ Returns
+ -------
+ str
+ Unit label.
+ """
pass
class ReadWriteFloatScalar(ReadFloatScalar):
"""
- Abstract class providing read write access to a scalar double
+ Define read/write access to one floating-point value.
+
+ Methods
+ -------
+ set(value)
+ Write a scalar setpoint.
+ set_and_wait(value)
+ Write a setpoint and wait for readback confirmation.
"""
@abstractmethod
def set(self, value: double):
- """Set the value"""
+ """
+ Write a scalar setpoint.
+
+ Parameters
+ ----------
+ value : float
+ Value to write.
+ """
pass
# Sets the value and wait that the read value reach the setpoint
@abstractmethod
def set_and_wait(self, value: double):
- """Set the value and wait that setpoint is reached"""
+ """
+ Write a setpoint and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : float
+ Target value.
+ """
pass
class ReadFloatArray(metaclass=ABCMeta):
"""
- Abstract class providing read access to a vector of float
+ Define read-only access to an array of floating-point values.
+
+ Methods
+ -------
+ get()
+ Return the current values as an array.
+ unit()
+ Return the units associated with the array values.
"""
@abstractmethod
def get(self) -> array:
- """Get the value"""
+ """Return the current values as an array."""
pass
@abstractmethod
def unit(self) -> list[str]:
- """Get the unit of the values"""
+ """Return the units associated with the array values."""
pass
class ReadWriteFloatArray(ReadFloatScalar):
"""
- Abstract class providing read write access to a vector of double
+ Define read/write access to an array of floating-point values.
+
+ Methods
+ -------
+ set(value)
+ Write array values in the interface's defined order.
+ set_and_wait(value)
+ Write array values and wait for readback confirmation.
"""
@abstractmethod
def set(self, value: array):
- """Set the values"""
+ """
+ Write array values in the interface's defined order.
+
+ Parameters
+ ----------
+ value : numpy.ndarray
+ Values to write.
+ """
pass
# Sets the value and waits that the read value reach the setpoint
@abstractmethod
def set_and_wait(self, value: array):
- """Set the values and wait that setpoints are reached"""
+ """
+ Write array values and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : numpy.ndarray
+ Target values.
+ """
pass
class RWMapper(ReadWriteFloatScalar):
"""
- Class mapping a scalar to an element of an array
+ Expose one array element through a scalar read/write interface.
+
+ Parameters
+ ----------
+ bind : ReadWriteFloatArray
+ Array interface containing the mapped value.
+ idx : int
+ Zero-based index of the mapped element.
+
+ Methods
+ -------
+ get()
+ Get the value at the mapped index.
+ set(value)
+ Set the value at the mapped index.
+ set_and_wait(value)
+ Set the value and wait for it to reach the setpoint.
+ unit()
+ Get the unit for the value.
+ index()
+ Get the mapped array index.
"""
def __init__(self, bind, idx: int):
+ """
+ Initialize the RWMapper.
+ """
self.bind = bind
self.idx = idx
diff --git a/pyaml/common/abstract_aggregator.py b/pyaml/common/abstract_aggregator.py
index 65ddb7cb6..7a80d6440 100644
--- a/pyaml/common/abstract_aggregator.py
+++ b/pyaml/common/abstract_aggregator.py
@@ -1,3 +1,9 @@
+"""
+Abstract Aggregator module.
+
+This module provides abstract aggregator functionality for the PyAML accelerator middle layer.
+"""
+
from abc import ABCMeta, abstractmethod
import numpy as np
@@ -7,6 +13,19 @@
class ScalarAggregator(metaclass=ABCMeta):
"""
Abstract class providing access to a list of scalar variables
+
+ Methods
+ -------
+ set(value)
+ Write a list of variable
+ set_and_wait(value)
+ Write a list of variable and wait that setpoint are reached
+ get()
+ Return a list variables
+ readback()
+ Return a list variables (measurements)
+ unit()
+ Return the variables unit
"""
@abstractmethod
diff --git a/pyaml/common/constants.py b/pyaml/common/constants.py
index 78c7abd26..e63fa3c25 100644
--- a/pyaml/common/constants.py
+++ b/pyaml/common/constants.py
@@ -1,10 +1,11 @@
"""
-PyAML global constants
+Shared constants and callback action identifiers.
.. data:: HORIZONTAL_KICK_SIGN
- Horizontal kick sign convention for both kick an kick angle (default: -1).
-
+ Sign convention applied to horizontal kicks and kick angles. A value of
+ ``-1.0`` follows the convention used by the PyAML orbit and response-matrix
+ tools.
"""
from enum import Enum
@@ -14,12 +15,21 @@
class Action(Enum):
"""
- Action identifier for callback in measurement tools
+ Identify callback points in measurement-tool workflows.
+
+ Attributes
+ ----------
+ APPLY : int
+ Callback triggered immediately after an actuator excitation.
+ RESTORE : int
+ Callback triggered immediately after restoring the actuator.
+ MEASURE : int
+ Callback triggered immediately after taking a measurement.
"""
APPLY = 0
- "Triggered imediatly after actuator exitation"
+ "Triggered immediately after actuator excitation."
RESTORE = 1
- "Triggered imediatly after actuator has been restored to initial value"
+ "Triggered immediately after restoring the actuator to its initial value."
MEASURE = 2
- "Triggered imediatly after measurement"
+ "Triggered immediately after taking a measurement."
diff --git a/pyaml/common/element.py b/pyaml/common/element.py
index f323f25a4..e18da8d69 100644
--- a/pyaml/common/element.py
+++ b/pyaml/common/element.py
@@ -1,32 +1,217 @@
-from typing import TYPE_CHECKING
+"""Base classes for configured accelerator and lattice elements."""
+
+from collections.abc import Mapping, Sequence
+from dataclasses import dataclass
+from typing import TYPE_CHECKING, Any
from pydantic import BaseModel, ConfigDict
+from . import abstract
from .exception import PyAMLException
if TYPE_CHECKING:
- from ..common.element_holder import ElementHolder
+ from .holders.element_holder import ElementHolder
+
+
+@dataclass(frozen=True)
+class ReprOptions:
+ """Limits applied to PyAML object representations."""
+
+ max_items: int = 3
+ max_depth: int = 2
+ max_length: int = 800
+
+
+_repr_options = ReprOptions()
+
+
+def set_repr_options(
+ max_items: int | None = None,
+ max_depth: int | None = None,
+ max_length: int | None = None,
+) -> ReprOptions:
+ """
+ Configure the limits used by PyAML object representations.
+
+ Passing no arguments returns the current options. Every supplied value must
+ be a positive integer.
+ """
+ global _repr_options
+
+ values = {
+ "max_items": _repr_options.max_items if max_items is None else max_items,
+ "max_depth": _repr_options.max_depth if max_depth is None else max_depth,
+ "max_length": _repr_options.max_length if max_length is None else max_length,
+ }
+ for name, value in values.items():
+ if not isinstance(value, int) or value < 1:
+ raise ValueError(f"{name} must be a positive integer")
+
+ _repr_options = ReprOptions(**values)
+ return _repr_options
+
+
+def _unavailable(error: Exception) -> str:
+ return f""
+
+
+def _class_exclusions(obj) -> set[str]:
+ exclusions: set[str] = set()
+ for cls in type(obj).__mro__:
+ exclusions.update(getattr(cls, "__pyaml_repr_exclude__", ()))
+ return exclusions
+
+
+def _properties(obj) -> dict[str, Any]:
+ values: dict[str, Any] = {}
+ for cls in reversed(type(obj).__mro__):
+ for name, descriptor in vars(cls).items():
+ if name.startswith("_") or not isinstance(descriptor, property):
+ continue
+ try:
+ values[name] = getattr(obj, name)
+ except Exception as error:
+ values[name] = _unavailable(error)
+ return values
+
+
+def _fields(obj) -> dict[str, Any]:
+ custom_fields = getattr(obj, "_pyaml_repr_fields", None)
+ if custom_fields is not None:
+ try:
+ return custom_fields()
+ except Exception as error:
+ return {"value": _unavailable(error)}
+
+ values = _properties(obj)
+ for name, value in vars(obj).items():
+ if not name.startswith("_"):
+ values.setdefault(name, value)
+ return values
+
+
+def _identity(obj) -> str:
+ name = getattr(obj, "name", None)
+ try:
+ name = name() if callable(name) else name
+ except Exception:
+ name = None
+ if isinstance(name, str):
+ return f"{obj.__class__.__name__}:{name}"
+ return obj.__class__.__name__
+
+
+def _short_object_repr(obj) -> str:
+ name = getattr(obj, "name", None)
+ try:
+ name = name() if callable(name) else name
+ except Exception:
+ name = None
+ if isinstance(name, str):
+ return f"{obj.__class__.__name__}(name={_format_value(name, 0, set())})"
+ return obj.__class__.__name__
+
+
+def _selected_items(values: Sequence | set) -> tuple[list[Any], int]:
+ items = list(values)
+ omitted = len(items) - _repr_options.max_items
+ if omitted <= 0:
+ return items, 0
+
+ head_count = (_repr_options.max_items + 1) // 2
+ tail_count = _repr_options.max_items - head_count
+ selected = items[:head_count]
+ if tail_count:
+ selected.extend(items[-tail_count:])
+ return selected, omitted
+
+
+def _format_sequence(values: Sequence | set, depth: int, active: set[int]) -> str:
+ selected, omitted = _selected_items(values)
+ parts = [_format_value(value, depth, active) for value in selected]
+ if omitted:
+ insert_at = (_repr_options.max_items + 1) // 2
+ parts.insert(insert_at, f"... +{omitted} more ...")
+
+ if isinstance(values, tuple):
+ if len(parts) == 1 and not omitted:
+ return f"({parts[0]},)"
+ return f"({', '.join(parts)})"
+ if isinstance(values, set):
+ return "{" + ", ".join(parts) + "}"
+ return "[" + ", ".join(parts) + "]"
+
+
+def _format_mapping(values: Mapping, depth: int, active: set[int]) -> str:
+ selected, omitted = _selected_items(list(values.items()))
+ parts = [f"{_format_value(key, depth, active)}: {_format_value(value, depth, active)}" for key, value in selected]
+ if omitted:
+ parts.insert((_repr_options.max_items + 1) // 2, f"... +{omitted} more ...")
+ return "{" + ", ".join(parts) + "}"
+
+
+def _format_object(obj, depth: int, active: set[int], extra_exclusions: set[str] | None = None) -> str:
+ if depth >= _repr_options.max_depth:
+ return _short_object_repr(obj)
+ if id(obj) in active:
+ return f""
+
+ active.add(id(obj))
+ try:
+ values = _fields(obj)
+ exclusions = _class_exclusions(obj)
+ if extra_exclusions:
+ exclusions.update(extra_exclusions)
+ parts = []
+ for name, value in values.items():
+ if name.startswith("_") or name in exclusions or callable(value):
+ continue
+ if isinstance(value, (abstract.ReadFloatScalar, abstract.ReadFloatArray, abstract.ReadWriteFloatArray)):
+ continue
+ formatted = _identity(value) if name == "peer" and value is not None else _format_value(value, depth + 1, active)
+ parts.append(f"{name}={formatted}")
+ return f"{obj.__class__.__name__}({', '.join(parts)})" if parts else obj.__class__.__name__
+ except Exception as error:
+ return f"{obj.__class__.__name__}({_unavailable(error)})"
+ finally:
+ active.remove(id(obj))
+
+def _format_value(value, depth: int, active: set[int]) -> str:
+ if isinstance(value, str):
+ limit = max(1, _repr_options.max_length // 4)
+ suffix = "..." if len(value) > limit else ""
+ return repr(value[:limit] + suffix)
+ if value is None or isinstance(value, (bool, int, float, complex)):
+ return repr(value)
+ if isinstance(value, Mapping):
+ return _format_mapping(value, depth, active)
+ if isinstance(value, (list, tuple, set, frozenset)):
+ return _format_sequence(value, depth, active)
+ if type(value).__module__.startswith("numpy"):
+ shape = getattr(value, "shape", None)
+ dtype = getattr(value, "dtype", None)
+ return f"{value.__class__.__name__}(shape={shape!r}, dtype={dtype!r})"
+ if type(value).__module__.startswith("pyaml"):
+ return _format_object(value, depth, active)
+ try:
+ result = repr(value)
+ except Exception as error:
+ return _unavailable(error)
+ limit = max(1, _repr_options.max_length // 2)
+ return result if len(result) <= limit else result[:limit] + "..."
-def __pyaml_repr__(obj):
+
+def __pyaml_repr__(obj, exclude: list[str] | None = None):
"""
- Returns a string representation of a pyaml object
+ Return an informative, bounded representation of a PyAML object.
+
+ Public attributes and read-only properties are included unless they are
+ excluded. Device accessors are omitted so rendering never reads a control
+ system value.
"""
- if hasattr(obj, "_cfg"):
- if isinstance(obj, Element):
- return repr(obj._cfg).replace(
- "ConfigModel(",
- obj.__class__.__name__ + "(peer='" + obj.get_peer_name() + "', ",
- )
- else:
- # no peer
- return repr(obj._cfg).replace("ConfigModel", obj.__class__.__name__)
- else:
- # Object is not yet fully constructed
- if isinstance(obj, Element):
- return f"{obj.__class__.__name__}: {obj.get_name()}"
- else:
- return f"{obj.__class__.__name__}"
+ result = _format_object(obj, 0, set(), set(exclude or ()))
+ return result[: _repr_options.max_length] + ("..." if len(result) > _repr_options.max_length else "")
class ElementConfigModel(BaseModel):
@@ -38,7 +223,7 @@ class ElementConfigModel(BaseModel):
name : str
The name of the PyAML element.
description : str, optional
- Description of the element.
+ Human-readable description of the element.
lattice_names : str or None, optional
The name(s) of the associated element(s) in the lattice. By default,
the PyAML element name is used. lattice_name accept the following
@@ -57,84 +242,199 @@ class ElementConfigModel(BaseModel):
lattice_names: str | None = None
-class Element(object):
+class Element:
"""
- Class providing access to one element of a physical or simulated lattice
+ Base class for an element in a physical or simulated lattice.
+
+ Parameters
+ ----------
+ name : str
+ Unique element name.
+ lattice_names : str or None, optional
+ Lattice element selector associated with this element. Defaults to
+ ``name`` when omitted.
+ description : str or None, optional
+ Human-readable element description.
- Attributes:
- name: str
- The unique name identifying the element in the configuration file
+ Attributes
+ ----------
+ name
+ Return the element name.
+ lattice_names
+ Return the lattice selector associated with the element.
+ description
+ Return the element description, if one is configured.
+ peer
+ Return the simulator or control system attached to the element.
+
+ Methods
+ -------
+ get_name()
+ Return the element name.
+ get_lattice_names()
+ Return the lattice selector associated with the element.
+ get_description()
+ Return the element description, if available.
+ set_energy(E)
+ Set the beam energy used by this element, if supported.
+ set_mcf(alphac)
+ Set the momentum compaction factor, if supported.
+ set_harmonic(h)
+ Set the RF harmonic number, if supported.
+ check_peer()
+ Raise an error if the element is not attached to a peer.
+ attached_to()
+ Return a human-readable description of the attached peer.
+ post_init()
+ Perform post-construction initialization after attachment.
"""
- def __init__(self, name: str):
- self._name: str = name
- self._peer: "ElementHolder" = None # Peer: ControlSystem, Simulator
+ __pyaml_repr_exclude__ = ("description",)
- def get_name(self) -> str:
+ def __init__(
+ self,
+ name: str,
+ lattice_names: str | None = None,
+ description: str | None = None,
+ ):
"""
- Returns the name of the element
+ Initialize an element and its optional lattice association.
"""
- return self._name
+ self._name = name
+ self._lattice_names = lattice_names
+ self._description = description
+ self._peer: ElementHolder | None = None
- def get_lattice_names(self) -> str:
+ def _cfg_value(self, attr: str, fallback: Any) -> Any:
"""
- Returns the name of associated lattice element(s)
- """
- if not hasattr(self, "_cfg"):
- return self._name
- else:
- return self._cfg.lattice_names
+ Return a configured attribute, falling back to the base value.
- def get_description(self) -> str:
- """
- Returns the description of the element
+ Parameters
+ ----------
+ attr : str
+ Configuration attribute name.
+ fallback : object
+ Value returned when no configured value is available.
"""
- return self._cfg.description
+ cfg = getattr(self, "_cfg", None)
+ if cfg is not None:
+ value = getattr(cfg, attr, None)
+ if value is not None:
+ return value
+ return fallback
+
+ @property
+ def name(self) -> str:
+ """Return the element name."""
+ return self._cfg_value("name", self._name)
+
+ @property
+ def lattice_names(self) -> str:
+ """Return the lattice selector associated with the element."""
+ cfg = getattr(self, "_cfg", None)
+
+ if cfg is not None and cfg.lattice_names is not None:
+ return cfg.lattice_names
+
+ if self._lattice_names is not None:
+ return self._lattice_names
+
+ return self.name
+
+ @property
+ def description(self) -> str | None:
+ """Return the element description, if one is configured."""
+ return self._cfg_value("description", self._description)
+
+ def get_name(self) -> str:
+ """Return the element name."""
+ return self.name
+
+ def get_lattice_names(self) -> str | None:
+ """Return the lattice selector associated with the element."""
+ return self.lattice_names
+
+ def get_description(self) -> str | None:
+ """Return the element description, if available."""
+ return self.description
def set_energy(self, E: float):
"""
- Set the instrument energy on this element
+ Set the beam energy used by this element, if supported.
+
+ Parameters
+ ----------
+ E : float
+ Beam energy.
"""
pass
def set_mcf(self, alphac: float):
"""
- Set the instrument moment compaction factor on this element
+ Set the momentum compaction factor, if supported.
+
+ Parameters
+ ----------
+ alphac : float
+ Momentum compaction factor.
"""
pass
def set_harmonic(self, h: int):
"""
- Sets the harmonic number (number of bucket) on this element
+ Set the RF harmonic number, if supported.
+
+ Parameters
+ ----------
+ h : int
+ Number of RF buckets per revolution.
"""
pass
def check_peer(self):
"""
- Throws an exception if the element is not attacched
- to a simulator or to a control system
+ Raise an error if the element is not attached to a peer.
+
+ Raises
+ ------
+ PyAMLException
+ If the element is not attached to a simulator or control system.
"""
if self._peer is None:
- raise PyAMLException(f"{str(self)} is not attachedto a control system or the a simulator")
+ raise PyAMLException(f"{str(self.name)} is not attachedto a control system or the a simulator")
@property
def peer(self) -> "ElementHolder":
- """
- Returns the peer simulator or control system
- """
+ """Return the simulator or control system attached to the element."""
return self._peer
- def get_peer_name(self) -> str:
+ def attached_to(self) -> str:
"""
- Returns a string representation of peer simulator or control system
+ Return a human-readable description of the attached peer.
+
+ Returns
+ -------
+ str
+ Peer type and name, or ``"None"`` when unattached.
"""
return "None" if self._peer is None else f"{self._peer.__class__.__name__}:{self._peer.name()}"
+ def _fill_device(self, holder: "ElementHolder"):
+ """
+ Add this element to a holder (Simultor or ControlSystem)
+ """
+ raise PyAMLException(f"__fill_device() is not implemented for {self.__class__.__name__}")
+
def post_init(self):
"""
- Method triggered after all initialisations are done
+ Perform post-construction initialization after attachment.
+
+ Base elements do not require additional initialization.
"""
pass
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return __pyaml_repr__(self)
diff --git a/pyaml/common/element_holder.py b/pyaml/common/element_holder.py
deleted file mode 100644
index 0d34d17e6..000000000
--- a/pyaml/common/element_holder.py
+++ /dev/null
@@ -1,433 +0,0 @@
-"""
-Module handling element references for simulators and control system
-"""
-
-import fnmatch
-import re
-from typing import TYPE_CHECKING
-
-from ..arrays.bpm_array import BPMArray
-from ..arrays.cfm_magnet_array import CombinedFunctionMagnetArray
-from ..arrays.element_array import ElementArray
-from ..arrays.magnet_array import MagnetArray
-from ..arrays.serialized_magnet_array import SerializedMagnetsArray
-from ..bpm.bpm import BPM
-from ..common.exception import PyAMLException
-from ..diagnostics.chromaticity_monitor import ChomaticityMonitor
-from ..diagnostics.tune_monitor import BetatronTuneMonitor
-from ..magnet.cfm_magnet import CombinedFunctionMagnet
-from ..magnet.magnet import Magnet
-from ..magnet.serialized_magnet import SerializedMagnets
-from ..rf.rf_plant import RFPlant
-from ..rf.rf_transmitter import RFTransmitter
-from .element import Element
-
-if TYPE_CHECKING:
- from ..accelerator import Accelerator
- from ..tuning_tools.chromaticity import Chromaticity
- from ..tuning_tools.chromaticity_response_matrix import ChromaticityResponseMatrix
- from ..tuning_tools.dispersion import Dispersion
- from ..tuning_tools.orbit import Orbit
- from ..tuning_tools.orbit_response_matrix import OrbitResponseMatrix
- from ..tuning_tools.tune import Tune
- from ..tuning_tools.tune_response_matrix import TuneResponseMatrix
-
-
-class ElementHolder(object):
- """
- Class that store references of objects used from both
- simulators and control system
- """
-
- def __init__(self):
- # Device handle
- self.__MAGNETS: dict[str, Magnet] = {}
- self.__CFM_MAGNETS: dict[str, CombinedFunctionMagnet] = {}
- self.__SERIALIZED_MAGNETS: dict[str, SerializedMagnets] = {}
- self.__BPMS: dict[str, BPM] = {}
- self.__RFPLANT: dict[str, RFPlant] = {}
- self.__RFTRANSMITTER: dict[str, RFTransmitter] = {}
- self.__DIAG: dict[str, Element] = {}
- self.__TUNING_TOOLS: dict[str, Element] = {}
- self.__ALL: dict[str, Element] = {}
-
- self.__by_class_elements: dict[type, dict] = {
- Magnet: self.__MAGNETS,
- CombinedFunctionMagnet: self.__CFM_MAGNETS,
- SerializedMagnets: self.__SERIALIZED_MAGNETS,
- BPM: self.__BPMS,
- RFPlant: self.__RFPLANT,
- RFTransmitter: self.__RFTRANSMITTER,
- }
-
- # Array handle
- self.__MAGNET_ARRAYS: dict = {}
- self.__CFM_MAGNET_ARRAYS: dict = {}
- self.__SERIALIZED_MAGNETS_ARRAYS: dict = {}
- self.__BPM_ARRAYS: dict = {}
- self.__ELEMENT_ARRAYS: dict = {}
-
- @property
- def peer(self) -> "Accelerator":
- """
- Returns the peer accelerator of this holder
- """
- return self._peer
-
- def post_init(self):
- """
- Method triggered after all initialisations are done
- """
- for e in self.get_all_elements():
- e.post_init()
-
- def fill_device(self, elements: list[Element]):
- raise PyAMLException("ElementHolder.fill_device() is not subclassed")
-
- def find_elements(self, filter: str) -> list[str]:
- if filter.startswith("re:"):
- pattern = re.compile(rf"{filter[3:]}")
- elements = [k for k in self.__ALL.keys() if pattern.fullmatch(k)]
- elif "*" in filter or "?" in filter:
- elements = [k for k in self.__ALL.keys() if fnmatch.fnmatch(k, filter)]
- else:
- elements = [filter]
-
- return elements
-
- def fill_array(
- self,
- array_name: str,
- element_names: list[str],
- get_func,
- constructor,
- ARR: dict,
- ):
- # Handle wildcard, regexp and exclusion pattern
- all_names: list[str] = []
- excluded_names: list[str] = []
- for name in element_names:
- if name.startswith("~"):
- names = self.find_elements(name[1:])
- excluded_names.extend(names)
- else:
- names = self.find_elements(name)
- all_names.extend(names)
-
- [all_names.remove(name) for name in excluded_names]
-
- a = []
- for n in all_names:
- try:
- m = get_func(n)
- except Exception as err:
- raise PyAMLException(f"{constructor.__name__} {array_name} : {err} @index {len(a)}") from None
- if m in a:
- raise PyAMLException(f"{constructor.__name__} {array_name} : duplicate name {name} @index {len(a)}") from None
- a.append(m)
- ARR[array_name] = constructor(array_name, a)
-
- def __add(self, array, element: Element):
- if element.get_name() in self.__ALL: # Ensure name unicity
- raise PyAMLException(f"Duplicate element {element.__class__.__name__} name {{element.get_name()}}") from None
- array[element.get_name()] = element
- self.__ALL[element.get_name()] = element
-
- def __get(self, what, name, array) -> Element:
- if name not in array:
- raise PyAMLException(f"{what} {name} not defined")
- return array[name]
-
- # Generic elements
- def fill_element_array(self, arrayName: str, elementNames: list[str]):
- self.fill_array(
- arrayName,
- elementNames,
- self.get_element,
- ElementArray,
- self.__ELEMENT_ARRAYS,
- )
-
- def add_element(self, element: Element):
- self.__ALL[element.get_name()] = element
-
- def get_element(self, name: str) -> Element:
- return self.__get("Element", name, self.__ALL)
-
- def get_elements(self, name: str) -> ElementArray:
- return self.__get("Element array", name, self.__ELEMENT_ARRAYS)
-
- def get_all_elements(self) -> list[Element]:
- return [value for key, value in self.__ALL.items()]
-
- # Magnets
-
- def fill_magnet_array(self, arrayName: str, elementNames: list[str]):
- self.fill_array(arrayName, elementNames, self.get_magnet, MagnetArray, self.__MAGNET_ARRAYS)
-
- def get_magnet(self, name: str) -> Magnet:
- return self.__get("Magnet", name, self.__MAGNETS)
-
- def add_magnet(self, m: Magnet):
- self.__add(self.__MAGNETS, m)
-
- def get_magnets(self, name: str) -> MagnetArray:
- return self.__get("Magnet array", name, self.__MAGNET_ARRAYS)
-
- def get_all_magnets(self) -> list[Magnet]:
- return [value for key, value in self.__MAGNETS.items()]
-
- # Combined Function Magnets
-
- def fill_cfm_magnet_array(self, arrayName: str, elementNames: list[str]):
- self.fill_array(
- arrayName,
- elementNames,
- self.get_cfm_magnet,
- CombinedFunctionMagnetArray,
- self.__CFM_MAGNET_ARRAYS,
- )
-
- def get_cfm_magnet(self, name: str) -> Magnet:
- return self.__get("CombinedFunctionMagnet", name, self.__CFM_MAGNETS)
-
- def add_cfm_magnet(self, m: Magnet):
- self.__add(self.__CFM_MAGNETS, m)
-
- def get_cfm_magnets(self, name: str) -> CombinedFunctionMagnetArray:
- return self.__get("CombinedFunctionMagnet array", name, self.__CFM_MAGNET_ARRAYS)
-
- def get_all_cfm_magnets(self) -> list[CombinedFunctionMagnet]:
- return [value for key, value in self.__CFM_MAGNETS.items()]
-
- # Serialized magnets
-
- def fill_serialized_magnet_array(self, arrayName: str, elementNames: list[str]):
- self.fill_array(
- arrayName,
- elementNames,
- self.get_serialized_magnet,
- SerializedMagnetsArray,
- self.__SERIALIZED_MAGNETS_ARRAYS,
- )
-
- def get_serialized_magnet(self, name: str) -> Magnet:
- return self.__get("SerializedMagnets", name, self.__SERIALIZED_MAGNETS)
-
- def add_serialized_magnet(self, m: Magnet):
- self.__add(self.__SERIALIZED_MAGNETS, m)
-
- def get_serialized_magnets(self, name: str) -> SerializedMagnetsArray:
- return self.__get("SerializedMagnets array", name, self.__SERIALIZED_MAGNETS_ARRAYS)
-
- def get_all_serialized_magnets(self) -> list[SerializedMagnets]:
- return [value for key, value in self.__SERIALIZED_MAGNETS.items()]
-
- # BPMs
-
- def fill_bpm_array(self, arrayName: str, elementNames: list[str]):
- self.fill_array(
- arrayName,
- elementNames,
- self.get_bpm,
- BPMArray,
- self.__BPM_ARRAYS,
- )
-
- def get_bpm(self, name: str) -> Element:
- return self.__get("BPM", name, self.__BPMS)
-
- def add_bpm(self, bpm: BPM):
- self.__add(self.__BPMS, bpm)
-
- def get_bpms(self, name: str) -> BPMArray:
- return self.__get("BPM array", name, self.__BPM_ARRAYS)
-
- def get_all_bpms(self) -> list[BPM]:
- return [value for key, value in self.__BPMS.items()]
-
- # RF
-
- def get_rf_plant(self, name: str) -> RFPlant:
- return self.__get("RFPlant", name, self.__RFPLANT)
-
- def add_rf_plant(self, rf: RFPlant):
- self.__add(self.__RFPLANT, rf)
-
- def add_rf_transnmitter(self, rf: RFTransmitter):
- self.__add(self.__RFTRANSMITTER, rf)
-
- def get_rf_trasnmitter(self, name: str) -> RFTransmitter:
- return self.__get("RFTransmitter", name, self.__RFTRANSMITTER)
-
- # Tune monitor
-
- def get_betatron_tune_monitor(self, name: str) -> BetatronTuneMonitor:
- return self.__get("Diagnostic", name, self.__DIAG)
-
- def add_betatron_tune_monitor(self, tune_monitor: Element):
- self.__add(self.__DIAG, tune_monitor)
-
- # Tuning/Measurement tools
-
- def add_tool(self, tool: Element):
- self.__add(self.__TUNING_TOOLS, tool)
-
- # ---- Chromaticity -------------------------------------------------
-
- def get_chromaticity_monitor(self, name: str) -> ChomaticityMonitor:
- obj = self.__get("Chomaticity monitor", name, self.__TUNING_TOOLS)
- return obj
-
- def get_chromaticity_tuning(self, name: str) -> "Chromaticity":
- return self.__get("Chromaticity tool", name, self.__TUNING_TOOLS)
-
- def get_crm_tuning(self, name: str) -> "ChromaticityResponseMatrix":
- return self.__get("ChromaticityResponseMatrix tool", name, self.__TUNING_TOOLS)
-
- @property
- def chromaticity(self) -> "Chromaticity":
- return self.get_chromaticity_tuning("DEFAULT_CHROMATICITY_CORRECTION")
-
- @property
- def crm(self) -> "ChromaticityResponseMatrix":
- return self.get_crm_tuning("DEFAULT_CHROMATICITY_RESPONSE_MATRIX")
-
- # ---- Tune ---------------------------------------------------------
-
- def get_tune_tuning(self, name: str) -> "Tune":
- return self.__get("Tune tuning tool", name, self.__TUNING_TOOLS)
-
- @property
- def tune(self) -> "Tune":
- return self.get_tune_tuning("DEFAULT_TUNE_CORRECTION")
-
- def get_trm_tuning(self, name: str) -> "TuneResponseMatrix":
- return self.__get("TuneResponseMatrix tool", name, self.__TUNING_TOOLS)
-
- @property
- def trm(self) -> "TuneResponseMatrix":
- return self.get_trm_tuning("DEFAULT_TUNE_RESPONSE_MATRIX")
-
- # ---- Orbit --------------------------------------------------------
-
- def get_orbit_tuning(self, name: str) -> "Orbit":
- return self.__get("Orbit tuning tool", name, self.__TUNING_TOOLS)
-
- @property
- def orbit(self) -> "Orbit":
- return self.get_orbit_tuning("DEFAULT_ORBIT_CORRECTION")
-
- def get_orm_tuning(self, name: str) -> "OrbitResponseMatrix":
- return self.__get("OrbitResponseMatrix tool", name, self.__TUNING_TOOLS)
-
- @property
- def orm(self) -> "OrbitResponseMatrix":
- return self.get_orm_tuning("DEFAULT_ORBIT_RESPONSE_MATRIX")
-
- # ---- Dispersive orbit --------------------------------------------
-
- def get_dispersion_tuning(self, name: str) -> "Dispersion":
- return self.__get("Dispersion tool", name, self.__TUNING_TOOLS)
-
- @property
- def dispersion(self) -> "Dispersion":
- return self.get_dispersion_tuning("DEFAULT_DISPERSION")
-
- def _get_array(self, name: str):
- """
- Generic array resolver used by YellowPages.
-
- The method returns the array object referenced by 'name', regardless of its
- concrete type.
- """
- if name in self.__BPM_ARRAYS:
- return self.__BPM_ARRAYS[name]
- if name in self.__MAGNET_ARRAYS:
- return self.__MAGNET_ARRAYS[name]
- if name in self.__CFM_MAGNET_ARRAYS:
- return self.__CFM_MAGNET_ARRAYS[name]
- if name in self.__SERIALIZED_MAGNETS_ARRAYS:
- return self.__SERIALIZED_MAGNETS_ARRAYS[name]
- if name in self.__ELEMENT_ARRAYS:
- return self.__ELEMENT_ARRAYS[name]
-
- raise PyAMLException(f"Array {name} not defined")
-
- def _get_tool(self, name: str):
- """
- Generic tuning tool resolver used by YellowPages.
- """
- if name not in self.__TUNING_TOOLS:
- raise PyAMLException(f"Tool {name} not defined")
- return self.__TUNING_TOOLS[name]
-
- def _get_diagnostic(self, name: str):
- """
- Generic diagnostic resolver used by YellowPages.
- """
- if name not in self.__DIAG:
- raise PyAMLException(f"Diagnostic {name} not defined")
- return self.__DIAG[name]
-
- def _list_arrays(self) -> list[str]:
- """
- Return all array identifiers available in this holder.
- """
- arrays: list[str] = []
- arrays.extend(self.__BPM_ARRAYS.keys())
- arrays.extend(self.__MAGNET_ARRAYS.keys())
- arrays.extend(self.__CFM_MAGNET_ARRAYS.keys())
- arrays.extend(self.__SERIALIZED_MAGNETS_ARRAYS.keys())
- arrays.extend(self.__ELEMENT_ARRAYS.keys())
- return arrays
-
- def _list_tools(self) -> list[str]:
- """
- Return all tuning tool identifiers available in this holder.
- """
- return list(self.__TUNING_TOOLS.keys())
-
- def _list_diagnostics(self) -> list[str]:
- """
- Return all diagnostic identifiers available in this holder.
- """
- return list(self.__DIAG.keys())
-
- def _set_energy(self, E: float):
- """
- Sets the energy on all elements
-
- Parameters
- ----------
- E : float
- Energy in eV
- """
- # Needed by energy dependant element (i.e. magnet coil current calculation)
- for m in self.get_all_elements():
- m.set_energy(E)
-
- def _set_mcf(self, alphac: float):
- """
- Sets the moment compaction factor on all elements
-
- Parameters
- ----------
- alphac : float
- Moment compaction factor
- """
- # Needed by some off energy dependant element (i.e. chromaticty tools)
- for m in self.get_all_elements():
- m.set_mcf(alphac)
-
- def _set_harmonic(self, h: int):
- """
- Sets the harmonic number (number of bucket) on elements
-
- Parameters
- ----------
- h : int
- Harmonic number
- """
- for m in self.get_all_elements():
- m.set_harmonic(h)
diff --git a/pyaml/common/exception.py b/pyaml/common/exception.py
index 3bf9cb787..577c3def2 100644
--- a/pyaml/common/exception.py
+++ b/pyaml/common/exception.py
@@ -1,22 +1,37 @@
+"""Exception types used to report PyAML and configuration failures."""
+
+
class PyAMLException(Exception):
- """Exception raised for PyAML error scenarios.
+ """
+ Base exception for errors raised by PyAML runtime components.
- Attributes:
- message -- explanation of the error
+ Parameters
+ ----------
+ message : object
+ Error description retained on the exception as ``message``.
"""
def __init__(self, message):
+ """
+ Initialize a PyAML runtime exception.
+ """
super().__init__(message)
self.message = message
class PyAMLConfigException(Exception):
- """Exception raised for PyAML configuration error scenarios.
+ """
+ Exception raised when configuration cannot be loaded or validated.
- Attributes:
- message -- explanation of the error
+ Parameters
+ ----------
+ message : object
+ Error description retained on the exception as ``message``.
"""
def __init__(self, message):
+ """
+ Initialize a configuration exception.
+ """
super().__init__(message)
self.message = message
diff --git a/pyaml/common/holders/element_holder.py b/pyaml/common/holders/element_holder.py
new file mode 100644
index 000000000..aa2b16dc0
--- /dev/null
+++ b/pyaml/common/holders/element_holder.py
@@ -0,0 +1,905 @@
+"""Store, resolve, and group elements shared by runtime backends."""
+
+import fnmatch
+import re
+from abc import ABCMeta, abstractmethod
+from typing import TYPE_CHECKING, overload
+
+from ...arrays.element_array import ElementArray
+from ...bpm.bpm import BPM
+from ...diagnostics.tune_monitor import BetatronTuneMonitor
+from ...magnet.cfm_magnet import CombinedFunctionMagnet
+from ...magnet.magnet import Magnet
+from ...magnet.serialized_magnet import SerializedMagnets
+from ...rf.rf_plant import RFPlant
+from ...rf.rf_transmitter import RFTransmitter
+from ...tuning_tools.chromaticity_monitor import ChromaticityMonitor
+from ..abstract_aggregator import ScalarAggregator
+from ..element import Element
+from ..exception import PyAMLException
+from .rf_holder import RFHolder
+from .sub_holders import (
+ BPMHolder,
+ BPMsHolder,
+ CombinedFunctionMagnetHolder,
+ CombinedFunctionMagnetsHolder,
+ MagnetHolder,
+ MagnetsHolder,
+ SerializedMagnetHolder,
+ SerializedMagnetsHolder,
+)
+
+if TYPE_CHECKING:
+ from ...accelerator import Accelerator
+ from ...configuration.unbound_element import UnboundElement
+ from ...tuning_tools.bba import BBA
+ from ...tuning_tools.chromaticity import Chromaticity
+ from ...tuning_tools.chromaticity_response_matrix import ChromaticityResponseMatrix
+ from ...tuning_tools.dispersion import Dispersion
+ from ...tuning_tools.measurement_tool import MeasurementTool
+ from ...tuning_tools.orbit import Orbit
+ from ...tuning_tools.orbit_response_matrix import OrbitResponseMatrix
+ from ...tuning_tools.tune import Tune
+ from ...tuning_tools.tune_response_matrix import TuneResponseMatrix
+ from ...tuning_tools.tuning_tool import TuningTool
+
+
+class ElementHolder(metaclass=ABCMeta):
+ """
+ Manage named elements, diagnostics, tools, and element arrays.
+
+ An element holder owns every element of one accelerator mode and exposes them
+ through per-type accessors. :class:`~pyaml.control.controlsystem.ControlSystem`
+ and :class:`~pyaml.lattice.simulator.Simulator` both derive from it, so the same
+ API drives a live machine and a simulation.
+
+ Attributes
+ ----------
+ magnet, magnets
+ Single magnet by name, or a named magnet array.
+ bpm, bpms
+ Single BPM by name, or a named BPM array.
+ combined_function_magnet, combined_function_magnets
+ Single combined-function magnet by name, or a named array.
+ serialized_magnet, serialized_magnets
+ Single serialized magnet group by name, or a named array.
+ rf
+ RF plant and transmitters of this mode.
+ tune, chromaticity, orbit, dispersion
+ Tuning tools attached to this mode, looked up by name.
+ trm, crm, orm
+ Response-matrix measurement tools, looked up by name.
+
+ Methods
+ -------
+ post_init()
+ Run post-initialization hooks for every stored element.
+ fill_device(elements)
+ Bind configured elements to the holder's runtime backend.
+ create_magnet_strength_aggregator(magnets)
+ Create an aggregator exposing the selected magnets' strengths.
+ create_magnet_hardware_aggregator(magnets)
+ Create an aggregator exposing the selected hardware values.
+ create_bpm_aggregators(bpms)
+ Create aggregate BPM position interfaces.
+ find_elements(filter)
+ Find element names matching a literal, wildcard, or regular expression.
+ fill_element_array(arrayName, elementNames)
+ Create and register a generic element array.
+ add_element(element)
+ Add an element to the global element store.
+ get_element(name)
+ Return a named element from the global store.
+ get_elements(name)
+ Return a named generic element array.
+ get_all_elements()
+ Return all registered elements in insertion order.
+ get_betatron_tune_monitor(name)
+ Return a named betatron tune monitor.
+ add_betatron_tune_monitor(tune_monitor)
+ Add a betatron tune monitor to the diagnostics store.
+ add_tool(tool)
+ Add a tuning or measurement tool to the tool store.
+ get_chromaticity_monitor(name)
+ Return a named chromaticity monitor.
+ get_chromaticity_tuning(name)
+ Return a named chromaticity tuning tool.
+ get_crm_tuning(name)
+ Return a named chromaticity response-matrix tool.
+ get_tune_tuning(name)
+ Return a named tune correction tool.
+ get_trm_tuning(name)
+ Return a named tune response-matrix tool.
+ get_orbit_tuning(name)
+ Return a named orbit correction tool.
+ get_orm_tuning(name)
+ Return a named orbit response-matrix tool.
+ get_bba(name)
+ Return a named beam-based alignment tool.
+ get_dispersion_tuning(name)
+ Return a named dispersion tuning tool.
+ """
+
+ def __init__(self):
+ # Device handle
+ """Initialize empty element stores and typed sub-holders."""
+ self._MAGNETS: dict[str, Magnet] = {}
+ self._CFM_MAGNETS: dict[str, CombinedFunctionMagnet] = {}
+ self._SERIALIZED_MAGNETS: dict[str, SerializedMagnets] = {}
+ self._BPMS: dict[str, BPM] = {}
+ self._RFPLANT: dict[str, RFPlant] = {}
+ self._RFTRANSMITTER: dict[str, RFTransmitter] = {}
+ self._DIAG: dict[str, Element] = {}
+ self._TOOLS: dict[str, Element] = {}
+ self._ALL: dict[str, Element] = {}
+
+ self.__by_class_elements: dict[type, dict] = {
+ Magnet: self._MAGNETS,
+ CombinedFunctionMagnet: self._CFM_MAGNETS,
+ SerializedMagnets: self._SERIALIZED_MAGNETS,
+ BPM: self._BPMS,
+ RFPlant: self._RFPLANT,
+ RFTransmitter: self._RFTRANSMITTER,
+ }
+
+ # Array handle
+ self._MAGNET_ARRAYS: dict = {}
+ self._CFM_MAGNET_ARRAYS: dict = {}
+ self._SERIALIZED_MAGNETS_ARRAYS: dict = {}
+ self._BPM_ARRAYS: dict = {}
+ self._ELEMENT_ARRAYS: dict = {}
+
+ # Sub holders
+ self._magnet_holder = MagnetHolder(self)
+ self._magnets_holder = MagnetsHolder(self)
+ self._serialized_magnet_holder = SerializedMagnetHolder(self)
+ self._serialized_magnets_holder = SerializedMagnetsHolder(self)
+ self._combined_function_magnet_holder = CombinedFunctionMagnetHolder(self)
+ self._combined_function_magnets_holder = CombinedFunctionMagnetsHolder(self)
+ self._bpm_holder = BPMHolder(self)
+ self._bpms_holder = BPMsHolder(self)
+ self._rf_holder = RFHolder(self)
+
+ @property
+ def peer(self) -> "Accelerator":
+ """Return the accelerator associated with this holder."""
+ return self._peer
+
+ # Sub holders ----------------------------------------------------------------
+
+ @property
+ def magnet(self) -> MagnetHolder:
+ """Return the magnet."""
+ return self._magnet_holder
+
+ @property
+ def magnets(self) -> MagnetsHolder:
+ """Return the magnets."""
+ return self._magnets_holder
+
+ @property
+ def serialized_magnet(self) -> SerializedMagnetHolder:
+ """Return the serialized magnet."""
+ return self._serialized_magnet_holder
+
+ @property
+ def serialized_magnets(self) -> SerializedMagnetsHolder:
+ """Return the serialized magnets."""
+ return self._serialized_magnets_holder
+
+ @property
+ def combined_function_magnet(self) -> CombinedFunctionMagnetHolder:
+ """Return the combined function magnet."""
+ return self._combined_function_magnet_holder
+
+ @property
+ def combined_function_magnets(self) -> CombinedFunctionMagnetsHolder:
+ """Return the combined function magnets."""
+ return self._combined_function_magnets_holder
+
+ @property
+ def bpm(self) -> BPMHolder:
+ """Return the bpm."""
+ return self._bpm_holder
+
+ @property
+ def bpms(self) -> BPMsHolder:
+ """Return the bpms."""
+ return self._bpms_holder
+
+ @property
+ def rf(self) -> RFHolder:
+ """Return the rf."""
+ return self._rf_holder
+
+ def post_init(self):
+ """Run post-initialization hooks for every stored element."""
+ for e in self.get_all_elements():
+ e.post_init()
+
+ def fill_device(self, elements: list[Element]):
+ for element in elements:
+ element._fill_device(self)
+
+ @abstractmethod
+ def _fill_magnet(self, magnet: Magnet) -> None:
+ pass
+
+ @abstractmethod
+ def _fill_combined_function_magnet(self, magnet: CombinedFunctionMagnet) -> None:
+ pass
+
+ @abstractmethod
+ def _fill_serialized_magnets(self, magnets: SerializedMagnets) -> None:
+ pass
+
+ @abstractmethod
+ def _fill_bpm(self, bpm: BPM) -> None:
+ pass
+
+ @abstractmethod
+ def _fill_rf_plant(self, rf_plant: RFPlant) -> None:
+ pass
+
+ @abstractmethod
+ def _fill_betatron_tune_monitor(self, monitor: BetatronTuneMonitor) -> None:
+ pass
+
+ @abstractmethod
+ def _fill_tool(self, tool: "TuningTool | MeasurementTool") -> None:
+ pass
+
+ @abstractmethod
+ def _fill_unbound_element(self, element: "UnboundElement") -> None:
+ pass
+
+ # Aggregators
+
+ @abstractmethod
+ def create_magnet_strength_aggregator(self, magnets: list[Magnet]) -> ScalarAggregator | None:
+ """
+ Create an aggregator exposing the selected magnets' strengths.
+
+ Parameters
+ ----------
+ magnets : list[Magnet]
+ Magnets to include in the strength aggregator.
+
+ Returns
+ -------
+ ScalarAggregator | None
+ Strength aggregator, or ``None`` when unsupported.
+ """
+ pass
+
+ @abstractmethod
+ def create_magnet_hardware_aggregator(self, magnets: list[Magnet]) -> ScalarAggregator | None:
+ """
+ Create an aggregator exposing the selected hardware values.
+
+ Parameters
+ ----------
+ magnets : list[Magnet]
+ Magnets to include in the hardware aggregator.
+
+ Returns
+ -------
+ ScalarAggregator | None
+ Hardware aggregator, or ``None`` when unsupported.
+ """
+ pass
+
+ @abstractmethod
+ def create_bpm_aggregators(self, bpms: list[BPM]) -> list[ScalarAggregator | None]:
+ """
+ Create aggregate BPM position interfaces.
+
+ Parameters
+ ----------
+ bpms : list[BPM]
+ BPMs to include in the aggregators.
+
+ Returns
+ -------
+ list[ScalarAggregator | None]
+ Aggregators for combined, horizontal, and vertical positions.
+ """
+ pass
+
+ # Elements
+
+ def find_elements(self, filter: str) -> list[str]:
+ """
+ Find element names matching a literal, wildcard, or regular expression.
+
+ Parameters
+ ----------
+ filter : str
+ Pattern to match. Prefix with ``re:`` for a regular expression.
+
+ Returns
+ -------
+ list[str]
+ Matching element names.
+ """
+ if filter.startswith("re:"):
+ pattern = re.compile(rf"{filter[3:]}")
+ elements = [k for k in self._ALL.keys() if pattern.fullmatch(k)]
+ elif "*" in filter or "?" in filter:
+ elements = [k for k in self._ALL.keys() if fnmatch.fnmatch(k, filter)]
+ else:
+ elements = [filter]
+
+ return elements
+
+ def _fill_array(
+ self,
+ array_name: str,
+ element_names: list[str],
+ get_func,
+ constructor,
+ ARR: dict,
+ ):
+ # Handle wildcard, regexp and exclusion pattern
+ """
+ Resolve selectors and store a constructed element array.
+
+ Parameters
+ ----------
+ array_name : str
+ Name of the array to create.
+ element_names : list[str]
+ Element names or selectors; prefix with ``~`` to exclude matches.
+ get_func : object
+ Callback used to resolve element names.
+ constructor : object
+ Constructor for the resulting array.
+ ARR : dict
+ Destination array store.
+ """
+ all_names: list[str] = []
+ excluded_names: list[str] = []
+ for name in element_names:
+ if name.startswith("~"):
+ names = self.find_elements(name[1:])
+ excluded_names.extend(names)
+ else:
+ names = self.find_elements(name)
+ all_names.extend(names)
+
+ [all_names.remove(name) for name in excluded_names]
+
+ a = []
+ for n in all_names:
+ try:
+ m = get_func(n)
+ except Exception as err:
+ raise PyAMLException(f"{constructor.__name__} {array_name} : {err} @index {len(a)}") from None
+ if m in a:
+ raise PyAMLException(f"{constructor.__name__} {array_name} : duplicate name {name} @index {len(a)}") from None
+ a.append(m)
+ ARR[array_name] = constructor(array_name, a)
+
+ def _add(self, array, element: Element):
+ """
+ Register an element in a typed store and the global index.
+
+ Parameters
+ ----------
+ array : object
+ Destination typed store.
+ element : Element
+ Element to register.
+ """
+ if element.get_name() in self._ALL: # Ensure name unicity
+ raise PyAMLException(f"Duplicate element {element.__class__.__name__} name {{element.get_name()}}") from None
+ array[element.get_name()] = element
+ self._ALL[element.get_name()] = element
+
+ def _get(self, what, name, array) -> Element:
+ """
+ Return a named object from a typed store.
+
+ Parameters
+ ----------
+ what : object
+ Object type used in lookup errors.
+ name : object
+ Name to look up.
+ array : object
+ Name-indexed store to search.
+
+ Returns
+ -------
+ Element
+ Object registered under ``name``.
+ """
+ if name not in array:
+ raise PyAMLException(f"{what} {name} not defined")
+ return array[name]
+
+ # Generic elements
+ def get(self) -> ElementArray:
+ """Return all registered elements in insertion order.
+
+ Returns
+ -------
+ ElementArray
+ New unnamed container sharing the registered element references.
+
+ Notes
+ -----
+ Registration order is not necessarily longitudinal lattice order.
+ Changing the returned container does not change the holder registry.
+ Each call reflects the current registry.
+
+ Examples
+ --------
+ >>> elements = sr.live.get()
+ >>> names = elements.names()
+ """
+ return ElementArray("", list(self._ALL.values()))
+
+ @overload
+ def __getitem__(self, key: int) -> Element: ...
+
+ @overload
+ def __getitem__(self, key: slice) -> ElementArray: ...
+
+ @overload
+ def __getitem__(self, key: str) -> Element | ElementArray | None: ...
+
+ def __getitem__(self, key: int | slice | str) -> Element | ElementArray | None:
+ """Retrieve an element or select a collection.
+
+ Parameters
+ ----------
+ key : int, slice or str
+ Index in registration order, slice, exact name, or name pattern.
+ Strings containing ``*``, ``?`` or ``[`` use fnmatch matching.
+ Other strings are exact registry keys. Colons are literal.
+
+ Returns
+ -------
+ Element or ElementArray or None
+ An index returns an element. An exact name returns its element
+ or None. Patterns and slices return the most specific compatible
+ array, or an empty ElementArray when nothing matches.
+ The full slice ``[:]`` returns a generic ElementArray, like get().
+
+ Raises
+ ------
+ IndexError
+ If the index is out of bounds.
+ TypeError
+ If the key is neither an integer, a slice, nor a string.
+ ValueError
+ If a slice has a zero step.
+
+ Notes
+ -----
+ Indices follow insertion order, not necessarily lattice order.
+ Collections share element references but do not modify the registry.
+ Field filters and regular expressions are not interpreted here.
+
+ Examples
+ --------
+ >>> bpm = sr.live["BPM01"]
+ >>> missing = sr.live["UNKNOWN"] # None
+ >>> bpms = sr.live["BPM*"]
+ >>> bpms = sr.live["BPM0[123]"] # BPM01, BPM02 or BPM03
+ >>> bpms = sr.live["BPM0[1-3]"] # Same selection using a range
+ >>> quads = sr.live["Q[FD]*"] # Names starting with QF or QD
+ >>> bpms = sr.live["BPM0[!3]"] # One character after BPM0, except 3
+ >>> first = sr.live[0]
+ >>> subset = sr.live[1:10]
+ >>> all_elements = sr.live[:]
+ """
+ if isinstance(key, str):
+ if any(marker in key for marker in "*?["):
+ return self.get()._select_names(key)
+ return self._ALL.get(key)
+ if isinstance(key, int):
+ return list(self._ALL.values())[key]
+ if isinstance(key, slice):
+ elements = self.get()
+ if key == slice(None):
+ return elements
+ return elements._typed_array(list(elements)[key])
+ raise TypeError("ElementHolder keys must be integers, slices or strings")
+
+ def fill_element_array(self, arrayName: str, elementNames: list[str]):
+ """
+ Create and register a generic element array.
+
+ Parameters
+ ----------
+ arrayName : str
+ Name under which the new array is registered.
+ elementNames : list[str]
+ Names of the elements to gather into the array, in the order they should appear.
+ """
+ self._fill_array(
+ arrayName,
+ elementNames,
+ self.get_element,
+ ElementArray,
+ self._ELEMENT_ARRAYS,
+ )
+
+ def add_element(self, element: Element):
+ """
+ Add an element to the global element store.
+
+ Parameters
+ ----------
+ element : Element
+ Element to register, keyed by its own name.
+ """
+ self._ALL[element.get_name()] = element
+
+ def get_element(self, name: str) -> Element:
+ """
+ Return a named element from the global store.
+
+ Parameters
+ ----------
+ name : str
+ Name of the element to look up, as declared in the configuration.
+
+ Returns
+ -------
+ Element
+ The element registered under ``name``.
+ """
+ return self._get("Element", name, self._ALL)
+
+ def get_elements(self, name: str) -> ElementArray:
+ """
+ Return a named generic element array.
+
+ Parameters
+ ----------
+ name : str
+ Name of the element array to look up, as declared in the configuration.
+
+ Returns
+ -------
+ ElementArray
+ The element array registered under ``name``.
+ """
+ return self._get("Element array", name, self._ELEMENT_ARRAYS)
+
+ def get_all_elements(self) -> list[Element]:
+ """Return all registered elements in insertion order."""
+ return [value for key, value in self._ALL.items()]
+
+ # Tune monitor
+
+ def get_betatron_tune_monitor(self, name: str) -> BetatronTuneMonitor:
+ """
+ Return a named betatron tune monitor.
+
+ Parameters
+ ----------
+ name : str
+ Name of the betatron tune monitor to look up, as declared in the configuration.
+
+ Returns
+ -------
+ BetatronTuneMonitor
+ The betatron tune monitor registered under ``name``.
+ """
+ return self._get("Diagnostic", name, self._DIAG)
+
+ def add_betatron_tune_monitor(self, tune_monitor: Element):
+ """
+ Add a betatron tune monitor to the diagnostics store.
+
+ Parameters
+ ----------
+ tune_monitor : Element
+ Betatron tune monitor to register, keyed by its own name.
+ """
+ self._add(self._DIAG, tune_monitor)
+
+ # Tuning/Measurement tools
+
+ def add_tool(self, tool: Element):
+ """
+ Add a tuning or measurement tool to the tool store.
+
+ Parameters
+ ----------
+ tool : Element
+ Tuning or measurement tool to register, keyed by its own name.
+ """
+ self._add(self._TOOLS, tool)
+
+ # ---- Chromaticity -------------------------------------------------
+
+ def get_chromaticity_monitor(self, name: str) -> ChromaticityMonitor:
+ """
+ Return a named chromaticity monitor.
+
+ Parameters
+ ----------
+ name : str
+ Name of the chromaticity monitor to look up, as declared in the configuration.
+
+ Returns
+ -------
+ ChromaticityMonitor
+ The chromaticity monitor registered under ``name``.
+ """
+ obj = self._get("Chromaticity monitor", name, self._TOOLS)
+ return obj
+
+ def get_chromaticity_tuning(self, name: str) -> "Chromaticity":
+ """
+ Return a named chromaticity tuning tool.
+
+ Parameters
+ ----------
+ name : str
+ Name of the chromaticity tuning tool to look up, as declared in the configuration.
+
+ Returns
+ -------
+ 'Chromaticity'
+ The chromaticity tuning tool registered under ``name``.
+ """
+ return self._get("Chromaticity tool", name, self._TOOLS)
+
+ def get_crm_tuning(self, name: str) -> "ChromaticityResponseMatrix":
+ """
+ Return a named chromaticity response-matrix tool.
+
+ Parameters
+ ----------
+ name : str
+ Name of the chromaticity response-matrix tool to look up, as declared in the configuration.
+
+ Returns
+ -------
+ 'ChromaticityResponseMatrix'
+ The chromaticity response-matrix tool registered under ``name``.
+ """
+ return self._get("ChromaticityResponseMatrix tool", name, self._TOOLS)
+
+ @property
+ def chromaticity(self) -> "Chromaticity":
+ """Return the chromaticity."""
+ return self.get_chromaticity_tuning("DEFAULT_CHROMATICITY_CORRECTION")
+
+ @property
+ def crm(self) -> "ChromaticityResponseMatrix":
+ """Return the crm."""
+ return self.get_crm_tuning("DEFAULT_CHROMATICITY_RESPONSE_MATRIX")
+
+ # ---- Tune ---------------------------------------------------------
+
+ def get_tune_tuning(self, name: str) -> "Tune":
+ """
+ Return a named tune correction tool.
+
+ Parameters
+ ----------
+ name : str
+ Name of the tune correction tool to look up, as declared in the configuration.
+
+ Returns
+ -------
+ 'Tune'
+ The tune correction tool registered under ``name``.
+ """
+ return self._get("Tune tuning tool", name, self._TOOLS)
+
+ @property
+ def tune(self) -> "Tune":
+ """Return the tune."""
+ return self.get_tune_tuning("DEFAULT_TUNE_CORRECTION")
+
+ def get_trm_tuning(self, name: str) -> "TuneResponseMatrix":
+ """
+ Return a named tune response-matrix tool.
+
+ Parameters
+ ----------
+ name : str
+ Name of the tune response-matrix tool to look up, as declared in the configuration.
+
+ Returns
+ -------
+ 'TuneResponseMatrix'
+ The tune response-matrix tool registered under ``name``.
+ """
+ return self._get("TuneResponseMatrix tool", name, self._TOOLS)
+
+ @property
+ def trm(self) -> "TuneResponseMatrix":
+ """Return the default tune response-matrix tool."""
+ return self.get_trm_tuning("DEFAULT_TUNE_RESPONSE_MATRIX")
+
+ # ---- Orbit --------------------------------------------------------
+
+ def get_orbit_tuning(self, name: str) -> "Orbit":
+ """
+ Return a named orbit correction tool.
+
+ Parameters
+ ----------
+ name : str
+ Name of the orbit correction tool to look up, as declared in the configuration.
+
+ Returns
+ -------
+ 'Orbit'
+ The orbit correction tool registered under ``name``.
+ """
+ return self._get("Orbit tuning tool", name, self._TOOLS)
+
+ @property
+ def orbit(self) -> "Orbit":
+ """Return the orbit."""
+ return self.get_orbit_tuning("DEFAULT_ORBIT_CORRECTION")
+
+ def get_orm_tuning(self, name: str) -> "OrbitResponseMatrix":
+ """
+ Return a named orbit response-matrix tool.
+
+ Parameters
+ ----------
+ name : str
+ Name of the orbit response-matrix tool to look up, as declared in the configuration.
+
+ Returns
+ -------
+ 'OrbitResponseMatrix'
+ The orbit response-matrix tool registered under ``name``.
+ """
+ return self._get("OrbitResponseMatrix tool", name, self._TOOLS)
+
+ @property
+ def orm(self) -> "OrbitResponseMatrix":
+ """Return the default orbit response-matrix tool."""
+ return self.get_orm_tuning("DEFAULT_ORBIT_RESPONSE_MATRIX")
+
+ # ---- BBA --------------------------------------------------------
+
+ def get_bba(self, name: str) -> "BBA":
+ """
+ Return a named beam-based alignment tool.
+
+ Parameters
+ ----------
+ name : str
+ Name of the beam-based alignment tool to look up, as declared in the configuration.
+
+ Returns
+ -------
+ 'BBA'
+ The beam-based alignment tool registered under ``name``.
+ """
+ return self._get("BBA tool", name, self._TOOLS)
+
+ # ---- Dispersive orbit --------------------------------------------
+
+ def get_dispersion_tuning(self, name: str) -> "Dispersion":
+ """
+ Return a named dispersion tuning tool.
+
+ Parameters
+ ----------
+ name : str
+ Name of the dispersion tuning tool to look up, as declared in the configuration.
+
+ Returns
+ -------
+ 'Dispersion'
+ The dispersion tuning tool registered under ``name``.
+ """
+ return self._get("Dispersion tool", name, self._TOOLS)
+
+ @property
+ def dispersion(self) -> "Dispersion":
+ """Return the dispersion."""
+ return self.get_dispersion_tuning("DEFAULT_DISPERSION")
+
+ def _get_array(self, name: str):
+ """
+ Generic array resolver used by YellowPages.
+
+ The method returns the array object referenced by 'name', regardless of its
+ concrete type.
+ """
+ if name in self._BPM_ARRAYS:
+ return self._BPM_ARRAYS[name]
+ if name in self._MAGNET_ARRAYS:
+ return self._MAGNET_ARRAYS[name]
+ if name in self._CFM_MAGNET_ARRAYS:
+ return self._CFM_MAGNET_ARRAYS[name]
+ if name in self._SERIALIZED_MAGNETS_ARRAYS:
+ return self._SERIALIZED_MAGNETS_ARRAYS[name]
+ if name in self._ELEMENT_ARRAYS:
+ return self._ELEMENT_ARRAYS[name]
+
+ raise PyAMLException(f"Array {name} not defined")
+
+ def _get_tool(self, name: str):
+ """
+ Generic tuning tool resolver used by YellowPages.
+ """
+ if name not in self._TOOLS:
+ raise PyAMLException(f"Tool {name} not defined")
+ return self._TOOLS[name]
+
+ def _get_diagnostic(self, name: str):
+ """
+ Generic diagnostic resolver used by YellowPages.
+ """
+ if name not in self._DIAG:
+ raise PyAMLException(f"Diagnostic {name} not defined")
+ return self._DIAG[name]
+
+ def _list_arrays(self) -> list[str]:
+ """
+ Return all array identifiers available in this holder.
+ """
+ arrays: list[str] = []
+ arrays.extend(self._BPM_ARRAYS.keys())
+ arrays.extend(self._MAGNET_ARRAYS.keys())
+ arrays.extend(self._CFM_MAGNET_ARRAYS.keys())
+ arrays.extend(self._SERIALIZED_MAGNETS_ARRAYS.keys())
+ arrays.extend(self._ELEMENT_ARRAYS.keys())
+ return arrays
+
+ def _list_tools(self) -> list[str]:
+ """
+ Return all tuning tool identifiers available in this holder.
+ """
+ return list(self._TOOLS.keys())
+
+ def _list_diagnostics(self) -> list[str]:
+ """
+ Return all diagnostic identifiers available in this holder.
+ """
+ return list(self._DIAG.keys())
+
+ def _set_energy(self, E: float):
+ """
+ Sets the energy on all elements
+
+ Parameters
+ ----------
+ E : float
+ Energy in eV
+ """
+ # Needed by energy dependant element (i.e. magnet coil current calculation)
+ for m in self.get_all_elements():
+ m.set_energy(E)
+
+ def _set_mcf(self, alphac: float):
+ """
+ Sets the moment compaction factor on all elements
+
+ Parameters
+ ----------
+ alphac : float
+ Moment compaction factor
+ """
+ # Needed by some off energy dependant element (i.e. chromaticty tools)
+ for m in self.get_all_elements():
+ m.set_mcf(alphac)
+
+ def _set_harmonic(self, h: int):
+ """
+ Sets the harmonic number (number of bucket) on elements
+
+ Parameters
+ ----------
+ h : int
+ Harmonic number
+ """
+ for m in self.get_all_elements():
+ m.set_harmonic(h)
diff --git a/pyaml/common/holders/generic_array_holder.py b/pyaml/common/holders/generic_array_holder.py
new file mode 100644
index 000000000..0ce624410
--- /dev/null
+++ b/pyaml/common/holders/generic_array_holder.py
@@ -0,0 +1,121 @@
+"""Generic typed storage and lookup for arrays of accelerator elements."""
+
+from collections.abc import Callable
+from typing import TYPE_CHECKING, Generic, TypeVar
+
+from ..element import Element, __pyaml_repr__
+
+if TYPE_CHECKING:
+ from .element_holder import ElementHolder
+
+T = TypeVar("T", bound=Element)
+A = TypeVar("A")
+
+
+class GenericArrayHolder(Generic[T, A]):
+ """
+ Provide typed access to named arrays of one element type.
+
+ Concrete holders (:class:`.MagnetsHolder`, :class:`.SerializedMagnetsHolder`,
+ :class:`.CombinedFunctionMagnetsHolder`, ...) subclass this with the
+ element type ``T`` and the array type ``A`` they handle, so callers keep
+ full static typing on :meth:`get`, :meth:`add` and :meth:`__getitem__`.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder.
+ array_store : dict[str, A]
+ Mapping from array names to stored arrays.
+ all_func : Callable[[], list[T]]
+ Callback returning all elements.
+ get_func : Callable[[str], T]
+ Callback resolving an element by name.
+ constructor : Callable[[str, list[T]], A]
+ Callback constructing an array from a name and elements.
+ what : str
+ Human-readable array type used for lookup errors.
+
+ Methods
+ -------
+ get(name=None)
+ Return a named array or a transient array of all elements.
+ add(arrayName, elementNames)
+ Create and register a named array from element selectors.
+ """
+
+ def __init__(
+ self,
+ peer: "ElementHolder",
+ array_store: dict[str, A],
+ all_func: Callable[[], list[T]],
+ get_func: Callable[[str], T],
+ constructor: Callable[[str, list[T]], A],
+ what: str,
+ ):
+ """
+ Initialize an array holder with storage and lookup callbacks.
+ """
+ self._peer = peer
+ self._array_store = array_store
+ self._all_func = all_func
+ self._get_func = get_func
+ self._constructor = constructor
+ self._what = what
+
+ def get(self, name: str | None = None) -> A:
+ """
+ Return a named array or a transient array of all elements.
+
+ Parameters
+ ----------
+ name : str or None, optional
+ Array name. If ``None``, all available elements are returned.
+
+ Returns
+ -------
+ A
+ Requested named array or an array containing all elements.
+ """
+ if name is None:
+ return self._constructor("", self._all_func())
+ else:
+ return self._peer._get(self._what, name, self._array_store)
+
+ def add(self, arrayName: str, elementNames: list[str]):
+ """
+ Create and register a named array from element selectors.
+
+ Parameters
+ ----------
+ arrayName : str
+ Name under which to store the array.
+ elementNames : list[str]
+ Names of elements to include, in array order.
+
+ Notes
+ -----
+ Selectors may use the lookup syntax supported by the parent
+ :class:`~pyaml.common.holders.element_holder.ElementHolder`, including
+ wildcard and exclusion patterns.
+ """
+ self._peer._fill_array(arrayName, elementNames, self._get_func, self._constructor, self._array_store)
+
+ def __getitem__(self, key):
+ """
+ Return an element from the aggregate array by index.
+
+ Parameters
+ ----------
+ key : int or slice
+ Index or slice passed to the aggregate array.
+
+ Returns
+ -------
+ object
+ Element or sub-array selected by ``key``.
+ """
+ return self.get().__getitem__(key)
+
+ def __repr__(self):
+ return __pyaml_repr__(self)
diff --git a/pyaml/common/holders/generic_element_holder.py b/pyaml/common/holders/generic_element_holder.py
new file mode 100644
index 000000000..a23dec8b0
--- /dev/null
+++ b/pyaml/common/holders/generic_element_holder.py
@@ -0,0 +1,93 @@
+"""Generic typed storage and lookup for accelerator elements."""
+
+from typing import TYPE_CHECKING, Generic, TypeVar
+
+from ..element import Element, __pyaml_repr__
+
+if TYPE_CHECKING:
+ from .element_holder import ElementHolder
+
+T = TypeVar("T", bound=Element)
+
+
+class GenericElementHolder(Generic[T]):
+ """
+ Provide typed name-based access to one category of elements.
+
+ Concrete holders (:class:`.MagnetHolder`, :class:`.SerializedMagnetHolder`,
+ :class:`.CombinedFunctionMagnetHolder`, ...) subclass this with the
+ element type they handle, so callers keep full static typing on
+ :meth:`all`, :meth:`get` and :meth:`add`.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder.
+ store : dict[str, T]
+ Mapping from element names to elements.
+ what : str
+ Human-readable element type used for lookup errors.
+
+ Methods
+ -------
+ all()
+ Return all stored elements in insertion order.
+ get(name)
+ Return the element with the requested name.
+ add(m)
+ Add an element to the holder's name-indexed store.
+ """
+
+ def __init__(self, peer: "ElementHolder", store: dict[str, T], what: str):
+ """
+ Initialize a holder backed by an element store.
+ """
+ self._peer = peer
+ self._store = store
+ self._what = what
+
+ def all(self) -> list[T]:
+ """
+ Return all stored elements in insertion order.
+
+ Returns
+ -------
+ list of T
+ Elements currently registered in this category.
+ """
+ return [value for key, value in self._store.items()]
+
+ def get(self, name: str) -> T:
+ """
+ Return the element with the requested name.
+
+ Parameters
+ ----------
+ name : str
+ Element name.
+
+ Returns
+ -------
+ T
+ Element registered under ``name``.
+ """
+ return self._peer._get(self._what, name, self._store)
+
+ def add(self, m: T):
+ """
+ Add an element to the holder's name-indexed store.
+
+ Parameters
+ ----------
+ m : T
+ Element to add.
+
+ Returns
+ -------
+ None
+ This method updates the holder in place.
+ """
+ self._peer._add(self._store, m)
+
+ def __repr__(self):
+ return __pyaml_repr__(self)
diff --git a/pyaml/common/holders/rf_holder.py b/pyaml/common/holders/rf_holder.py
new file mode 100644
index 000000000..257c396a4
--- /dev/null
+++ b/pyaml/common/holders/rf_holder.py
@@ -0,0 +1,154 @@
+"""Holder interfaces for RF plants and their transmitters."""
+
+from typing import TYPE_CHECKING
+
+from ...rf.rf_plant import RFPlant
+from ...rf.rf_transmitter import RFTransmitter
+from ..abstract import ReadWriteFloatScalar
+from ..element import __pyaml_repr__
+
+if TYPE_CHECKING:
+ from .element_holder import ElementHolder
+
+
+class RFTransmitterHolder:
+ """
+ Provide name-based access to RF transmitter elements.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent holder containing the transmitter store.
+
+ Methods
+ -------
+ get(name)
+ Return a transmitter by name.
+ add(rf)
+ Add an RF transmitter to the holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize a transmitter holder for an element holder.
+ """
+ self._peer = peer
+
+ def get(self, name: str) -> RFTransmitter:
+ """
+ Return a transmitter by name.
+
+ Parameters
+ ----------
+ name : str
+ Transmitter name.
+
+ Returns
+ -------
+ RFTransmitter
+ Matching RF transmitter.
+ """
+ return self._peer._get("RFTransmitter", name, self._peer._RFTRANSMITTER)
+
+ def add(self, rf: RFTransmitter):
+ """
+ Add an RF transmitter to the holder.
+
+ Parameters
+ ----------
+ rf : RFTransmitter
+ Transmitter to add.
+
+ Returns
+ -------
+ None
+ The transmitter is registered in the parent holder in place.
+ """
+ self._peer._add(self._peer._RFTRANSMITTER, rf)
+
+ def __repr__(self):
+ return __pyaml_repr__(self)
+
+
+class RFHolder:
+ """
+ Provide access to RF plants and their transmitters.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent holder containing the RF plant store.
+
+ Attributes
+ ----------
+ transmitter
+ Return the holder for RF transmitter elements.
+ frequency
+ Return the default RF plant's frequency interface.
+ voltage
+ Return the default RF plant's total-voltage interface.
+
+ Methods
+ -------
+ get(name)
+ Return an RF plant by name.
+ add(rf)
+ Add an RF plant to the holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize an RF holder for an element holder.
+ """
+ self._peer = peer
+ self._rftransmitter_holder = RFTransmitterHolder(peer)
+
+ @property
+ def transmitter(self) -> RFTransmitterHolder:
+ """Return the holder for RF transmitter elements."""
+ return self._rftransmitter_holder
+
+ @property
+ def frequency(self) -> ReadWriteFloatScalar:
+ """Return the default RF plant's frequency interface."""
+ return self.get("DEFAULT_RF_PLANT").frequency
+
+ @property
+ def voltage(self) -> ReadWriteFloatScalar:
+ """Return the default RF plant's total-voltage interface."""
+ return self.get("DEFAULT_RF_PLANT").voltage
+
+ def get(self, name: str) -> RFPlant:
+ """
+ Return an RF plant by name.
+
+ Parameters
+ ----------
+ name : str
+ RF plant name.
+
+ Returns
+ -------
+ RFPlant
+ RF plant registered under ``name``.
+ """
+ return self._peer._get("RFPlant", name, self._peer._RFPLANT)
+
+ def add(self, rf: RFPlant):
+ """
+ Add an RF plant to the holder.
+
+ Parameters
+ ----------
+ rf : RFPlant
+ RF plant to add.
+
+ Returns
+ -------
+ None
+ The plant is registered in the parent holder in place.
+ """
+ self._peer._add(self._peer._RFPLANT, rf)
+
+ def __repr__(self):
+ return __pyaml_repr__(self)
diff --git a/pyaml/common/holders/sub_holders.py b/pyaml/common/holders/sub_holders.py
new file mode 100644
index 000000000..399485eb0
--- /dev/null
+++ b/pyaml/common/holders/sub_holders.py
@@ -0,0 +1,181 @@
+"""Specialized holders for accelerator element categories and arrays."""
+
+from typing import TYPE_CHECKING
+
+from ...arrays.bpm_array import BPMArray
+from ...arrays.cfm_magnet_array import CombinedFunctionMagnetArray
+from ...arrays.magnet_array import MagnetArray
+from ...arrays.serialized_magnet_array import SerializedMagnetsArray
+from ...bpm.bpm import BPM
+from ...magnet.cfm_magnet import CombinedFunctionMagnet
+from ...magnet.magnet import Magnet
+from ...magnet.serialized_magnet import SerializedMagnets
+from .generic_array_holder import GenericArrayHolder
+from .generic_element_holder import GenericElementHolder
+
+if TYPE_CHECKING:
+ from .element_holder import ElementHolder
+
+
+class MagnetHolder(GenericElementHolder[Magnet]):
+ """
+ Provide access to individual magnet elements.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder that owns this specialized holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize the MagnetHolder.
+ """
+ super().__init__(peer, peer._MAGNETS, "Magnet")
+
+
+class MagnetsHolder(GenericArrayHolder[Magnet, MagnetArray]):
+ """
+ Provide access to arrays of individual magnets.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder that owns this specialized holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize the MagnetsHolder.
+ """
+ super().__init__(
+ peer,
+ peer._MAGNET_ARRAYS,
+ peer.magnet.all,
+ peer.magnet.get,
+ MagnetArray,
+ "Magnet array",
+ )
+
+
+class CombinedFunctionMagnetHolder(GenericElementHolder[CombinedFunctionMagnet]):
+ """
+ Provide access to individual combined-function magnets.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder that owns this specialized holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize the CombinedFunctionMagnetHolder.
+ """
+ super().__init__(peer, peer._CFM_MAGNETS, "Combined function magnet")
+
+
+class CombinedFunctionMagnetsHolder(GenericArrayHolder[CombinedFunctionMagnet, CombinedFunctionMagnetArray]):
+ """
+ Provide access to arrays of combined-function magnets.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder that owns this specialized holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize the CombinedFunctionMagnetsHolder.
+ """
+ super().__init__(
+ peer,
+ peer._CFM_MAGNET_ARRAYS,
+ peer.combined_function_magnet.all,
+ peer.combined_function_magnet.get,
+ CombinedFunctionMagnetArray,
+ "Combined function magnet array",
+ )
+
+
+class SerializedMagnetHolder(GenericElementHolder[SerializedMagnets]):
+ """
+ Provide access to individual serialized magnet groups.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder that owns this specialized holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize the SerializedMagnetHolder.
+ """
+ super().__init__(peer, peer._SERIALIZED_MAGNETS, "Serialized magnet")
+
+
+class SerializedMagnetsHolder(GenericArrayHolder[SerializedMagnets, SerializedMagnetsArray]):
+ """
+ Provide access to arrays of serialized magnet groups.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder that owns this specialized holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize the SerializedMagnetsHolder.
+ """
+ super().__init__(
+ peer,
+ peer._SERIALIZED_MAGNETS_ARRAYS,
+ peer.serialized_magnet.all,
+ peer.serialized_magnet.get,
+ SerializedMagnetsArray,
+ "serialized magnet array",
+ )
+
+
+class BPMHolder(GenericElementHolder[BPM]):
+ """
+ Provide access to individual beam-position monitors.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder that owns this specialized holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize the BPMHolder.
+ """
+ super().__init__(peer, peer._BPMS, "BPM")
+
+
+class BPMsHolder(GenericArrayHolder[BPM, BPMArray]):
+ """
+ Provide access to arrays of beam-position monitors.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Parent element holder that owns this specialized holder.
+ """
+
+ def __init__(self, peer: "ElementHolder"):
+ """
+ Initialize the BPMsHolder.
+ """
+ super().__init__(
+ peer,
+ peer._BPM_ARRAYS,
+ peer.bpm.all,
+ peer.bpm.get,
+ BPMArray,
+ "BPM array",
+ )
diff --git a/pyaml/configuration/__init__.py b/pyaml/configuration/__init__.py
index a9bf89d7c..12346acf8 100644
--- a/pyaml/configuration/__init__.py
+++ b/pyaml/configuration/__init__.py
@@ -3,13 +3,12 @@
"""
from .factory import Factory
-from .fileloader import get_root_folder, set_root_folder
+from .fileloader import ROOT
from .manager import ConfigurationManager, UnsupportedConfigurationRootError
__all__ = [
"ConfigurationManager",
"UnsupportedConfigurationRootError",
"Factory",
- "get_root_folder",
- "set_root_folder",
+ "ROOT",
]
diff --git a/pyaml/configuration/csvcurve.py b/pyaml/configuration/csvcurve.py
deleted file mode 100644
index ef8352d37..000000000
--- a/pyaml/configuration/csvcurve.py
+++ /dev/null
@@ -1,60 +0,0 @@
-from pathlib import Path
-
-import numpy as np
-from pydantic import BaseModel, ConfigDict
-
-from ..common.exception import PyAMLException
-from ..configuration.fileloader import get_path
-from .curve import Curve
-
-# Define the main class name for this module
-PYAMLCLASS = "CSVCurve"
-
-
-class ConfigModel(BaseModel):
- """
- Configuration model for CSV curve
-
- Parameters
- ----------
- file : str
- CSV file that contains the curve (n rows, 2 columns)
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- file: str
-
-
-class CSVCurve(Curve):
- """
- Class for load CSV (x,y) curve
- """
-
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
-
- # Load CSV curve
- path = get_path(cfg.file)
- try:
- self._curve = np.genfromtxt(path, delimiter=",", dtype=float, loose=False)
- except ValueError as e:
- raise PyAMLException(f"CSVCurve(file='{cfg.file}',dtype=float): {str(e)}") from None
-
- _s = np.shape(self._curve)
- if len(_s) != 2 or _s[1] != 2:
- raise PyAMLException(f"CSVCurve(file='{cfg.file}',dtype=float):wrong shape (2,2) expected but got {str(_s)}")
-
- def get_curve(self) -> np.array:
- """
- Get the curve data.
-
- Returns
- -------
- np.array
- Curve data as a 2D numpy array of shape (n, 2)
- """
- return self._curve
-
- def __repr__(self):
- return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
diff --git a/pyaml/configuration/csvmatrix.py b/pyaml/configuration/csvmatrix.py
deleted file mode 100644
index 993cec99d..000000000
--- a/pyaml/configuration/csvmatrix.py
+++ /dev/null
@@ -1,55 +0,0 @@
-from pathlib import Path
-
-import numpy as np
-from pydantic import BaseModel, ConfigDict
-
-from ..common.exception import PyAMLException
-from ..configuration.fileloader import get_path
-from .matrix import Matrix
-
-# Define the main class name for this module
-PYAMLCLASS = "CSVMatrix"
-
-
-class ConfigModel(BaseModel):
- """
- Configuration model for CSV matrix
-
- Parameters
- ----------
- file : str
- CSV file that contains the matrix
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- file: str
-
-
-class CSVMatrix(Matrix):
- """
- Class for loading CSV matrix
- """
-
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
- # Load CSV matrix
- path = get_path(cfg.file)
- try:
- self._mat = np.genfromtxt(path, delimiter=",", dtype=float, loose=False)
- except ValueError as e:
- raise PyAMLException(f"CSVMatrix(file='{cfg.file}',dtype=float): {str(e)}") from None
-
- def get_matrix(self) -> np.array:
- """
- Get the matrix data.
-
- Returns
- -------
- np.array
- Matrix data as a numpy array
- """
- return self._mat
-
- def __repr__(self):
- return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
diff --git a/pyaml/configuration/curve.py b/pyaml/configuration/curve.py
deleted file mode 100644
index df73ec016..000000000
--- a/pyaml/configuration/curve.py
+++ /dev/null
@@ -1,32 +0,0 @@
-from abc import ABCMeta, abstractmethod
-
-import numpy as np
-
-
-class Curve(metaclass=ABCMeta):
- """
- Abstract class providing access to a curve
- """
-
- @abstractmethod
- def get_curve(self) -> np.array:
- """
- Returns the curve (n rows,2 columns).
- Curve is expected to be monotonic (non-decreasing or non-increasing).
- """
- pass
-
- @classmethod
- def inverse(cls, curve: np.array) -> np.array:
- """
- Returns the inverse curve.
- Basically swap x and y and sort y in ascending order.
-
- Parameters
- ----------
- curve : np.array
- Curve to be inverted
- """
- __curve = curve
- __sortedCurve = __curve[__curve[:, 1].argsort()]
- return __sortedCurve[:, [1, 0]]
diff --git a/pyaml/configuration/factory.py b/pyaml/configuration/factory.py
index 8078a3109..445ce9665 100644
--- a/pyaml/configuration/factory.py
+++ b/pyaml/configuration/factory.py
@@ -1,225 +1,479 @@
-# PyAML factory (construct AML objects from config files)
+"""
+Build PyAML objects from configuration dictionaries and lists.
+
+The factory resolves class paths, optionally validates configuration with
+Pydantic models, recursively builds nested values, and registers constructed
+accelerator elements.
+"""
+
import fnmatch
-import importlib
-from threading import Lock
-from typing import TypedDict, get_type_hints
+from dataclasses import dataclass
+from importlib import import_module
+from types import ModuleType
+from typing import Any, TypeVar
-from pydantic import ValidationError
+from pydantic import BaseModel, ValidationError
from ..common.element import Element
from ..common.exception import PyAMLConfigException
+from ..validation.errors import raise_validation_error
+from ..validation.schema_builder import generate_class_path
from .unbound_element import UnboundElement
+# ---------------------------------------------------------------------
+# Element registry
+# ---------------------------------------------------------------------
-class PyAMLFactory:
- """Singleton factory to build PyAML elements with future compatibility logic."""
+TElement = TypeVar("TElement", bound=Element)
+
+
+class ElementRegistry:
+ """
+ Singleton registry of all instantiated Elements.
+
+ Elements are registered by name and can later be retrieved
+ individually, by wildcard pattern, or by type.
+
+ Methods
+ -------
+ register(element)
+ Register an Element by name.
+ get(name)
+ Return an Element by name.
+ get_by_name(wildcard)
+ Return all elements whose name matches a wildcard pattern.
+ get_by_type(element_type)
+ Return all registered elements of the given type.
+ clear()
+ Remove all registered elements.
+ """
_instance = None
- _lock = Lock()
def __new__(cls):
"""
- No matter how many times you call PyAMLFactory(),
- it will be created only once.
- """
- with cls._lock:
- if cls._instance is None:
- cls._instance = super().__new__(cls)
- cls._instance._elements = {}
- cls._instance._strategies = []
- return cls._instance
-
- def handle_validation_error(self, e, type_str: str, location_str: str, field_locations: dict):
- # Handle pydantic errors
- globalMessage = ""
- for err in e.errors():
- msg = err["msg"]
- field = ""
- if len(err["loc"]) == 2:
- field, fieldIdx = err["loc"]
- message = f"'{field}.{fieldIdx}': {msg}"
- else:
- field = err["loc"][0]
- message = f"'{field}': {msg}"
- if field_locations and field in field_locations:
- file, line, col = field_locations[field]
- loc = f"{file} at line {line}, colum {col}"
- message += f" {loc}"
- globalMessage += message
- globalMessage += ", "
- # Discard pydantic stack trace
- raise PyAMLConfigException(f"{globalMessage} for object: '{type_str}' {location_str}") from None
-
- def get_field_type(self, config_cls, field_name) -> type:
- # Get type of a pydantic ConfigModel field
- if config_cls is None:
- return None
- type_hints = get_type_hints(config_cls)
- return type_hints[field_name] if field_name in type_hints else None
-
- def get_infos(self, d, ignore_external: bool):
- # Retrieve informations of object to be constructed
- location = d["__location__"] if "__location__" in d else None
- field_locations = d["__fieldlocations__"] if "__fieldlocations__" in d else None
- location_str = ""
- if location:
- file, line, col = location
- location_str = f"{file} at line {line}, column {col}."
-
- if not isinstance(d, dict):
- raise PyAMLConfigException(f"Unexpected object {str(d)} {location_str}")
- if "type" not in d:
- raise PyAMLConfigException(f"No type specified for {str(type(d))}:{str(d)} {location_str}")
-
- module_str = d["type"]
- class_str = d["class"] if "class" in d else None
- validation_class_str = d["validation_class"] if "validation_class" in d else "ConfigModel"
-
- # Import the module
+ Return the singleton registry instance.
+ """
+
+ if cls._instance is None:
+ cls._instance = super().__new__(cls)
+ cls._instance._elements = {}
+ return cls._instance
+
+ def register(self, element: Element) -> None:
+ """
+ Register an Element by name.
+
+ Parameters
+ ----------
+ element : Element
+ Element to register.
+
+ Raises
+ ------
+ PyAMLConfigException
+ If the object is not an Element or if another element
+ with the same name is already registered.
+ """
+
+ if not isinstance(element, Element):
+ raise PyAMLConfigException(f"Cannot register object of type '{type(element).__name__}' since expected Element.")
+
+ name = element.get_name()
+ if name in self._elements:
+ raise PyAMLConfigException(f"Element {name} already defined.")
+ self._elements[name] = element
+
+ def get(self, name: str) -> Element:
+ """
+ Return an Element by name.
+
+ Parameters
+ ----------
+ name : str
+ Element name.
+
+ Returns
+ -------
+ Element
+ Registered element.
+
+ Raises
+ ------
+ PyAMLConfigException
+ If the element is not registered.
+ """
+
try:
- module = importlib.import_module(module_str)
- except ModuleNotFoundError as ex:
- if not ignore_external:
- # Discard module not found stack trace
- raise PyAMLConfigException(
- "Module referenced in type cannot be found:" + f"'{module_str}' {location_str}"
- ) from None
- else:
- return None
+ return self._elements[name]
+ except KeyError:
+ raise PyAMLConfigException(f"Element {name} not defined.") from None
- # Get the object class name
- if class_str is None:
- class_str = getattr(module, "PYAMLCLASS", None)
- if class_str is None:
- raise PyAMLConfigException(
- f"PYAMLCLASS definition not found or class not specified in '{module_str}' {location_str}"
- )
+ def get_by_name(self, wildcard: str) -> list[Element]:
+ """
+ Return all elements whose name matches a wildcard pattern.
+
+ Parameters
+ ----------
+ wildcard : str
+ Wildcard expression compatible with ``fnmatch``.
+
+ Returns
+ -------
+ list[Element]
+ Matching elements.
+ """
+
+ return [e for n, e in self._elements.items() if fnmatch.fnmatch(n, wildcard)]
+
+ def get_by_type(self, element_type: type[TElement]) -> list[TElement]:
+ """
+ Return all registered elements of the given type.
+
+ Parameters
+ ----------
+ element_type : type[Element]
+ Element type to match.
+
+ Returns
+ -------
+ list[TElement]
+ Matching elements.
+ """
+
+ return [e for e in self._elements.values() if isinstance(e, element_type)]
+
+ def clear(self) -> None:
+ """
+ Remove all registered elements.
+ """
+
+ self._elements.clear()
+
+ def __contains__(self, name: str) -> bool:
+ """
+ Return whether an element with the given name is registered.
+ """
+
+ return name in self._elements
+
+ def __len__(self) -> int:
+ """
+ Return the number of registered elements.
+ """
- # Get the validation class
- config_cls = getattr(module, validation_class_str, None)
+ return len(self._elements)
+
+
+# Global element registry used during configuration loading.
+ELEMENT_REGISTRY = ElementRegistry()
+
+# ---------------------------------------------------------------------
+# Handle build information
+# ---------------------------------------------------------------------
+
+NEW_KEYS = ("class", "class_path")
+LEGACY_KEY = "type"
+BUILD_KEYS = NEW_KEYS + (LEGACY_KEY,)
+
+
+@dataclass(frozen=True)
+class BuildInfo:
+ """
+ Store the resolved information required to construct one object.
+
+ Attributes
+ ----------
+ module : types.ModuleType
+ Module containing the target class.
+ config_cls : type[pydantic.BaseModel] or None
+ Optional configuration model used to validate the object data.
+ class_cls : type
+ Class to instantiate.
+ control_modes : list of str or None
+ Control-system modes for creating an :class:`UnboundElement`.
+ config : dict of str to object
+ Remaining constructor configuration.
+ """
+
+ module: ModuleType
+ config_cls: type[BaseModel] | None # Legacy
+ class_cls: type[Any]
+ control_modes: list[str] | None
+ config: dict[str, Any]
+
+
+def _import_module(module_path: str, ignore_external: bool) -> ModuleType | None:
+ """
+ Import a module referenced by a configuration class path.
+
+ Parameters
+ ----------
+ module_path : str
+ Dotted module path to import.
+ ignore_external : bool
+ If ``True``, return ``None`` when the module is unavailable.
+
+ Returns
+ -------
+ ModuleType | None
+ Imported module, or ``None`` when an external module is ignored.
+ """
+ try:
+ return import_module(module_path)
+ except ModuleNotFoundError as exc:
+ if ignore_external:
+ return None
+ raise PyAMLConfigException(f"Module '{module_path}' cannot be found: {exc}") from None
+
+
+def _resolve_class_name(module: ModuleType, module_path: str) -> str:
+ # Legacy
+ """
+ Resolve the legacy default class name exposed by a module.
+
+ Parameters
+ ----------
+ module : ModuleType
+ Imported module containing ``PYAMLCLASS``.
+ module_path : str
+ Module path used in configuration error messages.
+
+ Returns
+ -------
+ str
+ Class name stored in the module's ``PYAMLCLASS`` attribute.
+ """
+ class_name = getattr(module, "PYAMLCLASS", None)
+ if class_name is None:
+ raise PyAMLConfigException(f"Module '{module_path}' does not define PYAMLCLASS.")
+ return class_name
+
+
+def _resolve_build_info(data: dict, ignore_external: bool) -> BuildInfo | None:
+ """
+ Resolve a configuration mapping into object-construction metadata.
+
+ Parameters
+ ----------
+ data : dict
+ Configuration mapping containing a legacy ``type`` or a class path.
+ ignore_external : bool
+ If ``True``, ignore unavailable external modules.
+
+ Returns
+ -------
+ BuildInfo | None
+ Resolved build metadata, or ``None`` for an ignored external module.
+ """
+ if not isinstance(data, dict):
+ raise PyAMLConfigException(f"Unexpected object {data!r}. It needs to be a dict.")
+
+ config = dict(data)
+
+ if LEGACY_KEY in config:
+ # Legacy module/class format:
+ # type: some.module
+ # class: MyClass (optional; otherwise PYAMLCLASS is used)
+
+ module_path = config.pop(LEGACY_KEY, None)
+
+ module = _import_module(module_path, ignore_external)
+ if module is None:
+ return None
+
+ class_name = config.pop("class", None)
+ if class_name is None:
+ class_name = _resolve_class_name(module, module_path)
+
+ class_path = f"{module_path}.{class_name}"
+
+ else:
+ # New class_path/class alias format:
+ # class_path: some.module.MyClass
+ # or
+ # class: some.module.MyClass
+
+ present = [key for key in NEW_KEYS if key in data]
+ if len(present) != 1:
+ raise PyAMLConfigException(f"Exactly one of {NEW_KEYS} must be specified when '{LEGACY_KEY}' is not used.")
+
+ class_key = present[0]
+ class_path = config.pop(class_key, None)
+ module_path, class_name = class_path.rsplit(".", 1)
+
+ module = _import_module(module_path, ignore_external)
+ if module is None:
+ return None
+
+ # Get the class
+ class_cls = getattr(module, class_name, None)
+ if class_cls is None:
+ raise PyAMLConfigException(f"Unknown class '{class_path}'.")
+
+ # Get the config class if it exists
+ validation_class_name = config.pop("validation_class", None)
+
+ if validation_class_name is not None:
+ config_cls = getattr(module, validation_class_name, None)
if config_cls is None:
- raise PyAMLConfigException(f"No validation class for '{module.__name__}.{class_str}' {location_str}")
+ raise PyAMLConfigException(f"Module '{module_path}' does not define validation class '{validation_class_name}'.")
+ else:
+ config_cls = getattr(module, "ConfigModel", None)
- return (module, config_cls, class_str, field_locations, location_str)
+ control_modes = config.pop("control_modes", None)
+ if control_modes is not None and not isinstance(control_modes, list):
+ raise PyAMLConfigException(f"'control_modes' must be a list, got '{type(control_modes).__name__}'.")
- def build_object(self, d: dict, ignore_external: bool = False):
- """Build an object from the dict"""
+ return BuildInfo(module=module, config_cls=config_cls, class_cls=class_cls, control_modes=control_modes, config=config)
- (module, config_cls, class_str, field_locations, location_str) = self.get_infos(d, ignore_external)
- # Clean up dict
- d.pop("__location__", None)
- d.pop("__fieldlocations__", None)
- d.pop("type")
- d.pop("class", None)
- d.pop("validation_class", None)
- control_modes = d.pop("control_modes", None)
+# ---------------------------------------------------------------------
+# Factory
+# ---------------------------------------------------------------------
- # Validate the model
- try:
- cfg = config_cls.model_validate(d)
- except ValidationError as e:
- self.handle_validation_error(e, module.__name__, location_str, field_locations)
- elem_cls = getattr(module, class_str, None)
- if elem_cls is None:
- raise PyAMLConfigException(f"Unknown element class '{module.__name__}.{class_str}' {location_str}")
+class PyAMLFactory:
+ """
+ Construct PyAML objects from recursively nested configuration data.
+
+ Methods
+ -------
+ build(data, ignore_external=False)
+ Build objects from a top-level mapping or sequence.
+ clear()
+ Remove all registered elements from the global registry.
+ """
+
+ def build(self, data: dict | list, ignore_external: bool = False) -> Any:
+ """
+ Build objects from a top-level mapping or sequence.
- if control_modes is None:
- # Immediate contruction of the object
- try:
- obj = elem_cls(cfg)
- self.register_element(obj)
- except Exception as e:
- raise PyAMLConfigException(f"{str(e)} when creating '{module.__name__}.{class_str}' {location_str}") from e
+ Parameters
+ ----------
+ data : dict | list
+ Configuration dictionary or list to resolve.
+ ignore_external : bool
+ If ``True``, ignore unavailable external modules.
+
+ Returns
+ -------
+ Any
+ Built object, list, or recursively processed mapping.
+ """
+ if not isinstance(data, (dict, list)):
+ raise PyAMLConfigException(f"Unexpected element found. Expected 'dict' or 'list' but got '{type(data).__name__}'")
- else:
- # Delayed construction
- # An UnboundElement will be constructuced during the filling of the ElementHolder
- try:
- obj = UnboundElement(elem_cls, module.__name__, control_modes, cfg)
- self.register_element(obj)
- except Exception as e:
- raise PyAMLConfigException(
- f"{str(e)} when creating unbounded '{module.__name__}.{class_str}' {location_str}"
- ) from e
+ return self._build(data, ignore_external)
- return obj
+ def _build(self, value: Any, ignore_external: bool = False):
+ """
+ Recursively build one configuration value.
- def build_unbound(self, e: UnboundElement, holder) -> Element:
- try:
- obj = e._class(holder, e._config)
- except Exception as ex:
- raise PyAMLConfigException(f"{str(ex)} when creating '{e._module_name}.{e._class.__name__}'") from ex
+ Parameters
+ ----------
+ value : Any
+ Value to process; mappings and lists are traversed recursively.
+ ignore_external : bool
+ If ``True``, ignore unavailable external modules.
+ """
+ if isinstance(value, list):
+ return self._build_list(value, ignore_external)
- if not isinstance(obj, Element):
- raise PyAMLConfigException(f"'{e._module_name}.{e._class.__name__}' is not a sub class of Element")
+ if isinstance(value, dict):
+ return self._build_dict(value, ignore_external)
- obj._peer = holder
+ return value
- return obj
+ def _build_list(self, items: list[Any], ignore_external: bool = False):
+ """
+ Recursively build every item in a configuration list.
+
+ Parameters
+ ----------
+ items : list[Any]
+ Items to process.
+ ignore_external : bool
+ If ``True``, ignore unavailable external modules.
+ """
+ return [self._build(item, ignore_external) for item in items]
+
+ def _build_dict(self, data: dict, ignore_external: bool = False):
+ """
+ Recursively build a mapping or instantiate its declared object.
- def depth_first_build(self, d, ignore_external: bool):
+ Parameters
+ ----------
+ data : dict
+ Configuration mapping to process.
+ ignore_external : bool
+ If ``True``, ignore unavailable external modules.
"""
- Main factory function (Depth-first factory)
+ if any(key in data for key in BUILD_KEYS):
+ return self._build_object(data, ignore_external)
+
+ return {key: self._build(value, ignore_external) for key, value in data.items()}
+
+ def _build_object(self, data: dict, ignore_external: bool = False):
+ """
+ Validate and instantiate an object declared by a configuration mapping.
Parameters
----------
- ignore_external: bool
- Ignore `module not found` and return None when an object cannot be created
+ data : dict
+ Mapping containing a class declaration and constructor data.
+ ignore_external : bool
+ If ``True``, ignore unavailable external modules.
"""
+ build_info = _resolve_build_info(data, ignore_external)
+ if build_info is None:
+ return None
+
+ config = {key: self._build(value, ignore_external) for key, value in build_info.config.items()}
- if isinstance(d, list):
- # list can be a list of objects or a list of native types
- l = []
- for _index, e in enumerate(d):
- if isinstance(e, dict) or isinstance(e, list):
- obj = self.depth_first_build(e, ignore_external)
- l.append(obj)
+ if build_info.config_cls is not None:
+ try:
+ cfg = build_info.config_cls.model_validate(config)
+ except ValidationError as exc:
+ raise_validation_error(
+ exc,
+ class_path=generate_class_path(build_info.config_cls),
+ )
+ else:
+ cfg = config
+
+ try:
+ if build_info.control_modes is None:
+ if isinstance(cfg, dict):
+ obj = build_info.class_cls(**cfg)
else:
- l.append(e)
- return l
-
- elif isinstance(d, dict):
- _, config_cls, *_ = self.get_infos(d, ignore_external)
-
- for key, value in d.items():
- if not key == "__fieldlocations__":
- if isinstance(value, dict) or isinstance(value, list):
- # Get the type of the field
- fieldType = self.get_field_type(config_cls, key)
- # Do not recurse dict defined in ConfigModel
- # pydantic use TypedDict not usable with isinstance
- if str(fieldType) != "":
- obj = self.depth_first_build(value, ignore_external)
- # Replace the inner dict by the object itself
- d[key] = obj
-
- # We are now on leaf (no nested object), we can construct
- return self.build_object(d, ignore_external)
-
- raise PyAMLConfigException("Unexpected element found. 'dict' or 'list' expected but got '{d.__class__.__name__}'")
-
- def register_element(self, elt):
- if isinstance(elt, Element):
- name = elt.get_name()
- if name in self._elements:
- raise PyAMLConfigException(f"element {name} already defined")
- self._elements[name] = elt
-
- def get_element(self, name: str):
- if name not in self._elements:
- raise PyAMLConfigException(f"element {name} not defined")
- return self._elements[name]
-
- def get_elements_by_name(self, wildcard: str) -> list[Element]:
- return [e for k, e in self._elements.items() if fnmatch.fnmatch(k, wildcard)]
-
- def get_elements_by_type(self, type) -> list[Element]:
- return [e for k, e in self._elements.items() if isinstance(e, type)]
+ obj = build_info.class_cls(cfg)
+
+ else:
+ obj = UnboundElement(
+ build_info.class_cls,
+ build_info.module.__name__,
+ build_info.control_modes,
+ cfg,
+ )
+ except Exception as exc:
+ mode = " unbounded" if build_info.control_modes is not None else ""
+ raise PyAMLConfigException(
+ f"{exc} when creating{mode} '{build_info.module.__name__}.{build_info.class_cls.__name__}'"
+ ) from exc
+
+ if isinstance(obj, Element):
+ ELEMENT_REGISTRY.register(obj)
+
+ return obj
def clear(self):
- self._elements.clear()
+ """
+ Remove all registered elements from the global registry.
+ """
+ ELEMENT_REGISTRY.clear()
+# Shared factory instance maintained for compatibility with
+# existing code using Factory.build(...) and Factory.clear(...).
Factory = PyAMLFactory()
diff --git a/pyaml/configuration/fileloader.py b/pyaml/configuration/fileloader.py
index 9aa652a7a..ef5f9f0eb 100644
--- a/pyaml/configuration/fileloader.py
+++ b/pyaml/configuration/fileloader.py
@@ -1,168 +1,630 @@
-# PyAML config file loader
-import collections.abc
+"""
+Load PyAML configuration files and expand nested references.
+
+The loader supports YAML and JSON files, environment and path resolvers,
+recursive file includes, and optional source-location metadata for diagnostics.
+"""
+
import io
import json
import logging
import os
+import re
+from abc import ABC, abstractmethod
+from collections.abc import Callable, Hashable
+from contextlib import contextmanager
+from dataclasses import dataclass, field
from pathlib import Path
-from typing import TYPE_CHECKING, Union
+from typing import Any, Union
import yaml
from yaml import CLoader
from yaml.constructor import ConstructorError
from yaml.loader import SafeLoader
-from pyaml.configuration.factory import Factory
-
from .. import PyAMLException
-if TYPE_CHECKING:
- from pyaml.accelerator import Accelerator
-
-
logger = logging.getLogger(__name__)
-accepted_suffixes = [".yaml", ".yml", ".json"]
-FILE_PREFIX = "file:"
-ROOT = {"path": Path.cwd().resolve()}
+LOCATION_KEY = "__location__"
+FIELD_LOCATIONS_KEY = "__fieldlocations__"
+ACCEPTED_SUFFIXES = (".yaml", ".yml", ".json")
+RESOLVER_PATTERN = re.compile(r"\$\{([^{}]+)\}")
-def set_root_folder(path: Union[str, Path]):
+class RootFolder:
"""
- Set the root path for configuration files.
+ Manage the base directory for relative configuration paths.
+
+ Parameters
+ ----------
+ path : str or pathlib.Path or None, optional
+ Directory used to resolve relative paths.
+
+ Methods
+ -------
+ set(path)
+ Set the directory used to resolve relative configuration files.
+ get()
+ Return the resolved configuration root directory.
+ expand_path(path)
+ Resolve a configuration path against the root directory.
"""
- ROOT["path"] = Path(path)
+ def __init__(self, path: str | Path | None = None):
+ """
+ Initialize the configuration path root.
-def get_root_folder() -> Path:
- """
- Get the root path for configuration files.
- """
- return ROOT["path"]
+ If ``path`` is omitted, the current working directory is used.
+ """
+ if path is None:
+ self._path = Path.cwd().resolve()
+ else:
+ self._path = Path(path).resolve()
+ def set(self, path: str | Path) -> None:
+ """
+ Set the directory used to resolve relative configuration files.
-def get_path(p: Path) -> Path:
- """
- Return unchanged input path if it is an absolute path,
- path relative to root folder otherwise.
- """
- if os.path.isabs(p):
- return p
- else:
- root = get_root_folder()
- return root / p
+ Parameters
+ ----------
+ path : str or pathlib.Path
+ New configuration root directory.
+ """
+ self._path = Path(path).resolve()
+
+ def get(self) -> Path:
+ """Return the resolved configuration root directory."""
+ return self._path
+
+ def expand_path(self, path: str | Path) -> Path:
+ """
+ Resolve a configuration path against the root directory.
+
+ Relative paths are interpreted relative to the configured root folder.
+
+ Parameters
+ ----------
+ path : str or pathlib.Path
+ Path to resolve.
+
+ Returns
+ -------
+ pathlib.Path
+ Absolute, normalized path.
+ """
+
+ path = Path(path)
+ if not path.is_absolute():
+ path = self._path / path
+ return path.resolve()
+
+
+ROOT = RootFolder()
class PyAMLConfigCyclingException(PyAMLException):
+ """
+ Raised when a configuration file includes itself through a cycle.
+
+ Parameters
+ ----------
+ error_filename : str
+ File that triggered the cycle.
+ path_stack : list[pathlib.Path]
+ Include chain leading to the cycle.
+ """
+
def __init__(self, error_filename: str, path_stack: list[Path]):
+ """
+ Initialize an exception describing a circular file include.
+ """
+
self.error_filename = error_filename
+
parent_file_stack = [parent_path.name for parent_path in path_stack]
super().__init__(f"Circular file inclusion of {error_filename}. File list before reaching it: {parent_file_stack}")
- pass
+@dataclass
+class LoadContext:
+ """
+ Track include state during one recursive loading session.
+
+ Parameters
+ ----------
+ include_locations : bool, optional
+ Preserve source locations in loaded mappings.
+ include_stack : list[pathlib.Path], optional
+ Active include chain. Usually left empty for a new session.
+
+ Methods
+ -------
+ loading(path)
+ Temporarily add a file to the active include chain.
+ """
-def load(filename: str, paths_stack: list = None, use_fast_loader: bool = False) -> Union[dict, list]:
- """Load recursively a configuration setup"""
- if filename.endswith(".yaml") or filename.endswith(".yml"):
- l = YAMLLoader(filename, paths_stack, use_fast_loader)
- elif filename.endswith(".json"):
- l = JSONLoader(filename, paths_stack, use_fast_loader)
- else:
- raise PyAMLException(f"{filename} File format not supported (only .yaml .yml or .json)")
- return l.load()
+ include_locations: bool = False
+ include_stack: list[Path] = field(default_factory=list)
+ @contextmanager
+ def loading(self, path: Path):
+ """
+ Temporarily add a file to the active include chain.
-# Expand condition
-def hasToLoad(value):
- return isinstance(value, str) and any(value.endswith(suffix) for suffix in accepted_suffixes)
+ Parameters
+ ----------
+ path : pathlib.Path
+ File that is about to be loaded.
+ Raises
+ ------
+ PyAMLConfigCyclingException
+ If ``path`` is already on the active include stack.
+ """
-# Loader base class (nested files expansion)
-class Loader:
- def __init__(self, filename: str, parent_path_stack: list[Path]):
- self.path: Path = get_path(filename)
- self.files_stack: list[Path] = []
- if parent_path_stack:
- if any(self.path.samefile(parent_path) for parent_path in parent_path_stack):
- raise PyAMLConfigCyclingException(filename, parent_path_stack)
- self.files_stack.extend(parent_path_stack)
- self.files_stack.append(self.path)
+ # Check if the file is currently in the chain
+ # Raise a cycling error if that is the case
+ if path in self.include_stack:
+ raise PyAMLConfigCyclingException(path.name, self.include_stack)
+
+ # Add the file to the stack to record that it is now being loaded
+ self.include_stack.append(path)
+ try:
+ # Run the code in the with block
+ yield
+ finally:
+ # Remove the file to stack to record that it has finished loading
+ self.include_stack.pop()
+
+
+Resolver = Callable[[str, LoadContext | None], Any]
+RESOLVERS: dict[str, Resolver] = {}
+
+
+def resolver(name: str):
+ """
+ Register a function as a configuration value resolver.
+
+ Args:
+ name: Prefix used to invoke the resolver (for example ``"env"``
+ or ``"file"``).
+
+ Returns:
+ A decorator that registers the decorated function in the global
+ resolver registry.
+ """
+
+ def decorate(func: Resolver) -> Resolver:
+ """
+ Register ``func`` under the resolver prefix.
+
+ Parameters
+ ----------
+ func : Resolver
+ Resolver function accepting a payload and loading context.
+
+ Returns
+ -------
+ Resolver
+ The original resolver function.
+ """
+ RESOLVERS[name] = func
+ return func
+
+ return decorate
+
+
+@resolver("env")
+def resolve_env(value: str, _context: LoadContext | None = None) -> str:
+ """
+ Resolve an environment variable by name.
+
+ Parameters
+ ----------
+ value : str
+ Name of the environment variable.
+ _context : LoadContext or None, optional
+ Unused loading context retained for resolver compatibility.
+
+ Returns
+ -------
+ str
+ Environment variable value.
+
+ Raises
+ ------
+ PyAMLException
+ If the environment variable is not set.
+ """
+ try:
+ return os.environ[value]
+ except KeyError as exc:
+ raise PyAMLException(f"Environment variable '{value}' is not set") from exc
+
+
+@resolver("path")
+def resolve_path(value: str, _context: LoadContext | None = None) -> str:
+ """
+ Resolve a configuration path without loading the file.
+
+ Relative paths are expanded using the configured root folder.
+
+ Parameters
+ ----------
+ value : str
+ Path to resolve.
+ _context : LoadContext or None, optional
+ Unused loading context retained for resolver compatibility.
+
+ Returns
+ -------
+ str
+ Absolute, normalized path.
+ """
+ return str(ROOT.expand_path(value))
+
+
+@resolver("file")
+def resolve_file(value: str, context: LoadContext | None = None) -> Any:
+ """
+ Load and return the contents of a configuration file.
+
+ Parameters
+ ----------
+ value : str
+ Path to the configuration file.
+ context : LoadContext, optional
+ Shared loading context used to detect inclusion cycles.
+
+ Returns
+ -------
+ object
+ Parsed and expanded configuration data.
+
+ Raises
+ ------
+ RuntimeError
+ If no loading context is provided.
+ """
+ if context is None:
+ raise RuntimeError("File resolver requires LoadContext")
+ return _load(value, context)
+
+
+def load(filename: str, include_locations: bool = False) -> Union[dict, list]:
+ """
+ Load a configuration file.
+
+ When include_locations is False, uses the faster C-based YAML loader
+ and skips including source location metadata.
+ """
+
+ # Create a new context
+ context = LoadContext(include_locations=include_locations)
+
+ return _load(filename, context)
+
+
+def _load(filename: str, context: LoadContext) -> Union[dict, list]:
+ """Load a single configuration file using the appropriate parser."""
+
+ path = ROOT.expand_path(filename)
+
+ with context.loading(path):
+ if filename.endswith((".yaml", ".yml")):
+ loader = YAMLLoader(path, context)
+ elif filename.endswith(".json"):
+ loader = JSONLoader(path, context)
+ else:
+ raise PyAMLException(f"{filename} File format not supported (only .yaml .yml or .json)")
+
+ return loader.load()
+
+
+def _is_supported_file(value: Any) -> bool:
+ """Return True if the value looks like a supported configuration file name."""
+ return isinstance(value, str) and value.endswith(ACCEPTED_SUFFIXES)
+
+
+class ConfigLoader(ABC):
+ """
+ Base class for parsers that expand nested configuration references.
+
+ Parameters
+ ----------
+ path : pathlib.Path
+ Configuration file being loaded.
+ context : LoadContext
+ Shared state for recursive includes and cycle detection.
+
+ Methods
+ -------
+ expand(obj)
+ Recursively expand configuration values.
+ load()
+ Load and parse the current configuration file.
+ """
+
+ def __init__(self, path: Path, context: LoadContext):
+ """Store the file path and shared loading context."""
+
+ self.path = path
+ self.context = context
+
+ def expand(self, obj: Union[dict, list, Any]) -> Union[dict, list, Any]:
+ """
+ Recursively expand configuration values.
+
+ Dictionaries and lists are traversed recursively, while string values
+ are resolved using the registered resolvers. All other values are
+ returned unchanged.
+ """
- # Recursively expand a dict
- def expand_dict(self, d: dict):
- for key, value in d.items():
- try:
- if hasToLoad(value):
- if value.startswith(FILE_PREFIX):
- # remove prefix
- stripped_value = value[len(FILE_PREFIX) :]
- d[key] = str(get_root_folder() / Path(stripped_value))
- else:
- d[key] = load(value, self.files_stack, self.use_fast_loader)
- else:
- self.expand(value)
- except PyAMLConfigCyclingException as pyaml_ex:
- location = d.pop("__location__", None)
- field_locations = d.pop("__fieldlocations__", None)
- location_str = ""
- if location:
- file, line, col = location
- if field_locations and key in field_locations:
- location = field_locations[key]
- file, line, col = location
- location_str = f" in {file} at line {line}, column {col}"
- raise PyAMLException(f"Circular file inclusion of {pyaml_ex.error_filename}{location_str}") from pyaml_ex
-
- # Recursively expand a list
- def expand_list(self, l: list):
- idx = 0
- while idx < len(l):
- value = l[idx]
- if hasToLoad(value):
- obj = load(value, self.files_stack)
- if isinstance(obj, list):
- l[idx : idx + 1] = obj
- idx += len(obj)
- else:
- l[idx] = obj
- idx += 1
- else:
- self.expand(value)
- idx += 1
-
- # Recursively expand an object
- def expand(self, obj: Union[dict, list]):
if isinstance(obj, dict):
- self.expand_dict(obj)
- elif isinstance(obj, list):
- self.expand_list(obj)
+ return self._expand_dict(obj)
+ if isinstance(obj, list):
+ return self._expand_list(obj)
+ if isinstance(obj, str):
+ return self._expand_string(obj)
return obj
- # Load a file
+ def _expand_string(self, value: str) -> Any:
+ """
+ Expand resolver expressions and file references in a string.
+
+ If the entire string is a resolver expression (for example
+ ``"${env:HOME}"`` or ``"${file:config.yaml}"``), the resolved value is
+ returned directly and may be of any type.
+
+ Resolver expressions embedded inside a larger string are interpolated
+ into the surrounding text. Only scalar values may be interpolated;
+ attempting to embed a dictionary or list raises a ``PyAMLException``.
+
+ After resolver expansion, plain strings that refer to supported
+ configuration files are loaded automatically.
+
+ Args:
+ value: The string value to expand.
+
+ Returns:
+ The expanded value, which may be a string or another object if the
+ input consists solely of a resolver expression.
+ """
+
+ full_match = RESOLVER_PATTERN.fullmatch(value)
+ if full_match:
+ return self._resolve_resolver_expression(full_match.group(1).strip())
+
+ # Handle embedded case
+ def replace(match: re.Match[str]) -> str:
+ """
+ Replace one embedded resolver expression with its value.
+
+ Parameters
+ ----------
+ match : re.Match[str]
+ Match containing the resolver expression to expand.
+
+ Returns
+ -------
+ str
+ String representation of the resolved scalar value.
+ """
+ resolved = self._resolve_resolver_expression(match.group(1).strip())
+
+ if isinstance(resolved, (dict, list)):
+ raise PyAMLException(
+ f"Resolver '{match.group(1)}' returned a {type(resolved).__name__}, "
+ "which cannot be interpolated into a string."
+ )
+
+ return str(resolved)
+
+ value = RESOLVER_PATTERN.sub(replace, value)
+
+ if _is_supported_file(value):
+ return RESOLVERS["file"](value, self.context)
+
+ return value
+
+ def _resolve_resolver_expression(self, expr: str) -> Any:
+ """
+ Resolve a single resolver expression.
+
+ The expression must have the form ``":"``, for
+ example ``"env:HOME"`` or ``"file:config.yaml"``. The resolver is
+ looked up in the global resolver registry and invoked with the
+ supplied payload.
+
+ Args:
+ expr: Resolver expression without the surrounding ``"${...}"``.
+
+ Returns:
+ The value returned by the matching resolver.
+
+ Raises:
+ PyAMLException: If the expression is malformed or references an
+ unknown resolver.
+ """
+ if ":" not in expr:
+ raise PyAMLException(f"Invalid resolver expression '{expr}'")
+
+ prefix, payload = expr.split(":", 1)
+ resolver = RESOLVERS.get(prefix.strip())
+ if resolver is None:
+ raise PyAMLException(f"Unknown resolver '{prefix.strip()}'")
+
+ return resolver(payload.strip(), self.context)
+
+ def _expand_dict(self, data: dict) -> dict:
+ """Recursively expand dictionary values and enrich cycle errors with location information."""
+
+ for key, value in list(data.items()):
+ try:
+ data[key] = self.expand(value)
+ except PyAMLConfigCyclingException as exc:
+ self._raise_cycle_error(exc, data, key)
+ return data
+
+ def _raise_cycle_error(self, exc: PyAMLConfigCyclingException, obj: dict, key: Any) -> None:
+ """Re-raise a cycle error with file location information, if available."""
+
+ location = obj.get(LOCATION_KEY)
+ field_locations = obj.get(FIELD_LOCATIONS_KEY)
+
+ location_str = ""
+ if location:
+ file, line, col = location
+ if field_locations and key in field_locations:
+ file, line, col = field_locations[key]
+ location_str = f" in {file} at line {line}, column {col}"
+
+ raise PyAMLException(f"Circular file inclusion of {exc.error_filename}{location_str}") from exc
+
+ def _expand_list(self, items: list) -> list:
+ """
+ Recursively expand the elements of a list.
+
+ Plain string values that refer to supported configuration files are
+ treated as list includes. If the referenced file loads to a list, its
+ elements are spliced into the current list. Otherwise, the loaded
+ object is appended as a single element.
+
+ All other items are expanded recursively using :meth:`expand`.
+
+ Args:
+ items: The list to expand.
+
+ Returns:
+ The expanded list.
+ """
+ expanded: list[Any] = []
+
+ for item in items:
+ if isinstance(item, str) and _is_supported_file(item):
+ loaded = RESOLVERS["file"](item, self.context)
+ if isinstance(loaded, list):
+ expanded.extend(loaded)
+ else:
+ expanded.append(loaded)
+ continue
+
+ expanded.append(self.expand(item))
+
+ return expanded
+
+ @abstractmethod
+ def load(self) -> Union[dict, list]:
+ """Load and parse the current configuration file."""
+ ...
+
+
+class YAMLLoader(ConfigLoader):
+ """
+ Load and expand YAML configuration files.
+
+ Parameters
+ ----------
+ path : pathlib.Path
+ Configuration file being loaded.
+ context : LoadContext
+ Shared state for recursive includes and cycle detection.
+
+ Methods
+ -------
+ load()
+ Parse the YAML file and expand nested configuration references.
+ """
+
+ def __init__(self, path: Path, context: LoadContext):
+ """Create a YAML loader for the given file."""
+
+ super().__init__(path, context)
+ self._loader = SafeLineLoader if context.include_locations else CLoader
+
def load(self) -> Union[dict, list]:
- raise PyAMLException(str(self.path) + ": load() method not implemented")
+ """Parse the YAML file and expand nested configuration references."""
+
+ logger.log(logging.DEBUG, f"Loading YAML file '{self.path}'")
+ with open(self.path) as file:
+ try:
+ return self.expand(yaml.load(file, Loader=self._loader))
+ except yaml.YAMLError as exc:
+ raise PyAMLException(f"{self.path}: {exc}") from exc
+
+
+class JSONLoader(ConfigLoader):
+ """
+ Load and expand JSON configuration files.
+
+ Parameters
+ ----------
+ path : pathlib.Path
+ Configuration file being loaded.
+ context : LoadContext
+ Shared state for recursive includes and cycle detection.
+
+ Methods
+ -------
+ load()
+ Parse the JSON file and expand nested configuration references.
+ """
+
+ def __init__(self, path: Path, context: LoadContext):
+ """Create a JSON loader for the given file."""
+
+ super().__init__(path, context)
+
+ def load(self) -> Union[dict, list]:
+ """Parse the JSON file and expand nested configuration references."""
+
+ logger.log(logging.DEBUG, f"Loading JSON file '{self.path}'")
+ with open(self.path) as file:
+ try:
+ return self.expand(json.load(file))
+ except json.JSONDecodeError as exc:
+ raise PyAMLException(f"{self.path}: {exc}") from exc
class SafeLineLoader(SafeLoader):
+ """
+ YAML loader that preserves line and column information for mappings.
+
+ Parameters
+ ----------
+ stream : io.TextIOBase
+ Stream to parse. Its ``name`` is recorded so errors can cite the source file.
+
+ Methods
+ -------
+ construct_mapping(node, deep=False)
+ Build a mapping and attach location metadata to it.
+ """
+
def __init__(self, stream):
+ """Create the YAML loader and record the source filename."""
+
super().__init__(stream)
self.filename = stream.name if isinstance(stream, io.TextIOWrapper) else ""
def construct_mapping(self, node, deep=False):
+ """Build a mapping and attach location metadata to it."""
+
mapping = {}
field_mapping = {}
for key_node, value_node in node.value:
key = self.construct_object(key_node, deep=deep)
- if not isinstance(key, collections.abc.Hashable):
+ if not isinstance(key, Hashable):
raise ConstructorError(
"while constructing a mapping",
node.start_mark,
"found unhashable key",
key_node.start_mark,
)
+
value = self.construct_object(value_node, deep=deep)
mapping[key] = value
field_mapping[key] = (
@@ -172,41 +634,10 @@ def construct_mapping(self, node, deep=False):
)
# Add location information inside the dict
- mapping["__location__"] = (
+ mapping[LOCATION_KEY] = (
self.filename,
node.start_mark.line + 1,
node.start_mark.column + 1,
)
- mapping["__fieldlocations__"] = field_mapping
+ mapping[FIELD_LOCATIONS_KEY] = field_mapping
return mapping
-
-
-# YAML loader
-class YAMLLoader(Loader):
- def __init__(self, filename: str, parent_paths_stack: list, use_fast_loader: bool):
- super().__init__(filename, parent_paths_stack)
- self._loader = SafeLineLoader if not use_fast_loader else CLoader
- self.use_fast_loader = use_fast_loader
-
- def load(self) -> Union[dict, list]:
- logger.log(logging.DEBUG, f"Loading YAML file '{self.path}'")
- with open(self.path) as file:
- try:
- return self.expand(yaml.load(file, Loader=self._loader))
- except yaml.YAMLError as e:
- raise PyAMLException(str(self.path) + ": " + str(e)) from e
-
-
-# JSON loader
-class JSONLoader(Loader):
- def __init__(self, filename: str, parent_paths_stack: list, use_fast_loader: bool):
- super().__init__(filename, parent_paths_stack)
- self.use_fast_loader = False
-
- def load(self) -> Union[dict, list]:
- logger.log(logging.DEBUG, f"Loading JSON file '{self.path}'")
- with open(self.path) as file:
- try:
- return self.expand(json.load(file))
- except json.JSONDecodeError as e:
- raise PyAMLException(str(self.path) + ": " + str(e)) from e
diff --git a/pyaml/configuration/inline_curve.py b/pyaml/configuration/inline_curve.py
deleted file mode 100644
index a9de9f99b..000000000
--- a/pyaml/configuration/inline_curve.py
+++ /dev/null
@@ -1,55 +0,0 @@
-from pathlib import Path
-
-import numpy as np
-from pydantic import BaseModel, ConfigDict
-
-from ..common.exception import PyAMLException
-from ..configuration import get_root_folder
-from .curve import Curve
-
-# Define the main class name for this module
-PYAMLCLASS = "InlineCurve"
-
-
-class ConfigModel(BaseModel):
- """
- Configuration model for inline curve
-
- Parameters
- ----------
- mat : list[list[float]]
- Curve data (n rows, 2 columns)
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- mat: list[list[float]]
-
-
-class InlineCurve(Curve):
- """
- Class for load CSV (x,y) curve
- """
-
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
- # Load the curve
- self._curve = np.array(self._cfg.mat)
-
- _s = np.shape(self._curve)
- if len(_s) != 2 or _s[1] != 2:
- raise PyAMLException(f"InlineCurve(mat='{cfg.mat}',dtype=float): wrong shape (2,2) expected but got {str(_s)}")
-
- def get_curve(self) -> np.array:
- """
- Get the curve data.
-
- Returns
- -------
- np.array
- Curve data as a 2D numpy array of shape (n, 2)
- """
- return self._curve
-
- def __repr__(self):
- return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
diff --git a/pyaml/configuration/inline_matrix.py b/pyaml/configuration/inline_matrix.py
deleted file mode 100644
index 25d03c78d..000000000
--- a/pyaml/configuration/inline_matrix.py
+++ /dev/null
@@ -1,47 +0,0 @@
-import numpy as np
-from pydantic import BaseModel, ConfigDict
-
-from .matrix import Matrix
-
-# Define the main class name for this module
-PYAMLCLASS = "InlineMatrix"
-
-
-class ConfigModel(BaseModel):
- """
- Configuration model for inline matrix
-
- Parameters
- ----------
- mat : list[list[float]]
- The matrix
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- mat: list[list[float]]
-
-
-class InlineMatrix(Matrix):
- """
- Class for loading CSV matrix
- """
-
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
- # Load the matrix
- self._mat = np.array(self._cfg.mat)
-
- def get_matrix(self) -> np.array:
- """
- Get the matrix data.
-
- Returns
- -------
- np.array
- Matrix data as a numpy array
- """
- return self._mat
-
- def __repr__(self):
- return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
diff --git a/pyaml/configuration/manager.py b/pyaml/configuration/manager.py
index 1d4511133..68baf41c3 100644
--- a/pyaml/configuration/manager.py
+++ b/pyaml/configuration/manager.py
@@ -1,10 +1,9 @@
"""
-manager.py
+Aggregate accelerator configuration fragments before runtime construction.
-Configuration aggregation helpers for :class:`~pyaml.accelerator.Accelerator`.
-
-This module provides :class:`ConfigurationManager`, a lightweight service used
-to collect configuration fragments before runtime objects are built.
+The manager loads dictionaries and YAML/JSON files, merges named categories,
+tracks source information, and provides the final configuration to the
+accelerator factory.
Typical usage is:
@@ -15,13 +14,15 @@
import copy
import fnmatch
+import inspect
import os
import re
+from importlib import import_module
from pathlib import Path
from typing import Any
from ..common.exception import PyAMLConfigException
-from .fileloader import get_root_folder, load, set_root_folder
+from .fileloader import ROOT, load
from .restfetcher import REMOTE_BASE_URL_KEY, SourceRoot, fetch_remote_config, is_remote_url, resolve_reference
_INTERNAL_METADATA_KEYS = {"__location__", "__fieldlocations__", REMOTE_BASE_URL_KEY}
@@ -35,7 +36,7 @@
class UnsupportedConfigurationRootError(PyAMLConfigException):
- """Raised when a fragment root is outside ConfigurationManager scope."""
+ """Raised when a fragment contains unsupported root-level fields."""
class ConfigurationManager:
@@ -46,6 +47,40 @@ class ConfigurationManager:
dictionaries and exposes convenience helpers to inspect, query and update
them before constructing the final runtime object graph.
+ Methods
+ -------
+ root_fields()
+ Return the supported accelerator root fields in order. Return the ordered root fields supported by the
+ accelerator configuration.
+ add(payload, **kwargs)
+ Add a configuration fragment from a dict or a YAML/JSON file.
+ remove(category, name)
+ Remove a named entry from an aggregated category.
+ replace(category, element)
+ Replace an existing named entry in an aggregated category.
+ clear(category=None)
+ Clear the aggregated state, or a single root field/category.
+ categories()
+ Return categories that currently contain entries.
+ keys(category=None)
+ Return known entry names.
+ has(category, name)
+ Check whether a named entry exists.
+ get(category, name)
+ Return a named configuration entry.
+ find(pattern, category=None)
+ Search entry names using wildcards or regular expressions.
+ settings()
+ Return aggregated scalar accelerator settings.
+ to_dict()
+ Return the aggregated configuration as a plain dictionary.
+ build(ignore_external=False, validate=False)
+ Build an Accelerator from the aggregated configuration snapshot.
+ strip_internal_metadata(value)
+ Remove additionnal internal informations info from value
+ strip_runtime_internal_metadata(value)
+ Remove additionnal internal informations info from value
+
Notes
-----
The manager only accepts accelerator-root fragments and merges named
@@ -74,6 +109,9 @@ class ConfigurationManager:
'design'
"""
+ DEFAULT_CLASS_PATH = "pyaml.accelerator.Accelerator"
+ # Kept as a public compatibility constant for callers using the legacy
+ # module-based manager API.
DEFAULT_TYPE = "pyaml.accelerator"
NAMED_CATEGORIES = ("controls", "simulators", "arrays", "devices")
_SUPPORTED_FILE_SUFFIXES = {".yaml", ".yml", ".json"}
@@ -81,35 +119,50 @@ class ConfigurationManager:
@classmethod
def root_fields(cls) -> tuple[str, ...]:
r"""
- Return the ordered root fields supported by the accelerator model.
+ Return the supported accelerator root fields in order.
+ Return the ordered root fields supported by the accelerator configuration.
- The field order is derived from
- :class:`~pyaml.accelerator.ConfigModel`.
+ The field order is derived from :meth:`Accelerator.__init__`, excluding
+ internal or categorized fields such as control and simulator collections.
Returns
-------
tuple[str, ...]
+ Root field names in configuration order, prefixed with ``"type"``.
Examples
- --------
.. code-block:: python
- >>> ConfigurationManager.root_fields()
+ >>> ConfigurationManager.root_fields()
"""
- from ..accelerator import ConfigModel as AcceleratorConfigModel
-
- config_fields = tuple(
- field_name for field_name in AcceleratorConfigModel.model_fields if field_name not in cls.NAMED_CATEGORIES
+ params = inspect.signature(cls.__init__).parameters
+
+ fields = tuple(
+ name
+ for name, param in params.items()
+ if name != "self"
+ and name not in cls.NAMED_CATEGORIES
+ and param.kind
+ in (
+ inspect.Parameter.POSITIONAL_OR_KEYWORD,
+ inspect.Parameter.KEYWORD_ONLY,
+ )
)
- return ("type", *config_fields)
+ return ("class_path", *fields)
def __init__(self):
- self._state: dict[str, Any] = {"type": self.DEFAULT_TYPE}
+ """
+ Initialize an empty configuration manager.
+
+ The manager starts with the default accelerator type and empty named
+ categories. Source tracking is enabled as fragments are added.
+ """
+ self._state: dict[str, Any] = {"class_path": self.DEFAULT_CLASS_PATH}
self._items_by_category: dict[str, dict[str, dict[str, Any]]] = {category: {} for category in self.NAMED_CATEGORIES}
self._sources_by_category: dict[str, dict[str, str]] = {category: {} for category in self.NAMED_CATEGORIES}
self._field_sources: dict[str, str] = {}
- self._build_root: SourceRoot = get_root_folder()
+ self._build_root: SourceRoot = ROOT.get()
self._build_root_locked = False
def add(self, payload, **kwargs) -> None:
@@ -122,7 +175,7 @@ def add(self, payload, **kwargs) -> None:
Fragment to merge into the current aggregated state.
source_name : str, optional
Explicit source label to associate with the fragment.
- use_fast_loader : bool, optional
+ include_locations : bool, optional
Forwarded to the configuration loader.
Examples
@@ -145,7 +198,7 @@ def add(self, payload, **kwargs) -> None:
... )
"""
source_name = kwargs.pop("source_name", None)
- use_fast_loader = kwargs.pop("use_fast_loader", False)
+ include_locations = kwargs.pop("include_locations", False)
if kwargs:
unknown = ", ".join(sorted(kwargs))
raise PyAMLConfigException(f"Unsupported ConfigurationManager.add() arguments: {unknown}")
@@ -153,7 +206,7 @@ def add(self, payload, **kwargs) -> None:
fragment, inferred_source_name, source_root = self._load_payload(
payload,
source_name=source_name,
- use_fast_loader=use_fast_loader,
+ include_locations=include_locations,
)
prepared = self._prepare_fragment(fragment, source_root, inferred_source_name)
self._merge_fragment(prepared, inferred_source_name)
@@ -253,12 +306,12 @@ def clear(self, category: str | None = None) -> None:
>>> manager.clear()
"""
if category is None:
- self._state = {"type": self.DEFAULT_TYPE}
+ self._state = {"class_path": self.DEFAULT_CLASS_PATH}
self._field_sources.clear()
for name in self.NAMED_CATEGORIES:
self._items_by_category[name].clear()
self._sources_by_category[name].clear()
- self._build_root = get_root_folder()
+ self._build_root = ROOT.get()
self._build_root_locked = False
return
@@ -268,9 +321,9 @@ def clear(self, category: str | None = None) -> None:
self._sources_by_category[category].clear()
return
- if category == "type":
- self._state["type"] = self.DEFAULT_TYPE
- self._field_sources.pop("type", None)
+ if category in ("type", "class_path"):
+ self._state["class_path"] = self.DEFAULT_CLASS_PATH
+ self._field_sources.pop("class_path", None)
return
if category in self._state:
@@ -468,7 +521,7 @@ def to_dict(self) -> dict[str, Any]:
snapshot = self._snapshot(include_internal_metadata=False)
return snapshot
- def build(self, ignore_external: bool = False):
+ def build(self, ignore_external: bool = False, validate: bool = False):
r"""
Build an Accelerator from the aggregated configuration snapshot.
@@ -491,9 +544,9 @@ def build(self, ignore_external: bool = False):
from ..accelerator import Accelerator
if isinstance(self._build_root, Path):
- set_root_folder(self._build_root)
+ ROOT.set(self._build_root)
snapshot = ConfigurationManager.strip_runtime_internal_metadata(self._snapshot(include_internal_metadata=True))
- return Accelerator.from_dict(snapshot, ignore_external=ignore_external)
+ return Accelerator.from_dict(snapshot, ignore_external=ignore_external, validate=validate)
def __dir__(self):
"""
@@ -599,14 +652,31 @@ def _load_payload(
payload,
*,
source_name: str | None,
- use_fast_loader: bool,
+ include_locations: bool,
) -> tuple[dict[str, Any], str, SourceRoot]:
+ """
+ Load a dictionary or file payload and determine its source metadata.
+
+ Parameters
+ ----------
+ payload : object
+ Configuration dictionary or path to a YAML/JSON file.
+ source_name : str | None
+ Optional explicit source label.
+ include_locations : bool
+ Whether to preserve source locations while loading.
+
+ Returns
+ -------
+ tuple[dict[str, Any], str, SourceRoot]
+ Loaded fragment, source label, and source root directory.
+ """
if isinstance(payload, dict):
return copy.deepcopy(payload), source_name or "", None
payload_path = self._coerce_path(payload)
if is_remote_url(payload_path):
- fragment, source_root = fetch_remote_config(payload_path, use_fast_loader=use_fast_loader)
+ fragment, source_root = fetch_remote_config(payload_path, include_locations=include_locations)
if not self._build_root_locked:
self._build_root = source_root
self._build_root_locked = True
@@ -624,13 +694,13 @@ def _load_payload(
raise PyAMLConfigException(f"{payload_path} file not found")
resolved_path = path.resolve()
- previous_root = get_root_folder()
+ previous_root = ROOT.get()
source_root = resolved_path.parent
try:
- set_root_folder(source_root)
- fragment = load(resolved_path.name, None, use_fast_loader)
+ ROOT.set(source_root)
+ fragment = load(resolved_path.name, include_locations)
finally:
- set_root_folder(previous_root)
+ ROOT.set(previous_root)
if not self._build_root_locked:
self._build_root = source_root
@@ -639,19 +709,38 @@ def _load_payload(
return fragment, source_name or str(resolved_path), source_root
def _prepare_fragment(self, fragment: dict[str, Any], source_root: SourceRoot, source_name: str) -> dict[str, Any]:
+ """
+ Validate and normalize a loaded configuration fragment.
+
+ Parameters
+ ----------
+ fragment : dict[str, Any]
+ Fragment to prepare.
+ source_root : SourceRoot
+ Root directory used to resolve relative simulator paths.
+ source_name : str
+ Label identifying the fragment source.
+
+ Returns
+ -------
+ dict[str, Any]
+ Normalized fragment ready to merge.
+ """
if not isinstance(fragment, dict):
raise PyAMLConfigException(
f"ConfigurationManager.add() expects a mapping at the top level, got '{type(fragment).__name__}'."
)
- accelerator_type = fragment.get("type", self.DEFAULT_TYPE)
- if accelerator_type != self.DEFAULT_TYPE:
+ prepared = self._normalize_class_paths(fragment)
+
+ accelerator_class_path = prepared.get("class_path", self.DEFAULT_CLASS_PATH)
+ if accelerator_class_path != self.DEFAULT_CLASS_PATH:
raise UnsupportedConfigurationRootError(
- f"ConfigurationManager only supports '{self.DEFAULT_TYPE}' roots, got '{accelerator_type}'."
+ f"ConfigurationManager only supports '{self.DEFAULT_CLASS_PATH}' roots, got '{accelerator_class_path}'."
)
- prepared = copy.deepcopy(fragment)
- prepared["type"] = self.DEFAULT_TYPE
+ prepared = copy.deepcopy(prepared)
+ prepared["class_path"] = self.DEFAULT_CLASS_PATH
for category in self.NAMED_CATEGORIES:
if category not in prepared:
@@ -672,9 +761,9 @@ def _prepare_fragment(self, fragment: dict[str, Any], source_root: SourceRoot, s
f"Configuration category '{category}' expects named objects, "
f"but entry at index {index} from source '{source_name}' has no 'name'."
)
- if "type" not in entry:
+ if "class_path" not in entry:
raise PyAMLConfigException(
- f"Configuration entry '{entry['name']}' in category '{category}' has no 'type'."
+ f"Configuration entry '{entry['name']}' in category '{category}' has no 'class_path'."
)
if category == "simulators":
@@ -682,7 +771,64 @@ def _prepare_fragment(self, fragment: dict[str, Any], source_root: SourceRoot, s
return prepared
+ @classmethod
+ def _normalize_class_paths(cls, value: Any) -> Any:
+ """Normalize legacy and new configuration references to ``class_path``.
+
+ Legacy ``type`` entries are resolved using the module's ``PYAMLCLASS``
+ value. The modern ``class`` alias is accepted as a fully qualified
+ class path. The manager then uses only ``class_path`` internally.
+ """
+ if isinstance(value, list):
+ return [cls._normalize_class_paths(item) for item in value]
+ if not isinstance(value, dict):
+ return value
+
+ normalized = {
+ key: item if key in _INTERNAL_METADATA_KEYS else cls._normalize_class_paths(item) for key, item in value.items()
+ }
+ class_path = normalized.pop("class_path", None)
+ legacy_type = normalized.pop("type", None)
+ class_alias = normalized.pop("class", None)
+ if class_path is None and legacy_type is None:
+ if class_alias is not None:
+ # ``class`` is also supported as an alias for ``class_path``.
+ class_path = class_alias
+ class_alias = None
+ else:
+ return normalized
+ if class_path is not None and (legacy_type is not None or class_alias is not None):
+ raise PyAMLConfigException("Configuration cannot combine class_path with type or class.")
+ if class_path is None:
+ if not isinstance(legacy_type, str):
+ raise PyAMLConfigException(f"Invalid type '{legacy_type}'.")
+ if class_alias is None:
+ module = import_module(legacy_type)
+ class_alias = getattr(module, "PYAMLCLASS", None)
+ if class_alias is None:
+ raise PyAMLConfigException(f"Module '{legacy_type}' does not define PYAMLCLASS.")
+ class_path = f"{legacy_type}.{class_alias}"
+ if not isinstance(class_path, str) or "." not in class_path:
+ raise PyAMLConfigException(f"Invalid class_path '{class_path}'. Expected 'module.Class'.")
+ normalized["class_path"] = class_path
+ return normalized
+
def _merge_fragment(self, fragment: dict[str, Any], source_name: str) -> None:
+ """
+ Merge a prepared fragment into the aggregated configuration.
+
+ Parameters
+ ----------
+ fragment : dict[str, Any]
+ Normalized fragment to merge.
+ source_name : str
+ Source label associated with the fragment.
+
+ Returns
+ -------
+ None
+ This method returns ``None`` and updates manager state in place.
+ """
duplicate_errors: list[str] = []
pending_by_category: dict[str, list[dict[str, Any]]] = {}
@@ -735,12 +881,40 @@ def _merge_fragment(self, fragment: dict[str, Any], source_name: str) -> None:
self._sources_by_category[category][copied["name"]] = source_name
def _snapshot(self, *, include_internal_metadata: bool) -> dict[str, Any]:
+ """
+ Return a deep copy of the current aggregated configuration.
+
+ Parameters
+ ----------
+ include_internal_metadata : bool
+ No arguments are required.
+
+ Returns
+ -------
+ dict[str, Any]
+ Independent configuration dictionary.
+ """
snapshot = copy.deepcopy(self._state)
if include_internal_metadata:
return snapshot
return ConfigurationManager.strip_internal_metadata(snapshot)
def _normalize_simulator_paths(self, entry: dict[str, Any], source_root: SourceRoot) -> None:
+ """
+ Normalize simulator paths relative to their source configuration.
+
+ Parameters
+ ----------
+ entry : dict[str, Any]
+ Simulator configuration entry to normalize.
+ source_root : SourceRoot
+ Source root used for relative paths.
+
+ Returns
+ -------
+ None
+ Updated simulator entry.
+ """
if source_root is None:
return
@@ -749,12 +923,38 @@ def _normalize_simulator_paths(self, entry: dict[str, Any], source_root: SourceR
entry["lattice"] = resolve_reference(lattice, source_root)
def _require_named_category(self, category: str) -> None:
+ """
+ Validate that a category supports named entries.
+
+ Parameters
+ ----------
+ category : str
+ Category name to validate.
+
+ Returns
+ -------
+ None
+ This method returns ``None`` when the category is valid.
+ """
if category not in self.NAMED_CATEGORIES:
raise PyAMLConfigException(
f"Unknown configuration category '{category}'. Expected one of: {', '.join(self.NAMED_CATEGORIES)}."
)
def _categories_for_name(self, name: str) -> list[str]:
+ """
+ Find categories containing an entry with the given name.
+
+ Parameters
+ ----------
+ name : str
+ Entry name to search for.
+
+ Returns
+ -------
+ list[str]
+ Matching category names.
+ """
categories: list[str] = []
for category in self.NAMED_CATEGORIES:
if name in self._items_by_category[category]:
@@ -762,9 +962,24 @@ def _categories_for_name(self, name: str) -> list[str]:
return categories
def _format_entry(self, category: str, entry: dict[str, Any]) -> str:
+ """
+ Format an entry for a user-facing configuration summary.
+
+ Parameters
+ ----------
+ category : str
+ Category containing the entry.
+ entry : dict[str, Any]
+ Entry to format.
+
+ Returns
+ -------
+ str
+ Formatted entry description.
+ """
name = entry.get("name", "")
- entry_type = entry.get("type")
- type_part = f" ({entry_type})" if entry_type else ""
+ entry_class_path = entry.get("class_path")
+ type_part = f" ({entry_class_path})" if entry_class_path else ""
details: list[str] = []
if category == "arrays":
@@ -783,6 +998,19 @@ def _format_entry(self, category: str, entry: dict[str, Any]) -> str:
return f" {name}{type_part}{detail_part}"
def _format_source(self, source: str) -> str:
+ """
+ Format a source label for display.
+
+ Parameters
+ ----------
+ source : str
+ Source path or label.
+
+ Returns
+ -------
+ str
+ Human-readable source description.
+ """
if source.startswith("<") and source.endswith(">"):
return source
source_path = Path(source)
@@ -792,6 +1020,21 @@ def _format_source(self, source: str) -> str:
return source
def _describe_entry_source(self, entry: dict[str, Any], fallback_source: str) -> str:
+ """
+ Describe where a named configuration entry originated.
+
+ Parameters
+ ----------
+ entry : dict[str, Any]
+ Category containing the entry.
+ fallback_source : str
+ Entry name to describe.
+
+ Returns
+ -------
+ str
+ Source description, or ``None`` if unavailable.
+ """
location = entry.get("__location__")
if isinstance(location, tuple) and len(location) == 3:
source, line, column = location
@@ -799,11 +1042,39 @@ def _describe_entry_source(self, entry: dict[str, Any], fallback_source: str) ->
return f"source '{fallback_source}'"
def _coerce_path(self, payload) -> str:
+ """
+ Convert a path-like value to an absolute configuration path.
+
+ Parameters
+ ----------
+ payload : object
+ Path value to convert.
+
+ Returns
+ -------
+ str
+ Resolved path.
+ """
if isinstance(payload, (str, os.PathLike)):
return os.fspath(payload)
raise PyAMLConfigException(f"Cannot infer configuration source from payload of type '{type(payload).__name__}'.")
def _extend_unique(self, target: list[str], values) -> None:
+ """
+ Append values that are not already present.
+
+ Parameters
+ ----------
+ target : list[str]
+ Destination sequence.
+ values : object
+ Values to append while preserving order.
+
+ Returns
+ -------
+ None
+ This method updates the destination sequence in place.
+ """
for value in values:
if value not in target:
target.append(value)
diff --git a/pyaml/configuration/restfetcher.py b/pyaml/configuration/restfetcher.py
index ea80b58e7..96a754502 100644
--- a/pyaml/configuration/restfetcher.py
+++ b/pyaml/configuration/restfetcher.py
@@ -1,5 +1,8 @@
"""
-HTTP configuration fetch helpers.
+Fetch and expand configuration documents from HTTP(S) sources.
+
+The helpers in this module download YAML or JSON documents, resolve relative
+remote includes, expand path references, and detect circular inclusions.
"""
import io
@@ -15,30 +18,89 @@
from yaml import CLoader
from ..common.exception import PyAMLConfigException
-from .fileloader import FILE_PREFIX, SafeLineLoader, accepted_suffixes
+from .fileloader import ACCEPTED_SUFFIXES, SafeLineLoader
REMOTE_BASE_URL_KEY = "__baseurl__"
SourceRoot = Path | str | None
_REMOTE_SCHEMES = {"http", "https"}
+FILE_PREFIX = "${path:"
+
class _NamedStringIO(io.StringIO):
+ """
+ In-memory text stream that preserves a source name for YAML errors.
+
+ Parameters
+ ----------
+ value : str
+ Text content exposed by the stream.
+ name : str
+ Source name retained for parser diagnostics.
+ """
+
def __init__(self, value: str, name: str):
+ """
+ Initialize the _NamedStringIO.
+ """
super().__init__(value)
self.name = name
def is_remote_url(value: str) -> bool:
+ """
+ Return whether a string uses the HTTP or HTTPS URL scheme.
+
+ Parameters
+ ----------
+ value : str
+ Value to inspect.
+
+ Returns
+ -------
+ bool
+ ``True`` for HTTP(S) URLs; otherwise ``False``.
+ """
return urlparse(value).scheme in _REMOTE_SCHEMES
-def fetch_remote_config(url: str, *, use_fast_loader: bool = False) -> tuple[dict[str, Any] | list[Any], str]:
+def fetch_remote_config(url: str, *, include_locations: bool = True) -> tuple[dict[str, Any] | list[Any], str]:
+ """
+ Fetch, parse, and expand a remote configuration document.
+
+ Parameters
+ ----------
+ url : str
+ HTTP(S) URL of the YAML or JSON document.
+ include_locations : bool
+ Preserve source locations in YAML mappings when ``True``.
+
+ Returns
+ -------
+ tuple[dict[str, Any] | list[Any], str]
+ Expanded document and its base URL for resolving relative includes.
+ """
normalized_url = _normalize_remote_url(url)
- expanded = _load_remote_document(normalized_url, use_fast_loader=use_fast_loader, stack=[])
+ expanded = _load_remote_document(normalized_url, include_locations=include_locations, stack=[])
return expanded, _remote_base_url(normalized_url)
def resolve_reference(reference: str, source_root: SourceRoot) -> str:
+ """
+ Resolve a local or remote configuration reference.
+
+ Parameters
+ ----------
+ reference : str
+ Path or URL reference to resolve.
+ source_root : SourceRoot
+ Local directory or remote base URL used for relative references.
+
+ Returns
+ -------
+ str
+ Absolute local path, resolved remote URL, or unchanged reference.
+ """
if is_remote_url(reference) or os.path.isabs(reference):
return reference
@@ -52,6 +114,19 @@ def resolve_reference(reference: str, source_root: SourceRoot) -> str:
def _normalize_remote_url(url: str) -> str:
+ """
+ Validate that a configuration source is an HTTP(S) URL.
+
+ Parameters
+ ----------
+ url : str
+ URL to validate.
+
+ Returns
+ -------
+ str
+ The validated URL.
+ """
parsed = urlparse(url)
if parsed.scheme not in _REMOTE_SCHEMES:
raise PyAMLConfigException(f"Unsupported remote configuration source '{url}'.")
@@ -61,18 +136,48 @@ def _normalize_remote_url(url: str) -> str:
def _load_remote_document(
url: str,
*,
- use_fast_loader: bool,
+ include_locations: bool,
stack: list[str],
) -> dict[str, Any] | list[Any]:
+ """
+ Download, parse, and recursively expand one remote document.
+
+ Parameters
+ ----------
+ url : str
+ URL of the document to load.
+ include_locations : bool
+ Preserve YAML source locations when ``True``.
+ stack : list[str]
+ URLs currently being loaded, used for cycle detection.
+
+ Returns
+ -------
+ dict[str, Any] | list[Any]
+ Parsed and recursively expanded document.
+ """
if url in stack:
raise PyAMLConfigException(f"Circular remote configuration inclusion detected for '{url}'.")
payload, content_type = _download_text(url)
- document = _parse_remote_document(url, payload, content_type, use_fast_loader=use_fast_loader)
- return _expand_remote_value(document, _remote_base_url(url), stack + [url], use_fast_loader=use_fast_loader)
+ document = _parse_remote_document(url, payload, content_type, include_locations=include_locations)
+ return _expand_remote_value(document, _remote_base_url(url), stack + [url], include_locations=include_locations)
def _download_text(url: str) -> tuple[str, str]:
+ """
+ Download a remote document and return its text and media type.
+
+ Parameters
+ ----------
+ url : str
+ HTTP(S) URL to request.
+
+ Returns
+ -------
+ tuple[str, str]
+ Document text and response content type.
+ """
opener = build_opener(ProxyHandler({}))
try:
with opener.open(url, timeout=10) as response:
@@ -93,8 +198,27 @@ def _parse_remote_document(
payload: str,
content_type: str,
*,
- use_fast_loader: bool,
+ include_locations: bool,
) -> dict[str, Any] | list[Any]:
+ """
+ Parse downloaded JSON or YAML text into Python objects.
+
+ Parameters
+ ----------
+ url : str
+ Source URL, used for format detection and error messages.
+ payload : str
+ Downloaded document text.
+ content_type : str
+ HTTP response media type.
+ include_locations : bool
+ Preserve source locations in YAML mappings when ``True``.
+
+ Returns
+ -------
+ dict[str, Any] | list[Any]
+ Parsed mapping or sequence.
+ """
suffix = Path(urlparse(url).path).suffix.lower()
if content_type == "application/json" or suffix == ".json":
@@ -103,7 +227,7 @@ def _parse_remote_document(
except json.JSONDecodeError as ex:
raise PyAMLConfigException(f"{url}: {ex}") from ex
- loader = CLoader if use_fast_loader else SafeLineLoader
+ loader = CLoader if not include_locations else SafeLineLoader
try:
stream = _NamedStringIO(payload, url)
return yaml.load(stream, Loader=loader)
@@ -111,11 +235,25 @@ def _parse_remote_document(
raise PyAMLConfigException(f"{url}: {ex}") from ex
-def _expand_remote_value(value, base_url: str, stack: list[str], *, use_fast_loader: bool):
+def _expand_remote_value(value, base_url: str, stack: list[str], *, include_locations: bool):
+ """
+ Recursively expand references in a remote configuration value.
+
+ Parameters
+ ----------
+ value : object
+ Value to expand.
+ base_url : str
+ Base URL for relative references.
+ stack : list[str]
+ Active remote include chain.
+ include_locations : bool
+ Preserve YAML source locations when ``True``.
+ """
if isinstance(value, dict):
- return _expand_remote_dict(value, base_url, stack, use_fast_loader=use_fast_loader)
+ return _expand_remote_dict(value, base_url, stack, include_locations=include_locations)
if isinstance(value, list):
- return _expand_remote_list(value, base_url, stack, use_fast_loader=use_fast_loader)
+ return _expand_remote_list(value, base_url, stack, include_locations=include_locations)
return value
@@ -124,14 +262,33 @@ def _expand_remote_dict(
base_url: str,
stack: list[str],
*,
- use_fast_loader: bool,
+ include_locations: bool,
) -> dict[str, Any]:
+ """
+ Expand file and document references within a remote mapping.
+
+ Parameters
+ ----------
+ values : dict[str, Any]
+ Mapping whose values should be expanded in place.
+ base_url : str
+ Base URL for relative references.
+ stack : list[str]
+ Active remote include chain.
+ include_locations : bool
+ Preserve YAML source locations when ``True``.
+
+ Returns
+ -------
+ dict[str, Any]
+ The expanded mapping.
+ """
values.setdefault(REMOTE_BASE_URL_KEY, base_url)
for key, value in list(values.items()):
if _is_config_reference(value):
values[key] = _load_remote_document(
_resolve_remote_config_reference(value, base_url),
- use_fast_loader=use_fast_loader,
+ include_locations=include_locations,
stack=stack,
)
continue
@@ -140,18 +297,37 @@ def _expand_remote_dict(
values[key] = resolve_reference(value[len(FILE_PREFIX) :], base_url)
continue
- values[key] = _expand_remote_value(value, base_url, stack, use_fast_loader=use_fast_loader)
+ values[key] = _expand_remote_value(value, base_url, stack, include_locations=include_locations)
return values
-def _expand_remote_list(values: list[Any], base_url: str, stack: list[str], *, use_fast_loader: bool) -> list[Any]:
+def _expand_remote_list(values: list[Any], base_url: str, stack: list[str], *, include_locations: bool) -> list[Any]:
+ """
+ Expand file and document references within a remote list.
+
+ Parameters
+ ----------
+ values : list[Any]
+ List whose elements should be expanded in place.
+ base_url : str
+ Base URL for relative references.
+ stack : list[str]
+ Active remote include chain.
+ include_locations : bool
+ Preserve YAML source locations when ``True``.
+
+ Returns
+ -------
+ list[Any]
+ The expanded list.
+ """
index = 0
while index < len(values):
value = values[index]
if _is_config_reference(value):
expanded = _load_remote_document(
_resolve_remote_config_reference(value, base_url),
- use_fast_loader=use_fast_loader,
+ include_locations=include_locations,
stack=stack,
)
if isinstance(expanded, list):
@@ -167,12 +343,25 @@ def _expand_remote_list(values: list[Any], base_url: str, stack: list[str], *, u
index += 1
continue
- values[index] = _expand_remote_value(value, base_url, stack, use_fast_loader=use_fast_loader)
+ values[index] = _expand_remote_value(value, base_url, stack, include_locations=include_locations)
index += 1
return values
def _is_config_reference(value: Any) -> bool:
+ """
+ Return whether a value names a supported configuration document.
+
+ Parameters
+ ----------
+ value : Any
+ Value to inspect.
+
+ Returns
+ -------
+ bool
+ ``True`` for a YAML, JSON, or supported remote document reference.
+ """
if not isinstance(value, str):
return False
@@ -181,14 +370,42 @@ def _is_config_reference(value: Any) -> bool:
parsed = urlparse(value)
path = parsed.path if parsed.scheme in _REMOTE_SCHEMES else value
- return any(path.endswith(suffix) for suffix in accepted_suffixes)
+ return any(path.endswith(suffix) for suffix in ACCEPTED_SUFFIXES)
def _resolve_remote_config_reference(reference: str, base_url: str) -> str:
+ """
+ Resolve a remote include against its containing document URL.
+
+ Parameters
+ ----------
+ reference : str
+ Relative or absolute document reference.
+ base_url : str
+ Base URL of the containing document.
+
+ Returns
+ -------
+ str
+ Absolute URL of the referenced document.
+ """
if is_remote_url(reference):
return reference
return urljoin(base_url, reference)
def _remote_base_url(url: str) -> str:
+ """
+ Return the directory-like base URL for a remote document.
+
+ Parameters
+ ----------
+ url : str
+ Remote document URL.
+
+ Returns
+ -------
+ str
+ Base URL used to resolve relative references.
+ """
return urljoin(url, ".")
diff --git a/pyaml/configuration/unbound_element.py b/pyaml/configuration/unbound_element.py
index 244d74ae4..1e1c58d9a 100644
--- a/pyaml/configuration/unbound_element.py
+++ b/pyaml/configuration/unbound_element.py
@@ -1,26 +1,46 @@
+"""
+Deferred construction of control-system-specific elements.
+
+An :class:`UnboundElement` stores a class, validated configuration, and the
+control modes in which it is available until an :class:`ElementHolder` is
+known and the concrete element can be instantiated.
+"""
+
+from typing import TYPE_CHECKING
+
from pydantic import BaseModel
from ..common.element import Element
+from ..common.exception import PyAMLConfigException
+
+if TYPE_CHECKING:
+ from ..common.holders.element_holder import ElementHolder
class UnboundElement(Element):
"""
- Class that holds a configuration for an element created on the fly when ElementHolder is filled
+ Store configuration for an element instantiated when a holder is filled.
+
+ Parameters
+ ----------
+ element_class : type
+ Concrete element class to instantiate.
+ module_name : str
+ Module path used to identify the element in error messages.
+ modes : list of str
+ Control-system modes in which the element should be created.
+ config : pydantic.BaseModel
+ Validated configuration passed to the element constructor.
+
+ Methods
+ -------
+ instantiate(holder)
+ Instantiate the element represented by this UnboundElement.
"""
def __init__(self, element_class, module_name: str, modes: list[str], config: BaseModel):
"""
- Construct an External element
- Parameters
- ----------
- element_class : class
- Element class
- module_name : str
- Element module
- control_modes: list[str]
- List of control modes to add the element to
- config: BaseModel
- Element configuration
+ Initialize a deferred element configuration.
"""
super().__init__(config.name)
self._class = element_class
@@ -29,9 +49,53 @@ def __init__(self, element_class, module_name: str, modes: list[str], config: Ba
self._config = config
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return "%s(name='%s', class_name='%s', module_name=%s)" % (
self.__class__.__name__,
self.get_name(),
self._class.__name__,
self._module_name,
)
+
+ def _fill_device(self, holder: "ElementHolder") -> None:
+ holder._fill_unbound_element(self)
+
+ def instantiate(self, holder) -> Element:
+ """
+ Instantiate the element represented by this UnboundElement.
+
+ The element is constructed using the stored configuration and
+ attached to the given ElementHolder. The returned element is
+ linked back to the holder through its ``_peer`` attribute.
+
+ Parameters
+ ----------
+ holder : ElementHolder
+ Holder that owns the instantiated element.
+
+ Returns
+ -------
+ Element
+ Instantiated element attached to the given holder.
+
+ Raises
+ ------
+ PyAMLConfigException
+ If the element cannot be instantiated or if the resulting
+ object is not a subclass of Element.
+ """
+
+ cls = self._class
+
+ try:
+ obj = cls(holder, self._config)
+ except Exception as exc:
+ raise PyAMLConfigException(f"{exc} when creating '{self._module_name}.{cls.__name__}'") from exc
+
+ if not isinstance(obj, Element):
+ raise PyAMLConfigException(f"'{self._module_name}.{cls.__name__}' is not a subclass of Element")
+
+ obj._peer = holder
+ return obj
diff --git a/pyaml/control/abstract_impl.py b/pyaml/control/abstract_impl.py
index 95a280847..077a819dd 100644
--- a/pyaml/control/abstract_impl.py
+++ b/pyaml/control/abstract_impl.py
@@ -1,3 +1,11 @@
+"""
+Control-system implementations of PyAML read/write interfaces.
+
+The classes in this module adapt control-system devices to PyAML scalar and
+array interfaces, including conversions between hardware values, magnet
+strengths, BPM readings, and RF quantities.
+"""
+
from typing import Any
import numpy as np
@@ -5,7 +13,6 @@
from numpy.typing import NDArray
from .. import PyAMLException
-from ..bpm.bpm_model import BPMModel
from ..common import abstract
from ..common.abstract_aggregator import ScalarAggregator
from ..control.deviceaccess import DeviceAccess
@@ -80,7 +87,19 @@ def check_range(values: Any, dev_range: Any) -> bool:
def _as_1d_float_array(values: Any) -> np.ndarray:
- """Normalize input values to a 1D float NumPy array."""
+ """
+ Convert scalar or array-like values to a one-dimensional float array.
+
+ Parameters
+ ----------
+ values : object
+ Scalar or array-like values to normalize.
+
+ Returns
+ -------
+ numpy.ndarray
+ One-dimensional array with ``float`` dtype.
+ """
v = np.asarray(values, dtype=float)
if v.ndim == 0:
return v.reshape(1)
@@ -89,28 +108,38 @@ def _as_1d_float_array(values: Any) -> np.ndarray:
def _iter_devices_and_ranges(devs: DeviceAccess | DeviceAccessList):
"""
- Yield tuples (device, [min, max]) for each underlying device.
+ Return each device together with its inclusive hardware range.
Works for:
- DeviceAccess: yields 1 item
- DeviceAccessList: yields N items based on get_devices() and get_range() flattening
+
+ Parameters
+ ----------
+ devs : DeviceAccess or DeviceAccessList
+ Device or device collection whose ranges should be inspected.
+
+ Returns
+ -------
+ list of tuple
+ Pairs containing a device and its ``[minimum, maximum]`` range.
"""
# Single device
- if hasattr(devs, "get") and hasattr(devs, "get_range") and not hasattr(devs, "get_devices"):
+ if isinstance(devs, DeviceAccess):
r = devs.get_range()
if r is None:
r = [None, None]
return [(devs, [r[0], r[1]])]
- # Device list (expects get_devices() + get_range() flat list)
- devices = devs.get_devices()
- flat = np.asarray(devs.get_range(), dtype=object).ravel()
- if (flat.size % 2) != 0:
+ # get_range() return a flat list
+ flat = devs.get_range()
+ if (len(flat) % 2) != 0:
raise ValueError(f"dev_range must have an even length, got {flat.size}")
+ # Reshape
pairs = []
- for i, d in enumerate(devices):
- pairs.append((d, [flat[2 * i], flat[2 * i + 1]]))
+ for i, dev in enumerate(devs):
+ pairs.append((dev, [flat[2 * i], flat[2 * i + 1]]))
return pairs
@@ -172,32 +201,94 @@ def format_out_of_range_message(
class CSScalarAggregator(ScalarAggregator):
"""
- Basic control system aggregator for a list of scalar values
+ Aggregate scalar control-system devices into one PyAML interface.
+
+ Parameters
+ ----------
+ devs : DeviceAccessList
+ Devices managed by the aggregator.
+
+ Methods
+ -------
+ add_devices(devices)
+ Add one or more devices to the scalar aggregator.
+ set(value)
+ Write scalar values to the managed control-system devices.
+ set_and_wait(value)
+ Set values and wait for readback confirmation.
+ get()
+ Read the current values from all managed devices.
+ readback()
+ Read the last available values from all managed devices.
+ unit()
+ Return the unit reported by the managed devices.
+ nb_device()
+ Return the number of managed devices.
"""
def __init__(self, devs: DeviceAccessList):
+ """
+ Initialize the CSScalarAggregator.
+ """
self._devs = devs
def add_devices(self, devices: DeviceAccess | list[DeviceAccess]):
+ """
+ Add one or more devices to the scalar aggregator.
+
+ Parameters
+ ----------
+ devices : DeviceAccess | list[DeviceAccess]
+ Control-system device or devices to manage.
+ """
self._devs.add_devices(devices)
def set(self, value: NDArray[np.float64]):
+ """
+ Write scalar values to the managed control-system devices.
+
+ Parameters
+ ----------
+ value : NDArray[np.float64]
+ Values to write, in the same order as the managed devices.
+ """
self._devs.set(value)
def set_and_wait(self, value: NDArray[np.float64]):
+ """
+ Set values and wait for readback confirmation.
+
+ This control-system implementation does not currently support
+ waiting for device readback and raises :class:`NotImplementedError`.
+
+ Parameters
+ ----------
+ value : NDArray[np.float64]
+ Values that would be written to the managed devices.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous setpoint confirmation is not
+ implemented.
+ """
self._devs.set_and_wait(value)
def get(self) -> NDArray[np.float64]:
+ """Read the current values from all managed devices."""
return self._devs.get()
def readback(self) -> np.array:
+ """Read the last available values from all managed devices."""
return self._devs.readback()
def unit(self) -> str:
+ """Return the unit reported by the managed devices."""
return self._devs.unit()
def nb_device(self) -> int:
- return self._devs.__len__()
+ """Return the number of managed devices."""
+ return self._devs.len()
# ------------------------------------------------------------------------------
@@ -205,14 +296,37 @@ def nb_device(self) -> int:
class CSStrengthScalarAggregator(CSScalarAggregator):
"""
- Control system aggregator for a list of magnet strengths.
- This aggregator is in charge of computing hardware setpoints
- and applying them without overlap.
- When virtual magnets exported from combined function mangets are present (RWMapper),
- the aggregator prevents to apply several times the same power supply setpoint.
+ Aggregate magnet strengths while avoiding duplicate hardware writes.
+
+ Magnet models convert between exposed strengths and hardware setpoints.
+ Shared models, such as those used by virtual magnets from combined-function
+ magnets, are written only once per underlying power supply.
+
+ Parameters
+ ----------
+ peer : CSScalarAggregator
+ Scalar device aggregator containing the hardware devices.
+
+ Methods
+ -------
+ add_magnet(magnet, devs)
+ Register a magnet and its hardware devices with the aggregator.
+ set(value)
+ Convert strengths to hardware values and write the setpoints.
+ set_and_wait(value)
+ Set magnet strengths and wait for hardware readback.
+ get()
+ Read the current values from the underlying devices.
+ readback()
+ Read back magnet strengths from measured hardware values.
+ unit()
+ Return the units associated with the underlying devices.
"""
def __init__(self, peer: CSScalarAggregator):
+ """
+ Initialize the CSStrengthScalarAggregator.
+ """
CSScalarAggregator.__init__(self, peer._devs)
self.__models: list[MagnetModel] = [] # List of magnet model
self.__modelToMagnet: list[list[tuple[int, int]]] = [] # strengths indexing
@@ -223,6 +337,16 @@ def add_magnet(self, magnet: Magnet, devs: list[DeviceAccess]):
# a CombinedFunctionMagnet or simple magnet.
# All magnets exported from a same CombinedFunctionMagnet share the same model
# TODO: check that strength is supported (m.strength may be None)
+ """
+ Register a magnet and its hardware devices with the aggregator.
+
+ Parameters
+ ----------
+ magnet : Magnet
+ Magnet whose strength is being aggregated.
+ devs : list[DeviceAccess]
+ Hardware devices associated with the magnet model.
+ """
strengthIndex = magnet.strength.index() if isinstance(magnet.strength, abstract.RWMapper) else 0
if magnet.model not in self.__models:
index = len(self.__models)
@@ -235,11 +359,19 @@ def add_magnet(self, magnet: Magnet, devs: list[DeviceAccess]):
self.__nbMagnet += 1
def set(self, value: NDArray[np.float64]):
+ """
+ Convert strengths to hardware values and write the setpoints.
+
+ Parameters
+ ----------
+ value : NDArray[np.float64]
+ Magnet strengths, ordered according to the registered magnets.
+ """
allHardwareValues = self._devs.get() # Read all hardware setpoints
newHardwareValues = np.zeros(self.nb_device())
hardwareIndex = 0
for modelIndex, model in enumerate(self.__models):
- nbDev = len(model.get_devices())
+ nbDev = len(model.get_device_names())
mStrengths = model.compute_strengths(allHardwareValues[hardwareIndex : hardwareIndex + nbDev])
for valueIdx, strengthIdx in self.__modelToMagnet[modelIndex]:
mStrengths[strengthIdx] = value[valueIdx]
@@ -251,14 +383,30 @@ def set(self, value: NDArray[np.float64]):
self._devs.set(newHardwareValues)
def set_and_wait(self, value: NDArray[np.float64]):
+ """
+ Set magnet strengths and wait for hardware readback.
+
+ Waiting for readback is not implemented by this aggregator.
+
+ Parameters
+ ----------
+ value : NDArray[np.float64]
+ Magnet strengths to convert and write.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
def get(self) -> NDArray[np.float64]:
+ """Read the current values from the underlying devices."""
allHardwareValues = self._devs.get() # Read all hardware setpoints
allStrength = np.zeros(self.__nbMagnet)
hardwareIndex = 0
for modelIndex, model in enumerate(self.__models):
- nbDev = len(model.get_devices())
+ nbDev = len(model.get_device_names())
mStrengths = model.compute_strengths(allHardwareValues[hardwareIndex : hardwareIndex + nbDev])
for valueIdx, strengthIdx in self.__modelToMagnet[modelIndex]:
allStrength[valueIdx] = mStrengths[strengthIdx]
@@ -266,11 +414,19 @@ def get(self) -> NDArray[np.float64]:
return allStrength
def readback(self) -> np.array:
+ """
+ Read back magnet strengths from measured hardware values.
+
+ Returns
+ -------
+ numpy.ndarray
+ Magnet strengths corresponding to the latest device readbacks.
+ """
allHardwareValues = self._devs.readback() # Read all hardware readback
allStrength = np.zeros(self.__nbMagnet)
hardwareIndex = 0
for modelIndex, model in enumerate(self.__models):
- nbDev = len(model.get_devices())
+ nbDev = len(model.get_device_names())
mStrengths = model.compute_strengths(allHardwareValues[hardwareIndex : hardwareIndex + nbDev])
for valueIdx, strengthIdx in self.__modelToMagnet[modelIndex]:
allStrength[valueIdx] = mStrengths[strengthIdx]
@@ -278,74 +434,100 @@ def readback(self) -> np.array:
return allStrength
def unit(self) -> str:
+ """Return the units associated with the underlying devices."""
return self._devs.unit()
# ------------------------------------------------------------------------------
-class CSBPMArrayMapper(CSScalarAggregator):
- """
- Wrapper to a native CS aggregator for BPM
- """
-
- def __init__(self, devs: list[DeviceAccess], indices: list[list[int]]):
- self._indices = indices
- self._devs = devs
-
- def set(self, value: NDArray[np.float64]):
- raise Exception("BPM are not writable")
-
- def get(self) -> NDArray[np.float64]:
- if len(self._devs) == 1:
- v = self._devs[0].get()
- return v[self._indices[0]]
- else:
- # TODO read using DeviceAccessList
- v0 = self._devs[0].get()[self._indices[0]]
- v1 = self._devs[1].get()[self._indices[1]]
- # Interleave
- xy = np.zeros(v0.size + v1.size)
- xy[0::2] = v0
- xy[1::2] = v1
- return xy
-
- def readback(self) -> np.array:
- return self.get()
-
- def unit(self) -> str:
- return self._dev.unit()
-
-
# ------------------------------------------------------------------------------
class RWHardwareScalar(abstract.ReadWriteFloatScalar):
"""
- Class providing read write access to a magnet
- of a control system (in hardware units)
+ Expose one magnet hardware setpoint as a readable/writable scalar.
+
+ Parameters
+ ----------
+ model : MagnetModel
+ Magnet model used to determine the hardware unit.
+ dev : DeviceAccess
+ Control-system device holding the hardware setpoint.
+
+ Methods
+ -------
+ get()
+ Return the current hardware setpoint.
+ set(value)
+ Validate and write a magnet hardware setpoint.
+ set_and_wait(value)
+ Set the hardware value and wait for readback confirmation.
+ unit()
+ Return the hardware unit defined by the magnet model.
+ set_magnet_rigidity(brho)
+ Set the beam rigidity used by the magnet model.
"""
def __init__(self, model: MagnetModel, dev: DeviceAccess):
+ """
+ Initialize the RWHardwareScalar.
+ """
self.__model = model
self.__dev = dev
def get(self) -> float:
+ """Return the current hardware setpoint."""
return self.__dev.get()
def set(self, value: float):
+ """
+ Validate and write a magnet hardware setpoint.
+
+ Parameters
+ ----------
+ value : float
+ Hardware value to write to the control-system device.
+
+ Raises
+ ------
+ PyAMLException
+ If ``value`` is outside the device's configured range.
+ """
dev_range = self.__dev.get_range()
if not check_range(value, dev_range):
raise PyAMLException(format_out_of_range_message(value, self.__dev))
self.__dev.set(value)
def set_and_wait(self, value: double):
+ """
+ Set the hardware value and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : double
+ Hardware value to write.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
+ """Return the hardware unit defined by the magnet model."""
return self.__model.get_hardware_units()[0]
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the beam rigidity used by the magnet model.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres.
+ """
self.__model.set_magnet_rigidity(brho)
@@ -354,20 +536,58 @@ def set_magnet_rigidity(self, brho: np.double):
class RWStrengthScalar(abstract.ReadWriteFloatScalar):
"""
- Class providing read write access to a strength of a control system
+ Expose one magnet strength with hardware-value conversion.
+
+ Parameters
+ ----------
+ model : MagnetModel
+ Magnet model used for strength conversion and units.
+ dev : DeviceAccess
+ Control-system device holding the corresponding hardware value.
+
+ Methods
+ -------
+ get()
+ Read the hardware value and convert it to magnet strength.
+ set(value)
+ Convert and write a magnet strength setpoint.
+ set_and_wait(value)
+ Set a magnet strength and wait for readback confirmation.
+ unit()
+ Return the strength unit defined by the magnet model.
+ set_magnet_rigidity(brho)
+ Set the beam rigidity used by the magnet model.
"""
def __init__(self, model: MagnetModel, dev: DeviceAccess):
+ """
+ Initialize the RWStrengthScalar.
+ """
self.__model = model
self.__dev = dev
# Gets the value
def get(self) -> float:
+ """Read the hardware value and convert it to magnet strength."""
current = self.__dev.get()
return self.__model.compute_strengths([current])[0]
# Sets the value
def set(self, value: float):
+ """
+ Convert and write a magnet strength setpoint.
+
+ Parameters
+ ----------
+ value : float
+ Magnet strength to convert to hardware units and write.
+
+ Raises
+ ------
+ PyAMLException
+ If the converted hardware value is outside the device's
+ configured range.
+ """
current = self.__model.compute_hardware_values([value])[0]
dev_range = self.__dev.get_range()
if not check_range(current, dev_range):
@@ -376,13 +596,35 @@ def set(self, value: float):
# Sets the value and wait that the read value reach the setpoint
def set_and_wait(self, value: float):
+ """
+ Set a magnet strength and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : float
+ Magnet strength to convert and write.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> str:
+ """Return the strength unit defined by the magnet model."""
return self.__model.get_strength_units()[0]
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the beam rigidity used by the magnet model.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres.
+ """
self.__model.set_magnet_rigidity(brho)
@@ -391,20 +633,54 @@ def set_magnet_rigidity(self, brho: np.double):
class RWHardwareArray(abstract.ReadWriteFloatArray):
"""
- Class providing read write access to a magnet array
- of a control system (in hardware units)
+ Expose multiple magnet hardware setpoints as an array interface.
+
+ Parameters
+ ----------
+ model : MagnetModel
+ Magnet model defining the hardware units.
+ devs : list[DeviceAccess]
+ Control-system devices holding the hardware setpoints.
+
+ Methods
+ -------
+ get()
+ Return the current hardware values in device order.
+ set(value)
+ Validate and write hardware values for all devices.
+ set_and_wait(value)
+ Set hardware values and wait for readback confirmation.
+ unit()
+ Return the hardware units defined by the magnet model.
"""
def __init__(self, model: MagnetModel, devs: list[DeviceAccess]):
+ """
+ Initialize the RWHardwareArray.
+ """
self.__model = model
self.__devs = devs
# Gets the value
def get(self) -> np.array:
+ """Return the current hardware values in device order."""
return np.array([p.get() for p in self.__devs])
# Sets the value
def set(self, value: np.array):
+ """
+ Validate and write hardware values for all devices.
+
+ Parameters
+ ----------
+ value : np.array
+ Hardware values ordered to match ``self.__devs``.
+
+ Raises
+ ------
+ PyAMLException
+ If any value is outside its device's configured range.
+ """
for idx, p in enumerate(self.__devs):
dev_range = p.get_range()
if not check_range(value[idx], dev_range):
@@ -413,10 +689,24 @@ def set(self, value: np.array):
# Sets the value and waits that the read value reach the setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set hardware values and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : np.array
+ Hardware values to write in device order.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> list[str]:
+ """Return the hardware units defined by the magnet model."""
return self.__model.get_hardware_units()
@@ -425,21 +715,51 @@ def unit(self) -> list[str]:
class RWStrengthArray(abstract.ReadWriteFloatArray):
"""
- Class providing read write access to magnet strengths of a control system
+ Expose multiple magnet strengths with hardware-value conversion.
+
+ Parameters
+ ----------
+ model : MagnetModel
+ Magnet model used for strength conversion and units.
+ devs : list[DeviceAccess]
+ Control-system devices corresponding to the model's hardware values.
+
+ Methods
+ -------
+ get()
+ Read hardware values and convert them to magnet strengths.
+ set(value)
+ Convert strengths to hardware values and write the setpoints.
+ set_and_wait(value)
+ Set magnet strengths and wait for readback confirmation.
+ unit()
+ Return the strength units defined by the magnet model.
"""
def __init__(self, model: MagnetModel, devs: list[DeviceAccess]):
+ """
+ Initialize the RWStrengthArray.
+ """
self.__model = model
self.__devs = devs
# Gets the value
def get(self) -> np.array:
+ """Read hardware values and convert them to magnet strengths."""
r = np.array([p.get() for p in self.__devs])
str = self.__model.compute_strengths(r)
return str
# Sets the value
def set(self, value: np.array):
+ """
+ Convert strengths to hardware values and write the setpoints.
+
+ Parameters
+ ----------
+ value : np.array
+ Magnet strengths ordered to match ``self.__devs``.
+ """
cur = self.__model.compute_hardware_values(value)
for idx, p in enumerate(self.__devs):
dev_range = p.get_range()
@@ -451,10 +771,24 @@ def set(self, value: np.array):
# Sets the value and waits that the read value reach the setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set magnet strengths and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : np.array
+ Magnet strengths to convert and write.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> list[str]:
+ """Return the strength units defined by the magnet model."""
return self.__model.get_strength_units()
@@ -463,35 +797,39 @@ def unit(self) -> list[str]:
class RBpmArray(abstract.ReadFloatArray):
"""
- Class providing read access to a BPM position [x,y] of a control system
+ Expose horizontal and vertical BPM positions as an array.
+
+ Parameters
+ ----------
+ hDev : DeviceAccess
+ Device providing the horizontal BPM position.
+ vDev : DeviceAccess
+ Device providing the vertical BPM position.
+
+ Methods
+ -------
+ get()
+ Return horizontal and vertical BPM positions.
+ unit()
+ Return the unit reported by the BPM device.
"""
- def __init__(self, model: BPMModel, hDev: DeviceAccess, vDev: DeviceAccess):
- self._model = model
+ def __init__(self, hDev: DeviceAccess, vDev: DeviceAccess):
+ """
+ Initialize the RBpmArray.
+ """
self._hDev = hDev
self._vDev = vDev
- self._hIdx = self._model.x_pos_index()
- self._vIdx = self._model.y_pos_index()
- # Gets the values
def get(self) -> np.array:
- if self._hDev != self._vDev:
- allhVal = self._hDev.get()
- allvVal = self._vDev.get()
- hVal = allhVal if self._hIdx is None else allhVal[self._hIdx]
- vVal = allvVal if self._vIdx is None else allvVal[self._vIdx]
- else:
- # When h and v devices are identical, indexed
- # values are expected
- allVal = self._hDev.get()
- hVal = allVal[self._hIdx]
- vVal = allVal[self._vIdx]
- return np.array([hVal, vVal])
+ """Return horizontal and vertical BPM positions."""
+ return np.array([self._hDev.get(), self._vDev.get()])
# Gets the unit of the value Assume that x and y, offsets and positions
# have the same unit
def unit(self) -> str:
- return self._model.get_pos_devices()[0].unit()
+ """Return the unit reported by the BPM device."""
+ return self._hDev.unit()
# ------------------------------------------------------------------------------
@@ -500,30 +838,65 @@ def unit(self) -> str:
class RWBpmTiltScalar(abstract.ReadFloatScalar):
"""
Class providing read access to a BPM tilt of a control system
+
+ Parameters
+ ----------
+ dev : DeviceAccess
+ Device handle giving access to the BPM tilt attribute.
+
+ Methods
+ -------
+ get()
+ Return horizontal and vertical BPM positions.
+ set(value)
+ Write the BPM tilt value to the control-system device.
+ set_and_wait(value)
+ Set the BPM tilt and wait for readback confirmation.
+ unit()
+ Return the unit shared by the BPM devices.
"""
- def __init__(self, model: BPMModel, dev: DeviceAccess):
- self._model = model
+ def __init__(self, dev: DeviceAccess):
+ """
+ Initialize the RWBpmTiltScalar.
+ """
self._dev = dev
- self._idx = model.tilt_index()
- # Gets the value
def get(self) -> float:
- allTilt = self._dev.get()
- if self._idx is not None:
- return allTilt[self._idx]
- else:
- return allTilt
+ """Return horizontal and vertical BPM positions."""
+ return self._dev.get()
def set(self, value: float):
+ """
+ Write the BPM tilt value to the control-system device.
+
+ Parameters
+ ----------
+ value : float
+ BPM tilt value in the device's configured units.
+ """
self._dev.set(value)
def set_and_wait(self, value: NDArray[np.float64]):
+ """
+ Set the BPM tilt and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : NDArray[np.float64]
+ BPM tilt value to write.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> str:
- return self._model.get_tilt_device().unit()
+ """Return the unit shared by the BPM devices."""
+ return self._dev.unit()
# ------------------------------------------------------------------------------
@@ -531,51 +904,71 @@ def unit(self) -> str:
class RWBpmOffsetArray(abstract.ReadWriteFloatArray):
"""
- Class providing read write access to a BPM offset [x,y] of a control system
+ Expose horizontal and vertical BPM offsets as a writable array.
+
+ Parameters
+ ----------
+ hDev : DeviceAccess
+ Device handle for the horizontal BPM offset.
+ vDev : DeviceAccess
+ Device handle for the vertical BPM offset.
+
+ Methods
+ -------
+ get()
+ Return horizontal and vertical BPM offsets.
+ set(value)
+ Write horizontal and vertical BPM offsets.
+ set_and_wait(value)
+ Set BPM offsets and wait for readback confirmation.
+ unit()
+ Return the unit shared by the BPM offset devices.
"""
- def __init__(self, model: BPMModel, hDev: DeviceAccess, vDev: DeviceAccess):
- self._model = model
+ def __init__(self, hDev: DeviceAccess, vDev: DeviceAccess):
+ """
+ Initialize the RWBpmOffsetArray.
+ """
self._hDev = hDev
self._vDev = vDev
- self._hIdx = self._model.x_pos_index()
- self._vIdx = self._model.y_pos_index()
- # Gets the values
def get(self) -> np.array:
- if self._hDev != self._vDev:
- allhVal = self._hDev.get()
- allvVal = self._vDev.get()
- hVal = allhVal if self._hIdx is None else allhVal[self._hIdx]
- vVal = allvVal if self._vIdx is None else allvVal[self._vIdx]
- else:
- # When h and v devices are identical, indexed
- # values are expected
- allVal = self._hDev.get()
- hVal = allVal[self._hIdx]
- vVal = allVal[self._vIdx]
- return np.array([hVal, vVal])
-
- # Sets the values
+ """Return horizontal and vertical BPM offsets."""
+ return np.array([self._hDev.get(), self._vDev.get()])
+
def set(self, value: NDArray[np.float64]):
- if self._hDev != self._vDev:
- self._hDev.set(value[0])
- self._vDev.set(value[1])
- else:
- # When h and v devices are identical, indexed
- # values are expected
- newValue = self._hDev.get()
- newValue[self._hIdx] = value[0]
- newValue[self._vIdx] = value[1]
- self._hDev.set(newValue)
+ """
+ Write horizontal and vertical BPM offsets.
+
+ Parameters
+ ----------
+ value : NDArray[np.float64]
+ Two-element array containing horizontal and vertical offsets.
+ """
+ self._hDev.set(value[0])
+ self._vDev.set(value[1])
def set_and_wait(self, value: NDArray[np.float64]):
+ """
+ Set BPM offsets and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : NDArray[np.float64]
+ Two-element array containing horizontal and vertical offsets.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value Assume that x and y, offsets and positions
# have the same unit
def unit(self) -> str:
- return self._model.get_pos_devices()[0].unit()
+ """Return the unit shared by the BPM offset devices."""
+ return self._hDev.unit()
# ------------------------------------------------------------------------------
@@ -585,22 +978,66 @@ class RWRFVoltageScalar(abstract.ReadWriteFloatScalar):
"""
Class providing read write access to cavity voltage
for a transmitter of a control system.
+
+ Parameters
+ ----------
+ transmitter : RFTransmitter
+ RF transmitter whose configuration supplies the voltage unit.
+ dev : DeviceAccess
+ Control-system device holding the cavity-voltage value.
+
+ Methods
+ -------
+ get()
+ Return the current cavity voltage.
+ set(value)
+ Write a cavity-voltage setpoint to the transmitter device.
+ set_and_wait(value)
+ Set the cavity voltage and wait for readback confirmation.
+ unit()
+ Return the configured cavity-voltage unit.
"""
def __init__(self, transmitter: RFTransmitter, dev: DeviceAccess):
+ """
+ Initialize the RWRFVoltageScalar.
+ """
self.__transmitter = transmitter
self.__dev = dev
def get(self) -> float:
+ """Return the current cavity voltage."""
return self.__dev.get()
def set(self, value: float):
+ """
+ Write a cavity-voltage setpoint to the transmitter device.
+
+ Parameters
+ ----------
+ value : float
+ Cavity-voltage setpoint in the configured voltage unit.
+ """
self.__dev.set(value)
def set_and_wait(self, value: float):
+ """
+ Set the cavity voltage and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : float
+ Cavity-voltage setpoint.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
+ """Return the configured cavity-voltage unit."""
return self.__transmitter._cfg.voltage.unit()
@@ -611,22 +1048,66 @@ class RWRFPhaseScalar(abstract.ReadWriteFloatScalar):
"""
Class providing read write access to cavity phase
for a transmitter of a control system.
+
+ Parameters
+ ----------
+ transmitter : RFTransmitter
+ RF transmitter whose configuration supplies the phase unit.
+ dev : DeviceAccess
+ Control-system device holding the cavity phase.
+
+ Methods
+ -------
+ get()
+ Return the current cavity phase.
+ set(value)
+ Write a cavity-phase setpoint to the transmitter device.
+ set_and_wait(value)
+ Set the cavity phase and wait for readback confirmation.
+ unit()
+ Return the configured cavity-phase unit.
"""
def __init__(self, transmitter: RFTransmitter, dev: DeviceAccess):
+ """
+ Initialize the RWRFPhaseScalar.
+ """
self.__transmitter = transmitter
self.__dev = dev
def get(self) -> float:
+ """Return the current cavity phase."""
return self.__dev.get()
def set(self, value: float):
+ """
+ Write a cavity-phase setpoint to the transmitter device.
+
+ Parameters
+ ----------
+ value : float
+ Cavity-phase setpoint in the configured phase unit.
+ """
self.__dev.set(value)
def set_and_wait(self, value: float):
+ """
+ Set the cavity phase and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : float
+ Cavity-phase setpoint.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
+ """Return the configured cavity-phase unit."""
return self.__transmitter._cfg.phase.unit()
@@ -636,23 +1117,67 @@ def unit(self) -> str:
class RWRFFrequencyScalar(abstract.ReadWriteFloatScalar):
"""
Class providing read write access to RF frequency of a control system.
+
+ Parameters
+ ----------
+ rf : RFPlant
+ RF plant whose configuration supplies the frequency unit.
+ dev : DeviceAccess
+ Control-system device holding the RF frequency.
+
+ Methods
+ -------
+ get()
+ Return the current RF frequency.
+ set(value)
+ Write an RF-frequency setpoint to the plant device.
+ set_and_wait(value)
+ Set the RF frequency and wait for readback confirmation.
+ unit()
+ Return the configured RF-frequency unit.
"""
def __init__(self, rf: RFPlant, dev: DeviceAccess):
+ """
+ Initialize the RWRFFrequencyScalar.
+ """
self.__rf = rf
self.__dev = dev
def get(self) -> float:
# Serialized cavity has the same frequency
+ """Return the current RF frequency."""
return self.__dev.get()
def set(self, value: float):
+ """
+ Write an RF-frequency setpoint to the plant device.
+
+ Parameters
+ ----------
+ value : float
+ RF-frequency setpoint in the configured frequency unit.
+ """
self.__dev.set(value)
def set_and_wait(self, value: float):
+ """
+ Set the RF frequency and wait for readback confirmation.
+
+ Parameters
+ ----------
+ value : float
+ RF-frequency setpoint.
+
+ Raises
+ ------
+ NotImplementedError
+ Always raised because asynchronous confirmation is unsupported.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
+ """Return the configured RF-frequency unit."""
return self.__rf._cfg.masterclock.unit()
@@ -661,15 +1186,33 @@ def unit(self) -> str:
class RBetatronTuneArray(abstract.ReadFloatArray):
"""
- Class providing read write access to betatron tune of a control system.
+ Expose horizontal and vertical betatron tunes as a read-only array.
+
+ Parameters
+ ----------
+ tune_monitor : object
+ Tune monitor configuration supplying the tune unit.
+ devs : list[DeviceAccess]
+ Devices providing horizontal and vertical tune measurements.
+
+ Methods
+ -------
+ get()
+ Return horizontal and vertical betatron tunes.
+ unit()
+ Return the configured betatron-tune unit.
"""
def __init__(self, tune_monitor, devs: list[DeviceAccess]):
+ """
+ Initialize the RBetatronTuneArray.
+ """
self.__tune_monitor = tune_monitor
self.__devs = devs
def get(self) -> NDArray:
# Return horizontal and vertical betatron tunes as a NumPy array
+ """Return horizontal and vertical betatron tunes."""
return np.array(
[
self.__devs[0].get(),
@@ -678,6 +1221,7 @@ def get(self) -> NDArray:
)
def unit(self) -> str:
+ """Return the configured betatron-tune unit."""
return self.__tune_monitor._cfg.tune_v.unit()
diff --git a/pyaml/control/controlsystem.py b/pyaml/control/controlsystem.py
index 33f57f84c..9199f98de 100644
--- a/pyaml/control/controlsystem.py
+++ b/pyaml/control/controlsystem.py
@@ -1,17 +1,22 @@
+"""
+Control-system element binding and runtime device interfaces.
+
+The classes in this module resolve configured device references, attach
+accelerator elements to a control-system backend, and construct the scalar,
+array, and aggregator interfaces used to access those elements at runtime.
+"""
+
from abc import ABCMeta, abstractmethod
-from typing import Tuple
+
+from pydantic import BaseModel
from ..bpm.bpm import BPM
-from ..bpm.bpm_model import BPMModel
from ..common.abstract import RWMapper
from ..common.abstract_aggregator import ScalarAggregator
-from ..common.element import Element
-from ..common.element_holder import ElementHolder
from ..common.exception import PyAMLException
-from ..configuration.factory import Factory
+from ..common.holders.element_holder import ElementHolder
from ..configuration.unbound_element import UnboundElement
from ..control.abstract_impl import (
- CSBPMArrayMapper,
CSScalarAggregator,
CSStrengthScalarAggregator,
RBetatronTuneArray,
@@ -36,255 +41,288 @@
from ..tuning_tools.measurement_tool import MeasurementTool
from ..tuning_tools.tuning_tool import TuningTool
from .deviceaccess import DeviceAccess
+from .deviceaccesslist import DeviceAccessList
class ControlSystem(ElementHolder, metaclass=ABCMeta):
"""
- Abstract class providing access to a control system float variable
+ Define the interface for binding accelerator elements to a backend.
+
+ A control system resolves PyAML element names to control-system devices and
+ wraps them in read/write accessors, so tools written against
+ :class:`~pyaml.common.holders.element_holder.ElementHolder` drive a live
+ machine unchanged. Concrete backends live in separate packages and are
+ selected from the configuration.
+
+ Methods
+ -------
+ name()
+ Return the backend control-system name.
+ get_aggregator()
+ Return an empty device aggregator, or ``None`` for direct access.
+ get_device_access(ref)
+ Return a device reference for this control system. YAML element configuration passes opaque strings. Public
+ Python APIs may also pass backend ConfigModel instances. Concrete backends own all lookup, parsing and
+ DeviceAccess construction.
+ get_devices_access(refs)
+ Resolve a list of backend references into device access objects.
+ create_magnet_strength_aggregator(magnets)
+ Create an aggregator that exposes magnet strengths.
+ create_magnet_hardware_aggregator(magnets)
+ Create an aggregator for magnet hardware values.
+ create_bpm_aggregators(bpms)
+ Create aggregate BPM position channels.
+ fill_device(elements)
+ Fill device of this control system with Element coming from the configuration file
"""
def __init__(self):
+ """
+ Initialize the ControlSystem.
+ """
ElementHolder.__init__(self)
@abstractmethod
- def attach(self, dev: list[DeviceAccess]) -> list[DeviceAccess]:
- """Return new instances of DeviceAccess objects
- coming from configuration attached to this CS"""
+ def name(self) -> str:
+ """Return the backend control-system name."""
pass
@abstractmethod
- def attach_array(self, dev: list[DeviceAccess]) -> list[DeviceAccess]:
- """Return new instances of DeviceAccess objects
- coming from configuration attached to this CS"""
+ def get_aggregator(self) -> DeviceAccessList | None:
+ """Return an empty device aggregator, or ``None`` for direct access."""
pass
@abstractmethod
- def name(self) -> str:
- """Return control system name (i.e. live)"""
+ def get_device_access(self, ref: str | BaseModel | None) -> DeviceAccess:
+ """
+ Return a device reference for this control system.
+ YAML element configuration passes opaque strings. Public Python APIs may
+ also pass backend ConfigModel instances. Concrete backends own all
+ lookup, parsing and DeviceAccess construction.
+ """
pass
- @abstractmethod
- def scalar_aggregator(self) -> str | None:
- """Returns the module name used for handling aggregator of DeviceAccess"""
- return None
-
- @abstractmethod
- def vector_aggregator(self) -> str | None:
- """Returns the module name used for handling aggregator of DeviceVectorAccess"""
- return None
-
- def attach_indexed(self, dev: DeviceAccess, idx: int | None) -> DeviceAccess:
- if idx is not None:
- return self.attach_array([dev])[0]
- else:
- return self.attach([dev])[0]
+ def get_devices_access(self, refs: list[str | BaseModel | None]) -> list[DeviceAccess]:
+ """
+ Resolve a list of backend references into device access objects.
- def create_scalar_aggregator(self) -> ScalarAggregator:
- mod = self.scalar_aggregator()
- agg = Factory.build_object({"type": mod}) if mod is not None else None
+ Parameters
+ ----------
+ refs : list of str or BaseModel or None
+ Backend-specific device references from the configuration.
+
+ Returns
+ -------
+ list of DeviceAccess
+ Device access objects in the same order as ``refs``.
+
+ Raises
+ ------
+ PyAMLException
+ If ``refs`` is not a list.
+ """
+ if not isinstance(refs, list):
+ raise PyAMLException(f"get_devices() expect a list as input arguments but got {str(type(refs))}")
+ return [self.get_device_access(ref) for ref in refs]
+
+ def _create_scalar_aggregator(self) -> ScalarAggregator | None:
+ """Create an empty scalar aggregator for this control-system backend."""
+ agg = self.get_aggregator()
+ if agg is None:
+ return None
return CSScalarAggregator(agg)
- def create_magnet_strength_aggregator(self, magnets: list[Magnet]) -> ScalarAggregator:
- agg = CSStrengthScalarAggregator(self.create_scalar_aggregator())
+ def create_magnet_strength_aggregator(self, magnets: list[Magnet]) -> ScalarAggregator | None:
+ """
+ Create an aggregator that exposes magnet strengths.
+
+ Parameters
+ ----------
+ magnets : list[Magnet]
+ Magnets whose strength channels should be aggregated.
+
+ Returns
+ -------
+ ScalarAggregator | None
+ Strength aggregator, or ``None`` when the backend does not use
+ aggregators.
+ """
+ agg = self._create_scalar_aggregator()
+ if agg is None:
+ return None
+ magg = CSStrengthScalarAggregator(agg)
for m in magnets:
- devs = self.attach(m.model.get_devices())
- agg.add_magnet(m, devs)
- return agg
+ devs = self.get_devices_access(m.model.get_device_names())
+ magg.add_magnet(m, devs)
+ return magg
+
+ def create_magnet_hardware_aggregator(self, magnets: list[Magnet]) -> ScalarAggregator | None:
+ """
+ Create an aggregator for magnet hardware values.
+
+ One power-supply device is selected for each magnet strength exposed
+ in hardware space. ``None`` is returned if a magnet lacks hardware
+ support or the backend does not provide aggregators.
+
+ Parameters
+ ----------
+ magnets : list[Magnet]
+ Magnets whose hardware channels should be grouped.
- def create_magnet_hardware_aggregator(self, magnets: list[Magnet]) -> ScalarAggregator:
- """When working in hardware space, 1 single power
- supply device per multipolar strength is required
+ Returns
+ -------
+ ScalarAggregator | None
+ Grouped accessor, or ``None`` when a magnet exposes no hardware device.
"""
- agg = self.create_scalar_aggregator()
+ agg = self._create_scalar_aggregator()
+ if agg is None:
+ return None
for m in magnets:
if not m.model.has_hardware():
return None
psIndex = m.hardware.index() if isinstance(m.hardware, RWMapper) else 0
- agg.add_devices(self.attach([m.model.get_devices()[psIndex]])[0])
+ agg.add_devices(self.get_devices_access([m.model.get_device_names()[psIndex]])[0])
return agg
- def create_bpm_aggregators(self, bpms: list[BPM]) -> list[ScalarAggregator]:
- # return [None,None,None]
-
- if any([not b.model.is_pos_indexed() for b in bpms]):
- # Aggregator for single BPM (all values are scalar)
- agg = self.create_scalar_aggregator()
- aggh = self.create_scalar_aggregator()
- aggv = self.create_scalar_aggregator()
- for b in bpms:
- devs = self.attach(b.model.get_pos_devices())
- agg.add_devices(devs)
- aggh.add_devices(devs[0])
- aggv.add_devices(devs[1])
- return [agg, aggh, aggv]
-
- elif any([b.model.is_pos_indexed() for b in bpms]):
- # Aggregator for indexed BPMs
- allH = []
- hIdx = []
- allV = []
- vIdx = []
- allHV = []
- for b in bpms:
- devs = self.attach_array(b.model.get_pos_devices())
- devH = devs[0]
- devV = devs[1]
- if devH not in allH:
- allH.append(devH)
- if devH not in allHV:
- allHV.append(devH)
- if devV not in allV:
- allV.append(devV)
- if devV not in allHV:
- allHV.append(devV)
- hIdx.append(b.model.x_pos_index())
- vIdx.append(b.model.y_pos_index())
-
- if len(allH) > 1 or len(allV) > 1:
- # Does not support aggregator for individual BPM that
- # returns an array of [x,y]
- print("Warning, Individual BPM that returns [x,y]" + " are not read in parralell")
- # Default to serialized readding
- return [None, None, None]
-
- if devH == devV:
- # [x0,y0,x1,y0,....]
- idx = []
- for b in bpms:
- idx.append(b.model.x_pos_index())
- idx.append(b.model.y_pos_index())
- hvIdx = [idx]
- else:
- hvIdx = [hIdx, vIdx]
-
- agg = CSBPMArrayMapper(allHV, hvIdx)
- aggh = CSBPMArrayMapper(allH, [hIdx])
- aggv = CSBPMArrayMapper(allV, [vIdx])
- return [agg, aggh, aggv]
- else:
- raise PyAMLException("Indexed BPM and scalar values cannot be mixed in the same array")
-
- def fill_device(self, elements: list[Element]):
+ def create_bpm_aggregators(self, bpms: list[BPM]) -> list[ScalarAggregator | None]:
"""
- Fill device of this control system with Element
- coming from the configuration file
+ Create aggregate BPM position channels.
Parameters
----------
- elements : list[Element]
- List of elements coming from the configuration
- file to attach to this control system
+ bpms : list[BPM]
+ BPM elements whose position devices should be aggregated.
+
+ Returns
+ -------
+ list[ScalarAggregator | None]
+ Aggregators for combined, horizontal, and vertical positions.
"""
- for e in elements:
- if isinstance(e, Magnet):
- dev = self.attach(e.model.get_devices())[0]
- current = RWHardwareScalar(e.model, dev) if e.model.has_hardware() else None
- strength = RWStrengthScalar(e.model, dev) if e.model.has_physics() else None
- # Create a unique ref for this control system
- m = e.attach(self, strength, current)
- self.add_magnet(m)
-
- elif isinstance(e, CombinedFunctionMagnet):
- devs = self.attach(e.model.get_devices())
- currents = RWHardwareArray(e.model, devs)
- strengths = RWStrengthArray(e.model, devs)
- # Create unique refs the cfm and
- # each of its function for this control system
- ms = e.attach(self, strengths, currents)
- self.add_cfm_magnet(ms[0])
- for m in ms[1:]:
- self.add_magnet(m)
-
- elif isinstance(e, SerializedMagnets):
- devs = self.attach(e.model.get_devices())
- currents = []
- strengths = []
- # Create unique refs the series and each of its function for this
- # control system
- for i in range(e.get_nb_magnets()):
- current = RWHardwareScalar(e.model.get_sub_model(i), devs[i]) if e.model.has_hardware() else None
- strength = RWStrengthScalar(e.model.get_sub_model(i), devs[i]) if e.model.has_physics() else None
- currents.append(current)
- strengths.append(strength)
- ms = e.attach(self, strengths, currents)
- self.add_serialized_magnet(ms[0])
- for m in ms[1:]:
- self.add_magnet(m)
-
- elif isinstance(e, BPM):
- hDev = e.model.get_pos_devices()[0]
- vDev = e.model.get_pos_devices()[1]
- tiltDev = e.model.get_tilt_device()
- hOffsetDev = e.model.get_offset_devices()[0]
- vOffsetDev = e.model.get_offset_devices()[1]
- ahDev = self.attach_indexed(hDev, e.model.x_pos_index())
- avDev = self.attach_indexed(vDev, e.model.y_pos_index())
- atiltDev = self.attach_indexed(tiltDev, e.model.tilt_index())
- ahOffsetDev = self.attach_indexed(hOffsetDev, e.model.x_offset_index())
- avOffsetDev = self.attach_indexed(vOffsetDev, e.model.y_offset_index())
- positions = RBpmArray(e.model, ahDev, avDev)
- tilt = RWBpmTiltScalar(e.model, atiltDev)
- offsets = RWBpmOffsetArray(e.model, ahOffsetDev, avOffsetDev)
- e = e.attach(self, positions, offsets, tilt)
- self.add_bpm(e)
-
- elif isinstance(e, RFPlant):
- attachedTrans: list[RFTransmitter] = []
- if e._cfg.transmitters:
- for t in e._cfg.transmitters:
- vDev = self.attach([t._cfg.voltage])[0]
- pDev = self.attach([t._cfg.phase])[0]
- voltage = RWRFVoltageScalar(t, vDev)
- phase = RWRFPhaseScalar(t, pDev)
- nt = t.attach(self, voltage, phase)
- self.add_rf_transnmitter(nt)
- attachedTrans.append(nt)
-
- fDev = self.attach([e._cfg.masterclock])[0]
- frequency = RWRFFrequencyScalar(e, fDev)
- voltage = RWTotalVoltage(attachedTrans) if e._cfg.transmitters else None
- ne = e.attach(self, frequency, voltage)
- self.add_rf_plant(ne)
-
- elif isinstance(e, BetatronTuneMonitor):
- # Built in tune monitor
- tuneDevs = self.attach([e._cfg.tune_h, e._cfg.tune_v])
- betatron_tune = RBetatronTuneArray(e, tuneDevs)
- e = e.attach(self, betatron_tune)
- self.add_betatron_tune_monitor(e)
-
- elif isinstance(e, TuningTool) | isinstance(e, MeasurementTool):
- self.add_tool(e.attach(self))
-
- elif isinstance(e, UnboundElement):
- if self.name() in e._control_modes:
- ne = Factory.build_unbound(e, self)
- if isinstance(ne, ABetatronTuneMonitor):
- self.add_betatron_tune_monitor(ne)
- else:
- # Default to standard Element
- self.add_element(ne)
+ agg = self._create_scalar_aggregator()
+ aggh = self._create_scalar_aggregator()
+ aggv = self._create_scalar_aggregator()
+ if agg is None or aggh is None or aggv is None:
+ return [None, None, None]
+ for b in bpms:
+ devs = self.get_devices_access(b.get_pos_devices())
+ agg.add_devices(devs)
+ aggh.add_devices(devs[0])
+ aggv.add_devices(devs[1])
+ return [agg, aggh, aggv]
+
+ def _fill_magnet(self, magnet: Magnet) -> None:
+ device = self.get_device_access(magnet.model.get_device_names()[0])
+ current = RWHardwareScalar(magnet.model, device) if magnet.model.has_hardware() else None
+ strength = RWStrengthScalar(magnet.model, device) if magnet.model.has_physics() else None
+ self.magnet.add(magnet.attach(self, strength, current))
+
+ def _fill_combined_function_magnet(self, magnet: CombinedFunctionMagnet) -> None:
+ devices = self.get_devices_access(magnet.model.get_device_names())
+ currents = RWHardwareArray(magnet.model, devices)
+ strengths = RWStrengthArray(magnet.model, devices)
+ attached_magnets = magnet.attach(self, strengths, currents)
+ self.combined_function_magnet.add(attached_magnets[0])
+ for virtual_magnet in attached_magnets[1:]:
+ self.magnet.add(virtual_magnet)
+
+ def _fill_serialized_magnets(self, magnets: SerializedMagnets) -> None:
+ devices = self.get_devices_access(magnets.model.get_device_names())
+ currents = []
+ strengths = []
+ for index in range(magnets.get_nb_magnets()):
+ currents.append(
+ RWHardwareScalar(magnets.model.get_sub_model(index), devices[index]) if magnets.model.has_hardware() else None
+ )
+ strengths.append(
+ RWStrengthScalar(magnets.model.get_sub_model(index), devices[index]) if magnets.model.has_physics() else None
+ )
+ attached_magnets = magnets.attach(self, strengths, currents)
+ self.serialized_magnet.add(attached_magnets[0])
+ for magnet in attached_magnets[1:]:
+ self.magnet.add(magnet)
+
+ def _fill_bpm(self, bpm: BPM) -> None:
+ position_devices = self.get_devices_access(bpm.get_pos_devices())
+ tilt_devices = self.get_devices_access([bpm.get_tilt_device()])
+ offset_devices = self.get_devices_access(bpm.get_offset_devices())
+ positions = RBpmArray(position_devices[0], position_devices[1])
+ tilt = RWBpmTiltScalar(tilt_devices[0])
+ offsets = RWBpmOffsetArray(offset_devices[0], offset_devices[1])
+ self.bpm.add(bpm.attach(self, positions, offsets, tilt))
+
+ def _fill_rf_plant(self, rf_plant: RFPlant) -> None:
+ attached_transmitters: list[RFTransmitter] = []
+ if rf_plant.transmitters:
+ for transmitter in rf_plant.transmitters:
+ voltage_device = self.get_device_access(transmitter.voltage_name)
+ phase_device = self.get_device_access(transmitter.phase_name)
+ voltage = RWRFVoltageScalar(transmitter, voltage_device)
+ phase = RWRFPhaseScalar(transmitter, phase_device)
+ attached_transmitter = transmitter.attach(self, voltage, phase)
+ self.rf.transmitter.add(attached_transmitter)
+ attached_transmitters.append(attached_transmitter)
+ frequency_device = self.get_device_access(rf_plant.masterclock)
+ frequency = RWRFFrequencyScalar(rf_plant, frequency_device)
+ voltage = RWTotalVoltage(attached_transmitters) if rf_plant.transmitters else None
+ self.rf.add(rf_plant.attach(self, frequency, voltage))
+
+ def _fill_betatron_tune_monitor(self, monitor: BetatronTuneMonitor) -> None:
+ devices = self.get_devices_access([monitor.tune_h, monitor.tune_v])
+ self.add_betatron_tune_monitor(monitor.attach(self, RBetatronTuneArray(monitor, devices)))
+
+ def _fill_tool(self, tool: TuningTool | MeasurementTool) -> None:
+ self.add_tool(tool.attach(self))
+
+ def _fill_unbound_element(self, element: UnboundElement) -> None:
+ if self.name() not in element._control_modes:
+ return
+ attached_element = element.instantiate(self)
+ if isinstance(attached_element, ABetatronTuneMonitor):
+ self.add_betatron_tune_monitor(attached_element)
+ else:
+ self.add_element(attached_element)
class ControlSystemAdapter(ControlSystem):
"""
- Control system adapter class
+ Provide a no-op adapter for serialized or backend-independent access.
+
+ Methods
+ -------
+ name()
+ Return the adapter's control-system name.
+ get_aggregator()
+ Return ``None`` because the adapter has no device aggregator.
+ get_device_access(ref)
+ Return the device access object for a backend reference.
"""
def __init__(self):
+ """
+ Initialize the ControlSystemAdapter.
+ """
ControlSystem.__init__(self)
- def attach(self, dev: list[DeviceAccess]) -> list[DeviceAccess]:
- pass
-
- def attach_array(self, dev: list[DeviceAccess]) -> list[DeviceAccess]:
- pass
-
def name(self) -> str:
+ """Return the adapter's control-system name."""
pass
- def scalar_aggregator(self) -> str | None:
+ def get_aggregator(self) -> DeviceAccessList | None:
+ """Return ``None`` because the adapter has no device aggregator."""
return None
- def vector_aggregator(self) -> str | None:
- return None
+ def get_device_access(self, ref: str | BaseModel | None) -> DeviceAccess | None:
+ """
+ Return the device access object for a backend reference.
+
+ Parameters
+ ----------
+ ref : str | BaseModel | None
+ Backend-specific device reference.
+
+ Returns
+ -------
+ DeviceAccess | None
+ Resolved device access object, or ``None`` when unsupported.
+ """
+ pass
diff --git a/pyaml/control/deviceaccess.py b/pyaml/control/deviceaccess.py
index ec37cd4f2..5ac63897d 100644
--- a/pyaml/control/deviceaccess.py
+++ b/pyaml/control/deviceaccess.py
@@ -1,3 +1,10 @@
+"""
+Abstract interface for control-system device access.
+
+Backends implement :class:`DeviceAccess` to expose device names, setpoints,
+readbacks, units, limits, and availability through a common PyAML interface.
+"""
+
from abc import ABCMeta, abstractmethod
# TODO: correctly type value
@@ -5,42 +12,110 @@
class DeviceAccess(metaclass=ABCMeta):
"""
- Abstract class providing access to a control system variable
+ Define the interface for one control-system device variable.
+
+ Implementations may represent a process variable, power-supply channel,
+ measurement channel, or another backend-specific device. ``get`` and
+ ``readback`` distinguish the requested setpoint from the measured value.
+
+ Methods
+ -------
+ name()
+ Return the backend identifier of the device variable.
+ measure_name()
+ Return the identifier of the device's measurement channel.
+ set(value)
+ Write a new setpoint to the device variable.
+ set_and_wait(value)
+ Write a setpoint and wait until the device reaches it.
+ get()
+ Return the current device setpoint.
+ readback()
+ Return the latest measured value reported by the device.
+ unit()
+ Return the physical unit of the device variable.
+ get_range()
+ Get the valid range for the device variable.
+ check_device_availability()
+ Check if the device is available and accessible.
"""
@abstractmethod
def name(self) -> str:
- """Return the name of the variable"""
+ """
+ Return the backend identifier of the device variable.
+
+ Returns
+ -------
+ str
+ Device or process-variable name.
+ """
pass
@abstractmethod
def measure_name(self) -> str:
- """Return the name of the measure"""
+ """
+ Return the identifier of the device's measurement channel.
+
+ Returns
+ -------
+ str
+ Measurement-channel name.
+ """
pass
@abstractmethod
def set(self, value):
- """Write a control system device variable (i.e. a power supply current)"""
+ """
+ Write a new setpoint to the device variable.
+
+ Parameters
+ ----------
+ value : object
+ Backend-compatible value to write.
+ """
pass
@abstractmethod
def set_and_wait(self, value):
- """Write a control system device variable (i.e. a power supply current)"""
+ """
+ Write a setpoint and wait until the device reaches it.
+
+ Parameters
+ ----------
+ value : object
+ Backend-compatible value to write.
+ """
pass
@abstractmethod
def get(self):
- """Return the setpoint(s) of a control system device variable"""
+ """Return the current device setpoint."""
pass
@abstractmethod
def readback(self):
- """Return the measured variable"""
+ """
+ Return the latest measured value reported by the device.
+
+ Returns
+ -------
+ object
+ Backend-provided readback value, which may differ from the
+ commanded setpoint returned by :meth:`get`.
+ """
pass
@abstractmethod
def unit(self) -> str:
- """Return the variable unit"""
+ """
+ Return the physical unit of the device variable.
+
+ Returns
+ -------
+ str
+ Unit label, such as ``"A"`` or ``"Hz"``.
+ """
pass
@abstractmethod
@@ -51,7 +126,8 @@ def get_range(self) -> list[float]:
Returns
-------
list[float]
- List containing [min, max] values
+ Two-element list containing the inclusive minimum and maximum
+ values. ``None`` may be used for an unbounded limit.
"""
pass
@@ -63,6 +139,6 @@ def check_device_availability(self) -> bool:
Returns
-------
bool
- True if device is available, False otherwise
+ ``True`` if the device can be accessed; otherwise ``False``.
"""
pass
diff --git a/pyaml/control/deviceaccesslist.py b/pyaml/control/deviceaccesslist.py
index e913389ec..38513fee8 100644
--- a/pyaml/control/deviceaccesslist.py
+++ b/pyaml/control/deviceaccesslist.py
@@ -1,51 +1,129 @@
+"""
+Abstract collection interface for control-system devices.
+
+Backends implement :class:`DeviceAccessList` to expose ordered groups of
+device variables with bulk read, write, range, unit, and availability support.
+"""
+
from abc import ABCMeta, abstractmethod
import numpy as np
import numpy.typing as npt
from .deviceaccess import DeviceAccess
-from .readback_value import Value
-class DeviceAccessList(list[DeviceAccess], metaclass=ABCMeta):
+class DeviceAccessList(metaclass=ABCMeta):
"""
- Abstract class providing access to a list of control system float variable
+ Define ordered bulk access to control-system device variables.
+
+ The internal representation is backend-dependent. Implementations expose
+ devices in a stable order so array values correspond to the same order for
+ reads, writes, readbacks, and ranges.
+
+ Methods
+ -------
+ add_devices(devices)
+ Add one device or a list of devices to the collection.
+ get_device_at(index)
+ Return the device at a zero-based index.
+ len()
+ Return the number of devices in the collection.
+ set(value)
+ Write one setpoint for each device in collection order.
+ set_and_wait(value)
+ Write setpoints and wait for all devices to reach them.
+ get()
+ Return all current setpoints in collection order.
+ readback()
+ Return the latest measured values in collection order.
+ unit()
+ Return the unit or units associated with the devices.
+ get_range()
+ Get the valid range for the device variables.
+ check_device_availability()
+ Check if all devices in the list are available and accessible.
"""
@abstractmethod
def add_devices(self, devices: DeviceAccess | list[DeviceAccess]):
- """Add a DeviceAccess to this list"""
+ """
+ Add one device or a list of devices to the collection.
+
+ Parameters
+ ----------
+ devices : DeviceAccess | list[DeviceAccess]
+ Device or devices to append, in the order they should be read.
+ """
+ pass
+
+ @abstractmethod
+ def get_device_at(self, index: int) -> DeviceAccess:
+ """
+ Return the device at a zero-based index.
+
+ Parameters
+ ----------
+ index : int
+ Position of the requested device.
+
+ Returns
+ -------
+ DeviceAccess
+ Device at ``index``.
+ """
pass
@abstractmethod
- def get_devices(self) -> DeviceAccess | list[DeviceAccess]:
- """Get the DeviceAccess list"""
+ def len(self) -> int:
+ """Return the number of devices in the collection."""
pass
@abstractmethod
def set(self, value: npt.NDArray[np.float64]):
- """Write a list of control system device variable
- (i.e. a power supply currents)"""
+ """
+ Write one setpoint for each device in collection order.
+
+ Parameters
+ ----------
+ value : numpy.typing.NDArray[numpy.float64]
+ Setpoints ordered to match the devices.
+ """
pass
@abstractmethod
def set_and_wait(self, value: npt.NDArray[np.float64]):
- """Write a list control system device variable (i.e. a power supply currents)"""
+ """
+ Write setpoints and wait for all devices to reach them.
+
+ Parameters
+ ----------
+ value : numpy.typing.NDArray[numpy.float64]
+ Setpoints ordered to match the devices.
+ """
pass
@abstractmethod
def get(self) -> npt.NDArray[np.float64]:
- """Return a list of setpoints of control system device variables"""
+ """Return all current setpoints in collection order."""
pass
@abstractmethod
def readback(self) -> np.array:
- """Return the measured variables"""
+ """
+ Return the latest measured values in collection order.
+
+ Returns
+ -------
+ numpy.ndarray
+ Readback values corresponding to the devices returned by
+ :meth:`get_device_at` at each index.
+ """
pass
@abstractmethod
def unit(self) -> str:
- """Return the variable unit"""
+ """Return the unit or units associated with the devices."""
pass
@abstractmethod
@@ -56,7 +134,8 @@ def get_range(self) -> list[float]:
Returns
-------
list[float]
- List containing [min, max] values
+ Flat list containing ``[min0, max0, min1, max1, ...]``.
+ ``None`` may represent an unbounded limit.
"""
pass
@@ -68,6 +147,48 @@ def check_device_availability(self) -> bool:
Returns
-------
bool
- True if all devices are available, False otherwise
+ ``True`` only if every device is available and accessible.
"""
pass
+
+ # Immutable list implementation
+
+ def __getitem__(self, index):
+ """
+ Return the device at ``index``.
+
+ Parameters
+ ----------
+ index : object
+ Integer index of the requested device.
+
+ Returns
+ -------
+ DeviceAccess
+ Device selected by ``index``.
+ """
+ return self.get_device_at(index)
+
+ def __len__(self):
+ """Return the number of devices in the collection."""
+ return self.len()
+
+ def __iter__(self):
+ """Return an iterator over the devices in collection order."""
+ self._iter_pos = 0
+ return self
+
+ def __next__(self):
+ """
+ Return the next device during iteration.
+
+ Raises
+ ------
+ StopIteration
+ When all devices have been visited.
+ """
+ if self._iter_pos < len(self._items):
+ self._iter_pos += 1
+ return self._items[self._iter_pos - 1]
+ else:
+ raise StopIteration
diff --git a/pyaml/control/readback_value.py b/pyaml/control/readback_value.py
index 207641c35..71f3713cf 100644
--- a/pyaml/control/readback_value.py
+++ b/pyaml/control/readback_value.py
@@ -1,3 +1,10 @@
+"""
+Values returned by control-system readback channels.
+
+The module provides quality indicators and a :class:`Value` wrapper that keeps
+the measured value together with its quality state and acquisition timestamp.
+"""
+
from datetime import datetime
from enum import Enum, auto
from typing import Union
@@ -7,20 +14,20 @@
class Quality(Enum):
"""
- Enumeration for data quality indicators.
+ Describe the quality state associated with a readback value.
Attributes
----------
VALID : int
- Data is valid and reliable
+ Data is valid and reliable.
INVALID : int
- Data is invalid
+ Data is invalid.
ALARM : int
- Data indicates an alarm condition
+ Data indicates an alarm condition.
CHANGING : int
- Data is currently changing
+ Data is currently changing.
WARNING : int
- Data indicates a warning condition
+ Data indicates a warning condition.
"""
VALID = auto()
@@ -30,6 +37,9 @@ class Quality(Enum):
WARNING = auto()
def __str__(self):
+ """
+ Return a human-readable string representation of the object.
+ """
return self.name
@@ -48,6 +58,11 @@ class Value:
The quality of the value. Defaults to Quality.VALID.
timestamp : datetime, optional
Timestamp associated with the value. Defaults to current time.
+
+ Methods
+ -------
+ is_good()
+ Check if the value quality is good.
"""
def __init__(
@@ -56,6 +71,9 @@ def __init__(
quality: Quality = Quality.VALID,
timestamp: datetime = None,
):
+ """
+ Initialize a value with quality metadata and an acquisition time.
+ """
self.value = value
self.quality = quality
self.timestamp = timestamp or datetime.now()
diff --git a/pyaml/diagnostics/__init__.py b/pyaml/diagnostics/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/pyaml/diagnostics/atune_monitor.py b/pyaml/diagnostics/atune_monitor.py
index 86698538e..9c9afb9a6 100644
--- a/pyaml/diagnostics/atune_monitor.py
+++ b/pyaml/diagnostics/atune_monitor.py
@@ -1,3 +1,10 @@
+"""
+Abstract interfaces for betatron tune monitors.
+
+The interfaces describe the tune and frequency quantities exposed by concrete
+betatron tune monitor implementations.
+"""
+
from abc import ABCMeta, abstractmethod
from ..common.abstract import ReadFloatArray
@@ -5,14 +12,30 @@
class ABetatronTuneMonitor(metaclass=ABCMeta):
"""
- Abstract class providing access to a betatron tune monitor
+ Define the read-only interface for a betatron tune monitor.
+
+ Concrete monitors provide horizontal and vertical tune values and their
+ corresponding frequencies.
+
+ Attributes
+ ----------
+ tune
+ Return the fractional horizontal and vertical betatron tunes.
+ frequency
+ Return the horizontal and vertical tune frequencies.
"""
@property
@abstractmethod
def tune(self) -> ReadFloatArray:
"""
- Returns the tune fractionnal part
+ Return the fractional horizontal and vertical betatron tunes.
+
+ Returns
+ -------
+ ReadFloatArray
+ Readable array containing the horizontal and vertical tune
+ fractions.
"""
...
@@ -20,6 +43,12 @@ def tune(self) -> ReadFloatArray:
@abstractmethod
def frequency(self) -> ReadFloatArray:
"""
- Returns the tune in frequency
+ Return the horizontal and vertical tune frequencies.
+
+ Returns
+ -------
+ ReadFloatArray
+ Readable array containing the frequencies corresponding to the
+ tune measurements.
"""
...
diff --git a/pyaml/diagnostics/tune_monitor.py b/pyaml/diagnostics/tune_monitor.py
index 1a534c1ce..3b5206d77 100644
--- a/pyaml/diagnostics/tune_monitor.py
+++ b/pyaml/diagnostics/tune_monitor.py
@@ -1,62 +1,110 @@
+"""
+Betatron tune monitor element and runtime data bindings.
+
+The monitor identifies tune measurements, attaches them to a runtime peer,
+and optionally converts tune fractions to frequencies using an RF plant.
+"""
+
+import copy
+from typing import TYPE_CHECKING, Self
+
+from numpy.typing import NDArray
+
from ..common.abstract import ReadFloatArray
-from ..common.element import Element, ElementConfigModel
-from ..control.deviceaccess import DeviceAccess
+from ..common.element import Element, __pyaml_repr__
+from ..validation import DynamicValidation, register_schema
from .atune_monitor import ABetatronTuneMonitor
-try:
- from typing import Self # Python 3.11+
-except ImportError:
- from typing_extensions import Self # Python 3.10 and earlier
-import numpy as np
-from pydantic import ConfigDict
+if TYPE_CHECKING:
+ from ..common.holders.element_holder import ElementHolder
PYAMLCLASS = "BetatronTuneMonitor"
-class ConfigModel(ElementConfigModel):
+@register_schema
+class BetatronTuneMonitor(Element, DynamicValidation, ABetatronTuneMonitor):
"""
- Configuration model for BetatronTuneMonitor
+ Betatron tune monitor.
+
+ Represents a betatron tune monitor in the accelerator lattice and
+ provides access to the measured horizontal and vertical betatron
+ tunes. Optionally, the monitor can be associated with an RF plant
+ used to convert tune measurements to frequency values.
Parameters
----------
- tune_h : DeviceAccess, optional
- Horizontal betatron tune device
- tune_v : DeviceAccess, optional
- Vertical betatron tune device
+ name : str
+ Name of the betatron tune monitor.
+ description : str | None, optional
+ Description of the monitor.
+ tune_h : str | None, optional
+ Device catalog key for the horizontal betatron tune measurement.
+ tune_v : str | None, optional
+ Device catalog key for the vertical betatron tune measurement.
+ rf_plant_name : str | None, optional
+ Name of the associated RF plant element used by the monitor.
+
+ Attributes
+ ----------
+ tune_h
+ Return the horizontal tune device catalog key.
+ tune_v
+ Return the vertical tune device catalog key.
+ tune
+ Get the betatron tune values.
+ frequency
+ Return the betatron tune values converted to frequency.
+
+ Methods
+ -------
+ set_harmonic(h)
+ Set the harmonic number used for tune-frequency conversion.
+ attach(peer, betatron_tune)
+ Attach the tune monitor to a peer with betatron tune data.
"""
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- tune_h: DeviceAccess | None
- tune_v: DeviceAccess | None
- rf_plant_name: str | None = None
-
-
-class BetatronTuneMonitor(Element, ABetatronTuneMonitor):
- """
- Class providing access to a betatron tune monitor
- of a physical or simulated lattice.
- The monitor provides horizontal and vertical betatron tune measurements.
- """
+ def __init__(
+ self,
+ name: str,
+ description: str | None = None,
+ tune_h: str | None = None,
+ tune_v: str | None = None,
+ rf_plant_name: str | None = None,
+ ):
+ """
+ Initialize a betatron tune monitor.
+ """
+ super().__init__(name, None, description)
+ self._tune_h = tune_h
+ self._tune_v = tune_v
+ self._rf_plant_name = rf_plant_name
+ self.__tune = None
+ self._h = None
- def __init__(self, cfg: ConfigModel):
+ def set_harmonic(self, h: int):
"""
- Construct a BetatronTuneMonitor
+ Set the harmonic number used for tune-frequency conversion.
Parameters
----------
- cfg : ConfigModel
- Configuration for the BetatronTuneMonitor, including
- device access for horizontal and vertical tunes.
+ h : int
+ Harmonic number relating the RF frequency to the measured
+ betatron tune frequency.
"""
+ self._h = float(h)
- super().__init__(cfg.name)
- self._cfg = cfg
- self.__tune = None
- self._h = None
+ def _fill_device(self, holder: "ElementHolder") -> None:
+ holder._fill_betatron_tune_monitor(self)
- def set_harmonic(self, h: int):
- self._h = float(h)
+ @property
+ def tune_h(self) -> str | None:
+ """Return the horizontal tune device catalog key."""
+ return self._tune_h
+
+ @property
+ def tune_v(self) -> str | None:
+ """Return the vertical tune device catalog key."""
+ return self._tune_v
@property
def tune(self) -> ReadFloatArray:
@@ -66,7 +114,7 @@ def tune(self) -> ReadFloatArray:
Returns
-------
ReadFloatArray
- Array of tune values [horizontal, vertical]
+ Readable array containing the horizontal and vertical tunes.
"""
self.check_peer()
return self.__tune
@@ -74,28 +122,49 @@ def tune(self) -> ReadFloatArray:
@property
def frequency(self) -> ReadFloatArray:
"""
- Get the betatron tune values in frequency
+ Return the betatron tune values converted to frequency.
Returns
-------
ReadFloatArray
- Array of tune values in frequency [horizontal, vertical]
+ Readable array containing horizontal and vertical frequencies.
"""
class TuneFreq(ReadFloatArray):
+ """
+ Read-only view that converts tune values to frequencies.
+
+ Parameters
+ ----------
+ parent : BetatronTuneMonitor
+ Monitor providing the source tune and RF data.
+
+ Methods
+ -------
+ get()
+ Return tune frequencies in hertz.
+ unit()
+ Return the frequency unit label.
+ """
+
def __init__(self, parent: BetatronTuneMonitor):
+ """
+ Initialize the tune-frequency view.
+ """
self.parent = parent
- def get(self) -> np.array:
+ def get(self) -> NDArray:
+ """Return tune frequencies in hertz."""
h = self.parent._h
- rf_name = self.parent._cfg.rf_plant_name
+ rf_name = self.parent._rf_plant_name
if h is not None and rf_name is not None:
tune = self.parent.tune.get()
- rf = self.parent.peer.get_rf_plant(rf_name)
+ rf = self.parent.peer.rf.get(rf_name)
freq = rf.frequency.get()
return tune * freq / h
def unit(self) -> str:
+ """Return the frequency unit label."""
return "Hz"
self.check_peer()
@@ -108,16 +177,24 @@ def attach(self, peer, betatron_tune: ReadFloatArray) -> Self:
Parameters
----------
peer : object
- The peer object (simulator or control system)
+ Simulator or control-system peer providing the RF plant.
betatron_tune : ReadFloatArray
- The betatron tune array to monitor
+ Readable array containing the measured horizontal and vertical
+ tunes.
Returns
-------
Self
- A new attached instance of TuneMonitor
+ A shallow copy of this monitor bound to ``peer`` and
+ ``betatron_tune``.
"""
- obj = self.__class__(self._cfg)
+ obj = copy.copy(self)
obj.__tune = betatron_tune
obj._peer = peer
return obj
+
+ def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self, exclude=["tune", "frequency"])
diff --git a/pyaml/external/__init__.py b/pyaml/external/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/pyaml/external/pySC_interface.py b/pyaml/external/pySC_interface.py
index c553fd1e8..3be5196ea 100644
--- a/pyaml/external/pySC_interface.py
+++ b/pyaml/external/pySC_interface.py
@@ -1,15 +1,49 @@
+"""
+Adapter between PyAML elements and pySC measurement applications.
+
+The :class:`pySCInterface` exposes the orbit, magnet-strength, and RF-frequency
+operations expected by pySC while using PyAML element-holder accessors.
+"""
+
import time
from typing import TYPE_CHECKING, Optional, Tuple
import numpy as np
if TYPE_CHECKING:
- from ..common.element_holder import ElementHolder
+ from ..common.holders.element_holder import ElementHolder
from ..common.exception import PyAMLException
class pySCInterface:
+ """
+ Provide pySC-compatible access to a PyAML accelerator mode.
+
+ Parameters
+ ----------
+ element_holder : 'ElementHolder'
+ Accelerator mode, control system or simulator, exposed to pySC.
+ bpm_array_name : str
+ Name of the BPM array used for orbit readback.
+ rf_plant_name : Optional[str]
+ Optional RF plant name, required for RF-related pySC operations.
+
+ Methods
+ -------
+ get_orbit()
+ Return horizontal and vertical orbit readings from the BPM array.
+ get(name)
+ Return the current strength of a named magnet.
+ set(name, value)
+ Set the strength of a named magnet and wait for the configured delay.
+ get_rf_main_frequency()
+ Return the main RF frequency from the configured RF plant.
+ set_rf_main_frequency(value)
+ Set the main RF frequency and wait for the configured delay.
+ """
+
set_wait_time: float = 0
+ read_wait_time: float = 0
def __init__(
self,
@@ -17,37 +51,83 @@ def __init__(
bpm_array_name: str,
rf_plant_name: Optional[str] = None,
):
+ """
+ Initialize a pySC adapter from a PyAML element holder.
+ """
self.element_holder = element_holder
- self.bpm_array = element_holder.get_bpms(bpm_array_name)
+ self.bpm_array = element_holder.bpms.get(bpm_array_name)
self.rf_plant_name = rf_plant_name
if rf_plant_name is not None:
- self.rf_plant = element_holder.get_rf_plant(self.rf_plant_name)
+ self.rf_plant = element_holder.rf.get(self.rf_plant_name)
else:
self.rf_plant = None
def get_orbit(self) -> Tuple[np.array, np.array]:
- # we should wait here somehow according to polling rate
+ """Return horizontal and vertical orbit readings from the BPM array."""
+ time.sleep(self.read_wait_time)
positions = self.bpm_array.positions.get()
return positions[:, 0], positions[:, 1]
def get(self, name: str) -> float:
- magnet = self.element_holder.get_magnet(name=name)
+ """
+ Return the current strength of a named magnet.
+
+ Parameters
+ ----------
+ name : str
+ Magnet name in the configured element holder.
+
+ Returns
+ -------
+ float
+ Current magnet strength.
+ """
+ magnet = self.element_holder.magnet.get(name=name)
return magnet.strength.get()
def set(self, name: str, value: float) -> None:
- magnet = self.element_holder.get_magnet(name=name)
+ """
+ Set the strength of a named magnet and wait for the configured delay.
+
+ Parameters
+ ----------
+ name : str
+ Magnet name in the configured element holder.
+ value : float
+ New magnet strength.
+
+ Returns
+ -------
+ None
+ This method does not return a value.
+ """
+ magnet = self.element_holder.magnet.get(name=name)
magnet.strength.set(value=value) # ideally set_and_wait but not implemented
time.sleep(self.set_wait_time)
return
def get_rf_main_frequency(self) -> float:
+ """Return the main RF frequency from the configured RF plant."""
if self.rf_plant is None:
raise PyAMLException("RF plant name was not provided.")
return self.rf_plant.frequency.get()
def set_rf_main_frequency(self, value: float) -> None:
+ """
+ Set the main RF frequency and wait for the configured delay.
+
+ Parameters
+ ----------
+ value : float
+ New main RF frequency in hertz.
+
+ Returns
+ -------
+ None
+ This method does not return a value.
+ """
if self.rf_plant is None:
raise PyAMLException("RF plant name was not provided.")
self.rf_plant.frequency.set(value)
diff --git a/pyaml/lattice/abstract_impl.py b/pyaml/lattice/abstract_impl.py
index 69354e912..91c07975e 100644
--- a/pyaml/lattice/abstract_impl.py
+++ b/pyaml/lattice/abstract_impl.py
@@ -1,3 +1,10 @@
+"""
+Read/write interfaces for simulated lattice elements.
+
+This module adapts Accelerator Toolbox lattice elements to PyAML accessors for
+magnet strengths, hardware values, BPM readings, RF parameters, and tune data.
+"""
+
import at
import numpy as np
from numpy.typing import NDArray
@@ -5,10 +12,7 @@
from ..common import abstract
from ..common.abstract_aggregator import ScalarAggregator
-from ..common.exception import PyAMLException
from ..magnet.model import MagnetModel
-from ..rf.rf_plant import RFPlant
-from ..rf.rf_transmitter import RFTransmitter
from .polynom_info import PolynomInfo
# TODO handle serialized magnets for magnet array
@@ -18,42 +22,97 @@
class RWHardwareScalar(abstract.ReadWriteFloatScalar):
"""
- Class providing read write access to a magnet of a simulator in hardware unit.
- Hardware unit is converted from strength using the magnet model
+ Provide read/write access to a simulated magnet in hardware units.
+
+ Hardware values are converted through the associated magnet model while
+ the underlying lattice polynomial is updated on writes.
+
+ Parameters
+ ----------
+ elements : list[at.Element]
+ Accelerator Toolbox elements making up the magnet; their contributions are summed.
+ poly : PolynomInfo
+ Polynomial component driven by this accessor: the ``PolynomA``/``PolynomB`` attribute name, its multipole
+ index and the sign convention.
+ model : MagnetModel
+ Magnet model used to convert between physical strength and hardware value.
+
+ Methods
+ -------
+ get_length()
+ Return the total length of the lattice elements.
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
+ get_model()
+ Return the associated magnet model.
"""
def __init__(self, elements: list[at.Element], poly: PolynomInfo, model: MagnetModel):
- self.__model = model
- self.__elements = elements
- self.__poly = [e.__getattribute__(poly.attName) for e in elements]
- self.__sign = poly.sign
- self.__polyIdx = poly.index
- self.__length: float = 0.0
+ """
+ Initialize the RWHardwareScalar.
+ """
+ self._model = model
+ self._elements = elements
+ self._poly = [e.__getattribute__(poly.attName) for e in elements]
+ self._sign = poly.sign
+ self._polyIdx = poly.index
+ self._length: float = 0.0
for e in elements:
- self.__length += e.Length
+ self._length += e.Length
def get_length(self) -> float:
- return self.__length
+ """Return the total length of the lattice elements."""
+ return self._length
def get(self) -> float:
+ """Return the current value."""
s = 0
- for idx, e in enumerate(self.__elements):
- s += self.__poly[idx][self.__polyIdx] * self.__sign * e.Length
- return self.__model.compute_hardware_values([s])[0]
+ for idx, e in enumerate(self._elements):
+ s += self._poly[idx][self._polyIdx] * self._sign * e.Length
+ return self._model.compute_hardware_values([s])[0]
def set(self, value: float):
- s = self.__model.compute_strengths([value])[0]
- for idx, _ in enumerate(self.__elements):
- self.__poly[idx][self.__polyIdx] = s / (self.__length * self.__sign)
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ Hardware value to apply, in the unit reported by the magnet model.
+ """
+ s = self._model.compute_strengths([value])[0]
+ for idx, _ in enumerate(self._elements):
+ self._poly[idx][self._polyIdx] = s / (self._length * self._sign)
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Hardware value to apply, in the unit reported by the magnet model.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
- return self.__model.get_hardware_units()[0]
+ """Return the value unit."""
+ return self._model.get_hardware_units()[0]
def get_model(self) -> MagnetModel:
- return self.__model
+ """Return the associated magnet model."""
+ return self._model
# ------------------------------------------------------------------------------
@@ -61,52 +120,175 @@ def get_model(self) -> MagnetModel:
class RWStrengthScalar(abstract.ReadWriteFloatScalar):
"""
- Class providing read write access to a strength of a simulator
+ Provide read/write access to a simulated magnet strength.
+
+ The accessor aggregates the selected lattice polynomial over all mapped
+ elements and distributes writes across those elements.
+
+ Parameters
+ ----------
+ elements : list[at.Element]
+ Accelerator Toolbox elements making up the magnet; their contributions are summed.
+ poly : PolynomInfo
+ Polynomial component driven by this accessor: the ``PolynomA``/``PolynomB`` attribute name, its multipole
+ index and the sign convention.
+ model : MagnetModel
+ Magnet model used to convert between physical strength and hardware value.
+
+ Methods
+ -------
+ get_element_length()
+ Return the total length of the represented element.
+ get(polynom=None, polyidx=None)
+ Return the current value.
+ set(value, polynom=None, polyidx=None)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
+ get_model()
+ Return the associated magnet model.
"""
def __init__(self, elements: list[at.Element], poly: PolynomInfo, model: MagnetModel):
- self.__model = model
- self.__elements = elements
- self.__poly = [e.__getattribute__(poly.attName) for e in elements]
- self.__sign = poly.sign
- self.__polyIdx = poly.index
- self.__length = 0
+ """
+ Initialize the RWStrengthScalar.
+ """
+ self._model = model
+ self._elements = elements
+ self._poly = [e.__getattribute__(poly.attName) for e in elements]
+ self._sign = poly.sign
+ self._polyIdx = poly.index
+ self._length = 0
for e in elements:
- self.__length += e.Length
+ self._length += e.Length
def get_element_length(self) -> float:
- return self.__length
+ """Return the total length of the represented element."""
+ return self._length
# Gets the value
- def get(self) -> float:
+ def get(self, polynom: str = None, polyidx: int = None) -> float:
+ """
+ Return the current value.
+
+ Parameters
+ ----------
+ polynom : str
+ Lattice polynomial to address, ``"PolynomA"`` or ``"PolynomB"``. Defaults to the component configured for
+ this accessor.
+ polyidx : int
+ Multipole index within ``polynom``. Only used when ``polynom`` is given.
+
+ Returns
+ -------
+ float
+ Integrated strength summed over the lattice elements.
+ """
+ if polynom is None:
+ pIdx = self._polyIdx
+ poly = self._poly
+ else:
+ # Override strength access
+ pIdx = polyidx
+ poly = [e.__getattribute__(polynom) for e in self._elements]
+
s = 0
- for idx, e in enumerate(self.__elements):
- s += self.__poly[idx][self.__polyIdx] * self.__sign * e.Length
+ for idx, e in enumerate(self._elements):
+ s += poly[idx][pIdx] * self._sign * e.Length
return s
# Sets the value
- def set(self, value: float):
- for idx, _ in enumerate(self.__elements):
- self.__poly[idx][self.__polyIdx] = value / (self.__length * self.__sign)
+ def set(self, value: float, polynom: str = None, polyidx: int = None):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ Integrated strength to apply, distributed over the lattice elements.
+ polynom : str
+ Lattice polynomial to address, ``"PolynomA"`` or ``"PolynomB"``. Defaults to the component configured for
+ this accessor.
+ polyidx : int
+ Multipole index within ``polynom``. Only used when ``polynom`` is given.
+ """
+ if polynom is None:
+ pIdx = self._polyIdx
+ poly = self._poly
+ else:
+ # Override strength access
+ pIdx = polyidx
+ poly = [e.__getattribute__(polynom) for e in self._elements]
+
+ for idx, _ in enumerate(self._elements):
+ poly[idx][pIdx] = value / (self._length * self._sign)
# Sets the value and wait that the read value reach the setpoint
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Integrated strength to apply, distributed over the lattice elements.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> str:
- return self.__model.get_strength_units()[0]
+ """Return the value unit."""
+ return self._model.get_strength_units()[0]
# ------------------------------------------------------------------------------
def get_model(self) -> MagnetModel:
- return self.__model
+ """Return the associated magnet model."""
+ return self._model
# ------------------------------------------------------------------------------
class RWSerializedHardware(abstract.ReadWriteFloatScalar):
+ """
+ RWSerializedHardware configuration or runtime object.
+
+ Parameters
+ ----------
+ elements : list[RWHardwareScalar]
+ Hardware accessors of the magnets sharing the serialized power supply.
+ element_index : int
+ Index of the magnet this accessor represents within the serialized group.
+
+ Methods
+ -------
+ get_element_length()
+ Return the total length of the represented element.
+ get_total_length()
+ Return the total length of the represented elements.
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+ """
+
def __init__(self, elements: list[RWHardwareScalar], element_index: int):
+ """
+ Initialize the RWSerializedHardware.
+ """
self.__elements = elements
self.__element_index = element_index
self.__total_length = 0
@@ -114,38 +296,104 @@ def __init__(self, elements: list[RWHardwareScalar], element_index: int):
self.__total_length += e.get_length()
def get_element_length(self) -> float:
+ """Return the total length of the represented element."""
return self.__elements[self.__element_index].get_length()
def get_total_length(self) -> float:
+ """Return the total length of the represented elements."""
return self.__total_length
# Gets the value
def get(self) -> float:
+ """Return the current value."""
return self.__elements[self.__element_index].get()
# Sets the value
def set(self, value: float):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ Hardware value to apply to the whole serialized group.
+ """
[element.set(value) for element in self.__elements]
# Sets the value and wait that the read value reach the setpoint
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Hardware value to apply to the whole serialized group.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> str:
+ """Return the value unit."""
return self.__elements[self.__element_index].unit()
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres, used to convert strengths to hardware values.
+ """
[element.get_model().set_magnet_rigidity(brho) for element in self.__elements]
class RWSerializedStrength(abstract.ReadWriteFloatScalar):
+ """
+ RWSerializedStrength configuration or runtime object.
+
+ Parameters
+ ----------
+ elements_strength : list[RWStrengthScalar]
+ Strength accessors of the magnets sharing the serialized power supply.
+ elements_hardware : list[RWHardwareScalar]
+ Hardware accessors of the same magnets, used to apply the shared setpoint.
+ element_index : int
+ Index of the magnet this accessor represents within the serialized group.
+
+ Methods
+ -------
+ get_element_length()
+ Return the total length of the represented element.
+ get_total_length()
+ Return the total length of the represented elements.
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+ """
+
def __init__(
self,
elements_strength: list[RWStrengthScalar],
elements_hardware: list[RWHardwareScalar],
element_index: int,
):
+ """
+ Initialize the RWSerializedStrength.
+ """
self.__element = elements_strength[element_index]
self.__elements_strength = elements_strength
self.__elements_hardware = elements_hardware
@@ -155,17 +403,28 @@ def __init__(
self.__total_length += e.get_length()
def get_element_length(self) -> float:
+ """Return the total length of the represented element."""
return self.__element.get_element_length()
def get_total_length(self) -> float:
+ """Return the total length of the represented elements."""
return self.__total_length
# Gets the value
def get(self) -> float:
+ """Return the current value."""
return self.__elements_strength[self.__element_index].get()
# Sets the value
def set(self, value: float):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ Strength to apply to the magnet, converted to the shared hardware setpoint.
+ """
elements_values = [value * e.get_length() / self.get_total_length() for e in self.__elements_hardware]
self.__element.set(elements_values[self.__element_index])
@@ -182,13 +441,35 @@ def set(self, value: float):
# Sets the value and wait that the read value reach the setpoint
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Strength to apply to the magnet, converted to the shared hardware setpoint.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> str:
+ """Return the value unit."""
return self.__element.unit()
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres, used to convert strengths to hardware values.
+ """
pass
@@ -196,9 +477,33 @@ class RWHardwareArray(abstract.ReadWriteFloatArray):
"""
Class providing read write access to a magnet of a simulator in hardware units.
Hardware units are converted from strengths using the magnet model
+
+ Parameters
+ ----------
+ elements : list[at.Element]
+ Accelerator Toolbox elements of every magnet in the array.
+ poly : list[PolynomInfo]
+ Polynomial component for each magnet, giving the ``PolynomA``/``PolynomB`` attribute name, multipole index
+ and sign convention.
+ model : MagnetModel
+ Magnet model used to convert between physical strength and hardware value.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
"""
def __init__(self, elements: list[at.Element], poly: list[PolynomInfo], model: MagnetModel):
+ """
+ Initialize the RWHardwareArray.
+ """
self.__elements = elements
self.__poly = []
self.__polyIdx = []
@@ -211,6 +516,7 @@ def __init__(self, elements: list[at.Element], poly: list[PolynomInfo], model: M
# Gets the value
def get(self) -> np.array:
+ """Return the current value."""
nbStrength = len(self.__poly)
s = np.zeros(nbStrength)
for i in range(nbStrength):
@@ -219,6 +525,14 @@ def get(self) -> np.array:
# Sets the value
def set(self, value: np.array):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : np.array
+ Hardware values to apply, one per magnet and ordered like the array.
+ """
nbStrength = len(self.__poly)
s = self.__model.compute_strengths(value)
for i in range(nbStrength):
@@ -226,10 +540,24 @@ def set(self, value: np.array):
# Sets the value and wait that the read value reach the setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : np.array
+ Hardware values to apply, one per magnet and ordered like the array.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> list[str]:
+ """Return the value unit."""
return self.__model.get_hardware_units()
@@ -239,9 +567,33 @@ def unit(self) -> list[str]:
class RWStrengthArray(abstract.ReadWriteFloatArray):
"""
Class providing read write access to a strength (array) of a simulator
+
+ Parameters
+ ----------
+ elements : list[at.Element]
+ Accelerator Toolbox elements of every magnet in the array.
+ poly : list[PolynomInfo]
+ Polynomial component for each magnet, giving the ``PolynomA``/``PolynomB`` attribute name, multipole index
+ and sign convention.
+ model : MagnetModel
+ Magnet model used to convert between physical strength and hardware value.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
"""
def __init__(self, elements: list[at.Element], poly: list[PolynomInfo], model: MagnetModel):
+ """
+ Initialize the RWStrengthArray.
+ """
self.__elements = elements
self.__poly = []
self.__polyIdx = []
@@ -254,6 +606,7 @@ def __init__(self, elements: list[at.Element], poly: list[PolynomInfo], model: M
# Gets the value
def get(self) -> np.array:
+ """Return the current value."""
nbStrength = len(self.__poly)
s = np.zeros(nbStrength)
for i in range(nbStrength):
@@ -262,6 +615,14 @@ def get(self) -> np.array:
# Sets the value
def set(self, value: np.array):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : np.array
+ Integrated strengths to apply, one per magnet and ordered like the array.
+ """
nbStrength = len(self.__poly)
s = np.zeros(nbStrength)
for i in range(nbStrength):
@@ -269,10 +630,24 @@ def set(self, value: np.array):
# Sets the value and wait that the read value reach the setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : np.array
+ Integrated strengths to apply, one per magnet and ordered like the array.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> list[str]:
+ """Return the value unit."""
return self.__model.get_strength_units()
@@ -282,43 +657,107 @@ def unit(self) -> list[str]:
class BPMScalarAggregator(ScalarAggregator):
"""
BPM simulator aggregator
+
+ Parameters
+ ----------
+ ring : at.Lattice
+ Lattice used to resolve element positions into reference points.
+
+ Methods
+ -------
+ add_elem(elem)
+ Add a lattice element to the aggregate.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ get()
+ Return the current value.
+ readback()
+ Return the current readback value.
+ unit()
+ Return the value unit.
"""
def __init__(self, ring: at.Lattice):
- self.lattice = ring
- self.refpts = []
+ """
+ Initialize the BPMScalarAggregator.
+ """
+ self._lattice = ring
+ self._refpts = []
+ self._matrices = []
def add_elem(self, elem: at.Element):
- self.refpts.append(self.lattice.index(elem))
+ """
+ Add a lattice element to the aggregate.
+
+ Parameters
+ ----------
+ elem : at.Element
+ BPM lattice element to append to the aggregate.
+ """
+ self._refpts.append(self._lattice.index(elem))
+ self._matrices.append(elem._transform)
def set(self, value: NDArray[np.float64]):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : NDArray[np.float64]
+ Ignored. BPM readings derive from the closed orbit and cannot be written.
+ """
pass
def set_and_wait(self, value: NDArray[np.float64]):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : NDArray[np.float64]
+ Ignored. BPM readings derive from the closed orbit and cannot be written.
+ """
pass
def get(self) -> np.array:
- _, orbit = at.find_orbit(self.lattice, refpts=self.refpts)
- return orbit[:, [0, 2]].flatten()
+ """Return the current value."""
+ return self._transform().flatten()
def readback(self) -> np.array:
+ """Return the current readback value."""
return self.get()
def unit(self) -> str:
+ """Return the value unit."""
return "m"
+ def _transform(self) -> np.array:
+ """Transform the configured value for the lattice interface."""
+ _, orbit = at.find_orbit(self._lattice, refpts=self._refpts)
+ ones = np.ones(len(self._refpts))
+ pts = orbit[:, [0, 2]] # Extract x,y
+ # Batch matrices multiplication (homogeneous coordinates)
+ return np.matmul(self._matrices, np.column_stack([pts, ones])[:, :, None]).squeeze(-1)
+
# ------------------------------------------------------------------------------
class BPMHScalarAggregator(BPMScalarAggregator):
"""
- Vertical BPM simulator aggregator
+ Horizontal BPM simulator aggregator
+
+ Methods
+ -------
+ get()
+ Return the current value.
"""
def get(self) -> np.array:
- _, orbit = at.find_orbit(self.lattice, refpts=self.refpts)
- return orbit[:, 0]
+ """Return the current value."""
+ return self._transform()[:, 0]
# ------------------------------------------------------------------------------
@@ -326,37 +765,86 @@ def get(self) -> np.array:
class BPMVScalarAggregator(BPMScalarAggregator):
"""
- Horizontal BPM simulator aggregator
+ Vertical BPM simulator aggregator
+
+ Methods
+ -------
+ get()
+ Return the current value.
"""
def get(self) -> np.array:
- _, orbit = at.find_orbit(self.lattice, refpts=self.refpts)
- return orbit[:, 2]
+ """Return the current value."""
+ return self._transform()[:, 1]
# ------------------------------------------------------------------------------
+def update_bpm_transform_matrix(element: at.Element):
+ # BPM transformation matrix (homogeneous coordinates)
+ """
+ Update the coordinate transform for a beam-position monitor.
+
+ The transform combines the BPM element's horizontal and vertical offsets
+ with its tilt, allowing measured positions to be expressed in the BPM
+ coordinate system.
+
+ Parameters
+ ----------
+ element : at.Element
+ BPM lattice element with ``Offset`` and ``Tilt`` attributes. The
+ resulting matrix is stored on the element as ``_transform``.
+ """
+ tx = element.Offset[0]
+ ty = element.Offset[1]
+ cos_theta = np.cos(element.Tilt)
+ sin_theta = np.sin(element.Tilt)
+ if not hasattr(element, "_transform"):
+ element._transform = np.empty((2, 3))
+ element._transform[:, :] = [[cos_theta, -sin_theta, tx], [sin_theta, cos_theta, ty]]
+
+
class RBpmArray(abstract.ReadFloatArray):
"""
Class providing read access to a BPM position (array) of a simulator.
Position in pyAT is calculated using find_orbit function, which returns the
orbit at a specified index. The position is then extracted from the orbit
array as the first two elements (x, y).
+
+ Parameters
+ ----------
+ element : at.Element
+ BPM lattice element whose position is read.
+ lattice : at.Lattice
+ Lattice on which the closed orbit is computed.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ unit()
+ Return the value unit.
"""
def __init__(self, element: at.Element, lattice: at.Lattice):
- self.__element = element
- self.__lattice = lattice
+ """
+ Initialize the RBpmArray.
+ """
+ self._element = element
+ self._lattice = lattice
# Gets the value
def get(self) -> np.array:
- index = self.__lattice.index(self.__element)
- _, orbit = at.find_orbit(self.__lattice, refpts=index)
- return orbit[0, [0, 2]]
+ """Return the current value."""
+ index = self._lattice.index(self._element)
+ _, orbit = at.find_orbit(self._lattice, refpts=index)
+ pts = orbit[0, [0, 2]]
+ return np.dot(self._element._transform, np.hstack([pts, 1])) # Use homogeneous coordinates
# Gets the unit of the value
def unit(self) -> str:
+ """Return the value unit."""
return "m"
@@ -367,35 +855,68 @@ class RWBpmOffsetArray(abstract.ReadWriteFloatArray):
"""
Class providing read write access to a BPM offset (array) of a simulator.
Offset in pyAT is defined in Offset attribute as a 2-element array.
+
+ Parameters
+ ----------
+ element : at.Element
+ BPM lattice element whose ``Offset`` attribute is accessed.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
"""
def __init__(self, element: at.Element):
- self.__element = element
- try:
- self.__offset = element.__getattribute__("Offset")
- except AttributeError:
- self.__offset = None
+ """
+ Initialize the RWBpmOffsetArray.
+ """
+ self._element = element
# Gets the value
def get(self) -> np.array:
- if self.__offset is None:
- raise PyAMLException("Element does not have an Offset attribute.")
- return self.__offset
+ """Return the current value."""
+ return self._element.Offset
# Sets the value
def set(self, value: np.array):
- if self.__offset is None:
- raise PyAMLException("Element does not have an Offset attribute.")
- if len(value) != 2:
- raise PyAMLException("BPM offset must be a 2-element array.")
- self.__offset = value
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : np.array
+ Two-element array with the horizontal and vertical offsets, in metres.
+ """
+ self._element.Offset = value
+ update_bpm_transform_matrix(self._element)
# Sets the value and wait that the read value reach the setpoint
def set_and_wait(self, value: np.array):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : np.array
+ Two-element array with the horizontal and vertical offsets, in metres.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> str:
+ """Return the value unit."""
return "m" # Assuming all offsets are in m
@@ -404,37 +925,75 @@ def unit(self) -> str:
class RWBpmTiltScalar(abstract.ReadWriteFloatScalar):
"""
- Class providing read write access to a BPM tilt of a simulator. Tilt in
- pyAT is defined in Rotation attribute as a first element.
+ Provide read/write access to a simulated BPM tilt.
+
+ The value is read from and written to the Accelerator Toolbox ``Tilt``
+ attribute. Writing the tilt also refreshes the BPM coordinate transform.
+
+ Parameters
+ ----------
+ element : at.Element
+ BPM lattice element whose ``Tilt`` attribute is accessed.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
"""
def __init__(self, element: at.Element):
- self.__element = element
- try:
- self.__tilt = element.__getattribute__("Rotation")[0]
- except AttributeError:
- self.__tilt = None
+ """
+ Initialize a BPM-tilt accessor.
+ """
+ self._element = element
# Gets the value
def get(self) -> float:
- if self.__tilt is None:
- raise ValueError("Element does not have a Tilt attribute.")
- return self.__tilt
+ """Return the current value."""
+ return self._element.Tilt
# Sets the value
def set(
self,
value: float,
):
- self.__tilt = value
- self.__element.__setattr__("Rotation", [value, None, None])
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ Tilt angle to apply, in radians.
+ """
+ self._element.Tilt = value
+ update_bpm_transform_matrix(self._element)
# Sets the value and wait that the read value reach the setpoint
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Tilt angle to apply, in radians.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
# Gets the unit of the value
def unit(self) -> str:
+ """Return the value unit."""
return "rad" # Assuming BPM tilts are in rad
@@ -445,26 +1004,68 @@ class RWRFVoltageScalar(abstract.ReadWriteFloatScalar):
"""
Class providing read write access to a cavity voltage
of a simulator for a given RF trasnmitter.
+
+ Parameters
+ ----------
+ elements : list[at.Element]
+ RF cavity elements sharing this voltage setpoint.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
"""
def __init__(self, elements: list[at.Element]):
+ """
+ Initialize the RWRFVoltageScalar.
+ """
self.__elements = elements
def get(self) -> float:
+ """Return the current value."""
sum = 0
for _idx, e in enumerate(self.__elements):
sum += e.Voltage
return sum
def set(self, value: float):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ Cavity voltage to apply, in volts.
+ """
v = value / len(self.__elements)
for e in self.__elements:
e.Voltage = v
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Cavity voltage to apply, in volts.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
+ """Return the value unit."""
return "V"
@@ -473,28 +1074,73 @@ def unit(self) -> str:
class RWRFPhaseScalar(abstract.ReadWriteFloatScalar):
"""
- Class providing read write access to a cavity phase of
- a simulator for a given RF trasnmitter.
+ Provide read/write access to the phase of simulated RF cavities.
+
+ Accelerator Toolbox represents the phase through each cavity's
+ ``TimeLag`` attribute. This accessor uses the first cavity's frequency and
+ keeps the phase synchronized across all cavities in the transmitter.
+
+ Parameters
+ ----------
+ elements : list[at.Element]
+ RF cavity elements sharing the transmitter phase.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
"""
def __init__(self, elements: list[at.Element]):
+ """
+ Initialize an RF-cavity phase accessor.
+ """
self.__elements = elements
def get(self) -> float:
# Assume that all cavities of this transmitter
# have the same Time Lag and Frequency
+ """Return the current value."""
wavelength = speed_of_light / self.__elements[0].Frequency
return (wavelength / self.__elements[0].TimeLag) * 2.0 * np.pi
def set(self, value: float):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ Cavity phase to apply, in radians.
+ """
wavelength = speed_of_light / self.__elements[0].Frequency
for e in self.__elements:
e.TimeLag = wavelength * value / (2.0 * np.pi)
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Cavity phase to apply, in radians.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
+ """Return the value unit."""
return "rad"
@@ -504,24 +1150,68 @@ def unit(self) -> str:
class RWRFFrequencyScalar(abstract.ReadWriteFloatScalar):
"""
Class providing read write access to RF frequency of a simulator.
+
+ Parameters
+ ----------
+ elements : list[at.Element]
+ RF cavity elements driven by this frequency setpoint.
+ harmonics : list[float]
+ Multiplier applied to the requested frequency for each cavity.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
"""
def __init__(self, elements: list[at.Element], harmonics: list[float]):
+ """
+ Initialize the RWRFFrequencyScalar.
+ """
self.__elements = elements
self.__harm = harmonics
def get(self) -> float:
# Serialized cavity has the same frequency
+ """Return the current value."""
return self.__elements[0].Frequency
def set(self, value: float):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ Fundamental RF frequency to apply, in hertz.
+ """
for idx, e in enumerate(self.__elements):
e.Frequency = value * self.__harm[idx]
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Frequency setpoint. Not implemented by the simulator.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
+ """Return the value unit."""
return "Hz"
@@ -530,23 +1220,67 @@ def unit(self) -> str:
class RWRFATFrequencyScalar(abstract.ReadWriteFloatScalar):
"""
- Class providing read write access to RF frequency of a simulator using
- AT methods.
+ Provide read/write access to simulated RF frequency through AT methods.
+
+ The accessor delegates frequency reads and writes to
+ ``Lattice.get_rf_frequency`` and ``Lattice.set_rf_frequency``.
+
+ Parameters
+ ----------
+ ring : at.Lattice
+ Accelerator Toolbox lattice whose RF frequency is accessed.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
"""
def __init__(self, ring: at.Lattice):
+ """
+ Initialize an Accelerator Toolbox RF-frequency accessor.
+ """
self.__ring = ring
def get(self) -> float:
+ """Return the current value."""
return self.__ring.get_rf_frequency()
def set(self, value: float):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ RF frequency to apply, in hertz.
+ """
self.__ring.set_rf_frequency(value)
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ RF frequency to apply, in hertz.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
+ """Return the value unit."""
return "Hz"
@@ -555,22 +1289,67 @@ def unit(self) -> str:
class RWRFATotalVoltageScalar(abstract.ReadWriteFloatScalar):
"""
- Class providing read write access to a RF voltage of a simulator using AT methods.
+ Provide read/write access to total simulated RF voltage.
+
+ The accessor delegates to the Accelerator Toolbox lattice methods
+ ``get_rf_voltage`` and ``set_rf_voltage``.
+
+ Parameters
+ ----------
+ ring : at.Lattice
+ Accelerator Toolbox lattice whose total RF voltage is accessed.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ set(value)
+ Set the current value.
+ set_and_wait(value)
+ Set the value and wait for readback convergence.
+ unit()
+ Return the value unit.
"""
def __init__(self, ring: at.Lattice):
+ """
+ Initialize an Accelerator Toolbox RF-voltage accessor.
+ """
self.__ring = ring
def get(self) -> float:
+ """Return the current value."""
return self.__ring.get_rf_voltage()
def set(self, value: float):
+ """
+ Set the current value.
+
+ Parameters
+ ----------
+ value : float
+ Total RF voltage to apply over the whole ring, in volts.
+ """
self.__ring.set_rf_voltage(value)
def set_and_wait(self, value: float):
+ """
+ Set the value and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Total RF voltage to apply over the whole ring, in volts.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
+ """Return the value unit."""
return "V"
@@ -580,15 +1359,32 @@ def unit(self) -> str:
class RBetatronTuneArray(abstract.ReadFloatArray):
"""
Class providing read-only access to the betatron tune of a ring.
+
+ Parameters
+ ----------
+ ring : at.Lattice
+ Accelerator Toolbox lattice whose betatron tunes are computed.
+
+ Methods
+ -------
+ get()
+ Return the current value.
+ unit()
+ Return the value unit.
"""
def __init__(self, ring: at.Lattice):
+ """
+ Initialize the RBetatronTuneArray.
+ """
self.__ring = ring
def get(self) -> float:
+ """Return the current value."""
return self.__ring.get_tune()[:2]
def unit(self) -> str:
+ """Return the value unit."""
return "1"
diff --git a/pyaml/lattice/attribute_linker.py b/pyaml/lattice/attribute_linker.py
index 793726f1b..affa5bcf3 100644
--- a/pyaml/lattice/attribute_linker.py
+++ b/pyaml/lattice/attribute_linker.py
@@ -1,5 +1,13 @@
+"""
+Link PyAML elements to Accelerator Toolbox elements by attributes.
+
+This module compares a configured PyAT attribute with a PyAML element name to
+identify the corresponding lattice element during simulator initialization.
+"""
+
+from dataclasses import dataclass
+
import at
-from pydantic import ConfigDict
from pyaml.common.element import Element
from pyaml.lattice.lattice_elements_linker import (
@@ -8,61 +16,83 @@
LinkerIdentifier,
)
-PYAMLCLASS = "PyAtAttributeElementsLinker"
+from ..validation import DynamicValidation, register_schema
+PYAMLCLASS = "PyAtAttributeElementsLinker"
-class ConfigModel(LinkerConfigModel):
- """Base configuration model for linker definitions.
- This class defines the configuration structure used to instantiate
- a specific linking strategy. Each concrete implementation of a
- `LatticeElementsLinker` may define its own subclass extending this model
- to include additional configuration parameters.
+@dataclass
+class PyAtAttributeConfigModel(LinkerConfigModel):
+ """
+ Configuration model for ``PyAtAttributeElementsLinker``.
- Attributes
+ Parameters
----------
- model_config : ConfigDict
- Pydantic configuration allowing arbitrary field types and forbidding
- unexpected extra keys.
+ attribute_name : str
+ Name of the PyAT element attribute used to identify matching
+ lattice elements.
"""
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
attribute_name: str
class PyAtAttributeIdentifier(LinkerIdentifier):
- """Abstract base class for identifiers used to match PyAML and PyAT elements.
-
- The identifier acts as an intermediate representation between the PyAML
- configuration and the PyAT lattice. Its exact structure depends on the
- linking strategy (e.g., family name, element index, or user-defined tag).
+ """
+ Identifier based on a PyAT element attribute.
- Subclasses should define the fields and logic necessary to represent
- a unique reference to one or more PyAT elements.
+ Parameters
+ ----------
+ attribute_name : str
+ Name of the PyAT attribute used for matching.
+ identifier : object
+ Expected value of the attribute, compared with ``attribute_name`` on each element.
"""
def __init__(self, attribute_name: str, identifier):
+ """
+ Create an attribute-based lattice-element identifier.
+
+ The identifier is later compared with the value of ``attribute_name``
+ on each PyAT element considered by the linker.
+ """
self.attribute_name = attribute_name
self.identifier = identifier
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return f"{self.attribute_name}={self.identifier}"
-class PyAtAttributeElementsLinker(LatticeElementsLinker):
- """Abstract base class defining the interface for PyAT–PyAML element linking.
+@register_schema
+class PyAtAttributeElementsLinker(LatticeElementsLinker, DynamicValidation):
+ """
+ Link lattice elements using a specified PyAT element attribute.
- Implementations of this class define how PyAML elements are matched
- to PyAT elements based on a given linking strategy (e.g., by family name,
- by index, or by a custom attribute).
+ This linker associates PyAML elements with PyAT elements by comparing
+ the value of a configurable PyAT attribute against the identifier
+ extracted from the PyAML element.
Parameters
----------
- config_model : ConfigModel
- The configuration model for the linking strategy.
+ attribute_name : str
+ Name of the PyAT attribute used to identify matching elements.
+
+ Methods
+ -------
+ get_element_identifier(element)
+ Get the element identifier for the given element.
"""
- def __init__(self, config_model: ConfigModel):
+ def __init__(self, attribute_name: str):
+ """
+ Configure an attribute-based PyAT element linker.
+
+ During simulator initialization, the linker compares this attribute's
+ value on each PyAT element with the corresponding PyAML element name.
+ """
+ config_model = PyAtAttributeConfigModel(attribute_name)
super().__init__(config_model)
def get_element_identifier(self, element: Element) -> LinkerIdentifier:
@@ -82,5 +112,20 @@ def get_element_identifier(self, element: Element) -> LinkerIdentifier:
return PyAtAttributeIdentifier(self.linker_config_model.attribute_name, element.get_name())
def _test_at_element(self, identifier: PyAtAttributeIdentifier, element: at.Element) -> bool:
+ """
+ Check whether a PyAT element matches a linker identifier.
+
+ Parameters
+ ----------
+ identifier : PyAtAttributeIdentifier
+ Attribute name and expected identifier to compare.
+ element : at.Element
+ PyAT lattice element being tested.
+
+ Returns
+ -------
+ bool
+ ``True`` if the attribute value matches; otherwise ``False``.
+ """
attr_value = getattr(element, identifier.attribute_name, None)
return attr_value == identifier.identifier
diff --git a/pyaml/lattice/lattice_elements_linker.py b/pyaml/lattice/lattice_elements_linker.py
index de83cf33c..ef11e559b 100644
--- a/pyaml/lattice/lattice_elements_linker.py
+++ b/pyaml/lattice/lattice_elements_linker.py
@@ -1,34 +1,36 @@
-from abc import ABCMeta, abstractmethod
+"""
+Interfaces for linking PyAML elements to PyAT lattice elements.
+
+Linkers translate PyAML element references into matching Accelerator Toolbox
+elements and provide the runtime objects used by simulator accessors.
+"""
+
+from abc import ABC, abstractmethod
from typing import Iterable
import at
from at import Lattice
-from pydantic import BaseModel, ConfigDict
from pyaml import PyAMLException
from pyaml.common.element import Element
-class LinkerConfigModel(BaseModel):
- """Base configuration model for linker definitions.
+class LinkerConfigModel(ABC):
+ """
+ Base configuration model for linker definitions.
This class defines the configuration structure used to instantiate
a specific linking strategy. Each concrete implementation of a
`LatticeElementsLinker` may define its own subclass extending this model
to include additional configuration parameters.
-
- Attributes
- ----------
- model_config : ConfigDict
- Pydantic configuration allowing arbitrary field types and forbidding
- unexpected extra keys.
"""
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ pass
-class LinkerIdentifier(metaclass=ABCMeta):
- """Abstract base class for identifiers used to match PyAML and PyAT elements.
+class LinkerIdentifier(ABC):
+ """
+ Abstract base class for identifiers used to match PyAML and PyAT elements.
The identifier acts as an intermediate representation between the PyAML
configuration and the PyAT lattice. Its exact structure depends on the
@@ -41,27 +43,45 @@ class LinkerIdentifier(metaclass=ABCMeta):
pass
-class LatticeElementsLinker(metaclass=ABCMeta):
- """Abstract base class defining the interface for PyAT–PyAML element linking.
+class LatticeElementsLinker(ABC):
+ """
+ Abstract base class defining the interface for PyAT–PyAML element linking.
Implementations of this class define how PyAML elements are matched
to PyAT elements based on a given linking strategy (e.g., by family name,
by index, or by a custom attribute).
+ linker_config_model : LinkerConfigModel
+ The configuration model for the linking strategy.
+
Parameters
----------
linker_config_model : LinkerConfigModel
- The configuration model for the linking strategy.
+ Strategy-specific configuration used to identify lattice elements.
Attributes
----------
lattice : at.Lattice
Reference to the PyAT lattice handled by this linker.
+
+ Methods
+ -------
+ set_lattice(lattice)
+ Set the lattice for element linking.
+ get_element_identifier(element)
+ Get the identifier for linking an element.
+ get_at_elements(element_id)
+ Return a list of PyAT elements matching the given identifiers.
+ get_at_element(element_id)
+ Return a single PyAT element matching the given identifier.
"""
def __init__(self, linker_config_model: LinkerConfigModel):
+ """
+ Initialize a lattice-element linker.
+ """
self.linker_config_model = linker_config_model
- self.lattice: Lattice = None
+ self.lattice: Lattice | None = None
def set_lattice(self, lattice: Lattice):
"""
@@ -76,6 +96,21 @@ def set_lattice(self, lattice: Lattice):
@abstractmethod
def _test_at_element(self, identifier: LinkerIdentifier, element: at.Element) -> bool:
+ """
+ Test whether a PyAT element matches a linker identifier.
+
+ Parameters
+ ----------
+ identifier : LinkerIdentifier
+ Identifier describing the desired lattice element.
+ element : at.Element
+ PyAT lattice element to test.
+
+ Returns
+ -------
+ bool
+ ``True`` if the element matches; otherwise ``False``.
+ """
pass
@abstractmethod
@@ -96,13 +131,22 @@ def get_element_identifier(self, element: Element) -> LinkerIdentifier:
pass
def _iter_matches(self, identifier: LinkerIdentifier) -> Iterable[at.Element]:
- """Yield all elements in the lattice whose matches the identifier."""
- for elem in self.lattice:
- if self._test_at_element(identifier, elem):
- yield elem
+ """
+ Yield all lattice elements matching ``identifier``.
+
+ Parameters
+ ----------
+ identifier : LinkerIdentifier
+ Criterion used to select the PyAT elements.
+ """
+ if self.lattice:
+ for elem in self.lattice:
+ if self._test_at_element(identifier, elem):
+ yield elem
def get_at_elements(self, element_id: LinkerIdentifier | list[LinkerIdentifier]) -> list[at.Element]:
- """Return a list of PyAT elements matching the given identifiers.
+ """
+ Return a list of PyAT elements matching the given identifiers.
This method should resolve one or multiple PyAML identifiers
into their corresponding PyAT elements according to the specific
@@ -138,7 +182,8 @@ def get_at_elements(self, element_id: LinkerIdentifier | list[LinkerIdentifier])
return results
def get_at_element(self, element_id: LinkerIdentifier) -> at.Element:
- """Return a single PyAT element matching the given identifier.
+ """
+ Return a single PyAT element matching the given identifier.
Parameters
----------
diff --git a/pyaml/lattice/polynom_info.py b/pyaml/lattice/polynom_info.py
index 6e03a49d7..8ac515e46 100644
--- a/pyaml/lattice/polynom_info.py
+++ b/pyaml/lattice/polynom_info.py
@@ -6,18 +6,18 @@
class PolynomInfo:
"""
Polynom information
+
+ Parameters
+ ----------
+ attName : str
+ Name of the AT element attribute ('PolynomA' or 'PolynomB')
+ index : int
+ Polynomial coefficients index (sarting from 0)
"""
def __init__(self, attName: str, index: int, sign: float = 1.0):
"""
Construct a polynom information object
-
- Parameters
- ----------
- attName : str
- Name of the AT element attribute ('PolynomA' or 'PolynomB')
- index : int
- Polynomial coefficients index (sarting from 0)
"""
self.attName = attName
self.index = index
diff --git a/pyaml/lattice/simulator.py b/pyaml/lattice/simulator.py
index a877588aa..810928250 100644
--- a/pyaml/lattice/simulator.py
+++ b/pyaml/lattice/simulator.py
@@ -1,14 +1,21 @@
+"""
+PyAT-backed accelerator simulator interfaces.
+
+This module loads Accelerator Toolbox lattices and binds PyAML elements to
+their simulated lattice counterparts.
+"""
+
from pathlib import Path
+from typing import TYPE_CHECKING
import at
-from pydantic import BaseModel, ConfigDict
from ..bpm.bpm import BPM
from ..common.abstract_aggregator import ScalarAggregator
-from ..common.element import Element
-from ..common.element_holder import ElementHolder
+from ..common.element import Element, __pyaml_repr__
from ..common.exception import PyAMLException
-from ..configuration import get_root_folder
+from ..common.holders.element_holder import ElementHolder
+from ..configuration import ROOT
from ..diagnostics.tune_monitor import BetatronTuneMonitor
from ..lattice.abstract_impl import (
BPMHScalarAggregator,
@@ -29,6 +36,7 @@
RWSerializedStrength,
RWStrengthArray,
RWStrengthScalar,
+ update_bpm_transform_matrix,
)
from ..magnet.cfm_magnet import CombinedFunctionMagnet
from ..magnet.magnet import Magnet
@@ -37,61 +45,104 @@
from ..rf.rf_transmitter import RFTransmitter
from ..tuning_tools.measurement_tool import MeasurementTool
from ..tuning_tools.tuning_tool import TuningTool
-from .attribute_linker import (
- ConfigModel as PyAtAttrLinkerConfigModel,
-)
-from .attribute_linker import (
- PyAtAttributeElementsLinker,
-)
+from ..validation import DynamicValidation, register_schema
from .lattice_elements_linker import LatticeElementsLinker
+if TYPE_CHECKING:
+ from ..configuration.unbound_element import UnboundElement
+
# Define the main class name for this module
PYAMLCLASS = "Simulator"
-class ConfigModel(BaseModel):
+@register_schema
+class Simulator(ElementHolder, DynamicValidation):
"""
- Configuration model for Simulator
+ Simulator interface backed by a PyAT lattice.
+
+ The simulator loads a PyAT lattice from disk and attaches PyAML
+ elements to their corresponding PyAT elements. Once attached, the
+ resulting device objects expose read/write interfaces operating
+ directly on the simulation model.
+
+ Elements may be matched either using the default name-based lookup
+ or a custom :class:`LatticeElementsLinker`.
Parameters
----------
name : str
- Simulator name
+ Name of the simulator.
lattice : str
- AT lattice file
+ Path to the PyAT lattice file, relative to the configured
+ PyAML root directory.
mat_key : str, optional
- AT lattice ring name
+ Variable name of the lattice when loading a MATLAB ``.mat``
+ lattice file.
linker : LatticeElementsLinker, optional
- The linker configuration model
- description : str , optional
- Simulator description
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ Custom linker used to associate PyAML elements with PyAT
+ lattice elements. If omitted, elements are matched by name.
+ description : str, optional
+ Human-readable description of the simulator.
- name: str
- lattice: str
- mat_key: str = None
- linker: LatticeElementsLinker = None
- description: str | None = None
+ Attributes
+ ----------
+ lattice
+ Underlying PyAT lattice.
+ mat_key
+ Key used to read the lattice out of a MATLAB file.
+
+ Methods
+ -------
+ name()
+ Return the simulator name.
+ get_lattice()
+ Return the loaded Accelerator Toolbox lattice.
+ get_description()
+ Returns the description of the accelerator
+ create_magnet_strength_aggregator(magnets)
+ Return the magnet-strength aggregator for this simulator.
+ create_magnet_hardware_aggregator(magnets)
+ Return the magnet-hardware aggregator for this simulator.
+ create_bpm_aggregators(bpms)
+ Create BPM position aggregators for the loaded lattice.
+ fill_device(elements)
+ Attach PyAML elements to their matching PyAT lattice elements.
+ get_names(element)
+ Parse element lattice_name syntax. see Element.ConfigModel.lattice_name.
+ get_indices(element)
+ Parse element lattice_name syntax. see Element.ConfigModel.lattice_name.
+ get_at_elems(element)
+ Resolve a PyAML element to matching PyAT lattice elements.
+ """
+ __pyaml_repr_exclude__ = ("description", "ring")
-class Simulator(ElementHolder):
- """
- Class that implements access to AT simulator
- """
+ def __init__(
+ self,
+ name: str,
+ lattice: str,
+ mat_key: str | None = None,
+ linker: LatticeElementsLinker | None = None,
+ description: str | None = None,
+ ):
+ """
+ Create a simulator from a PyAT lattice.
+ """
- def __init__(self, cfg: ConfigModel):
super().__init__()
- self._cfg = cfg
- path: Path = get_root_folder() / cfg.lattice
+ self._name = name
+ self._lattice = lattice
+ self._mat_key = mat_key
+ self.description = description
+
+ path: Path = ROOT.get() / self._lattice
- if self._cfg.mat_key is None:
+ if self._mat_key is None:
self.ring = at.load_lattice(path)
else:
- self.ring = at.load_lattice(path, mat_key=f"{self._cfg.mat_key}")
+ self.ring = at.load_lattice(path, mat_key=f"{self._mat_key}")
- self._linker = cfg.linker
+ self._linker = linker
if self._linker:
self._linker.set_lattice(self.ring)
else:
@@ -103,26 +154,77 @@ def __init__(self, cfg: ConfigModel):
self._elements_indexing[e.FamName] = [e]
def name(self) -> str:
- return self._cfg.name
+ """Return the simulator name."""
+ return self._name
+
+ @property
+ def lattice(self) -> str:
+ """Return the configured lattice file path."""
+ return self._lattice
def get_lattice(self) -> at.Lattice:
+ """Return the loaded Accelerator Toolbox lattice."""
return self.ring
- def get_description(self) -> str:
+ @property
+ def mat_key(self) -> str | None:
+ """Return the MATLAB variable name used to load the lattice."""
+ return self._mat_key
+
+ def get_description(self) -> str | None:
"""
Returns the description of the accelerator
"""
- return self._cfg.description
+ return self.description
def create_magnet_strength_aggregator(self, magnets: list[Magnet]) -> ScalarAggregator:
# No magnet aggregator for simulator
+ """
+ Return the magnet-strength aggregator for this simulator.
+
+ Parameters
+ ----------
+ magnets : list[Magnet]
+ Magnets for which aggregation was requested.
+
+ Returns
+ -------
+ ScalarAggregator
+ ``None`` because simulated magnet values are accessed directly.
+ """
return None
def create_magnet_hardware_aggregator(self, magnets: list[Magnet]) -> ScalarAggregator:
# No magnet aggregator for simulator
+ """
+ Return the magnet-hardware aggregator for this simulator.
+
+ Parameters
+ ----------
+ magnets : list[Magnet]
+ Magnets for which aggregation was requested.
+
+ Returns
+ -------
+ ScalarAggregator
+ ``None`` because simulated hardware values are accessed directly.
+ """
return None
def create_bpm_aggregators(self, bpms: list[BPM]) -> list[ScalarAggregator]:
+ """
+ Create BPM position aggregators for the loaded lattice.
+
+ Parameters
+ ----------
+ bpms : list[BPM]
+ BPM elements whose positions should be read.
+
+ Returns
+ -------
+ list[ScalarAggregator]
+ Aggregators for combined, horizontal, and vertical BPM positions.
+ """
agg = BPMScalarAggregator(self.get_lattice())
aggh = BPMHScalarAggregator(self.get_lattice())
aggv = BPMVScalarAggregator(self.get_lattice())
@@ -133,113 +235,97 @@ def create_bpm_aggregators(self, bpms: list[BPM]) -> list[ScalarAggregator]:
aggv.add_elem(e)
return [agg, aggh, aggv]
- def fill_device(self, elements: list[Element]):
- for e in elements:
- # Need conversion to physics unit to work with simulator
- if isinstance(e, Magnet):
- current = RWHardwareScalar(self.get_at_elems(e), e.polynom, e.model) if e.model.has_physics() else None
- strength = RWStrengthScalar(self.get_at_elems(e), e.polynom, e.model) if e.model.has_physics() else None
- # Create a unique ref for this simulator
- m = e.attach(self, strength, current)
- self.add_magnet(m)
-
- elif isinstance(e, CombinedFunctionMagnet):
- currents = RWHardwareArray(self.get_at_elems(e), e.polynoms, e.model) if e.model.has_physics() else None
- strengths = RWStrengthArray(self.get_at_elems(e), e.polynoms, e.model) if e.model.has_physics() else None
- # Create unique refs of each function for this simulator
- ms = e.attach(self, strengths, currents)
- self.add_cfm_magnet(ms[0])
- for m in ms[1:]:
- self.add_magnet(m)
-
- elif isinstance(e, SerializedMagnets):
- currents = []
- strengths = []
- # Create unique refs the series and each of its function for this
- # control system
- # Link hardware to strengths and bind strength together
- for index, magnet in enumerate(e.get_magnets()):
- current = (
- RWHardwareScalar(
- self.get_at_elems(magnet),
- e.polynom,
- e.model.get_sub_model(index),
- )
- if e.model.has_hardware()
- else None
- )
- strength = (
- RWStrengthScalar(
- self.get_at_elems(magnet),
- e.polynom,
- e.model.get_sub_model(index),
- )
- if e.model.has_physics()
- else None
- )
- currents.append(current)
- strengths.append(strength)
- linked_currents = []
- linked_strengths = []
- for i in range(e.get_nb_magnets()):
- current = RWSerializedHardware(currents, i) if e.model.has_hardware() else None
- strength = RWSerializedStrength(strengths, currents, i) if e.model.has_physics() else None
- linked_currents.append(current)
- linked_strengths.append(strength)
- ms = e.attach(self, linked_strengths, linked_currents)
- self.add_serialized_magnet(ms[0])
- for m in ms[1:]:
- self.add_magnet(m)
-
- elif isinstance(e, BPM):
- # This assumes unique BPM names in the pyAT lattice
- tilt = RWBpmTiltScalar(self.get_at_elems(e)[0])
- offsets = RWBpmOffsetArray(self.get_at_elems(e)[0])
- positions = RBpmArray(self.get_at_elems(e)[0], self.ring)
- e = e.attach(self, positions, offsets, tilt)
- self.add_bpm(e)
-
- elif isinstance(e, RFPlant):
- if e._cfg.transmitters:
- cavs: list[at.Element] = []
- harmonics: list[float] = []
- attachedTrans: list[RFTransmitter] = []
- for t in e._cfg.transmitters:
- cavsPerTrans: list[at.Element] = []
- for c in t._cfg.cavities:
- # Expect unique name for cavities
- cav = self.get_at_elems(Element(c))
- if len(cav) > 1:
- raise PyAMLException(f"RF transmitter {t.get_name()},multiple cavity definition:{{cav[0]}}")
- if len(cav) == 0:
- raise PyAMLException(f"RF transmitter {t.get_name()}, No cavity found")
- cavsPerTrans.append(cav[0])
- harmonics.append(t._cfg.harmonic)
- voltage = RWRFVoltageScalar(cavsPerTrans)
- phase = RWRFPhaseScalar(cavsPerTrans)
- nt = t.attach(self, voltage, phase)
- self.add_rf_transnmitter(nt)
- cavs.extend(cavsPerTrans)
- attachedTrans.append(nt)
-
- frequency = RWRFFrequencyScalar(cavs, harmonics)
- voltage = RWTotalVoltage(attachedTrans)
- ne = e.attach(self, frequency, voltage)
- self.add_rf_plant(ne)
- else:
- # No transmitter defined switch to AT methods
- frequency = RWRFATFrequencyScalar(self.ring)
- voltage = RWRFATotalVoltageScalar(self.ring)
- ne = e.attach(self, frequency, voltage)
- self.add_rf_plant(ne)
+ def _fill_magnet(self, magnet: Magnet) -> None:
+ current = (
+ RWHardwareScalar(self.get_at_elems(magnet), magnet.polynom, magnet.model) if magnet.model.has_physics() else None
+ )
+ strength = (
+ RWStrengthScalar(self.get_at_elems(magnet), magnet.polynom, magnet.model) if magnet.model.has_physics() else None
+ )
+ self.magnet.add(magnet.attach(self, strength, current))
+
+ def _fill_combined_function_magnet(self, magnet: CombinedFunctionMagnet) -> None:
+ currents = (
+ RWHardwareArray(self.get_at_elems(magnet), magnet.polynoms, magnet.model) if magnet.model.has_physics() else None
+ )
+ strengths = (
+ RWStrengthArray(self.get_at_elems(magnet), magnet.polynoms, magnet.model) if magnet.model.has_physics() else None
+ )
+ magnets = magnet.attach(self, strengths, currents)
+ self.combined_function_magnet.add(magnets[0])
+ for virtual_magnet in magnets[1:]:
+ self.magnet.add(virtual_magnet)
+
+ def _fill_serialized_magnets(self, magnets: SerializedMagnets) -> None:
+ currents = []
+ strengths = []
+ for index, magnet in enumerate(magnets.get_magnets()):
+ current = (
+ RWHardwareScalar(self.get_at_elems(magnet), magnets.polynom, magnets.model.get_sub_model(index))
+ if magnets.model.has_hardware()
+ else None
+ )
+ strength = (
+ RWStrengthScalar(self.get_at_elems(magnet), magnets.polynom, magnets.model.get_sub_model(index))
+ if magnets.model.has_physics()
+ else None
+ )
+ currents.append(current)
+ strengths.append(strength)
+ linked_currents = []
+ linked_strengths = []
+ for index in range(magnets.get_nb_magnets()):
+ linked_currents.append(RWSerializedHardware(currents, index) if magnets.model.has_hardware() else None)
+ linked_strengths.append(RWSerializedStrength(strengths, currents, index) if magnets.model.has_physics() else None)
+ attached_magnets = magnets.attach(self, linked_strengths, linked_currents)
+ self.serialized_magnet.add(attached_magnets[0])
+ for magnet in attached_magnets[1:]:
+ self.magnet.add(magnet)
+
+ def _fill_bpm(self, bpm: BPM) -> None:
+ bpm_elt = self.get_at_elems(bpm)[0]
+ if not hasattr(bpm_elt, "Tilt"):
+ bpm_elt.Tilt = 0.0
+ if not hasattr(bpm_elt, "Offset"):
+ bpm_elt.Offset = [0.0, 0.0]
+ if len(bpm_elt.Offset) != 2:
+ raise PyAMLException(f"BPM {bpm.get_name()} offset must be a 2-element array.")
+ update_bpm_transform_matrix(bpm_elt)
+ self.bpm.add(bpm.attach(self, RBpmArray(bpm_elt, self.ring), RWBpmOffsetArray(bpm_elt), RWBpmTiltScalar(bpm_elt)))
+
+ def _fill_rf_plant(self, rf_plant: RFPlant) -> None:
+ if rf_plant.transmitters:
+ cavities: list[at.Element] = []
+ harmonics: list[float] = []
+ attached_transmitters: list[RFTransmitter] = []
+ for transmitter in rf_plant.transmitters:
+ transmitter_cavities: list[at.Element] = []
+ for cavity_name in transmitter.cavities:
+ cavity = self.get_at_elems(Element(cavity_name))
+ if len(cavity) > 1:
+ raise PyAMLException(f"RF transmitter {transmitter.get_name()},multiple cavity definition:{{cav[0]}}")
+ if len(cavity) == 0:
+ raise PyAMLException(f"RF transmitter {transmitter.get_name()}, No cavity found")
+ transmitter_cavities.append(cavity[0])
+ harmonics.append(transmitter.harmonic)
+ voltage = RWRFVoltageScalar(transmitter_cavities)
+ phase = RWRFPhaseScalar(transmitter_cavities)
+ attached_transmitter = transmitter.attach(self, voltage, phase)
+ self.rf.transmitter.add(attached_transmitter)
+ cavities.extend(transmitter_cavities)
+ attached_transmitters.append(attached_transmitter)
+ self.rf.add(rf_plant.attach(self, RWRFFrequencyScalar(cavities, harmonics), RWTotalVoltage(attached_transmitters)))
+ else:
+ self.rf.add(rf_plant.attach(self, RWRFATFrequencyScalar(self.ring), RWRFATotalVoltageScalar(self.ring)))
+
+ def _fill_betatron_tune_monitor(self, monitor: BetatronTuneMonitor) -> None:
+ self.add_betatron_tune_monitor(monitor.attach(self, RBetatronTuneArray(self.ring)))
- elif isinstance(e, BetatronTuneMonitor):
- betatron_tune = RBetatronTuneArray(self.ring)
- e = e.attach(self, betatron_tune)
- self.add_betatron_tune_monitor(e)
+ def _fill_tool(self, tool: TuningTool | MeasurementTool) -> None:
+ self.add_tool(tool.attach(self))
- elif isinstance(e, MeasurementTool) | isinstance(e, TuningTool):
- self.add_tool(e.attach(self))
+ def _fill_unbound_element(self, element: "UnboundElement") -> None:
+ pass
def get_names(self, element: Element) -> list[str] | None:
"""
@@ -298,6 +384,19 @@ def get_indices(self, element: Element) -> (str | None, list[int] | None):
return (element.get_name(), None)
def get_at_elems(self, element: Element) -> list[at.Element]:
+ """
+ Resolve a PyAML element to matching PyAT lattice elements.
+
+ Parameters
+ ----------
+ element : Element
+ PyAML element whose lattice mapping should be resolved.
+
+ Returns
+ -------
+ list[at.Element]
+ Matching Accelerator Toolbox lattice elements.
+ """
if self._linker:
identifier = self._linker.get_element_identifier(element)
element_list = self._linker.get_at_elements(identifier)
@@ -332,5 +431,16 @@ def get_at_elems(self, element: Element) -> list[at.Element]:
else:
return [elts[idx] for idx in indices]
+ def _pyaml_repr_fields(self) -> dict[str, object]:
+ return {
+ "name": self.name(),
+ "lattice": self.lattice,
+ "mat_key": self.mat_key,
+ "n_elements": len(self.ring),
+ }
+
def __repr__(self):
- return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self)
diff --git a/pyaml/magnet/cfm_magnet.py b/pyaml/magnet/cfm_magnet.py
index 957c0e19c..eb7db64e8 100644
--- a/pyaml/magnet/cfm_magnet.py
+++ b/pyaml/magnet/cfm_magnet.py
@@ -1,12 +1,22 @@
+"""
+Combined-function magnet elements.
+
+This module defines magnets that combine multiple multipole components and
+provide separate strength and hardware access for those components.
+"""
+
+from typing import TYPE_CHECKING
+
from scipy.constants import speed_of_light
from ..common import abstract
from ..common.abstract import RWMapper
-from ..common.element import Element, ElementConfigModel, __pyaml_repr__
+from ..common.element import Element, __pyaml_repr__
from ..common.exception import PyAMLException
-from ..configuration import Factory
+from ..configuration.factory import ELEMENT_REGISTRY
+from ..validation import DynamicValidation, register_schema
from .hcorrector import HCorrector
-from .magnet import Magnet, MagnetConfigModel
+from .magnet import Magnet
from .model import MagnetModel
from .octupole import Octupole
from .quadrupole import Quadrupole
@@ -16,6 +26,9 @@
from .skewsext import SkewSext
from .vcorrector import VCorrector
+if TYPE_CHECKING:
+ from ..common.holders.element_holder import ElementHolder
+
_fmap: dict = {
"B0": HCorrector,
"A0": VCorrector,
@@ -31,39 +44,85 @@
PYAMLCLASS = "CombinedFunctionMagnet"
-class ConfigModel(ElementConfigModel):
- mapping: list[list[str]]
- """Name mapping for multipoles
- (i.e. [[B0,C01A-H],[A0,C01A-H],[B2,C01A-S]])"""
- model: MagnetModel | None = None
- """Object in charge of converting magnet strenghts to currents"""
+@register_schema
+class CombinedFunctionMagnet(Element, DynamicValidation):
+ """
+ Combined function magnet made up of several virtual single-function magnets.
+
+ This class represents a magnet whose effect is described by multiple multipole
+ components, such as a corrector, quadrupole, sextupole, or octupole family.
+ Each entry in ``mapping`` creates a virtual magnet backed by the same
+ underlying magnet model, and the virtual magnets are exposed as individual
+ elements while still belonging to the same combined-function object.
+
+ Parameters
+ ----------
+ name : str
+ Name of the combined-function magnet.
+ mapping : list[list[str]]
+ List of ``[multipole, magnet_name]`` pairs. The first entry selects the
+ virtual magnet type, and the second entry gives the name of the virtual
+ magnet.
+ model : MagnetModel | None, optional
+ Magnet model used to convert strengths to hardware values and vice versa.
+ description : str | None, optional
+ Human-readable description of the magnet.
+ peer : object, optional
+ Control-system or simulator peer used when attaching the magnet.
+
+ Attributes
+ ----------
+ strengths
+ Gives access to the strengths of this combined function magnet in physics unit
+ hardwares
+ Gives access to the strengths of this combined function magnet in hardware unit when possible
+ Methods
+ -------
+ get_model_name()
+ Returns the model name of this magnet
+ nb_multipole()
+ Return the number of configured multipole components.
+ attach(peer, strengths, hardwares)
+ Attach the combined-function magnet and its virtual components.
+ set_energy(E)
+ Set beam energy for magnetic-strength conversion.
+
+ Raises
+ ------
+ PyAMLException
+ If the mapping is invalid, if an unsupported multipole is requested, or
+ if the model does not provide the required multipole information.
+ """
-class CombinedFunctionMagnet(Element):
- """CombinedFunctionMagnet class"""
+ def __init__(
+ self, name: str, mapping: list[list[str]], model: MagnetModel | None = None, description: str | None = None, peer=None
+ ):
+ """
+ Initialize the CombinedFunctionMagnet.
+ """
+ super().__init__(name, None, description)
- def __init__(self, cfg: ConfigModel, peer=None):
- super().__init__(cfg.name)
- self._cfg = cfg
- self.model = cfg.model
+ self._mapping = mapping
+ self.model = model
self.__virtuals: list[Magnet] = []
- self.__strengths: abstract.ReadWriteFloatArray = None
- self.__hardwares: abstract.ReadWriteFloatArray = None
+ self.__strengths: abstract.ReadWriteFloatArray | None = None
+ self.__hardwares: abstract.ReadWriteFloatArray | None = None
if peer is None:
# Configuration part
- if self.model is not None and not hasattr(self.model._cfg, "multipoles"):
- raise PyAMLException(f"{cfg.name} model: mutipolesfield required for combined function magnet")
+ if self.model is not None and not hasattr(self.model, "multipoles"):
+ raise PyAMLException(f"{name} model: mutipoles field required for combined function magnet")
idx = 0
self.polynoms = []
- for _idx, m in enumerate(cfg.mapping):
+ for _idx, m in enumerate(self._mapping):
# Check mapping validity
if len(m) != 2:
raise PyAMLException("Invalid CombinedFunctionMagnet mapping for {m}")
if m[0] not in _fmap:
raise PyAMLException(m[0] + " not implemented for combined function magnet")
- if m[0] not in self.model._cfg.multipoles:
+ if m[0] not in self.model.multipoles:
raise PyAMLException(m[0] + " not found in underlying magnet model")
self.polynoms.append(_fmap[m[0]].polynom)
# Create the virtual magnet for the correspoding multipole
@@ -71,26 +130,48 @@ def __init__(self, cfg: ConfigModel, peer=None):
self.__virtuals.append(vm)
# Register the virtual element in the factory to have
# a coherent factory and improve error reporting
- Factory.register_element(vm)
+ ELEMENT_REGISTRY.register(vm)
else:
# Attach
self._peer = peer
+ def _fill_device(self, holder: "ElementHolder") -> None:
+ holder._fill_combined_function_magnet(self)
+
def get_model_name(self) -> str:
"""
Returns the model name of this magnet
"""
- return self._cfg.name
+ return self._name
def __create_virutal_manget(self, name: str, idx: int) -> Magnet:
+ """
+ Create a virtual magnet for one multipole component.
+
+ The virtual magnet provides the standard single-function magnet
+ interface for a component of this combined-function magnet.
+
+ Parameters
+ ----------
+ name : str
+ Name assigned to the virtual magnet.
+ idx : int
+ Multipole key used to select the virtual-magnet class.
+
+ Returns
+ -------
+ Magnet
+ Newly created virtual magnet linked to this magnet's model.
+ """
args = {"name": name, "model": self.model}
- mVirtual: Magnet = _fmap[idx](MagnetConfigModel(**args))
+ mVirtual: Magnet = _fmap[idx](**args)
mVirtual.set_model_name(self.get_name())
return mVirtual
def nb_multipole(self) -> int:
- return len(self._cfg.mapping)
+ """Return the number of configured multipole components."""
+ return len(self._mapping)
def attach(
self,
@@ -98,15 +179,38 @@ def attach(
strengths: abstract.ReadWriteFloatArray,
hardwares: abstract.ReadWriteFloatArray,
) -> list[Magnet]:
+ """
+ Attach the combined-function magnet and its virtual components.
+
+ The returned list contains the attached combined-function magnet
+ followed by one attached single-function virtual magnet per configured
+ multipole. Each virtual magnet receives a mapped view of the shared
+ strength and hardware arrays.
+
+ Parameters
+ ----------
+ peer : object
+ Simulator or control-system element holder.
+ strengths : abstract.ReadWriteFloatArray
+ Array accessor for the physical multipole strengths.
+ hardwares : abstract.ReadWriteFloatArray
+ Array accessor for the hardware values.
+
+ Returns
+ -------
+ list[Magnet]
+ Attached combined-function magnet and its virtual component
+ magnets.
+ """
l = []
# Attached the CombinedFunctionMagnet itself
- nCFM = CombinedFunctionMagnet(self._cfg, peer)
+ nCFM = CombinedFunctionMagnet(self._name, self._mapping, self.model, self._description, peer)
nCFM.__strengths = strengths
nCFM.__hardwares = hardwares
l.append(nCFM)
# Construct a single function magnet for each multipole
# of this combined function magnet
- for idx, _m in enumerate(self._cfg.mapping):
+ for idx, _m in enumerate(self._mapping):
strength = RWMapper(strengths, idx)
hardware = RWMapper(hardwares, idx) if self.model.has_hardware() else None
l.append(self.__virtuals[idx].attach(peer, strength, hardware))
@@ -135,8 +239,22 @@ def hardwares(self) -> abstract.ReadWriteFloatScalar:
return self.__hardwares
def set_energy(self, E: float):
+ """
+ Set beam energy for magnetic-strength conversion.
+
+ The energy is converted from electronvolts to magnetic rigidity and
+ supplied to the underlying combined-function magnet model.
+
+ Parameters
+ ----------
+ E : float
+ Beam energy in electronvolts.
+ """
if self.model is not None:
self.model.set_magnet_rigidity(E / speed_of_light)
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return __pyaml_repr__(self)
diff --git a/pyaml/magnet/corrector.py b/pyaml/magnet/corrector.py
index fc9de1294..1f828450a 100644
--- a/pyaml/magnet/corrector.py
+++ b/pyaml/magnet/corrector.py
@@ -1,3 +1,9 @@
+"""
+Corrector magnet elements.
+
+This module defines horizontal and vertical orbit-corrector elements.
+"""
+
import numpy as np
from ..common import abstract
@@ -7,14 +13,35 @@
class RWCorrectorAngle(abstract.ReadWriteFloatScalar):
"""
Set the angle of a horizontal or vertical corrector.
- KickAngle sign convention is defined the a global PyAML constant
- (see pyaml.common.constant.HORIZONATL_KICK_SIGN).
- To change the convention, you have execute the code below prior to everything:
- import pyaml.common.constants
- pyaml.common.constants.HORIZONTAL_KICK_SIGN = -1.0
+
+ The kick-angle sign convention is defined by the global PyAML constant
+ :data:`pyaml.common.constants.HORIZONTAL_KICK_SIGN`. To change the convention,
+ run the following before building the accelerator::
+
+ import pyaml.common.constants
+ pyaml.common.constants.HORIZONTAL_KICK_SIGN = -1.0
+
+ Parameters
+ ----------
+ corr : Magnet
+ Corrector magnet whose strength represents the kick angle.
+
+ Methods
+ -------
+ get()
+ Get the corrector kick angle.
+ set(value)
+ Set the corrector kick angle.
+ set_and_wait(value)
+ Set the kick angle and wait for it to reach the setpoint.
+ unit()
+ Get the unit for the kick angle.
"""
def __init__(self, corr: Magnet):
+ """
+ Initialize a corrector-angle access wrapper.
+ """
self._mag = corr
def get(self) -> float:
@@ -24,7 +51,7 @@ def get(self) -> float:
Returns
-------
float
- Kick angle in radians
+ Kick angle in radians.
"""
return np.arctan(self._mag.strength.get())
@@ -35,7 +62,7 @@ def set(self, value: float):
Parameters
----------
value : float
- Kick angle to set in radians
+ Target kick angle in radians.
"""
self._mag.strength.set(np.tan(value))
diff --git a/pyaml/magnet/csvcurve.py b/pyaml/magnet/csvcurve.py
new file mode 100644
index 000000000..c9cb55285
--- /dev/null
+++ b/pyaml/magnet/csvcurve.py
@@ -0,0 +1,103 @@
+"""
+CSV-backed magnet excitation curves.
+
+This module loads two-column excitation data from CSV files for magnet-model
+calibration and interpolation.
+"""
+
+import numpy as np
+from numpy.typing import NDArray
+
+from ..common.element import __pyaml_repr__
+from ..common.exception import PyAMLException
+from ..configuration.fileloader import ROOT
+from ..validation import DynamicValidation, register_schema
+from .curve import Curve
+
+# Define the main class name for this module
+PYAMLCLASS = "CSVCurve"
+
+
+@register_schema
+class CSVCurve(Curve, DynamicValidation):
+ """
+ Curve loaded from a CSV file.
+
+ This class reads a CSV file containing a two-column numeric dataset
+ representing ``(x, y)`` coordinate pairs. The file is loaded during
+ initialization and stored internally as a NumPy array.
+
+ The CSV file must:
+
+ - contain exactly two columns,
+ - use commas as the delimiter,
+ - contain values that can be converted to ``float``.
+
+ Parameters
+ ----------
+ file : str
+ Path to the CSV file. Relative paths are resolved using the
+ project's configured root directory.
+
+ Attributes
+ ----------
+ file : str
+ Path to the CSV file provided during initialization.
+
+ Methods
+ -------
+ get_curve()
+ Get the curve data.
+
+ Raises
+ ------
+ PyAMLException
+ If the file cannot be parsed as a numeric CSV or if the loaded
+ data does not have shape ``(n, 2)``.
+
+ Notes
+ -----
+ The loaded curve is stored internally as a NumPy array with shape
+ ``(n, 2)``, where the first column contains x-values and the second
+ column contains y-values. The data can be accessed using
+ :meth:`get_curve`.
+ """
+
+ def __init__(self, file: str):
+ """
+ Initialize the CSVCurve.
+ """
+ self._file = file
+
+ # Load CSV curve
+ path = ROOT.expand_path(self._file)
+ try:
+ self._curve = np.genfromtxt(path, delimiter=",", dtype=float, loose=False)
+ except ValueError as e:
+ raise PyAMLException(f"CSVCurve(file='{self._file}',dtype=float): {str(e)}") from None
+
+ _s = np.shape(self._curve)
+ if len(_s) != 2 or _s[1] != 2:
+ raise PyAMLException(f"CSVCurve(file='{self._file}',dtype=float):wrong shape (2,2) expected but got {str(_s)}")
+
+ @property
+ def file(self):
+ """Return the configured CSV file path."""
+ return self._file
+
+ def get_curve(self) -> NDArray[np.float64]:
+ """
+ Get the curve data.
+
+ Returns
+ -------
+ np.array
+ Curve data as a 2D numpy array of shape (n, 2)
+ """
+ return self._curve
+
+ def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self)
diff --git a/pyaml/magnet/csvmatrix.py b/pyaml/magnet/csvmatrix.py
new file mode 100644
index 000000000..a7babee17
--- /dev/null
+++ b/pyaml/magnet/csvmatrix.py
@@ -0,0 +1,83 @@
+"""
+Magnet response matrices.
+
+This module defines matrix representations used by magnet models.
+"""
+
+import numpy as np
+from numpy.typing import NDArray
+
+from ..common.element import __pyaml_repr__
+from ..common.exception import PyAMLException
+from ..configuration.fileloader import ROOT
+from ..validation import DynamicValidation, register_schema
+from .matrix import Matrix
+
+# Define the main class name for this module
+PYAMLCLASS = "CSVMatrix"
+
+
+@register_schema
+class CSVMatrix(Matrix, DynamicValidation):
+ """
+ Matrix loaded from a CSV file.
+
+ This class reads a CSV file containing numeric values and stores the
+ resulting matrix as a NumPy array.
+
+ Parameters
+ ----------
+ file : str
+ Path to the CSV file. Relative paths are resolved using the
+ project's configured root directory.
+
+ Attributes
+ ----------
+ file
+ Return the configured CSV file path.
+
+ Methods
+ -------
+ get_matrix()
+ Get the matrix data.
+
+ Raises
+ ------
+ PyAMLException
+ If the CSV file cannot be parsed as a numeric array.
+ """
+
+ def __init__(self, file: str):
+ """
+ Initialize the CSVMatrix.
+ """
+ self._file = file
+
+ # Load CSV matrix
+ path = ROOT.expand_path(self._file)
+ try:
+ self._mat = np.genfromtxt(path, delimiter=",", dtype=float, loose=False)
+ except ValueError as e:
+ raise PyAMLException(f"CSVMatrix(file='{self._file}',dtype=float): {str(e)}") from None
+
+ @property
+ def file(self):
+ """Return the configured CSV file path."""
+ return self._file
+
+ def get_matrix(self) -> NDArray[np.float64]:
+ """
+ Get the matrix data.
+
+ Returns
+ -------
+ np.array
+ Matrix data as a numpy array
+ """
+ return self._mat
+
+ def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self)
diff --git a/pyaml/magnet/curve.py b/pyaml/magnet/curve.py
new file mode 100644
index 000000000..d541ec676
--- /dev/null
+++ b/pyaml/magnet/curve.py
@@ -0,0 +1,51 @@
+"""
+Excitation-curve interfaces for magnet calibration.
+
+An excitation curve represents paired magnet-strength and hardware values as
+an ``(n, 2)`` array. Concrete implementations provide those points from a
+file or in-memory data, while :class:`Curve` supplies the inverse-curve
+operation used for reverse conversion.
+"""
+
+from abc import ABCMeta, abstractmethod
+
+import numpy as np
+
+
+class Curve(metaclass=ABCMeta):
+ """
+ Define the interface for a monotonic magnet excitation curve.
+
+ Curves are represented by two columns of paired values and are used to
+ interpolate between physical magnet strengths and hardware setpoints.
+
+ Methods
+ -------
+ get_curve()
+ Returns the curve (n rows,2 columns). Curve is expected to be monotonic (non-decreasing or non-increasing).
+ inverse(curve)
+ Returns the inverse curve. Basically swap x and y and sort y in ascending order.
+ """
+
+ @abstractmethod
+ def get_curve(self) -> np.array:
+ """
+ Returns the curve (n rows,2 columns).
+ Curve is expected to be monotonic (non-decreasing or non-increasing).
+ """
+ pass
+
+ @classmethod
+ def inverse(cls, curve: np.array) -> np.array:
+ """
+ Returns the inverse curve.
+ Basically swap x and y and sort y in ascending order.
+
+ Parameters
+ ----------
+ curve : np.array
+ Curve to be inverted
+ """
+ __curve = curve
+ __sortedCurve = __curve[__curve[:, 1].argsort()]
+ return __sortedCurve[:, [1, 0]]
diff --git a/pyaml/magnet/function_mapping.py b/pyaml/magnet/function_mapping.py
index 343f5d5d6..c1977e2b7 100644
--- a/pyaml/magnet/function_mapping.py
+++ b/pyaml/magnet/function_mapping.py
@@ -1,3 +1,10 @@
+"""
+Function mappings used by magnet models.
+
+This module provides mappings between configured magnet functions and the
+corresponding model or hardware channels.
+"""
+
from pyaml.magnet.hcorrector import HCorrector
from pyaml.magnet.octupole import Octupole
from pyaml.magnet.quadrupole import Quadrupole
diff --git a/pyaml/magnet/hcorrector.py b/pyaml/magnet/hcorrector.py
index 964c4e292..84bfbfb2e 100644
--- a/pyaml/magnet/hcorrector.py
+++ b/pyaml/magnet/hcorrector.py
@@ -1,35 +1,92 @@
+"""
+Horizontal orbit-corrector elements.
+
+This module defines the horizontal corrector configuration and runtime
+interface, including its horizontal kick-angle access.
+"""
+
+from typing import Self
+
from ..common import abstract
from ..common.constants import HORIZONTAL_KICK_SIGN
from ..lattice.polynom_info import PolynomInfo
+from ..validation import DynamicValidation, register_schema
from .corrector import RWCorrectorAngle
-from .magnet import Magnet, MagnetConfigModel
+from .magnet import Magnet
+from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "HCorrector"
-class ConfigModel(MagnetConfigModel):
- """Configuration model for Horizontal Corrector magnet."""
+@register_schema
+class HCorrector(Magnet, DynamicValidation):
+ """
+ Represent a horizontal orbit corrector.
- ...
+ Parameters
+ ----------
+ name : str
+ Corrector name.
+ model : MagnetModel | None
+ Optional magnet model.
+ lattice_names : str | None
+ Optional lattice-element mapping.
+ description : str | None
+ Optional human-readable description.
+ Attributes
+ ----------
+ angle
+ Return read/write access to the horizontal kick angle in radians.
-class HCorrector(Magnet):
- """Horizontal Corrector class"""
+ Methods
+ -------
+ attach(peer, strength, hardware)
+ Return an attached copy with a bound horizontal-angle handle.
+ """
polynom = PolynomInfo("PolynomB", 0, HORIZONTAL_KICK_SIGN)
- def __init__(self, cfg: ConfigModel):
- super().__init__(
- cfg.name,
- cfg.model if hasattr(cfg, "model") else None,
- )
- self._cfg = cfg
+ def __init__(
+ self, name: str, model: MagnetModel | None = None, lattice_names: str | None = None, description: str | None = None
+ ):
+ """
+ Initialize the HCorrector.
+ """
+ super().__init__(name, model, lattice_names, description)
self.__angle = RWCorrectorAngle(self)
@property
def angle(self) -> abstract.ReadWriteFloatScalar:
"""
- Set the kick angle.
+ Return read/write access to the horizontal kick angle in radians.
"""
return self.__angle
+
+ def attach(
+ self,
+ peer,
+ strength: abstract.ReadWriteFloatScalar,
+ hardware: abstract.ReadWriteFloatScalar,
+ ) -> Self:
+ """
+ Return an attached copy with a bound horizontal-angle handle.
+
+ Parameters
+ ----------
+ peer : ElementHolder
+ Control system or simulator the copy is bound to.
+ strength : abstract.ReadWriteFloatScalar
+ Accessor for the physical strength on that peer.
+ hardware : abstract.ReadWriteFloatScalar
+ Accessor for the hardware value on that peer.
+
+ Returns
+ -------
+ Self
+ Copy of this magnet bound to ``peer``.
+ """
+ obj = super().attach(peer, strength, hardware)
+ obj.__angle = RWCorrectorAngle(obj)
+ return obj
diff --git a/pyaml/magnet/identity_cfm_model.py b/pyaml/magnet/identity_cfm_model.py
index 8333b3b18..0f578f2cc 100644
--- a/pyaml/magnet/identity_cfm_model.py
+++ b/pyaml/magnet/identity_cfm_model.py
@@ -1,66 +1,129 @@
+"""
+Identity conversion model for combined-function magnets.
+
+This model provides direct per-multipole conversion without excitation-curve interpolation.
+"""
+
import numpy as np
-from pydantic import BaseModel, ConfigDict
from .. import PyAMLException
from ..common.element import __pyaml_repr__
-from ..control.deviceaccess import DeviceAccess
+from ..validation import DynamicValidation, register_schema
from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "IdentityCFMagnetModel"
-class ConfigModel(BaseModel):
+@register_schema
+class IdentityCFMagnetModel(MagnetModel, DynamicValidation):
"""
- Configuration model for identity combined function magnet model
+ Identity combined-function magnet model.
+
+ This magnet model maps strengths and hardware values directly to the
+ underlying devices without applying any conversion. It is intended for cases
+ where the physics values and hardware values are identical, so the model acts
+ as an identity transform for all supported multipoles.
Parameters
- ----------
- multipoles : list[str]
- List of supported functions: A0, B0, A1, B1, etc (i.e. [B0, A1, B2])
- powerconverters : list[DeviceAccess], optional
- Power converter devices to apply current
- physics : list[DeviceAccess], optional
- Magnet devices to apply strength
- units : list[str]
- List of strength units (i.e. ['rad', 'm-1', 'm-2'])
- """
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ multipoles : list[str]
+ List of supported multipoles, for example ["B0", "A1", "B2"].
+ powerconverters : list[str | None] | None, optional
+ Names of the power converter devices used for hardware access.
+ physics : list[str | None] | None, optional
+ Names of the physics devices used for strength access.
+ units : list[str] | None, optional
+ List of units for the supported multipoles.
- multipoles: list[str]
- powerconverters: list[DeviceAccess | None] | None = None
- physics: list[DeviceAccess | None] | None = None
- units: list[str]
+ Raises
+ PyAMLException
+ If both physics and powerconverters are missing, if both are
+ provided at the same time, or if the configuration lengths do not match.
-class IdentityCFMagnetModel(MagnetModel):
- """
- Class that map values to underlying devices without conversion
+ Parameters
+ ----------
+ multipoles : list[str]
+ List of supported multipoles, for example ["B0", "A1", "B2"].
+ powerconverters : list[str | None] | None
+ Names of the power converter devices used for hardware access.
+ physics : list[str | None] | None
+ Names of the physics devices used for strength access.
+ units : list[str] | None
+ List of units for the supported multipoles.
+
+ Methods
+ -------
+ compute_hardware_values(strengths)
+ Convert magnet strengths to hardware values.
+ compute_strengths(currents)
+ Convert hardware values to magnet strengths.
+ get_strength_units()
+ Return the units of magnet strengths.
+ get_hardware_units()
+ Return the units of hardware values.
+ get_device_names()
+ Return the associated device names.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+ has_physics()
+ Return whether the model provides physics strengths.
+ has_hardware()
+ Return whether the model provides hardware values.
"""
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
+ def __init__(
+ self,
+ multipoles: list[str],
+ powerconverters: list[str | None] | None = None,
+ physics: list[str | None] | None = None,
+ units: list[str] | None = None,
+ ):
+ """
+ Initialize the IdentityCFMagnetModel.
+ """
+ self.multipoles = multipoles
+ self._powerconverters = powerconverters
+ self._physics = physics
+ self.units = units
# Check config
- self.__nbFunction: int = len(cfg.multipoles)
+ self.__nbFunction: int = len(multipoles)
- if cfg.physics is None and cfg.powerconverters is None:
+ if self._physics is None and self._powerconverters is None:
raise PyAMLException("Invalid IdentityCFMagnetModel configuration,physics or powerconverters device required")
- if cfg.physics is not None and cfg.powerconverters is not None:
+ if self._physics is not None and self._powerconverters is not None:
raise PyAMLException(
"Invalid IdentityCFMagnetModel configuration,physics or powerconverters device required but not both"
)
- if cfg.physics:
- self.__devices = cfg.physics
+ if self._physics:
+ self.__devices = self._physics
else:
- self.__devices = cfg.powerconverters
+ self.__devices = self._powerconverters
self.__nbDev: int = len(self.__devices)
- self.__check_len(cfg.units, "units", self.__nbFunction)
+ self.__check_len(self.units, "units", self.__nbFunction)
def __check_len(self, obj, name, expected_len):
+ """
+ Validate the length of a model configuration sequence.
+
+ Parameters
+ ----------
+ obj : object
+ Sequence whose length should be checked.
+ name : object
+ Configuration-field name used in an error message.
+ expected_len : object
+ Required number of entries.
+
+ Raises
+ ------
+ PyAMLException
+ If ``obj`` does not contain ``expected_len`` entries.
+ """
lgth = len(obj)
if lgth != expected_len:
raise PyAMLException(
@@ -68,28 +131,70 @@ def __check_len(self, obj, name, expected_len):
)
def compute_hardware_values(self, strengths: np.array) -> np.array:
+ """
+ Convert magnet strengths to hardware values.
+
+ Parameters
+ ----------
+ strengths : np.array
+ Strength of each magnet function, ordered as declared by the model.
+
+ Returns
+ -------
+ np.array
+ Hardware value of each power converter, ordered as declared by the model.
+ """
return strengths
def compute_strengths(self, currents: np.array) -> np.array:
+ """
+ Convert hardware values to magnet strengths.
+
+ Parameters
+ ----------
+ currents : np.array
+ Hardware value of each power converter, ordered as declared by the model.
+
+ Returns
+ -------
+ np.array
+ Strength of each magnet function, ordered as declared by the model.
+ """
return currents
def get_strength_units(self) -> list[str]:
- return self._cfg.units
+ """Return the units of magnet strengths."""
+ return self.units
def get_hardware_units(self) -> list[str]:
- return self._cfg.units
+ """Return the units of hardware values."""
+ return self.units
- def get_devices(self) -> list[DeviceAccess | None]:
+ def get_device_names(self) -> list[str | None]:
+ """Return the associated device names."""
return self.__devices
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres. Ignored: an identity model applies no rigidity scaling.
+ """
pass
def has_physics(self) -> bool:
- return self._cfg.physics is not None
+ """Return whether the model provides physics strengths."""
+ return self._physics is not None
def has_hardware(self) -> bool:
- return self._cfg.powerconverters is not None
+ """Return whether the model provides hardware values."""
+ return self._powerconverters is not None
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return __pyaml_repr__(self)
diff --git a/pyaml/magnet/identity_model.py b/pyaml/magnet/identity_model.py
index 9692de6dc..9d5f94f6a 100644
--- a/pyaml/magnet/identity_model.py
+++ b/pyaml/magnet/identity_model.py
@@ -1,78 +1,160 @@
+"""
+Identity conversion model for magnets without calibration curves.
+
+This model passes physical values through to hardware values, subject to the configured units and magnetic-rigidity scaling.
+"""
+
import numpy as np
-from pydantic import BaseModel, ConfigDict
+
+from pyaml.validation import DynamicValidation, register_schema
from .. import PyAMLException
from ..common.element import __pyaml_repr__
-from ..control.deviceaccess import DeviceAccess
from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "IdentityMagnetModel"
-class ConfigModel(BaseModel):
+@register_schema
+class IdentityMagnetModel(MagnetModel, DynamicValidation):
"""
- Configuration model for identity magnet model
+ Identity magnet model.
+
+ This model maps magnet strengths directly to hardware values without applying
+ any conversion. It is intended for cases where the physics value and the
+ hardware value are identical, so the model behaves as an identity transform.
Parameters
----------
- powerconverter : DeviceAccess, optional
- Power converter device to apply current
- physics : DeviceAccess, optional
- Magnet device to apply strength
- unit : str
- Unit of the strength (i.e. 1/m or m-1)
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- powerconverter: DeviceAccess | None = None
- physics: DeviceAccess | None = None
- unit: str
-
-
-class IdentityMagnetModel(MagnetModel):
- """
- Class that map value to underlying device without conversion
+ powerconverter : str | None, optional
+ Name of the power converter device used to apply current.
+ physics : str | None, optional
+ Name of the physics device used to apply strength.
+ unit : str | None, optional
+ Unit of the magnet strength and hardware value, for example ``"1/m"`` or
+ ``"m-1"``.
+
+ Methods
+ -------
+ compute_hardware_values(strengths)
+ Convert magnet strengths to hardware values.
+ compute_strengths(currents)
+ Convert hardware values to magnet strengths.
+ get_strength_units()
+ Return the units of magnet strengths.
+ get_hardware_units()
+ Return the units of hardware values.
+ get_device_names()
+ Return the associated device names.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+ has_physics()
+ Return whether the model provides physics strengths.
+ has_hardware()
+ Return whether the model provides hardware values.
+
+ Raises
+ ------
+ PyAMLException
+ If both ``physics`` and ``powerconverter`` are missing, or if both are
+ provided at the same time.
+
+ Notes
+ -----
+ The model does not perform any numerical conversion: strengths are returned
+ as hardware values and hardware values are returned as strengths.
"""
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
- self.__unit = cfg.unit
- if cfg.physics is None and cfg.powerconverter is None:
+ def __init__(
+ self,
+ powerconverter: str | None = None,
+ physics: str | None = None,
+ unit: str | None = None,
+ ):
+ """
+ Initialize the IdentityMagnetModel.
+ """
+ self.physics = physics
+ self.powerconverter = powerconverter
+ self.unit = unit
+
+ if self.physics is None and self.powerconverter is None:
raise PyAMLException("Invalid IdentityMagnetModel configuration,physics or powerconverter device required")
- if cfg.physics is not None and cfg.powerconverter is not None:
+ if self.physics is not None and self.powerconverter is not None:
raise PyAMLException(
"Invalid IdentityMagnetModel configuration,physics or powerconverter device required but not both"
)
- if cfg.physics:
- self.__device = cfg.physics
+ if self.physics:
+ self.__device = self.physics
else:
- self.__device = cfg.powerconverter
+ self.__device = self.powerconverter
def compute_hardware_values(self, strengths: np.array) -> np.array:
+ """
+ Convert magnet strengths to hardware values.
+
+ Parameters
+ ----------
+ strengths : np.array
+ Magnet strengths to convert, in the unit reported by :meth:`get_strength_unit`.
+
+ Returns
+ -------
+ np.array
+ Hardware values corresponding to ``strengths``.
+ """
return strengths
def compute_strengths(self, currents: np.array) -> np.array:
+ """
+ Convert hardware values to magnet strengths.
+
+ Parameters
+ ----------
+ currents : np.array
+ Hardware values to convert, in the unit reported by :meth:`get_hardware_unit`.
+
+ Returns
+ -------
+ np.array
+ Strengths corresponding to ``currents``.
+ """
return currents
def get_strength_units(self) -> list[str]:
- return [self.__unit]
+ """Return the units of magnet strengths."""
+ return [self.unit]
def get_hardware_units(self) -> list[str]:
- return [self.__unit]
+ """Return the units of hardware values."""
+ return [self.unit]
- def get_devices(self) -> list[DeviceAccess]:
+ def get_device_names(self) -> list[str | None]:
+ """Return the associated device names."""
return [self.__device]
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres. Ignored: an identity model applies no rigidity scaling.
+ """
pass
def has_physics(self) -> bool:
- return self._cfg.physics is not None
+ """Return whether the model provides physics strengths."""
+ return self.physics is not None
def has_hardware(self) -> bool:
- return self._cfg.powerconverter is not None
+ """Return whether the model provides hardware values."""
+ return self.powerconverter is not None
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return __pyaml_repr__(self)
diff --git a/pyaml/magnet/inline_curve.py b/pyaml/magnet/inline_curve.py
new file mode 100644
index 000000000..1bc3a1c05
--- /dev/null
+++ b/pyaml/magnet/inline_curve.py
@@ -0,0 +1,85 @@
+"""
+In-memory magnet excitation curves.
+
+This module validates and exposes two-column excitation data supplied directly
+as Python sequences.
+"""
+
+import numpy as np
+from numpy.typing import NDArray
+
+from ..common.element import __pyaml_repr__
+from ..common.exception import PyAMLException
+from ..validation import DynamicValidation, register_schema
+from .curve import Curve
+
+# Define the main class name for this module
+PYAMLCLASS = "InlineCurve"
+
+
+@register_schema
+class InlineCurve(Curve, DynamicValidation):
+ """
+ Curve defined directly from an in-memory matrix of (x, y) points.
+
+ This class stores curve data provided as a list of rows, where each row must
+ contain exactly two values: the x-coordinate and the y-coordinate. The data is
+ converted to a NumPy array and validated to ensure it has shape ``(n, 2)``.
+
+ Parameters
+ ----------
+ mat : list[list[float]]
+ Curve data as a two-column matrix. Each row represents one point in the
+ curve, with ``mat[i][0]`` being the x-value and ``mat[i][1]`` being the
+ y-value.
+
+ Attributes
+ ----------
+ mat
+ Return the original in-memory curve point matrix.
+
+ Methods
+ -------
+ get_curve()
+ Get the curve data.
+
+ Raises
+ ------
+ PyAMLException
+ If the provided matrix does not have two columns.
+ """
+
+ def __init__(self, mat: list[list[float]]):
+ """
+ Initialize the InlineCurve.
+ """
+ self._mat = mat
+
+ # Load the curve
+ self._curve = np.array(self._mat)
+
+ _s = np.shape(self._curve)
+ if len(_s) != 2 or _s[1] != 2:
+ raise PyAMLException(f"InlineCurve(mat='{self._mat}',dtype=float): wrong shape (2,2) expected but got {str(_s)}")
+
+ @property
+ def mat(self):
+ """Return the original in-memory curve point matrix."""
+ return self._mat
+
+ def get_curve(self) -> NDArray[np.float64]:
+ """
+ Get the curve data.
+
+ Returns
+ -------
+ np.array
+ Curve data as a 2D numpy array of shape (n, 2)
+ """
+ return self._curve
+
+ def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self)
diff --git a/pyaml/magnet/inline_matrix.py b/pyaml/magnet/inline_matrix.py
new file mode 100644
index 000000000..d26b082a1
--- /dev/null
+++ b/pyaml/magnet/inline_matrix.py
@@ -0,0 +1,66 @@
+"""
+Magnet response matrices.
+
+This module defines matrix representations used by magnet models.
+"""
+
+import numpy as np
+from numpy.typing import NDArray
+
+from ..common.element import __pyaml_repr__
+from ..validation import DynamicValidation, register_schema
+from .matrix import Matrix
+
+# Define the main class name for this module
+PYAMLCLASS = "InlineMatrix"
+
+
+@register_schema
+class InlineMatrix(Matrix, DynamicValidation):
+ """
+ Matrix defined directly from in-memory data.
+
+ Parameters
+ ----------
+ mat : list[list[float]]
+ Matrix data given as a nested list of numbers.
+
+ Attributes
+ ----------
+ _mat : np.ndarray
+ Internal NumPy representation of the matrix.
+
+ Methods
+ -------
+ get_matrix()
+ Get the matrix data.
+ """
+
+ def __init__(self, mat: list[list[float]]):
+ # Load the matrix
+ """
+ Initialize the InlineMatrix.
+ """
+ self._mat = np.array(mat)
+
+ @property
+ def mat(self):
+ """Return the original in-memory magnet matrix."""
+ return self._mat
+
+ def get_matrix(self) -> NDArray[np.float64]:
+ """
+ Get the matrix data.
+
+ Returns
+ -------
+ np.array
+ Matrix data as a numpy array
+ """
+ return self._mat
+
+ def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self)
diff --git a/pyaml/magnet/linear_cfm_model.py b/pyaml/magnet/linear_cfm_model.py
index c1795c124..75489526b 100644
--- a/pyaml/magnet/linear_cfm_model.py
+++ b/pyaml/magnet/linear_cfm_model.py
@@ -1,108 +1,172 @@
+"""
+Linear conversion model for combined-function magnets.
+
+This model converts multiple multipole strengths to hardware values using per-function linear calibration parameters.
+"""
+
import numpy as np
-from pydantic import BaseModel, ConfigDict
from ..common.element import __pyaml_repr__
from ..common.exception import PyAMLException
-from ..configuration.curve import Curve
-from ..configuration.matrix import Matrix
-from ..control.deviceaccess import DeviceAccess
+from ..validation import DynamicValidation, register_schema
+from .curve import Curve
+from .matrix import Matrix
from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "LinearCFMagnetModel"
-class ConfigModel(BaseModel):
+@register_schema
+class LinearCFMagnetModel(MagnetModel, DynamicValidation):
"""
- Configuration model for linear combined function magnet model
+ Linear combined-function magnet model.
+
+ This model converts between magnet strengths and hardware currents using
+ precomputed excitation curves, optional calibration and pseudo-current
+ corrections, and an optional coupling matrix to separate or combine multipole
+ responses. It is intended for combined-function magnets where several
+ multipoles share a common hardware representation.
Parameters
- ----------
+
multipoles : list[str]
- List of supported functions: A0, B0, A1, B1, etc (i.e. [B0, A1, B2])
+ Names of the supported multipoles, for example ["B0", "A1", "B2"].
curves : list[Curve]
- Excitation curves, 1 curve per function
- calibration_factors : list[float], optional
- Correction factor applied to curves, 1 factor per function.
- Default: ones
- calibration_offsets : list[float], optional
- Correction offset applied to curves, 1 offset per function.
- Default: zeros
- pseudo_factors : list[float], optional
- Factors applied to 'pseudo currents', 1 factor per function.
- Default: ones
- pseudo_offsets : list[float], optional
- Offsets applied to 'pseudo currents', 1 offset per function.
- Default: zeros
- powerconverters : list[DeviceAccess]
- List of power converter devices to apply currents (can be different
- from number of functions)
- matrix : Matrix, optional
- n x m matrix (n rows for n functions, m columns for m currents)
- to handle multipoles separation. Default: Identity
- units : list[str]
- List of strength units (i.e. ['rad', 'm-1', 'm-2'])
- """
+ Excitation curves, one per multipole.
+ powerconverters : list[str | None]
+ Names of the power converter devices associated with the hardware currents.
+ hardware_units : list[str]
+ Units of the hardware variables, one per power converter.
+ calibration_factors : list[float] | None, optional
+ Multiplicative correction factors applied to the excitation curves.
+ Defaults to ones.
+ calibration_offsets : list[float] | None, optional
+ Additive correction offsets applied to the excitation curves.
+ Defaults to zeros.
+ pseudo_factors : list[float] | None, optional
+ Multiplicative factors applied to pseudo currents.
+ Defaults to ones.
+ pseudo_offsets : list[float] | None, optional
+ Additive offsets applied to pseudo currents.
+ Defaults to zeros.
+ matrix : Matrix | None, optional
+ Coupling matrix mapping power-supply currents to pseudo currents.
+ Defaults to the identity matrix.
+ units : list[str] | None, optional
+ Strength units, one per multipole.
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ Raises
- multipoles: list[str]
- curves: list[Curve]
- calibration_factors: list[float] = None
- calibration_offsets: list[float] = None
- pseudo_factors: list[float] = None
- pseudo_offsets: list[float] = None
- powerconverters: list[DeviceAccess | None]
- matrix: Matrix = None
- units: list[str]
+ PyAMLException
+ If the list lengths do not match, if the matrix has the wrong shape, or
+ if the configuration is otherwise inconsistent.
+ Parameters
+ ----------
+ multipoles : list[str]
+ Names of the supported multipoles, for example ["B0", "A1", "B2"].
+ curves : list[Curve]
+ Excitation curves, one per multipole.
+ powerconverters : list[str | None]
+ Names of the power converter devices associated with the hardware currents.
+ hardware_units : list[str]
+ Units of the hardware variables, one per power converter.
+ calibration_factors : list[float] | None
+ Multiplicative correction factors applied to the excitation curves. Defaults to ones.
+ calibration_offsets : list[float] | None
+ Additive correction offsets applied to the excitation curves. Defaults to zeros.
+ pseudo_factors : list[float] | None
+ Multiplicative factors applied to pseudo currents. Defaults to ones.
+ pseudo_offsets : list[float] | None
+ Additive offsets applied to pseudo currents. Defaults to zeros.
+ matrix : Matrix | None
+ Coupling matrix mapping power-supply currents to pseudo currents. Defaults to the identity matrix.
+ units : list[str] | None
+ Strength units, one per multipole.
-class LinearCFMagnetModel(MagnetModel):
- """
- Class providing a simple linear model for combined function magnets. A matrix
- can handle separation of multipoles. A pseudo current is a linear combination
- of power supply currents associated to a single function.
+ Methods
+ -------
+ compute_hardware_values(strengths)
+ Convert magnet strengths to hardware values.
+ compute_strengths(currents)
+ Convert hardware values to magnet strengths.
+ get_strength_units()
+ Return the units of magnet strengths.
+ get_hardware_units()
+ Return the units of hardware values.
+ get_device_names()
+ Return the associated device names.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+ has_hardware()
+ Return whether the model provides hardware values.
"""
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
+ def __init__(
+ self,
+ multipoles: list[str],
+ curves: list[Curve],
+ powerconverters: list[str | None],
+ hardware_units: list[str],
+ calibration_factors: list[float] | None = None,
+ calibration_offsets: list[float] | None = None,
+ pseudo_factors: list[float] | None = None,
+ pseudo_offsets: list[float] | None = None,
+ matrix: Matrix | None = None,
+ units: list[str] | None = None,
+ ):
+ """
+ Initialize the LinearCFMagnetModel.
+ """
+ self.multipoles = multipoles
+ self._curves = curves
+ self._powerconverters = powerconverters
+ self.hardware_units = hardware_units
+ self._calibration_factors = calibration_factors
+ self._calibration_offsets = calibration_offsets
+ self._pseudo_factors = pseudo_factors
+ self._pseudo_offsets = pseudo_offsets
+ self._matrix = matrix
+ self.units = units
self._brho = np.nan
# Check config
- self.__nbFunction: int = len(cfg.multipoles)
- self.__nbPS: int = len(cfg.powerconverters)
+ self.__nbFunction: int = len(self.multipoles)
+ self.__nbPS: int = len(self._powerconverters)
- if cfg.calibration_factors is None:
+ if self._calibration_factors is None:
self.__calibration_factors = np.ones(self.__nbFunction)
else:
- self.__calibration_factors = cfg.calibration_factors
+ self.__calibration_factors = self._calibration_factors
- if cfg.calibration_offsets is None:
+ if self._calibration_offsets is None:
self.__calibration_offsets = np.zeros(self.__nbFunction)
else:
- self.__calibration_offsets = cfg.calibration_offsets
+ self.__calibration_offsets = self._calibration_offsets
- if cfg.pseudo_factors is None:
+ if self._pseudo_factors is None:
self.__pf = np.ones(self.__nbFunction)
else:
- self.__pf = cfg.pseudo_factors
+ self.__pf = self._pseudo_factors
- if cfg.pseudo_offsets is None:
+ if self._pseudo_offsets is None:
self.__po = np.zeros(self.__nbFunction)
else:
- self.__po = cfg.pseudo_factors
+ self.__po = self._pseudo_factors
self.__check_len(self.__calibration_factors, "calibration_factors", self.__nbFunction)
self.__check_len(self.__calibration_offsets, "calibration_offsets", self.__nbFunction)
self.__check_len(self.__pf, "pseudo_factors", self.__nbFunction)
self.__check_len(self.__po, "pseudo_offsets", self.__nbFunction)
- self.__check_len(cfg.units, "units", self.__nbFunction)
- self.__check_len(cfg.curves, "curves", self.__nbFunction)
+ self.__check_len(self.units, "units", self.__nbFunction)
+ self.__check_len(self.hardware_units, "hardware_units", self.__nbPS)
+ self.__check_len(self._curves, "curves", self.__nbFunction)
- if cfg.matrix is None:
+ if self._matrix is None:
self.__matrix = np.identity(self.__nbFunction)
else:
- self.__matrix = cfg.matrix.get_matrix()
+ self.__matrix = self._matrix.get_matrix()
_s = np.shape(self.__matrix)
@@ -115,7 +179,7 @@ def __init__(self, cfg: ConfigModel):
self.__rcurves = []
# Apply factor and offset
- for idx, c in enumerate(cfg.curves):
+ for idx, c in enumerate(self._curves):
self.__curves.append(c.get_curve())
self.__curves[idx][:, 1] *= self.__calibration_factors[idx]
self.__curves[idx][:, 1] += self.__calibration_offsets[idx]
@@ -125,6 +189,23 @@ def __init__(self, cfg: ConfigModel):
self.__inv = np.linalg.pinv(self.__matrix)
def __check_len(self, obj, name, expected_len):
+ """
+ Validate the length of a model configuration sequence.
+
+ Parameters
+ ----------
+ obj : object
+ Sequence whose length should be checked.
+ name : object
+ Configuration-field name used in an error message.
+ expected_len : object
+ Required number of entries.
+
+ Raises
+ ------
+ PyAMLException
+ If ``obj`` does not contain ``expected_len`` entries.
+ """
lgth = len(obj)
if lgth != expected_len:
raise PyAMLException(
@@ -132,6 +213,19 @@ def __check_len(self, obj, name, expected_len):
)
def compute_hardware_values(self, strengths: np.array) -> np.array:
+ """
+ Convert magnet strengths to hardware values.
+
+ Parameters
+ ----------
+ strengths : np.array
+ Strength of each magnet function, ordered as declared by the model.
+
+ Returns
+ -------
+ np.array
+ Hardware value of each power converter, ordered as declared by the model.
+ """
_pI = np.zeros(self.__nbFunction)
for idx, c in enumerate(self.__rcurves):
_pI[idx] = self.__pf[idx] * np.interp(strengths[idx] * self._brho, c[:, 0], c[:, 1]) + self.__po[idx]
@@ -139,6 +233,19 @@ def compute_hardware_values(self, strengths: np.array) -> np.array:
return _currents
def compute_strengths(self, currents: np.array) -> np.array:
+ """
+ Convert hardware values to magnet strengths.
+
+ Parameters
+ ----------
+ currents : np.array
+ Hardware value of each power converter, ordered as declared by the model.
+
+ Returns
+ -------
+ np.array
+ Strength of each magnet function, ordered as declared by the model.
+ """
_strength = np.zeros(self.__nbFunction)
_pI = np.matmul(self.__matrix, currents)
for idx, c in enumerate(self.__curves):
@@ -146,19 +253,34 @@ def compute_strengths(self, currents: np.array) -> np.array:
return _strength
def get_strength_units(self) -> list[str]:
- return self._cfg.units
+ """Return the units of magnet strengths."""
+ return self.units
def get_hardware_units(self) -> list[str]:
- return np.array([p.unit() for p in self._cfg.powerconverters])
+ """Return the units of hardware values."""
+ return self.hardware_units
- def get_devices(self) -> list[DeviceAccess]:
- return self._cfg.powerconverters
+ def get_device_names(self) -> list[str | None]:
+ """Return the associated device names."""
+ return self._powerconverters
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres, used to scale strengths into hardware values.
+ """
self._brho = brho
def has_hardware(self) -> bool:
+ """Return whether the model provides hardware values."""
return (self.__nbPS == self.__nbFunction) and np.allclose(self.__matrix, np.eye(self.__nbFunction))
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return __pyaml_repr__(self)
diff --git a/pyaml/magnet/linear_model.py b/pyaml/magnet/linear_model.py
index ac9b57e0f..148629bf5 100644
--- a/pyaml/magnet/linear_model.py
+++ b/pyaml/magnet/linear_model.py
@@ -1,70 +1,114 @@
+"""
+Linear conversion model for single-function magnets.
+
+This model maps one magnet strength to one hardware value using linear calibration parameters and an optional excitation curve.
+"""
+
import numpy as np
-from pydantic import BaseModel, ConfigDict
from ..common.element import __pyaml_repr__
-from ..configuration.curve import Curve
-from ..control.deviceaccess import DeviceAccess
+from ..validation import DynamicValidation, register_schema
+from .curve import Curve
from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "LinearMagnetModel"
-class ConfigModel(BaseModel):
+@register_schema
+class LinearMagnetModel(MagnetModel, DynamicValidation):
"""
- Linear magnet model.
+ Linear magnet model for a single magnet function.
+
+ This model converts between magnet strengths and hardware currents using a
+ single excitation curve or, if no curve is provided, a linear scaling with an
+ optional offset. It is intended for single-function magnets such as correctors
+ or other elements that use one current channel.
Parameters
----------
- curve : Curve or None, optional
- Curve object used for interpolation. By default,
- identity curve is used.
- powerconverter : DeviceAccess or None, optional
- Power converter device to apply currrent
+ unit : str
+ Unit of the magnet strength, for example ``"1/m"`` or ``"m-1"``.
+ hardware_unit : str
+ Unit of the hardware value, for example ``"A"`` or ``"V"``.
+ curve : Curve | None, optional
+ Excitation curve used for interpolation. If omitted, a linear conversion
+ is used instead.
+ powerconverter : str | None, optional
+ Name of the power converter device used to apply current.
calibration_factor : float, optional
- Correction factor applied to the curve. Default: 1.0
+ Multiplicative correction applied to the curve or linear scaling.
+ Default is ``1.0``.
calibration_offset : float, optional
- Correction offset applied to the curve. Default: 0.0
+ Additive correction applied to the curve or linear scaling.
+ Default is ``0.0``.
crosstalk : float, optional
- Crosstalk factor. Default: 1.0
- unit : str
- Unit of the strength (i.e. 1/m or m-1)
-
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- curve: Curve | None = None
- powerconverter: DeviceAccess | None
- calibration_factor: float = 1.0
- calibration_offset: float = 0.0
- crosstalk: float = 1.0
- unit: str
-
-
-class LinearMagnetModel(MagnetModel):
- """
- Class that handle manget current/strength conversion using
- linear interpolation for a single function magnet
+ Crosstalk factor applied together with the calibration factor.
+ Default is ``1.0``.
+
+ Methods
+ -------
+ compute_hardware_values(strengths)
+ Convert magnet strengths to hardware values.
+ compute_strengths(currents)
+ Convert hardware values to magnet strengths.
+ get_strength_units()
+ Return the units of magnet strengths.
+ get_hardware_units()
+ Return the units of hardware values.
+ get_device_names()
+ Return the associated device names.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+
+ Notes
+ -----
+ If a curve is provided, the model interpolates between strength and current
+ values using the curve and its inverse. If no curve is provided, the model
+ uses a simple linear relation with the stored scaling factor and offset.
"""
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
- if self._cfg.curve:
- self.__curve = cfg.curve.get_curve()
- self.__curve[:, 1] = self.__curve[:, 1] * cfg.calibration_factor * cfg.crosstalk + cfg.calibration_offset
+ def __init__(
+ self,
+ unit: str,
+ hardware_unit: str,
+ curve: Curve | None = None,
+ powerconverter: str | None = None,
+ calibration_factor: float = 1.0,
+ calibration_offset: float = 0.0,
+ crosstalk: float = 1.0,
+ ):
+ """
+ Initialize the LinearMagnetModel.
+ """
+ if curve:
+ self.__curve = curve.get_curve()
+ self.__curve[:, 1] = self.__curve[:, 1] * calibration_factor * crosstalk + calibration_offset
self.__rcurve = Curve.inverse(self.__curve)
else:
self.__curve = None
self.__rcurve = None
- self.__g = cfg.calibration_factor * cfg.crosstalk
- self.__o = cfg.calibration_offset
- self.__strength_unit = cfg.unit
- self.__hardware_unit = cfg.powerconverter.unit()
+ self.__g = calibration_factor * crosstalk
+ self.__o = calibration_offset
+ self.__strength_unit = unit
+ self.__hardware_unit = hardware_unit
+ self.__ps = powerconverter
self.__brho = np.nan
- self.__ps = cfg.powerconverter
def compute_hardware_values(self, strengths: np.array) -> np.array:
+ """
+ Convert magnet strengths to hardware values.
+
+ Parameters
+ ----------
+ strengths : np.array
+ Magnet strengths to convert, in the unit reported by :meth:`get_strength_unit`.
+
+ Returns
+ -------
+ np.array
+ Hardware values corresponding to ``strengths``.
+ """
if self.__rcurve is not None:
_current = np.interp(strengths[0] * self.__brho, self.__rcurve[:, 0], self.__rcurve[:, 1])
else:
@@ -72,6 +116,19 @@ def compute_hardware_values(self, strengths: np.array) -> np.array:
return np.array([_current])
def compute_strengths(self, currents: np.array) -> np.array:
+ """
+ Convert hardware values to magnet strengths.
+
+ Parameters
+ ----------
+ currents : np.array
+ Hardware values to convert, in the unit reported by :meth:`get_hardware_unit`.
+
+ Returns
+ -------
+ np.array
+ Strengths corresponding to ``currents``.
+ """
if self.__curve is not None:
_strength = np.interp(currents[0], self.__curve[:, 0], self.__curve[:, 1]) / self.__brho
else:
@@ -79,16 +136,30 @@ def compute_strengths(self, currents: np.array) -> np.array:
return np.array([_strength])
def get_strength_units(self) -> list[str]:
+ """Return the units of magnet strengths."""
return [self.__strength_unit] if self.__strength_unit is not None else [""]
def get_hardware_units(self) -> list[str]:
+ """Return the units of hardware values."""
return [self.__hardware_unit] if self.__hardware_unit is not None else [""]
- def get_devices(self) -> list[DeviceAccess]:
+ def get_device_names(self) -> list[str | None]:
+ """Return the associated device names."""
return [self.__ps]
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres, used to scale strengths into hardware values.
+ """
self.__brho = brho
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return __pyaml_repr__(self)
diff --git a/pyaml/magnet/linear_serialized_model.py b/pyaml/magnet/linear_serialized_model.py
index 6e6be33e3..7b30c2ea5 100644
--- a/pyaml/magnet/linear_serialized_model.py
+++ b/pyaml/magnet/linear_serialized_model.py
@@ -1,14 +1,16 @@
+"""
+Linear conversion model for serialized magnets.
+
+This model applies linear calibration to a configurable sequence of serialized magnet elements and hardware channels.
+"""
+
import numpy as np
-from pydantic import BaseModel, ConfigDict
from ..common.element import __pyaml_repr__
from ..common.exception import PyAMLException
-from ..configuration.curve import Curve
-from ..configuration.inline_curve import ConfigModel as InlineCurveModel
-from ..configuration.inline_curve import InlineCurve
-from ..configuration.matrix import Matrix
-from ..control.deviceaccess import DeviceAccess
-from .linear_model import ConfigModel as LinearConfigModel
+from ..validation import DynamicValidation, register_schema
+from .curve import Curve
+from .inline_curve import InlineCurve
from .linear_model import LinearMagnetModel
from .model import MagnetModel
@@ -16,40 +18,23 @@
PYAMLCLASS = "LinearSerializedMagnetModel"
-class ConfigModel(BaseModel):
+def _get_length(elem) -> int:
"""
- Configuration model for linear serialized magnet model
+ Return the number of serialized entries represented by a value.
+
+ ``None`` represents no entries, a list represents one entry per item, and
+ any other value represents a single entry.
Parameters
----------
- curves : Curve or list[Curve]
- Excitation curves, 1 curve for all or 1 curve per magnet
- calibration_factors : float or list[float], optional
- Correction factor applied to curves, 1 factor for all or 1 factor per magnet.
- Default: ones
- calibration_offsets : float or list[float], optional
- Correction offset applied to curves, 1 offset for all or 1 offset per magnet.
- Default: zeros
- crosstalk : float or list[float], optional
- Crosstalk factors. Default: 1.0
- powerconverter : DeviceAccess
- The hardware can be a single power supply or a list of power supplies.
- If a list is provided, the same value will be affected to all of them
- unit : str
- Strength unit: rad, m-1, m-2
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ elem : object
+ Configuration value to inspect.
- curves: Curve | list[Curve]
- calibration_factors: float | list[float] = None
- calibration_offsets: float | list[float] = None
- crosstalk: float | list[float] = 1.0
- powerconverter: DeviceAccess
- unit: str
-
-
-def _get_length(elem) -> int:
+ Returns
+ -------
+ int
+ Number of serialized entries represented by ``elem``.
+ """
if elem is None:
return 0
if isinstance(elem, list):
@@ -59,12 +44,46 @@ def _get_length(elem) -> int:
def _get_max_length(*args, **kwargs) -> int:
+ """
+ Return the largest serialized-entry count among the inputs.
+
+ Each positional and keyword value is measured with :func:`_get_length`.
+ This is used to determine the sequence length needed when scalar and list
+ configuration values are supplied together.
+
+ Parameters
+ ----------
+ *args : object
+ Positional configuration values.
+ **kwargs : object
+ Keyword configuration values.
+
+ Returns
+ -------
+ int
+ Largest represented entry count, or ``0`` when no values are given.
+ """
max_args = max([_get_length(elem) for elem in args]) if args else 0
max_kwargs = max([_get_length(elem) for elem in kwargs.values()]) if kwargs else 0
return max(max_args, max_kwargs)
def _to_list_of_length(elem, length: int) -> list:
+ """
+ Expand a scalar configuration value to a list of the requested length.
+
+ Parameters
+ ----------
+ elem : object
+ Scalar or list configuration value.
+ length : int
+ Required list length when ``elem`` is scalar.
+
+ Returns
+ -------
+ list
+ The original list, or a list repeating ``elem`` ``length`` times.
+ """
if isinstance(elem, list):
return elem
else:
@@ -72,6 +91,23 @@ def _to_list_of_length(elem, length: int) -> list:
def _check_len(obj, name, expected_length):
+ """
+ Validate the length of a serialized-magnet configuration sequence.
+
+ Parameters
+ ----------
+ obj : object
+ Sequence whose length should be checked.
+ name : object
+ Configuration-field name used in an error message.
+ expected_length : object
+ Required number of entries.
+
+ Raises
+ ------
+ PyAMLException
+ If ``obj`` does not contain ``expected_length`` entries.
+ """
length = len(obj)
if length != expected_length:
raise PyAMLException(
@@ -79,47 +115,129 @@ def _check_len(obj, name, expected_length):
)
-class LinearSerializedMagnetModel(MagnetModel):
+@register_schema
+class LinearSerializedMagnetModel(MagnetModel, DynamicValidation):
"""
- Class providing a simple linear model for combined function magnets. A matrix
- can handle separation of multipoles. A pseudo current is a linear combination
- of power supply currents associated to a single function.
+ Linear model for a serialized combined-function magnet.
+
+ This model wraps one or more :class:`LinearMagnetModel` instances and
+ represents a combined-function magnet as a set of sub-models that share a
+ common hardware readout. The excitation curve may be provided either as a
+ single :class:`Curve` instance, which is replicated for all magnets, or as a
+ list of curves with one entry per magnet.
+
+ The model supports per-magnet calibration factors, calibration offsets, and
+ crosstalk values. Strengths are converted to a single hardware current by
+ evaluating the individual sub-models and averaging their corresponding
+ hardware values. Conversely, a hardware current is mapped back to a
+ strength value for each sub-model.
+
+ Parameters
+ ----------
+ curves : Curve or list[Curve]
+ Excitation curve(s) used by the magnet model. A single curve is reused
+ for all magnets, while a list must contain one curve per magnet.
+ calibration_factors : float or list[float], optional
+ Multiplicative correction factor applied to each curve.
+ If omitted, defaults to 1.0 for all magnets.
+ calibration_offsets : float or list[float], optional
+ Additive correction offset applied to each curve.
+ If omitted, defaults to 0.0 for all magnets.
+ crosstalk : float or list[float], optional
+ Crosstalk factor for each magnet. If omitted, defaults to 1.0.
+ powerconverter : str, optional
+ Name of the associated power converter or power converter group.
+ unit : str, optional
+ Strength unit, such as ``rad``, ``m-1`` or ``m-2``.
+ hardware_unit : str, optional
+ Hardware unit, typically ``A`` or ``V``.
+
+ Methods
+ -------
+ set_number_of_magnets(nb_magnets)
+ Set the number of serialized magnets and rebuild submodels.
+ get_sub_model(index)
+ Return the linear submodel for one serialized magnet.
+ compute_hardware_values(strengths)
+ Convert magnet strengths to hardware values.
+ compute_strengths(currents)
+ Convert hardware values to magnet strengths.
+ get_strength_units()
+ Return the units of magnet strengths.
+ get_hardware_units()
+ Return the units of hardware values.
+ get_device_names()
+ Return the associated device names.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+ get_magnet_rigidity()
+ Return the configured magnetic rigidity.
+
+ Notes
+ -----
+ The number of magnets is inferred from the longest list among the supplied
+ configuration values. Scalars are expanded to match that length.
"""
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
+ def __init__(
+ self,
+ curves: Curve | list[Curve],
+ calibration_factors: float | list[float] | None = None,
+ calibration_offsets: float | list[float] | None = None,
+ crosstalk: float | list[float] = 1.0,
+ powerconverter: str | None = None,
+ unit: str | None = None,
+ hardware_unit: str | None = None,
+ ):
+ """
+ Initialize a linear model for serialized magnets.
+ """
self.__brho = np.nan
+ self._curves = curves
+ self._calibration_factors = calibration_factors
+ self._calibration_offsets = calibration_offsets
+ self._crosstalk = crosstalk
+ self._powerconverter = powerconverter
+ self._unit = unit
+ self._hardware_unit = hardware_unit
# Check config
- self.__nbMagnets: int = _get_max_length(cfg.curves, cfg.calibration_factors, cfg.calibration_offsets, cfg.crosstalk)
+ self.__nbMagnets: int = _get_max_length(curves, calibration_factors, calibration_offsets, crosstalk)
self.__calibration_factors = np.ones(self.__nbMagnets)
self.__calibration_offsets = np.ones(self.__nbMagnets)
self.__crosstalk = np.ones(self.__nbMagnets)
- self.__curves = _to_list_of_length(self._cfg.curves, self.__nbMagnets)
+ self.__curves = _to_list_of_length(curves, self.__nbMagnets)
self.__sub_models: list[LinearMagnetModel] = []
def __initialize(self):
- if self._cfg.calibration_factors is None:
+ """
+ Normalize serialized-magnet calibration and build submodels.
+
+ Scalar calibration values are expanded to the configured number of
+ magnets, sequence lengths are validated, and one
+ :class:`LinearMagnetModel` is created for each serialized element.
+ """
+ if self._calibration_factors is None:
self.__calibration_factors = np.ones(self.__nbMagnets)
else:
- self.__calibration_factors = _to_list_of_length(self._cfg.calibration_factors, self.__nbMagnets)
+ self.__calibration_factors = _to_list_of_length(self._calibration_factors, self.__nbMagnets)
- if self._cfg.calibration_offsets is None:
+ if self._calibration_offsets is None:
self.__calibration_offsets = np.zeros(self.__nbMagnets)
else:
- self.__calibration_offsets = _to_list_of_length(self._cfg.calibration_offsets, self.__nbMagnets)
+ self.__calibration_offsets = _to_list_of_length(self._calibration_offsets, self.__nbMagnets)
- if self._cfg.crosstalk is None:
+ if self._crosstalk is None:
self.__crosstalk = np.zeros(self.__nbMagnets)
else:
- self.__crosstalk = _to_list_of_length(self._cfg.crosstalk, self.__nbMagnets)
- self.__curves = _to_list_of_length(self._cfg.curves, self.__nbMagnets)
- if isinstance(self._cfg.curves, list):
- self.__curves = self._cfg.curves
+ self.__crosstalk = _to_list_of_length(self._crosstalk, self.__nbMagnets)
+ self.__curves = _to_list_of_length(self._curves, self.__nbMagnets)
+ if isinstance(self._curves, list):
+ self.__curves = self._curves
else:
self.__curves: list[Curve] = []
for _ in range(self.__nbMagnets):
- curve = InlineCurve(InlineCurveModel(mat=self._cfg.curves.get_curve()))
+ curve = InlineCurve(mat=self._curves.get_curve())
self.__curves.append(curve)
_check_len(self.__calibration_factors, "calibration_factors", self.__nbMagnets)
@@ -129,46 +247,109 @@ def __initialize(self):
self.__sub_models: list[LinearMagnetModel] = []
for magnet_idx in range(self.__nbMagnets):
- sub_model = LinearConfigModel(
+ sub_model = dict(
curve=self.__curves[magnet_idx],
calibration_factor=self.__calibration_factors[magnet_idx],
calibration_offset=self.__calibration_offsets[magnet_idx],
crosstalk=self.__crosstalk[magnet_idx],
- powerconverter=self._cfg.powerconverter,
- unit=self._cfg.unit,
+ powerconverter=self._powerconverter,
+ unit=self._unit,
+ hardware_unit=self._hardware_unit,
)
- self.__sub_models.append(LinearMagnetModel(sub_model))
+ self.__sub_models.append(LinearMagnetModel(**sub_model))
def set_number_of_magnets(self, nb_magnets: int):
+ """
+ Set the number of serialized magnets and rebuild submodels.
+
+ Parameters
+ ----------
+ nb_magnets : int
+ Number of serialized magnets represented by the model.
+ """
self.__nbMagnets = nb_magnets
self.__initialize()
def get_sub_model(self, index: int) -> LinearMagnetModel:
+ """
+ Return the linear submodel for one serialized magnet.
+
+ Parameters
+ ----------
+ index : int
+ Zero-based serialized-magnet index.
+
+ Returns
+ -------
+ LinearMagnetModel
+ Linear conversion model for the selected magnet.
+ """
return self.__sub_models[index]
def compute_hardware_values(self, strengths: np.array) -> np.array:
+ """
+ Convert magnet strengths to hardware values.
+
+ Parameters
+ ----------
+ strengths : np.array
+ Physical strengths, one per serialized magnet.
+
+ Returns
+ -------
+ np.array
+ Hardware value obtained from the submodels.
+ """
currents = [model.compute_hardware_values([s])[0] for s, model in zip(strengths, self.__sub_models, strict=True)]
return np.array([np.mean(currents)])
def compute_strengths(self, currents: np.array) -> np.array:
+ """
+ Convert hardware values to magnet strengths.
+
+ Parameters
+ ----------
+ currents : np.array
+ Hardware value shared by the serialized magnets.
+
+ Returns
+ -------
+ np.array
+ Physical strength calculated for each serialized magnet.
+ """
current = currents[0]
return np.array([model.compute_strengths([current])[0] for model in self.__sub_models])
def get_strength_units(self) -> list[str]:
- return [self._cfg.unit] * self.__nbMagnets
+ """Return the units of magnet strengths."""
+ return [self._unit] * self.__nbMagnets
def get_hardware_units(self) -> list[str]:
- return [self.__sub_models[0].get_hardware_units()[0]]
+ """Return the units of hardware values."""
+ return [self._hardware_unit]
- def get_devices(self) -> list[DeviceAccess]:
- return [self._cfg.powerconverter]
+ def get_device_names(self) -> list[str | None]:
+ """Return the associated device names."""
+ return [self._powerconverter]
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla-metres used by the submodels.
+ """
self.__brho = brho
[model.set_magnet_rigidity(brho) for model in self.__sub_models]
def get_magnet_rigidity(self) -> np.double:
+ """Return the configured magnetic rigidity."""
return self.__brho
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return __pyaml_repr__(self)
diff --git a/pyaml/magnet/magnet.py b/pyaml/magnet/magnet.py
index d98b5ca72..b01491d73 100644
--- a/pyaml/magnet/magnet.py
+++ b/pyaml/magnet/magnet.py
@@ -1,47 +1,76 @@
+"""
+Base interfaces for physical and simulated magnets.
+
+This module defines the common magnet element interface and its access to
+strength, hardware, and magnet-model information.
+"""
+
+import copy
+from typing import TYPE_CHECKING, Self
+
+import numpy as np
from scipy.constants import speed_of_light
from .. import PyAMLException
from ..common import abstract
-from ..common.element import Element, ElementConfigModel
+from ..common.element import Element, __pyaml_repr__
from .model import MagnetModel
-try:
- from typing import Self # Python 3.11+
-except ImportError:
- from typing_extensions import Self # Python 3.10 and earlier
-import numpy as np
-
+if TYPE_CHECKING:
+ from ..common.holders.element_holder import ElementHolder
-class MagnetConfigModel(ElementConfigModel):
- """
- Configuration model for magnet elements.
- Attributes
- ----------
- model : MagnetModel or None, optional
- Object in charge of converting magnet strengths to power supply values
+class Magnet(Element):
"""
+ Access one magnet of a physical or simulated lattice.
- model: MagnetModel | None = None
+ A magnet couples a device to its calibration: the attached
+ :class:`~pyaml.magnet.model.MagnetModel` owns the strength to hardware-current
+ conversion and the underlying control-system device names. The same magnet is
+ therefore readable and writable both as a physical strength and as a raw
+ hardware value.
+ Parameters
+ ----------
+ name : str
+ Element name.
+ model : MagnetModel | None, optional
+ Magnet model used to convert between strength and hardware value, and to
+ resolve the underlying control-system device names.
+ lattice_names : str | None, optional
+ Name or names of the matching element(s) in the simulated lattice. Defaults
+ to ``name``.
+ description : str | None, optional
+ Human-readable description of the magnet.
-class Magnet(Element):
- """
- Class providing access to one magnet of a physical or simulated lattice
+ Attributes
+ ----------
+ strength
+ Read/write accessor for the physical strength, in the model's strength unit.
+ hardware
+ Read/write accessor for the hardware value, in the model's hardware unit.
+ model
+ Magnet model performing the strength to hardware conversion.
+
+ Methods
+ -------
+ attach(peer, strength, hardware)
+ Return a copy of this magnet bound to a control system or simulator.
+ set_energy(energy)
+ Set the energy in eV to compute and set the magnet rigidity on the underlying magnet model.
+ set_model_name(name)
+ Sets the name of this magnet in the model (Used for combined function magnet)
+ get_model_name()
+ Returns the model name of this magnet
"""
- def __init__(self, name: str, model: MagnetModel = None):
+ def __init__(
+ self, name: str, model: MagnetModel | None = None, lattice_names: str | None = None, description: str | None = None
+ ):
"""
Construct a magnet
-
- Parameters
- ----------
- name : str
- Element name
- model : MagnetModel
- Magnet model in charge of computing coil(s) current
"""
- super().__init__(name)
+ super().__init__(name, lattice_names, description)
self.__model = model
self.__strength: abstract.ReadWriteFloatScalar = None
self.__hardware: abstract.ReadWriteFloatScalar = None
@@ -82,16 +111,32 @@ def attach(
hardware: abstract.ReadWriteFloatScalar,
) -> Self:
"""
- Create a new reference to attach this magnet to a simulator
- or a control systemand.
- """
- obj = self.__class__(self._cfg)
+ Return a copy of this magnet bound to a control system or simulator.
+
+ Parameters
+ ----------
+ peer : ElementHolder
+ Control system or simulator the copy is bound to.
+ strength : abstract.ReadWriteFloatScalar
+ Accessor for the physical strength on that peer.
+ hardware : abstract.ReadWriteFloatScalar
+ Accessor for the hardware value on that peer.
+
+ Returns
+ -------
+ Self
+ Copy of this magnet bound to ``peer``.
+ """
+ obj = copy.copy(self)
obj.__modelName = self.__modelName
obj.__strength = strength
obj.__hardware = hardware
obj._peer = peer
return obj
+ def _fill_device(self, holder: "ElementHolder") -> None:
+ holder._fill_magnet(self)
+
def set_energy(self, energy: float):
"""
Set the energy in eV to compute and set the magnet rigidity
@@ -103,7 +148,7 @@ def set_energy(self, energy: float):
def set_model_name(self, name: str):
"""
Sets the name of this magnet in the model
- (Used for combined function manget)
+ (Used for combined function magnet)
"""
self.__modelName = name
@@ -113,11 +158,13 @@ def get_model_name(self) -> str:
"""
return self.__modelName
+ @property
+ def model_name(self) -> str:
+ """Name used to identify this magnet in its model."""
+ return self.__modelName
+
def __repr__(self):
- return "%s(peer='%s', name='%s', model_name='%s', magnet_model=%s)" % (
- self.__class__.__name__,
- self.get_peer_name(),
- self.get_name(),
- self.__modelName,
- repr(self.__model),
- )
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self, exclude=["strength", "hardware"])
diff --git a/pyaml/configuration/matrix.py b/pyaml/magnet/matrix.py
similarity index 60%
rename from pyaml/configuration/matrix.py
rename to pyaml/magnet/matrix.py
index dc5b9ac71..580a9b94e 100644
--- a/pyaml/configuration/matrix.py
+++ b/pyaml/magnet/matrix.py
@@ -1,3 +1,9 @@
+"""
+Magnet response matrices.
+
+This module defines matrix representations used by magnet models.
+"""
+
from abc import ABCMeta, abstractmethod
from numpy import array
@@ -6,6 +12,11 @@
class Matrix(metaclass=ABCMeta):
"""
Abstract class providing access to a matrix
+
+ Methods
+ -------
+ get_matrix()
+ Returns the matrix
"""
@abstractmethod
diff --git a/pyaml/magnet/model.py b/pyaml/magnet/model.py
index 4b48c546d..47ffe3661 100644
--- a/pyaml/magnet/model.py
+++ b/pyaml/magnet/model.py
@@ -1,15 +1,39 @@
+"""
+Abstract interfaces for magnet conversion models.
+
+The :class:`MagnetModel` contract covers conversion between physical strengths
+and hardware setpoints, unit metadata, device names, and magnetic rigidity.
+"""
+
from abc import ABCMeta, abstractmethod
import numpy as np
import numpy.typing as npt
-from ..control.deviceaccess import DeviceAccess
-
class MagnetModel(metaclass=ABCMeta):
"""
- Abstract class providing strength to coil current conversion
- and access to underlying power supplies
+ Define the interface for magnet strength and hardware conversion.
+
+ Concrete models implement the relationship between accelerator physics
+ strengths and power-supply values for one or more magnet functions.
+
+ Methods
+ -------
+ compute_hardware_values(strengths)
+ Compute hardware value(s) from magnet strength(s)
+ compute_strengths(hardware_values)
+ Compute magnet strength(s) from hardware value(s)
+ get_strength_units()
+ Get strength units
+ get_device_names()
+ Return the control-system device names used by this model.
+ set_magnet_rigidity(brho)
+ Set the magnet rigidity.
+ has_hardware()
+ Tells if the model allows to work in hardware unit.
+ has_physics()
+ Tells if the model allows to work in physics unit.
"""
@abstractmethod
@@ -62,38 +86,25 @@ def get_strength_units(self) -> list[str]:
pass
@abstractmethod
- def get_hardware_units(self) -> list[str]:
- """
- Get hardware units
-
- Returns
- -------
- list[str]
- Array of hardware units. For a single multipole,
- returns a list of 1 item
- """
- pass
-
- @abstractmethod
- def get_devices(self) -> list[DeviceAccess | None]:
+ def get_device_names(self) -> list[str | None]:
"""
- Get device handles
+ Return the control-system device names used by this model.
Returns
-------
- list[DeviceAccess]
- Array of DeviceAcess
+ list[str | None]
+ Array of associated device names.
"""
pass
@abstractmethod
def set_magnet_rigidity(self, brho: np.double):
"""
- Set magnet rigidity
+ Set the magnet rigidity.
Parameters
----------
- brho: np.double
+ brho : np.double
Magnet rigidity used to calculate power supply setpoints
"""
pass
diff --git a/pyaml/magnet/octupole.py b/pyaml/magnet/octupole.py
index d9710a093..2247c1afd 100644
--- a/pyaml/magnet/octupole.py
+++ b/pyaml/magnet/octupole.py
@@ -1,24 +1,51 @@
+"""
+Octupole magnet elements.
+
+This module defines normal octupole configuration and runtime interfaces.
+"""
+
from ..lattice.polynom_info import PolynomInfo
-from .magnet import Magnet, MagnetConfigModel
+from ..validation import DynamicValidation, register_schema
+from .magnet import Magnet
+from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "Octupole"
-class ConfigModel(MagnetConfigModel):
- """Configuration model for Octupole magnet."""
-
- ...
-
-
-class Octupole(Magnet):
- """Octupole class"""
+@register_schema
+class Octupole(Magnet, DynamicValidation):
+ """
+ Normal octupole magnet element.
+
+ The strength is applied to the ``PolynomB[3]`` component of the underlying lattice element, the
+ field component used for controlling amplitude-dependent tune shift. Strengths are expressed in
+ ``m-3`` and converted to power-converter values by the attached magnet model.
+
+ Parameters
+ ----------
+ name : str
+ Element name.
+ model : MagnetModel | None, optional
+ Magnet model used to convert between strength and hardware value, and to
+ resolve the underlying control-system device names.
+ lattice_names : str | None, optional
+ Name or names of the matching element(s) in the simulated lattice. Defaults
+ to ``name``.
+ description : str | None, optional
+ Human-readable description of the magnet.
+
+ See Also
+ --------
+ Magnet : Base class listing the strength and hardware accessors.
+ """
polynom = PolynomInfo("PolynomB", 3)
- def __init__(self, cfg: ConfigModel):
- super().__init__(
- cfg.name,
- cfg.model if hasattr(cfg, "model") else None,
- )
- self._cfg = cfg
+ def __init__(
+ self, name: str, model: MagnetModel | None = None, lattice_names: str | None = None, description: str | None = None
+ ):
+ """
+ Initialize the Octupole.
+ """
+ super().__init__(name, model, lattice_names, description)
diff --git a/pyaml/magnet/quadrupole.py b/pyaml/magnet/quadrupole.py
index 3c720ab6d..c3b749a12 100644
--- a/pyaml/magnet/quadrupole.py
+++ b/pyaml/magnet/quadrupole.py
@@ -1,24 +1,51 @@
+"""
+Quadrupole magnet elements.
+
+This module defines normal quadrupole configuration and runtime interfaces.
+"""
+
from ..lattice.polynom_info import PolynomInfo
-from .magnet import Magnet, MagnetConfigModel
+from ..validation import DynamicValidation, register_schema
+from .magnet import Magnet
+from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "Quadrupole"
-class ConfigModel(MagnetConfigModel):
- """Configuration model for Quadrupole magnet."""
-
- ...
-
-
-class Quadrupole(Magnet):
- """Quadrupole class"""
+@register_schema
+class Quadrupole(Magnet, DynamicValidation):
+ """
+ Normal quadrupole magnet element.
+
+ The strength is applied to the ``PolynomB[1]`` component of the underlying lattice element, the
+ field component used for focusing or defocusing the beam. Strengths are expressed in ``m-1`` and
+ converted to power-converter values by the attached magnet model.
+
+ Parameters
+ ----------
+ name : str
+ Element name.
+ model : MagnetModel | None, optional
+ Magnet model used to convert between strength and hardware value, and to
+ resolve the underlying control-system device names.
+ lattice_names : str | None, optional
+ Name or names of the matching element(s) in the simulated lattice. Defaults
+ to ``name``.
+ description : str | None, optional
+ Human-readable description of the magnet.
+
+ See Also
+ --------
+ Magnet : Base class listing the strength and hardware accessors.
+ """
polynom = PolynomInfo("PolynomB", 1)
- def __init__(self, cfg: ConfigModel):
- super().__init__(
- cfg.name,
- cfg.model if hasattr(cfg, "model") else None,
- )
- self._cfg = cfg
+ def __init__(
+ self, name: str, model: MagnetModel | None = None, lattice_names: str | None = None, description: str | None = None
+ ):
+ """
+ Initialize the Quadrupole.
+ """
+ super().__init__(name, model, lattice_names, description)
diff --git a/pyaml/magnet/serialized_magnet.py b/pyaml/magnet/serialized_magnet.py
index a5d1fdf7f..58ef44222 100644
--- a/pyaml/magnet/serialized_magnet.py
+++ b/pyaml/magnet/serialized_magnet.py
@@ -1,120 +1,298 @@
+"""
+Serialized magnet elements.
+
+This module defines magnet elements composed of multiple serialized magnets.
+"""
+
+from typing import TYPE_CHECKING
+
import numpy as np
from scipy.constants import speed_of_light
from .. import PyAMLException
from ..common import abstract
-from ..common.element import Element, ElementConfigModel, __pyaml_repr__
-from ..configuration import Factory
-from ..control.deviceaccess import DeviceAccess
+from ..common.element import Element, __pyaml_repr__
+from ..configuration.factory import ELEMENT_REGISTRY
+from ..validation import DynamicValidation, register_schema
from .function_mapping import function_map
-from .magnet import Magnet, MagnetConfigModel
+from .magnet import Magnet
from .model import MagnetModel
+if TYPE_CHECKING:
+ from ..common.holders.element_holder import ElementHolder
+
# Define the main class name for this module
PYAMLCLASS = "SerializedMagnets"
-class ConfigModel(ElementConfigModel):
- function: str
- """List of magnets"""
- elements: list[str] | str
- """List of magnets"""
- model: MagnetModel | None = None
- """Object in charge of converting magnet strengths to currents"""
+class ReadWriteSerializedStrengths(abstract.ReadWriteFloatScalar):
+ """
+ Read/write aggregate for serialized-magnet strengths.
+ Parameters
+ ----------
+ elements : list[abstract.ReadWriteFloatScalar]
+ Per-magnet accessors sharing the group setpoint.
+ model : MagnetModel | None
+ Magnet model used to convert between strength and hardware value. Optional for a hardware-only group.
+
+ Methods
+ -------
+ get()
+ Return the sum of the serialized element strengths.
+ set(value)
+ Set the shared serialized-magnet strength.
+ set_and_wait(value)
+ Set the shared strength and wait for convergence.
+ unit()
+ Return the physical strength unit.
+ get_model()
+ Return the magnet conversion model.
+ get_elements()
+ Return the underlying scalar element accessors.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+ """
-class ReadWriteSerializedStrengths(abstract.ReadWriteFloatScalar):
- def __init__(self, cfg: ConfigModel, elements: list[abstract.ReadWriteFloatScalar]):
+ def __init__(
+ self,
+ elements: list[abstract.ReadWriteFloatScalar],
+ model: MagnetModel | None = None,
+ ):
+ """
+ Initialize a shared strength accessor for serialized elements.
+ """
self.elements = elements
- self._cfg = cfg
+ self.model = model
def get(self) -> float:
+ """Return the sum of the serialized element strengths."""
return sum([elem.get() for elem in self.elements])
def set(self, value: float):
+ """
+ Set the shared serialized-magnet strength.
+
+ Parameters
+ ----------
+ value : float
+ Strength applied to every magnet of the group.
+ """
self.elements[0].set(value)
def set_and_wait(self, value: float):
+ """
+ Set the shared strength and wait for convergence.
+
+ Parameters
+ ----------
+ value : float
+ Strength applied to every magnet of the group.
+
+ Raises
+ ------
+ NotImplementedError
+ Waiting for readback convergence is not implemented for this accessor.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
- return self._cfg.model.get_strength_units()[0]
+ """Return the physical strength unit."""
+ return self.model.get_strength_units()[0]
def get_model(self) -> MagnetModel:
- return self._cfg.model
+ """Return the magnet conversion model."""
+ return self.model
def get_elements(self):
+ """Return the underlying scalar element accessors."""
return self.elements
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres, forwarded to the magnet model.
+ """
[element.set_magnet_rigidity(brho) for element in self.elements]
class ReadWriteSerializedHardwares(ReadWriteSerializedStrengths):
- def __init__(self, cfg: ConfigModel, elements: list[abstract.ReadWriteFloatScalar]):
- super().__init__(cfg, elements)
+ """
+ Read/write aggregate for serialized-magnet hardware values.
+
+ Parameters
+ ----------
+ elements : list[abstract.ReadWriteFloatScalar]
+ Per-magnet accessors sharing the group setpoint.
+ model : MagnetModel | None
+ Magnet model used to convert between strength and hardware value. Optional for a hardware-only group.
+
+ Methods
+ -------
+ unit()
+ Return the hardware-value unit.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+ """
+
+ def __init__(
+ self,
+ elements: list[abstract.ReadWriteFloatScalar],
+ model: MagnetModel | None = None,
+ ):
+ """
+ Initialize a shared hardware accessor for serialized elements.
+ """
+ super().__init__(elements, model)
def unit(self) -> str:
- return self._cfg.model.get_hardware_units()[0]
+ """Return the hardware-value unit."""
+ return self.model.get_hardware_units()[0]
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres, forwarded to the magnet model.
+ """
[element.set_magnet_rigidity(brho) for element in self.elements]
-class SerializedMagnets(Element):
+@register_schema
+class SerializedMagnets(Element, DynamicValidation):
"""
- Class managing serialized magnets: a set of magnet with the same set point.
- The set point is usually managed by only one power supply but it can be covered by several ones.
- If several power supplies
+ Serialized group of magnets that share the same set point.
+ This class represents a set of magnets that are controlled together as a
+ single logical device. The serialized magnets may be driven by one power
+ supply or by several power supplies, but they share a common physics or
+ hardware set point through a combined read/write interface.
Parameters
----------
- cfg : ConfigModel
- Configuration object TODO: to describe
+ name : str
+ Name of the serialized magnet group.
+ function : str
+ Magnet function identifier used to select the concrete virtual magnet type.
+ elements : list[str] | str
+ Names of the individual magnets in the group.
+ model : MagnetModel | None, optional
+ Magnet model used to convert between strengths and hardware values.
+ description : str | None, optional
+ Human-readable description of the serialized magnet group.
+ peer : object, optional
+ Control-system or simulator peer used when attaching the magnet group.
+
+ Attributes
+ ----------
+ strength
+ Gives access to the strengths of those magnets in physics unit
+ hardware
+ Gives access to the strengths of this those magnets in hardware unit when possible
+
+ Methods
+ -------
+ get_nb_magnets()
+ Return the number of magnets in the serialized group.
+ get_magnets()
+ Return the group's virtual single-function magnets.
+ attach(peer, strengths, hardwares)
+ Attach the group and its virtual magnets to a runtime peer.
+ set_energy(energy)
+ Set beam energy for serialized-magnet strength conversion.
+ get_device_names()
+ Return the associated device names.
Raises
------
- pyaml.PyAMLException
- In case of wrong initialization
+ PyAMLException
+ If the requested function is not implemented or if the configuration is
+ invalid.
+
+ Notes
+ -----
+ The serialized group stores a virtual magnet for each underlying element. When
+ attached, each virtual magnet is bound to the same peer and the group exposes
+ aggregate strength and hardware accessors.
"""
- def __init__(self, cfg: ConfigModel, peer=None):
- super().__init__(cfg.name)
- self._cfg = cfg
- self.model = cfg.model
+ def __init__(
+ self,
+ name: str,
+ function: str,
+ elements: list[str] | str,
+ model: MagnetModel | None = None,
+ description: str | None = None,
+ peer=None,
+ ):
+ """
+ Initialize a group of magnets sharing one setpoint.
+ """
+ super().__init__(name, None, description)
+
+ self.function = function
+ self.model = model
+
self.polynom = None
self.__strengths = None
self.__hardwares = None
self.__virtuals: list[Magnet] = []
- self.__elements = cfg.elements if isinstance(cfg.elements, list) else [cfg.elements]
+ self.__elements = elements if isinstance(elements, list) else [elements]
self.model.set_number_of_magnets(len(self.__elements))
if peer is None:
# Configuration part
- self.polynom = function_map[self._cfg.function].polynom
- if self._cfg.function not in function_map:
- raise PyAMLException(self._cfg.function + " not implemented for serialized magnet")
+ self.polynom = function_map[self.function].polynom
+ if self.function not in function_map:
+ raise PyAMLException(self.function + " not implemented for serialized magnet")
for element in self.__elements:
# Check mapping validity
# Create the virtual magnet for the corresponding magnet
vm = self.__create_virtual_magnet(element)
self.__virtuals.append(vm)
# Register the virtual element in the factory to have a coherent factory and improve error reporting
- Factory.register_element(vm)
+ ELEMENT_REGISTRY.register(vm)
else:
# Attach
self._peer = peer
+ def _fill_device(self, holder: "ElementHolder") -> None:
+ holder._fill_serialized_magnets(self)
+
def __create_virtual_magnet(self, name: str) -> Magnet:
+ """
+ Create a virtual magnet for one serialized element.
+
+ The configured function mapping selects the concrete magnet class, and
+ the serialized group's model is shared with the new virtual magnet.
+
+ Parameters
+ ----------
+ name : str
+ Name assigned to the virtual magnet.
+
+ Returns
+ -------
+ Magnet
+ Newly created virtual magnet linked to the serialized group.
+ """
args = {"name": name, "model": self.model}
- virtual: Magnet = function_map[self._cfg.function](MagnetConfigModel(**args))
+ virtual: Magnet = function_map[self.function](**args)
virtual.set_model_name(self.get_name())
return virtual
def get_nb_magnets(self) -> int:
+ """Return the number of magnets in the serialized group."""
return len(self.__elements)
def get_magnets(self) -> list[Magnet]:
+ """Return the group's virtual single-function magnets."""
return self.__virtuals
def attach(
@@ -123,10 +301,27 @@ def attach(
strengths: list[abstract.ReadWriteFloatScalar],
hardwares: list[abstract.ReadWriteFloatScalar],
) -> list[Magnet]:
+ """
+ Attach the group and its virtual magnets to a runtime peer.
+
+ Parameters
+ ----------
+ peer : object
+ Control system or simulator the group is bound to.
+ strengths : list[abstract.ReadWriteFloatScalar]
+ Strength accessor of each magnet in the group, in declaration order.
+ hardwares : list[abstract.ReadWriteFloatScalar]
+ Hardware accessor of each magnet in the group, in declaration order.
+
+ Returns
+ -------
+ list[Magnet]
+ Virtual magnets of the group, each bound to ``peer``.
+ """
l = []
- n_ser_mag = SerializedMagnets(self._cfg, peer)
- n_ser_mag.__strengths = ReadWriteSerializedStrengths(self._cfg, strengths)
- n_ser_mag.__hardwares = ReadWriteSerializedHardwares(self._cfg, hardwares)
+ n_ser_mag = SerializedMagnets(self._name, self.function, self.__elements, self.model, self.description, peer)
+ n_ser_mag.__strengths = ReadWriteSerializedStrengths(strengths, self.model)
+ n_ser_mag.__hardwares = ReadWriteSerializedHardwares(hardwares, self.model)
l.append(n_ser_mag)
# Construct a single magnet for each magnet.
sub_magnets: list[Magnet] = []
@@ -159,6 +354,17 @@ def hardware(self) -> abstract.ReadWriteFloatScalar:
return self.__hardwares
def set_energy(self, energy: float):
+ """
+ Set beam energy for serialized-magnet strength conversion.
+
+ The energy is converted to magnetic rigidity and propagated to the
+ serialized magnet model.
+
+ Parameters
+ ----------
+ energy : float
+ Beam energy in electronvolts.
+ """
brho = energy / speed_of_light
if self.model is not None:
self.model.set_magnet_rigidity(brho)
@@ -168,7 +374,11 @@ def set_energy(self, energy: float):
self.__strengths.set_magnet_rigidity(brho)
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return __pyaml_repr__(self)
- def get_devices(self) -> list[DeviceAccess]:
- return self.model.get_devices()
+ def get_device_names(self) -> list[str | None]:
+ """Return the associated device names."""
+ return self.model.get_device_names()
diff --git a/pyaml/magnet/sextupole.py b/pyaml/magnet/sextupole.py
index e8218ca38..7928c6395 100644
--- a/pyaml/magnet/sextupole.py
+++ b/pyaml/magnet/sextupole.py
@@ -1,24 +1,51 @@
+"""
+Sextupole magnet elements.
+
+This module defines normal sextupole configuration and runtime interfaces.
+"""
+
from ..lattice.polynom_info import PolynomInfo
-from .magnet import Magnet, MagnetConfigModel
+from ..validation import DynamicValidation, register_schema
+from .magnet import Magnet
+from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "Sextupole"
-class ConfigModel(MagnetConfigModel):
- """Configuration model for Sextupole magnet."""
-
- ...
-
-
-class Sextupole(Magnet):
- """Sextupole class"""
+@register_schema
+class Sextupole(Magnet, DynamicValidation):
+ """
+ Normal sextupole magnet element.
+
+ The strength is applied to the ``PolynomB[2]`` component of the underlying lattice element, the
+ field component used for correcting chromaticity. Strengths are expressed in ``m-2`` and
+ converted to power-converter values by the attached magnet model.
+
+ Parameters
+ ----------
+ name : str
+ Element name.
+ model : MagnetModel | None, optional
+ Magnet model used to convert between strength and hardware value, and to
+ resolve the underlying control-system device names.
+ lattice_names : str | None, optional
+ Name or names of the matching element(s) in the simulated lattice. Defaults
+ to ``name``.
+ description : str | None, optional
+ Human-readable description of the magnet.
+
+ See Also
+ --------
+ Magnet : Base class listing the strength and hardware accessors.
+ """
polynom = PolynomInfo("PolynomB", 2)
- def __init__(self, cfg: ConfigModel):
- super().__init__(
- cfg.name,
- cfg.model if hasattr(cfg, "model") else None,
- )
- self._cfg = cfg
+ def __init__(
+ self, name: str, model: MagnetModel | None = None, lattice_names: str | None = None, description: str | None = None
+ ):
+ """
+ Initialize the Sextupole.
+ """
+ super().__init__(name, model, lattice_names, description)
diff --git a/pyaml/magnet/skewoctu.py b/pyaml/magnet/skewoctu.py
index 109edd786..b76bf3ccc 100644
--- a/pyaml/magnet/skewoctu.py
+++ b/pyaml/magnet/skewoctu.py
@@ -1,24 +1,51 @@
+"""
+Skew-octupole magnet elements.
+
+This module defines skew-octupole configuration and runtime interfaces.
+"""
+
from ..lattice.polynom_info import PolynomInfo
-from .magnet import Magnet, MagnetConfigModel
+from ..validation import DynamicValidation, register_schema
+from .magnet import Magnet
+from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "SkewOctu"
-class ConfigModel(MagnetConfigModel):
- """Configuration model for SkewOctu magnet."""
-
- ...
-
-
-class SkewOctu(Magnet):
- """SkewOctu class"""
+@register_schema
+class SkewOctu(Magnet, DynamicValidation):
+ """
+ Skew octupole magnet element.
+
+ The strength is applied to the ``PolynomA[3]`` component of the underlying lattice element, the
+ field component used for correcting high-order coupled resonances. Strengths are expressed in
+ ``m-3`` and converted to power-converter values by the attached magnet model.
+
+ Parameters
+ ----------
+ name : str
+ Element name.
+ model : MagnetModel | None, optional
+ Magnet model used to convert between strength and hardware value, and to
+ resolve the underlying control-system device names.
+ lattice_names : str | None, optional
+ Name or names of the matching element(s) in the simulated lattice. Defaults
+ to ``name``.
+ description : str | None, optional
+ Human-readable description of the magnet.
+
+ See Also
+ --------
+ Magnet : Base class listing the strength and hardware accessors.
+ """
polynom = PolynomInfo("PolynomA", 3)
- def __init__(self, cfg: ConfigModel):
- super().__init__(
- cfg.name,
- cfg.model if hasattr(cfg, "model") else None,
- )
- self._cfg = cfg
+ def __init__(
+ self, name: str, model: MagnetModel | None = None, lattice_names: str | None = None, description: str | None = None
+ ):
+ """
+ Initialize the SkewOctu.
+ """
+ super().__init__(name, model, lattice_names, description)
diff --git a/pyaml/magnet/skewquad.py b/pyaml/magnet/skewquad.py
index f79e2c309..abf6bab9b 100644
--- a/pyaml/magnet/skewquad.py
+++ b/pyaml/magnet/skewquad.py
@@ -1,24 +1,51 @@
+"""
+Skew-quadrupole magnet elements.
+
+This module defines skew-quadrupole configuration and runtime interfaces.
+"""
+
from ..lattice.polynom_info import PolynomInfo
-from .magnet import Magnet, MagnetConfigModel
+from ..validation import DynamicValidation, register_schema
+from .magnet import Magnet
+from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "SkewQuad"
-class ConfigModel(MagnetConfigModel):
- """Configuration model for SkewQuad magnet."""
-
- ...
-
-
-class SkewQuad(Magnet):
- """SkewQuad class"""
+@register_schema
+class SkewQuad(Magnet, DynamicValidation):
+ """
+ Skew quadrupole magnet element.
+
+ The strength is applied to the ``PolynomA[1]`` component of the underlying lattice element, the
+ field component used for correcting betatron coupling. Strengths are expressed in ``m-1`` and
+ converted to power-converter values by the attached magnet model.
+
+ Parameters
+ ----------
+ name : str
+ Element name.
+ model : MagnetModel | None, optional
+ Magnet model used to convert between strength and hardware value, and to
+ resolve the underlying control-system device names.
+ lattice_names : str | None, optional
+ Name or names of the matching element(s) in the simulated lattice. Defaults
+ to ``name``.
+ description : str | None, optional
+ Human-readable description of the magnet.
+
+ See Also
+ --------
+ Magnet : Base class listing the strength and hardware accessors.
+ """
polynom = PolynomInfo("PolynomA", 1)
- def __init__(self, cfg: ConfigModel):
- super().__init__(
- cfg.name,
- cfg.model if hasattr(cfg, "model") else None,
- )
- self._cfg = cfg
+ def __init__(
+ self, name: str, model: MagnetModel | None = None, lattice_names: str | None = None, description: str | None = None
+ ):
+ """
+ Initialize the SkewQuad.
+ """
+ super().__init__(name, model, lattice_names, description)
diff --git a/pyaml/magnet/skewsext.py b/pyaml/magnet/skewsext.py
index 640d996e1..5d82c1d16 100644
--- a/pyaml/magnet/skewsext.py
+++ b/pyaml/magnet/skewsext.py
@@ -1,24 +1,51 @@
+"""
+Skew-sextupole magnet elements.
+
+This module defines skew-sextupole configuration and runtime interfaces.
+"""
+
from ..lattice.polynom_info import PolynomInfo
-from .magnet import Magnet, MagnetConfigModel
+from ..validation import DynamicValidation, register_schema
+from .magnet import Magnet
+from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "SkewSext"
-class ConfigModel(MagnetConfigModel):
- """Configuration model for SkewSext magnet."""
-
- ...
-
-
-class SkewSext(Magnet):
- """SkewSext class"""
+@register_schema
+class SkewSext(Magnet, DynamicValidation):
+ """
+ Skew sextupole magnet element.
+
+ The strength is applied to the ``PolynomA[2]`` component of the underlying lattice element, the
+ field component used for correcting coupled chromatic effects. Strengths are expressed in
+ ``m-2`` and converted to power-converter values by the attached magnet model.
+
+ Parameters
+ ----------
+ name : str
+ Element name.
+ model : MagnetModel | None, optional
+ Magnet model used to convert between strength and hardware value, and to
+ resolve the underlying control-system device names.
+ lattice_names : str | None, optional
+ Name or names of the matching element(s) in the simulated lattice. Defaults
+ to ``name``.
+ description : str | None, optional
+ Human-readable description of the magnet.
+
+ See Also
+ --------
+ Magnet : Base class listing the strength and hardware accessors.
+ """
polynom = PolynomInfo("PolynomA", 2)
- def __init__(self, cfg: ConfigModel):
- super().__init__(
- cfg.name,
- cfg.model if hasattr(cfg, "model") else None,
- )
- self._cfg = cfg
+ def __init__(
+ self, name: str, model: MagnetModel | None = None, lattice_names: str | None = None, description: str | None = None
+ ):
+ """
+ Initialize the SkewSext.
+ """
+ super().__init__(name, model, lattice_names, description)
diff --git a/pyaml/magnet/spline_model.py b/pyaml/magnet/spline_model.py
index bc6d20d37..e38734451 100644
--- a/pyaml/magnet/spline_model.py
+++ b/pyaml/magnet/spline_model.py
@@ -1,87 +1,160 @@
+"""
+Spline-based conversion model for calibrated magnets.
+
+This model uses excitation-curve interpolation to convert between physical magnet strengths and hardware values.
+"""
+
import numpy as np
-from pydantic import BaseModel, ConfigDict
from scipy.interpolate import make_smoothing_spline
from ..common.element import __pyaml_repr__
-from ..configuration.curve import Curve
-from ..control.deviceaccess import DeviceAccess
+from ..validation import DynamicValidation, register_schema
+from .curve import Curve
from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "SplineMagnetModel"
-class ConfigModel(BaseModel):
+@register_schema
+class SplineMagnetModel(MagnetModel, DynamicValidation):
"""
- Configuration model for spline magnet model
+ Magnet model that converts between strength and hardware current using
+ spline interpolation.
+
+ The model represents a single-function magnet and builds two smoothing
+ splines from the supplied excitation curve:
+
+ - a forward spline for converting hardware current to magnet strength
+ - an inverse spline for converting magnet strength to hardware current
+
+ The input curve is first scaled by ``calibration_factor`` and ``crosstalk``
+ and shifted by ``calibration_offset`` before the splines are created.
Parameters
----------
curve : Curve
- Curve object used for interpolation
- powerconverter : DeviceAccess, optional
- Power converter device to apply current
+ Excitation curve used for interpolation.
+ powerconverter : str | None, optional
+ Name of the associated power converter device.
calibration_factor : float, optional
- Correction factor applied to the curve. Default: 1.0
+ Multiplicative correction applied to the curve. Default is ``1.0``.
calibration_offset : float, optional
- Correction offset applied to the curve. Default: 0.0
+ Additive correction applied to the curve. Default is ``0.0``.
crosstalk : float, optional
- Crosstalk factor. Default: 1.0
- unit : str
- Unit of the strength (i.e. 1/m or m-1)
+ Crosstalk factor applied to the curve. Default is ``1.0``.
+ unit : str | None, optional
+ Strength unit, such as ``m-1`` or ``m-2``.
+ hardware_unit : str | None, optional
+ Hardware unit, such as ``A`` or ``V``.
alpha : float, optional
- Regularization parameter (alpha >= 0). alpha = 0 means the interpolation
- passes through all the points of the curve. Default: 0.0
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- curve: Curve
- powerconverter: DeviceAccess | None
- calibration_factor: float = 1.0
- calibration_offset: float = 0.0
- crosstalk: float = 1.0
- unit: str
- alpha: float = 0.0
-
-
-class SplineMagnetModel(MagnetModel):
- """
- Class that handle manget current/strength conversion using
- spline interpolation for a single function magnet
+ Smoothing parameter passed to :func:`scipy.interpolate.make_smoothing_spline`.
+ ``alpha = 0`` gives exact interpolation through the data points.
+
+ Methods
+ -------
+ compute_hardware_values(strengths)
+ Convert magnet strengths to hardware values.
+ compute_strengths(currents)
+ Convert hardware values to magnet strengths.
+ get_strength_units()
+ Return the units of magnet strengths.
+ get_hardware_units()
+ Return the units of hardware values.
+ get_device_names()
+ Return the associated device names.
+ set_magnet_rigidity(brho)
+ Set the magnetic rigidity used for conversion.
+
+ Notes
+ -----
+ The magnet rigidity ``brho`` must be set with :meth:`set_magnet_rigidity`
+ before using the conversion methods.
"""
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
- self.__curve = cfg.curve.get_curve()
- self.__curve[:, 1] = self.__curve[:, 1] * cfg.calibration_factor * cfg.crosstalk + cfg.calibration_offset
+ def __init__(
+ self,
+ curve: Curve,
+ powerconverter: str | None = None,
+ calibration_factor: float = 1.0,
+ calibration_offset: float = 0.0,
+ crosstalk: float = 1.0,
+ unit: str | None = None,
+ hardware_unit: str | None = None,
+ alpha: float = 0.0,
+ ):
+ """
+ Initialize the SplineMagnetModel.
+ """
+ self.__curve = curve.get_curve()
+ self.__curve[:, 1] = self.__curve[:, 1] * calibration_factor * crosstalk + calibration_offset
rcurve = Curve.inverse(self.__curve)
- self.__strength_unit = cfg.unit
- self.__hardware_unit = cfg.powerconverter.unit()
+ self.__strength_unit = unit
+ self.__hardware_unit = hardware_unit
self.__brho = np.nan
- self.__ps = cfg.powerconverter
- self.__spl = make_smoothing_spline(self.__curve[:, 0], self.__curve[:, 1], lam=cfg.alpha)
- self.__rspl = make_smoothing_spline(rcurve[:, 0], rcurve[:, 1], lam=cfg.alpha)
+ self.__ps = powerconverter
+ self.__spl = make_smoothing_spline(self.__curve[:, 0], self.__curve[:, 1], lam=alpha)
+ self.__rspl = make_smoothing_spline(rcurve[:, 0], rcurve[:, 1], lam=alpha)
def compute_hardware_values(self, strengths: np.array) -> np.array:
+ """
+ Convert magnet strengths to hardware values.
+
+ Parameters
+ ----------
+ strengths : np.array
+ Magnet strengths to convert, in the unit reported by :meth:`get_strength_unit`.
+
+ Returns
+ -------
+ np.array
+ Hardware values corresponding to ``strengths``.
+ """
_current = self.__rspl(strengths[0] * self.__brho)
return np.array([_current])
def compute_strengths(self, currents: np.array) -> np.array:
+ """
+ Convert hardware values to magnet strengths.
+
+ Parameters
+ ----------
+ currents : np.array
+ Hardware values to convert, in the unit reported by :meth:`get_hardware_unit`.
+
+ Returns
+ -------
+ np.array
+ Strengths corresponding to ``currents``.
+ """
_strength = self.__spl(currents[0]) / self.__brho
return np.array([_strength])
def get_strength_units(self) -> list[str]:
+ """Return the units of magnet strengths."""
return [self.__strength_unit] if self.__strength_unit is not None else [""]
def get_hardware_units(self) -> list[str]:
+ """Return the units of hardware values."""
return [self.__hardware_unit] if self.__hardware_unit is not None else [""]
- def get_devices(self) -> list[DeviceAccess]:
+ def get_device_names(self) -> list[str | None]:
+ """Return the associated device names."""
return [self.__ps]
def set_magnet_rigidity(self, brho: np.double):
+ """
+ Set the magnetic rigidity used for conversion.
+
+ Parameters
+ ----------
+ brho : np.double
+ Magnetic rigidity in tesla metres, used to scale strengths into hardware values.
+ """
self.__brho = brho
def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
return __pyaml_repr__(self)
diff --git a/pyaml/magnet/vcorrector.py b/pyaml/magnet/vcorrector.py
index cf3a0d08e..f9614754f 100644
--- a/pyaml/magnet/vcorrector.py
+++ b/pyaml/magnet/vcorrector.py
@@ -1,34 +1,91 @@
+"""
+Vertical orbit-corrector elements.
+
+This module defines the vertical corrector configuration and runtime
+interface, including its vertical kick-angle access.
+"""
+
+from typing import Self
+
from ..common import abstract
from ..lattice.polynom_info import PolynomInfo
+from ..validation import DynamicValidation, register_schema
from .corrector import RWCorrectorAngle
-from .magnet import Magnet, MagnetConfigModel
+from .magnet import Magnet
+from .model import MagnetModel
# Define the main class name for this module
PYAMLCLASS = "VCorrector"
-class ConfigModel(MagnetConfigModel):
- """Configuration model for Vertical Corrector magnet."""
+@register_schema
+class VCorrector(Magnet, DynamicValidation):
+ """
+ Represent a vertical orbit corrector.
- ...
+ Parameters
+ ----------
+ name : str
+ Corrector name.
+ model : MagnetModel | None
+ Optional magnet model.
+ lattice_names : str | None
+ Optional lattice-element mapping.
+ description : str | None
+ Optional human-readable description.
+ Attributes
+ ----------
+ angle
+ Return read/write access to the vertical kick angle in radians.
-class VCorrector(Magnet):
- """Vertical Corrector class"""
+ Methods
+ -------
+ attach(peer, strength, hardware)
+ Return an attached copy with a bound vertical-angle handle.
+ """
polynom = PolynomInfo("PolynomA", 0)
- def __init__(self, cfg: ConfigModel):
- super().__init__(
- cfg.name,
- cfg.model if hasattr(cfg, "model") else None,
- )
- self._cfg = cfg
+ def __init__(
+ self, name: str, model: MagnetModel | None = None, lattice_names: str | None = None, description: str | None = None
+ ):
+ """
+ Initialize the VCorrector.
+ """
+ super().__init__(name, model, lattice_names, description)
self.__angle = RWCorrectorAngle(self)
@property
def angle(self) -> abstract.ReadWriteFloatScalar:
"""
- Set the kick angle.
+ Return read/write access to the vertical kick angle in radians.
"""
return self.__angle
+
+ def attach(
+ self,
+ peer,
+ strength: abstract.ReadWriteFloatScalar,
+ hardware: abstract.ReadWriteFloatScalar,
+ ) -> Self:
+ """
+ Return an attached copy with a bound vertical-angle handle.
+
+ Parameters
+ ----------
+ peer : ElementHolder
+ Control system or simulator the copy is bound to.
+ strength : abstract.ReadWriteFloatScalar
+ Accessor for the physical strength on that peer.
+ hardware : abstract.ReadWriteFloatScalar
+ Accessor for the hardware value on that peer.
+
+ Returns
+ -------
+ Self
+ Copy of this magnet bound to ``peer``.
+ """
+ obj = super().attach(peer, strength, hardware)
+ obj.__angle = RWCorrectorAngle(obj)
+ return obj
diff --git a/pyaml/rf/rf_plant.py b/pyaml/rf/rf_plant.py
index 5c5bfe53e..4a0055370 100644
--- a/pyaml/rf/rf_plant.py
+++ b/pyaml/rf/rf_plant.py
@@ -1,49 +1,91 @@
-import numpy as np
-from pydantic import BaseModel, ConfigDict
+"""
+RF-plant interfaces for accelerator frequency and voltage control.
-try:
- from typing import Self # Python 3.11+
-except ImportError:
- from typing_extensions import Self # Python 3.10 and earlier
+This module models the master clock and RF transmitters and exposes combined
+read/write handles for the plant frequency and total fundamental-harmonic
+voltage.
+"""
+
+import copy
+from typing import TYPE_CHECKING, Self
from .. import PyAMLException
from ..common import abstract
-from ..common.element import Element, ElementConfigModel
-from ..control.deviceaccess import DeviceAccess
+from ..common.element import Element, __pyaml_repr__
+from ..validation import DynamicValidation, register_schema
from .rf_transmitter import RFTransmitter
+if TYPE_CHECKING:
+ from ..common.holders.element_holder import ElementHolder
+
# Define the main class name for this module
PYAMLCLASS = "RFPlant"
-class ConfigModel(ElementConfigModel):
- masterclock: DeviceAccess | None = None
- """Device to apply main RF frequency"""
- transmitters: list[RFTransmitter] | None = None
- """List of RF trasnmitters"""
-
-
-class RFPlant(Element):
+@register_schema
+class RFPlant(Element, DynamicValidation):
"""
- Main RF object
+ Represent an accelerator RF plant and its transmitters.
+
+ The plant exposes frequency and voltage handles after it is attached to a
+ simulator or control-system element holder.
+
+ Parameters
+ ----------
+ name : str
+ Name of the RF plant.
+ masterclock : str | None
+ Name of the master-clock device, if configured.
+ transmitters : list[RFTransmitter] | None
+ RF transmitters belonging to the plant.
+ lattice_names : str | None
+ Optional lattice-element mapping.
+ description : str | None
+ Optional human-readable description.
+
+ Attributes
+ ----------
+ frequency
+ Read/write accessor for the RF frequency, in hertz.
+ voltage
+ Read/write accessor for the total accelerating voltage, in volts.
+
+ Methods
+ -------
+ attach(peer, frequency, voltage)
+ Return a copy attached to RF read/write handles.
"""
- def __init__(self, cfg: ConfigModel):
- super().__init__(cfg.name)
- self._cfg = cfg
+ def __init__(
+ self,
+ name: str,
+ masterclock: str | None = None,
+ transmitters: list[RFTransmitter] | None = None,
+ lattice_names: str | None = None,
+ description: str | None = None,
+ ):
+ """
+ Initialize an RF plant configuration.
+ """
+ super().__init__(name, lattice_names, description)
+
+ self.masterclock = masterclock
+ self.transmitters = transmitters
self.__frequency = None
self.__voltage = None
@property
def frequency(self) -> abstract.ReadWriteFloatScalar:
+ """Return the read/write master-clock frequency handle."""
if self.__frequency is None:
- raise PyAMLException(f"{str(self)} has no masterclock device defined")
+ raise PyAMLException(f"{str(self.name)} has no masterclock device defined")
return self.__frequency
@property
def voltage(self) -> abstract.ReadWriteFloatScalar:
+ """Return the read/write total fundamental-harmonic voltage handle."""
if self.__voltage is None:
- raise PyAMLException(f"{str(self)} has no trasmitter device defined")
+ raise PyAMLException(f"{str(self.name)} has no transmitter device defined")
return self.__voltage
def attach(
@@ -53,42 +95,107 @@ def attach(
voltage: abstract.ReadWriteFloatScalar,
) -> Self:
# Attach frequency attribute and returns a new reference
- obj = self.__class__(self._cfg)
+ """
+ Return a copy attached to RF read/write handles.
+
+ Parameters
+ ----------
+ peer : object
+ Simulator or control-system element holder.
+ frequency : abstract.ReadWriteFloatScalar
+ Read/write master-clock frequency handle.
+ voltage : abstract.ReadWriteFloatScalar
+ Read/write total-voltage handle.
+
+ Returns
+ -------
+ Self
+ Attached RF-plant instance.
+ """
+ obj = copy.copy(self)
obj.__frequency = frequency
obj.__voltage = voltage
obj._peer = peer
return obj
+ def _fill_device(self, holder: "ElementHolder") -> None:
+ holder._fill_rf_plant(self)
+
class RWTotalVoltage(abstract.ReadWriteFloatScalar):
+ """
+ Read/write aggregate for fundamental-harmonic transmitter voltage.
+
+ Parameters
+ ----------
+ transmitters : list[RFTransmitter]
+ Transmitters whose fundamental-harmonic voltages are summed.
+
+ Methods
+ -------
+ get()
+ Return the sum of the fundamental-harmonic transmitter voltages.
+ set(value)
+ Set the total fundamental-harmonic voltage.
+ set_and_wait(value)
+ Set the total voltage and wait for readback convergence.
+ unit()
+ Return the voltage unit reported by the first transmitter.
+ """
+
def __init__(self, transmitters: list[RFTransmitter]):
"""
- Construct a RWTotalVoltage setter
-
- Parameters
- ----------
- transmitters : list[RFTransmitter]
- List of attached transmitters
+ Construct an aggregate transmitter-voltage handle.
"""
self.__trans = transmitters
def get(self) -> float:
+ """Return the sum of the fundamental-harmonic transmitter voltages."""
sum = 0
# Count only fundamental harmonic
for t in self.__trans:
- if t._cfg.harmonic == 1.0:
+ if t.harmonic == 1.0:
sum += t.voltage.get()
return sum
def set(self, value: float):
# Assume that sum of transmitter (fundamental harmonic) distribution is 1
+ """
+ Set the total fundamental-harmonic voltage.
+
+ Parameters
+ ----------
+ value : float
+ Total voltage to distribute among fundamental-harmonic
+ transmitters.
+ """
for t in self.__trans:
- if t._cfg.harmonic == 1.0:
- v = value * t._cfg.distribution
+ if t.harmonic == 1.0:
+ v = value * t.distribution
t.voltage.set(v)
def set_and_wait(self, value: float):
+ """
+ Set the total voltage and wait for readback convergence.
+
+ Parameters
+ ----------
+ value : float
+ Requested total voltage.
+
+ Raises
+ ------
+ NotImplementedError
+ This operation is not implemented for aggregate voltage access.
+ """
raise NotImplementedError("Not implemented yet.")
def unit(self) -> str:
- return self.__trans[0]._cfg.phase.unit()
+ """Return the voltage unit reported by the first transmitter."""
+ return self.__trans[0].phase_device_access.unit()
+
+ def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self, exclude=["frequency", "voltage"])
diff --git a/pyaml/rf/rf_transmitter.py b/pyaml/rf/rf_transmitter.py
index 9014d72b6..69abe2296 100644
--- a/pyaml/rf/rf_transmitter.py
+++ b/pyaml/rf/rf_transmitter.py
@@ -1,95 +1,122 @@
-import numpy as np
-from pydantic import BaseModel, ConfigDict
+"""
+RF-transmitter configuration and read/write interfaces.
-try:
- from typing import Self # Python 3.11+
-except ImportError:
- from typing_extensions import Self # Python 3.10 and earlier
+This module models RF transmitters, their cavity assignments, harmonic and
+voltage distribution, and the voltage and phase handles bound on attachment.
+"""
+
+import copy
+from typing import Self
from .. import PyAMLException
from ..common import abstract
-from ..common.element import Element, ElementConfigModel
-from ..control.deviceaccess import DeviceAccess
+from ..common.element import Element, __pyaml_repr__
+from ..validation import DynamicValidation, register_schema
# Define the main class name for this module
PYAMLCLASS = "RFTransmitter"
-class ConfigModel(ElementConfigModel):
+@register_schema
+class RFTransmitter(Element, DynamicValidation):
"""
- Configuration model for RF Transmitter.
+ Represent an RF transmitter and its cavity controls.
- Attributes
+ A transmitter may expose read/write voltage and phase handles after it is
+ attached to a simulator or control-system element holder.
+
+ Parameters
----------
- voltage : DeviceAccess or None, optional
- Device to apply cavity voltage
- phase : DeviceAccess or None, optional
- Device to apply cavity phase
+ name : str
+ Name of the transmitter.
cavities : list[str]
- List of cavity names connected to this transmitter
- harmonic : float, optional
- Harmonic frequency ratio, 1.0 for main frequency, by default 1.0
- distribution : float, optional
- RF distribution (Part of the total RF voltage powered by this transmitter),
- by default 1.0
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ Names of cavities driven by the transmitter.
+ voltage : str | None
+ Name of the voltage device, if configured.
+ phase : str | None
+ Name of the phase device, if configured.
+ harmonic : float
+ Harmonic number associated with the transmitter.
+ distribution : float
+ Fraction of aggregate voltage assigned to this transmitter.
+ lattice_names : str | None
+ Optional lattice-element mapping.
+ description : str | None
+ Optional human-readable description.
- voltage: DeviceAccess | None = None
- phase: DeviceAccess | None = None
- cavities: list[str]
- harmonic: float = 1.0
- distribution: float = 1.0
-
-
-class RFTransmitter(Element):
- """
- Class that handle a RF transmitter
+ Attributes
+ ----------
+ voltage
+ Return the read/write RF-voltage handle in volts.
+ phase
+ Return the read/write RF-phase handle in radians.
+
+ Methods
+ -------
+ attach(peer, voltage, phase)
+ Return a copy with voltage and phase handles attached.
"""
- def __init__(self, cfg: ConfigModel):
- super().__init__(cfg.name)
- self._cfg = cfg
+ def __init__(
+ self,
+ name: str,
+ cavities: list[str],
+ voltage: str | None = None,
+ phase: str | None = None,
+ harmonic: float = 1.0,
+ distribution: float = 1.0,
+ lattice_names: str | None = None,
+ description: str | None = None,
+ ):
+ """
+ Initialize an RF-transmitter configuration.
+ """
+ super().__init__(name, lattice_names, description)
+ self.voltage_name = voltage
+ self.phase_name = phase
+ self.cavities = cavities
+ self.harmonic = harmonic
+ self.distribution = distribution
+
self.__voltage = None
self.__phase = None
@property
def voltage(self) -> abstract.ReadWriteFloatScalar:
"""
- Get the RF voltage in [V].
+ Return the read/write RF-voltage handle in volts.
Returns
-------
abstract.ReadWriteFloatScalar
- Read/write access to RF voltage
+ Read/write access to the transmitter voltage.
Raises
------
PyAMLException
- If transmitter is unattached or has no voltage device defined
+ If the transmitter is unattached or has no voltage device.
"""
if self.__voltage is None:
- raise PyAMLException(f"{str(self)} is unattached or has no voltage device defined")
+ raise PyAMLException(f"{str(self.name)} is unattached or has no voltage device defined")
return self.__voltage
@property
def phase(self) -> abstract.ReadWriteFloatScalar:
"""
- Get the RF phase in [rad].
+ Return the read/write RF-phase handle in radians.
Returns
-------
abstract.ReadWriteFloatScalar
- Read/write access to RF phase
+ Read/write access to the transmitter phase.
Raises
------
PyAMLException
- If transmitter is unattached or has no phase device defined
+ If the transmitter is unattached or has no phase device.
"""
if self.__phase is None:
- raise PyAMLException(f"{str(self)} is unattached or has no phase device defined")
+ raise PyAMLException(f"{str(self.name)} is unattached or has no phase device defined")
return self.__phase
def attach(
@@ -99,25 +126,31 @@ def attach(
phase: abstract.ReadWriteFloatScalar,
) -> Self:
"""
- Attach voltage and phase attributes to a peer.
+ Return a copy with voltage and phase handles attached.
Parameters
----------
peer : object
- The peer object (simulator or control system)
+ Simulator or control-system element holder.
voltage : abstract.ReadWriteFloatScalar
- Voltage accessor to attach
+ Read/write voltage accessor.
phase : abstract.ReadWriteFloatScalar
- Phase accessor to attach
+ Read/write phase accessor.
Returns
-------
Self
- A new attached instance of RFTransmitter
+ Attached copy of the transmitter.
"""
# Attach voltage and phase attribute and returns a new reference
- obj = self.__class__(self._cfg)
+ obj = copy.copy(self)
obj.__voltage = voltage
obj.__phase = phase
obj._peer = peer
return obj
+
+ def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self, exclude=["voltage", "phase"])
diff --git a/pyaml/tuning_tools/LOCO/__init__.py b/pyaml/tuning_tools/LOCO/__init__.py
index 8cfe36909..d25534cde 100644
--- a/pyaml/tuning_tools/LOCO/__init__.py
+++ b/pyaml/tuning_tools/LOCO/__init__.py
@@ -3,7 +3,6 @@
~~~~~~~~~~~~~~~~
pyAML
-
"""
__title__ = "pyAML"
diff --git a/pyaml/tuning_tools/LOCO/loco.py b/pyaml/tuning_tools/LOCO/loco.py
index 3e0515dc9..feda3a0be 100644
--- a/pyaml/tuning_tools/LOCO/loco.py
+++ b/pyaml/tuning_tools/LOCO/loco.py
@@ -1,8 +1,25 @@
+"""
+Linear optics from closed orbit (LOCO) analysis tools.
+
+This module contains the interface for measuring an orbit response matrix and
+running linear-optics analysis with the accelerator commissioning tools.
+"""
+
+
class loco:
- """loco help"""
+ """
+ Coordinate LOCO measurements and linear-optics analysis.
+
+ Methods
+ -------
+ run()
+ Run the configured LOCO analysis.
+ measure_orm()
+ Measure the orbit response matrix required by LOCO.
+ """
def run():
- """loco run help"""
+ """Run the configured LOCO analysis."""
def measure_orm():
- """loco measure help"""
+ """Measure the orbit response matrix required by LOCO."""
diff --git a/pyaml/tuning_tools/SOFB/__init__.py b/pyaml/tuning_tools/SOFB/__init__.py
index 2f86fabeb..8cec004e4 100644
--- a/pyaml/tuning_tools/SOFB/__init__.py
+++ b/pyaml/tuning_tools/SOFB/__init__.py
@@ -3,7 +3,6 @@
~~~~~~~~~~~~~~~~
pyAML
-
"""
__title__ = "pyAML"
diff --git a/pyaml/tuning_tools/SOFB/sofb.py b/pyaml/tuning_tools/SOFB/sofb.py
index 1530e58c1..69114732c 100644
--- a/pyaml/tuning_tools/SOFB/sofb.py
+++ b/pyaml/tuning_tools/SOFB/sofb.py
@@ -1,8 +1,25 @@
+"""
+Slow-orbit feedback control tools.
+
+This module provides the interface for applying slow orbit corrections and
+analyzing the singular-value decomposition used to select orbit steerers.
+"""
+
+
class slow_orbit_feeback:
- """slow orbit feedback help"""
+ """
+ Coordinate slow orbit feedback corrections.
+
+ Methods
+ -------
+ run()
+ Run the configured slow-orbit feedback correction.
+ get_svd_decomposition()
+ Return the SVD decomposition used for orbit steering.
+ """
def run():
- """run slow orbit feedback"""
+ """Run the configured slow-orbit feedback correction."""
def get_svd_decomposition():
- """get steerers svd decomposition"""
+ """Return the SVD decomposition used for orbit steering."""
diff --git a/pyaml/tuning_tools/__init__.py b/pyaml/tuning_tools/__init__.py
index 851e406c4..2008ae441 100644
--- a/pyaml/tuning_tools/__init__.py
+++ b/pyaml/tuning_tools/__init__.py
@@ -3,7 +3,6 @@
~~~~~~~~~~~~~~~~~~~~
pyAML
-
"""
__title__ = "pyAML"
diff --git a/pyaml/tuning_tools/bba.py b/pyaml/tuning_tools/bba.py
new file mode 100644
index 000000000..05293bc3f
--- /dev/null
+++ b/pyaml/tuning_tools/bba.py
@@ -0,0 +1,354 @@
+"""
+Beam-based alignment measurement tools.
+
+The :class:`BBA` tool determines the magnetic center of a quadrupole by
+combining controlled quadrupole-strength changes with orbit measurements from
+nearby beam-position monitors.
+"""
+
+import logging
+from typing import Callable, Optional
+
+import matplotlib.pyplot as plt
+import numpy as np
+import pySC
+from pySC.apps import measure_bba
+from pySC.apps.bba import BBAAnalysis
+from pySC.apps.codes import BBACode
+
+from ..common.constants import Action
+from ..common.exception import PyAMLException
+from ..external.pySC_interface import pySCInterface
+from ..validation import DynamicValidation, register_schema
+from .measurement_tool import MeasurementTool
+
+logger = logging.getLogger(__name__)
+
+PYAMLCLASS = "BBA"
+
+
+@register_schema
+class BBA(MeasurementTool, DynamicValidation):
+ """
+ Beam-based alignment measurement tool.
+
+ This tool determines the magnetic center of a quadrupole by varying its
+ strength while applying controlled horizontal and vertical orbit offsets.
+ The quadrupole center is identified from the corresponding zero crossings
+ in the BPM response.
+
+ Parameters
+ ----------
+ name : str
+ Name of the measurement tool.
+ bpm_array_name : str
+ Name of the BPM array used to measure the orbit.
+ bpm_name : str
+ Name of the BPM located near the quadrupole whose center is measured.
+ hcorr_name : str
+ Name of the horizontal corrector used to create horizontal orbit
+ offsets at the quadrupole.
+ vcorr_name : str
+ Name of the vertical corrector used to create vertical orbit offsets
+ at the quadrupole.
+ quad_name : str
+ Name of the quadrupole to align.
+ hcorr_delta : float
+ Change in horizontal corrector strength used for each horizontal
+ orbit-offset step.
+ vcorr_delta : float
+ Change in vertical corrector strength used for each vertical
+ orbit-offset step.
+ hquad_delta : float
+ Change in quadrupole strength used during the horizontal alignment
+ measurement.
+ vquad_delta : float
+ Change in quadrupole strength used during the vertical alignment
+ measurement.
+ n_step : int, default=1
+ Number of orbit-offset steps to perform in each plane.
+ sleep_between_step : float, default=0
+ Time in seconds to wait after changing an orbit offset.
+ n_avg_meas : int, default=1
+ Number of BPM measurements to average at each step.
+ sleep_between_meas : float, default=0
+ Time in seconds to wait between individual BPM measurements.
+
+ Methods
+ -------
+ measure(...)
+ Measure BBA.
+ h_offset()
+ Return the measured horizontal magnetic-center offset.
+ h_offset_error()
+ Return the uncertainty of the horizontal center offset.
+ v_offset()
+ Return the measured vertical magnetic-center offset.
+ v_offset_error()
+ Return the uncertainty of the vertical center offset.
+ plot_data(plane)
+ Plot BBA data.
+ """
+
+ def __init__(
+ self,
+ name: str,
+ bpm_array_name: str,
+ bpm_name: str,
+ hcorr_name: str,
+ vcorr_name: str,
+ quad_name: str,
+ hcorr_delta: float,
+ vcorr_delta: float,
+ hquad_delta: float,
+ vquad_delta: float,
+ n_step: int = 1,
+ sleep_between_step: float = 0,
+ n_avg_meas: int = 1,
+ sleep_between_meas: float = 0,
+ ):
+ """
+ Initialize the BBA.
+ """
+ super().__init__(name)
+ self.bpm_array_name = bpm_array_name
+ self.bpm_name = bpm_name
+ self.hcorr_name = hcorr_name
+ self.vcorr_name = vcorr_name
+ self.quad_name = quad_name
+ self.hcorr_delta = hcorr_delta
+ self.vcorr_delta = vcorr_delta
+ self.hquad_delta = hquad_delta
+ self.vquad_delta = vquad_delta
+ self.n_step = n_step
+ self.sleep_between_step = sleep_between_step
+ self.n_avg_meas = n_avg_meas
+ self.sleep_between_meas = sleep_between_meas
+
+ def measure(
+ self,
+ sleep_between_step: Optional[float] = None,
+ n_avg_meas: Optional[int] = None,
+ sleep_between_meas: Optional[float] = None,
+ callback: Optional[Callable] = None,
+ plane: Optional[str] = None,
+ ):
+ """
+ Measure BBA.
+
+ **Example**
+
+ .. code-block:: python
+
+ sr = Accelerator.load("tests/config/EBSOrbit.yaml")
+ SR = sr.design
+ bba = SR.get_bba("BBA-BPM_C04-04")
+
+ # Add a misalignement
+ SR.get_bpm("BPM_C04-04").offset.set([20e-6,-15e-6])
+
+ bba.measure(plane="H")
+ print(f"HOffset: {bba.h_offset()}")
+
+ bba.plot_data("H")
+
+ Parameters
+ ----------
+ sleep_between_step : float
+ Default time sleep after steerer or quad excitation
+ Default: from config
+ n_avg_meas : int, optional
+ Default number of orbit measurement per step used for averaging
+ Default from config
+ sleep_between_meas : float
+ Default time sleep between two orbit measurment
+ Default: from config
+ callback : Callable, optional
+ example: callback(action:int, callback_data: 'Complicated struct')
+ callback is executed after each strength setting and after each orbit
+ reading.
+ If the callback returns false, then the process is aborted.
+ plane : str, optional
+ Plane to perform ("H" or "V", None => both plane)
+ """
+ nb_meas = n_avg_meas if n_avg_meas is not None else self.n_avg_meas
+ sleep_step = sleep_between_step if sleep_between_step is not None else self.sleep_between_step
+ sleep_meas = sleep_between_meas if sleep_between_meas is not None else self.sleep_between_meas
+
+ element_holder = self._peer
+ interface = pySCInterface(
+ element_holder=element_holder,
+ bpm_array_name=self.bpm_array_name,
+ )
+ interface.set_wait_time = sleep_step
+ interface.read_wait_time = sleep_meas
+
+ bpms_names = element_holder.bpms.get(self.bpm_array_name).names()
+
+ bba_pySC_config = {
+ "number": bpms_names.index(self.bpm_name),
+ "QUAD": self.quad_name,
+ "HCORR": self.hcorr_name,
+ "VCORR": self.vcorr_name,
+ "HCORR_delta": self.hcorr_delta,
+ "QUAD_dk_H": self.hquad_delta,
+ "VCORR_delta": self.vcorr_delta,
+ "QUAD_dk_V": self.vquad_delta,
+ "magnet_type": "normal_quadrupole",
+ }
+
+ # logging.getLogger("pySC.apps.measurements").setLevel(logging.DEBUG)
+ # logging.getLogger("pySC.apps.bba").setLevel(logging.DEBUG)
+
+ generator = measure_bba(
+ interface=interface,
+ bpm_name=self.bpm_name,
+ config=bba_pySC_config,
+ shots_per_orbit=nb_meas,
+ n_corr_steps=self.n_step,
+ bipolar=False,
+ skip_save=True,
+ plane=plane,
+ live_ios=True,
+ )
+
+ pySC.disable_pySC_rich()
+ aborted = False
+ err = None
+ hstep = 0
+ vstep = 0
+
+ try:
+ self._register_callback(callback)
+ self._init_measure()
+ self.latest_measurement["HData"] = None
+ self.latest_measurement["VData"] = None
+ for code, measurement_object in generator:
+ if code == BBACode.HORIZONTAL_IOS_READY:
+ self.send_callback(
+ Action.MEASURE,
+ {
+ "step": hstep,
+ "plane": "H",
+ "bpm_pos": measurement_object.last_bpm_pos,
+ "ios": measurement_object.last_ios,
+ "bba_data": measurement_object.H_data,
+ },
+ )
+ hstep += 1
+ if code == BBACode.VERTICAL_IOS_READY:
+ self.send_callback(
+ Action.MEASURE,
+ {
+ "step": vstep,
+ "plane": "V",
+ "bpm_pos": measurement_object.last_bpm_pos,
+ "ios": measurement_object.last_ios,
+ "bba_data": measurement_object.V_data,
+ },
+ )
+ vstep += 1
+ if code == BBACode.HORIZONTAL_DONE:
+ result = BBAAnalysis.analyze(measurement_object.H_data)
+ self.latest_measurement["HData"] = result
+ if code == BBACode.VERTICAL_DONE:
+ result = BBAAnalysis.analyze(measurement_object.V_data)
+ self.latest_measurement["VData"] = result
+
+ except Exception as ex:
+ err = ex
+ except KeyboardInterrupt as ex:
+ aborted = True
+ finally:
+ # Restore steerer/quad strength
+ # TODO
+ self.send_callback(
+ Action.RESTORE,
+ {},
+ raiseException=False,
+ )
+
+ if err is not None:
+ raise (err)
+
+ if aborted:
+ logger.warning(f"{self.get_name()} : measurement aborted (settings not restored)")
+ return False
+
+ return True
+
+ def h_offset(self) -> float:
+ """Return the measured horizontal magnetic-center offset."""
+ return self.latest_measurement["HData"].offset if self.latest_measurement["HData"] is not None else np.nan
+
+ def h_offset_error(self) -> float:
+ """Return the uncertainty of the horizontal center offset."""
+ return self.latest_measurement["HData"].offset_error if self.latest_measurement["HData"] is not None else np.nan
+
+ def v_offset(self) -> float:
+ """Return the measured vertical magnetic-center offset."""
+ return self.latest_measurement["VData"].offset if self.latest_measurement["VData"] is not None else np.nan
+
+ def v_offset_error(self) -> float:
+ """Return the uncertainty of the vertical center offset."""
+ return self.latest_measurement["VData"].offset_error if self.latest_measurement["VData"] is not None else np.nan
+
+ def plot_data(self, plane: str):
+ """
+ Plot BBA data.
+
+ Parameters
+ ----------
+ plane : str
+ Plane to plot ("H" or "V")
+ """
+
+ planeData = plane + "Data"
+ if planeData not in self.latest_measurement or self.latest_measurement[planeData] is None:
+ raise PyAMLException("No BBA data to plot, please call measure() first")
+
+ fig, axes = plt.subplot_mosaic(mosaic=[["A", "A", "S", "S"], ["A", "A", "C", "C"]])
+
+ bpm_pos = self.latest_measurement[planeData].bpm_position
+ ios = self.latest_measurement[planeData].induced_orbit_shift
+ slopes = self.latest_measurement[planeData].slopes
+ centers = self.latest_measurement[planeData].centers
+ final_mask = self.latest_measurement[planeData].mask_accepted
+ offset = self.latest_measurement[planeData].offset
+
+ xp_min = np.min(bpm_pos) * 1e6
+ xp_max = np.max(bpm_pos) * 1e6
+ for kk in range(len(ios[0, :])):
+ p0 = np.polyfit(bpm_pos[:] * 1e6, ios[:, kk] * 1e6, 1)
+ xp = np.linspace(xp_min, xp_max, 10)
+ yp = p0[0] * xp + p0[1]
+ axes["A"].plot(xp, yp, "-", c="C0" if final_mask[kk] else "C1", alpha=0.3)
+
+ for kk in range(len(bpm_pos[:])):
+ yy = ios[kk] * 1e6
+ xx = np.ones_like(yy) * bpm_pos[kk] * 1e6
+ axes["A"].plot(xx[final_mask], yy[final_mask], ".", c="C0")
+ axes["A"].plot(xx[~final_mask], yy[~final_mask], ".", c="C1")
+
+ axes["A"].set_xlabel(f"BPM position [μm]\n{self.bpm_name} offset = {offset * 1e6:.3f} [μm]")
+ axes["A"].set_ylabel("Modulation [μm]")
+ axes["A"].grid()
+
+ bpm_numbers = np.arange(len(final_mask))
+ axes["S"].plot(bpm_numbers[final_mask], slopes[final_mask], ".", c="C0", label="")
+ axes["S"].plot(bpm_numbers[~final_mask], slopes[~final_mask], ".", c="C1")
+ axes["S"].set_xlabel("BPM number")
+ axes["S"].set_ylabel("Slope")
+ axes["S"].grid()
+
+ axes["C"].plot(bpm_numbers[final_mask], centers[final_mask] * 1e6, ".", c="C0")
+ axes["C"].plot(bpm_numbers[~final_mask], centers[~final_mask] * 1e6, ".", c="C1", label="rejected")
+ axes["C"].set_xlabel("BPM number")
+ axes["C"].set_ylabel("Center [μm]")
+ axes["C"].legend()
+ axes["C"].grid()
+
+ fig.tight_layout()
+ fig.canvas.manager.set_window_title(f"{plane} BBA {self.bpm_name}")
+
+ plt.show()
diff --git a/pyaml/tuning_tools/bba2.py b/pyaml/tuning_tools/bba2.py
new file mode 100644
index 000000000..cbee35105
--- /dev/null
+++ b/pyaml/tuning_tools/bba2.py
@@ -0,0 +1,771 @@
+"""
+Beam-based alignment analysis tools.
+
+This module contains data structures and analysis helpers for estimating
+quadrupole magnetic-center offsets from beam-position-monitor responses.
+"""
+
+import logging
+import time
+from typing import Callable, Optional
+
+import matplotlib.pyplot as plt
+import numpy as np
+
+from ..common.constants import Action
+from ..common.exception import PyAMLException
+from ..validation import DynamicValidation, register_schema
+from .measurement_tool import MeasurementTool
+
+logger = logging.getLogger(__name__)
+
+PYAMLCLASS = "BBA2"
+
+
+class BBAData:
+ """
+ Store intermediate data from one beam-based alignment plane.
+
+ The container keeps fitted kicks, steerer steps, BPM responses, and the
+ latest magnetic-center estimate for either the horizontal or vertical
+ measurement.
+
+ Methods
+ -------
+ append(st, dk, bpm, allbpm)
+ Append one steerer-step measurement to the alignment data.
+ update_offset(x, error, fit)
+ Store the fitted magnetic-center offset and its uncertainty.
+ """
+
+ def __init__(self):
+ """
+ Initialize the BBAData.
+ """
+ self.k = [] # Fitted kick
+ self.bpm_pos = [] # BPM#i position
+ self.allbpm_pos = [] # IOS (Induced Orbit Shift)
+ self.s2 = [] # sum of square
+ self.steps = [] # steerer step
+ self.lastfit = [] # Last linear fit
+
+ self.offset = np.nan
+ self.error = np.nan
+
+ def append(self, st, dk, bpm, allbpm):
+ # Append new dataset
+ """
+ Append one steerer-step measurement to the alignment data.
+
+ Parameters
+ ----------
+ st : object
+ Steerer kick applied for the measurement.
+ dk : object
+ Fitted kick response.
+ bpm : object
+ Orbit position at the reference BPM.
+ allbpm : object
+ Induced orbit shift measured at all BPMs.
+ """
+ self.steps.append(st)
+ self.k.append(dk)
+ self.bpm_pos.append(bpm)
+ self.allbpm_pos.append(allbpm)
+
+ def update_offset(self, x, error, fit):
+ # Update offset value
+ """
+ Store the fitted magnetic-center offset and its uncertainty.
+
+ Parameters
+ ----------
+ x : object
+ Estimated magnetic-center offset.
+ error : object
+ Estimated standard error of the offset.
+ fit : object
+ Coefficients of the final linear fit.
+ """
+ self.offset = x
+ self.error = error
+ self.lastfit = fit
+
+
+@register_schema
+class BBA2(MeasurementTool, DynamicValidation):
+ """
+ Beam-based alignment tool with tune correction.
+
+ This tool determines the magnetic center of a quadrupole from the BPM
+ response to controlled horizontal and vertical orbit offsets. During the
+ measurement, the quadrupole strength is varied and tune correction is used
+ to compensate for the resulting tune change.
+
+ Parameters
+ ----------
+ name : str
+ Name of the measurement tool.
+ bpm_array_name : str
+ Name of the BPM array used to measure the orbit.
+ bpm_name : str
+ Name of the BPM located near the quadrupole whose center is measured.
+ hcorr_name : str
+ Name of the horizontal corrector used to create horizontal orbit
+ offsets at the quadrupole.
+ vcorr_name : str
+ Name of the vertical corrector used to create vertical orbit offsets
+ at the quadrupole.
+ quad_name : str
+ Name of the quadrupole to align.
+ tune_correction_name : str
+ Name of the tune-correction tool used to compensate for tune changes
+ caused by varying the quadrupole strength.
+ hcorr_delta : float
+ Change in horizontal corrector strength used for each horizontal
+ orbit-offset step.
+ vcorr_delta : float
+ Change in vertical corrector strength used for each vertical
+ orbit-offset step.
+ quad_delta : float
+ Change in quadrupole strength used for the alignment measurement.
+ bipolar_delta : bool, default=False
+ If `True`, vary the quadrupole strength both above and below its
+ initial value by `quad_delta`. If `False`, apply the change in one
+ direction only.
+ minicycle_sleep_time : float, default=5
+ Time in seconds to wait for the quadrupole minicycle to complete after
+ changing its strength.
+ n_step : int, default=1
+ Number of orbit-offset steps to perform in each plane.
+ sleep_between_step : float, default=0
+ Time in seconds to wait after changing an orbit offset.
+ n_avg_meas : int, default=1
+ Number of BPM measurements to average at each step.
+ sleep_between_meas : float, default=0
+ Time in seconds to wait between individual BPM measurements.
+
+ Methods
+ -------
+ measure(...)
+ Measure BBA.
+ h_offset()
+ Return the measured horizontal magnetic-center offset.
+ h_offset_error()
+ Return the uncertainty of the horizontal center offset.
+ v_offset()
+ Return the measured vertical magnetic-center offset.
+ v_offset_error()
+ Return the uncertainty of the vertical center offset.
+ plot_plane_data(ax, plane)
+ Plot measured kicks and the fitted alignment response for one plane.
+ plot_data()
+ Plot BBA data.
+ """
+
+ def __init__(
+ self,
+ name: str,
+ bpm_array_name: str,
+ bpm_name: str,
+ hcorr_name: str,
+ vcorr_name: str,
+ quad_name: str,
+ tune_correction_name: str,
+ hcorr_delta: float,
+ vcorr_delta: float,
+ quad_delta: float,
+ bipolar_delta: bool = False,
+ minicycle_sleep_time: float = 5,
+ n_step: int = 1,
+ sleep_between_step: float = 0,
+ n_avg_meas: int = 1,
+ sleep_between_meas: float = 0,
+ ):
+ """
+ Initialize a beam-based alignment tool with tune compensation.
+ """
+ super().__init__(name)
+ self.bpm_array_name = bpm_array_name
+ self.bpm_name = bpm_name
+ self.hcorr_name = hcorr_name
+ self.vcorr_name = vcorr_name
+ self.quad_name = quad_name
+ self.tune_correction_name = tune_correction_name
+ self.hcorr_delta = hcorr_delta
+ self.vcorr_delta = vcorr_delta
+ self.quad_delta = quad_delta
+ self.bipolar_delta = bipolar_delta
+ self.minicycle_sleep_time = minicycle_sleep_time
+ self.n_step = n_step
+ self.sleep_between_step = sleep_between_step
+ self.n_avg_meas = n_avg_meas
+ self.sleep_between_meas = sleep_between_meas
+
+ @staticmethod
+ def _x_intercept(x, k, n):
+ # Linear fit on last n points
+ # x is not necessary ordered
+ """
+ Estimate the zero crossing of a linear fit.
+
+ A first-degree polynomial is fitted to the final ``n`` samples of
+ ``(x, k)``. The zero crossing of that fit and, when enough samples are
+ available, its propagated standard error are returned.
+
+ Parameters
+ ----------
+ x : array_like
+ Independent-variable samples used for the fit.
+ k : array_like
+ Dependent-variable samples to fit as a function of ``x``.
+ n : int
+ Number of trailing samples to include in the fit.
+
+ Returns
+ -------
+ intercept : float
+ Estimated value of ``x`` for which the fitted ``k`` is zero.
+ coefficients : numpy.ndarray
+ Polynomial coefficients in increasing order, ``[intercept,
+ slope]`` for the fitted ``k`` values.
+ error : float
+ Propagated standard error of ``intercept``. This is zero when
+ fewer than three samples are used.
+ """
+ xx = np.polynomial.polynomial.polyfit(x[-n:], k[-n:], 1)
+ err = 0
+ if n > 2:
+ # Compute error of the ratio r = -xx[0] / xx[1]
+ X = np.polynomial.polynomial.polyvander(x[-n:], 1)
+ R = k[-n:] - X @ xx
+ S2 = np.sum(R**2) / float(n - 2)
+ COV = S2 * np.linalg.inv(X.T @ X)
+ J = [-1 / xx[1], xx[0] / xx[1] ** 2] # Jacobian [dr/d(xx[0]) , dr/d(xx[1])]
+ err = np.sqrt(J @ COV @ J)
+
+ # return x @y=0
+ return (-xx[0] / xx[1], xx, err)
+
+ def _init_responses(
+ self, tunename: str, bpmname: str, quadname: str, steererhname: str, steerervname: str, bpmi: int, dk0=1e-5
+ ):
+ # Return:
+ # normalized response of a dipolar kick in a quad from the model (all bpms)
+ # normalized response of horizontal steerer from the model at bpm #i
+ # normalized response of vertical steerer from the model at bpm #i
+
+ # Retrieve model handle
+ """
+ Calculate normalized model responses for the alignment scan.
+
+ The responses describe the effect of a dipole kick at the quadrupole
+ and the horizontal and vertical steerers at the reference BPM.
+
+ Parameters
+ ----------
+ tunename : str
+ Name of the tune-correction tool.
+ bpmname : str
+ Name of the BPM array.
+ quadname : str
+ Name of the quadrupole.
+ steererhname : str
+ Name of the horizontal steerer.
+ steerervname : str
+ Name of the vertical steerer.
+ bpmi : int
+ Index of the reference BPM.
+ dk0 : object
+ Small calibration kick used to calculate model responses.
+ """
+ design = self.peer.peer.design
+
+ # handles
+ quad = design.magnet.get(quadname)
+ sth = design.magnet.get(steererhname)
+ stv = design.magnet.get(steerervname)
+ orbit = design.bpms.get(bpmname).positions
+ tune_design = design.get_tune_tuning(tunename)
+ tune_live = self._peer.get_tune_tuning(tunename)
+
+ # Get tune from live and adjust the model to improve quad response phase
+ tune0 = tune_design.readback()
+ tune = tune_live.readback()
+ logger.debug(f"Live tune: {tune}")
+ logger.debug(f"Model tune: {tune0}")
+ tune_design.set(tune)
+ logger.debug(f"Model tune: {tune_design.readback()}")
+
+ # quadrupole
+ a0 = quad.strength.get("PolynomA", 0)
+ b0 = quad.strength.get("PolynomB", 0)
+ step = [-dk0, 0, dk0]
+
+ orb0 = orbit.get()
+ quad.strength.set(b0 - dk0, "PolynomB", 0)
+ orbm = orbit.get()
+ quad.strength.set(b0 + dk0, "PolynomB", 0)
+ orbp = orbit.get()
+ quad.strength.set(b0, "PolynomB", 0)
+
+ orbx = [orbm[:, 0], orb0[:, 0], orbp[:, 0]]
+ fit = np.polynomial.polynomial.polyfit(step, orbx, 1)
+ ref_ios_x = fit[1]
+
+ quad.strength.set(a0 - dk0, "PolynomA", 0)
+ orbm = orbit.get()
+ quad.strength.set(a0 + dk0, "PolynomA", 0)
+ orbp = orbit.get()
+ quad.strength.set(a0, "PolynomA", 0)
+
+ orby = [orbm[:, 1], orb0[:, 1], orbp[:, 1]]
+ fit = np.polynomial.polynomial.polyfit(step, orby, 1)
+ ref_ios_y = fit[1]
+
+ # steerers
+ a0 = sth.strength.get()
+ b0 = stv.strength.get()
+ step = [-dk0, 0, dk0]
+
+ orb0 = orbit.get()
+ sth.strength.set(b0 - dk0)
+ orbm = orbit.get()
+ sth.strength.set(b0 + dk0)
+ orbp = orbit.get()
+ sth.strength.set(b0)
+
+ orbx = [orbm[bpmi, 0], orb0[bpmi, 0], orbp[bpmi, 0]]
+ fit = np.polynomial.polynomial.polyfit(step, orbx, 1)
+ bpm_fact_x = fit[1]
+
+ stv.strength.set(a0 - dk0)
+ orbm = orbit.get()
+ stv.strength.set(a0 + dk0)
+ orbp = orbit.get()
+ stv.strength.set(a0)
+
+ orby = [orbm[bpmi, 1], orb0[bpmi, 1], orbp[bpmi, 1]]
+ fit = np.polynomial.polynomial.polyfit(step, orby, 1)
+ bpm_fact_y = fit[1]
+
+ # Restore tune
+ tune_design.set(tune0)
+
+ ref = np.array([ref_ios_x, ref_ios_y]).T
+ return ref, bpm_fact_x, bpm_fact_y
+
+ def _fit_kick(self, meas, ref, mask):
+ # Correlate measured ios and theoretical one
+
+ """
+ Fit a scale factor between measured and reference orbit shifts.
+
+ The fit is performed through the origin using the selected samples.
+ This estimates the kick amplitude that best matches ``ref`` to
+ ``meas`` in a least-squares sense.
+
+ Parameters
+ ----------
+ meas : array_like
+ Measured induced orbit shifts.
+ ref : array_like
+ Reference or theoretical orbit shifts.
+ mask : array_like
+ Boolean mask selecting samples included in the fit.
+
+ Returns
+ -------
+ float
+ Fitted scale factor. Returns ``0`` when the selected reference
+ shifts contain no signal.
+ """
+ xy = np.multiply(meas[mask], ref[mask])
+ xx = np.multiply(ref[mask], ref[mask])
+ if sum(xx) == 0:
+ return 0
+ else:
+ return sum(xy) / sum(xx)
+
+ def _get_averaged_orbit(self):
+ # Get averaged orbit
+
+ """Return the orbit averaged over the configured measurements."""
+ avgorb = np.zeros((len(self._bpms), 2))
+ for avg in range(self._nb_meas):
+ o = self._bpms.positions.get()
+ avgorb += o
+ if avg < self._nb_meas - 1:
+ time.sleep(self._sleep_meas)
+
+ avgorb /= float(self._nb_meas)
+ return avgorb
+
+ def _one_step_dk(self, dk0: list[float], dk1: float, bipolar_delta: bool):
+ # Measrue IOS
+
+ """
+ Measure the induced orbit shift for one quadrupole-strength step.
+
+ The configured steerers and quadrupole are changed temporarily. The
+ orbit is measured before and after the quadrupole step, then the
+ quadrupole is restored to its initial strength. For bipolar steps, the
+ response is calculated from both positive and negative perturbations.
+
+ Parameters
+ ----------
+ dk0 : list[float]
+ Horizontal and vertical steerer kicks to apply.
+ dk1 : float
+ Quadrupole-strength step.
+ bipolar_delta : bool
+ If ``True``, measure both positive and negative quadrupole steps.
+
+ Returns
+ -------
+ tuple
+ ``(x, dkx, y, dky, ios_x, ios_y)`` containing the orbit at the
+ reference BPM, fitted horizontal and vertical kick factors, and
+ the horizontal and vertical induced orbit shifts.
+
+ Raises
+ ------
+ PyAMLException
+ If either requested steerer kick exceeds 200 microradians.
+ """
+ if any(abs(dk) > 200e-6 for dk in dk0):
+ raise PyAMLException("Requested dk too high (>200urad), consider using bump")
+
+ # Set steerer
+ if np.fabs(dk0[0]) > 0:
+ _str = dk0[0] + self._initial_k0[0]
+ self._h_steer.strength.set(_str)
+ self.send_callback(Action.APPLY, {"step": self._step, "magnet": self._h_steer.name, "strength": _str})
+ if np.fabs(dk0[1]) > 0:
+ _str = dk0[1] + self._initial_k0[1]
+ self._v_steer.strength.set(_str)
+ self.send_callback(Action.APPLY, {"step": self._step, "magnet": self._v_steer.name, "strength": _str})
+
+ time.sleep(self._sleep_step)
+ orb0 = self._get_averaged_orbit()
+
+ # Set quad
+ _str = self._initial_k1 + dk1 * self._quad_polarity
+ self._quad.strength.set(_str)
+ self.send_callback(Action.APPLY, {"step": self._step, "magnet": self._quad.name, "strength": _str})
+ time.sleep(self._sleep_step)
+ orbp = self._get_averaged_orbit()
+
+ ios_x = []
+ ios_y = []
+
+ if bipolar_delta:
+ # one more point at k1 - dk1
+ _str = self._initial_k1 - dk1 * self._quad_polarity
+ self._quad.strength.set(_str)
+ self.send_callback(Action.APPLY, {"step": self._step, "magnet": self._quad.name, "strength": _str})
+ time.sleep(self._sleep_step)
+ orbm = self._get_averaged_orbit()
+ # take slopes and compute corresponding delta orbit
+ stepx = [-dk1 * self._quad_polarity, 0, dk1 * self._quad_polarity]
+ orbx = [orbm[:, 0], orb0[:, 0], orbp[:, 0]]
+ fit = np.polynomial.polynomial.polyfit(stepx, orbx, 1)
+ ios_x = fit[1] * dk1
+
+ orby = [orbm[:, 1], orb0[:, 1], orbp[:, 1]]
+ fit = np.polynomial.polynomial.polyfit(stepx, orby, 1)
+ ios_y = fit[1] * dk1
+ else:
+ ios_x = orbp[:, 0] - orb0[:, 0]
+ ios_y = orbp[:, 1] - orb0[:, 1]
+
+ # resotre quad
+ _str = self._initial_k1
+ self._quad.strength.set(_str)
+ self.send_callback(Action.APPLY, {"step": self._step, "magnet": self._quad.name, "strength": _str})
+
+ nanx = ~np.isnan(ios_x)
+ x = orb0[self._bpmi, 0]
+ dkx = self._fit_kick(ios_x, self._ref_ios[:, 0], nanx)
+
+ nany = ~np.isnan(ios_y)
+ y = orb0[self._bpmi, 1]
+ dky = self._fit_kick(ios_y, self._ref_ios[:, 1], nany)
+
+ return x, dkx, y, dky, ios_x, ios_y
+
+ def measure(
+ self,
+ sleep_between_step: Optional[float] = None,
+ n_avg_meas: Optional[int] = None,
+ sleep_between_meas: Optional[float] = None,
+ callback: Optional[Callable] = None,
+ plane: Optional[str] = None,
+ ):
+ """
+ Measure BBA.
+
+ **Example**
+
+ .. code-block:: python
+
+ sr = Accelerator.load("tests/config/EBSOrbit.yaml")
+ SR = sr.live
+ bba = SR.get_bba("BBA2-BPM_C04-04")
+
+ # Add a misalignement
+ SR.get_bpm("BPM_C04-04").offset.set([200e-6,-150e-6])
+
+ bba.measure(sleep_between_step=6,plane='V',callback=bba_callback)
+
+ print(f"HOffset: {bba.h_offset()*1e6:.3f} um {bba.h_offset_error()}")
+ print(f"VOffset: {bba.v_offset()*1e6:.3f} um {bba.v_offset_error()}")
+
+ bba.plot_data()
+
+ Parameters
+ ----------
+ sleep_between_step : float
+ Default time sleep after steerer or quad excitation
+ Default: from config
+ n_avg_meas : int, optional
+ Default number of orbit measurement per step used for averaging
+ Default from config
+ sleep_between_meas : float
+ Default time sleep between two orbit measurment
+ Default: from config
+ callback : Callable, optional
+ example: callback(action:int, callback_data: 'Complicated struct')
+ callback is executed after each strength setting and after each orbit
+ reading.
+ If the callback returns false, then the process is aborted.
+ plane : str, optional
+ Plane to perform ("H" or "V", None => both plane)
+ """
+ self._nb_meas = n_avg_meas if n_avg_meas is not None else self.n_avg_meas
+ self._sleep_step = sleep_between_step if sleep_between_step is not None else self.sleep_between_step
+ self._sleep_meas = sleep_between_meas if sleep_between_meas is not None else self.sleep_between_meas
+
+ # Device handles
+ self.check_peer()
+ self._h_steer = self.peer.magnet.get(self.hcorr_name)
+ self._v_steer = self.peer.magnet.get(self.vcorr_name)
+ self._quad = self.peer.magnet.get(self.quad_name)
+ self._bpms = self.peer.bpms.get(self.bpm_array_name)
+ self._bpmi = self._bpms.names().index(self.bpm_name)
+
+ # Initial values
+ self._initial_k0 = [self._h_steer.strength.get(), self._v_steer.strength.get()]
+ self._initial_k1 = self._quad.strength.get()
+ self._quad_polarity = np.sign(self._initial_k1) if self._initial_k1 != 0 else 1
+
+ self._ref_ios, fx, fy = self._init_responses(
+ self.tune_correction_name,
+ self.bpm_array_name,
+ self.quad_name,
+ self.hcorr_name,
+ self.vcorr_name,
+ self._bpmi,
+ )
+
+ dk0h = self.hcorr_delta if plane is None or plane == "H" else 0
+ dk0v = self.vcorr_delta if plane is None or plane == "V" else 0
+ dk1 = self.quad_delta
+ bidelta = self.bipolar_delta
+ doH = dk0h != 0
+ doV = dk0v != 0
+ aborted = False
+ err = None
+
+ logger.debug(f"Initial H corrector {self.hcorr_name} value: {self._initial_k0[0]} rad")
+ logger.debug(f"Initial V corrector {self.vcorr_name} value: {self._initial_k0[1]} rad")
+ logger.debug(f"Initial quad {self.quad_name} value: {self._initial_k1} m-1")
+
+ try:
+ self._register_callback(callback)
+ self._init_measure()
+ self.latest_measurement["HData"] = None
+ self.latest_measurement["VData"] = None
+ X = BBAData()
+ Y = BBAData()
+
+ # Mini cycle
+ if self.minicycle_sleep_time > 0:
+ logger.debug(f"Quad mini cycling {self.quad_name}")
+ _str = self._initial_k1 + dk1 * self._quad_polarity
+ self._quad.strength.set(_str)
+ self.send_callback(Action.APPLY, {"step": -1, "magnet": self._quad.name, "strength": _str})
+ time.sleep(self.minicycle_sleep_time)
+ _str = self._initial_k1
+ self._quad.strength.set(_str)
+ self.send_callback(Action.APPLY, {"step": -1, "magnet": self._quad.name, "strength": _str})
+ time.sleep(self.minicycle_sleep_time)
+
+ opt_found = False
+ self._step = 0
+ stx = 0
+ sty = 0
+ while not opt_found and self._step < 9:
+ ist = self._step % 3
+ _from = f"{stx},{sty}"
+
+ if ist == 0:
+ stx -= dk0h
+ sty -= dk0v
+ _to = f"{stx},{sty}"
+ logger.debug(f"Moving in the negative direction: {_from} -> {_to}")
+
+ if ist == 1:
+ stx += 2 * dk0h
+ sty += 2 * dk0v
+ _to = f"{stx},{sty}"
+ logger.debug(f"Moving in the positive direction: {_from} -> {_to}")
+
+ if ist == 2:
+ H_found = False
+ V_found = False
+
+ if doH:
+ stx, _, _ = BBA2._x_intercept(X.steps, X.k, 2)
+ H_found = X.steps[-2] <= stx <= X.steps[-1] # don't rely on extrapolation
+ if doV:
+ sty, _, _ = BBA2._x_intercept(Y.steps, Y.k, 2)
+ V_found = Y.steps[-2] <= sty <= Y.steps[-1] # don't rely on extrapolation
+
+ opt_found = (
+ doH and not doV and H_found or not doH and doV and V_found or doH and doV and H_found and V_found
+ )
+
+ _to = f"{stx},{sty}"
+ logger.debug(f"Moving to the best guess: {_from} -> {_to}")
+
+ x, dkx, y, dky, dataxbpm, dataybpm = self._one_step_dk([stx, sty], dk1, bidelta)
+ X.append(stx, dkx, x, dataxbpm)
+ Y.append(sty, dky, y, dataybpm)
+
+ if doH:
+ self.send_callback(Action.MEASURE, {"step": self._step, "plane": "H", "bpm_pos": x, "ios": dataxbpm})
+
+ if doV:
+ self.send_callback(Action.MEASURE, {"step": self._step, "plane": "V", "bpm_pos": y, "ios": dataybpm})
+
+ self._step += 1
+
+ # Final step
+
+ if doH:
+ stx, lxfit, errx = BBA2._x_intercept(X.steps, X.k, 3)
+
+ if doV:
+ sty, lyfit, erry = BBA2._x_intercept(Y.steps, Y.k, 3)
+
+ _to = f"{stx},{sty}"
+ logger.debug(f"Moving to the optimum: {_to}")
+
+ x, dkx, y, dky, dataxbpm, dataybpm = self._one_step_dk([stx, sty], dk1, bidelta)
+ X.append(stx, dkx, x, dataxbpm)
+ Y.append(sty, dky, y, dataybpm)
+
+ if doH:
+ X.update_offset(x, errx * np.fabs(fx), lxfit)
+ self.latest_measurement["HData"] = X
+
+ if doV:
+ Y.update_offset(y, erry * np.fabs(fy), lyfit)
+ self.latest_measurement["VData"] = Y
+
+ except Exception as ex:
+ err = ex
+ except KeyboardInterrupt as ex:
+ aborted = True
+ finally:
+ # Restore steerer/quad strength
+ if doH:
+ self._h_steer.strength.set(self._initial_k0[0])
+ if doV:
+ self._v_steer.strength.set(self._initial_k0[1])
+ self._quad.strength.set(self._initial_k1)
+ self.send_callback(
+ Action.RESTORE,
+ {},
+ raiseException=False,
+ )
+
+ if err is not None:
+ raise (err)
+
+ if aborted:
+ logger.warning(f"{self.get_name()} : measurement aborted (settings not restored)")
+ return False
+
+ return True
+
+ def h_offset(self) -> float:
+ """Return the measured horizontal magnetic-center offset."""
+ return self.latest_measurement["HData"].offset if self.latest_measurement["HData"] is not None else np.nan
+
+ def h_offset_error(self) -> float:
+ """Return the uncertainty of the horizontal center offset."""
+ return self.latest_measurement["HData"].error if self.latest_measurement["HData"] is not None else np.nan
+
+ def v_offset(self) -> float:
+ """Return the measured vertical magnetic-center offset."""
+ return self.latest_measurement["VData"].offset if self.latest_measurement["VData"] is not None else np.nan
+
+ def v_offset_error(self) -> float:
+ """Return the uncertainty of the vertical center offset."""
+ return self.latest_measurement["VData"].error if self.latest_measurement["VData"] is not None else np.nan
+
+ def plot_plane_data(self, ax, plane: str):
+ """
+ Plot measured kicks and the fitted alignment response for one plane.
+
+ Parameters
+ ----------
+ ax : object
+ Matplotlib axes on which to draw the data.
+ plane : str
+ Plane data key, typically ``"HData"`` or ``"VData"``.
+ """
+ yp = self.latest_measurement[plane].k
+ xp = self.latest_measurement[plane].steps
+
+ b = self.latest_measurement[plane].lastfit[0]
+ a = self.latest_measurement[plane].lastfit[1]
+
+ ax.plot(xp, yp, marker="o", linewidth=0)
+ ax.axline((0, b), slope=a, linestyle="--", color="lightblue", label="last fit")
+ ax.plot(xp[-4:-1], yp[-4:-1], color="salmon", marker="o", linewidth=0, label="last fit")
+ ax.plot(xp[-1:], yp[-1:], color="green", marker="o", linewidth=0, label="optimum")
+ ax.set_xlabel(f"Steerer (rad)\nOptimun kick @ bpm={self.latest_measurement[plane].offset * 1e6:.3f} um")
+ ax.set_ylabel("Fitted kick")
+ ax.grid()
+ ax.legend()
+
+ def plot_data(self):
+ """
+ Plot BBA data.
+ """
+
+ noH = "HData" not in self.latest_measurement or self.latest_measurement["HData"] is None
+ noV = "VData" not in self.latest_measurement or self.latest_measurement["VData"] is None
+ nrow = 0 if noH else 1
+ nrow += 0 if noV else 1
+
+ if nrow == 0:
+ raise PyAMLException("No BBA data to plot, please call measure() first")
+
+ fig = plt.figure()
+ irow = 1
+ if not noH:
+ ax = fig.add_subplot(nrow, 1, irow)
+ self.plot_plane_data(ax, "HData")
+ irow += 1
+ if not noV:
+ ax = fig.add_subplot(nrow, 1, irow)
+ self.plot_plane_data(ax, "VData")
+
+ fig.tight_layout()
+ fig.canvas.manager.set_window_title(f"BBA {self.bpm_name}")
+
+ plt.show()
diff --git a/pyaml/tuning_tools/chromaticity.py b/pyaml/tuning_tools/chromaticity.py
index a57457cd2..280c9690a 100644
--- a/pyaml/tuning_tools/chromaticity.py
+++ b/pyaml/tuning_tools/chromaticity.py
@@ -1,19 +1,23 @@
+"""
+Chromaticity correction and response-matrix tools.
+
+The :class:`Chromaticity` tool reads measured chromaticity, computes sextupole
+strength corrections from a response matrix, and applies those corrections to
+an accelerator model or control-system interface.
+"""
+
from pathlib import Path
from typing import TYPE_CHECKING
from .. import PyAMLException
-from ..common.element import ElementConfigModel
-from ..diagnostics.chromaticity_monitor import ChomaticityMonitor
+from ..validation import DynamicValidation, register_schema
+from .chromaticity_monitor import ChromaticityMonitor
from .response_matrix_data import ResponseMatrixData
from .tuning_tool import TuningTool
if TYPE_CHECKING:
from ..arrays.magnet_array import MagnetArray
-try:
- from typing import Self # Python 3.11+
-except ImportError:
- from typing_extensions import Self # Python 3.10 and earlier
import logging
import time
@@ -25,55 +29,71 @@
PYAMLCLASS = "Chromaticity"
-class ConfigModel(ElementConfigModel):
+@register_schema
+class Chromaticity(TuningTool, DynamicValidation):
"""
- Configuration model for Tune
+ Adjust horizontal and vertical chromaticity with sextupole strengths.
+
+ A response matrix maps sextupole-strength changes to chromaticity changes.
+ Its pseudoinverse is used to calculate the strength correction required for
+ a requested chromaticity change.
Parameters
----------
+ name : str
+ Name of the tuning tool.
sextu_array_name : str
- Array name of sextu used to adjust the chromaticity
- chromaticty_monitor_name : str
- Name of the diagnostic pyaml device for measuring the chromaticity
+ Name of the sextupole array used to adjust the chromaticity.
+ chromaticity_monitor_name : str
+ Name of the chromaticity monitor used for readback.
response_matrix : str | ResponseMatrixData
- filename or data of the chromaticity response matrix
- """
-
- sextu_array_name: str
- chromaticty_monitor_name: str
- response_matrix: str | ResponseMatrixData
+ Chromaticity response matrix or path to a saved response matrix file.
-
-class Chromaticity(TuningTool):
- """
- Class providing chromaticity adjustment tool
+ Attributes
+ ----------
+ response_matrix
+ Return the loaded chromaticity response matrix, if available.
+
+ Methods
+ -------
+ load(load_path)
+ Load a chromaticity response matrix and prepare its pseudoinverse.
+ get()
+ Return the requested horizontal and vertical chromaticity.
+ readback()
+ Measure and return the current horizontal and vertical chromaticity.
+ set(chroma, iter=1, wait_time=0.0)
+ Iteratively correct chromaticity to a requested setpoint.
+ correct(dchroma)
+ Calculate sextupole-strength changes for a chromaticity change.
+ add(dchroma, wait_time=0.0)
+ Apply a chromaticity correction relative to the current setpoint.
"""
- def __init__(self, cfg: ConfigModel):
+ def __init__(
+ self, name: str, sextu_array_name: str, chromaticity_monitor_name: str, response_matrix: str | ResponseMatrixData
+ ):
"""
- Construct a chromaticity adjustment object.
-
- Parameters
- ----------
- cfg : ConfigModel
- Configuration for the tune adjustment.
+ Initialize a chromaticity adjustment tool.
"""
- super().__init__(cfg.name)
- self._cfg = cfg
+ super().__init__(name)
+ self.sextu_array_name = sextu_array_name
+ self._chromaticity_monitor_name = chromaticity_monitor_name
+ self.response_matrix_file = response_matrix
self._response_matrix = None
self._correctionmat = None
# If the configuration response matrix is a filename, load it
- if type(cfg.response_matrix) is str:
+ if type(self.response_matrix_file) is str:
try:
- cfg.response_matrix = ResponseMatrixData.load(cfg.response_matrix)
+ self._response_matrix = ResponseMatrixData.load(self.response_matrix_file)
except Exception as e:
logger.warning(f"{str(e)}")
- cfg.response_matrix = None
+ self._response_matrix = None
# Invert matrix
- if cfg.response_matrix:
- self._response_matrix = np.array(cfg.response_matrix._cfg.matrix)
+ if self._response_matrix:
+ self._response_matrix = np.array(self._response_matrix.matrix)
self._correctionmat = np.linalg.pinv(self._response_matrix)
# TODO: Initialise first setpoint
@@ -81,59 +101,55 @@ def __init__(self, cfg: ConfigModel):
@property
def response_matrix(self) -> ResponseMatrixData | None:
- """
- Return the response matrix if it has been loaded None otherwise
- """
- return self._cfg.response_matrix
+ """Return the loaded chromaticity response matrix, if available."""
+ return self._response_matrix
def load(self, load_path: Path):
"""
- Dynamically loads a response matrix.
+ Load a chromaticity response matrix and prepare its pseudoinverse.
Parameters
----------
load_path : Path
- Filename of the :class:`~.ResponseMatrixData` to load
+ Path to the serialized :class:`~.ResponseMatrixData` file.
"""
- self._cfg.response_matrix = ResponseMatrixData.load(load_path)
- self._response_matrix = np.array(self._cfg.response_matrix._cfg.matrix)
+ self._response_matrix = ResponseMatrixData.load(load_path)
+ self._response_matrix = np.array(self._response_matrix.matrix)
self._correctionmat = np.linalg.pinv(self._response_matrix)
@property
- def _cm(self) -> "ChomaticityMonitor":
+ def _cm(self) -> "ChromaticityMonitor":
+ """Return the chromaticity monitor."""
self.check_peer()
- return self.peer.get_chromaticity_monitor(self._cfg.chromaticty_monitor_name)
+ return self.peer.get_chromaticity_monitor(self._chromaticity_monitor_name)
@property
def _sextu(self) -> "MagnetArray":
+ """Return the sextupole array."""
self.check_peer()
- return self.peer.get_magnets(self._cfg.sextu_array_name)
+ return self.peer.magnets.get(self.sextu_array_name)
def get(self):
- """
- Return the chromaticity setpoint
- """
+ """Return the requested horizontal and vertical chromaticity."""
return self._setpoint
def readback(self):
- """
- Launch a chromaticty scan and returns the measured chromaticity.
- """
+ """Measure and return the current horizontal and vertical chromaticity."""
self._cm.measure()
return self._cm.chromaticity.get()
def set(self, chroma: np.array, iter: int = 1, wait_time: float = 0.0):
"""
- Sets the chromaticity
+ Iteratively correct chromaticity to a requested setpoint.
Parameters
----------
- chromaticity : np.array
- Chromaticity setpoint
- iter_nb : int
- Number of iteration
+ chroma : numpy.ndarray
+ Target horizontal and vertical chromaticity values.
+ iter : int
+ Number of correction iterations.
wait_time : float
- Time to wait in second between 2 iterations
+ Delay in seconds between correction iterations.
"""
for i in range(iter):
diff_chroma = chroma - self.readback()
@@ -144,12 +160,23 @@ def set(self, chroma: np.array, iter: int = 1, wait_time: float = 0.0):
def correct(self, dchroma: np.array) -> np.array:
"""
- Return delta strengths for chromaticity correction
+ Calculate sextupole-strength changes for a chromaticity change.
Parameters
----------
- dchroma : np.array
- Delta chroma
+ dchroma : numpy.ndarray
+ Desired horizontal and vertical chromaticity change.
+
+ Returns
+ -------
+ numpy.ndarray
+ Sextupole-strength changes obtained from the response-matrix
+ pseudoinverse.
+
+ Raises
+ ------
+ PyAMLException
+ If no response matrix has been loaded or measured.
"""
if self._correctionmat is None:
raise PyAMLException("Chromaticity.correct(): no matrix loaded or measured")
@@ -157,14 +184,14 @@ def correct(self, dchroma: np.array) -> np.array:
def add(self, dchroma: np.array, wait_time: float = 0.0):
"""
- Add delta chromaticity to the actual chromaticity
+ Apply a chromaticity correction relative to the current setpoint.
Parameters
----------
- dchroma : np.array
- Delta tune
- iter_nb: int
- wait_time: float
+ dchroma : numpy.ndarray
+ Horizontal and vertical chromaticity change to apply.
+ wait_time : float
+ Delay in seconds after changing sextupole strengths.
"""
strengths = self._sextu.strengths.get()
strengths += self.correct(dchroma)
diff --git a/pyaml/diagnostics/chromaticity_monitor.py b/pyaml/tuning_tools/chromaticity_monitor.py
similarity index 59%
rename from pyaml/diagnostics/chromaticity_monitor.py
rename to pyaml/tuning_tools/chromaticity_monitor.py
index 4c4ea1ccc..cd9aa3026 100644
--- a/pyaml/diagnostics/chromaticity_monitor.py
+++ b/pyaml/tuning_tools/chromaticity_monitor.py
@@ -1,76 +1,62 @@
-from ..common.abstract import ReadFloatArray
-from ..common.constants import Action
-from ..common.element import ElementConfigModel
-from ..common.exception import PyAMLException
-from ..tuning_tools.measurement_tool import MeasurementTool, MeasurementToolConfigModel
+"""
+Chromaticity and dispersion measurement tools.
+
+The :class:`ChromaticityMonitor` acquires and exposes fitted chromaticity or
+dispersion data from sextupole-based measurements, including read access to
+the resulting values and their associated units.
+"""
-try:
- from typing import Self # Python 3.11+
-except ImportError:
- from typing_extensions import Self # Python 3.10 and earlier
import logging
+from collections.abc import Callable
from time import sleep
import matplotlib.pyplot as plt
import numpy as np
-from pydantic import ConfigDict
-
-logger = logging.getLogger(__name__)
-
-PYAMLCLASS = "ChomaticityMonitor"
-
-
-class ConfigModel(MeasurementToolConfigModel):
- """
- Configuration model for Chromaticity Monitor.
- Parameters
- ----------
- betatron_tune_name : str
- Name of the diagnostic pyaml device for measuring the tune
- rf_plant_name : str
- Name of main RF frequency plant
- bpm_array_name : str,optional
- Name of main BPM array used for dispersion fit
- e_delta : float, optional
- Default variation of relative energy during chromaticity measurement:
- f0 - f0 * E_delta * alphac < f_RF < f0 + f0 * E_delta * alphac,
- by default 0.001
- max_e_delta : float, optional
- Maximum authorized variation of relative energy during chromaticity
- measurement, by default 0.004
- fit_order : int, optional
- Chomaticity fitting order, by default 1
- fit_disp_order : int, optional
- Dispersion fitting order, by default 1
- fit_dispersion : bool, optional
- Dispersion fitting, by default False
- """
+from ..common.abstract import ReadFloatArray
+from ..common.constants import Action
+from ..common.element import __pyaml_repr__
+from ..common.exception import PyAMLException
+from ..tuning_tools.measurement_tool import MeasurementTool
+from ..validation import DynamicValidation, register_schema
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+logger = logging.getLogger(__name__)
- betatron_tune_name: str
- rf_plant_name: str
- bpm_array_name: str | None = None
- e_delta: float = 0.001
- max_e_delta: float = 0.004
- fit_order: int = 1
- fit_disp_order: int = 1
- fit_dispersion: bool = False
+PYAMLCLASS = "ChromaticityMonitor"
class RChromaDispArray(ReadFloatArray):
"""
Class providing read access to chromaticity or dispersion.
Returns arrays of shape (fit_order,2) or None
+
+ Parameters
+ ----------
+ parent : 'ChromaticityMonitor'
+ Monitor owning the measured values.
+ name : str
+ Attribute of the parent monitor to read, such as chromaticity or dispersion.
+ unit : str
+ Unit reported for the values, such as ``m``.
+
+ Methods
+ -------
+ get()
+ Return the latest chromaticity or dispersion values.
+ unit()
+ Return the unit of the reported values.
"""
- def __init__(self, parent: "ChomaticityMonitor", name: str, unit: str):
+ def __init__(self, parent: "ChromaticityMonitor", name: str, unit: str):
+ """
+ Initialize the RChromaDispArray.
+ """
self._parent = parent
self._name = name
self._unit = unit
def get(self) -> np.array:
+ """Return the latest chromaticity or dispersion values."""
last = self._parent.latest_measurement
if last is not None and self._name in last:
return np.array(last[self._name])
@@ -78,30 +64,112 @@ def get(self) -> np.array:
return None
def unit(self) -> str:
+ """Return the unit of the reported values."""
return self.unit
-class ChomaticityMonitor(MeasurementTool):
+@register_schema
+class ChromaticityMonitor(MeasurementTool, DynamicValidation):
"""
Class providing access to a chromaticity monitor
of a physical or simulated lattice. The monitor provides
horizontal and vertical chromaticity measurements.
+
+ Parameters
+ ----------
+ name : str
+ Name of the chromaticity monitor.
+ betatron_tune_name : str
+ Name of the betatron tune monitor used to measure the horizontal
+ and vertical tunes.
+ rf_plant_name : str
+ Name of the RF plant used to vary the RF frequency.
+ bpm_array_name : str, optional
+ Name of the BPM array used for dispersion measurements. Required
+ only when dispersion fitting is enabled.
+ e_delta : float, optional
+ Default relative momentum deviation used during the measurement.
+ max_e_delta : float, optional
+ Maximum permitted relative momentum deviation.
+ fit_order : int, optional
+ Polynomial order used to fit the chromaticity.
+ fit_disp_order : int, optional
+ Polynomial order used to fit the dispersion.
+ fit_dispersion : bool, optional
+ Whether to fit the machine dispersion in addition to the
+ chromaticity.
+ n_step : int, optional
+ Number of RF frequency steps.
+ sleep_between_step : float, optional
+ Delay in seconds after changing the RF frequency.
+ n_avg_meas : int, optional
+ Number of tune (and orbit) measurements to average at each RF
+ frequency.
+ sleep_between_meas : float, optional
+ Delay in seconds between consecutive measurements during
+ averaging.
+
+ Attributes
+ ----------
+ chromaticity
+ Get the chromaticity values.
+ dispersion
+ Get the dispersion values.
+
+ Methods
+ -------
+ set_mcf(alphac)
+ Set the momentum-compaction factor for frequency-step measurements.
+ measure(...)
+ Main function for chromaticity measurement.
+
+ :py:attr:`~pyaml.tuning_tools.measurement_tool.MeasurementTool.latest_measurement` contains:
+ fit(deltas, Q, order, orbit=None, fit_disp_order=None, do_plot=False)
+ Compute chromaticity (and dispersion) from input data and update
+ :py:attr:`~pyaml.tuning_tools.measurement_tool.MeasurementTool.latest_measurement`.
"""
- def __init__(self, cfg: ConfigModel):
+ def __init__(
+ self,
+ name: str,
+ betatron_tune_name: str,
+ rf_plant_name: str,
+ bpm_array_name: str | None = None,
+ e_delta: float = 0.001,
+ max_e_delta: float = 0.004,
+ fit_order: int = 1,
+ fit_disp_order: int = 1,
+ fit_dispersion: bool = False,
+ n_step: int = 1,
+ sleep_between_step: float = 0,
+ n_avg_meas: int = 1,
+ sleep_between_meas: float = 0,
+ ):
"""
- Construct a ChomaticityMonitor.
+ Initialize a chromaticity monitor.
- Parameters
- ----------
- cfg : ConfigModel
- Configuration for the ChromaticityMonitor, including betatron
- tune monitor, RF plant, and defaults parameters.
+ The monitor performs chromaticity measurements by varying the RF
+ frequency, acquiring tune measurements from a betatron tune monitor,
+ and optionally fitting the machine dispersion using BPM orbit data.
"""
- super().__init__(cfg.name)
- self._cfg = cfg
+
+ super().__init__(name)
+
+ self.betatron_tune_name = betatron_tune_name
+ self.rf_plant_name = rf_plant_name
+ self.bpm_array_name = bpm_array_name
+ self.e_delta = e_delta
+ self.max_e_delta = max_e_delta
+ self.fit_order = fit_order
+ self.fit_disp_order = fit_disp_order
+ self.fit_dispersion = fit_dispersion
+ self.n_step = n_step
+ self.sleep_between_step = sleep_between_step
+ self.n_avg_meas = n_avg_meas
+ self.sleep_between_meas = sleep_between_meas
+
self._chromaticity = RChromaDispArray(self, "chromaticity", "1")
- self._dipsersion = RChromaDispArray(self, "dispersion", "m")
+ self._dispersion = RChromaDispArray(self, "dispersion", "m")
self._alphac = None
@property
@@ -117,6 +185,17 @@ def chromaticity(self) -> ReadFloatArray:
return self._chromaticity
def set_mcf(self, alphac: float):
+ """
+ Set the momentum-compaction factor for frequency-step measurements.
+
+ The factor is used to convert an RF-frequency variation into the
+ corresponding relative energy deviation when measuring chromaticity.
+
+ Parameters
+ ----------
+ alphac : float
+ Momentum-compaction factor, usually dimensionless.
+ """
self._alphac = alphac
@property
@@ -129,25 +208,26 @@ def dispersion(self) -> ReadFloatArray:
ReadFloatArray
Array of dispersion values [[dx, dy],[d'x, d'y],...]
"""
- return self._dipsersion
+ return self._dispersion
def measure(
self,
- n_step: int = None,
- alphac: float = None,
- e_delta: float = None,
- max_e_delta: float = None,
- n_avg_meas: int = None,
- sleep_between_meas: float = None,
- sleep_between_step: float = None,
- fit_order: int = None,
- fit_disp_order: int = None,
+ n_step: int | None = None,
+ alphac: float | None = None,
+ e_delta: float | None = None,
+ max_e_delta: float | None = None,
+ n_avg_meas: int | None = None,
+ sleep_between_meas: float | None = None,
+ sleep_between_step: float | None = None,
+ fit_order: int | None = None,
+ fit_disp_order: int | None = None,
fit_dispersion: bool | None = None,
- do_plot: bool = None,
- callback: callable = None,
+ do_plot: bool | None = None,
+ callback: Callable | None = None,
):
"""
Main function for chromaticity measurment.
+
:py:attr:`~pyaml.tuning_tools.measurement_tool.MeasurementTool.latest_measurement` contains:
.. code-block:: python
@@ -160,33 +240,33 @@ def measure(
Parameters
----------
- n_step: int
+ n_step : int
Default number of RF step during chromaticity
measurment [default: from config]
- alphac: float | None
+ alphac : float | None
Moment compaction factor [default: from config]
- w_delta: float
+ e_delta : float
Default variation of relative energy during chromaticity measurment:
f0 - f0 * E_delta * alphac < f_RF < f0 + f0 * E_delta * alphac
[default: from config]
- max_e_delta: float
+ max_e_delta : float
Maximum autorized variation of relative energy during chromaticity
measurment [default: from config]
- n_avg_meas: int
+ n_avg_meas : int
Default number of tune/orbit measurment per RF frequency [default: from config]
- sleep_between_meas: float
+ sleep_between_meas : float
Default time sleep between two tune measurment [default: from config]
- sleep_between_step: float
+ sleep_between_step : float
Default time sleep after RF frequency variation [default: from config]
- fit_order: int
+ fit_order : int
Fitting order [default: from config]
fit_disp_order : int, optional
Dispersion fitting order [default: from config]
- fit_dispersion : bool, optionnal
+ fit_dispersion : bool, optional
Fit dispersion, [default: from config]
do_plot : bool
Do you want to plot the fitting results ?
- callback: Callable, optional
+ callback : Callable, optional
Callback is executed after each measurement or setting.
If the callback return false, then the process is aborted.
callback_data dict contains:
@@ -200,18 +280,17 @@ def measure(
tune:np.array # The measured tune (on Action.MEASURE)
orbit:np_array # The measured orbit, if fit_dispersion is True, (on Action.MEASURE)
dtune:np.array # The tune variation (on Action.RESTORE)
-
"""
- n_step = n_step if n_step is not None else self._cfg.n_step
+ n_step = n_step if n_step is not None else self.n_step
alphac = alphac if alphac is not None else self._alphac
- e_delta = e_delta if e_delta is not None else self._cfg.e_delta
- max_e_delta = max_e_delta if max_e_delta is not None else self._cfg.max_e_delta
- n_avg_meas = n_avg_meas if n_avg_meas is not None else self._cfg.n_avg_meas
- sleep_between_meas = sleep_between_meas if sleep_between_meas is not None else self._cfg.sleep_between_meas
- sleep_between_step = sleep_between_step if sleep_between_step is not None else self._cfg.sleep_between_step
- fit_order = fit_order if fit_order is not None else self._cfg.fit_order
- fit_disp_order = fit_disp_order if fit_disp_order is not None else self._cfg.fit_disp_order
- fit_dispersion = fit_dispersion if fit_dispersion is not None else self._cfg.fit_dispersion
+ e_delta = e_delta if e_delta is not None else self.e_delta
+ max_e_delta = max_e_delta if max_e_delta is not None else self.max_e_delta
+ n_avg_meas = n_avg_meas if n_avg_meas is not None else self.n_avg_meas
+ sleep_between_meas = sleep_between_meas if sleep_between_meas is not None else self.sleep_between_meas
+ sleep_between_step = sleep_between_step if sleep_between_step is not None else self.sleep_between_step
+ fit_order = fit_order if fit_order is not None else self.fit_order
+ fit_disp_order = fit_disp_order if fit_disp_order is not None else self.fit_disp_order
+ fit_dispersion = fit_dispersion if fit_dispersion is not None else self.fit_dispersion
if abs(e_delta) > abs(max_e_delta):
logger.warning(f"e_delta={e_delta} is greater than max_e_delta={max_e_delta}")
@@ -224,14 +303,14 @@ def measure(
# Get devices
self.check_peer()
- tm = self.peer.get_betatron_tune_monitor(self._cfg.betatron_tune_name)
- rf = self.peer.get_rf_plant(self._cfg.rf_plant_name)
+ tm = self.peer.get_betatron_tune_monitor(self.betatron_tune_name)
+ rf = self.peer.rf.get(self.rf_plant_name)
bpms = None
n_bpm = 0
orbit = None
- if fit_dispersion and fit_disp_order is not None and self._cfg.bpm_array_name is not None:
+ if fit_dispersion and fit_disp_order is not None and self.bpm_array_name is not None:
# For dispersion fit
- bpms = self.peer.get_bpms(self._cfg.bpm_array_name)
+ bpms = self.peer.bpms.get(self.bpm_array_name)
n_bpm = len(bpms)
f0 = rf.frequency.get()
@@ -307,14 +386,14 @@ def fit(self, deltas, Q, order, orbit=None, fit_disp_order=None, do_plot=False):
Relative energy (delta) variation steps done.
Q : array of [Qx,Qy]
Horizontal,Vertical tune measured.
- orbit: array of [[x0,y0],[x1,y1],...]
- fit_order: int
- Chromaticity fitting order
+ order : int
+ Chromaticity fitting order.
+ orbit : array of [[x0,y0],[x1,y1],...], optional
+ Horizontal and vertical orbit at each energy step, used to fit the dispersion.
fit_disp_order : int, optional
- Dispersion fitting order
- plot : bool, optional
- If True, plot the fit.
-
+ Dispersion fitting order.
+ do_plot : bool, optional
+ If ``True``, plot the fit.
"""
chroma = np.polynomial.polynomial.polyfit(deltas, Q, order).T
self.latest_measurement["chromaticity_fit"] = chroma
@@ -365,3 +444,20 @@ def fit(self, deltas, Q, order, orbit=None, fit_disp_order=None, do_plot=False):
fig.tight_layout()
plt.show()
+
+ def _after_attach(self):
+ """
+ Recreate readback handles after attaching the monitor.
+
+ The handles are bound to the attached monitor instance and therefore
+ must be refreshed after the monitor is copied and attached to an
+ element holder.
+ """
+ self._chromaticity = RChromaDispArray(self, "chromaticity", "1")
+ self._dispersion = RChromaDispArray(self, "dispersion", "m")
+
+ def __repr__(self):
+ """
+ Implement the ``__repr__`` string.
+ """
+ return __pyaml_repr__(self, exclude=["chromaticity", "dispersion"])
diff --git a/pyaml/tuning_tools/chromaticity_response_matrix.py b/pyaml/tuning_tools/chromaticity_response_matrix.py
index 8b995fbf4..1c919fa9d 100644
--- a/pyaml/tuning_tools/chromaticity_response_matrix.py
+++ b/pyaml/tuning_tools/chromaticity_response_matrix.py
@@ -1,45 +1,86 @@
+"""
+Chromaticity response-matrix measurement tools.
+
+The :class:`ChromaticityResponseMatrix` measures how sextupole-strength
+changes affect horizontal and vertical chromaticity and stores the fitted
+slopes as a response matrix.
+"""
+
import logging
import time
+from dataclasses import asdict
from typing import Callable, Optional
import numpy as np
-from pydantic import ConfigDict
from ..common.constants import Action
-from ..common.element import ElementConfigModel
-from .measurement_tool import MeasurementTool, MeasurementToolConfigModel
-from .response_matrix_data import ConfigModel as ResponseMatrixDataConfigModel
+from ..validation import DynamicValidation, register_schema
+from .measurement_tool import MeasurementTool
+from .response_matrix_data import ResponseMatrixData
logger = logging.getLogger(__name__)
PYAMLCLASS = "ChromaticityResponseMatrix"
-class ConfigModel(MeasurementToolConfigModel):
+@register_schema
+class ChromaticityResponseMatrix(MeasurementTool, DynamicValidation):
"""
- Configuration model for Tune response matrix
+ Measure the chromaticity response matrix of a lattice.
+
+ This tool perturbs each sextupole in a sextupole array and measures the
+ resulting chromaticity variation using a chromaticity monitor. The measured
+ slopes are assembled into a response matrix with chromaticity components as
+ the observables and sextupoles as the variables.
Parameters
----------
+ name : str
+ Name of the response matrix measurement tool.
sextu_array_name : str
- Array name of sextupole used to adjust the chromaticity
+ Name of the sextupole array to excite.
chromaticity_name : str
- Name of the diagnostic chromaticy monitor
+ Name of the chromaticity monitor used to measure the response.
sextu_delta : float
- Delta strength used to get the response matrix
+ Default sextupole excitation applied during the measurement.
+ n_step : int, optional
+ Default number of excitation steps used to fit the response.
+ sleep_between_step : float, optional
+ Default delay in seconds after changing the sextupole strength.
+ n_avg_meas : int, optional
+ Default number of chromaticity measurements to average at each step.
+ sleep_between_meas : float, optional
+ Default delay in seconds between averaged measurements.
+
+ Methods
+ -------
+ measure(...)
+ Measure the chromaticity response matrix.
"""
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- sextu_array_name: str
- chromaticity_name: str
- sextu_delta: float
-
+ def __init__(
+ self,
+ name: str,
+ sextu_array_name: str,
+ chromaticity_name: str,
+ sextu_delta: float,
+ n_step: int = 1,
+ sleep_between_step: float = 0,
+ n_avg_meas: int = 1,
+ sleep_between_meas: float = 0,
+ ):
+ """
+ Initialize the chromaticity response matrix measurement tool.
+ """
-class ChromaticityResponseMatrix(MeasurementTool):
- def __init__(self, cfg: ConfigModel):
- super().__init__(cfg.name)
- self._cfg = cfg
+ super().__init__(name)
+ self.sextu_array_name = sextu_array_name
+ self.chromaticity_name = chromaticity_name
+ self.sextu_delta = sextu_delta
+ self.n_step = n_step
+ self.sleep_between_step = sleep_between_step
+ self.n_avg_meas = n_avg_meas
+ self.sleep_between_meas = sleep_between_meas
self.aborted = False
def measure(
@@ -52,7 +93,8 @@ def measure(
callback: Optional[Callable] = None,
):
"""
- Measure chromaticity response matrix.
+ Measure the chromaticity response matrix.
+
:py:attr:`~pyaml.tuning_tools.measurement_tool.MeasurementTool.latest_measurement` contains:
.. code-block:: python
@@ -80,21 +122,20 @@ def callback(action: Action, data:dict):
acc.crm.save("ideal_crm.yaml", with_type="yaml")
acc.crm.save("ideal_crm.npz", with_type="npz")
-
Parameters
----------
sextu_delta : float
Delta strength used to get the response matrix
- n_step: int, optional
+ n_step : int, optional
Number of step for fitting the chomaticity slope [-sextu_delta/n_step..sextu_delta/n_step]
Default from config
- sleep_between_step: float
- Default time sleep after sextu exitation
+ sleep_between_step : float
+ Default time sleep after sextu excitation
Default: from config
n_avg_meas : int, optional
Default number of chromaticity measurement per step used for averaging
Default from config
- sleep_between_meas: float
+ sleep_between_meas : float
Default time sleep between two chomaticity measurment
Default: from config
callback : Callable, optional
@@ -114,11 +155,16 @@ def callback(action: Action, data:dict):
chroma:np.array # The measured chroma (on Action.MEASURE)
dchroma:np.array # The chroma variation (on Action.RESTORE)
+ Returns
+ -------
+ bool
+ ``True`` when the response matrix is measured successfully;
+ ``False`` when the measurement is aborted by the callback.
"""
# Get devices
self.check_peer()
- sextus = self._peer.get_magnets(self._cfg.sextu_array_name)
- cm = self._peer.get_chromaticity_monitor(self._cfg.chromaticity_name)
+ sextus = self._peer.magnets.get(self.sextu_array_name)
+ cm = self._peer.get_chromaticity_monitor(self.chromaticity_name)
self._register_callback(callback)
self._init_measure("pyaml.tuning_tools.response_matrix_data")
@@ -131,11 +177,11 @@ def callback(action: Action, data:dict):
return False
initial_chroma = cm.chromaticity.get()
- delta = sextu_delta if sextu_delta is not None else self._cfg.sextu_delta
- nb_step = n_step if n_step is not None else self._cfg.n_step
- nb_meas = n_avg_meas if n_avg_meas is not None else self._cfg.n_avg_meas
- sleep_step = sleep_between_step if sleep_between_step is not None else self._cfg.sleep_between_step
- sleep_meas = sleep_between_meas if sleep_between_meas is not None else self._cfg.sleep_between_meas
+ delta = sextu_delta if sextu_delta is not None else self.sextu_delta
+ nb_step = n_step if n_step is not None else self.n_step
+ nb_meas = n_avg_meas if n_avg_meas is not None else self.n_avg_meas
+ sleep_step = sleep_between_step if sleep_between_step is not None else self.sleep_between_step
+ sleep_meas = sleep_between_meas if sleep_between_meas is not None else self.sleep_between_meas
err = None
aborted = False
@@ -206,12 +252,12 @@ def callback(action: Action, data:dict):
logger.warning(f"{self.get_name()} : measurement aborted")
return False
- mat = ResponseMatrixDataConfigModel(
+ mat = ResponseMatrixData(
matrix=chromamat.T.tolist(),
variable_names=sextus.names(),
observable_names=[cm.get_name() + ".x", cm.get_name() + ".y"],
)
- self.latest_measurement.update(mat.model_dump())
+ self.latest_measurement.update(asdict(mat))
self.latest_measurement["type"] = "pyaml.tuning_tools.response_matrix_data"
return True
diff --git a/pyaml/tuning_tools/dispersion.py b/pyaml/tuning_tools/dispersion.py
index d62dbefe5..3efd54f3a 100644
--- a/pyaml/tuning_tools/dispersion.py
+++ b/pyaml/tuning_tools/dispersion.py
@@ -1,14 +1,20 @@
+"""
+Beam-dispersion measurement tools.
+
+The :class:`Dispersion` tool varies an RF-plant frequency, measures the orbit
+response with a BPM array, and stores the resulting horizontal and vertical
+dispersion data.
+"""
+
import logging
-from typing import Callable, Optional, Self
+from typing import Callable, Optional
-from pydantic import ConfigDict
from pySC.apps import measure_dispersion
from pySC.apps.codes import DispersionCode
from ..common.constants import Action
-from ..common.element import ElementConfigModel
-from ..common.element_holder import ElementHolder
from ..external.pySC_interface import pySCInterface
+from ..validation import DynamicValidation, register_schema
from .measurement_tool import MeasurementTool
logger = logging.getLogger(__name__)
@@ -16,41 +22,79 @@
PYAMLCLASS = "Dispersion"
-class ConfigModel(ElementConfigModel):
+@register_schema
+class Dispersion(MeasurementTool, DynamicValidation):
"""
- Configuration model for dispersion measurement
+ Measure beam dispersion by changing the RF frequency.
+
+ The measurement uses a :class:`pySCInterface` to change the frequency of
+ an RF plant and acquire orbit data from a BPM array. Progress is reported
+ through the callback mechanism provided by :class:`MeasurementTool`.
Parameters
----------
+ name : str
+ Name of the dispersion measurement tool.
bpm_array_name : str
- BPM array name
+ Name of the BPM array used to measure the orbit.
rf_plant_name : str
- RF plant name
+ Name of the RF plant whose frequency is varied.
frequency_delta : float
- Frequency delta for measurement
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- bpm_array_name: str
- rf_plant_name: str
- frequency_delta: float
+ RF-frequency change applied during the measurement.
+ Attributes
+ ----------
+ bpm_array_name : str
+ Name of the BPM array used for the measurement.
+ rf_plant_name : str
+ Name of the RF plant used for the measurement.
+ frequency_delta : float
+ RF-frequency change applied during the measurement.
+
+ Methods
+ -------
+ measure(set_waiting_time=0, callback=None)
+ Measure beam dispersion by varying the RF frequency.
+ get()
+ Return the most recently measured dispersion data.
+ """
-class Dispersion(MeasurementTool):
- def __init__(self, cfg: ConfigModel):
- super().__init__(cfg.name)
- self._cfg = cfg
+ def __init__(self, name: str, bpm_array_name: str, rf_plant_name: str, frequency_delta: float):
+ """
+ Initialize a beam-dispersion measurement tool.
+ """
+ super().__init__(name)
- self.bpm_array_name = cfg.bpm_array_name
- self.rf_plant_name = cfg.rf_plant_name
- self.frequency_delta = cfg.frequency_delta
+ self.bpm_array_name = bpm_array_name
+ self.rf_plant_name = rf_plant_name
+ self.frequency_delta = frequency_delta
def measure(
self,
set_waiting_time: float = 0,
callback: Optional[Callable] = None,
):
+ """
+ Measure beam dispersion by varying the RF frequency.
+
+ Measurements are reported through ``callback``. If the callback
+ requests an abort, the measurement returns ``False``; otherwise the
+ dispersion data are stored in ``latest_measurement``.
+
+ Parameters
+ ----------
+ set_waiting_time : float
+ Delay in seconds after changing the RF frequency.
+ callback : Optional[Callable]
+ Optional callback invoked after applying, measuring, and restoring
+ settings.
+
+ Returns
+ -------
+ bool
+ ``True`` when the measurement completes successfully, or ``False``
+ when it is aborted by the callback.
+ """
element_holder = self._peer
interface = pySCInterface(
element_holder=element_holder,
@@ -117,4 +161,5 @@ def measure(
return True
def get(self):
+ """Return the most recently measured dispersion data."""
return self.latest_measurement
diff --git a/pyaml/tuning_tools/measurement_tool.py b/pyaml/tuning_tools/measurement_tool.py
index e2e409554..7411c4a28 100644
--- a/pyaml/tuning_tools/measurement_tool.py
+++ b/pyaml/tuning_tools/measurement_tool.py
@@ -1,63 +1,81 @@
+"""
+Base classes for accelerator measurement tools.
+
+Measurement tools perform scans or response measurements, report progress
+through callbacks, and retain their latest results for inspection or export.
+"""
+
+import copy
import logging
from abc import ABCMeta, abstractmethod
from pathlib import Path
-from typing import TYPE_CHECKING, Callable, Optional, Self
-
-from pydantic import ConfigDict
+from typing import TYPE_CHECKING, Callable, Self
from ..common.constants import Action
-from ..common.element import Element, ElementConfigModel
+from ..common.element import Element
from ..common.exception import PyAMLException
if TYPE_CHECKING:
- from ..common.element_holder import ElementHolder
+ from ..common.holders.element_holder import ElementHolder
logger = logging.getLogger(__name__)
-class MeasurementToolConfigModel(ElementConfigModel):
+class MeasurementTool(Element, metaclass=ABCMeta):
"""
- Measurement tool configuration model
+ Base class for response-matrix measurements and accelerator scans.
+
+ Subclasses implement :meth:`measure` and may use the shared callback,
+ result-storage, attachment, and persistence helpers provided here.
Parameters
----------
- n_step: int, optional
- Number of measurement step [-delta/n_step..delta/n_step]
- Default 1
- sleep_between_step: float, optional
- Default sleep time after an actuator excitation
- Default: 0
- n_avg_meas : int, optional
- Default number of measurement per step used for averaging
- Default 1
- sleep_between_meas: float, optional
- Default sleep time between two measurments
- Default: 0
- """
+ name : object
+ Name of the measurement tool.
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- n_step: Optional[int] = 1
- sleep_between_step: Optional[float] = 0
- n_avg_meas: Optional[int] = 1
- sleep_between_meas: Optional[float] = 0
-
-
-class MeasurementTool(Element, metaclass=ABCMeta):
- """
- Base class for measurement tool such as reponse matrix measurement or other scans.
+ Attributes
+ ----------
+ latest_measurement
+ Data produced by the last measurement, or ``None`` before the first one.
+
+ Methods
+ -------
+ measure()
+ Run the measurement implemented by a subclass.
+ get()
+ Return the most recently stored measurement data.
+ save(save_path, with_type='json')
+ Save the latest measurement data to disk.
+ send_callback(action, cb_data, raiseException=True)
+ Notify the caller about measurement progress.
+ attach(peer)
+ Return a copy attached to an element holder.
"""
def __init__(self, name):
- super().__init__(name)
- self._latest_measurement: dict = None
"""
+ Initialize a measurement tool.
"""
+ super().__init__(name)
+ self._latest_measurement: dict = None
self._peer: "ElementHolder" = None # Peer: ControlSystem or Simulator
self._callback: Callable = None
+ def _fill_device(self, holder: "ElementHolder") -> None:
+ holder._fill_tool(self)
+
def _init_measure(self, measurement_type: str | None = None):
# Initialize measurement data
+ # type is used there to be able to reload a measurement, typically a reponse matrix, using the PyAML factory.
+ """
+ Reset the latest measurement before starting a new scan.
+
+ Parameters
+ ----------
+ measurement_type : str | None
+ Optional fully qualified configuration type to store with the
+ measurement data.
+ """
self._latest_measurement = {}
if measurement_type is not None:
self._latest_measurement["type"] = measurement_type
@@ -65,49 +83,54 @@ def _init_measure(self, measurement_type: str | None = None):
@abstractmethod
def measure(self) -> bool:
"""
- Launch measurement
+ Run the measurement implemented by a subclass.
+
Returns
-------
bool
- True if the process has been aborted
+ ``True`` when the measurement completes; ``False`` when it is
+ aborted according to the subclass contract.
"""
raise NotImplementedError()
@property
def latest_measurement(self) -> dict:
"""
- Return last measurement data, a dictionary containing last measurement data.
- See sub class of MeasurementTool to get description.
+ Return the most recently stored measurement data.
Returns
-------
dict
- Return latest measurement or None
+ Measurement data, or ``None`` before the first measurement.
"""
return self._latest_measurement
def get(self) -> dict:
"""
- Return last measurement data, a dictionary containing last measurement data.
- See sub class of MeasurementTool to get description.
+ Return the most recently stored measurement data.
Returns
-------
dict
- Return latest measurement or None
+ Measurement data, or ``None`` before the first measurement.
"""
return self._latest_measurement
def save(self, save_path: Path, with_type: str = "json"):
"""
- Save measurement data
+ Save the latest measurement data to disk.
Parameters
----------
- save_path: Path
- Matrix filename
- with_type: str
- File type (json,yaml,npz)
+ save_path : Path
+ Destination filename.
+ with_type : str
+ Serialization format: ``"json"``, ``"yaml"``, or ``"npz"``.
+
+ Raises
+ ------
+ PyAMLException
+ If ``with_type`` is not a supported serialization format.
"""
if with_type == "json":
import json
@@ -129,8 +152,12 @@ def save(self, save_path: Path, with_type: str = "json"):
def send_callback(self, action: Action, cb_data: dict, raiseException: bool = True):
"""
- Send callback from this Measurement tool to the caller.
- If the callback returns False, the scan is aborted and actuators are restored to their orignal values.
+ Notify the caller about measurement progress.
+
+ If the registered callback returns ``False``, the scan is aborted by
+ raising ``KeyboardInterrupt`` when ``raiseException`` is ``True``.
+ The measurement tool adds its mode and source to ``cb_data`` before
+ invoking the callback.
Callback example:
.. code-block:: python
@@ -144,16 +171,23 @@ def callback(action: Action, data: dict):
Parameters
----------
- action: Action
- See :py:class:`pyaml.common.constants.Action`
+ action : Action
+ Measurement lifecycle event.
- cb_data: dict
- Callback data
+ cb_data : dict
+ Mutable event data passed to the callback.
+ raiseException : bool, optional
+ Whether a callback rejection should raise ``KeyboardInterrupt``.
+
+ Returns
+ -------
+ bool
+ Callback result, or ``True`` when no callback is registered.
"""
ok = True
if self._callback is not None:
# Add source and peer
- cb_data["mode"] = f"{self.get_peer_name()}"
+ cb_data["mode"] = f"{self.attached_to()}"
cb_data["source"] = self
ok = self._callback(action, cb_data)
if not ok and raiseException:
@@ -162,13 +196,38 @@ def callback(action: Action, data: dict):
return ok
def _register_callback(self, callback: Callable):
+ """
+ Register a progress callback for the next measurement.
+
+ Parameters
+ ----------
+ callback : Callable
+ Callable receiving an :class:`Action` and event-data dictionary.
+ """
self._callback = callback
def attach(self, peer: "ElementHolder") -> Self:
"""
- Create a new reference to attach this measurement tool object to a simulator
- or a control system.
+ Return a copy attached to an element holder.
+
+ A shallow copy is created so the configured measurement tool remains
+ reusable. Subclasses can rebind internal handles in :meth:`_after_attach`.
+
+ Parameters
+ ----------
+ peer : 'ElementHolder'
+ Accelerator, simulator, or control-system element holder.
+
+ Returns
+ -------
+ Self
+ Attached copy of this measurement tool.
"""
- obj = self.__class__(self._cfg)
+ obj = copy.copy(self)
+ obj._after_attach()
obj._peer = peer
return obj
+
+ def _after_attach(self) -> None:
+ """Hook for subclasses to rebind internal references after attach."""
+ pass
diff --git a/pyaml/tuning_tools/orbit.py b/pyaml/tuning_tools/orbit.py
index 6baa1f884..2212c3f81 100644
--- a/pyaml/tuning_tools/orbit.py
+++ b/pyaml/tuning_tools/orbit.py
@@ -1,25 +1,24 @@
+"""
+Orbit measurement and correction tools.
+
+The :class:`Orbit` tool reads orbit response data, computes corrector changes,
+and applies horizontal, vertical, and optional RF corrections.
+"""
+
import logging
+from dataclasses import asdict
from pathlib import Path
-from typing import TYPE_CHECKING, Literal, Optional, Union
-
-try:
- from typing import Self # Python 3.11+
-except ImportError:
- from typing_extensions import Self # Python 3.10 and earlier
+from typing import Literal, Optional, Union
import numpy as np
-from pydantic import ConfigDict
-
-if TYPE_CHECKING:
- from ..common.element_holder import ElementHolder
from pySC import ResponseMatrix as pySC_ResponseMatrix
from pySC.apps import orbit_correction
from ..arrays.magnet_array import MagnetArray
-from ..common.element import Element, ElementConfigModel
from ..common.exception import PyAMLException
from ..external.pySC_interface import pySCInterface
from ..rf.rf_plant import RFPlant
+from ..validation import DynamicValidation, register_schema
from .orbit_response_matrix_data import OrbitResponseMatrixData
from .tuning_tool import TuningTool
@@ -29,57 +28,112 @@
PYAMLCLASS = "Orbit"
-class ConfigModel(ElementConfigModel):
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- bpm_array_name: str
- hcorr_array_name: str
- vcorr_array_name: str
- rf_plant_name: Optional[str] = None
- singular_values: Optional[int] = None
- singular_values_H: Optional[int] = None
- singular_values_V: Optional[int] = None
- virtual_target: float = 0
- response_matrix: Union[str, OrbitResponseMatrixData]
+@register_schema
+class Orbit(TuningTool, DynamicValidation):
+ """
+ Correct the measured orbit using a configured response matrix.
+
+ Parameters
+ ----------
+ name : str
+ Name of the orbit tool.
+ bpm_array_name : str
+ Name of the BPM array used for orbit readback.
+ hcorr_array_name : str
+ Name of the horizontal corrector array.
+ vcorr_array_name : str
+ Name of the vertical corrector array.
+ response_matrix : Union[str, OrbitResponseMatrixData]
+ Orbit response matrix or path to a serialized matrix.
+ rf_plant_name : Optional[str]
+ Optional RF plant used for RF orbit correction.
+ singular_values : Optional[int]
+ Common number of singular values retained for both planes.
+ singular_values_H : Optional[int]
+ Number of horizontal singular values retained.
+ singular_values_V : Optional[int]
+ Number of vertical singular values retained.
+ virtual_target : float
+ Target value for virtual orbit correction.
+
+ Attributes
+ ----------
+ response_matrix
+ Return the response matrix if it has been loaded None otherwise
+ Methods
+ -------
+ load(load_path)
+ Dynamically loads a response matrix.
+ correct(...)
+ Perform orbit correction using the configured response matrix and corrector arrays.
+ set_weight(name, weight, plane=None)
+ Set the weight of a response-matrix input or output.
+ set_virtual_weight(weight)
+ Set the weight of the virtual orbit target.
+ set_rf_weight(weight)
+ Set the weight of the RF-frequency correction variable.
+ get_weight(name, plane=None)
+ Return the response-matrix weight for a named input or output.
+ get_virtual_weight()
+ Return the configured virtual-orbit target weight.
+ get_rf_weight()
+ Return the configured RF-frequency correction weight.
+ post_init()
+ Bind orbit corrector and RF handles after attachment.
+ """
+
+ def __init__(
+ self,
+ name: str,
+ bpm_array_name: str,
+ hcorr_array_name: str,
+ vcorr_array_name: str,
+ response_matrix: Union[str, OrbitResponseMatrixData],
+ rf_plant_name: Optional[str] = None,
+ singular_values: Optional[int] = None,
+ singular_values_H: Optional[int] = None,
+ singular_values_V: Optional[int] = None,
+ virtual_target: float = 0,
+ ):
+ """
+ Initialize the Orbit.
+ """
+ super().__init__(name)
-class Orbit(TuningTool):
- def __init__(self, cfg: ConfigModel):
- super().__init__(cfg.name)
- self._cfg = cfg
- self.bpm_array_name = cfg.bpm_array_name
- self.hcorr_array_name = cfg.hcorr_array_name
- self.vcorr_array_name = cfg.vcorr_array_name
+ self.bpm_array_name = bpm_array_name
+ self.hcorr_array_name = hcorr_array_name
+ self.vcorr_array_name = vcorr_array_name
self._pySC_response_matrix = None
+ self.rf_plant_name = rf_plant_name
+ self.virtual_target = virtual_target
- self.virtual_target = cfg.virtual_target
-
- if cfg.singular_values is None:
- if cfg.singular_values_H is None or cfg.singular_values_V is None:
+ if singular_values is None:
+ if singular_values_H is None or singular_values_V is None:
raise PyAMLException(
"Either `singular_values` or `singular_values_H` and `singular_values_V` must be provided."
)
- self.singular_values_H = cfg.singular_values_H
- self.singular_values_V = cfg.singular_values_V
+ self.singular_values_H = singular_values_H
+ self.singular_values_V = singular_values_V
else:
- if cfg.singular_values_H is not None or cfg.singular_values_V is not None:
+ if singular_values_H is not None or singular_values_V is not None:
raise PyAMLException(
"Either `singular_values` or `singular_values_H` and `singular_values_V` must be provided, not both."
)
- self.singular_values_H = cfg.singular_values
- self.singular_values_V = cfg.singular_values
+ self.singular_values_H = singular_values
+ self.singular_values_V = singular_values
# If the configuration response matrix is a filename, load it
- if type(cfg.response_matrix) is str:
+ if type(response_matrix) is str:
try:
- cfg.response_matrix = OrbitResponseMatrixData.load(cfg.response_matrix)
+ self._response_matrix = OrbitResponseMatrixData.load(response_matrix)
except Exception as e:
- logger.warning(f"Loading {cfg.response_matrix} failed {str(e)}")
- cfg.response_matrix = None
+ logger.warning(f"Loading {response_matrix} failed {str(e)}")
+ self._response_matrix = None
# Converts to self._pySC_response_matrix
- if cfg.response_matrix:
- self._set_response_matrix(cfg.response_matrix)
+ if self._response_matrix:
+ self._set_response_matrix(self._response_matrix)
self._hcorr: MagnetArray = None
self._vcorr: MagnetArray = None
@@ -95,16 +149,30 @@ def load(self, load_path: Path):
load_path : Path
Filename of the :class:`~.OrbitResponseMatrixData` to load
"""
- self._cfg.response_matrix = OrbitResponseMatrixData.load(load_path)
- self._set_response_matrix(self._cfg.response_matrix)
+ self._response_matrix = OrbitResponseMatrixData.load(load_path)
+ self._set_response_matrix(self.response_matrix)
def _set_response_matrix(self, mat):
- m = mat._cfg.model_dump()
+ """
+ Configure the pySC response matrix from PyAML response data.
+
+ The PyAML variable and observable fields are renamed to the names
+ expected by pySC, including their horizontal and vertical plane
+ metadata. The original PyAML model is retained for later access.
+
+ Parameters
+ ----------
+ mat : OrbitResponseMatrixData
+ Orbit response-matrix data containing the matrix, names, and
+ plane metadata.
+ """
+ m = asdict(mat)
m["input_names"] = m.pop("variable_names")
m["output_names"] = m.pop("observable_names")
m["input_planes"] = m.pop("variable_planes")
m["output_planes"] = m.pop("observable_planes")
- self._cfg.response_matrix = mat
+ m.pop("type", None)
+ self._response_matrix = mat
self._pySC_response_matrix = pySC_ResponseMatrix.model_validate(m)
@property
@@ -112,7 +180,7 @@ def response_matrix(self) -> OrbitResponseMatrixData | None:
"""
Return the response matrix if it has been loaded None otherwise
"""
- return self._cfg.response_matrix
+ return self._response_matrix
def correct(
self,
@@ -264,18 +332,83 @@ def correct(
return
def set_weight(self, name: str, weight: float, plane: Optional[Literal["H", "V"]] = None) -> None:
+ """
+ Set the weight of a response-matrix input or output.
+
+ Weights affect the relative importance of variables and observables
+ during orbit correction. A plane is required when ``name`` occurs in
+ more than one plane.
+
+ Parameters
+ ----------
+ name : str
+ Variable or observable name whose weight should be changed.
+ weight : float
+ New weight applied during orbit correction.
+ plane : Optional[Literal['H', 'V']]
+ Optional plane selector, either ``"H"`` or ``"V"``.
+
+ Returns
+ -------
+ None
+ This method does not return a value.
+ """
self._pySC_response_matrix.set_weight(name, weight, plane=plane)
return
def set_virtual_weight(self, weight: float) -> None:
+ """
+ Set the weight of the virtual orbit target.
+
+ Parameters
+ ----------
+ weight : float
+ New virtual-target weight used during correction.
+
+ Returns
+ -------
+ None
+ This method does not return a value.
+ """
self._pySC_response_matrix.virtual_weight = weight
return
def set_rf_weight(self, weight: float) -> None:
+ """
+ Set the weight of the RF-frequency correction variable.
+
+ Parameters
+ ----------
+ weight : float
+ New RF-variable weight used during correction.
+
+ Returns
+ -------
+ None
+ This method does not return a value.
+ """
self._pySC_response_matrix.rf_weight = weight
return
def get_weight(self, name: str, plane: Optional[Literal["H", "V"]] = None) -> float:
+ """
+ Return the response-matrix weight for a named input or output.
+
+ If the name is present in multiple planes, pass ``plane`` to select
+ the desired weight.
+
+ Parameters
+ ----------
+ name : str
+ Variable or observable name whose weight should be returned.
+ plane : Optional[Literal['H', 'V']]
+ Optional plane selector, either ``"H"`` or ``"V"``.
+
+ Returns
+ -------
+ float
+ Configured response-matrix weight.
+ """
names = []
planes = []
weights = []
@@ -306,17 +439,20 @@ def get_weight(self, name: str, plane: Optional[Literal["H", "V"]] = None) -> fl
raise PyAMLException(f"More than one weight found, please select plane. {names=}, {planes=}, {weights=}")
def get_virtual_weight(self) -> float:
+ """Return the configured virtual-orbit target weight."""
return self._pySC_response_matrix.virtual_weight
def get_rf_weight(self) -> float:
+ """Return the configured RF-frequency correction weight."""
return self._pySC_response_matrix.rf_weight
def post_init(self):
- self._hcorr = self.peer.get_magnets(self._cfg.hcorr_array_name)
- self._vcorr = self.peer.get_magnets(self._cfg.vcorr_array_name)
+ """Bind orbit corrector and RF handles after attachment."""
+ self._hcorr = self.peer.magnets.get(self.hcorr_array_name)
+ self._vcorr = self.peer.magnets.get(self.vcorr_array_name)
hvElts = []
hvElts.extend(self._hcorr)
hvElts.extend(self._vcorr)
self._hvcorr = MagnetArray("", hvElts)
- if self._cfg.rf_plant_name is not None:
- self._rf_plant = self.peer.get_rf_plant(self._cfg.rf_plant_name)
+ if self.rf_plant_name is not None:
+ self._rf_plant = self.peer.rf.get(self.rf_plant_name)
diff --git a/pyaml/tuning_tools/orbit_response_matrix.py b/pyaml/tuning_tools/orbit_response_matrix.py
index 064399d74..62fb755ba 100644
--- a/pyaml/tuning_tools/orbit_response_matrix.py
+++ b/pyaml/tuning_tools/orbit_response_matrix.py
@@ -1,55 +1,119 @@
+"""
+Orbit response-matrix measurement tools.
+
+This module measures BPM orbit changes caused by horizontal and vertical
+corrector perturbations and stores the fitted response in a structured data
+model.
+"""
+
import logging
-from pathlib import Path
-from typing import Callable, List, Optional, Self
+from dataclasses import asdict
+from typing import Callable, List, Optional
import pySC
-from pydantic import ConfigDict
from pySC.apps import measure_ORM
from pySC.apps.codes import ResponseCode
from ..common.constants import Action
from ..external.pySC_interface import pySCInterface
-from .measurement_tool import MeasurementTool, MeasurementToolConfigModel
-from .orbit_response_matrix_data import ConfigModel as OrbitResponseMatrixDataConfigModel
+from ..validation import DynamicValidation, register_schema
+from .measurement_tool import MeasurementTool
+from .orbit_response_matrix_data import OrbitResponseMatrixData
logger = logging.getLogger(__name__)
PYAMLCLASS = "OrbitResponseMatrix"
-class ConfigModel(MeasurementToolConfigModel):
+@register_schema
+class OrbitResponseMatrix(MeasurementTool, DynamicValidation):
"""
- Configuration model for orbit response matrix measurement
+ Measure an orbit response matrix using BPMs and orbit correctors.
+
+ The orbit response matrix describes the change in measured beam position
+ produced by a change in corrector strength. This measurement tool uses
+ horizontal and vertical corrector arrays together with a BPM array to
+ perform the measurement through the pySC interface.
+
+ After a successful measurement, the result is converted to
+ :class:`OrbitResponseMatrixData` and stored in ``latest_measurement``.
+ The stored data includes the response matrix, corrector and BPM names,
+ and the plane associated with each variable and observable.
Parameters
----------
+ name : str
+ Name of the measurement tool.
bpm_array_name : str
- BPM array name
+ Name of the BPM array used to measure the orbit.
hcorr_array_name : str
- Horizontal corrector array name
+ Name of the horizontal corrector array.
vcorr_array_name : str
- Vertical corrector array name
+ Name of the vertical corrector array.
corrector_delta : float
- Corrector delta for measurement
- """
-
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ Change in corrector strength applied during the measurement.
+ n_step : int, optional
+ Number of strength steps used for each corrector. The default is 1.
+ sleep_between_step : float, optional
+ Time in seconds to wait after changing a corrector strength. The
+ default is 0.
+ n_avg_meas : int, optional
+ Number of orbit measurements averaged at each corrector setting. The
+ default is 1.
+ sleep_between_meas : float, optional
+ Time in seconds to wait between orbit measurements used for averaging.
+ The default is 0.
- bpm_array_name: str
- hcorr_array_name: str
- vcorr_array_name: str
- corrector_delta: float
+ Attributes
+ ----------
+ bpm_array_name : str
+ Name of the configured BPM array.
+ hcorr_array_name : str
+ Name of the configured horizontal corrector array.
+ vcorr_array_name : str
+ Name of the configured vertical corrector array.
+ corrector_delta : float
+ Corrector-strength change used for the measurement.
+ n_step : int
+ Configured number of corrector-strength steps.
+ sleep_between_step : float
+ Configured delay between corrector-strength changes.
+ n_avg_meas : int
+ Configured number of orbit measurements to average.
+ sleep_between_meas : float
+ Configured delay between averaged orbit measurements.
+ Methods
+ -------
+ measure(...)
+ Measure orbit response matrix.
+ """
-class OrbitResponseMatrix(MeasurementTool):
- def __init__(self, cfg: ConfigModel):
- super().__init__(cfg.name)
- self._cfg = cfg
+ def __init__(
+ self,
+ name: str,
+ bpm_array_name: str,
+ hcorr_array_name: str,
+ vcorr_array_name: str,
+ corrector_delta: float,
+ n_step: Optional[int] = 1,
+ sleep_between_step: Optional[float] = 0,
+ n_avg_meas: Optional[int] = 1,
+ sleep_between_meas: Optional[float] = 0,
+ ):
+ """
+ Initialize an orbit response-matrix measurement tool.
+ """
+ super().__init__(name)
- self.bpm_array_name = cfg.bpm_array_name
- self.hcorr_array_name = cfg.hcorr_array_name
- self.vcorr_array_name = cfg.vcorr_array_name
- self.corrector_delta = cfg.corrector_delta
+ self.bpm_array_name = bpm_array_name
+ self.hcorr_array_name = hcorr_array_name
+ self.vcorr_array_name = vcorr_array_name
+ self.corrector_delta = corrector_delta
+ self.n_step = n_step
+ self.sleep_between_step = sleep_between_step
+ self.n_avg_meas = n_avg_meas
+ self.sleep_between_meas = sleep_between_meas
def measure(
self,
@@ -76,13 +140,16 @@ def measure(
Parameters
----------
- sleep_between_step: float
- Default time sleep after steerer exitation
+ corrector_names : list[str], optional
+ Correctors to excite. Defaults to every corrector of the horizontal and
+ vertical arrays.
+ sleep_between_step : float
+ Default time sleep after steerer excitation
Default: from config
n_avg_meas : int, optional
Default number of orbit measurement per step used for averaging
Default from config
- sleep_between_meas: float
+ sleep_between_meas : float
Default time sleep between two orbit measurment
Default: from config
callback : Callable, optional
@@ -91,9 +158,9 @@ def measure(
reading.
If the callback returns false, then the process is aborted.
"""
- nb_meas = n_avg_meas if n_avg_meas is not None else self._cfg.n_avg_meas
- sleep_step = sleep_between_step if sleep_between_step is not None else self._cfg.sleep_between_step
- sleep_meas = sleep_between_meas if sleep_between_meas is not None else self._cfg.sleep_between_meas
+ nb_meas = n_avg_meas if n_avg_meas is not None else self.n_avg_meas
+ sleep_step = sleep_between_step if sleep_between_step is not None else self.sleep_between_step
+ sleep_meas = sleep_between_meas if sleep_between_meas is not None else self.sleep_between_meas
element_holder = self._peer
interface = pySCInterface(
@@ -105,8 +172,8 @@ def measure(
if corrector_names is None:
logger.info(f"Measuring correctors from the default arrays: {self.hcorr_array_name} and {self.vcorr_array_name}.")
- hcorrector_names = element_holder.get_magnets(self.hcorr_array_name).names()
- vcorrector_names = element_holder.get_magnets(self.vcorr_array_name).names()
+ hcorrector_names = element_holder.magnets.get(self.hcorr_array_name).names()
+ vcorrector_names = element_holder.magnets.get(self.vcorr_array_name).names()
corrector_names = hcorrector_names + vcorrector_names
generator = measure_ORM(
@@ -123,7 +190,7 @@ def measure(
idx = 0
try:
self._register_callback(callback)
- self._init_measure()
+ self._init_measure("pyaml.tuning_tools.orbit_response_matrix_data")
for code, measurement in generator:
callback_data = {"idx": idx, "response_data": measurement.response_data}
if code is ResponseCode.AFTER_SET:
@@ -155,17 +222,36 @@ def measure(
return False
orm_data = self._pySC_response_data_to_ORMData(measurement.response_data.model_dump())
- self.latest_measurement.update(orm_data.model_dump())
- self.latest_measurement["type"] = "pyaml.tuning_tools.orbit_response_matrix_data"
+ self.latest_measurement.update(asdict(orm_data))
return True
- def _pySC_response_data_to_ORMData(self, data: dict) -> OrbitResponseMatrixDataConfigModel:
+ def _pySC_response_data_to_ORMData(self, data: dict) -> OrbitResponseMatrixData:
# all metadata is discarded here. Should we keep something?
+ """
+ Convert pySC response data to an orbit response-matrix model.
+
+ pySC uses ``input_names`` and ``output_names`` fields, whereas PyAML
+ stores actuator and observable names separately. This method performs
+ that conversion, infers the horizontal or vertical plane for each
+ actuator, and represents every BPM as one horizontal and one vertical
+ observable.
+
+ Parameters
+ ----------
+ data : dict
+ pySC response data containing ``matrix`` and ``input_names``.
+
+ Returns
+ -------
+ OrbitResponseMatrixData
+ PyAML response-matrix data with actuator names, BPM names, and
+ their associated planes.
+ """
element_holder = self._peer
- all_hcorrector_names = element_holder.get_magnets(self.hcorr_array_name).names()
- all_vcorrector_names = element_holder.get_magnets(self.vcorr_array_name).names()
+ all_hcorrector_names = element_holder.magnets.get(self.hcorr_array_name).names()
+ all_vcorrector_names = element_holder.magnets.get(self.vcorr_array_name).names()
variable_planes = []
for corr in data["input_names"]:
if corr in all_hcorrector_names:
@@ -173,7 +259,7 @@ def _pySC_response_data_to_ORMData(self, data: dict) -> OrbitResponseMatrixDataC
elif corr in all_vcorrector_names:
variable_planes.append("V")
- bpm_names = element_holder.get_bpms(self.bpm_array_name).names()
+ bpm_names = element_holder.bpms.get(self.bpm_array_name).names()
# This is because we assume always dual-plane bpms now.
len_b = len(bpm_names)
observable_names = bpm_names * 2
@@ -188,5 +274,5 @@ def _pySC_response_data_to_ORMData(self, data: dict) -> OrbitResponseMatrixDataC
"observable_planes": observable_planes,
}
- orm_data = OrbitResponseMatrixDataConfigModel(**orm_data_model)
+ orm_data = OrbitResponseMatrixData(**orm_data_model)
return orm_data
diff --git a/pyaml/tuning_tools/orbit_response_matrix_data.py b/pyaml/tuning_tools/orbit_response_matrix_data.py
index 6baa9d10d..fad6fb76f 100644
--- a/pyaml/tuning_tools/orbit_response_matrix_data.py
+++ b/pyaml/tuning_tools/orbit_response_matrix_data.py
@@ -1,34 +1,49 @@
+"""
+Data model for measured orbit response matrices.
+
+The data model stores the response matrix together with actuator and BPM names,
+plane information, and optional RF response data.
+"""
+
+from dataclasses import dataclass
from typing import Optional
-from .response_matrix_data import ConfigModel as ReponseMatrixDataConfigModel
+from ..validation import DynamicValidation, register_schema
from .response_matrix_data import ResponseMatrixData
PYAMLCLASS = "OrbitResponseMatrixData"
-class ConfigModel(ReponseMatrixDataConfigModel):
+@register_schema
+@dataclass
+class OrbitResponseMatrixData(ResponseMatrixData, DynamicValidation):
"""
- Configuration model for orbit response matrix
+ Store orbit response matrix data and related metadata.
+
+ In addition to the response matrix, variable names, and observable names
+ provided by :class:`ResponseMatrixData`, this class stores the RF response
+ and the plane associated with each variable and observable.
Parameters
----------
- rf_response : list[float], optional
- RF response data
- variable_names : list[str], optional
- Vaiable plane names, basically the plane of the actuators
- observable_names : list[str], optional
- Observable plane names, basically the plane of measurements
+ matrix : list[list[float]]
+ Orbit response matrix. Each row corresponds to an observable and each
+ column corresponds to a variable.
+ variable_names : list[str] or None
+ Names of the response-matrix variables, typically orbit correctors.
+ observable_names : list[str]
+ Names of the response-matrix observables, typically beam position
+ monitors.
+ rf_response : list[float] or None, optional
+ Orbit response to an RF-frequency change.
+ variable_planes : list[str] or None, optional
+ Plane associated with each response-matrix variable, typically the
+ plane of the corresponding actuator.
+ observable_planes : list[str] or None, optional
+ Plane associated with each response-matrix observable, typically the
+ plane of the corresponding measurement.
"""
rf_response: Optional[list[float]] = None
variable_planes: Optional[list[str]] = None
observable_planes: Optional[list[str]] = None
-
-
-class OrbitResponseMatrixData(ResponseMatrixData):
- """
- Orbit response matrix loader
- """
-
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
diff --git a/pyaml/tuning_tools/response_matrix_data.py b/pyaml/tuning_tools/response_matrix_data.py
index 4cfd4800e..d3310d7b8 100644
--- a/pyaml/tuning_tools/response_matrix_data.py
+++ b/pyaml/tuning_tools/response_matrix_data.py
@@ -1,55 +1,77 @@
-from pathlib import Path
-from typing import Optional
+"""
+Serializable response-matrix data models.
+
+The :class:`ResponseMatrixData` model stores a numerical response matrix and
+the names of the variables and observables represented by its columns and
+rows. It is used to persist and exchange measured or calculated accelerator
+response data.
+"""
-from pydantic import BaseModel, ConfigDict
+from dataclasses import dataclass
+from pathlib import Path
-from pyaml.common.element import __pyaml_repr__
from pyaml.configuration.factory import Factory
+from pyaml.validation import SchemaValidator
from .. import PyAMLException
from ..configuration.fileloader import load
+from ..validation import DynamicValidation, register_schema
PYAMLCLASS = "ResponseMatrixData"
-class ConfigModel(BaseModel):
+@register_schema
+@dataclass
+class ResponseMatrixData(DynamicValidation):
"""
- Base configuration model for response matrix
+ Response matrix data and its associated variable and observable names.
Parameters
----------
matrix : list[list[float]]
- Response matrix data (rows for observable, cols for variables)
- variable_names : list[str], optional
- Variable names, basically the actuators
- observables_names : list[str]
- Observable names, basically the measurements
+ Response matrix values. Each row corresponds to an observable and each
+ column corresponds to a variable.
+ variable_names : list[str] or None
+ Names of the variables represented by the matrix columns, typically
+ actuators. May be ``None`` if the names are unavailable.
+ observable_names : list[str]
+ Names of the observables represented by the matrix rows, typically
+ measured quantities.
+
+ Methods
+ -------
+ load(filename)
+ Load response matrix data from a configuration file.
"""
matrix: list[list[float]]
- variable_names: Optional[list[str]]
observable_names: list[str]
-
-
-class ResponseMatrixData(object):
- """
- Generic response matrix loader
- """
-
- def __init__(self, cfg: ConfigModel):
- self._cfg = cfg
+ variable_names: list[str] | None = None
@staticmethod
def load(filename: str) -> "ResponseMatrixData":
"""
- Load a reponse matrix from a configuration file
+ Load response matrix data from a configuration file.
+
+ Parameters
+ ----------
+ filename : str
+ Path to the response matrix configuration file.
+
+ Returns
+ -------
+ ResponseMatrixData
+ Response matrix data constructed from the configuration file.
+
+ Raises
+ ------
+ PyAMLException
+ If the specified file does not exist.
"""
path = Path(filename)
if path.exists():
config_dict = load(str(path.resolve()))
- return Factory.depth_first_build(config_dict, ignore_external=False)
+ SchemaValidator.validate(config_dict)
+ return Factory.build(config_dict, ignore_external=False)
else:
raise PyAMLException(f"{filename}: file not found")
-
- def __repr__(self):
- return __pyaml_repr__(self)
diff --git a/pyaml/tuning_tools/tune.py b/pyaml/tuning_tools/tune.py
index 382092bf5..1013f91ca 100644
--- a/pyaml/tuning_tools/tune.py
+++ b/pyaml/tuning_tools/tune.py
@@ -1,3 +1,11 @@
+"""
+Betatron-tune measurement and correction tools.
+
+The :class:`Tune` tool reads horizontal and vertical betatron tune, computes
+quadrupole-strength corrections from a response matrix, and applies those
+corrections to the configured quadrupole array.
+"""
+
import logging
from pathlib import Path
from time import sleep
@@ -5,13 +13,7 @@
import numpy as np
-try:
- from typing import Self # Python 3.11+
-except ImportError:
- from typing_extensions import Self # Python 3.10 and earlier
-
from .. import PyAMLException
-from ..common.element import ElementConfigModel
from .response_matrix_data import ResponseMatrixData
from .tuning_tool import TuningTool
@@ -19,62 +21,96 @@
from ..arrays.magnet_array import MagnetArray
from ..diagnostics.tune_monitor import BetatronTuneMonitor
+from ..validation import DynamicValidation, register_schema
+
logger = logging.getLogger(__name__)
# Define the main class name for this module
PYAMLCLASS = "Tune"
-class ConfigModel(ElementConfigModel):
+@register_schema
+class Tune(TuningTool, DynamicValidation):
"""
- Configuration model for Tune
+ Adjust the horizontal and vertical betatron tunes.
+
+ The tune correction is calculated from a response matrix describing the
+ change in horizontal and vertical tune produced by changes in quadrupole
+ strength. The pseudo-inverse of this matrix is used to convert a requested
+ tune change into the corresponding quadrupole-strength changes.
+
+ The response matrix may be supplied directly as a
+ :class:`ResponseMatrixData` instance or loaded from a file. The tune is
+ measured using the configured betatron tune monitor, while corrections are
+ applied through the configured quadrupole array.
Parameters
----------
+ name : str
+ Name of the tuning tool.
quad_array_name : str
- Array name of quad used to adjust the tune
+ Name of the quadrupole array used to adjust the tune.
betatron_tune_name : str
- Name of the diagnostic pyaml device for measuring the tune
- quad_delta : float
- Delta strength used to get the response matrix
-
- """
-
- quad_array_name: str
- betatron_tune_name: str
- response_matrix: str | ResponseMatrixData
-
-
-class Tune(TuningTool):
- """
- Class providing tune adjustment tool
+ Name of the betatron tune monitor used to measure the horizontal and
+ vertical tunes.
+ response_matrix : str or ResponseMatrixData
+ Tune response matrix or path to a file containing the response matrix.
+ The matrix is expected to have one row for each tune plane and one
+ column for each quadrupole.
+
+ Attributes
+ ----------
+ quad_array_name : str
+ Name of the configured quadrupole array.
+ betatron_tune_name : str
+ Name of the configured betatron tune monitor.
+ response_matrix : ResponseMatrixData or None
+ Loaded tune response matrix.
+
+ Methods
+ -------
+ load(load_path)
+ Load a tune response matrix and prepare its pseudoinverse.
+ get()
+ Return the requested horizontal and vertical tune setpoint.
+ readback()
+ Return the current horizontal and vertical betatron tune.
+ set(tune, iter=1, wait_time=0.0)
+ Iteratively correct the betatron tune to a requested setpoint.
+ correct(dtune)
+ Calculate quadrupole-strength changes for a tune change.
+ add(dtune, wait_time=0.0)
+ Apply a tune correction relative to the current setpoint.
"""
- def __init__(self, cfg: ConfigModel):
+ def __init__(
+ self,
+ name: str,
+ quad_array_name: str,
+ betatron_tune_name: str,
+ response_matrix: str | ResponseMatrixData,
+ ):
"""
- Construct a Tune adjustment object.
-
- Parameters
- ----------
- cfg : ConfigModel
- Configuration for the tune adjustment.
+ Initialize a betatron-tune correction tool.
"""
- super().__init__(cfg.name)
- self._cfg = cfg
- self._response_matrix = None
+ super().__init__(name)
+
+ self.quad_array_name = quad_array_name
+ self.betatron_tune_name = betatron_tune_name
+ self._response_matrix = response_matrix
self._correctionmat = None
# If the configuration response matrix is a filename, load it
- if type(cfg.response_matrix) is str:
+ if type(self._response_matrix) is str:
try:
- cfg.response_matrix = ResponseMatrixData.load(cfg.response_matrix)
+ self._response_matrix = ResponseMatrixData.load(self._response_matrix)
except Exception as e:
logger.warning(f"{str(e)}")
- cfg.response_matrix = None
+ self._response_matrix = None
# Invert matrix
- if cfg.response_matrix:
- self._response_matrix = np.array(cfg.response_matrix._cfg.matrix)
+ if self._response_matrix:
+ self._response_matrix = np.array(self._response_matrix.matrix)
self._correctionmat = np.linalg.pinv(self._response_matrix)
# TODO: Initialise first setpoint
@@ -82,61 +118,58 @@ def __init__(self, cfg: ConfigModel):
def load(self, load_path: Path):
"""
- Dynamically loads a response matrix.
+ Load a tune response matrix and prepare its pseudoinverse.
Parameters
----------
load_path : Path
- Filename of the :class:`~.ResponseMatrixData` to load
-
+ Path to the serialized :class:`~.ResponseMatrixData` file.
"""
- self._cfg.response_matrix = ResponseMatrixData.load(load_path)
- self._response_matrix = np.array(self._cfg.response_matrix._cfg.matrix)
+ self._response_matrix = ResponseMatrixData.load(load_path)
+ self._response_matrix = np.array(self._response_matrix.matrix)
self._correctionmat = np.linalg.pinv(self._response_matrix)
@property
def response_matrix(self) -> ResponseMatrixData | None:
- """
- Return the response matrix if it has been loaded None otherwise
- """
- return self._cfg.response_matrix
+ """Return the loaded tune response matrix, if available."""
+ return self._response_matrix
@property
def _tm(self) -> "BetatronTuneMonitor":
+ """Return the betatron tune monitor."""
self.check_peer()
- return self.peer.get_betatron_tune_monitor(self._cfg.betatron_tune_name)
+ return self.peer.get_betatron_tune_monitor(self.betatron_tune_name)
@property
def _quads(self) -> "MagnetArray":
+ """Return the quadrupole array."""
self.check_peer()
- return self.peer.get_magnets(self._cfg.quad_array_name)
+ return self.peer.magnets.get(self.quad_array_name)
def get(self):
- """
- Return the betatron tune setpoint
- """
+ """Return the requested horizontal and vertical tune setpoint."""
return self._setpoint
def readback(self):
- """
- Return the betatron tune measurement
- """
+ """Return the current horizontal and vertical betatron tune."""
self.check_peer()
return self._tm.tune.get()
def set(self, tune: np.array, iter: int = 1, wait_time: float = 0.0):
"""
- Sets the tune
+ Iteratively correct the betatron tune to a requested setpoint.
Parameters
----------
tune : np.array
- Tune setpoint
- iter_nb : int
- Number of iteration
+ Target horizontal and vertical tune values.
+ iter : int
+ Number of correction iterations.
wait_time : float
- Time to wait in second between 2 iterations
+ Delay in seconds between correction iterations.
"""
+ if np.shape(tune) != (2,):
+ raise PyAMLException("Tune.add(): invalid input tune dimension, (2,) expected")
for i in range(iter):
diff_tune = tune - self.readback()
if i == iter:
@@ -146,12 +179,23 @@ def set(self, tune: np.array, iter: int = 1, wait_time: float = 0.0):
def correct(self, dtune: np.array) -> np.array:
"""
- Return delta strengths for tune correction
+ Calculate quadrupole-strength changes for a tune change.
Parameters
----------
dtune : np.array
- Delta tune
+ Desired horizontal and vertical tune change.
+
+ Returns
+ -------
+ numpy.ndarray
+ Quadrupole-strength changes calculated from the response-matrix
+ pseudoinverse.
+
+ Raises
+ ------
+ PyAMLException
+ If no response matrix has been loaded.
"""
if self._correctionmat is None:
raise PyAMLException("Tune.correct(): no matrix loaded or measured")
@@ -159,15 +203,17 @@ def correct(self, dtune: np.array) -> np.array:
def add(self, dtune: np.array, wait_time: float = 0.0):
"""
- Add delta tune to the tune
+ Apply a tune correction relative to the current setpoint.
Parameters
----------
dtune : np.array
- Delta tune
- iter_nb: int
- wait_time: float
+ Horizontal and vertical tune change to apply.
+ wait_time : float
+ Delay in seconds after changing quadrupole strengths.
"""
+ if np.shape(dtune) != (2,):
+ raise PyAMLException("Tune.add(): invalid input dtune dimension, (2,) expected")
strengths = self._quads.strengths.get()
strengths += self.correct(dtune)
self._quads.strengths.set(strengths)
diff --git a/pyaml/tuning_tools/tune_response_matrix.py b/pyaml/tuning_tools/tune_response_matrix.py
index 15f432dc0..12908e73c 100644
--- a/pyaml/tuning_tools/tune_response_matrix.py
+++ b/pyaml/tuning_tools/tune_response_matrix.py
@@ -1,44 +1,128 @@
+"""
+Betatron-tune response-matrix measurement tools.
+
+The :class:`TuneResponseMatrix` measures the sensitivity of horizontal and
+vertical betatron tune to quadrupole-strength changes and stores the fitted
+responses in a serializable response-matrix data model.
+"""
+
import logging
+from dataclasses import asdict
from time import sleep
from typing import Callable, Optional
import numpy as np
-from pydantic import ConfigDict
from ..common.constants import Action
-from .measurement_tool import MeasurementTool, MeasurementToolConfigModel
-from .response_matrix_data import ConfigModel as ResponseMatrixDataConfigModel
+from ..validation import DynamicValidation, register_schema
+from .measurement_tool import MeasurementTool
+from .response_matrix_data import ResponseMatrixData
logger = logging.getLogger(__name__)
PYAMLCLASS = "TuneResponseMatrix"
-class ConfigModel(MeasurementToolConfigModel):
+@register_schema
+class TuneResponseMatrix(MeasurementTool, DynamicValidation):
"""
- Configuration model for Tune response matrix
+ Measure the response of the betatron tune to quadrupole-strength changes.
+
+ The tune response matrix describes the change in horizontal and vertical
+ betatron tune produced by changes in quadrupole strength. Each quadrupole
+ in the configured magnet array is varied over a range of strengths, and
+ the resulting tune values are measured and averaged.
+
+ For measurements using more than one strength step, a linear fit is used
+ to determine the tune response to each quadrupole. The resulting matrix
+ has one row for each tune plane and one column for each quadrupole.
+
+ After a successful measurement, the result is stored in
+ :attr:`MeasurementTool.latest_measurement` as a
+ :class:`ResponseMatrixData` representation.
Parameters
----------
+ name : str
+ Name of the measurement tool.
quad_array_name : str
- Array name of quad used to adjust the tune
+ Name of the quadrupole array used for the measurement.
betatron_tune_name : str
- Name of the diagnostic pyaml device for measuring the tune
+ Name of the betatron tune monitor used to measure the horizontal and
+ vertical tunes.
quad_delta : float
- Delta strength used to get the response matrix
- """
+ Maximum positive and negative quadrupole-strength change applied during
+ the measurement.
+ n_step : int, optional
+ Number of quadrupole-strength settings used for each quadrupole. The
+ settings are distributed linearly from ``-quad_delta`` to
+ ``quad_delta``. The default is 1.
+ sleep_between_step : float, optional
+ Time in seconds to wait after changing a quadrupole strength and before
+ measuring the tune. The default is 0.
+ n_avg_meas : int, optional
+ Number of tune measurements averaged at each strength setting. The
+ default is 1.
+ sleep_between_meas : float, optional
+ Time in seconds to wait between tune measurements used for averaging.
+ The default is 0.
+
+ Attributes
+ ----------
+ quad_array_name : str
+ Name of the configured quadrupole array.
+ betatron_tune_name : str
+ Name of the configured betatron tune monitor.
+ quad_delta : float
+ Configured quadrupole-strength change.
+ n_step : int
+ Configured number of strength settings.
+ sleep_between_step : float
+ Configured delay after each strength change.
+ n_avg_meas : int
+ Configured number of tune measurements to average.
+ sleep_between_meas : float
+ Configured delay between averaged tune measurements.
+
+ Methods
+ -------
+ measure(...)
+ Measure tune response matrix.
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+ :py:attr:`~pyaml.tuning_tools.measurement_tool.MeasurementTool.latest_measurement` contains:
- quad_array_name: str
- betatron_tune_name: str
- quad_delta: float
+ Notes
+ -----
+ The generated response matrix has shape ``(2, n_quadrupoles)``. The first
+ row contains the horizontal tune response and the second row contains the
+ vertical tune response.
+ Quadrupole strengths are restored after each individual scan and again when
+ the measurement exits because of an error or interruption.
+ """
-class TuneResponseMatrix(MeasurementTool):
- def __init__(self, cfg: ConfigModel):
- super().__init__(cfg.name)
- self._cfg = cfg
+ def __init__(
+ self,
+ name: str,
+ quad_array_name: str,
+ betatron_tune_name: str,
+ quad_delta: float,
+ n_step: Optional[int] = 1,
+ sleep_between_step: Optional[float] = 0,
+ n_avg_meas: Optional[int] = 1,
+ sleep_between_meas: Optional[float] = 0,
+ ):
+ """
+ Initialize a betatron-tune response-matrix measurement tool.
+ """
+ super().__init__(name)
+ self.quad_array_name = quad_array_name
+ self.betatron_tune_name = betatron_tune_name
+ self.quad_delta = quad_delta
+ self.n_step = n_step
+ self.sleep_between_step = sleep_between_step
+ self.n_avg_meas = n_avg_meas
+ self.sleep_between_meas = sleep_between_meas
def measure(
self,
@@ -51,6 +135,7 @@ def measure(
):
"""
Measure tune response matrix.
+
:py:attr:`~pyaml.tuning_tools.measurement_tool.MeasurementTool.latest_measurement` contains:
.. code-block:: python
@@ -82,16 +167,16 @@ def callback(action: Action, data:dict):
----------
quad_delta : float
Delta strength used to get the response matrix
- n_step: int, optional
+ n_step : int, optional
Number of step for fitting the tune slope [-quad_delta/n_step..quad_delta/n_step]
Default from config
- sleep_between_step: float
- Default time sleep after quad exitation
+ sleep_between_step : float
+ Default time sleep after quad excitation
Default: from config
n_avg_meas : int, optional
Default number of tune measurement per step used for averaging
Default from config
- sleep_between_meas: float
+ sleep_between_meas : float
Default time sleep between two tune measurment
Default: from config
callback : Callable, optional
@@ -110,20 +195,19 @@ def callback(action: Action, data:dict):
strength:float # Magnet strength
tune:np.array # The measured tune (on Action.MEASURE)
dtune:np.array # The tune variation (on Action.RESTORE)
-
"""
# Get devices
self.check_peer()
- quads = self._peer.get_magnets(self._cfg.quad_array_name)
- tm = self._peer.get_betatron_tune_monitor(self._cfg.betatron_tune_name)
+ quads = self._peer.magnets.get(self.quad_array_name)
+ tm = self._peer.get_betatron_tune_monitor(self.betatron_tune_name)
tunemat = np.zeros((len(quads), 2))
initial_tune = tm.tune.get()
- delta = quad_delta if quad_delta is not None else self._cfg.quad_delta
- nb_step = n_step if n_step is not None else self._cfg.n_step
- nb_meas = n_avg_meas if n_avg_meas is not None else self._cfg.n_avg_meas
- sleep_step = sleep_between_step if sleep_between_step is not None else self._cfg.sleep_between_step
- sleep_meas = sleep_between_meas if sleep_between_meas is not None else self._cfg.sleep_between_meas
+ delta = quad_delta if quad_delta is not None else self.quad_delta
+ nb_step = n_step if n_step is not None else self.n_step
+ nb_meas = n_avg_meas if n_avg_meas is not None else self.n_avg_meas
+ sleep_step = sleep_between_step if sleep_between_step is not None else self.sleep_between_step
+ sleep_meas = sleep_between_meas if sleep_between_meas is not None else self.sleep_between_meas
self._register_callback(callback)
self._init_measure("pyaml.tuning_tools.response_matrix_data")
@@ -193,12 +277,12 @@ def callback(action: Action, data:dict):
logger.warning(f"{self.get_name()} : measurement aborted")
return False
- mat = ResponseMatrixDataConfigModel(
+ mat = ResponseMatrixData(
matrix=tunemat.T.tolist(),
variable_names=quads.names(),
observable_names=[tm.get_name() + ".x", tm.get_name() + ".y"],
)
- self.latest_measurement.update(mat.model_dump())
+ self.latest_measurement.update(asdict(mat))
self.latest_measurement["type"] = "pyaml.tuning_tools.response_matrix_data"
return True
diff --git a/pyaml/tuning_tools/tuning_tool.py b/pyaml/tuning_tools/tuning_tool.py
index 8f043bc4a..4ad02fe5f 100644
--- a/pyaml/tuning_tools/tuning_tool.py
+++ b/pyaml/tuning_tools/tuning_tool.py
@@ -1,22 +1,70 @@
+"""
+Base class for accelerator tuning tools.
+
+The classes in this module provide the common lifecycle for tools that adjust
+accelerator parameters, including attachment to a simulator or control system.
+"""
+
+import copy
from typing import Self
from ..common.element import Element
-from ..common.element_holder import ElementHolder
+from ..common.holders.element_holder import ElementHolder
class TuningTool(Element):
"""
- Base class for tuning tool such as tune adjustment or other tuning tools.
+ Base class for tools that measure or adjust accelerator parameters.
+
+ Tuning tools are configured independently and attached to an element holder
+ before they access accelerator devices.
+
+ Parameters
+ ----------
+ name : object
+ Name of the tuning tool.
+
+ Methods
+ -------
+ attach(peer)
+ Return a copy attached to a simulator or control system.
"""
def __init__(self, name):
+ """
+ Initialize a tuning tool.
+ """
super().__init__(name)
def attach(self, peer: "ElementHolder") -> Self:
"""
- Create a new reference to attach this tuning tool object to a simulator
- or a control system.
+ Return a copy attached to a simulator or control system.
+
+ The configured tool remains reusable. Subclasses may override
+ :meth:`_after_attach` to recreate handles that depend on the attached
+ element holder.
+
+ Parameters
+ ----------
+ peer : ElementHolder
+ Element holder providing access to accelerator devices.
+
+ Returns
+ -------
+ Self
+ Attached copy of the tuning tool.
"""
- obj = self.__class__(self._cfg)
+ if hasattr(self, "_cfg"):
+ obj = self.__class__(self._cfg)
+ else:
+ obj = copy.copy(self)
+ obj._after_attach()
obj._peer = peer
return obj
+
+ def _fill_device(self, holder: "ElementHolder") -> None:
+ holder._fill_tool(self)
+
+ def _after_attach(self) -> None:
+ """Hook for subclasses to rebind internal references after attach."""
+ pass
diff --git a/pyaml/validation/__init__.py b/pyaml/validation/__init__.py
new file mode 100644
index 000000000..be0ca3a05
--- /dev/null
+++ b/pyaml/validation/__init__.py
@@ -0,0 +1,19 @@
+"""
+PyAML validation subpackage.
+"""
+
+from .configuration_models import ConfigurationSchema
+from .generator import SchemaGenerator
+from .registry import SchemaRegistry, register_schema
+from .validation_models import DynamicValidation, StaticValidation
+from .validator import SchemaValidator
+
+__all__ = [
+ "ConfigurationSchema",
+ "DynamicValidation",
+ "SchemaRegistry",
+ "SchemaValidator",
+ "SchemaGenerator",
+ "StaticValidation",
+ "register_schema",
+]
diff --git a/pyaml/validation/configuration_models.py b/pyaml/validation/configuration_models.py
new file mode 100644
index 000000000..d544b147b
--- /dev/null
+++ b/pyaml/validation/configuration_models.py
@@ -0,0 +1,310 @@
+"""Datamodels for configuration."""
+
+import importlib
+import logging
+from typing import Any, ClassVar
+
+from pydantic import AliasChoices, BaseModel, ConfigDict, Field, GetCoreSchemaHandler
+from pydantic_core import CoreSchema, core_schema
+
+logger = logging.getLogger(__name__)
+
+
+class PyAMLBaseModel(BaseModel):
+ """
+ Base model for pyAML schemas.
+
+ Overrides ``model_dump()`` and ``model_dump_json()`` to enable
+ ``serialize_as_any=True`` by default. This ensures that fields are
+ serialized according to their runtime type rather than their declared
+ annotation type.
+
+ Methods
+ -------
+ model_dump(**kwargs)
+ Serialize the model to a dictionary, using each field's runtime type.
+ model_dump_json(**kwargs)
+ Serialize the model to a JSON string, using each field's runtime type.
+ describe()
+ Return a readable description of the model fields.
+ """
+
+ def model_dump(self, **kwargs):
+ """Serialize the model to a dictionary, using each field's runtime type."""
+ kwargs.setdefault("serialize_as_any", True)
+ return super().model_dump(**kwargs)
+
+ def model_dump_json(self, **kwargs):
+ """Serialize the model to a JSON string, using each field's runtime type."""
+ kwargs.setdefault("serialize_as_any", True)
+ return super().model_dump_json(**kwargs)
+
+ @classmethod
+ def describe(cls) -> str:
+ """Return a readable description of the model fields."""
+ lines = [f"{cls.__name__}("]
+
+ for name, field in cls.model_fields.items():
+ line = f" {name}: {getattr(field.annotation, '__name__', field.annotation)}"
+ if field.description:
+ line += f" — {field.description}"
+ lines.append(line)
+
+ lines.append(")")
+ return "\n".join(lines)
+
+
+class ConfigurationSchema(PyAMLBaseModel):
+ """
+ Base model for configuration schemas.
+
+ Each configuration schema defines the expected input for constructing a
+ specific object. The required ``class`` field specifies the fully
+ qualified class path of the object to construct.
+
+ Methods
+ -------
+ virtual_subclasses()
+ Return the registered virtual subclasses.
+ register_virtual_subclass(subclass)
+ Register a virtual subclass.
+ is_virtual_subclass_of(superclass)
+ Check whether this class is a subclass of another schema.
+
+ Notes
+ -----
+ Virtual subclasses may be registered to allow compatible schema types to
+ be accepted during validation.
+ """
+
+ model_config = ConfigDict(validate_by_name=True, validate_by_alias=True, arbitrary_types_allowed=False, extra="forbid")
+
+ class_path: str = Field(
+ description="Fully qualified class path.",
+ alias="class",
+ )
+
+ # Add implementation which mimics required behaviour of virtual subclasses
+ # Real virtual subclasses are not compatible with Pydantic
+
+ _virtual_subclasses: ClassVar[set[type["ConfigurationSchema"]]]
+
+ def __init_subclass__(cls, **kwargs):
+ """
+ Implement the __init_subclass__ protocol operation.
+ """
+ super().__init_subclass__(**kwargs)
+ cls._virtual_subclasses = set()
+
+ @classmethod
+ def virtual_subclasses(cls) -> set[type["ConfigurationSchema"]]:
+ """
+ Return the registered virtual subclasses.
+
+ Returns
+ -------
+ set[type[ConfigurationSchema]]
+ A copy of the set containing all virtual subclasses registered
+ for this schema class.
+ """
+ return set(cls._virtual_subclasses)
+
+ @classmethod
+ def register_virtual_subclass(cls, subclass: type["ConfigurationSchema"]) -> None:
+ """
+ Register a virtual subclass.
+
+ Parameters
+ ----------
+ subclass : type[ConfigurationSchema]
+ Subclass to register as a virtual subclass of this schema.
+
+ Raises
+ ------
+ TypeError
+ If ``subclass`` is not a ``ConfigurationSchema`` subclass.
+ """
+
+ if not isinstance(subclass, type) or not issubclass(subclass, ConfigurationSchema):
+ raise TypeError(
+ f"Cannot register {subclass!r} as a virtual subclass of {cls.__name__}: "
+ "it is not a ConfigurationSchema subclass."
+ )
+
+ cls._virtual_subclasses.add(subclass)
+
+ @classmethod
+ def is_virtual_subclass_of(cls, superclass: type["ConfigurationSchema"]) -> bool:
+ """
+ Check whether this class is a subclass of another schema.
+
+ Parameters
+ ----------
+ superclass : type[ConfigurationSchema]
+ Schema class to compare against.
+
+ Returns
+ -------
+ bool
+ ``True`` if ``cls`` is ``superclass`` or a registered virtual
+ subclass of it, otherwise ``False``.
+
+ Raises
+ ------
+ TypeError
+ If ``superclass`` is not a ``ConfigurationSchema`` subclass.
+ """
+
+ if not isinstance(superclass, type) or not issubclass(superclass, ConfigurationSchema):
+ raise TypeError(f"{superclass!r} is not a ConfigurationSchema.")
+
+ checked: set[type["ConfigurationSchema"]] = set()
+
+ def subclass_exists(current_cls: type["ConfigurationSchema"]) -> bool:
+ """
+ Recursively check whether a registered subclass exists.
+
+ The ``checked`` set prevents cycles while traversing the virtual
+ subclass hierarchy.
+
+ Parameters
+ ----------
+ current_cls : type[ConfigurationSchema]
+ Schema class whose registered subclasses are inspected.
+
+ Returns
+ -------
+ bool
+ ``True`` if ``current_cls`` has a registered subclass;
+ otherwise, ``False``.
+ """
+ if current_cls in checked:
+ return False
+ checked.add(current_cls)
+
+ if current_cls is cls:
+ return True
+
+ for child in current_cls._virtual_subclasses:
+ if subclass_exists(child):
+ return True
+
+ return False
+
+ return subclass_exists(superclass)
+
+ @classmethod
+ def __get_pydantic_core_schema__(cls, source: Any, handler: GetCoreSchemaHandler) -> CoreSchema:
+ """
+ Customize Pydantic core schema generation.
+
+ Parameters
+ ----------
+ source : Any
+ Source type passed by Pydantic during schema generation.
+ handler : GetCoreSchemaHandler
+ Pydantic schema handler used to generate the default schema.
+
+ Returns
+ -------
+ CoreSchema
+ Wrapped core schema that accepts registered virtual subclasses.
+ """
+
+ # Get the normal schema
+ schema = handler(source)
+
+ def validate(value, nxt):
+ # Already the expected schema type
+ """
+ Accept schema instances and delegate other values to Pydantic.
+
+ Instances of ``cls`` and its registered virtual subclasses are
+ returned unchanged. All other values are passed to the wrapped
+ Pydantic validator.
+
+ Parameters
+ ----------
+ value : object
+ Value being validated.
+ nxt : object
+ Wrapped Pydantic validator used for ordinary input values.
+
+ Returns
+ -------
+ object
+ The original schema instance or the value returned by
+ ``nxt``.
+ """
+ if isinstance(value, cls):
+ return value
+
+ # A registered virtual subclass instance should also be accepted
+ if isinstance(value, ConfigurationSchema) and type(value).is_virtual_subclass_of(cls):
+ return value
+
+ # Otherwise let Pydantic validate normally
+ return nxt(value)
+
+ return core_schema.no_info_wrap_validator_function(validate, schema)
+
+
+class ModuleConfigurationSchema(PyAMLBaseModel):
+ """
+ Base model for validating externally supplied configuration data.
+
+ This schema exists to support legacy module-based configurations. It
+ defines the expected input for configuring a specific object, with the
+ target class resolved from the module's ``PYAMLCLASS`` attribute.
+
+ Methods
+ -------
+ to_configuration()
+ Convert the module-based configuration to a ``ConfigurationSchema``.
+ """
+
+ model_config = ConfigDict(validate_by_name=True, validate_by_alias=True, extra="forbid")
+
+ MODULE_PATH_ALIASES: ClassVar[tuple[str, ...]] = ("module", "type")
+
+ module_path: str = Field(
+ description="Fully qualified module path.",
+ validation_alias=AliasChoices(*MODULE_PATH_ALIASES),
+ )
+
+ def to_configuration(self) -> ConfigurationSchema:
+ """
+ Convert the module-based configuration to a ``ConfigurationSchema``.
+
+ Imports the referenced module, resolves the target class from its
+ ``PYAMLCLASS`` attribute, and returns an equivalent
+ :class:`ConfigurationSchema`. Any additional configuration fields are
+ preserved.
+
+ Returns
+ -------
+ ConfigurationSchema
+ Configuration schema with the resolved fully qualified class path.
+
+ Raises
+ ------
+ ImportError
+ If the referenced module cannot be imported.
+ ValueError
+ If the module does not define ``PYAMLCLASS``.
+ """
+
+ module = importlib.import_module(self.module_path)
+
+ try:
+ class_name = module.PYAMLCLASS
+ except AttributeError as e:
+ raise ValueError(f"Module '{self.module_path}' does not define PYAMLCLASS.") from e
+
+ return ConfigurationSchema.model_validate(
+ {
+ "class_path": f"{self.module_path}.{class_name}",
+ **(self.model_extra or {}),
+ },
+ extra="allow",
+ )
diff --git a/pyaml/validation/errors.py b/pyaml/validation/errors.py
new file mode 100644
index 000000000..a3ebe0124
--- /dev/null
+++ b/pyaml/validation/errors.py
@@ -0,0 +1,205 @@
+"""Functionality for attaching location information to validation errors."""
+
+from dataclasses import dataclass
+from typing import Any, NoReturn
+
+from pydantic import ValidationError
+
+from ..common.exception import PyAMLConfigException
+
+
+@dataclass(frozen=True)
+class Location:
+ """
+ Source location within a configuration file.
+
+ Parameters
+ ----------
+ file : str
+ Name of the configuration file.
+ line : int
+ Line number where the object or field was defined.
+ column : int
+ Column number where the object or field was defined.
+ """
+
+ file: str
+ line: int
+ column: int
+
+ def __str__(self) -> str:
+ """
+ Return a human-readable string representation of the object.
+
+ Returns
+ -------
+ str
+ Location rendered as ``file:line:column``.
+ """
+ return f"{self.file}: line {self.line}, column {self.column}"
+
+
+@dataclass(frozen=True)
+class LocationMetadata:
+ """
+ Location metadata extracted from configuration data.
+
+ Parameters
+ ----------
+ location : Location | None
+ Source location of the configuration object itself.
+ field_locations : dict[str, Location] | None, optional
+ Source locations for individual configuration fields.
+ """
+
+ location: Location | None
+ field_locations: dict[str, Location] | None = None
+
+
+def extract_location_metadata(data: dict[str, Any]) -> tuple[dict[str, Any], LocationMetadata]:
+ """
+ Extract loader-added location metadata from configuration data.
+
+ Parameters
+ ----------
+ data : dict[str, Any]
+ Configuration data potentially containing loader-added metadata.
+
+ Returns
+ -------
+ tuple[dict[str, Any], LocationMetadata]
+ A copy of the configuration dictionary with the metadata removed,
+ together with the extracted location information.
+ """
+
+ cleaned = dict(data)
+
+ # Get the location
+ raw_location = cleaned.pop("__location__", None)
+ location = Location(*raw_location) if raw_location is not None else None
+
+ # Get the field locations
+ raw_field_locations = cleaned.pop("__fieldlocations__", None)
+ field_locations = (
+ {field: Location(*raw_loc) for field, raw_loc in raw_field_locations.items()}
+ if raw_field_locations is not None
+ else None
+ )
+
+ return cleaned, LocationMetadata(
+ location=location,
+ field_locations=field_locations,
+ )
+
+
+def _format_value(value: Any, max_len: int = 120) -> str:
+ """
+ Format a value for inclusion in an error message.
+
+ Parameters
+ ----------
+ value : Any
+ Value to format.
+ max_len : int, optional
+ Maximum length of the formatted representation, by default 120.
+
+ Returns
+ -------
+ str
+ Formatted value string.
+ """
+
+ text = repr(value)
+ return text if len(text) <= max_len else text[: max_len - 3] + "..."
+
+
+def _format_location_path(loc: tuple[Any, ...]) -> str:
+ """
+ Format a Pydantic error location as a human-readable path.
+
+ Parameters
+ ----------
+ loc : tuple[Any, ...]
+ Location tuple from a Pydantic validation error.
+
+ Returns
+ -------
+ str
+ Human-readable location path such as ``items[0].name``.
+ Returns ```` for an empty location.
+ """
+
+ parts: list[str] = []
+
+ for item in loc:
+ if isinstance(item, int):
+ if parts:
+ parts[-1] = f"{parts[-1]}[{item}]"
+ else:
+ parts.append(f"[{item}]")
+ else:
+ parts.append(str(item))
+
+ return ".".join(parts) if parts else ""
+
+
+def raise_validation_error(
+ exc: ValidationError,
+ class_path: str,
+ location_metadata: LocationMetadata | None = None,
+) -> NoReturn:
+ """
+ Raise a configuration exception from a Pydantic validation error.
+
+ Parameters
+ ----------
+ exc : ValidationError
+ Validation error raised by Pydantic.
+ class_path : str
+ Fully qualified class path of the configuration object being validated.
+ location_metadata : LocationMetadata | None, optional
+ Source location metadata extracted from the configuration data, by
+ default None.
+
+ Raises
+ ------
+ PyAMLConfigException
+ Always raised with a formatted human-readable error message.
+ """
+
+ header = [f"Validation failed for class: '{class_path}'"]
+
+ if location_metadata is not None and location_metadata.location is not None:
+ header.append(f"at {location_metadata.location}.")
+
+ else:
+ header[-1] += "."
+
+ error_lines: list[str] = []
+
+ for err in exc.errors():
+ loc = tuple(err.get("loc", ()))
+ msg = err["msg"]
+ bad_value = err.get("input", None)
+
+ path = _format_location_path(loc)
+ error_lines.append(f"Field '{path}' is invalid:")
+ error_lines.append(f" error: {msg}")
+
+ if bad_value is not None:
+ error_lines.append(f" got: {_format_value(bad_value)}")
+
+ field_name = loc[0] if loc else None
+ if (
+ location_metadata is not None
+ and location_metadata.field_locations is not None
+ and field_name in location_metadata.field_locations
+ ):
+ error_lines.append(f" location: {location_metadata.field_locations[field_name]}")
+
+ if header[-1].endswith("."):
+ message = "\n".join(header + error_lines)
+ else:
+ message = f"{header[0]} {' '.join(header[1:])} {error_lines[0]}\n" + "\n".join(error_lines[1:])
+
+ raise PyAMLConfigException(message) from None
diff --git a/pyaml/validation/generator.py b/pyaml/validation/generator.py
new file mode 100644
index 000000000..8767b65ad
--- /dev/null
+++ b/pyaml/validation/generator.py
@@ -0,0 +1,281 @@
+"""Module for generating JSON Schema from registered configuration schemas."""
+
+import json
+import logging
+from copy import deepcopy
+from pathlib import Path
+from typing import Any
+
+from pydantic.json_schema import GenerateJsonSchema
+from pydantic_core import core_schema
+
+from .configuration_models import ConfigurationSchema
+from .registry import SchemaRegistry
+
+logger = logging.getLogger(__name__)
+
+
+METADATA_KEYS = (
+ "title",
+ "description",
+ "examples",
+ "deprecated",
+ "readOnly",
+ "writeOnly",
+)
+
+CLASS_ALIAS = "class"
+
+
+class SchemaGenerator:
+ """
+ Generate JSON Schemas for registered configuration models.
+
+ This class provides convenience methods for generating and exporting
+ JSON Schemas from models registered in the ``SchemaRegistry``. Schema
+ generation is delegated to a custom Pydantic JSON Schema generator
+ that adds support for registry-aware polymorphism.
+
+ Configuration base classes with registered subclasses are represented
+ as ``oneOf`` unions over their concrete implementations, allowing
+ generated schemas to describe all valid registered configuration types.
+
+ Primitive unions such as ``str | None`` are emitted using compact
+ ``type: [...]`` representations when supported by Pydantic.
+
+ Methods
+ -------
+ generate(class_path)
+ Generate a JSON Schema for a registered configuration schema.
+ save(class_path, filename, *, indent=2)
+ Generate JSON Schema and save it to a file.
+ """
+
+ _registry = SchemaRegistry()
+
+ @classmethod
+ def generate(cls, class_path: str) -> dict[str, Any]:
+ """
+ Generate a JSON Schema for a registered configuration schema.
+
+ The schema is generated using a custom Pydantic JSON Schema generator
+ that expands registered configuration subclasses into ``oneOf`` unions
+ and preserves compact representations for primitive unions such as
+ ``str | None``.
+
+ Parameters
+ ----------
+ class_path : str
+ Registry key identifying the configuration schema class.
+
+ Returns
+ -------
+ dict[str, Any]
+ Generated JSON Schema for the requested configuration schema.
+
+ Raises
+ ------
+ KeyError
+ If no schema is registered for the given class path.
+ """
+
+ schema_cls = cls._registry.get(class_path)
+
+ logger.debug("Generating schema for %s.", schema_cls)
+
+ if schema_cls is None:
+ raise KeyError(f"No schema registered for '{class_path}'")
+
+ return schema_cls.model_json_schema(
+ by_alias=True,
+ union_format="primitive_type_array",
+ schema_generator=RegistryJsonSchema,
+ )
+
+ @classmethod
+ def save(
+ cls,
+ class_path: str,
+ filename: str | Path,
+ *,
+ indent: int = 2,
+ ) -> Path:
+ """
+ Generate JSON Schema and save it to a file.
+
+ Parameters
+ ----------
+ class_path : str
+ Registered class path to generate schema for.
+ filename : str or Path
+ Output filename.
+ indent : int, optional
+ JSON indentation level. Default: 2.
+
+ Returns
+ -------
+ Path
+ Path to the written file.
+ """
+ schema = cls.generate(class_path)
+
+ path = Path(filename)
+
+ with path.open("w", encoding="utf-8") as file:
+ json.dump(schema, file, indent=indent)
+
+ return path
+
+
+class RegistryJsonSchema(GenerateJsonSchema):
+ """
+ Custom Pydantic JSON Schema generator for configuration schemas.
+
+ This generator extends the default Pydantic schema generation to support
+ registry-aware polymorphism for ``ConfigurationSchema`` subclasses.
+
+ For configuration base classes with registered subclasses, the generated
+ schema is replaced by a ``oneOf`` union over all registered concrete
+ subclasses. Human-facing schema metadata such as titles and descriptions
+ are preserved from the original schema.
+
+ In addition, all generated schema unions are normalized to use ``oneOf``
+ instead of ``anyOf`` for improved compatibility with downstream tooling.
+ Primitive unions such as ``str | None`` continue to use compact
+ ``type: [...]`` representations when supported by Pydantic.
+
+ Methods
+ -------
+ model_schema(schema)
+ Generate a JSON Schema for a Pydantic model.
+ """
+
+ _registry = SchemaRegistry()
+
+ def model_schema(self, schema: core_schema.ModelSchema) -> dict[str, Any]:
+ """
+ Generate a JSON Schema for a Pydantic model.
+
+ For ``ConfigurationSchema`` subclasses, the generated schema may be
+ transformed into a polymorphic schema based on the registered schema
+ registry:
+
+ - If the model defines a ``class`` field, all registered aliases
+ corresponding to the model are added as allowed literal values.
+
+ - If registered subclasses exist, the schema is replaced by an
+ ``anyOf`` union containing the schemas of all registered subclasses.
+
+ Metadata fields from the original schema, such as titles and
+ descriptions, are preserved in the merged schema.
+
+ Parameters
+ ----------
+ schema : core_schema.ModelSchema
+ Pydantic core schema describing the model.
+
+ Returns
+ -------
+ dict[str, Any]
+ Generated JSON Schema for the model or polymorphic union schema.
+
+ Notes
+ -----
+ The generated polymorphic schema uses ``anyOf`` instead of ``oneOf``
+ because nested ``oneOf`` unions may lead to ambiguous validation in
+ downstream JSON Schema tooling when subclass schemas contain nullable
+ or overlapping branches.
+ """
+
+ base_schema = super().model_schema(schema)
+
+ model_cls = schema.get("cls")
+ logging.debug(f"Base schema is extracted from {model_cls}.")
+
+ if not isinstance(model_cls, type) or not issubclass(model_cls, ConfigurationSchema):
+ return base_schema
+
+ # If the baseschema has a class field, add literal for all keys.
+ properties = base_schema.get("properties")
+ if isinstance(properties, dict) and CLASS_ALIAS in properties and isinstance(properties[CLASS_ALIAS], dict):
+ logging.debug(f"Adding list of classes to: {model_cls}.")
+
+ # Find keys that correspond to the same schema
+ base_keys = sorted(key for key, schema_cls in self._registry.items() if schema_cls is model_cls)
+
+ base_schema = deepcopy(base_schema)
+ properties = base_schema["properties"]
+ self._add_literals_to_class_path(properties[CLASS_ALIAS], base_keys)
+
+ # Get subclasses in registry sorted by module name
+ subclasses = sorted(
+ {
+ schema_cls
+ for _, schema_cls in self._registry.items()
+ if (
+ isinstance(schema_cls, type)
+ and issubclass(schema_cls, ConfigurationSchema)
+ and schema_cls is not model_cls
+ and (issubclass(schema_cls, model_cls) or schema_cls.is_virtual_subclass_of(model_cls))
+ )
+ },
+ key=lambda cls: f"{cls.__module__}.{cls.__name__}",
+ )
+ logging.debug(f"Subclasses found in registry: {subclasses}.")
+
+ if not subclasses:
+ return base_schema
+
+ # Generate schemas of subclasses
+ subschemas = [self.generate_inner(item.__pydantic_core_schema__) for item in subclasses]
+
+ # TODO: get the schemas to work when using oneOf instead
+ merged: dict[str, Any] = {"oneOf": subschemas}
+
+ for key in METADATA_KEYS:
+ if key in base_schema and key not in merged:
+ merged[key] = deepcopy(base_schema[key])
+
+ return merged
+
+ @staticmethod
+ def _add_literals_to_class_path(schema: dict[str, Any], literals: list[str]) -> None:
+ """
+ Add allowed literal values to a JSON Schema string field.
+
+ The provided literals are merged with any existing ``enum`` values in
+ the schema while preserving insertion order and removing duplicates.
+
+ If the resulting set contains only a single value, the schema is
+ simplified by replacing ``enum`` with ``const``.
+
+ The schema is modified in place.
+
+ Parameters
+ ----------
+ schema : dict[str, Any]
+ JSON Schema fragment representing a string-like field.
+ literals : list[str]
+ Literal values to add to the schema.
+
+ Notes
+ -----
+ Only schemas representing string values or existing enumerations are
+ modified. Empty literal lists are ignored.
+ """
+
+ if not literals:
+ return
+
+ # Add registry keys as literals
+ if schema.get("type") == "string" or "enum" in schema:
+ existing = schema.get("enum", [])
+ merged = list(dict.fromkeys([*existing, *literals]))
+ schema["enum"] = merged
+
+ # If only one value exists use const
+ if len(merged) == 1:
+ schema["const"] = merged[0]
+ schema.pop("enum", None)
+
+ return
diff --git a/pyaml/validation/registry.py b/pyaml/validation/registry.py
new file mode 100644
index 000000000..276d73e3d
--- /dev/null
+++ b/pyaml/validation/registry.py
@@ -0,0 +1,465 @@
+"""Registry for schemas."""
+
+import importlib
+import logging
+import pkgutil
+from collections.abc import ItemsView, Iterator, KeysView, ValuesView
+from importlib import metadata
+from typing import Callable, Type, TypeVar, overload
+
+from .configuration_models import ConfigurationSchema
+
+logger = logging.getLogger(__name__)
+
+_SCHEMA_ENTRY_POINT_GROUP = "pyaml.schemas"
+
+
+def _import_module(module_name: str) -> None:
+ """Import a module and recursively import its submodules.
+
+ Parameters
+ ----------
+ module_name : str
+ Fully qualified name of the module or package to import.
+ """
+
+ module = importlib.import_module(module_name)
+
+ # Check if module is a package and then recursively import
+ if hasattr(module, "__path__"):
+ for _, submodule_name, _ in pkgutil.walk_packages(
+ module.__path__,
+ module.__name__ + ".",
+ ):
+ importlib.import_module(submodule_name)
+
+
+class SchemaRegistry:
+ """
+ Singleton registry for dynamically registered schemas.
+
+ The registry is used to validate data and produce
+ jsonschemas for dynamic nested models.
+
+ Methods
+ -------
+ register(class_path, schema)
+ Register a schema for a class path.
+ discover()
+ Discover and register schemas.
+ unregister(class_path)
+ Unregister a schema.
+ clear()
+ Remove all registered schemas.
+ get(class_path)
+ Return the registered schema for a class path.
+ items()
+ Return a view of registered schema items.
+ keys()
+ Return a view of registered class paths.
+ values()
+ Return a view of registered schemas.
+ update(class_path, schema)
+ Replace the schema registered for a class path.
+ """
+
+ _instance: "SchemaRegistry | None" = None
+ _schemas: dict[str, Type[ConfigurationSchema]]
+
+ def __new__(cls) -> "SchemaRegistry":
+ """
+ Return the shared schema registry instance.
+
+ The registry is a singleton: the first call creates the instance and
+ initializes its schema store; subsequent calls return the same object.
+
+ Returns
+ -------
+ SchemaRegistry
+ The shared schema registry.
+ """
+ if cls._instance is None:
+ cls._instance = super().__new__(cls)
+ cls._instance._schemas = {}
+ return cls._instance
+
+ # ==========================================================
+ # Registration
+ # ==========================================================
+
+ def register(
+ self,
+ class_path: str,
+ schema: type[ConfigurationSchema],
+ ) -> None:
+ """
+ Register a schema for a class path.
+
+ Parameters
+ ----------
+ class_path : str
+ Fully qualified class path.
+ schema : type[ConfigurationSchema]
+ Schema class used for validation. Must inherit from
+ :class:`ConfigurationSchema`.
+
+ Raises
+ ------
+ TypeError
+ If ``schema`` is not a subclass of
+ :class:`ConfigurationSchema`.
+ ValueError
+ If a different schema has already been registered for
+ ``class_path``.
+ """
+ existing = self._schemas.get(class_path)
+ if existing is not None and existing is not schema:
+ raise ValueError(f"{class_path} already registered with a different schema.")
+
+ if not isinstance(schema, type) or not issubclass(schema, ConfigurationSchema):
+ raise TypeError(f"{schema!r} must inherit from ConfigurationSchema.")
+
+ self._schemas[class_path] = schema
+
+ def discover(self) -> None:
+ """
+ Discover and register schemas.
+
+ This recursively imports modules in the :mod:`pyaml` package so
+ classes decorated with :func:`register_schema` are registered. It
+ also imports modules and packages advertised through the
+ ``pyaml.schemas`` entry-point group, allowing external packages to
+ register schemas.
+ """
+
+ # Discover schemas inside the pyaml core
+ # Import package modules so schema registration runs
+
+ root_package = __package__.split(".")[0]
+
+ _import_module(root_package)
+
+ # Discover schemas from external packages
+ # This uses entry points
+
+ for entry_point in metadata.entry_points(group=_SCHEMA_ENTRY_POINT_GROUP):
+ logger.debug("Loading schema entry point %s", entry_point)
+
+ if entry_point.attr is not None:
+ raise ValueError(
+ f"Schema entry point {entry_point.name!r} must reference a package or module, not an attribute."
+ )
+
+ _import_module(entry_point.value)
+
+ def unregister(
+ self,
+ class_path: str,
+ ) -> None:
+ """
+ Unregister a schema.
+
+ Parameters
+ ----------
+ class_path : str
+ Fully qualified class path.
+
+ Raises
+ ------
+ KeyError
+ If no schema has been registered for ``class_path``.
+ """
+ try:
+ del self._schemas[class_path]
+
+ except KeyError:
+ raise KeyError(f"No schema registered for '{class_path}'") from None
+
+ def clear(self) -> None:
+ """
+ Remove all registered schemas.
+
+ This clears the registry in place.
+ """
+ self._schemas.clear()
+
+ def __repr__(
+ self,
+ ) -> str:
+ """Return a string representation of the registry."""
+ if not self._schemas:
+ return f"{self.__class__.__name__}({{}})"
+
+ lines = [f"{self.__class__.__name__}("]
+
+ for class_path, schema in sorted(self._schemas.items()):
+ lines.append(f" {class_path!r}: {schema.__module__}.{schema.__name__},")
+
+ lines.append(")")
+
+ return "\n".join(lines)
+
+ # ==========================================================
+ # Lookup
+ # ==========================================================
+
+ def __getitem__(
+ self,
+ class_path: str,
+ ) -> Type[ConfigurationSchema]:
+ """
+ Return the registered schema for a class path.
+
+ Parameters
+ ----------
+ class_path : str
+ Fully qualified class path.
+
+ Returns
+ -------
+ Type[ConfigurationSchema]
+ Registered schema class.
+
+ Raises
+ ------
+ KeyError
+ If no schema has been registered for ``class_path``.
+ """
+
+ try:
+ return self._schemas[class_path]
+
+ except KeyError:
+ raise KeyError(f"No schema registered for '{class_path}.'") from None
+
+ def get(
+ self,
+ class_path: str,
+ ) -> type[ConfigurationSchema] | None:
+ """
+ Return the registered schema for a class path.
+
+ Parameters
+ ----------
+ class_path : str
+ Fully qualified class path.
+
+ Returns
+ -------
+ type[ConfigurationSchema] | None
+ Registered schema class, or ``None`` if no schema is
+ registered for ``class_path``.
+ """
+ return self._schemas.get(class_path)
+
+ # ==========================================================
+ # Contents
+ # ==========================================================
+
+ def __contains__(
+ self,
+ class_path: str,
+ ) -> bool:
+ """
+ Return whether a schema is registered for a class path.
+
+ Parameters
+ ----------
+ class_path : str
+ Fully qualified class path.
+
+ Returns
+ -------
+ bool
+ ``True`` if a schema is registered for ``class_path``,
+ otherwise ``False``.
+ """
+ return class_path in self._schemas
+
+ def items(
+ self,
+ ) -> ItemsView[str, Type[ConfigurationSchema]]:
+ """
+ Return a view of registered schema items.
+
+ Returns
+ -------
+ ItemsView[str, Type[ConfigurationSchema]]
+ View of registered ``(class_path, schema)`` pairs.
+ """
+ return self._schemas.items()
+
+ def keys(
+ self,
+ ) -> KeysView[str]:
+ """
+ Return a view of registered class paths.
+
+ Returns
+ -------
+ KeysView[str]
+ View of registered class paths.
+ """
+ return self._schemas.keys()
+
+ def values(
+ self,
+ ) -> ValuesView[Type[ConfigurationSchema]]:
+ """
+ Return a view of registered schemas.
+
+ Returns
+ -------
+ ValuesView[Type[ConfigurationSchema]]
+ View of registered schema classes.
+ """
+ return self._schemas.values()
+
+ def __len__(
+ self,
+ ) -> int:
+ """
+ Return the number of registered schemas.
+
+ Returns
+ -------
+ int
+ Number of registered schemas.
+ """
+ return len(self._schemas)
+
+ def __iter__(
+ self,
+ ) -> Iterator[str]:
+ """
+ Iterate over registered class paths.
+
+ Returns
+ -------
+ Iterator[str]
+ Iterator over registered class paths.
+ """
+ return iter(self._schemas)
+
+ # ==========================================================
+ # Updating
+ # ==========================================================
+
+ def update(
+ self,
+ class_path: str,
+ schema: type[ConfigurationSchema],
+ ) -> None:
+ """
+ Replace the schema registered for a class path.
+
+ Parameters
+ ----------
+ class_path : str
+ Fully qualified class path.
+ schema : type[ConfigurationSchema]
+ Schema class used for validation. Must inherit from
+ :class:`ConfigurationSchema`.
+
+ Raises
+ ------
+ TypeError
+ If ``schema`` is not a subclass of
+ :class:`ConfigurationSchema`.
+ KeyError
+ If no schema has been registered for ``class_path``.
+ """
+ if not isinstance(schema, type) or not issubclass(schema, ConfigurationSchema):
+ raise TypeError(f"{schema!r} must inherit from ConfigurationSchema.")
+
+ if class_path not in self._schemas:
+ raise KeyError(f"{class_path} is not registered.")
+
+ self._schemas[class_path] = schema
+
+
+# ==========================================================
+# Decorator to register schemas
+# ==========================================================
+
+ClassT = TypeVar("ClassT")
+
+
+@overload
+def register_schema(cls: type[ClassT]) -> type[ClassT]: ...
+
+
+@overload
+def register_schema(schema: type[ConfigurationSchema]) -> Callable[[type[ClassT]], type[ClassT]]: ...
+
+
+@overload
+def register_schema() -> Callable[[type[ClassT]], type[ClassT]]: ...
+
+
+def register_schema(arg: type | None = None):
+ """
+ Register a configuration schema for a class.
+
+ This decorator supports three forms:
+
+ - ``@register_schema``: generate and register a configuration schema
+ from the decorated class.
+ - ``@register_schema()``: equivalent to ``@register_schema``.
+ - ``@register_schema(MyConfigurationSchema)``: register an explicit
+ :class:`ConfigurationSchema` subclass for the decorated class.
+
+ Automatically generated schemas are created using
+ :func:`generate_configuration_schema` and registered in the
+ :class:`SchemaRegistry`.
+ """
+
+ from .schema_builder import generate_configuration_schema
+
+ registry = SchemaRegistry()
+
+ def _generate_and_register_schema(cls: type[ClassT]) -> type[ClassT]:
+ """
+ Generate and register a schema for a decorated class.
+
+ Parameters
+ ----------
+ cls : type[ClassT]
+ Configuration class for which a schema should be generated.
+
+ Returns
+ -------
+ type[ClassT]
+ The original class, unchanged, for use as a decorator result.
+ """
+ generate_configuration_schema(cls)
+ return cls
+
+ # Used as: @register_schema(schema)
+ # Explicit registration of schema
+ if isinstance(arg, type) and issubclass(arg, ConfigurationSchema):
+ schema = arg
+
+ def decorator(cls: type[ClassT]) -> type[ClassT]:
+ class_path = f"{cls.__module__}.{cls.__name__}"
+ logger.debug("Register schema for %s.", class_path)
+ registry.register(class_path=class_path, schema=schema)
+ return cls
+
+ return decorator
+
+ # Used as: @register_schema()
+ # Registration is done when generating the schema
+ if arg is None:
+
+ def decorator(cls: type[ClassT]) -> type[ClassT]:
+ return _generate_and_register_schema(cls)
+
+ return decorator
+
+ # Used as: @register_schema
+ # Registration is done when generating the schema
+ if isinstance(arg, type):
+ return _generate_and_register_schema(arg)
+
+ raise TypeError("register_schema must be used as a decorator or decorator factory.")
diff --git a/pyaml/validation/schema_builder.py b/pyaml/validation/schema_builder.py
new file mode 100644
index 000000000..4912b2098
--- /dev/null
+++ b/pyaml/validation/schema_builder.py
@@ -0,0 +1,396 @@
+"""Functionality for dynamically generating configuration schemas."""
+
+import inspect
+import logging
+import types
+from abc import ABC
+from datetime import date, datetime, time, timedelta
+from decimal import Decimal
+from enum import Enum
+from functools import reduce
+from pathlib import Path
+from typing import Annotated, Any, Literal, Union, get_args, get_origin, get_type_hints
+from uuid import UUID
+
+from pydantic import BaseModel, Field, create_model
+from pydantic.fields import FieldInfo
+from pydantic_core import PydanticUndefined
+
+from .configuration_models import ConfigurationSchema
+from .registry import SchemaRegistry
+
+logger = logging.getLogger(__name__)
+
+RESERVED_CONFIGURATION_FIELDS = {"class_path"}
+
+# Types that should not be included in the registry when
+# registing classes by walking a class's MRO.
+EXCLUDED_TYPES: set[object] = {
+ object,
+ BaseModel,
+ ConfigurationSchema,
+ ABC,
+}
+
+SUPPORTED_TYPES = (
+ int,
+ str,
+ float,
+ bool,
+ bytes,
+ dict,
+ list,
+ tuple,
+ set,
+ frozenset,
+ type(None),
+ datetime,
+ date,
+ time,
+ timedelta,
+ Decimal,
+ Path,
+ UUID,
+)
+
+
+def generate_class_path(source: type) -> str:
+ """
+ Generate the fully qualified class path for a type.
+
+ Parameters
+ ----------
+ source : type
+ Class or type object to convert into a fully qualified path.
+
+ Returns
+ -------
+ str
+ Fully qualified class path in the form ``module.name``.
+ """
+ return f"{source.__module__}.{source.__name__}"
+
+
+def _extract_source_bases(source: type) -> list[type]:
+ """
+ Extract relevant base classes from a type's method resolution order.
+
+ Parameters
+ ----------
+ source : type
+ Class whose non-framework base classes should be collected.
+
+ Returns
+ -------
+ list[type]
+ List of base classes from the class hierarchy, excluding
+ ``object``, :class:`pydantic.BaseModel`, and
+ :class:`ConfigurationSchema`.
+ """
+ bases: list[type] = []
+
+ for base in source.__mro__[1:]:
+ if base in EXCLUDED_TYPES:
+ continue
+ bases.append(base)
+
+ return bases
+
+
+def generate_configuration_schema(source: type) -> type[ConfigurationSchema]:
+ """
+ Generate a configuration schema for a class or Pydantic model.
+
+ If the source defines a ``validation_model`` attribute containing a
+ Pydantic model, the configuration schema is generated from that model.
+ Otherwise, the schema is generated from the source class constructor
+ signature.
+
+ Generated schemas are registered in the :class:`SchemaRegistry` and
+ reused on subsequent requests.
+ """
+
+ if not isinstance(source, type):
+ raise TypeError("Source must be a class.")
+
+ registry = SchemaRegistry()
+ class_path = generate_class_path(source)
+
+ existing = registry.get(class_path)
+ if existing is not None:
+ return existing
+
+ # Check if the class has a validation model
+ validation_model = getattr(source, "validation_model", None)
+
+ if isinstance(validation_model, type) and issubclass(validation_model, BaseModel):
+ schema = _configuration_schema_from_basemodel(
+ validation_model,
+ _generate_schema_name(source),
+ source.__module__,
+ )
+ else:
+ schema = _configuration_schema_from_constructor(source)
+
+ logger.debug("Register schema for %s.", class_path)
+ registry.register(class_path, schema)
+
+ # Keep information about the inheritance relations
+ bases = _extract_source_bases(source)
+ base_schemas: list[type[ConfigurationSchema]] = []
+
+ for base in bases:
+ base_class_path = generate_class_path(base)
+ base_schema = registry.get(base_class_path)
+
+ if base_schema is None:
+ base_schema = generate_configuration_schema(base)
+ logger.debug("Generate and register schema for base class %s.", base)
+
+ base_schemas.append(base_schema)
+
+ # Register virtual subclass links
+ for base_schema in base_schemas:
+ logger.debug("Register virtual subclass %s under %s.", schema, base_schema)
+ base_schema.register_virtual_subclass(schema)
+
+ return schema
+
+
+def _generate_schema_name(source: type) -> str:
+ """
+ Generate the default configuration schema name for a source class.
+ """
+ return f"{source.__name__}ConfigurationSchema"
+
+
+def _configuration_schema_from_basemodel(
+ validation_model: type[BaseModel],
+ schema_name: str,
+ module_name: str,
+) -> type[ConfigurationSchema]:
+ """
+ Generate a configuration schema from a Pydantic model.
+
+ The resulting schema contains one field for each field defined on the
+ validation model, with field metadata and defaults preserved.
+ """
+
+ if not isinstance(validation_model, type) or not issubclass(validation_model, BaseModel):
+ raise TypeError("validation_model must be a subclass of pydantic.BaseModel.")
+
+ fields: dict[str, Any] = {}
+
+ for field_name, field_info in validation_model.model_fields.items():
+ if field_name in RESERVED_CONFIGURATION_FIELDS:
+ raise ValueError(
+ f"{validation_model.__name__} defines reserved field {field_name!r}, which is owned by ConfigurationSchema."
+ )
+
+ fields[field_name] = _field_definition_from_field_info(field_name, field_info)
+
+ return create_model(
+ schema_name,
+ __base__=ConfigurationSchema,
+ __module__=module_name,
+ **fields,
+ )
+
+
+def _field_definition_from_field_info(field_name: str, field_info: FieldInfo) -> tuple[Any, Any]:
+ """
+ Convert a Pydantic field definition into a ``create_model`` field tuple.
+ """
+
+ # Get the annotation
+ annotation = _resolve_annotation(field_info.annotation)
+
+ # Handle default
+ default = field_info.default
+ if default is PydanticUndefined:
+ default = ...
+
+ # Handle default factory
+ default_factory = field_info.default_factory
+
+ # Collect metadata
+ field_kwargs = _field_kwargs(field_name, field_info)
+
+ if default_factory is not None:
+ return annotation, Field(default_factory=default_factory, **field_kwargs)
+ elif field_kwargs:
+ return annotation, Field(default, **field_kwargs)
+ else:
+ return annotation, default
+
+
+def _resolve_annotation(annotation: Any) -> Any:
+ """
+ Resolve an annotation into a schema-friendly type.
+
+ Supported annotations are passed through directly, while supported
+ generic types are resolved recursively into equivalent type hints.
+ """
+
+ if annotation is inspect._empty or annotation is Any:
+ return Any
+
+ if annotation is None:
+ return type(None)
+
+ if isinstance(annotation, str):
+ raise TypeError(f"Unable to resolve annotation {annotation!r}. Forward references are not currently supported.")
+
+ # Check if is a generic type
+ origin = get_origin(annotation)
+
+ # If not a generic type
+ if origin is None:
+ if isinstance(annotation, type):
+ if annotation in SUPPORTED_TYPES:
+ return annotation
+
+ if issubclass(annotation, Enum):
+ return annotation
+
+ if issubclass(annotation, ConfigurationSchema):
+ return annotation
+
+ return generate_configuration_schema(annotation)
+
+ raise TypeError(f"Unsupported annotation: {annotation!r}")
+
+ # If is generic type
+ args = get_args(annotation)
+
+ if origin is Annotated:
+ return Annotated[_resolve_annotation(args[0]), *args[1:]] # type: ignore[index]
+
+ elif origin is Literal:
+ return annotation
+
+ elif origin is list:
+ return list[_resolve_annotation(args[0])]
+
+ elif origin is dict:
+ return dict[_resolve_annotation(args[0]), _resolve_annotation(args[1])]
+
+ elif origin is tuple:
+ # Handle variable length tuple
+ if len(args) == 2 and args[1] is Ellipsis:
+ return tuple[_resolve_annotation(args[0]), ...]
+
+ resolved_args = tuple(_resolve_annotation(arg) for arg in args)
+ return tuple[resolved_args]
+
+ elif origin is set:
+ return set[_resolve_annotation(args[0])]
+
+ elif origin is frozenset:
+ return frozenset[_resolve_annotation(args[0])]
+
+ elif origin is Union or origin is types.UnionType:
+ resolved_args = tuple(_resolve_annotation(arg) for arg in args)
+ return reduce(lambda a, b: a | b, resolved_args[1:], resolved_args[0])
+
+ else:
+ raise TypeError(f"Unsupported generic annotation: {annotation!r}")
+
+
+def _field_kwargs(field_name: str, field_info: Any) -> dict[str, Any]:
+ """
+ Collect supported field metadata for ``pydantic.create_model``.
+ """
+
+ kwargs: dict[str, Any] = {}
+
+ description = getattr(field_info, "description", None)
+ if description is not None:
+ kwargs["description"] = description
+
+ title = getattr(field_info, "title", None)
+ if title is not None:
+ kwargs["title"] = title
+
+ examples = getattr(field_info, "examples", None)
+ if examples:
+ kwargs["examples"] = examples
+
+ deprecated = getattr(field_info, "deprecated", None)
+ if deprecated is not None:
+ kwargs["deprecated"] = deprecated
+
+ alias = getattr(field_info, "alias", None)
+ if alias and alias != field_name:
+ kwargs["alias"] = alias
+
+ return kwargs
+
+
+def _configuration_schema_from_constructor(cls: type) -> type[ConfigurationSchema]:
+ """
+ Generate a configuration schema from a class constructor signature.
+
+ The resulting schema contains one field for each constructor parameter,
+ with annotations and default values preserved.
+ """
+
+ if not isinstance(cls, type):
+ raise TypeError("cls must be a class.")
+
+ fields: dict[str, Any] = _fields_from_constructor_signature(
+ cls,
+ expand_arbitrary_types=True,
+ )
+
+ return create_model(
+ _generate_schema_name(cls),
+ __base__=ConfigurationSchema,
+ __module__=cls.__module__,
+ **fields,
+ )
+
+
+def _fields_from_constructor_signature(cls: type, expand_arbitrary_types: bool = False) -> dict[str, tuple[Any, Any]]:
+ """
+ Extract field definitions from a class constructor signature.
+
+ Parameters
+ ----------
+ cls
+ Class whose ``__init__`` method should be inspected.
+ expand_arbitrary_types
+ If true, unsupported annotations are expanded recursively into
+ schema-friendly types.
+ """
+
+ signature = inspect.signature(cls.__init__)
+ type_hints = get_type_hints(cls.__init__, include_extras=True)
+
+ fields: dict[str, tuple[Any, Any]] = {}
+
+ # Skip *args and **kwargs
+ for name, param in signature.parameters.items():
+ if name == "self":
+ continue
+
+ if param.kind in (
+ inspect.Parameter.VAR_POSITIONAL,
+ inspect.Parameter.VAR_KEYWORD,
+ ):
+ continue
+
+ if name in RESERVED_CONFIGURATION_FIELDS:
+ raise ValueError(
+ f"{cls.__name__}.__init__ defines reserved parameter {name!r}, which is owned by ConfigurationSchema."
+ )
+
+ annotation = type_hints.get(name, Any)
+
+ if expand_arbitrary_types:
+ annotation = _resolve_annotation(annotation)
+
+ default = param.default if param.default is not inspect._empty else ...
+ fields[name] = (annotation, default)
+
+ return fields
diff --git a/pyaml/validation/validation_models.py b/pyaml/validation/validation_models.py
new file mode 100644
index 000000000..8c5d77037
--- /dev/null
+++ b/pyaml/validation/validation_models.py
@@ -0,0 +1,281 @@
+"""Classes for validation during object creation."""
+
+import inspect
+import logging
+from abc import ABCMeta
+from typing import Any, ClassVar, cast
+
+from pydantic import BaseModel, ConfigDict, ValidationError, create_model
+
+from .configuration_models import PyAMLBaseModel
+from .errors import raise_validation_error
+from .schema_builder import _fields_from_constructor_signature, generate_class_path
+
+logger = logging.getLogger(__name__)
+
+
+class ValidationModel(PyAMLBaseModel):
+ """
+ Base model for validating object constructor arguments.
+
+ Each validation model defines the expected input for constructing a
+ specific object.
+ """
+
+ model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+
+
+class ValidationMeta(ABCMeta):
+ """
+ Metaclass that validates constructor arguments before object creation.
+
+ Classes using this metaclass must define a ``validation_model``
+ attribute containing a subclass of :class:`pydantic.BaseModel`.
+ Whenever an instance is created, the supplied constructor arguments
+ are validated against the model before the class constructor is
+ invoked.
+
+ Pass `validate=False` to skip validation for a single construction.
+
+ The signature reported by :func:`inspect.signature` for classes using this
+ metaclass is that of their ``__init__``, not of :meth:`__call__`. The
+ ``validate`` keyword is therefore not part of the reported signature.
+ """
+
+ @property
+ def __signature__(cls) -> inspect.Signature | None:
+ """
+ Report the constructor signature of the class.
+
+ Without this, :func:`inspect.signature` resolves to :meth:`__call__` and
+ reports ``(*args, **kwargs)`` for every class using this metaclass, which
+ hides the real parameters from ``help()``, Sphinx and other tooling.
+
+ Returns
+ -------
+ inspect.Signature | None
+ Signature of ``cls.__init__`` without ``self``, or ``None`` if it
+ cannot be determined, in which case the default introspection applies.
+ """
+ # Classes relying on ``object.__init__`` take no argument, as reported by
+ # ``inspect.signature`` for a class without a metaclass
+ if cls.__init__ is object.__init__ and cls.__new__ is object.__new__:
+ return inspect.Signature()
+
+ try:
+ signature = inspect.signature(cls.__init__)
+ except (TypeError, ValueError): # pragma: no cover - defensive
+ return None
+
+ # Drop ``self`` and the constructor return annotation
+ parameters = list(signature.parameters.values())[1:]
+
+ return signature.replace(parameters=parameters, return_annotation=inspect.Signature.empty)
+
+ def __call__(cls, *args: Any, **kwargs: Any):
+ """
+ Create an instance after optionally validating constructor arguments.
+
+ Parameters
+ ----------
+ *args : Any
+ Positional constructor arguments.
+ **kwargs : Any
+ Keyword constructor arguments.
+ validate : bool, optional
+ If ``True`` (default), validate constructor arguments before
+ instantiation. If ``False``, skip validation and pass the
+ supplied arguments directly to the constructor.
+
+ Returns
+ -------
+ object
+ Instance of the class after validation and construction.
+
+ Raises
+ ------
+ TypeError
+ If the class does not define ``validation_model``.
+ PyAMLConfigException
+ If the supplied arguments do not conform to the validation
+ model.
+ """
+ validate = kwargs.pop("validate", True)
+
+ if not validate:
+ return super().__call__(*args, **kwargs)
+
+ validation_model = getattr(cls, "validation_model", None)
+
+ if validation_model is None:
+ raise TypeError(f"{cls.__name__} must define validation_model.")
+
+ # Inspect the signature of the class
+ signature = inspect.signature(cls.__init__)
+
+ # Map arguments to parameters
+ bound = signature.bind(None, *args, **kwargs)
+
+ # Include default arguments
+ bound.apply_defaults()
+
+ # Remove self from list
+ bound.arguments.pop("self", None)
+ arguments = dict(bound.arguments)
+
+ # Validate the model
+ logger.debug("Validating input against schema: %s", validation_model.model_fields)
+
+ try:
+ validated = validation_model.model_validate(arguments)
+ except ValidationError as exc:
+ raise_validation_error(
+ exc,
+ class_path=generate_class_path(cls),
+ )
+
+ # Return the object
+ return super().__call__(**validated.model_dump())
+
+
+class ValidationModelDescriptor:
+ """Provide a lazily generated validation model on the class."""
+
+ def __get__(
+ self,
+ instance: object | None,
+ owner: type["DynamicValidation"],
+ ) -> type[ValidationModel]:
+ """
+ Return the validation model associated with ``owner``.
+
+ The model is generated on first access and cached on the owning class.
+ Because this descriptor exposes class-level metadata, ``instance`` is
+ not used.
+
+ Parameters
+ ----------
+ instance : object | None
+ Instance through which the descriptor was accessed, or ``None``
+ when accessed on the class.
+ owner : type[DynamicValidation]
+ Class whose validation model is requested.
+
+ Returns
+ -------
+ type[ValidationModel]
+ The cached or newly generated validation model.
+ """
+ model = owner.__dict__.get("_validation_model")
+
+ if model is None:
+ model = owner._build_validation_model()
+ owner._validation_model = model
+
+ return model
+
+
+class DynamicValidation(metaclass=ValidationMeta):
+ """
+ Base class for automatic constructor argument validation.
+
+ When a subclass is defined, a validation model is generated from either
+ its explicitly declared constructor or its directly declared class
+ annotations.
+
+ Class annotations are used when no constructor has yet been defined. This
+ supports classes decorated with ``@dataclass``, because their generated
+ constructor is not available while ``__init_subclass__`` is running.
+
+ Subclasses must not define ``validation_model`` manually.
+ """
+
+ _validation_model: ClassVar[type[ValidationModel] | None] = None
+
+ # Lazy construction of the validation class
+ validation_model: ClassVar[ValidationModelDescriptor] = ValidationModelDescriptor()
+
+ def __init_subclass__(cls, **kwargs):
+ """
+ Generate and attach a validation model for the subclass.
+
+ Parameters
+ ----------
+ **kwargs : Any
+ Additional keyword arguments passed to ``super().__init_subclass__``.
+
+ Raises
+ ------
+ TypeError
+ If ``validation_model`` is defined manually on the subclass.
+ """
+
+ super().__init_subclass__(**kwargs)
+
+ # Check if validation model already exists
+ # This only checks for the current class and not parent classes
+ if "validation_model" in cls.__dict__:
+ raise TypeError(f"{cls.__name__} may not define validation_model manually.")
+
+ # Set the _validation_model to None since should be built using lazy construction
+ cls._validation_model = None
+
+ @classmethod
+ def _build_validation_model(cls) -> type[ValidationModel]:
+ """
+ Generate a validation model from the class definition.
+
+ For classes with an explicitly defined ``__init__``, fields are
+ extracted from the constructor signature. Otherwise, fields are
+ extracted from annotations declared directly on the class. The latter
+ supports dataclasses before their generated constructor is available.
+
+ Returns
+ -------
+ type[ValidationModel]
+ Dynamically generated validation model representing the arguments
+ accepted by the class.
+ """
+
+ logger.debug("Building validation model for %s.", f"{cls.__module__}.{cls.__name__}")
+
+ fields: dict[str, Any] = _fields_from_constructor_signature(cls, expand_arbitrary_types=False)
+
+ model = create_model(f"{cls.__name__}ValidationModel", **cast(Any, fields), __base__=ValidationModel)
+
+ logger.debug("Created model: %s", model.model_fields)
+
+ return model
+
+
+class StaticValidation(metaclass=ValidationMeta):
+ """
+ Base class for explicit constructor argument validation.
+
+ Subclasses must define a ``validation_model`` attribute containing a
+ subclass of :class:`pydantic.BaseModel`. The model is used to validate
+ constructor arguments before object creation.
+ """
+
+ validation_model: type[BaseModel]
+
+ def __init_subclass__(cls, **kwargs):
+ """
+ Verify that the subclass defines a validation model.
+
+ Parameters
+ ----------
+ **kwargs : Any
+ Additional keyword arguments passed to ``super().__init_subclass__``.
+
+ Raises
+ ------
+ TypeError
+ If the subclass does not define a ``validation_model``
+ attribute.
+ """
+
+ super().__init_subclass__(**kwargs)
+
+ if getattr(cls, "validation_model", None) is None:
+ raise TypeError(f"{cls.__name__} must define validation_model.")
diff --git a/pyaml/validation/validator.py b/pyaml/validation/validator.py
new file mode 100644
index 000000000..3de8b4a92
--- /dev/null
+++ b/pyaml/validation/validator.py
@@ -0,0 +1,232 @@
+"""Module for schema validation."""
+
+import logging
+import warnings
+from collections.abc import Mapping
+from typing import Any
+
+from pydantic import BaseModel, ValidationError
+
+from .configuration_models import ConfigurationSchema, ModuleConfigurationSchema
+from .errors import extract_location_metadata, raise_validation_error
+from .registry import SchemaRegistry
+
+logger = logging.getLogger(__name__)
+
+
+def dump_nested(value: Any) -> Any:
+ """
+ Recursively convert nested Pydantic models to plain Python objects.
+
+ Traverses mappings, lists, and tuples, replacing any
+ :class:`pydantic.BaseModel` instances with the result of
+ :meth:`BaseModel.model_dump`. All other values are returned unchanged.
+
+ Parameters
+ ----------
+ value : Any
+ The object to convert.
+
+ Returns
+ -------
+ Any
+ The converted object with all nested Pydantic models represented as
+ dictionaries.
+ """
+
+ if isinstance(value, BaseModel):
+ return value.model_dump()
+ if isinstance(value, Mapping):
+ return {k: dump_nested(v) for k, v in value.items()}
+ if isinstance(value, list):
+ return [dump_nested(v) for v in value]
+ if isinstance(value, tuple):
+ return tuple(dump_nested(v) for v in value)
+ return value
+
+
+class SchemaValidator:
+ """
+ Recursive validator for configuration dictionaries.
+
+ The validator traverses nested configuration data structures and
+ converts dictionaries representing configuration objects into
+ validated Pydantic schema models.
+
+ Validation is performed recursively:
+
+ - Lists are traversed element-by-element
+ - Dictionaries are recursively validated
+ - Dictionaries matching configuration schemas are converted into
+ validated schema models
+ - Dictionaries with unknown schemas are left unchanged
+
+ Schema lookup is performed through the :class:`SchemaRegistry`.
+
+ Methods
+ -------
+ validate(data)
+ Validate configuration data recursively.
+ validate_to_dict(data)
+ Validate configuration data recursively and return it as a dictionary.
+ """
+
+ _registry = SchemaRegistry()
+
+ @classmethod
+ def validate(
+ cls,
+ data: dict[str, Any],
+ ) -> ConfigurationSchema:
+ """
+ Validate configuration data recursively.
+
+ Parameters
+ ----------
+ data : dict[str, Any]
+ Configuration dictionary to validate.
+
+ Returns
+ -------
+ ConfigurationSchema
+ Fully validated top-level configuration model.
+
+ Raises
+ ------
+ TypeError
+ If the validated top-level object is not a
+ :class:`ConfigurationSchema`.
+ """
+ validated = cls._recursive_validate(data)
+
+ # if not isinstance(validated, ConfigurationSchema):
+ # raise TypeError("Top-level configuration did not validate to a ConfigurationSchema.")
+
+ return validated
+
+ @classmethod
+ def validate_to_dict(
+ cls,
+ data: dict[str, Any],
+ ) -> dict:
+ """
+ Validate configuration data recursively and return it as a dictionary.
+ """
+
+ validated = cls.validate(data)
+ return dump_nested(validated)
+
+ @classmethod
+ def _recursive_validate(cls, obj: Any) -> Any:
+ """
+ Recursively validate nested configuration objects.
+
+ Lists are traversed recursively element-by-element. Dictionaries
+ are recursively traversed and then interpreted as configuration
+ objects when possible.
+
+ If a dictionary corresponds to a registered configuration schema,
+ it is converted into a validated schema model. Otherwise, the
+ dictionary is returned unchanged.
+
+ Parameters
+ ----------
+ obj : Any
+ Object to validate recursively.
+
+ Returns
+ -------
+ Any
+ Validated object. This may be:
+
+ - A validated configuration model
+ - A recursively validated list
+ - A recursively validated dictionary
+ - The original object if no validation applies
+ """
+ if isinstance(obj, list):
+ return [cls._recursive_validate(item) for item in obj]
+
+ if not isinstance(obj, dict):
+ return obj
+
+ # Remove loader metadata and keep it for error reporting.
+ cleaned_dict, location_metadata = extract_location_metadata(obj)
+
+ logger.debug("Validating dict with keys: %s", list(obj))
+ validated_dict = {key: cls._recursive_validate(value) for key, value in cleaned_dict.items()}
+
+ # Check if the dict is a configuration object
+ # If it follows the old convention for configuration
+ # translate the data to the new one
+ parsed = cls._parse_configuration(validated_dict)
+
+ if parsed is None:
+ return validated_dict
+ else:
+ validated_dict = parsed
+
+ class_path = validated_dict["class_path"]
+ schema = cls._registry.get(class_path)
+
+ if schema is None:
+ warnings.warn(
+ f"Unknown schema for '{class_path}' so cannot validate. Leaving data as raw dict.",
+ stacklevel=2,
+ )
+ return validated_dict
+
+ try:
+ return schema.model_validate(validated_dict)
+ except ValidationError as exc:
+ raise_validation_error(
+ exc,
+ class_path=class_path,
+ location_metadata=location_metadata,
+ )
+
+ @classmethod
+ def _parse_configuration(
+ cls,
+ validated_dict: dict[str, Any],
+ ) -> dict[str, Any] | None:
+ """
+ Interpret a dictionary as configuration metadata.
+
+ Returns the dictionary unchanged if it already matches
+ :class:`ConfigurationSchema`. If it matches
+ :class:`ModuleConfigurationSchema`, the legacy module-based format is
+ rewritten into the modern ``class_path`` form. Otherwise returns
+ ``None``.
+ """
+
+ try:
+ ConfigurationSchema.model_validate(validated_dict, extra="allow")
+ # ``class`` is accepted as a validation alias for ``class_path``
+ # by ConfigurationSchema, but schema lookup below requires the
+ # canonical key to be present in the dictionary itself.
+ if "class_path" not in validated_dict and "class" in validated_dict:
+ validated_dict = dict(validated_dict)
+ validated_dict["class_path"] = validated_dict.pop("class")
+ return validated_dict
+ except ValidationError:
+ logger.debug("Could not validate against ConfigurationSchema.")
+
+ try:
+ module_config = ModuleConfigurationSchema.model_validate(
+ validated_dict,
+ extra="allow",
+ )
+ except ValidationError:
+ logger.debug("Could not validate against ModuleConfigurationSchema; returning raw dict.")
+ return None
+
+ class_config = module_config.to_configuration()
+
+ rewritten = dict(validated_dict)
+ rewritten["class_path"] = class_config.class_path
+ rewritten.pop("type", None)
+ rewritten.pop("module", None)
+
+ logger.debug("Configuration transformed from legacy configuration format.")
+ return rewritten
diff --git a/pyaml/yellow_pages.py b/pyaml/yellow_pages.py
index cc8793aaa..1a03c666a 100644
--- a/pyaml/yellow_pages.py
+++ b/pyaml/yellow_pages.py
@@ -1,5 +1,5 @@
"""
-yellow_pages.py
+Dynamic discovery service for accelerator objects.
Fully dynamic YellowPages service attached to :class:`~pyaml.accelerator.Accelerator`.
@@ -14,7 +14,7 @@
yp["re:^SH1A-C0[12]-H$"]
:class:`~pyaml.accelerator.Accelerator` interface
-------------------------------
+--------------------------------------------------
- controls() -> dict[str, ElementHolder]
- simulators() -> dict[str, ElementHolder]
- modes() -> dict[str, ElementHolder]
@@ -32,6 +32,19 @@
class YellowPagesCategory(str, Enum):
+ """
+ Kind of object a YellowPages entry refers to.
+
+ Attributes
+ ----------
+ ARRAYS : str
+ Named element families declared in the ``arrays`` configuration section.
+ TOOLS : str
+ Tuning and measurement tools attached to a mode.
+ DIAGNOSTICS : str
+ Monitors such as betatron tune and chromaticity monitors.
+ """
+
ARRAYS = "Arrays"
TOOLS = "Tools"
DIAGNOSTICS = "Diagnostics"
@@ -60,6 +73,24 @@ class YellowPages:
:class:`~pyaml.element_holder.ElementHolder` instances
associated with the :class:`~pyaml.accelerator.Accelerator` control and simulation modes.
+ Parameters
+ ----------
+ accelerator : 'Accelerator'
+ Accelerator whose modes are scanned on every query.
+
+ Methods
+ -------
+ has(key)
+ Check whether a YellowPages key exists.
+ categories()
+ Return the list of available categories.
+ keys(category=None)
+ Return available YellowPages keys.
+ availability(key)
+ Return the set of modes where a key is available.
+ get(query, mode=None)
+ Search identifiers using a wildcard or regular expression.
+
Notes
-----
The :class:`~pyaml.accelerator.Accelerator` must provide:
@@ -103,6 +134,9 @@ class YellowPages:
"""
def __init__(self, accelerator: "Accelerator"):
+ """
+ Initialize the YellowPages.
+ """
self._acc = accelerator
def has(self, key: str) -> bool:
@@ -131,7 +165,6 @@ def has(self, key: str) -> bool:
>>> sr.yellow_pages.has("UNKNOWN")
False
-
"""
return key in self._all_keys()
@@ -152,7 +185,6 @@ def categories(self) -> list[str]:
>>> sr.yellow_pages.categories()
['Arrays', 'Tools', 'Diagnostics']
-
"""
discovered = self._discover()
present = {cat for cat, keys in discovered.items() if keys}
@@ -191,7 +223,6 @@ def keys(self, category: str | YellowPagesCategory | None = None) -> list[str]:
.. code-block:: python
>>> sr.yellow_pages.keys(YellowPagesCategory.ARRAYS)
-
"""
discovered = self._discover()
@@ -299,7 +330,6 @@ def _get_object(self, key: str, *, mode: str | None = None):
.. code-block:: python
>>> sr.yellow_pages.BPM
-
"""
self._require_key(key)
@@ -350,7 +380,6 @@ def get(self, query: str, mode: str | None = None) -> list[str]:
>>> sr.yellow_pages.get("OH4*", mode="live")
>>> sr.yellow_pages.get("re:^SH1A-C0[12]-H$")
-
"""
if not query or not query.strip():
raise YellowPagesQueryError("Empty YellowPages query.")
@@ -471,9 +500,18 @@ def __repr__(self) -> str:
return "\n".join(lines).rstrip()
def __str__(self) -> str:
+ """
+ Return a human-readable string representation of the object.
+
+ Returns
+ -------
+ str
+ Table of the discovered categories and their keys.
+ """
return self.__repr__()
def _discover(self) -> dict[YellowPagesCategory, list[str]]:
+ """Scan every mode and group the objects it exposes by category."""
arrays: list[str] = []
tools: list[str] = []
diags: list[str] = []
@@ -507,6 +545,7 @@ def _extend_unique(self, target: list[str], values: list[str]) -> None:
target.append(value)
def _all_keys(self) -> list[str]:
+ """Return every discovered key, across all categories."""
discovered = self._discover()
out: list[str] = []
for keys in discovered.values():
@@ -514,10 +553,36 @@ def _all_keys(self) -> list[str]:
return out
def _require_key(self, key: str) -> None:
+ """
+ Raise if a key is not present in any discovered category.
+
+ Parameters
+ ----------
+ key : str
+ Key to check.
+
+ Returns
+ -------
+ None
+ Nothing; raises ``KeyError`` if the key is unknown.
+ """
if key not in self._all_keys():
raise KeyError(self._unknown_key_message(key))
def _unknown_key_message(self, key: str) -> str:
+ """
+ Build the error message listing the available keys.
+
+ Parameters
+ ----------
+ key : str
+ Key that could not be resolved.
+
+ Returns
+ -------
+ str
+ Error message naming the available keys.
+ """
available = ", ".join(self._all_keys())
return f"Unknown YellowPages key '{key}'. Available keys: {available if available else ''}"
@@ -641,6 +706,19 @@ def _object_to_ids(self, obj: Any) -> list[str]:
return [str(obj)]
def _ids_for_key_union_all_modes(self, key: str) -> list[str]:
+ """
+ Collect the identifiers behind a key across every mode, without duplicates.
+
+ Parameters
+ ----------
+ key : str
+ Key to resolve in every mode.
+
+ Returns
+ -------
+ list[str]
+ Element identifiers, in discovery order and without duplicates.
+ """
out: list[str] = []
resolved = self._get_object(key)
for obj in resolved.values():
@@ -660,6 +738,19 @@ def _all_known_ids(self) -> list[str]:
return all_ids
def _ids_from_holder(self, holder) -> list[str]:
+ """
+ Collect the identifiers of every array exposed by a holder.
+
+ Parameters
+ ----------
+ holder : object
+ Control system or simulator to scan.
+
+ Returns
+ -------
+ list[str]
+ Element identifiers of every array the holder exposes.
+ """
ids: list[str] = []
try:
diff --git a/pyproject.toml b/pyproject.toml
index 470b48047..7f3e2f6a9 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -28,7 +28,7 @@ dependencies = [
"accelerator-toolbox>=0.6.1",
"PyYAML>=6.0.2",
"pydantic>=2.11.7",
- "accelerator-commissioning==1.1.0", #pySC
+ "accelerator-commissioning==1.5.3", #pySC
"h5py",
"matplotlib"
]
@@ -50,6 +50,7 @@ cs-oa-tango = [
test = [
"pytest>=7.4",
"pytest-cov>=3.0",
+ "pyaml-test-lattice @ git+https://github.com/python-accelerator-middle-layer/pyaml-test-lattice.git@main",
]
doc = [
"sphinx ~= 8.1",
@@ -126,3 +127,8 @@ skip-magic-trailing-comma = false
python_version = "3.11"
strict = false
ignore_missing_imports = true
+
+[tool.pytest.ini_options]
+markers = [
+ "integration: tests requiring an external integration runtime",
+]
diff --git a/tests/arrays/test_array_selection_types.py b/tests/arrays/test_array_selection_types.py
new file mode 100644
index 000000000..d5cc782bf
--- /dev/null
+++ b/tests/arrays/test_array_selection_types.py
@@ -0,0 +1,62 @@
+import pytest
+
+from pyaml.arrays.element_array import ElementArray
+from pyaml.arrays.magnet_array import MagnetArray
+
+
+@pytest.fixture
+def design(accelerator_from_fragments, sr_configuration_fragments):
+ sr = accelerator_from_fragments(*sr_configuration_fragments)
+ return sr.design
+
+
+def test_slices_keep_the_common_magnet_type(design):
+ magnets = design.magnets.get()
+ assert len({type(magnet) for magnet in magnets}) > 1
+
+ assert type(magnets[:]) is MagnetArray
+ assert type(magnets[::-1]) is MagnetArray
+ assert magnets[:].names() == magnets.names()
+ assert magnets[::-1].names() == list(reversed(magnets.names()))
+ assert magnets[:][0] is magnets[0]
+ assert magnets[:].get_peer() is design
+
+
+def test_filters_keep_the_common_magnet_type(design):
+ magnets = design.magnets.get()
+ expected = ["SH1A-C01-H", "SH1A-C01-V", "SH1A-C01-SQ"]
+
+ selected = magnets["SH1A-C01*"]
+ by_model = magnets["model_name:SH1A-C01"]
+
+ assert len({type(magnet) for magnet in selected}) > 1
+ assert type(selected) is MagnetArray
+ assert type(by_model) is MagnetArray
+ assert selected.names() == expected
+ assert by_model.names() == expected
+
+
+def test_magnet_holder_selection_uses_the_same_typing(design):
+ assert type(design.magnets[:]) is MagnetArray
+ assert type(design.magnets["SH*"]) is MagnetArray
+ assert design.magnets[:].names() == design.magnets.get().names()
+
+
+def test_mixed_array_stays_generic_until_only_magnets_are_selected(design):
+ mixed = design.get_elements("ElArray")
+
+ assert type(mixed[:]) is ElementArray
+ assert mixed[:].names() == mixed.names()
+ assert type(mixed["SH*"]) is MagnetArray
+ assert mixed["SH*"].names() == ["SH1A-C01-V", "SH1A-C02-H"]
+
+
+def test_empty_selections_and_integer_indexing_keep_their_behavior(design):
+ magnets = design.magnets.get()
+
+ assert type(magnets[0:0]) is ElementArray
+ assert magnets[0:0] == []
+ assert type(magnets["UNKNOWN*"]) is ElementArray
+ assert magnets["UNKNOWN*"] == []
+ assert magnets[0] is design.magnet.get(magnets.names()[0])
+ assert type(magnets - magnets) is list
diff --git a/tests/test_arrays.py b/tests/arrays/test_arrays.py
similarity index 70%
rename from tests/test_arrays.py
rename to tests/arrays/test_arrays.py
index 526d4ab5b..7ae9b8710 100644
--- a/tests/test_arrays.py
+++ b/tests/arrays/test_arrays.py
@@ -5,12 +5,9 @@
from pyaml.accelerator import Accelerator
from pyaml.arrays.bpm import BPM
-from pyaml.arrays.bpm import ConfigModel as BPMArrayConfigModel
from pyaml.arrays.bpm_array import BPMArray
from pyaml.arrays.cfm_magnet import CombinedFunctionMagnet
-from pyaml.arrays.cfm_magnet import ConfigModel as CombinedFunctionMagnetConfigModel
from pyaml.arrays.element_array import ElementArray
-from pyaml.arrays.magnet import ConfigModel as MagnetArrayConfigModel
from pyaml.arrays.magnet import Magnet
from pyaml.arrays.magnet_array import MagnetArray
@@ -26,8 +23,8 @@ def test_arrays(install_test_package):
# Test on model
- sr.design.get_magnet("SH1A-C01-H").strength.set(0.000010)
- sr.design.get_magnet("SH1A-C01-V").strength.set(0.000015)
+ sr.design.magnet.get("SH1A-C01-H").strength.set(0.000010)
+ sr.design.magnet.get("SH1A-C01-V").strength.set(0.000015)
o, _ = sr.design.get_lattice().find_orbit()
assert np.abs(o[0] - 9.90267693e-05) < 1e-10
@@ -35,8 +32,8 @@ def test_arrays(install_test_package):
assert np.abs(o[2] + 1.59928207e-06) < 1e-10
assert np.abs(o[3] + 1.74771216e-05) < 1e-10
- sr.design.get_magnet("SH1A-C02-H").strength.set(-0.000008)
- sr.design.get_magnet("SH1A-C02-V").strength.set(-0.000017)
+ sr.design.magnet.get("SH1A-C02-H").strength.set(-0.000008)
+ sr.design.magnet.get("SH1A-C02-V").strength.set(-0.000017)
o, _ = sr.design.get_lattice().find_orbit()
assert np.abs(o[0] - 1.60555804e-04) < 1e-10
@@ -44,8 +41,8 @@ def test_arrays(install_test_package):
assert np.abs(o[2] - 3.62695844e-05) < 1e-10
assert np.abs(o[3] + 5.97692290e-06) < 1e-10
- sr.design.get_magnets("HCORR").strengths.set([0.000010, -0.000008])
- sr.design.get_magnets("VCORR").strengths.set([0.000015, -0.000017])
+ sr.design.magnets.get("HCORR").strengths.set([0.000010, -0.000008])
+ sr.design.magnets.get("VCORR").strengths.set([0.000015, -0.000017])
o, _ = sr.design.get_lattice().find_orbit()
assert np.abs(o[0] - 1.60555804e-04) < 1e-10
@@ -56,7 +53,7 @@ def test_arrays(install_test_package):
p0 = o[0]
# Test kick angle (small angle, no change from above)
- sr.design.get_magnet("SH1A-C02-H").angle.set(-0.000008)
+ sr.design.magnet.get("SH1A-C02-H").angle.set(-0.000008)
o, _ = sr.design.get_lattice().find_orbit()
assert np.abs(o[0] - 1.60555804e-04) < 1e-10
assert np.abs(o[1] + 2.37234366e-06) < 1e-10
@@ -70,22 +67,22 @@ def test_arrays(install_test_package):
# Test on control system
# Assert that the virtual magnet share the same model
- assert sr.live.get_magnet("SH1A-C01-H").model == sr.live.get_magnet("SH1A-C01-V").model
- assert sr.live.get_magnet("SH1A-C02-H").model == sr.live.get_magnet("SH1A-C02-V").model
+ assert sr.live.magnet.get("SH1A-C01-H").model == sr.live.magnet.get("SH1A-C01-V").model
+ assert sr.live.magnet.get("SH1A-C02-H").model == sr.live.magnet.get("SH1A-C02-V").model
# Using aggregators
- sr.live.get_magnets("HCORR").strengths.set([0.000010, -0.000008])
- ps1 = sr.live.get_cfm_magnet("SH1A-C01").hardwares.get()
- ps2 = sr.live.get_cfm_magnet("SH1A-C02").hardwares.get()
+ sr.live.magnets.get("HCORR").strengths.set([0.000010, -0.000008])
+ ps1 = sr.live.combined_function_magnet.get("SH1A-C01").hardwares.get()
+ ps2 = sr.live.combined_function_magnet.get("SH1A-C02").hardwares.get()
assert np.abs(ps1[0] - 0.02956737880874648) < 1e-10
assert np.abs(ps1[1] - 0) < 1e-10
assert np.abs(ps1[2] - 0) < 1e-10
assert np.abs(ps2[0] + 0.02365390304699716) < 1e-10
assert np.abs(ps2[1] - 0) < 1e-10
assert np.abs(ps2[2] - 0) < 1e-10
- sr.live.get_magnets("VCORR").strengths.set([0.000015, -0.000017])
- ps1 = sr.live.get_cfm_magnet("SH1A-C01").hardwares.get()
- ps2 = sr.live.get_cfm_magnet("SH1A-C02").hardwares.get()
+ sr.live.magnets.get("VCORR").strengths.set([0.000015, -0.000017])
+ ps1 = sr.live.combined_function_magnet.get("SH1A-C01").hardwares.get()
+ ps2 = sr.live.combined_function_magnet.get("SH1A-C02").hardwares.get()
assert np.abs(ps1[0] - 0.02956737880874648) < 1e-10
assert np.abs(ps1[1] + 0.058240333933172066) < 1e-10
assert np.abs(ps1[2] - 0.05601656539392866) < 1e-10
@@ -93,7 +90,7 @@ def test_arrays(install_test_package):
assert np.abs(ps2[1] - 0.06600571179092833) < 1e-10
assert np.abs(ps2[2] + 0.0634854407797858) < 1e-10
- strHV = sr.live.get_magnets("HVCORR").strengths.get()
+ strHV = sr.live.magnets.get("HVCORR").strengths.get()
assert np.abs(strHV[0] - 0.000010) < 1e-10
assert np.abs(strHV[1] + 0.000008) < 1e-10
assert np.abs(strHV[2] - 0.000015) < 1e-10
@@ -102,10 +99,10 @@ def test_arrays(install_test_package):
# Reset to 0
ma = importlib.import_module("tango.pyaml.multi_attribute")
ma.LAST_NB_WRITTEN = 0 # Total number of setpoints done by multi_attribute
- sr.live.get_magnets("HVCORR").strengths.set(0.0)
+ sr.live.magnets.get("HVCORR").strengths.set(0.0)
assert ma.LAST_NB_WRITTEN == 6 # 6 power supply setpoints are needed
- ps1 = sr.live.get_cfm_magnet("SH1A-C01").hardwares.get()
- ps2 = sr.live.get_cfm_magnet("SH1A-C02").hardwares.get()
+ ps1 = sr.live.combined_function_magnet.get("SH1A-C01").hardwares.get()
+ ps2 = sr.live.combined_function_magnet.get("SH1A-C02").hardwares.get()
assert np.abs(ps1[0]) < 1e-10
assert np.abs(ps1[1]) < 1e-10
assert np.abs(ps1[2]) < 1e-10
@@ -115,12 +112,12 @@ def test_arrays(install_test_package):
# Check that the behavior is the same without aggregator
mags = []
- for m in sr.live.get_magnets("HVCORR"):
+ for m in sr.live.magnets.get("HVCORR"):
mags.append(m)
array = MagnetArray("HVCOOR_noagg", mags, use_aggregator=False)
array.strengths.set([0.000010, -0.000008, 0.000015, -0.000017])
- ps1 = sr.live.get_cfm_magnet("SH1A-C01").hardwares.get()
- ps2 = sr.live.get_cfm_magnet("SH1A-C02").hardwares.get()
+ ps1 = sr.live.combined_function_magnet.get("SH1A-C01").hardwares.get()
+ ps2 = sr.live.combined_function_magnet.get("SH1A-C02").hardwares.get()
assert np.abs(ps1[0] - 0.02956737880874648) < 1e-10
assert np.abs(ps1[1] + 0.058240333933172066) < 1e-10
assert np.abs(ps1[2] - 0.05601656539392866) < 1e-10
@@ -131,21 +128,32 @@ def test_arrays(install_test_package):
# Test BPMs array
# Using aggregator
- pos = sr.design.get_bpms("BPMS").positions.get()
+ pos = sr.design.bpms.get("BPMS").positions.get()
assert np.abs(pos[0][0] - 7.22262850488348e-05) < 1e-10
assert np.abs(pos[0][1] - 3.4291613955705856e-05) < 1e-10
assert np.abs(pos[1][0] + 1.1696152238807462e-04) < 1e-10
assert np.abs(pos[1][1] - 7.4265634524358045e-06) < 1e-10
# Using aggregator (h and v)
- pos_h = sr.design.get_bpms("BPMS").h.get()
- pos_v = sr.design.get_bpms("BPMS").v.get()
+ pos_h = sr.design.bpms.get("BPMS").h.get()
+ pos_v = sr.design.bpms.get("BPMS").v.get()
assert np.all(np.isclose(pos[:, 0], pos_h, rtol=1e-15, atol=1e-15))
assert np.all(np.isclose(pos[:, 1], pos_v, rtol=1e-15, atol=1e-15))
+ # Test BPM transformation matrices
+ sr.design.bpm.get("BPM_C04-01").offset.set([0.1, 0.2])
+ sr.design.bpm.get("BPM_C04-02").offset.set([0.3, 0.4])
+ pos = sr.design.bpms.get("BPMS").positions.get()
+ assert np.abs(pos[0][0] - 7.22262850488348e-05 - 0.1) < 1e-10
+ assert np.abs(pos[0][1] - 3.4291613955705856e-05 - 0.2) < 1e-10
+ assert np.abs(pos[1][0] + 1.1696152238807462e-04 - 0.3) < 1e-10
+ assert np.abs(pos[1][1] - 7.4265634524358045e-06 - 0.4) < 1e-10
+ sr.design.bpm.get("BPM_C04-01").offset.set([0.0, 0.0])
+ sr.design.bpm.get("BPM_C04-02").offset.set([0.0, 0.0])
+
# No aggregator
bpms = []
- for b in sr.design.get_bpms("BPMS"):
+ for b in sr.design.bpms.get("BPMS"):
bpms.append(b)
bpms = BPMArray("BPM_noagg", bpms, use_aggregator=False)
@@ -163,14 +171,14 @@ def test_arrays(install_test_package):
assert len(allElts) == 11
# Create an array that contains all elements
- allMags = MagnetArray("AllMagnets", sr.design.get_all_magnets())
+ allMags = MagnetArray("AllMagnets", sr.design.magnets.get())
assert len(allMags) == 7
# Create an array that contains all BPM
- allBpms = BPMArray("AllBPMs", sr.design.get_all_bpms())
+ allBpms = BPMArray("AllBPMs", sr.design.bpm.all())
assert len(allBpms) == 2
- cfm = sr.design.get_cfm_magnets("CFM")
+ cfm = sr.design.combined_function_magnets.get("CFM")
strHVSQ = cfm.strengths.get()
assert np.abs(strHVSQ[0] - 0.000010) < 1e-10 # H
assert np.abs(strHVSQ[1] - 0.000015) < 1e-10 # V
@@ -196,14 +204,14 @@ def test_arrays(install_test_package):
assert np.abs(strHVSQ[4] + 0.000017) < 1e-10 # V
assert np.abs(strHVSQ[5] - 1e-6) < 1e-10 # SQ
- bpmsLive = BPMArray("", sr.live.get_all_bpms())
+ bpmsLive = BPMArray("", sr.live.bpm.all())
bpmsLive.positions.get()
# Test dynamic arrays
- sr: Accelerator = Accelerator.load("tests/config/EBSOrbit.yaml", use_fast_loader=True)
+ sr: Accelerator = Accelerator.load("tests/config/EBSOrbit.yaml", include_locations=False)
ae = ElementArray("All", sr.design.get_all_elements())
- acfm = ElementArray("AllCFM", sr.design.get_all_cfm_magnets(), use_aggregator=False)
+ acfm = ElementArray("AllCFM", sr.design.combined_function_magnet.all(), use_aggregator=False)
bpmC5 = ae["BPM*"][10:20] # All BPM C5
assert isinstance(bpmC5, BPMArray) and len(bpmC5) == 10
@@ -217,19 +225,19 @@ def test_arrays(install_test_package):
assert isinstance(magSH1AC, ElementArray) and len(magSH1AC) == 32
# Empty arrays
- emptyMag = Magnet(MagnetArrayConfigModel(name="EmptyMag", elements=[]))
+ emptyMag = Magnet(name="EmptyMag", elements=[])
emptyMag.fill_array(sr.design) # Attach the array
- v = sr.design.get_magnets("EmptyMag").strengths.get() # Ensure good attach
+ v = sr.design.magnets.get("EmptyMag").strengths.get() # Ensure good attach
assert np.shape(v) == (0,)
- emptyBPM = BPM(BPMArrayConfigModel(name="emptyBPM", elements=[]))
+ emptyBPM = BPM(name="emptyBPM", elements=[])
emptyBPM.fill_array(sr.design) # Attach the array
- v = sr.design.get_bpms("emptyBPM").positions.get() # Ensure good attach
+ v = sr.design.bpms.get("emptyBPM").positions.get() # Ensure good attach
assert np.shape(v) == (0,)
- emptyCFM = CombinedFunctionMagnet(CombinedFunctionMagnetConfigModel(name="emptyCFM", elements=[]))
+ emptyCFM = CombinedFunctionMagnet(name="emptyCFM", elements=[])
emptyCFM.fill_array(sr.design) # Attach the array
- v = sr.design.get_cfm_magnets("emptyCFM").strengths.get() # Ensure good attach
+ v = sr.design.combined_function_magnets.get("emptyCFM").strengths.get() # Ensure good attach
assert np.shape(v) == (0,)
@@ -240,8 +248,8 @@ def test_arrays(install_test_package):
],
)
def test_serialized_magnets_arrays(sr_file):
- sr: Accelerator = Accelerator.load(sr_file, use_fast_loader=True, ignore_external=True)
- the_serie = sr.design.get_serialized_magnets("series")
+ sr: Accelerator = Accelerator.load(sr_file, include_locations=False, ignore_external=True)
+ the_serie = sr.design.serialized_magnets.get("series")
strength = the_serie.strengths.get()
assert len(strength) == 1
print(strength)
diff --git a/tests/test_arrays_ops.py b/tests/arrays/test_arrays_ops.py
similarity index 96%
rename from tests/test_arrays_ops.py
rename to tests/arrays/test_arrays_ops.py
index 7027c761a..5fd706e2c 100644
--- a/tests/test_arrays_ops.py
+++ b/tests/arrays/test_arrays_ops.py
@@ -18,8 +18,8 @@ def test_element_array_and_array_intersection_is_autotyped(
sr = accelerator_from_fragments(*sr_configuration_fragments)
sr.design.get_lattice().disable_6d()
- hcorr = sr.live.get_magnets("HCORR")
- hvcorr = sr.live.get_magnets("HVCORR")
+ hcorr = sr.live.magnets.get("HCORR")
+ hvcorr = sr.live.magnets.get("HVCORR")
inter = hvcorr & hcorr
@@ -203,8 +203,8 @@ def test_element_array_or_union_is_unique_stable_and_autotyped(
sr = accelerator_from_fragments(*sr_configuration_fragments)
sr.design.get_lattice().disable_6d()
- hcorr = sr.live.get_magnets("HCORR")
- vcorr = sr.live.get_magnets("VCORR")
+ hcorr = sr.live.magnets.get("HCORR")
+ vcorr = sr.live.magnets.get("VCORR")
u = hcorr | vcorr
@@ -230,8 +230,8 @@ def test_element_array_add_is_alias_of_union(install_test_package, accelerator_f
sr = accelerator_from_fragments(*sr_configuration_fragments)
sr.design.get_lattice().disable_6d()
- hcorr = sr.live.get_magnets("HCORR")
- vcorr = sr.live.get_magnets("VCORR")
+ hcorr = sr.live.magnets.get("HCORR")
+ vcorr = sr.live.magnets.get("VCORR")
u1 = hcorr | vcorr
u2 = hcorr + vcorr
diff --git a/tests/test_patterns.py b/tests/arrays/test_patterns.py
similarity index 66%
rename from tests/test_patterns.py
rename to tests/arrays/test_patterns.py
index 79dbe8359..9b7ba7329 100644
--- a/tests/test_patterns.py
+++ b/tests/arrays/test_patterns.py
@@ -8,11 +8,11 @@ def test_tune():
sr: Accelerator = Accelerator.load("tests/config/EBSTune-patterns.yaml", ignore_external=True)
sr.design.get_lattice().disable_6d()
- quadForTune = sr.design.get_magnets("QForTune")
+ quadForTune = sr.design.magnets.get("QForTune")
assert len(quadForTune.names()) == 124
- quadForTest = sr.design.get_magnets("QForTest")
- assert sr.design.get_magnet("QF1E-C06") is not None
- assert sr.design.get_magnet("QF1E-C05") is not None
+ quadForTest = sr.design.magnets.get("QForTest")
+ assert sr.design.magnet.get("QF1E-C06") is not None
+ assert sr.design.magnet.get("QF1E-C05") is not None
assert "QF1E-C05" not in quadForTest.names()
assert all([not (name.startswith("Q") and name.endswith("-C06")) for name in quadForTest.names()])
diff --git a/tests/test_ranges_array.py b/tests/arrays/test_ranges_array.py
similarity index 69%
rename from tests/test_ranges_array.py
rename to tests/arrays/test_ranges_array.py
index c4d577449..77c8c6d9c 100644
--- a/tests/test_ranges_array.py
+++ b/tests/arrays/test_ranges_array.py
@@ -10,11 +10,11 @@
indirect=True,
)
def test_ranges_array(install_test_package):
- sr: Accelerator = Accelerator.load("tests/config/EBSTune-range.yaml")
- mag_cur = sr.live.get_magnets("QForTune").hardwares
+ sr: Accelerator = Accelerator.load("tests/config/EBSTune.yaml")
+ mag_cur = sr.live.magnets.get("QForTune").hardwares
mag_cur.set(mag_cur.get() + 50)
- mag = sr.live.get_magnets("QForTune").strengths
+ mag = sr.live.magnets.get("QForTune").strengths
with pytest.raises(pyaml.PyAMLException, match="out of range") as excinfo:
mag.set(mag.get() * 1000.0)
diff --git a/tests/test_bpm.py b/tests/bpm/test_bpm.py
similarity index 52%
rename from tests/test_bpm.py
rename to tests/bpm/test_bpm.py
index 914d179ff..93ac68ec5 100644
--- a/tests/test_bpm.py
+++ b/tests/bpm/test_bpm.py
@@ -7,23 +7,37 @@
def test_simulator_bpm_tilt():
sr: Accelerator = Accelerator.load("tests/config/bpms.yaml", ignore_external=True)
sr.design.get_lattice().disable_6d()
- bpm = sr.design.get_bpm("BPM_C01-01")
+ sr.design.magnet.get("SH1A-C01-H").strength.set(10e-6) # Add orbit
+ sr.design.magnet.get("SH1A-C01-V").strength.set(10e-6) # Add orbit
+ bpm = sr.design.bpm.get("BPM_C01-01")
+ assert np.allclose(bpm.positions.get(), np.array([5.90809968e-05, 2.24832853e-05]))
assert bpm.tilt.get() == 0
- bpm.tilt.set(0.01)
- assert bpm.tilt.get() == 0.01
+ alpha = np.pi / 3
+ bpm.tilt.set(alpha)
+ assert bpm.tilt.get() == alpha
+
+ new_x = 5.908792e-05 * np.cos(alpha) - 2.24832853e-05 * np.sin(alpha)
+ new_y = 5.908792e-05 * np.sin(alpha) + 2.24832853e-05 * np.cos(alpha)
+ assert np.allclose(bpm.positions.get(), np.array([new_x, new_y]))
+
+ alpha = np.pi / 2
+ bpm.tilt.set(alpha)
+ new_x = 5.908792e-05 * np.cos(alpha) - 2.24832853e-05 * np.sin(alpha)
+ new_y = 5.908792e-05 * np.sin(alpha) + 2.24832853e-05 * np.cos(alpha)
+ assert np.allclose(bpm.positions.get(), np.array([new_x, new_y]))
def test_simulator_bpm_offset():
sr: Accelerator = Accelerator.load("tests/config/bpms.yaml", ignore_external=True)
sr.design.get_lattice().disable_6d()
- bpm = sr.design.get_bpm("BPM_C01-01")
+ bpm = sr.design.bpm.get("BPM_C01-01")
assert bpm.offset.get()[0] == 0
assert bpm.offset.get()[1] == 0
bpm.offset.set(np.array([0.1, 0.2]))
assert bpm.offset.get()[0] == 0.1
assert bpm.offset.get()[1] == 0.2
- assert np.allclose(bpm.positions.get(), np.array([0.0, 0.0]))
+ assert np.allclose(bpm.positions.get(), np.array([0.1, 0.2]))
@pytest.mark.parametrize(
@@ -34,8 +48,8 @@ def test_simulator_bpm_offset():
def test_simulator_bpm_position(install_test_package):
sr: Accelerator = Accelerator.load("tests/config/bpms.yaml")
sr.design.get_lattice().disable_6d()
- bpm = sr.design.get_bpm("BPM_C01-01")
- bpm_simple = sr.live.get_bpm("BPM_C01-02")
+ bpm = sr.design.bpm.get("BPM_C01-01")
+ bpm_simple = sr.live.bpm.get("BPM_C01-02")
assert np.allclose(bpm.positions.get(), np.array([0.0, 0.0]))
assert np.allclose(bpm_simple.positions.get(), np.array([0.0, 0.0]))
@@ -44,12 +58,12 @@ def test_simulator_bpm_position(install_test_package):
def test_simulator_bpm_position_with_bad_corrector_strength():
sr: Accelerator = Accelerator.load("tests/config/bpms.yaml", ignore_external=True)
sr.design.get_lattice().disable_6d()
- bpm1 = sr.design.get_bpm("BPM_C01-01")
- bpm_simple = sr.design.get_bpm("BPM_C01-02")
- bpm3 = sr.design.get_bpm("BPM_C01-03")
+ bpm1 = sr.design.bpm.get("BPM_C01-01")
+ bpm_simple = sr.design.bpm.get("BPM_C01-02")
+ bpm3 = sr.design.bpm.get("BPM_C01-03")
- sr.design.get_magnet("SH1A-C01-H").strength.set(-1e-6)
- sr.design.get_magnet("SH1A-C01-V").strength.set(-1e-6)
+ sr.design.magnet.get("SH1A-C01-H").strength.set(-1e-6)
+ sr.design.magnet.get("SH1A-C01-V").strength.set(-1e-6)
for bpm in [bpm1, bpm_simple, bpm3]:
assert bpm.positions.get()[0] != 0.0
assert bpm.positions.get()[1] != 0.0
diff --git a/tests/test_bpm_controlsystem.py b/tests/bpm/test_bpm_controlsystem.py
similarity index 57%
rename from tests/test_bpm_controlsystem.py
rename to tests/bpm/test_bpm_controlsystem.py
index c6aa51875..13321ca12 100644
--- a/tests/test_bpm_controlsystem.py
+++ b/tests/bpm/test_bpm_controlsystem.py
@@ -11,7 +11,7 @@
)
def test_controlsystem_bpm_tilt(install_test_package):
sr: Accelerator = Accelerator.load("tests/config/bpms.yaml")
- bpm = sr.live.get_bpm("BPM_C01-01")
+ bpm = sr.live.bpm.get("BPM_C01-01")
print(bpm.tilt.get())
assert bpm.tilt.get() == 0
@@ -26,7 +26,7 @@ def test_controlsystem_bpm_tilt(install_test_package):
)
def test_controlsystem_bpm_offset(install_test_package):
sr: Accelerator = Accelerator.load("tests/config/bpms.yaml")
- bpm = sr.live.get_bpm("BPM_C01-01")
+ bpm = sr.live.bpm.get("BPM_C01-01")
assert bpm.offset.get()[0] == 0
assert bpm.offset.get()[1] == 0
@@ -43,13 +43,43 @@ def test_controlsystem_bpm_offset(install_test_package):
)
def test_controlsystem_bpm_position(install_test_package):
sr: Accelerator = Accelerator.load("tests/config/bpms.yaml")
- bpm = sr.live.get_bpm("BPM_C01-01")
- bpm_simple = sr.live.get_bpm("BPM_C01-02")
+ bpm = sr.live.bpm.get("BPM_C01-01")
+ bpm_simple = sr.live.bpm.get("BPM_C01-02")
assert np.allclose(bpm.positions.get(), np.array([0.0, 0.0]))
assert np.allclose(bpm_simple.positions.get(), np.array([0.0, 0.0]))
+@pytest.mark.parametrize(
+ "install_test_package",
+ [{"name": "tango-pyaml", "path": "tests/dummy_cs/tango-pyaml"}],
+ indirect=True,
+)
+def test_controlsystem_get_devices_returns_attached_devices(install_test_package):
+ sr: Accelerator = Accelerator.load("tests/config/bpms.yaml")
+
+ devs = sr.live.get_devices_access(["srdiag/bpm/c01-01/SA_HPosition", "srdiag/bpm/c01-01/SA_VPosition"])
+
+ assert devs[0].name() == "//ebs-simu-3:10000/srdiag/bpm/c01-01/SA_HPosition"
+ assert devs[1].name() == "//ebs-simu-3:10000/srdiag/bpm/c01-01/SA_VPosition"
+
+
+@pytest.mark.parametrize(
+ "install_test_package",
+ [{"name": "tango-pyaml", "path": "tests/dummy_cs/tango-pyaml"}],
+ indirect=True,
+)
+def test_controlsystem_get_device_accepts_backend_config_model(install_test_package):
+ from tango.pyaml.attribute import ConfigModel as AttributeConfigModel
+
+ sr: Accelerator = Accelerator.load("tests/config/bpms.yaml")
+
+ dev = sr.live.get_device_access(AttributeConfigModel(attribute="srdiag/bpm/c01-05/SA_HPosition", unit="mm"))
+
+ assert dev.name() == "//ebs-simu-3:10000/srdiag/bpm/c01-05/SA_HPosition"
+ assert dev.unit() == "mm"
+
+
@pytest.mark.parametrize(
"install_test_package",
[{"name": "tango-pyaml", "path": "tests/dummy_cs/tango-pyaml"}],
@@ -61,6 +91,6 @@ def test_controlsystem_bpm_position_indexed(install_test_package):
set_attribute("srdiag/bpm/c01-04/Position", [0.0, 1.0], unit="mm")
sr: Accelerator = Accelerator.load("tests/config/bpms.yaml")
- bpm = sr.live.get_bpm("BPM_C01-04")
+ bpm = sr.live.bpm.get("BPM_C01-04")
assert np.allclose(bpm.positions.get(), np.array([0.0, 1.0]))
diff --git a/tests/common/test_element_holder.py b/tests/common/test_element_holder.py
new file mode 100644
index 000000000..d7f66540f
--- /dev/null
+++ b/tests/common/test_element_holder.py
@@ -0,0 +1,55 @@
+from pyaml.common.element import Element
+from pyaml.common.holders.element_holder import ElementHolder
+
+
+class DispatchElement(Element):
+ def _fill_device(self, holder: ElementHolder) -> None:
+ holder.filled_elements.append(self)
+
+
+class DispatchHolder(ElementHolder):
+ def __init__(self):
+ super().__init__()
+ self.filled_elements = []
+
+ def create_magnet_strength_aggregator(self, magnets):
+ return None
+
+ def create_magnet_hardware_aggregator(self, magnets):
+ return None
+
+ def create_bpm_aggregators(self, bpms):
+ return [None, None, None]
+
+ def _fill_magnet(self, magnet) -> None:
+ raise AssertionError("Unexpected magnet dispatch")
+
+ def _fill_combined_function_magnet(self, magnet) -> None:
+ raise AssertionError("Unexpected combined-function magnet dispatch")
+
+ def _fill_serialized_magnets(self, magnets) -> None:
+ raise AssertionError("Unexpected serialized magnet dispatch")
+
+ def _fill_bpm(self, bpm) -> None:
+ raise AssertionError("Unexpected BPM dispatch")
+
+ def _fill_rf_plant(self, rf_plant) -> None:
+ raise AssertionError("Unexpected RF plant dispatch")
+
+ def _fill_betatron_tune_monitor(self, monitor) -> None:
+ raise AssertionError("Unexpected betatron tune monitor dispatch")
+
+ def _fill_tool(self, tool) -> None:
+ raise AssertionError("Unexpected tool dispatch")
+
+ def _fill_unbound_element(self, element) -> None:
+ raise AssertionError("Unexpected unbound element dispatch")
+
+
+def test_fill_device_delegates_to_elements():
+ holder = DispatchHolder()
+ elements = [DispatchElement("FIRST"), DispatchElement("SECOND")]
+
+ holder.fill_device(elements)
+
+ assert holder.filled_elements == elements
diff --git a/tests/common/test_element_holder_collection.py b/tests/common/test_element_holder_collection.py
new file mode 100644
index 000000000..937d2da79
--- /dev/null
+++ b/tests/common/test_element_holder_collection.py
@@ -0,0 +1,150 @@
+import pytest
+
+from pyaml.arrays.bpm_array import BPMArray
+from pyaml.arrays.element_array import ElementArray
+from pyaml.arrays.magnet_array import MagnetArray
+from pyaml.bpm.bpm import BPM
+from pyaml.common.exception import PyAMLException
+from pyaml.lattice.simulator import Simulator
+
+
+@pytest.fixture
+def holder(accelerator_from_fragments, sr_configuration_fragments):
+ sr = accelerator_from_fragments(*sr_configuration_fragments)
+ sr.design.get_lattice().disable_6d()
+ return sr.design
+
+
+def test_exact_name_returns_the_element_or_none(holder):
+ assert holder["BPM_C04-01"] is holder.bpm.get("BPM_C04-01")
+ assert holder["UNKNOWN"] is None
+
+
+def test_get_and_full_slice_keep_registration_order(holder):
+ names = [element.get_name() for element in holder.get_all_elements()]
+
+ assert type(holder.get()) is ElementArray
+ assert type(holder[:]) is ElementArray
+ assert holder.get().names() == names
+ assert holder[:].names() == names
+ assert names != sorted(names)
+
+
+def test_collections_are_independent_but_share_elements(holder):
+ collection = holder.get()
+ first = holder[0]
+ original_names = collection.names()
+
+ assert collection[0] is first
+ collection.clear()
+ assert holder[0] is first
+ assert holder.get().names() == original_names
+
+
+def test_new_calls_reflect_registry_additions(holder):
+ previous = holder.get()
+ holder.fill_device([BPM("EXTRA_BPM", lattice_names="list(BPM_C04-01)")])
+
+ assert "EXTRA_BPM" not in previous.names()
+ assert holder.get().names() == previous.names() + ["EXTRA_BPM"]
+ assert holder["EXTRA_BPM"] is holder.bpm.get("EXTRA_BPM")
+
+
+def test_patterns_always_return_arrays(holder):
+ assert isinstance(holder["BPM*"], BPMArray)
+ assert holder["BPM*"].names() == ["BPM_C04-01", "BPM_C04-02"]
+ assert isinstance(holder["BPM_C04-0[1]"], BPMArray)
+ assert holder["BPM_C04-0[1]"].names() == ["BPM_C04-01"]
+ assert holder["BPM_C04-0?"].names() == ["BPM_C04-01", "BPM_C04-02"]
+ assert type(holder["MISSING*"]) is ElementArray
+ assert holder["MISSING*"].names() == []
+
+
+def test_character_classes_in_name_patterns(holder):
+ assert holder["BPM_C04-0[12]"].names() == ["BPM_C04-01", "BPM_C04-02"]
+ assert holder["BPM_C04-0[1-2]"].names() == ["BPM_C04-01", "BPM_C04-02"]
+ assert holder["SH1A-C01-[HV]*"].names() == ["SH1A-C01-H", "SH1A-C01-V"]
+ assert holder["BPM_C04-0[!2]"].names() == ["BPM_C04-01"]
+
+
+def test_colons_are_part_of_names(holder):
+ holder.fill_device([BPM("CELL04:BPM01", lattice_names="list(BPM_C04-01)")])
+
+ assert holder["CELL04:BPM01"] is holder.bpm.get("CELL04:BPM01")
+ assert holder["CELL04:BPM*"].names() == ["CELL04:BPM01"]
+ assert holder["model_name:*"].names() == []
+
+
+def test_magnet_subclasses_share_a_typed_array_in_either_order(holder):
+ horizontal = holder.magnet.get("SH1A-C01-H")
+ vertical = holder.magnet.get("SH1A-C01-V")
+ start = holder.get_all_elements().index(horizontal)
+
+ assert type(horizontal) is not type(vertical)
+ assert isinstance(holder["SH1A-C01-[HV]"], MagnetArray)
+ assert isinstance(holder[start : start + 2], MagnetArray)
+ assert isinstance(holder[start + 1 : start - 1 : -1], MagnetArray)
+ assert holder[start + 1 : start - 1 : -1].names() == ["SH1A-C01-V", "SH1A-C01-H"]
+
+
+def test_mixed_selection_returns_a_generic_array(holder):
+ selected = holder["*-C01*"]
+
+ assert type(selected) is ElementArray
+ assert "QF1A-C01" in selected.names()
+ assert "SH1A-C01" in selected.names()
+
+
+def test_indices_and_slices_follow_insertion_order(holder):
+ registered = holder.get_all_elements()
+
+ assert holder[0] is registered[0]
+ assert holder[-1] is registered[-1]
+ assert list(holder[1:3]) == registered[1:3]
+ assert list(holder[::2]) == registered[::2]
+ assert isinstance(holder[-2:], BPMArray)
+ assert holder[-2:].names() == ["BPM_C04-01", "BPM_C04-02"]
+ assert type(holder[len(registered) :]) is ElementArray
+
+
+def test_empty_holder_returns_empty_collections(ebs_lattice_file):
+ holder = Simulator(name="empty", lattice=str(ebs_lattice_file))
+
+ assert type(holder.get()) is ElementArray
+ assert holder[:].names() == []
+ assert holder["BPM*"].names() == []
+ assert holder["BPM_C04-01"] is None
+
+
+def test_invalid_indices_and_keys_raise_clear_errors(holder):
+ size = len(holder.get_all_elements())
+
+ with pytest.raises(IndexError):
+ holder[size]
+ with pytest.raises(IndexError):
+ holder[-size - 1]
+ with pytest.raises(TypeError):
+ holder[1.5]
+ with pytest.raises(ValueError):
+ holder[::0]
+
+
+def test_selection_intersects_with_a_configured_family(holder):
+ selected = holder["SH1A-C0?-H"] & holder.get_elements("ElArray")
+
+ assert isinstance(selected, MagnetArray)
+ assert selected.names() == ["SH1A-C02-H"]
+ assert holder.get_element("SH1A-C02-H") is holder["SH1A-C02-H"]
+ assert holder.get_all_elements() == list(holder.get())
+ with pytest.raises(PyAMLException):
+ holder.get_element("UNKNOWN")
+
+
+def test_existing_array_field_filters_still_work(holder):
+ selected = holder["SH1A-C0?-H"]["model_name:SH1A-C01"]
+
+ assert selected.names() == ["SH1A-C01-H"]
+
+
+def test_existing_empty_intersection_stays_a_list(holder):
+ assert type(holder["SH1A-C0?-H"] & holder["SH1A-C0?-V"]) is list
diff --git a/tests/test_errors.py b/tests/common/test_errors.py
similarity index 81%
rename from tests/test_errors.py
rename to tests/common/test_errors.py
index e58cc7cbf..38ce79f56 100644
--- a/tests/test_errors.py
+++ b/tests/common/test_errors.py
@@ -13,48 +13,49 @@
)
def test_tune(install_test_package):
with pytest.raises(PyAMLConfigException) as exc:
- ml: Accelerator = Accelerator.load("tests/config/bad_conf_duplicate_1.yaml")
- assert "MagnetArray HCORR : duplicate name SH1A-C02-H @index 2" in str(exc)
+ ml: Accelerator = Accelerator.load("tests/config/bad_conf_duplicate_1.yaml", include_locations=True, validate=False)
+ print(exc.value)
+ assert "MagnetArray HCORR : duplicate name SH1A-C02-H @index 2" in str(exc.value)
with pytest.raises(PyAMLConfigException) as exc:
- ml: Accelerator = Accelerator.load("tests/config/bad_conf_duplicate_2.yaml")
- assert "BPMArray BPM : duplicate name BPM_C04-06 @index 3" in str(exc)
+ ml: Accelerator = Accelerator.load("tests/config/bad_conf_duplicate_2.yaml", include_locations=True, validate=False)
+ assert "BPMArray BPM : duplicate name BPM_C04-06 @index 3" in str(exc.value)
with pytest.raises(PyAMLConfigException) as exc:
- ml: Accelerator = Accelerator.load("tests/config/bad_conf_duplicate_3.yaml")
- assert "Configuration entry 'BPM_C04-06' is duplicated inside category 'devices'" in str(exc)
- assert "bad_conf_duplicate_3.yaml" in str(exc)
- assert "line 58, column 3" in str(exc)
+ ml: Accelerator = Accelerator.load("tests/config/bad_conf_duplicate_3.yaml", include_locations=True, validate=True)
+ assert "Configuration entry 'BPM_C04-06' is duplicated inside category 'devices'" in str(exc.value)
+ assert "bad_conf_duplicate_3.yaml" in str(exc.value)
+ assert "line 37, column 3" in str(exc.value)
with pytest.raises(PyAMLConfigException) as exc:
- ml: Accelerator = Accelerator.load("tests/config/bad_conf_duplicate_4.yaml")
- assert "MagnetArray HCORR : duplicate name SH1A-C02-H @index 2" in str(exc)
+ ml: Accelerator = Accelerator.load("tests/config/bad_conf_duplicate_4.yaml", include_locations=True, validate=False)
+ assert "MagnetArray HCORR : duplicate name SH1A-C02-H @index 2" in str(exc.value)
- sr: Accelerator = Accelerator.load("tests/config/EBSTune.yaml")
- m1 = sr.live.get_magnet("QF1E-C04")
- m2 = sr.design.get_magnet("QF1A-C05")
+ sr: Accelerator = Accelerator.load("tests/config/EBSTune.yaml", include_locations=True, validate=False)
+ m1 = sr.live.magnet.get("QF1E-C04")
+ m2 = sr.design.magnet.get("QF1A-C05")
with pytest.raises(PyAMLException) as exc:
ma = MagnetArray("Test", [m1, m2])
- assert "MagnetArray Test: All elements must be attached to the same instance" in str(exc)
+ assert "MagnetArray Test: All elements must be attached to the same instance" in str(exc.value)
with pytest.raises(PyAMLException) as exc:
- m2 = sr.design.get_magnet("QF1A-C05XX")
- assert "Magnet QF1A-C05XX not defined" in str(exc)
+ m2 = sr.design.magnet.get("QF1A-C05XX")
+ assert "Magnet QF1A-C05XX not defined" in str(exc.value)
with pytest.raises(PyAMLException) as exc:
- m2 = sr.design.get_bpm("QF1A-C05XX")
- assert "BPM QF1A-C05XX not defined" in str(exc)
+ m2 = sr.design.bpm.get("QF1A-C05XX")
+ assert "BPM QF1A-C05XX not defined" in str(exc.value)
def test_duplicate_error_reports_source_line_and_column_across_files(tmp_path):
devices_a = tmp_path / "devices_a.yaml"
devices_a.write_text(
- "- type: test.device\n name: BPM_DUPLICATE\n",
+ "- type: pyaml.bpm.bpm\n name: BPM_DUPLICATE\n",
encoding="utf-8",
)
devices_b = tmp_path / "devices_b.yaml"
devices_b.write_text(
- "- type: test.device\n name: BPM_UNIQUE\n- type: test.device\n name: BPM_DUPLICATE\n",
+ "- type: pyaml.bpm.bpm\n name: BPM_UNIQUE\n- type: pyaml.bpm.bpm\n name: BPM_DUPLICATE\n",
encoding="utf-8",
)
root = tmp_path / "root.yaml"
@@ -64,7 +65,7 @@ def test_duplicate_error_reports_source_line_and_column_across_files(tmp_path):
)
with pytest.raises(PyAMLConfigException) as exc:
- Accelerator.load(str(root))
+ Accelerator.load(str(root), include_locations=True, validate=True)
message = str(exc.value)
assert "Configuration entry 'BPM_DUPLICATE' is duplicated inside category 'devices'" in message
@@ -90,7 +91,7 @@ def test_malformed_local_included_yaml_reports_source_line_and_column(tmp_path):
)
with pytest.raises(PyAMLException) as exc:
- Accelerator.load(str(root))
+ Accelerator.load(str(root), include_locations=True, validate=False)
message = str(exc.value)
assert str(broken_devices) in message
@@ -115,7 +116,7 @@ def test_truncated_local_included_json_reports_source_and_position(tmp_path):
)
with pytest.raises(PyAMLException) as exc:
- Accelerator.load(str(root))
+ Accelerator.load(str(root), include_locations=True, validate=False)
message = str(exc.value)
assert str(broken_devices) in message
diff --git a/tests/config/EBSNames.yaml b/tests/config/EBSNames.yaml
index c359cecbd..b0eee6afc 100644
--- a/tests/config/EBSNames.yaml
+++ b/tests/config/EBSNames.yaml
@@ -10,6 +10,7 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/ebs_catalogs.yaml
data_folder: /data/store
devices:
- type: pyaml.magnet.quadrupole
@@ -19,13 +20,11 @@ devices:
calibration_factor: 1.00054
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c04-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c04-e/current
- type: pyaml.magnet.quadrupole
name: QF1E-ALL
lattice_names: list(QF1E,QF1I)
@@ -34,13 +33,11 @@ devices:
calibration_factor: 1.00054
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c04-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c04-e/current
- type: pyaml.magnet.quadrupole
name: QF1E-C05
lattice_names: QF1E@1
@@ -49,13 +46,11 @@ devices:
calibration_factor: 0.996841
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C04-C05-C06
lattice_names: QF1E@0,1,2
@@ -64,13 +59,11 @@ devices:
calibration_factor: 1.00191
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-e/current
- type: pyaml.magnet.quadrupole
name: QF1E-C04-C05-C06-2
lattice_names: "@140,290,424"
@@ -79,13 +72,11 @@ devices:
calibration_factor: 1.00191
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-e/current
- type: pyaml.magnet.quadrupole
name: QF1E-C04-C05-C06-3
lattice_names: QF1E#0..3
@@ -94,10 +85,8 @@ devices:
calibration_factor: 1.00191
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-e/current
diff --git a/tests/config/EBSOrbit.yaml b/tests/config/EBSOrbit.yaml
index 39df579a0..5d6ea2570 100644
--- a/tests/config/EBSOrbit.yaml
+++ b/tests/config/EBSOrbit.yaml
@@ -1,6 +1,6 @@
type: pyaml.accelerator
-facility: ESRF
machine: sr
+facility: ESRF
energy: 6e9
alphac: 8.623614679299252e-05
simulators:
@@ -11,6 +11,7 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/ebs_catalogs.yaml
data_folder: /data/store
arrays:
- type: pyaml.arrays.magnet
@@ -34,23 +35,55 @@ arrays:
name: BPM
elements:
- BPM*
+ - type: pyaml.arrays.magnet
+ name: QForTune
+ elements:
+ - QD2*
+ - QF1*
devices:
+- type: pyaml.tuning_tools.bba
+ name: BBA-BPM_C04-04
+ bpm_array_name: BPM
+ bpm_name : BPM_C04-04
+ hcorr_name : SF2E-C02-H
+ vcorr_name : SD1A-C26-V
+ quad_name : QF6B-C04
+ n_step: 7
+ hcorr_delta : 1e-05
+ vcorr_delta : 1e-05
+ hquad_delta : 0.005
+ vquad_delta : 0.005
+- type: pyaml.tuning_tools.bba2
+ name: BBA2-BPM_C04-04
+ bpm_array_name: BPM
+ bpm_name : BPM_C04-04
+ hcorr_name : SF2E-C02-H
+ vcorr_name : SD1A-C26-V
+ quad_name : QF6B-C04
+ tune_correction_name: DEFAULT_TUNE_CORRECTION
+ hcorr_delta : 1e-05
+ vcorr_delta : 1e-05
+ quad_delta : 0.005
- type: pyaml.diagnostics.tune_monitor
name: BETATRON_TUNE
- tune_h:
- type: tango.pyaml.attribute_read_only
- attribute: sys/ringsimulator/ebs/Tune_h
- unit: ""
- tune_v:
- type: tango.pyaml.attribute_read_only
- attribute: sys/ringsimulator/ebs/Tune_v
- unit: ""
-- type: pyaml.diagnostics.chromaticity_monitor
+ tune_h: srdiag/beam-tune/main/Qh
+ tune_v: srdiag/beam-tune/main/Qv
+- type: pyaml.tuning_tools.chromaticity_monitor
name: CHROMATICITY_MONITOR
betatron_tune_name: BETATRON_TUNE
- rf_plant_name: RF
+ rf_plant_name: DEFAULT_RF_PLANT
bpm_array_name: BPM
n_step: 5
+- type: pyaml.tuning_tools.tune
+ name: DEFAULT_TUNE_CORRECTION
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ response_matrix: ${path:tune_response.json}
+- type: pyaml.tuning_tools.tune_response_matrix
+ name: DEFAULT_TUNE_RESPONSE_MATRIX
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ quad_delta: 1e-4
- type: pyaml.tuning_tools.chromaticity_response_matrix
name: DEFAULT_CHROMATICITY_RESPONSE_MATRIX
sextu_array_name: Sext
@@ -58,17 +91,17 @@ devices:
sextu_delta: 1e-6
- type: pyaml.tuning_tools.chromaticity
name: DEFAULT_CHROMATICITY_CORRECTION
- chromaticty_monitor_name: CHROMATICITY_MONITOR
+ chromaticity_monitor_name: CHROMATICITY_MONITOR
sextu_array_name: Sext
- response_matrix: file:ideal_chroma_resp.json
+ response_matrix: ${path:ideal_chroma_resp.json}
- type: pyaml.tuning_tools.orbit
bpm_array_name: BPM
hcorr_array_name: HCorr
vcorr_array_name: VCorr
- rf_plant_name: RF
+ rf_plant_name: DEFAULT_RF_PLANT
name: DEFAULT_ORBIT_CORRECTION
singular_values: 162
- response_matrix: file:ideal_orm_disp.json
+ response_matrix: ${path:ideal_orm_disp.json}
- type: pyaml.tuning_tools.orbit_response_matrix
bpm_array_name: BPM
hcorr_array_name: HCorr
@@ -77,25 +110,31 @@ devices:
name: DEFAULT_ORBIT_RESPONSE_MATRIX
- type: pyaml.tuning_tools.dispersion
bpm_array_name: BPM
- rf_plant_name: RF
+ rf_plant_name: DEFAULT_RF_PLANT
frequency_delta: 10
name: DEFAULT_DISPERSION
- type: pyaml.rf.rf_plant
- name: RF
- masterclock:
- type: tango.pyaml.attribute
- attribute: sy/ms/1/Frequency
- unit: Hz
+ name: DEFAULT_RF_PLANT
+ masterclock: sy/ms/1/Frequency
transmitters:
- type: pyaml.rf.rf_transmitter
name: RFTRA
cavities: [CAV_C05_01,CAV_C05_02,CAV_C05_03,CAV_C05_04,CAV_C05_05,CAV_C07_01,CAV_C07_02,CAV_C07_03,CAV_C07_04,CAV_C07_05,CAV_C25_01,CAV_C25_02,CAV_C25_03]
harmonic: 1
distribution: 1
- voltage:
- type: tango.pyaml.attribute
- attribute: sys/ringsimulator/ebs/RfVoltage
- unit: V
+ voltage: sys/ringsimulator/ebs/RfVoltage
+- type: pyaml.magnet.quadrupole
+ name: QF6B-C04
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998960997
+ crosstalk: 0.99918
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF6_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf6/c04-b/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C04
mapping:
@@ -108,34 +147,25 @@ devices:
multipoles: [B0,A0,A1,B2]
pseudo_factors: [1.0,-1.0,-1.0,-1.0]
units: [rad,rad,m-1,m-2]
+ hardware_units: ["A","A","A","A","A"]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SHI_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SHI_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SHI_sq_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SHI_sext_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SHI_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c04-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c04-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c04-a-ch3/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c04-a-ch5/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c04-a-ch6/current
- unit: A
+ - srmag/ps-corr-sh1/c04-a-ch1/current
+ - srmag/ps-corr-sh1/c04-a-ch2/current
+ - srmag/ps-corr-sh1/c04-a-ch3/current
+ - srmag/ps-corr-sh1/c04-a-ch5/current
+ - srmag/ps-corr-sh1/c04-a-ch6/current
- type: pyaml.magnet.cfm_magnet
name: SJ1A-C04
mapping:
@@ -148,18 +178,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-a/Strength
- unit: m-2
+ - srmag/m-sd1/c04-a/Strength_H
+ - srmag/m-sd1/c04-a/Strength_V
+ - srmag/m-sd1/c04-a/Strength_SQ
+ - srmag/m-sd1/c04-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SJ2A-C04
mapping:
@@ -172,18 +194,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c04-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c04-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c04-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c04-a/Strength
- unit: m-2
+ - srmag/m-sf2/c04-a/Strength_H
+ - srmag/m-sf2/c04-a/Strength_V
+ - srmag/m-sf2/c04-a/Strength_SQ
+ - srmag/m-sf2/c04-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SJ1B-C04
mapping:
@@ -196,18 +210,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-b/Strength
- unit: m-2
+ - srmag/m-sd1/c04-b/Strength_H
+ - srmag/m-sd1/c04-b/Strength_V
+ - srmag/m-sd1/c04-b/Strength_SQ
+ - srmag/m-sd1/c04-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C04
mapping:
@@ -218,27 +224,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c04-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c04-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c04-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c04-b-ch1/current
+ - srmag/ps-corr-sh2/c04-b-ch2/current
+ - srmag/ps-corr-sh2/c04-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SJ1D-C04
mapping:
@@ -251,18 +252,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-d/Strength
- unit: m-2
+ - srmag/m-sd1/c04-d/Strength_H
+ - srmag/m-sd1/c04-d/Strength_V
+ - srmag/m-sd1/c04-d/Strength_SQ
+ - srmag/m-sd1/c04-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SJ2E-C04
mapping:
@@ -275,18 +268,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c04-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c04-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c04-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c04-e/Strength
- unit: m-2
+ - srmag/m-sf2/c04-e/Strength_H
+ - srmag/m-sf2/c04-e/Strength_V
+ - srmag/m-sf2/c04-e/Strength_SQ
+ - srmag/m-sf2/c04-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SJ1E-C04
mapping:
@@ -299,18 +284,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c04-e/Strength
- unit: m-2
+ - srmag/m-sd1/c04-e/Strength_H
+ - srmag/m-sd1/c04-e/Strength_V
+ - srmag/m-sd1/c04-e/Strength_SQ
+ - srmag/m-sd1/c04-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C04
mapping:
@@ -321,27 +298,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c04-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c04-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c04-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c04-e-ch1/current
+ - srmag/ps-corr-sh3/c04-e-ch2/current
+ - srmag/ps-corr-sh3/c04-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C05
mapping:
@@ -352,27 +324,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c05-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c05-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c05-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c05-a-ch1/current
+ - srmag/ps-corr-sh1/c05-a-ch2/current
+ - srmag/ps-corr-sh1/c05-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C05
mapping:
@@ -385,18 +352,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-a/Strength
- unit: m-2
+ - srmag/m-sd1/c05-a/Strength_H
+ - srmag/m-sd1/c05-a/Strength_V
+ - srmag/m-sd1/c05-a/Strength_SQ
+ - srmag/m-sd1/c05-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C05
mapping:
@@ -409,18 +368,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c05-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c05-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c05-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c05-a/Strength
- unit: m-2
+ - srmag/m-sf2/c05-a/Strength_H
+ - srmag/m-sf2/c05-a/Strength_V
+ - srmag/m-sf2/c05-a/Strength_SQ
+ - srmag/m-sf2/c05-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C05
mapping:
@@ -433,18 +384,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-b/Strength
- unit: m-2
+ - srmag/m-sd1/c05-b/Strength_H
+ - srmag/m-sd1/c05-b/Strength_V
+ - srmag/m-sd1/c05-b/Strength_SQ
+ - srmag/m-sd1/c05-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C05
mapping:
@@ -455,27 +398,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c05-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c05-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c05-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c05-b-ch1/current
+ - srmag/ps-corr-sh2/c05-b-ch2/current
+ - srmag/ps-corr-sh2/c05-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C05
mapping:
@@ -488,18 +426,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-d/Strength
- unit: m-2
+ - srmag/m-sd1/c05-d/Strength_H
+ - srmag/m-sd1/c05-d/Strength_V
+ - srmag/m-sd1/c05-d/Strength_SQ
+ - srmag/m-sd1/c05-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C05
mapping:
@@ -512,18 +442,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c05-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c05-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c05-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c05-e/Strength
- unit: m-2
+ - srmag/m-sf2/c05-e/Strength_H
+ - srmag/m-sf2/c05-e/Strength_V
+ - srmag/m-sf2/c05-e/Strength_SQ
+ - srmag/m-sf2/c05-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C05
mapping:
@@ -536,18 +458,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c05-e/Strength
- unit: m-2
+ - srmag/m-sd1/c05-e/Strength_H
+ - srmag/m-sd1/c05-e/Strength_V
+ - srmag/m-sd1/c05-e/Strength_SQ
+ - srmag/m-sd1/c05-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C05
mapping:
@@ -558,27 +472,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c05-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c05-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c05-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c05-e-ch1/current
+ - srmag/ps-corr-sh3/c05-e-ch2/current
+ - srmag/ps-corr-sh3/c05-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C06
mapping:
@@ -589,27 +498,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c06-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c06-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c06-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c06-a-ch1/current
+ - srmag/ps-corr-sh1/c06-a-ch2/current
+ - srmag/ps-corr-sh1/c06-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C06
mapping:
@@ -622,18 +526,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-a/Strength
- unit: m-2
+ - srmag/m-sd1/c06-a/Strength_H
+ - srmag/m-sd1/c06-a/Strength_V
+ - srmag/m-sd1/c06-a/Strength_SQ
+ - srmag/m-sd1/c06-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C06
mapping:
@@ -646,18 +542,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c06-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c06-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c06-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c06-a/Strength
- unit: m-2
+ - srmag/m-sf2/c06-a/Strength_H
+ - srmag/m-sf2/c06-a/Strength_V
+ - srmag/m-sf2/c06-a/Strength_SQ
+ - srmag/m-sf2/c06-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C06
mapping:
@@ -670,18 +558,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-b/Strength
- unit: m-2
+ - srmag/m-sd1/c06-b/Strength_H
+ - srmag/m-sd1/c06-b/Strength_V
+ - srmag/m-sd1/c06-b/Strength_SQ
+ - srmag/m-sd1/c06-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C06
mapping:
@@ -692,27 +572,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c06-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c06-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c06-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c06-b-ch1/current
+ - srmag/ps-corr-sh2/c06-b-ch2/current
+ - srmag/ps-corr-sh2/c06-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C06
mapping:
@@ -725,18 +600,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-d/Strength
- unit: m-2
+ - srmag/m-sd1/c06-d/Strength_H
+ - srmag/m-sd1/c06-d/Strength_V
+ - srmag/m-sd1/c06-d/Strength_SQ
+ - srmag/m-sd1/c06-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C06
mapping:
@@ -749,18 +616,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c06-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c06-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c06-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c06-e/Strength
- unit: m-2
+ - srmag/m-sf2/c06-e/Strength_H
+ - srmag/m-sf2/c06-e/Strength_V
+ - srmag/m-sf2/c06-e/Strength_SQ
+ - srmag/m-sf2/c06-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C06
mapping:
@@ -773,18 +632,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c06-e/Strength
- unit: m-2
+ - srmag/m-sd1/c06-e/Strength_H
+ - srmag/m-sd1/c06-e/Strength_V
+ - srmag/m-sd1/c06-e/Strength_SQ
+ - srmag/m-sd1/c06-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C06
mapping:
@@ -795,27 +646,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c06-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c06-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c06-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c06-e-ch1/current
+ - srmag/ps-corr-sh3/c06-e-ch2/current
+ - srmag/ps-corr-sh3/c06-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C07
mapping:
@@ -826,27 +672,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c07-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c07-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c07-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c07-a-ch1/current
+ - srmag/ps-corr-sh1/c07-a-ch2/current
+ - srmag/ps-corr-sh1/c07-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C07
mapping:
@@ -859,18 +700,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-a/Strength
- unit: m-2
+ - srmag/m-sd1/c07-a/Strength_H
+ - srmag/m-sd1/c07-a/Strength_V
+ - srmag/m-sd1/c07-a/Strength_SQ
+ - srmag/m-sd1/c07-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C07
mapping:
@@ -883,18 +716,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c07-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c07-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c07-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c07-a/Strength
- unit: m-2
+ - srmag/m-sf2/c07-a/Strength_H
+ - srmag/m-sf2/c07-a/Strength_V
+ - srmag/m-sf2/c07-a/Strength_SQ
+ - srmag/m-sf2/c07-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C07
mapping:
@@ -907,18 +732,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-b/Strength
- unit: m-2
+ - srmag/m-sd1/c07-b/Strength_H
+ - srmag/m-sd1/c07-b/Strength_V
+ - srmag/m-sd1/c07-b/Strength_SQ
+ - srmag/m-sd1/c07-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C07
mapping:
@@ -929,27 +746,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c07-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c07-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c07-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c07-b-ch1/current
+ - srmag/ps-corr-sh2/c07-b-ch2/current
+ - srmag/ps-corr-sh2/c07-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C07
mapping:
@@ -962,18 +774,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-d/Strength
- unit: m-2
+ - srmag/m-sd1/c07-d/Strength_H
+ - srmag/m-sd1/c07-d/Strength_V
+ - srmag/m-sd1/c07-d/Strength_SQ
+ - srmag/m-sd1/c07-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C07
mapping:
@@ -986,18 +790,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c07-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c07-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c07-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c07-e/Strength
- unit: m-2
+ - srmag/m-sf2/c07-e/Strength_H
+ - srmag/m-sf2/c07-e/Strength_V
+ - srmag/m-sf2/c07-e/Strength_SQ
+ - srmag/m-sf2/c07-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C07
mapping:
@@ -1010,18 +806,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c07-e/Strength
- unit: m-2
+ - srmag/m-sd1/c07-e/Strength_H
+ - srmag/m-sd1/c07-e/Strength_V
+ - srmag/m-sd1/c07-e/Strength_SQ
+ - srmag/m-sd1/c07-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C07
mapping:
@@ -1032,27 +820,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c07-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c07-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c07-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c07-e-ch1/current
+ - srmag/ps-corr-sh3/c07-e-ch2/current
+ - srmag/ps-corr-sh3/c07-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C08
mapping:
@@ -1063,27 +846,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c08-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c08-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c08-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c08-a-ch1/current
+ - srmag/ps-corr-sh1/c08-a-ch2/current
+ - srmag/ps-corr-sh1/c08-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C08
mapping:
@@ -1096,18 +874,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-a/Strength
- unit: m-2
+ - srmag/m-sd1/c08-a/Strength_H
+ - srmag/m-sd1/c08-a/Strength_V
+ - srmag/m-sd1/c08-a/Strength_SQ
+ - srmag/m-sd1/c08-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C08
mapping:
@@ -1120,18 +890,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c08-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c08-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c08-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c08-a/Strength
- unit: m-2
+ - srmag/m-sf2/c08-a/Strength_H
+ - srmag/m-sf2/c08-a/Strength_V
+ - srmag/m-sf2/c08-a/Strength_SQ
+ - srmag/m-sf2/c08-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C08
mapping:
@@ -1144,18 +906,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-b/Strength
- unit: m-2
+ - srmag/m-sd1/c08-b/Strength_H
+ - srmag/m-sd1/c08-b/Strength_V
+ - srmag/m-sd1/c08-b/Strength_SQ
+ - srmag/m-sd1/c08-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C08
mapping:
@@ -1166,27 +920,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c08-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c08-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c08-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c08-b-ch1/current
+ - srmag/ps-corr-sh2/c08-b-ch2/current
+ - srmag/ps-corr-sh2/c08-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C08
mapping:
@@ -1199,18 +948,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-d/Strength
- unit: m-2
+ - srmag/m-sd1/c08-d/Strength_H
+ - srmag/m-sd1/c08-d/Strength_V
+ - srmag/m-sd1/c08-d/Strength_SQ
+ - srmag/m-sd1/c08-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C08
mapping:
@@ -1223,18 +964,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c08-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c08-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c08-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c08-e/Strength
- unit: m-2
+ - srmag/m-sf2/c08-e/Strength_H
+ - srmag/m-sf2/c08-e/Strength_V
+ - srmag/m-sf2/c08-e/Strength_SQ
+ - srmag/m-sf2/c08-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C08
mapping:
@@ -1247,18 +980,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c08-e/Strength
- unit: m-2
+ - srmag/m-sd1/c08-e/Strength_H
+ - srmag/m-sd1/c08-e/Strength_V
+ - srmag/m-sd1/c08-e/Strength_SQ
+ - srmag/m-sd1/c08-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C08
mapping:
@@ -1269,27 +994,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c08-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c08-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c08-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c08-e-ch1/current
+ - srmag/ps-corr-sh3/c08-e-ch2/current
+ - srmag/ps-corr-sh3/c08-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C09
mapping:
@@ -1300,27 +1020,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c09-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c09-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c09-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c09-a-ch1/current
+ - srmag/ps-corr-sh1/c09-a-ch2/current
+ - srmag/ps-corr-sh1/c09-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C09
mapping:
@@ -1333,18 +1048,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-a/Strength
- unit: m-2
+ - srmag/m-sd1/c09-a/Strength_H
+ - srmag/m-sd1/c09-a/Strength_V
+ - srmag/m-sd1/c09-a/Strength_SQ
+ - srmag/m-sd1/c09-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C09
mapping:
@@ -1357,18 +1064,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c09-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c09-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c09-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c09-a/Strength
- unit: m-2
+ - srmag/m-sf2/c09-a/Strength_H
+ - srmag/m-sf2/c09-a/Strength_V
+ - srmag/m-sf2/c09-a/Strength_SQ
+ - srmag/m-sf2/c09-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C09
mapping:
@@ -1381,18 +1080,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-b/Strength
- unit: m-2
+ - srmag/m-sd1/c09-b/Strength_H
+ - srmag/m-sd1/c09-b/Strength_V
+ - srmag/m-sd1/c09-b/Strength_SQ
+ - srmag/m-sd1/c09-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C09
mapping:
@@ -1403,27 +1094,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c09-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c09-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c09-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c09-b-ch1/current
+ - srmag/ps-corr-sh2/c09-b-ch2/current
+ - srmag/ps-corr-sh2/c09-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C09
mapping:
@@ -1436,18 +1122,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-d/Strength
- unit: m-2
+ - srmag/m-sd1/c09-d/Strength_H
+ - srmag/m-sd1/c09-d/Strength_V
+ - srmag/m-sd1/c09-d/Strength_SQ
+ - srmag/m-sd1/c09-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C09
mapping:
@@ -1460,18 +1138,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c09-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c09-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c09-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c09-e/Strength
- unit: m-2
+ - srmag/m-sf2/c09-e/Strength_H
+ - srmag/m-sf2/c09-e/Strength_V
+ - srmag/m-sf2/c09-e/Strength_SQ
+ - srmag/m-sf2/c09-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C09
mapping:
@@ -1484,18 +1154,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c09-e/Strength
- unit: m-2
+ - srmag/m-sd1/c09-e/Strength_H
+ - srmag/m-sd1/c09-e/Strength_V
+ - srmag/m-sd1/c09-e/Strength_SQ
+ - srmag/m-sd1/c09-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C09
mapping:
@@ -1506,27 +1168,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c09-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c09-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c09-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c09-e-ch1/current
+ - srmag/ps-corr-sh3/c09-e-ch2/current
+ - srmag/ps-corr-sh3/c09-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C10
mapping:
@@ -1537,27 +1194,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c10-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c10-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c10-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c10-a-ch1/current
+ - srmag/ps-corr-sh1/c10-a-ch2/current
+ - srmag/ps-corr-sh1/c10-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C10
mapping:
@@ -1570,18 +1222,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-a/Strength
- unit: m-2
+ - srmag/m-sd1/c10-a/Strength_H
+ - srmag/m-sd1/c10-a/Strength_V
+ - srmag/m-sd1/c10-a/Strength_SQ
+ - srmag/m-sd1/c10-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C10
mapping:
@@ -1594,18 +1238,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c10-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c10-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c10-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c10-a/Strength
- unit: m-2
+ - srmag/m-sf2/c10-a/Strength_H
+ - srmag/m-sf2/c10-a/Strength_V
+ - srmag/m-sf2/c10-a/Strength_SQ
+ - srmag/m-sf2/c10-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C10
mapping:
@@ -1618,18 +1254,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-b/Strength
- unit: m-2
+ - srmag/m-sd1/c10-b/Strength_H
+ - srmag/m-sd1/c10-b/Strength_V
+ - srmag/m-sd1/c10-b/Strength_SQ
+ - srmag/m-sd1/c10-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C10
mapping:
@@ -1640,27 +1268,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c10-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c10-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c10-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c10-b-ch1/current
+ - srmag/ps-corr-sh2/c10-b-ch2/current
+ - srmag/ps-corr-sh2/c10-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C10
mapping:
@@ -1673,18 +1296,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-d/Strength
- unit: m-2
+ - srmag/m-sd1/c10-d/Strength_H
+ - srmag/m-sd1/c10-d/Strength_V
+ - srmag/m-sd1/c10-d/Strength_SQ
+ - srmag/m-sd1/c10-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C10
mapping:
@@ -1697,18 +1312,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c10-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c10-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c10-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c10-e/Strength
- unit: m-2
+ - srmag/m-sf2/c10-e/Strength_H
+ - srmag/m-sf2/c10-e/Strength_V
+ - srmag/m-sf2/c10-e/Strength_SQ
+ - srmag/m-sf2/c10-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C10
mapping:
@@ -1721,18 +1328,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c10-e/Strength
- unit: m-2
+ - srmag/m-sd1/c10-e/Strength_H
+ - srmag/m-sd1/c10-e/Strength_V
+ - srmag/m-sd1/c10-e/Strength_SQ
+ - srmag/m-sd1/c10-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C10
mapping:
@@ -1743,27 +1342,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c10-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c10-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c10-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c10-e-ch1/current
+ - srmag/ps-corr-sh3/c10-e-ch2/current
+ - srmag/ps-corr-sh3/c10-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C11
mapping:
@@ -1774,27 +1368,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c11-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c11-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c11-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c11-a-ch1/current
+ - srmag/ps-corr-sh1/c11-a-ch2/current
+ - srmag/ps-corr-sh1/c11-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C11
mapping:
@@ -1807,18 +1396,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-a/Strength
- unit: m-2
+ - srmag/m-sd1/c11-a/Strength_H
+ - srmag/m-sd1/c11-a/Strength_V
+ - srmag/m-sd1/c11-a/Strength_SQ
+ - srmag/m-sd1/c11-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C11
mapping:
@@ -1831,18 +1412,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c11-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c11-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c11-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c11-a/Strength
- unit: m-2
+ - srmag/m-sf2/c11-a/Strength_H
+ - srmag/m-sf2/c11-a/Strength_V
+ - srmag/m-sf2/c11-a/Strength_SQ
+ - srmag/m-sf2/c11-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C11
mapping:
@@ -1855,18 +1428,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-b/Strength
- unit: m-2
+ - srmag/m-sd1/c11-b/Strength_H
+ - srmag/m-sd1/c11-b/Strength_V
+ - srmag/m-sd1/c11-b/Strength_SQ
+ - srmag/m-sd1/c11-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C11
mapping:
@@ -1877,27 +1442,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c11-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c11-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c11-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c11-b-ch1/current
+ - srmag/ps-corr-sh2/c11-b-ch2/current
+ - srmag/ps-corr-sh2/c11-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C11
mapping:
@@ -1910,18 +1470,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-d/Strength
- unit: m-2
+ - srmag/m-sd1/c11-d/Strength_H
+ - srmag/m-sd1/c11-d/Strength_V
+ - srmag/m-sd1/c11-d/Strength_SQ
+ - srmag/m-sd1/c11-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C11
mapping:
@@ -1934,18 +1486,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c11-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c11-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c11-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c11-e/Strength
- unit: m-2
+ - srmag/m-sf2/c11-e/Strength_H
+ - srmag/m-sf2/c11-e/Strength_V
+ - srmag/m-sf2/c11-e/Strength_SQ
+ - srmag/m-sf2/c11-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C11
mapping:
@@ -1958,18 +1502,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c11-e/Strength
- unit: m-2
+ - srmag/m-sd1/c11-e/Strength_H
+ - srmag/m-sd1/c11-e/Strength_V
+ - srmag/m-sd1/c11-e/Strength_SQ
+ - srmag/m-sd1/c11-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C11
mapping:
@@ -1980,27 +1516,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c11-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c11-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c11-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c11-e-ch1/current
+ - srmag/ps-corr-sh3/c11-e-ch2/current
+ - srmag/ps-corr-sh3/c11-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C12
mapping:
@@ -2011,27 +1542,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c12-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c12-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c12-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c12-a-ch1/current
+ - srmag/ps-corr-sh1/c12-a-ch2/current
+ - srmag/ps-corr-sh1/c12-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C12
mapping:
@@ -2044,18 +1570,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-a/Strength
- unit: m-2
+ - srmag/m-sd1/c12-a/Strength_H
+ - srmag/m-sd1/c12-a/Strength_V
+ - srmag/m-sd1/c12-a/Strength_SQ
+ - srmag/m-sd1/c12-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C12
mapping:
@@ -2068,18 +1586,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c12-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c12-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c12-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c12-a/Strength
- unit: m-2
+ - srmag/m-sf2/c12-a/Strength_H
+ - srmag/m-sf2/c12-a/Strength_V
+ - srmag/m-sf2/c12-a/Strength_SQ
+ - srmag/m-sf2/c12-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C12
mapping:
@@ -2092,18 +1602,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-b/Strength
- unit: m-2
+ - srmag/m-sd1/c12-b/Strength_H
+ - srmag/m-sd1/c12-b/Strength_V
+ - srmag/m-sd1/c12-b/Strength_SQ
+ - srmag/m-sd1/c12-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C12
mapping:
@@ -2114,27 +1616,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c12-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c12-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c12-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c12-b-ch1/current
+ - srmag/ps-corr-sh2/c12-b-ch2/current
+ - srmag/ps-corr-sh2/c12-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C12
mapping:
@@ -2147,18 +1644,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-d/Strength
- unit: m-2
+ - srmag/m-sd1/c12-d/Strength_H
+ - srmag/m-sd1/c12-d/Strength_V
+ - srmag/m-sd1/c12-d/Strength_SQ
+ - srmag/m-sd1/c12-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C12
mapping:
@@ -2171,18 +1660,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c12-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c12-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c12-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c12-e/Strength
- unit: m-2
+ - srmag/m-sf2/c12-e/Strength_H
+ - srmag/m-sf2/c12-e/Strength_V
+ - srmag/m-sf2/c12-e/Strength_SQ
+ - srmag/m-sf2/c12-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C12
mapping:
@@ -2195,18 +1676,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c12-e/Strength
- unit: m-2
+ - srmag/m-sd1/c12-e/Strength_H
+ - srmag/m-sd1/c12-e/Strength_V
+ - srmag/m-sd1/c12-e/Strength_SQ
+ - srmag/m-sd1/c12-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C12
mapping:
@@ -2217,27 +1690,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c12-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c12-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c12-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c12-e-ch1/current
+ - srmag/ps-corr-sh3/c12-e-ch2/current
+ - srmag/ps-corr-sh3/c12-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C13
mapping:
@@ -2248,27 +1716,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c13-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c13-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c13-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c13-a-ch1/current
+ - srmag/ps-corr-sh1/c13-a-ch2/current
+ - srmag/ps-corr-sh1/c13-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C13
mapping:
@@ -2281,18 +1744,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-a/Strength
- unit: m-2
+ - srmag/m-sd1/c13-a/Strength_H
+ - srmag/m-sd1/c13-a/Strength_V
+ - srmag/m-sd1/c13-a/Strength_SQ
+ - srmag/m-sd1/c13-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C13
mapping:
@@ -2305,18 +1760,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c13-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c13-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c13-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c13-a/Strength
- unit: m-2
+ - srmag/m-sf2/c13-a/Strength_H
+ - srmag/m-sf2/c13-a/Strength_V
+ - srmag/m-sf2/c13-a/Strength_SQ
+ - srmag/m-sf2/c13-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C13
mapping:
@@ -2329,18 +1776,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-b/Strength
- unit: m-2
+ - srmag/m-sd1/c13-b/Strength_H
+ - srmag/m-sd1/c13-b/Strength_V
+ - srmag/m-sd1/c13-b/Strength_SQ
+ - srmag/m-sd1/c13-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C13
mapping:
@@ -2351,27 +1790,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c13-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c13-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c13-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c13-b-ch1/current
+ - srmag/ps-corr-sh2/c13-b-ch2/current
+ - srmag/ps-corr-sh2/c13-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C13
mapping:
@@ -2384,18 +1818,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-d/Strength
- unit: m-2
+ - srmag/m-sd1/c13-d/Strength_H
+ - srmag/m-sd1/c13-d/Strength_V
+ - srmag/m-sd1/c13-d/Strength_SQ
+ - srmag/m-sd1/c13-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C13
mapping:
@@ -2408,18 +1834,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c13-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c13-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c13-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c13-e/Strength
- unit: m-2
+ - srmag/m-sf2/c13-e/Strength_H
+ - srmag/m-sf2/c13-e/Strength_V
+ - srmag/m-sf2/c13-e/Strength_SQ
+ - srmag/m-sf2/c13-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C13
mapping:
@@ -2432,18 +1850,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c13-e/Strength
- unit: m-2
+ - srmag/m-sd1/c13-e/Strength_H
+ - srmag/m-sd1/c13-e/Strength_V
+ - srmag/m-sd1/c13-e/Strength_SQ
+ - srmag/m-sd1/c13-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C13
mapping:
@@ -2454,27 +1864,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c13-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c13-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c13-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c13-e-ch1/current
+ - srmag/ps-corr-sh3/c13-e-ch2/current
+ - srmag/ps-corr-sh3/c13-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C14
mapping:
@@ -2485,27 +1890,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c14-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c14-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c14-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c14-a-ch1/current
+ - srmag/ps-corr-sh1/c14-a-ch2/current
+ - srmag/ps-corr-sh1/c14-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C14
mapping:
@@ -2518,18 +1918,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-a/Strength
- unit: m-2
+ - srmag/m-sd1/c14-a/Strength_H
+ - srmag/m-sd1/c14-a/Strength_V
+ - srmag/m-sd1/c14-a/Strength_SQ
+ - srmag/m-sd1/c14-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C14
mapping:
@@ -2542,18 +1934,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c14-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c14-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c14-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c14-a/Strength
- unit: m-2
+ - srmag/m-sf2/c14-a/Strength_H
+ - srmag/m-sf2/c14-a/Strength_V
+ - srmag/m-sf2/c14-a/Strength_SQ
+ - srmag/m-sf2/c14-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C14
mapping:
@@ -2566,18 +1950,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-b/Strength
- unit: m-2
+ - srmag/m-sd1/c14-b/Strength_H
+ - srmag/m-sd1/c14-b/Strength_V
+ - srmag/m-sd1/c14-b/Strength_SQ
+ - srmag/m-sd1/c14-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C14
mapping:
@@ -2588,27 +1964,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c14-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c14-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c14-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c14-b-ch1/current
+ - srmag/ps-corr-sh2/c14-b-ch2/current
+ - srmag/ps-corr-sh2/c14-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C14
mapping:
@@ -2621,18 +1992,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-d/Strength
- unit: m-2
+ - srmag/m-sd1/c14-d/Strength_H
+ - srmag/m-sd1/c14-d/Strength_V
+ - srmag/m-sd1/c14-d/Strength_SQ
+ - srmag/m-sd1/c14-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C14
mapping:
@@ -2645,18 +2008,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c14-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c14-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c14-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c14-e/Strength
- unit: m-2
+ - srmag/m-sf2/c14-e/Strength_H
+ - srmag/m-sf2/c14-e/Strength_V
+ - srmag/m-sf2/c14-e/Strength_SQ
+ - srmag/m-sf2/c14-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C14
mapping:
@@ -2669,18 +2024,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c14-e/Strength
- unit: m-2
+ - srmag/m-sd1/c14-e/Strength_H
+ - srmag/m-sd1/c14-e/Strength_V
+ - srmag/m-sd1/c14-e/Strength_SQ
+ - srmag/m-sd1/c14-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C14
mapping:
@@ -2691,27 +2038,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c14-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c14-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c14-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c14-e-ch1/current
+ - srmag/ps-corr-sh3/c14-e-ch2/current
+ - srmag/ps-corr-sh3/c14-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C15
mapping:
@@ -2722,27 +2064,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c15-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c15-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c15-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c15-a-ch1/current
+ - srmag/ps-corr-sh1/c15-a-ch2/current
+ - srmag/ps-corr-sh1/c15-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C15
mapping:
@@ -2755,18 +2092,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-a/Strength
- unit: m-2
+ - srmag/m-sd1/c15-a/Strength_H
+ - srmag/m-sd1/c15-a/Strength_V
+ - srmag/m-sd1/c15-a/Strength_SQ
+ - srmag/m-sd1/c15-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C15
mapping:
@@ -2779,18 +2108,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c15-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c15-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c15-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c15-a/Strength
- unit: m-2
+ - srmag/m-sf2/c15-a/Strength_H
+ - srmag/m-sf2/c15-a/Strength_V
+ - srmag/m-sf2/c15-a/Strength_SQ
+ - srmag/m-sf2/c15-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C15
mapping:
@@ -2803,18 +2124,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-b/Strength
- unit: m-2
+ - srmag/m-sd1/c15-b/Strength_H
+ - srmag/m-sd1/c15-b/Strength_V
+ - srmag/m-sd1/c15-b/Strength_SQ
+ - srmag/m-sd1/c15-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C15
mapping:
@@ -2825,27 +2138,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c15-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c15-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c15-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c15-b-ch1/current
+ - srmag/ps-corr-sh2/c15-b-ch2/current
+ - srmag/ps-corr-sh2/c15-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C15
mapping:
@@ -2858,18 +2166,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-d/Strength
- unit: m-2
+ - srmag/m-sd1/c15-d/Strength_H
+ - srmag/m-sd1/c15-d/Strength_V
+ - srmag/m-sd1/c15-d/Strength_SQ
+ - srmag/m-sd1/c15-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C15
mapping:
@@ -2882,18 +2182,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c15-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c15-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c15-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c15-e/Strength
- unit: m-2
+ - srmag/m-sf2/c15-e/Strength_H
+ - srmag/m-sf2/c15-e/Strength_V
+ - srmag/m-sf2/c15-e/Strength_SQ
+ - srmag/m-sf2/c15-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C15
mapping:
@@ -2906,18 +2198,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c15-e/Strength
- unit: m-2
+ - srmag/m-sd1/c15-e/Strength_H
+ - srmag/m-sd1/c15-e/Strength_V
+ - srmag/m-sd1/c15-e/Strength_SQ
+ - srmag/m-sd1/c15-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C15
mapping:
@@ -2928,27 +2212,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c15-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c15-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c15-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c15-e-ch1/current
+ - srmag/ps-corr-sh3/c15-e-ch2/current
+ - srmag/ps-corr-sh3/c15-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C16
mapping:
@@ -2959,27 +2238,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c16-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c16-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c16-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c16-a-ch1/current
+ - srmag/ps-corr-sh1/c16-a-ch2/current
+ - srmag/ps-corr-sh1/c16-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C16
mapping:
@@ -2992,18 +2266,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-a/Strength
- unit: m-2
+ - srmag/m-sd1/c16-a/Strength_H
+ - srmag/m-sd1/c16-a/Strength_V
+ - srmag/m-sd1/c16-a/Strength_SQ
+ - srmag/m-sd1/c16-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C16
mapping:
@@ -3016,18 +2282,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c16-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c16-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c16-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c16-a/Strength
- unit: m-2
+ - srmag/m-sf2/c16-a/Strength_H
+ - srmag/m-sf2/c16-a/Strength_V
+ - srmag/m-sf2/c16-a/Strength_SQ
+ - srmag/m-sf2/c16-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C16
mapping:
@@ -3040,18 +2298,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-b/Strength
- unit: m-2
+ - srmag/m-sd1/c16-b/Strength_H
+ - srmag/m-sd1/c16-b/Strength_V
+ - srmag/m-sd1/c16-b/Strength_SQ
+ - srmag/m-sd1/c16-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C16
mapping:
@@ -3062,27 +2312,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c16-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c16-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c16-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c16-b-ch1/current
+ - srmag/ps-corr-sh2/c16-b-ch2/current
+ - srmag/ps-corr-sh2/c16-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C16
mapping:
@@ -3095,18 +2340,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-d/Strength
- unit: m-2
+ - srmag/m-sd1/c16-d/Strength_H
+ - srmag/m-sd1/c16-d/Strength_V
+ - srmag/m-sd1/c16-d/Strength_SQ
+ - srmag/m-sd1/c16-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C16
mapping:
@@ -3119,18 +2356,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c16-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c16-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c16-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c16-e/Strength
- unit: m-2
+ - srmag/m-sf2/c16-e/Strength_H
+ - srmag/m-sf2/c16-e/Strength_V
+ - srmag/m-sf2/c16-e/Strength_SQ
+ - srmag/m-sf2/c16-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C16
mapping:
@@ -3143,18 +2372,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c16-e/Strength
- unit: m-2
+ - srmag/m-sd1/c16-e/Strength_H
+ - srmag/m-sd1/c16-e/Strength_V
+ - srmag/m-sd1/c16-e/Strength_SQ
+ - srmag/m-sd1/c16-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C16
mapping:
@@ -3165,27 +2386,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c16-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c16-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c16-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c16-e-ch1/current
+ - srmag/ps-corr-sh3/c16-e-ch2/current
+ - srmag/ps-corr-sh3/c16-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C17
mapping:
@@ -3196,27 +2412,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c17-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c17-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c17-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c17-a-ch1/current
+ - srmag/ps-corr-sh1/c17-a-ch2/current
+ - srmag/ps-corr-sh1/c17-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C17
mapping:
@@ -3229,18 +2440,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-a/Strength
- unit: m-2
+ - srmag/m-sd1/c17-a/Strength_H
+ - srmag/m-sd1/c17-a/Strength_V
+ - srmag/m-sd1/c17-a/Strength_SQ
+ - srmag/m-sd1/c17-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C17
mapping:
@@ -3253,18 +2456,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c17-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c17-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c17-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c17-a/Strength
- unit: m-2
+ - srmag/m-sf2/c17-a/Strength_H
+ - srmag/m-sf2/c17-a/Strength_V
+ - srmag/m-sf2/c17-a/Strength_SQ
+ - srmag/m-sf2/c17-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C17
mapping:
@@ -3277,18 +2472,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-b/Strength
- unit: m-2
+ - srmag/m-sd1/c17-b/Strength_H
+ - srmag/m-sd1/c17-b/Strength_V
+ - srmag/m-sd1/c17-b/Strength_SQ
+ - srmag/m-sd1/c17-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C17
mapping:
@@ -3299,27 +2486,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c17-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c17-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c17-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c17-b-ch1/current
+ - srmag/ps-corr-sh2/c17-b-ch2/current
+ - srmag/ps-corr-sh2/c17-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C17
mapping:
@@ -3332,18 +2514,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-d/Strength
- unit: m-2
+ - srmag/m-sd1/c17-d/Strength_H
+ - srmag/m-sd1/c17-d/Strength_V
+ - srmag/m-sd1/c17-d/Strength_SQ
+ - srmag/m-sd1/c17-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C17
mapping:
@@ -3356,18 +2530,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c17-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c17-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c17-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c17-e/Strength
- unit: m-2
+ - srmag/m-sf2/c17-e/Strength_H
+ - srmag/m-sf2/c17-e/Strength_V
+ - srmag/m-sf2/c17-e/Strength_SQ
+ - srmag/m-sf2/c17-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C17
mapping:
@@ -3380,18 +2546,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c17-e/Strength
- unit: m-2
+ - srmag/m-sd1/c17-e/Strength_H
+ - srmag/m-sd1/c17-e/Strength_V
+ - srmag/m-sd1/c17-e/Strength_SQ
+ - srmag/m-sd1/c17-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C17
mapping:
@@ -3402,27 +2560,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c17-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c17-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c17-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c17-e-ch1/current
+ - srmag/ps-corr-sh3/c17-e-ch2/current
+ - srmag/ps-corr-sh3/c17-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C18
mapping:
@@ -3433,27 +2586,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c18-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c18-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c18-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c18-a-ch1/current
+ - srmag/ps-corr-sh1/c18-a-ch2/current
+ - srmag/ps-corr-sh1/c18-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C18
mapping:
@@ -3466,18 +2614,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-a/Strength
- unit: m-2
+ - srmag/m-sd1/c18-a/Strength_H
+ - srmag/m-sd1/c18-a/Strength_V
+ - srmag/m-sd1/c18-a/Strength_SQ
+ - srmag/m-sd1/c18-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C18
mapping:
@@ -3490,18 +2630,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c18-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c18-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c18-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c18-a/Strength
- unit: m-2
+ - srmag/m-sf2/c18-a/Strength_H
+ - srmag/m-sf2/c18-a/Strength_V
+ - srmag/m-sf2/c18-a/Strength_SQ
+ - srmag/m-sf2/c18-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C18
mapping:
@@ -3514,18 +2646,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-b/Strength
- unit: m-2
+ - srmag/m-sd1/c18-b/Strength_H
+ - srmag/m-sd1/c18-b/Strength_V
+ - srmag/m-sd1/c18-b/Strength_SQ
+ - srmag/m-sd1/c18-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C18
mapping:
@@ -3536,27 +2660,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c18-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c18-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c18-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c18-b-ch1/current
+ - srmag/ps-corr-sh2/c18-b-ch2/current
+ - srmag/ps-corr-sh2/c18-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C18
mapping:
@@ -3569,18 +2688,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-d/Strength
- unit: m-2
+ - srmag/m-sd1/c18-d/Strength_H
+ - srmag/m-sd1/c18-d/Strength_V
+ - srmag/m-sd1/c18-d/Strength_SQ
+ - srmag/m-sd1/c18-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C18
mapping:
@@ -3593,18 +2704,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c18-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c18-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c18-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c18-e/Strength
- unit: m-2
+ - srmag/m-sf2/c18-e/Strength_H
+ - srmag/m-sf2/c18-e/Strength_V
+ - srmag/m-sf2/c18-e/Strength_SQ
+ - srmag/m-sf2/c18-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C18
mapping:
@@ -3617,18 +2720,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c18-e/Strength
- unit: m-2
+ - srmag/m-sd1/c18-e/Strength_H
+ - srmag/m-sd1/c18-e/Strength_V
+ - srmag/m-sd1/c18-e/Strength_SQ
+ - srmag/m-sd1/c18-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C18
mapping:
@@ -3639,27 +2734,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c18-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c18-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c18-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c18-e-ch1/current
+ - srmag/ps-corr-sh3/c18-e-ch2/current
+ - srmag/ps-corr-sh3/c18-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C19
mapping:
@@ -3670,27 +2760,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c19-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c19-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c19-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c19-a-ch1/current
+ - srmag/ps-corr-sh1/c19-a-ch2/current
+ - srmag/ps-corr-sh1/c19-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C19
mapping:
@@ -3703,18 +2788,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-a/Strength
- unit: m-2
+ - srmag/m-sd1/c19-a/Strength_H
+ - srmag/m-sd1/c19-a/Strength_V
+ - srmag/m-sd1/c19-a/Strength_SQ
+ - srmag/m-sd1/c19-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C19
mapping:
@@ -3727,18 +2804,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c19-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c19-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c19-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c19-a/Strength
- unit: m-2
+ - srmag/m-sf2/c19-a/Strength_H
+ - srmag/m-sf2/c19-a/Strength_V
+ - srmag/m-sf2/c19-a/Strength_SQ
+ - srmag/m-sf2/c19-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C19
mapping:
@@ -3751,18 +2820,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-b/Strength
- unit: m-2
+ - srmag/m-sd1/c19-b/Strength_H
+ - srmag/m-sd1/c19-b/Strength_V
+ - srmag/m-sd1/c19-b/Strength_SQ
+ - srmag/m-sd1/c19-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C19
mapping:
@@ -3773,27 +2834,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c19-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c19-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c19-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c19-b-ch1/current
+ - srmag/ps-corr-sh2/c19-b-ch2/current
+ - srmag/ps-corr-sh2/c19-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C19
mapping:
@@ -3806,18 +2862,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-d/Strength
- unit: m-2
+ - srmag/m-sd1/c19-d/Strength_H
+ - srmag/m-sd1/c19-d/Strength_V
+ - srmag/m-sd1/c19-d/Strength_SQ
+ - srmag/m-sd1/c19-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C19
mapping:
@@ -3830,18 +2878,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c19-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c19-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c19-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c19-e/Strength
- unit: m-2
+ - srmag/m-sf2/c19-e/Strength_H
+ - srmag/m-sf2/c19-e/Strength_V
+ - srmag/m-sf2/c19-e/Strength_SQ
+ - srmag/m-sf2/c19-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C19
mapping:
@@ -3854,18 +2894,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c19-e/Strength
- unit: m-2
+ - srmag/m-sd1/c19-e/Strength_H
+ - srmag/m-sd1/c19-e/Strength_V
+ - srmag/m-sd1/c19-e/Strength_SQ
+ - srmag/m-sd1/c19-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C19
mapping:
@@ -3876,27 +2908,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c19-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c19-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c19-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c19-e-ch1/current
+ - srmag/ps-corr-sh3/c19-e-ch2/current
+ - srmag/ps-corr-sh3/c19-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C20
mapping:
@@ -3907,27 +2934,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c20-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c20-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c20-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c20-a-ch1/current
+ - srmag/ps-corr-sh1/c20-a-ch2/current
+ - srmag/ps-corr-sh1/c20-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C20
mapping:
@@ -3940,18 +2962,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-a/Strength
- unit: m-2
+ - srmag/m-sd1/c20-a/Strength_H
+ - srmag/m-sd1/c20-a/Strength_V
+ - srmag/m-sd1/c20-a/Strength_SQ
+ - srmag/m-sd1/c20-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C20
mapping:
@@ -3964,18 +2978,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c20-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c20-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c20-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c20-a/Strength
- unit: m-2
+ - srmag/m-sf2/c20-a/Strength_H
+ - srmag/m-sf2/c20-a/Strength_V
+ - srmag/m-sf2/c20-a/Strength_SQ
+ - srmag/m-sf2/c20-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C20
mapping:
@@ -3988,18 +2994,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-b/Strength
- unit: m-2
+ - srmag/m-sd1/c20-b/Strength_H
+ - srmag/m-sd1/c20-b/Strength_V
+ - srmag/m-sd1/c20-b/Strength_SQ
+ - srmag/m-sd1/c20-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C20
mapping:
@@ -4010,27 +3008,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c20-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c20-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c20-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c20-b-ch1/current
+ - srmag/ps-corr-sh2/c20-b-ch2/current
+ - srmag/ps-corr-sh2/c20-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C20
mapping:
@@ -4043,18 +3036,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-d/Strength
- unit: m-2
+ - srmag/m-sd1/c20-d/Strength_H
+ - srmag/m-sd1/c20-d/Strength_V
+ - srmag/m-sd1/c20-d/Strength_SQ
+ - srmag/m-sd1/c20-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C20
mapping:
@@ -4067,18 +3052,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c20-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c20-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c20-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c20-e/Strength
- unit: m-2
+ - srmag/m-sf2/c20-e/Strength_H
+ - srmag/m-sf2/c20-e/Strength_V
+ - srmag/m-sf2/c20-e/Strength_SQ
+ - srmag/m-sf2/c20-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C20
mapping:
@@ -4091,18 +3068,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c20-e/Strength
- unit: m-2
+ - srmag/m-sd1/c20-e/Strength_H
+ - srmag/m-sd1/c20-e/Strength_V
+ - srmag/m-sd1/c20-e/Strength_SQ
+ - srmag/m-sd1/c20-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C20
mapping:
@@ -4113,27 +3082,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c20-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c20-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c20-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c20-e-ch1/current
+ - srmag/ps-corr-sh3/c20-e-ch2/current
+ - srmag/ps-corr-sh3/c20-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C21
mapping:
@@ -4144,27 +3108,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c21-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c21-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c21-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c21-a-ch1/current
+ - srmag/ps-corr-sh1/c21-a-ch2/current
+ - srmag/ps-corr-sh1/c21-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C21
mapping:
@@ -4177,18 +3136,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-a/Strength
- unit: m-2
+ - srmag/m-sd1/c21-a/Strength_H
+ - srmag/m-sd1/c21-a/Strength_V
+ - srmag/m-sd1/c21-a/Strength_SQ
+ - srmag/m-sd1/c21-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C21
mapping:
@@ -4201,18 +3152,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c21-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c21-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c21-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c21-a/Strength
- unit: m-2
+ - srmag/m-sf2/c21-a/Strength_H
+ - srmag/m-sf2/c21-a/Strength_V
+ - srmag/m-sf2/c21-a/Strength_SQ
+ - srmag/m-sf2/c21-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C21
mapping:
@@ -4225,18 +3168,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-b/Strength
- unit: m-2
+ - srmag/m-sd1/c21-b/Strength_H
+ - srmag/m-sd1/c21-b/Strength_V
+ - srmag/m-sd1/c21-b/Strength_SQ
+ - srmag/m-sd1/c21-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C21
mapping:
@@ -4247,27 +3182,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c21-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c21-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c21-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c21-b-ch1/current
+ - srmag/ps-corr-sh2/c21-b-ch2/current
+ - srmag/ps-corr-sh2/c21-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C21
mapping:
@@ -4280,18 +3210,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-d/Strength
- unit: m-2
+ - srmag/m-sd1/c21-d/Strength_H
+ - srmag/m-sd1/c21-d/Strength_V
+ - srmag/m-sd1/c21-d/Strength_SQ
+ - srmag/m-sd1/c21-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C21
mapping:
@@ -4304,18 +3226,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c21-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c21-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c21-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c21-e/Strength
- unit: m-2
+ - srmag/m-sf2/c21-e/Strength_H
+ - srmag/m-sf2/c21-e/Strength_V
+ - srmag/m-sf2/c21-e/Strength_SQ
+ - srmag/m-sf2/c21-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C21
mapping:
@@ -4328,18 +3242,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c21-e/Strength
- unit: m-2
+ - srmag/m-sd1/c21-e/Strength_H
+ - srmag/m-sd1/c21-e/Strength_V
+ - srmag/m-sd1/c21-e/Strength_SQ
+ - srmag/m-sd1/c21-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C21
mapping:
@@ -4350,27 +3256,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c21-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c21-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c21-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c21-e-ch1/current
+ - srmag/ps-corr-sh3/c21-e-ch2/current
+ - srmag/ps-corr-sh3/c21-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C22
mapping:
@@ -4381,27 +3282,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c22-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c22-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c22-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c22-a-ch1/current
+ - srmag/ps-corr-sh1/c22-a-ch2/current
+ - srmag/ps-corr-sh1/c22-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C22
mapping:
@@ -4414,18 +3310,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-a/Strength
- unit: m-2
+ - srmag/m-sd1/c22-a/Strength_H
+ - srmag/m-sd1/c22-a/Strength_V
+ - srmag/m-sd1/c22-a/Strength_SQ
+ - srmag/m-sd1/c22-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C22
mapping:
@@ -4438,18 +3326,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c22-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c22-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c22-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c22-a/Strength
- unit: m-2
+ - srmag/m-sf2/c22-a/Strength_H
+ - srmag/m-sf2/c22-a/Strength_V
+ - srmag/m-sf2/c22-a/Strength_SQ
+ - srmag/m-sf2/c22-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C22
mapping:
@@ -4462,18 +3342,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-b/Strength
- unit: m-2
+ - srmag/m-sd1/c22-b/Strength_H
+ - srmag/m-sd1/c22-b/Strength_V
+ - srmag/m-sd1/c22-b/Strength_SQ
+ - srmag/m-sd1/c22-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C22
mapping:
@@ -4484,27 +3356,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c22-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c22-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c22-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c22-b-ch1/current
+ - srmag/ps-corr-sh2/c22-b-ch2/current
+ - srmag/ps-corr-sh2/c22-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C22
mapping:
@@ -4517,18 +3384,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-d/Strength
- unit: m-2
+ - srmag/m-sd1/c22-d/Strength_H
+ - srmag/m-sd1/c22-d/Strength_V
+ - srmag/m-sd1/c22-d/Strength_SQ
+ - srmag/m-sd1/c22-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C22
mapping:
@@ -4541,18 +3400,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c22-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c22-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c22-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c22-e/Strength
- unit: m-2
+ - srmag/m-sf2/c22-e/Strength_H
+ - srmag/m-sf2/c22-e/Strength_V
+ - srmag/m-sf2/c22-e/Strength_SQ
+ - srmag/m-sf2/c22-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C22
mapping:
@@ -4565,18 +3416,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c22-e/Strength
- unit: m-2
+ - srmag/m-sd1/c22-e/Strength_H
+ - srmag/m-sd1/c22-e/Strength_V
+ - srmag/m-sd1/c22-e/Strength_SQ
+ - srmag/m-sd1/c22-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C22
mapping:
@@ -4587,27 +3430,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c22-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c22-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c22-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c22-e-ch1/current
+ - srmag/ps-corr-sh3/c22-e-ch2/current
+ - srmag/ps-corr-sh3/c22-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C23
mapping:
@@ -4618,27 +3456,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c23-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c23-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c23-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c23-a-ch1/current
+ - srmag/ps-corr-sh1/c23-a-ch2/current
+ - srmag/ps-corr-sh1/c23-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C23
mapping:
@@ -4651,18 +3484,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-a/Strength
- unit: m-2
+ - srmag/m-sd1/c23-a/Strength_H
+ - srmag/m-sd1/c23-a/Strength_V
+ - srmag/m-sd1/c23-a/Strength_SQ
+ - srmag/m-sd1/c23-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C23
mapping:
@@ -4675,18 +3500,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c23-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c23-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c23-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c23-a/Strength
- unit: m-2
+ - srmag/m-sf2/c23-a/Strength_H
+ - srmag/m-sf2/c23-a/Strength_V
+ - srmag/m-sf2/c23-a/Strength_SQ
+ - srmag/m-sf2/c23-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C23
mapping:
@@ -4699,18 +3516,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-b/Strength
- unit: m-2
+ - srmag/m-sd1/c23-b/Strength_H
+ - srmag/m-sd1/c23-b/Strength_V
+ - srmag/m-sd1/c23-b/Strength_SQ
+ - srmag/m-sd1/c23-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C23
mapping:
@@ -4721,27 +3530,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c23-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c23-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c23-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c23-b-ch1/current
+ - srmag/ps-corr-sh2/c23-b-ch2/current
+ - srmag/ps-corr-sh2/c23-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C23
mapping:
@@ -4754,18 +3558,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-d/Strength
- unit: m-2
+ - srmag/m-sd1/c23-d/Strength_H
+ - srmag/m-sd1/c23-d/Strength_V
+ - srmag/m-sd1/c23-d/Strength_SQ
+ - srmag/m-sd1/c23-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C23
mapping:
@@ -4778,18 +3574,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c23-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c23-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c23-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c23-e/Strength
- unit: m-2
+ - srmag/m-sf2/c23-e/Strength_H
+ - srmag/m-sf2/c23-e/Strength_V
+ - srmag/m-sf2/c23-e/Strength_SQ
+ - srmag/m-sf2/c23-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C23
mapping:
@@ -4802,18 +3590,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c23-e/Strength
- unit: m-2
+ - srmag/m-sd1/c23-e/Strength_H
+ - srmag/m-sd1/c23-e/Strength_V
+ - srmag/m-sd1/c23-e/Strength_SQ
+ - srmag/m-sd1/c23-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C23
mapping:
@@ -4824,27 +3604,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c23-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c23-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c23-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c23-e-ch1/current
+ - srmag/ps-corr-sh3/c23-e-ch2/current
+ - srmag/ps-corr-sh3/c23-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C24
mapping:
@@ -4855,27 +3630,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c24-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c24-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c24-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c24-a-ch1/current
+ - srmag/ps-corr-sh1/c24-a-ch2/current
+ - srmag/ps-corr-sh1/c24-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C24
mapping:
@@ -4888,18 +3658,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-a/Strength
- unit: m-2
+ - srmag/m-sd1/c24-a/Strength_H
+ - srmag/m-sd1/c24-a/Strength_V
+ - srmag/m-sd1/c24-a/Strength_SQ
+ - srmag/m-sd1/c24-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C24
mapping:
@@ -4912,18 +3674,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c24-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c24-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c24-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c24-a/Strength
- unit: m-2
+ - srmag/m-sf2/c24-a/Strength_H
+ - srmag/m-sf2/c24-a/Strength_V
+ - srmag/m-sf2/c24-a/Strength_SQ
+ - srmag/m-sf2/c24-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C24
mapping:
@@ -4936,18 +3690,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-b/Strength
- unit: m-2
+ - srmag/m-sd1/c24-b/Strength_H
+ - srmag/m-sd1/c24-b/Strength_V
+ - srmag/m-sd1/c24-b/Strength_SQ
+ - srmag/m-sd1/c24-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C24
mapping:
@@ -4958,27 +3704,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c24-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c24-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c24-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c24-b-ch1/current
+ - srmag/ps-corr-sh2/c24-b-ch2/current
+ - srmag/ps-corr-sh2/c24-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C24
mapping:
@@ -4991,18 +3732,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-d/Strength
- unit: m-2
+ - srmag/m-sd1/c24-d/Strength_H
+ - srmag/m-sd1/c24-d/Strength_V
+ - srmag/m-sd1/c24-d/Strength_SQ
+ - srmag/m-sd1/c24-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C24
mapping:
@@ -5015,18 +3748,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c24-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c24-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c24-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c24-e/Strength
- unit: m-2
+ - srmag/m-sf2/c24-e/Strength_H
+ - srmag/m-sf2/c24-e/Strength_V
+ - srmag/m-sf2/c24-e/Strength_SQ
+ - srmag/m-sf2/c24-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C24
mapping:
@@ -5039,18 +3764,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c24-e/Strength
- unit: m-2
+ - srmag/m-sd1/c24-e/Strength_H
+ - srmag/m-sd1/c24-e/Strength_V
+ - srmag/m-sd1/c24-e/Strength_SQ
+ - srmag/m-sd1/c24-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C24
mapping:
@@ -5061,27 +3778,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c24-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c24-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c24-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c24-e-ch1/current
+ - srmag/ps-corr-sh3/c24-e-ch2/current
+ - srmag/ps-corr-sh3/c24-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C25
mapping:
@@ -5092,27 +3804,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c25-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c25-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c25-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c25-a-ch1/current
+ - srmag/ps-corr-sh1/c25-a-ch2/current
+ - srmag/ps-corr-sh1/c25-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C25
mapping:
@@ -5125,18 +3832,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-a/Strength
- unit: m-2
+ - srmag/m-sd1/c25-a/Strength_H
+ - srmag/m-sd1/c25-a/Strength_V
+ - srmag/m-sd1/c25-a/Strength_SQ
+ - srmag/m-sd1/c25-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C25
mapping:
@@ -5149,18 +3848,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c25-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c25-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c25-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c25-a/Strength
- unit: m-2
+ - srmag/m-sf2/c25-a/Strength_H
+ - srmag/m-sf2/c25-a/Strength_V
+ - srmag/m-sf2/c25-a/Strength_SQ
+ - srmag/m-sf2/c25-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C25
mapping:
@@ -5173,18 +3864,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-b/Strength
- unit: m-2
+ - srmag/m-sd1/c25-b/Strength_H
+ - srmag/m-sd1/c25-b/Strength_V
+ - srmag/m-sd1/c25-b/Strength_SQ
+ - srmag/m-sd1/c25-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C25
mapping:
@@ -5195,27 +3878,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c25-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c25-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c25-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c25-b-ch1/current
+ - srmag/ps-corr-sh2/c25-b-ch2/current
+ - srmag/ps-corr-sh2/c25-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C25
mapping:
@@ -5228,18 +3906,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-d/Strength
- unit: m-2
+ - srmag/m-sd1/c25-d/Strength_H
+ - srmag/m-sd1/c25-d/Strength_V
+ - srmag/m-sd1/c25-d/Strength_SQ
+ - srmag/m-sd1/c25-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C25
mapping:
@@ -5252,18 +3922,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c25-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c25-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c25-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c25-e/Strength
- unit: m-2
+ - srmag/m-sf2/c25-e/Strength_H
+ - srmag/m-sf2/c25-e/Strength_V
+ - srmag/m-sf2/c25-e/Strength_SQ
+ - srmag/m-sf2/c25-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C25
mapping:
@@ -5276,18 +3938,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c25-e/Strength
- unit: m-2
+ - srmag/m-sd1/c25-e/Strength_H
+ - srmag/m-sd1/c25-e/Strength_V
+ - srmag/m-sd1/c25-e/Strength_SQ
+ - srmag/m-sd1/c25-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C25
mapping:
@@ -5298,27 +3952,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c25-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c25-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c25-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c25-e-ch1/current
+ - srmag/ps-corr-sh3/c25-e-ch2/current
+ - srmag/ps-corr-sh3/c25-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C26
mapping:
@@ -5329,27 +3978,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c26-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c26-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c26-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c26-a-ch1/current
+ - srmag/ps-corr-sh1/c26-a-ch2/current
+ - srmag/ps-corr-sh1/c26-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C26
mapping:
@@ -5362,18 +4006,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-a/Strength
- unit: m-2
+ - srmag/m-sd1/c26-a/Strength_H
+ - srmag/m-sd1/c26-a/Strength_V
+ - srmag/m-sd1/c26-a/Strength_SQ
+ - srmag/m-sd1/c26-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C26
mapping:
@@ -5386,18 +4022,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c26-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c26-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c26-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c26-a/Strength
- unit: m-2
+ - srmag/m-sf2/c26-a/Strength_H
+ - srmag/m-sf2/c26-a/Strength_V
+ - srmag/m-sf2/c26-a/Strength_SQ
+ - srmag/m-sf2/c26-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C26
mapping:
@@ -5410,18 +4038,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-b/Strength
- unit: m-2
+ - srmag/m-sd1/c26-b/Strength_H
+ - srmag/m-sd1/c26-b/Strength_V
+ - srmag/m-sd1/c26-b/Strength_SQ
+ - srmag/m-sd1/c26-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C26
mapping:
@@ -5432,27 +4052,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c26-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c26-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c26-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c26-b-ch1/current
+ - srmag/ps-corr-sh2/c26-b-ch2/current
+ - srmag/ps-corr-sh2/c26-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C26
mapping:
@@ -5465,18 +4080,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-d/Strength
- unit: m-2
+ - srmag/m-sd1/c26-d/Strength_H
+ - srmag/m-sd1/c26-d/Strength_V
+ - srmag/m-sd1/c26-d/Strength_SQ
+ - srmag/m-sd1/c26-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C26
mapping:
@@ -5489,18 +4096,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c26-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c26-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c26-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c26-e/Strength
- unit: m-2
+ - srmag/m-sf2/c26-e/Strength_H
+ - srmag/m-sf2/c26-e/Strength_V
+ - srmag/m-sf2/c26-e/Strength_SQ
+ - srmag/m-sf2/c26-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C26
mapping:
@@ -5513,18 +4112,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c26-e/Strength
- unit: m-2
+ - srmag/m-sd1/c26-e/Strength_H
+ - srmag/m-sd1/c26-e/Strength_V
+ - srmag/m-sd1/c26-e/Strength_SQ
+ - srmag/m-sd1/c26-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C26
mapping:
@@ -5535,27 +4126,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c26-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c26-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c26-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c26-e-ch1/current
+ - srmag/ps-corr-sh3/c26-e-ch2/current
+ - srmag/ps-corr-sh3/c26-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C27
mapping:
@@ -5566,27 +4152,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c27-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c27-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c27-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c27-a-ch1/current
+ - srmag/ps-corr-sh1/c27-a-ch2/current
+ - srmag/ps-corr-sh1/c27-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C27
mapping:
@@ -5599,18 +4180,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-a/Strength
- unit: m-2
+ - srmag/m-sd1/c27-a/Strength_H
+ - srmag/m-sd1/c27-a/Strength_V
+ - srmag/m-sd1/c27-a/Strength_SQ
+ - srmag/m-sd1/c27-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C27
mapping:
@@ -5623,18 +4196,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c27-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c27-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c27-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c27-a/Strength
- unit: m-2
+ - srmag/m-sf2/c27-a/Strength_H
+ - srmag/m-sf2/c27-a/Strength_V
+ - srmag/m-sf2/c27-a/Strength_SQ
+ - srmag/m-sf2/c27-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C27
mapping:
@@ -5647,18 +4212,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-b/Strength
- unit: m-2
+ - srmag/m-sd1/c27-b/Strength_H
+ - srmag/m-sd1/c27-b/Strength_V
+ - srmag/m-sd1/c27-b/Strength_SQ
+ - srmag/m-sd1/c27-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C27
mapping:
@@ -5669,27 +4226,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c27-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c27-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c27-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c27-b-ch1/current
+ - srmag/ps-corr-sh2/c27-b-ch2/current
+ - srmag/ps-corr-sh2/c27-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C27
mapping:
@@ -5702,18 +4254,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-d/Strength
- unit: m-2
+ - srmag/m-sd1/c27-d/Strength_H
+ - srmag/m-sd1/c27-d/Strength_V
+ - srmag/m-sd1/c27-d/Strength_SQ
+ - srmag/m-sd1/c27-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C27
mapping:
@@ -5726,18 +4270,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c27-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c27-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c27-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c27-e/Strength
- unit: m-2
+ - srmag/m-sf2/c27-e/Strength_H
+ - srmag/m-sf2/c27-e/Strength_V
+ - srmag/m-sf2/c27-e/Strength_SQ
+ - srmag/m-sf2/c27-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C27
mapping:
@@ -5750,18 +4286,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c27-e/Strength
- unit: m-2
+ - srmag/m-sd1/c27-e/Strength_H
+ - srmag/m-sd1/c27-e/Strength_V
+ - srmag/m-sd1/c27-e/Strength_SQ
+ - srmag/m-sd1/c27-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C27
mapping:
@@ -5772,27 +4300,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c27-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c27-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c27-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c27-e-ch1/current
+ - srmag/ps-corr-sh3/c27-e-ch2/current
+ - srmag/ps-corr-sh3/c27-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C28
mapping:
@@ -5803,27 +4326,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c28-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c28-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c28-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c28-a-ch1/current
+ - srmag/ps-corr-sh1/c28-a-ch2/current
+ - srmag/ps-corr-sh1/c28-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C28
mapping:
@@ -5836,18 +4354,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-a/Strength
- unit: m-2
+ - srmag/m-sd1/c28-a/Strength_H
+ - srmag/m-sd1/c28-a/Strength_V
+ - srmag/m-sd1/c28-a/Strength_SQ
+ - srmag/m-sd1/c28-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C28
mapping:
@@ -5860,18 +4370,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c28-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c28-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c28-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c28-a/Strength
- unit: m-2
+ - srmag/m-sf2/c28-a/Strength_H
+ - srmag/m-sf2/c28-a/Strength_V
+ - srmag/m-sf2/c28-a/Strength_SQ
+ - srmag/m-sf2/c28-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C28
mapping:
@@ -5884,18 +4386,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-b/Strength
- unit: m-2
+ - srmag/m-sd1/c28-b/Strength_H
+ - srmag/m-sd1/c28-b/Strength_V
+ - srmag/m-sd1/c28-b/Strength_SQ
+ - srmag/m-sd1/c28-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C28
mapping:
@@ -5906,27 +4400,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c28-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c28-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c28-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c28-b-ch1/current
+ - srmag/ps-corr-sh2/c28-b-ch2/current
+ - srmag/ps-corr-sh2/c28-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C28
mapping:
@@ -5939,18 +4428,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-d/Strength
- unit: m-2
+ - srmag/m-sd1/c28-d/Strength_H
+ - srmag/m-sd1/c28-d/Strength_V
+ - srmag/m-sd1/c28-d/Strength_SQ
+ - srmag/m-sd1/c28-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C28
mapping:
@@ -5963,18 +4444,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c28-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c28-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c28-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c28-e/Strength
- unit: m-2
+ - srmag/m-sf2/c28-e/Strength_H
+ - srmag/m-sf2/c28-e/Strength_V
+ - srmag/m-sf2/c28-e/Strength_SQ
+ - srmag/m-sf2/c28-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C28
mapping:
@@ -5987,18 +4460,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c28-e/Strength
- unit: m-2
+ - srmag/m-sd1/c28-e/Strength_H
+ - srmag/m-sd1/c28-e/Strength_V
+ - srmag/m-sd1/c28-e/Strength_SQ
+ - srmag/m-sd1/c28-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C28
mapping:
@@ -6009,27 +4474,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c28-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c28-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c28-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c28-e-ch1/current
+ - srmag/ps-corr-sh3/c28-e-ch2/current
+ - srmag/ps-corr-sh3/c28-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C29
mapping:
@@ -6040,27 +4500,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c29-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c29-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c29-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c29-a-ch1/current
+ - srmag/ps-corr-sh1/c29-a-ch2/current
+ - srmag/ps-corr-sh1/c29-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C29
mapping:
@@ -6073,18 +4528,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-a/Strength
- unit: m-2
+ - srmag/m-sd1/c29-a/Strength_H
+ - srmag/m-sd1/c29-a/Strength_V
+ - srmag/m-sd1/c29-a/Strength_SQ
+ - srmag/m-sd1/c29-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C29
mapping:
@@ -6097,18 +4544,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c29-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c29-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c29-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c29-a/Strength
- unit: m-2
+ - srmag/m-sf2/c29-a/Strength_H
+ - srmag/m-sf2/c29-a/Strength_V
+ - srmag/m-sf2/c29-a/Strength_SQ
+ - srmag/m-sf2/c29-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C29
mapping:
@@ -6121,18 +4560,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-b/Strength
- unit: m-2
+ - srmag/m-sd1/c29-b/Strength_H
+ - srmag/m-sd1/c29-b/Strength_V
+ - srmag/m-sd1/c29-b/Strength_SQ
+ - srmag/m-sd1/c29-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C29
mapping:
@@ -6143,27 +4574,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c29-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c29-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c29-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c29-b-ch1/current
+ - srmag/ps-corr-sh2/c29-b-ch2/current
+ - srmag/ps-corr-sh2/c29-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C29
mapping:
@@ -6176,18 +4602,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-d/Strength
- unit: m-2
+ - srmag/m-sd1/c29-d/Strength_H
+ - srmag/m-sd1/c29-d/Strength_V
+ - srmag/m-sd1/c29-d/Strength_SQ
+ - srmag/m-sd1/c29-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C29
mapping:
@@ -6200,18 +4618,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c29-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c29-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c29-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c29-e/Strength
- unit: m-2
+ - srmag/m-sf2/c29-e/Strength_H
+ - srmag/m-sf2/c29-e/Strength_V
+ - srmag/m-sf2/c29-e/Strength_SQ
+ - srmag/m-sf2/c29-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C29
mapping:
@@ -6224,18 +4634,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c29-e/Strength
- unit: m-2
+ - srmag/m-sd1/c29-e/Strength_H
+ - srmag/m-sd1/c29-e/Strength_V
+ - srmag/m-sd1/c29-e/Strength_SQ
+ - srmag/m-sd1/c29-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C29
mapping:
@@ -6246,27 +4648,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c29-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c29-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c29-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c29-e-ch1/current
+ - srmag/ps-corr-sh3/c29-e-ch2/current
+ - srmag/ps-corr-sh3/c29-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C30
mapping:
@@ -6277,27 +4674,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c30-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c30-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c30-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c30-a-ch1/current
+ - srmag/ps-corr-sh1/c30-a-ch2/current
+ - srmag/ps-corr-sh1/c30-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C30
mapping:
@@ -6310,18 +4702,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-a/Strength
- unit: m-2
+ - srmag/m-sd1/c30-a/Strength_H
+ - srmag/m-sd1/c30-a/Strength_V
+ - srmag/m-sd1/c30-a/Strength_SQ
+ - srmag/m-sd1/c30-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C30
mapping:
@@ -6334,18 +4718,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c30-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c30-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c30-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c30-a/Strength
- unit: m-2
+ - srmag/m-sf2/c30-a/Strength_H
+ - srmag/m-sf2/c30-a/Strength_V
+ - srmag/m-sf2/c30-a/Strength_SQ
+ - srmag/m-sf2/c30-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C30
mapping:
@@ -6358,18 +4734,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-b/Strength
- unit: m-2
+ - srmag/m-sd1/c30-b/Strength_H
+ - srmag/m-sd1/c30-b/Strength_V
+ - srmag/m-sd1/c30-b/Strength_SQ
+ - srmag/m-sd1/c30-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C30
mapping:
@@ -6380,27 +4748,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c30-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c30-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c30-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c30-b-ch1/current
+ - srmag/ps-corr-sh2/c30-b-ch2/current
+ - srmag/ps-corr-sh2/c30-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C30
mapping:
@@ -6413,18 +4776,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-d/Strength
- unit: m-2
+ - srmag/m-sd1/c30-d/Strength_H
+ - srmag/m-sd1/c30-d/Strength_V
+ - srmag/m-sd1/c30-d/Strength_SQ
+ - srmag/m-sd1/c30-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C30
mapping:
@@ -6437,18 +4792,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c30-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c30-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c30-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c30-e/Strength
- unit: m-2
+ - srmag/m-sf2/c30-e/Strength_H
+ - srmag/m-sf2/c30-e/Strength_V
+ - srmag/m-sf2/c30-e/Strength_SQ
+ - srmag/m-sf2/c30-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C30
mapping:
@@ -6461,18 +4808,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c30-e/Strength
- unit: m-2
+ - srmag/m-sd1/c30-e/Strength_H
+ - srmag/m-sd1/c30-e/Strength_V
+ - srmag/m-sd1/c30-e/Strength_SQ
+ - srmag/m-sd1/c30-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C30
mapping:
@@ -6483,27 +4822,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c30-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c30-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c30-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c30-e-ch1/current
+ - srmag/ps-corr-sh3/c30-e-ch2/current
+ - srmag/ps-corr-sh3/c30-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C31
mapping:
@@ -6514,27 +4848,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c31-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c31-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c31-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c31-a-ch1/current
+ - srmag/ps-corr-sh1/c31-a-ch2/current
+ - srmag/ps-corr-sh1/c31-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C31
mapping:
@@ -6547,18 +4876,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-a/Strength
- unit: m-2
+ - srmag/m-sd1/c31-a/Strength_H
+ - srmag/m-sd1/c31-a/Strength_V
+ - srmag/m-sd1/c31-a/Strength_SQ
+ - srmag/m-sd1/c31-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C31
mapping:
@@ -6571,18 +4892,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c31-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c31-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c31-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c31-a/Strength
- unit: m-2
+ - srmag/m-sf2/c31-a/Strength_H
+ - srmag/m-sf2/c31-a/Strength_V
+ - srmag/m-sf2/c31-a/Strength_SQ
+ - srmag/m-sf2/c31-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C31
mapping:
@@ -6595,18 +4908,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-b/Strength
- unit: m-2
+ - srmag/m-sd1/c31-b/Strength_H
+ - srmag/m-sd1/c31-b/Strength_V
+ - srmag/m-sd1/c31-b/Strength_SQ
+ - srmag/m-sd1/c31-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C31
mapping:
@@ -6617,27 +4922,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c31-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c31-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c31-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c31-b-ch1/current
+ - srmag/ps-corr-sh2/c31-b-ch2/current
+ - srmag/ps-corr-sh2/c31-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C31
mapping:
@@ -6650,18 +4950,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-d/Strength
- unit: m-2
+ - srmag/m-sd1/c31-d/Strength_H
+ - srmag/m-sd1/c31-d/Strength_V
+ - srmag/m-sd1/c31-d/Strength_SQ
+ - srmag/m-sd1/c31-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C31
mapping:
@@ -6674,18 +4966,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c31-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c31-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c31-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c31-e/Strength
- unit: m-2
+ - srmag/m-sf2/c31-e/Strength_H
+ - srmag/m-sf2/c31-e/Strength_V
+ - srmag/m-sf2/c31-e/Strength_SQ
+ - srmag/m-sf2/c31-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C31
mapping:
@@ -6698,18 +4982,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c31-e/Strength
- unit: m-2
+ - srmag/m-sd1/c31-e/Strength_H
+ - srmag/m-sd1/c31-e/Strength_V
+ - srmag/m-sd1/c31-e/Strength_SQ
+ - srmag/m-sd1/c31-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C31
mapping:
@@ -6720,27 +4996,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c31-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c31-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c31-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c31-e-ch1/current
+ - srmag/ps-corr-sh3/c31-e-ch2/current
+ - srmag/ps-corr-sh3/c31-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C32
mapping:
@@ -6751,27 +5022,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c32-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c32-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c32-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c32-a-ch1/current
+ - srmag/ps-corr-sh1/c32-a-ch2/current
+ - srmag/ps-corr-sh1/c32-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C32
mapping:
@@ -6784,18 +5050,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-a/Strength
- unit: m-2
+ - srmag/m-sd1/c32-a/Strength_H
+ - srmag/m-sd1/c32-a/Strength_V
+ - srmag/m-sd1/c32-a/Strength_SQ
+ - srmag/m-sd1/c32-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C32
mapping:
@@ -6808,18 +5066,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c32-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c32-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c32-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c32-a/Strength
- unit: m-2
+ - srmag/m-sf2/c32-a/Strength_H
+ - srmag/m-sf2/c32-a/Strength_V
+ - srmag/m-sf2/c32-a/Strength_SQ
+ - srmag/m-sf2/c32-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C32
mapping:
@@ -6832,18 +5082,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-b/Strength
- unit: m-2
+ - srmag/m-sd1/c32-b/Strength_H
+ - srmag/m-sd1/c32-b/Strength_V
+ - srmag/m-sd1/c32-b/Strength_SQ
+ - srmag/m-sd1/c32-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C32
mapping:
@@ -6854,27 +5096,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c32-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c32-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c32-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c32-b-ch1/current
+ - srmag/ps-corr-sh2/c32-b-ch2/current
+ - srmag/ps-corr-sh2/c32-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C32
mapping:
@@ -6887,18 +5124,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-d/Strength
- unit: m-2
+ - srmag/m-sd1/c32-d/Strength_H
+ - srmag/m-sd1/c32-d/Strength_V
+ - srmag/m-sd1/c32-d/Strength_SQ
+ - srmag/m-sd1/c32-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C32
mapping:
@@ -6911,18 +5140,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c32-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c32-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c32-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c32-e/Strength
- unit: m-2
+ - srmag/m-sf2/c32-e/Strength_H
+ - srmag/m-sf2/c32-e/Strength_V
+ - srmag/m-sf2/c32-e/Strength_SQ
+ - srmag/m-sf2/c32-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C32
mapping:
@@ -6935,18 +5156,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c32-e/Strength
- unit: m-2
+ - srmag/m-sd1/c32-e/Strength_H
+ - srmag/m-sd1/c32-e/Strength_V
+ - srmag/m-sd1/c32-e/Strength_SQ
+ - srmag/m-sd1/c32-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C32
mapping:
@@ -6957,27 +5170,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c32-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c32-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c32-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c32-e-ch1/current
+ - srmag/ps-corr-sh3/c32-e-ch2/current
+ - srmag/ps-corr-sh3/c32-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C01
mapping:
@@ -6988,27 +5196,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c01-a-ch1/current
+ - srmag/ps-corr-sh1/c01-a-ch2/current
+ - srmag/ps-corr-sh1/c01-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C01
mapping:
@@ -7021,18 +5224,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-a/Strength
- unit: m-2
+ - srmag/m-sd1/c01-a/Strength_H
+ - srmag/m-sd1/c01-a/Strength_V
+ - srmag/m-sd1/c01-a/Strength_SQ
+ - srmag/m-sd1/c01-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C01
mapping:
@@ -7045,18 +5240,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c01-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c01-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c01-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c01-a/Strength
- unit: m-2
+ - srmag/m-sf2/c01-a/Strength_H
+ - srmag/m-sf2/c01-a/Strength_V
+ - srmag/m-sf2/c01-a/Strength_SQ
+ - srmag/m-sf2/c01-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C01
mapping:
@@ -7069,18 +5256,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-b/Strength
- unit: m-2
+ - srmag/m-sd1/c01-b/Strength_H
+ - srmag/m-sd1/c01-b/Strength_V
+ - srmag/m-sd1/c01-b/Strength_SQ
+ - srmag/m-sd1/c01-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C01
mapping:
@@ -7091,27 +5270,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c01-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c01-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c01-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c01-b-ch1/current
+ - srmag/ps-corr-sh2/c01-b-ch2/current
+ - srmag/ps-corr-sh2/c01-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C01
mapping:
@@ -7124,18 +5298,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-d/Strength
- unit: m-2
+ - srmag/m-sd1/c01-d/Strength_H
+ - srmag/m-sd1/c01-d/Strength_V
+ - srmag/m-sd1/c01-d/Strength_SQ
+ - srmag/m-sd1/c01-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C01
mapping:
@@ -7148,18 +5314,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c01-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c01-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c01-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c01-e/Strength
- unit: m-2
+ - srmag/m-sf2/c01-e/Strength_H
+ - srmag/m-sf2/c01-e/Strength_V
+ - srmag/m-sf2/c01-e/Strength_SQ
+ - srmag/m-sf2/c01-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C01
mapping:
@@ -7172,18 +5330,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c01-e/Strength
- unit: m-2
+ - srmag/m-sd1/c01-e/Strength_H
+ - srmag/m-sd1/c01-e/Strength_V
+ - srmag/m-sd1/c01-e/Strength_SQ
+ - srmag/m-sd1/c01-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C01
mapping:
@@ -7194,27 +5344,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c01-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c01-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c01-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c01-e-ch1/current
+ - srmag/ps-corr-sh3/c01-e-ch2/current
+ - srmag/ps-corr-sh3/c01-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C02
mapping:
@@ -7225,27 +5370,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c02-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c02-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c02-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c02-a-ch1/current
+ - srmag/ps-corr-sh1/c02-a-ch2/current
+ - srmag/ps-corr-sh1/c02-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1A-C02
mapping:
@@ -7258,18 +5398,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-a/Strength
- unit: m-2
+ - srmag/m-sd1/c02-a/Strength_H
+ - srmag/m-sd1/c02-a/Strength_V
+ - srmag/m-sd1/c02-a/Strength_SQ
+ - srmag/m-sd1/c02-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2A-C02
mapping:
@@ -7282,18 +5414,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c02-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c02-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c02-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c02-a/Strength
- unit: m-2
+ - srmag/m-sf2/c02-a/Strength_H
+ - srmag/m-sf2/c02-a/Strength_V
+ - srmag/m-sf2/c02-a/Strength_SQ
+ - srmag/m-sf2/c02-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1B-C02
mapping:
@@ -7306,18 +5430,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-b/Strength
- unit: m-2
+ - srmag/m-sd1/c02-b/Strength_H
+ - srmag/m-sd1/c02-b/Strength_V
+ - srmag/m-sd1/c02-b/Strength_SQ
+ - srmag/m-sd1/c02-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C02
mapping:
@@ -7328,27 +5444,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c02-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c02-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c02-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c02-b-ch1/current
+ - srmag/ps-corr-sh2/c02-b-ch2/current
+ - srmag/ps-corr-sh2/c02-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SD1D-C02
mapping:
@@ -7361,18 +5472,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-d/Strength
- unit: m-2
+ - srmag/m-sd1/c02-d/Strength_H
+ - srmag/m-sd1/c02-d/Strength_V
+ - srmag/m-sd1/c02-d/Strength_SQ
+ - srmag/m-sd1/c02-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SF2E-C02
mapping:
@@ -7385,18 +5488,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c02-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c02-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c02-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c02-e/Strength
- unit: m-2
+ - srmag/m-sf2/c02-e/Strength_H
+ - srmag/m-sf2/c02-e/Strength_V
+ - srmag/m-sf2/c02-e/Strength_SQ
+ - srmag/m-sf2/c02-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SD1E-C02
mapping:
@@ -7409,18 +5504,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c02-e/Strength
- unit: m-2
+ - srmag/m-sd1/c02-e/Strength_H
+ - srmag/m-sd1/c02-e/Strength_V
+ - srmag/m-sd1/c02-e/Strength_SQ
+ - srmag/m-sd1/c02-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C02
mapping:
@@ -7431,27 +5518,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c02-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c02-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c02-e-ch3/current
- unit: A
+ - srmag/ps-corr-sh3/c02-e-ch1/current
+ - srmag/ps-corr-sh3/c02-e-ch2/current
+ - srmag/ps-corr-sh3/c02-e-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SH1A-C03
mapping:
@@ -7462,27 +5544,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c03-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c03-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c03-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c03-a-ch1/current
+ - srmag/ps-corr-sh1/c03-a-ch2/current
+ - srmag/ps-corr-sh1/c03-a-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SI1A-C03
mapping:
@@ -7495,18 +5572,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-a/Strength
- unit: m-2
+ - srmag/m-sd1/c03-a/Strength_H
+ - srmag/m-sd1/c03-a/Strength_V
+ - srmag/m-sd1/c03-a/Strength_SQ
+ - srmag/m-sd1/c03-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SI2A-C03
mapping:
@@ -7519,18 +5588,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c03-a/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c03-a/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c03-a/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c03-a/Strength
- unit: m-2
+ - srmag/m-sf2/c03-a/Strength_H
+ - srmag/m-sf2/c03-a/Strength_V
+ - srmag/m-sf2/c03-a/Strength_SQ
+ - srmag/m-sf2/c03-a/Strength
- type: pyaml.magnet.cfm_magnet
name: SI1B-C03
mapping:
@@ -7543,18 +5604,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-b/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-b/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-b/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-b/Strength
- unit: m-2
+ - srmag/m-sd1/c03-b/Strength_H
+ - srmag/m-sd1/c03-b/Strength_V
+ - srmag/m-sd1/c03-b/Strength_SQ
+ - srmag/m-sd1/c03-b/Strength
- type: pyaml.magnet.cfm_magnet
name: SH2B-C03
mapping:
@@ -7565,27 +5618,22 @@ devices:
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: ["A","A","A"]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH2_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c03-b-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c03-b-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh2/c03-b-ch3/current
- unit: A
+ - srmag/ps-corr-sh2/c03-b-ch1/current
+ - srmag/ps-corr-sh2/c03-b-ch2/current
+ - srmag/ps-corr-sh2/c03-b-ch3/current
- type: pyaml.magnet.cfm_magnet
name: SI1D-C03
mapping:
@@ -7598,18 +5646,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-d/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-d/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-d/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-d/Strength
- unit: m-2
+ - srmag/m-sd1/c03-d/Strength_H
+ - srmag/m-sd1/c03-d/Strength_V
+ - srmag/m-sd1/c03-d/Strength_SQ
+ - srmag/m-sd1/c03-d/Strength
- type: pyaml.magnet.cfm_magnet
name: SI2E-C03
mapping:
@@ -7622,18 +5662,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c03-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c03-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c03-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sf2/c03-e/Strength
- unit: m-2
+ - srmag/m-sf2/c03-e/Strength_H
+ - srmag/m-sf2/c03-e/Strength_V
+ - srmag/m-sf2/c03-e/Strength_SQ
+ - srmag/m-sf2/c03-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SI1E-C03
mapping:
@@ -7646,18 +5678,10 @@ devices:
multipoles: [B0,A0,A1,B2]
units: [rad,rad,m-1,m-2]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-e/Strength_H
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-e/Strength_V
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-e/Strength_SQ
- unit: m-1
- - type: tango.pyaml.attribute
- attribute: srmag/m-sd1/c03-e/Strength
- unit: m-2
+ - srmag/m-sd1/c03-e/Strength_H
+ - srmag/m-sd1/c03-e/Strength_V
+ - srmag/m-sd1/c03-e/Strength_SQ
+ - srmag/m-sd1/c03-e/Strength
- type: pyaml.magnet.cfm_magnet
name: SH3E-C03
mapping:
@@ -7670,3871 +5694,2916 @@ devices:
multipoles: [B0,A0,A1,B2]
pseudo_factors: [1.0,-1.0,-1.0,-1.0]
units: [rad,rad,m-1,m-2]
+ hardware_units: ["A","A","A","A","A"]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SHI_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SHI_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SHI_sq_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SHI_sext_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SHI_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c03-e-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c03-e-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c03-e-ch3/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c03-e-ch5/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh3/c03-e-ch6/current
- unit: A
+ - srmag/ps-corr-sh3/c03-e-ch1/current
+ - srmag/ps-corr-sh3/c03-e-ch2/current
+ - srmag/ps-corr-sh3/c03-e-ch3/current
+ - srmag/ps-corr-sh3/c03-e-ch5/current
+ - srmag/ps-corr-sh3/c03-e-ch6/current
- type: pyaml.bpm.bpm
name: BPM_C04-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-01/SA_HPosition
+ y_pos: srdiag/bpm/c04-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-02/SA_HPosition
+ y_pos: srdiag/bpm/c04-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-03/SA_HPosition
+ y_pos: srdiag/bpm/c04-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-04/SA_HPosition
+ y_pos: srdiag/bpm/c04-04/SA_VPosition
+ x_offset: srdiag/bpm/c04-04/HOffset
+ y_offset: srdiag/bpm/c04-04/VOffset
- type: pyaml.bpm.bpm
name: BPM_C04-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-05/SA_HPosition
+ y_pos: srdiag/bpm/c04-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-06/SA_HPosition
+ y_pos: srdiag/bpm/c04-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-07/SA_HPosition
+ y_pos: srdiag/bpm/c04-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-08/SA_HPosition
+ y_pos: srdiag/bpm/c04-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-09/SA_HPosition
+ y_pos: srdiag/bpm/c04-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-10/SA_HPosition
+ y_pos: srdiag/bpm/c04-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-01/SA_HPosition
+ y_pos: srdiag/bpm/c05-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-02/SA_HPosition
+ y_pos: srdiag/bpm/c05-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-03/SA_HPosition
+ y_pos: srdiag/bpm/c05-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-04/SA_HPosition
+ y_pos: srdiag/bpm/c05-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-05/SA_HPosition
+ y_pos: srdiag/bpm/c05-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-06/SA_HPosition
+ y_pos: srdiag/bpm/c05-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-07/SA_HPosition
+ y_pos: srdiag/bpm/c05-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-08/SA_HPosition
+ y_pos: srdiag/bpm/c05-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-09/SA_HPosition
+ y_pos: srdiag/bpm/c05-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C05-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c05-10/SA_HPosition
+ y_pos: srdiag/bpm/c05-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-01/SA_HPosition
+ y_pos: srdiag/bpm/c06-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-02/SA_HPosition
+ y_pos: srdiag/bpm/c06-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-03/SA_HPosition
+ y_pos: srdiag/bpm/c06-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-04/SA_HPosition
+ y_pos: srdiag/bpm/c06-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-05/SA_HPosition
+ y_pos: srdiag/bpm/c06-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-06/SA_HPosition
+ y_pos: srdiag/bpm/c06-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-07/SA_HPosition
+ y_pos: srdiag/bpm/c06-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-08/SA_HPosition
+ y_pos: srdiag/bpm/c06-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-09/SA_HPosition
+ y_pos: srdiag/bpm/c06-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C06-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c06-10/SA_HPosition
+ y_pos: srdiag/bpm/c06-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-01/SA_HPosition
+ y_pos: srdiag/bpm/c07-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-02/SA_HPosition
+ y_pos: srdiag/bpm/c07-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-03/SA_HPosition
+ y_pos: srdiag/bpm/c07-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-04/SA_HPosition
+ y_pos: srdiag/bpm/c07-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-05/SA_HPosition
+ y_pos: srdiag/bpm/c07-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-06/SA_HPosition
+ y_pos: srdiag/bpm/c07-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-07/SA_HPosition
+ y_pos: srdiag/bpm/c07-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-08/SA_HPosition
+ y_pos: srdiag/bpm/c07-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-09/SA_HPosition
+ y_pos: srdiag/bpm/c07-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C07-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c07-10/SA_HPosition
+ y_pos: srdiag/bpm/c07-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-01/SA_HPosition
+ y_pos: srdiag/bpm/c08-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-02/SA_HPosition
+ y_pos: srdiag/bpm/c08-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-03/SA_HPosition
+ y_pos: srdiag/bpm/c08-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-04/SA_HPosition
+ y_pos: srdiag/bpm/c08-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-05/SA_HPosition
+ y_pos: srdiag/bpm/c08-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-06/SA_HPosition
+ y_pos: srdiag/bpm/c08-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-07/SA_HPosition
+ y_pos: srdiag/bpm/c08-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-08/SA_HPosition
+ y_pos: srdiag/bpm/c08-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-09/SA_HPosition
+ y_pos: srdiag/bpm/c08-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C08-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c08-10/SA_HPosition
+ y_pos: srdiag/bpm/c08-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-01/SA_HPosition
+ y_pos: srdiag/bpm/c09-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-02/SA_HPosition
+ y_pos: srdiag/bpm/c09-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-03/SA_HPosition
+ y_pos: srdiag/bpm/c09-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-04/SA_HPosition
+ y_pos: srdiag/bpm/c09-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-05/SA_HPosition
+ y_pos: srdiag/bpm/c09-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-06/SA_HPosition
+ y_pos: srdiag/bpm/c09-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-07/SA_HPosition
+ y_pos: srdiag/bpm/c09-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-08/SA_HPosition
+ y_pos: srdiag/bpm/c09-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-09/SA_HPosition
+ y_pos: srdiag/bpm/c09-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C09-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c09-10/SA_HPosition
+ y_pos: srdiag/bpm/c09-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-01/SA_HPosition
+ y_pos: srdiag/bpm/c10-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-02/SA_HPosition
+ y_pos: srdiag/bpm/c10-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-03/SA_HPosition
+ y_pos: srdiag/bpm/c10-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-04/SA_HPosition
+ y_pos: srdiag/bpm/c10-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-05/SA_HPosition
+ y_pos: srdiag/bpm/c10-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-06/SA_HPosition
+ y_pos: srdiag/bpm/c10-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-07/SA_HPosition
+ y_pos: srdiag/bpm/c10-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-08/SA_HPosition
+ y_pos: srdiag/bpm/c10-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-09/SA_HPosition
+ y_pos: srdiag/bpm/c10-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C10-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c10-10/SA_HPosition
+ y_pos: srdiag/bpm/c10-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-01/SA_HPosition
+ y_pos: srdiag/bpm/c11-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-02/SA_HPosition
+ y_pos: srdiag/bpm/c11-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-03/SA_HPosition
+ y_pos: srdiag/bpm/c11-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-04/SA_HPosition
+ y_pos: srdiag/bpm/c11-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-05/SA_HPosition
+ y_pos: srdiag/bpm/c11-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-06/SA_HPosition
+ y_pos: srdiag/bpm/c11-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-07/SA_HPosition
+ y_pos: srdiag/bpm/c11-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-08/SA_HPosition
+ y_pos: srdiag/bpm/c11-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-09/SA_HPosition
+ y_pos: srdiag/bpm/c11-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C11-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c11-10/SA_HPosition
+ y_pos: srdiag/bpm/c11-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-01/SA_HPosition
+ y_pos: srdiag/bpm/c12-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-02/SA_HPosition
+ y_pos: srdiag/bpm/c12-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-03/SA_HPosition
+ y_pos: srdiag/bpm/c12-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-04/SA_HPosition
+ y_pos: srdiag/bpm/c12-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-05/SA_HPosition
+ y_pos: srdiag/bpm/c12-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-06/SA_HPosition
+ y_pos: srdiag/bpm/c12-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-07/SA_HPosition
+ y_pos: srdiag/bpm/c12-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-08/SA_HPosition
+ y_pos: srdiag/bpm/c12-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-09/SA_HPosition
+ y_pos: srdiag/bpm/c12-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C12-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c12-10/SA_HPosition
+ y_pos: srdiag/bpm/c12-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-01/SA_HPosition
+ y_pos: srdiag/bpm/c13-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-02/SA_HPosition
+ y_pos: srdiag/bpm/c13-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-03/SA_HPosition
+ y_pos: srdiag/bpm/c13-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-04/SA_HPosition
+ y_pos: srdiag/bpm/c13-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-05/SA_HPosition
+ y_pos: srdiag/bpm/c13-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-06/SA_HPosition
+ y_pos: srdiag/bpm/c13-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-07/SA_HPosition
+ y_pos: srdiag/bpm/c13-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-08/SA_HPosition
+ y_pos: srdiag/bpm/c13-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-09/SA_HPosition
+ y_pos: srdiag/bpm/c13-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C13-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c13-10/SA_HPosition
+ y_pos: srdiag/bpm/c13-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-01/SA_HPosition
+ y_pos: srdiag/bpm/c14-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-02/SA_HPosition
+ y_pos: srdiag/bpm/c14-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-03/SA_HPosition
+ y_pos: srdiag/bpm/c14-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-04/SA_HPosition
+ y_pos: srdiag/bpm/c14-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-05/SA_HPosition
+ y_pos: srdiag/bpm/c14-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-06/SA_HPosition
+ y_pos: srdiag/bpm/c14-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-07/SA_HPosition
+ y_pos: srdiag/bpm/c14-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-08/SA_HPosition
+ y_pos: srdiag/bpm/c14-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-09/SA_HPosition
+ y_pos: srdiag/bpm/c14-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C14-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c14-10/SA_HPosition
+ y_pos: srdiag/bpm/c14-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-01/SA_HPosition
+ y_pos: srdiag/bpm/c15-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-02/SA_HPosition
+ y_pos: srdiag/bpm/c15-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-03/SA_HPosition
+ y_pos: srdiag/bpm/c15-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-04/SA_HPosition
+ y_pos: srdiag/bpm/c15-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-05/SA_HPosition
+ y_pos: srdiag/bpm/c15-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-06/SA_HPosition
+ y_pos: srdiag/bpm/c15-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-07/SA_HPosition
+ y_pos: srdiag/bpm/c15-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-08/SA_HPosition
+ y_pos: srdiag/bpm/c15-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-09/SA_HPosition
+ y_pos: srdiag/bpm/c15-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C15-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c15-10/SA_HPosition
+ y_pos: srdiag/bpm/c15-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-01/SA_HPosition
+ y_pos: srdiag/bpm/c16-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-02/SA_HPosition
+ y_pos: srdiag/bpm/c16-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-03/SA_HPosition
+ y_pos: srdiag/bpm/c16-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-04/SA_HPosition
+ y_pos: srdiag/bpm/c16-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-05/SA_HPosition
+ y_pos: srdiag/bpm/c16-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-06/SA_HPosition
+ y_pos: srdiag/bpm/c16-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-07/SA_HPosition
+ y_pos: srdiag/bpm/c16-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-08/SA_HPosition
+ y_pos: srdiag/bpm/c16-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-09/SA_HPosition
+ y_pos: srdiag/bpm/c16-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C16-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c16-10/SA_HPosition
+ y_pos: srdiag/bpm/c16-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-01/SA_HPosition
+ y_pos: srdiag/bpm/c17-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-02/SA_HPosition
+ y_pos: srdiag/bpm/c17-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-03/SA_HPosition
+ y_pos: srdiag/bpm/c17-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-04/SA_HPosition
+ y_pos: srdiag/bpm/c17-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-05/SA_HPosition
+ y_pos: srdiag/bpm/c17-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-06/SA_HPosition
+ y_pos: srdiag/bpm/c17-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-07/SA_HPosition
+ y_pos: srdiag/bpm/c17-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-08/SA_HPosition
+ y_pos: srdiag/bpm/c17-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-09/SA_HPosition
+ y_pos: srdiag/bpm/c17-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C17-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c17-10/SA_HPosition
+ y_pos: srdiag/bpm/c17-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-01/SA_HPosition
+ y_pos: srdiag/bpm/c18-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-02/SA_HPosition
+ y_pos: srdiag/bpm/c18-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-03/SA_HPosition
+ y_pos: srdiag/bpm/c18-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-04/SA_HPosition
+ y_pos: srdiag/bpm/c18-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-05/SA_HPosition
+ y_pos: srdiag/bpm/c18-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-06/SA_HPosition
+ y_pos: srdiag/bpm/c18-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-07/SA_HPosition
+ y_pos: srdiag/bpm/c18-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-08/SA_HPosition
+ y_pos: srdiag/bpm/c18-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-09/SA_HPosition
+ y_pos: srdiag/bpm/c18-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C18-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c18-10/SA_HPosition
+ y_pos: srdiag/bpm/c18-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-01/SA_HPosition
+ y_pos: srdiag/bpm/c19-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-02/SA_HPosition
+ y_pos: srdiag/bpm/c19-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-03/SA_HPosition
+ y_pos: srdiag/bpm/c19-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-04/SA_HPosition
+ y_pos: srdiag/bpm/c19-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-05/SA_HPosition
+ y_pos: srdiag/bpm/c19-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-06/SA_HPosition
+ y_pos: srdiag/bpm/c19-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-07/SA_HPosition
+ y_pos: srdiag/bpm/c19-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-08/SA_HPosition
+ y_pos: srdiag/bpm/c19-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-09/SA_HPosition
+ y_pos: srdiag/bpm/c19-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C19-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c19-10/SA_HPosition
+ y_pos: srdiag/bpm/c19-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-01/SA_HPosition
+ y_pos: srdiag/bpm/c20-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-02/SA_HPosition
+ y_pos: srdiag/bpm/c20-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-03/SA_HPosition
+ y_pos: srdiag/bpm/c20-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-04/SA_HPosition
+ y_pos: srdiag/bpm/c20-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-05/SA_HPosition
+ y_pos: srdiag/bpm/c20-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-06/SA_HPosition
+ y_pos: srdiag/bpm/c20-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-07/SA_HPosition
+ y_pos: srdiag/bpm/c20-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-08/SA_HPosition
+ y_pos: srdiag/bpm/c20-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-09/SA_HPosition
+ y_pos: srdiag/bpm/c20-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C20-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c20-10/SA_HPosition
+ y_pos: srdiag/bpm/c20-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-01/SA_HPosition
+ y_pos: srdiag/bpm/c21-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-02/SA_HPosition
+ y_pos: srdiag/bpm/c21-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-03/SA_HPosition
+ y_pos: srdiag/bpm/c21-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-04/SA_HPosition
+ y_pos: srdiag/bpm/c21-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-05/SA_HPosition
+ y_pos: srdiag/bpm/c21-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-06/SA_HPosition
+ y_pos: srdiag/bpm/c21-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-07/SA_HPosition
+ y_pos: srdiag/bpm/c21-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-08/SA_HPosition
+ y_pos: srdiag/bpm/c21-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-09/SA_HPosition
+ y_pos: srdiag/bpm/c21-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C21-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c21-10/SA_HPosition
+ y_pos: srdiag/bpm/c21-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-01/SA_HPosition
+ y_pos: srdiag/bpm/c22-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-02/SA_HPosition
+ y_pos: srdiag/bpm/c22-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-03/SA_HPosition
+ y_pos: srdiag/bpm/c22-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-04/SA_HPosition
+ y_pos: srdiag/bpm/c22-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-05/SA_HPosition
+ y_pos: srdiag/bpm/c22-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-06/SA_HPosition
+ y_pos: srdiag/bpm/c22-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-07/SA_HPosition
+ y_pos: srdiag/bpm/c22-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-08/SA_HPosition
+ y_pos: srdiag/bpm/c22-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-09/SA_HPosition
+ y_pos: srdiag/bpm/c22-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C22-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c22-10/SA_HPosition
+ y_pos: srdiag/bpm/c22-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-01/SA_HPosition
+ y_pos: srdiag/bpm/c23-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-02/SA_HPosition
+ y_pos: srdiag/bpm/c23-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-03/SA_HPosition
+ y_pos: srdiag/bpm/c23-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-04/SA_HPosition
+ y_pos: srdiag/bpm/c23-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-05/SA_HPosition
+ y_pos: srdiag/bpm/c23-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-06/SA_HPosition
+ y_pos: srdiag/bpm/c23-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-07/SA_HPosition
+ y_pos: srdiag/bpm/c23-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-08/SA_HPosition
+ y_pos: srdiag/bpm/c23-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-09/SA_HPosition
+ y_pos: srdiag/bpm/c23-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C23-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c23-10/SA_HPosition
+ y_pos: srdiag/bpm/c23-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-01/SA_HPosition
+ y_pos: srdiag/bpm/c24-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-02/SA_HPosition
+ y_pos: srdiag/bpm/c24-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-03/SA_HPosition
+ y_pos: srdiag/bpm/c24-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-04/SA_HPosition
+ y_pos: srdiag/bpm/c24-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-05/SA_HPosition
+ y_pos: srdiag/bpm/c24-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-06/SA_HPosition
+ y_pos: srdiag/bpm/c24-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-07/SA_HPosition
+ y_pos: srdiag/bpm/c24-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-08/SA_HPosition
+ y_pos: srdiag/bpm/c24-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-09/SA_HPosition
+ y_pos: srdiag/bpm/c24-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C24-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c24-10/SA_HPosition
+ y_pos: srdiag/bpm/c24-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-01/SA_HPosition
+ y_pos: srdiag/bpm/c25-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-02/SA_HPosition
+ y_pos: srdiag/bpm/c25-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-03/SA_HPosition
+ y_pos: srdiag/bpm/c25-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-04/SA_HPosition
+ y_pos: srdiag/bpm/c25-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-05/SA_HPosition
+ y_pos: srdiag/bpm/c25-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-06/SA_HPosition
+ y_pos: srdiag/bpm/c25-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-07/SA_HPosition
+ y_pos: srdiag/bpm/c25-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-08/SA_HPosition
+ y_pos: srdiag/bpm/c25-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-09/SA_HPosition
+ y_pos: srdiag/bpm/c25-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C25-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c25-10/SA_HPosition
+ y_pos: srdiag/bpm/c25-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-01/SA_HPosition
+ y_pos: srdiag/bpm/c26-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-02/SA_HPosition
+ y_pos: srdiag/bpm/c26-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-03/SA_HPosition
+ y_pos: srdiag/bpm/c26-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-04/SA_HPosition
+ y_pos: srdiag/bpm/c26-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-05/SA_HPosition
+ y_pos: srdiag/bpm/c26-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-06/SA_HPosition
+ y_pos: srdiag/bpm/c26-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-07/SA_HPosition
+ y_pos: srdiag/bpm/c26-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-08/SA_HPosition
+ y_pos: srdiag/bpm/c26-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-09/SA_HPosition
+ y_pos: srdiag/bpm/c26-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C26-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c26-10/SA_HPosition
+ y_pos: srdiag/bpm/c26-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-01/SA_HPosition
+ y_pos: srdiag/bpm/c27-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-02/SA_HPosition
+ y_pos: srdiag/bpm/c27-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-03/SA_HPosition
+ y_pos: srdiag/bpm/c27-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-04/SA_HPosition
+ y_pos: srdiag/bpm/c27-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-05/SA_HPosition
+ y_pos: srdiag/bpm/c27-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-06/SA_HPosition
+ y_pos: srdiag/bpm/c27-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-07/SA_HPosition
+ y_pos: srdiag/bpm/c27-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-08/SA_HPosition
+ y_pos: srdiag/bpm/c27-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-09/SA_HPosition
+ y_pos: srdiag/bpm/c27-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C27-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c27-10/SA_HPosition
+ y_pos: srdiag/bpm/c27-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-01/SA_HPosition
+ y_pos: srdiag/bpm/c28-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-02/SA_HPosition
+ y_pos: srdiag/bpm/c28-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-03/SA_HPosition
+ y_pos: srdiag/bpm/c28-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-04/SA_HPosition
+ y_pos: srdiag/bpm/c28-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-05/SA_HPosition
+ y_pos: srdiag/bpm/c28-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-06/SA_HPosition
+ y_pos: srdiag/bpm/c28-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-07/SA_HPosition
+ y_pos: srdiag/bpm/c28-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-08/SA_HPosition
+ y_pos: srdiag/bpm/c28-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-09/SA_HPosition
+ y_pos: srdiag/bpm/c28-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C28-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c28-10/SA_HPosition
+ y_pos: srdiag/bpm/c28-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-01/SA_HPosition
+ y_pos: srdiag/bpm/c29-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-02/SA_HPosition
+ y_pos: srdiag/bpm/c29-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-03/SA_HPosition
+ y_pos: srdiag/bpm/c29-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-04/SA_HPosition
+ y_pos: srdiag/bpm/c29-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-05/SA_HPosition
+ y_pos: srdiag/bpm/c29-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-06/SA_HPosition
+ y_pos: srdiag/bpm/c29-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-07/SA_HPosition
+ y_pos: srdiag/bpm/c29-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-08/SA_HPosition
+ y_pos: srdiag/bpm/c29-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-09/SA_HPosition
+ y_pos: srdiag/bpm/c29-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C29-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c29-10/SA_HPosition
+ y_pos: srdiag/bpm/c29-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-01/SA_HPosition
+ y_pos: srdiag/bpm/c30-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-02/SA_HPosition
+ y_pos: srdiag/bpm/c30-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-03/SA_HPosition
+ y_pos: srdiag/bpm/c30-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-04/SA_HPosition
+ y_pos: srdiag/bpm/c30-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-05/SA_HPosition
+ y_pos: srdiag/bpm/c30-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-06/SA_HPosition
+ y_pos: srdiag/bpm/c30-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-07/SA_HPosition
+ y_pos: srdiag/bpm/c30-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-08/SA_HPosition
+ y_pos: srdiag/bpm/c30-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-09/SA_HPosition
+ y_pos: srdiag/bpm/c30-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C30-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c30-10/SA_HPosition
+ y_pos: srdiag/bpm/c30-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-01/SA_HPosition
+ y_pos: srdiag/bpm/c31-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-02/SA_HPosition
+ y_pos: srdiag/bpm/c31-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-03/SA_HPosition
+ y_pos: srdiag/bpm/c31-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-04/SA_HPosition
+ y_pos: srdiag/bpm/c31-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-05/SA_HPosition
+ y_pos: srdiag/bpm/c31-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-06/SA_HPosition
+ y_pos: srdiag/bpm/c31-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-07/SA_HPosition
+ y_pos: srdiag/bpm/c31-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-08/SA_HPosition
+ y_pos: srdiag/bpm/c31-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-09/SA_HPosition
+ y_pos: srdiag/bpm/c31-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C31-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c31-10/SA_HPosition
+ y_pos: srdiag/bpm/c31-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-01/SA_HPosition
+ y_pos: srdiag/bpm/c32-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-02/SA_HPosition
+ y_pos: srdiag/bpm/c32-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-03/SA_HPosition
+ y_pos: srdiag/bpm/c32-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-04/SA_HPosition
+ y_pos: srdiag/bpm/c32-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-05/SA_HPosition
+ y_pos: srdiag/bpm/c32-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-06/SA_HPosition
+ y_pos: srdiag/bpm/c32-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-07/SA_HPosition
+ y_pos: srdiag/bpm/c32-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-08/SA_HPosition
+ y_pos: srdiag/bpm/c32-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-09/SA_HPosition
+ y_pos: srdiag/bpm/c32-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C32-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c32-10/SA_HPosition
+ y_pos: srdiag/bpm/c32-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-01/SA_HPosition
+ y_pos: srdiag/bpm/c01-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-02/SA_HPosition
+ y_pos: srdiag/bpm/c01-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-03/SA_HPosition
+ y_pos: srdiag/bpm/c01-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-04/SA_HPosition
+ y_pos: srdiag/bpm/c01-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-05/SA_HPosition
+ y_pos: srdiag/bpm/c01-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-06/SA_HPosition
+ y_pos: srdiag/bpm/c01-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-07/SA_HPosition
+ y_pos: srdiag/bpm/c01-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-08/SA_HPosition
+ y_pos: srdiag/bpm/c01-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-09/SA_HPosition
+ y_pos: srdiag/bpm/c01-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c01-10/SA_HPosition
+ y_pos: srdiag/bpm/c01-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-01/SA_HPosition
+ y_pos: srdiag/bpm/c02-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-02/SA_HPosition
+ y_pos: srdiag/bpm/c02-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-03/SA_HPosition
+ y_pos: srdiag/bpm/c02-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-04/SA_HPosition
+ y_pos: srdiag/bpm/c02-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-05/SA_HPosition
+ y_pos: srdiag/bpm/c02-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-06/SA_HPosition
+ y_pos: srdiag/bpm/c02-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-07/SA_HPosition
+ y_pos: srdiag/bpm/c02-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-08/SA_HPosition
+ y_pos: srdiag/bpm/c02-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-09/SA_HPosition
+ y_pos: srdiag/bpm/c02-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C02-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c02-10/SA_HPosition
+ y_pos: srdiag/bpm/c02-10/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-01/SA_HPosition
+ y_pos: srdiag/bpm/c03-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-02/SA_HPosition
+ y_pos: srdiag/bpm/c03-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-03/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-03/SA_HPosition
+ y_pos: srdiag/bpm/c03-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-04/SA_HPosition
+ y_pos: srdiag/bpm/c03-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-05/SA_HPosition
+ y_pos: srdiag/bpm/c03-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-06/SA_HPosition
+ y_pos: srdiag/bpm/c03-06/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-07/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-07/SA_HPosition
+ y_pos: srdiag/bpm/c03-07/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-08/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-08/SA_HPosition
+ y_pos: srdiag/bpm/c03-08/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-09/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-09/SA_HPosition
+ y_pos: srdiag/bpm/c03-09/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C03-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-10/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c03-10/SA_HPosition
+ y_pos: srdiag/bpm/c03-10/SA_VPosition
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C04
+ description: "QF1E-C04 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00054
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c04-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C05
+ description: "QF1A-C05 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996841
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C05
+ description: "QF1E-C05 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00191
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C06
+ description: "QF1A-C06 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0003
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c06-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C06
+ description: "QF1E-C06 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997615
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c06-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C07
+ description: "QF1A-C07 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998152
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c07-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C07
+ description: "QF1E-C07 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00262
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c07-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C08
+ description: "QF1A-C08 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00319
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c08-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C08
+ description: "QF1E-C08 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996180929
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c08-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C09
+ description: "QF1A-C09 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00206
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c09-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C09
+ description: "QF1E-C09 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999285
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c09-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C10
+ description: "QF1A-C10 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00232
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c10-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C10
+ description: "QF1E-C10 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998212
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c10-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C11
+ description: "QF1A-C11 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999225
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c11-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C11
+ description: "QF1E-C11 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998033
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c11-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C12
+ description: "QF1A-C12 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998748
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c12-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C12
+ description: "QF1E-C12 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0023
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c12-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C13
+ description: "QF1A-C13 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00337
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c13-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C13
+ description: "QF1E-C13 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00403
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c13-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C14
+ description: "QF1A-C14 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00182
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c14-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C14
+ description: "QF1E-C14 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998303
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c14-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C15
+ description: "QF1A-C15 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998748
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c15-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C15
+ description: "QF1E-C15 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.994098
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c15-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C16
+ description: "QF1A-C16 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00232
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c16-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C16
+ description: "QF1E-C16 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.99884
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c16-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C17
+ description: "QF1A-C17 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0079
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c17-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C17
+ description: "QF1E-C17 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999523
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c17-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C18
+ description: "QF1A-C18 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c18-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C18
+ description: "QF1E-C18 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999854
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c18-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C19
+ description: "QF1A-C19 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.99845
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c19-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C19
+ description: "QF1E-C19 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c19-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C20
+ description: "QF1A-C20 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00095
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c20-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C20
+ description: "QF1E-C20 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996753
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c20-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C21
+ description: "QF1A-C21 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00334
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c21-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C21
+ description: "QF1E-C21 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997707
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c21-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C22
+ description: "QF1A-C22 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00152
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c22-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C22
+ description: "QF1E-C22 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998124
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c22-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C23
+ description: "QF1A-C23 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996662
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c23-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C23
+ description: "QF1E-C23 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0017
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c23-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C24
+ description: "QF1A-C24 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999642
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c24-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C24
+ description: "QF1E-C24 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00042
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c24-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C25
+ description: "QF1A-C25 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00471
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c25-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C25
+ description: "QF1E-C25 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00393
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c25-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C26
+ description: "QF1A-C26 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.992906
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c26-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C26
+ description: "QF1E-C26 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00268
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c26-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C27
+ description: "QF1A-C27 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00248
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c27-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C27
+ description: "QF1E-C27 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00203
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c27-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C28
+ description: "QF1A-C28 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998030791
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c28-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C28
+ description: "QF1E-C28 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00232
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c28-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C29
+ description: "QF1A-C29 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.995052
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c29-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C29
+ description: "QF1E-C29 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00155
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c29-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C30
+ description: "QF1A-C30 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998271
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c30-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C30
+ description: "QF1E-C30 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999702
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c30-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C31
+ description: "QF1A-C31 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998005
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c31-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C31
+ description: "QF1E-C31 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999463
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c31-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C32
+ description: "QF1A-C32 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997794
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c32-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C32
+ description: "QF1E-C32 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00203
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c32-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C01
+ description: "QF1A-C01 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00504
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c01-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C01
+ description: "QF1E-C01 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998212
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c01-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C02
+ description: "QF1A-C02 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0037
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c02-a/current
+- type: pyaml.magnet.quadrupole
+ name: QF1E-C02
+ description: "QF1E-C02 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00093
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c02-e/current
+- type: pyaml.magnet.quadrupole
+ name: QF1A-C03
+ description: "QF1A-C03 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0025
+ crosstalk: 1.0
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QF1_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c03-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C04
+ description: "QD2E-C04 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999305341
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c04-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C05
+ description: "QD2A-C05 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997452918
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c05-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C05
+ description: "QD2E-C05 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997993208
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c05-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C06
+ description: "QD2A-C06 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.006031322
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c06-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C06
+ description: "QD2E-C06 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998547233
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c06-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C07
+ description: "QD2A-C07 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.002327856
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c07-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C07
+ description: "QD2E-C07 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000154369
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c07-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C08
+ description: "QD2A-C08 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.009580478
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c08-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C08
+ description: "QD2E-C08 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.00447669
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c08-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C09
+ description: "QD2A-C09 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0015563
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c09-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C09
+ description: "QD2E-C09 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997221365
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c09-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C10
+ description: "QD2A-C10 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.005954167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c10-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C10
+ description: "QD2E-C10 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.006725723
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c10-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C11
+ description: "QD2A-C11 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.994535144
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c11-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C11
+ description: "QD2E-C11 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999550256
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c11-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C12
+ description: "QD2A-C12 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001479145
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c12-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C12
+ description: "QD2E-C12 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000321811
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c12-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C13
+ description: "QD2A-C13 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.006715036
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c13-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C13
+ description: "QD2E-C13 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0036395
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c13-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C14
+ description: "QD2A-C14 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997684471
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c14-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C14
+ description: "QD2E-C14 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000385922
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c14-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C15
+ description: "QD2A-C15 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999010167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c15-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C15
+ description: "QD2E-C15 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998392922
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c15-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C16
+ description: "QD2A-C16 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999318789
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c16-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C16
+ description: "QD2E-C16 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.996926967
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c16-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C17
+ description: "QD2A-C17 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000849027
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c17-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C17
+ description: "QD2E-C17 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.003392444
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c17-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C18
+ description: "QD2A-C18 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001312133
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c18-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C18
+ description: "QD2E-C18 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.005402902
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c18-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C19
+ description: "QD2A-C19 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.995846789
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c19-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C19
+ description: "QD2E-C19 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.005877011
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c19-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C20
+ description: "QD2A-C20 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001016211
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c20-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C20
+ description: "QD2E-C20 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999010167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c20-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C21
+ description: "QD2A-C21 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.007265811
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c21-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C21
+ description: "QD2E-C21 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998238611
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c21-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C22
+ description: "QD2A-C22 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998161456
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c22-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C22
+ description: "QD2E-C22 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.004642522
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c22-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C23
+ description: "QD2A-C23 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001479145
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c23-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C23
+ description: "QD2E-C23 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001942078
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c23-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C24
+ description: "QD2A-C24 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999087322
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c24-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C24
+ description: "QD2E-C24 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998547233
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c24-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C25
+ description: "QD2A-C25 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001698055
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c25-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C25
+ description: "QD2E-C25 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999704567
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c25-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C26
+ description: "QD2A-C26 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999164478
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c26-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C26
+ description: "QD2E-C26 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.000694659
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c26-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C27
+ description: "QD2A-C27 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.99945971
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c27-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C27
+ description: "QD2E-C27 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999922816
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c27-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C28
+ description: "QD2A-C28 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999922816
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c28-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C28
+ description: "QD2E-C28 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.997838839
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c28-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C29
+ description: "QD2A-C29 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.003318926
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c29-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C29
+ description: "QD2E-C29 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.004179589
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c29-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C30
+ description: "QD2A-C30 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.999010167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c30-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C30
+ description: "QD2E-C30 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.9987787
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c30-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C31
+ description: "QD2A-C31 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.004411056
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c31-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C31
+ description: "QD2E-C31 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0029451
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c31-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C32
+ description: "QD2A-C32 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.009426167
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c32-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C32
+ description: "QD2E-C32 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.0050283
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c32-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C01
+ description: "QD2A-C01 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 0.998533498
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c01-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C01
+ description: "QD2E-C01 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.003485189
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c01-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C02
+ description: "QD2A-C02 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.001389318
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c02-a/current
+- type: pyaml.magnet.quadrupole
+ name: QD2E-C02
+ description: "QD2E-C02 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.006108478
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c02-e/current
+- type: pyaml.magnet.quadrupole
+ name: QD2A-C03
+ description: "QD2A-C03 quadrupole"
+ model:
+ type: pyaml.magnet.linear_model
+ calibration_factor: 1.002096389
+ crosstalk: 0.99912
+ curve:
+ type: pyaml.magnet.csvcurve
+ file: sr/magnet_models/QD2_strength.csv
+ unit: 1/m
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c03-a/current
diff --git a/tests/config/EBSTune-patterns.yaml b/tests/config/EBSTune-patterns.yaml
index cc8fde6a4..0c258bdea 100644
--- a/tests/config/EBSTune-patterns.yaml
+++ b/tests/config/EBSTune-patterns.yaml
@@ -12,6 +12,7 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/ebs_catalogs.yaml
data_folder: /data/store
arrays:
- type: pyaml.arrays.magnet
@@ -27,1760 +28,1629 @@ arrays:
- ~QF1E-C05
- ~Q???-C06
devices:
+- type: pyaml.diagnostics.tune_monitor
+ name: BETATRON_TUNE
+ tune_h: srdiag/beam-tune/main/Qh
+ tune_v: srdiag/beam-tune/main/Qv
+- type: pyaml.tuning_tools.tune
+ name: DEFAULT_TUNE_CORRECTION
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ response_matrix: ${path:tune_response.json}
+- type: pyaml.tuning_tools.tune_response_matrix
+ name: DEFAULT_TUNE_RESPONSE_MATRIX
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ quad_delta: 1e-4
- type: pyaml.magnet.quadrupole
- description: "QF1E-C04 quadrupole"
name: QF1E-C04
+ description: "QF1E-C04 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00054
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c04-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c04-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C05
+ description: "QF1A-C05 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996841
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C05
+ description: "QF1E-C05 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00191
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C06
+ description: "QF1A-C06 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0003
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c06-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c06-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C06
+ description: "QF1E-C06 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997615
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c06-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c06-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C07
+ description: "QF1A-C07 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998152
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c07-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c07-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C07
+ description: "QF1E-C07 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00262
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c07-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c07-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C08
+ description: "QF1A-C08 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00319
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c08-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c08-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C08
+ description: "QF1E-C08 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996180929
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c08-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c08-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C09
+ description: "QF1A-C09 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00206
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c09-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c09-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C09
+ description: "QF1E-C09 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999285
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c09-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c09-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C10
+ description: "QF1A-C10 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00232
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c10-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c10-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C10
+ description: "QF1E-C10 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998212
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c10-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c10-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C11
+ description: "QF1A-C11 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999225
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c11-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c11-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C11
+ description: "QF1E-C11 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998033
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c11-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c11-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C12
+ description: "QF1A-C12 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998748
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c12-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c12-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C12
+ description: "QF1E-C12 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0023
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c12-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c12-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C13
+ description: "QF1A-C13 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00337
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c13-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c13-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C13
+ description: "QF1E-C13 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00403
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c13-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c13-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C14
+ description: "QF1A-C14 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00182
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c14-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c14-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C14
+ description: "QF1E-C14 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998303
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c14-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c14-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C15
+ description: "QF1A-C15 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998748
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c15-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c15-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C15
+ description: "QF1E-C15 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.994098
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c15-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c15-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C16
+ description: "QF1A-C16 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00232
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c16-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c16-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C16
+ description: "QF1E-C16 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.99884
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c16-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c16-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C17
+ description: "QF1A-C17 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0079
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c17-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c17-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C17
+ description: "QF1E-C17 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999523
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c17-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c17-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C18
+ description: "QF1A-C18 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c18-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c18-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C18
+ description: "QF1E-C18 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999854
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c18-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c18-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C19
+ description: "QF1A-C19 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.99845
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c19-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c19-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C19
+ description: "QF1E-C19 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c19-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c19-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C20
+ description: "QF1A-C20 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00095
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c20-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c20-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C20
+ description: "QF1E-C20 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996753
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c20-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c20-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C21
+ description: "QF1A-C21 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00334
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c21-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c21-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C21
+ description: "QF1E-C21 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997707
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c21-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c21-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C22
+ description: "QF1A-C22 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00152
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c22-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c22-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C22
+ description: "QF1E-C22 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998124
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c22-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c22-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C23
+ description: "QF1A-C23 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996662
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c23-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c23-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C23
+ description: "QF1E-C23 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0017
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c23-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c23-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C24
+ description: "QF1A-C24 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999642
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c24-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c24-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C24
+ description: "QF1E-C24 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00042
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c24-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c24-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C25
+ description: "QF1A-C25 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00471
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c25-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c25-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C25
+ description: "QF1E-C25 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00393
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c25-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c25-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C26
+ description: "QF1A-C26 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.992906
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c26-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c26-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C26
+ description: "QF1E-C26 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00268
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c26-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c26-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C27
+ description: "QF1A-C27 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00248
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c27-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c27-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C27
+ description: "QF1E-C27 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00203
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c27-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c27-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C28
+ description: "QF1A-C28 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998030791
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c28-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c28-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C28
+ description: "QF1E-C28 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00232
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c28-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c28-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C29
+ description: "QF1A-C29 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.995052
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c29-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c29-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C29
+ description: "QF1E-C29 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00155
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c29-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c29-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C30
+ description: "QF1A-C30 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998271
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c30-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c30-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C30
+ description: "QF1E-C30 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999702
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c30-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c30-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C31
+ description: "QF1A-C31 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998005
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c31-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c31-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C31
+ description: "QF1E-C31 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999463
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c31-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c31-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C32
+ description: "QF1A-C32 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997794
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c32-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c32-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C32
+ description: "QF1E-C32 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00203
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c32-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c32-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C01
+ description: "QF1A-C01 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00504
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c01-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c01-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C01
+ description: "QF1E-C01 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998212
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c01-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c01-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C02
+ description: "QF1A-C02 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0037
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c02-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c02-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C02
+ description: "QF1E-C02 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00093
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c02-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c02-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C03
+ description: "QF1A-C03 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0025
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c03-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c03-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C04
+ description: "QD2E-C04 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999305341
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c04-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c04-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C05
+ description: "QD2A-C05 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997452918
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c05-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c05-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C05
+ description: "QD2E-C05 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997993208
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c05-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c05-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C06
+ description: "QD2A-C06 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.006031322
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c06-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c06-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C06
+ description: "QD2E-C06 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998547233
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c06-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c06-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C07
+ description: "QD2A-C07 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.002327856
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c07-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c07-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C07
+ description: "QD2E-C07 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000154369
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c07-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c07-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C08
+ description: "QD2A-C08 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.009580478
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c08-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c08-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C08
+ description: "QD2E-C08 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00447669
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c08-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c08-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C09
+ description: "QD2A-C09 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0015563
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c09-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c09-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C09
+ description: "QD2E-C09 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997221365
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c09-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c09-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C10
+ description: "QD2A-C10 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.005954167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c10-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c10-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C10
+ description: "QD2E-C10 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.006725723
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c10-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c10-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C11
+ description: "QD2A-C11 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.994535144
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c11-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c11-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C11
+ description: "QD2E-C11 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999550256
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c11-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c11-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C12
+ description: "QD2A-C12 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001479145
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c12-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c12-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C12
+ description: "QD2E-C12 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000321811
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c12-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c12-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C13
+ description: "QD2A-C13 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.006715036
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c13-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c13-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C13
+ description: "QD2E-C13 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0036395
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c13-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c13-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C14
+ description: "QD2A-C14 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997684471
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c14-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c14-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C14
+ description: "QD2E-C14 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000385922
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c14-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c14-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C15
+ description: "QD2A-C15 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999010167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c15-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c15-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C15
+ description: "QD2E-C15 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998392922
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c15-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c15-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C16
+ description: "QD2A-C16 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999318789
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c16-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c16-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C16
+ description: "QD2E-C16 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996926967
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c16-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c16-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C17
+ description: "QD2A-C17 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000849027
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c17-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c17-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C17
+ description: "QD2E-C17 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.003392444
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c17-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c17-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C18
+ description: "QD2A-C18 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001312133
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c18-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c18-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C18
+ description: "QD2E-C18 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.005402902
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c18-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c18-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C19
+ description: "QD2A-C19 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.995846789
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c19-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c19-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C19
+ description: "QD2E-C19 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.005877011
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c19-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c19-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C20
+ description: "QD2A-C20 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001016211
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c20-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c20-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C20
+ description: "QD2E-C20 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999010167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c20-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c20-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C21
+ description: "QD2A-C21 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.007265811
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c21-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c21-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C21
+ description: "QD2E-C21 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998238611
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c21-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c21-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C22
+ description: "QD2A-C22 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998161456
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c22-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c22-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C22
+ description: "QD2E-C22 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.004642522
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c22-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c22-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C23
+ description: "QD2A-C23 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001479145
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c23-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c23-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C23
+ description: "QD2E-C23 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001942078
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c23-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c23-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C24
+ description: "QD2A-C24 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999087322
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c24-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c24-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C24
+ description: "QD2E-C24 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998547233
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c24-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c24-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C25
+ description: "QD2A-C25 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001698055
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c25-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c25-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C25
+ description: "QD2E-C25 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999704567
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c25-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c25-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C26
+ description: "QD2A-C26 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999164478
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c26-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c26-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C26
+ description: "QD2E-C26 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000694659
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c26-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c26-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C27
+ description: "QD2A-C27 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.99945971
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c27-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c27-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C27
+ description: "QD2E-C27 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999922816
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c27-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c27-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C28
+ description: "QD2A-C28 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999922816
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c28-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c28-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C28
+ description: "QD2E-C28 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997838839
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c28-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c28-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C29
+ description: "QD2A-C29 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.003318926
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c29-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c29-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C29
+ description: "QD2E-C29 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.004179589
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c29-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c29-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C30
+ description: "QD2A-C30 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999010167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c30-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c30-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C30
+ description: "QD2E-C30 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.9987787
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c30-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c30-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C31
+ description: "QD2A-C31 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.004411056
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c31-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c31-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C31
+ description: "QD2E-C31 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0029451
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c31-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c31-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C32
+ description: "QD2A-C32 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.009426167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c32-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c32-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C32
+ description: "QD2E-C32 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0050283
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c32-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c32-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C01
+ description: "QD2A-C01 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998533498
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c01-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c01-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C01
+ description: "QD2E-C01 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.003485189
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c01-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c01-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C02
+ description: "QD2A-C02 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001389318
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c02-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c02-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C02
+ description: "QD2E-C02 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.006108478
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c02-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c02-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C03
+ description: "QD2A-C03 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.002096389
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c03-a/current
- unit: A
-- type: pyaml.diagnostics.tune_monitor
- name: BETATRON_TUNE
- tune_h:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qh
- unit: mm
- tune_v:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qv
- unit: mm
-- type: pyaml.tuning_tools.tune
- name: DEFAULT_TUNE_CORRECTION
- quad_array_name: QForTune
- betatron_tune_name: BETATRON_TUNE
- response_matrix: file:tune_response.json
-- type: pyaml.tuning_tools.tune_response_matrix
- name: DEFAULT_TUNE_RESPONSE_MATRIX
- quad_array_name: QForTune
- betatron_tune_name: BETATRON_TUNE
- quad_delta: 1e-4
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c03-a/current
diff --git a/tests/config/EBSTune-range.yaml b/tests/config/EBSTune-range.yaml
deleted file mode 100644
index 3f22f1328..000000000
--- a/tests/config/EBSTune-range.yaml
+++ /dev/null
@@ -1,1777 +0,0 @@
-type: pyaml.accelerator
-facility: ESRF
-machine: sr
-energy: 6e9
-simulators:
- - type: pyaml.lattice.simulator
- lattice: sr/lattices/ebs.mat
- name: design
-controls:
- - type: tango.pyaml.controlsystem
- tango_host: ebs-simu-3:10000
- name: live
-data_folder: /data/store
-arrays:
- - type: pyaml.arrays.magnet
- name: QForTune
- elements:
- - QD2*
- - QF1*
-devices:
-- type: pyaml.magnet.quadrupole
- name: QF1E-C04
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00054
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c04-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C05
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.996841
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-a/current
- unit: A
- range: [10,109]
-- type: pyaml.magnet.quadrupole
- name: QF1E-C05
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00191
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C06
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0003
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c06-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C06
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.997615
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c06-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C07
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998152
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c07-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C07
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00262
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c07-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C08
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00319
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c08-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C08
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.996180929
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c08-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C09
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00206
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c09-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C09
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999285
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c09-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C10
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00232
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c10-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C10
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998212
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c10-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C11
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999225
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c11-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C11
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998033
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c11-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C12
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998748
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c12-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C12
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0023
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c12-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C13
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00337
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c13-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C13
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00403
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c13-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C14
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00182
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c14-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C14
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998303
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c14-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C15
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998748
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c15-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C15
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.994098
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c15-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C16
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00232
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c16-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C16
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.99884
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c16-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C17
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0079
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c17-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C17
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999523
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c17-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C18
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c18-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C18
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999854
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c18-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C19
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.99845
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c19-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C19
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c19-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C20
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00095
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c20-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C20
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.996753
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c20-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C21
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00334
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c21-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C21
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.997707
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c21-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C22
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00152
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c22-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C22
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998124
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c22-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C23
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.996662
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c23-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C23
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0017
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c23-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C24
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999642
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c24-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C24
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00042
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c24-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C25
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00471
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c25-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C25
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00393
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c25-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C26
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.992906
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c26-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C26
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00268
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c26-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C27
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00248
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c27-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C27
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00203
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c27-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C28
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998030791
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c28-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C28
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00232
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c28-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C29
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.995052
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c29-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C29
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00155
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c29-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C30
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998271
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c30-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C30
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999702
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c30-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C31
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998005
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c31-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C31
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999463
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c31-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C32
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.997794
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c32-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C32
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00203
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c32-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C01
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00504
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c01-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C01
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998212
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c01-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C02
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0037
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c02-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1E-C02
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00093
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c02-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QF1A-C03
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0025
- crosstalk: 1.0
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QF1_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c03-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C04
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999305341
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c04-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C05
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.997452918
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c05-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C05
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.997993208
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c05-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C06
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.006031322
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c06-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C06
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998547233
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c06-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C07
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.002327856
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c07-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C07
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.000154369
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c07-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C08
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.009580478
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c08-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C08
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.00447669
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c08-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C09
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0015563
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c09-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C09
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.997221365
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c09-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C10
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.005954167
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c10-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C10
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.006725723
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c10-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C11
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.994535144
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c11-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C11
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999550256
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c11-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C12
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.001479145
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c12-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C12
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.000321811
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c12-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C13
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.006715036
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c13-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C13
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0036395
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c13-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C14
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.997684471
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c14-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C14
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.000385922
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c14-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C15
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999010167
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c15-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C15
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998392922
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c15-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C16
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999318789
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c16-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C16
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.996926967
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c16-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C17
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.000849027
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c17-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C17
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.003392444
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c17-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C18
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.001312133
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c18-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C18
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.005402902
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c18-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C19
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.995846789
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c19-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C19
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.005877011
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c19-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C20
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.001016211
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c20-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C20
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999010167
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c20-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C21
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.007265811
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c21-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C21
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998238611
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c21-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C22
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998161456
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c22-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C22
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.004642522
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c22-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C23
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.001479145
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c23-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C23
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.001942078
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c23-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C24
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999087322
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c24-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C24
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998547233
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c24-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C25
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.001698055
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c25-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C25
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999704567
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c25-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C26
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999164478
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c26-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C26
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.000694659
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c26-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C27
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.99945971
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c27-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C27
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999922816
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c27-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C28
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999922816
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c28-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C28
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.997838839
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c28-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C29
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.003318926
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c29-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C29
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.004179589
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c29-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C30
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.999010167
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c30-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C30
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.9987787
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c30-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C31
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.004411056
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c31-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C31
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0029451
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c31-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C32
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.009426167
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c32-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C32
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.0050283
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c32-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C01
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 0.998533498
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c01-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C01
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.003485189
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c01-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C02
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.001389318
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c02-a/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2E-C02
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.006108478
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c02-e/current
- unit: A
-- type: pyaml.magnet.quadrupole
- name: QD2A-C03
- model:
- type: pyaml.magnet.linear_model
- calibration_factor: 1.002096389
- crosstalk: 0.99912
- curve:
- type: pyaml.configuration.csvcurve
- file: sr/magnet_models/QD2_strength.csv
- unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c03-a/current
- unit: A
-- type: pyaml.diagnostics.tune_monitor
- name: BETATRON_TUNE
- tune_h:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qh
- unit: mm
- tune_v:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qv
- unit: mm
-- type: pyaml.tuning_tools.tune
- name: DEFAULT_TUNE_CORRECTION
- quad_array_name: QForTune
- betatron_tune_name: BETATRON_TUNE
- response_matrix: file:tune_response.json
-- type: pyaml.tuning_tools.tune_response_matrix
- name: DEFAULT_TUNE_RESPONSE_MATRIX
- quad_array_name: QForTune
- betatron_tune_name: BETATRON_TUNE
- quad_delta: 1e-4
diff --git a/tests/config/EBSTune.yaml b/tests/config/EBSTune.yaml
index a631c34d4..f5a8d5c08 100644
--- a/tests/config/EBSTune.yaml
+++ b/tests/config/EBSTune.yaml
@@ -5,13 +5,14 @@ energy: 6e9
description: "Accelerator configuration for EBS storage ring"
simulators:
- type: pyaml.lattice.simulator
- description: "EBS lattice"
lattice: sr/lattices/ebs.mat
name: design
+ description: "EBS lattice"
controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/ebs_catalogs.yaml
data_folder: /data/store
arrays:
- type: pyaml.arrays.magnet
@@ -20,1760 +21,1629 @@ arrays:
- QD2*
- QF1*
devices:
+- type: pyaml.diagnostics.tune_monitor
+ name: BETATRON_TUNE
+ tune_h: srdiag/beam-tune/main/Qh
+ tune_v: srdiag/beam-tune/main/Qv
+- type: pyaml.tuning_tools.tune
+ name: DEFAULT_TUNE_CORRECTION
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ response_matrix: ${path:tune_response.json}
+- type: pyaml.tuning_tools.tune_response_matrix
+ name: DEFAULT_TUNE_RESPONSE_MATRIX
+ quad_array_name: QForTune
+ betatron_tune_name: BETATRON_TUNE
+ quad_delta: 1e-4
- type: pyaml.magnet.quadrupole
- description: "QF1E-C04 quadrupole"
name: QF1E-C04
+ description: "QF1E-C04 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00054
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c04-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c04-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C05
+ description: "QF1A-C05 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996841
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C05
+ description: "QF1E-C05 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00191
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c05-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c05-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C06
+ description: "QF1A-C06 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0003
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c06-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c06-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C06
+ description: "QF1E-C06 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997615
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c06-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c06-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C07
+ description: "QF1A-C07 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998152
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c07-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c07-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C07
+ description: "QF1E-C07 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00262
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c07-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c07-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C08
+ description: "QF1A-C08 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00319
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c08-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c08-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C08
+ description: "QF1E-C08 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996180929
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c08-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c08-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C09
+ description: "QF1A-C09 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00206
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c09-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c09-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C09
+ description: "QF1E-C09 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999285
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c09-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c09-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C10
+ description: "QF1A-C10 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00232
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c10-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c10-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C10
+ description: "QF1E-C10 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998212
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c10-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c10-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C11
+ description: "QF1A-C11 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999225
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c11-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c11-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C11
+ description: "QF1E-C11 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998033
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c11-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c11-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C12
+ description: "QF1A-C12 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998748
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c12-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c12-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C12
+ description: "QF1E-C12 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0023
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c12-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c12-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C13
+ description: "QF1A-C13 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00337
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c13-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c13-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C13
+ description: "QF1E-C13 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00403
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c13-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c13-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C14
+ description: "QF1A-C14 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00182
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c14-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c14-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C14
+ description: "QF1E-C14 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998303
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c14-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c14-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C15
+ description: "QF1A-C15 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998748
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c15-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c15-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C15
+ description: "QF1E-C15 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.994098
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c15-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c15-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C16
+ description: "QF1A-C16 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00232
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c16-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c16-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C16
+ description: "QF1E-C16 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.99884
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c16-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c16-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C17
+ description: "QF1A-C17 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0079
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c17-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c17-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C17
+ description: "QF1E-C17 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999523
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c17-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c17-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C18
+ description: "QF1A-C18 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c18-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c18-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C18
+ description: "QF1E-C18 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999854
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c18-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c18-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C19
+ description: "QF1A-C19 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.99845
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c19-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c19-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C19
+ description: "QF1E-C19 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c19-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c19-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C20
+ description: "QF1A-C20 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00095
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c20-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c20-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C20
+ description: "QF1E-C20 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996753
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c20-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c20-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C21
+ description: "QF1A-C21 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00334
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c21-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c21-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C21
+ description: "QF1E-C21 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997707
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c21-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c21-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C22
+ description: "QF1A-C22 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00152
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c22-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c22-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C22
+ description: "QF1E-C22 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998124
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c22-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c22-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C23
+ description: "QF1A-C23 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996662
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c23-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c23-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C23
+ description: "QF1E-C23 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0017
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c23-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c23-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C24
+ description: "QF1A-C24 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999642
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c24-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c24-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C24
+ description: "QF1E-C24 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00042
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c24-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c24-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C25
+ description: "QF1A-C25 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00471
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c25-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c25-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C25
+ description: "QF1E-C25 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00393
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c25-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c25-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C26
+ description: "QF1A-C26 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.992906
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c26-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c26-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C26
+ description: "QF1E-C26 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00268
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c26-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c26-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C27
+ description: "QF1A-C27 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00248
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c27-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c27-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C27
+ description: "QF1E-C27 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00203
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c27-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c27-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C28
+ description: "QF1A-C28 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998030791
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c28-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c28-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C28
+ description: "QF1E-C28 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00232
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c28-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c28-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C29
+ description: "QF1A-C29 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.995052
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c29-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c29-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C29
+ description: "QF1E-C29 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00155
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c29-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c29-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C30
+ description: "QF1A-C30 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998271
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c30-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c30-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C30
+ description: "QF1E-C30 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999702
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c30-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c30-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C31
+ description: "QF1A-C31 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998005
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c31-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c31-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C31
+ description: "QF1E-C31 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999463
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c31-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c31-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C32
+ description: "QF1A-C32 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997794
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c32-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c32-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C32
+ description: "QF1E-C32 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00203
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c32-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c32-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C01
+ description: "QF1A-C01 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00504
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c01-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c01-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C01
+ description: "QF1E-C01 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998212
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c01-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c01-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C02
+ description: "QF1A-C02 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0037
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c02-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c02-a/current
- type: pyaml.magnet.quadrupole
name: QF1E-C02
+ description: "QF1E-C02 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00093
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c02-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c02-e/current
- type: pyaml.magnet.quadrupole
name: QF1A-C03
+ description: "QF1A-C03 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0025
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qf1/c03-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qf1/c03-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C04
+ description: "QD2E-C04 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999305341
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c04-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c04-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C05
+ description: "QD2A-C05 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997452918
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c05-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c05-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C05
+ description: "QD2E-C05 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997993208
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c05-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c05-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C06
+ description: "QD2A-C06 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.006031322
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c06-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c06-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C06
+ description: "QD2E-C06 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998547233
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c06-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c06-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C07
+ description: "QD2A-C07 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.002327856
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c07-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c07-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C07
+ description: "QD2E-C07 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000154369
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c07-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c07-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C08
+ description: "QD2A-C08 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.009580478
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c08-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c08-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C08
+ description: "QD2E-C08 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.00447669
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c08-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c08-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C09
+ description: "QD2A-C09 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0015563
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c09-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c09-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C09
+ description: "QD2E-C09 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997221365
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c09-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c09-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C10
+ description: "QD2A-C10 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.005954167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c10-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c10-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C10
+ description: "QD2E-C10 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.006725723
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c10-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c10-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C11
+ description: "QD2A-C11 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.994535144
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c11-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c11-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C11
+ description: "QD2E-C11 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999550256
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c11-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c11-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C12
+ description: "QD2A-C12 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001479145
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c12-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c12-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C12
+ description: "QD2E-C12 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000321811
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c12-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c12-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C13
+ description: "QD2A-C13 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.006715036
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c13-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c13-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C13
+ description: "QD2E-C13 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0036395
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c13-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c13-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C14
+ description: "QD2A-C14 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997684471
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c14-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c14-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C14
+ description: "QD2E-C14 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000385922
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c14-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c14-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C15
+ description: "QD2A-C15 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999010167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c15-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c15-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C15
+ description: "QD2E-C15 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998392922
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c15-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c15-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C16
+ description: "QD2A-C16 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999318789
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c16-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c16-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C16
+ description: "QD2E-C16 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.996926967
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c16-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c16-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C17
+ description: "QD2A-C17 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000849027
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c17-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c17-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C17
+ description: "QD2E-C17 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.003392444
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c17-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c17-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C18
+ description: "QD2A-C18 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001312133
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c18-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c18-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C18
+ description: "QD2E-C18 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.005402902
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c18-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c18-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C19
+ description: "QD2A-C19 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.995846789
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c19-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c19-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C19
+ description: "QD2E-C19 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.005877011
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c19-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c19-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C20
+ description: "QD2A-C20 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001016211
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c20-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c20-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C20
+ description: "QD2E-C20 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999010167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c20-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c20-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C21
+ description: "QD2A-C21 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.007265811
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c21-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c21-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C21
+ description: "QD2E-C21 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998238611
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c21-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c21-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C22
+ description: "QD2A-C22 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998161456
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c22-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c22-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C22
+ description: "QD2E-C22 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.004642522
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c22-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c22-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C23
+ description: "QD2A-C23 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001479145
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c23-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c23-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C23
+ description: "QD2E-C23 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001942078
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c23-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c23-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C24
+ description: "QD2A-C24 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999087322
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c24-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c24-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C24
+ description: "QD2E-C24 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998547233
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c24-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c24-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C25
+ description: "QD2A-C25 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001698055
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c25-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c25-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C25
+ description: "QD2E-C25 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999704567
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c25-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c25-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C26
+ description: "QD2A-C26 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999164478
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c26-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c26-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C26
+ description: "QD2E-C26 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.000694659
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c26-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c26-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C27
+ description: "QD2A-C27 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.99945971
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c27-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c27-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C27
+ description: "QD2E-C27 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999922816
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c27-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c27-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C28
+ description: "QD2A-C28 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999922816
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c28-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c28-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C28
+ description: "QD2E-C28 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.997838839
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c28-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c28-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C29
+ description: "QD2A-C29 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.003318926
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c29-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c29-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C29
+ description: "QD2E-C29 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.004179589
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c29-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c29-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C30
+ description: "QD2A-C30 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.999010167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c30-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c30-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C30
+ description: "QD2E-C30 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.9987787
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c30-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c30-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C31
+ description: "QD2A-C31 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.004411056
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c31-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c31-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C31
+ description: "QD2E-C31 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0029451
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c31-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c31-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C32
+ description: "QD2A-C32 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.009426167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c32-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c32-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C32
+ description: "QD2E-C32 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.0050283
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c32-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c32-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C01
+ description: "QD2A-C01 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 0.998533498
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c01-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c01-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C01
+ description: "QD2E-C01 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.003485189
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c01-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c01-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C02
+ description: "QD2A-C02 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.001389318
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c02-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c02-a/current
- type: pyaml.magnet.quadrupole
name: QD2E-C02
+ description: "QD2E-C02 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.006108478
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c02-e/current
- unit: A
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c02-e/current
- type: pyaml.magnet.quadrupole
name: QD2A-C03
+ description: "QD2A-C03 quadrupole"
model:
type: pyaml.magnet.linear_model
calibration_factor: 1.002096389
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/vps-qd2/c03-a/current
- unit: A
-- type: pyaml.diagnostics.tune_monitor
- name: BETATRON_TUNE
- tune_h:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qh
- unit: mm
- tune_v:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qv
- unit: mm
-- type: pyaml.tuning_tools.tune
- name: DEFAULT_TUNE_CORRECTION
- quad_array_name: QForTune
- betatron_tune_name: BETATRON_TUNE
- response_matrix: file:tune_response.json
-- type: pyaml.tuning_tools.tune_response_matrix
- name: DEFAULT_TUNE_RESPONSE_MATRIX
- quad_array_name: QForTune
- betatron_tune_name: BETATRON_TUNE
- quad_delta: 1e-4
+ hardware_unit: A
+ powerconverter: srmag/vps-qd2/c03-a/current
diff --git a/tests/config/EBSTuneOATango.yaml b/tests/config/EBSTuneOATango.yaml
index adb7be831..dae87e8d6 100644
--- a/tests/config/EBSTuneOATango.yaml
+++ b/tests/config/EBSTuneOATango.yaml
@@ -147,7 +147,7 @@ devices:
calibration_factor: 1.00054
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -162,7 +162,7 @@ devices:
calibration_factor: 0.996841
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -177,7 +177,7 @@ devices:
calibration_factor: 1.00191
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -192,7 +192,7 @@ devices:
calibration_factor: 1.0003
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -207,7 +207,7 @@ devices:
calibration_factor: 0.997615
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -222,7 +222,7 @@ devices:
calibration_factor: 0.998152
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -237,7 +237,7 @@ devices:
calibration_factor: 1.00262
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -252,7 +252,7 @@ devices:
calibration_factor: 1.00319
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -267,7 +267,7 @@ devices:
calibration_factor: 0.996180929
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -282,7 +282,7 @@ devices:
calibration_factor: 1.00206
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -297,7 +297,7 @@ devices:
calibration_factor: 0.999285
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -312,7 +312,7 @@ devices:
calibration_factor: 1.00232
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -327,7 +327,7 @@ devices:
calibration_factor: 0.998212
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -342,7 +342,7 @@ devices:
calibration_factor: 0.999225
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -357,7 +357,7 @@ devices:
calibration_factor: 0.998033
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -372,7 +372,7 @@ devices:
calibration_factor: 0.998748
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -387,7 +387,7 @@ devices:
calibration_factor: 1.0023
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -402,7 +402,7 @@ devices:
calibration_factor: 1.00337
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -417,7 +417,7 @@ devices:
calibration_factor: 1.00403
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -432,7 +432,7 @@ devices:
calibration_factor: 1.00182
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -447,7 +447,7 @@ devices:
calibration_factor: 0.998303
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -462,7 +462,7 @@ devices:
calibration_factor: 0.998748
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -477,7 +477,7 @@ devices:
calibration_factor: 0.994098
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -492,7 +492,7 @@ devices:
calibration_factor: 1.00232
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -507,7 +507,7 @@ devices:
calibration_factor: 0.99884
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -522,7 +522,7 @@ devices:
calibration_factor: 1.0079
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -537,7 +537,7 @@ devices:
calibration_factor: 0.999523
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -552,7 +552,7 @@ devices:
calibration_factor: 1
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -567,7 +567,7 @@ devices:
calibration_factor: 0.999854
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -582,7 +582,7 @@ devices:
calibration_factor: 0.99845
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -597,7 +597,7 @@ devices:
calibration_factor: 1
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -612,7 +612,7 @@ devices:
calibration_factor: 1.00095
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -627,7 +627,7 @@ devices:
calibration_factor: 0.996753
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -642,7 +642,7 @@ devices:
calibration_factor: 1.00334
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -657,7 +657,7 @@ devices:
calibration_factor: 0.997707
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -672,7 +672,7 @@ devices:
calibration_factor: 1.00152
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -687,7 +687,7 @@ devices:
calibration_factor: 0.998124
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -702,7 +702,7 @@ devices:
calibration_factor: 0.996662
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -717,7 +717,7 @@ devices:
calibration_factor: 1.0017
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -732,7 +732,7 @@ devices:
calibration_factor: 0.999642
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -747,7 +747,7 @@ devices:
calibration_factor: 1.00042
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -762,7 +762,7 @@ devices:
calibration_factor: 1.00471
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -777,7 +777,7 @@ devices:
calibration_factor: 1.00393
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -792,7 +792,7 @@ devices:
calibration_factor: 0.992906
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -807,7 +807,7 @@ devices:
calibration_factor: 1.00268
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -822,7 +822,7 @@ devices:
calibration_factor: 1.00248
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -837,7 +837,7 @@ devices:
calibration_factor: 1.00203
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -852,7 +852,7 @@ devices:
calibration_factor: 0.998030791
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -867,7 +867,7 @@ devices:
calibration_factor: 1.00232
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -882,7 +882,7 @@ devices:
calibration_factor: 0.995052
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -897,7 +897,7 @@ devices:
calibration_factor: 1.00155
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -912,7 +912,7 @@ devices:
calibration_factor: 0.998271
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -927,7 +927,7 @@ devices:
calibration_factor: 0.999702
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -942,7 +942,7 @@ devices:
calibration_factor: 0.998005
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -957,7 +957,7 @@ devices:
calibration_factor: 0.999463
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -972,7 +972,7 @@ devices:
calibration_factor: 0.997794
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -987,7 +987,7 @@ devices:
calibration_factor: 1.00203
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -1002,7 +1002,7 @@ devices:
calibration_factor: 1.00504
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -1017,7 +1017,7 @@ devices:
calibration_factor: 0.998212
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -1032,7 +1032,7 @@ devices:
calibration_factor: 1.0037
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -1047,7 +1047,7 @@ devices:
calibration_factor: 1.00093
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -1062,7 +1062,7 @@ devices:
calibration_factor: 1.0025
crosstalk: 1.0
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
unit: 1/m
powerconverter:
@@ -1077,7 +1077,7 @@ devices:
calibration_factor: 0.999305341
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1092,7 +1092,7 @@ devices:
calibration_factor: 0.997452918
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1107,7 +1107,7 @@ devices:
calibration_factor: 0.997993208
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1122,7 +1122,7 @@ devices:
calibration_factor: 1.006031322
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1137,7 +1137,7 @@ devices:
calibration_factor: 0.998547233
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1152,7 +1152,7 @@ devices:
calibration_factor: 1.002327856
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1167,7 +1167,7 @@ devices:
calibration_factor: 1.000154369
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1182,7 +1182,7 @@ devices:
calibration_factor: 1.009580478
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1197,7 +1197,7 @@ devices:
calibration_factor: 1.00447669
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1212,7 +1212,7 @@ devices:
calibration_factor: 1.0015563
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1227,7 +1227,7 @@ devices:
calibration_factor: 0.997221365
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1242,7 +1242,7 @@ devices:
calibration_factor: 1.005954167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1257,7 +1257,7 @@ devices:
calibration_factor: 1.006725723
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1272,7 +1272,7 @@ devices:
calibration_factor: 0.994535144
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1287,7 +1287,7 @@ devices:
calibration_factor: 0.999550256
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1302,7 +1302,7 @@ devices:
calibration_factor: 1.001479145
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1317,7 +1317,7 @@ devices:
calibration_factor: 1.000321811
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1332,7 +1332,7 @@ devices:
calibration_factor: 1.006715036
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1347,7 +1347,7 @@ devices:
calibration_factor: 1.0036395
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1362,7 +1362,7 @@ devices:
calibration_factor: 0.997684471
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1377,7 +1377,7 @@ devices:
calibration_factor: 1.000385922
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1392,7 +1392,7 @@ devices:
calibration_factor: 0.999010167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1407,7 +1407,7 @@ devices:
calibration_factor: 0.998392922
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1422,7 +1422,7 @@ devices:
calibration_factor: 0.999318789
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1437,7 +1437,7 @@ devices:
calibration_factor: 0.996926967
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1452,7 +1452,7 @@ devices:
calibration_factor: 1.000849027
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1467,7 +1467,7 @@ devices:
calibration_factor: 1.003392444
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1482,7 +1482,7 @@ devices:
calibration_factor: 1.001312133
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1497,7 +1497,7 @@ devices:
calibration_factor: 1.005402902
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1512,7 +1512,7 @@ devices:
calibration_factor: 0.995846789
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1527,7 +1527,7 @@ devices:
calibration_factor: 1.005877011
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1542,7 +1542,7 @@ devices:
calibration_factor: 1.001016211
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1557,7 +1557,7 @@ devices:
calibration_factor: 0.999010167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1572,7 +1572,7 @@ devices:
calibration_factor: 1.007265811
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1587,7 +1587,7 @@ devices:
calibration_factor: 0.998238611
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1602,7 +1602,7 @@ devices:
calibration_factor: 0.998161456
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1617,7 +1617,7 @@ devices:
calibration_factor: 1.004642522
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1632,7 +1632,7 @@ devices:
calibration_factor: 1.001479145
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1647,7 +1647,7 @@ devices:
calibration_factor: 1.001942078
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1662,7 +1662,7 @@ devices:
calibration_factor: 0.999087322
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1677,7 +1677,7 @@ devices:
calibration_factor: 0.998547233
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1692,7 +1692,7 @@ devices:
calibration_factor: 1.001698055
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1707,7 +1707,7 @@ devices:
calibration_factor: 0.999704567
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1722,7 +1722,7 @@ devices:
calibration_factor: 0.999164478
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1737,7 +1737,7 @@ devices:
calibration_factor: 1.000694659
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1752,7 +1752,7 @@ devices:
calibration_factor: 0.99945971
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1767,7 +1767,7 @@ devices:
calibration_factor: 0.999922816
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1782,7 +1782,7 @@ devices:
calibration_factor: 0.999922816
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1797,7 +1797,7 @@ devices:
calibration_factor: 0.997838839
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1812,7 +1812,7 @@ devices:
calibration_factor: 1.003318926
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1827,7 +1827,7 @@ devices:
calibration_factor: 1.004179589
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1842,7 +1842,7 @@ devices:
calibration_factor: 0.999010167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1857,7 +1857,7 @@ devices:
calibration_factor: 0.9987787
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1872,7 +1872,7 @@ devices:
calibration_factor: 1.004411056
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1887,7 +1887,7 @@ devices:
calibration_factor: 1.0029451
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1902,7 +1902,7 @@ devices:
calibration_factor: 1.009426167
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1917,7 +1917,7 @@ devices:
calibration_factor: 1.0050283
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1932,7 +1932,7 @@ devices:
calibration_factor: 0.998533498
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1947,7 +1947,7 @@ devices:
calibration_factor: 1.003485189
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1962,7 +1962,7 @@ devices:
calibration_factor: 1.001389318
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1977,7 +1977,7 @@ devices:
calibration_factor: 1.006108478
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
@@ -1992,7 +1992,7 @@ devices:
calibration_factor: 1.002096389
crosstalk: 0.99912
curve:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
unit: 1/m
powerconverter:
diff --git a/tests/config/EBS_chromaticity.yaml b/tests/config/EBS_chromaticity.yaml
deleted file mode 100644
index d7e45bcff..000000000
--- a/tests/config/EBS_chromaticity.yaml
+++ /dev/null
@@ -1,3892 +0,0 @@
-type: pyaml.accelerator
-facility: ESRF
-machine: sr
-energy: 6e9
-alphac: 8.623614679299252e-05
-simulators:
- - type: pyaml.lattice.simulator
- lattice: sr/lattices/ebs.mat
- name: design
-controls:
- - type: tango.pyaml.controlsystem
- tango_host: ebs-simu-2:10000
- name: live
-data_folder: /data/store
-arrays:
- - type: pyaml.arrays.bpm
- name: BPM
- elements:
- - BPM*
-devices:
-- type: pyaml.diagnostics.tune_monitor
- name: BETATRON_TUNE
- tune_h:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qh
- unit: "1"
- tune_v:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qv
- unit: "1"
-- type: pyaml.diagnostics.chromaticity_monitor
- name: CHROMATICITY_MONITOR
- betatron_tune_name: BETATRON_TUNE
- rf_plant_name: RF
- bpm_array_name: BPM
- n_step: 5
-- type: pyaml.rf.rf_plant
- name: RF
- masterclock:
- type: tango.pyaml.attribute
- attribute: sy/ms/1/Frequency
- unit: Hz
- transmitters:
- - type: pyaml.rf.rf_transmitter
- name: RFTRA
- cavities: [CAV_C05_01,CAV_C05_02,CAV_C05_03,CAV_C05_04,CAV_C05_05,CAV_C07_01,CAV_C07_02,CAV_C07_03,CAV_C07_04,CAV_C07_05,CAV_C25_01,CAV_C25_02,CAV_C25_03]
- harmonic: 1
- distribution: 1
- voltage:
- type: tango.pyaml.attribute
- attribute: sys/ringsimulator/ebs/RfVoltage
- unit: V
-- type: pyaml.bpm.bpm
- name: BPM_C04-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C04-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C04-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C04-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C04-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C04-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C04-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C04-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C04-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C04-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C05-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c05-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C06-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c06-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C07-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c07-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C08-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c08-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C09-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c09-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C10-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c10-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C11-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c11-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C12-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c12-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C13-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c13-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C14-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c14-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C15-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c15-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C16-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c16-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C17-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c17-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C18-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c18-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C19-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c19-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C20-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c20-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C21-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c21-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C22-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c22-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C23-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c23-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C24-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c24-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C25-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c25-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C26-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c26-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C27-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c27-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C28-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c28-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C29-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c29-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C30-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c30-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C31-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c31-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C32-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c32-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C01-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C02-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c02-10/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-01/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-02/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-03/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-03/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-04/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-05/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-06/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-07
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-07/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-07/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-08
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-08/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-08/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-09
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-09/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-09/SA_VPosition
- unit: m
-- type: pyaml.bpm.bpm
- name: BPM_C03-10
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-10/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c03-10/SA_VPosition
- unit: m
diff --git a/tests/config/EBS_rf.yaml b/tests/config/EBS_rf.yaml
index 5094d3553..52b40210f 100644
--- a/tests/config/EBS_rf.yaml
+++ b/tests/config/EBS_rf.yaml
@@ -13,18 +13,12 @@ controls:
data_folder: /data/store
devices:
- type: pyaml.rf.rf_plant
- name: RF
- masterclock:
- type: tango.pyaml.attribute
- attribute: sy/ms/1/Frequency
- unit: Hz
+ name: DEFAULT_RF_PLANT
+ masterclock: sy/ms/1/Frequency
transmitters:
- type: pyaml.rf.rf_transmitter
name: RFTRA
cavities: [CAV_C05_01,CAV_C05_02,CAV_C05_03,CAV_C05_04,CAV_C05_05,CAV_C07_01,CAV_C07_02,CAV_C07_03,CAV_C07_04,CAV_C07_05,CAV_C25_01,CAV_C25_02,CAV_C25_03]
harmonic: 1
distribution: 1
- voltage:
- type: tango.pyaml.attribute
- attribute: sys/ringsimulator/ebs/RfVoltage
- unit: V
+ voltage: sys/ringsimulator/ebs/RfVoltage
diff --git a/tests/config/EBS_rf_multi.yaml b/tests/config/EBS_rf_multi.yaml
index 1d6d42993..d3c7133be 100644
--- a/tests/config/EBS_rf_multi.yaml
+++ b/tests/config/EBS_rf_multi.yaml
@@ -10,38 +10,27 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/ebs_catalogs.yaml
data_folder: /data/store
devices:
- type: pyaml.rf.rf_plant
- name: RF
- masterclock:
- type: tango.pyaml.attribute
- attribute: sy/ms/1/Frequency
- unit: Hz
+ name: DEFAULT_RF_PLANT
+ masterclock: sy/ms/1/Frequency
transmitters:
- type: pyaml.rf.rf_transmitter
name: RFTRA1
cavities: [CAV_C05_01,CAV_C05_02,CAV_C05_03,CAV_C05_04,CAV_C05_05,CAV_C07_01,CAV_C07_02,CAV_C07_03,CAV_C07_04,CAV_C07_05]
harmonic: 1
distribution: 0.83333333333
- voltage:
- type: tango.pyaml.attribute
- attribute: sr/tra/1/RfVoltage
- unit: V
+ voltage: sr/tra/1/RfVoltage
- type: pyaml.rf.rf_transmitter
name: RFTRA2
cavities: [CAV_C25_01,CAV_C25_02]
harmonic: 1
distribution: 0.16666666666
- voltage:
- type: tango.pyaml.attribute
- attribute: sr/tra/2/RfVoltage
- unit: V
+ voltage: sr/tra/2/RfVoltage
- type: pyaml.rf.rf_transmitter
name: RFTRA_HARMONIC
cavities: [CAV_C25_03]
harmonic: 4
- voltage:
- type: tango.pyaml.attribute
- attribute: sr/tra/harm/RfVoltage
- unit: V
+ voltage: sr/tra/harm/RfVoltage
diff --git a/tests/config/EBS_rf_notrans.yaml b/tests/config/EBS_rf_notrans.yaml
index d6cb3ee69..1306d8c28 100644
--- a/tests/config/EBS_rf_notrans.yaml
+++ b/tests/config/EBS_rf_notrans.yaml
@@ -10,11 +10,9 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/ebs_catalogs.yaml
data_folder: /data/store
devices:
- type: pyaml.rf.rf_plant
- name: RF
- masterclock:
- type: tango.pyaml.attribute
- attribute: sy/ms/1/Frequency
- unit: Hz
+ name: DEFAULT_RF_PLANT
+ masterclock: sy/ms/1/Frequency
diff --git a/tests/config/bad_catalog_duplicate_key.yaml b/tests/config/bad_catalog_duplicate_key.yaml
new file mode 100644
index 000000000..ddf320b9c
--- /dev/null
+++ b/tests/config/bad_catalog_duplicate_key.yaml
@@ -0,0 +1,21 @@
+type: pyaml.accelerator
+facility: ESRF
+machine: sr
+energy: 6e9
+data_folder: /data/store
+devices: []
+catalogs:
+ - type: tango.pyaml.static_catalog
+ entries:
+ - type: tango.pyaml.static_catalog_entry
+ key: duplicated/key
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/test/one
+ unit: A
+ - type: tango.pyaml.static_catalog_entry
+ key: duplicated/key
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/test/two
+ unit: A
diff --git a/tests/config/bad_conf_duplicate_2.yaml b/tests/config/bad_conf_duplicate_2.yaml
index 7282bdafd..346957aa8 100644
--- a/tests/config/bad_conf_duplicate_2.yaml
+++ b/tests/config/bad_conf_duplicate_2.yaml
@@ -10,6 +10,7 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/sr_catalogs.yaml
data_folder: /data/store
arrays:
- type: pyaml.arrays.bpm
@@ -22,37 +23,13 @@ arrays:
devices:
- type: pyaml.bpm.bpm
name: BPM_C04-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-04/SA_HPosition
+ y_pos: srdiag/bpm/c04-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-05/SA_HPosition
+ y_pos: srdiag/bpm/c04-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-06/SA_HPosition
+ y_pos: srdiag/bpm/c04-06/SA_VPosition
diff --git a/tests/config/bad_conf_duplicate_3.yaml b/tests/config/bad_conf_duplicate_3.yaml
index 6e9c7b926..9149009fb 100644
--- a/tests/config/bad_conf_duplicate_3.yaml
+++ b/tests/config/bad_conf_duplicate_3.yaml
@@ -10,6 +10,9 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: bpm-catalog
+catalogs:
+ - catalogs/sr_catalogs.yaml
data_folder: /data/store
arrays:
- type: pyaml.arrays.bpm
@@ -21,49 +24,17 @@ arrays:
devices:
- type: pyaml.bpm.bpm
name: BPM_C04-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-04/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-04/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-04/SA_HPosition
+ y_pos: srdiag/bpm/c04-04/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-05
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-05/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-05/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-05/SA_HPosition
+ y_pos: srdiag/bpm/c04-05/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-06/SA_HPosition
+ y_pos: srdiag/bpm/c04-06/SA_VPosition
- type: pyaml.bpm.bpm # duplicate device
name: BPM_C04-06
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-06/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-06/SA_HPosition
+ y_pos: srdiag/bpm/c04-06/SA_VPosition
diff --git a/tests/config/bpms.yaml b/tests/config/bpms.yaml
index e0efafec5..07caf59af 100644
--- a/tests/config/bpms.yaml
+++ b/tests/config/bpms.yaml
@@ -10,70 +10,28 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/sr_catalogs.yaml
data_folder: /data/store
devices:
- type: pyaml.bpm.bpm
name: BPM_C01-01
- model:
- type: pyaml.bpm.bpm_tiltoffset_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-01/SA_HPosition
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-01/SA_VPosition
- unit: mm
- x_offset:
- type: tango.pyaml.attribute
- attribute: srdiag/bpm/c01-01/HOffset
- unit: mm
- y_offset:
- type: tango.pyaml.attribute
- attribute: srdiag/bpm/c01-01/VOffset
- unit: mm
- tilt:
- type: tango.pyaml.attribute
- attribute: srdiag/bpm/c01-01/Tilt_Angle
- unit: rad
+ x_pos: srdiag/bpm/c01-01/SA_HPosition
+ y_pos: srdiag/bpm/c01-01/SA_VPosition
+ x_offset: srdiag/bpm/c01-01/HOffset
+ y_offset: srdiag/bpm/c01-01/VOffset
+ tilt: srdiag/bpm/c01-01/Tilt_Angle
- type: pyaml.bpm.bpm
name: BPM_C01-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-02/SA_HPosition
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-02/SA_VPosition
- unit: mm
+ x_pos: srdiag/bpm/c01-02/SA_HPosition
+ y_pos: srdiag/bpm/c01-02/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-03
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-03/SA_HPosition
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-03/SA_VPosition
- unit: mm
+ x_pos: srdiag/bpm/c01-03/SA_HPosition
+ y_pos: srdiag/bpm/c01-03/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C01-04
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos_index: 0
- y_pos_index: 1
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-04/Position
- unit: mm
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c01-04/Position
- unit: mm
+ x_pos: srdiag/bpm/c01-04/SA_HPosition
+ y_pos: srdiag/bpm/c01-04/SA_VPosition
- type: pyaml.magnet.cfm_magnet
name: SH1A-C01 #Name of the element in the lattice model
mapping:
diff --git a/tests/config/catalogs/ebs_bpm_catalogs.yaml b/tests/config/catalogs/ebs_bpm_catalogs.yaml
new file mode 100644
index 000000000..ced75f81c
--- /dev/null
+++ b/tests/config/catalogs/ebs_bpm_catalogs.yaml
@@ -0,0 +1,3852 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/HOffset
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c04-04/HOffset
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/VOffset
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c04-04/VOffset
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c05-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c05-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c06-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c06-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c07-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c07-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c08-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c08-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c09-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c09-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c10-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c10-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c11-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c11-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c12-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c12-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c13-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c13-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c14-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c14-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c15-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c15-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c16-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c16-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c17-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c17-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c18-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c18-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c19-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c19-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c20-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c20-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c21-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c21-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c22-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c22-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c23-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c23-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c24-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c24-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c25-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c25-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c26-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c26-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c27-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c27-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c28-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c28-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c29-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c29-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c30-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c30-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c31-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c31-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c32-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c32-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c02-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c02-10/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-01/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-01/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-02/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-02/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-03/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-03/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-04/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-04/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-05/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-05/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-06/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-06/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-07/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-07/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-07/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-07/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-08/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-08/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-08/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-08/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-09/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-09/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-09/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-09/SA_VPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-10/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-10/SA_HPosition
+ unit: m
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c03-10/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c03-10/SA_VPosition
+ unit: m
diff --git a/tests/config/catalogs/ebs_catalogs.yaml b/tests/config/catalogs/ebs_catalogs.yaml
new file mode 100644
index 000000000..d15349d6f
--- /dev/null
+++ b/tests/config/catalogs/ebs_catalogs.yaml
@@ -0,0 +1,8 @@
+type: tango.pyaml.static_catalog
+entries:
+ - catalogs/ebs_bpm_catalogs.yaml
+ - catalogs/ebs_rf_catalogs.yaml
+ - catalogs/ebs_diag_catalogs.yaml
+ - catalogs/ebs_magnets_catalogs.yaml
+ - catalogs/ebs_sh_catalogs.yaml
+ - catalogs/ebs_sext_catalogs.yaml
diff --git a/tests/config/catalogs/ebs_diag_catalogs.yaml b/tests/config/catalogs/ebs_diag_catalogs.yaml
new file mode 100644
index 000000000..84e820625
--- /dev/null
+++ b/tests/config/catalogs/ebs_diag_catalogs.yaml
@@ -0,0 +1,12 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/beam-tune/main/Qh
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/beam-tune/main/Qh
+ unit: ""
+- type: tango.pyaml.static_catalog_entry
+ key: srdiag/beam-tune/main/Qv
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/beam-tune/main/Qv
+ unit: ""
diff --git a/tests/config/catalogs/ebs_magnets_catalogs.yaml b/tests/config/catalogs/ebs_magnets_catalogs.yaml
new file mode 100644
index 000000000..79923fd6c
--- /dev/null
+++ b/tests/config/catalogs/ebs_magnets_catalogs.yaml
@@ -0,0 +1,875 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c04-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c04-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c05-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c05-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c05-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c05-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c06-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c06-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c06-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c06-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c07-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c07-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c07-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c07-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c08-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c08-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c08-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c08-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c09-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c09-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c09-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c09-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c10-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c10-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c10-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c10-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c11-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c11-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c11-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c11-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c12-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c12-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c12-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c12-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c13-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c13-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c13-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c13-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c14-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c14-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c14-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c14-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c15-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c15-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c15-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c15-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c16-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c16-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c16-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c16-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c17-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c17-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c17-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c17-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c18-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c18-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c18-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c18-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c19-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c19-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c19-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c19-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c20-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c20-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c20-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c20-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c21-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c21-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c21-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c21-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c22-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c22-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c22-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c22-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c23-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c23-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c23-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c23-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c24-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c24-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c24-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c24-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c25-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c25-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c25-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c25-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c26-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c26-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c26-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c26-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c27-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c27-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c27-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c27-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c28-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c28-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c28-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c28-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c29-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c29-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c29-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c29-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c30-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c30-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c30-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c30-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c31-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c31-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c31-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c31-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c32-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c32-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c32-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c32-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c01-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c01-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c01-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c01-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c02-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c02-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c02-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c02-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf1/c03-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf1/c03-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c04-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c04-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c05-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c05-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c05-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c05-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c06-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c06-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c06-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c06-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c07-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c07-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c07-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c07-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c08-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c08-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c08-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c08-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c09-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c09-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c09-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c09-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c10-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c10-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c10-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c10-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c11-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c11-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c11-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c11-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c12-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c12-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c12-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c12-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c13-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c13-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c13-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c13-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c14-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c14-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c14-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c14-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c15-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c15-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c15-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c15-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c16-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c16-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c16-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c16-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c17-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c17-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c17-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c17-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c18-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c18-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c18-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c18-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c19-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c19-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c19-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c19-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c20-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c20-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c20-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c20-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c21-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c21-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c21-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c21-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c22-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c22-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c22-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c22-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c23-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c23-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c23-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c23-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c24-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c24-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c24-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c24-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c25-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c25-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c25-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c25-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c26-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c26-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c26-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c26-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c27-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c27-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c27-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c27-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c28-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c28-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c28-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c28-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c29-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c29-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c29-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c29-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c30-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c30-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c30-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c30-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c31-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c31-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c31-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c31-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c32-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c32-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c32-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c32-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c01-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c01-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c01-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c01-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c02-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c02-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c02-e/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c02-e/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qd2/c03-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qd2/c03-a/current
+ range: [10,109]
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/vps-qf6/c04-b/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vps-qf6/c04-b/current
+ range: [10,109]
+ unit: A
diff --git a/tests/config/catalogs/ebs_rf_catalogs.yaml b/tests/config/catalogs/ebs_rf_catalogs.yaml
new file mode 100644
index 000000000..0739d3526
--- /dev/null
+++ b/tests/config/catalogs/ebs_rf_catalogs.yaml
@@ -0,0 +1,30 @@
+- type: tango.pyaml.static_catalog_entry
+ key: sys/ringsimulator/ebs/RfVoltage
+ device:
+ type: tango.pyaml.attribute
+ attribute: sys/ringsimulator/ebs/RfVoltage
+ unit: V
+- type: tango.pyaml.static_catalog_entry
+ key: sy/ms/1/Frequency
+ device:
+ type: tango.pyaml.attribute
+ attribute: sy/ms/1/Frequency
+ unit: Hz
+- type: tango.pyaml.static_catalog_entry
+ key: sr/tra/1/RfVoltage
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/tra/1/RfVoltage
+ unit: V
+- type: tango.pyaml.static_catalog_entry
+ key: sr/tra/2/RfVoltage
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/tra/2/RfVoltage
+ unit: V
+- type: tango.pyaml.static_catalog_entry
+ key: sr/tra/harm/RfVoltage
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/tra/harm/RfVoltage
+ unit: V
diff --git a/tests/config/catalogs/ebs_sext_catalogs.yaml b/tests/config/catalogs/ebs_sext_catalogs.yaml
new file mode 100644
index 000000000..d62c07305
--- /dev/null
+++ b/tests/config/catalogs/ebs_sext_catalogs.yaml
@@ -0,0 +1,4608 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c04-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c04-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c04-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c04-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c05-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c05-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c05-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c05-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c06-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c06-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c06-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c06-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c07-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c07-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c07-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c07-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c08-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c08-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c08-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c08-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c09-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c09-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c09-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c09-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c10-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c10-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c10-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c10-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c11-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c11-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c11-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c11-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c12-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c12-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c12-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c12-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c13-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c13-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c13-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c13-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c14-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c14-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c14-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c14-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c15-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c15-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c15-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c15-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c16-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c16-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c16-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c16-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c17-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c17-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c17-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c17-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c18-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c18-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c18-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c18-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c19-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c19-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c19-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c19-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c20-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c20-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c20-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c20-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c21-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c21-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c21-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c21-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c22-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c22-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c22-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c22-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c23-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c23-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c23-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c23-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c24-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c24-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c24-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c24-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c25-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c25-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c25-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c25-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c26-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c26-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c26-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c26-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c27-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c27-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c27-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c27-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c28-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c28-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c28-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c28-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c29-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c29-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c29-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c29-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c30-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c30-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c30-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c30-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c31-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c31-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c31-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c31-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c32-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c32-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c32-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c32-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c01-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c01-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c01-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c01-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c02-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c02-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c02-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c02-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-a/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-a/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-a/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-a/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-a/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-a/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-a/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-a/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-b/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-b/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-b/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-b/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-b/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-b/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-b/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-b/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-d/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-d/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-d/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-d/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-d/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-d/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-d/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-d/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sf2/c03-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sf2/c03-e/Strength
+ unit: m-2
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-e/Strength_H
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-e/Strength_H
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-e/Strength_V
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-e/Strength_V
+ unit: rad
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-e/Strength_SQ
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-e/Strength_SQ
+ unit: m-1
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/m-sd1/c03-e/Strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-sd1/c03-e/Strength
+ unit: m-2
diff --git a/tests/config/catalogs/ebs_sh_catalogs.yaml b/tests/config/catalogs/ebs_sh_catalogs.yaml
new file mode 100644
index 000000000..72282b1d7
--- /dev/null
+++ b/tests/config/catalogs/ebs_sh_catalogs.yaml
@@ -0,0 +1,1752 @@
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch5/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch5/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c04-a-ch6/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c04-a-ch6/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c04-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c04-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c04-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c04-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c04-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c04-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c04-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c04-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c04-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c04-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c04-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c04-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c05-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c05-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c05-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c05-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c05-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c05-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c05-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c05-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c05-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c05-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c05-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c05-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c05-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c05-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c05-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c05-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c05-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c05-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c06-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c06-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c06-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c06-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c06-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c06-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c06-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c06-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c06-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c06-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c06-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c06-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c06-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c06-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c06-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c06-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c06-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c06-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c07-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c07-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c07-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c07-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c07-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c07-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c07-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c07-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c07-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c07-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c07-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c07-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c07-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c07-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c07-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c07-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c07-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c07-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c08-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c08-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c08-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c08-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c08-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c08-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c08-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c08-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c08-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c08-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c08-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c08-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c08-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c08-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c08-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c08-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c08-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c08-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c09-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c09-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c09-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c09-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c09-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c09-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c09-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c09-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c09-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c09-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c09-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c09-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c09-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c09-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c09-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c09-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c09-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c09-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c10-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c10-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c10-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c10-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c10-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c10-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c10-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c10-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c10-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c10-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c10-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c10-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c10-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c10-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c10-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c10-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c10-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c10-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c11-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c11-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c11-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c11-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c11-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c11-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c11-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c11-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c11-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c11-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c11-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c11-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c11-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c11-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c11-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c11-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c11-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c11-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c12-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c12-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c12-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c12-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c12-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c12-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c12-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c12-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c12-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c12-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c12-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c12-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c12-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c12-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c12-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c12-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c12-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c12-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c13-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c13-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c13-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c13-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c13-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c13-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c13-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c13-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c13-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c13-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c13-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c13-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c13-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c13-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c13-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c13-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c13-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c13-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c14-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c14-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c14-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c14-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c14-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c14-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c14-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c14-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c14-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c14-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c14-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c14-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c14-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c14-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c14-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c14-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c14-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c14-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c15-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c15-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c15-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c15-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c15-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c15-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c15-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c15-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c15-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c15-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c15-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c15-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c15-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c15-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c15-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c15-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c15-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c15-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c16-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c16-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c16-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c16-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c16-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c16-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c16-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c16-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c16-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c16-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c16-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c16-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c16-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c16-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c16-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c16-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c16-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c16-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c17-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c17-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c17-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c17-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c17-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c17-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c17-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c17-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c17-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c17-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c17-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c17-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c17-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c17-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c17-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c17-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c17-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c17-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c18-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c18-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c18-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c18-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c18-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c18-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c18-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c18-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c18-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c18-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c18-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c18-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c18-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c18-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c18-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c18-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c18-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c18-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c19-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c19-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c19-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c19-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c19-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c19-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c19-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c19-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c19-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c19-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c19-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c19-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c19-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c19-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c19-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c19-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c19-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c19-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c20-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c20-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c20-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c20-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c20-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c20-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c20-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c20-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c20-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c20-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c20-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c20-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c20-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c20-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c20-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c20-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c20-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c20-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c21-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c21-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c21-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c21-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c21-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c21-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c21-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c21-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c21-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c21-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c21-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c21-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c21-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c21-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c21-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c21-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c21-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c21-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c22-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c22-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c22-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c22-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c22-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c22-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c22-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c22-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c22-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c22-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c22-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c22-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c22-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c22-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c22-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c22-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c22-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c22-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c23-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c23-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c23-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c23-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c23-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c23-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c23-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c23-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c23-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c23-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c23-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c23-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c23-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c23-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c23-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c23-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c23-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c23-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c24-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c24-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c24-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c24-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c24-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c24-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c24-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c24-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c24-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c24-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c24-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c24-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c24-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c24-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c24-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c24-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c24-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c24-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c25-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c25-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c25-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c25-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c25-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c25-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c25-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c25-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c25-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c25-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c25-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c25-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c25-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c25-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c25-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c25-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c25-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c25-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c26-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c26-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c26-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c26-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c26-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c26-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c26-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c26-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c26-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c26-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c26-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c26-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c26-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c26-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c26-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c26-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c26-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c26-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c27-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c27-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c27-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c27-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c27-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c27-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c27-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c27-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c27-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c27-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c27-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c27-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c27-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c27-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c27-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c27-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c27-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c27-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c28-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c28-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c28-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c28-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c28-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c28-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c28-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c28-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c28-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c28-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c28-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c28-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c28-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c28-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c28-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c28-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c28-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c28-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c29-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c29-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c29-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c29-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c29-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c29-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c29-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c29-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c29-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c29-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c29-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c29-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c29-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c29-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c29-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c29-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c29-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c29-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c30-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c30-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c30-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c30-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c30-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c30-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c30-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c30-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c30-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c30-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c30-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c30-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c30-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c30-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c30-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c30-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c30-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c30-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c31-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c31-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c31-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c31-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c31-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c31-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c31-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c31-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c31-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c31-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c31-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c31-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c31-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c31-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c31-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c31-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c31-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c31-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c32-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c32-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c32-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c32-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c32-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c32-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c32-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c32-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c32-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c32-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c32-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c32-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c32-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c32-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c32-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c32-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c32-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c32-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c01-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c01-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c01-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c01-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c01-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c01-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c01-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c01-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c01-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c01-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c01-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c01-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c02-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c02-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c02-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c02-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c02-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c02-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c02-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c02-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c02-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c02-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c02-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c02-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c03-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c03-a-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c03-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c03-a-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c03-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c03-a-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c03-b-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c03-b-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c03-b-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c03-b-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh2/c03-b-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh2/c03-b-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch1/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch2/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch3/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch5/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch5/current
+ unit: A
+- type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh3/c03-e-ch6/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh3/c03-e-ch6/current
+ unit: A
diff --git a/tests/config/catalogs/sr_catalogs.yaml b/tests/config/catalogs/sr_catalogs.yaml
new file mode 100644
index 000000000..dc3bc686d
--- /dev/null
+++ b/tests/config/catalogs/sr_catalogs.yaml
@@ -0,0 +1,204 @@
+type: tango.pyaml.static_catalog
+entries:
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-01/SA_HPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-01/SA_VPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/HOffset
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-01/HOffset
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/VOffset
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-01/VOffset
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-01/Tilt_Angle
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-01/Tilt_Angle
+ unit: rad
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-02/SA_HPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-02/SA_VPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-03/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-03/SA_HPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-03/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c01-03/SA_VPosition
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-04/Position
+ index: 0
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c01-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute
+ attribute: srdiag/bpm/c01-04/Position
+ index: 1
+ unit: mm
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-01/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-01/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-01/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-01/SA_VPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-02/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-02/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-02/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-02/SA_VPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-04/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-04/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-04/SA_VPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-05/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-05/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-05/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-05/SA_VPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-06/SA_HPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-06/SA_HPosition
+ unit: m
+ - type: tango.pyaml.static_catalog_entry
+ key: srdiag/bpm/c04-06/SA_VPosition
+ device:
+ type: tango.pyaml.attribute_read_only
+ attribute: srdiag/bpm/c04-06/SA_VPosition
+ unit: m
+
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/m-qf1/c01-a/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/m-qf1/c01-a/strength
+ unit: m-1
+
+ - type: tango.pyaml.static_catalog_entry
+ key: sr/ps-qf1/c01-a/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: sr/ps-qf1/c01-a/current
+ unit: A
+
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/hst-sh1/c01-a/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/hst-sh1/c01-a/strength
+ unit: rad
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/vst-sh1/c01-a/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/vst-sh1/c01-a/strength
+ unit: rad
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/sqp-sh1/c01-a/strength
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/sqp-sh1/c01-a/strength
+ unit: m-1
+
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch1/current
+ unit: A
+ range: [-1.5, 1.5]
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch2/current
+ unit: A
+ range: [null, 1.5]
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c01-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c01-a-ch3/current
+ unit: A
+ range: [-1.5, null]
+
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch1/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch1/current
+ unit: A
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch2/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch2/current
+ unit: A
+ - type: tango.pyaml.static_catalog_entry
+ key: srmag/ps-corr-sh1/c02-a-ch3/current
+ device:
+ type: tango.pyaml.attribute
+ attribute: srmag/ps-corr-sh1/c02-a-ch3/current
+ unit: A
diff --git a/tests/config/config_manager_sr_base.yaml b/tests/config/config_manager_sr_base.yaml
index 914739fa4..c842221ac 100644
--- a/tests/config/config_manager_sr_base.yaml
+++ b/tests/config/config_manager_sr_base.yaml
@@ -10,4 +10,5 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/sr_catalogs.yaml
data_folder: /data/store
diff --git a/tests/config/config_manager_sr_catalogs.yaml b/tests/config/config_manager_sr_catalogs.yaml
new file mode 100644
index 000000000..2a0f93347
--- /dev/null
+++ b/tests/config/config_manager_sr_catalogs.yaml
@@ -0,0 +1,2 @@
+catalogs:
+ - catalogs/sr_catalogs.yaml
diff --git a/tests/config/config_manager_sr_devices.yaml b/tests/config/config_manager_sr_devices.yaml
index e02a64b95..c6d3e2124 100644
--- a/tests/config/config_manager_sr_devices.yaml
+++ b/tests/config/config_manager_sr_devices.yaml
@@ -3,25 +3,9 @@ devices:
- sr/correctors/SH1AC01-C02.yaml
- type: pyaml.bpm.bpm
name: BPM_C04-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-01/SA_HPosition
+ y_pos: srdiag/bpm/c04-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-02/SA_HPosition
+ y_pos: srdiag/bpm/c04-02/SA_VPosition
diff --git a/tests/config/config_manager_tune_monitor_devices.yaml b/tests/config/config_manager_tune_monitor_devices.yaml
index 8b330a534..0f532c98d 100644
--- a/tests/config/config_manager_tune_monitor_devices.yaml
+++ b/tests/config/config_manager_tune_monitor_devices.yaml
@@ -1,11 +1,5 @@
devices:
- type: pyaml.diagnostics.tune_monitor
name: BETATRON_TUNE
- tune_h:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/tune/tune_h
- unit: mm
- tune_v:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/tune/tune_v
- unit: mm
+ tune_h: srdiag/tune/tune_h
+ tune_v: srdiag/tune/tune_v
diff --git a/tests/config/sr-ident-cfm.yaml b/tests/config/sr-ident-cfm.yaml
index 0608ca5d3..7bc833fdf 100644
--- a/tests/config/sr-ident-cfm.yaml
+++ b/tests/config/sr-ident-cfm.yaml
@@ -10,6 +10,7 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/sr_catalogs.yaml
data_folder: /data/store
arrays:
- type: pyaml.arrays.magnet
diff --git a/tests/config/sr-ident-hw-only.yaml b/tests/config/sr-ident-hw-only.yaml
deleted file mode 100644
index 4e85b109c..000000000
--- a/tests/config/sr-ident-hw-only.yaml
+++ /dev/null
@@ -1,20 +0,0 @@
-type: pyaml.accelerator
-facility: ESRF
-machine: sr
-energy: 6e9
-simulators:
- - type: pyaml.lattice.simulator
- lattice: sr/lattices/ebs.mat
- name: design
-data_folder: /data/store
-devices:
- - type: pyaml.magnet.quadrupole
- name: QF1A-C01
- model:
- type: pyaml.magnet.identity_model
- unit: A
- powerconverter:
- type: pyaml.control.device
- setpoint: srmag/vps-qf1/c05-a/current
- readback: srmag/vps-qf1/c05-a/current
- unit: A
diff --git a/tests/config/sr-ident-strgth-only.yaml b/tests/config/sr-ident-strgth-only.yaml
deleted file mode 100644
index 225bfab9d..000000000
--- a/tests/config/sr-ident-strgth-only.yaml
+++ /dev/null
@@ -1,20 +0,0 @@
-type: pyaml.accelerator
-facility: ESRF
-machine: sr
-energy: 6e9
-simulators:
- - type: pyaml.lattice.simulator
- lattice: sr/lattices/ebs.mat
- name: design
-data_folder: /data/store
-devices:
- - type: pyaml.magnet.quadrupole
- name: QF1A-C01
- model:
- type: pyaml.magnet.identity_model
- unit: 1/m
- physics:
- type: pyaml.control.device
- setpoint: srmag/m-qf1/c05-a/strength
- readback: srmag/m-qf1/c05-a/strength
- unit: 1/m
diff --git a/tests/config/sr-range-cfm.yaml b/tests/config/sr-range-cfm.yaml
index ae4fd7f45..fc1b37217 100644
--- a/tests/config/sr-range-cfm.yaml
+++ b/tests/config/sr-range-cfm.yaml
@@ -10,6 +10,7 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/sr_catalogs.yaml
data_folder: /data/store
arrays:
- type: pyaml.arrays.magnet
diff --git a/tests/config/sr.yaml b/tests/config/sr.yaml
index e2f6ac2e4..3e9561e81 100644
--- a/tests/config/sr.yaml
+++ b/tests/config/sr.yaml
@@ -10,6 +10,7 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/sr_catalogs.yaml
data_folder: /data/store
arrays:
- type: pyaml.arrays.magnet
@@ -44,25 +45,9 @@ devices:
- sr/correctors/SH1AC01-C02.yaml
- type: pyaml.bpm.bpm
name: BPM_C04-01
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-01/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-01/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-01/SA_HPosition
+ y_pos: srdiag/bpm/c04-01/SA_VPosition
- type: pyaml.bpm.bpm
name: BPM_C04-02
- model:
- type: pyaml.bpm.bpm_simple_model
- x_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-02/SA_HPosition
- unit: m
- y_pos:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/bpm/c04-02/SA_VPosition
- unit: m
+ x_pos: srdiag/bpm/c04-02/SA_HPosition
+ y_pos: srdiag/bpm/c04-02/SA_VPosition
diff --git a/tests/config/sr/custom_magnets/hidcorr.yaml b/tests/config/sr/custom_magnets/hidcorr.yaml
index 90bc97ea7..513e57bf6 100644
--- a/tests/config/sr/custom_magnets/hidcorr.yaml
+++ b/tests/config/sr/custom_magnets/hidcorr.yaml
@@ -3,7 +3,4 @@ name: IDCORR
model:
type: pyaml_external.external_magnet_model
param: my random param
- powersupply:
- type: tango.pyaml.attribute
- attribute: sr/ps-qf1/c01-a/current
- unit: A
+ powersupply: sr/ps-qf1/c01-a/current
diff --git a/tests/config/sr/magnet_models/QF1AC01.json b/tests/config/sr/magnet_models/QF1AC01.json
index b6651a7aa..b9b4e8abd 100644
--- a/tests/config/sr/magnet_models/QF1AC01.json
+++ b/tests/config/sr/magnet_models/QF1AC01.json
@@ -4,9 +4,6 @@
"calibration_offset": 0.0,
"curve": "sr/magnet_models/quadcurve.json",
"unit": "1/m",
- "powerconverter": {
- "type": "tango.pyaml.attribute",
- "attribute": "sr/ps-qf1/c01-a/current",
- "unit": "A"
- }
+ "hardware_unit": "A",
+ "powerconverter": "sr/ps-qf1/c01-a/current"
}
diff --git a/tests/config/sr/magnet_models/QF1AC01.yaml b/tests/config/sr/magnet_models/QF1AC01.yaml
index 07701268a..c2f1ac30c 100644
--- a/tests/config/sr/magnet_models/QF1AC01.yaml
+++ b/tests/config/sr/magnet_models/QF1AC01.yaml
@@ -3,7 +3,5 @@ calibration_factor: 1.00504
calibration_offset: 0.0
curve: sr/magnet_models/quadcurve.yaml
unit: 1/m
-powerconverter:
- type: tango.pyaml.attribute
- attribute: sr/ps-qf1/c01-a/current
- unit: A
+hardware_unit: A
+powerconverter: sr/ps-qf1/c01-a/current
diff --git a/tests/config/sr/magnet_models/QF6_strength.csv b/tests/config/sr/magnet_models/QF6_strength.csv
new file mode 100755
index 000000000..6331415ea
--- /dev/null
+++ b/tests/config/sr/magnet_models/QF6_strength.csv
@@ -0,0 +1,101 @@
+ 0, 0
+ 10, 4.8381057
+11.01010101, 5.309790224
+12.02020202, 5.781444181
+13.03030303, 6.253037002
+14.04040404, 6.72453812
+15.05050505, 7.195916967
+16.06060606, 7.667150484
+17.07070707, 8.138241462
+18.08080808, 8.609198255
+19.09090909, 9.080029216
+ 20.1010101, 9.5507427
+21.11111111, 10.02134783
+22.12121212, 10.49185598
+23.13131313, 10.96227898
+24.14141414, 11.43262864
+25.15151515, 11.90291672
+26.16161616, 12.37313684
+27.17171717, 12.84323594
+28.18181818, 13.31315356
+29.19191919, 13.78282926
+ 30.2020202, 14.25220272
+31.21212121, 14.7212447
+32.22222222, 15.18999532
+33.23232323, 15.65850402
+34.24242424, 16.12682031
+35.25252525, 16.59499334
+36.26262626, 17.06303632
+37.27272727, 17.53089254
+38.28282828, 17.99849728
+39.29292929, 18.46578582
+ 40.3030303, 18.93269377
+41.31313131, 19.39918272
+42.32323232, 19.86525832
+43.33333333, 20.33093051
+44.34343434, 20.79620918
+45.35353535, 21.26110358
+46.36363636, 21.72558595
+47.37373737, 22.18957373
+48.38383838, 22.65297993
+49.39393939, 23.11571754
+ 50.4040404, 23.57770039
+51.41414141, 24.03887417
+52.42424242, 24.49922597
+53.43434343, 24.95874566
+54.44444444, 25.4174231
+55.45454545, 25.87522826
+56.46464646, 26.33154575
+57.47474747, 26.7850931
+58.48484848, 27.2345516
+59.49494949, 27.6786025
+60.50505051, 28.11592527
+61.51515152, 28.54515768
+62.52525253, 28.96489584
+63.53535354, 29.37373405
+64.54545455, 29.7702666
+65.55555556, 30.15310646
+66.56565657, 30.52120955
+67.57575758, 30.87383285
+68.58585859, 31.21024353
+ 69.5959596, 31.52970877
+70.60606061, 31.83155581
+71.61616162, 32.11601021
+72.62626263, 32.38398911
+73.63636364, 32.63642744
+74.64646465, 32.87426012
+75.65656566, 33.09843152
+76.66666667, 33.31000256
+77.67676768, 33.51011278
+78.68686869, 33.69990319
+ 79.6969697, 33.8805148
+80.70707071, 34.05306116
+81.71717172, 34.21837218
+82.72727273, 34.37711048
+83.73737374, 34.52993649
+84.74747475, 34.67751066
+85.75757576, 34.82045497
+86.76767677, 34.95905659
+87.77777778, 35.09343031
+88.78787879, 35.22368951
+ 89.7979798, 35.34994755
+90.80808081, 35.47232532
+91.81818182, 35.59099919
+92.82828283, 35.70617041
+93.83838384, 35.81804036
+94.84848485, 35.92681041
+95.85858586, 36.03267776
+96.86868687, 36.13581324
+97.87878788, 36.23637744
+98.88888889, 36.33453092
+ 99.8989899, 36.43043424
+100.9090909, 36.52421516
+101.9191919, 36.6158239
+102.9292929, 36.70515097
+103.9393939, 36.7920868
+104.9494949, 36.87652186
+ 105.959596, 36.95843775
+ 106.969697, 37.03823987
+ 107.979798, 37.11645666
+ 108.989899, 37.19361655
+ 110, 37.270248
diff --git a/tests/config/sr/magnet_models/SH1AC01-ident.yaml b/tests/config/sr/magnet_models/SH1AC01-ident.yaml
index 206754b84..0a701dba5 100644
--- a/tests/config/sr/magnet_models/SH1AC01-ident.yaml
+++ b/tests/config/sr/magnet_models/SH1AC01-ident.yaml
@@ -2,12 +2,6 @@
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
physics:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch1/strength
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch2/strength
- unit: rad
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch3/strength
- unit: m-1
+ - srmag/hst-sh1/c01-a/strength
+ - srmag/vst-sh1/c01-a/strength
+ - srmag/sqp-sh1/c01-a/strength
diff --git a/tests/config/sr/magnet_models/SH1AC01-range.yaml b/tests/config/sr/magnet_models/SH1AC01-range.yaml
index 2c96a3b82..dbb494eff 100644
--- a/tests/config/sr/magnet_models/SH1AC01-range.yaml
+++ b/tests/config/sr/magnet_models/SH1AC01-range.yaml
@@ -1,27 +1,19 @@
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: [A,A,A]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch1/current
- unit: A
- range: [-1.5, 1.5]
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch2/current
- unit: A
- range: [null, 1.5]
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch3/current
- unit: A
- range: [-1.5, null]
+ - srmag/ps-corr-sh1/c01-a-ch1/current
+ - srmag/ps-corr-sh1/c01-a-ch2/current
+ - srmag/ps-corr-sh1/c01-a-ch3/current
diff --git a/tests/config/sr/magnet_models/SH1AC01.yaml b/tests/config/sr/magnet_models/SH1AC01.yaml
index d8eb8fa40..dbb494eff 100644
--- a/tests/config/sr/magnet_models/SH1AC01.yaml
+++ b/tests/config/sr/magnet_models/SH1AC01.yaml
@@ -1,24 +1,19 @@
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: [A,A,A]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c01-a-ch1/current
+ - srmag/ps-corr-sh1/c01-a-ch2/current
+ - srmag/ps-corr-sh1/c01-a-ch3/current
diff --git a/tests/config/sr/magnet_models/SH1AC02.yaml b/tests/config/sr/magnet_models/SH1AC02.yaml
index 5c0664b62..ed3482a33 100644
--- a/tests/config/sr/magnet_models/SH1AC02.yaml
+++ b/tests/config/sr/magnet_models/SH1AC02.yaml
@@ -1,24 +1,19 @@
type: pyaml.magnet.linear_cfm_model
multipoles: [B0,A0,A1]
units: [rad,rad,m-1]
+ hardware_units: [A,A,A]
pseudo_factors: [1.0,-1.0,-1.0]
curves:
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_h_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_v_strength.csv
- - type: pyaml.configuration.csvcurve
+ - type: pyaml.magnet.csvcurve
file: sr/magnet_models/SH1_SH3_sq_strength.csv
matrix:
- type: pyaml.configuration.csvmatrix
+ type: pyaml.magnet.csvmatrix
file: sr/magnet_models/SH_matrix.csv
powerconverters:
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c02-a-ch1/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c02-a-ch2/current
- unit: A
- - type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c02-a-ch3/current
- unit: A
+ - srmag/ps-corr-sh1/c02-a-ch1/current
+ - srmag/ps-corr-sh1/c02-a-ch2/current
+ - srmag/ps-corr-sh1/c02-a-ch3/current
diff --git a/tests/config/sr/magnet_models/quadcurve.json b/tests/config/sr/magnet_models/quadcurve.json
index 9920711b4..f4d181968 100644
--- a/tests/config/sr/magnet_models/quadcurve.json
+++ b/tests/config/sr/magnet_models/quadcurve.json
@@ -1,4 +1,4 @@
{
- "type": "pyaml.configuration.csvcurve",
+ "type": "pyaml.magnet.csvcurve",
"file": "sr/magnet_models/QF1_strength.csv"
}
diff --git a/tests/config/sr/magnet_models/quadcurve.yaml b/tests/config/sr/magnet_models/quadcurve.yaml
index a536a9f65..267184559 100644
--- a/tests/config/sr/magnet_models/quadcurve.yaml
+++ b/tests/config/sr/magnet_models/quadcurve.yaml
@@ -1,2 +1,2 @@
-type: pyaml.configuration.csvcurve
+type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
diff --git a/tests/config/sr/quadrupoles/QF1AC01-IDENT-HW.yaml b/tests/config/sr/quadrupoles/QF1AC01-IDENT-HW.yaml
index d77cdcf33..4ab7c69f8 100644
--- a/tests/config/sr/quadrupoles/QF1AC01-IDENT-HW.yaml
+++ b/tests/config/sr/quadrupoles/QF1AC01-IDENT-HW.yaml
@@ -3,7 +3,4 @@ name: QF1A-C01
model:
type: pyaml.magnet.identity_model
unit: A
- powerconverter:
- type: tango.pyaml.attribute
- attribute: sr/ps-qf1/c01-a/strength
- unit: 1/m
+ powerconverter: sr/ps-qf1/c01-a/current
diff --git a/tests/config/sr/quadrupoles/QF1AC01-IDENT-STRGTH.yaml b/tests/config/sr/quadrupoles/QF1AC01-IDENT-STRGTH.yaml
index 02f3de35c..7612dfd67 100644
--- a/tests/config/sr/quadrupoles/QF1AC01-IDENT-STRGTH.yaml
+++ b/tests/config/sr/quadrupoles/QF1AC01-IDENT-STRGTH.yaml
@@ -3,7 +3,4 @@ name: QF1A-C01
model:
type: pyaml.magnet.identity_model
unit: 1/m
- physics:
- type: tango.pyaml.attribute
- attribute: sr/ps-qf1/c01-a/strength
- unit: 1/m
+ physics: srmag/m-qf1/c01-a/strength
diff --git a/tests/config/sr/quadrupoles/QF1C01A_2.yaml b/tests/config/sr/quadrupoles/QF1C01A_2.yaml
index 3ada2ab13..6ab7f120d 100644
--- a/tests/config/sr/quadrupoles/QF1C01A_2.yaml
+++ b/tests/config/sr/quadrupoles/QF1C01A_2.yaml
@@ -6,7 +6,5 @@ model:
calibration_offset: 0.0034
curve: sr/magnet_models/quadcurve.yaml
unit: 1/m
- powerconverter:
- type: tango.pyaml.attribute
- attribute: sr/ps-qf1/c01-a/current
- unit: A
+ hardware_unit: A
+ powerconverter: sr/ps-qf1/c01-a/current
diff --git a/tests/config/sr_serialized_magnets.yaml b/tests/config/sr_serialized_magnets.yaml
index 19058d3e4..a8a3c486d 100644
--- a/tests/config/sr_serialized_magnets.yaml
+++ b/tests/config/sr_serialized_magnets.yaml
@@ -32,13 +32,11 @@ devices:
calibration_factors: 1.00504
calibration_offsets: 0.0
unit: m-1
+ hardware_unit: A
curves:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/serialized_strength.csv
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch1/current
- unit: A
+ powerconverter: srmag/ps-corr-sh1/c01-a-ch1/current
- type: pyaml.magnet.serialized_magnet
name: QF1A
function: B1
@@ -79,13 +77,11 @@ devices:
calibration_factors: 1
calibration_offsets: 0.0
unit: m-1
+ hardware_unit: A
curves:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch1/current
- unit: A
+ powerconverter: srmag/ps-corr-sh1/c01-a-ch1/current
- type: pyaml.magnet.serialized_magnet
name: QF1E
function: B1
@@ -126,13 +122,11 @@ devices:
calibration_factors: 1
calibration_offsets: 0.0
unit: m-1
+ hardware_unit: A
curves:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QF1_strength.csv
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch1/current
- unit: A
+ powerconverter: srmag/ps-corr-sh1/c01-a-ch1/current
- type: pyaml.magnet.serialized_magnet
name: QD2A
function: B1
@@ -173,13 +167,11 @@ devices:
calibration_factors: 1
calibration_offsets: 0.0
unit: m-1
+ hardware_unit: A
curves:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch1/current
- unit: A
+ powerconverter: srmag/ps-corr-sh1/c01-a-ch1/current
- type: pyaml.magnet.serialized_magnet
name: QD2E
function: B1
@@ -220,28 +212,20 @@ devices:
calibration_factors: 1
calibration_offsets: 0.0
unit: m-1
+ hardware_unit: A
curves:
- type: pyaml.configuration.csvcurve
+ type: pyaml.magnet.csvcurve
file: sr/magnet_models/QD2_strength.csv
- powerconverter:
- type: tango.pyaml.attribute
- attribute: srmag/ps-corr-sh1/c01-a-ch1/current
- unit: A
+ powerconverter: srmag/ps-corr-sh1/c01-a-ch1/current
- type: pyaml.diagnostics.tune_monitor
name: BETATRON_TUNE
- tune_h:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qh
- unit: mm
- tune_v:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qv
- unit: mm
+ tune_h: srdiag/beam-tune/main/Qh
+ tune_v: srdiag/beam-tune/main/Qv
- type: pyaml.tuning_tools.tune
name: DEFAULT_TUNE_CORRECTION
quad_array_name: QForTune
betatron_tune_name: BETATRON_TUNE
- response_matrix: file:tune_response.json
+ response_matrix: ${path:tune_response.json}
- type: pyaml.tuning_tools.tune_response_matrix
name: DEFAULT_TUNE_RESPONSE_MATRIX
quad_array_name: QForTune
diff --git a/tests/config/tune_monitor.yaml b/tests/config/tune_monitor.yaml
index c6b00b8f9..f782a2c1c 100644
--- a/tests/config/tune_monitor.yaml
+++ b/tests/config/tune_monitor.yaml
@@ -11,22 +11,14 @@ controls:
- type: tango.pyaml.controlsystem
tango_host: ebs-simu-3:10000
name: live
+ catalog: catalogs/ebs_catalogs.yaml
data_folder: /data/store
devices:
- type: pyaml.diagnostics.tune_monitor
name: BETATRON_TUNE
- tune_h:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qh
- unit: mm
- tune_v:
- type: tango.pyaml.attribute_read_only
- attribute: srdiag/beam-tune/main/Qv
- unit: mm
+ tune_h: srdiag/beam-tune/main/Qh
+ tune_v: srdiag/beam-tune/main/Qv
rf_plant_name: RF
- type: pyaml.rf.rf_plant
name: RF
- masterclock:
- type: tango.pyaml.attribute
- attribute: sy/ms/1/Frequency
- unit: Hz
+ masterclock: sy/ms/1/Frequency
diff --git a/tests/config/tune_response.json b/tests/config/tune_response.json
new file mode 100644
index 000000000..f6ce892ec
--- /dev/null
+++ b/tests/config/tune_response.json
@@ -0,0 +1,387 @@
+{
+ "type": "pyaml.tuning_tools.response_matrix_data",
+ "matrix": [
+ [
+ 0.1785305247425928,
+ 0.17890863159841786,
+ 0.17917913766291038,
+ 0.1784299133444911,
+ 0.17932003613274627,
+ 0.17884801681883333,
+ 0.17868922050995328,
+ 0.17950160845769947,
+ 0.178363425837047,
+ 0.17902822605941893,
+ 0.17907164949343413,
+ 0.17845271143679398,
+ 0.17936833728193768,
+ 0.17873097527515425,
+ 0.17880277978055137,
+ 0.17934158715149362,
+ 0.17843505289855122,
+ 0.17914004312724607,
+ 0.17895436807247034,
+ 0.1785041143087529,
+ 0.15843628904027574,
+ 0.15753090639308853,
+ 0.15237949308799514,
+ 0.15250676427047694,
+ 0.17830338669116985,
+ 0.17955579152517664,
+ 0.17845779835629072,
+ 0.1788039464664659,
+ 0.1793656542026234,
+ 0.17824886864858946,
+ 0.17941736058513236,
+ 0.1790531537629314,
+ 0.17841041346139397,
+ 0.17957212600117067,
+ 0.1783505780114658,
+ 0.17897044384679317,
+ 0.17923168174865944,
+ 0.17825336496052335,
+ 0.17950753535195263,
+ 0.17876522878129686,
+ 0.17866126020976703,
+ 0.17954615784770978,
+ 0.1782785885912075,
+ 0.1792551072482551,
+ 0.17897096794949885,
+ 0.1782997312535506,
+ 0.1795601105294975,
+ 0.1787301071370928,
+ 0.17871615406089836,
+ 0.17948086131452934,
+ 0.15577411829309495,
+ 0.15662666688898153,
+ 0.17893243042660378,
+ 0.1784741353569319,
+ 0.17937137011009296,
+ 0.17881700356020547,
+ 0.1787394639879425,
+ 0.17931579004037967,
+ 0.17843654286864297,
+ 0.17929482956535736,
+ 0.1788055193477356,
+ 0.17853408452589425,
+ 0.5908169379675865,
+ 0.5918015452344161,
+ 0.5927402234717771,
+ 0.5907891334203108,
+ 0.5938772596256192,
+ 0.5926481793591676,
+ 0.5920970975942241,
+ 0.5939117307077191,
+ 0.5907209053504503,
+ 0.5921927460422749,
+ 0.5923434730820132,
+ 0.5907317256320654,
+ 0.5939083213171714,
+ 0.5922487165685442,
+ 0.5924977694032885,
+ 0.5939008680305724,
+ 0.5907555789019803,
+ 0.5925915277985028,
+ 0.5919472555152017,
+ 0.5907747873024061,
+ 0.5241127461674822,
+ 0.5216281289976976,
+ 0.5024813260465222,
+ 0.5026589983953,
+ 0.5911559225796337,
+ 0.5941911531440192,
+ 0.5903818602884248,
+ 0.5912833031757048,
+ 0.5932319359411298,
+ 0.5903237624332869,
+ 0.594377953000158,
+ 0.5931290266153466,
+ 0.591656612693725,
+ 0.5944224501844286,
+ 0.5901843154526576,
+ 0.5917983632466872,
+ 0.5927048399342882,
+ 0.5901572469788063,
+ 0.5945086068256944,
+ 0.5925755580118985,
+ 0.5922149831069645,
+ 0.5945193161036033,
+ 0.590121296585866,
+ 0.5923637415811145,
+ 0.5921369199343718,
+ 0.5901285933099243,
+ 0.5945014195402054,
+ 0.5920399313238955,
+ 0.5927496272903343,
+ 0.5944808115818101,
+ 0.514670488546698,
+ 0.5168149860043658,
+ 0.5921878081346921,
+ 0.5907579290806431,
+ 0.5938710149713811,
+ 0.592127552454802,
+ 0.5926166141825839,
+ 0.5938569550925643,
+ 0.5908063972737132,
+ 0.5927408443920368,
+ 0.5918019649533979,
+ 0.5908349254624135
+ ],
+ [
+ -1.2605594655840102,
+ -1.2603145171086183,
+ -1.2598020293669299,
+ -1.260831517659322,
+ -1.2598120520795897,
+ -1.261606133196591,
+ -1.261432166130283,
+ -1.25920527750234,
+ -1.2600112063310132,
+ -1.26105232060858,
+ -1.260264403703526,
+ -1.2611558192565653,
+ -1.2614582350251036,
+ -1.2597292314375785,
+ -1.2603554553936025,
+ -1.260350033715496,
+ -1.2597267214869978,
+ -1.2614585035741754,
+ -1.2611516835708825,
+ -1.2602696869717933,
+ -1.2871884880860662,
+ -1.2858020051237373,
+ -1.2955118453383818,
+ -1.2959129730899521,
+ -1.2602343231982172,
+ -1.2611910756454847,
+ -1.2611011940916184,
+ -1.2601915154158982,
+ -1.2607699827082985,
+ -1.2600775070176207,
+ -1.259870965389931,
+ -1.2608568990213342,
+ -1.2609501011057178,
+ -1.2607543514780994,
+ -1.261349108071519,
+ -1.2596536872422348,
+ -1.259969532766414,
+ -1.2607144644860568,
+ -1.2597695576727075,
+ -1.261081742308101,
+ -1.2603426661261796,
+ -1.2610774680910097,
+ -1.2611894537362112,
+ -1.2592257723298417,
+ -1.259599271881684,
+ -1.2615754350697728,
+ -1.2607210730780638,
+ -1.260588520824446,
+ -1.2619318477796737,
+ -1.2593926206944106,
+ -1.2887868047106732,
+ -1.2891370534723334,
+ -1.2603039287467643,
+ -1.2611658823274974,
+ -1.2609222124770891,
+ -1.2596074448928407,
+ -1.2599946413971441,
+ -1.2612840538051007,
+ -1.2605560693412787,
+ -1.2601241849052869,
+ -1.2605214907618345,
+ -1.260900727239056,
+ -0.4942991883100101,
+ -0.49420126425780975,
+ -0.4940288797800063,
+ -0.49444044118662767,
+ -0.4939272477927359,
+ -0.4946444727860211,
+ -0.49464256768827486,
+ -0.4938480860600114,
+ -0.4940031548639201,
+ -0.4945035907039097,
+ -0.4941077469056143,
+ -0.4944641102350156,
+ -0.4946163453084518,
+ -0.49392513634116675,
+ -0.49424037378731356,
+ -0.4942382061356998,
+ -0.4939244348650673,
+ -0.4946167543085078,
+ -0.49446230341310127,
+ -0.49410970432095525,
+ -0.49580441262020436,
+ -0.4952599268176483,
+ -0.4958476255062516,
+ -0.49606296760262847,
+ -0.49405334380525634,
+ -0.4945046464588376,
+ -0.49445940038195246,
+ -0.4940957355437092,
+ -0.4943869331758277,
+ -0.4941101007704951,
+ -0.4940061277003416,
+ -0.49449621637720487,
+ -0.4942921954226298,
+ -0.4942981810129865,
+ -0.49459757805681015,
+ -0.49391979445034817,
+ -0.4940787883556119,
+ -0.4943765961623603,
+ -0.49398651061294263,
+ -0.49451108641296315,
+ -0.4941390392471101,
+ -0.49443279248606586,
+ -0.49457549756715125,
+ -0.4938862555942114,
+ -0.4938235193929774,
+ -0.49469784286826357,
+ -0.4942677614927504,
+ -0.4943107036792238,
+ -0.4947357649887074,
+ -0.49380509921925775,
+ -0.49553597356921664,
+ -0.49574224975479364,
+ -0.49407232132370194,
+ -0.4944902601777823,
+ -0.4944531676126518,
+ -0.49402332896131274,
+ -0.4939674622350676,
+ -0.4945672923833966,
+ -0.49428642764914876,
+ -0.4942096062321433,
+ -0.49415870048308275,
+ -0.4943946812013822
+ ]
+ ],
+ "variable_names": [
+ "QD2E-C04",
+ "QD2A-C05",
+ "QD2E-C05",
+ "QD2A-C06",
+ "QD2E-C06",
+ "QD2A-C07",
+ "QD2E-C07",
+ "QD2A-C08",
+ "QD2E-C08",
+ "QD2A-C09",
+ "QD2E-C09",
+ "QD2A-C10",
+ "QD2E-C10",
+ "QD2A-C11",
+ "QD2E-C11",
+ "QD2A-C12",
+ "QD2E-C12",
+ "QD2A-C13",
+ "QD2E-C13",
+ "QD2A-C14",
+ "QD2E-C14",
+ "QD2A-C15",
+ "QD2E-C15",
+ "QD2A-C16",
+ "QD2E-C16",
+ "QD2A-C17",
+ "QD2E-C17",
+ "QD2A-C18",
+ "QD2E-C18",
+ "QD2A-C19",
+ "QD2E-C19",
+ "QD2A-C20",
+ "QD2E-C20",
+ "QD2A-C21",
+ "QD2E-C21",
+ "QD2A-C22",
+ "QD2E-C22",
+ "QD2A-C23",
+ "QD2E-C23",
+ "QD2A-C24",
+ "QD2E-C24",
+ "QD2A-C25",
+ "QD2E-C25",
+ "QD2A-C26",
+ "QD2E-C26",
+ "QD2A-C27",
+ "QD2E-C27",
+ "QD2A-C28",
+ "QD2E-C28",
+ "QD2A-C29",
+ "QD2E-C29",
+ "QD2A-C30",
+ "QD2E-C30",
+ "QD2A-C31",
+ "QD2E-C31",
+ "QD2A-C32",
+ "QD2E-C32",
+ "QD2A-C01",
+ "QD2E-C01",
+ "QD2A-C02",
+ "QD2E-C02",
+ "QD2A-C03",
+ "QF1E-C04",
+ "QF1A-C05",
+ "QF1E-C05",
+ "QF1A-C06",
+ "QF1E-C06",
+ "QF1A-C07",
+ "QF1E-C07",
+ "QF1A-C08",
+ "QF1E-C08",
+ "QF1A-C09",
+ "QF1E-C09",
+ "QF1A-C10",
+ "QF1E-C10",
+ "QF1A-C11",
+ "QF1E-C11",
+ "QF1A-C12",
+ "QF1E-C12",
+ "QF1A-C13",
+ "QF1E-C13",
+ "QF1A-C14",
+ "QF1E-C14",
+ "QF1A-C15",
+ "QF1E-C15",
+ "QF1A-C16",
+ "QF1E-C16",
+ "QF1A-C17",
+ "QF1E-C17",
+ "QF1A-C18",
+ "QF1E-C18",
+ "QF1A-C19",
+ "QF1E-C19",
+ "QF1A-C20",
+ "QF1E-C20",
+ "QF1A-C21",
+ "QF1E-C21",
+ "QF1A-C22",
+ "QF1E-C22",
+ "QF1A-C23",
+ "QF1E-C23",
+ "QF1A-C24",
+ "QF1E-C24",
+ "QF1A-C25",
+ "QF1E-C25",
+ "QF1A-C26",
+ "QF1E-C26",
+ "QF1A-C27",
+ "QF1E-C27",
+ "QF1A-C28",
+ "QF1E-C28",
+ "QF1A-C29",
+ "QF1E-C29",
+ "QF1A-C30",
+ "QF1E-C30",
+ "QF1A-C31",
+ "QF1E-C31",
+ "QF1A-C32",
+ "QF1E-C32",
+ "QF1A-C01",
+ "QF1E-C01",
+ "QF1A-C02",
+ "QF1E-C02",
+ "QF1A-C03"
+ ],
+ "observable_names": [
+ "BETATRON_TUNE.x",
+ "BETATRON_TUNE.y"
+ ]
+}
diff --git a/tests/test_configuration_manager.py b/tests/configuration/test_configuration_manager.py
similarity index 89%
rename from tests/test_configuration_manager.py
rename to tests/configuration/test_configuration_manager.py
index f5ee6b4f3..f36c37dd1 100644
--- a/tests/test_configuration_manager.py
+++ b/tests/configuration/test_configuration_manager.py
@@ -103,7 +103,7 @@ def test_configuration_manager_clear_category_and_settings(
result = manager.clear()
assert result is None
- assert manager.to_dict() == {"type": "pyaml.accelerator"}
+ assert manager.to_dict() == {"class_path": "pyaml.accelerator.Accelerator"}
def test_configuration_manager_settings_follow_accelerator_config_model_order():
@@ -121,7 +121,7 @@ def test_configuration_manager_settings_follow_accelerator_config_model_order():
)
assert list(manager.settings()) == [
- "type",
+ "class_path",
"facility",
"machine",
"energy",
@@ -187,10 +187,10 @@ def test_configuration_manager_accumulates_multiple_device_fragments(
assert manager.has("devices", "BPM_C04-01")
assert manager.has("devices", "BPM_C04-02")
assert manager.has("devices", "BETATRON_TUNE")
- assert manager.get("devices", "QF1A-C01")["type"] == "pyaml.magnet.quadrupole"
- assert manager.get("devices", "SH1A-C01")["type"] == "pyaml.magnet.cfm_magnet"
- assert manager.get("devices", "BPM_C04-01")["type"] == "pyaml.bpm.bpm"
- assert manager.get("devices", "BETATRON_TUNE")["type"] == "pyaml.diagnostics.tune_monitor"
+ assert manager.get("devices", "QF1A-C01")["class_path"] == "pyaml.magnet.quadrupole.Quadrupole"
+ assert manager.get("devices", "SH1A-C01")["class_path"] == "pyaml.magnet.cfm_magnet.CombinedFunctionMagnet"
+ assert manager.get("devices", "BPM_C04-01")["class_path"] == "pyaml.bpm.bpm.BPM"
+ assert manager.get("devices", "BETATRON_TUNE")["class_path"] == "pyaml.diagnostics.tune_monitor.BetatronTuneMonitor"
def test_accelerator_load_stays_compatible(config_manager_base_config):
@@ -270,10 +270,10 @@ def test_configuration_manager_repr_is_yellow_pages_like(
assert "Simulators:" in output
assert "Arrays:" in output
assert "Devices:" in output
- assert "live (tango.pyaml.controlsystem) source=config_manager_sr_base.yaml" in output
- assert "design (pyaml.lattice.simulator) source=config_manager_sr_base.yaml" in output
- assert "HCORR (pyaml.arrays.magnet) patterns=1 source=config_manager_sr_arrays.yaml" in output
- assert "BPM_C04-01 (pyaml.bpm.bpm) source=config_manager_sr_devices.yaml" in output
+ assert "live (tango.pyaml.controlsystem.TangoControlSystem) source=config_manager_sr_base.yaml" in output
+ assert "design (pyaml.lattice.simulator.Simulator) source=config_manager_sr_base.yaml" in output
+ assert "HCORR (pyaml.arrays.magnet.Magnet) patterns=1 source=config_manager_sr_arrays.yaml" in output
+ assert "BPM_C04-01 (pyaml.bpm.bpm.BPM) source=config_manager_sr_devices.yaml" in output
assert " ." in output
@@ -288,5 +288,5 @@ def test_configuration_manager_yellow_pages_like_shortcuts(
manager.add(sr_devices_fragment)
assert manager["BPM_C04*"] == ["BPM_C04-01", "BPM_C04-02"]
- assert manager.HCORR["type"] == "pyaml.arrays.magnet"
+ assert manager.HCORR["class_path"] == "pyaml.arrays.magnet.Magnet"
assert manager.simulators == ["design"]
diff --git a/tests/configuration/test_factory.py b/tests/configuration/test_factory.py
new file mode 100644
index 000000000..692706bc4
--- /dev/null
+++ b/tests/configuration/test_factory.py
@@ -0,0 +1,30 @@
+import pytest
+
+from pyaml import PyAMLConfigException, PyAMLException
+from pyaml.accelerator import Accelerator
+from pyaml.configuration import ROOT
+from pyaml.configuration.factory import Factory
+from pyaml.configuration.fileloader import load
+from tests.conftest import MockElement
+
+
+def test_factory_build_default():
+ """Test default PyAML module loading."""
+ data = {"type": "mock_module", "name": "simple"}
+ obj = Factory.build(data, False)
+ assert isinstance(obj, MockElement)
+ assert obj.name == "simple"
+
+
+@pytest.mark.parametrize(
+ "test_file",
+ [
+ "tests/config/bad_conf_cycles.yml",
+ "tests/config/bad_conf_cycles.json",
+ ],
+)
+def test_error_cycles(test_file):
+ with pytest.raises(PyAMLException) as exc:
+ ml: Accelerator = Accelerator.load(test_file)
+
+ assert "Circular file inclusion of " in str(exc.value)
diff --git a/tests/configuration/test_fileloader.py b/tests/configuration/test_fileloader.py
new file mode 100644
index 000000000..53b234a66
--- /dev/null
+++ b/tests/configuration/test_fileloader.py
@@ -0,0 +1,292 @@
+import json
+
+import pytest
+
+from pyaml import PyAMLException
+from pyaml.configuration.fileloader import (
+ FIELD_LOCATIONS_KEY,
+ LOCATION_KEY,
+ ROOT,
+ LoadContext,
+ RootFolder,
+ _is_supported_file,
+ load,
+)
+
+
+def test_rootfolder_uses_current_working_directory_when_no_path(monkeypatch, tmp_path):
+ monkeypatch.chdir(tmp_path)
+
+ root = RootFolder()
+
+ assert root.get() == tmp_path.resolve()
+
+
+def test_rootfolder_sets_explicit_path(tmp_path):
+ root = RootFolder(tmp_path)
+
+ assert root.get() == tmp_path.resolve()
+
+
+def test_rootfolder_expands_relative_paths(tmp_path):
+ root = RootFolder(tmp_path)
+
+ assert root.expand_path("config.yaml") == (tmp_path / "config.yaml").resolve()
+
+
+def test_rootfolder_expands_absolute_paths(tmp_path):
+ root = RootFolder(tmp_path)
+ absolute = (tmp_path / "nested" / "config.yaml").resolve()
+
+ assert root.expand_path(absolute) == absolute
+
+
+def test_rootfolder_set_updates_root(tmp_path):
+ root = RootFolder(tmp_path)
+ new_root = tmp_path / "other"
+
+ before = root.expand_path("config.yaml")
+ root.set(new_root)
+ after = root.expand_path("config.yaml")
+
+ assert root.get() == new_root.resolve()
+ assert before == (tmp_path / "config.yaml").resolve()
+ assert after == (new_root / "config.yaml").resolve()
+
+
+def test_is_supported_file():
+ assert _is_supported_file("config.yaml")
+ assert _is_supported_file("config.yml")
+ assert _is_supported_file("config.json")
+
+ assert not _is_supported_file("config.txt")
+ assert not _is_supported_file(1)
+ assert not _is_supported_file(None)
+
+
+def test_load_context_adds_and_removes_paths(tmp_path):
+ ctx = LoadContext()
+ path = tmp_path / "config.yaml"
+
+ with ctx.loading(path):
+ assert ctx.include_stack == [path]
+
+ assert ctx.include_stack == []
+
+
+def test_load_context_cleans_up_after_exception(tmp_path):
+ ctx = LoadContext()
+ path = tmp_path / "config.yaml"
+
+ with pytest.raises(RuntimeError):
+ with ctx.loading(path):
+ raise RuntimeError
+
+ assert ctx.include_stack == []
+
+
+def test_load_yaml(tmp_path):
+ ROOT.set(tmp_path)
+
+ config = tmp_path / "config.yaml"
+ config.write_text("a: 1\nb: hello\n")
+
+ result = load("config.yaml")
+
+ assert result["a"] == 1
+ assert result["b"] == "hello"
+
+
+def test_load_json(tmp_path):
+ ROOT.set(tmp_path)
+
+ config = tmp_path / "config.json"
+ config.write_text(json.dumps({"a": 1, "b": "hello"}))
+
+ result = load("config.json")
+
+ assert result == {"a": 1, "b": "hello"}
+
+
+def test_load_nested_yaml(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "child.yaml").write_text("answer: 42\n")
+
+ (tmp_path / "parent.yaml").write_text("child: child.yaml\n")
+
+ result = load("parent.yaml")
+
+ assert result["child"]["answer"] == 42
+
+
+def test_load_nested_json(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "child.json").write_text(json.dumps({"answer": 42}))
+
+ (tmp_path / "parent.json").write_text(json.dumps({"child": "child.json"}))
+
+ result = load("parent.json")
+
+ assert result["child"]["answer"] == 42
+
+
+def test_load_file_resolver_loads_nested_file(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "subdir").mkdir()
+ (tmp_path / "subdir" / "child.yaml").write_text("answer: 42\n")
+ (tmp_path / "parent.yaml").write_text('target: "${file:subdir/child.yaml}"\n')
+
+ result = load("parent.yaml")
+
+ assert result["target"]["answer"] == 42
+
+
+def test_load_env_resolver_resolves_environment_variable(tmp_path, monkeypatch):
+ ROOT.set(tmp_path)
+
+ monkeypatch.setenv("TANGO_HOST", "localhost:10000")
+ (tmp_path / "config.yaml").write_text("host: ${env:TANGO_HOST}\n")
+
+ result = load("config.yaml")
+
+ assert result["host"] == "localhost:10000"
+
+
+def test_load_env_resolver_missing_variable_raises(tmp_path, monkeypatch):
+ ROOT.set(tmp_path)
+
+ monkeypatch.delenv("TANGO_HOST", raising=False)
+ (tmp_path / "config.yaml").write_text("host: ${env:TANGO_HOST}\n")
+
+ with pytest.raises(PyAMLException, match="Environment variable 'TANGO_HOST' is not set"):
+ load("config.yaml")
+
+
+def test_interpolates_env_inside_string(tmp_path, monkeypatch):
+ ROOT.set(tmp_path)
+ monkeypatch.setenv("HOST", "localhost")
+ monkeypatch.setenv("PORT", "5432")
+
+ (tmp_path / "config.yaml").write_text("url: http://${env:HOST}:${env:PORT}\n")
+
+ result = load("config.yaml")
+
+ assert result["url"] == "http://localhost:5432"
+
+
+def test_load_interpolates_env_multiple_times_in_one_string(tmp_path, monkeypatch):
+ ROOT.set(tmp_path)
+
+ monkeypatch.setenv("USER", "alice")
+
+ (tmp_path / "config.yaml").write_text("message: hello ${env:USER}, ${env:USER}!\n")
+
+ result = load("config.yaml")
+
+ assert result["message"] == "hello alice, alice!"
+
+
+def test_load_path_resolver_resolves_without_loading_file(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "config.yaml").write_text("target: ${path:subdir/missing.json}\n")
+
+ result = load("config.yaml")
+
+ assert result["target"] == str((tmp_path / "subdir" / "missing.json").resolve())
+
+
+def test_load_interpolated_file_resolver_inside_string_raises(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "child.yaml").write_text("answer: 42\n")
+ (tmp_path / "config.yaml").write_text('value: "prefix-${file:child.yaml}-suffix"\n')
+
+ with pytest.raises(PyAMLException, match="cannot be interpolated into a string"):
+ load("config.yaml")
+
+
+def test_load_interpolation_unknown_resolver_raises(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "config.yaml").write_text("value: prefix-${missing:VALUE}-suffix\n")
+
+ with pytest.raises(PyAMLException, match="Unknown resolver 'missing'"):
+ load("config.yaml")
+
+
+def test_load_list_include_extends_list(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "items.yaml").write_text("- one\n- two\n")
+
+ (tmp_path / "parent.yaml").write_text(
+ """
+ values:
+ - start
+ - items.yaml
+ - end
+ """.strip()
+ )
+
+ result = load("parent.yaml")
+
+ assert result["values"] == [
+ "start",
+ "one",
+ "two",
+ "end",
+ ]
+
+
+def test_load_yaml_omits_locations_by_default(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "config.yaml").write_text("a: 1\n")
+
+ result = load("config.yaml")
+
+ assert LOCATION_KEY not in result
+ assert FIELD_LOCATIONS_KEY not in result
+
+
+def test_load_yaml_includes_locations_when_enables(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "config.yaml").write_text("a: 1\n")
+
+ result = load("config.yaml", include_locations=True)
+
+ assert LOCATION_KEY in result
+ assert FIELD_LOCATIONS_KEY in result
+
+
+def test_load_invalid_yaml_raises_pyaml_exception(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "bad.yaml").write_text("a:\n - 1\n - 2\n")
+
+ with pytest.raises(PyAMLException, match="bad.yaml"):
+ load("bad.yaml")
+
+
+def test_load_invalid_json_raises_pyaml_exception(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "bad.json").write_text('{"a": }')
+
+ with pytest.raises(PyAMLException, match="bad.json"):
+ load("bad.json")
+
+
+def test_load_circular_include_raises_pyaml_exception(tmp_path):
+ ROOT.set(tmp_path)
+
+ (tmp_path / "a.yaml").write_text("b: b.yaml\n")
+ (tmp_path / "b.yaml").write_text("a: a.yaml\n")
+
+ with pytest.raises(PyAMLException, match="Circular file inclusion"):
+ load("a.yaml")
diff --git a/tests/conftest.py b/tests/conftest.py
index 030cb61f5..a39aef1d8 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,5 +1,6 @@
import importlib
import importlib.machinery
+import os
import pathlib
import sys
import types
@@ -215,6 +216,10 @@ def _installed_test_packages(
@pytest.fixture(scope="session", autouse=True)
def install_default_test_packages():
+ if os.environ.get("PYAML_DT4ACC_INTEGRATION") == "1":
+ yield
+ return
+
package_paths = [spec.local_path.resolve() for spec in _TEST_PACKAGES.values()]
with _installed_test_packages(
package_paths,
diff --git a/tests/control/test_aggregator.py b/tests/control/test_aggregator.py
new file mode 100644
index 000000000..9efd31f07
--- /dev/null
+++ b/tests/control/test_aggregator.py
@@ -0,0 +1,35 @@
+import numpy as np
+import pytest
+
+from pyaml.accelerator import Accelerator
+
+
+@pytest.mark.parametrize(
+ "install_test_package",
+ [{"name": "tango-pyaml", "path": "tests/dummy_cs/tango-pyaml"}],
+ indirect=True,
+)
+def test_aggregator(install_test_package):
+ sr = Accelerator.load("tests/config/sr.yaml")
+ agg = sr.live.get_aggregator()
+ agg.add_devices(sr.live.get_device_access("srdiag/bpm/c04-01/SA_HPosition"))
+ agg.add_devices(sr.live.get_device_access("srdiag/bpm/c04-01/SA_VPosition"))
+ agg.add_devices(sr.live.get_device_access("srdiag/bpm/c04-02/SA_HPosition"))
+ agg.add_devices(sr.live.get_device_access("srdiag/bpm/c04-02/SA_VPosition"))
+
+ # Iterator and index
+ assert agg.len() == 4
+
+ for idx, d in enumerate(agg):
+ plane = "H" if idx % 2 == 0 else "V"
+ assert f"c04-{(idx >> 1) + 1:02d}/SA_{plane}" in repr(d)
+
+ assert "srdiag/bpm/c04-02/SA_HPosition" in repr(agg[2])
+
+ # Immutable behavior
+ with pytest.raises(TypeError, match="does not support item assignment"):
+ agg[1] = sr.live.get_device_access("srdiag/bpm/c04-01/SA_HPosition")
+
+ # Values
+ assert np.shape(agg.get()) == (4,)
+ assert agg.unit() == ["m", "m", "m", "m"]
diff --git a/tests/test_dummy_tango_attributes.py b/tests/control/test_dummy_tango_attributes.py
similarity index 97%
rename from tests/test_dummy_tango_attributes.py
rename to tests/control/test_dummy_tango_attributes.py
index 20747e298..ac3454819 100644
--- a/tests/test_dummy_tango_attributes.py
+++ b/tests/control/test_dummy_tango_attributes.py
@@ -66,5 +66,5 @@ def test_dummy_tango_read_only_attribute_can_be_initialized(install_test_package
assert attribute.get() == 0.37
assert attribute.unit() == "1"
- with pytest.raises(Exception, match="read only attribute"):
+ with pytest.raises(Exception, match="not writable"):
attribute.set(0.38)
diff --git a/tests/test_ranges.py b/tests/control/test_ranges.py
similarity index 100%
rename from tests/test_ranges.py
rename to tests/control/test_ranges.py
diff --git a/tests/test_values.py b/tests/control/test_values.py
similarity index 100%
rename from tests/test_values.py
rename to tests/control/test_values.py
diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute.py
index cc19566f6..053ab8fbc 100644
--- a/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute.py
+++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute.py
@@ -1,5 +1,8 @@
+from typing import Optional
+
from pydantic import BaseModel, ConfigDict
+from pyaml.common.exception import PyAMLException
from pyaml.control.deviceaccess import DeviceAccess
from pyaml.control.readback_value import Value
@@ -13,85 +16,77 @@ class ConfigModel(BaseModel):
attribute: str
unit: str = ""
- range: tuple[float | None, float | None] | None = None
+ range: Optional[tuple[Optional[float], Optional[float]]] = None
+ index: Optional[int] = None
class Attribute(DeviceAccess):
"""
- Class that implements a default device class that just prints out
- values (Debugging purpose)
+ Dummy attribute backed by a shared in-memory state store.
+
+ When ``index`` is set the attribute presents a read-only scalar view of
+ one element of a vector attribute; writes are rejected and the underlying
+ store is automatically marked as an array.
"""
- def __init__(self, cfg: ConfigModel, is_array=False):
+ def __init__(self, cfg: ConfigModel):
super().__init__()
self._cfg = cfg
- self._setpoint = cfg.attribute
- self._readback = cfg.attribute
- # Register metadata early. The value may already have been initialized
- # by a test before the accelerator configuration is loaded.
- get_state(cfg.attribute, unit=cfg.unit, range=self._range())
+ self._index = cfg.index
+ state = get_state(cfg.attribute, unit=cfg.unit, range=cfg.range)
+ if self._index is not None:
+ state.is_array = True
def set_array(self, is_array: bool):
"""Mark the shared value as array-like without initializing it."""
- get_state(
- self._cfg.attribute,
- unit=self._cfg.unit,
- range=self._range(),
- ).is_array = is_array
+ get_state(self._cfg.attribute, unit=self._cfg.unit, range=self._cfg.range).is_array = is_array
def name(self) -> str:
- return self._setpoint
+ if self._index is not None:
+ return f"{self._cfg.attribute}[{self._index}]"
+ return self._cfg.attribute
def measure_name(self) -> str:
- return self._readback
+ return self.name()
def set(self, value):
- print(f"{self._cfg.attribute}:{value}")
- state = get_state(self._cfg.attribute, unit=self._cfg.unit, range=self._range())
+ if self._index is not None:
+ raise PyAMLException(
+ f"Indexed attribute '{self._cfg.attribute}[{self._index}]' does not support individual element writes."
+ )
+ state = get_state(self._cfg.attribute, unit=self._cfg.unit, range=self._cfg.range)
state.value = value
def set_and_wait(self, value):
self.set(value)
def get(self):
- state = get_state(self._cfg.attribute, unit=self._cfg.unit, range=self._range())
+ state = get_state(self._cfg.attribute, unit=self._cfg.unit, range=self._cfg.range)
+ if self._index is not None:
+ return state.value[self._index]
return state.value
def readback(self):
"""Return readback from shared state, preserving scalar/array shape."""
- state = get_state(
- self._cfg.attribute,
- unit=self._cfg.unit,
- range=self._range(),
- )
+ state = get_state(self._cfg.attribute, unit=self._cfg.unit, range=self._cfg.range)
value = state.value if state.readback is None else state.readback
+ if self._index is not None:
+ return Value(value[self._index])
if state.is_array:
return [Value(v) for v in value]
return Value(value)
def unit(self) -> str:
- state = get_state(self._cfg.attribute, unit=self._cfg.unit, range=self._range())
- return state.unit
+ return get_state(self._cfg.attribute, unit=self._cfg.unit, range=self._cfg.range).unit
def __repr__(self):
return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
def get_range(self) -> list[float]:
- state = get_state(
- self._cfg.attribute,
- unit=self._cfg.unit,
- range=self._range(),
- )
+ state = get_state(self._cfg.attribute, unit=self._cfg.unit, range=self._cfg.range)
if state.range is None:
return [None, None]
- return [
- state.range[0] if state.range[0] is not None else None,
- state.range[1] if state.range[1] is not None else None,
- ]
+ return [state.range[0], state.range[1]]
def check_device_availability(self) -> bool:
return True
-
- def _range(self):
- """Return optional range metadata for models that define it."""
- return getattr(self._cfg, "range", None)
diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_read_only.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_read_only.py
index b42b54467..5c5809dde 100644
--- a/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_read_only.py
+++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_read_only.py
@@ -1,39 +1,19 @@
-from pydantic import BaseModel, ConfigDict
+from pyaml.common.exception import PyAMLException
-from pyaml.control.readback_value import Value
-
-from .attribute import Attribute
+from .attribute import Attribute, ConfigModel
PYAMLCLASS: str = "AttributeReadOnly"
-class ConfigModel(BaseModel):
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
-
- attribute: str
- unit: str = ""
-
-
class AttributeReadOnly(Attribute):
- """
- Class that implements a default device class that just prints out
- values (Debugging purpose)
- """
-
def __init__(self, cfg: ConfigModel):
super().__init__(cfg)
def set(self, value):
- raise Exception(f"{self._cfg.attribute} is read only attribute")
+ raise PyAMLException(f"Tango attribute {self._cfg.attribute} is not writable.")
def set_and_wait(self, value):
- raise Exception(f"{self._cfg.attribute} is read only attribute")
-
- def unit(self) -> str:
- return super().unit()
-
- def get_range(self) -> list[float]:
- return super().get_range()
+ raise PyAMLException(f"Tango attribute {self._cfg.attribute} is not writable.")
- def check_device_availability(self) -> bool:
- return True
+ def get(self):
+ return self.readback().value
diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_with_tango_powersupply_mocking_behaviour.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_with_tango_powersupply_mocking_behaviour.py
index c336b1835..e0c37a513 100644
--- a/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_with_tango_powersupply_mocking_behaviour.py
+++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_with_tango_powersupply_mocking_behaviour.py
@@ -5,9 +5,9 @@
from scipy.constants import speed_of_light
from pyaml.configuration import get_root_folder
-from pyaml.configuration.curve import Curve
from pyaml.control.deviceaccess import DeviceAccess
from pyaml.control.readback_value import Value
+from pyaml.magnet.curve import Curve
PYAMLCLASS: str = "AttributeWithTangoMockingBehaviour"
diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/catalog.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/catalog.py
new file mode 100644
index 000000000..c71444b4b
--- /dev/null
+++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/catalog.py
@@ -0,0 +1,43 @@
+"""Configuration helpers for backend-provided catalogs."""
+
+from abc import ABCMeta, abstractmethod
+
+from pydantic import BaseModel, ConfigDict
+
+from pyaml.control.deviceaccess import DeviceAccess
+
+
+class CatalogConfigModel(BaseModel):
+ r"""
+ Base configuration model for named catalogs.
+
+ Parameters
+ ----------
+ name : str
+ Unique catalog identifier used in accelerator and control-system
+ configuration.
+ """
+
+ model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+
+
+class Catalog(metaclass=ABCMeta):
+ r"""
+ Abstract class for backend catalog configuration objects.
+
+ Notes
+ -----
+ Concrete catalogs live in each control-system package. They may expose
+ backend-specific resolution APIs, but those APIs are not called by the
+ PyAML core.
+ """
+
+ def __init__(self, cfg: CatalogConfigModel):
+ self._cfg = cfg
+
+ @abstractmethod
+ def resolve(self, key: str) -> DeviceAccess:
+ """
+ Return
+ """
+ pass
diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/controlsystem.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/controlsystem.py
index 68fee777c..0955d9c0e 100644
--- a/tests/dummy_cs/tango-pyaml/tango/pyaml/controlsystem.py
+++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/controlsystem.py
@@ -1,10 +1,15 @@
import copy
-import os
+from typing import Any
from pydantic import BaseModel, ConfigDict
+from pyaml import PyAMLException
from pyaml.control.controlsystem import ControlSystem
from pyaml.control.deviceaccess import DeviceAccess
+from pyaml.control.deviceaccesslist import DeviceAccessList
+
+from .catalog import Catalog
+from .multi_attribute import MultiAttribute
PYAMLCLASS: str = "TangoControlSystem"
@@ -13,38 +18,63 @@ class ConfigModel(BaseModel):
model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
name: str
- tango_host: str
- debug_level: str = None
+ tango_host: str | None = None
+ catalog: Catalog | None = None
+ debug_level: str | None = None
+ lazy_devices: bool = True
+ timeout_ms: int = 3000
class TangoControlSystem(ControlSystem):
def __init__(self, cfg: ConfigModel):
super().__init__()
self._cfg = cfg
- print(f"Creating dummy TangoControlSystem: {cfg.name}")
- self.__DEVICES = {}
+ self.__devices = {}
- def attach_array(self, devs: list[DeviceAccess]) -> list[DeviceAccess]:
+ def attach_array(self, devs: list[DeviceAccess | None]) -> list[DeviceAccess | None]:
return self._attach(devs, True)
- def attach(self, devs: list[DeviceAccess]) -> list[DeviceAccess]:
+ def attach(self, devs: list[DeviceAccess | None]) -> list[DeviceAccess | None]:
return self._attach(devs, False)
- def _attach(self, devs: list[DeviceAccess], is_array: bool) -> list[DeviceAccess]:
+ def get_device_access(self, ref: str | BaseModel | None) -> DeviceAccess | None:
+ if ref is None:
+ return None
+
+ if isinstance(ref, str):
+ if self._cfg.catalog is None:
+ raise PyAMLException(f"Control system '{self.name()}' has no catalog configured for key '{ref}'")
+ try:
+ dev = self._cfg.catalog.resolve(ref)
+ except AttributeError as exc:
+ raise PyAMLException(f"Control system '{self.name()}' catalog cannot resolve key '{ref}'") from exc
+ return self._attach([dev], False)[0]
+
+ from .attribute import Attribute
+ from .attribute import ConfigModel as AttributeConfigModel
+
+ if isinstance(ref, AttributeConfigModel):
+ return self._attach([Attribute(ref)], False)[0]
+
+ raise PyAMLException(f"Control system '{self.name()}' cannot build a device from {type(ref).__name__}")
+
+ def _attach(self, devs: list[DeviceAccess | None], is_array: bool) -> list[DeviceAccess | None]:
newDevs = []
for d in devs:
if d is not None:
- full_name = "//" + self._cfg.tango_host + "/" + d._cfg.attribute
- if full_name not in self.__DEVICES:
- # Shallow copy the object
+ if self._cfg.tango_host:
+ full_name = "//" + self._cfg.tango_host + "/" + d._cfg.attribute
+ else:
+ full_name = d._cfg.attribute
+ index = getattr(d._cfg, "index", None)
+ cache_key = full_name if index is None else f"{full_name}[{index}]"
+ if cache_key not in self.__devices:
newDev = copy.copy(d)
- # Shallow copy the config object
- # to allow a new attribute name
newDev._cfg = copy.copy(d._cfg)
newDev._cfg.attribute = full_name
newDev.set_array(is_array)
- self.__DEVICES[full_name] = newDev
- newDevs.append(self.__DEVICES[full_name])
+ self.__devices[cache_key] = newDev
+ newDevs.append(self.__devices[cache_key])
else:
newDevs.append(None)
return newDevs
@@ -52,11 +82,8 @@ def _attach(self, devs: list[DeviceAccess], is_array: bool) -> list[DeviceAccess
def name(self) -> str:
return self._cfg.name
- def scalar_aggregator(self) -> str | None:
- return "tango.pyaml.multi_attribute"
-
- def vector_aggregator(self) -> str | None:
- return None
+ def get_aggregator(self) -> str | None:
+ return MultiAttribute()
def __repr__(self):
return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)
diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/multi_attribute.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/multi_attribute.py
index 8fd8619f7..9235fd4a1 100644
--- a/tests/dummy_cs/tango-pyaml/tango/pyaml/multi_attribute.py
+++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/multi_attribute.py
@@ -1,44 +1,18 @@
import numpy as np
from numpy import typing as npt
-from pydantic import BaseModel
import pyaml
from pyaml.control.deviceaccess import DeviceAccess
from pyaml.control.deviceaccesslist import DeviceAccessList
from .attribute import Attribute
-from .attribute import ConfigModel as AttributeConfigModel
-
-PYAMLCLASS: str = "MultiAttribute"
LAST_NB_WRITTEN = 0
-class ConfigModel(BaseModel):
- """
- Configuration model for a list of DeviceAccess.
-
- Attributes
- ----------
- attributes : list of str
- List of Tango attribute paths.
- name : str, optional
- Group name.
- unit : str, optional
- Unit of the attributes.
- """
-
- attributes: list[str] = []
- name: str = ""
-
-
class MultiAttribute(DeviceAccessList):
- def __init__(self, cfg: ConfigModel = None):
- super().__init__()
- self._cfg = cfg
- if cfg.attributes:
- for name in cfg.attributes:
- self.add_devices(Attribute(AttributeConfigModel(name, cfg.unit)))
+ def __init__(self):
+ self._items = []
def add_devices(self, devices: DeviceAccess | list[DeviceAccess]):
if isinstance(devices, list):
@@ -49,7 +23,7 @@ def add_devices(self, devices: DeviceAccess | list[DeviceAccess]):
(tango.pyaml.attribute) but got
({device.__class__.__name__})"""
)
- super().extend(devices)
+ self._items.extend(devices)
else:
if not isinstance(devices, Attribute):
raise pyaml.PyAMLException(
@@ -57,46 +31,46 @@ def add_devices(self, devices: DeviceAccess | list[DeviceAccess]):
(tango.pyaml.attribute) but got
({devices.__class__.__name__})"""
)
- super().append(devices)
+ self._items.append(devices)
- def get_devices(self) -> DeviceAccess | list[DeviceAccess]:
- if len(self) == 1:
- return self[0]
- else:
- return self
+ def len(self) -> int:
+ return len(self._items)
+
+ def get_device_at(self, index: int) -> DeviceAccess:
+ return self._items[index]
def set(self, value: npt.NDArray[np.float64]):
print(f"MultiAttribute.set({len(value)} values)")
global LAST_NB_WRITTEN
LAST_NB_WRITTEN += len(value)
- for idx, a in enumerate(self):
+ for idx, a in enumerate(self._items):
a.set(value[idx])
def set_and_wait(self, value: npt.NDArray[np.float64]):
pass
def get(self) -> npt.NDArray[np.float64]:
- print(f"MultiAttribute.get({len(self)} values)")
- return np.array([a.get() for a in self])
+ print(f"MultiAttribute.get({len(self._items)} values)")
+ return np.array([a.get() for a in self._items])
def readback(self) -> np.array:
return np.array([])
def unit(self) -> list[str]:
- return [a.unit() for a in self]
+ return [a.unit() for a in self._items]
def get_last_nb_written(self) -> int:
return self.__last_nb_written
def get_range(self) -> list[float]:
attr_range: list[float] = []
- for device in self:
+ for device in self._items:
attr_range.extend(device.get_range())
return attr_range
def check_device_availability(self) -> bool:
available = False
- for device in self:
+ for device in self._items:
available = device.check_device_availability()
if not available:
break
diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/static_catalog.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/static_catalog.py
new file mode 100644
index 000000000..093a04cd3
--- /dev/null
+++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/static_catalog.py
@@ -0,0 +1,34 @@
+from pydantic import ConfigDict
+
+from pyaml import PyAMLException
+from pyaml.control.deviceaccess import DeviceAccess
+
+from .catalog import Catalog, CatalogConfigModel
+from .static_catalog_entry import StaticCatalogEntry
+
+PYAMLCLASS = "StaticCatalog"
+
+
+class ConfigModel(CatalogConfigModel):
+ model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+
+ entries: list[StaticCatalogEntry]
+
+
+class StaticCatalog(Catalog):
+ def __init__(self, cfg: ConfigModel):
+ super().__init__(cfg)
+ if len(cfg.entries) == 0:
+ raise PyAMLException("StaticCatalog.entries must contain at least one entry")
+ self._refs: dict[str, DeviceAccess] = {}
+ for entry in cfg.entries:
+ key = entry.get_key()
+ if key in self._refs:
+ raise PyAMLException(f"StaticCatalog.entries contains duplicate key '{key}'")
+ self._refs[key] = entry.get_device()
+
+ def resolve(self, key: str) -> DeviceAccess:
+ try:
+ return self._refs[key]
+ except KeyError as exc:
+ raise PyAMLException(f"Catalog cannot resolve key '{key}'") from exc
diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/static_catalog_entry.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/static_catalog_entry.py
new file mode 100644
index 000000000..b9ed8c92b
--- /dev/null
+++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/static_catalog_entry.py
@@ -0,0 +1,23 @@
+from pydantic import BaseModel, ConfigDict
+
+from pyaml.control.deviceaccess import DeviceAccess
+
+PYAMLCLASS = "StaticCatalogEntry"
+
+
+class ConfigModel(BaseModel):
+ model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+
+ key: str
+ device: DeviceAccess
+
+
+class StaticCatalogEntry:
+ def __init__(self, cfg: ConfigModel):
+ self._cfg = cfg
+
+ def get_key(self) -> str:
+ return self._cfg.key
+
+ def get_device(self) -> DeviceAccess:
+ return self._cfg.device
diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/tango_catalog.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/tango_catalog.py
new file mode 100644
index 000000000..59f546e07
--- /dev/null
+++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/tango_catalog.py
@@ -0,0 +1,51 @@
+from pydantic import ConfigDict
+
+from pyaml.common.exception import PyAMLException
+from pyaml.control.deviceaccess import DeviceAccess
+
+from .catalog import Catalog, CatalogConfigModel
+
+PYAMLCLASS = "TangoCatalog"
+
+
+class ConfigModel(CatalogConfigModel):
+ model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
+
+ disconnected: bool = False
+
+
+class TangoCatalog(Catalog):
+ def __init__(self, cfg: ConfigModel):
+ super().__init__(cfg)
+ self._refs: dict[str, DeviceAccess] = {}
+
+ def resolve(self, key: str) -> DeviceAccess:
+ if key not in self._refs:
+ attr_path, index = self._parse_key(key)
+ from .attribute import Attribute
+ from .attribute import ConfigModel as AttributeConfigModel
+
+ self._refs[key] = Attribute(AttributeConfigModel(attribute=attr_path, index=index))
+ return self._refs[key]
+
+ def _parse_key(self, key: str) -> tuple[str, int | None]:
+ if not isinstance(key, str):
+ raise PyAMLException(f"Tango catalog '{self.get_name()}' expects string keys, got {type(key).__name__}")
+ if "@" in key:
+ attr_path, idx_str = key.rsplit("@", 1)
+ try:
+ index = int(idx_str)
+ except ValueError:
+ raise PyAMLException(f"Tango catalog '{self.get_name()}' invalid index '{idx_str}' in key '{key}'.") from None
+ else:
+ attr_path = key
+ index = None
+
+ parts = attr_path.split("/")
+ if len(parts) != 4 or any(part == "" for part in parts):
+ raise PyAMLException(
+ f"Tango catalog '{self.get_name()}' cannot resolve invalid Tango attribute "
+ f"reference '{key}'. Expected 'domain/family/member/attribute' or "
+ f"'domain/family/member/attribute@index'."
+ )
+ return attr_path, index
diff --git a/tests/external/pyaml_external/external_magnet_model.py b/tests/external/pyaml_external/external_magnet_model.py
index 14e83b89a..43d1411de 100644
--- a/tests/external/pyaml_external/external_magnet_model.py
+++ b/tests/external/pyaml_external/external_magnet_model.py
@@ -16,7 +16,7 @@
class ConfigModel(BaseModel):
model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
- powersupply: DeviceAccess
+ powersupply: str
param: str = None
@@ -30,7 +30,7 @@ class ExternalMagnetModel(MagnetModel):
"""
def __init__(self, cfg: ConfigModel):
- print("ExternalMagnetModel:\n powersupply:%s\n param:%s" % (cfg.powersupply.name(), cfg.param))
+ print("ExternalMagnetModel:\n powersupply:%s\n param:%s" % (cfg.powersupply, cfg.param))
self._cfg = cfg
# Implementation of the MagnetModel abstract class
@@ -53,7 +53,7 @@ def get_strength_units(self) -> list[str]:
def get_hardware_units(self) -> list[str]:
return ["A"]
- def get_devices(self) -> list[DeviceAccess]:
+ def get_device_names(self) -> list[DeviceAccess]:
return [self._cfg.powersupply]
def has_hardware(self) -> bool:
diff --git a/tests/integration/start_dt4acc_twin.sh b/tests/integration/start_dt4acc_twin.sh
new file mode 100644
index 000000000..eea0bff3d
--- /dev/null
+++ b/tests/integration/start_dt4acc_twin.sh
@@ -0,0 +1,329 @@
+#!/usr/bin/env bash
+set -Eeuo pipefail
+
+DEFAULT_IMAGE_URI="oras://registry.synchrotron-soleil.fr/software_control_system_public/dt4acc-soleil-twin:latest"
+READY_PATTERN="Calculation heartbeat: simulator/ringsimulator/ringsimulator reachable"
+
+usage() {
+ cat <<'EOF'
+Usage:
+ start_dt4acc_twin.sh --accelerator-setup-file FILE --lattice-file FILE [options]
+ start_dt4acc_twin.sh FILE.json FILE.m [options]
+
+Required simulator input data:
+ --accelerator-setup-file FILE Accelerator setup JSON file passed to the twin.
+ --lattice-file FILE Lattice file passed to the twin.
+
+Options:
+ --tango-host HOST Tango database host. Default: localhost.
+ --tango-port PORT Tango database port. If omitted, the twin may choose it.
+ --image-uri URI Apptainer image URI. Default: dt4acc latest ORAS image.
+ --sif FILE Use a local SIF file instead of --image-uri.
+ --log-file FILE Log file path. Default: mktemp under /tmp.
+ --pid-file FILE Write the Apptainer process PID to FILE.
+ --timeout SECONDS Readiness timeout. Default: 900.
+ --detach Exit after readiness and leave the twin running.
+ -h, --help Show this help.
+
+The script prints "Ready to use" when the twin reaches the same heartbeat used by
+the dt4acc-integration CI workflow. Keep this process running; press Ctrl-C to
+stop the twin. With --detach, the script exits after readiness; use --pid-file
+so a later step can stop the twin.
+EOF
+}
+
+accelerator_setup_file=""
+lattice_file=""
+tango_host="localhost"
+tango_port=""
+image_uri="${DEFAULT_IMAGE_URI}"
+sif_file=""
+log_file=""
+pid_file=""
+timeout_seconds="900"
+detach="0"
+positionals=()
+
+while (($#)); do
+ case "$1" in
+ --accelerator-setup-file|--setup-file)
+ accelerator_setup_file="${2:-}"
+ shift 2
+ ;;
+ --lattice-file)
+ lattice_file="${2:-}"
+ shift 2
+ ;;
+ --tango-host)
+ tango_host="${2:-}"
+ shift 2
+ ;;
+ --tango-port)
+ tango_port="${2:-}"
+ shift 2
+ ;;
+ --image-uri)
+ image_uri="${2:-}"
+ shift 2
+ ;;
+ --sif)
+ sif_file="${2:-}"
+ shift 2
+ ;;
+ --log-file)
+ log_file="${2:-}"
+ shift 2
+ ;;
+ --pid-file)
+ pid_file="${2:-}"
+ shift 2
+ ;;
+ --timeout)
+ timeout_seconds="${2:-}"
+ shift 2
+ ;;
+ --detach)
+ detach="1"
+ shift
+ ;;
+ -h|--help)
+ usage
+ exit 0
+ ;;
+ --)
+ shift
+ while (($#)); do
+ positionals+=("$1")
+ shift
+ done
+ ;;
+ -*)
+ echo "Unknown option: $1" >&2
+ usage >&2
+ exit 2
+ ;;
+ *)
+ positionals+=("$1")
+ shift
+ ;;
+ esac
+done
+
+if [[ -z "${accelerator_setup_file}" && ${#positionals[@]} -ge 1 ]]; then
+ accelerator_setup_file="${positionals[0]}"
+fi
+
+if [[ -z "${lattice_file}" && ${#positionals[@]} -ge 2 ]]; then
+ lattice_file="${positionals[1]}"
+fi
+
+if [[ ${#positionals[@]} -gt 2 ]]; then
+ echo "Too many positional arguments." >&2
+ usage >&2
+ exit 2
+fi
+
+if [[ -z "${accelerator_setup_file}" || -z "${lattice_file}" ]]; then
+ echo "Missing required simulator input data." >&2
+ usage >&2
+ exit 2
+fi
+
+if ! command -v apptainer >/dev/null 2>&1; then
+ echo "apptainer is required but was not found in PATH." >&2
+ exit 127
+fi
+
+if ! command -v setsid >/dev/null 2>&1; then
+ echo "setsid is required but was not found in PATH." >&2
+ exit 127
+fi
+
+if [[ ! "${timeout_seconds}" =~ ^[0-9]+$ || "${timeout_seconds}" -eq 0 ]]; then
+ echo "--timeout must be a positive integer." >&2
+ exit 2
+fi
+
+if [[ -n "${tango_port}" && ! "${tango_port}" =~ ^[0-9]+$ ]]; then
+ echo "--tango-port must be an integer." >&2
+ exit 2
+fi
+
+accelerator_setup_file="$(realpath "${accelerator_setup_file}")"
+lattice_file="$(realpath "${lattice_file}")"
+
+if [[ ! -f "${accelerator_setup_file}" ]]; then
+ echo "Accelerator setup file not found: ${accelerator_setup_file}" >&2
+ exit 2
+fi
+
+if [[ ! -f "${lattice_file}" ]]; then
+ echo "Lattice file not found: ${lattice_file}" >&2
+ exit 2
+fi
+
+if [[ -n "${sif_file}" ]]; then
+ sif_file="$(realpath "${sif_file}")"
+ if [[ ! -f "${sif_file}" ]]; then
+ echo "SIF file not found: ${sif_file}" >&2
+ exit 2
+ fi
+ image_ref="${sif_file}"
+else
+ image_ref="${image_uri}"
+fi
+
+if [[ -z "${log_file}" ]]; then
+ log_file="$(mktemp -t dt4acc-twin.XXXXXX.log)"
+else
+ log_file="$(realpath -m "${log_file}")"
+ mkdir -p "$(dirname "${log_file}")"
+ : >"${log_file}"
+fi
+
+if [[ -n "${pid_file}" ]]; then
+ pid_file="$(realpath -m "${pid_file}")"
+ mkdir -p "$(dirname "${pid_file}")"
+fi
+
+setup_dir="$(dirname "${accelerator_setup_file}")"
+setup_base="$(basename "${accelerator_setup_file}")"
+lattice_dir="$(dirname "${lattice_file}")"
+lattice_base="$(basename "${lattice_file}")"
+
+bind_args=()
+if [[ "${setup_dir}" == "${lattice_dir}" ]]; then
+ bind_args+=(--bind "${setup_dir}:/data:ro")
+ accelerator_setup_container="/data/${setup_base}"
+ lattice_container="/data/${lattice_base}"
+else
+ bind_args+=(--bind "${setup_dir}:/accelerator-setup:ro")
+ bind_args+=(--bind "${lattice_dir}:/lattice:ro")
+ accelerator_setup_container="/accelerator-setup/${setup_base}"
+ lattice_container="/lattice/${lattice_base}"
+fi
+
+if [[ -n "${tango_port}" ]]; then
+ requested_tango_host="${tango_host}:${tango_port}"
+else
+ requested_tango_host="${tango_host}"
+fi
+
+detected_tango_port=""
+twin_pid=""
+
+cleanup() {
+ if [[ -n "${twin_pid}" ]] && kill -0 "${twin_pid}" 2>/dev/null; then
+ kill -- "-${twin_pid}" 2>/dev/null || kill "${twin_pid}" 2>/dev/null || true
+ for _ in {1..10}; do
+ if ! kill -0 "${twin_pid}" 2>/dev/null; then
+ return
+ fi
+ sleep 1
+ done
+ kill -KILL -- "-${twin_pid}" 2>/dev/null || kill -KILL "${twin_pid}" 2>/dev/null || true
+ fi
+}
+
+detect_tango_port() {
+ if [[ -n "${tango_port}" ]]; then
+ printf '%s\n' "${tango_port}"
+ return 0
+ fi
+
+ if [[ ! -s "${log_file}" ]]; then
+ return 1
+ fi
+
+ local detected
+ # The twin also logs an Mexec port for internal IPC; only the Tango host line is relevant here.
+ detected="$(
+ grep -Eai 'TANGO_HOST|tango[-_ ]host' "${log_file}" \
+ | sed -nE 's/.*:([0-9]{2,5}).*/\1/p' \
+ | tail -n 1 \
+ || true
+ )"
+
+ if [[ -n "${detected}" ]]; then
+ printf '%s\n' "${detected}"
+ return 0
+ fi
+
+ return 1
+}
+
+echo "Starting dt4acc twin"
+echo " accelerator setup: ${accelerator_setup_file}"
+echo " lattice file: ${lattice_file}"
+echo " tango host: ${tango_host}"
+echo " tango port: ${tango_port:-auto}"
+echo " requested TANGO_HOST: ${requested_tango_host}"
+echo " image: ${image_ref}"
+echo " log file: ${log_file}"
+if [[ -n "${pid_file}" ]]; then
+ echo " pid file: ${pid_file}"
+fi
+
+trap cleanup INT TERM EXIT
+
+setsid env TANGO_HOST="${requested_tango_host}" apptainer run \
+ "${bind_args[@]}" \
+ "${image_ref}" \
+ tango-db-embedded \
+ --force-kill-db \
+ --tango-host "${requested_tango_host}" \
+ --accelerator-setup-file "${accelerator_setup_container}" \
+ --lattice-file "${lattice_container}" \
+ >"${log_file}" 2>&1 &
+
+twin_pid="$!"
+if [[ -n "${pid_file}" ]]; then
+ echo "${twin_pid}" >"${pid_file}"
+fi
+start_epoch="$(date +%s)"
+
+while true; do
+ if ! kill -0 "${twin_pid}" 2>/dev/null; then
+ echo "dt4acc twin exited before becoming ready. Last log lines:" >&2
+ tail -n 200 "${log_file}" >&2 || true
+ exit 1
+ fi
+
+ if [[ -z "${detected_tango_port}" ]]; then
+ if detected_tango_port="$(detect_tango_port)"; then
+ echo "Detected Tango database port: ${detected_tango_port}"
+ echo "Effective TANGO_HOST: ${tango_host}:${detected_tango_port}"
+ else
+ detected_tango_port=""
+ fi
+ fi
+
+ if grep -q "${READY_PATTERN}" "${log_file}"; then
+ if [[ -z "${detected_tango_port}" ]]; then
+ if detected_tango_port="$(detect_tango_port)"; then
+ echo "Detected Tango database port: ${detected_tango_port}"
+ echo "Effective TANGO_HOST: ${tango_host}:${detected_tango_port}"
+ else
+ echo "Warning: ready heartbeat found, but Tango database port was not detected in logs." >&2
+ fi
+ fi
+ echo "Ready to use"
+ if [[ "${detach}" == "1" ]]; then
+ trap - EXIT
+ disown "${twin_pid}" 2>/dev/null || true
+ exit 0
+ fi
+ break
+ fi
+
+ now_epoch="$(date +%s)"
+ if (( now_epoch - start_epoch >= timeout_seconds )); then
+ echo "Timed out after ${timeout_seconds}s waiting for dt4acc twin readiness. Last log lines:" >&2
+ tail -n 200 "${log_file}" >&2 || true
+ exit 1
+ fi
+
+ sleep 2
+done
+
+wait "${twin_pid}"
diff --git a/tests/integration/test_dt4acc_twin_smoke.py b/tests/integration/test_dt4acc_twin_smoke.py
new file mode 100644
index 000000000..549bdb4e7
--- /dev/null
+++ b/tests/integration/test_dt4acc_twin_smoke.py
@@ -0,0 +1,212 @@
+import os
+from pathlib import Path
+
+import numpy as np
+import pytest
+import yaml
+from pyaml_test_lattice import configurations, lattices
+
+from pyaml.accelerator import Accelerator
+from pyaml.configuration import ConfigurationManager
+
+QF_001 = "QF_001"
+QF_001_STRENGTH = "AN01-AR/EM-QP/QF.01/magnetic_strength"
+RF_REFERENCE_FREQUENCY = "simulator/ringsimulator/ringsimulator/reference_frequency"
+EXAMPLES_ROOT = Path(__file__).parent.parent.parent / "examples" / "use_cases" / "config"
+
+FODO_LATTICE_KEY = "fodo_1gev_6d.json"
+FODO_1GEV_6D_TANGO_PYAML_CONFIG_KEY = "pyaml/tango/tango-pyaml/fodo_1gev_6d_pyaml.yaml"
+FODO_1GEV_6D_CS_OA_CONFIG_KEY = "pyaml/tango/pyaml-cs-oa/fodo_1gev_6d_pyaml-oa.yaml"
+FODO_1GEV_6D_CONFIGS = [
+ FODO_1GEV_6D_TANGO_PYAML_CONFIG_KEY,
+ FODO_1GEV_6D_CS_OA_CONFIG_KEY,
+]
+pytestmark = [
+ pytest.mark.integration,
+ pytest.mark.skipif(
+ os.environ.get("PYAML_DT4ACC_INTEGRATION") != "1",
+ reason="dt4acc Apptainer integration test is opt-in",
+ ),
+]
+
+
+def _readback_value(device_access):
+ return float(device_access.readback())
+
+
+def _load_fragment(config_key: str) -> dict:
+ """Load one pyaml-test-lattice merged config fragment as a plain dict.
+
+ Bypasses pyaml's own YAML loader (which auto-loads any bare
+ ``*.yaml``/``*.json`` string value as a nested file relative to the
+ parent file's directory) since the lattice file ships under a different
+ package subtree (``data/lattice``) than the config fragment
+ (``data/configuration``). The ``lattice`` and ``catalog`` references are
+ resolved explicitly instead.
+ """
+ config_path = Path(configurations[config_key])
+ fragment = yaml.safe_load(config_path.read_text())
+
+ fragment["simulators"][0]["lattice"] = str(Path(lattices[FODO_LATTICE_KEY]))
+
+ catalog_name = fragment["controls"][0]["catalog"]
+ catalog_path = config_path.parent / catalog_name
+ fragment["controls"][0]["catalog"] = yaml.safe_load(catalog_path.read_text())
+
+ return fragment
+
+
+def _build_accelerator(config_key: str):
+ configuration_manager: ConfigurationManager = ConfigurationManager()
+ configuration_manager.add(_load_fragment(config_key))
+
+ return Accelerator.from_dict(configuration_manager.to_dict())
+
+
+@pytest.mark.parametrize("config_key", FODO_1GEV_6D_CONFIGS, ids=["tango-pyaml", "pyaml-cs-oa"])
+def test_dt4acc_twin_accelerator_instantiates_and_reads_live_values(config_key: str):
+ accelerator = _build_accelerator(config_key)
+
+ assert accelerator.live is not None
+ assert "live" in accelerator.controls()
+
+ accelerator.live.rf.get("RF")
+
+ reference_frequency = _readback_value(accelerator.live.get_device_access(RF_REFERENCE_FREQUENCY))
+
+ assert np.isfinite(reference_frequency), f"RF reference frequency is not finite: {reference_frequency!r}"
+ assert reference_frequency > 0.0, f"RF reference frequency should be positive, got {reference_frequency!r}"
+
+ accelerator.live.magnet.get(QF_001)
+ magnetic_strength = _readback_value(accelerator.live.get_device_access(QF_001_STRENGTH))
+
+ assert np.isfinite(magnetic_strength), f"{QF_001} magnetic strength is not finite: {magnetic_strength!r}"
+ assert magnetic_strength > 0.0, f"{QF_001} magnetic strength should be positive, got {magnetic_strength!r}"
+
+
+@pytest.mark.parametrize("config_key", FODO_1GEV_6D_CONFIGS, ids=["tango-pyaml", "pyaml-cs-oa"])
+def test_dt4acc_twin_reads_all_declared_magnetic_strengths(config_key: str):
+ accelerator = _build_accelerator(config_key)
+ magnets = [magnet for magnet in accelerator.live.magnets.get() if magnet.get_model_name() == magnet.get_name()]
+ combined_function_magnets = accelerator.live.combined_function_magnet.all()
+
+ assert magnets or combined_function_magnets
+
+ failures = []
+ for magnet in magnets:
+ try:
+ value = float(magnet.strength.get())
+ except Exception as exc: # noqa: BLE001 - report all unavailable Tango attributes at once.
+ failures.append(f"{magnet.get_name()}: {type(exc).__name__}: {exc}")
+ continue
+
+ if not np.isfinite(value):
+ failures.append(f"{magnet.get_name()}: non-finite value {value!r}")
+
+ for magnet in combined_function_magnets:
+ try:
+ values = np.asarray(magnet.strengths.get(), dtype=float)
+ except Exception as exc: # noqa: BLE001 - report all unavailable Tango attributes at once.
+ failures.append(f"{magnet.get_name()}: {type(exc).__name__}: {exc}")
+ continue
+
+ if not np.all(np.isfinite(values)):
+ failures.append(f"{magnet.get_name()}: non-finite values {values!r}")
+
+ assert not failures, "Magnetic strength readback failures:\n" + "\n".join(failures)
+
+
+@pytest.mark.parametrize(
+ ("root_folder", "config_file"),
+ [
+ (EXAMPLES_ROOT / "bessy2", "bessy2.yaml"),
+ (EXAMPLES_ROOT / "soleil_ii", "p.yaml"),
+ ],
+ ids=["bessy_ii", "soleil_ii"],
+)
+def test_examples_can_be_loaded(root_folder: Path, config_file: str):
+ accelerator: Accelerator = Accelerator.load(str(root_folder / config_file))
+ assert accelerator.yellow_pages is not None
+
+
+@pytest.mark.parametrize("config_key", [FODO_1GEV_6D_TANGO_PYAML_CONFIG_KEY])
+def deactivated_test_orbit_correction(config_key: str):
+ try:
+ accelerator = _build_accelerator(config_key)
+ control_mode = accelerator.live
+ bpms = control_mode.bpms.get("bpms")
+ orbit_response_matrix = control_mode.get_orm_tuning("DEFAULT_ORBIT_RESPONSE_MATRIX")
+ orbit_correction = control_mode.get_orbit_tuning("DEFAULT_ORBIT_CORRECTION")
+ orbit_response_matrix.measure()
+ ormdata = orbit_response_matrix.get()
+ orbit_response_matrix.save("orm.json")
+ orbit_correction.load("orm.json")
+ std_kick = 1e-6
+ hcorr = control_mode.magnets.get("hcorrectors")
+ vcorr = control_mode.magnets.get("vcorrectors")
+ print(f"HCORR={hcorr.strengths.get()}")
+ print(f"VCORR={vcorr.strengths.get()}")
+ ref_h, ref_v = bpms.positions.get().T
+ reference = np.concat((ref_h, ref_v))
+ # mangle orbit
+ hcorr.strengths.set(hcorr.strengths.get() + std_kick * np.random.normal(size=len(hcorr)))
+ vcorr.strengths.set(vcorr.strengths.get() + std_kick * np.random.normal(size=len(vcorr)))
+ positions_bc = bpms.positions.get()
+ std_bc = np.std(positions_bc, axis=0)
+ print(f"R.m.s. orbit before correction H: {1e6 * std_bc[0]: .1f} µm, V: {1e6 * std_bc[1]: .1f} µm.")
+ orbit_correction.correct(reference=reference)
+ finally:
+ import time
+
+ from tango import DevFailed, DeviceProxy
+
+ simulator = DeviceProxy("simulator/ringsimulator/ringsimulator")
+ try:
+ print("Reset the simulator")
+ simulator.Reinit()
+ print("Reset done")
+ except DevFailed:
+ time.sleep(3)
+
+
+@pytest.mark.parametrize("config_key", [FODO_1GEV_6D_TANGO_PYAML_CONFIG_KEY])
+def deactivated_test_chromaticity_measurement(config_key: str):
+ # Deactivated like test_orbit_correction above: pyaml-test-lattice's current fixture
+ # (as of commit 9d753c73) does not yet define BPMs/correctors or tuning tools
+ # (chromaticity/orbit/tune response matrix), which this test requires.
+ try:
+ from pyaml.common.constants import Action
+
+ accelerator = _build_accelerator(config_key)
+ control_mode = accelerator.live
+ chromaticity_measurement = control_mode.get_chromaticity_monitor("DEFAULT_CHROMATICITY_MEASUREMENT")
+
+ def chroma_callback(action: int, cb_data: dict):
+ if action == Action.MEASURE:
+ print(f"Chromaticy measurement: #{cb_data['step']} RF={cb_data['rf']} Tune={cb_data['tune']}")
+ return True
+
+ accelerator.design.get_lattice().disable_6d()
+ alphac = accelerator.design.get_lattice().get_mcf()
+ accelerator.design.get_lattice().enable_6d()
+ chromaticity_measurement.measure(
+ callback=chroma_callback,
+ do_plot=True,
+ alphac=alphac,
+ fit_order=2,
+ n_step=5,
+ sleep_between_meas=2.0,
+ sleep_between_step=2.0,
+ )
+ finally:
+ import time
+
+ from tango import DevFailed, DeviceProxy
+
+ simulator = DeviceProxy("simulator/ringsimulator/ringsimulator")
+ try:
+ print("Reset the simulator")
+ simulator.Reset()
+ print("Reset done")
+ except DevFailed:
+ time.sleep(3)
diff --git a/tests/lattice_info.py b/tests/lattice/lattice_info.py
similarity index 100%
rename from tests/lattice_info.py
rename to tests/lattice/lattice_info.py
diff --git a/tests/test_linkers.py b/tests/lattice/test_linkers.py
similarity index 81%
rename from tests/test_linkers.py
rename to tests/lattice/test_linkers.py
index 9e8734bb9..75585da74 100644
--- a/tests/test_linkers.py
+++ b/tests/lattice/test_linkers.py
@@ -2,9 +2,6 @@
from pyaml import PyAMLException
from pyaml.accelerator import Accelerator
-from pyaml.lattice.attribute_linker import (
- ConfigModel as AttrConfigModel,
-)
from pyaml.lattice.attribute_linker import (
PyAtAttributeElementsLinker,
PyAtAttributeIdentifier,
@@ -28,7 +25,7 @@ def get_name(self) -> str:
def test_conf_with_linker():
sr: Accelerator = Accelerator.load("tests/config/sr-attribute-linker.yaml")
assert sr is not None
- magnet = sr.design.get_magnet("SH1A-C01-H")
+ magnet = sr.design.magnet.get("SH1A-C01-H")
assert magnet is not None
@@ -40,7 +37,7 @@ def test_conf_with_linker():
def test_attribute_identifier_from_pyaml_name(lattice_with_custom_attr):
"""We bind to AT element attribute 'Tag';
identifier value comes from PyAML element .name"""
- linker = PyAtAttributeElementsLinker(AttrConfigModel(attribute_name="Tag"))
+ linker = PyAtAttributeElementsLinker(attribute_name="Tag")
linker.set_lattice(lattice_with_custom_attr)
pyaml_elem = DummyPyAMLElement(name="QF") # identifier="QF"
ident = linker.get_element_identifier(pyaml_elem)
@@ -50,7 +47,7 @@ def test_attribute_identifier_from_pyaml_name(lattice_with_custom_attr):
def test_attribute_get_at_elements_all_matches(lattice_with_custom_attr):
- linker = PyAtAttributeElementsLinker(AttrConfigModel(attribute_name="Tag"))
+ linker = PyAtAttributeElementsLinker(attribute_name="Tag")
linker.set_lattice(lattice_with_custom_attr)
ident = PyAtAttributeIdentifier("Tag", "QF")
matches = linker.get_at_elements(ident)
@@ -60,7 +57,7 @@ def test_attribute_get_at_elements_all_matches(lattice_with_custom_attr):
def test_attribute_get_at_element_first_match(lattice_with_custom_attr):
- linker = PyAtAttributeElementsLinker(AttrConfigModel(attribute_name="Tag"))
+ linker = PyAtAttributeElementsLinker(attribute_name="Tag")
linker.set_lattice(lattice_with_custom_attr)
ident = PyAtAttributeIdentifier("Tag", "QD")
first = linker.get_at_element(ident)
@@ -73,7 +70,7 @@ def test_attribute_get_at_element_first_match(lattice_with_custom_attr):
def test_attribute_no_match_raises(lattice_with_custom_attr):
- linker = PyAtAttributeElementsLinker(AttrConfigModel(attribute_name="Tag"))
+ linker = PyAtAttributeElementsLinker(attribute_name="Tag")
linker.set_lattice(lattice_with_custom_attr)
ident = PyAtAttributeIdentifier("Tag", "ZZ")
with pytest.raises(PyAMLException):
@@ -83,7 +80,7 @@ def test_attribute_no_match_raises(lattice_with_custom_attr):
def test_attribute_multiple_identifiers_accumulate(lattice_with_custom_attr):
- linker = PyAtAttributeElementsLinker(AttrConfigModel(attribute_name="Tag"))
+ linker = PyAtAttributeElementsLinker(attribute_name="Tag")
linker.set_lattice(lattice_with_custom_attr)
ids = [PyAtAttributeIdentifier("Tag", "QF"), PyAtAttributeIdentifier("Tag", "QD")]
res = linker.get_at_elements(ids)
@@ -101,7 +98,7 @@ def test_various_naming_addressing():
sr = Accelerator.load("tests/config/EBSNames.yaml", ignore_external=True)
ring = sr.design.get_lattice()
- elts = sr.design.get_magnet("QF1E").strength._RWStrengthScalar__elements
+ elts = sr.design.magnet.get("QF1E").strength._elements
assert len(elts) == 31
check_index(
ring,
@@ -141,7 +138,7 @@ def test_various_naming_addressing():
],
)
- elts = sr.design.get_magnet("QF1E-ALL").strength._RWStrengthScalar__elements
+ elts = sr.design.magnet.get("QF1E-ALL").strength._elements
assert len(elts) == 32
check_index(
ring,
@@ -182,18 +179,18 @@ def test_various_naming_addressing():
],
)
- elts = sr.design.get_magnet("QF1E-C05").strength._RWStrengthScalar__elements
+ elts = sr.design.magnet.get("QF1E-C05").strength._elements
assert len(elts) == 1
check_index(ring, elts, [290])
- elts = sr.design.get_magnet("QF1E-C04-C05-C06").strength._RWStrengthScalar__elements
+ elts = sr.design.magnet.get("QF1E-C04-C05-C06").strength._elements
assert len(elts) == 3
check_index(ring, elts, [140, 290, 424])
- elts = sr.design.get_magnet("QF1E-C04-C05-C06-2").strength._RWStrengthScalar__elements
+ elts = sr.design.magnet.get("QF1E-C04-C05-C06-2").strength._elements
assert len(elts) == 3
check_index(ring, elts, [140, 290, 424])
- elts = sr.design.get_magnet("QF1E-C04-C05-C06-3").strength._RWStrengthScalar__elements
+ elts = sr.design.magnet.get("QF1E-C04-C05-C06-3").strength._elements
assert len(elts) == 3
check_index(ring, elts, [140, 290, 424])
diff --git a/tests/test_curve.py b/tests/magnet/test_curve.py
similarity index 66%
rename from tests/test_curve.py
rename to tests/magnet/test_curve.py
index 39cf66932..cf8597d19 100644
--- a/tests/test_curve.py
+++ b/tests/magnet/test_curve.py
@@ -1,13 +1,12 @@
import numpy as np
-from pyaml.configuration import set_root_folder
-from pyaml.configuration.csvcurve import ConfigModel, CSVCurve
-from pyaml.configuration.curve import Curve
+from pyaml.configuration import ROOT
+from pyaml.magnet.csvcurve import CSVCurve
+from pyaml.magnet.curve import Curve
def curve_test(file: str, current: float, strength: float):
- curveConfig = ConfigModel(file=file)
- curve = CSVCurve(curveConfig)
+ curve = CSVCurve(file=file)
curveData = curve.get_curve()
icurveData = Curve.inverse(curveData)
x1 = np.interp(current, curveData[:, 0], curveData[:, 1])
@@ -17,6 +16,6 @@ def curve_test(file: str, current: float, strength: float):
def test_curve(config_root_dir):
- set_root_folder(config_root_dir)
+ ROOT.set(config_root_dir)
curve_test("sr/magnet_models/QF1_strength.csv", 85, 16.618788)
curve_test("sr/magnet_models/QD2_strength.csv", 87, -12.319894)
diff --git a/tests/test_ident_models.py b/tests/magnet/test_ident_models.py
similarity index 80%
rename from tests/test_ident_models.py
rename to tests/magnet/test_ident_models.py
index 03582404d..7fa5f0d2e 100644
--- a/tests/test_ident_models.py
+++ b/tests/magnet/test_ident_models.py
@@ -20,14 +20,14 @@
def test_cfm_magnets(magnet_file, install_test_package):
sr: Accelerator = Accelerator.load(magnet_file)
sr.design.get_lattice().disable_6d()
- # magnet_design = sr.design.get_magnet("SH1A-C01")
- # magnet_live = sr.live.get_magnet("SH1A-C01")
+ # magnet_design = sr.design.magnet.get("SH1A-C01")
+ # magnet_live = sr.live.magnet.get("SH1A-C01")
# assert isinstance(magnet_design, CombinedFunctionMagnet)
# assert isinstance(magnet_live, CombinedFunctionMagnet)
- magnet_h_design = sr.design.get_magnet("SH1A-C01-H")
- magnet_v_design = sr.design.get_magnet("SH1A-C01-V")
- magnet_h_live = sr.live.get_magnet("SH1A-C01-H")
- magnet_v_live = sr.live.get_magnet("SH1A-C01-V")
+ magnet_h_design = sr.design.magnet.get("SH1A-C01-H")
+ magnet_v_design = sr.design.magnet.get("SH1A-C01-V")
+ magnet_h_live = sr.live.magnet.get("SH1A-C01-H")
+ magnet_v_live = sr.live.magnet.get("SH1A-C01-V")
assert isinstance(magnet_h_design, HCorrector)
assert isinstance(magnet_v_design, VCorrector)
assert isinstance(magnet_h_live, HCorrector)
diff --git a/tests/test_load_quad.py b/tests/magnet/test_load_quad.py
similarity index 84%
rename from tests/test_load_quad.py
rename to tests/magnet/test_load_quad.py
index ac64605eb..386382b49 100644
--- a/tests/test_load_quad.py
+++ b/tests/magnet/test_load_quad.py
@@ -4,9 +4,7 @@
import pytest
from scipy.constants import speed_of_light
-from pyaml import PyAMLException
-from pyaml.accelerator import Accelerator
-from pyaml.configuration import Factory, get_root_folder, set_root_folder
+from pyaml.configuration import ROOT, Factory
from pyaml.configuration.fileloader import load
from pyaml.control.abstract_impl import (
RWHardwareArray,
@@ -32,17 +30,18 @@
indirect=True,
)
def test_quad_external_model(install_test_package, config_root_dir):
- set_root_folder(config_root_dir)
+ ROOT.set(config_root_dir)
cfg_hcorr_yaml = load("sr/custom_magnets/hidcorr.yaml")
- cs = Factory.build_object(
+ cs = Factory.build(
{
"type": "tango.pyaml.controlsystem",
"name": "live",
"tango_host": "ebs-simu-3:10000",
+ "catalog": Factory.build(load("catalogs/sr_catalogs.yaml"), False),
}
)
- hcorr_with_external_model: HCorrector = Factory.depth_first_build(cfg_hcorr_yaml, False)
- dev = cs.attach(hcorr_with_external_model.model.get_devices())[0]
+ hcorr_with_external_model: HCorrector = Factory.build(cfg_hcorr_yaml, False)
+ dev = cs.get_device_access(hcorr_with_external_model.model.get_device_names()[0])
strength = RWStrengthScalar(hcorr_with_external_model.model, dev)
hardware = RWHardwareScalar(hcorr_with_external_model.model, dev)
ref_corr = hcorr_with_external_model.attach(cs, strength, hardware)
@@ -72,18 +71,19 @@ def test_quad_external_model(install_test_package, config_root_dir):
indirect=["install_test_package"],
)
def test_quad_linear(magnet_file, install_test_package, config_root_dir):
- set_root_folder(config_root_dir)
+ ROOT.set(config_root_dir)
cfg_quad = load(magnet_file)
print(f"Current file: {config_root_dir}/{magnet_file}")
- cs = Factory.build_object(
+ cs = Factory.build(
{
"type": "tango.pyaml.controlsystem",
"name": "live",
"tango_host": "ebs-simu-3:10000",
+ "catalog": Factory.build(load("catalogs/sr_catalogs.yaml"), False),
}
)
- quad: Quadrupole = Factory.depth_first_build(cfg_quad, False)
- dev = cs.attach(quad.model.get_devices())[0]
+ quad: Quadrupole = Factory.build(cfg_quad, False)
+ dev = cs.get_device_access(quad.model.get_device_names()[0])
hardware = RWHardwareScalar(quad.model, dev) if quad.model.has_hardware() else None
strength = RWStrengthScalar(quad.model, dev) if quad.model.has_physics() else None
ref_quad = quad.attach(cs, strength, hardware)
@@ -121,18 +121,19 @@ def test_quad_linear(magnet_file, install_test_package, config_root_dir):
],
)
def test_combined_function_magnets(magnet_file, config_root_dir):
- set_root_folder(config_root_dir)
+ ROOT.set(config_root_dir)
cfg_sh = load(magnet_file)
- cs = Factory.build_object(
+ cs = Factory.build(
{
"type": "tango.pyaml.controlsystem",
"name": "live",
"tango_host": "ebs-simu-3:10000",
+ "catalog": Factory.build(load("catalogs/sr_catalogs.yaml"), False),
}
)
- sh: CombinedFunctionMagnet = Factory.depth_first_build(cfg_sh, False)
+ sh: CombinedFunctionMagnet = Factory.build(cfg_sh, False)
sh.model.set_magnet_rigidity(6e9 / speed_of_light)
- devs = cs.attach(sh.model.get_devices())
+ devs = cs.get_devices_access(sh.model.get_device_names())
currents = RWHardwareArray(sh.model, devs)
strengths = RWStrengthArray(sh.model, devs)
sUnits = sh.model.get_strength_units()
diff --git a/tests/test_ranges_cfm_deviceaccess.py b/tests/magnet/test_ranges_cfm_deviceaccess.py
similarity index 92%
rename from tests/test_ranges_cfm_deviceaccess.py
rename to tests/magnet/test_ranges_cfm_deviceaccess.py
index d8e09faca..6316cc940 100644
--- a/tests/test_ranges_cfm_deviceaccess.py
+++ b/tests/magnet/test_ranges_cfm_deviceaccess.py
@@ -38,10 +38,10 @@ def test_cfm_ranges_from_yaml_are_propagated_and_enforced(magnet_file, install_t
sr.design.get_lattice().disable_6d()
# Parent CFM magnet (the one defined in SH1AC01-range.yaml)
- m = sr.live.get_cfm_magnet("SH1A-C01")
+ m = sr.live.combined_function_magnet.get("SH1A-C01")
- devs = m.model.get_devices()
- assert len(devs) == 3
+ dev_names = m.model.get_device_names()
+ assert len(dev_names) == 3
# Exact ranges coming from the YAML configuration file (powerconverters[*].range)
expected_ranges = [
@@ -50,6 +50,8 @@ def test_cfm_ranges_from_yaml_are_propagated_and_enforced(magnet_file, install_t
[-1.5, None],
]
+ devs = sr.live.get_devices_access(dev_names)
+
got_ranges = [d.get_range() for d in devs]
assert got_ranges == expected_ranges
diff --git a/tests/test_serialized_magnets.py b/tests/magnet/test_serialized_magnets.py
similarity index 86%
rename from tests/test_serialized_magnets.py
rename to tests/magnet/test_serialized_magnets.py
index 20506f79e..1e95ca706 100644
--- a/tests/test_serialized_magnets.py
+++ b/tests/magnet/test_serialized_magnets.py
@@ -24,7 +24,7 @@ def check_no_diff(array: list[np.float64]) -> bool:
],
)
def test_config_load(sr_file):
- sr: Accelerator = Accelerator.load(sr_file, use_fast_loader=True, ignore_external=True)
+ sr: Accelerator = Accelerator.load(sr_file, include_locations=False, ignore_external=True)
assert sr is not None
magnets = [
sr.design.get_element("QF8B-C04"),
@@ -55,11 +55,11 @@ def test_config_load(sr_file):
],
)
def test_magnet_modification(sr_file):
- sr = Accelerator.load(sr_file, use_fast_loader=True, ignore_external=True)
+ sr = Accelerator.load(sr_file, include_locations=False, ignore_external=True)
print(sr.yellow_pages)
- sm: SerializedMagnets = sr.design.get_serialized_magnet("mySeriesOfMagnets")
+ sm: SerializedMagnets = sr.design.serialized_magnet.get("mySeriesOfMagnets")
element_names = sm._SerializedMagnets__elements
lattice = sr.design.get_lattice()
@@ -107,14 +107,14 @@ def test_magnet_modification(sr_file):
],
)
def test_tune(sr_file):
- sr = Accelerator.load(sr_file, use_fast_loader=True, ignore_external=True)
+ sr = Accelerator.load(sr_file, include_locations=False, ignore_external=True)
sr.design.get_lattice().disable_6d()
- m = sr.design.get_serialized_magnet("QF1A")
+ m = sr.design.serialized_magnet.get("QF1A")
print(f"m.strength.get()={m.strength.get()}")
assert len(m.get_magnets()) == m.get_nb_magnets()
- quadForTuneDesign = sr.design.get_serialized_magnets("QForTune")
+ quadForTuneDesign = sr.design.serialized_magnets.get("QForTune")
tune_monitor = sr.design.get_betatron_tune_monitor("BETATRON_TUNE")
# Build tune response matrix
tunemat = np.zeros((len(quadForTuneDesign), 2))
@@ -160,14 +160,14 @@ def test_tune(sr_file):
"tests/config/sr_serialized_magnets.yaml",
],
)
-def test_get_devices(sr_file):
- sr: Accelerator = Accelerator.load(sr_file, use_fast_loader=True, ignore_external=True)
- sm: SerializedMagnets = sr.design.get_serialized_magnet("QF1A")
+def test_get_device_names(sr_file):
+ sr: Accelerator = Accelerator.load(sr_file, include_locations=False, ignore_external=True)
+ sm: SerializedMagnets = sr.design.serialized_magnet.get("QF1A")
- devices = sm.get_devices()
+ device_names = sm.get_device_names()
# Serialized magnets share a single power converter: exactly 1 device
- assert len(devices) == 1
+ assert len(device_names) == 1
# Strength and hardware computation must remain consistent after the fix
initial_strength = sm.strength.get()
sm.strength.set(initial_strength * 1.01)
@@ -191,8 +191,8 @@ def get_strengths_from_lattice(sr: Accelerator, sm: SerializedMagnets) -> list:
],
)
def test_strength_computation(sr_file):
- sr: Accelerator = Accelerator.load(sr_file, use_fast_loader=True, ignore_external=True)
- sm: SerializedMagnets = sr.design.get_serialized_magnet("QF1A")
+ sr: Accelerator = Accelerator.load(sr_file, include_locations=False, ignore_external=True)
+ sm: SerializedMagnets = sr.design.serialized_magnet.get("QF1A")
assert sm.get_nb_magnets() == 31
sm.strength.set(24.0)
assert abs(sm.strength.get() - 24.0) < 1e-3
diff --git a/tests/test_rf.py b/tests/rf/test_rf.py
similarity index 70%
rename from tests/test_rf.py
rename to tests/rf/test_rf.py
index 5752d4d07..1d8b5a570 100644
--- a/tests/test_rf.py
+++ b/tests/rf/test_rf.py
@@ -7,9 +7,8 @@
def test_rf():
sr: Accelerator = Accelerator.load("tests/config/EBS_rf.yaml", ignore_external=True)
- RF = sr.design.get_rf_plant("RF")
- RF.frequency.set(3.523e8)
+ sr.design.rf.frequency.set(3.523e8)
# Check that frequency has been applied on all cavities
ring = sr.design.get_lattice()
@@ -17,7 +16,7 @@ def test_rf():
if e.FamName.startswith("CAV"):
assert e.Frequency == 3.523e8
- RF.voltage.set(10.0e6)
+ sr.design.rf.voltage.set(10.0e6)
# Check that voltage has been applied on all cavities
ring = sr.design.get_lattice()
@@ -26,11 +25,10 @@ def test_rf():
assert np.isclose(e.Voltage, 10.0e6 / 13.0)
if False:
- RF = sr.live.get_rf_plant("RF")
- RF.frequency.set(3.523721693993786e8)
- RF.voltage.set(6.5e6)
- assert np.isclose(RF.frequency.get(), 3.523721693993786e8)
- assert np.isclose(RF.voltage.get(), 6.5e6)
+ sr.live.rf.frequency.set(3.523721693993786e8)
+ sr.live.rf.voltage.set(6.5e6)
+ assert np.isclose(sr.live.rf.frequency.get(), 3.523721693993786e8)
+ assert np.isclose(sr.live.rf.voltage.get(), 6.5e6)
@pytest.mark.parametrize(
@@ -42,9 +40,8 @@ def test_rf_multi(install_test_package):
sr: Accelerator = Accelerator.load("tests/config/EBS_rf_multi.yaml")
# Simulator
- RF = sr.design.get_rf_plant("RF")
- RF.frequency.set(3.523e8)
+ sr.design.rf.frequency.set(3.523e8)
# Check that frequency has been applied on all cavities
ring = sr.design.get_lattice()
@@ -56,9 +53,9 @@ def test_rf_multi(install_test_package):
else:
assert e.Frequency == 3.523e8
- RFTRA_HARMONIC = sr.design.get_rf_trasnmitter("RFTRA_HARMONIC")
+ RFTRA_HARMONIC = sr.design.rf.transmitter.get("RFTRA_HARMONIC")
RFTRA_HARMONIC.voltage.set(300e3)
- RF.voltage.set(12e6)
+ sr.design.rf.voltage.set(12e6)
for e in ring:
if e.FamName.startswith("CAV"):
@@ -69,14 +66,13 @@ def test_rf_multi(install_test_package):
assert np.isclose(e.Voltage, 1e6)
# Control system
- RF = sr.live.get_rf_plant("RF")
- RF1 = sr.live.get_rf_trasnmitter("RFTRA1")
- RF2 = sr.live.get_rf_trasnmitter("RFTRA2")
- RFTRA_HARMONIC = sr.live.get_rf_trasnmitter("RFTRA_HARMONIC")
+ RF1 = sr.live.rf.transmitter.get("RFTRA1")
+ RF2 = sr.live.rf.transmitter.get("RFTRA2")
+ RFTRA_HARMONIC = sr.live.rf.transmitter.get("RFTRA_HARMONIC")
- RF.frequency.set(3.523e8)
+ sr.live.rf.frequency.set(3.523e8)
RFTRA_HARMONIC.voltage.set(300e3)
- RF.voltage.set(12e6)
+ sr.live.rf.voltage.set(12e6)
assert np.isclose(RF1.voltage.get(), 10e6)
assert np.isclose(RF2.voltage.get(), 2e6)
@@ -92,9 +88,8 @@ def test_rf_multi_notrans(install_test_package):
sr: Accelerator = Accelerator.load("tests/config/EBS_rf_notrans.yaml")
# Simulator
- RF = sr.design.get_rf_plant("RF")
- RF.frequency.set(3.523e8)
- RF.voltage.set(10e6)
+ sr.design.rf.frequency.set(3.523e8)
+ sr.design.rf.voltage.set(10e6)
# Check that frequency and voltage has been applied on all cavities
ring = sr.design.get_lattice()
for e in ring:
@@ -103,11 +98,10 @@ def test_rf_multi_notrans(install_test_package):
assert np.isclose(e.Voltage, 10e6 / 13.0)
# Control system
- RF = sr.live.get_rf_plant("RF")
- RF.frequency.set(3.523e8)
+ sr.live.rf.frequency.set(3.523e8)
with pytest.raises(PyAMLException) as exc:
- RF.voltage.set(10e6)
- assert "has no trasmitter device defined" in str(exc)
+ sr.live.rf.voltage.set(10e6)
+ assert "has no transmitter device defined" in str(exc)
# Check that frequency and voltage has been applied on the masterclock device
- assert np.isclose(RF.frequency.get(), 3.523e8)
+ assert np.isclose(sr.live.rf.frequency.get(), 3.523e8)
diff --git a/tests/test_accelerator_load.py b/tests/test_accelerator_load.py
index 326f0a337..f30a68e39 100644
--- a/tests/test_accelerator_load.py
+++ b/tests/test_accelerator_load.py
@@ -1,7 +1,7 @@
import pytest
from pydantic import BaseModel, ConfigDict
-from pyaml import PyAMLConfigException
+from pyaml import PyAMLConfigException, set_repr_options
from pyaml.accelerator import Accelerator, ElementHolder
from pyaml.common.element import Element, ElementConfigModel, __pyaml_repr__
from pyaml.control.controlsystem import ControlSystemAdapter
@@ -17,6 +17,45 @@ def test_peer():
assert isinstance(tm.peer, ElementHolder)
+def test_repr_is_informative_and_bounded():
+ sr = Accelerator.load("tests/config/EBSOrbit.yaml")
+ bpm = sr.design.bpm.get("BPM_C04-04")
+ bpms = sr.design.bpms.get("BPM")
+
+ assert repr(bpm) == (
+ "BPM(name='BPM_C04-04', lattice_names='BPM_C04-04', "
+ + "peer=Simulator:design, x_pos='srdiag/bpm/c04-04/SA_HPosition', "
+ + "y_pos='srdiag/bpm/c04-04/SA_VPosition', "
+ + "x_offset='srdiag/bpm/c04-04/HOffset', "
+ + "y_offset='srdiag/bpm/c04-04/VOffset', "
+ + "tilt_name=None)"
+ )
+
+ assert repr(sr.design) == (
+ f"Simulator(name='design', lattice={sr.design.lattice!r}, mat_key=None, n_elements={len(sr.design.ring)})"
+ )
+ assert repr(sr) == "Accelerator(facility='ESRF', machine='sr', simulators=['design'], controls=['live'])"
+ assert len(repr(bpms)) < 250
+ assert f"size={len(bpms)}" in repr(bpms)
+ assert f"... +{len(bpms) - 3} more ..." in repr(bpms)
+
+
+def test_repr_options_limit_sequences():
+ original = set_repr_options()
+ try:
+ set_repr_options(max_items=1)
+ sr = Accelerator.load("tests/config/EBSOrbit.yaml")
+
+ bpms = sr.design.bpms.get("BPM")
+ assert f"... +{len(bpms) - 1} more ..." in repr(bpms)
+ finally:
+ set_repr_options(
+ max_items=original.max_items,
+ max_depth=original.max_depth,
+ max_length=original.max_length,
+ )
+
+
def test_accelerator_load_rejects_non_accelerator_root(tmp_path):
config_file = tmp_path / "quadrupole.yaml"
config_file.write_text("type: pyaml.magnet.quadrupole\nname: QF1A-C01\n", encoding="utf-8")
diff --git a/tests/test_catalogs.py b/tests/test_catalogs.py
new file mode 100644
index 000000000..828627aa5
--- /dev/null
+++ b/tests/test_catalogs.py
@@ -0,0 +1,190 @@
+import numpy as np
+import pytest
+
+from pyaml import PyAMLConfigException
+from pyaml.accelerator import Accelerator
+
+
+@pytest.mark.parametrize(
+ "install_test_package",
+ [{"name": "tango-pyaml", "path": "tests/dummy_cs/tango-pyaml"}],
+ indirect=True,
+)
+def test_inline_catalog_is_supported(install_test_package):
+ sr = Accelerator.from_dict(
+ {
+ "type": "pyaml.accelerator",
+ "facility": "ESRF",
+ "machine": "sr",
+ "energy": 6e9,
+ "data_folder": "/data/store",
+ "controls": [
+ {
+ "type": "tango.pyaml.controlsystem",
+ "tango_host": "ebs-simu-3:10000",
+ "name": "live",
+ "catalog": {
+ "type": "tango.pyaml.static_catalog",
+ "entries": [
+ {
+ "type": "tango.pyaml.static_catalog_entry",
+ "key": "BPM_C02-01/x",
+ "device": {
+ "type": "tango.pyaml.attribute_read_only",
+ "attribute": "srdiag/bpm/c02-01/SA_HPosition",
+ "unit": "mm",
+ },
+ },
+ {
+ "type": "tango.pyaml.static_catalog_entry",
+ "key": "BPM_C02-01/y",
+ "device": {
+ "type": "tango.pyaml.attribute_read_only",
+ "attribute": "srdiag/bpm/c02-01/SA_VPosition",
+ "unit": "mm",
+ },
+ },
+ ],
+ },
+ }
+ ],
+ "devices": [
+ {
+ "type": "pyaml.bpm.bpm",
+ "name": "BPM_C02-01",
+ "x_pos": "BPM_C02-01/x",
+ "y_pos": "BPM_C02-01/y",
+ }
+ ],
+ }
+ )
+
+ bpm = sr.live.bpm.get("BPM_C02-01")
+ assert np.allclose(bpm.positions.get(), np.array([0.0, 0.0]))
+
+
+@pytest.mark.parametrize(
+ "install_test_package",
+ [{"name": "tango-pyaml", "path": "tests/dummy_cs/tango-pyaml"}],
+ indirect=True,
+)
+def test_unresolved_catalog_key_raises_runtime_error(install_test_package):
+ with pytest.raises(
+ PyAMLConfigException,
+ match="Catalog cannot resolve key 'BPM_C03-01/y'",
+ ):
+ Accelerator.from_dict(
+ {
+ "type": "pyaml.accelerator",
+ "facility": "ESRF",
+ "machine": "sr",
+ "energy": 6e9,
+ "data_folder": "/data/store",
+ "controls": [
+ {
+ "type": "tango.pyaml.controlsystem",
+ "tango_host": "ebs-simu-3:10000",
+ "name": "live",
+ "catalog": {
+ "type": "tango.pyaml.static_catalog",
+ "entries": [
+ {
+ "type": "tango.pyaml.static_catalog_entry",
+ "key": "BPM_C03-01/x",
+ "device": {
+ "type": "tango.pyaml.attribute_read_only",
+ "attribute": "srdiag/bpm/c03-01/SA_HPosition",
+ "unit": "mm",
+ },
+ }
+ ],
+ },
+ }
+ ],
+ "devices": [
+ {
+ "type": "pyaml.bpm.bpm",
+ "name": "BPM_C03-01",
+ "x_pos": "BPM_C03-01/x",
+ "y_pos": "BPM_C03-01/y",
+ }
+ ],
+ }
+ )
+
+
+def test_duplicate_static_catalog_entry_keys_raise_config_error():
+ with pytest.raises(PyAMLConfigException, match="duplicate key 'duplicated/key'"):
+ Accelerator.load("tests/config/bad_catalog_duplicate_key.yaml")
+
+
+@pytest.mark.parametrize(
+ "install_test_package",
+ [{"name": "tango-pyaml", "path": "tests/dummy_cs/tango-pyaml"}],
+ indirect=True,
+)
+def test_indexed_catalog_entry_extracts_scalar_from_vector_attribute(install_test_package):
+ """
+ Verify that a catalog can map two keys to different indices of the same
+ vector attribute. The BPM sees two independent scalar DeviceAccess objects
+ (one per axis) even though the hardware exposes a single position vector.
+ The indexing is fully transparent to pyAML — it happens in the CS backend.
+ """
+ from tango.pyaml.attribute_store import set_attribute
+
+ set_attribute("srdiag/bpm/c01-04/Position", [1.5, -0.3], unit="mm")
+
+ sr = Accelerator.from_dict(
+ {
+ "type": "pyaml.accelerator",
+ "facility": "ESRF",
+ "machine": "sr",
+ "energy": 6e9,
+ "data_folder": "/data/store",
+ "controls": [
+ {
+ "type": "tango.pyaml.controlsystem",
+ "tango_host": "ebs-simu-3:10000",
+ "name": "live",
+ "catalog": {
+ "type": "tango.pyaml.static_catalog",
+ "entries": [
+ {
+ "type": "tango.pyaml.static_catalog_entry",
+ "key": "bpm/SA_HPosition",
+ "device": {
+ "type": "tango.pyaml.attribute",
+ "attribute": "srdiag/bpm/c01-04/Position",
+ "index": 0,
+ "unit": "mm",
+ },
+ },
+ {
+ "type": "tango.pyaml.static_catalog_entry",
+ "key": "bpm/SA_VPosition",
+ "device": {
+ "type": "tango.pyaml.attribute",
+ "attribute": "srdiag/bpm/c01-04/Position",
+ "index": 1,
+ "unit": "mm",
+ },
+ },
+ ],
+ },
+ }
+ ],
+ "devices": [
+ {
+ "type": "pyaml.bpm.bpm",
+ "name": "BPM_TEST",
+ "x_pos": "bpm/SA_HPosition",
+ "y_pos": "bpm/SA_VPosition",
+ }
+ ],
+ }
+ )
+
+ bpm = sr.live.bpm.get("BPM_TEST")
+ positions = bpm.positions.get()
+ assert np.isclose(positions[0], 1.5)
+ assert np.isclose(positions[1], -0.3)
diff --git a/tests/test_factory.py b/tests/test_factory.py
deleted file mode 100644
index e60afad55..000000000
--- a/tests/test_factory.py
+++ /dev/null
@@ -1,53 +0,0 @@
-import pytest
-
-from pyaml import PyAMLConfigException, PyAMLException
-from pyaml.accelerator import Accelerator
-from pyaml.configuration import get_root_folder, set_root_folder
-from pyaml.configuration.factory import Factory
-from pyaml.configuration.fileloader import load
-from tests.conftest import MockElement
-
-
-def test_factory_build_default():
- """Test default PyAML module loading."""
- data = {"type": "mock_module", "name": "simple"}
- obj = Factory.depth_first_build(data, False)
- assert isinstance(obj, MockElement)
- assert obj.name == "simple"
-
-
-@pytest.mark.parametrize(
- "test_file",
- [
- "tests/config/bad_conf.yml",
- ],
-)
-def test_error_location(test_file):
- previous_root = get_root_folder()
- try:
- with pytest.raises(PyAMLConfigException) as exc:
- set_root_folder("tests/config")
- cfg = load("bad_conf.yml")
- Factory.depth_first_build(cfg, False)
- finally:
- set_root_folder(previous_root)
- print(str(exc.value))
- test_file_names = test_file.split("/")
- test_file_name = test_file_names[len(test_file_names) - 1]
- assert f"{test_file_name} at line 6, column 5" in str(exc.value)
-
-
-@pytest.mark.parametrize(
- "test_file",
- [
- "tests/config/bad_conf_cycles.yml",
- "tests/config/bad_conf_cycles.json",
- ],
-)
-def test_error_cycles(test_file):
- with pytest.raises(PyAMLException) as exc:
- ml: Accelerator = Accelerator.load(test_file)
-
- assert "Circular file inclusion of " in str(exc.value)
- if not test_file.endswith(".json"):
- assert "at line 22" in str(exc.value)
diff --git a/tests/test_load_conf_with_code.py b/tests/test_load_conf_with_code.py
index ceb4747d0..de4761023 100644
--- a/tests/test_load_conf_with_code.py
+++ b/tests/test_load_conf_with_code.py
@@ -8,6 +8,11 @@ def test_load_conf_with_code():
config_path = parent_folder.joinpath("config", "EBSOrbit.yaml").resolve()
sr: Accelerator = Accelerator.load(config_path)
- bpms = sr.live.get_bpms("BPM")
+ bpms = sr.live.bpms.get("BPM")
assert bpms is not None
assert len(bpms) == 320
+
+ assert sr.live[bpms[0].get_name()] is bpms[0]
+ assert sr.live["BPM*"].names() == bpms.names()
+ assert sr.live[:].names() == [element.get_name() for element in sr.live.get_all_elements()]
+ assert sr.design["BPM*"].names() == sr.design.bpms.get("BPM").names()
diff --git a/tests/test_yellow_pages_basic.py b/tests/test_yellow_pages_basic.py
index c3e84057d..80413e6f3 100644
--- a/tests/test_yellow_pages_basic.py
+++ b/tests/test_yellow_pages_basic.py
@@ -17,10 +17,15 @@
VCorr (pyaml.arrays.magnet_array) size=288
Skews (pyaml.arrays.magnet_array) size=288
Sext (pyaml.arrays.magnet_array) size=180
+ QForTune (pyaml.arrays.magnet_array) size=124
.
Tools:
- CHROMATICITY_MONITOR (pyaml.diagnostics.chromaticity_monitor)
+ BBA-BPM_C04-04 (pyaml.tuning_tools.bba)
+ BBA2-BPM_C04-04 (pyaml.tuning_tools.bba2)
+ CHROMATICITY_MONITOR (pyaml.tuning_tools.chromaticity_monitor)
+ DEFAULT_TUNE_CORRECTION (pyaml.tuning_tools.tune)
+ DEFAULT_TUNE_RESPONSE_MATRIX (pyaml.tuning_tools.tune_response_matrix)
DEFAULT_CHROMATICITY_RESPONSE_MATRIX (pyaml.tuning_tools.chromaticity_response_matrix)
DEFAULT_CHROMATICITY_CORRECTION (pyaml.tuning_tools.chromaticity)
DEFAULT_ORBIT_CORRECTION (pyaml.tuning_tools.orbit)
diff --git a/tests/tuning_tools/test_bba.py b/tests/tuning_tools/test_bba.py
new file mode 100644
index 000000000..330c8118f
--- /dev/null
+++ b/tests/tuning_tools/test_bba.py
@@ -0,0 +1,27 @@
+import numpy as np
+import pytest
+
+from pyaml.accelerator import Accelerator
+
+
+def test_bba():
+ sr = Accelerator.load("tests/config/EBSOrbit.yaml")
+ SR = sr.design
+
+ # Add a misalignement
+ SR.bpm.get("BPM_C04-04").offset.set([20e-6, -15e-6])
+
+ # BBA (standard bow tie, model independant)
+ bba = SR.get_bba("BBA-BPM_C04-04")
+ bba.measure()
+ assert np.abs(bba.h_offset() - 20e-6) < 1e-6
+ assert np.abs(bba.v_offset() + 15e-6) < 1e-6
+
+ # BBA (model dependant method)
+ bba = SR.get_bba("BBA2-BPM_C04-04")
+ bba.minicycle_sleep_time = 0
+ bba.measure()
+ assert np.abs(bba.h_offset() - 20e-6) < 1e-6
+ assert np.abs(bba.v_offset() + 15e-6) < 1e-6
+ assert np.abs(bba.h_offset_error() - 3.425616879733572e-07) < 1e-10
+ assert np.abs(bba.v_offset_error() - 2.593196843945284e-07) < 1e-10
diff --git a/tests/test_chromaticity_monitor.py b/tests/tuning_tools/test_chromaticity_monitor.py
similarity index 91%
rename from tests/test_chromaticity_monitor.py
rename to tests/tuning_tools/test_chromaticity_monitor.py
index 5f296ea9e..d9b816b6f 100644
--- a/tests/test_chromaticity_monitor.py
+++ b/tests/tuning_tools/test_chromaticity_monitor.py
@@ -10,7 +10,7 @@ def callback(action: int, data: dict):
def test_simulator_chromaticity_monitor():
- sr: Accelerator = Accelerator.load("tests/config/EBS_chromaticity.yaml", ignore_external=True)
+ sr: Accelerator = Accelerator.load("tests/config/EBSOrbit.yaml", ignore_external=True)
sr.design.get_lattice().enable_6d()
chromaAT = sr.design.get_lattice().get_chrom()[:-1]
chromaticity_monitor = sr.design.get_chromaticity_monitor("CHROMATICITY_MONITOR")
@@ -40,7 +40,7 @@ def test_simulator_chromaticity_monitor():
indirect=True,
)
def test_controlsystem_chromaticity_monitor(install_test_package):
- sr: Accelerator = Accelerator.load("tests/config/EBS_chromaticity.yaml")
+ sr: Accelerator = Accelerator.load("tests/config/EBSOrbit.yaml")
chromaticity_monitor = sr.live.get_chromaticity_monitor("CHROMATICITY_MONITOR")
assert chromaticity_monitor.chromaticity.get() is None
chromaticity_monitor.measure(
diff --git a/tests/test_tune.py b/tests/tuning_tools/test_tune.py
similarity index 88%
rename from tests/test_tune.py
rename to tests/tuning_tools/test_tune.py
index 0ff9f2ac0..a114230cf 100644
--- a/tests/test_tune.py
+++ b/tests/tuning_tools/test_tune.py
@@ -5,15 +5,15 @@
def test_tune():
- sr: Accelerator = Accelerator.load("tests/config/EBSTune.yaml", ignore_external=True)
+ sr: Accelerator = Accelerator.load("tests/config/EBSTune.yaml", ignore_external=False)
assert sr.get_description() == "Accelerator configuration for EBS storage ring"
- assert sr.design.get_magnet("QF1E-C04").get_description() == "QF1E-C04 quadrupole"
+ assert sr.design.magnet.get("QF1E-C04").get_description() == "QF1E-C04 quadrupole"
assert sr.design.get_description() == "EBS lattice"
sr.design.get_lattice().disable_6d()
- quadForTuneDesign = sr.design.get_magnets("QForTune")
+ quadForTuneDesign = sr.design.magnets.get("QForTune")
tune_monitor = sr.design.get_betatron_tune_monitor("BETATRON_TUNE")
# Build tune response matrix
tune = tune_monitor.tune.get()
@@ -47,7 +47,7 @@ def test_tune():
if False:
# Correct the tune on live (need a Virutal Accelerator)
- quadForTuneLive = sr.live.get_magnets("QForTune")
+ quadForTuneLive = sr.live.magnets.get("QForTune")
strs = quadForTuneLive.strengths.get()
strs += np.matmul(correctionmat, [0.1, 0.05]) # Ask for correction [dqx,dqy]
quadForTuneLive.strengths.set(strs)
diff --git a/tests/test_tune_hardware.py b/tests/tuning_tools/test_tune_hardware.py
similarity index 95%
rename from tests/test_tune_hardware.py
rename to tests/tuning_tools/test_tune_hardware.py
index 638bc8397..8e83197df 100644
--- a/tests/test_tune_hardware.py
+++ b/tests/tuning_tools/test_tune_hardware.py
@@ -8,7 +8,7 @@ def test_tune():
sr: Accelerator = Accelerator.load("tests/config/EBSTune.yaml", ignore_external=True)
sr.design.get_lattice().disable_6d()
- quadForTuneDesign = sr.design.get_magnets("QForTune")
+ quadForTuneDesign = sr.design.magnets.get("QForTune")
# Build tune response matrix (hardware units)
diff --git a/tests/test_tune_monitor.py b/tests/tuning_tools/test_tune_monitor.py
similarity index 100%
rename from tests/test_tune_monitor.py
rename to tests/tuning_tools/test_tune_monitor.py
diff --git a/tests/test_tuning_dispersion.py b/tests/tuning_tools/test_tuning_dispersion.py
similarity index 81%
rename from tests/test_tuning_dispersion.py
rename to tests/tuning_tools/test_tuning_dispersion.py
index b96b414b2..16d2cd397 100644
--- a/tests/test_tuning_dispersion.py
+++ b/tests/tuning_tools/test_tuning_dispersion.py
@@ -8,7 +8,7 @@ def test_tuning_orm():
logging.getLogger("pyaml.tuning_tools").setLevel(logging.WARNING)
parent_folder = Path(__file__).parent
- config_path = parent_folder.joinpath("config", "EBSOrbit.yaml").resolve()
+ config_path = parent_folder.joinpath("..", "config", "EBSOrbit.yaml").resolve()
sr = Accelerator.load(config_path)
element_holder = sr.design
@@ -17,7 +17,7 @@ def test_tuning_orm():
dispersion.measure()
dispersion_data = dispersion.get()
- bpms = element_holder.get_bpms("BPM")
+ bpms = element_holder.bpms.get("BPM")
assert len(dispersion_data["frequency_response_x"]) == len(bpms)
assert len(dispersion_data["frequency_response_y"]) == len(bpms)
diff --git a/tests/test_tuning_orbit_correction.py b/tests/tuning_tools/test_tuning_orbit_correction.py
similarity index 92%
rename from tests/test_tuning_orbit_correction.py
rename to tests/tuning_tools/test_tuning_orbit_correction.py
index 447bea50c..d2648c7a4 100644
--- a/tests/test_tuning_orbit_correction.py
+++ b/tests/tuning_tools/test_tuning_orbit_correction.py
@@ -12,16 +12,16 @@ def test_tuning_orbit_correction():
logging.getLogger("pyaml.tuning_tools").setLevel(logging.WARNING)
parent_folder = Path(__file__).parent
- config_path = parent_folder.joinpath("config", "EBSOrbit.yaml").resolve()
+ config_path = parent_folder.joinpath("..", "config", "EBSOrbit.yaml").resolve()
sr = Accelerator.load(config_path)
element_holder = sr.design
## generate some orbit
np.random.seed(42)
std_kick = 1e-6
- hcorr = element_holder.get_magnets("HCorr")
- vcorr = element_holder.get_magnets("VCorr")
- bpms = element_holder.get_bpms("BPM")
+ hcorr = element_holder.magnets.get("HCorr")
+ vcorr = element_holder.magnets.get("VCorr")
+ bpms = element_holder.bpms.get("BPM")
x, y = bpms.positions.get().T # get reference orbit
reference = np.concat((x, y))
@@ -183,9 +183,8 @@ def test_tuning_orbit_correction():
x, y = bpms.positions.get().T # get reference orbit
reference_before_rf = np.concat((x, y))
- plant = element_holder.get_rf_plant("RF")
- frf = plant.frequency.get()
- plant.frequency.set(frf + 100)
+ frf = element_holder.rf.frequency.get()
+ element_holder.rf.frequency.set(frf + 100)
for _ in range(3):
element_holder.orbit.correct(
reference=reference_before_rf,
@@ -195,7 +194,7 @@ def test_tuning_orbit_correction():
gain_H=0,
)
- frf_after = plant.frequency.get()
+ frf_after = element_holder.rf.frequency.get()
assert np.isclose(frf, frf_after, rtol=0, atol=1e-16)
# no need to mangle orbit again, test rf
@@ -204,9 +203,8 @@ def test_tuning_orbit_correction():
rf_weight = element_holder.orbit.get_rf_weight()
element_holder.orbit.set_rf_weight(1.1 * rf_weight)
- plant = element_holder.get_rf_plant("RF")
- frf = plant.frequency.get()
- plant.frequency.set(frf + 100)
+ frf = element_holder.rf.frequency.get()
+ element_holder.rf.frequency.set(frf + 100)
for _ in range(8):
element_holder.orbit.correct(
reference=reference_before_rf,
@@ -216,7 +214,7 @@ def test_tuning_orbit_correction():
gain_H=0,
)
- frf_after = plant.frequency.get()
+ frf_after = element_holder.rf.frequency.get()
assert np.isclose(frf, frf_after, rtol=0, atol=1e-16)
element_holder.orbit.set_rf_weight(rf_weight)
@@ -237,7 +235,7 @@ def test_tuning_orbit_correction_config():
"singular_values": "162",
"response_matrix": "file:does_not_exist.json",
}
- orbit_cor = Factory.depth_first_build(config_dict, ignore_external=False)
+ orbit_cor = Factory.build(config_dict, ignore_external=False)
Factory.clear()
config_dict = {
@@ -250,7 +248,7 @@ def test_tuning_orbit_correction_config():
"response_matrix": "file:does_not_exist.json",
}
try:
- orbit_cor = Factory.depth_first_build(config_dict, ignore_external=False)
+ orbit_cor = Factory.build(config_dict, ignore_external=False)
except PyAMLConfigException as exc:
# failed successfully!
Factory.clear()
@@ -265,5 +263,5 @@ def test_tuning_orbit_correction_config():
"singular_values_V": "162",
"response_matrix": "file:does_not_exist.json",
}
- orbit_cor = Factory.depth_first_build(config_dict, ignore_external=False)
+ orbit_cor = Factory.build(config_dict, ignore_external=False)
Factory.clear()
diff --git a/tests/test_tuning_orm.py b/tests/tuning_tools/test_tuning_orm.py
similarity index 52%
rename from tests/test_tuning_orm.py
rename to tests/tuning_tools/test_tuning_orm.py
index 4eac3428f..553bce161 100644
--- a/tests/test_tuning_orm.py
+++ b/tests/tuning_tools/test_tuning_orm.py
@@ -1,4 +1,5 @@
import logging
+import tempfile
from pathlib import Path
import numpy as np
@@ -10,17 +11,24 @@ def test_tuning_orm():
logging.getLogger("pyaml.tuning_tools").setLevel(logging.WARNING)
parent_folder = Path(__file__).parent
- config_path = parent_folder.joinpath("config", "EBSOrbit.yaml").resolve()
+ config_path = parent_folder.joinpath("..", "config", "EBSOrbit.yaml").resolve()
sr = Accelerator.load(config_path)
element_holder = sr.design
orm = element_holder.orm
- bpms = element_holder.get_bpms("BPM")
- hcorr_names = element_holder.get_magnets("HCorr").names()[:4]
- vcorr_names = element_holder.get_magnets("VCorr").names()[:4]
+ bpms = element_holder.bpms.get("BPM")
+ hcorr_names = element_holder.magnets.get("HCorr").names()[:4]
+ vcorr_names = element_holder.magnets.get("VCorr").names()[:4]
orm.measure(corrector_names=hcorr_names + vcorr_names)
orm_data = orm.get()
orm_shape = np.array(orm_data["matrix"]).shape
assert orm_shape == (2 * len(bpms), 8)
+
+ with tempfile.NamedTemporaryFile(mode="w", suffix=".json", prefix="orm_") as f:
+ # save file
+ orm.save(save_path=f.name)
+
+ # load saved file
+ element_holder.orbit.load(f.name)
diff --git a/tests/test_tuning_tools.py b/tests/tuning_tools/test_tuning_tools.py
similarity index 88%
rename from tests/test_tuning_tools.py
rename to tests/tuning_tools/test_tuning_tools.py
index 72fdc5d3b..5c748b003 100644
--- a/tests/test_tuning_tools.py
+++ b/tests/tuning_tools/test_tuning_tools.py
@@ -10,7 +10,7 @@ def callback(action: Action, data: dict):
def test_tune_tool():
- sr = Accelerator.load("tests/config/EBSTune.yaml", use_fast_loader=True)
+ sr = Accelerator.load("tests/config/EBSTune.yaml", include_locations=False)
sr.design.get_lattice().disable_6d()
sr.design.trm.measure(callback=callback)
sr.design.trm.save("tunemat.json")
@@ -22,7 +22,7 @@ def test_tune_tool():
def test_tune_add():
- sr = Accelerator.load("tests/config/EBSTune.yaml", use_fast_loader=True)
+ sr = Accelerator.load("tests/config/EBSTune.yaml", include_locations=False)
sr.design.get_lattice().disable_6d()
sr.design.tune.load("tunemat.json")
tune_initial = sr.design.tune.readback()
@@ -33,7 +33,7 @@ def test_tune_add():
def test_chroma_tool():
- sr: Accelerator = Accelerator.load("tests/config/EBSOrbit.yaml", use_fast_loader=True)
+ sr: Accelerator = Accelerator.load("tests/config/EBSOrbit.yaml", include_locations=False)
sr.design.get_lattice().enable_6d()
sr.design.chromaticity.set([8.0, 5.0], iter=2)
QpAT = sr.design.get_lattice().get_chrom()[:-1]
@@ -45,7 +45,7 @@ def test_chroma_tool():
def test_chroma_add():
- sr: Accelerator = Accelerator.load("tests/config/EBSOrbit.yaml", use_fast_loader=True)
+ sr: Accelerator = Accelerator.load("tests/config/EBSOrbit.yaml", include_locations=False)
sr.design.get_lattice().enable_6d()
chromaAT = sr.design.get_lattice().get_chrom()[:-1]
sr.design.chromaticity.add([0.5, 0.4])
diff --git a/tests/validation/test_generator.py b/tests/validation/test_generator.py
new file mode 100644
index 000000000..b3d8917c5
--- /dev/null
+++ b/tests/validation/test_generator.py
@@ -0,0 +1,233 @@
+"""Tests of the schema generator."""
+
+import json
+import re
+from collections.abc import Generator
+from pathlib import Path
+
+import pytest
+from pydantic import Field
+
+from pyaml.validation import (
+ ConfigurationSchema,
+ SchemaGenerator,
+ SchemaRegistry,
+)
+from pyaml.validation.generator import RegistryJsonSchema
+
+# ==========================================================
+# Dummy schemas
+# ==========================================================
+
+
+class DummySchema(ConfigurationSchema):
+ pass
+
+
+class OtherSchema(ConfigurationSchema):
+ pass
+
+
+class ParentSchema(ConfigurationSchema):
+ """Parent schema used to test inheritance."""
+
+ pass
+
+
+class ChildSchemaA(ParentSchema):
+ a: int = 1
+
+
+class ChildSchemaB(ParentSchema):
+ b: str = "x"
+
+
+class VirtualChildSchema(ConfigurationSchema):
+ b: str = "x"
+
+
+class ContainerSchema(ConfigurationSchema):
+ model: ChildSchemaA | None = Field(
+ default=None,
+ description="Container schema used for testing.",
+ )
+
+
+# ==========================================================
+# Fixtures
+# ==========================================================
+
+
+@pytest.fixture(autouse=True)
+def clear_registry() -> Generator[None, None, None]:
+ """Ensure the registry is empty for each test."""
+
+ registry = SchemaRegistry()
+ registry.clear()
+ yield
+ registry.clear()
+
+
+@pytest.fixture
+def registry() -> SchemaRegistry:
+ return SchemaRegistry()
+
+
+# ==========================================================
+# Generate
+# ==========================================================
+
+
+def test_generate_raises_clean_keyerror_for_missing_schema(registry: SchemaRegistry):
+ class_path = "pkg.module.Class"
+
+ with pytest.raises(
+ KeyError,
+ match=re.escape(f"No schema registered for '{class_path}'"),
+ ):
+ SchemaGenerator.generate(class_path)
+
+
+def test_generate_returns_schema_for_registered_class(registry: SchemaRegistry):
+ class_path = "pkg.module.Class"
+
+ registry.register(class_path, DummySchema)
+
+ schema = SchemaGenerator.generate(class_path)
+
+ assert schema["title"] == "DummySchema"
+
+
+# ==========================================================
+# Save
+# ==========================================================
+
+
+def test_save_writes_schema_to_file(registry: SchemaRegistry, tmp_path: Path):
+ class_path = "pkg.module.Class"
+ registry.register(class_path, DummySchema)
+
+ filename = tmp_path / "schema.json"
+
+ result = SchemaGenerator.save(class_path, filename, indent=2)
+
+ assert result == filename
+ assert json.loads(filename.read_text(encoding="utf-8")) == SchemaGenerator.generate(class_path)
+
+
+# ==========================================================
+# Registry-aware polymorphism
+# ==========================================================
+
+
+def test_generate_replaces_parent_schema_with_registered_subclasses(
+ registry: SchemaRegistry,
+):
+ registry.register("pkg.module.Parent", ParentSchema)
+ registry.register("pkg.module.ChildA", ChildSchemaA)
+ registry.register("pkg.module.ChildB", ChildSchemaB)
+
+ schema = SchemaGenerator.generate("pkg.module.Parent")
+
+ oneof = schema.get("oneOf", [])
+ refs = {item["$ref"] for item in oneof if "$ref" in item}
+ if refs:
+ assert "#/$defs/ChildSchemaA" in refs
+ assert "#/$defs/ChildSchemaB" in refs
+ else:
+ class_paths = {item["properties"]["class"]["const"] for item in oneof if "properties" in item}
+ assert "pkg.module.ChildA" in class_paths
+ assert "pkg.module.ChildB" in class_paths
+
+
+def test_generate_includes_real_and_virtual_subclasses(
+ registry: SchemaRegistry,
+):
+ registry.register("pkg.module.Parent", ParentSchema)
+ registry.register("pkg.module.ChildA", ChildSchemaA)
+ registry.register("pkg.module.VirtualChild", VirtualChildSchema)
+
+ ParentSchema.register_virtual_subclass(VirtualChildSchema)
+
+ schema = SchemaGenerator.generate("pkg.module.Parent")
+
+ oneof = schema.get("oneOf", [])
+ refs = {item["$ref"] for item in oneof if "$ref" in item}
+ if refs:
+ assert "#/$defs/ChildSchemaA" in refs
+ assert "#/$defs/VirtualChildSchema" in refs
+ else:
+ class_paths = {item["properties"]["class"]["const"] for item in oneof if "properties" in item}
+ assert "pkg.module.ChildA" in class_paths
+ assert "pkg.module.VirtualChild" in class_paths
+
+
+def test_model_schema_preserves_metadata_from_parent_schema(
+ registry: SchemaRegistry,
+):
+ registry.register("pkg.module.Parent", ParentSchema)
+ registry.register("pkg.module.ChildA", ChildSchemaA)
+ registry.register("pkg.module.ChildB", ChildSchemaB)
+
+ schema = ParentSchema.model_json_schema(schema_generator=RegistryJsonSchema)
+
+ assert schema["title"] == "ParentSchema"
+ assert schema["description"] == "Parent schema used to test inheritance."
+
+
+# ==========================================================
+# Literals
+# ==========================================================
+
+
+def test_add_literals_to_class_path_ignores_empty_literal_list():
+ schema = {"type": "string"}
+
+ RegistryJsonSchema._add_literals_to_class_path(schema, [])
+
+ assert schema == {"type": "string"}
+
+
+def test_add_literals_to_class_path_replaces_single_value_with_const():
+ schema = {"type": "string"}
+
+ RegistryJsonSchema._add_literals_to_class_path(
+ schema,
+ ["pkg.module.Parent"],
+ )
+
+ assert schema["const"] == "pkg.module.Parent"
+ assert "enum" not in schema
+
+
+def test_add_literals_to_class_path_merges_existing_enum_and_removes_duplicates():
+ schema = {"type": "string", "enum": ["pkg.module.Parent", "pkg.module.ChildA"]}
+
+ RegistryJsonSchema._add_literals_to_class_path(
+ schema,
+ ["pkg.module.ChildA", "pkg.module.ChildB", "pkg.module.Parent"],
+ )
+
+ assert schema["enum"] == [
+ "pkg.module.Parent",
+ "pkg.module.ChildA",
+ "pkg.module.ChildB",
+ ]
+ assert "const" not in schema
+
+
+def test_add_literals_to_class_path_does_not_modify_non_string_schema_without_enum():
+ schema = {"type": "integer"}
+
+ RegistryJsonSchema._add_literals_to_class_path(schema, ["pkg.module.Parent"])
+
+ assert schema == {"type": "integer"}
+
+
+def test_add_literals_to_class_path_updates_existing_enum_even_without_string_type():
+ schema = {"enum": ["pkg.module.Parent"]}
+
+ RegistryJsonSchema._add_literals_to_class_path(schema, ["pkg.module.ChildA"])
+
+ assert schema["enum"] == ["pkg.module.Parent", "pkg.module.ChildA"]
+ assert "const" not in schema
diff --git a/tests/validation/test_models.py b/tests/validation/test_models.py
new file mode 100644
index 000000000..7913fa7c4
--- /dev/null
+++ b/tests/validation/test_models.py
@@ -0,0 +1,445 @@
+"""Tests of the configuration models."""
+
+import inspect
+import json
+from dataclasses import dataclass
+
+import pytest
+from pydantic import BaseModel, ValidationError
+from pydantic.errors import PydanticSchemaGenerationError
+
+from pyaml.common.exception import PyAMLConfigException
+from pyaml.validation import ConfigurationSchema, DynamicValidation, StaticValidation
+from pyaml.validation.configuration_models import PyAMLBaseModel
+from pyaml.validation.validation_models import ValidationModel
+
+# ==========================================================
+# PyAMLBaseModel
+# ==========================================================
+
+
+def test_model_dump_serializes_subclass_fields():
+ class Device(PyAMLBaseModel):
+ name: str
+
+ class Magnet(Device):
+ type: str
+
+ class Accelerator(PyAMLBaseModel):
+ device: Device
+
+ accelerator = Accelerator(device=Magnet(name="QF", type="Quadrupole"))
+
+ dumped = accelerator.model_dump()
+
+ assert dumped == {"device": {"name": "QF", "type": "Quadrupole"}}
+
+
+def test_model_dump_json_serializes_subclass_fields():
+ class Device(PyAMLBaseModel):
+ name: str
+
+ class Magnet(Device):
+ type: str
+
+ class Accelerator(PyAMLBaseModel):
+ device: Device
+
+ accelerator = Accelerator(device=Magnet(name="QF", type="Quadrupole"))
+
+ dumped_json = accelerator.model_dump_json()
+ dumped = json.loads(dumped_json)
+
+ assert dumped == {"device": {"name": "QF", "type": "Quadrupole"}}
+
+
+# ==========================================================
+# ConfigurationSchema
+# ==========================================================
+
+
+def test_configuration_schema_accepts_alias_class():
+ schema = ConfigurationSchema.model_validate({"class": "pkg.module.Class"})
+
+ assert schema.class_path == "pkg.module.Class"
+
+
+def test_configuration_schema_accepts_field_name_class_path():
+ schema = ConfigurationSchema.model_validate({"class_path": "pkg.module.Class"})
+
+ assert schema.class_path == "pkg.module.Class"
+
+
+def test_configuration_schema_forbids_extra_fields():
+ with pytest.raises(ValidationError) as exc_info:
+ ConfigurationSchema.model_validate(
+ {
+ "class": "pkg.module.Class",
+ "unexpected": "value",
+ }
+ )
+
+ assert "extra_forbidden" in str(exc_info.value)
+
+
+def test_configuration_schema_do_not_allow_arbitrary_types():
+ class ArbitraryType:
+ pass
+
+ with pytest.raises(PydanticSchemaGenerationError):
+
+ class TestModel(ConfigurationSchema):
+ value: ArbitraryType
+
+
+def test_configuration_schema_dump_uses_alias_when_requested():
+ schema = ConfigurationSchema.model_validate({"class": "pkg.module.Class"})
+
+ dumped = schema.model_dump(by_alias=True)
+
+ assert dumped == {"class": "pkg.module.Class"}
+
+
+def test_configuration_schema_registers_virtual_subclass():
+ class Curve(ConfigurationSchema):
+ pass
+
+ class Curve1(ConfigurationSchema):
+ pass
+
+ Curve.register_virtual_subclass(Curve1)
+
+ assert Curve1 in Curve.virtual_subclasses()
+ assert Curve1.is_virtual_subclass_of(Curve)
+
+
+def test_configuration_schema_is_virtual_subclass_of_is_transitive():
+ class Curve(ConfigurationSchema):
+ pass
+
+ class Curve1(ConfigurationSchema):
+ pass
+
+ class Curve2(ConfigurationSchema):
+ pass
+
+ Curve.register_virtual_subclass(Curve1)
+ Curve1.register_virtual_subclass(Curve2)
+
+ assert Curve1.is_virtual_subclass_of(Curve)
+ assert Curve2.is_virtual_subclass_of(Curve)
+ assert Curve2.is_virtual_subclass_of(Curve1)
+ assert Curve.is_virtual_subclass_of(Curve)
+ assert not Curve.is_virtual_subclass_of(Curve1)
+ assert not Curve1.is_virtual_subclass_of(Curve2)
+
+
+def test_configuration_schema_virtual_subclasses_are_per_class():
+ class Curve(ConfigurationSchema):
+ pass
+
+ class Curve1(ConfigurationSchema):
+ pass
+
+ class Curve2(ConfigurationSchema):
+ pass
+
+ Curve.register_virtual_subclass(Curve1)
+ Curve1.register_virtual_subclass(Curve2)
+
+ assert Curve.virtual_subclasses() == {Curve1}
+ assert Curve1.virtual_subclasses() == {Curve2}
+ assert Curve2.virtual_subclasses() == set()
+
+
+def test_configuration_schema_virtual_subclasses_returns_copy():
+ class Curve(ConfigurationSchema):
+ pass
+
+ class Curve1(ConfigurationSchema):
+ pass
+
+ Curve.register_virtual_subclass(Curve1)
+
+ subclasses = Curve.virtual_subclasses()
+ subclasses.clear()
+
+ assert Curve.virtual_subclasses() == {Curve1}
+
+
+def test_configuration_schema_register_virtual_subclass_rejects_non_schema():
+ class Curve(ConfigurationSchema):
+ pass
+
+ with pytest.raises(TypeError, match="is not a ConfigurationSchema subclass"):
+ Curve.register_virtual_subclass(int) # type: ignore[arg-type]
+
+
+def test_configuration_schema_is_virtual_subclass_of_rejects_non_schema():
+ class Curve(ConfigurationSchema):
+ pass
+
+ with pytest.raises(TypeError, match="is not a ConfigurationSchema"):
+ Curve.is_virtual_subclass_of(int) # type: ignore[arg-type]
+
+
+# ==========================================================
+# ValidationModel
+# ==========================================================
+
+
+class DummyDevice:
+ pass
+
+
+class DummyModel(ValidationModel):
+ device: DummyDevice
+
+
+def test_validation_model_allows_arbitrary_types():
+ device = DummyDevice()
+
+ schema = DummyModel.model_validate({"device": device})
+
+ assert schema.device is device
+
+
+def test_validation_model_forbids_extra_fields():
+ with pytest.raises(ValidationError):
+ DummyModel.model_validate({"device": DummyDevice(), "extra_field": 123})
+
+
+# ==========================================================
+# DynamicValidation
+# ==========================================================
+
+
+def test_dynamic_validation_builds_model_from_init_signature():
+ class MyClass(DynamicValidation):
+ def __init__(self, name: str, count: int = 0):
+ self.name = name
+ self.count = count
+
+ assert issubclass(MyClass.validation_model, ValidationModel)
+ assert list(MyClass.validation_model.model_fields) == ["name", "count"]
+
+ name_field = MyClass.validation_model.model_fields["name"]
+ count_field = MyClass.validation_model.model_fields["count"]
+
+ assert name_field.annotation is str
+ assert name_field.is_required()
+
+ assert count_field.annotation is int
+ assert count_field.default == 0
+
+
+def test_dynamic_validation_accepts_positional_and_keyword_arguments():
+ class MyClass(DynamicValidation):
+ def __init__(self, name: str, count: int = 0):
+ self.name = name
+ self.count = count
+
+ obj1 = MyClass("test", 1)
+ obj2 = MyClass(name="test", count=1)
+ obj3 = MyClass("test")
+
+ assert obj1.name == "test"
+ assert obj1.count == 1
+
+ assert obj2.name == "test"
+ assert obj2.count == 1
+
+ assert obj3.name == "test"
+ assert obj3.count == 0
+
+
+def test_dynamic_validation_coerces_and_rejects_invalid_input():
+ class MyClass(DynamicValidation):
+ def __init__(self, name: str, count: int):
+ self.name = name
+ self.count = count
+
+ obj = MyClass(name="test", count="12")
+ assert obj.count == 12
+
+ with pytest.raises(PyAMLConfigException):
+ MyClass(name="test", count="not-an-int")
+
+
+def test_dynamic_validation_rejects_manual_validation_model():
+ class ManualModel(BaseModel):
+ name: str
+
+ with pytest.raises(TypeError, match="may not define validation_model manually"):
+
+ class Broken(DynamicValidation):
+ validation_model = ManualModel
+
+ def __init__(self, name: str):
+ self.name = name
+
+
+def test_dynamic_validation_can_be_disabled_per_instance():
+ class MyClass(DynamicValidation):
+ def __init__(self, name: str, count: int):
+ self.name = name
+ self.count = count
+
+ obj = MyClass(name="test", count="12", validate=False)
+
+ assert obj.name == "test"
+ assert obj.count == "12"
+
+
+# ==========================================================
+# StaticValidation
+# ==========================================================
+
+
+def test_static_validation_accepts_explicit_basemodel():
+ class ExampleModel(BaseModel):
+ name: str
+ count: int = 0
+
+ class Example(StaticValidation):
+ validation_model = ExampleModel
+
+ def __init__(self, name: str, count: int = 0):
+ self.name = name
+ self.count = count
+
+ obj1 = Example("test", 1)
+ obj2 = Example(name="test", count=1)
+ obj3 = Example("test")
+
+ assert obj1.name == "test"
+ assert obj1.count == 1
+
+ assert obj2.name == "test"
+ assert obj2.count == 1
+
+ assert obj3.name == "test"
+ assert obj3.count == 0
+
+
+def test_static_validation_validates_and_coerces_input():
+ class ExampleModel(BaseModel):
+ name: str
+ count: int
+
+ class Example(StaticValidation):
+ validation_model = ExampleModel
+
+ def __init__(self, name: str, count: int):
+ self.name = name
+ self.count = count
+
+ obj = Example(name="test", count="12")
+ assert obj.count == 12
+
+ with pytest.raises(PyAMLConfigException):
+ Example(name="test", count="not-an-int")
+
+
+def test_static_validation_inherits_validation_model():
+ class ParentModel(BaseModel):
+ name: str
+
+ class Parent(StaticValidation):
+ validation_model = ParentModel
+
+ def __init__(self, name: str):
+ self.name = name
+
+ class Child(Parent):
+ def __init__(self, name: str):
+ super().__init__(name)
+
+ obj = Child("test")
+ assert obj.name == "test"
+ assert Child.validation_model is ParentModel
+
+
+def test_static_validation_requires_a_validation_model():
+ with pytest.raises(TypeError, match="must define validation_model"):
+
+ class Broken(StaticValidation):
+ def __init__(self, name: str):
+ self.name = name
+
+
+# ==========================================================
+# ValidationMeta signatures
+# ==========================================================
+
+
+def test_dynamic_validation_exposes_constructor_signature():
+ class MyClass(DynamicValidation):
+ def __init__(self, name: str, count: int = 0):
+ self.name = name
+ self.count = count
+
+ signature = inspect.signature(MyClass)
+
+ assert list(signature.parameters) == ["name", "count"]
+ assert signature.parameters["count"].default == 0
+ assert signature.return_annotation is inspect.Signature.empty
+
+
+def test_static_validation_exposes_constructor_signature():
+ class ExampleModel(BaseModel):
+ name: str
+
+ class Example(StaticValidation):
+ validation_model = ExampleModel
+
+ def __init__(self, name: str):
+ self.name = name
+
+ assert list(inspect.signature(Example).parameters) == ["name"]
+
+
+def test_validation_signature_excludes_validate_keyword():
+ class MyClass(DynamicValidation):
+ def __init__(self, name: str):
+ self.name = name
+
+ assert "validate" not in inspect.signature(MyClass).parameters
+
+
+def test_validation_signature_uses_inherited_constructor():
+ class Parent(DynamicValidation):
+ def __init__(self, name: str, count: int = 0):
+ self.name = name
+ self.count = count
+
+ class Child(Parent):
+ pass
+
+ assert list(inspect.signature(Child).parameters) == ["name", "count"]
+
+
+def test_validation_signature_of_class_without_constructor_is_empty():
+ class MyClass(DynamicValidation):
+ pass
+
+ assert inspect.signature(MyClass) == inspect.Signature()
+
+
+def test_validation_signature_matches_dataclass_fields():
+ @dataclass
+ class MyClass(DynamicValidation):
+ name: str
+ count: int = 0
+
+ assert list(inspect.signature(MyClass).parameters) == ["name", "count"]
+
+
+def test_validation_signature_not_visible_on_instances():
+ class MyClass(DynamicValidation):
+ def __init__(self, name: str):
+ self.name = name
+
+ obj = MyClass("test")
+
+ assert not hasattr(obj, "__signature__")
diff --git a/tests/validation/test_registry.py b/tests/validation/test_registry.py
new file mode 100644
index 000000000..df5b68e6f
--- /dev/null
+++ b/tests/validation/test_registry.py
@@ -0,0 +1,378 @@
+"""Tests of the schema registry."""
+
+import re
+from collections.abc import Generator
+
+import pytest
+
+from pyaml.validation import ConfigurationSchema, SchemaRegistry, register_schema
+
+# ==========================================================
+# Dummy schemas
+# ==========================================================
+
+
+class DummySchema(ConfigurationSchema):
+ pass
+
+
+class OtherSchema(ConfigurationSchema):
+ pass
+
+
+# ==========================================================
+# Fixtures
+# ==========================================================
+
+
+@pytest.fixture(autouse=True)
+def clear_registry() -> Generator[None, None, None]:
+ """Ensure the registry is empty for each test."""
+
+ registry = SchemaRegistry()
+ registry.clear()
+ yield
+ registry.clear()
+
+
+@pytest.fixture
+def registry() -> SchemaRegistry:
+ return SchemaRegistry()
+
+
+# ==========================================================
+# Singleton behaviour
+# ==========================================================
+
+
+def test_singleton_returns_same_instance():
+ assert SchemaRegistry() is SchemaRegistry()
+
+
+# ==========================================================
+# Registration
+# ==========================================================
+
+
+def test_register_stores_schema(registry: SchemaRegistry):
+ registry.register("pkg.module.Class", DummySchema)
+
+ assert registry["pkg.module.Class"] is DummySchema
+
+
+def test_register_allows_same_schema_for_existing_class_path(registry: SchemaRegistry):
+ class_path = "pkg.module.Class"
+
+ registry.register(class_path, DummySchema)
+ registry.register(class_path, DummySchema)
+
+ assert registry[class_path] is DummySchema
+ assert len(registry) == 1
+
+
+def test_register_raises_valueerror_for_different_schema(registry: SchemaRegistry):
+ class_path = "pkg.module.Class"
+
+ registry.register(class_path, DummySchema)
+
+ with pytest.raises(
+ ValueError,
+ match=re.escape(f"{class_path} already registered with a different schema."),
+ ):
+ registry.register(class_path, OtherSchema)
+
+
+def test_register_raises_typeerror_for_invalid_schema(registry: SchemaRegistry):
+ with pytest.raises(
+ TypeError,
+ match=re.escape("must inherit from ConfigurationSchema"),
+ ):
+ registry.register(
+ "pkg.module.Class",
+ object, # type: ignore[arg-type]
+ )
+
+
+# ==========================================================
+# Unregistering
+# ==========================================================
+
+
+def test_unregister_removes_registered_schema(registry: SchemaRegistry):
+ class_path = "pkg.module.Class"
+
+ registry.register(class_path, DummySchema)
+
+ registry.unregister(class_path)
+
+ assert class_path not in registry
+
+
+def test_unregister_raises_clean_keyerror_for_missing_schema(
+ registry: SchemaRegistry,
+):
+ class_path = "pkg.module.Class"
+
+ with pytest.raises(
+ KeyError,
+ match=re.escape(f"No schema registered for '{class_path}'"),
+ ):
+ registry.unregister(class_path)
+
+
+def test_unregister_removes_only_requested_schema(registry: SchemaRegistry):
+ registry.register("pkg.module.ClassA", DummySchema)
+ registry.register("pkg.module.ClassB", OtherSchema)
+
+ registry.unregister("pkg.module.ClassA")
+
+ assert "pkg.module.ClassA" not in registry
+ assert registry["pkg.module.ClassB"] is OtherSchema
+ assert len(registry) == 1
+
+
+# ==========================================================
+# Clearing
+# ==========================================================
+
+
+def test_clear_removes_all_registered_schemas(registry: SchemaRegistry):
+ registry.register("pkg.module.ClassA", DummySchema)
+ registry.register("pkg.module.ClassB", OtherSchema)
+
+ registry.clear()
+
+ assert len(registry) == 0
+ assert "pkg.module.ClassA" not in registry
+ assert "pkg.module.ClassB" not in registry
+
+
+def test_clear_on_empty_registry_keeps_registry_empty(
+ registry: SchemaRegistry,
+):
+ registry.clear()
+
+ assert len(registry) == 0
+
+
+def test_clear_allows_new_registrations_afterwards(
+ registry: SchemaRegistry,
+):
+ registry.register("pkg.module.Class", DummySchema)
+
+ registry.clear()
+
+ registry.register("pkg.module.OtherClass", OtherSchema)
+
+ assert len(registry) == 1
+ assert registry["pkg.module.OtherClass"] is OtherSchema
+
+
+# ==========================================================
+# Lookup
+# ==========================================================
+
+
+def test_getitem_raises_clean_keyerror_for_missing_schema(registry: SchemaRegistry):
+ with pytest.raises(KeyError, match=r"No schema registered for 'pkg\.module\.Class.'"):
+ _ = registry["pkg.module.Class"]
+
+
+def test_get_returns_registered_schema(registry: SchemaRegistry):
+ registry.register("pkg.module.Class", DummySchema)
+
+ assert registry.get("pkg.module.Class") is DummySchema
+
+
+def test_get_returns_none_for_missing_schema(registry: SchemaRegistry):
+ assert registry.get("pkg.module.Class") is None
+
+
+# ==========================================================
+# Contents
+# ==========================================================
+
+
+def test_items_returns_registered_items(registry: SchemaRegistry):
+ registry.register("pkg.module.ClassA", DummySchema)
+ registry.register("pkg.module.ClassB", OtherSchema)
+
+ items = registry.items()
+
+ assert ("pkg.module.ClassA", DummySchema) in items
+ assert ("pkg.module.ClassB", OtherSchema) in items
+ assert len(items) == 2
+
+
+def test_keys_returns_registered_class_paths(registry: SchemaRegistry):
+ registry.register("pkg.module.ClassA", DummySchema)
+ registry.register("pkg.module.ClassB", OtherSchema)
+
+ keys = registry.keys()
+
+ assert "pkg.module.ClassA" in keys
+ assert "pkg.module.ClassB" in keys
+ assert len(keys) == 2
+
+
+def test_values_returns_registered_schemas(registry: SchemaRegistry):
+ registry.register("pkg.module.ClassA", DummySchema)
+ registry.register("pkg.module.ClassB", OtherSchema)
+
+ values = registry.values()
+
+ assert DummySchema in values
+ assert OtherSchema in values
+ assert len(values) == 2
+
+
+def test_iter_returns_registered_class_paths(registry: SchemaRegistry):
+ registry.register("pkg.module.ClassA", DummySchema)
+ registry.register("pkg.module.ClassB", OtherSchema)
+
+ class_paths = list(iter(registry))
+
+ assert "pkg.module.ClassA" in class_paths
+ assert "pkg.module.ClassB" in class_paths
+ assert len(class_paths) == 2
+
+
+# ==========================================================
+# Updating
+# ==========================================================
+
+
+def test_update_replaces_registered_schema(registry: SchemaRegistry):
+ registry.register("pkg.module.Class", DummySchema)
+
+ registry.update("pkg.module.Class", OtherSchema)
+
+ assert registry["pkg.module.Class"] is OtherSchema
+
+
+def test_update_raises_keyerror_for_missing_schema(registry: SchemaRegistry):
+ class_path = "pkg.module.Class"
+
+ with pytest.raises(
+ KeyError,
+ match=re.escape(f"{class_path} is not registered."),
+ ):
+ registry.update(class_path, DummySchema)
+
+
+def test_update_raises_typeerror_for_invalid_schema(registry: SchemaRegistry):
+ with pytest.raises(
+ TypeError,
+ match=r"must inherit from ConfigurationSchema",
+ ):
+ registry.update(
+ "pkg.module.Class",
+ object, # type: ignore[arg-type]
+ )
+
+
+# ==========================================================
+# Representation
+# ==========================================================
+
+
+def test_repr_returns_empty_registry_representation(
+ registry: SchemaRegistry,
+):
+ assert repr(registry) == "SchemaRegistry({})"
+
+
+def test_repr_returns_registered_schemas(
+ registry: SchemaRegistry,
+):
+ registry.register("pkg.module.ClassA", DummySchema)
+ registry.register("pkg.module.ClassB", OtherSchema)
+
+ result = repr(registry)
+
+ assert result.startswith("SchemaRegistry(")
+ assert "'pkg.module.ClassA'" in result
+ assert "'pkg.module.ClassB'" in result
+
+ assert f"{DummySchema.__module__}.{DummySchema.__name__}" in result
+ assert f"{OtherSchema.__module__}.{OtherSchema.__name__}" in result
+
+ assert result.endswith(")")
+
+
+def test_repr_sorts_registered_class_paths(
+ registry: SchemaRegistry,
+):
+ registry.register("pkg.module.ZClass", DummySchema)
+ registry.register("pkg.module.AClass", OtherSchema)
+
+ result = repr(registry)
+
+ assert result.index("'pkg.module.AClass'") < result.index("'pkg.module.ZClass'")
+
+
+# ==========================================================
+# Register schema decorator
+# ==========================================================
+
+
+def test_register_schema_registers_the_decorated_class(
+ registry: SchemaRegistry,
+):
+ @register_schema(DummySchema)
+ class DecoratedClass:
+ pass
+
+ class_path = f"{DecoratedClass.__module__}.{DecoratedClass.__name__}"
+
+ assert registry[class_path] is DummySchema
+
+
+def test_register_schema_can_register_multiple_classes_with_same_schema(
+ registry: SchemaRegistry,
+):
+ @register_schema(DummySchema)
+ class FirstClass:
+ pass
+
+ @register_schema(DummySchema)
+ class SecondClass:
+ pass
+
+ first_path = f"{FirstClass.__module__}.{FirstClass.__name__}"
+ second_path = f"{SecondClass.__module__}.{SecondClass.__name__}"
+
+ assert registry[first_path] is DummySchema
+ assert registry[second_path] is DummySchema
+ assert len(registry) == 2
+
+
+def test_register_schema_generates_and_registers_schema_for_class(registry: SchemaRegistry):
+ @register_schema
+ class DecoratedClass:
+ def __init__(self, value: int):
+ pass
+
+ class_path = f"{DecoratedClass.__module__}.{DecoratedClass.__name__}"
+
+ schema = registry[class_path]
+ assert schema.__name__ == "DecoratedClassConfigurationSchema"
+ assert "value" in schema.model_fields
+
+
+def test_register_schema_with_empty_call_generates_and_registers_schema(
+ registry: SchemaRegistry,
+):
+ @register_schema()
+ class DecoratedClass:
+ def __init__(self, value: int):
+ pass
+
+ class_path = f"{DecoratedClass.__module__}.{DecoratedClass.__name__}"
+
+ assert class_path in registry
+
+
+def test_register_schema_rejects_non_schema_explicit_argument():
+ with pytest.raises(TypeError):
+ register_schema(123)
diff --git a/tests/validation/test_schema_builder.py b/tests/validation/test_schema_builder.py
new file mode 100644
index 000000000..796fdbfd0
--- /dev/null
+++ b/tests/validation/test_schema_builder.py
@@ -0,0 +1,256 @@
+"""Tests of the schema builder."""
+
+import inspect
+from abc import ABC
+from collections.abc import Generator
+from enum import Enum
+from typing import Annotated, Any, Literal, get_args, get_origin
+
+import pytest
+from pydantic import BaseModel, Field
+
+from pyaml.validation.configuration_models import ConfigurationSchema
+from pyaml.validation.registry import SchemaRegistry
+from pyaml.validation.schema_builder import (
+ EXCLUDED_TYPES,
+ _configuration_schema_from_basemodel,
+ _field_definition_from_field_info,
+ _fields_from_constructor_signature,
+ _generate_schema_name,
+ _resolve_annotation,
+ generate_configuration_schema,
+)
+
+
+@pytest.fixture(autouse=True)
+def clear_registry() -> Generator[None, None, None]:
+ """Ensure the registry is empty for each test."""
+
+ registry = SchemaRegistry()
+ registry.clear()
+ yield
+ registry.clear()
+
+
+class Color(Enum):
+ RED = "red"
+
+
+def test_generate_schema_name():
+ class Magnet:
+ pass
+
+ assert _generate_schema_name(Magnet) == "MagnetConfigurationSchema"
+
+
+def test_generate_configuration_schema_requires_class():
+ with pytest.raises(TypeError, match="Source must be a class"):
+ generate_configuration_schema(1)
+
+
+def test_generate_configuration_schema_from_validation_model():
+ class ValidationModel(BaseModel):
+ strength: int
+ name: str = "Q1"
+
+ class Magnet:
+ validation_model = ValidationModel
+
+ schema = generate_configuration_schema(Magnet)
+
+ assert issubclass(schema, ConfigurationSchema)
+ assert schema.__name__ == "MagnetConfigurationSchema"
+ assert schema.model_fields["strength"].annotation is int
+ assert schema.model_fields["name"].default == "Q1"
+
+ registry = SchemaRegistry()
+ assert registry.get(f"{Magnet.__module__}.{Magnet.__name__}") is schema
+
+
+def test_generate_configuration_schema_from_constructor():
+ class Magnet:
+ def __init__(self, strength: int, name: str = "Q1"):
+ pass
+
+ schema = generate_configuration_schema(Magnet)
+
+ assert issubclass(schema, ConfigurationSchema)
+ assert schema.model_fields["strength"].annotation is int
+ assert schema.model_fields["name"].default == "Q1"
+
+ registry = SchemaRegistry()
+ assert registry.get(f"{Magnet.__module__}.{Magnet.__name__}") is schema
+
+
+def test_generate_configuration_schema_is_cached():
+ class Magnet:
+ def __init__(self, strength: int):
+ pass
+
+ schema1 = generate_configuration_schema(Magnet)
+ schema2 = generate_configuration_schema(Magnet)
+
+ assert schema1 is schema2
+
+
+def test_configuration_schema_from_basemodel_rejects_reserved_field():
+ class ValidationModel(BaseModel):
+ class_path: str
+
+ with pytest.raises(ValueError, match="reserved field"):
+ _configuration_schema_from_basemodel(
+ ValidationModel,
+ "BadConfigurationSchema",
+ __name__,
+ )
+
+
+def test_generate_configuration_schema_registers_parent_chain():
+ class Curve:
+ pass
+
+ class Curve1(Curve):
+ pass
+
+ class Curve2(Curve1):
+ pass
+
+ curve2_schema = generate_configuration_schema(Curve2)
+
+ registry = SchemaRegistry()
+ curve_path = f"{Curve.__module__}.{Curve.__name__}"
+ curve1_path = f"{Curve1.__module__}.{Curve1.__name__}"
+ curve2_path = f"{Curve2.__module__}.{Curve2.__name__}"
+
+ curve_schema = registry.get(curve_path)
+ curve1_schema = registry.get(curve1_path)
+ curve2_schema_from_registry = registry.get(curve2_path)
+
+ assert curve_schema is not None
+ assert curve1_schema is not None
+ assert curve2_schema_from_registry is curve2_schema
+
+ assert curve1_schema.is_virtual_subclass_of(curve_schema)
+ assert curve2_schema.is_virtual_subclass_of(curve1_schema)
+ assert curve2_schema.is_virtual_subclass_of(curve_schema)
+ assert not curve_schema.is_virtual_subclass_of(curve1_schema)
+
+
+def test_generate_configuration_schema_registers_multiple_inheritance():
+ class Curve:
+ pass
+
+ class Monitor:
+ pass
+
+ class Curve1(Curve):
+ pass
+
+ class Curve2(Curve1, Monitor):
+ pass
+
+ curve2_schema = generate_configuration_schema(Curve2)
+
+ registry = SchemaRegistry()
+ curve_schema = registry.get(f"{Curve.__module__}.{Curve.__name__}")
+ monitor_schema = registry.get(f"{Monitor.__module__}.{Monitor.__name__}")
+ curve1_schema = registry.get(f"{Curve1.__module__}.{Curve1.__name__}")
+ curve2_schema_from_registry = registry.get(f"{Curve2.__module__}.{Curve2.__name__}")
+
+ assert curve_schema is not None
+ assert monitor_schema is not None
+ assert curve1_schema is not None
+ assert curve2_schema_from_registry is curve2_schema
+
+ assert curve1_schema.is_virtual_subclass_of(curve_schema)
+ assert curve2_schema.is_virtual_subclass_of(curve1_schema)
+ assert curve2_schema.is_virtual_subclass_of(curve_schema)
+ assert curve2_schema.is_virtual_subclass_of(monitor_schema)
+
+
+def test_fields_from_constructor_signature():
+ class Example:
+ def __init__(self, x: int, y: str = "a", *args, **kwargs):
+ pass
+
+ fields = _fields_from_constructor_signature(Example)
+
+ assert fields["x"] == (int, ...)
+ assert fields["y"] == (str, "a")
+ assert set(fields) == {"x", "y"}
+
+
+def test_fields_from_constructor_signature_rejects_reserved_parameter():
+ class Example:
+ def __init__(self, class_path: str):
+ pass
+
+ with pytest.raises(ValueError, match="reserved parameter"):
+ _fields_from_constructor_signature(Example)
+
+
+def test_resolve_annotation():
+ assert _resolve_annotation(inspect._empty) is Any
+ assert _resolve_annotation(Any) is Any
+ assert _resolve_annotation(None) is type(None)
+ assert _resolve_annotation(int) is int
+ assert _resolve_annotation(Color) is Color
+ assert _resolve_annotation(list[int]) == list[int]
+ assert _resolve_annotation(dict[str, int]) == dict[str, int]
+ assert _resolve_annotation(tuple[int, ...]) == tuple[int, ...]
+ assert _resolve_annotation(tuple[int, str]) == tuple[int, str]
+ assert _resolve_annotation(set[int]) == set[int]
+ assert _resolve_annotation(frozenset[int]) == frozenset[int]
+ assert _resolve_annotation(int | str) == (int | str)
+ assert _resolve_annotation(Literal["a", "b"]) == Literal["a", "b"]
+
+ annotated = _resolve_annotation(Annotated[int, "meta"])
+ assert get_origin(annotated) is Annotated
+ assert get_args(annotated) == (int, "meta")
+
+
+def test_excluded_framework_bases_are_not_registered():
+ class FrameworkConfig(ABC):
+ pass
+
+ class UserConfig(FrameworkConfig):
+ pass
+
+ EXCLUDED_TYPES.add(FrameworkConfig)
+ try:
+ generate_configuration_schema(UserConfig)
+ registry = SchemaRegistry()
+ assert f"{FrameworkConfig.__module__}.{FrameworkConfig.__name__}" not in registry
+ assert f"{UserConfig.__module__}.{UserConfig.__name__}" in registry
+ finally:
+ EXCLUDED_TYPES.remove(FrameworkConfig)
+
+
+def test_resolve_annotation_rejects_forward_reference():
+ with pytest.raises(TypeError, match="Forward references"):
+ _resolve_annotation("SomeClass")
+
+
+def test_field_definition_from_field_info():
+ class Model(BaseModel):
+ x: int = Field(
+ default_factory=lambda: 5,
+ description="desc",
+ title="title",
+ examples=[1],
+ deprecated=True,
+ alias="alias",
+ )
+
+ annotation, field = _field_definition_from_field_info(
+ "x",
+ Model.model_fields["x"],
+ )
+
+ assert annotation is int
+ assert field.default_factory is not None
+ assert field.alias == "alias"
+ assert field.description == "desc"
+ assert field.title == "title"
+ assert field.examples == [1]
+ assert field.deprecated is True
diff --git a/tests/validation/test_validation_errors.py b/tests/validation/test_validation_errors.py
new file mode 100644
index 000000000..4dd3f0c66
--- /dev/null
+++ b/tests/validation/test_validation_errors.py
@@ -0,0 +1,105 @@
+"""Tests of validation errors."""
+
+import pytest
+from pydantic import BaseModel, ValidationError
+
+from pyaml.common.exception import PyAMLConfigException
+from pyaml.validation.errors import (
+ Location,
+ LocationMetadata,
+ extract_location_metadata,
+ raise_validation_error,
+)
+
+
+def test_location_str_formats_readably():
+ loc = Location(file="config.yaml", line=12, column=4)
+ assert str(loc) == "config.yaml: line 12, column 4"
+
+
+def test_extract_location_metadata_removes_metadata_and_converts_values():
+ data = {
+ "__location__": ("config.yaml", 22, 3),
+ "__fieldlocations__": {
+ "class": ("config.yaml", 22, 10),
+ "name": ("config.yaml", 23, 9),
+ },
+ "class": "pkg.module.Class",
+ "name": "test_device",
+ }
+
+ cleaned, metadata = extract_location_metadata(data)
+
+ assert cleaned == {
+ "class": "pkg.module.Class",
+ "name": "test_device",
+ }
+ assert metadata.location == Location("config.yaml", 22, 3)
+ assert metadata.field_locations == {
+ "class": Location("config.yaml", 22, 10),
+ "name": Location("config.yaml", 23, 9),
+ }
+
+
+def test_extract_location_metadata_without_metadata_returns_clean_data():
+ data = {"class": "pkg.module.Class", "name": "test_device"}
+
+ cleaned, metadata = extract_location_metadata(data)
+
+ assert cleaned == data
+ assert metadata.location is None
+ assert metadata.field_locations is None
+
+
+class SimpleModel(BaseModel):
+ age: int
+
+
+class DeepNestedModel(BaseModel):
+ items: list[SimpleModel]
+
+
+def get_validation_error(model: type[BaseModel], payload: dict) -> ValidationError:
+ with pytest.raises(ValidationError) as exc:
+ model.model_validate(payload)
+ return exc.value
+
+
+def test_raise_validation_error_formats_error_with_location_metadata():
+ exc = get_validation_error(SimpleModel, {"age": "not-an-int"})
+
+ metadata = LocationMetadata(
+ location=Location("config.yaml", 20, 1),
+ field_locations={
+ "age": Location("config.yaml", 21, 7),
+ },
+ )
+
+ with pytest.raises(PyAMLConfigException) as err:
+ raise_validation_error(
+ exc,
+ class_path="pkg.module.Class",
+ location_metadata=metadata,
+ )
+
+ message = str(err.value)
+
+ assert "'age'" in message
+ assert "for class: 'pkg.module.Class'" in message
+ assert "config.yaml: line 21, column 7" in message
+ assert "config.yaml: line 20, column 1." in message
+
+
+def test_raise_validation_error_formats_deep_nested_error_tuple_repr():
+ exc = get_validation_error(DeepNestedModel, {"items": [{"age": "nope"}]})
+
+ with pytest.raises(PyAMLConfigException) as err:
+ raise_validation_error(
+ exc,
+ class_path="demo.DeepNestedModel",
+ )
+
+ message = str(err.value)
+ print(message)
+ assert "items[0].age" in message
+ assert "for class: 'demo.DeepNestedModel'" in message
diff --git a/tests/validation/test_validator.py b/tests/validation/test_validator.py
new file mode 100644
index 000000000..3f357209d
--- /dev/null
+++ b/tests/validation/test_validator.py
@@ -0,0 +1,263 @@
+"""Tests of the schema validator."""
+
+import sys
+from collections.abc import Generator
+from types import ModuleType
+
+import pytest
+
+from pyaml.common.exception import PyAMLConfigException
+from pyaml.validation import (
+ ConfigurationSchema,
+ SchemaRegistry,
+ SchemaValidator,
+)
+
+# ==========================================================
+# Dummy schemas
+# ==========================================================
+
+
+class DummySchema(ConfigurationSchema):
+ value: int | None = None
+
+
+class OtherSchema(ConfigurationSchema):
+ name: str | None = None
+ children: list[DummySchema] | None = None
+
+
+# ==========================================================
+# Fixtures
+# ==========================================================
+
+
+@pytest.fixture(autouse=True)
+def clear_registry() -> Generator[None, None, None]:
+ """Ensure the registry is empty for each test."""
+
+ registry = SchemaRegistry()
+ registry.clear()
+ yield
+ registry.clear()
+
+
+@pytest.fixture
+def registry() -> SchemaRegistry:
+ return SchemaRegistry()
+
+
+# ==========================================================
+# Recursive validation
+# ==========================================================
+
+
+def test_recursive_validate_returns_validated_schema(
+ registry: SchemaRegistry,
+):
+ registry.register("pkg.module.Class", DummySchema)
+
+ data = {
+ "class_path": "pkg.module.Class",
+ "value": 42,
+ }
+
+ result = SchemaValidator._recursive_validate(data)
+
+ assert isinstance(result, DummySchema)
+ assert result.class_path == "pkg.module.Class"
+ assert result.value == 42
+
+
+def test_recursive_validate_recurses_through_nested_lists_and_dicts(
+ registry: SchemaRegistry,
+):
+ registry.register("pkg.module.ClassA", DummySchema)
+ registry.register("pkg.module.ClassB", OtherSchema)
+
+ data = {
+ "class_path": "pkg.module.ClassB",
+ "name": "dummy",
+ "children": [
+ {
+ "class_path": "pkg.module.ClassA",
+ "value": "42",
+ },
+ {
+ "class_path": "pkg.module.ClassA",
+ "value": "73",
+ },
+ ],
+ }
+
+ result = SchemaValidator._recursive_validate(data)
+
+ assert isinstance(result, OtherSchema)
+
+ assert isinstance(result.children[0], DummySchema)
+ assert result.children[0].value == 42
+
+ assert isinstance(result.children[1], DummySchema)
+ assert result.children[1].value == 73
+
+
+def test_recursive_validate_leaves_plain_dicts_unchanged():
+ data = {
+ "plain": "dict",
+ }
+
+ result = SchemaValidator._recursive_validate(data)
+
+ assert result == data
+
+
+def test_recursive_validate_leaves_non_container_values_unchanged():
+ assert SchemaValidator._recursive_validate("text") == "text"
+ assert SchemaValidator._recursive_validate(123) == 123
+ assert SchemaValidator._recursive_validate(True) is True
+ assert SchemaValidator._recursive_validate(None) is None
+
+
+def test_recursive_validate_warns_for_unknown_schema(
+ registry: SchemaRegistry,
+):
+ data = {
+ "class_path": "pkg.module.Unknown",
+ "value": 42,
+ }
+
+ with pytest.warns(
+ UserWarning,
+ match=r"Unknown schema for 'pkg\.module\.Unknown' so cannot validate\. Leaving data as raw dict\.",
+ ):
+ result = SchemaValidator._recursive_validate(data)
+
+ assert result == data
+
+
+# ==========================================================
+# Configuration parsing
+# ==========================================================
+
+
+def test_parse_configuration_returns_none_for_non_configuration_dict():
+ data = {
+ "plain": "dict",
+ }
+
+ result = SchemaValidator._parse_configuration(data)
+
+ assert result is None
+
+
+def test_parse_configuration_accepts_modern_configuration() -> None:
+ data = {
+ "class_path": "pkg.module.Class",
+ "value": 42,
+ }
+
+ result = SchemaValidator._parse_configuration(data)
+
+ assert result == data
+
+
+def test_parse_configuration_translates_legacy_module_configuration(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ module_name = "legacy_test_module"
+
+ module = ModuleType(module_name)
+ module.PYAMLCLASS = "LegacyClass"
+ monkeypatch.setitem(sys.modules, module_name, module)
+
+ data = {
+ "module": module_name,
+ "value": 42,
+ }
+
+ result = SchemaValidator._parse_configuration(data)
+
+ assert result == {
+ "class_path": f"{module_name}.LegacyClass",
+ "value": 42,
+ }
+
+
+# ==========================================================
+# Top-level validation
+# ==========================================================
+
+
+def test_validate_returns_validated_configuration_schema(
+ registry: SchemaRegistry,
+):
+ registry.register("pkg.module.Class", DummySchema)
+
+ data = {
+ "class_path": "pkg.module.Class",
+ "value": 42,
+ }
+
+ result = SchemaValidator.validate(data)
+
+ assert isinstance(result, DummySchema)
+ assert result.class_path == "pkg.module.Class"
+ assert result.value == 42
+
+
+# def test_validate_raises_typeerror_for_non_configuration_dict():
+# data = {
+# "plain": "dict",
+# }
+
+# with pytest.raises(
+# TypeError,
+# match=r"Top-level configuration did not validate to a ConfigurationSchema\.",
+# ):
+# SchemaValidator.validate(data)
+
+
+def test_validate_to_dict_returns_dict(registry: SchemaRegistry) -> None:
+ registry.register("pkg.module.Class", DummySchema)
+
+ data = {
+ "class_path": "pkg.module.Class",
+ "value": 42,
+ }
+
+ result = SchemaValidator.validate_to_dict(data)
+
+ assert result == {
+ "class_path": "pkg.module.Class",
+ "value": 42,
+ }
+
+
+# ==========================================================
+# Error handling
+# ==========================================================
+
+
+def test_recursive_validate_includes_location_metadata_in_error(
+ registry: SchemaRegistry,
+) -> None:
+ registry.register("pkg.module.Class", DummySchema)
+
+ data = {
+ "__location__": ("config.yaml", 10, 4),
+ "__fieldlocations__": {
+ "value": ("config.yaml", 11, 8),
+ },
+ "class_path": "pkg.module.Class",
+ "value": "not-an-int",
+ }
+
+ with pytest.raises(PyAMLConfigException) as exc_info:
+ SchemaValidator._recursive_validate(data)
+
+ message = str(exc_info.value)
+
+ assert "pkg.module.Class" in message
+ assert "config.yaml: line 10, column 4." in message
+ assert "config.yaml: line 11, column 8" in message
+ assert "'value'" in message